-fix #2378
[oweals/gnunet.git] / src / fs / fs_unindex.c
1 /*
2      This file is part of GNUnet.
3      (C) 2003, 2004, 2006, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file fs/fs_unindex.c
23  * @author Krista Grothoff
24  * @author Christian Grothoff
25  * @brief Unindex file.
26  */
27 #include "platform.h"
28 #include "gnunet_constants.h"
29 #include "gnunet_fs_service.h"
30 #include "gnunet_protocols.h"
31 #include "fs_api.h"
32 #include "fs_tree.h"
33 #include "block_fs.h"
34
35
36 /**
37  * Function called by the tree encoder to obtain
38  * a block of plaintext data (for the lowest level
39  * of the tree).
40  *
41  * @param cls our publishing context
42  * @param offset identifies which block to get
43  * @param max (maximum) number of bytes to get; returning
44  *        fewer will also cause errors
45  * @param buf where to copy the plaintext buffer
46  * @param emsg location to store an error message (on error)
47  * @return number of bytes copied to buf, 0 on error
48  */
49 static size_t
50 unindex_reader (void *cls, uint64_t offset, size_t max, void *buf, char **emsg)
51 {
52   struct GNUNET_FS_UnindexContext *uc = cls;
53   size_t pt_size;
54
55   pt_size = GNUNET_MIN (max, uc->file_size - offset);
56   if (offset != GNUNET_DISK_file_seek (uc->fh, offset, GNUNET_DISK_SEEK_SET))
57   {
58     *emsg = GNUNET_strdup (_("Failed to find given position in file"));
59     return 0;
60   }
61   if (pt_size != GNUNET_DISK_file_read (uc->fh, buf, pt_size))
62   {
63     *emsg = GNUNET_strdup (_("Failed to read file"));
64     return 0;
65   }
66   return pt_size;
67 }
68
69
70 /**
71  * Fill in all of the generic fields for
72  * an unindex event and call the callback.
73  *
74  * @param pi structure to fill in
75  * @param uc overall unindex context
76  * @param offset where we are in the file (for progress)
77  */
78 void
79 GNUNET_FS_unindex_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
80                                 struct GNUNET_FS_UnindexContext *uc,
81                                 uint64_t offset)
82 {
83   pi->value.unindex.uc = uc;
84   pi->value.unindex.cctx = uc->client_info;
85   pi->value.unindex.filename = uc->filename;
86   pi->value.unindex.size = uc->file_size;
87   pi->value.unindex.eta =
88       GNUNET_TIME_calculate_eta (uc->start_time, offset, uc->file_size);
89   pi->value.unindex.duration =
90       GNUNET_TIME_absolute_get_duration (uc->start_time);
91   pi->value.unindex.completed = offset;
92   uc->client_info = uc->h->upcb (uc->h->upcb_cls, pi);
93
94 }
95
96
97 /**
98  * Function called with information about our
99  * progress in computing the tree encoding.
100  *
101  * @param cls closure
102  * @param offset where are we in the file
103  * @param pt_block plaintext of the currently processed block
104  * @param pt_size size of pt_block
105  * @param depth depth of the block in the tree, 0 for DBLOCK
106  */
107 static void
108 unindex_progress (void *cls, uint64_t offset, const void *pt_block,
109                   size_t pt_size, unsigned int depth)
110 {
111   struct GNUNET_FS_UnindexContext *uc = cls;
112   struct GNUNET_FS_ProgressInfo pi;
113
114   pi.status = GNUNET_FS_STATUS_UNINDEX_PROGRESS;
115   pi.value.unindex.specifics.progress.data = pt_block;
116   pi.value.unindex.specifics.progress.offset = offset;
117   pi.value.unindex.specifics.progress.data_len = pt_size;
118   pi.value.unindex.specifics.progress.depth = depth;
119   GNUNET_FS_unindex_make_status_ (&pi, uc, offset);
120 }
121
122
123 /**
124  * We've encountered an error during
125  * unindexing.  Signal the client.
126  *
127  * @param uc context for the failed unindexing operation
128  */
129 static void
130 signal_unindex_error (struct GNUNET_FS_UnindexContext *uc)
131 {
132   struct GNUNET_FS_ProgressInfo pi;
133
134   pi.status = GNUNET_FS_STATUS_UNINDEX_ERROR;
135   pi.value.unindex.eta = GNUNET_TIME_UNIT_FOREVER_REL;
136   pi.value.unindex.specifics.error.message = uc->emsg;
137   GNUNET_FS_unindex_make_status_ (&pi, uc, 0);
138 }
139
140
141 /**
142  * Continuation called to notify client about result of the
143  * datastore removal operation.
144  *
145  * @param cls closure
146  * @param success GNUNET_SYSERR on failure
147  * @param min_expiration minimum expiration time required for content to be stored
148  * @param msg NULL on success, otherwise an error message
149  */
150 static void
151 process_cont (void *cls, int success, struct GNUNET_TIME_Absolute min_expiration, const char *msg)
152 {
153   struct GNUNET_FS_UnindexContext *uc = cls;
154
155   if (success == GNUNET_SYSERR)
156   {
157     uc->emsg = GNUNET_strdup (msg);
158     signal_unindex_error (uc);
159     return;
160   }
161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
162               "Datastore REMOVE operation succeeded\n");
163   GNUNET_FS_tree_encoder_next (uc->tc);
164 }
165
166
167 /**
168  * Function called asking for the current (encoded)
169  * block to be processed.  After processing the
170  * client should either call "GNUNET_FS_tree_encode_next"
171  * or (on error) "GNUNET_FS_tree_encode_finish".
172  *
173  * @param cls closure
174  * @param chk content hash key for the block (key for lookup in the datastore)
175  * @param offset offset of the block
176  * @param depth depth of the block, 0 for DBLOCK
177  * @param type type of the block (IBLOCK or DBLOCK)
178  * @param block the (encrypted) block
179  * @param block_size size of block (in bytes)
180  */
181 static void
182 unindex_process (void *cls, const struct ContentHashKey *chk, uint64_t offset,
183                  unsigned int depth, enum GNUNET_BLOCK_Type type,
184                  const void *block, uint16_t block_size)
185 {
186   struct GNUNET_FS_UnindexContext *uc = cls;
187   uint32_t size;
188   const void *data;
189   struct OnDemandBlock odb;
190
191   if (type != GNUNET_BLOCK_TYPE_FS_DBLOCK)
192   {
193     size = block_size;
194     data = block;
195   }
196   else                          /* on-demand encoded DBLOCK */
197   {
198     size = sizeof (struct OnDemandBlock);
199     odb.offset = GNUNET_htonll (offset);
200     odb.file_id = uc->file_id;
201     data = &odb;
202   }
203   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
204               "Sending REMOVE request to DATASTORE service\n");
205   GNUNET_DATASTORE_remove (uc->dsh, &chk->query, size, data, -2, 1,
206                            GNUNET_CONSTANTS_SERVICE_TIMEOUT, &process_cont, uc);
207   uc->chk = *chk;
208 }
209
210
211 /**
212  * Function called with the response from the
213  * FS service to our unindexing request.
214  *
215  * @param cls closure, unindex context
216  * @param msg NULL on timeout, otherwise the response
217  */
218 static void
219 process_fs_response (void *cls, const struct GNUNET_MessageHeader *msg)
220 {
221   struct GNUNET_FS_UnindexContext *uc = cls;
222   struct GNUNET_FS_ProgressInfo pi;
223
224   if (uc->client != NULL)
225   {
226     GNUNET_CLIENT_disconnect (uc->client);
227     uc->client = NULL;
228   }
229   if (uc->state != UNINDEX_STATE_FS_NOTIFY)
230   {
231     uc->state = UNINDEX_STATE_ERROR;
232     uc->emsg =
233         GNUNET_strdup (_("Unexpected time for a response from `fs' service."));
234     GNUNET_FS_unindex_sync_ (uc);
235     signal_unindex_error (uc);
236     return;
237   }
238   if (NULL == msg)
239   {
240     uc->state = UNINDEX_STATE_ERROR;
241     uc->emsg = GNUNET_strdup (_("Timeout waiting for `fs' service."));
242     GNUNET_FS_unindex_sync_ (uc);
243     signal_unindex_error (uc);
244     return;
245   }
246   if (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_FS_UNINDEX_OK)
247   {
248     uc->state = UNINDEX_STATE_ERROR;
249     uc->emsg = GNUNET_strdup (_("Invalid response from `fs' service."));
250     GNUNET_FS_unindex_sync_ (uc);
251     signal_unindex_error (uc);
252     return;
253   }
254   uc->state = UNINDEX_STATE_COMPLETE;
255   pi.status = GNUNET_FS_STATUS_UNINDEX_COMPLETED;
256   pi.value.unindex.eta = GNUNET_TIME_UNIT_ZERO;
257   GNUNET_FS_unindex_sync_ (uc);
258   GNUNET_FS_unindex_make_status_ (&pi, uc, uc->file_size);
259 }
260
261
262 /**
263  * Function called when we are done with removing KBlocks.
264  * Disconnect from datastore and notify FS service about
265  * the unindex event.
266  *
267  * @param uc our unindexing context
268  */
269 static void
270 unindex_finish (struct GNUNET_FS_UnindexContext *uc)
271 {
272   char *emsg;
273   struct GNUNET_FS_Uri *uri;
274   struct UnindexMessage req;
275
276   /* generate final progress message */
277   unindex_progress (uc, uc->file_size, NULL, 0, 0);
278   GNUNET_FS_tree_encoder_finish (uc->tc, &uri, &emsg);
279   uc->tc = NULL;
280   if (uri != NULL)
281     GNUNET_FS_uri_destroy (uri);
282   GNUNET_DISK_file_close (uc->fh);
283   uc->fh = NULL;
284   GNUNET_DATASTORE_disconnect (uc->dsh, GNUNET_NO);
285   uc->dsh = NULL;
286   uc->state = UNINDEX_STATE_FS_NOTIFY;
287   GNUNET_FS_unindex_sync_ (uc);
288   uc->client = GNUNET_CLIENT_connect ("fs", uc->h->cfg);
289   if (uc->client == NULL)
290   {
291     uc->state = UNINDEX_STATE_ERROR;
292     uc->emsg =
293         GNUNET_strdup (_("Failed to connect to FS service for unindexing."));
294     GNUNET_FS_unindex_sync_ (uc);
295     signal_unindex_error (uc);
296     return;
297   }
298   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
299               "Sending UNINDEX message to FS service\n");
300   req.header.size = htons (sizeof (struct UnindexMessage));
301   req.header.type = htons (GNUNET_MESSAGE_TYPE_FS_UNINDEX);
302   req.reserved = 0;
303   req.file_id = uc->file_id;
304   GNUNET_break (GNUNET_OK ==
305                 GNUNET_CLIENT_transmit_and_get_response (uc->client,
306                                                          &req.header,
307                                                          GNUNET_CONSTANTS_SERVICE_TIMEOUT,
308                                                          GNUNET_YES,
309                                                          &process_fs_response,
310                                                          uc));
311 }
312
313
314
315 /**
316  * Function called by the directory scanner as we extract keywords
317  * that we will need to remove KBlocks.
318  *
319  * @param cls the 'struct GNUNET_FS_UnindexContext *'
320  * @param filename which file we are making progress on
321  * @param is_directory GNUNET_YES if this is a directory,
322  *                     GNUNET_NO if this is a file
323  *                     GNUNET_SYSERR if it is neither (or unknown)
324  * @param reason kind of progress we are making
325  */
326 static void
327 unindex_directory_scan_cb (void *cls, 
328                            const char *filename, 
329                            int is_directory,
330                            enum GNUNET_FS_DirScannerProgressUpdateReason reason)
331 {
332   struct GNUNET_FS_UnindexContext *uc = cls;
333   static struct GNUNET_FS_ShareTreeItem * directory_scan_result;
334
335   switch (reason)
336   {
337   case GNUNET_FS_DIRSCANNER_FINISHED:
338     directory_scan_result = GNUNET_FS_directory_scan_get_result (uc->dscan);
339     uc->dscan = NULL;
340     if (NULL != directory_scan_result->ksk_uri)
341     {
342       uc->ksk_uri = GNUNET_FS_uri_dup (directory_scan_result->ksk_uri);
343       uc->state = UNINDEX_STATE_DS_REMOVE_KBLOCKS;
344       uc->emsg = GNUNET_strdup (_("Failed to get KSKs from directory scan."));
345       GNUNET_FS_unindex_sync_ (uc);
346       GNUNET_FS_unindex_do_remove_kblocks_ (uc);
347     }
348     else
349     {
350       unindex_finish (uc);
351     }
352     GNUNET_FS_share_tree_free (directory_scan_result);
353     break;
354   case GNUNET_FS_DIRSCANNER_INTERNAL_ERROR:
355     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
356                 _("Internal error scanning `%s'.\n"),
357                 uc->filename);
358     break;
359   default:
360     break;
361   }
362
363 }
364
365
366 /**
367  * If necessary, connect to the datastore and remove the KBlocks.
368  *
369  * @param uc context for the unindex operation.
370  */
371 void
372 GNUNET_FS_unindex_do_extract_keywords_ (struct GNUNET_FS_UnindexContext *uc)
373 {
374   char *ex;
375
376   if (GNUNET_OK !=
377       GNUNET_CONFIGURATION_get_value_string (uc->h->cfg, "FS", "EXTRACTORS", &ex))
378     ex = NULL;
379   uc->dscan = GNUNET_FS_directory_scan_start (uc->filename,
380                                               GNUNET_NO, ex,
381                                               &unindex_directory_scan_cb, 
382                                               uc);
383   GNUNET_free_non_null (ex);
384 }
385
386
387 /**
388  * Continuation called to notify client about result of the remove
389  * operation for the KBlock.
390  *
391  * @param cls the 'struct GNUNET_FS_UnindexContext *' 
392  * @param success GNUNET_SYSERR on failure (including timeout/queue drop)
393  *                GNUNET_NO if content was already there
394  *                GNUNET_YES (or other positive value) on success
395  * @param min_expiration minimum expiration time required for 0-priority content to be stored
396  *                by the datacache at this time, zero for unknown, forever if we have no
397  *                space for 0-priority content
398  * @param msg NULL on success, otherwise an error message
399  */
400 static void
401 continue_after_remove (void *cls,
402                        int32_t success,
403                        struct GNUNET_TIME_Absolute min_expiration,
404                        const char *msg)
405 {
406   struct GNUNET_FS_UnindexContext *uc = cls;
407
408   uc->dqe = NULL;
409   if (success != GNUNET_YES)  
410     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
411                 _("Failed to remove KBlock: %s\n"),
412                 msg);  
413   uc->ksk_offset++;
414   GNUNET_FS_unindex_do_remove_kblocks_ (uc);
415 }
416
417
418 /**
419  * Function called from datastore with result from us looking for
420  * a KBlock.  There are four cases:
421  * 1) no result, means we move on to the next keyword
422  * 2) UID is the same as the first UID, means we move on to next keyword
423  * 3) KBlock for a different CHK, means we keep looking for more
424  * 4) KBlock is for our CHK, means we remove the block and then move
425  *           on to the next keyword
426  *
427  * @param cls the 'struct GNUNET_FS_UnindexContext *'
428  * @param key key for the content
429  * @param size number of bytes in data
430  * @param data content stored
431  * @param type type of the content
432  * @param priority priority of the content
433  * @param anonymity anonymity-level for the content
434  * @param expiration expiration time for the content
435  * @param uid unique identifier for the datum;
436  *        maybe 0 if no unique identifier is available
437  */
438 static void
439 process_kblock_for_unindex (void *cls,
440                             const GNUNET_HashCode * key,
441                             size_t size, const void *data,
442                             enum GNUNET_BLOCK_Type type,
443                             uint32_t priority,
444                             uint32_t anonymity,
445                             struct GNUNET_TIME_Absolute
446                             expiration, uint64_t uid)
447 {
448   struct GNUNET_FS_UnindexContext *uc = cls;
449   const struct KBlock *kb;
450   struct GNUNET_FS_Uri *chk_uri;
451
452   uc->dqe = NULL;
453   if (NULL == data)
454   {
455     /* no result */
456     uc->ksk_offset++;
457     GNUNET_FS_unindex_do_remove_kblocks_ (uc);
458     return;
459   }
460   if (0 == uc->first_uid)
461   {
462     /* remember UID of first result to detect cycles */
463     uc->first_uid = uid;    
464   }
465   else if (uid == uc->first_uid)
466   {
467     /* no more additional results */
468     uc->ksk_offset++;
469     GNUNET_FS_unindex_do_remove_kblocks_ (uc);
470     return;  
471   }
472   GNUNET_assert (GNUNET_BLOCK_TYPE_FS_KBLOCK == type);
473   if (size < sizeof (struct KBlock))
474   {
475     GNUNET_break (0);
476     goto get_next;
477   }
478   kb = data;
479   {
480     char pt[size - sizeof (struct KBlock)];  
481     struct GNUNET_CRYPTO_AesSessionKey skey;
482     struct GNUNET_CRYPTO_AesInitializationVector iv;
483  
484     GNUNET_CRYPTO_hash_to_aes_key (&uc->key, &skey, &iv);
485     if (-1 ==
486         GNUNET_CRYPTO_aes_decrypt (&kb[1], size - sizeof (struct KBlock), &skey,
487                                    &iv, pt))
488     {
489       GNUNET_break (0);
490       goto get_next;
491     }       
492     if (NULL == memchr (pt, 0, sizeof (pt)))
493     {
494       GNUNET_break (0);
495       goto get_next;
496     }
497     chk_uri = GNUNET_FS_uri_parse (pt, NULL);
498     if (NULL == chk_uri)
499     {
500       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
501                   _("Failed to parse URI `%s' from KBlock!\n"),
502                   pt);
503       GNUNET_break (0);
504       goto get_next;
505     }
506   }
507   if (0 != memcmp (&uc->chk,
508                    &chk_uri->data.chk.chk,
509                    sizeof (struct ContentHashKey)))
510   {
511     /* different CHK, ignore */
512     GNUNET_FS_uri_destroy (chk_uri);
513     goto get_next;
514   }
515   GNUNET_FS_uri_destroy (chk_uri);
516   /* matches! */
517   uc->dqe = GNUNET_DATASTORE_remove (uc->dsh,
518                                      key, size, data,
519                                      0 /* priority */, 1 /* queue size */,
520                                      GNUNET_TIME_UNIT_FOREVER_REL,
521                                      &continue_after_remove,
522                                      uc);
523   return;
524  get_next:
525   uc->dqe = GNUNET_DATASTORE_get_key (uc->dsh,
526                                       uc->roff++,
527                                       &uc->query,
528                                       GNUNET_BLOCK_TYPE_FS_KBLOCK,
529                                       0 /* priority */, 1 /* queue size */,
530                                       GNUNET_TIME_UNIT_FOREVER_REL,
531                                       &process_kblock_for_unindex,
532                                       uc);
533 }
534
535
536 /**
537  * If necessary, connect to the datastore and remove the KBlocks.
538  *
539  * @param uc context for the unindex operation.
540  */
541 void
542 GNUNET_FS_unindex_do_remove_kblocks_ (struct GNUNET_FS_UnindexContext *uc)
543 {
544   const char *keyword;
545   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pub;
546   struct GNUNET_CRYPTO_RsaPrivateKey *pk;
547
548   if (NULL == uc->dsh)
549     uc->dsh = GNUNET_DATASTORE_connect (uc->h->cfg);
550   if (NULL == uc->dsh)
551   {
552     uc->state = UNINDEX_STATE_ERROR;
553     uc->emsg = GNUNET_strdup (_("Failed to connect to `datastore' service."));
554     GNUNET_FS_unindex_sync_ (uc);
555     signal_unindex_error (uc);
556     return;
557   }
558   if ( (NULL == uc->ksk_uri) ||
559        (uc->ksk_offset >= uc->ksk_uri->data.ksk.keywordCount) )
560   {
561     unindex_finish (uc);
562     return;
563   }
564   /* FIXME: code duplication with fs_search.c here... */
565   keyword = &uc->ksk_uri->data.ksk.keywords[uc->ksk_offset][1];
566   GNUNET_CRYPTO_hash (keyword, strlen (keyword), &uc->key);
567   pk = GNUNET_CRYPTO_rsa_key_create_from_hash (&uc->key);
568   GNUNET_assert (pk != NULL);
569   GNUNET_CRYPTO_rsa_key_get_public (pk, &pub);
570   GNUNET_CRYPTO_rsa_key_free (pk);
571   GNUNET_CRYPTO_hash (&pub,
572                       sizeof (struct
573                               GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
574                       &uc->query);
575   uc->first_uid = 0;
576   uc->dqe = GNUNET_DATASTORE_get_key (uc->dsh,
577                                       uc->roff++,
578                                       &uc->query,
579                                       GNUNET_BLOCK_TYPE_FS_KBLOCK,
580                                       0 /* priority */, 1 /* queue size */,
581                                       GNUNET_TIME_UNIT_FOREVER_REL,
582                                       &process_kblock_for_unindex,
583                                       uc);
584 }
585
586
587 /**
588  * Function called when the tree encoder has
589  * processed all blocks.  Clean up.
590  *
591  * @param cls our unindexing context
592  * @param tc not used
593  */
594 static void
595 unindex_extract_keywords (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
596 {
597   struct GNUNET_FS_UnindexContext *uc = cls;
598
599   uc->state = UNINDEX_STATE_EXTRACT_KEYWORDS;
600   GNUNET_FS_unindex_sync_ (uc);
601   GNUNET_FS_unindex_do_extract_keywords_ (uc);
602 }
603
604
605 /**
606  * Connect to the datastore and remove the blocks.
607  *
608  * @param uc context for the unindex operation.
609  */
610 void
611 GNUNET_FS_unindex_do_remove_ (struct GNUNET_FS_UnindexContext *uc)
612 {
613   if (NULL == uc->dsh)
614     uc->dsh = GNUNET_DATASTORE_connect (uc->h->cfg);
615   if (NULL == uc->dsh)
616   {
617     uc->state = UNINDEX_STATE_ERROR;
618     uc->emsg = GNUNET_strdup (_("Failed to connect to `datastore' service."));
619     GNUNET_FS_unindex_sync_ (uc);
620     signal_unindex_error (uc);
621     return;
622   }
623   uc->fh =
624       GNUNET_DISK_file_open (uc->filename, GNUNET_DISK_OPEN_READ,
625                              GNUNET_DISK_PERM_NONE);
626   if (NULL == uc->fh)
627   {
628     GNUNET_DATASTORE_disconnect (uc->dsh, GNUNET_NO);
629     uc->dsh = NULL;
630     uc->state = UNINDEX_STATE_ERROR;
631     uc->emsg = GNUNET_strdup (_("Failed to open file for unindexing."));
632     GNUNET_FS_unindex_sync_ (uc);
633     signal_unindex_error (uc);
634     return;
635   }
636   uc->tc =
637       GNUNET_FS_tree_encoder_create (uc->h, uc->file_size, uc, &unindex_reader,
638                                      &unindex_process, &unindex_progress,
639                                      &unindex_extract_keywords);
640   GNUNET_FS_tree_encoder_next (uc->tc);
641 }
642
643
644 /**
645  * Function called once the hash of the file
646  * that is being unindexed has been computed.
647  *
648  * @param cls closure, unindex context
649  * @param file_id computed hash, NULL on error
650  */
651 void
652 GNUNET_FS_unindex_process_hash_ (void *cls, const GNUNET_HashCode * file_id)
653 {
654   struct GNUNET_FS_UnindexContext *uc = cls;
655
656   uc->fhc = NULL;
657   if (uc->state != UNINDEX_STATE_HASHING)
658   {
659     GNUNET_FS_unindex_stop (uc);
660     return;
661   }
662   if (file_id == NULL)
663   {
664     uc->state = UNINDEX_STATE_ERROR;
665     uc->emsg = GNUNET_strdup (_("Failed to compute hash of file."));
666     GNUNET_FS_unindex_sync_ (uc);
667     signal_unindex_error (uc);
668     return;
669   }
670   uc->file_id = *file_id;
671   uc->state = UNINDEX_STATE_DS_REMOVE;
672   GNUNET_FS_unindex_sync_ (uc);
673   GNUNET_FS_unindex_do_remove_ (uc);
674 }
675
676
677 /**
678  * Create SUSPEND event for the given unindex operation
679  * and then clean up our state (without stop signal).
680  *
681  * @param cls the 'struct GNUNET_FS_UnindexContext' to signal for
682  */
683 void
684 GNUNET_FS_unindex_signal_suspend_ (void *cls)
685 {
686   struct GNUNET_FS_UnindexContext *uc = cls;
687   struct GNUNET_FS_ProgressInfo pi;
688
689   /* FIXME: lots of duplication with unindex_stop here! */
690   if (uc->dscan != NULL)
691   {
692     GNUNET_FS_directory_scan_abort (uc->dscan);
693     uc->dscan = NULL;
694   }
695   if (NULL != uc->dqe)
696   {
697     GNUNET_DATASTORE_cancel (uc->dqe);
698     uc->dqe = NULL;
699   }
700   if (uc->fhc != NULL)
701   {
702     GNUNET_CRYPTO_hash_file_cancel (uc->fhc);
703     uc->fhc = NULL;
704   }
705   if (NULL != uc->ksk_uri)
706   {
707     GNUNET_FS_uri_destroy (uc->ksk_uri);
708     uc->ksk_uri = NULL;
709   }
710   if (uc->client != NULL)
711   {
712     GNUNET_CLIENT_disconnect (uc->client);
713     uc->client = NULL;
714   }
715   if (NULL != uc->dsh)
716   {
717     GNUNET_DATASTORE_disconnect (uc->dsh, GNUNET_NO);
718     uc->dsh = NULL;
719   }
720   if (NULL != uc->tc)
721   {
722     GNUNET_FS_tree_encoder_finish (uc->tc, NULL, NULL);
723     uc->tc = NULL;
724   }
725   if (uc->fh != NULL)
726   {
727     GNUNET_DISK_file_close (uc->fh);
728     uc->fh = NULL;
729   }
730   GNUNET_FS_end_top (uc->h, uc->top);
731   pi.status = GNUNET_FS_STATUS_UNINDEX_SUSPEND;
732   GNUNET_FS_unindex_make_status_ (&pi, uc,
733                                   (uc->state ==
734                                    UNINDEX_STATE_COMPLETE) ? uc->file_size : 0);
735   GNUNET_break (NULL == uc->client_info);
736   GNUNET_free (uc->filename);
737   GNUNET_free_non_null (uc->serialization);
738   GNUNET_free_non_null (uc->emsg);
739   GNUNET_free (uc);
740 }
741
742
743 /**
744  * Unindex a file.
745  *
746  * @param h handle to the file sharing subsystem
747  * @param filename file to unindex
748  * @param cctx initial value for the client context
749  * @return NULL on error, otherwise handle
750  */
751 struct GNUNET_FS_UnindexContext *
752 GNUNET_FS_unindex_start (struct GNUNET_FS_Handle *h, const char *filename,
753                          void *cctx)
754 {
755   struct GNUNET_FS_UnindexContext *ret;
756   struct GNUNET_FS_ProgressInfo pi;
757   uint64_t size;
758
759   if (GNUNET_OK != GNUNET_DISK_file_size (filename, &size, GNUNET_YES, GNUNET_YES))
760     return NULL;
761   ret = GNUNET_malloc (sizeof (struct GNUNET_FS_UnindexContext));
762   ret->h = h;
763   ret->filename = GNUNET_strdup (filename);
764   ret->start_time = GNUNET_TIME_absolute_get ();
765   ret->file_size = size;
766   ret->client_info = cctx;
767   GNUNET_FS_unindex_sync_ (ret);
768   pi.status = GNUNET_FS_STATUS_UNINDEX_START;
769   pi.value.unindex.eta = GNUNET_TIME_UNIT_FOREVER_REL;
770   GNUNET_FS_unindex_make_status_ (&pi, ret, 0);
771   ret->fhc =
772       GNUNET_CRYPTO_hash_file (GNUNET_SCHEDULER_PRIORITY_IDLE, filename,
773                                HASHING_BLOCKSIZE,
774                                &GNUNET_FS_unindex_process_hash_, ret);
775   ret->top = GNUNET_FS_make_top (h, &GNUNET_FS_unindex_signal_suspend_, ret);
776   return ret;
777 }
778
779
780 /**
781  * Clean up after completion of an unindex operation.
782  *
783  * @param uc handle
784  */
785 void
786 GNUNET_FS_unindex_stop (struct GNUNET_FS_UnindexContext *uc)
787 {
788   struct GNUNET_FS_ProgressInfo pi;
789
790   if (uc->dscan != NULL)
791   {
792     GNUNET_FS_directory_scan_abort (uc->dscan);
793     uc->dscan = NULL;
794   }
795   if (NULL != uc->dqe)
796   {
797     GNUNET_DATASTORE_cancel (uc->dqe);
798     uc->dqe = NULL;
799   }
800   if (uc->fhc != NULL)
801   {
802     GNUNET_CRYPTO_hash_file_cancel (uc->fhc);
803     uc->fhc = NULL;
804   }
805   if (uc->client != NULL)
806   {
807     GNUNET_CLIENT_disconnect (uc->client);
808     uc->client = NULL;
809   }
810   if (NULL != uc->dsh)
811   {
812     GNUNET_DATASTORE_disconnect (uc->dsh, GNUNET_NO);
813     uc->dsh = NULL;
814   }
815   if (NULL != uc->ksk_uri)
816   {
817     GNUNET_FS_uri_destroy (uc->ksk_uri);
818     uc->ksk_uri = NULL;
819   }
820   if (NULL != uc->tc)
821   {
822     GNUNET_FS_tree_encoder_finish (uc->tc, NULL, NULL);
823     uc->tc = NULL;
824   }
825   if (uc->fh != NULL)
826   {
827     GNUNET_DISK_file_close (uc->fh);
828     uc->fh = NULL;
829   }
830   GNUNET_FS_end_top (uc->h, uc->top);
831   if (uc->serialization != NULL)
832   {
833     GNUNET_FS_remove_sync_file_ (uc->h, GNUNET_FS_SYNC_PATH_MASTER_UNINDEX,
834                                  uc->serialization);
835     GNUNET_free (uc->serialization);
836     uc->serialization = NULL;
837   }
838   pi.status = GNUNET_FS_STATUS_UNINDEX_STOPPED;
839   pi.value.unindex.eta = GNUNET_TIME_UNIT_ZERO;
840   GNUNET_FS_unindex_make_status_ (&pi, uc,
841                                   (uc->state ==
842                                    UNINDEX_STATE_COMPLETE) ? uc->file_size : 0);
843   GNUNET_break (NULL == uc->client_info);
844   GNUNET_free_non_null (uc->emsg);
845   GNUNET_free (uc->filename);
846   GNUNET_free (uc);
847 }
848
849 /* end of fs_unindex.c */