f69fd564db3599e5f58fe188c96ba80daf15f158
[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",
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",
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     return NULL;
528   ret = GNUNET_BIO_write_open (fn);
529   GNUNET_free (fn);
530   return ret;
531 }
532
533
534 /**
535  * Return a write handle for serialization.
536  *
537  * @param h master context
538  * @param ext component of the path 
539  * @param uni name of parent
540  * @param ent entity identifier (or emtpy string for the directory)
541  * @return NULL on error
542  */
543 static struct GNUNET_BIO_WriteHandle *
544 get_write_handle_in_dir (struct GNUNET_FS_Handle *h,
545                          const char *ext,
546                          const char *uni,
547                          const char *ent)
548 {
549   char *fn;
550   struct GNUNET_BIO_WriteHandle *ret;
551
552   fn = get_serialization_file_name_in_dir (h, ext, uni, ent);
553   if (fn == NULL)
554     return NULL;
555   ret = GNUNET_BIO_write_open (fn);
556   GNUNET_free (fn);
557   return ret;
558 }
559
560
561 /**
562  * Remove serialization/deserialization file from disk.
563  *
564  * @param h master context
565  * @param ext component of the path 
566  * @param ent entity identifier 
567  */
568 void
569 GNUNET_FS_remove_sync_file_ (struct GNUNET_FS_Handle *h,
570                              const char *ext,
571                              const char *ent)
572 {
573   char *filename;
574
575   if ( (NULL == ent) ||
576        (0 == strlen (ent)) )
577     {
578       GNUNET_break (0);
579       return;
580     }
581   filename = get_serialization_file_name (h, ext, ent);
582   if (0 != UNLINK (filename))
583     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
584                               "unlink", 
585                               filename);
586   GNUNET_free (filename);
587 }
588
589
590 /**
591  * Remove serialization/deserialization file from disk.
592  *
593  * @param h master context
594  * @param ext component of the path 
595  * @param uni parent name
596  * @param ent entity identifier 
597  */
598 static void
599 remove_sync_file_in_dir (struct GNUNET_FS_Handle *h,
600                          const char *ext,
601                          const char *uni,
602                          const char *ent)
603 {
604   char *filename;
605
606   if ( (NULL == ent) ||
607        (0 == strlen (ent)) )
608     {
609       GNUNET_break (0);
610       return;
611     }
612   filename = get_serialization_file_name_in_dir (h, ext, uni, ent);
613   if (0 != UNLINK (filename))
614     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
615                               "unlink", 
616                               filename);
617   GNUNET_free (filename);
618 }
619
620
621 /**
622  * Remove serialization/deserialization directory from disk.
623  *
624  * @param h master context
625  * @param ext component of the path 
626  * @param uni unique name of parent 
627  */
628 void
629 GNUNET_FS_remove_sync_dir_ (struct GNUNET_FS_Handle *h,
630                             const char *ext,
631                             const char *uni)
632 {
633   char *dn;
634
635   if (uni == NULL)
636     return;
637   dn = get_serialization_file_name_in_dir (h, ext, uni, "");
638   if (dn == NULL)
639     return;
640   if ( (GNUNET_OK == GNUNET_DISK_directory_test (dn)) &&
641        (GNUNET_OK != GNUNET_DISK_directory_remove (dn)) )
642     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
643                               "rmdir", 
644                               dn);
645   GNUNET_free (dn);
646 }
647
648
649 /**
650  * Serialize a 'start_time'.  Since we use start-times to
651  * calculate the duration of some operation, we actually
652  * do not serialize the absolute time but the (relative)
653  * duration since the start time.  When we then
654  * deserialize the start time, we take the current time and
655  * subtract that duration so that we get again an absolute
656  * time stamp that will result in correct performance
657  * calculations.
658  *
659  * @param wh handle for writing
660  * @param timestamp time to serialize
661  * @return GNUNET_OK on success
662  */
663 static int
664 write_start_time (struct GNUNET_BIO_WriteHandle *wh,
665                   struct GNUNET_TIME_Absolute timestamp)
666 {
667   struct GNUNET_TIME_Relative dur;
668
669   dur = GNUNET_TIME_absolute_get_duration (timestamp);
670   return GNUNET_BIO_write_int64 (wh, dur.value);
671 }
672
673
674 /**
675  * Serialize a 'start_time'.  Since we use start-times to
676  * calculate the duration of some operation, we actually
677  * do not serialize the absolute time but the (relative)
678  * duration since the start time.  When we then
679  * deserialize the start time, we take the current time and
680  * subtract that duration so that we get again an absolute
681  * time stamp that will result in correct performance
682  * calculations.
683  *
684  * @param rh handle for reading
685  * @param timestamp where to write the deserialized timestamp
686  * @return GNUNET_OK on success
687  */
688 static int
689 read_start_time (struct GNUNET_BIO_ReadHandle *rh,
690                  struct GNUNET_TIME_Absolute *timestamp)
691 {
692   struct GNUNET_TIME_Relative dur;
693   if (GNUNET_OK !=
694       GNUNET_BIO_read_int64 (rh, &dur.value))
695     return GNUNET_SYSERR;
696   *timestamp = GNUNET_TIME_absolute_subtract (GNUNET_TIME_absolute_get (),
697                                               dur);
698   return GNUNET_OK;
699 }
700
701
702 /**
703  * Using the given serialization filename, try to deserialize
704  * the file-information tree associated with it.
705  *
706  * @param h master context
707  * @param filename name of the file (without directory) with
708  *        the infromation
709  * @return NULL on error
710  */
711 static struct GNUNET_FS_FileInformation *
712 deserialize_file_information (struct GNUNET_FS_Handle *h,
713                               const char *filename);
714
715
716 /**
717  * Using the given serialization filename, try to deserialize
718  * the file-information tree associated with it.
719  *
720  * @param h master context
721  * @param fn name of the file (without directory) with
722  *        the infromation
723  * @param rh handle for reading
724  * @return NULL on error
725  */
726 static struct GNUNET_FS_FileInformation *
727 deserialize_fi_node (struct GNUNET_FS_Handle *h,
728                      const char *fn,
729                      struct GNUNET_BIO_ReadHandle *rh)
730 {
731   struct GNUNET_FS_FileInformation *ret;
732   struct GNUNET_FS_FileInformation *nxt;
733   char b;
734   char *ksks;
735   char *chks;
736   char *filename;
737   uint32_t dsize;
738
739   if (GNUNET_OK !=
740       GNUNET_BIO_read (rh, "status flag", &b, sizeof(b)))
741     {
742       GNUNET_break (0);
743       return NULL;
744     }
745   ret = GNUNET_malloc (sizeof (struct GNUNET_FS_FileInformation));
746   ksks = NULL;
747   chks = NULL;
748   filename = NULL;
749   if ( (GNUNET_OK !=
750         GNUNET_BIO_read_meta_data (rh, "metadata", &ret->meta)) ||
751        (GNUNET_OK !=
752         GNUNET_BIO_read_string (rh, "ksk-uri", &ksks, 32*1024)) ||
753        ( (ksks != NULL) &&
754          (NULL == 
755           (ret->keywords = GNUNET_FS_uri_parse (ksks, NULL))) ) ||
756        (GNUNET_YES !=
757         GNUNET_FS_uri_test_ksk (ret->keywords)) ||
758        (GNUNET_OK !=
759         GNUNET_BIO_read_string (rh, "chk-uri", &chks, 1024)) ||
760        ( (chks != NULL) &&
761          ( (NULL == 
762             (ret->chk_uri = GNUNET_FS_uri_parse (chks, NULL))) ||
763            (GNUNET_YES !=
764             GNUNET_FS_uri_test_chk (ret->chk_uri)) ) ) ||
765        (GNUNET_OK !=
766         GNUNET_BIO_read_int64 (rh, &ret->expirationTime.value)) ||
767        (GNUNET_OK !=
768         read_start_time (rh, &ret->start_time)) ||
769        (GNUNET_OK !=
770         GNUNET_BIO_read_string (rh, "emsg", &ret->emsg, 16*1024)) ||
771        (GNUNET_OK !=
772         GNUNET_BIO_read_string (rh, "fn", &ret->filename, 16*1024)) ||
773        (GNUNET_OK !=
774         GNUNET_BIO_read_int32 (rh, &ret->anonymity)) ||
775        (GNUNET_OK !=
776         GNUNET_BIO_read_int32 (rh, &ret->priority)) )
777     goto cleanup;
778   switch (b)
779     {
780     case 0: /* file-insert */
781       if (GNUNET_OK !=
782           GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size))
783         goto cleanup;
784       ret->is_directory = GNUNET_NO;
785       ret->data.file.do_index = GNUNET_NO;
786       ret->data.file.have_hash = GNUNET_NO;
787       ret->data.file.index_start_confirmed = GNUNET_NO;
788       if (GNUNET_NO == ret->is_published) 
789         {
790           if (NULL == ret->filename)
791             {
792               ret->data.file.reader = &GNUNET_FS_data_reader_copy_;
793               ret->data.file.reader_cls = GNUNET_malloc_large (ret->data.file.file_size);
794               if (ret->data.file.reader_cls == NULL)
795                 goto cleanup;
796               if (GNUNET_OK !=
797                   GNUNET_BIO_read (rh, "file-data", ret->data.file.reader_cls, ret->data.file.file_size))
798                 goto cleanup;
799             }      
800           else
801             {
802               ret->data.file.reader = &GNUNET_FS_data_reader_file_;
803               ret->data.file.reader_cls = GNUNET_FS_make_file_reader_context_ (ret->filename);
804             }
805         }
806       break;
807     case 1: /* file-index, no hash */
808       if (NULL == ret->filename)
809         goto cleanup;
810       if (GNUNET_OK !=
811           GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size))
812         goto cleanup;
813       ret->is_directory = GNUNET_NO;
814       ret->data.file.do_index = GNUNET_YES;
815       ret->data.file.have_hash = GNUNET_NO;
816       ret->data.file.index_start_confirmed = GNUNET_NO;
817       ret->data.file.reader = &GNUNET_FS_data_reader_file_;
818       ret->data.file.reader_cls = GNUNET_FS_make_file_reader_context_ (ret->filename);
819       break;
820     case 2: /* file-index-with-hash */
821       if (NULL == ret->filename)
822         goto cleanup;
823       if ( (GNUNET_OK !=
824             GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size)) ||
825            (GNUNET_OK !=
826             GNUNET_BIO_read (rh, "fileid", &ret->data.file.file_id, sizeof (GNUNET_HashCode))) )
827         goto cleanup;
828       ret->is_directory = GNUNET_NO;
829       ret->data.file.do_index = GNUNET_YES;
830       ret->data.file.have_hash = GNUNET_YES;
831       ret->data.file.index_start_confirmed = GNUNET_NO;
832       ret->data.file.reader = &GNUNET_FS_data_reader_file_;
833       ret->data.file.reader_cls = GNUNET_FS_make_file_reader_context_ (ret->filename);
834       break;
835     case 3: /* file-index-with-hash-confirmed */
836       if (NULL == ret->filename)
837         goto cleanup;
838       if ( (GNUNET_OK !=
839             GNUNET_BIO_read_int64 (rh, &ret->data.file.file_size)) ||
840            (GNUNET_OK !=
841             GNUNET_BIO_read (rh, "fileid", &ret->data.file.file_id, sizeof (GNUNET_HashCode))) )
842         goto cleanup;
843
844       ret->is_directory = GNUNET_NO;
845       ret->data.file.do_index = GNUNET_YES;
846       ret->data.file.have_hash = GNUNET_YES;
847       ret->data.file.index_start_confirmed = GNUNET_YES;
848       ret->data.file.reader = &GNUNET_FS_data_reader_file_;
849       ret->data.file.reader_cls = GNUNET_FS_make_file_reader_context_ (ret->filename);
850       break;
851     case 4: /* directory */
852       if ( (GNUNET_OK !=
853             GNUNET_BIO_read_int32 (rh, &dsize)) ||
854            (NULL == (ret->data.dir.dir_data = GNUNET_malloc_large (dsize))) ||
855            (GNUNET_OK !=
856             GNUNET_BIO_read (rh, "dir-data", ret->data.dir.dir_data, dsize)) ||
857            (GNUNET_OK !=
858             GNUNET_BIO_read_string (rh, "ent-filename", &filename, 16*1024)) )
859         goto cleanup;
860       ret->data.dir.dir_size = (uint32_t) dsize;
861       ret->is_directory = GNUNET_YES;
862       if (filename != NULL)
863         {
864           ret->data.dir.entries = deserialize_file_information (h, filename);
865           GNUNET_free (filename);
866           filename = NULL;
867           nxt = ret->data.dir.entries;
868           while (nxt != NULL)
869             {
870               nxt->dir = ret;
871               nxt = nxt->next;
872             }  
873         }
874       break;
875     default:
876       GNUNET_break (0);
877       goto cleanup;
878     }
879   ret->serialization = GNUNET_strdup (fn);
880   if (GNUNET_OK !=
881       GNUNET_BIO_read_string (rh, "nxt-filename", &filename, 16*1024))
882     goto cleanup;  
883   if (filename != NULL)
884     {
885       ret->next = deserialize_file_information (h, filename);
886       GNUNET_free (filename);
887       filename = NULL;
888     }
889   GNUNET_free_non_null (ksks);
890   GNUNET_free_non_null (chks);
891   return ret;
892  cleanup:
893   GNUNET_free_non_null (ksks);
894   GNUNET_free_non_null (chks);
895   GNUNET_free_non_null (filename);
896   GNUNET_FS_file_information_destroy (ret, NULL, NULL);
897   return NULL;
898 }
899
900
901 /**
902  * Using the given serialization filename, try to deserialize
903  * the file-information tree associated with it.
904  *
905  * @param h master context
906  * @param filename name of the file (without directory) with
907  *        the infromation
908  * @return NULL on error
909  */
910 static struct GNUNET_FS_FileInformation *
911 deserialize_file_information (struct GNUNET_FS_Handle *h,
912                               const char *filename)
913 {
914   struct GNUNET_FS_FileInformation *ret;
915   struct GNUNET_BIO_ReadHandle *rh;
916   char *emsg;
917
918   rh = get_read_handle (h, GNUNET_FS_SYNC_PATH_FILE_INFO, filename);
919   if (rh == NULL)
920     return NULL;
921   ret = deserialize_fi_node (h, filename, rh);
922   if (GNUNET_OK !=
923       GNUNET_BIO_read_close (rh, &emsg))
924     {
925       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
926                   _("Failed to resume publishing information `%s': %s\n"),
927                   filename,
928                   emsg);
929       GNUNET_free (emsg);
930     }
931   return ret;
932 }
933
934
935 /**
936  * Given a serialization name (full absolute path), return the
937  * basename of the file (without the path), which must only
938  * consist of the 6 random characters.
939  * 
940  * @param fullname name to extract the basename from
941  * @return copy of the basename, NULL on error
942  */
943 static char *
944 get_serialization_short_name (const char *fullname)
945 {
946   const char *end;
947   const char *nxt;
948
949   end = NULL;
950   nxt = fullname;
951   /* FIXME: we could do this faster since we know
952      the length of 'end'... */
953   while ('\0' != nxt)
954     {
955       if (DIR_SEPARATOR == *nxt)
956         end = nxt + 1;
957       nxt++;
958     }
959   if ( (end == NULL) ||
960        (strlen (end) == 0) )
961     {
962       GNUNET_break (0);
963       return NULL;
964     }
965   GNUNET_break (6 == strlen (end));
966   return GNUNET_strdup (end);  
967 }
968
969
970 /**
971  * Create a new random name for serialization.  Also checks if persistence
972  * is enabled and returns NULL if not.
973  *
974  * @param h master context
975  * @param ext component of the path 
976  * @return NULL on errror
977  */
978 static char *
979 make_serialization_file_name (struct GNUNET_FS_Handle *h,
980                               const char *ext)
981 {
982   char *fn;
983   char *dn;
984   char *ret;
985
986   if (0 == (h->flags & GNUNET_FS_FLAGS_PERSISTENCE))
987     return NULL; /* persistence not requested */
988   dn = get_serialization_file_name (h, ext, "");
989   fn = GNUNET_DISK_mktemp (dn);
990   GNUNET_free (dn);
991   if (fn == NULL)
992     return NULL; /* epic fail */
993   ret = get_serialization_short_name (fn);
994   GNUNET_free (fn);
995   return ret;
996 }
997
998
999 /**
1000  * Create a new random name for serialization.  Also checks if persistence
1001  * is enabled and returns NULL if not.
1002  *
1003  * @param h master context
1004  * @param ext component of the path 
1005  * @param uni name of parent
1006  * @return NULL on errror
1007  */
1008 static char *
1009 make_serialization_file_name_in_dir (struct GNUNET_FS_Handle *h,
1010                                      const char *ext,
1011                                      const char *uni)
1012 {
1013   char *fn;
1014   char *dn;
1015   char *ret;
1016
1017   if (0 == (h->flags & GNUNET_FS_FLAGS_PERSISTENCE))
1018     return NULL; /* persistence not requested */
1019   dn = get_serialization_file_name_in_dir (h, ext, uni, "");
1020   fn = GNUNET_DISK_mktemp (dn);
1021   GNUNET_free (dn);
1022   if (fn == NULL)
1023     return NULL; /* epic fail */
1024   ret = get_serialization_short_name (fn);
1025   GNUNET_free (fn);
1026   return ret;
1027 }
1028
1029
1030 /**
1031  * Copy all of the data from the reader to the write handle.
1032  *
1033  * @param wh write handle
1034  * @param fi file with reader
1035  * @return GNUNET_OK on success
1036  */
1037 static int
1038 copy_from_reader (struct GNUNET_BIO_WriteHandle *wh,
1039                   struct GNUNET_FS_FileInformation * fi)
1040 {
1041   char buf[32 * 1024];
1042   uint64_t off;
1043   size_t ret;
1044   char *emsg;
1045
1046   emsg = NULL;
1047   off = 0;
1048   while (off < fi->data.file.file_size)
1049     {
1050       ret = fi->data.file.reader (fi->data.file.reader_cls,
1051                                   off, sizeof (buf),
1052                                   buf,
1053                                   &emsg);
1054       if (ret == 0)
1055         {
1056           GNUNET_free (emsg);
1057           return GNUNET_SYSERR;
1058         }
1059       if (GNUNET_OK != 
1060           GNUNET_BIO_write (wh, buf, ret))
1061         return GNUNET_SYSERR;
1062       off += ret;
1063     }
1064   return GNUNET_OK;
1065 }
1066
1067
1068 /**
1069  * Create a temporary file on disk to store the current
1070  * state of "fi" in.
1071  *
1072  * @param fi file information to sync with disk
1073  */
1074 void
1075 GNUNET_FS_file_information_sync_ (struct GNUNET_FS_FileInformation * fi)
1076 {
1077   char *fn;
1078   struct GNUNET_BIO_WriteHandle *wh;
1079   char b;
1080   char *ksks;
1081   char *chks;
1082
1083   if (NULL == fi->serialization)    
1084     fi->serialization = make_serialization_file_name (fi->h, GNUNET_FS_SYNC_PATH_FILE_INFO);
1085   if (NULL == fi->serialization)
1086     return;
1087   wh = get_write_handle (fi->h, GNUNET_FS_SYNC_PATH_FILE_INFO, fi->serialization);
1088   if (wh == NULL)
1089     {
1090       GNUNET_free (fi->serialization);
1091       fi->serialization = NULL;
1092       return;
1093     }
1094   if (GNUNET_YES == fi->is_directory)
1095     b = 4;
1096   else if (GNUNET_YES == fi->data.file.index_start_confirmed)
1097     b = 3;
1098   else if (GNUNET_YES == fi->data.file.have_hash)
1099     b = 2;
1100   else if (GNUNET_YES == fi->data.file.do_index)
1101     b = 1;
1102   else
1103     b = 0;
1104   if (fi->keywords != NULL)
1105     ksks = GNUNET_FS_uri_to_string (fi->keywords);
1106   else
1107     ksks = NULL;
1108   if (fi->chk_uri != NULL)
1109     chks = GNUNET_FS_uri_to_string (fi->chk_uri);
1110   else
1111     chks = NULL;
1112   if ( (GNUNET_OK !=
1113         GNUNET_BIO_write (wh, &b, sizeof (b))) ||
1114        (GNUNET_OK != 
1115         GNUNET_BIO_write_meta_data (wh, fi->meta)) ||
1116        (GNUNET_OK !=
1117         GNUNET_BIO_write_string (wh, ksks)) ||
1118        (GNUNET_OK !=
1119         GNUNET_BIO_write_string (wh, chks)) ||
1120        (GNUNET_OK != 
1121         GNUNET_BIO_write_int64 (wh, fi->expirationTime.value)) ||
1122        (GNUNET_OK != 
1123         write_start_time (wh, fi->start_time)) ||
1124        (GNUNET_OK !=
1125         GNUNET_BIO_write_string (wh, fi->emsg)) ||
1126        (GNUNET_OK !=
1127         GNUNET_BIO_write_string (wh, fi->filename)) ||
1128        (GNUNET_OK != 
1129         GNUNET_BIO_write_int32 (wh, fi->anonymity)) ||
1130        (GNUNET_OK != 
1131         GNUNET_BIO_write_int32 (wh, fi->priority)) )
1132     goto cleanup;
1133   GNUNET_free_non_null (chks);
1134   chks = NULL;
1135   GNUNET_free_non_null (ksks);
1136   ksks = NULL;
1137   
1138   switch (b)
1139     {
1140     case 0: /* file-insert */
1141       if (GNUNET_OK !=
1142           GNUNET_BIO_write_int64 (wh, fi->data.file.file_size))
1143         goto cleanup;
1144       if ( (GNUNET_NO == fi->is_published) &&
1145            (NULL == fi->filename) )     
1146         if (GNUNET_OK != 
1147             copy_from_reader (wh, fi))
1148           goto cleanup;
1149       break;
1150     case 1: /* file-index, no hash */
1151       if (NULL == fi->filename)
1152         goto cleanup;
1153       if (GNUNET_OK !=
1154           GNUNET_BIO_write_int64 (wh, fi->data.file.file_size))
1155         goto cleanup;
1156       break;
1157     case 2: /* file-index-with-hash */
1158     case 3: /* file-index-with-hash-confirmed */
1159       if (NULL == fi->filename)
1160         goto cleanup;
1161       if ( (GNUNET_OK !=
1162             GNUNET_BIO_write_int64 (wh, fi->data.file.file_size)) ||
1163            (GNUNET_OK !=
1164             GNUNET_BIO_write (wh, &fi->data.file.file_id, sizeof (GNUNET_HashCode))) )
1165         goto cleanup;
1166       break;
1167     case 4: /* directory */
1168       if ( (GNUNET_OK !=
1169             GNUNET_BIO_write_int32 (wh, fi->data.dir.dir_size)) ||
1170            (GNUNET_OK !=
1171             GNUNET_BIO_write (wh, fi->data.dir.dir_data, (uint32_t) fi->data.dir.dir_size)) ||
1172            (GNUNET_OK !=
1173             GNUNET_BIO_write_string (wh, fi->data.dir.entries->serialization)) )
1174         goto cleanup;
1175       break;
1176     default:
1177       GNUNET_assert (0);
1178       goto cleanup;
1179     }
1180   if (GNUNET_OK !=
1181       GNUNET_BIO_write_string (wh, fi->next->serialization))
1182     goto cleanup;  
1183   if (GNUNET_OK ==
1184       GNUNET_BIO_write_close (wh))
1185     return; /* done! */
1186  cleanup:
1187   (void) GNUNET_BIO_write_close (wh);
1188   GNUNET_free_non_null (chks);
1189   GNUNET_free_non_null (ksks);
1190   fn = get_serialization_file_name (fi->h, GNUNET_FS_SYNC_PATH_FILE_INFO, fi->serialization);
1191   if (0 != UNLINK (fn))
1192     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", fn);
1193   GNUNET_free (fn);
1194   GNUNET_free (fi->serialization);
1195   fi->serialization = NULL;  
1196 }
1197
1198
1199
1200 /**
1201  * Find the entry in the file information struct where the
1202  * serialization filename matches the given name.
1203  *
1204  * @param pos file information to search
1205  * @param srch filename to search for
1206  * @return NULL if srch was not found in this subtree
1207  */
1208 static struct GNUNET_FS_FileInformation *
1209 find_file_position (struct GNUNET_FS_FileInformation *pos,
1210                     const char *srch)
1211 {
1212   struct GNUNET_FS_FileInformation *r;
1213
1214   while (pos != NULL)
1215     {
1216       if (0 == strcmp (srch,
1217                        pos->serialization))
1218         return pos;
1219       if (pos->is_directory)
1220         {
1221           r = find_file_position (pos->data.dir.entries,
1222                                   srch);
1223           if (r != NULL)
1224             return r;
1225         }
1226       pos = pos->next;
1227     }
1228   return NULL;
1229 }
1230
1231
1232 /**
1233  * Signal the FS's progress function that we are resuming
1234  * an upload.
1235  *
1236  * @param cls closure (of type "struct GNUNET_FS_PublishContext*")
1237  * @param fi the entry in the publish-structure
1238  * @param length length of the file or directory
1239  * @param meta metadata for the file or directory (can be modified)
1240  * @param uri pointer to the keywords that will be used for this entry (can be modified)
1241  * @param anonymity pointer to selected anonymity level (can be modified)
1242  * @param priority pointer to selected priority (can be modified)
1243  * @param expirationTime pointer to selected expiration time (can be modified)
1244  * @param client_info pointer to client context set upon creation (can be modified)
1245  * @return GNUNET_OK to continue (always)
1246  */
1247 static int
1248 fip_signal_resume(void *cls,
1249                   struct GNUNET_FS_FileInformation *fi,
1250                   uint64_t length,
1251                   struct GNUNET_CONTAINER_MetaData *meta,
1252                   struct GNUNET_FS_Uri **uri,
1253                   uint32_t *anonymity,
1254                   uint32_t *priority,
1255                   struct GNUNET_TIME_Absolute *expirationTime,
1256                   void **client_info)
1257 {
1258   struct GNUNET_FS_PublishContext *sc = cls;
1259   struct GNUNET_FS_ProgressInfo pi;
1260
1261   pi.status = GNUNET_FS_STATUS_PUBLISH_RESUME;
1262   pi.value.publish.specifics.resume.message = sc->fi->emsg;
1263   pi.value.publish.specifics.resume.chk_uri = sc->fi->chk_uri;
1264   *client_info = GNUNET_FS_publish_make_status_ (&pi, sc, fi, 0);
1265   return GNUNET_OK;
1266 }
1267
1268
1269 /**
1270  * Function called with a filename of serialized publishing operation
1271  * to deserialize.
1272  *
1273  * @param cls the 'struct GNUNET_FS_Handle*'
1274  * @param filename complete filename (absolute path)
1275  * @return GNUNET_OK (continue to iterate)
1276  */
1277 static int
1278 deserialize_publish_file (void *cls,
1279                           const char *filename)
1280 {
1281   struct GNUNET_FS_Handle *h = cls;
1282   struct GNUNET_BIO_ReadHandle *rh;
1283   struct GNUNET_FS_PublishContext *pc;
1284   int32_t options;
1285   int32_t all_done;
1286   char *fi_root;
1287   char *ns;
1288   char *fi_pos;
1289   char *emsg;
1290
1291   pc = GNUNET_malloc (sizeof (struct GNUNET_FS_PublishContext));
1292   pc->h = h;
1293   pc->serialization = get_serialization_short_name (filename);
1294   fi_root = NULL;
1295   fi_pos = NULL;
1296   ns = NULL;
1297   rh = GNUNET_BIO_read_open (filename);
1298   if (rh == NULL)
1299     goto cleanup;
1300   if ( (GNUNET_OK !=
1301         GNUNET_BIO_read_string (rh, "publish-nid", &pc->nid, 1024)) ||
1302        (GNUNET_OK !=
1303         GNUNET_BIO_read_string (rh, "publish-nuid", &pc->nuid, 1024)) ||
1304        (GNUNET_OK !=
1305         GNUNET_BIO_read_int32 (rh, &options)) ||
1306        (GNUNET_OK !=
1307         GNUNET_BIO_read_int32 (rh, &all_done)) ||
1308        (GNUNET_OK !=
1309         GNUNET_BIO_read_string (rh, "publish-firoot", &fi_root, 128)) ||
1310        (GNUNET_OK !=
1311         GNUNET_BIO_read_string (rh, "publish-fipos", &fi_pos, 128)) ||
1312        (GNUNET_OK !=
1313         GNUNET_BIO_read_string (rh, "publish-ns", &ns, 1024)) )
1314     goto cleanup;          
1315   pc->options = options;
1316   pc->all_done = all_done;
1317   pc->fi = deserialize_file_information (h, fi_root);
1318   if (pc->fi == NULL)
1319     goto cleanup;    
1320   if (ns != NULL)
1321     {
1322       pc->namespace = GNUNET_FS_namespace_create (h, ns);
1323       if (pc->namespace == NULL)
1324         {
1325           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1326                       _("Failed to recover namespace `%s', cannot resume publishing operation.\n"),
1327                       ns);
1328           goto cleanup;
1329         }
1330     }
1331   if (fi_pos != NULL)
1332     {
1333       pc->fi_pos = find_file_position (pc->fi,
1334                                        fi_pos);
1335       GNUNET_free (fi_pos);
1336       fi_pos = NULL;
1337       if (pc->fi_pos == NULL)
1338         {
1339           /* failed to find position for resuming, outch! Will start from root! */
1340           GNUNET_break (0);
1341           if (pc->all_done != GNUNET_YES)
1342             pc->fi_pos = pc->fi;
1343         }
1344     }
1345   /* generate RESUME event(s) */
1346   GNUNET_FS_file_information_inspect (pc->fi,
1347                                       &fip_signal_resume,
1348                                       pc);
1349   
1350   /* re-start publishing (if needed)... */
1351   if (pc->all_done != GNUNET_YES)
1352     pc->upload_task 
1353       = GNUNET_SCHEDULER_add_with_priority (h->sched,
1354                                             GNUNET_SCHEDULER_PRIORITY_BACKGROUND,
1355                                             &GNUNET_FS_publish_main_,
1356                                             pc);       
1357   if (GNUNET_OK !=
1358       GNUNET_BIO_read_close (rh, &emsg))
1359     {
1360       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1361                   _("Failure while resuming publishing operation `%s': %s\n"),
1362                   filename,
1363                   emsg);
1364       GNUNET_free (emsg);
1365     }
1366   GNUNET_free_non_null (ns);
1367   return GNUNET_OK;
1368  cleanup:
1369   GNUNET_free_non_null (pc->nid);
1370   GNUNET_free_non_null (pc->nuid);
1371   GNUNET_free_non_null (fi_root);
1372   GNUNET_free_non_null (fi_pos);
1373   GNUNET_free_non_null (ns);
1374   if ( (rh != NULL) &&
1375        (GNUNET_OK !=
1376         GNUNET_BIO_read_close (rh, &emsg)) )
1377     {
1378       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1379                   _("Failed to resume publishing operation `%s': %s\n"),
1380                   filename,
1381                   emsg);
1382       GNUNET_free (emsg);
1383     }
1384   if (pc->fi != NULL)
1385     GNUNET_FS_file_information_destroy (pc->fi, NULL, NULL);
1386   if (0 != UNLINK (filename))
1387     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", filename);
1388   GNUNET_free_non_null (pc->serialization);
1389   GNUNET_free (pc);
1390   return GNUNET_OK;
1391 }
1392
1393
1394 /**
1395  * Synchronize this publishing struct with its mirror
1396  * on disk.  Note that all internal FS-operations that change
1397  * publishing structs should already call "sync" internally,
1398  * so this function is likely not useful for clients.
1399  * 
1400  * @param pc the struct to sync
1401  */
1402 void
1403 GNUNET_FS_publish_sync_ (struct GNUNET_FS_PublishContext *pc)
1404 {  
1405   struct GNUNET_BIO_WriteHandle *wh;
1406
1407   if (NULL == pc->serialization)
1408     pc->serialization = make_serialization_file_name (pc->h,
1409                                                       GNUNET_FS_SYNC_PATH_MASTER_PUBLISH);
1410   if (NULL == pc->serialization)
1411     return;
1412   if (NULL == pc->fi)
1413     return;
1414   if (NULL == pc->fi->serialization)
1415     {
1416       GNUNET_break (0);
1417       return;
1418     }
1419   wh = get_write_handle (pc->h, GNUNET_FS_SYNC_PATH_MASTER_PUBLISH, pc->serialization);
1420   if ( (GNUNET_OK !=
1421         GNUNET_BIO_write_string (wh, pc->nid)) ||
1422        (GNUNET_OK !=
1423         GNUNET_BIO_write_string (wh, pc->nuid)) ||
1424        (GNUNET_OK !=
1425         GNUNET_BIO_write_int32 (wh, pc->options)) ||
1426        (GNUNET_OK !=
1427         GNUNET_BIO_write_int32 (wh, pc->all_done)) ||
1428        (GNUNET_OK !=
1429         GNUNET_BIO_write_string (wh, pc->fi->serialization)) ||
1430        (GNUNET_OK !=
1431         GNUNET_BIO_write_string (wh, (pc->fi_pos == NULL) ? NULL : pc->fi_pos->serialization)) ||
1432        (GNUNET_OK !=
1433         GNUNET_BIO_write_string (wh, (pc->namespace == NULL) ? NULL : pc->namespace->name)) )
1434    {
1435      goto cleanup;
1436    }
1437  if (GNUNET_OK !=
1438      GNUNET_BIO_write_close (wh))
1439    {
1440      wh = NULL;
1441      goto cleanup;
1442    }
1443  return;
1444  cleanup:
1445  if (wh != NULL)
1446      (void) GNUNET_BIO_write_close (wh); 
1447  GNUNET_FS_remove_sync_file_ (pc->h, GNUNET_FS_SYNC_PATH_MASTER_PUBLISH, pc->serialization);
1448  GNUNET_free (pc->serialization);
1449  pc->serialization = NULL;
1450 }
1451
1452
1453 /**
1454  * Synchronize this unindex struct with its mirror
1455  * on disk.  Note that all internal FS-operations that change
1456  * publishing structs should already call "sync" internally,
1457  * so this function is likely not useful for clients.
1458  * 
1459  * @param uc the struct to sync
1460  */
1461 void
1462 GNUNET_FS_unindex_sync_ (struct GNUNET_FS_UnindexContext *uc)
1463 {
1464   struct GNUNET_BIO_WriteHandle *wh;
1465
1466   if (UNINDEX_STATE_ABORTED == uc->state)
1467     return;
1468   if (NULL == uc->serialization)
1469     uc->serialization = make_serialization_file_name (uc->h,
1470                                                       GNUNET_FS_SYNC_PATH_MASTER_UNINDEX);
1471   if (NULL == uc->serialization)
1472     return;
1473   wh = get_write_handle (uc->h, GNUNET_FS_SYNC_PATH_MASTER_UNINDEX, uc->serialization);
1474   if ( (GNUNET_OK !=
1475         GNUNET_BIO_write_string (wh, uc->filename)) ||
1476        (GNUNET_OK !=
1477         GNUNET_BIO_write_int64 (wh, uc->file_size)) ||
1478        (GNUNET_OK !=
1479         write_start_time (wh, uc->start_time)) ||
1480        (GNUNET_OK !=
1481         GNUNET_BIO_write_int32 (wh, (uint32_t) uc->state)) ||
1482        ( (uc->state == UNINDEX_STATE_FS_NOTIFY) &&
1483          (GNUNET_OK !=
1484           GNUNET_BIO_write (wh, &uc->file_id, sizeof (GNUNET_HashCode))) ) ||
1485        ( (uc->state == UNINDEX_STATE_ERROR) &&
1486          (GNUNET_OK !=
1487           GNUNET_BIO_write_string (wh, uc->emsg)) ) )
1488     goto cleanup;
1489   if (GNUNET_OK !=
1490       GNUNET_BIO_write_close (wh))
1491     {
1492       wh = NULL;
1493       goto cleanup;
1494     }  
1495   return;
1496  cleanup:
1497   if (wh != NULL)
1498     (void) GNUNET_BIO_write_close (wh);
1499   GNUNET_FS_remove_sync_file_ (uc->h, GNUNET_FS_SYNC_PATH_MASTER_UNINDEX, uc->serialization);
1500   GNUNET_free (uc->serialization);
1501   uc->serialization = NULL;
1502 }
1503
1504
1505 /**
1506  * Serialize an active or pending download request.
1507  * 
1508  * @param cls the 'struct GNUNET_BIO_WriteHandle*'
1509  * @param key unused, can be NULL
1510  * @param value the 'struct DownloadRequest'
1511  * @return GNUNET_YES on success, GNUNET_NO on error
1512  */
1513 static int
1514 write_download_request (void *cls,
1515                         const GNUNET_HashCode *key,
1516                         void *value)
1517 {
1518   struct GNUNET_BIO_WriteHandle *wh = cls;
1519   struct DownloadRequest *dr = value;
1520   
1521   if ( (GNUNET_OK !=
1522         GNUNET_BIO_write (wh, &dr->chk, sizeof (struct ContentHashKey))) ||
1523        (GNUNET_OK !=
1524         GNUNET_BIO_write_int64 (wh, dr->offset)) ||
1525        (GNUNET_OK !=
1526         GNUNET_BIO_write_int32 (wh, dr->depth)) )    
1527     return GNUNET_NO;    
1528   return GNUNET_YES;
1529 }
1530
1531
1532 /**
1533  * Count active download requests.
1534  * 
1535  * @param cls the 'uint32_t*' counter
1536  * @param key unused, can be NULL
1537  * @param value the 'struct DownloadRequest'
1538  * @return GNUNET_YES (continue iteration)
1539  */
1540 static int
1541 count_download_requests (void *cls,
1542                         const GNUNET_HashCode *key,
1543                         void *value)
1544 {
1545   uint32_t *counter = cls;
1546   
1547   (*counter)++;
1548   return GNUNET_YES;
1549 }
1550
1551
1552 /**
1553  * Compute the name of the sync file (or directory) for the given download
1554  * context.
1555  *
1556  * @param dc download context to compute for
1557  * @param uni unique filename to use, use "" for the directory name
1558  * @return the expanded file name, NULL for none
1559  */
1560 static char *
1561 get_download_sync_filename (struct GNUNET_FS_DownloadContext *dc,
1562                             const char *uni)
1563 {
1564   char *par;
1565   char *epar;
1566
1567   if (dc->parent == NULL)
1568     return get_serialization_file_name (dc->h,
1569                                         (dc->search != NULL) ?
1570                                         GNUNET_FS_SYNC_PATH_CHILD_DOWNLOAD :
1571                                         GNUNET_FS_SYNC_PATH_MASTER_DOWNLOAD,
1572                                         uni);
1573   if (dc->parent->serialization == NULL)
1574     return NULL;
1575   par = get_download_sync_filename (dc->parent, dc->parent->serialization);
1576   if (par == NULL)
1577     return NULL;
1578   GNUNET_asprintf (&epar,
1579                    "%s.dir%s%s",
1580                    par,
1581                    DIR_SEPARATOR_STR,
1582                    uni);
1583   GNUNET_free (par);
1584   return epar;
1585 }
1586
1587
1588 /**
1589  * Synchronize this download struct with its mirror
1590  * on disk.  Note that all internal FS-operations that change
1591  * publishing structs should already call "sync" internally,
1592  * so this function is likely not useful for clients.
1593  * 
1594  * @param dc the struct to sync
1595  */
1596 void
1597 GNUNET_FS_download_sync_ (struct GNUNET_FS_DownloadContext *dc)
1598 {
1599   struct GNUNET_BIO_WriteHandle *wh;
1600   char *uris;
1601   char *fn;
1602   char *dir;
1603   uint32_t num_pending;
1604
1605   if (NULL == dc->serialization)    
1606     {
1607       dir = get_download_sync_filename (dc, "");
1608       if (dir == NULL)
1609         return;
1610       fn = GNUNET_DISK_mktemp (dir);
1611       GNUNET_free (dir);
1612       dc->serialization = get_serialization_short_name (fn);
1613     }
1614   else
1615     {
1616       fn = get_download_sync_filename (dc, dc->serialization);
1617     }
1618   wh = GNUNET_BIO_write_open (fn);
1619   if (wh == NULL)
1620     {
1621       GNUNET_free (dc->serialization);
1622       dc->serialization = NULL;
1623       GNUNET_free (fn);
1624       return;
1625     }
1626   GNUNET_assert ( (GNUNET_YES == GNUNET_FS_uri_test_chk (dc->uri)) ||
1627                   (GNUNET_YES == GNUNET_FS_uri_test_loc (dc->uri)) );
1628   uris = GNUNET_FS_uri_to_string (dc->uri);
1629   num_pending = 0;
1630   if (dc->emsg != NULL)
1631     (void) GNUNET_CONTAINER_multihashmap_iterate (dc->active,
1632                                                   &count_download_requests,
1633                                                   &num_pending);    
1634   GNUNET_assert ( (dc->length == dc->completed) ||
1635                   (dc->emsg != NULL) ||
1636                   (num_pending > 0) );
1637   if ( (GNUNET_OK !=
1638         GNUNET_BIO_write_string (wh, uris)) ||
1639        (GNUNET_OK !=
1640         GNUNET_BIO_write_meta_data (wh, dc->meta)) ||
1641        (GNUNET_OK !=
1642         GNUNET_BIO_write_string (wh, dc->emsg)) ||
1643        (GNUNET_OK !=
1644         GNUNET_BIO_write_string (wh, dc->filename)) ||
1645        (GNUNET_OK !=
1646         GNUNET_BIO_write_string (wh, dc->temp_filename)) ||
1647        (GNUNET_OK !=
1648         GNUNET_BIO_write_int64 (wh, dc->old_file_size)) ||
1649        (GNUNET_OK !=
1650         GNUNET_BIO_write_int64 (wh, dc->offset)) ||
1651        (GNUNET_OK !=
1652         GNUNET_BIO_write_int64 (wh, dc->length)) ||
1653        (GNUNET_OK !=
1654         GNUNET_BIO_write_int64 (wh, dc->completed)) ||
1655        (GNUNET_OK !=
1656         write_start_time (wh, dc->start_time)) ||
1657        (GNUNET_OK !=
1658         GNUNET_BIO_write_int32 (wh, dc->anonymity)) ||
1659        (GNUNET_OK !=
1660         GNUNET_BIO_write_int32 (wh, (uint32_t) dc->options)) ||
1661        (GNUNET_OK !=
1662         GNUNET_BIO_write_int32 (wh, (uint32_t) dc->has_finished)) ||
1663        (GNUNET_OK !=
1664         GNUNET_BIO_write_int32 (wh, num_pending)) )
1665     goto cleanup; 
1666   if (GNUNET_SYSERR ==
1667       GNUNET_CONTAINER_multihashmap_iterate (dc->active,
1668                                              &write_download_request,
1669                                              wh))
1670     goto cleanup;
1671   GNUNET_free_non_null (uris);
1672   if (GNUNET_OK !=
1673       GNUNET_BIO_write_close (wh))
1674     {
1675       wh = NULL;
1676       goto cleanup;
1677     }
1678   GNUNET_free (fn);
1679   return;
1680  cleanup:
1681   if (NULL != wh)
1682     (void) GNUNET_BIO_write_close (wh);
1683   GNUNET_free_non_null (uris);
1684   if (0 != UNLINK (fn))
1685     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", fn);
1686   GNUNET_free (fn);
1687   GNUNET_free (dc->serialization);
1688   dc->serialization = NULL;
1689 }
1690
1691
1692 /**
1693  * Synchronize this search result with its mirror
1694  * on disk.  Note that all internal FS-operations that change
1695  * publishing structs should already call "sync" internally,
1696  * so this function is likely not useful for clients.
1697  * 
1698  * @param sr the struct to sync
1699  */
1700 void
1701 GNUNET_FS_search_result_sync_ (struct GNUNET_FS_SearchResult *sr)
1702 {
1703   struct GNUNET_BIO_WriteHandle *wh;
1704   char *uris;
1705
1706   uris = NULL;
1707   if (NULL == sr->serialization)
1708     sr->serialization = make_serialization_file_name_in_dir (sr->sc->h,
1709                                                              (sr->sc->parent == NULL) 
1710                                                              ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH
1711                                                              : GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
1712                                                              sr->sc->serialization);
1713   if (NULL == sr->serialization)
1714     return;
1715   wh = get_write_handle_in_dir (sr->sc->h, 
1716                                 (sr->sc->parent == NULL) 
1717                                 ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH
1718                                 : GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
1719                                 sr->sc->serialization,
1720                                 sr->serialization);
1721   uris = GNUNET_FS_uri_to_string (sr->uri);
1722   if ( (GNUNET_OK !=
1723         GNUNET_BIO_write_string (wh, uris)) ||
1724        (GNUNET_OK !=
1725         GNUNET_BIO_write_string (wh, sr->download != NULL ? sr->download->serialization : NULL)) ||
1726        (GNUNET_OK !=
1727         GNUNET_BIO_write_meta_data (wh, sr->meta)) ||
1728        (GNUNET_OK !=
1729         GNUNET_BIO_write (wh, &sr->key, sizeof (GNUNET_HashCode))) ||
1730        (GNUNET_OK !=
1731         GNUNET_BIO_write_int32 (wh, sr->mandatory_missing)) ||
1732        (GNUNET_OK !=
1733         GNUNET_BIO_write_int32 (wh, sr->optional_support)) ||
1734        (GNUNET_OK !=
1735         GNUNET_BIO_write_int32 (wh, sr->availability_success)) ||
1736        (GNUNET_OK !=
1737         GNUNET_BIO_write_int32 (wh, sr->availability_trials)) )
1738     goto cleanup;   
1739   if (GNUNET_OK !=
1740       GNUNET_BIO_write_close (wh))
1741     {
1742       wh = NULL;
1743       goto cleanup;
1744     }
1745   GNUNET_free_non_null (uris);
1746   return;
1747  cleanup:
1748   GNUNET_free_non_null (uris);
1749   if (wh != NULL)
1750     (void)  GNUNET_BIO_write_close (wh);
1751   remove_sync_file_in_dir (sr->sc->h,
1752                            (sr->sc->parent == NULL) 
1753                            ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH
1754                            : GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
1755                            sr->sc->serialization,
1756                            sr->serialization);
1757   GNUNET_free (sr->serialization);
1758   sr->serialization = NULL;
1759 }
1760
1761
1762 /**
1763  * Synchronize this search struct with its mirror
1764  * on disk.  Note that all internal FS-operations that change
1765  * publishing structs should already call "sync" internally,
1766  * so this function is likely not useful for clients.
1767  * 
1768  * @param sc the struct to sync
1769  */
1770 void
1771 GNUNET_FS_search_sync_ (struct GNUNET_FS_SearchContext *sc)
1772 {  
1773   struct GNUNET_BIO_WriteHandle *wh;
1774   struct GNUNET_FS_SearchContext *scc;
1775   char *uris;
1776   char in_pause;
1777   const char *category;
1778
1779   
1780   category = (sc->parent == NULL) ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH : GNUNET_FS_SYNC_PATH_CHILD_SEARCH;      
1781   if (NULL == sc->serialization)
1782     sc->serialization = make_serialization_file_name (sc->h,
1783                                                       category);
1784   if (NULL == sc->serialization)
1785     return;
1786   wh = get_write_handle (sc->h, category, sc->serialization);
1787   GNUNET_assert ( (GNUNET_YES == GNUNET_FS_uri_test_ksk (sc->uri)) ||
1788                   (GNUNET_YES == GNUNET_FS_uri_test_sks (sc->uri)) );
1789   uris = GNUNET_FS_uri_to_string (sc->uri);
1790   in_pause = (sc->task != GNUNET_SCHEDULER_NO_TASK) ? 'r' : '\0';
1791   if ( (GNUNET_OK !=
1792         GNUNET_BIO_write_string (wh, uris)) ||
1793        (GNUNET_OK !=
1794         write_start_time (wh, sc->start_time)) ||
1795        (GNUNET_OK !=
1796         GNUNET_BIO_write_string (wh, sc->emsg)) ||
1797        (GNUNET_OK !=
1798         GNUNET_BIO_write_int32 (wh, (uint32_t) sc->options)) ||
1799        (GNUNET_OK !=
1800         GNUNET_BIO_write (wh, &in_pause, sizeof (in_pause))) ||
1801        (GNUNET_OK !=
1802         GNUNET_BIO_write_int32 (wh, sc->anonymity)) )
1803     goto cleanup;          
1804   GNUNET_free (uris);
1805   uris = NULL;
1806   scc = sc->child_head;
1807   while (NULL != scc)
1808     {
1809       if (scc->serialization == NULL)
1810         break;
1811       if (GNUNET_OK !=
1812           GNUNET_BIO_write_string (wh, scc->serialization))
1813         goto cleanup;
1814       scc = scc->next;
1815     }
1816   GNUNET_BIO_write_string (wh, NULL);
1817   if (GNUNET_OK !=
1818       GNUNET_BIO_write_close (wh))
1819     {
1820       wh = NULL;
1821       goto cleanup;
1822     }
1823   return;
1824  cleanup:
1825   if (wh != NULL)
1826     (void) GNUNET_BIO_write_close (wh);
1827   GNUNET_free_non_null (uris);
1828   GNUNET_FS_remove_sync_file_ (sc->h, category, sc->serialization);
1829   GNUNET_free (sc->serialization);
1830   sc->serialization = NULL;
1831 }
1832
1833
1834 /**
1835  * Function called with a filename of serialized unindexing operation
1836  * to deserialize.
1837  *
1838  * @param cls the 'struct GNUNET_FS_Handle*'
1839  * @param filename complete filename (absolute path)
1840  * @return GNUNET_OK (continue to iterate)
1841  */
1842 static int
1843 deserialize_unindex_file (void *cls,
1844                           const char *filename)
1845 {
1846   struct GNUNET_FS_Handle *h = cls;
1847   struct GNUNET_BIO_ReadHandle *rh;
1848   struct GNUNET_FS_UnindexContext *uc;
1849   struct GNUNET_FS_ProgressInfo pi;
1850   char *emsg;
1851   uint32_t state;
1852
1853   uc = GNUNET_malloc (sizeof (struct GNUNET_FS_UnindexContext));
1854   uc->h = h;
1855   uc->serialization = get_serialization_short_name (filename);
1856   rh = GNUNET_BIO_read_open (filename);
1857   if (rh == NULL)
1858     goto cleanup;
1859   if ( (GNUNET_OK !=
1860         GNUNET_BIO_read_string (rh, "unindex-fn", &uc->filename, 10*1024)) ||
1861        (GNUNET_OK !=
1862         GNUNET_BIO_read_int64 (rh, &uc->file_size)) ||
1863        (GNUNET_OK !=
1864         read_start_time (rh, &uc->start_time)) ||
1865        (GNUNET_OK !=
1866         GNUNET_BIO_read_int32 (rh, &state)) )
1867     goto cleanup;          
1868   uc->state = (enum UnindexState) state;
1869   switch (state)
1870     {
1871     case UNINDEX_STATE_HASHING:
1872       break;
1873     case UNINDEX_STATE_FS_NOTIFY:
1874       if (GNUNET_OK !=
1875           GNUNET_BIO_read (rh, "unindex-hash", &uc->file_id, sizeof (GNUNET_HashCode)))
1876         goto cleanup;
1877       break;
1878     case UNINDEX_STATE_DS_REMOVE:
1879       break;
1880     case UNINDEX_STATE_COMPLETE:
1881       break;
1882     case UNINDEX_STATE_ERROR:
1883       if (GNUNET_OK !=
1884           GNUNET_BIO_read_string (rh, "unindex-emsg", &uc->emsg, 10*1024))
1885         goto cleanup;
1886       break;
1887     case UNINDEX_STATE_ABORTED:
1888       GNUNET_break (0);
1889       goto cleanup;
1890     default:
1891       GNUNET_break (0);
1892       goto cleanup;
1893     }
1894   pi.status = GNUNET_FS_STATUS_UNINDEX_RESUME;
1895   pi.value.unindex.specifics.resume.message = uc->emsg;
1896   GNUNET_FS_unindex_make_status_ (&pi,
1897                                   uc,
1898                                   (uc->state == UNINDEX_STATE_COMPLETE) 
1899                                   ? uc->file_size
1900                                   : 0);
1901   switch (uc->state)
1902     {
1903     case UNINDEX_STATE_HASHING:
1904       GNUNET_CRYPTO_hash_file (uc->h->sched,
1905                                GNUNET_SCHEDULER_PRIORITY_IDLE,
1906                                uc->filename,
1907                                HASHING_BLOCKSIZE,
1908                                &GNUNET_FS_unindex_process_hash_,
1909                                uc);
1910       break;
1911     case UNINDEX_STATE_FS_NOTIFY:
1912       uc->state = UNINDEX_STATE_HASHING;
1913       GNUNET_FS_unindex_process_hash_ (uc,
1914                                        &uc->file_id);
1915       break;
1916     case UNINDEX_STATE_DS_REMOVE:
1917       GNUNET_FS_unindex_do_remove_ (uc);
1918       break;
1919     case UNINDEX_STATE_COMPLETE:
1920     case UNINDEX_STATE_ERROR:
1921       /* no need to resume any operation, we were done */
1922       break;
1923     default:
1924       break;
1925     }
1926   if (GNUNET_OK !=
1927       GNUNET_BIO_read_close (rh, &emsg))
1928     {
1929       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1930                   _("Failure while resuming unindexing operation `%s': %s\n"),
1931                   filename,
1932                   emsg);
1933       GNUNET_free (emsg);
1934     }
1935   return GNUNET_OK;
1936  cleanup:
1937   GNUNET_free_non_null (uc->filename);
1938   if ( (rh != NULL) &&
1939        (GNUNET_OK !=
1940         GNUNET_BIO_read_close (rh, &emsg)) )
1941     {
1942       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1943                   _("Failed to resume unindexing operation `%s': %s\n"),
1944                   filename,
1945                   emsg);
1946       GNUNET_free (emsg);
1947     }
1948   if (uc->serialization != NULL)
1949     GNUNET_FS_remove_sync_file_ (h, GNUNET_FS_SYNC_PATH_MASTER_UNINDEX, uc->serialization);
1950   GNUNET_free_non_null (uc->serialization);
1951   GNUNET_free (uc);
1952   return GNUNET_OK;
1953 }
1954
1955
1956 /**
1957  * Deserialize a download.
1958  *
1959  * @param h overall context
1960  * @param rh file to deserialize from
1961  * @param parent parent download
1962  * @param search associated search
1963  * @param serialization name under which the search was serialized
1964  */
1965 static void
1966 deserialize_download (struct GNUNET_FS_Handle *h,
1967                       struct GNUNET_BIO_ReadHandle *rh,
1968                       struct GNUNET_FS_DownloadContext *parent,
1969                       struct GNUNET_FS_SearchResult *search,
1970                       const char *serialization);
1971
1972
1973 /**
1974  * Function called with a filename of serialized search result
1975  * to deserialize.
1976  *
1977  * @param cls the 'struct GNUNET_FS_SearchContext*'
1978  * @param filename complete filename (absolute path)
1979  * @return GNUNET_OK (continue to iterate)
1980  */
1981 static int
1982 deserialize_search_result (void *cls,
1983                            const char *filename)
1984 {
1985   struct GNUNET_FS_SearchContext *sc = cls;
1986   char *ser;
1987   char *uris;
1988   char *emsg;
1989   char *download;
1990   struct GNUNET_BIO_ReadHandle *rh;
1991   struct GNUNET_BIO_ReadHandle *drh;
1992   struct GNUNET_FS_SearchResult *sr;
1993
1994   ser = get_serialization_short_name (filename);
1995   rh = GNUNET_BIO_read_open (filename);
1996   if (rh == NULL)
1997     {
1998       if (ser != NULL)
1999         {
2000           remove_sync_file_in_dir (sc->h, 
2001                                    (sc->parent == NULL) 
2002                                    ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH
2003                                    : GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2004                                    sc->serialization,
2005                                    ser);
2006           GNUNET_free (ser);
2007         }
2008       return GNUNET_OK;
2009     }
2010   emsg = NULL;
2011   uris = NULL;
2012   download = NULL;
2013   sr = GNUNET_malloc (sizeof (struct GNUNET_FS_SearchResult));
2014   sr->serialization = ser;  
2015   if ( (GNUNET_OK !=
2016         GNUNET_BIO_read_string (rh, "result-uri", &uris, 10*1024)) ||
2017        (NULL == (sr->uri = GNUNET_FS_uri_parse (uris, &emsg))) ||       
2018        (GNUNET_OK !=
2019         GNUNET_BIO_read_string (rh, "download-lnk", &download, 16)) ||
2020        (GNUNET_OK !=
2021         GNUNET_BIO_read_meta_data (rh, "result-meta", &sr->meta)) ||
2022        (GNUNET_OK !=
2023         GNUNET_BIO_read (rh, "result-key", &sr->key, sizeof (GNUNET_HashCode))) ||
2024        (GNUNET_OK !=
2025         GNUNET_BIO_read_int32 (rh, &sr->mandatory_missing)) ||
2026        (GNUNET_OK !=
2027         GNUNET_BIO_read_int32 (rh, &sr->optional_support)) ||
2028        (GNUNET_OK !=
2029         GNUNET_BIO_read_int32 (rh, &sr->availability_success)) ||
2030        (GNUNET_OK !=
2031         GNUNET_BIO_read_int32 (rh, &sr->availability_trials)) )
2032     goto cleanup;   
2033   GNUNET_free (uris);
2034   if (download != NULL)
2035     {
2036       drh = get_read_handle (sc->h, 
2037                              GNUNET_FS_SYNC_PATH_CHILD_DOWNLOAD,
2038                              download);
2039       deserialize_download (sc->h,
2040                             drh,
2041                             NULL,
2042                             sr,
2043                             download);
2044       if (GNUNET_OK !=
2045           GNUNET_BIO_read_close (drh, &emsg))
2046         {
2047           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2048                       _("Failed to resume sub-download `%s': %s\n"),
2049                       download,
2050                       emsg);
2051           GNUNET_free (emsg);
2052         }
2053       GNUNET_free (download);
2054     }
2055   GNUNET_CONTAINER_multihashmap_put (sc->master_result_map,
2056                                      &sr->key,
2057                                      sr,
2058                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2059   return GNUNET_OK;
2060  cleanup:
2061   GNUNET_free_non_null (download);
2062   GNUNET_free_non_null (emsg);
2063   GNUNET_free_non_null (uris);
2064   if (sr->uri != NULL)
2065     GNUNET_FS_uri_destroy (sr->uri);
2066   if (sr->meta != NULL)
2067     GNUNET_CONTAINER_meta_data_destroy (sr->meta);
2068   GNUNET_free (sr->serialization);
2069   GNUNET_free (sr);  
2070   return GNUNET_OK;
2071 }
2072
2073
2074 /**
2075  * Send the 'resume' signal to the callback; also actually
2076  * resume the download (put it in the queue).  Does this
2077  * recursively for the top-level download and all child
2078  * downloads.
2079  * 
2080  * @param dc download to resume
2081  */
2082 static void
2083 signal_download_resume (struct GNUNET_FS_DownloadContext *dc)
2084 {
2085   struct GNUNET_FS_DownloadContext *dcc;
2086   struct GNUNET_FS_ProgressInfo pi;
2087   
2088   pi.status = GNUNET_FS_STATUS_DOWNLOAD_RESUME;
2089   pi.value.download.specifics.resume.meta = dc->meta;
2090   pi.value.download.specifics.resume.message = dc->emsg;
2091   GNUNET_FS_download_make_status_ (&pi,
2092                                    dc);
2093   dcc = dc->child_head;
2094   while (NULL != dcc)
2095     {
2096       signal_download_resume (dcc);
2097       dcc = dcc->next;
2098     }
2099   if (dc->pending != NULL)
2100     GNUNET_FS_download_start_downloading_ (dc);
2101 }
2102
2103
2104 /**
2105  * Iterator over search results signaling resume to the client for
2106  * each result.
2107  *
2108  * @param cls closure, the 'struct GNUNET_FS_SearchContext'
2109  * @param key current key code
2110  * @param value value in the hash map, the 'struct GNUNET_FS_SearchResult'
2111  * @return GNUNET_YES (we should continue to iterate)
2112  */
2113 static int
2114 signal_result_resume (void *cls,
2115                       const GNUNET_HashCode * key,
2116                       void *value)
2117 {
2118   struct GNUNET_FS_SearchContext *sc = cls;
2119   struct GNUNET_FS_ProgressInfo pi;
2120   struct GNUNET_FS_SearchResult *sr = value;
2121
2122   if (0 == sr->mandatory_missing)
2123     {
2124       pi.status = GNUNET_FS_STATUS_SEARCH_RESUME_RESULT;
2125       pi.value.search.specifics.resume_result.meta = sr->meta;
2126       pi.value.search.specifics.resume_result.uri = sr->uri;
2127       pi.value.search.specifics.resume_result.result = sr;
2128       pi.value.search.specifics.resume_result.availability_rank = 2*sr->availability_success - sr->availability_trials;
2129       pi.value.search.specifics.resume_result.availability_certainty = sr->availability_trials;
2130       pi.value.search.specifics.resume_result.applicability_rank = sr->optional_support;
2131       sr->client_info = GNUNET_FS_search_make_status_ (&pi,
2132                                                        sc);
2133     }
2134   if (sr->download != NULL)
2135     {
2136       signal_download_resume (sr->download);
2137     }
2138   else
2139     {
2140       GNUNET_FS_search_start_probe_ (sr);
2141     }
2142   return GNUNET_YES;
2143 }
2144
2145
2146 /**
2147  * Iterator over search results freeing each.
2148  *
2149  * @param cls closure, the 'struct GNUNET_FS_SearchContext'
2150  * @param key current key code
2151  * @param value value in the hash map, the 'struct GNUNET_FS_SearchResult'
2152  * @return GNUNET_YES (we should continue to iterate)
2153  */
2154 static int
2155 free_result (void *cls,
2156              const GNUNET_HashCode * key,
2157              void *value)
2158 {
2159   struct GNUNET_FS_SearchResult *sr = value;
2160
2161   GNUNET_CONTAINER_meta_data_destroy (sr->meta);
2162   GNUNET_FS_uri_destroy (sr->uri);
2163   GNUNET_free (sr);
2164   return GNUNET_YES;
2165 }
2166
2167
2168 /**
2169  * Free memory allocated by the search context and its children
2170  *
2171  * @param sc search context to free
2172  */
2173 static void
2174 free_search_context (struct GNUNET_FS_SearchContext *sc)
2175 {
2176   struct GNUNET_FS_SearchContext *scc;
2177
2178   while (NULL != (scc = sc->child_head))
2179     {
2180       GNUNET_CONTAINER_DLL_remove (sc->child_head,
2181                                    sc->child_tail,
2182                                    scc);      
2183       free_search_context (scc);
2184     }
2185   GNUNET_free_non_null (sc->emsg);
2186   if (sc->serialization != NULL)
2187     {
2188       GNUNET_FS_remove_sync_file_ (sc->h,
2189                                    (sc->parent == NULL) 
2190                                    ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH
2191                                    : GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2192                                    sc->serialization);
2193       GNUNET_FS_remove_sync_dir_ (sc->h,
2194                                    (sc->parent == NULL) 
2195                                    ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH
2196                                    : GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2197                                   sc->serialization);
2198     }
2199   GNUNET_free_non_null (sc->serialization);
2200   if (sc->uri != NULL)
2201     GNUNET_FS_uri_destroy (sc->uri);
2202   if (sc->master_result_map != NULL)
2203     {
2204       GNUNET_CONTAINER_multihashmap_iterate (sc->master_result_map,
2205                                              &free_result,
2206                                              sc);
2207       GNUNET_CONTAINER_multihashmap_destroy (sc->master_result_map);
2208     }
2209   GNUNET_free (sc);
2210 }
2211
2212
2213 /**
2214  * Function called with a filename of serialized sub-download
2215  * to deserialize.
2216  *
2217  * @param cls the 'struct GNUNET_FS_DownloadContext*' (parent)
2218  * @param filename complete filename (absolute path)
2219  * @return GNUNET_OK (continue to iterate)
2220  */
2221 static int
2222 deserialize_subdownload (void *cls,
2223                          const char *filename)
2224 {
2225   struct GNUNET_FS_DownloadContext *parent = cls;
2226   char *ser;
2227   char *emsg;
2228   struct GNUNET_BIO_ReadHandle *rh;
2229
2230   ser = get_serialization_short_name (filename);
2231   rh = GNUNET_BIO_read_open (filename);
2232   deserialize_download (parent->h,
2233                         rh,
2234                         parent,
2235                         NULL,
2236                         ser);
2237   if (GNUNET_OK !=
2238       GNUNET_BIO_read_close (rh, &emsg))
2239     {
2240       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2241                   _("Failed to resume sub-download `%s': %s\n"),
2242                   ser,
2243                   emsg);
2244       GNUNET_free (emsg);
2245     }
2246   GNUNET_free (ser);
2247   return GNUNET_OK;
2248 }
2249
2250
2251 /**
2252  * Free this download context and all of its descendants.
2253  * (only works during deserialization since not all possible
2254  * state it taken care of).
2255  *
2256  * @param dc context to free
2257  */
2258 static void
2259 free_download_context (struct GNUNET_FS_DownloadContext *dc)
2260 {
2261   struct GNUNET_FS_DownloadContext *dcc;
2262   struct DownloadRequest *dr;
2263   if (dc->meta != NULL)
2264     GNUNET_CONTAINER_meta_data_destroy (dc->meta);
2265   if (dc->uri != NULL)
2266     GNUNET_FS_uri_destroy (dc->uri);
2267   GNUNET_free_non_null (dc->temp_filename);
2268   GNUNET_free_non_null (dc->emsg);
2269   GNUNET_free_non_null (dc->filename);
2270   while (NULL != (dcc = dc->child_head))
2271     {
2272       GNUNET_CONTAINER_DLL_remove (dc->child_head,
2273                                    dc->child_tail,
2274                                    dcc);
2275       free_download_context (dcc);
2276     }
2277   while (NULL != (dr = dc->pending))
2278     {
2279       dc->pending = dr->next;
2280       GNUNET_free (dr);
2281     }
2282   GNUNET_free (dc);
2283 }
2284
2285
2286 /**
2287  * Deserialize a download.
2288  *
2289  * @param h overall context
2290  * @param rh file to deserialize from
2291  * @param parent parent download
2292  * @param search associated search
2293  * @param serialization name under which the search was serialized
2294  */
2295 static void
2296 deserialize_download (struct GNUNET_FS_Handle *h,
2297                       struct GNUNET_BIO_ReadHandle *rh,
2298                       struct GNUNET_FS_DownloadContext *parent,
2299                       struct GNUNET_FS_SearchResult *search,
2300                       const char *serialization)
2301 {
2302   struct GNUNET_FS_DownloadContext *dc;
2303   struct DownloadRequest *dr;
2304   char *emsg;
2305   char *uris;
2306   char *dn;
2307   uint32_t options;
2308   uint32_t status;
2309   uint32_t num_pending;
2310
2311   uris = NULL;
2312   emsg = NULL;
2313   dr = NULL;
2314   dc = GNUNET_malloc (sizeof (struct GNUNET_FS_DownloadContext));
2315   dc->parent = parent;
2316   dc->h = h;
2317   dc->serialization = GNUNET_strdup (serialization);
2318   if ( (GNUNET_OK !=
2319         GNUNET_BIO_read_string (rh, "download-uri", &uris, 10*1024)) ||
2320        (NULL == (dc->uri = GNUNET_FS_uri_parse (uris, &emsg))) ||       
2321        ( (GNUNET_YES != GNUNET_FS_uri_test_chk (dc->uri)) &&
2322          (GNUNET_YES != GNUNET_FS_uri_test_loc (dc->uri)) ) ||
2323        (GNUNET_OK !=
2324         GNUNET_BIO_read_meta_data (rh, "download-meta", &dc->meta)) ||
2325        (GNUNET_OK !=
2326         GNUNET_BIO_read_string (rh, "download-emsg", &dc->emsg, 10*1024)) ||
2327        (GNUNET_OK !=
2328         GNUNET_BIO_read_string (rh, "download-fn", &dc->filename, 10*1024)) ||
2329        (GNUNET_OK !=
2330         GNUNET_BIO_read_string (rh, "download-tfn", &dc->temp_filename, 10*1024)) ||
2331        (GNUNET_OK !=
2332         GNUNET_BIO_read_int64 (rh, &dc->old_file_size)) ||
2333        (GNUNET_OK !=
2334         GNUNET_BIO_read_int64 (rh, &dc->offset)) ||
2335        (GNUNET_OK !=
2336         GNUNET_BIO_read_int64 (rh, &dc->length)) ||
2337        (GNUNET_OK !=
2338         GNUNET_BIO_read_int64 (rh, &dc->completed)) ||
2339        (GNUNET_OK !=
2340         read_start_time (rh, &dc->start_time)) ||
2341        (GNUNET_OK !=
2342         GNUNET_BIO_read_int32 (rh, &dc->anonymity)) ||
2343        (GNUNET_OK !=
2344         GNUNET_BIO_read_int32 (rh, &options)) ||
2345        (GNUNET_OK !=
2346         GNUNET_BIO_read_int32 (rh, &status)) ||
2347        (GNUNET_OK !=
2348         GNUNET_BIO_read_int32 (rh, &num_pending)) )
2349     goto cleanup;          
2350   dc->options = (enum GNUNET_FS_DownloadOptions) options;
2351   dc->active = GNUNET_CONTAINER_multihashmap_create (16);
2352   dc->has_finished = (int) status;
2353   dc->treedepth = GNUNET_FS_compute_depth (GNUNET_FS_uri_chk_get_file_size (dc->uri));
2354   if (GNUNET_FS_uri_test_loc (dc->uri))
2355     GNUNET_assert (GNUNET_OK ==
2356                    GNUNET_FS_uri_loc_get_peer_identity (dc->uri,
2357                                                         &dc->target));
2358   if ( (dc->length > dc->completed) &&
2359        (num_pending == 0) )
2360     goto cleanup;    
2361   while (0 < num_pending--)
2362     {
2363       dr = GNUNET_malloc (sizeof (struct DownloadRequest));
2364       if ( (GNUNET_OK !=
2365             GNUNET_BIO_read (rh, "chk", &dr->chk, sizeof (struct ContentHashKey))) ||
2366            (GNUNET_OK !=
2367             GNUNET_BIO_read_int64 (rh, &dr->offset)) ||
2368            (GNUNET_OK !=
2369             GNUNET_BIO_read_int32 (rh, &dr->depth)) )
2370         goto cleanup;      
2371       dr->is_pending = GNUNET_YES;
2372       dr->next = dc->pending;
2373       dc->pending = dr;
2374       dr = NULL;
2375     }
2376   dn = get_download_sync_filename (dc, "");
2377   if (dn != NULL)
2378     {
2379       GNUNET_DISK_directory_scan (dn, &deserialize_subdownload, dc);
2380       GNUNET_free (dn);
2381     }
2382   if (parent != NULL)
2383     GNUNET_CONTAINER_DLL_insert (parent->child_head,
2384                                  parent->child_tail,
2385                                  dc);
2386   if (search != NULL)
2387     {
2388       dc->search = search;
2389       search->download = dc;
2390     }
2391   signal_download_resume (dc);
2392   GNUNET_free (uris);
2393   return;
2394  cleanup:
2395   GNUNET_free_non_null (uris);
2396   GNUNET_free_non_null (dr);
2397   free_download_context (dc);
2398 }
2399
2400
2401 /**
2402  * Signal resuming of a search to our clients (for the
2403  * top level search and all sub-searches).
2404  *
2405  * @param sc search being resumed
2406  */
2407 static void
2408 signal_search_resume (struct GNUNET_FS_SearchContext *sc)
2409 {
2410   struct GNUNET_FS_SearchContext *scc;
2411   struct GNUNET_FS_ProgressInfo pi;
2412
2413   pi.status = GNUNET_FS_STATUS_SEARCH_RESUME;
2414   pi.value.search.specifics.resume.message = sc->emsg;
2415   pi.value.search.specifics.resume.is_paused = (sc->client == NULL) ? GNUNET_YES : GNUNET_NO;
2416   sc->client_info = GNUNET_FS_search_make_status_ (&pi,
2417                                                    sc);
2418   scc = sc->child_head;
2419   while (NULL != scc)
2420     {
2421       signal_search_resume (scc);
2422       scc = scc->next;
2423     }
2424 }
2425
2426
2427 /**
2428  * Deserialize a search. 
2429  *
2430  * @param h overall context
2431  * @param rh file to deserialize from
2432  * @param parent parent search
2433  * @param serialization name under which the search was serialized
2434  */
2435 static struct GNUNET_FS_SearchContext *
2436 deserialize_search (struct GNUNET_FS_Handle *h,
2437                     struct GNUNET_BIO_ReadHandle *rh,
2438                     struct GNUNET_FS_SearchContext *parent,
2439                     const char *serialization)
2440 {
2441   struct GNUNET_FS_SearchContext *sc;
2442   struct GNUNET_FS_SearchContext *scc;
2443   struct GNUNET_BIO_ReadHandle *rhc;
2444   char *emsg;
2445   char *uris;
2446   char *child_ser;
2447   char *dn;
2448   uint32_t options;
2449   char in_pause;
2450
2451   uris = NULL;
2452   emsg = NULL;
2453   sc = GNUNET_malloc (sizeof (struct GNUNET_FS_SearchContext));
2454   sc->parent = parent;
2455   sc->h = h;
2456   sc->serialization = GNUNET_strdup (serialization);
2457   if ( (GNUNET_OK !=
2458         GNUNET_BIO_read_string (rh, "search-uri", &uris, 10*1024)) ||
2459        (NULL == (sc->uri = GNUNET_FS_uri_parse (uris, &emsg))) ||       
2460        ( (GNUNET_YES != GNUNET_FS_uri_test_ksk (sc->uri)) &&
2461          (GNUNET_YES != GNUNET_FS_uri_test_sks (sc->uri)) ) ||
2462        (GNUNET_OK !=
2463         read_start_time (rh, &sc->start_time)) ||
2464        (GNUNET_OK !=
2465         GNUNET_BIO_read_string (rh, "search-emsg", &sc->emsg, 10*1024)) ||
2466        (GNUNET_OK !=
2467         GNUNET_BIO_read_int32 (rh, &options)) ||
2468        (GNUNET_OK !=
2469         GNUNET_BIO_read (rh, "search-pause", &in_pause, sizeof (in_pause))) ||
2470        (GNUNET_OK !=
2471         GNUNET_BIO_read_int32 (rh, &sc->anonymity)) )
2472     goto cleanup;          
2473   sc->options = (enum GNUNET_FS_SearchOptions) options;
2474   sc->master_result_map = GNUNET_CONTAINER_multihashmap_create (16);
2475   dn = get_serialization_file_name_in_dir (h,
2476                                            (sc->parent == NULL) 
2477                                            ? GNUNET_FS_SYNC_PATH_MASTER_SEARCH
2478                                            : GNUNET_FS_SYNC_PATH_CHILD_SEARCH,
2479                                            sc->serialization,
2480                                            "");
2481   if (dn != NULL)
2482     {
2483       GNUNET_DISK_directory_scan (dn, &deserialize_search_result, sc);
2484       GNUNET_free (dn);
2485     }
2486   if ( ('\0' == in_pause) &&
2487        (GNUNET_OK !=
2488         GNUNET_FS_search_start_searching_ (sc)) )
2489     {
2490       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2491                   _("Could not resume running search, will resume as paused search\n"));    
2492     }
2493   while (1)
2494     {
2495       if ( (GNUNET_OK !=
2496             GNUNET_BIO_read_string (rh, "child-serialization", &child_ser, 32)))
2497         goto cleanup;
2498       if (child_ser == NULL)
2499         break;    
2500       rhc = get_read_handle (h, GNUNET_FS_SYNC_PATH_CHILD_SEARCH, child_ser);
2501       if (rhc != NULL)
2502         {
2503           scc = deserialize_search (h, rhc, sc, child_ser);
2504           if (scc != NULL)          
2505             GNUNET_CONTAINER_DLL_insert (sc->child_head,
2506                                          sc->child_tail,
2507                                          scc);      
2508           emsg = NULL;
2509           if (GNUNET_OK !=
2510               GNUNET_BIO_read_close (rhc, &emsg))
2511             {
2512               GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2513                           _("Failed to resume sub-search `%s': %s\n"),
2514                           child_ser,
2515                           emsg);
2516               GNUNET_free (emsg);
2517             }
2518         }    
2519       GNUNET_free (child_ser);  
2520     }
2521   if (parent != NULL)
2522     GNUNET_CONTAINER_DLL_insert (parent->child_head,
2523                                  parent->child_tail,
2524                                  sc);
2525   signal_search_resume (sc);
2526   GNUNET_CONTAINER_multihashmap_iterate (sc->master_result_map,
2527                                          &signal_result_resume,
2528                                          sc);
2529   GNUNET_free (uris);
2530   return sc;
2531  cleanup:
2532   GNUNET_free_non_null (emsg);
2533   free_search_context (sc);
2534   GNUNET_free_non_null (uris);
2535   return NULL;
2536 }
2537
2538
2539 /**
2540  * Function called with a filename of serialized search operation
2541  * to deserialize.
2542  *
2543  * @param cls the 'struct GNUNET_FS_Handle*'
2544  * @param filename complete filename (absolute path)
2545  * @return GNUNET_OK (continue to iterate)
2546  */
2547 static int
2548 deserialize_search_file (void *cls,
2549                           const char *filename)
2550 {
2551   struct GNUNET_FS_Handle *h = cls;
2552   char *ser;
2553   char *emsg;
2554   struct GNUNET_BIO_ReadHandle *rh;
2555   struct GNUNET_FS_SearchContext *sc;
2556
2557   ser = get_serialization_short_name (filename);
2558   rh = GNUNET_BIO_read_open (filename);
2559   if (rh == NULL)
2560     {
2561       if (ser != NULL)
2562         {
2563           GNUNET_FS_remove_sync_file_ (h, GNUNET_FS_SYNC_PATH_MASTER_SEARCH, ser);
2564           GNUNET_free (ser);
2565         }
2566       return GNUNET_OK;
2567     }
2568   sc = deserialize_search (h, rh, NULL, ser);
2569   GNUNET_free (ser);
2570   if (GNUNET_OK !=
2571       GNUNET_BIO_read_close (rh, &emsg))
2572     {
2573       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2574                   _("Failure while resuming search operation `%s': %s\n"),
2575                   filename,
2576                   emsg);
2577       GNUNET_free (emsg);
2578     }
2579   return GNUNET_OK;
2580 }
2581
2582
2583 /**
2584  * Function called with a filename of serialized download operation
2585  * to deserialize.
2586  *
2587  * @param cls the 'struct GNUNET_FS_Handle*'
2588  * @param filename complete filename (absolute path)
2589  * @return GNUNET_OK (continue to iterate)
2590  */
2591 static int
2592 deserialize_download_file (void *cls,
2593                            const char *filename)
2594 {
2595   struct GNUNET_FS_Handle *h = cls;
2596   char *ser;
2597   char *emsg;
2598   struct GNUNET_BIO_ReadHandle *rh;
2599
2600   ser = get_serialization_short_name (filename);
2601   rh = GNUNET_BIO_read_open (filename);
2602   if (rh == NULL)
2603     {
2604       if (filename != NULL)
2605         {
2606           if (0 != UNLINK (filename))
2607             GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
2608                                       "unlink", 
2609                                       filename);
2610           GNUNET_free (ser);
2611         }
2612       return GNUNET_OK;
2613     }
2614   deserialize_download (h, rh, NULL, NULL, ser);
2615   GNUNET_free (ser);
2616   if (GNUNET_OK !=
2617       GNUNET_BIO_read_close (rh, &emsg))
2618     {
2619       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2620                   _("Failure while resuming download operation `%s': %s\n"),
2621                   filename,
2622                   emsg);
2623       GNUNET_free (emsg);
2624     }
2625   return GNUNET_OK;
2626 }
2627
2628
2629 /**
2630  * Deserialize informatin about pending operations.
2631  *
2632  * @param master_path which master directory should be scanned
2633  * @param proc function to call for each entry (will get 'h' for 'cls')
2634  * @param h the 'struct GNUNET_FS_Handle*'
2635  */
2636 static void
2637 deserialization_master (const char *master_path,
2638                         GNUNET_FileNameCallback proc,
2639                         struct GNUNET_FS_Handle *h)
2640 {
2641   char *dn;
2642
2643   dn = get_serialization_file_name (h, master_path, "");
2644   if (dn == NULL)
2645     return;
2646   GNUNET_DISK_directory_scan (dn, proc, h);
2647   GNUNET_free (dn); 
2648 }
2649
2650
2651 /**
2652  * Setup a connection to the file-sharing service.
2653  *
2654  * @param sched scheduler to use
2655  * @param cfg configuration to use
2656  * @param client_name unique identifier for this client 
2657  * @param upcb function to call to notify about FS actions
2658  * @param upcb_cls closure for upcb
2659  * @param flags specific attributes for fs-operations
2660  * @param ... list of optional options, terminated with GNUNET_FS_OPTIONS_END
2661  * @return NULL on error
2662  */
2663 struct GNUNET_FS_Handle *
2664 GNUNET_FS_start (struct GNUNET_SCHEDULER_Handle *sched,
2665                  const struct GNUNET_CONFIGURATION_Handle *cfg,
2666                  const char *client_name,
2667                  GNUNET_FS_ProgressCallback upcb,
2668                  void *upcb_cls,
2669                  enum GNUNET_FS_Flags flags,
2670                  ...)
2671 {
2672   struct GNUNET_FS_Handle *ret;
2673   enum GNUNET_FS_OPTIONS opt;
2674   va_list ap;
2675
2676   ret = GNUNET_malloc (sizeof (struct GNUNET_FS_Handle));
2677   ret->sched = sched;
2678   ret->cfg = cfg;
2679   ret->client_name = GNUNET_strdup (client_name);
2680   ret->upcb = upcb;
2681   ret->upcb_cls = upcb_cls;
2682   ret->flags = flags;
2683   ret->max_parallel_downloads = 1;
2684   ret->max_parallel_requests = 1;
2685   ret->avg_block_latency = GNUNET_TIME_UNIT_MINUTES; /* conservative starting point */
2686   va_start (ap, flags);  
2687   while (GNUNET_FS_OPTIONS_END != (opt = va_arg (ap, enum GNUNET_FS_OPTIONS)))
2688     {
2689       switch (opt)
2690         {
2691         case GNUNET_FS_OPTIONS_DOWNLOAD_PARALLELISM:
2692           ret->max_parallel_downloads = va_arg (ap, unsigned int);
2693           break;
2694         case GNUNET_FS_OPTIONS_REQUEST_PARALLELISM:
2695           ret->max_parallel_requests = va_arg (ap, unsigned int);
2696           break;
2697         default:
2698           GNUNET_break (0);
2699           GNUNET_free (ret->client_name);
2700           GNUNET_free (ret);
2701           va_end (ap);
2702           return NULL;
2703         }
2704     }
2705   va_end (ap);
2706   if (0 != (GNUNET_FS_FLAGS_PERSISTENCE & flags))
2707     {
2708       deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_PUBLISH,
2709                               &deserialize_publish_file,
2710                               ret);
2711       deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_SEARCH, 
2712                               &deserialize_search_file,
2713                               ret);
2714       deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_DOWNLOAD, 
2715                               &deserialize_download_file,
2716                               ret);
2717       deserialization_master (GNUNET_FS_SYNC_PATH_MASTER_UNINDEX,
2718                               &deserialize_unindex_file,
2719                               ret);
2720     }
2721   return ret;
2722 }
2723
2724
2725 /**
2726  * Close our connection with the file-sharing service.
2727  * The callback given to GNUNET_FS_start will no longer be
2728  * called after this function returns.
2729  *
2730  * @param h handle that was returned from GNUNET_FS_start
2731  */                    
2732 void 
2733 GNUNET_FS_stop (struct GNUNET_FS_Handle *h)
2734 {
2735   while (h->top_head != NULL)
2736     h->top_head->ssf (h->top_head->ssf_cls);
2737   if (h->queue_job != GNUNET_SCHEDULER_NO_TASK)
2738     GNUNET_SCHEDULER_cancel (h->sched,
2739                              h->queue_job);
2740   GNUNET_free (h->client_name);
2741   GNUNET_free (h);
2742 }
2743
2744
2745 /* end of fs.c */