cleaning up serialization pdir structure mess
[oweals/gnunet.git] / src / fs / fs_download.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  * @file fs/fs_download.c
22  * @brief download methods
23  * @author Christian Grothoff
24  *
25  * TODO:
26  * - location URI suppport (can wait, easy)
27  * - different priority for scheduling probe downloads?
28  * - check if iblocks can be computed from existing blocks (can wait, hard)
29  */
30 #include "platform.h"
31 #include "gnunet_constants.h"
32 #include "gnunet_fs_service.h"
33 #include "fs.h"
34 #include "fs_tree.h"
35
36 #define DEBUG_DOWNLOAD GNUNET_NO
37
38 /**
39  * Determine if the given download (options and meta data) should cause
40  * use to try to do a recursive download.
41  */
42 static int
43 is_recursive_download (struct GNUNET_FS_DownloadContext *dc)
44 {
45   return  (0 != (dc->options & GNUNET_FS_DOWNLOAD_OPTION_RECURSIVE)) &&
46     ( (GNUNET_YES == GNUNET_FS_meta_data_test_for_directory (dc->meta)) ||
47       ( (dc->meta == NULL) &&
48         ( (NULL == dc->filename) ||            
49           ( (strlen (dc->filename) >= strlen (GNUNET_FS_DIRECTORY_EXT)) &&
50             (NULL !=
51              strstr (dc->filename + strlen(dc->filename) - strlen(GNUNET_FS_DIRECTORY_EXT),
52                      GNUNET_FS_DIRECTORY_EXT)) ) ) ) );              
53 }
54
55
56 /**
57  * We're storing the IBLOCKS after the DBLOCKS on disk (so that we
58  * only have to truncate the file once we're done).
59  *
60  * Given the offset of a block (with respect to the DBLOCKS) and its
61  * depth, return the offset where we would store this block in the
62  * file.
63  * 
64  * @param fsize overall file size
65  * @param off offset of the block in the file
66  * @param depth depth of the block in the tree
67  * @param treedepth maximum depth of the tree
68  * @return off for DBLOCKS (depth == treedepth),
69  *         otherwise an offset past the end
70  *         of the file that does not overlap
71  *         with the range for any other block
72  */
73 static uint64_t
74 compute_disk_offset (uint64_t fsize,
75                      uint64_t off,
76                      unsigned int depth,
77                      unsigned int treedepth)
78 {
79   unsigned int i;
80   uint64_t lsize; /* what is the size of all IBlocks for depth "i"? */
81   uint64_t loff; /* where do IBlocks for depth "i" start? */
82   unsigned int ioff; /* which IBlock corresponds to "off" at depth "i"? */
83   
84   if (depth == treedepth)
85     return off;
86   /* first IBlocks start at the end of file, rounded up
87      to full DBLOCK_SIZE */
88   loff = ((fsize + DBLOCK_SIZE - 1) / DBLOCK_SIZE) * DBLOCK_SIZE;
89   lsize = ( (fsize + DBLOCK_SIZE-1) / DBLOCK_SIZE) * sizeof (struct ContentHashKey);
90   GNUNET_assert (0 == (off % DBLOCK_SIZE));
91   ioff = (off / DBLOCK_SIZE);
92   for (i=treedepth-1;i>depth;i--)
93     {
94       loff += lsize;
95       lsize = (lsize + CHK_PER_INODE - 1) / CHK_PER_INODE;
96       GNUNET_assert (lsize > 0);
97       GNUNET_assert (0 == (ioff % CHK_PER_INODE));
98       ioff /= CHK_PER_INODE;
99     }
100   return loff + ioff * sizeof (struct ContentHashKey);
101 }
102
103
104 /**
105  * Given a file of the specified treedepth and a block at the given
106  * offset and depth, calculate the offset for the CHK at the given
107  * index.
108  *
109  * @param offset the offset of the first
110  *        DBLOCK in the subtree of the 
111  *        identified IBLOCK
112  * @param depth the depth of the IBLOCK in the tree
113  * @param treedepth overall depth of the tree
114  * @param k which CHK in the IBLOCK are we 
115  *        talking about
116  * @return offset if k=0, otherwise an appropriately
117  *         larger value (i.e., if depth = treedepth-1,
118  *         the returned value should be offset+DBLOCK_SIZE)
119  */
120 static uint64_t
121 compute_dblock_offset (uint64_t offset,
122                        unsigned int depth,
123                        unsigned int treedepth,
124                        unsigned int k)
125 {
126   unsigned int i;
127   uint64_t lsize; /* what is the size of the sum of all DBlocks 
128                      that a CHK at depth i corresponds to? */
129
130   if (depth == treedepth)
131     return offset;
132   lsize = DBLOCK_SIZE;
133   for (i=treedepth-1;i>depth;i--)
134     lsize *= CHK_PER_INODE;
135   return offset + k * lsize;
136 }
137
138
139 /**
140  * Fill in all of the generic fields for a download event and call the
141  * callback.
142  *
143  * @param pi structure to fill in
144  * @param dc overall download context
145  */
146 void
147 GNUNET_FS_download_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
148                                  struct GNUNET_FS_DownloadContext *dc)
149 {
150   pi->value.download.dc = dc;
151   pi->value.download.cctx
152     = dc->client_info;
153   pi->value.download.pctx
154     = (dc->parent == NULL) ? NULL : dc->parent->client_info;
155   pi->value.download.sctx
156     = (dc->search == NULL) ? NULL : dc->search->client_info;
157   pi->value.download.uri 
158     = dc->uri;
159   pi->value.download.filename
160     = dc->filename;
161   pi->value.download.size
162     = dc->length;
163   pi->value.download.duration
164     = GNUNET_TIME_absolute_get_duration (dc->start_time);
165   pi->value.download.completed
166     = dc->completed;
167   pi->value.download.anonymity
168     = dc->anonymity;
169   pi->value.download.eta
170     = GNUNET_TIME_calculate_eta (dc->start_time,
171                                  dc->completed,
172                                  dc->length);
173   if (0 == (dc->options & GNUNET_FS_DOWNLOAD_IS_PROBE))
174     dc->client_info = dc->h->upcb (dc->h->upcb_cls,
175                                    pi);
176   else
177     dc->client_info = GNUNET_FS_search_probe_progress_ (NULL,
178                                                         pi);
179 }
180
181 /**
182  * We're ready to transmit a search request to the
183  * file-sharing service.  Do it.  If there is 
184  * more than one request pending, try to send 
185  * multiple or request another transmission.
186  *
187  * @param cls closure
188  * @param size number of bytes available in buf
189  * @param buf where the callee should write the message
190  * @return number of bytes written to buf
191  */
192 static size_t
193 transmit_download_request (void *cls,
194                            size_t size, 
195                            void *buf);
196
197
198 /**
199  * Closure for iterator processing results.
200  */
201 struct ProcessResultClosure
202 {
203   
204   /**
205    * Hash of data.
206    */
207   GNUNET_HashCode query;
208
209   /**
210    * Data found in P2P network.
211    */ 
212   const void *data;
213
214   /**
215    * Our download context.
216    */
217   struct GNUNET_FS_DownloadContext *dc;
218                 
219   /**
220    * Number of bytes in data.
221    */
222   size_t size;
223
224   /**
225    * Type of data.
226    */
227   enum GNUNET_BLOCK_Type type;
228
229   /**
230    * Flag to indicate if this block should be stored on disk.
231    */
232   int do_store;
233   
234 };
235
236
237 /**
238  * Iterator over entries in the pending requests in the 'active' map for the
239  * reply that we just got.
240  *
241  * @param cls closure (our 'struct ProcessResultClosure')
242  * @param key query for the given value / request
243  * @param value value in the hash map (a 'struct DownloadRequest')
244  * @return GNUNET_YES (we should continue to iterate); unless serious error
245  */
246 static int
247 process_result_with_request (void *cls,
248                              const GNUNET_HashCode * key,
249                              void *value);
250
251
252
253 /**
254  * Schedule the download of the specified block in the tree.
255  *
256  * @param dc overall download this block belongs to
257  * @param chk content-hash-key of the block
258  * @param offset offset of the block in the file
259  *         (for IBlocks, the offset is the lowest
260  *          offset of any DBlock in the subtree under
261  *          the IBlock)
262  * @param depth depth of the block, 0 is the root of the tree
263  */
264 static void
265 schedule_block_download (struct GNUNET_FS_DownloadContext *dc,
266                          const struct ContentHashKey *chk,
267                          uint64_t offset,
268                          unsigned int depth)
269 {
270   struct DownloadRequest *sm;
271   uint64_t total;
272   uint64_t off;
273   size_t len;
274   char block[DBLOCK_SIZE];
275   GNUNET_HashCode key;
276   struct ProcessResultClosure prc;
277   struct GNUNET_DISK_FileHandle *fh;
278
279 #if DEBUG_DOWNLOAD
280   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
281               "Scheduling download at offset %llu and depth %u for `%s'\n",
282               (unsigned long long) offset,
283               depth,
284               GNUNET_h2s (&chk->query));
285 #endif
286   total = GNUNET_ntohll (dc->uri->data.chk.file_length);
287   off = compute_disk_offset (total,
288                              offset,
289                              depth,
290                              dc->treedepth);
291   len = GNUNET_FS_tree_calculate_block_size (total,
292                                              dc->treedepth,
293                                              offset,
294                                              depth);
295   sm = GNUNET_malloc (sizeof (struct DownloadRequest));
296   sm->chk = *chk;
297   sm->offset = offset;
298   sm->depth = depth;
299   sm->is_pending = GNUNET_YES;
300   sm->next = dc->pending;
301   dc->pending = sm;
302   GNUNET_CONTAINER_multihashmap_put (dc->active,
303                                      &chk->query,
304                                      sm,
305                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
306   fh = NULL;
307   if ( (dc->old_file_size > off) &&
308        (dc->filename != NULL) )
309     {
310       fh = GNUNET_DISK_file_open (dc->filename,
311                                   GNUNET_DISK_OPEN_READ,
312                                   GNUNET_DISK_PERM_NONE);
313     }
314   if ( (fh != NULL) &&
315        (off  == 
316         GNUNET_DISK_file_seek (fh,
317                                off,
318                                GNUNET_DISK_SEEK_SET) ) &&
319        (len == 
320         GNUNET_DISK_file_read (fh,
321                                block,
322                                len)) )
323     {
324       GNUNET_CRYPTO_hash (block, len, &key);
325       if (0 == memcmp (&key,
326                        &chk->key,
327                        sizeof (GNUNET_HashCode)))
328         {
329           char enc[len];
330           struct GNUNET_CRYPTO_AesSessionKey sk;
331           struct GNUNET_CRYPTO_AesInitializationVector iv;
332           GNUNET_HashCode query;
333
334           GNUNET_CRYPTO_hash_to_aes_key (&key, &sk, &iv);
335           GNUNET_CRYPTO_aes_encrypt (block, len,
336                                      &sk,
337                                      &iv,
338                                      enc);
339           GNUNET_CRYPTO_hash (enc, len, &query);
340           if (0 == memcmp (&query,
341                            &chk->query,
342                            sizeof (GNUNET_HashCode)))
343             {
344               /* already got it! */
345               prc.dc = dc;
346               prc.data = enc;
347               prc.size = len;
348               prc.type = (dc->treedepth == depth) 
349                 ? GNUNET_BLOCK_TYPE_DBLOCK 
350                 : GNUNET_BLOCK_TYPE_IBLOCK;
351               prc.query = chk->query;
352               prc.do_store = GNUNET_NO; /* useless */
353               process_result_with_request (&prc,
354                                            &key,
355                                            sm);
356             }
357           else
358             {
359               GNUNET_break_op (0);
360             }
361           return;
362         }
363     }
364   if (fh != NULL)
365     GNUNET_break (GNUNET_OK == GNUNET_DISK_file_close (fh));
366   if (depth < dc->treedepth)
367     {
368       // FIXME: try if we could
369       // reconstitute this IBLOCK
370       // from the existing blocks on disk (can wait)
371       // (read block(s), encode, compare with
372       // query; if matches, simply return)
373     }
374
375   if ( (dc->th == NULL) &&
376        (dc->client != NULL) )
377     dc->th = GNUNET_CLIENT_notify_transmit_ready (dc->client,
378                                                   sizeof (struct SearchMessage),
379                                                   GNUNET_CONSTANTS_SERVICE_TIMEOUT,
380                                                   GNUNET_NO,
381                                                   &transmit_download_request,
382                                                   dc);
383 }
384
385
386
387 /**
388  * Suggest a filename based on given metadata.
389  * 
390  * @param md given meta data
391  * @return NULL if meta data is useless for suggesting a filename
392  */
393 char *
394 GNUNET_FS_meta_data_suggest_filename (const struct GNUNET_CONTAINER_MetaData *md)
395 {
396   static const char *mimeMap[][2] = {
397     {"application/bz2", ".bz2"},
398     {"application/gnunet-directory", ".gnd"},
399     {"application/java", ".class"},
400     {"application/msword", ".doc"},
401     {"application/ogg", ".ogg"},
402     {"application/pdf", ".pdf"},
403     {"application/pgp-keys", ".key"},
404     {"application/pgp-signature", ".pgp"},
405     {"application/postscript", ".ps"},
406     {"application/rar", ".rar"},
407     {"application/rtf", ".rtf"},
408     {"application/xml", ".xml"},
409     {"application/x-debian-package", ".deb"},
410     {"application/x-dvi", ".dvi"},
411     {"applixation/x-flac", ".flac"},
412     {"applixation/x-gzip", ".gz"},
413     {"application/x-java-archive", ".jar"},
414     {"application/x-java-vm", ".class"},
415     {"application/x-python-code", ".pyc"},
416     {"application/x-redhat-package-manager", ".rpm"},
417     {"application/x-rpm", ".rpm"},
418     {"application/x-tar", ".tar"},
419     {"application/x-tex-pk", ".pk"},
420     {"application/x-texinfo", ".texinfo"},
421     {"application/x-xcf", ".xcf"},
422     {"application/x-xfig", ".xfig"},
423     {"application/zip", ".zip"},
424     
425     {"audio/midi", ".midi"},
426     {"audio/mpeg", ".mp3"},
427     {"audio/real", ".rm"},
428     {"audio/x-wav", ".wav"},
429     
430     {"image/gif", ".gif"},
431     {"image/jpeg", ".jpg"},
432     {"image/pcx", ".pcx"},
433     {"image/png", ".png"},
434     {"image/tiff", ".tiff"},
435     {"image/x-ms-bmp", ".bmp"},
436     {"image/x-xpixmap", ".xpm"},
437     
438     {"text/css", ".css"},
439     {"text/html", ".html"},
440     {"text/plain", ".txt"},
441     {"text/rtf", ".rtf"},
442     {"text/x-c++hdr", ".h++"},
443     {"text/x-c++src", ".c++"},
444     {"text/x-chdr", ".h"},
445     {"text/x-csrc", ".c"},
446     {"text/x-java", ".java"},
447     {"text/x-moc", ".moc"},
448     {"text/x-pascal", ".pas"},
449     {"text/x-perl", ".pl"},
450     {"text/x-python", ".py"},
451     {"text/x-tex", ".tex"},
452     
453     {"video/avi", ".avi"},
454     {"video/mpeg", ".mpeg"},
455     {"video/quicktime", ".qt"},
456     {"video/real", ".rm"},
457     {"video/x-msvideo", ".avi"},
458     {NULL, NULL},
459   };
460   char *ret;
461   unsigned int i;
462   char *mime;
463   char *base;
464   const char *ext;
465
466   ret = GNUNET_CONTAINER_meta_data_get_by_type (md,
467                                                 EXTRACTOR_METATYPE_FILENAME);
468   if (ret != NULL)
469     return ret;  
470   ext = NULL;
471   mime = GNUNET_CONTAINER_meta_data_get_by_type (md,
472                                                  EXTRACTOR_METATYPE_MIMETYPE);
473   if (mime != NULL)
474     {
475       i = 0;
476       while ( (mimeMap[i][0] != NULL) && 
477               (0 != strcmp (mime, mimeMap[i][0])))
478         i++;
479       if (mimeMap[i][1] == NULL)
480         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | 
481                     GNUNET_ERROR_TYPE_BULK,
482                     _("Did not find mime type `%s' in extension list.\n"),
483                     mime);
484       else
485         ext = mimeMap[i][1];
486       GNUNET_free (mime);
487     }
488   base = GNUNET_CONTAINER_meta_data_get_first_by_types (md,
489                                                         EXTRACTOR_METATYPE_TITLE,
490                                                         EXTRACTOR_METATYPE_BOOK_TITLE,
491                                                         EXTRACTOR_METATYPE_ORIGINAL_TITLE,
492                                                         EXTRACTOR_METATYPE_PACKAGE_NAME,
493                                                         EXTRACTOR_METATYPE_URL,
494                                                         EXTRACTOR_METATYPE_URI, 
495                                                         EXTRACTOR_METATYPE_DESCRIPTION,
496                                                         EXTRACTOR_METATYPE_ISRC,
497                                                         EXTRACTOR_METATYPE_JOURNAL_NAME,
498                                                         EXTRACTOR_METATYPE_AUTHOR_NAME,
499                                                         EXTRACTOR_METATYPE_SUBJECT,
500                                                         EXTRACTOR_METATYPE_ALBUM,
501                                                         EXTRACTOR_METATYPE_ARTIST,
502                                                         EXTRACTOR_METATYPE_KEYWORDS,
503                                                         EXTRACTOR_METATYPE_COMMENT,
504                                                         EXTRACTOR_METATYPE_UNKNOWN,
505                                                         -1);
506   if ( (base == NULL) &&
507        (ext == NULL) )
508     return NULL;
509   if (base == NULL)
510     return GNUNET_strdup (ext);
511   if (ext == NULL)
512     return base;
513   GNUNET_asprintf (&ret,
514                    "%s%s",
515                    base,
516                    ext);
517   GNUNET_free (base);
518   return ret;
519 }
520
521
522 /**
523  * We've lost our connection with the FS service.
524  * Re-establish it and re-transmit all of our
525  * pending requests.
526  *
527  * @param dc download context that is having trouble
528  */
529 static void
530 try_reconnect (struct GNUNET_FS_DownloadContext *dc);
531
532
533 /**
534  * We found an entry in a directory.  Check if the respective child
535  * already exists and if not create the respective child download.
536  *
537  * @param cls the parent download
538  * @param filename name of the file in the directory
539  * @param uri URI of the file (CHK or LOC)
540  * @param meta meta data of the file
541  * @param length number of bytes in data
542  * @param data contents of the file (or NULL if they were not inlined)
543  */
544 static void 
545 trigger_recursive_download (void *cls,
546                             const char *filename,
547                             const struct GNUNET_FS_Uri *uri,
548                             const struct GNUNET_CONTAINER_MetaData *meta,
549                             size_t length,
550                             const void *data);
551
552
553 /**
554  * We're done downloading a directory.  Open the file and
555  * trigger all of the (remaining) child downloads.
556  *
557  * @param dc context of download that just completed
558  */
559 static void
560 full_recursive_download (struct GNUNET_FS_DownloadContext *dc)
561 {
562   size_t size;
563   uint64_t size64;
564   void *data;
565   struct GNUNET_DISK_FileHandle *h;
566   struct GNUNET_DISK_MapHandle *m;
567   
568   size64 = GNUNET_FS_uri_chk_get_file_size (dc->uri);
569   size = (size_t) size64;
570   if (size64 != (uint64_t) size)
571     {
572       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
573                   _("Recursive downloads of directories larger than 4 GB are not supported on 32-bit systems\n"));
574       return;
575     }
576   if (dc->filename != NULL)
577     {
578       h = GNUNET_DISK_file_open (dc->filename,
579                                  GNUNET_DISK_OPEN_READ,
580                                  GNUNET_DISK_PERM_NONE);
581     }
582   else
583     {
584       GNUNET_assert (dc->temp_filename != NULL);
585       h = GNUNET_DISK_file_open (dc->temp_filename,
586                                  GNUNET_DISK_OPEN_READ,
587                                  GNUNET_DISK_PERM_NONE);
588     }
589   if (h == NULL)
590     return; /* oops */
591   data = GNUNET_DISK_file_map (h, &m, GNUNET_DISK_MAP_TYPE_READ, size);
592   if (data == NULL)
593     {
594       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
595                   _("Directory too large for system address space\n"));
596     }
597   else
598     {
599       GNUNET_FS_directory_list_contents (size,
600                                          data,
601                                          0,
602                                          &trigger_recursive_download,
603                                          dc);         
604       GNUNET_DISK_file_unmap (m);
605     }
606   GNUNET_DISK_file_close (h);
607   if (dc->filename == NULL)
608     {
609       if (0 != UNLINK (dc->temp_filename))
610         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
611                                   "unlink",
612                                   dc->temp_filename);
613       GNUNET_free (dc->temp_filename);
614       dc->temp_filename = NULL;
615     }
616 }
617
618
619 /**
620  * Check if all child-downloads have completed and
621  * if so, signal completion (and possibly recurse to
622  * parent).
623  */
624 static void
625 check_completed (struct GNUNET_FS_DownloadContext *dc)
626 {
627   struct GNUNET_FS_ProgressInfo pi;
628   struct GNUNET_FS_DownloadContext *pos;
629
630   pos = dc->child_head;
631   while (pos != NULL)
632     {
633       if ( (pos->emsg == NULL) &&
634            (pos->completed < pos->length) )
635         return; /* not done yet */
636       if ( (pos->child_head != NULL) &&
637            (pos->has_finished != GNUNET_YES) )
638         return; /* not transitively done yet */
639       pos = pos->next;
640     }
641   dc->has_finished = GNUNET_YES;
642   GNUNET_FS_download_sync_ (dc);
643   /* signal completion */
644   pi.status = GNUNET_FS_STATUS_DOWNLOAD_COMPLETED;
645   GNUNET_FS_download_make_status_ (&pi, dc);
646   if (dc->parent != NULL)
647     check_completed (dc->parent);  
648 }
649
650
651 /**
652  * We found an entry in a directory.  Check if the respective child
653  * already exists and if not create the respective child download.
654  *
655  * @param cls the parent download
656  * @param filename name of the file in the directory
657  * @param uri URI of the file (CHK or LOC)
658  * @param meta meta data of the file
659  * @param length number of bytes in data
660  * @param data contents of the file (or NULL if they were not inlined)
661  */
662 static void 
663 trigger_recursive_download (void *cls,
664                             const char *filename,
665                             const struct GNUNET_FS_Uri *uri,
666                             const struct GNUNET_CONTAINER_MetaData *meta,
667                             size_t length,
668                             const void *data)
669 {
670   struct GNUNET_FS_DownloadContext *dc = cls;  
671   struct GNUNET_FS_DownloadContext *cpos;
672   struct GNUNET_DISK_FileHandle *fh;
673   char *temp_name;
674   const char *real_name;
675   char *fn;
676   char *us;
677   char *ext;
678   char *dn;
679   char *full_name;
680
681   if (NULL == uri)
682     return; /* entry for the directory itself */
683   cpos = dc->child_head;
684   while (cpos != NULL)
685     {
686       if ( (GNUNET_FS_uri_test_equal (uri,
687                                       cpos->uri)) ||
688            ( (filename != NULL) &&
689              (0 == strcmp (cpos->filename,
690                            filename)) ) )
691         break;  
692       cpos = cpos->next;
693     }
694   if (cpos != NULL)
695     return; /* already exists */
696   fn = NULL;
697   if (NULL == filename)
698     {
699       fn = GNUNET_FS_meta_data_suggest_filename (meta);      
700       if (fn == NULL)
701         {
702           us = GNUNET_FS_uri_to_string (uri);
703           fn = GNUNET_strdup (&us [strlen (GNUNET_FS_URI_PREFIX 
704                                            GNUNET_FS_URI_CHK_INFIX)]);
705           GNUNET_free (us);
706         }
707       else if (fn[0] == '.')
708         {
709           ext = fn;
710           us = GNUNET_FS_uri_to_string (uri);
711           GNUNET_asprintf (&fn,
712                            "%s%s",
713                            &us[strlen (GNUNET_FS_URI_PREFIX 
714                                        GNUNET_FS_URI_CHK_INFIX)], ext);
715           GNUNET_free (ext);
716           GNUNET_free (us);
717         }
718       filename = fn;
719     }
720   if (dc->filename == NULL)
721     {
722       full_name = NULL;
723     }
724   else
725     {
726       dn = GNUNET_strdup (dc->filename);
727       GNUNET_break ( (strlen (dn) >= strlen (GNUNET_FS_DIRECTORY_EXT)) &&
728                      (NULL !=
729                       strstr (dn + strlen(dn) - strlen(GNUNET_FS_DIRECTORY_EXT),
730                               GNUNET_FS_DIRECTORY_EXT)) );
731       if ( (strlen (dn) >= strlen (GNUNET_FS_DIRECTORY_EXT)) &&
732            (NULL !=
733             strstr (dn + strlen(dn) - strlen(GNUNET_FS_DIRECTORY_EXT),
734                     GNUNET_FS_DIRECTORY_EXT)) )      
735         dn[strlen(dn) - strlen (GNUNET_FS_DIRECTORY_EXT)] = '\0';      
736       if ( (GNUNET_YES == GNUNET_FS_meta_data_test_for_directory (meta)) &&
737            ( (strlen (filename) < strlen (GNUNET_FS_DIRECTORY_EXT)) ||
738              (NULL ==
739               strstr (filename + strlen(filename) - strlen(GNUNET_FS_DIRECTORY_EXT),
740                       GNUNET_FS_DIRECTORY_EXT)) ) )
741         {
742           GNUNET_asprintf (&full_name,
743                            "%s%s%s%s",
744                            dn,
745                            DIR_SEPARATOR_STR,
746                            filename,
747                            GNUNET_FS_DIRECTORY_EXT);
748         }
749       else
750         {
751           GNUNET_asprintf (&full_name,
752                            "%s%s%s",
753                            dn,
754                            DIR_SEPARATOR_STR,
755                            filename);
756         }
757       GNUNET_free (dn);
758     }
759   if ( (full_name != NULL) &&
760        (GNUNET_OK !=
761         GNUNET_DISK_directory_create_for_file (full_name)) )
762     {
763       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
764                   _("Failed to create directory for recursive download of `%s'\n"),
765                   full_name);
766       GNUNET_free (full_name);
767       GNUNET_free_non_null (fn);
768       return;
769     }
770
771   temp_name = NULL;
772   if ( (data != NULL) &&
773        (GNUNET_FS_uri_chk_get_file_size (uri) == length) )
774     {
775       if (full_name == NULL)
776         {
777           temp_name = GNUNET_DISK_mktemp ("gnunet-directory-download-tmp");
778           real_name = temp_name;
779         }
780       else
781         {
782           real_name = full_name;
783         }
784       /* write to disk, then trigger normal download which will instantly progress to completion */
785       fh = GNUNET_DISK_file_open (real_name,
786                                   GNUNET_DISK_OPEN_WRITE | GNUNET_DISK_OPEN_TRUNCATE | GNUNET_DISK_OPEN_CREATE,
787                                   GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE);
788       if (fh == NULL)
789         {
790           GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
791                                     "open",
792                                     real_name);       
793           GNUNET_free (full_name);
794           GNUNET_free_non_null (fn);
795           return;
796         }
797       if (length != 
798           GNUNET_DISK_file_write (fh,
799                                   data,
800                                   length))
801         {
802           GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
803                                     "write",
804                                     full_name);       
805         }
806       GNUNET_DISK_file_close (fh);
807     }
808   GNUNET_FS_download_start (dc->h,
809                             uri,
810                             meta,
811                             full_name, temp_name,
812                             0,
813                             GNUNET_FS_uri_chk_get_file_size (uri),
814                             dc->anonymity,
815                             dc->options,
816                             NULL,
817                             dc);
818   GNUNET_free_non_null (full_name);
819   GNUNET_free_non_null (temp_name);
820   GNUNET_free_non_null (fn);
821 }
822
823
824 /**
825  * Iterator over entries in the pending requests in the 'active' map for the
826  * reply that we just got.
827  *
828  * @param cls closure (our 'struct ProcessResultClosure')
829  * @param key query for the given value / request
830  * @param value value in the hash map (a 'struct DownloadRequest')
831  * @return GNUNET_YES (we should continue to iterate); unless serious error
832  */
833 static int
834 process_result_with_request (void *cls,
835                              const GNUNET_HashCode * key,
836                              void *value)
837 {
838   struct ProcessResultClosure *prc = cls;
839   struct DownloadRequest *sm = value;
840   struct DownloadRequest *ppos;
841   struct DownloadRequest *pprev;
842   struct GNUNET_DISK_FileHandle *fh;
843   struct GNUNET_FS_DownloadContext *dc = prc->dc;
844   struct GNUNET_CRYPTO_AesSessionKey skey;
845   struct GNUNET_CRYPTO_AesInitializationVector iv;
846   char pt[prc->size];
847   struct GNUNET_FS_ProgressInfo pi;
848   uint64_t off;
849   size_t bs;
850   size_t app;
851   int i;
852   struct ContentHashKey *chk;
853
854   fh = NULL;
855   bs = GNUNET_FS_tree_calculate_block_size (GNUNET_ntohll (dc->uri->data.chk.file_length),
856                                             dc->treedepth,
857                                             sm->offset,
858                                             sm->depth);
859   if (prc->size != bs)
860     {
861 #if DEBUG_DOWNLOAD
862       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
863                   "Internal error or bogus download URI (expected %u bytes, got %u)\n",
864                   bs,
865                   prc->size);
866 #endif
867       dc->emsg = GNUNET_strdup ("Internal error or bogus download URI");
868       goto signal_error;
869     }
870   GNUNET_assert (GNUNET_YES ==
871                  GNUNET_CONTAINER_multihashmap_remove (dc->active,
872                                                        &prc->query,
873                                                        sm));
874   /* if this request is on the pending list, remove it! */
875   pprev = NULL;
876   ppos = dc->pending;
877   while (ppos != NULL)
878     {
879       if (ppos == sm)
880         {
881           if (pprev == NULL)
882             dc->pending = ppos->next;
883           else
884             pprev->next = ppos->next;
885           break;
886         }
887       pprev = ppos;
888       ppos = ppos->next;
889     }
890   GNUNET_CRYPTO_hash_to_aes_key (&sm->chk.key, &skey, &iv);
891   GNUNET_CRYPTO_aes_decrypt (prc->data,
892                              prc->size,
893                              &skey,
894                              &iv,
895                              pt);
896   off = compute_disk_offset (GNUNET_ntohll (dc->uri->data.chk.file_length),
897                              sm->offset,
898                              sm->depth,
899                              dc->treedepth);
900   /* save to disk */
901   if ( ( GNUNET_YES == prc->do_store) &&
902        ( (dc->filename != NULL) ||
903          (is_recursive_download (dc)) ) &&
904        ( (sm->depth == dc->treedepth) ||
905          (0 == (dc->options & GNUNET_FS_DOWNLOAD_NO_TEMPORARIES)) ) )
906     {
907       fh = GNUNET_DISK_file_open (dc->filename != NULL 
908                                   ? dc->filename 
909                                   : dc->temp_filename, 
910                                   GNUNET_DISK_OPEN_READWRITE | 
911                                   GNUNET_DISK_OPEN_CREATE,
912                                   GNUNET_DISK_PERM_USER_READ |
913                                   GNUNET_DISK_PERM_USER_WRITE |
914                                   GNUNET_DISK_PERM_GROUP_READ |
915                                   GNUNET_DISK_PERM_OTHER_READ);
916     }
917   if ( (NULL == fh) &&
918        (GNUNET_YES == prc->do_store) &&
919        ( (dc->filename != NULL) ||
920          (is_recursive_download (dc)) ) &&
921        ( (sm->depth == dc->treedepth) ||
922          (0 == (dc->options & GNUNET_FS_DOWNLOAD_NO_TEMPORARIES)) ) )
923     {
924       GNUNET_asprintf (&dc->emsg,
925                        _("Download failed: could not open file `%s': %s\n"),
926                        dc->filename,
927                        STRERROR (errno));
928       goto signal_error;
929     }
930   if (fh != NULL)
931     {
932 #if DEBUG_DOWNLOAD
933       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
934                   "Saving decrypted block to disk at offset %llu\n",
935                   (unsigned long long) off);
936 #endif
937       if ( (off  != 
938             GNUNET_DISK_file_seek (fh,
939                                    off,
940                                    GNUNET_DISK_SEEK_SET) ) )
941         {
942           GNUNET_asprintf (&dc->emsg,
943                            _("Failed to seek to offset %llu in file `%s': %s\n"),
944                            (unsigned long long) off,
945                            dc->filename,
946                            STRERROR (errno));
947           goto signal_error;
948         }
949       if (prc->size !=
950           GNUNET_DISK_file_write (fh,
951                                   pt,
952                                   prc->size))
953         {
954           GNUNET_asprintf (&dc->emsg,
955                            _("Failed to write block of %u bytes at offset %llu in file `%s': %s\n"),
956                            (unsigned int) prc->size,
957                            (unsigned long long) off,
958                            dc->filename,
959                            STRERROR (errno));
960           goto signal_error;
961         }
962       GNUNET_break (GNUNET_OK == GNUNET_DISK_file_close (fh));
963       fh = NULL;
964     }
965   if (sm->depth == dc->treedepth) 
966     {
967       app = prc->size;
968       if (sm->offset < dc->offset)
969         {
970           /* starting offset begins in the middle of pt,
971              do not count first bytes as progress */
972           GNUNET_assert (app > (dc->offset - sm->offset));
973           app -= (dc->offset - sm->offset);       
974         }
975       if (sm->offset + prc->size > dc->offset + dc->length)
976         {
977           /* end of block is after relevant range,
978              do not count last bytes as progress */
979           GNUNET_assert (app > (sm->offset + prc->size) - (dc->offset + dc->length));
980           app -= (sm->offset + prc->size) - (dc->offset + dc->length);
981         }
982       dc->completed += app;
983
984       /* do recursive download if option is set and either meta data
985          says it is a directory or if no meta data is given AND filename 
986          ends in '.gnd' (top-level case) */
987       if (is_recursive_download (dc))
988         GNUNET_FS_directory_list_contents (prc->size,
989                                            pt,
990                                            off,
991                                            &trigger_recursive_download,
992                                            dc);         
993             
994     }
995   pi.status = GNUNET_FS_STATUS_DOWNLOAD_PROGRESS;
996   pi.value.download.specifics.progress.data = pt;
997   pi.value.download.specifics.progress.offset = sm->offset;
998   pi.value.download.specifics.progress.data_len = prc->size;
999   pi.value.download.specifics.progress.depth = sm->depth;
1000   GNUNET_FS_download_make_status_ (&pi, dc);
1001   GNUNET_assert (dc->completed <= dc->length);
1002   if (dc->completed == dc->length)
1003     {
1004 #if DEBUG_DOWNLOAD
1005       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1006                   "Download completed, truncating file to desired length %llu\n",
1007                   (unsigned long long) GNUNET_ntohll (dc->uri->data.chk.file_length));
1008 #endif
1009       /* truncate file to size (since we store IBlocks at the end) */
1010       if (dc->filename != NULL)
1011         {
1012           if (0 != truncate (dc->filename,
1013                              GNUNET_ntohll (dc->uri->data.chk.file_length)))
1014             GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
1015                                       "truncate",
1016                                       dc->filename);
1017         }
1018       if (dc->job_queue != NULL)
1019         {
1020           GNUNET_FS_dequeue_ (dc->job_queue);
1021           dc->job_queue = NULL;
1022         }
1023       if (is_recursive_download (dc))
1024         full_recursive_download (dc);
1025       if (dc->child_head == NULL)
1026         {
1027           /* signal completion */
1028           pi.status = GNUNET_FS_STATUS_DOWNLOAD_COMPLETED;
1029           GNUNET_FS_download_make_status_ (&pi, dc);
1030           if (dc->parent != NULL)
1031             check_completed (dc->parent);
1032         }
1033       GNUNET_assert (sm->depth == dc->treedepth);
1034     }
1035   if (sm->depth == dc->treedepth) 
1036     {
1037       GNUNET_FS_download_sync_ (dc);
1038       GNUNET_free (sm);      
1039       return GNUNET_YES;
1040     }
1041 #if DEBUG_DOWNLOAD
1042   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1043               "Triggering downloads of children (this block was at depth %u and offset %llu)\n",
1044               sm->depth,
1045               (unsigned long long) sm->offset);
1046 #endif
1047   GNUNET_assert (0 == (prc->size % sizeof(struct ContentHashKey)));
1048   chk = (struct ContentHashKey*) pt;
1049   for (i=(prc->size / sizeof(struct ContentHashKey))-1;i>=0;i--)
1050     {
1051       off = compute_dblock_offset (sm->offset,
1052                                    sm->depth,
1053                                    dc->treedepth,
1054                                    i);
1055       if ( (off + DBLOCK_SIZE >= dc->offset) &&
1056            (off < dc->offset + dc->length) ) 
1057         schedule_block_download (dc,
1058                                  &chk[i],
1059                                  off,
1060                                  sm->depth + 1);
1061     }
1062   GNUNET_free (sm);
1063   GNUNET_FS_download_sync_ (dc);
1064   return GNUNET_YES;
1065
1066  signal_error:
1067   if (fh != NULL)
1068     GNUNET_DISK_file_close (fh);
1069   pi.status = GNUNET_FS_STATUS_DOWNLOAD_ERROR;
1070   pi.value.download.specifics.error.message = dc->emsg;
1071   GNUNET_FS_download_make_status_ (&pi, dc);
1072   /* abort all pending requests */
1073   if (NULL != dc->th)
1074     {
1075       GNUNET_CLIENT_notify_transmit_ready_cancel (dc->th);
1076       dc->th = NULL;
1077     }
1078   GNUNET_CLIENT_disconnect (dc->client, GNUNET_NO);
1079   /* FIXME: clean up dc->active / pending! */
1080   dc->client = NULL;
1081   GNUNET_free (sm);
1082   GNUNET_FS_download_sync_ (dc);
1083   return GNUNET_NO;
1084 }
1085
1086
1087 /**
1088  * Process a download result.
1089  *
1090  * @param dc our download context
1091  * @param type type of the result
1092  * @param data the (encrypted) response
1093  * @param size size of data
1094  */
1095 static void
1096 process_result (struct GNUNET_FS_DownloadContext *dc,
1097                 enum GNUNET_BLOCK_Type type,
1098                 const void *data,
1099                 size_t size)
1100 {
1101   struct ProcessResultClosure prc;
1102
1103   prc.dc = dc;
1104   prc.data = data;
1105   prc.size = size;
1106   prc.type = type;
1107   prc.do_store = GNUNET_YES;
1108   GNUNET_CRYPTO_hash (data, size, &prc.query);
1109 #if DEBUG_DOWNLOAD
1110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1111               "Received result for query `%s' from `%s'-service\n",
1112               GNUNET_h2s (&prc.query),
1113               "FS");
1114 #endif
1115   GNUNET_CONTAINER_multihashmap_get_multiple (dc->active,
1116                                               &prc.query,
1117                                               &process_result_with_request,
1118                                               &prc);
1119 }
1120
1121
1122 /**
1123  * Type of a function to call when we receive a message
1124  * from the service.
1125  *
1126  * @param cls closure
1127  * @param msg message received, NULL on timeout or fatal error
1128  */
1129 static void 
1130 receive_results (void *cls,
1131                  const struct GNUNET_MessageHeader * msg)
1132 {
1133   struct GNUNET_FS_DownloadContext *dc = cls;
1134   const struct PutMessage *cm;
1135   uint16_t msize;
1136
1137   if ( (NULL == msg) ||
1138        (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_FS_PUT) ||
1139        (sizeof (struct PutMessage) > ntohs(msg->size)) )
1140     {
1141       GNUNET_break (msg == NULL);       
1142       try_reconnect (dc);
1143       return;
1144     }
1145   msize = ntohs(msg->size);
1146   cm = (const struct PutMessage*) msg;
1147   process_result (dc, 
1148                   ntohl (cm->type),
1149                   &cm[1],
1150                   msize - sizeof (struct PutMessage));
1151   if (dc->client == NULL)
1152     return; /* fatal error */
1153   /* continue receiving */
1154   GNUNET_CLIENT_receive (dc->client,
1155                          &receive_results,
1156                          dc,
1157                          GNUNET_TIME_UNIT_FOREVER_REL);
1158 }
1159
1160
1161
1162 /**
1163  * We're ready to transmit a search request to the
1164  * file-sharing service.  Do it.  If there is 
1165  * more than one request pending, try to send 
1166  * multiple or request another transmission.
1167  *
1168  * @param cls closure
1169  * @param size number of bytes available in buf
1170  * @param buf where the callee should write the message
1171  * @return number of bytes written to buf
1172  */
1173 static size_t
1174 transmit_download_request (void *cls,
1175                            size_t size, 
1176                            void *buf)
1177 {
1178   struct GNUNET_FS_DownloadContext *dc = cls;
1179   size_t msize;
1180   struct SearchMessage *sm;
1181
1182   dc->th = NULL;
1183   if (NULL == buf)
1184     {
1185       try_reconnect (dc);
1186       return 0;
1187     }
1188   GNUNET_assert (size >= sizeof (struct SearchMessage));
1189   msize = 0;
1190   sm = buf;
1191   while ( (dc->pending != NULL) &&
1192           (size > msize + sizeof (struct SearchMessage)) )
1193     {
1194 #if DEBUG_DOWNLOAD
1195       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1196                   "Transmitting download request for `%s' to `%s'-service\n",
1197                   GNUNET_h2s (&dc->pending->chk.query),
1198                   "FS");
1199 #endif
1200       memset (sm, 0, sizeof (struct SearchMessage));
1201       sm->header.size = htons (sizeof (struct SearchMessage));
1202       sm->header.type = htons (GNUNET_MESSAGE_TYPE_FS_START_SEARCH);
1203       if (0 != (dc->options & GNUNET_FS_DOWNLOAD_OPTION_LOOPBACK_ONLY))
1204         sm->options = htonl (1);
1205       else
1206         sm->options = htonl (0);      
1207       if (dc->pending->depth == dc->treedepth)
1208         sm->type = htonl (GNUNET_BLOCK_TYPE_DBLOCK);
1209       else
1210         sm->type = htonl (GNUNET_BLOCK_TYPE_IBLOCK);
1211       sm->anonymity_level = htonl (dc->anonymity);
1212       sm->target = dc->target.hashPubKey;
1213       sm->query = dc->pending->chk.query;
1214       dc->pending->is_pending = GNUNET_NO;
1215       dc->pending = dc->pending->next;
1216       msize += sizeof (struct SearchMessage);
1217       sm++;
1218     }
1219   if (dc->pending != NULL)
1220     dc->th = GNUNET_CLIENT_notify_transmit_ready (dc->client,
1221                                                   sizeof (struct SearchMessage),
1222                                                   GNUNET_CONSTANTS_SERVICE_TIMEOUT,
1223                                                   GNUNET_NO,
1224                                                   &transmit_download_request,
1225                                                   dc); 
1226   return msize;
1227 }
1228
1229
1230 /**
1231  * Reconnect to the FS service and transmit our queries NOW.
1232  *
1233  * @param cls our download context
1234  * @param tc unused
1235  */
1236 static void
1237 do_reconnect (void *cls,
1238               const struct GNUNET_SCHEDULER_TaskContext *tc)
1239 {
1240   struct GNUNET_FS_DownloadContext *dc = cls;
1241   struct GNUNET_CLIENT_Connection *client;
1242   
1243   dc->task = GNUNET_SCHEDULER_NO_TASK;
1244   client = GNUNET_CLIENT_connect (dc->h->sched,
1245                                   "fs",
1246                                   dc->h->cfg);
1247   if (NULL == client)
1248     {
1249       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1250                   "Connecting to `%s'-service failed, will try again.\n",
1251                   "FS");
1252       try_reconnect (dc);
1253       return;
1254     }
1255   dc->client = client;
1256   dc->th = GNUNET_CLIENT_notify_transmit_ready (client,
1257                                                 sizeof (struct SearchMessage),
1258                                                 GNUNET_CONSTANTS_SERVICE_TIMEOUT,
1259                                                 GNUNET_NO,
1260                                                 &transmit_download_request,
1261                                                 dc);  
1262   GNUNET_CLIENT_receive (client,
1263                          &receive_results,
1264                          dc,
1265                          GNUNET_TIME_UNIT_FOREVER_REL);
1266 }
1267
1268
1269 /**
1270  * Add entries that are not yet pending back to the pending list.
1271  *
1272  * @param cls our download context
1273  * @param key unused
1274  * @param entry entry of type "struct DownloadRequest"
1275  * @return GNUNET_OK
1276  */
1277 static int
1278 retry_entry (void *cls,
1279              const GNUNET_HashCode *key,
1280              void *entry)
1281 {
1282   struct GNUNET_FS_DownloadContext *dc = cls;
1283   struct DownloadRequest *dr = entry;
1284
1285   if (! dr->is_pending)
1286     {
1287       dr->next = dc->pending;
1288       dr->is_pending = GNUNET_YES;
1289       dc->pending = entry;
1290     }
1291   return GNUNET_OK;
1292 }
1293
1294
1295 /**
1296  * We've lost our connection with the FS service.
1297  * Re-establish it and re-transmit all of our
1298  * pending requests.
1299  *
1300  * @param dc download context that is having trouble
1301  */
1302 static void
1303 try_reconnect (struct GNUNET_FS_DownloadContext *dc)
1304 {
1305   
1306   if (NULL != dc->client)
1307     {
1308       if (NULL != dc->th)
1309         {
1310           GNUNET_CLIENT_notify_transmit_ready_cancel (dc->th);
1311           dc->th = NULL;
1312         }
1313       GNUNET_CONTAINER_multihashmap_iterate (dc->active,
1314                                              &retry_entry,
1315                                              dc);
1316       GNUNET_CLIENT_disconnect (dc->client, GNUNET_NO);
1317       dc->client = NULL;
1318     }
1319   dc->task
1320     = GNUNET_SCHEDULER_add_delayed (dc->h->sched,
1321                                     GNUNET_TIME_UNIT_SECONDS,
1322                                     &do_reconnect,
1323                                     dc);
1324 }
1325
1326
1327
1328 /**
1329  * We're allowed to ask the FS service for our blocks.  Start the download.
1330  *
1331  * @param cls the 'struct GNUNET_FS_DownloadContext'
1332  * @param client handle to use for communcation with FS (we must destroy it!)
1333  */
1334 static void
1335 activate_fs_download (void *cls,
1336                       struct GNUNET_CLIENT_Connection *client)
1337 {
1338   struct GNUNET_FS_DownloadContext *dc = cls;
1339   struct GNUNET_FS_ProgressInfo pi;
1340
1341   GNUNET_assert (NULL != client);
1342   dc->client = client;
1343   GNUNET_CLIENT_receive (client,
1344                          &receive_results,
1345                          dc,
1346                          GNUNET_TIME_UNIT_FOREVER_REL);
1347   pi.status = GNUNET_FS_STATUS_DOWNLOAD_ACTIVE;
1348   GNUNET_FS_download_make_status_ (&pi, dc);
1349   GNUNET_CONTAINER_multihashmap_iterate (dc->active,
1350                                          &retry_entry,
1351                                          dc);
1352   if ( (dc->th == NULL) &&
1353        (dc->client != NULL) )
1354     dc->th = GNUNET_CLIENT_notify_transmit_ready (dc->client,
1355                                                   sizeof (struct SearchMessage),
1356                                                   GNUNET_CONSTANTS_SERVICE_TIMEOUT,
1357                                                   GNUNET_NO,
1358                                                   &transmit_download_request,
1359                                                   dc);
1360 }
1361
1362
1363 /**
1364  * We must stop to ask the FS service for our blocks.  Pause the download.
1365  *
1366  * @param cls the 'struct GNUNET_FS_DownloadContext'
1367  */
1368 static void
1369 deactivate_fs_download (void *cls)
1370 {
1371   struct GNUNET_FS_DownloadContext *dc = cls;
1372   struct GNUNET_FS_ProgressInfo pi;
1373   
1374   if (NULL != dc->th)
1375     {
1376       GNUNET_CLIENT_notify_transmit_ready_cancel (dc->th);
1377       dc->th = NULL;
1378     }
1379   if (NULL != dc->client)
1380     {
1381       GNUNET_CLIENT_disconnect (dc->client, GNUNET_NO);
1382       dc->client = NULL;
1383     }
1384   pi.status = GNUNET_FS_STATUS_DOWNLOAD_INACTIVE;
1385   GNUNET_FS_download_make_status_ (&pi, dc);
1386 }
1387
1388
1389 /**
1390  * Free entries in the map.
1391  *
1392  * @param cls unused (NULL)
1393  * @param key unused
1394  * @param entry entry of type "struct DownloadRequest" which is freed
1395  * @return GNUNET_OK
1396  */
1397 static int
1398 free_entry (void *cls,
1399             const GNUNET_HashCode *key,
1400             void *entry)
1401 {
1402   GNUNET_free (entry);
1403   return GNUNET_OK;
1404 }
1405
1406
1407 /**
1408  * Create SUSPEND event for the given download operation
1409  * and then clean up our state (without stop signal).
1410  *
1411  * @param cls the 'struct GNUNET_FS_DownloadContext' to signal for
1412  */
1413 void
1414 GNUNET_FS_download_signal_suspend_ (void *cls)
1415 {
1416   struct GNUNET_FS_DownloadContext *dc = cls;
1417   struct GNUNET_FS_ProgressInfo pi;
1418   
1419   if (dc->top != NULL)
1420     GNUNET_FS_end_top (dc->h, dc->top);
1421   while (NULL != dc->child_head)
1422     GNUNET_FS_download_signal_suspend_ (dc->child_head);  
1423   if (dc->search != NULL)
1424     {
1425       dc->search->download = NULL;
1426       dc->search = NULL;
1427     }
1428   if (dc->job_queue != NULL)
1429     {
1430       GNUNET_FS_dequeue_ (dc->job_queue);
1431       dc->job_queue = NULL;
1432     }
1433   if (dc->parent != NULL)
1434     GNUNET_CONTAINER_DLL_remove (dc->parent->child_head,
1435                                  dc->parent->child_tail,
1436                                  dc);  
1437   pi.status = GNUNET_FS_STATUS_DOWNLOAD_SUSPEND;
1438   GNUNET_FS_download_make_status_ (&pi, dc);
1439   if (GNUNET_SCHEDULER_NO_TASK != dc->task)
1440     GNUNET_SCHEDULER_cancel (dc->h->sched,
1441                              dc->task);
1442   GNUNET_CONTAINER_multihashmap_iterate (dc->active,
1443                                          &free_entry,
1444                                          NULL);
1445   GNUNET_CONTAINER_multihashmap_destroy (dc->active);
1446   GNUNET_free_non_null (dc->filename);
1447   GNUNET_CONTAINER_meta_data_destroy (dc->meta);
1448   GNUNET_FS_uri_destroy (dc->uri);
1449   GNUNET_free_non_null (dc->temp_filename);
1450   GNUNET_free_non_null (dc->serialization);
1451   GNUNET_free (dc);
1452 }
1453
1454
1455 /**
1456  * Download parts of a file.  Note that this will store
1457  * the blocks at the respective offset in the given file.  Also, the
1458  * download is still using the blocking of the underlying FS
1459  * encoding.  As a result, the download may *write* outside of the
1460  * given boundaries (if offset and length do not match the 32k FS
1461  * block boundaries). <p>
1462  *
1463  * This function should be used to focus a download towards a
1464  * particular portion of the file (optimization), not to strictly
1465  * limit the download to exactly those bytes.
1466  *
1467  * @param h handle to the file sharing subsystem
1468  * @param uri the URI of the file (determines what to download); CHK or LOC URI
1469  * @param meta known metadata for the file (can be NULL)
1470  * @param filename where to store the file, maybe NULL (then no file is
1471  *        created on disk and data must be grabbed from the callbacks)
1472  * @param tempname where to store temporary file data, not used if filename is non-NULL;
1473  *        can be NULL (in which case we will pick a name if needed); the temporary file
1474  *        may already exist, in which case we will try to use the data that is there and
1475  *        if it is not what is desired, will overwrite it
1476  * @param offset at what offset should we start the download (typically 0)
1477  * @param length how many bytes should be downloaded starting at offset
1478  * @param anonymity anonymity level to use for the download
1479  * @param options various options
1480  * @param cctx initial value for the client context for this download
1481  * @param parent parent download to associate this download with (use NULL
1482  *        for top-level downloads; useful for manually-triggered recursive downloads)
1483  * @return context that can be used to control this download
1484  */
1485 struct GNUNET_FS_DownloadContext *
1486 GNUNET_FS_download_start (struct GNUNET_FS_Handle *h,
1487                           const struct GNUNET_FS_Uri *uri,
1488                           const struct GNUNET_CONTAINER_MetaData *meta,
1489                           const char *filename,
1490                           const char *tempname,
1491                           uint64_t offset,
1492                           uint64_t length,
1493                           uint32_t anonymity,
1494                           enum GNUNET_FS_DownloadOptions options,
1495                           void *cctx,
1496                           struct GNUNET_FS_DownloadContext *parent)
1497 {
1498   struct GNUNET_FS_ProgressInfo pi;
1499   struct GNUNET_FS_DownloadContext *dc;
1500
1501   GNUNET_assert (GNUNET_FS_uri_test_chk (uri));
1502   if ( (offset + length < offset) ||
1503        (offset + length > uri->data.chk.file_length) )
1504     {      
1505       GNUNET_break (0);
1506       return NULL;
1507     }
1508 #if DEBUG_DOWNLOAD
1509   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1510               "Starting download `%s' of %llu bytes\n",
1511               filename,
1512               (unsigned long long) length);
1513 #endif
1514   dc = GNUNET_malloc (sizeof(struct GNUNET_FS_DownloadContext));
1515   dc->h = h;
1516   dc->parent = parent;
1517   if (parent != NULL)
1518     {
1519       GNUNET_CONTAINER_DLL_insert (parent->child_head,
1520                                    parent->child_tail,
1521                                    dc);
1522     }
1523   dc->uri = GNUNET_FS_uri_dup (uri);
1524   dc->meta = GNUNET_CONTAINER_meta_data_duplicate (meta);
1525   dc->client_info = cctx;
1526   dc->start_time = GNUNET_TIME_absolute_get ();
1527   if (NULL != filename)
1528     {
1529       dc->filename = GNUNET_strdup (filename);
1530       if (GNUNET_YES == GNUNET_DISK_file_test (filename))
1531         GNUNET_DISK_file_size (filename,
1532                                &dc->old_file_size,
1533                                GNUNET_YES);
1534     }
1535   if (GNUNET_FS_uri_test_loc (dc->uri))
1536     GNUNET_assert (GNUNET_OK ==
1537                    GNUNET_FS_uri_loc_get_peer_identity (dc->uri,
1538                                                         &dc->target));
1539   dc->offset = offset;
1540   dc->length = length;
1541   dc->anonymity = anonymity;
1542   dc->options = options;
1543   dc->active = GNUNET_CONTAINER_multihashmap_create (1 + 2 * (length / DBLOCK_SIZE));
1544   dc->treedepth = GNUNET_FS_compute_depth (GNUNET_ntohll(dc->uri->data.chk.file_length));
1545   if ( (filename == NULL) &&
1546        (is_recursive_download (dc) ) )
1547     {
1548       if (tempname != NULL)
1549         dc->temp_filename = GNUNET_strdup (tempname);
1550       else
1551         dc->temp_filename = GNUNET_DISK_mktemp ("gnunet-directory-download-tmp");    
1552     }
1553
1554 #if DEBUG_DOWNLOAD
1555   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1556               "Download tree has depth %u\n",
1557               dc->treedepth);
1558 #endif
1559   pi.status = GNUNET_FS_STATUS_DOWNLOAD_START;
1560   pi.value.download.specifics.start.meta = meta;
1561   GNUNET_FS_download_make_status_ (&pi, dc);
1562   schedule_block_download (dc, 
1563                            &dc->uri->data.chk.chk,
1564                            0, 
1565                            1 /* 0 == CHK, 1 == top */); 
1566   GNUNET_FS_download_sync_ (dc);
1567   GNUNET_FS_download_start_downloading_ (dc);
1568   if (parent == NULL)
1569     dc->top = GNUNET_FS_make_top (dc->h,
1570                                   &GNUNET_FS_download_signal_suspend_,
1571                                   dc);
1572
1573   return dc;
1574 }
1575
1576
1577 /**
1578  * Download parts of a file based on a search result.  The download
1579  * will be associated with the search result (and the association
1580  * will be preserved when serializing/deserializing the state).
1581  * If the search is stopped, the download will not be aborted but
1582  * be 'promoted' to a stand-alone download.
1583  *
1584  * As with the other download function, this will store
1585  * the blocks at the respective offset in the given file.  Also, the
1586  * download is still using the blocking of the underlying FS
1587  * encoding.  As a result, the download may *write* outside of the
1588  * given boundaries (if offset and length do not match the 32k FS
1589  * block boundaries). <p>
1590  *
1591  * The given range can be used to focus a download towards a
1592  * particular portion of the file (optimization), not to strictly
1593  * limit the download to exactly those bytes.
1594  *
1595  * @param h handle to the file sharing subsystem
1596  * @param sr the search result to use for the download (determines uri and
1597  *        meta data and associations)
1598  * @param filename where to store the file, maybe NULL (then no file is
1599  *        created on disk and data must be grabbed from the callbacks)
1600  * @param tempname where to store temporary file data, not used if filename is non-NULL;
1601  *        can be NULL (in which case we will pick a name if needed); the temporary file
1602  *        may already exist, in which case we will try to use the data that is there and
1603  *        if it is not what is desired, will overwrite it
1604  * @param offset at what offset should we start the download (typically 0)
1605  * @param length how many bytes should be downloaded starting at offset
1606  * @param anonymity anonymity level to use for the download
1607  * @param options various download options
1608  * @param cctx initial value for the client context for this download
1609  * @return context that can be used to control this download
1610  */
1611 struct GNUNET_FS_DownloadContext *
1612 GNUNET_FS_download_start_from_search (struct GNUNET_FS_Handle *h,
1613                                       struct GNUNET_FS_SearchResult *sr,
1614                                       const char *filename,
1615                                       const char *tempname,
1616                                       uint64_t offset,
1617                                       uint64_t length,
1618                                       uint32_t anonymity,
1619                                       enum GNUNET_FS_DownloadOptions options,
1620                                       void *cctx)
1621 {
1622   struct GNUNET_FS_ProgressInfo pi;
1623   struct GNUNET_FS_DownloadContext *dc;
1624
1625   if (sr->download != NULL)
1626     {
1627       GNUNET_break (0);
1628       return NULL;
1629     }
1630   GNUNET_assert (GNUNET_FS_uri_test_chk (sr->uri));
1631   if ( (offset + length < offset) ||
1632        (offset + length > sr->uri->data.chk.file_length) )
1633     {      
1634       GNUNET_break (0);
1635       return NULL;
1636     }
1637 #if DEBUG_DOWNLOAD
1638   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1639               "Starting download `%s' of %llu bytes\n",
1640               filename,
1641               (unsigned long long) length);
1642 #endif
1643   dc = GNUNET_malloc (sizeof(struct GNUNET_FS_DownloadContext));
1644   dc->h = h;
1645   dc->search = sr;
1646   sr->download = dc;
1647   if (sr->probe_ctx != NULL)
1648     {
1649       GNUNET_FS_download_stop (sr->probe_ctx, GNUNET_YES);
1650       sr->probe_ctx = NULL;      
1651     }
1652   dc->uri = GNUNET_FS_uri_dup (sr->uri);
1653   dc->meta = GNUNET_CONTAINER_meta_data_duplicate (sr->meta);
1654   dc->client_info = cctx;
1655   dc->start_time = GNUNET_TIME_absolute_get ();
1656   if (NULL != filename)
1657     {
1658       dc->filename = GNUNET_strdup (filename);
1659       if (GNUNET_YES == GNUNET_DISK_file_test (filename))
1660         GNUNET_DISK_file_size (filename,
1661                                &dc->old_file_size,
1662                                GNUNET_YES);
1663     }
1664   if (GNUNET_FS_uri_test_loc (dc->uri))
1665     GNUNET_assert (GNUNET_OK ==
1666                    GNUNET_FS_uri_loc_get_peer_identity (dc->uri,
1667                                                         &dc->target));
1668   dc->offset = offset;
1669   dc->length = length;
1670   dc->anonymity = anonymity;
1671   dc->options = options;
1672   dc->active = GNUNET_CONTAINER_multihashmap_create (1 + 2 * (length / DBLOCK_SIZE));
1673   dc->treedepth = GNUNET_FS_compute_depth (GNUNET_ntohll(dc->uri->data.chk.file_length));
1674   if ( (filename == NULL) &&
1675        (is_recursive_download (dc) ) )
1676     {
1677       if (tempname != NULL)
1678         dc->temp_filename = GNUNET_strdup (tempname);
1679       else
1680         dc->temp_filename = GNUNET_DISK_mktemp ("gnunet-directory-download-tmp");    
1681     }
1682
1683 #if DEBUG_DOWNLOAD
1684   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1685               "Download tree has depth %u\n",
1686               dc->treedepth);
1687 #endif
1688   pi.status = GNUNET_FS_STATUS_DOWNLOAD_START;
1689   pi.value.download.specifics.start.meta = dc->meta;
1690   GNUNET_FS_download_make_status_ (&pi, dc);
1691   schedule_block_download (dc, 
1692                            &dc->uri->data.chk.chk,
1693                            0, 
1694                            1 /* 0 == CHK, 1 == top */); 
1695   GNUNET_FS_download_sync_ (dc);
1696   GNUNET_FS_download_start_downloading_ (dc);
1697   return dc;  
1698 }
1699
1700
1701 /**
1702  * Start the downloading process (by entering the queue).
1703  *
1704  * @param dc our download context
1705  */
1706 void
1707 GNUNET_FS_download_start_downloading_ (struct GNUNET_FS_DownloadContext *dc)
1708 {
1709   dc->job_queue = GNUNET_FS_queue_ (dc->h, 
1710                                     &activate_fs_download,
1711                                     &deactivate_fs_download,
1712                                     dc,
1713                                     (dc->length + DBLOCK_SIZE-1) / DBLOCK_SIZE);
1714 }
1715
1716
1717 /**
1718  * Stop a download (aborts if download is incomplete).
1719  *
1720  * @param dc handle for the download
1721  * @param do_delete delete files of incomplete downloads
1722  */
1723 void
1724 GNUNET_FS_download_stop (struct GNUNET_FS_DownloadContext *dc,
1725                          int do_delete)
1726 {
1727   struct GNUNET_FS_ProgressInfo pi;
1728   int have_children;
1729
1730   if (dc->top != NULL)
1731     GNUNET_FS_end_top (dc->h, dc->top);
1732   if (dc->search != NULL)
1733     {
1734       dc->search->download = NULL;
1735       dc->search = NULL;
1736     }
1737   if (dc->job_queue != NULL)
1738     {
1739       GNUNET_FS_dequeue_ (dc->job_queue);
1740       dc->job_queue = NULL;
1741     }
1742   have_children = (NULL != dc->child_head) ? GNUNET_YES : GNUNET_NO;
1743   while (NULL != dc->child_head)
1744     GNUNET_FS_download_stop (dc->child_head, 
1745                              do_delete);
1746   if (dc->parent != NULL)
1747     GNUNET_CONTAINER_DLL_remove (dc->parent->child_head,
1748                                  dc->parent->child_tail,
1749                                  dc);  
1750   if (dc->serialization != NULL)
1751     GNUNET_FS_remove_sync_file_ (dc->h,
1752                                  ( (dc->parent != NULL)  || (dc->search != NULL) )
1753                                  ? GNUNET_FS_SYNC_PATH_CHILD_DOWNLOAD 
1754                                  : GNUNET_FS_SYNC_PATH_MASTER_DOWNLOAD , 
1755                                  dc->serialization);
1756   if ( (GNUNET_YES == have_children) &&
1757        (dc->parent == NULL) )
1758     GNUNET_FS_remove_sync_dir_ (dc->h, 
1759                                 (dc->search != NULL) 
1760                                 ? GNUNET_FS_SYNC_PATH_CHILD_DOWNLOAD 
1761                                 : GNUNET_FS_SYNC_PATH_MASTER_DOWNLOAD,
1762                                 dc->serialization);  
1763   pi.status = GNUNET_FS_STATUS_DOWNLOAD_STOPPED;
1764   GNUNET_FS_download_make_status_ (&pi, dc);
1765   if (GNUNET_SCHEDULER_NO_TASK != dc->task)
1766     GNUNET_SCHEDULER_cancel (dc->h->sched,
1767                              dc->task);
1768   GNUNET_CONTAINER_multihashmap_iterate (dc->active,
1769                                          &free_entry,
1770                                          NULL);
1771   GNUNET_CONTAINER_multihashmap_destroy (dc->active);
1772   if (dc->filename != NULL)
1773     {
1774       if ( (dc->completed != dc->length) &&
1775            (GNUNET_YES == do_delete) )
1776         {
1777           if (0 != UNLINK (dc->filename))
1778             GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
1779                                       "unlink",
1780                                       dc->filename);
1781         }
1782       GNUNET_free (dc->filename);
1783     }
1784   GNUNET_CONTAINER_meta_data_destroy (dc->meta);
1785   GNUNET_FS_uri_destroy (dc->uri);
1786   if (NULL != dc->temp_filename)
1787     {
1788       if (0 != UNLINK (dc->temp_filename))
1789         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
1790                                   "unlink",
1791                                   dc->temp_filename);
1792       GNUNET_free (dc->temp_filename);
1793     }
1794   GNUNET_free_non_null (dc->serialization);
1795   GNUNET_free (dc);
1796 }
1797
1798 /* end of fs_download.c */