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