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