33ee8dde003a816ac9f1272e5751774121c72b8f
[oweals/gnunet.git] / src / fs / fs.h
1 /*
2      This file is part of GNUnet.
3      (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 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.h
23  * @brief definitions for the entire fs module
24  * @author Igor Wronsky, Christian Grothoff
25  */
26 #ifndef FS_H
27 #define FS_H
28
29 #include "gnunet_constants.h"
30 #include "gnunet_datastore_service.h"
31 #include "gnunet_fs_service.h"
32 #include "gnunet_block_lib.h"
33
34 /**
35  * Size of the individual blocks used for file-sharing.
36  */
37 #define DBLOCK_SIZE (32*1024)
38
39 /**
40  * Maximum legal size for a kblock.
41  */
42 #define MAX_KBLOCK_SIZE (60 * 1024)
43
44 /**
45  * Maximum legal size for an sblock.
46  */
47 #define MAX_SBLOCK_SIZE (60 * 1024)
48
49 /**
50  * Maximum legal size for an nblock.
51  */
52 #define MAX_NBLOCK_SIZE (60 * 1024)
53
54 /**
55  * Pick a multiple of 2 here to achive 8-byte alignment!
56  * We also probably want DBlocks to have (roughly) the
57  * same size as IBlocks.  With SHA-512, the optimal
58  * value is 32768 byte / 128 byte = 256
59  * (128 byte = 2 * 512 bits).  DO NOT CHANGE!
60  */
61 #define CHK_PER_INODE 256
62
63
64 /**
65  * Maximum size for a file to be considered for
66  * inlining in a directory.
67  */
68 #define MAX_INLINE_SIZE 65536
69
70
71 /**
72  * Blocksize to use when hashing files
73  * for indexing (blocksize for IO, not for
74  * the DBlocks).  Larger blocksizes can
75  * be more efficient but will be more disruptive
76  * as far as the scheduler is concerned.
77  */
78 #define HASHING_BLOCKSIZE (1024 * 1024)
79
80 /**
81  * Number of bits we set per entry in the bloomfilter.
82  * Do not change!
83  */
84 #define BLOOMFILTER_K 16
85
86 /**
87  * Number of availability trials we perform per search result.
88  */
89 #define AVAILABILITY_TRIALS_MAX 8
90
91 /**
92  * By how much (in ms) do we decrement the TTL
93  * at each hop?
94  */
95 #define TTL_DECREMENT 5000
96
97 /**
98  * Length of the P2P success tracker.  Note that
99  * having a very long list can also hurt performance.
100  */
101 #define P2P_SUCCESS_LIST_SIZE 8
102
103
104 /**
105  * Length of the CS-2-P success tracker.  Note that
106  * having a very long list can also hurt performance.
107  */
108 #define CS2P_SUCCESS_LIST_SIZE 8
109
110 /**
111  * How long are we willing to wait for the datastore to be ready to
112  * process a request for a query without priority?
113  */
114 #define BASIC_DATASTORE_REQUEST_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
115
116
117 /**
118  * How long are we willing to wait for the core to be ready to
119  * transmit a reply to the target peer (if we can not transmit
120  * until then, we will discard the reply).
121  */
122 #define ACCEPTABLE_REPLY_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
123
124
125 /**
126  * Bandwidth value of an (effectively) 0-priority query.
127  */
128 #define QUERY_BANDWIDTH_VALUE 0.001
129
130 /**
131  * Bandwidth value of a 0-priority content (must be
132  * fairly high compared to query since content is
133  * typically significantly larger -- and more valueable
134  * since it can take many queries to get one piece of
135  * content).
136  */
137 #define CONTENT_BANDWIDTH_VALUE 0.8
138
139 /**
140  * By which amount do we decrement the TTL for simple forwarding /
141  * indirection of the query; in milli-seconds.  Set somewhat in
142  * accordance to your network latency (above the time it'll take you
143  * to send a packet and get a reply).
144  */
145 #define TTL_DECREMENT 5000
146
147 /**
148  * Until which load do we consider the peer idle and do not
149  * charge at all? (should be larger than GNUNET_IDLE_LOAD_THRESHOLD used
150  * by the rest of the code)!
151  */
152 #define IDLE_LOAD_THRESHOLD ((100 + GNUNET_CONSTANTS_IDLE_LOAD_THRESHOLD) / 2)
153
154
155
156 /**
157  * @brief content hash key
158  */
159 struct ContentHashKey 
160 {
161   GNUNET_HashCode key;
162   GNUNET_HashCode query;
163 };
164
165
166 /**
167  * @brief complete information needed
168  * to download a file.
169  */
170 struct FileIdentifier
171 {
172
173   /**
174    * Total size of the file in bytes. (network byte order (!))
175    */
176   uint64_t file_length;
177
178   /**
179    * Query and key of the top GNUNET_EC_IBlock.
180    */
181   struct ContentHashKey chk;
182
183 };
184
185
186 /**
187  * Information about a file and its location
188  * (peer claiming to share the file).
189  */
190 struct Location
191 {
192   /**
193    * Information about the shared file.
194    */
195   struct FileIdentifier fi;
196
197   /**
198    * Identity of the peer sharing the file.
199    */
200   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded peer;
201
202   /**
203    * Time when this location URI expires.
204    */
205   struct GNUNET_TIME_Absolute expirationTime;
206
207   /**
208    * RSA signature over the GNUNET_EC_FileIdentifier,
209    * GNUNET_hash of the peer and expiration time.
210    */
211   struct GNUNET_CRYPTO_RsaSignature contentSignature;
212
213 };
214
215 enum uri_types
216 { chk, sks, ksk, loc };
217
218 /**
219  * A Universal Resource Identifier (URI), opaque.
220  */
221 struct GNUNET_FS_Uri
222 {
223   enum uri_types type;
224   union
225   {
226     struct
227     {
228       /**
229        * Keywords start with a '+' if they are
230        * mandatory (in which case the '+' is NOT
231        * part of the keyword) and with a
232        * simple space if they are optional
233        * (in which case the space is ALSO not
234        * part of the actual keyword).
235        *
236        * Double-quotes to protect spaces and
237        * %-encoding are NOT used internally
238        * (only in URI-strings).
239        */
240       char **keywords;
241       
242       /**
243        * Size of the keywords array.
244        */
245       unsigned int keywordCount;
246     } ksk;
247
248     struct
249     {
250       /**
251        * Hash of the public key for the namespace.
252        */
253       GNUNET_HashCode namespace;
254
255       /**
256        * Human-readable identifier chosen for this
257        * entry in the namespace.
258        */
259       char *identifier;
260     } sks;
261
262     /**
263      * Information needed to retrieve a file (content-hash-key
264      * plus file size).
265      */
266     struct FileIdentifier chk;
267
268     /**
269      * Information needed to retrieve a file including signed
270      * location (identity of a peer) of the content.
271      */
272     struct Location loc;
273   } data;
274
275 };
276
277
278 /**
279  * Information for a file or directory that is
280  * about to be published.
281  */
282 struct GNUNET_FS_FileInformation
283 {
284
285   /**
286    * Files in a directory are kept as a linked list.
287    */
288   struct GNUNET_FS_FileInformation *next;
289
290   /**
291    * If this is a file in a directory, "dir" refers to
292    * the directory; otherwise NULL.
293    */
294   struct GNUNET_FS_FileInformation *dir;
295
296   /**
297    * Handle to the master context.
298    */
299   struct GNUNET_FS_Handle *h;
300
301   /**
302    * Pointer kept for the client.
303    */
304   void *client_info;
305
306   /**
307    * Metadata to use for the file.
308    */
309   struct GNUNET_CONTAINER_MetaData *meta;
310
311   /**
312    * Keywords to use for KBlocks.
313    */
314   struct GNUNET_FS_Uri *keywords;
315
316   /**
317    * CHK for this file or directory. NULL if
318    * we have not yet computed it.
319    */
320   struct GNUNET_FS_Uri *chk_uri;
321
322   /**
323    * At what time should the content expire?
324    */
325   struct GNUNET_TIME_Absolute expirationTime;
326
327   /**
328    * At what time did we start this upload?
329    */
330   struct GNUNET_TIME_Absolute start_time;
331
332   /**
333    * Under what filename is this struct serialized
334    * (for operational persistence).  Should be determined
335    * using 'mktemp'.
336    */
337   char *serialization;
338   
339   /**
340    * Encoder being used to publish this file.
341    */
342   struct GNUNET_FS_TreeEncoder *te;
343
344   /**
345    * Error message (non-NULL if this operation failed).
346    */
347   char *emsg;
348
349   /**
350    * Name of the file or directory (must be an absolute path). 
351    */
352   char *filename;
353
354   /**
355    * Data describing either the file or the directory.
356    */
357   union
358   {
359
360     /**
361      * Data for a file.
362      */
363     struct {
364
365       /**
366        * Function that can be used to read the data for the file.
367        */
368       GNUNET_FS_DataReader reader;
369
370       /**
371        * Closure for reader.
372        */
373       void *reader_cls;
374
375       /**
376        * If this file is being indexed, this value is set to the hash
377        * over the entire file (when the indexing process is started).
378        * Otherwise this field is not used.
379        */
380       GNUNET_HashCode file_id;
381
382       /**
383        * Size of the file (in bytes).
384        */
385       uint64_t file_size;
386
387       /**
388        * Should the file be indexed or inserted?
389        */
390       int do_index;
391
392       /**
393        * Is "file_id" already valid?  Set to GNUNET_YES once the hash
394        * has been calculated.
395        */
396       int have_hash;
397
398       /**
399        * Has the service confirmed our INDEX_START request?
400        * GNUNET_YES if this step has been completed.
401        */
402       int index_start_confirmed;
403
404     } file;
405
406     /**
407      * Data for a directory.
408      */
409     struct {
410       
411       /**
412        * Linked list of entries in the directory.
413        */
414       struct GNUNET_FS_FileInformation *entries;
415
416       /**
417        * Size of the directory itself (in bytes); 0 if the
418        * size has not yet been calculated.
419        */
420       size_t dir_size;
421
422       /**
423        * Pointer to the data for the directory (or NULL if not
424        * available).
425        */
426       void *dir_data;
427
428     } dir;
429
430   } data;
431
432   /**
433    * Desired anonymity level.
434    */
435   uint32_t anonymity;
436
437   /**
438    * Desired priority (for keeping the content in the DB).
439    */
440   uint32_t priority;
441
442   /**
443    * Is this struct for a file or directory?
444    */
445   int is_directory;
446
447   /**
448    * Are we done publishing this file?
449    */
450   int is_published;
451
452 };
453
454
455 /**
456  * The job is now ready to run and should use the given client
457  * handle to communicate with the FS service.
458  *
459  * @param cls closure
460  * @param client handle to use for FS communication
461  */
462 typedef void (*GNUNET_FS_QueueStart)(void *cls,
463                                      struct GNUNET_CLIENT_Connection *client);
464
465
466 /**
467  * The job must now stop to run and should destry the client handle as
468  * soon as possible (ideally prior to returning).
469  */
470 typedef void (*GNUNET_FS_QueueStop)(void *cls);
471
472
473 /**
474  * Entry in the job queue.
475  */
476 struct GNUNET_FS_QueueEntry
477 {
478   /**
479    * This is a linked list.
480    */
481   struct GNUNET_FS_QueueEntry *next;
482
483   /**
484    * This is a linked list.
485    */
486   struct GNUNET_FS_QueueEntry *prev;
487
488   /**
489    * Function to call when the job is started.
490    */
491   GNUNET_FS_QueueStart start;
492
493   /**
494    * Function to call when the job needs to stop (or is done / dequeued).
495    */
496   GNUNET_FS_QueueStop stop;
497
498   /**
499    * Closure for start and stop.
500    */
501   void *cls;
502
503   /**
504    * Handle to FS primary context.
505    */ 
506   struct GNUNET_FS_Handle *h;
507
508   /**
509    * Client handle, or NULL if job is not running.
510    */
511   struct GNUNET_CLIENT_Connection *client;
512
513   /**
514    * Time the job was originally queued.
515    */
516   struct GNUNET_TIME_Absolute queue_time;
517
518   /**
519    * Time the job was started last.
520    */
521   struct GNUNET_TIME_Absolute start_time;
522
523   /**
524    * Total amount of time the job has been running (except for the
525    * current run).
526    */
527   struct GNUNET_TIME_Relative run_time;
528
529   /**
530    * How many blocks do the active downloads have?
531    */
532   unsigned int blocks;
533
534   /**
535    * How often have we (re)started this download?
536    */
537   unsigned int start_times;
538
539 };
540
541
542
543
544 /**
545  * Information we store for each search result.
546  */
547 struct SearchResult
548 {
549
550   /**
551    * Search context this result belongs to.
552    */
553   struct GNUNET_FS_SearchContext *sc;
554
555   /**
556    * URI to which this search result refers to.
557    */
558   struct GNUNET_FS_Uri *uri;
559
560   /**
561    * Metadata for the search result.
562    */
563   struct GNUNET_CONTAINER_MetaData *meta;
564
565   /**
566    * Client info for this search result.
567    */
568   void *client_info;
569
570   /**
571    * ID of a job that is currently probing this results' availability
572    * (NULL if we are not currently probing).
573    */
574   struct GNUNET_FS_DownloadContext *probe_ctx;
575
576   /**
577    * Name under which this search result is stored on disk.
578    */
579   char *serialization;
580
581   /**
582    * ID of the task that will clean up the probe_ctx should it not
583    * complete on time (and that will need to be cancelled if we clean
584    * up the search result before then).
585    */
586   GNUNET_SCHEDULER_TaskIdentifier probe_cancel_task;
587
588   /**
589    * When did the current probe become active?
590    */
591   struct GNUNET_TIME_Absolute probe_active_time;
592
593   /**
594    * How much longer should we run the current probe before giving up?
595    */
596   struct GNUNET_TIME_Relative remaining_probe_time;
597
598   /**
599    * Number of mandatory keywords for which we have NOT yet found the
600    * search result; when this value hits zero, the search result is
601    * given to the callback.
602    */
603   uint32_t mandatory_missing;
604
605   /**
606    * Number of optional keywords under which this result was also
607    * found.
608    */
609   uint32_t optional_support;
610
611   /**
612    * Number of availability tests that have succeeded for this result.
613    */
614   uint32_t availability_success;
615
616   /**
617    * Number of availability trials that we have performed for this
618    * search result.
619    */
620   uint32_t availability_trials;
621
622 };
623
624
625 /**
626  * Add a job to the queue.
627  *
628  * @param h handle to the overall FS state
629  * @param start function to call to begin the job
630  * @param stop function to call to pause the job, or on dequeue (if the job was running)
631  * @param cls closure for start and stop
632  * @param blocks number of blocks this download has
633  * @return queue handle
634  */
635 struct GNUNET_FS_QueueEntry *
636 GNUNET_FS_queue_ (struct GNUNET_FS_Handle *h,
637                   GNUNET_FS_QueueStart start,
638                   GNUNET_FS_QueueStop stop,
639                   void *cls,
640                   unsigned int blocks);
641
642
643 /**
644  * Dequeue a job from the queue.
645  * @param qh handle for the job
646  */
647 void
648 GNUNET_FS_dequeue_ (struct GNUNET_FS_QueueEntry *qh);
649
650
651 /**
652  * Function that provides data by reading from a file.
653  *
654  * @param cls closure (points to the file information)
655  * @param offset offset to read from; it is possible
656  *            that the caller might need to go backwards
657  *            a bit at times
658  * @param max maximum number of bytes that should be 
659  *            copied to buf; readers are not allowed
660  *            to provide less data unless there is an error;
661  *            a value of "0" will be used at the end to allow
662  *            the reader to clean up its internal state
663  * @param buf where the reader should write the data
664  * @param emsg location for the reader to store an error message
665  * @return number of bytes written, usually "max", 0 on error
666  */
667 size_t
668 GNUNET_FS_data_reader_file_(void *cls, 
669                             uint64_t offset,
670                             size_t max, 
671                             void *buf,
672                             char **emsg);
673
674
675 /**
676  * Create the closure for the 'GNUNET_FS_data_reader_file_' callback.
677  *
678  * @param filename file to read
679  * @return closure to use
680  */
681 void *
682 GNUNET_FS_make_file_reader_context_ (const char *filename);
683
684
685
686 /**
687  * Function that provides data by copying from a buffer.
688  *
689  * @param cls closure (points to the buffer)
690  * @param offset offset to read from; it is possible
691  *            that the caller might need to go backwards
692  *            a bit at times
693  * @param max maximum number of bytes that should be 
694  *            copied to buf; readers are not allowed
695  *            to provide less data unless there is an error;
696  *            a value of "0" will be used at the end to allow
697  *            the reader to clean up its internal state
698  * @param buf where the reader should write the data
699  * @param emsg location for the reader to store an error message
700  * @return number of bytes written, usually "max", 0 on error
701  */
702 size_t
703 GNUNET_FS_data_reader_copy_(void *cls, 
704                             uint64_t offset,
705                             size_t max, 
706                             void *buf,
707                             char **emsg);
708
709 /**
710  * Notification of FS that a search probe has made progress.
711  * This function is used INSTEAD of the client's event handler
712  * for downloads where the GNUNET_FS_DOWNLOAD_IS_PROBE flag is set.
713  *
714  * @param cls closure, always NULL (!), actual closure
715  *        is in the client-context of the info struct
716  * @param info details about the event, specifying the event type
717  *        and various bits about the event
718  * @return client-context (for the next progress call
719  *         for this operation; should be set to NULL for
720  *         SUSPEND and STOPPED events).  The value returned
721  *         will be passed to future callbacks in the respective
722  *         field in the GNUNET_FS_ProgressInfo struct.
723  */
724 void*
725 GNUNET_FS_search_probe_progress_ (void *cls,
726                                   const struct GNUNET_FS_ProgressInfo *info);
727
728
729 /**
730  * Main function that performs the upload.
731  *
732  * @param cls "struct GNUNET_FS_PublishContext" identifies the upload
733  * @param tc task context
734  */
735 void
736 GNUNET_FS_publish_main_ (void *cls,
737                          const struct GNUNET_SCHEDULER_TaskContext *tc);
738
739
740 /**
741  * Function called once the hash of the file
742  * that is being unindexed has been computed.
743  *
744  * @param cls closure, unindex context
745  * @param file_id computed hash, NULL on error
746  */
747 void 
748 GNUNET_FS_unindex_process_hash_ (void *cls,
749                                  const GNUNET_HashCode *file_id);
750
751
752 /**
753  * Fill in all of the generic fields for a publish event and call the
754  * callback.
755  *
756  * @param pi structure to fill in
757  * @param sc overall publishing context
758  * @param p file information for the file being published
759  * @param offset where in the file are we so far
760  * @return value returned from callback
761  */
762 void *
763 GNUNET_FS_publish_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
764                                 struct GNUNET_FS_PublishContext *sc,
765                                 const struct GNUNET_FS_FileInformation *p,
766                                 uint64_t offset);
767
768 /**
769  * Fill in all of the generic fields for 
770  * an unindex event and call the callback.
771  *
772  * @param pi structure to fill in
773  * @param uc overall unindex context
774  * @param offset where we are in the file (for progress)
775  */
776 void
777 GNUNET_FS_unindex_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
778                                 struct GNUNET_FS_UnindexContext *uc,
779                                 uint64_t offset);
780
781 /**
782  * Fill in all of the generic fields for a search event and
783  * call the callback.
784  *
785  * @param pi structure to fill in
786  * @param sc overall search context
787  * @return value returned by the callback
788  */
789 void *
790 GNUNET_FS_search_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
791                                struct GNUNET_FS_SearchContext *sc);
792
793
794 /**
795  * Connect to the datastore and remove the blocks.
796  *
797  * @param uc context for the unindex operation.
798  */
799 void 
800 GNUNET_FS_unindex_do_remove_ (struct GNUNET_FS_UnindexContext *uc);
801
802 /**
803  * Build the request and actually initiate the search using the
804  * GNUnet FS service.
805  *
806  * @param sc search context
807  * @return GNUNET_OK on success, GNUNET_SYSERR on error
808  */
809 int
810 GNUNET_FS_search_start_searching_ (struct GNUNET_FS_SearchContext *sc);
811
812 /**
813  * Start download probes for the given search result.
814  *
815  * @param sr the search result
816  */
817 void
818 GNUNET_FS_search_start_probe_ (struct SearchResult *sr);
819
820 /**
821  * Remove serialization/deserialization file from disk.
822  *
823  * @param h master context
824  * @param ext component of the path 
825  * @param ent entity identifier 
826  */
827 void
828 GNUNET_FS_remove_sync_file_ (struct GNUNET_FS_Handle *h,
829                              const char *ext,
830                              const char *ent);
831
832
833 /**
834  * Synchronize this file-information struct with its mirror
835  * on disk.  Note that all internal FS-operations that change
836  * file information data should already call "sync" internally,
837  * so this function is likely not useful for clients.
838  * 
839  * @param fi the struct to sync
840  */
841 void
842 GNUNET_FS_file_information_sync_ (struct GNUNET_FS_FileInformation *f);
843
844 /**
845  * Synchronize this publishing struct with its mirror
846  * on disk.  Note that all internal FS-operations that change
847  * publishing structs should already call "sync" internally,
848  * so this function is likely not useful for clients.
849  * 
850  * @param pc the struct to sync
851  */
852 void
853 GNUNET_FS_publish_sync_ (struct GNUNET_FS_PublishContext *pc);
854
855 /**
856  * Synchronize this unindex struct with its mirror
857  * on disk.  Note that all internal FS-operations that change
858  * publishing structs should already call "sync" internally,
859  * so this function is likely not useful for clients.
860  * 
861  * @param uc the struct to sync
862  */
863 void
864 GNUNET_FS_unindex_sync_ (struct GNUNET_FS_UnindexContext *uc);
865
866 /**
867  * Synchronize this search struct with its mirror
868  * on disk.  Note that all internal FS-operations that change
869  * publishing structs should already call "sync" internally,
870  * so this function is likely not useful for clients.
871  * 
872  * @param sc the struct to sync
873  */
874 void
875 GNUNET_FS_search_sync_ (struct GNUNET_FS_SearchContext *sc);
876
877 /**
878  * Synchronize this search result with its mirror
879  * on disk.  Note that all internal FS-operations that change
880  * publishing structs should already call "sync" internally,
881  * so this function is likely not useful for clients.
882  * 
883  * @param sc the struct to sync
884  */
885 void
886 GNUNET_FS_search_result_sync_ (struct SearchResult *sr);
887
888
889 /**
890  * Master context for most FS operations.
891  */
892 struct GNUNET_FS_Handle
893 {
894   /**
895    * Scheduler.
896    */
897   struct GNUNET_SCHEDULER_Handle *sched;
898
899   /**
900    * Configuration to use.
901    */
902   const struct GNUNET_CONFIGURATION_Handle *cfg;
903
904   /**
905    * Name of our client.
906    */
907   char *client_name;
908
909   /**
910    * Function to call with updates on our progress.
911    */
912   GNUNET_FS_ProgressCallback upcb;
913
914   /**
915    * Closure for upcb.
916    */
917   void *upcb_cls;
918
919   /**
920    * Connection to the FS service.
921    */
922   struct GNUNET_CLIENT_Connection *client;
923
924   /**
925    * Head of DLL of running jobs.
926    */
927   struct GNUNET_FS_QueueEntry *running_head;
928
929   /**
930    * Tail of DLL of running jobs.
931    */
932   struct GNUNET_FS_QueueEntry *running_tail;
933
934   /**
935    * Head of DLL of pending jobs.
936    */
937   struct GNUNET_FS_QueueEntry *pending_head;
938
939   /**
940    * Tail of DLL of pending jobs.
941    */
942   struct GNUNET_FS_QueueEntry *pending_tail;
943
944   /**
945    * Task that processes the jobs in the running and pending queues
946    * (and moves jobs around as needed).
947    */
948   GNUNET_SCHEDULER_TaskIdentifier queue_job;
949
950   /**
951    * Average time we take for a single request to be satisfied.
952    * FIXME: not yet calcualted properly...
953    */
954   struct GNUNET_TIME_Relative avg_block_latency;
955
956   /**
957    * How many actual downloads do we have running right now?
958    */
959   unsigned int active_downloads;
960
961   /**
962    * How many blocks do the active downloads have?
963    */
964   unsigned int active_blocks;
965
966   /**
967    * General flags.
968    */
969   enum GNUNET_FS_Flags flags;
970
971   /**
972    * Maximum number of parallel downloads.
973    */
974   unsigned int max_parallel_downloads;
975
976   /**
977    * Maximum number of parallel requests.
978    */
979   unsigned int max_parallel_requests;
980
981 };
982
983
984 /**
985  * Handle for controlling a publication process.
986  */
987 struct GNUNET_FS_PublishContext
988 {
989   /**
990    * Handle to the global fs context.
991    */ 
992   struct GNUNET_FS_Handle *h;
993
994   /**
995    * File-structure that is being shared.
996    */
997   struct GNUNET_FS_FileInformation *fi;
998
999   /**
1000    * Namespace that we are publishing in, NULL if we have no namespace.
1001    */
1002   struct GNUNET_FS_Namespace *namespace;
1003
1004   /**
1005    * ID of the content in the namespace, NULL if we have no namespace.
1006    */
1007   char *nid;
1008
1009   /**
1010    * ID for future updates, NULL if we have no namespace or no updates.
1011    */
1012   char *nuid;
1013
1014   /**
1015    * Filename used for serializing information about this operation
1016    * (should be determined using 'mktemp').
1017    */
1018   char *serialization;
1019
1020   /**
1021    * Our own client handle for the FS service; only briefly used when
1022    * we start to index a file, otherwise NULL.
1023    */
1024   struct GNUNET_CLIENT_Connection *client;
1025
1026   /**
1027    * Current position in the file-tree for the upload.
1028    */
1029   struct GNUNET_FS_FileInformation *fi_pos;
1030
1031   /**
1032    * Connection to the datastore service.
1033    */
1034   struct GNUNET_DATASTORE_Handle *dsh;
1035
1036   /**
1037    * ID of the task performing the upload. NO_TASK if the upload has
1038    * completed.
1039    */
1040   GNUNET_SCHEDULER_TaskIdentifier upload_task;
1041
1042   /**
1043    * Typically GNUNET_NO.  Set to GNUNET_YES if "upload_task" is
1044    * GNUNET_SCHEDULER_NO_TASK and we're waiting for a response from
1045    * the datastore service (in which case this struct must not be
1046    * freed until we have that response).  If someone tries to stop the
1047    * download for good during this period, "in_network_wait" is set to
1048    * GNUNET_SYSERR which will cause the struct to be destroyed right
1049    * after we have the reply (or timeout) from the datastore service.
1050    */
1051   int in_network_wait;
1052
1053   /**
1054    * Options for publishing.
1055    */
1056   enum GNUNET_FS_PublishOptions options;
1057
1058   /**
1059    * Space reservation ID with datastore service
1060    * for this upload.
1061    */
1062   int rid;
1063
1064   /**
1065    * Set to GNUNET_YES if all processing has completed.
1066    */
1067   int all_done;
1068 };
1069
1070
1071 /**
1072  * Phases of unindex processing (state machine).
1073  */ 
1074 enum UnindexState
1075   {
1076     /**
1077      * We're currently hashing the file.
1078      */
1079     UNINDEX_STATE_HASHING = 0,
1080
1081     /**
1082      * We're notifying the FS service about
1083      * the unindexing.
1084      */
1085     UNINDEX_STATE_FS_NOTIFY = 1,
1086
1087     /**
1088      * We're telling the datastore to delete
1089      * the respective entries.
1090      */
1091     UNINDEX_STATE_DS_REMOVE = 2,
1092
1093     /**
1094      * We're done.
1095      */
1096     UNINDEX_STATE_COMPLETE = 3,
1097
1098     /**
1099      * We've encountered a fatal error.
1100      */
1101     UNINDEX_STATE_ERROR = 4,
1102
1103     /**
1104      * We've been aborted.  The next callback should clean up the
1105      * struct.
1106      */
1107     UNINDEX_STATE_ABORTED = 5
1108   };
1109
1110
1111 /**
1112  * Handle for controlling an unindexing operation.
1113  */
1114 struct GNUNET_FS_UnindexContext
1115 {
1116   
1117   /**
1118    * Global FS context.
1119    */
1120   struct GNUNET_FS_Handle *h;
1121
1122   /**
1123    * Name of the file that we are unindexing.
1124    */
1125   char *filename;
1126
1127   /**
1128    * Short name under which we are serializing the state of this operation.
1129    */
1130   char *serialization;
1131
1132   /**
1133    * Connection to the FS service, only valid during the
1134    * UNINDEX_STATE_FS_NOTIFY phase.
1135    */
1136   struct GNUNET_CLIENT_Connection *client;
1137
1138   /**
1139    * Connection to the datastore service, only valid during the
1140    * UNINDEX_STATE_DS_NOTIFY phase.
1141    */
1142   struct GNUNET_DATASTORE_Handle *dsh;
1143
1144   /**
1145    * Pointer kept for the client.
1146    */
1147   void *client_info;
1148
1149   /**
1150    * Merkle-ish tree encoder context.
1151    */
1152   struct GNUNET_FS_TreeEncoder *tc;
1153
1154   /**
1155    * Handle used to read the file.
1156    */
1157   struct GNUNET_DISK_FileHandle *fh;
1158
1159   /**
1160    * Error message, NULL on success.
1161    */
1162   char *emsg;
1163
1164   /**
1165    * Overall size of the file.
1166    */ 
1167   uint64_t file_size;
1168
1169   /**
1170    * When did we start?
1171    */
1172   struct GNUNET_TIME_Absolute start_time;
1173
1174   /**
1175    * Hash of the file's contents (once computed).
1176    */
1177   GNUNET_HashCode file_id;
1178  
1179   /**
1180    * Current operatinonal phase.
1181    */
1182   enum UnindexState state; 
1183
1184 };
1185
1186
1187 /**
1188  * Information we keep for each keyword in
1189  * a keyword search.
1190  */
1191 struct SearchRequestEntry
1192 {
1193   /**
1194    * Hash of the original keyword, also known as the
1195    * key (for decrypting the KBlock).
1196    */
1197   GNUNET_HashCode key;
1198
1199   /**
1200    * Hash of the public key, also known as the query.
1201    */
1202   GNUNET_HashCode query;  
1203
1204   /**
1205    * Map that contains a "struct SearchResult" for each result that
1206    * was found under this keyword.  Note that the entries will point
1207    * to the same locations as those in the master result map (in
1208    * "struct GNUNET_FS_SearchContext"), so they should not be freed.
1209    * The key for each entry is the XOR of the key and query in the CHK
1210    * URI (as a unique identifier for the search result).
1211    */
1212   struct GNUNET_CONTAINER_MultiHashMap *results;
1213
1214   /**
1215    * Is this keyword a mandatory keyword
1216    * (started with '+')?
1217    */
1218   int mandatory;
1219
1220 };
1221
1222
1223 /**
1224  * Handle for controlling a search.
1225  */
1226 struct GNUNET_FS_SearchContext
1227 {
1228   /**
1229    * Handle to the global FS context.
1230    */
1231   struct GNUNET_FS_Handle *h;
1232
1233   /**
1234    * List of keywords that we're looking for.
1235    */
1236   struct GNUNET_FS_Uri *uri;
1237
1238   /**
1239    * For update-searches, link to the base-SKS search that triggered
1240    * the update search; otherwise NULL.
1241    */
1242   struct GNUNET_FS_SearchContext *parent;
1243
1244   /**
1245    * For update-searches, link to the first child search that
1246    * triggered the update search; otherwise NULL.
1247    */
1248   struct GNUNET_FS_SearchContext *child_head;
1249
1250   /**
1251    * For update-searches, link to the last child search that triggered
1252    * the update search; otherwise NULL.
1253    */
1254   struct GNUNET_FS_SearchContext *child_tail;
1255
1256   /**
1257    * For update-searches, link to the next child belonging to the same
1258    * parent.
1259    */
1260   struct GNUNET_FS_SearchContext *next;
1261
1262   /**
1263    * For update-searches, link to the previous child belonging to the
1264    * same parent.
1265    */
1266   struct GNUNET_FS_SearchContext *prev;
1267
1268   /**
1269    * Connection to the FS service.
1270    */
1271   struct GNUNET_CLIENT_Connection *client;
1272
1273   /**
1274    * Pointer we keep for the client.
1275    */
1276   void *client_info;
1277
1278   /**
1279    * Name of the file on disk we use for persistence.
1280    */
1281   char *serialization;
1282
1283   /**
1284    * Error message (non-NULL if this operation failed).
1285    */
1286   char *emsg;
1287
1288   /**
1289    * Map that contains a "struct SearchResult" for each result that
1290    * was found in the search.  The key for each entry is the XOR of
1291    * the key and query in the CHK URI (as a unique identifier for the
1292    * search result).
1293    */
1294   struct GNUNET_CONTAINER_MultiHashMap *master_result_map;
1295
1296   /**
1297    * Per-keyword information for a keyword search.  This array will
1298    * have exactly as many entries as there were keywords.
1299    */
1300   struct SearchRequestEntry *requests;
1301   
1302   /**
1303    * When did we start?
1304    */
1305   struct GNUNET_TIME_Absolute start_time;
1306
1307   /**
1308    * ID of a task that is using this struct and that must be cancelled
1309    * when the search is being stopped (if not
1310    * GNUNET_SCHEDULER_NO_TASK).  Used for the task that adds some
1311    * artificial delay when trying to reconnect to the FS service.
1312    */
1313   GNUNET_SCHEDULER_TaskIdentifier task;
1314   
1315   /**
1316    * Anonymity level for the search.
1317    */
1318   uint32_t anonymity;
1319
1320   /**
1321    * Number of mandatory keywords in this query.
1322    */
1323   uint32_t mandatory_count;
1324
1325   /**
1326    * Options for the search.
1327    */
1328   enum GNUNET_FS_SearchOptions options;  
1329 };
1330
1331
1332 /**
1333  * Information about an active download request.
1334  */ 
1335 struct DownloadRequest
1336 {
1337   /**
1338    * While pending, we keep all download requests in a linked list.
1339    */
1340   struct DownloadRequest *next;
1341
1342   /**
1343    * CHK for the request.
1344    */
1345   struct ContentHashKey chk;
1346
1347   /**
1348    * Offset of the corresponding block.
1349    */
1350   uint64_t offset;
1351
1352   /**
1353    * Depth of the corresponding block in the tree.
1354    */
1355   unsigned int depth;
1356
1357   /**
1358    * Set if this request is currently in the linked list of pending
1359    * requests.  Needed in case we get a response for a request that we
1360    * have not yet send (due to FS bug or two blocks with identical
1361    * content); in this case, we would need to remove the block from
1362    * the pending list (and need a fast way to check if the block is on
1363    * it).
1364    */
1365   int is_pending;
1366
1367 };
1368
1369
1370 /**
1371  * Context for controlling a download.
1372  */
1373 struct GNUNET_FS_DownloadContext
1374 {
1375   
1376   /**
1377    * Global FS context.
1378    */ 
1379   struct GNUNET_FS_Handle *h;
1380   
1381   /**
1382    * Connection to the FS service.
1383    */
1384   struct GNUNET_CLIENT_Connection *client;
1385
1386   /**
1387    * Parent download (used when downloading files
1388    * in directories).
1389    */
1390   struct GNUNET_FS_DownloadContext *parent;
1391
1392   /**
1393    * Head of list of child downloads.
1394    */
1395   struct GNUNET_FS_DownloadContext *child_head;
1396
1397   /**
1398    * Tail of list of child downloads.
1399    */
1400   struct GNUNET_FS_DownloadContext *child_tail;
1401
1402   /**
1403    * Previous download belonging to the same parent.
1404    */
1405   struct GNUNET_FS_DownloadContext *prev;
1406
1407   /**
1408    * Next download belonging to the same parent.
1409    */
1410   struct GNUNET_FS_DownloadContext *next;
1411
1412   /**
1413    * Context kept for the client.
1414    */
1415   void *client_info;
1416
1417   /**
1418    * URI that identifies the file that
1419    * we are downloading.
1420    */
1421   struct GNUNET_FS_Uri *uri;
1422
1423   /**
1424    * Known meta-data for the file (can be NULL).
1425    */
1426   struct GNUNET_CONTAINER_MetaData *meta;
1427
1428   /**
1429    * Error message, NULL if we're doing OK.
1430    */
1431   char *emsg;
1432
1433   /**
1434    * Where are we writing the data (name of the
1435    * file, can be NULL!).
1436    */
1437   char *filename;
1438
1439   /**
1440    * Where are we writing the data temporarily (name of the
1441    * file, can be NULL!); used if we do not have a permanent
1442    * name and we are a directory and we do a recursive download.
1443    */
1444   char *temp_filename;
1445
1446   /**
1447    * Map of active requests (those waiting
1448    * for a response).  The key is the hash
1449    * of the encryped block (aka query).
1450    */
1451   struct GNUNET_CONTAINER_MultiHashMap *active;
1452
1453   /**
1454    * Linked list of pending requests.
1455    */
1456   struct DownloadRequest *pending;
1457
1458   /**
1459    * The file handle, NULL if we don't create
1460    * a file.
1461    */
1462   struct GNUNET_DISK_FileHandle *handle;
1463
1464   /**
1465    * Non-NULL if we are currently having a request for
1466    * transmission pending with the client handle.
1467    */
1468   struct GNUNET_CLIENT_TransmitHandle *th;
1469
1470   /**
1471    * Our entry in the job queue.
1472    */
1473   struct GNUNET_FS_QueueEntry *job_queue;
1474
1475   /**
1476    * Identity of the peer having the content, or all-zeros
1477    * if we don't know of such a peer.
1478    */
1479   struct GNUNET_PeerIdentity target;
1480
1481   /**
1482    * ID of a task that is using this struct
1483    * and that must be cancelled when the download
1484    * is being stopped (if not GNUNET_SCHEDULER_NO_TASK).
1485    * Used for the task that adds some artificial
1486    * delay when trying to reconnect to the FS
1487    * service.
1488    */
1489   GNUNET_SCHEDULER_TaskIdentifier task;
1490
1491   /**
1492    * What was the size of the file on disk that we're downloading
1493    * before we started?  Used to detect if there is a point in
1494    * checking an existing block on disk for matching the desired
1495    * content.  0 if the file did not exist already.
1496    */
1497   uint64_t old_file_size;
1498
1499   /**
1500    * What is the first offset that we're interested
1501    * in?
1502    */
1503   uint64_t offset;
1504
1505   /**
1506    * How many bytes starting from offset are desired?
1507    * This is NOT the overall length of the file!
1508    */
1509   uint64_t length;
1510
1511   /**
1512    * How many bytes have we already received within
1513    * the specified range (DBlocks only).
1514    */
1515   uint64_t completed;
1516
1517   /**
1518    * Time download was started.
1519    */
1520   struct GNUNET_TIME_Absolute start_time;
1521
1522   /**
1523    * Desired level of anonymity.
1524    */
1525   uint32_t anonymity;
1526
1527   /**
1528    * The depth of the file-tree.
1529    */
1530   unsigned int treedepth;
1531
1532   /**
1533    * Options for the download.
1534    */
1535   enum GNUNET_FS_DownloadOptions options;
1536
1537   /**
1538    * Flag set upon transitive completion (includes child downloads).
1539    * This flag is only set to GNUNET_YES for directories where all
1540    * child-downloads have also completed (and signalled completion).
1541    */
1542   int has_finished;
1543
1544 };
1545
1546 struct GNUNET_FS_Namespace
1547 {
1548
1549   /**
1550    * Private key for the namespace.
1551    */
1552   struct GNUNET_CRYPTO_RsaPrivateKey *key;
1553
1554   /**
1555    * Name of the file with the private key.
1556    */
1557   char *filename;
1558
1559   /**
1560    * Name of the namespace.
1561    */ 
1562   char *name;
1563
1564   /**
1565    * Reference counter.
1566    */
1567   unsigned int rc;
1568 };
1569
1570
1571 /**
1572  * Message sent from a GNUnet (fs) publishing activity to the
1573  * gnunet-fs-service to initiate indexing of a file.  The service is
1574  * supposed to check if the specified file is available and has the
1575  * same cryptographic hash.  It should then respond with either a
1576  * confirmation or a denial.
1577  *
1578  * On OSes where this works, it is considered acceptable if the
1579  * service only checks that the path, device and inode match (it can
1580  * then be assumed that the hash will also match without actually
1581  * computing it; this is an optimization that should be safe given
1582  * that the client is not our adversary).
1583  */
1584 struct IndexStartMessage
1585 {
1586
1587   /**
1588    * Message type will be GNUNET_MESSAGE_TYPE_FS_INDEX_START.
1589    */
1590   struct GNUNET_MessageHeader header;
1591
1592   /**
1593    * ID of device containing the file, as seen by the client.  This
1594    * device ID is obtained using a call like "statvfs" (and converting
1595    * the "f_fsid" field to a 32-bit big-endian number).  Use 0 if the
1596    * OS does not support this, in which case the service must do a
1597    * full hash recomputation.
1598    */
1599   uint32_t device GNUNET_PACKED;
1600   
1601   /**
1602    * Inode of the file on the given device, as seen by the client
1603    * ("st_ino" field from "struct stat").  Use 0 if the OS does not
1604    * support this, in which case the service must do a full hash
1605    * recomputation.
1606    */
1607   uint64_t inode GNUNET_PACKED;
1608
1609   /**
1610    * Hash of the file that we would like to index.
1611    */
1612   GNUNET_HashCode file_id;
1613
1614   /* this is followed by a 0-terminated
1615      filename of a file with the hash
1616      "file_id" as seen by the client */
1617
1618 };
1619
1620
1621 /**
1622  * Message send by FS service in response to a request
1623  * asking for a list of all indexed files.
1624  */
1625 struct IndexInfoMessage
1626 {
1627   /**
1628    * Message type will be 
1629    * GNUNET_MESSAGE_TYPE_FS_INDEX_LIST_ENTRY.
1630    */
1631   struct GNUNET_MessageHeader header;
1632
1633   /**
1634    * Always zero.
1635    */
1636   uint32_t reserved GNUNET_PACKED;
1637
1638   /**
1639    * Hash of the indexed file.
1640    */
1641   GNUNET_HashCode file_id;
1642
1643   /* this is followed by a 0-terminated
1644      filename of a file with the hash
1645      "file_id" as seen by the client */
1646   
1647 };
1648
1649
1650 /**
1651  * Message sent from a GNUnet (fs) unindexing activity to the
1652  * gnunet-service-fs to indicate that a file will be unindexed.  The
1653  * service is supposed to remove the file from the list of indexed
1654  * files and response with a confirmation message (even if the file
1655  * was already not on the list).
1656  */
1657 struct UnindexMessage
1658 {
1659
1660   /**
1661    * Message type will be 
1662    * GNUNET_MESSAGE_TYPE_FS_UNINDEX.
1663    */
1664   struct GNUNET_MessageHeader header;
1665
1666   /**
1667    * Always zero.
1668    */
1669   uint32_t reserved GNUNET_PACKED;
1670
1671   /**
1672    * Hash of the file that we will unindex.
1673    */
1674   GNUNET_HashCode file_id;
1675
1676 };
1677
1678
1679 /**
1680  * Message sent from a GNUnet (fs) search activity to the
1681  * gnunet-service-fs to start a search.
1682  */
1683 struct SearchMessage
1684 {
1685
1686   /**
1687    * Message type will be 
1688    * GNUNET_MESSAGE_TYPE_FS_START_SEARCH.
1689    */
1690   struct GNUNET_MessageHeader header;
1691
1692   /**
1693    * Bitmask with options.  Zero for no options, one for loopback-only.  
1694    * Other bits are currently not defined.
1695    */
1696   int32_t options GNUNET_PACKED;
1697
1698   /**
1699    * Type of the content that we're looking for.
1700    */
1701   uint32_t type GNUNET_PACKED;
1702
1703   /**
1704    * Desired anonymity level, big-endian.
1705    */
1706   uint32_t anonymity_level GNUNET_PACKED;
1707
1708   /**
1709    * If the request is for a DBLOCK or IBLOCK, this is the identity of
1710    * the peer that is known to have a response.  Set to all-zeros if
1711    * such a target is not known (note that even if OUR anonymity
1712    * level is >0 we may happen to know the responder's identity;
1713    * nevertheless, we should probably not use it for a DHT-lookup
1714    * or similar blunt actions in order to avoid exposing ourselves).
1715    * <p>
1716    * If the request is for an SBLOCK, this is the identity of the
1717    * pseudonym to which the SBLOCK belongs. 
1718    * <p>
1719    * If the request is for a KBLOCK, "target" must be all zeros.
1720    */
1721   GNUNET_HashCode target;
1722
1723   /**
1724    * Hash of the keyword (aka query) for KBLOCKs; Hash of
1725    * the CHK-encoded block for DBLOCKS and IBLOCKS (aka query)
1726    * and hash of the identifier XORed with the target for
1727    * SBLOCKS (aka query).
1728    */
1729   GNUNET_HashCode query;
1730
1731   /* this is followed by the hash codes of already-known
1732      results (which should hence be excluded from what
1733      the service returns); naturally, this only applies
1734      to queries that can have multiple results, such as
1735      those for KBLOCKS (KSK) and SBLOCKS (SKS) */
1736 };
1737
1738
1739 /**
1740  * Only the (mandatory) query is included.
1741  */
1742 #define GET_MESSAGE_BIT_QUERY_ONLY 0
1743
1744 /**
1745  * The peer identity of a peer waiting for the
1746  * reply is included (used if the response
1747  * should be transmitted to someone other than
1748  * the sender of the GET).
1749  */
1750 #define GET_MESSAGE_BIT_RETURN_TO 1
1751
1752 /**
1753  * The hash of the public key of the target
1754  * namespace is included (for SKS queries).
1755  */
1756 #define GET_MESSAGE_BIT_SKS_NAMESPACE 2
1757
1758 /**
1759  * The peer identity of a peer that had claimed to have the content
1760  * previously is included (can be used if responder-anonymity is not
1761  * desired; note that the precursor presumably lacked a direct
1762  * connection to the specified peer; still, the receiver is in no way
1763  * required to limit forwarding only to the specified peer, it should
1764  * only prefer it somewhat if possible).
1765  */
1766 #define GET_MESSAGE_BIT_TRANSMIT_TO 4
1767
1768
1769 /**
1770  * Message sent between peers asking for FS-content.
1771  */
1772 struct GetMessage
1773 {
1774
1775   /**
1776    * Message type will be GNUNET_MESSAGE_TYPE_FS_GET.
1777    */
1778   struct GNUNET_MessageHeader header;
1779
1780   /**
1781    * Type of the query (block type).
1782    */
1783   uint32_t type GNUNET_PACKED;
1784
1785   /**
1786    * How important is this request (network byte order)
1787    */
1788   uint32_t priority GNUNET_PACKED;
1789
1790   /**
1791    * Relative time to live in MILLISECONDS (network byte order)
1792    */
1793   int32_t ttl GNUNET_PACKED;
1794
1795   /**
1796    * The content hash should be mutated using this value
1797    * before checking against the bloomfilter (used to
1798    * get many different filters for the same hash codes).
1799    * The number should be in big-endian format when used
1800    * for mingling.
1801    */
1802   int32_t filter_mutator GNUNET_PACKED;
1803
1804   /**
1805    * Which of the optional hash codes are present at the end of the
1806    * message?  See GET_MESSAGE_BIT_xx constants.  For each bit that is
1807    * set, an additional GNUNET_HashCode with the respective content
1808    * (in order of the bits) will be appended to the end of the GET
1809    * message.
1810    */
1811   uint32_t hash_bitmap GNUNET_PACKED;
1812
1813   /**
1814    * Hashcodes of the file(s) we're looking for.
1815    * Details depend on the query type.
1816    */
1817   GNUNET_HashCode query GNUNET_PACKED;
1818
1819   /* this is followed by hash codes
1820      as specified in the  "hash_bitmap";
1821      after that, an optional bloomfilter
1822      (with bits set for replies that should
1823      be suppressed) can be present */
1824 };
1825
1826
1827 /**
1828  * Response from FS service with a result for a previous FS search.
1829  * Note that queries for DBLOCKS and IBLOCKS that have received a
1830  * single response are considered done.  This message is transmitted
1831  * between peers as well as between the service and a client.
1832  */
1833 struct PutMessage
1834 {
1835
1836   /**
1837    * Message type will be GNUNET_MESSAGE_TYPE_FS_PUT.
1838    */
1839   struct GNUNET_MessageHeader header;
1840
1841   /**
1842    * Type of the block (in big endian).  Should never be zero.
1843    */
1844   uint32_t type GNUNET_PACKED;
1845
1846   /**
1847    * When does this result expire? 
1848    */
1849   struct GNUNET_TIME_AbsoluteNBO expiration;
1850
1851   /* this is followed by the actual encrypted content */
1852
1853 };
1854
1855
1856 #endif
1857
1858 /* end of fs.h */