dns hijacker code review
[oweals/gnunet.git] / src / fs / fs_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011 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_api.c
23  * @brief main FS functions (master initialization, serialization, deserialization, shared code)
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_fs_service.h"
30 #include "fs_api.h"
31 #include "fs_tree.h"
32
33
34 /**
35  * Start the given job (send signal, remove from pending queue, update
36  * counters and state).
37  *
38  * @param qe job to start
39  */
40 static void
41 start_job (struct GNUNET_FS_QueueEntry *qe)
42 {
43   GNUNET_assert (NULL == qe->client);
44   qe->client = GNUNET_CLIENT_connect ("fs", qe->h->cfg);
45   if (qe->client == NULL)
46   {
47     GNUNET_break (0);
48     return;
49   }
50   qe->start (qe->cls, qe->client);
51   qe->start_times++;
52   qe->h->active_blocks += qe->blocks;
53   qe->start_time = GNUNET_TIME_absolute_get ();
54   GNUNET_CONTAINER_DLL_remove (qe->h->pending_head, qe->h->pending_tail, qe);
55   GNUNET_CONTAINER_DLL_insert_after (qe->h->running_head, qe->h->running_tail,
56                                      qe->h->running_tail, qe);
57 }
58
59
60 /**
61  * Stop the given job (send signal, remove from active queue, update
62  * counters and state).
63  *
64  * @param qe job to stop
65  */
66 static void
67 stop_job (struct GNUNET_FS_QueueEntry *qe)
68 {
69   qe->client = NULL;
70   qe->stop (qe->cls);
71   qe->h->active_downloads--;
72   qe->h->active_blocks -= qe->blocks;
73   qe->run_time =
74       GNUNET_TIME_relative_add (qe->run_time,
75                                 GNUNET_TIME_absolute_get_duration
76                                 (qe->start_time));
77   GNUNET_CONTAINER_DLL_remove (qe->h->running_head, qe->h->running_tail, qe);
78   GNUNET_CONTAINER_DLL_insert_after (qe->h->pending_head, qe->h->pending_tail,
79                                      qe->h->pending_tail, qe);
80 }
81
82
83 /**
84  * Process the jobs in the job queue, possibly starting some
85  * and stopping others.
86  *
87  * @param cls the 'struct GNUNET_FS_Handle'
88  * @param tc scheduler context
89  */
90 static void
91 process_job_queue (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
92 {
93   struct GNUNET_FS_Handle *h = cls;
94   struct GNUNET_FS_QueueEntry *qe;
95   struct GNUNET_FS_QueueEntry *next;
96   struct GNUNET_TIME_Relative run_time;
97   struct GNUNET_TIME_Relative restart_at;
98   struct GNUNET_TIME_Relative rst;
99   struct GNUNET_TIME_Absolute end_time;
100
101   h->queue_job = GNUNET_SCHEDULER_NO_TASK;
102   next = h->pending_head;
103   while (NULL != (qe = next))
104   {
105     next = qe->next;
106     if (h->running_head == NULL)
107     {
108       start_job (qe);
109       continue;
110     }
111     if ((qe->blocks + h->active_blocks <= h->max_parallel_requests) &&
112         (h->active_downloads + 1 <= h->max_parallel_downloads))
113     {
114       start_job (qe);
115       continue;
116     }
117   }
118   if (h->pending_head == NULL)
119     return;                     /* no need to stop anything */
120   restart_at = GNUNET_TIME_UNIT_FOREVER_REL;
121   next = h->running_head;
122   while (NULL != (qe = next))
123   {
124     next = qe->next;
125     run_time =
126         GNUNET_TIME_relative_multiply (h->avg_block_latency,
127                                        qe->blocks * qe->start_times);
128     end_time = GNUNET_TIME_absolute_add (qe->start_time, run_time);
129     rst = GNUNET_TIME_absolute_get_remaining (end_time);
130     restart_at = GNUNET_TIME_relative_min (rst, restart_at);
131     if (rst.rel_value > 0)
132       continue;
133     stop_job (qe);
134   }
135   h->queue_job =
136       GNUNET_SCHEDULER_add_delayed (restart_at, &process_job_queue, h);
137 }
138
139
140 /**
141  * Add a job to the queue.
142  *
143  * @param h handle to the overall FS state
144  * @param start function to call to begin the job
145  * @param stop function to call to pause the job, or on dequeue (if the job was running)
146  * @param cls closure for start and stop
147  * @param blocks number of blocks this jobs uses
148  * @return queue handle
149  */
150 struct GNUNET_FS_QueueEntry *
151 GNUNET_FS_queue_ (struct GNUNET_FS_Handle *h, GNUNET_FS_QueueStart start,
152                   GNUNET_FS_QueueStop stop, void *cls, unsigned int blocks)
153 {
154   struct GNUNET_FS_QueueEntry *qe;
155
156   qe = GNUNET_malloc (sizeof (struct GNUNET_FS_QueueEntry));
157   qe->h = h;
158   qe->start = start;
159   qe->stop = stop;
160   qe->cls = cls;
161   qe->queue_time = GNUNET_TIME_absolute_get ();
162   qe->blocks = blocks;
163   GNUNET_CONTAINER_DLL_insert_after (h->pending_head, h->pending_tail,
164                                      h->pending_tail, qe);
165   if (h->queue_job != GNUNET_SCHEDULER_NO_TASK)
166     GNUNET_SCHEDULER_cancel (h->queue_job);
167   h->queue_job = GNUNET_SCHEDULER_add_now (&process_job_queue, h);
168   return qe;
169 }
170
171
172 /**
173  * Dequeue a job from the queue.
174  * @param qh handle for the job
175  */
176 void
177 GNUNET_FS_dequeue_ (struct GNUNET_FS_QueueEntry *qh)
178 {
179   struct GNUNET_FS_Handle *h;
180
181   h = qh->h;
182   if (qh->client != NULL)
183     stop_job (qh);
184   GNUNET_CONTAINER_DLL_remove (h->pending_head, h->pending_tail, qh);
185   GNUNET_free (qh);
186   if (h->queue_job != GNUNET_SCHEDULER_NO_TASK)
187     GNUNET_SCHEDULER_cancel (h->queue_job);
188   h->queue_job = GNUNET_SCHEDULER_add_now (&process_job_queue, h);
189 }
190
191
192 /**
193  * Create a top-level activity entry.
194  *
195  * @param h global fs handle
196  * @param ssf suspend signal function to use
197  * @param ssf_cls closure for ssf
198  * @return fresh top-level activity handle
199  */
200 struct TopLevelActivity *
201 GNUNET_FS_make_top (struct GNUNET_FS_Handle *h, SuspendSignalFunction ssf,
202                     void *ssf_cls)
203 {
204   struct TopLevelActivity *ret;
205
206   ret = GNUNET_malloc (sizeof (struct TopLevelActivity));
207   ret->ssf = ssf;
208   ret->ssf_cls = ssf_cls;
209   GNUNET_CONTAINER_DLL_insert (h->top_head, h->top_tail, ret);
210   return ret;
211 }
212
213
214 /**
215  * Destroy a top-level activity entry.
216  *
217  * @param h global fs handle
218  * @param top top level activity entry
219  */
220 void
221 GNUNET_FS_end_top (struct GNUNET_FS_Handle *h, struct TopLevelActivity *top)
222 {
223   GNUNET_CONTAINER_DLL_remove (h->top_head, h->top_tail, top);
224   GNUNET_free (top);
225 }
226
227
228
229 /**
230  * Closure for "data_reader_file".
231  */
232 struct FileInfo
233 {
234   /**
235    * Name of the file to read.
236    */
237   char *filename;
238
239   /**
240    * File descriptor, NULL if it has not yet been opened.
241    */
242   struct GNUNET_DISK_FileHandle *fd;
243 };
244
245
246 /**
247  * Function that provides data by reading from a file.
248  *
249  * @param cls closure (points to the file information)
250  * @param offset offset to read from; it is possible
251  *            that the caller might need to go backwards
252  *            a bit at times
253  * @param max maximum number of bytes that should be
254  *            copied to buf; readers are not allowed
255  *            to provide less data unless there is an error;
256  *            a value of "0" will be used at the end to allow
257  *            the reader to clean up its internal state
258  * @param buf where the reader should write the data
259  * @param emsg location for the reader to store an error message
260  * @return number of bytes written, usually "max", 0 on error
261  */
262 size_t
263 GNUNET_FS_data_reader_file_ (void *cls, uint64_t offset, size_t max, void *buf,
264                              char **emsg)
265 {
266   struct FileInfo *fi = cls;
267   ssize_t ret;
268
269   if (max == 0)
270   {
271     if (fi->fd != NULL)
272       GNUNET_DISK_file_close (fi->fd);
273     GNUNET_free (fi->filename);
274     GNUNET_free (fi);
275     return 0;
276   }
277   if (fi->fd == NULL)
278   {
279     fi->fd =
280         GNUNET_DISK_file_open (fi->filename, GNUNET_DISK_OPEN_READ,
281                                GNUNET_DISK_PERM_NONE);
282     if (fi->fd == NULL)
283     {
284       GNUNET_asprintf (emsg, _("Could not open file `%s': %s"), fi->filename,
285                        STRERROR (errno));
286       return 0;
287     }
288   }
289   GNUNET_DISK_file_seek (fi->fd, offset, GNUNET_DISK_SEEK_SET);
290   ret = GNUNET_DISK_file_read (fi->fd, buf, max);
291   if (ret == -1)
292   {
293     GNUNET_asprintf (emsg, _("Could not read file `%s': %s"), fi->filename,
294                      STRERROR (errno));
295     return 0;
296   }
297   if (ret != max)
298   {
299     GNUNET_asprintf (emsg, _("Short read reading from file `%s'!"),
300                      fi->filename);
301     return 0;
302   }
303   return max;
304 }
305
306
307 /**
308  * Create the closure for the 'GNUNET_FS_data_reader_file_' callback.
309  *
310  * @param filename file to read
311  * @return closure to use, NULL on error
312  */
313 void *
314 GNUNET_FS_make_file_reader_context_ (const char *filename)
315 {
316   struct FileInfo *fi;
317
318   fi = GNUNET_malloc (sizeof (struct FileInfo));
319   fi->filename = GNUNET_STRINGS_filename_expand (filename);
320   if (fi->filename == NULL)
321   {
322     GNUNET_free (fi);
323     return NULL;
324   }
325   return fi;
326 }
327
328
329 /**
330  * Function that provides data by copying from a buffer.
331  *
332  * @param cls closure (points to the buffer)
333  * @param offset offset to read from; it is possible
334  *            that the caller might need to go backwards
335  *            a bit at times
336  * @param max maximum number of bytes that should be
337  *            copied to buf; readers are not allowed
338  *            to provide less data unless there is an error;
339  *            a value of "0" will be used at the end to allow
340  *            the reader to clean up its internal state
341  * @param buf where the reader should write the data
342  * @param emsg location for the reader to store an error message
343  * @return number of bytes written, usually "max", 0 on error
344  */
345 size_t
346 GNUNET_FS_data_reader_copy_ (void *cls, uint64_t offset, size_t max, void *buf,
347                              char **emsg)
348 {
349   char *data = cls;
350
351   if (max == 0)
352   {
353     GNUNET_free_non_null (data);
354     return 0;
355   }
356   memcpy (buf, &data[offset], max);
357   return max;
358 }
359
360
361 /**
362  * Return the full filename where we would store state information
363  * (for serialization/deserialization).
364  *
365  * @param h master context
366  * @param ext component of the path
367  * @param ent entity identifier (or emtpy string for the directory)
368  * @return NULL on error
369  */
370 static char *
371 get_serialization_file_name (struct GNUNET_FS_Handle *h, const char *ext,
372                              const char *ent)
373 {
374   char *basename;
375   char *ret;
376
377   if (0 == (h->flags & GNUNET_FS_FLAGS_PERSISTENCE))
378     return NULL;                /* persistence not requested */
379   if (GNUNET_OK !=
380       GNUNET_CONFIGURATION_get_value_filename (h->cfg, "fs", "STATE_DIR",
381                                                &basename))
382     return NULL;
383   GNUNET_asprintf (&ret, "%s%s%s%s%s%s%s", basename, DIR_SEPARATOR_STR,
384                    h->client_name, DIR_SEPARATOR_STR, ext, DIR_SEPARATOR_STR,
385                    ent);
386   GNUNET_free (basename);
387   return ret;
388 }
389
390
391 /**
392  * Return the full filename where we would store state information
393  * (for serialization/deserialization) that is associated with a
394  * parent operation.
395  *
396  * @param h master context
397  * @param ext component of the path
398  * @param uni name of the parent operation
399  * @param ent entity identifier (or emtpy string for the directory)
400  * @return NULL on error
401  */
402 static char *
403 get_serialization_file_name_in_dir (struct GNUNET_FS_Handle *h, const char *ext,
404                                     const char *uni, const char *ent)
405 {
406   char *basename;
407   char *ret;
408
409   if (0 == (h->flags & GNUNET_FS_FLAGS_PERSISTENCE))
410     return NULL;                /* persistence not requested */
411   if (GNUNET_OK !=
412       GNUNET_CONFIGURATION_get_value_filename (h->cfg, "fs", "STATE_DIR",
413                                                &basename))
414     return NULL;
415   GNUNET_asprintf (&ret, "%s%s%s%s%s%s%s.dir%s%s", basename, DIR_SEPARATOR_STR,
416                    h->client_name, DIR_SEPARATOR_STR, ext, DIR_SEPARATOR_STR,
417                    uni, DIR_SEPARATOR_STR, ent);
418   GNUNET_free (basename);
419   return ret;
420 }
421
422
423 /**
424  * Return a read handle for deserialization.
425  *
426  * @param h master context
427  * @param ext component of the path
428  * @param ent entity identifier (or emtpy string for the directory)
429  * @return NULL on error
430  */
431 static struct GNUNET_BIO_ReadHandle *
432 get_read_handle (struct GNUNET_FS_Handle *h, const char *ext, const char *ent)
433 {
434   char *fn;
435   struct GNUNET_BIO_ReadHandle *ret;
436
437   fn = get_serialization_file_name (h, ext, ent);
438   if (fn == NULL)
439     return NULL;
440   ret = GNUNET_BIO_read_open (fn);
441   GNUNET_free (fn);
442   return ret;
443 }
444
445
446 /**
447  * Return a write handle for serialization.
448  *
449  * @param h master context
450  * @param ext component of the path
451  * @param ent entity identifier (or emtpy string for the directory)
452  * @return NULL on error
453  */
454 static struct GNUNET_BIO_WriteHandle *
455 get_write_handle (struct GNUNET_FS_Handle *h, const char *ext, const char *ent)
456 {
457   char *fn;
458   struct GNUNET_BIO_WriteHandle *ret;
459
460   fn = get_serialization_file_name (h, ext, ent);
461   if (fn == NULL)
462   {
463     return NULL;
464   }
465   ret = GNUNET_BIO_write_open (fn);
466   if (ret == NULL)
467     GNUNET_break (0);
468   GNUNET_free (fn);
469   return ret;
470 }
471
472
473 /**
474  * Return a write handle for serialization.
475  *
476  * @param h master context
477  * @param ext component of the path
478  * @param uni name of parent
479  * @param ent entity identifier (or emtpy string for the directory)
480  * @return NULL on error
481  */
482 static struct GNUNET_BIO_WriteHandle *
483 get_write_handle_in_dir (struct GNUNET_FS_Handle *h, const char *ext,
484                          const char *uni, const char *ent)
485 {
486   char *fn;
487   struct GNUNET_BIO_WriteHandle *ret;
488
489   fn = get_serialization_file_name_in_dir (h, ext, uni, ent);
490   if (fn == NULL)
491     return NULL;
492   ret = GNUNET_BIO_write_open (fn);
493   GNUNET_free (fn);
494   return ret;
495 }
496
497
498 /**
499  * Remove serialization/deserialization file from disk.
500  *
501  * @param h master context
502  * @param ext component of the path
503  * @param ent entity identifier
504  */
505 void
506 GNUNET_FS_remove_sync_file_ (struct GNUNET_FS_Handle *h, const char *ext,
507                              const char *ent)
508 {
509   char *filename;
510
511   if ((NULL == ent) || (0 == strlen (ent)))
512   {
513     GNUNET_break (0);
514     return;
515   }
516   filename = get_serialization_file_name (h, ext, ent);
517   if (filename != NULL)
518   {
519     if (0 != UNLINK (filename))
520       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", filename);
521     GNUNET_free (filename);
522   }
523 }
524
525
526 /**
527  * Remove serialization/deserialization file from disk.
528  *
529  * @param h master context
530  * @param ext component of the path
531  * @param uni parent name
532  * @param ent entity identifier
533  */
534 static void
535 remove_sync_file_in_dir (struct GNUNET_FS_Handle *h, const char *ext,
536                          const char *uni, const char *ent)
537 {
538   char *filename;
539
540   if ((NULL == ent) || (0 == strlen (ent)))
541   {
542     GNUNET_break (0);
543     return;
544   }
545   filename = get_serialization_file_name_in_dir (h, ext, uni, ent);
546   if (filename != NULL)
547   {
548     if (0 != UNLINK (filename))
549       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", filename);
550     GNUNET_free (filename);
551   }
552 }
553
554
555 /**
556  * Remove serialization/deserialization directory from disk.
557  *
558  * @param h master context
559  * @param ext component of the path
560  * @param uni unique name of parent
561  */
562 void
563 GNUNET_FS_remove_sync_dir_ (struct GNUNET_FS_Handle *h, const char *ext,
564                             const char *uni)
565 {
566   char *dn;
567
568   if (uni == NULL)
569     return;
570   dn = get_serialization_file_name_in_dir (h, ext, uni, "");
571   if (dn == NULL)
572     return;
573   if ((GNUNET_OK == GNUNET_DISK_directory_test (dn)) &&
574       (GNUNET_OK != GNUNET_DISK_directory_remove (dn)))
575     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "rmdir", dn);
576   GNUNET_free (dn);
577 }
578
579
580 /**
581  * Serialize a 'start_time'.  Since we use start-times to
582  * calculate the duration of some operation, we actually
583  * do not serialize the absolute time but the (relative)
584  * duration since the start time.  When we then
585  * deserialize the start time, we take the current time and
586  * subtract that duration so that we get again an absolute
587  * time stamp that will result in correct performance
588  * calculations.
589  *
590  * @param wh handle for writing
591  * @param timestamp time to serialize
592  * @return GNUNET_OK on success
593  */
594 static int
595 write_start_time (struct GNUNET_BIO_WriteHandle *wh,
596                   struct GNUNET_TIME_Absolute timestamp)
597 {
598   struct GNUNET_TIME_Relative dur;
599
600   dur = GNUNET_TIME_absolute_get_duration (timestamp);
601   return GNUNET_BIO_write_int64 (wh, dur.rel_value);
602 }
603
604
605 /**
606  * Serialize a 'start_time'.  Since we use start-times to
607  * calculate the duration of some operation, we actually
608  * do not serialize the absolute time but the (relative)
609  * duration since the start time.  When we then
610  * deserialize the start time, we take the current time and
611  * subtract that duration so that we get again an absolute
612  * time stamp that will result in correct performance
613  * calculations.
614  *
615  * @param rh handle for reading
616  * @param timestamp where to write the deserialized timestamp
617  * @return GNUNET_OK on success
618  */
619 static int
620 read_start_time (struct GNUNET_BIO_ReadHandle *rh,
621                  struct GNUNET_TIME_Absolute *timestamp)
622 {
623   struct GNUNET_TIME_Relative dur;
624
625   if (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &dur.rel_value))
626     return GNUNET_SYSERR;
627   *timestamp = GNUNET_TIME_absolute_subtract (GNUNET_TIME_absolute_get (), dur);
628   return GNUNET_OK;
629 }
630
631
632 /**
633  * Using the given serialization filename, try to deserialize
634  * the file-information tree associated with it.
635  *
636  * @param h master context
637  * @param filename name of the file (without directory) with
638  *        the infromation
639  * @return NULL on error
640  */
641 static struct GNUNET_FS_FileInformation *
642 deserialize_file_information (struct GNUNET_FS_Handle *h, const char *filename);
643
644
645 /**
646  * Using the given serialization filename, try to deserialize
647  * the file-information tree associated with it.
648  *
649  * @param h master context
650  * @param fn name of the file (without directory) with
651  *        the infromation
652  * @param rh handle for reading
653  * @return NULL on error
654  */
655 static struct GNUNET_FS_FileInformation *
656 deserialize_fi_node (struct GNUNET_FS_Handle *h, const char *fn,
657                      struct GNUNET_BIO_ReadHandle *rh)
658 {
659   struct GNUNET_FS_FileInformation *ret;
660   struct GNUNET_FS_FileInformation *nxt;
661   char b;
662   char *ksks;
663   char *chks;
664   char *filename;
665   uint32_t dsize;
666
667   if (GNUNET_OK != GNUNET_BIO_read (rh, "status flag", &b, sizeof (b)))
668   {
669     GNUNET_break (0);
670     return NULL;
671   }
672   ret = GNUNET_malloc (sizeof (struct GNUNET_FS_FileInformation));
673   ret->h = h;
674   ksks = NULL;
675   chks = NULL;
676   filename = NULL;
677   if ((GNUNET_OK != GNUNET_BIO_read_meta_data (rh, "metadata", &ret->meta)) ||
678       (GNUNET_OK != GNUNET_BIO_read_string (rh, "ksk-uri", &ksks, 32 * 1024)) ||
679       ((ksks != NULL) &&
680        (NULL == (ret->keywords = GNUNET_FS_uri_parse (ksks, NULL)))) ||
681       (GNUNET_YES != GNUNET_FS_uri_test_ksk (ret->keywords)) ||
682       (GNUNET_OK != GNUNET_BIO_read_string (rh, "chk-uri", &chks, 1024)) ||
683       ((chks != NULL) &&
684        ((NULL == (ret->chk_uri = GNUNET_FS_uri_parse (chks, NULL))) ||
685         (GNUNET_YES != GNUNET_FS_uri_test_chk (ret->chk_uri)))) ||
686       (GNUNET_OK != read_start_time (rh, &ret->start_time)) ||
687       (GNUNET_OK != GNUNET_BIO_read_string (rh, "emsg", &ret->emsg, 16 * 1024))
688       || (GNUNET_OK !=
689           GNUNET_BIO_read_string (rh, "fn", &ret->filename, 16 * 1024)) ||
690       (GNUNET_OK !=
691        GNUNET_BIO_read_int64 (rh, &ret->bo.expiration_time.abs_value)) ||
692       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &ret->bo.anonymity_level)) ||
693       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &ret->bo.content_priority)) ||
694       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &ret->bo.replication_level)))
695   {
696     GNUNET_break (0);
697     goto cleanup;
698   }
699   switch (b)
700   {
701   case 0:                      /* file-insert */
702     if (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size))
703     {
704       GNUNET_break (0);
705       goto cleanup;
706     }
707     ret->is_directory = GNUNET_NO;
708     ret->data.file.do_index = GNUNET_NO;
709     ret->data.file.have_hash = GNUNET_NO;
710     ret->data.file.index_start_confirmed = GNUNET_NO;
711     if (GNUNET_NO == ret->is_published)
712     {
713       if (NULL == ret->filename)
714       {
715         ret->data.file.reader = &GNUNET_FS_data_reader_copy_;
716         ret->data.file.reader_cls =
717             GNUNET_malloc_large (ret->data.file.file_size);
718         if (ret->data.file.reader_cls == NULL)
719           goto cleanup;
720         if (GNUNET_OK !=
721             GNUNET_BIO_read (rh, "file-data", ret->data.file.reader_cls,
722                              ret->data.file.file_size))
723         {
724           GNUNET_break (0);
725           goto cleanup;
726         }
727       }
728       else
729       {
730         ret->data.file.reader = &GNUNET_FS_data_reader_file_;
731         ret->data.file.reader_cls =
732             GNUNET_FS_make_file_reader_context_ (ret->filename);
733       }
734     }
735     break;
736   case 1:                      /* file-index, no hash */
737     if (NULL == ret->filename)
738     {
739       GNUNET_break (0);
740       goto cleanup;
741     }
742     if (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size))
743     {
744       GNUNET_break (0);
745       goto cleanup;
746     }
747     ret->is_directory = GNUNET_NO;
748     ret->data.file.do_index = GNUNET_YES;
749     ret->data.file.have_hash = GNUNET_NO;
750     ret->data.file.index_start_confirmed = GNUNET_NO;
751     ret->data.file.reader = &GNUNET_FS_data_reader_file_;
752     ret->data.file.reader_cls =
753         GNUNET_FS_make_file_reader_context_ (ret->filename);
754     break;
755   case 2:                      /* file-index-with-hash */
756     if (NULL == ret->filename)
757     {
758       GNUNET_break (0);
759       goto cleanup;
760     }
761     if ((GNUNET_OK != GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size)) ||
762         (GNUNET_OK !=
763          GNUNET_BIO_read (rh, "fileid", &ret->data.file.file_id,
764                           sizeof (GNUNET_HashCode))))
765     {
766       GNUNET_break (0);
767       goto cleanup;
768     }
769     ret->is_directory = GNUNET_NO;
770     ret->data.file.do_index = GNUNET_YES;
771     ret->data.file.have_hash = GNUNET_YES;
772     ret->data.file.index_start_confirmed = GNUNET_NO;
773     ret->data.file.reader = &GNUNET_FS_data_reader_file_;
774     ret->data.file.reader_cls =
775         GNUNET_FS_make_file_reader_context_ (ret->filename);
776     break;
777   case 3:                      /* file-index-with-hash-confirmed */
778     if (NULL == ret->filename)
779     {
780       GNUNET_break (0);
781       goto cleanup;
782     }
783     if ((GNUNET_OK != GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size)) ||
784         (GNUNET_OK !=
785          GNUNET_BIO_read (rh, "fileid", &ret->data.file.file_id,
786                           sizeof (GNUNET_HashCode))))
787     {
788       GNUNET_break (0);
789       goto cleanup;
790     }
791     ret->is_directory = GNUNET_NO;
792     ret->data.file.do_index = GNUNET_YES;
793     ret->data.file.have_hash = GNUNET_YES;
794     ret->data.file.index_start_confirmed = GNUNET_YES;
795     ret->data.file.reader = &GNUNET_FS_data_reader_file_;
796     ret->data.file.reader_cls =
797         GNUNET_FS_make_file_reader_context_ (ret->filename);
798     break;
799   case 4:                      /* directory */
800     ret->is_directory = GNUNET_YES;
801     if ((GNUNET_OK != GNUNET_BIO_read_int32 (rh, &dsize)) ||
802         (NULL == (ret->data.dir.dir_data = GNUNET_malloc_large (dsize))) ||
803         (GNUNET_OK !=
804          GNUNET_BIO_read (rh, "dir-data", ret->data.dir.dir_data, dsize)) ||
805         (GNUNET_OK !=
806          GNUNET_BIO_read_string (rh, "ent-filename", &filename, 16 * 1024)))
807     {
808       GNUNET_break (0);
809       goto cleanup;
810     }
811     ret->data.dir.dir_size = (uint32_t) dsize;
812     if (filename != NULL)
813     {
814       ret->data.dir.entries = deserialize_file_information (h, filename);
815       GNUNET_free (filename);
816       filename = NULL;
817       nxt = ret->data.dir.entries;
818       while (nxt != NULL)
819       {
820         nxt->dir = ret;
821         nxt = nxt->next;
822       }
823     }
824     break;
825   default:
826     GNUNET_break (0);
827     goto cleanup;
828   }
829   ret->serialization = GNUNET_strdup (fn);
830   if (GNUNET_OK !=
831       GNUNET_BIO_read_string (rh, "nxt-filename", &filename, 16 * 1024))
832   {
833     GNUNET_break (0);
834     goto cleanup;
835   }
836   if (filename != NULL)
837   {
838     ret->next = deserialize_file_information (h, filename);
839     GNUNET_free (filename);
840     filename = NULL;
841   }
842   GNUNET_free_non_null (ksks);
843   GNUNET_free_non_null (chks);
844   return ret;
845 cleanup:
846   GNUNET_free_non_null (ksks);
847   GNUNET_free_non_null (chks);
848   GNUNET_free_non_null (filename);
849   GNUNET_FS_file_information_destroy (ret, NULL, NULL);
850   return NULL;
851 }
852
853
854 /**
855  * Using the given serialization filename, try to deserialize
856  * the file-information tree associated with it.
857  *
858  * @param h master context
859  * @param filename name of the file (without directory) with
860  *        the infromation
861  * @return NULL on error
862  */
863 static struct GNUNET_FS_FileInformation *
864 deserialize_file_information (struct GNUNET_FS_Handle *h, const char *filename)
865 {
866   struct GNUNET_FS_FileInformation *ret;
867   struct GNUNET_BIO_ReadHandle *rh;
868   char *emsg;
869
870   rh = get_read_handle (h, GNUNET_FS_SYNC_PATH_FILE_INFO, filename);
871   if (rh == NULL)
872     return NULL;
873   ret = deserialize_fi_node (h, filename, rh);
874   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
875   {
876     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
877                 _("Failed to resume publishing information `%s': %s\n"),
878                 filename, emsg);
879     GNUNET_free (emsg);
880   }
881   if (ret == NULL)
882   {
883     if (0 != UNLINK (filename))
884       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", filename);
885   }
886   return ret;
887 }
888
889
890 /**
891  * Given a serialization name (full absolute path), return the
892  * basename of the file (without the path), which must only
893  * consist of the 6 random characters.
894  *
895  * @param fullname name to extract the basename from
896  * @return copy of the basename, NULL on error
897  */
898 static char *
899 get_serialization_short_name (const char *fullname)
900 {
901   const char *end;
902   const char *nxt;
903
904   end = NULL;
905   nxt = fullname;
906   /* FIXME: we could do this faster since we know
907    * the length of 'end'... */
908   while ('\0' != *nxt)
909   {
910     if (DIR_SEPARATOR == *nxt)
911       end = nxt + 1;
912     nxt++;
913   }
914   if ((end == NULL) || (strlen (end) == 0))
915   {
916     GNUNET_break (0);
917     return NULL;
918   }
919   GNUNET_break (6 == strlen (end));
920   return GNUNET_strdup (end);
921 }
922
923
924 /**
925  * Create a new random name for serialization.  Also checks if persistence
926  * is enabled and returns NULL if not.
927  *
928  * @param h master context
929  * @param ext component of the path
930  * @return NULL on errror
931  */
932 static char *
933 make_serialization_file_name (struct GNUNET_FS_Handle *h, const char *ext)
934 {
935   char *fn;
936   char *dn;
937   char *ret;
938
939   if (0 == (h->flags & GNUNET_FS_FLAGS_PERSISTENCE))
940     return NULL;                /* persistence not requested */
941   dn = get_serialization_file_name (h, ext, "");
942   if (dn == NULL)
943     return NULL;
944   if (GNUNET_OK != GNUNET_DISK_directory_create_for_file (dn))
945   {
946     GNUNET_free (dn);
947     return NULL;
948   }
949   fn = GNUNET_DISK_mktemp (dn);
950   GNUNET_free (dn);
951   if (fn == NULL)
952     return NULL;                /* epic fail */
953   ret = get_serialization_short_name (fn);
954   GNUNET_free (fn);
955   return ret;
956 }
957
958
959 /**
960  * Create a new random name for serialization.  Also checks if persistence
961  * is enabled and returns NULL if not.
962  *
963  * @param h master context
964  * @param ext component of the path
965  * @param uni name of parent
966  * @return NULL on errror
967  */
968 static char *
969 make_serialization_file_name_in_dir (struct GNUNET_FS_Handle *h,
970                                      const char *ext, const char *uni)
971 {
972   char *fn;
973   char *dn;
974   char *ret;
975
976   if (0 == (h->flags & GNUNET_FS_FLAGS_PERSISTENCE))
977     return NULL;                /* persistence not requested */
978   dn = get_serialization_file_name_in_dir (h, ext, uni, "");
979   if (dn == NULL)
980     return NULL;
981   if (GNUNET_OK != GNUNET_DISK_directory_create_for_file (dn))
982   {
983     GNUNET_free (dn);
984     return NULL;
985   }
986   fn = GNUNET_DISK_mktemp (dn);
987   GNUNET_free (dn);
988   if (fn == NULL)
989     return NULL;                /* epic fail */
990   ret = get_serialization_short_name (fn);
991   GNUNET_free (fn);
992   return ret;
993 }
994
995
996 /**
997  * Copy all of the data from the reader to the write handle.
998  *
999  * @param wh write handle
1000  * @param fi file with reader
1001  * @return GNUNET_OK on success
1002  */
1003 static int
1004 copy_from_reader (struct GNUNET_BIO_WriteHandle *wh,
1005                   struct GNUNET_FS_FileInformation *fi)
1006 {
1007   char buf[32 * 1024];
1008   uint64_t off;
1009   size_t ret;
1010   size_t left;
1011   char *emsg;
1012
1013   emsg = NULL;
1014   off = 0;
1015   while (off < fi->data.file.file_size)
1016   {
1017     left = GNUNET_MIN (sizeof (buf), fi->data.file.file_size - off);
1018     ret =
1019         fi->data.file.reader (fi->data.file.reader_cls, off, left, buf, &emsg);
1020     if (ret == 0)
1021     {
1022       GNUNET_free (emsg);
1023       return GNUNET_SYSERR;
1024     }
1025     if (GNUNET_OK != GNUNET_BIO_write (wh, buf, ret))
1026       return GNUNET_SYSERR;
1027     off += ret;
1028   }
1029   return GNUNET_OK;
1030 }
1031
1032
1033 /**
1034  * Create a temporary file on disk to store the current
1035  * state of "fi" in.
1036  *
1037  * @param fi file information to sync with disk
1038  */
1039 void
1040 GNUNET_FS_file_information_sync_ (struct GNUNET_FS_FileInformation *fi)
1041 {
1042   char *fn;
1043   struct GNUNET_BIO_WriteHandle *wh;
1044   char b;
1045   char *ksks;
1046   char *chks;
1047
1048   if (NULL == fi->serialization)
1049     fi->serialization =
1050         make_serialization_file_name (fi->h, GNUNET_FS_SYNC_PATH_FILE_INFO);
1051   if (NULL == fi->serialization)
1052     return;
1053   wh = get_write_handle (fi->h, GNUNET_FS_SYNC_PATH_FILE_INFO,
1054                          fi->serialization);
1055   if (wh == NULL)
1056   {
1057     GNUNET_free (fi->serialization);
1058     fi->serialization = NULL;
1059     return;
1060   }
1061   if (GNUNET_YES == fi->is_directory)
1062     b = 4;
1063   else if (GNUNET_YES == fi->data.file.index_start_confirmed)
1064     b = 3;
1065   else if (GNUNET_YES == fi->data.file.have_hash)
1066     b = 2;
1067   else if (GNUNET_YES == fi->data.file.do_index)
1068     b = 1;
1069   else
1070     b = 0;
1071   if (fi->keywords != NULL)
1072     ksks = GNUNET_FS_uri_to_string (fi->keywords);
1073   else
1074     ksks = NULL;
1075   if (fi->chk_uri != NULL)
1076     chks = GNUNET_FS_uri_to_string (fi->chk_uri);
1077   else
1078     chks = NULL;
1079   if ((GNUNET_OK != GNUNET_BIO_write (wh, &b, sizeof (b))) ||
1080       (GNUNET_OK != GNUNET_BIO_write_meta_data (wh, fi->meta)) ||
1081       (GNUNET_OK != GNUNET_BIO_write_string (wh, ksks)) ||
1082       (GNUNET_OK != GNUNET_BIO_write_string (wh, chks)) ||
1083       (GNUNET_OK != write_start_time (wh, fi->start_time)) ||
1084       (GNUNET_OK != GNUNET_BIO_write_string (wh, fi->emsg)) ||
1085       (GNUNET_OK != GNUNET_BIO_write_string (wh, fi->filename)) ||
1086       (GNUNET_OK !=
1087        GNUNET_BIO_write_int64 (wh, fi->bo.expiration_time.abs_value)) ||
1088       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, fi->bo.anonymity_level)) ||
1089       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, fi->bo.content_priority)) ||
1090       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, fi->bo.replication_level)))
1091   {
1092     GNUNET_break (0);
1093     goto cleanup;
1094   }
1095   GNUNET_free_non_null (chks);
1096   chks = NULL;
1097   GNUNET_free_non_null (ksks);
1098   ksks = NULL;
1099
1100   switch (b)
1101   {
1102   case 0:                      /* file-insert */
1103     if (GNUNET_OK != GNUNET_BIO_write_int64 (wh, fi->data.file.file_size))
1104     {
1105       GNUNET_break (0);
1106       goto cleanup;
1107     }
1108     if ((GNUNET_NO == fi->is_published) && (NULL == fi->filename))
1109       if (GNUNET_OK != copy_from_reader (wh, fi))
1110       {
1111         GNUNET_break (0);
1112         goto cleanup;
1113       }
1114     break;
1115   case 1:                      /* file-index, no hash */
1116     if (NULL == fi->filename)
1117     {
1118       GNUNET_break (0);
1119       goto cleanup;
1120     }
1121     if (GNUNET_OK != GNUNET_BIO_write_int64 (wh, fi->data.file.file_size))
1122     {
1123       GNUNET_break (0);
1124       goto cleanup;
1125     }
1126     break;
1127   case 2:                      /* file-index-with-hash */
1128   case 3:                      /* file-index-with-hash-confirmed */
1129     if (NULL == fi->filename)
1130     {
1131       GNUNET_break (0);
1132       goto cleanup;
1133     }
1134     if ((GNUNET_OK != GNUNET_BIO_write_int64 (wh, fi->data.file.file_size)) ||
1135         (GNUNET_OK !=
1136          GNUNET_BIO_write (wh, &fi->data.file.file_id,
1137                            sizeof (GNUNET_HashCode))))
1138     {
1139       GNUNET_break (0);
1140       goto cleanup;
1141     }
1142     break;
1143   case 4:                      /* directory */
1144     if ((GNUNET_OK != GNUNET_BIO_write_int32 (wh, fi->data.dir.dir_size)) ||
1145         (GNUNET_OK !=
1146          GNUNET_BIO_write (wh, fi->data.dir.dir_data,
1147                            (uint32_t) fi->data.dir.dir_size)) ||
1148         (GNUNET_OK !=
1149          GNUNET_BIO_write_string (wh,
1150                                   (fi->data.dir.entries ==
1151                                    NULL) ? NULL : fi->data.dir.
1152                                   entries->serialization)))
1153     {
1154       GNUNET_break (0);
1155       goto cleanup;
1156     }
1157     break;
1158   default:
1159     GNUNET_assert (0);
1160     goto cleanup;
1161   }
1162   if (GNUNET_OK !=
1163       GNUNET_BIO_write_string (wh,
1164                                (fi->next !=
1165                                 NULL) ? fi->next->serialization : NULL))
1166   {
1167     GNUNET_break (0);
1168     goto cleanup;
1169   }
1170   if (GNUNET_OK != GNUNET_BIO_write_close (wh))
1171   {
1172     wh = NULL;
1173     GNUNET_break (0);
1174     goto cleanup;
1175   }
1176   return;                       /* done! */
1177 cleanup:
1178   if (wh != NULL)
1179     (void) GNUNET_BIO_write_close (wh);
1180   GNUNET_free_non_null (chks);
1181   GNUNET_free_non_null (ksks);
1182   fn = get_serialization_file_name (fi->h, GNUNET_FS_SYNC_PATH_FILE_INFO,
1183                                     fi->serialization);
1184   if (NULL != fn)
1185   {
1186     if (0 != UNLINK (fn))
1187       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", fn);
1188     GNUNET_free (fn);
1189   }
1190   GNUNET_free (fi->serialization);
1191   fi->serialization = NULL;
1192 }
1193
1194
1195
1196 /**
1197  * Find the entry in the file information struct where the
1198  * serialization filename matches the given name.
1199  *
1200  * @param pos file information to search
1201  * @param srch filename to search for
1202  * @return NULL if srch was not found in this subtree
1203  */
1204 static struct GNUNET_FS_FileInformation *
1205 find_file_position (struct GNUNET_FS_FileInformation *pos, const char *srch)
1206 {
1207   struct GNUNET_FS_FileInformation *r;
1208
1209   while (pos != NULL)
1210   {
1211     if (0 == strcmp (srch, pos->serialization))
1212       return pos;
1213     if (pos->is_directory)
1214     {
1215       r = find_file_position (pos->data.dir.entries, srch);
1216       if (r != NULL)
1217         return r;
1218     }
1219     pos = pos->next;
1220   }
1221   return NULL;
1222 }
1223
1224
1225 /**
1226  * Signal the FS's progress function that we are resuming
1227  * an upload.
1228  *
1229  * @param cls closure (of type "struct GNUNET_FS_PublishContext*")
1230  * @param fi the entry in the publish-structure
1231  * @param length length of the file or directory
1232  * @param meta metadata for the file or directory (can be modified)
1233  * @param uri pointer to the keywords that will be used for this entry (can be modified)
1234  * @param bo block options (can be modified)
1235  * @param do_index should we index?
1236  * @param client_info pointer to client context set upon creation (can be modified)
1237  * @return GNUNET_OK to continue (always)
1238  */
1239 static int
1240 fip_signal_resume (void *cls, struct GNUNET_FS_FileInformation *fi,
1241                    uint64_t length, struct GNUNET_CONTAINER_MetaData *meta,
1242                    struct GNUNET_FS_Uri **uri,
1243                    struct GNUNET_FS_BlockOptions *bo, int *do_index,
1244                    void **client_info)
1245 {
1246   struct GNUNET_FS_PublishContext *sc = cls;
1247   struct GNUNET_FS_ProgressInfo pi;
1248
1249   pi.status = GNUNET_FS_STATUS_PUBLISH_RESUME;
1250   pi.value.publish.specifics.resume.message = sc->fi->emsg;
1251   pi.value.publish.specifics.resume.chk_uri = sc->fi->chk_uri;
1252   *client_info = GNUNET_FS_publish_make_status_ (&pi, sc, fi, 0);
1253   return GNUNET_OK;
1254 }
1255
1256
1257 /**
1258  * Function called with a filename of serialized publishing operation
1259  * to deserialize.
1260  *
1261  * @param cls the 'struct GNUNET_FS_Handle*'
1262  * @param filename complete filename (absolute path)
1263  * @return GNUNET_OK (continue to iterate)
1264  */
1265 static int
1266 deserialize_publish_file (void *cls, const char *filename)
1267 {
1268   struct GNUNET_FS_Handle *h = cls;
1269   struct GNUNET_BIO_ReadHandle *rh;
1270   struct GNUNET_FS_PublishContext *pc;
1271   int32_t options;
1272   int32_t all_done;
1273   char *fi_root;
1274   char *ns;
1275   char *fi_pos;
1276   char *emsg;
1277
1278   pc = GNUNET_malloc (sizeof (struct GNUNET_FS_PublishContext));
1279   pc->h = h;
1280   pc->serialization = get_serialization_short_name (filename);
1281   fi_root = NULL;
1282   fi_pos = NULL;
1283   ns = NULL;
1284   rh = GNUNET_BIO_read_open (filename);
1285   if (rh == NULL)
1286   {
1287     GNUNET_break (0);
1288     goto cleanup;
1289   }
1290   if ((GNUNET_OK != GNUNET_BIO_read_string (rh, "publish-nid", &pc->nid, 1024))
1291       || (GNUNET_OK !=
1292           GNUNET_BIO_read_string (rh, "publish-nuid", &pc->nuid, 1024)) ||
1293       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &options)) ||
1294       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &all_done)) ||
1295       (GNUNET_OK !=
1296        GNUNET_BIO_read_string (rh, "publish-firoot", &fi_root, 128)) ||
1297       (GNUNET_OK != GNUNET_BIO_read_string (rh, "publish-fipos", &fi_pos, 128))
1298       || (GNUNET_OK != GNUNET_BIO_read_string (rh, "publish-ns", &ns, 1024)))
1299   {
1300     GNUNET_break (0);
1301     goto cleanup;
1302   }
1303   pc->options = options;
1304   pc->all_done = all_done;
1305   if (NULL == fi_root)
1306   {
1307     GNUNET_break (0);
1308     goto cleanup;
1309   }
1310   pc->fi = deserialize_file_information (h, fi_root);
1311   if (pc->fi == NULL)
1312   {
1313     GNUNET_break (0);
1314     goto cleanup;
1315   }
1316   if (ns != NULL)
1317   {
1318     pc->namespace = GNUNET_FS_namespace_create (h, ns);
1319     if (pc->namespace == NULL)
1320     {
1321       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1322                   _
1323                   ("Failed to recover namespace `%s', cannot resume publishing operation.\n"),
1324                   ns);
1325       goto cleanup;
1326     }
1327   }
1328   if ((0 == (pc->options & GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY)) &&
1329       (GNUNET_YES != pc->all_done))
1330   {
1331     pc->dsh = GNUNET_DATASTORE_connect (h->cfg);
1332     if (NULL == pc->dsh)
1333       goto cleanup;
1334   }
1335   if (fi_pos != NULL)
1336   {
1337     pc->fi_pos = find_file_position (pc->fi, fi_pos);
1338     GNUNET_free (fi_pos);
1339     fi_pos = NULL;
1340     if (pc->fi_pos == NULL)
1341     {
1342       /* failed to find position for resuming, outch! Will start from root! */
1343       GNUNET_break (0);
1344       if (pc->all_done != GNUNET_YES)
1345         pc->fi_pos = pc->fi;
1346     }
1347   }
1348   GNUNET_free (fi_root);
1349   fi_root = NULL;
1350   /* generate RESUME event(s) */
1351   GNUNET_FS_file_information_inspect (pc->fi, &fip_signal_resume, pc);
1352
1353   /* re-start publishing (if needed)... */
1354   if (pc->all_done != GNUNET_YES)
1355   {
1356     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
1357     pc->upload_task =
1358         GNUNET_SCHEDULER_add_with_priority
1359         (GNUNET_SCHEDULER_PRIORITY_BACKGROUND, 
1360          &GNUNET_FS_publish_main_, pc);
1361   }
1362   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
1363   {
1364     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1365                 _("Failure while resuming publishing operation `%s': %s\n"),
1366                 filename, emsg);
1367     GNUNET_free (emsg);
1368   }
1369   GNUNET_free_non_null (ns);
1370   pc->top = GNUNET_FS_make_top (h, &GNUNET_FS_publish_signal_suspend_, pc);
1371   return GNUNET_OK;
1372 cleanup:
1373   GNUNET_free_non_null (pc->nid);
1374   GNUNET_free_non_null (pc->nuid);
1375   GNUNET_free_non_null (fi_root);
1376   GNUNET_free_non_null (fi_pos);
1377   GNUNET_free_non_null (ns);
1378   if ((rh != NULL) && (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg)))
1379   {
1380     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1381                 _("Failed to resume publishing operation `%s': %s\n"), filename,
1382                 emsg);
1383     GNUNET_free (emsg);
1384   }
1385   if (pc->fi != NULL)
1386     GNUNET_FS_file_information_destroy (pc->fi, NULL, NULL);
1387   if (0 != UNLINK (filename))
1388     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", filename);
1389   GNUNET_free (pc->serialization);
1390   GNUNET_free (pc);
1391   return GNUNET_OK;
1392 }
1393
1394
1395 /**
1396  * Synchronize this publishing struct with its mirror
1397  * on disk.  Note that all internal FS-operations that change
1398  * publishing structs should already call "sync" internally,
1399  * so this function is likely not useful for clients.
1400  *
1401  * @param pc the struct to sync
1402  */
1403 void
1404 GNUNET_FS_publish_sync_ (struct GNUNET_FS_PublishContext *pc)
1405 {
1406   struct GNUNET_BIO_WriteHandle *wh;
1407
1408   if (NULL == pc->serialization)
1409     pc->serialization =
1410         make_serialization_file_name (pc->h,
1411                                       GNUNET_FS_SYNC_PATH_MASTER_PUBLISH);
1412   if (NULL == pc->serialization)
1413     return;
1414   if (NULL == pc->fi)
1415     return;
1416   if (NULL == pc->fi->serialization)
1417   {
1418     GNUNET_break (0);
1419     return;
1420   }
1421   wh = get_write_handle (pc->h, GNUNET_FS_SYNC_PATH_MASTER_PUBLISH,
1422                          pc->serialization);
1423   if (wh == NULL)
1424   {
1425     GNUNET_break (0);
1426     goto cleanup;
1427   }
1428   if ((GNUNET_OK != GNUNET_BIO_write_string (wh, pc->nid)) ||
1429       (GNUNET_OK != GNUNET_BIO_write_string (wh, pc->nuid)) ||
1430       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, pc->options)) ||
1431       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, pc->all_done)) ||
1432       (GNUNET_OK != GNUNET_BIO_write_string (wh, pc->fi->serialization)) ||
1433       (GNUNET_OK !=
1434        GNUNET_BIO_write_string (wh,
1435                                 (pc->fi_pos ==
1436                                  NULL) ? NULL : pc->fi_pos->serialization)) ||
1437       (GNUNET_OK !=
1438        GNUNET_BIO_write_string (wh,
1439                                 (pc->namespace ==
1440                                  NULL) ? NULL : pc->namespace->name)))
1441   {
1442     GNUNET_break (0);
1443     goto cleanup;
1444   }
1445   if (GNUNET_OK != GNUNET_BIO_write_close (wh))
1446   {
1447     wh = NULL;
1448     GNUNET_break (0);
1449     goto cleanup;
1450   }
1451   return;
1452 cleanup:
1453   if (wh != NULL)
1454     (void) GNUNET_BIO_write_close (wh);
1455   GNUNET_FS_remove_sync_file_ (pc->h, GNUNET_FS_SYNC_PATH_MASTER_PUBLISH,
1456                                pc->serialization);
1457   GNUNET_free (pc->serialization);
1458   pc->serialization = NULL;
1459 }
1460
1461
1462 /**
1463  * Synchronize this unindex struct with its mirror
1464  * on disk.  Note that all internal FS-operations that change
1465  * publishing structs should already call "sync" internally,
1466  * so this function is likely not useful for clients.
1467  *
1468  * @param uc the struct to sync
1469  */
1470 void
1471 GNUNET_FS_unindex_sync_ (struct GNUNET_FS_UnindexContext *uc)
1472 {
1473   struct GNUNET_BIO_WriteHandle *wh;
1474
1475   if (NULL == uc->serialization)
1476     uc->serialization =
1477         make_serialization_file_name (uc->h,
1478                                       GNUNET_FS_SYNC_PATH_MASTER_UNINDEX);
1479   if (NULL == uc->serialization)
1480     return;
1481   wh = get_write_handle (uc->h, GNUNET_FS_SYNC_PATH_MASTER_UNINDEX,
1482                          uc->serialization);
1483   if (wh == NULL)
1484   {
1485     GNUNET_break (0);
1486     goto cleanup;
1487   }
1488   if ((GNUNET_OK != GNUNET_BIO_write_string (wh, uc->filename)) ||
1489       (GNUNET_OK != GNUNET_BIO_write_int64 (wh, uc->file_size)) ||
1490       (GNUNET_OK != write_start_time (wh, uc->start_time)) ||
1491       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, (uint32_t) uc->state)) ||
1492       ((uc->state == UNINDEX_STATE_FS_NOTIFY) &&
1493        (GNUNET_OK !=
1494         GNUNET_BIO_write (wh, &uc->file_id, sizeof (GNUNET_HashCode)))) ||
1495       ((uc->state == UNINDEX_STATE_ERROR) &&
1496        (GNUNET_OK != GNUNET_BIO_write_string (wh, uc->emsg))))
1497   {
1498     GNUNET_break (0);
1499     goto cleanup;
1500   }
1501   if (GNUNET_OK != GNUNET_BIO_write_close (wh))
1502   {
1503     wh = NULL;
1504     GNUNET_break (0);
1505     goto cleanup;
1506   }
1507   return;
1508 cleanup:
1509   if (wh != NULL)
1510     (void) GNUNET_BIO_write_close (wh);
1511   GNUNET_FS_remove_sync_file_ (uc->h, GNUNET_FS_SYNC_PATH_MASTER_UNINDEX,
1512                                uc->serialization);
1513   GNUNET_free (uc->serialization);
1514   uc->serialization = NULL;
1515 }
1516
1517
1518 /**
1519  * Serialize a download request.
1520  *
1521  * @param wh the 'struct GNUNET_BIO_WriteHandle*'
1522  * @param dr the 'struct DownloadRequest'
1523  * @return GNUNET_YES on success, GNUNET_NO on error
1524  */
1525 static int
1526 write_download_request (struct GNUNET_BIO_WriteHandle *wh,
1527                         struct DownloadRequest *dr)
1528 {
1529   unsigned int i;
1530
1531   if ((GNUNET_OK != GNUNET_BIO_write_int32 (wh, dr->state)) ||
1532       (GNUNET_OK != GNUNET_BIO_write_int64 (wh, dr->offset)) ||
1533       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, dr->num_children)) ||
1534       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, dr->depth)))
1535     return GNUNET_NO;
1536   if ((dr->state == BRS_CHK_SET) &&
1537       (GNUNET_OK !=
1538        GNUNET_BIO_write (wh, &dr->chk, sizeof (struct ContentHashKey))))
1539     return GNUNET_NO;
1540   for (i = 0; i < dr->num_children; i++)
1541     if (GNUNET_NO == write_download_request (wh, dr->children[i]))
1542       return GNUNET_NO;
1543   return GNUNET_YES;
1544 }
1545
1546
1547 /**
1548  * Read a download request tree.
1549  *
1550  * @param rh stream to read from
1551  * @return value the 'struct DownloadRequest', NULL on error
1552  */
1553 static struct DownloadRequest *
1554 read_download_request (struct GNUNET_BIO_ReadHandle *rh)
1555 {
1556   struct DownloadRequest *dr;
1557   unsigned int i;
1558
1559   dr = GNUNET_malloc (sizeof (struct DownloadRequest));
1560
1561   if ((GNUNET_OK != GNUNET_BIO_read_int32 (rh, &dr->state)) ||
1562       (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &dr->offset)) ||
1563       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &dr->num_children)) ||
1564       (dr->num_children > CHK_PER_INODE) ||
1565       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &dr->depth)) || ((dr->depth == 0)
1566                                                                 &&
1567                                                                 (dr->num_children
1568                                                                  > 0)) ||
1569       ((dr->depth > 0) && (dr->num_children == 0)))
1570   {
1571     GNUNET_break (0);
1572     dr->num_children = 0;
1573     goto cleanup;
1574   }
1575   if (dr->num_children > 0)
1576     dr->children =
1577         GNUNET_malloc (dr->num_children * sizeof (struct ContentHashKey));
1578   switch (dr->state)
1579   {
1580   case BRS_INIT:
1581   case BRS_RECONSTRUCT_DOWN:
1582   case BRS_RECONSTRUCT_META_UP:
1583   case BRS_RECONSTRUCT_UP:
1584     break;
1585   case BRS_CHK_SET:
1586     if (GNUNET_OK !=
1587         GNUNET_BIO_read (rh, "chk", &dr->chk, sizeof (struct ContentHashKey)))
1588       goto cleanup;
1589     break;
1590   case BRS_DOWNLOAD_DOWN:
1591   case BRS_DOWNLOAD_UP:
1592   case BRS_ERROR:
1593     break;
1594   default:
1595     GNUNET_break (0);
1596     goto cleanup;
1597   }
1598   for (i = 0; i < dr->num_children; i++)
1599   {
1600     if (NULL == (dr->children[i] = read_download_request (rh)))
1601       goto cleanup;
1602     dr->children[i]->parent = dr;
1603   }
1604   return dr;
1605 cleanup:
1606   GNUNET_FS_free_download_request_ (dr);
1607   return NULL;
1608 }
1609
1610
1611 /**
1612  * Compute the name of the sync file (or directory) for the given download
1613  * context.
1614  *
1615  * @param dc download context to compute for
1616  * @param uni unique filename to use, use "" for the directory name
1617  * @param ext extension to use, use ".dir" for our own subdirectory
1618  * @return the expanded file name, NULL for none
1619  */
1620 static char *
1621 get_download_sync_filename (struct GNUNET_FS_DownloadContext *dc,
1622                             const char *uni, const char *ext)
1623 {
1624   char *par;
1625   char *epar;
1626
1627   if (dc->parent == NULL)
1628     return get_serialization_file_name (dc->h,
1629                                         (dc->search !=
1630                                          NULL) ?
1631                                         GNUNET_FS_SYNC_PATH_CHILD_DOWNLOAD :
1632                                         GNUNET_FS_SYNC_PATH_MASTER_DOWNLOAD,
1633                                         uni);
1634   if (dc->parent->serialization == NULL)
1635     return NULL;
1636   par = get_download_sync_filename (dc->parent, dc->parent->serialization, "");
1637   if (par == NULL)
1638     return NULL;
1639   GNUNET_asprintf (&epar, "%s.dir%s%s%s", par, DIR_SEPARATOR_STR, uni, ext);
1640   GNUNET_free (par);
1641   return epar;
1642 }
1643
1644
1645 /**
1646  * Synchronize this download struct with its mirror
1647  * on disk.  Note that all internal FS-operations that change
1648  * publishing structs should already call "sync" internally,
1649  * so this function is likely not useful for clients.
1650  *
1651  * @param dc the struct to sync
1652  */
1653 void
1654 GNUNET_FS_download_sync_ (struct GNUNET_FS_DownloadContext *dc)
1655 {
1656   struct GNUNET_BIO_WriteHandle *wh;
1657   char *uris;
1658   char *fn;
1659   char *dir;
1660
1661   if (NULL == dc->serialization)
1662   {
1663     dir = get_download_sync_filename (dc, "", "");
1664     if (dir == NULL)
1665       return;
1666     if (GNUNET_OK != GNUNET_DISK_directory_create_for_file (dir))
1667     {
1668       GNUNET_free (dir);
1669       return;
1670     }
1671     fn = GNUNET_DISK_mktemp (dir);
1672     GNUNET_free (dir);
1673     if (fn == NULL)
1674       return;
1675     dc->serialization = get_serialization_short_name (fn);
1676   }
1677   else
1678   {
1679     fn = get_download_sync_filename (dc, dc->serialization, "");
1680     if (fn == NULL)
1681     {
1682       GNUNET_free (dc->serialization);
1683       dc->serialization = NULL;
1684       GNUNET_free (fn);
1685       return;
1686     }
1687   }
1688   wh = GNUNET_BIO_write_open (fn);
1689   if (wh == NULL)
1690   {
1691     GNUNET_free (dc->serialization);
1692     dc->serialization = NULL;
1693     GNUNET_free (fn);
1694     return;
1695   }
1696   GNUNET_assert ((GNUNET_YES == GNUNET_FS_uri_test_chk (dc->uri)) ||
1697                  (GNUNET_YES == GNUNET_FS_uri_test_loc (dc->uri)));
1698   uris = GNUNET_FS_uri_to_string (dc->uri);
1699   if ((GNUNET_OK != GNUNET_BIO_write_string (wh, uris)) ||
1700       (GNUNET_OK != GNUNET_BIO_write_meta_data (wh, dc->meta)) ||
1701       (GNUNET_OK != GNUNET_BIO_write_string (wh, dc->emsg)) ||
1702       (GNUNET_OK != GNUNET_BIO_write_string (wh, dc->filename)) ||
1703       (GNUNET_OK != GNUNET_BIO_write_string (wh, dc->temp_filename)) ||
1704       (GNUNET_OK != GNUNET_BIO_write_int64 (wh, dc->old_file_size)) ||
1705       (GNUNET_OK != GNUNET_BIO_write_int64 (wh, dc->offset)) ||
1706       (GNUNET_OK != GNUNET_BIO_write_int64 (wh, dc->length)) ||
1707       (GNUNET_OK != GNUNET_BIO_write_int64 (wh, dc->completed)) ||
1708       (GNUNET_OK != write_start_time (wh, dc->start_time)) ||
1709       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, dc->anonymity)) ||
1710       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, (uint32_t) dc->options)) ||
1711       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, (uint32_t) dc->has_finished)))
1712   {
1713     GNUNET_break (0);
1714     goto cleanup;
1715   }
1716   if (NULL == dc->emsg)
1717   {
1718     GNUNET_assert (dc->top_request != NULL);
1719     if (GNUNET_YES != write_download_request (wh, dc->top_request))
1720     {
1721       GNUNET_break (0);
1722       goto cleanup;
1723     }
1724   }
1725   GNUNET_free_non_null (uris);
1726   uris = NULL;
1727   if (GNUNET_OK != GNUNET_BIO_write_close (wh))
1728   {
1729     wh = NULL;
1730     GNUNET_break (0);
1731     goto cleanup;
1732   }
1733   GNUNET_free (fn);
1734   return;
1735 cleanup:
1736   if (NULL != wh)
1737     (void) GNUNET_BIO_write_close (wh);
1738   GNUNET_free_non_null (uris);
1739   if (0 != UNLINK (fn))
1740     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", fn);
1741   GNUNET_free (fn);
1742   GNUNET_free (dc->serialization);
1743   dc->serialization = NULL;
1744 }
1745
1746
1747 /**
1748  * Synchronize this search result with its mirror
1749  * on disk.  Note that all internal FS-operations that change
1750  * publishing structs should already call "sync" internally,
1751  * so this function is likely not useful for clients.
1752  *
1753  * @param sr the struct to sync
1754  */
1755 void
1756 GNUNET_FS_search_result_sync_ (struct GNUNET_FS_SearchResult *sr)
1757 {
1758   struct GNUNET_BIO_WriteHandle *wh;
1759   char *uris;
1760
1761   uris = NULL;
1762   if (NULL == sr->serialization)
1763     sr->serialization =
1764         make_serialization_file_name_in_dir (sr->sc->h,
1765                                              (sr->sc->psearch_result ==
1766                                               NULL) ?
1767                                              GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
1768                                              GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
1769                                              sr->sc->serialization);
1770   if (NULL == sr->serialization)
1771     return;
1772   wh = get_write_handle_in_dir (sr->sc->h,
1773                                 (sr->sc->psearch_result ==
1774                                  NULL) ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
1775                                 GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
1776                                 sr->sc->serialization, sr->serialization);
1777   if (wh == NULL)
1778   {
1779     GNUNET_break (0);
1780     goto cleanup;
1781   }
1782   uris = GNUNET_FS_uri_to_string (sr->uri);
1783   if ((GNUNET_OK != GNUNET_BIO_write_string (wh, uris)) ||
1784       (GNUNET_OK !=
1785        GNUNET_BIO_write_string (wh,
1786                                 sr->download !=
1787                                 NULL ? sr->download->serialization : NULL)) ||
1788       (GNUNET_OK !=
1789        GNUNET_BIO_write_string (wh,
1790                                 sr->update_search !=
1791                                 NULL ? sr->update_search->serialization : NULL))
1792       || (GNUNET_OK != GNUNET_BIO_write_meta_data (wh, sr->meta)) ||
1793       (GNUNET_OK != GNUNET_BIO_write (wh, &sr->key, sizeof (GNUNET_HashCode)))
1794       || (GNUNET_OK != GNUNET_BIO_write_int32 (wh, sr->mandatory_missing)) ||
1795       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, sr->optional_support)) ||
1796       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, sr->availability_success)) ||
1797       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, sr->availability_trials)) )
1798   {
1799     GNUNET_break (0);
1800     goto cleanup;
1801   }
1802   if ( (sr->uri != NULL) &&
1803        (sr->uri->type == ksk) &&
1804        (GNUNET_OK != GNUNET_BIO_write (wh, sr->keyword_bitmap,
1805                                        (sr->uri->data.ksk.keywordCount + 7) / 8)) )
1806   {
1807     GNUNET_break (0);
1808     goto cleanup;
1809   }
1810   if (GNUNET_OK != GNUNET_BIO_write_close (wh))
1811   {
1812     wh = NULL;
1813     GNUNET_break (0);
1814     goto cleanup;
1815   }
1816   GNUNET_free_non_null (uris);
1817   return;
1818 cleanup:
1819   GNUNET_free_non_null (uris);
1820   if (wh != NULL)
1821     (void) GNUNET_BIO_write_close (wh);
1822   remove_sync_file_in_dir (sr->sc->h,
1823                            (sr->sc->psearch_result ==
1824                             NULL) ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
1825                            GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
1826                            sr->sc->serialization, sr->serialization);
1827   GNUNET_free (sr->serialization);
1828   sr->serialization = NULL;
1829 }
1830
1831
1832 /**
1833  * Synchronize this search struct with its mirror
1834  * on disk.  Note that all internal FS-operations that change
1835  * publishing structs should already call "sync" internally,
1836  * so this function is likely not useful for clients.
1837  *
1838  * @param sc the struct to sync
1839  */
1840 void
1841 GNUNET_FS_search_sync_ (struct GNUNET_FS_SearchContext *sc)
1842 {
1843   struct GNUNET_BIO_WriteHandle *wh;
1844   char *uris;
1845   char in_pause;
1846   const char *category;
1847
1848   category =
1849       (sc->psearch_result ==
1850        NULL) ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
1851       GNUNET_FS_SYNC_PATH_CHILD_SEARCH;
1852   if (NULL == sc->serialization)
1853     sc->serialization = make_serialization_file_name (sc->h, category);
1854   if (NULL == sc->serialization)
1855     return;
1856   uris = NULL;
1857   wh = get_write_handle (sc->h, category, sc->serialization);
1858   if (wh == NULL)
1859   {
1860     GNUNET_break (0);
1861     goto cleanup;
1862   }
1863   GNUNET_assert ((GNUNET_YES == GNUNET_FS_uri_test_ksk (sc->uri)) ||
1864                  (GNUNET_YES == GNUNET_FS_uri_test_sks (sc->uri)));
1865   uris = GNUNET_FS_uri_to_string (sc->uri);
1866   in_pause = (sc->task != GNUNET_SCHEDULER_NO_TASK) ? 'r' : '\0';
1867   if ((GNUNET_OK != GNUNET_BIO_write_string (wh, uris)) ||
1868       (GNUNET_OK != write_start_time (wh, sc->start_time)) ||
1869       (GNUNET_OK != GNUNET_BIO_write_string (wh, sc->emsg)) ||
1870       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, (uint32_t) sc->options)) ||
1871       (GNUNET_OK != GNUNET_BIO_write (wh, &in_pause, sizeof (in_pause))) ||
1872       (GNUNET_OK != GNUNET_BIO_write_int32 (wh, sc->anonymity)))
1873   {
1874     GNUNET_break (0);
1875     goto cleanup;
1876   }
1877   GNUNET_free (uris);
1878   uris = NULL;
1879   if (GNUNET_OK != GNUNET_BIO_write_close (wh))
1880   {
1881     wh = NULL;
1882     GNUNET_break (0);
1883     goto cleanup;
1884   }
1885   return;
1886 cleanup:
1887   if (wh != NULL)
1888     (void) GNUNET_BIO_write_close (wh);
1889   GNUNET_free_non_null (uris);
1890   GNUNET_FS_remove_sync_file_ (sc->h, category, sc->serialization);
1891   GNUNET_free (sc->serialization);
1892   sc->serialization = NULL;
1893 }
1894
1895
1896 /**
1897  * Function called with a filename of serialized unindexing operation
1898  * to deserialize.
1899  *
1900  * @param cls the 'struct GNUNET_FS_Handle*'
1901  * @param filename complete filename (absolute path)
1902  * @return GNUNET_OK (continue to iterate)
1903  */
1904 static int
1905 deserialize_unindex_file (void *cls, const char *filename)
1906 {
1907   struct GNUNET_FS_Handle *h = cls;
1908   struct GNUNET_BIO_ReadHandle *rh;
1909   struct GNUNET_FS_UnindexContext *uc;
1910   struct GNUNET_FS_ProgressInfo pi;
1911   char *emsg;
1912   uint32_t state;
1913
1914   uc = GNUNET_malloc (sizeof (struct GNUNET_FS_UnindexContext));
1915   uc->h = h;
1916   uc->serialization = get_serialization_short_name (filename);
1917   rh = GNUNET_BIO_read_open (filename);
1918   if (rh == NULL)
1919   {
1920     GNUNET_break (0);
1921     goto cleanup;
1922   }
1923   if ((GNUNET_OK !=
1924        GNUNET_BIO_read_string (rh, "unindex-fn", &uc->filename, 10 * 1024)) ||
1925       (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &uc->file_size)) ||
1926       (GNUNET_OK != read_start_time (rh, &uc->start_time)) ||
1927       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &state)))
1928   {
1929     GNUNET_break (0);
1930     goto cleanup;
1931   }
1932   uc->state = (enum UnindexState) state;
1933   switch (state)
1934   {
1935   case UNINDEX_STATE_HASHING:
1936     break;
1937   case UNINDEX_STATE_FS_NOTIFY:
1938     if (GNUNET_OK !=
1939         GNUNET_BIO_read (rh, "unindex-hash", &uc->file_id,
1940                          sizeof (GNUNET_HashCode)))
1941     {
1942       GNUNET_break (0);
1943       goto cleanup;
1944     }
1945     break;
1946   case UNINDEX_STATE_DS_REMOVE:
1947     break;
1948   case UNINDEX_STATE_COMPLETE:
1949     break;
1950   case UNINDEX_STATE_ERROR:
1951     if (GNUNET_OK !=
1952         GNUNET_BIO_read_string (rh, "unindex-emsg", &uc->emsg, 10 * 1024))
1953     {
1954       GNUNET_break (0);
1955       goto cleanup;
1956     }
1957     break;
1958   default:
1959     GNUNET_break (0);
1960     goto cleanup;
1961   }
1962   uc->top = GNUNET_FS_make_top (h, &GNUNET_FS_unindex_signal_suspend_, uc);
1963   pi.status = GNUNET_FS_STATUS_UNINDEX_RESUME;
1964   pi.value.unindex.specifics.resume.message = uc->emsg;
1965   GNUNET_FS_unindex_make_status_ (&pi, uc,
1966                                   (uc->state ==
1967                                    UNINDEX_STATE_COMPLETE) ? uc->file_size : 0);
1968   switch (uc->state)
1969   {
1970   case UNINDEX_STATE_HASHING:
1971     uc->fhc =
1972         GNUNET_CRYPTO_hash_file (GNUNET_SCHEDULER_PRIORITY_IDLE, uc->filename,
1973                                  HASHING_BLOCKSIZE,
1974                                  &GNUNET_FS_unindex_process_hash_, uc);
1975     break;
1976   case UNINDEX_STATE_FS_NOTIFY:
1977     uc->state = UNINDEX_STATE_HASHING;
1978     GNUNET_FS_unindex_process_hash_ (uc, &uc->file_id);
1979     break;
1980   case UNINDEX_STATE_DS_REMOVE:
1981     GNUNET_FS_unindex_do_remove_ (uc);
1982     break;
1983   case UNINDEX_STATE_COMPLETE:
1984   case UNINDEX_STATE_ERROR:
1985     /* no need to resume any operation, we were done */
1986     break;
1987   default:
1988     break;
1989   }
1990   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
1991   {
1992     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1993                 _("Failure while resuming unindexing operation `%s': %s\n"),
1994                 filename, emsg);
1995     GNUNET_free (emsg);
1996   }
1997   return GNUNET_OK;
1998 cleanup:
1999   GNUNET_free_non_null (uc->filename);
2000   if ((rh != NULL) && (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg)))
2001   {
2002     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2003                 _("Failed to resume unindexing operation `%s': %s\n"), filename,
2004                 emsg);
2005     GNUNET_free (emsg);
2006   }
2007   if (uc->serialization != NULL)
2008     GNUNET_FS_remove_sync_file_ (h, GNUNET_FS_SYNC_PATH_MASTER_UNINDEX,
2009                                  uc->serialization);
2010   GNUNET_free_non_null (uc->serialization);
2011   GNUNET_free (uc);
2012   return GNUNET_OK;
2013 }
2014
2015
2016 /**
2017  * Deserialize a download.
2018  *
2019  * @param h overall context
2020  * @param rh file to deserialize from
2021  * @param parent parent download
2022  * @param search associated search
2023  * @param serialization name under which the search was serialized
2024  */
2025 static void
2026 deserialize_download (struct GNUNET_FS_Handle *h,
2027                       struct GNUNET_BIO_ReadHandle *rh,
2028                       struct GNUNET_FS_DownloadContext *parent,
2029                       struct GNUNET_FS_SearchResult *search,
2030                       const char *serialization);
2031
2032
2033 /**
2034  * Deserialize a search.
2035  *
2036  * @param h overall context
2037  * @param rh file to deserialize from
2038  * @param psearch_result parent search result
2039  * @param serialization name under which the search was serialized
2040  */
2041 static struct GNUNET_FS_SearchContext *
2042 deserialize_search (struct GNUNET_FS_Handle *h,
2043                     struct GNUNET_BIO_ReadHandle *rh,
2044                     struct GNUNET_FS_SearchResult *psearch_result,
2045                     const char *serialization);
2046
2047
2048 /**
2049  * Function called with a filename of serialized search result
2050  * to deserialize.
2051  *
2052  * @param cls the 'struct GNUNET_FS_SearchContext*'
2053  * @param filename complete filename (absolute path)
2054  * @return GNUNET_OK (continue to iterate)
2055  */
2056 static int
2057 deserialize_search_result (void *cls, const char *filename)
2058 {
2059   struct GNUNET_FS_SearchContext *sc = cls;
2060   char *ser;
2061   char *uris;
2062   char *emsg;
2063   char *download;
2064   char *update_srch;
2065   struct GNUNET_BIO_ReadHandle *rh;
2066   struct GNUNET_BIO_ReadHandle *drh;
2067   struct GNUNET_FS_SearchResult *sr;
2068
2069   ser = get_serialization_short_name (filename);
2070   rh = GNUNET_BIO_read_open (filename);
2071   if (rh == NULL)
2072   {
2073     if (ser != NULL)
2074     {
2075       remove_sync_file_in_dir (sc->h,
2076                                (sc->psearch_result ==
2077                                 NULL) ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
2078                                GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2079                                sc->serialization, ser);
2080       GNUNET_free (ser);
2081     }
2082     return GNUNET_OK;
2083   }
2084   emsg = NULL;
2085   uris = NULL;
2086   download = NULL;
2087   update_srch = NULL;
2088   sr = GNUNET_malloc (sizeof (struct GNUNET_FS_SearchResult));
2089   sr->sc = sc;
2090   sr->serialization = ser;
2091   if ((GNUNET_OK != GNUNET_BIO_read_string (rh, "result-uri", &uris, 10 * 1024))
2092       || (NULL == (sr->uri = GNUNET_FS_uri_parse (uris, &emsg))) ||
2093       (GNUNET_OK != GNUNET_BIO_read_string (rh, "download-lnk", &download, 16))
2094       || (GNUNET_OK !=
2095           GNUNET_BIO_read_string (rh, "search-lnk", &update_srch, 16)) ||
2096       (GNUNET_OK != GNUNET_BIO_read_meta_data (rh, "result-meta", &sr->meta)) ||
2097       (GNUNET_OK !=
2098        GNUNET_BIO_read (rh, "result-key", &sr->key, sizeof (GNUNET_HashCode)))
2099       || (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &sr->mandatory_missing)) ||
2100       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &sr->optional_support)) ||
2101       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &sr->availability_success)) ||
2102       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &sr->availability_trials)))
2103   {
2104     GNUNET_break (0);
2105     goto cleanup;
2106   }
2107   if ( (NULL != sr->uri) &&
2108        (sr->uri->type == ksk) )
2109   {
2110     sr->keyword_bitmap = GNUNET_malloc ((sr->uri->data.ksk.keywordCount + 7) / 8); /* round up, count bits */
2111     if (GNUNET_OK != GNUNET_BIO_read (rh, "keyword-bitmap",
2112                                       sr->keyword_bitmap,
2113                                       (sr->uri->data.ksk.keywordCount + 7) / 8))
2114     {
2115       GNUNET_break (0);
2116       goto cleanup;
2117     }
2118   }
2119   GNUNET_free (uris);
2120   if (download != NULL)
2121   {
2122     drh = get_read_handle (sc->h, GNUNET_FS_SYNC_PATH_CHILD_DOWNLOAD, download);
2123     if (drh != NULL)
2124     {
2125       deserialize_download (sc->h, drh, NULL, sr, download);
2126       if (GNUNET_OK != GNUNET_BIO_read_close (drh, &emsg))
2127       {
2128         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2129                     _("Failed to resume sub-download `%s': %s\n"), download,
2130                     emsg);
2131         GNUNET_free (emsg);
2132       }
2133     }
2134     GNUNET_free (download);
2135   }
2136   if (update_srch != NULL)
2137   {
2138     drh =
2139         get_read_handle (sc->h, GNUNET_FS_SYNC_PATH_CHILD_SEARCH, update_srch);
2140     if (drh != NULL)
2141     {
2142       deserialize_search (sc->h, drh, sr, update_srch);
2143       if (GNUNET_OK != GNUNET_BIO_read_close (drh, &emsg))
2144       {
2145         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2146                     _("Failed to resume sub-search `%s': %s\n"), update_srch,
2147                     emsg);
2148         GNUNET_free (emsg);
2149       }
2150     }
2151     GNUNET_free (update_srch);
2152   }
2153   GNUNET_CONTAINER_multihashmap_put (sc->master_result_map, &sr->key, sr,
2154                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2155   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
2156   {
2157     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2158                 _("Failure while resuming search operation `%s': %s\n"),
2159                 filename, emsg);
2160     GNUNET_free (emsg);
2161   }
2162   return GNUNET_OK;
2163 cleanup:
2164   GNUNET_free_non_null (download);
2165   GNUNET_free_non_null (emsg);
2166   GNUNET_free_non_null (uris);
2167   GNUNET_free_non_null (update_srch);
2168   if (sr->uri != NULL)
2169     GNUNET_FS_uri_destroy (sr->uri);
2170   if (sr->meta != NULL)
2171     GNUNET_CONTAINER_meta_data_destroy (sr->meta);
2172   GNUNET_free (sr->serialization);
2173   GNUNET_free (sr);
2174   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
2175   {
2176     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2177                 _("Failure while resuming search operation `%s': %s\n"),
2178                 filename, emsg);
2179     GNUNET_free (emsg);
2180   }
2181   return GNUNET_OK;
2182 }
2183
2184
2185 /**
2186  * Send the 'resume' signal to the callback; also actually
2187  * resume the download (put it in the queue).  Does this
2188  * recursively for the top-level download and all child
2189  * downloads.
2190  *
2191  * @param dc download to resume
2192  */
2193 static void
2194 signal_download_resume (struct GNUNET_FS_DownloadContext *dc)
2195 {
2196   struct GNUNET_FS_DownloadContext *dcc;
2197   struct GNUNET_FS_ProgressInfo pi;
2198
2199   pi.status = GNUNET_FS_STATUS_DOWNLOAD_RESUME;
2200   pi.value.download.specifics.resume.meta = dc->meta;
2201   pi.value.download.specifics.resume.message = dc->emsg;
2202   GNUNET_FS_download_make_status_ (&pi, dc);
2203   dcc = dc->child_head;
2204   while (NULL != dcc)
2205   {
2206     signal_download_resume (dcc);
2207     dcc = dcc->next;
2208   }
2209   if (dc->pending_head != NULL)
2210     GNUNET_FS_download_start_downloading_ (dc);
2211 }
2212
2213
2214 /**
2215  * Signal resuming of a search to our clients (for the
2216  * top level search and all sub-searches).
2217  *
2218  * @param sc search being resumed
2219  */
2220 static void
2221 signal_search_resume (struct GNUNET_FS_SearchContext *sc);
2222
2223
2224 /**
2225  * Iterator over search results signaling resume to the client for
2226  * each result.
2227  *
2228  * @param cls closure, the 'struct GNUNET_FS_SearchContext'
2229  * @param key current key code
2230  * @param value value in the hash map, the 'struct GNUNET_FS_SearchResult'
2231  * @return GNUNET_YES (we should continue to iterate)
2232  */
2233 static int
2234 signal_result_resume (void *cls, const GNUNET_HashCode * key, void *value)
2235 {
2236   struct GNUNET_FS_SearchContext *sc = cls;
2237   struct GNUNET_FS_ProgressInfo pi;
2238   struct GNUNET_FS_SearchResult *sr = value;
2239
2240   if (0 == sr->mandatory_missing)
2241   {
2242     pi.status = GNUNET_FS_STATUS_SEARCH_RESUME_RESULT;
2243     pi.value.search.specifics.resume_result.meta = sr->meta;
2244     pi.value.search.specifics.resume_result.uri = sr->uri;
2245     pi.value.search.specifics.resume_result.result = sr;
2246     pi.value.search.specifics.resume_result.availability_rank =
2247         2 * sr->availability_success - sr->availability_trials;
2248     pi.value.search.specifics.resume_result.availability_certainty =
2249         sr->availability_trials;
2250     pi.value.search.specifics.resume_result.applicability_rank =
2251         sr->optional_support;
2252     sr->client_info = GNUNET_FS_search_make_status_ (&pi, sc);
2253   }
2254   if (sr->download != NULL)
2255   {
2256     signal_download_resume (sr->download);
2257   }
2258   else
2259   {
2260     GNUNET_FS_search_start_probe_ (sr);
2261   }
2262   if (sr->update_search != NULL)
2263     signal_search_resume (sr->update_search);
2264   return GNUNET_YES;
2265 }
2266
2267
2268 /**
2269  * Free memory allocated by the search context and its children
2270  *
2271  * @param sc search context to free
2272  */
2273 static void
2274 free_search_context (struct GNUNET_FS_SearchContext *sc);
2275
2276
2277 /**
2278  * Iterator over search results freeing each.
2279  *
2280  * @param cls closure, the 'struct GNUNET_FS_SearchContext'
2281  * @param key current key code
2282  * @param value value in the hash map, the 'struct GNUNET_FS_SearchResult'
2283  * @return GNUNET_YES (we should continue to iterate)
2284  */
2285 static int
2286 free_result (void *cls, const GNUNET_HashCode * key, void *value)
2287 {
2288   struct GNUNET_FS_SearchResult *sr = value;
2289
2290   if (sr->update_search != NULL)
2291   {
2292     free_search_context (sr->update_search);
2293     GNUNET_assert (NULL == sr->update_search);
2294   }
2295   GNUNET_CONTAINER_meta_data_destroy (sr->meta);
2296   GNUNET_FS_uri_destroy (sr->uri);
2297   GNUNET_free (sr);
2298   return GNUNET_YES;
2299 }
2300
2301
2302 /**
2303  * Free memory allocated by the search context and its children
2304  *
2305  * @param sc search context to free
2306  */
2307 static void
2308 free_search_context (struct GNUNET_FS_SearchContext *sc)
2309 {
2310   if (sc->serialization != NULL)
2311   {
2312     GNUNET_FS_remove_sync_file_ (sc->h,
2313                                  (sc->psearch_result ==
2314                                   NULL) ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
2315                                  GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2316                                  sc->serialization);
2317     GNUNET_FS_remove_sync_dir_ (sc->h,
2318                                 (sc->psearch_result ==
2319                                  NULL) ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
2320                                 GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2321                                 sc->serialization);
2322   }
2323   GNUNET_free_non_null (sc->serialization);
2324   GNUNET_free_non_null (sc->emsg);
2325   if (sc->uri != NULL)
2326     GNUNET_FS_uri_destroy (sc->uri);
2327   if (sc->master_result_map != NULL)
2328   {
2329     GNUNET_CONTAINER_multihashmap_iterate (sc->master_result_map, &free_result,
2330                                            sc);
2331     GNUNET_CONTAINER_multihashmap_destroy (sc->master_result_map);
2332   }
2333   GNUNET_free (sc);
2334 }
2335
2336
2337 /**
2338  * Function called with a filename of serialized sub-download
2339  * to deserialize.
2340  *
2341  * @param cls the 'struct GNUNET_FS_DownloadContext*' (parent)
2342  * @param filename complete filename (absolute path)
2343  * @return GNUNET_OK (continue to iterate)
2344  */
2345 static int
2346 deserialize_subdownload (void *cls, const char *filename)
2347 {
2348   struct GNUNET_FS_DownloadContext *parent = cls;
2349   char *ser;
2350   char *emsg;
2351   struct GNUNET_BIO_ReadHandle *rh;
2352
2353   ser = get_serialization_short_name (filename);
2354   rh = GNUNET_BIO_read_open (filename);
2355   if (rh == NULL)
2356   {
2357     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2358                 _
2359                 ("Failed to resume sub-download `%s': could not open file `%s'\n"),
2360                 ser, filename);
2361     GNUNET_free (ser);
2362     return GNUNET_OK;
2363   }
2364   deserialize_download (parent->h, rh, parent, NULL, ser);
2365   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
2366   {
2367     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2368                 _("Failed to resume sub-download `%s': %s\n"), ser, emsg);
2369     GNUNET_free (emsg);
2370   }
2371   GNUNET_free (ser);
2372   return GNUNET_OK;
2373 }
2374
2375
2376 /**
2377  * Free this download context and all of its descendants.
2378  * (only works during deserialization since not all possible
2379  * state it taken care of).
2380  *
2381  * @param dc context to free
2382  */
2383 static void
2384 free_download_context (struct GNUNET_FS_DownloadContext *dc)
2385 {
2386   struct GNUNET_FS_DownloadContext *dcc;
2387
2388   if (dc->meta != NULL)
2389     GNUNET_CONTAINER_meta_data_destroy (dc->meta);
2390   if (dc->uri != NULL)
2391     GNUNET_FS_uri_destroy (dc->uri);
2392   GNUNET_free_non_null (dc->temp_filename);
2393   GNUNET_free_non_null (dc->emsg);
2394   GNUNET_free_non_null (dc->filename);
2395   GNUNET_free_non_null (dc->serialization);
2396   while (NULL != (dcc = dc->child_head))
2397   {
2398     GNUNET_CONTAINER_DLL_remove (dc->child_head, dc->child_tail, dcc);
2399     free_download_context (dcc);
2400   }
2401   GNUNET_FS_free_download_request_ (dc->top_request);
2402   if (NULL != dc->active)
2403     GNUNET_CONTAINER_multihashmap_destroy (dc->active);
2404   GNUNET_free (dc);
2405 }
2406
2407
2408 /**
2409  * Deserialize a download.
2410  *
2411  * @param h overall context
2412  * @param rh file to deserialize from
2413  * @param parent parent download
2414  * @param search associated search
2415  * @param serialization name under which the search was serialized
2416  */
2417 static void
2418 deserialize_download (struct GNUNET_FS_Handle *h,
2419                       struct GNUNET_BIO_ReadHandle *rh,
2420                       struct GNUNET_FS_DownloadContext *parent,
2421                       struct GNUNET_FS_SearchResult *search,
2422                       const char *serialization)
2423 {
2424   struct GNUNET_FS_DownloadContext *dc;
2425   char *emsg;
2426   char *uris;
2427   char *dn;
2428   uint32_t options;
2429   uint32_t status;
2430
2431   uris = NULL;
2432   emsg = NULL;
2433   dc = GNUNET_malloc (sizeof (struct GNUNET_FS_DownloadContext));
2434   dc->parent = parent;
2435   dc->h = h;
2436   dc->serialization = GNUNET_strdup (serialization);
2437   if ((GNUNET_OK !=
2438        GNUNET_BIO_read_string (rh, "download-uri", &uris, 10 * 1024)) ||
2439       (NULL == (dc->uri = GNUNET_FS_uri_parse (uris, &emsg))) ||
2440       ((GNUNET_YES != GNUNET_FS_uri_test_chk (dc->uri)) &&
2441        (GNUNET_YES != GNUNET_FS_uri_test_loc (dc->uri))) ||
2442       (GNUNET_OK != GNUNET_BIO_read_meta_data (rh, "download-meta", &dc->meta))
2443       || (GNUNET_OK !=
2444           GNUNET_BIO_read_string (rh, "download-emsg", &dc->emsg, 10 * 1024)) ||
2445       (GNUNET_OK !=
2446        GNUNET_BIO_read_string (rh, "download-fn", &dc->filename, 10 * 1024)) ||
2447       (GNUNET_OK !=
2448        GNUNET_BIO_read_string (rh, "download-tfn", &dc->temp_filename,
2449                                10 * 1024)) ||
2450       (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &dc->old_file_size)) ||
2451       (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &dc->offset)) ||
2452       (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &dc->length)) ||
2453       (GNUNET_OK != GNUNET_BIO_read_int64 (rh, &dc->completed)) ||
2454       (GNUNET_OK != read_start_time (rh, &dc->start_time)) ||
2455       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &dc->anonymity)) ||
2456       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &options)) ||
2457       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &status)))
2458   {
2459     GNUNET_break (0);
2460     goto cleanup;
2461   }
2462   dc->options = (enum GNUNET_FS_DownloadOptions) options;
2463   dc->active =
2464       GNUNET_CONTAINER_multihashmap_create (1 + 2 * (dc->length / DBLOCK_SIZE));
2465   dc->has_finished = (int) status;
2466   dc->treedepth =
2467       GNUNET_FS_compute_depth (GNUNET_FS_uri_chk_get_file_size (dc->uri));
2468   if (GNUNET_FS_uri_test_loc (dc->uri))
2469     GNUNET_assert (GNUNET_OK ==
2470                    GNUNET_FS_uri_loc_get_peer_identity (dc->uri, &dc->target));
2471   if (dc->emsg == NULL)
2472   {
2473     dc->top_request = read_download_request (rh);
2474     if (dc->top_request == NULL)
2475     {
2476       GNUNET_break (0);
2477       goto cleanup;
2478     }
2479   }
2480   dn = get_download_sync_filename (dc, dc->serialization, ".dir");
2481   if (dn != NULL)
2482   {
2483     if (GNUNET_YES == GNUNET_DISK_directory_test (dn))
2484       GNUNET_DISK_directory_scan (dn, &deserialize_subdownload, dc);
2485     GNUNET_free (dn);
2486   }
2487   if (parent != NULL)
2488   {
2489     GNUNET_abort ();            // for debugging for now - FIXME
2490     GNUNET_CONTAINER_DLL_insert (parent->child_head, parent->child_tail, dc);
2491   }
2492   if (search != NULL)
2493   {
2494     dc->search = search;
2495     search->download = dc;
2496   }
2497   if ((parent == NULL) && (search == NULL))
2498   {
2499     dc->top =
2500         GNUNET_FS_make_top (dc->h, &GNUNET_FS_download_signal_suspend_, dc);
2501     signal_download_resume (dc);
2502   }
2503   GNUNET_free (uris);
2504   dc->task = GNUNET_SCHEDULER_add_now (&GNUNET_FS_download_start_task_, dc);
2505   return;
2506 cleanup:
2507   GNUNET_free_non_null (uris);
2508   GNUNET_free_non_null (emsg);
2509   free_download_context (dc);
2510 }
2511
2512
2513 /**
2514  * Signal resuming of a search to our clients (for the
2515  * top level search and all sub-searches).
2516  *
2517  * @param sc search being resumed
2518  */
2519 static void
2520 signal_search_resume (struct GNUNET_FS_SearchContext *sc)
2521 {
2522   struct GNUNET_FS_ProgressInfo pi;
2523
2524   pi.status = GNUNET_FS_STATUS_SEARCH_RESUME;
2525   pi.value.search.specifics.resume.message = sc->emsg;
2526   pi.value.search.specifics.resume.is_paused =
2527       (sc->client == NULL) ? GNUNET_YES : GNUNET_NO;
2528   sc->client_info = GNUNET_FS_search_make_status_ (&pi, sc);
2529   GNUNET_CONTAINER_multihashmap_iterate (sc->master_result_map,
2530                                          &signal_result_resume, sc);
2531
2532 }
2533
2534
2535 /**
2536  * Deserialize a search.
2537  *
2538  * @param h overall context
2539  * @param rh file to deserialize from
2540  * @param psearch_result parent search result
2541  * @param serialization name under which the search was serialized
2542  */
2543 static struct GNUNET_FS_SearchContext *
2544 deserialize_search (struct GNUNET_FS_Handle *h,
2545                     struct GNUNET_BIO_ReadHandle *rh,
2546                     struct GNUNET_FS_SearchResult *psearch_result,
2547                     const char *serialization)
2548 {
2549   struct GNUNET_FS_SearchContext *sc;
2550   char *emsg;
2551   char *uris;
2552   char *dn;
2553   uint32_t options;
2554   char in_pause;
2555
2556   if ((psearch_result != NULL) && (psearch_result->update_search != NULL))
2557   {
2558     GNUNET_break (0);
2559     return NULL;
2560   }
2561   uris = NULL;
2562   emsg = NULL;
2563   sc = GNUNET_malloc (sizeof (struct GNUNET_FS_SearchContext));
2564   if (psearch_result != NULL)
2565   {
2566     sc->psearch_result = psearch_result;
2567     psearch_result->update_search = sc;
2568   }
2569   sc->h = h;
2570   sc->serialization = GNUNET_strdup (serialization);
2571   if ((GNUNET_OK != GNUNET_BIO_read_string (rh, "search-uri", &uris, 10 * 1024))
2572       || (NULL == (sc->uri = GNUNET_FS_uri_parse (uris, &emsg))) ||
2573       ((GNUNET_YES != GNUNET_FS_uri_test_ksk (sc->uri)) &&
2574        (GNUNET_YES != GNUNET_FS_uri_test_sks (sc->uri))) ||
2575       (GNUNET_OK != read_start_time (rh, &sc->start_time)) ||
2576       (GNUNET_OK !=
2577        GNUNET_BIO_read_string (rh, "search-emsg", &sc->emsg, 10 * 1024)) ||
2578       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &options)) ||
2579       (GNUNET_OK !=
2580        GNUNET_BIO_read (rh, "search-pause", &in_pause, sizeof (in_pause))) ||
2581       (GNUNET_OK != GNUNET_BIO_read_int32 (rh, &sc->anonymity)))
2582   {
2583     GNUNET_break (0);
2584     goto cleanup;
2585   }
2586   sc->options = (enum GNUNET_FS_SearchOptions) options;
2587   sc->master_result_map = GNUNET_CONTAINER_multihashmap_create (16);
2588   dn = get_serialization_file_name_in_dir (h,
2589                                            (sc->psearch_result ==
2590                                             NULL) ?
2591                                            GNUNET_FS_SYNC_PATH_MASTER_SEARCH :
2592                                            GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2593                                            sc->serialization, "");
2594   if (dn != NULL)
2595   {
2596     if (GNUNET_YES == GNUNET_DISK_directory_test (dn))
2597       GNUNET_DISK_directory_scan (dn, &deserialize_search_result, sc);
2598     GNUNET_free (dn);
2599   }
2600   if (('\0' == in_pause) &&
2601       (GNUNET_OK != GNUNET_FS_search_start_searching_ (sc)))
2602   {
2603     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2604                 _
2605                 ("Could not resume running search, will resume as paused search\n"));
2606   }
2607   signal_search_resume (sc);
2608   GNUNET_free (uris);
2609   return sc;
2610 cleanup:
2611   GNUNET_free_non_null (emsg);
2612   free_search_context (sc);
2613   GNUNET_free_non_null (uris);
2614   return NULL;
2615 }
2616
2617
2618 /**
2619  * Function called with a filename of serialized search operation
2620  * to deserialize.
2621  *
2622  * @param cls the 'struct GNUNET_FS_Handle*'
2623  * @param filename complete filename (absolute path)
2624  * @return GNUNET_OK (continue to iterate)
2625  */
2626 static int
2627 deserialize_search_file (void *cls, const char *filename)
2628 {
2629   struct GNUNET_FS_Handle *h = cls;
2630   char *ser;
2631   char *emsg;
2632   struct GNUNET_BIO_ReadHandle *rh;
2633   struct GNUNET_FS_SearchContext *sc;
2634
2635   ser = get_serialization_short_name (filename);
2636   rh = GNUNET_BIO_read_open (filename);
2637   if (rh == NULL)
2638   {
2639     if (ser != NULL)
2640     {
2641       GNUNET_FS_remove_sync_file_ (h, GNUNET_FS_SYNC_PATH_MASTER_SEARCH, ser);
2642       GNUNET_free (ser);
2643     }
2644     return GNUNET_OK;
2645   }
2646   sc = deserialize_search (h, rh, NULL, ser);
2647   if (sc != NULL)
2648     sc->top = GNUNET_FS_make_top (h, &GNUNET_FS_search_signal_suspend_, sc);
2649   GNUNET_free (ser);
2650   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
2651   {
2652     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2653                 _("Failure while resuming search operation `%s': %s\n"),
2654                 filename, emsg);
2655     GNUNET_free (emsg);
2656   }
2657   return GNUNET_OK;
2658 }
2659
2660
2661 /**
2662  * Function called with a filename of serialized download operation
2663  * to deserialize.
2664  *
2665  * @param cls the 'struct GNUNET_FS_Handle*'
2666  * @param filename complete filename (absolute path)
2667  * @return GNUNET_OK (continue to iterate)
2668  */
2669 static int
2670 deserialize_download_file (void *cls, const char *filename)
2671 {
2672   struct GNUNET_FS_Handle *h = cls;
2673   char *ser;
2674   char *emsg;
2675   struct GNUNET_BIO_ReadHandle *rh;
2676
2677   ser = get_serialization_short_name (filename);
2678   rh = GNUNET_BIO_read_open (filename);
2679   if (rh == NULL)
2680   {
2681     if (0 != UNLINK (filename))
2682       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", filename);
2683     GNUNET_free (ser);
2684     return GNUNET_OK;
2685   }
2686   deserialize_download (h, rh, NULL, NULL, ser);
2687   GNUNET_free (ser);
2688   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
2689   {
2690     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2691                 _("Failure while resuming download operation `%s': %s\n"),
2692                 filename, emsg);
2693     GNUNET_free (emsg);
2694   }
2695   return GNUNET_OK;
2696 }
2697
2698
2699 /**
2700  * Deserialize informatin about pending operations.
2701  *
2702  * @param master_path which master directory should be scanned
2703  * @param proc function to call for each entry (will get 'h' for 'cls')
2704  * @param h the 'struct GNUNET_FS_Handle*'
2705  */
2706 static void
2707 deserialization_master (const char *master_path, GNUNET_FileNameCallback proc,
2708                         struct GNUNET_FS_Handle *h)
2709 {
2710   char *dn;
2711
2712   dn = get_serialization_file_name (h, master_path, "");
2713   if (dn == NULL)
2714     return;
2715   if (GNUNET_YES == GNUNET_DISK_directory_test (dn))
2716     GNUNET_DISK_directory_scan (dn, proc, h);
2717   GNUNET_free (dn);
2718 }
2719
2720
2721 /**
2722  * Setup a connection to the file-sharing service.
2723  *
2724  * @param cfg configuration to use
2725  * @param client_name unique identifier for this client
2726  * @param upcb function to call to notify about FS actions
2727  * @param upcb_cls closure for upcb
2728  * @param flags specific attributes for fs-operations
2729  * @param ... list of optional options, terminated with GNUNET_FS_OPTIONS_END
2730  * @return NULL on error
2731  */
2732 struct GNUNET_FS_Handle *
2733 GNUNET_FS_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
2734                  const char *client_name, GNUNET_FS_ProgressCallback upcb,
2735                  void *upcb_cls, enum GNUNET_FS_Flags flags, ...)
2736 {
2737   struct GNUNET_FS_Handle *ret;
2738   enum GNUNET_FS_OPTIONS opt;
2739   va_list ap;
2740
2741   ret = GNUNET_malloc (sizeof (struct GNUNET_FS_Handle));
2742   ret->cfg = cfg;
2743   ret->client_name = GNUNET_strdup (client_name);
2744   ret->upcb = upcb;
2745   ret->upcb_cls = upcb_cls;
2746   ret->flags = flags;
2747   ret->max_parallel_downloads = 1;
2748   ret->max_parallel_requests = 1;
2749   ret->avg_block_latency = GNUNET_TIME_UNIT_MINUTES;    /* conservative starting point */
2750   va_start (ap, flags);
2751   while (GNUNET_FS_OPTIONS_END != (opt = va_arg (ap, enum GNUNET_FS_OPTIONS)))
2752   {
2753     switch (opt)
2754     {
2755     case GNUNET_FS_OPTIONS_DOWNLOAD_PARALLELISM:
2756       ret->max_parallel_downloads = va_arg (ap, unsigned int);
2757
2758       break;
2759     case GNUNET_FS_OPTIONS_REQUEST_PARALLELISM:
2760       ret->max_parallel_requests = va_arg (ap, unsigned int);
2761
2762       break;
2763     default:
2764       GNUNET_break (0);
2765       GNUNET_free (ret->client_name);
2766       GNUNET_free (ret);
2767       va_end (ap);
2768       return NULL;
2769     }
2770   }
2771   va_end (ap);
2772   if (0 != (GNUNET_FS_FLAGS_PERSISTENCE & flags))
2773   {
2774     deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_PUBLISH,
2775                             &deserialize_publish_file, ret);
2776     deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_SEARCH,
2777                             &deserialize_search_file, ret);
2778     deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_DOWNLOAD,
2779                             &deserialize_download_file, ret);
2780     deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_UNINDEX,
2781                             &deserialize_unindex_file, ret);
2782   }
2783   return ret;
2784 }
2785
2786
2787 /**
2788  * Close our connection with the file-sharing service.
2789  * The callback given to GNUNET_FS_start will no longer be
2790  * called after this function returns.
2791  *
2792  * @param h handle that was returned from GNUNET_FS_start
2793  */
2794 void
2795 GNUNET_FS_stop (struct GNUNET_FS_Handle *h)
2796 {
2797   while (h->top_head != NULL)
2798     h->top_head->ssf (h->top_head->ssf_cls);
2799   if (h->queue_job != GNUNET_SCHEDULER_NO_TASK)
2800     GNUNET_SCHEDULER_cancel (h->queue_job);
2801   GNUNET_free (h->client_name);
2802   GNUNET_free (h);
2803 }
2804
2805
2806 /* end of fs.c */