comments
[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 8
66
67 /**
68  * Blocks are at most migrated to this number of peers
69  * plus one, each time they are fetched from the database.
70  */
71 #define MIGRATION_LIST_SIZE 2
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    * Block options for the file.
442    */
443   struct GNUNET_FS_BlockOptions bo;
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    * Is this struct for a file or directory?
552    */
553   int is_directory;
554
555   /**
556    * Are we done publishing this file?
557    */
558   int is_published;
559
560 };
561
562
563 /**
564  * The job is now ready to run and should use the given client
565  * handle to communicate with the FS service.
566  *
567  * @param cls closure
568  * @param client handle to use for FS communication
569  */
570 typedef void (*GNUNET_FS_QueueStart)(void *cls,
571                                      struct GNUNET_CLIENT_Connection *client);
572
573
574 /**
575  * The job must now stop to run and should destry the client handle as
576  * soon as possible (ideally prior to returning).
577  */
578 typedef void (*GNUNET_FS_QueueStop)(void *cls);
579
580
581 /**
582  * Entry in the job queue.
583  */
584 struct GNUNET_FS_QueueEntry
585 {
586   /**
587    * This is a linked list.
588    */
589   struct GNUNET_FS_QueueEntry *next;
590
591   /**
592    * This is a linked list.
593    */
594   struct GNUNET_FS_QueueEntry *prev;
595
596   /**
597    * Function to call when the job is started.
598    */
599   GNUNET_FS_QueueStart start;
600
601   /**
602    * Function to call when the job needs to stop (or is done / dequeued).
603    */
604   GNUNET_FS_QueueStop stop;
605
606   /**
607    * Closure for start and stop.
608    */
609   void *cls;
610
611   /**
612    * Handle to FS primary context.
613    */ 
614   struct GNUNET_FS_Handle *h;
615
616   /**
617    * Client handle, or NULL if job is not running.
618    */
619   struct GNUNET_CLIENT_Connection *client;
620
621   /**
622    * Time the job was originally queued.
623    */
624   struct GNUNET_TIME_Absolute queue_time;
625
626   /**
627    * Time the job was started last.
628    */
629   struct GNUNET_TIME_Absolute start_time;
630
631   /**
632    * Total amount of time the job has been running (except for the
633    * current run).
634    */
635   struct GNUNET_TIME_Relative run_time;
636
637   /**
638    * How many blocks do the active downloads have?
639    */
640   unsigned int blocks;
641
642   /**
643    * How often have we (re)started this download?
644    */
645   unsigned int start_times;
646
647 };
648
649
650
651
652 /**
653  * Information we store for each search result.
654  */
655 struct GNUNET_FS_SearchResult
656 {
657
658   /**
659    * Search context this result belongs to.
660    */
661   struct GNUNET_FS_SearchContext *sc;
662
663   /**
664    * URI to which this search result refers to.
665    */
666   struct GNUNET_FS_Uri *uri;
667
668   /**
669    * Metadata for the search result.
670    */
671   struct GNUNET_CONTAINER_MetaData *meta;
672
673   /**
674    * Client info for this search result.
675    */
676   void *client_info;
677
678   /**
679    * ID of a job that is currently probing this results' availability
680    * (NULL if we are not currently probing).
681    */
682   struct GNUNET_FS_DownloadContext *probe_ctx;
683
684   /**
685    * ID of an associated download based on this search result (or
686    * NULL for none).
687    */
688   struct GNUNET_FS_DownloadContext *download;
689
690   /**
691    * If this search result triggered an update search, this field
692    * links to the update search.
693    */
694   struct GNUNET_FS_SearchContext *update_search;
695
696   /**
697    * Name under which this search result is stored on disk.
698    */
699   char *serialization;
700
701   /**
702    * Key for the search result
703    */
704   GNUNET_HashCode key;
705
706   /**
707    * ID of the task that will clean up the probe_ctx should it not
708    * complete on time (and that will need to be cancelled if we clean
709    * up the search result before then).
710    */
711   GNUNET_SCHEDULER_TaskIdentifier probe_cancel_task;
712
713   /**
714    * When did the current probe become active?
715    */
716   struct GNUNET_TIME_Absolute probe_active_time;
717
718   /**
719    * How much longer should we run the current probe before giving up?
720    */
721   struct GNUNET_TIME_Relative remaining_probe_time;
722
723   /**
724    * Number of mandatory keywords for which we have NOT yet found the
725    * search result; when this value hits zero, the search result is
726    * given to the callback.
727    */
728   uint32_t mandatory_missing;
729
730   /**
731    * Number of optional keywords under which this result was also
732    * found.
733    */
734   uint32_t optional_support;
735
736   /**
737    * Number of availability tests that have succeeded for this result.
738    */
739   uint32_t availability_success;
740
741   /**
742    * Number of availability trials that we have performed for this
743    * search result.
744    */
745   uint32_t availability_trials;
746
747 };
748
749
750 /**
751  * Add a job to the queue.
752  *
753  * @param h handle to the overall FS state
754  * @param start function to call to begin the job
755  * @param stop function to call to pause the job, or on dequeue (if the job was running)
756  * @param cls closure for start and stop
757  * @param blocks number of blocks this download has
758  * @return queue handle
759  */
760 struct GNUNET_FS_QueueEntry *
761 GNUNET_FS_queue_ (struct GNUNET_FS_Handle *h,
762                   GNUNET_FS_QueueStart start,
763                   GNUNET_FS_QueueStop stop,
764                   void *cls,
765                   unsigned int blocks);
766
767
768 /**
769  * Dequeue a job from the queue.
770  * @param qh handle for the job
771  */
772 void
773 GNUNET_FS_dequeue_ (struct GNUNET_FS_QueueEntry *qh);
774
775
776 /**
777  * Function that provides data by reading from a file.
778  *
779  * @param cls closure (points to the file information)
780  * @param offset offset to read from; it is possible
781  *            that the caller might need to go backwards
782  *            a bit at times
783  * @param max maximum number of bytes that should be 
784  *            copied to buf; readers are not allowed
785  *            to provide less data unless there is an error;
786  *            a value of "0" will be used at the end to allow
787  *            the reader to clean up its internal state
788  * @param buf where the reader should write the data
789  * @param emsg location for the reader to store an error message
790  * @return number of bytes written, usually "max", 0 on error
791  */
792 size_t
793 GNUNET_FS_data_reader_file_(void *cls, 
794                             uint64_t offset,
795                             size_t max, 
796                             void *buf,
797                             char **emsg);
798
799
800 /**
801  * Create the closure for the 'GNUNET_FS_data_reader_file_' callback.
802  *
803  * @param filename file to read
804  * @return closure to use
805  */
806 void *
807 GNUNET_FS_make_file_reader_context_ (const char *filename);
808
809
810
811 /**
812  * Function that provides data by copying from a buffer.
813  *
814  * @param cls closure (points to the buffer)
815  * @param offset offset to read from; it is possible
816  *            that the caller might need to go backwards
817  *            a bit at times
818  * @param max maximum number of bytes that should be 
819  *            copied to buf; readers are not allowed
820  *            to provide less data unless there is an error;
821  *            a value of "0" will be used at the end to allow
822  *            the reader to clean up its internal state
823  * @param buf where the reader should write the data
824  * @param emsg location for the reader to store an error message
825  * @return number of bytes written, usually "max", 0 on error
826  */
827 size_t
828 GNUNET_FS_data_reader_copy_(void *cls, 
829                             uint64_t offset,
830                             size_t max, 
831                             void *buf,
832                             char **emsg);
833
834 /**
835  * Notification of FS that a search probe has made progress.
836  * This function is used INSTEAD of the client's event handler
837  * for downloads where the GNUNET_FS_DOWNLOAD_IS_PROBE flag is set.
838  *
839  * @param cls closure, always NULL (!), actual closure
840  *        is in the client-context of the info struct
841  * @param info details about the event, specifying the event type
842  *        and various bits about the event
843  * @return client-context (for the next progress call
844  *         for this operation; should be set to NULL for
845  *         SUSPEND and STOPPED events).  The value returned
846  *         will be passed to future callbacks in the respective
847  *         field in the GNUNET_FS_ProgressInfo struct.
848  */
849 void*
850 GNUNET_FS_search_probe_progress_ (void *cls,
851                                   const struct GNUNET_FS_ProgressInfo *info);
852
853
854 /**
855  * Main function that performs the upload.
856  *
857  * @param cls "struct GNUNET_FS_PublishContext" identifies the upload
858  * @param tc task context
859  */
860 void
861 GNUNET_FS_publish_main_ (void *cls,
862                          const struct GNUNET_SCHEDULER_TaskContext *tc);
863
864
865 /**
866  * Function called once the hash of the file
867  * that is being unindexed has been computed.
868  *
869  * @param cls closure, unindex context
870  * @param file_id computed hash, NULL on error
871  */
872 void 
873 GNUNET_FS_unindex_process_hash_ (void *cls,
874                                  const GNUNET_HashCode *file_id);
875
876
877 /**
878  * Fill in all of the generic fields for a publish event and call the
879  * callback.
880  *
881  * @param pi structure to fill in
882  * @param sc overall publishing context
883  * @param p file information for the file being published
884  * @param offset where in the file are we so far
885  * @return value returned from callback
886  */
887 void *
888 GNUNET_FS_publish_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
889                                 struct GNUNET_FS_PublishContext *sc,
890                                 const struct GNUNET_FS_FileInformation *p,
891                                 uint64_t offset);
892
893
894 /**
895  * Fill in all of the generic fields for a download event and call the
896  * callback.
897  *
898  * @param pi structure to fill in
899  * @param dc overall download context
900  */
901 void
902 GNUNET_FS_download_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
903                                  struct GNUNET_FS_DownloadContext *dc);
904
905
906 /**
907  * Task that creates the initial (top-level) download
908  * request for the file.
909  *
910  * @param cls the 'struct GNUNET_FS_DownloadContext'
911  * @param tc scheduler context
912  */
913 void
914 GNUNET_FS_download_start_task_ (void *cls,
915                                 const struct GNUNET_SCHEDULER_TaskContext *tc);
916
917
918
919 /**
920  * Fill in all of the generic fields for 
921  * an unindex event and call the callback.
922  *
923  * @param pi structure to fill in
924  * @param uc overall unindex context
925  * @param offset where we are in the file (for progress)
926  */
927 void
928 GNUNET_FS_unindex_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
929                                 struct GNUNET_FS_UnindexContext *uc,
930                                 uint64_t offset);
931
932 /**
933  * Fill in all of the generic fields for a search event and
934  * call the callback.
935  *
936  * @param pi structure to fill in
937  * @param sc overall search context
938  * @return value returned by the callback
939  */
940 void *
941 GNUNET_FS_search_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
942                                struct GNUNET_FS_SearchContext *sc);
943
944
945 /**
946  * Connect to the datastore and remove the blocks.
947  *
948  * @param uc context for the unindex operation.
949  */
950 void 
951 GNUNET_FS_unindex_do_remove_ (struct GNUNET_FS_UnindexContext *uc);
952
953 /**
954  * Build the request and actually initiate the search using the
955  * GNUnet FS service.
956  *
957  * @param sc search context
958  * @return GNUNET_OK on success, GNUNET_SYSERR on error
959  */
960 int
961 GNUNET_FS_search_start_searching_ (struct GNUNET_FS_SearchContext *sc);
962
963 /**
964  * Start the downloading process (by entering the queue).
965  *
966  * @param dc our download context
967  */
968 void
969 GNUNET_FS_download_start_downloading_ (struct GNUNET_FS_DownloadContext *dc);
970
971
972 /**
973  * Start download probes for the given search result.
974  *
975  * @param sr the search result
976  */
977 void
978 GNUNET_FS_search_start_probe_ (struct GNUNET_FS_SearchResult *sr);
979
980 /**
981  * Remove serialization/deserialization file from disk.
982  *
983  * @param h master context
984  * @param ext component of the path 
985  * @param ent entity identifier 
986  */
987 void
988 GNUNET_FS_remove_sync_file_ (struct GNUNET_FS_Handle *h,
989                              const char *ext,
990                              const char *ent);
991
992
993 /**
994  * Remove serialization/deserialization directory from disk.
995  *
996  * @param h master context
997  * @param ext component of the path 
998  * @param uni unique name of parent 
999  */
1000 void
1001 GNUNET_FS_remove_sync_dir_ (struct GNUNET_FS_Handle *h,
1002                             const char *ext,
1003                             const char *uni);
1004
1005
1006 /**
1007  * Synchronize this file-information struct with its mirror
1008  * on disk.  Note that all internal FS-operations that change
1009  * file information data should already call "sync" internally,
1010  * so this function is likely not useful for clients.
1011  * 
1012  * @param fi the struct to sync
1013  */
1014 void
1015 GNUNET_FS_file_information_sync_ (struct GNUNET_FS_FileInformation *f);
1016
1017 /**
1018  * Synchronize this publishing struct with its mirror
1019  * on disk.  Note that all internal FS-operations that change
1020  * publishing structs should already call "sync" internally,
1021  * so this function is likely not useful for clients.
1022  * 
1023  * @param pc the struct to sync
1024  */
1025 void
1026 GNUNET_FS_publish_sync_ (struct GNUNET_FS_PublishContext *pc);
1027
1028 /**
1029  * Synchronize this unindex struct with its mirror
1030  * on disk.  Note that all internal FS-operations that change
1031  * publishing structs should already call "sync" internally,
1032  * so this function is likely not useful for clients.
1033  * 
1034  * @param uc the struct to sync
1035  */
1036 void
1037 GNUNET_FS_unindex_sync_ (struct GNUNET_FS_UnindexContext *uc);
1038
1039 /**
1040  * Synchronize this search struct with its mirror
1041  * on disk.  Note that all internal FS-operations that change
1042  * publishing structs should already call "sync" internally,
1043  * so this function is likely not useful for clients.
1044  * 
1045  * @param sc the struct to sync
1046  */
1047 void
1048 GNUNET_FS_search_sync_ (struct GNUNET_FS_SearchContext *sc);
1049
1050 /**
1051  * Synchronize this search result with its mirror
1052  * on disk.  Note that all internal FS-operations that change
1053  * publishing structs should already call "sync" internally,
1054  * so this function is likely not useful for clients.
1055  * 
1056  * @param sr the struct to sync
1057  */
1058 void
1059 GNUNET_FS_search_result_sync_ (struct GNUNET_FS_SearchResult *sr);
1060
1061 /**
1062  * Synchronize this download struct with its mirror
1063  * on disk.  Note that all internal FS-operations that change
1064  * publishing structs should already call "sync" internally,
1065  * so this function is likely not useful for clients.
1066  * 
1067  * @param dc the struct to sync
1068  */
1069 void
1070 GNUNET_FS_download_sync_ (struct GNUNET_FS_DownloadContext *dc);
1071
1072 /**
1073  * Create SUSPEND event for the given publish operation
1074  * and then clean up our state (without stop signal).
1075  *
1076  * @param cls the 'struct GNUNET_FS_PublishContext' to signal for
1077  */
1078 void
1079 GNUNET_FS_publish_signal_suspend_ (void *cls);
1080
1081 /**
1082  * Create SUSPEND event for the given search operation
1083  * and then clean up our state (without stop signal).
1084  *
1085  * @param cls the 'struct GNUNET_FS_SearchContext' to signal for
1086  */
1087 void
1088 GNUNET_FS_search_signal_suspend_ (void *cls);
1089
1090 /**
1091  * Create SUSPEND event for the given download operation
1092  * and then clean up our state (without stop signal).
1093  *
1094  * @param cls the 'struct GNUNET_FS_DownloadContext' to signal for
1095  */
1096 void
1097 GNUNET_FS_download_signal_suspend_ (void *cls);
1098
1099 /**
1100  * Create SUSPEND event for the given unindex operation
1101  * and then clean up our state (without stop signal).
1102  *
1103  * @param cls the 'struct GNUNET_FS_UnindexContext' to signal for
1104  */
1105 void
1106 GNUNET_FS_unindex_signal_suspend_ (void *cls);
1107
1108 /**
1109  * Function signature of the functions that can be called
1110  * to trigger suspend signals and clean-up for top-level
1111  * activities.
1112  *
1113  * @param cls closure
1114  */
1115 typedef void (*SuspendSignalFunction)(void *cls);                                     
1116
1117 /**
1118  * We track all of the top-level activities of FS
1119  * so that we can signal 'suspend' on shutdown.
1120  */
1121 struct TopLevelActivity
1122 {
1123   /**
1124    * This is a doubly-linked list.
1125    */ 
1126   struct TopLevelActivity *next;
1127
1128   /**
1129    * This is a doubly-linked list.
1130    */  
1131   struct TopLevelActivity *prev;
1132
1133   /**
1134    * Function to call for suspend-signalling and clean up.
1135    */
1136   SuspendSignalFunction ssf;
1137
1138   /**
1139    * Closure for 'ssf' (some struct GNUNET_FS_XXXHandle*)
1140    */
1141   void *ssf_cls;
1142 };
1143
1144
1145 /**
1146  * Create a top-level activity entry.
1147  *
1148  * @param h global fs handle
1149  * @param ssf suspend signal function to use
1150  * @param ssf_cls closure for ssf
1151  * @return fresh top-level activity handle
1152  */
1153 struct TopLevelActivity *
1154 GNUNET_FS_make_top (struct GNUNET_FS_Handle *h,
1155                     SuspendSignalFunction ssf,
1156                     void *ssf_cls);
1157
1158
1159 /**
1160  * Destroy a top-level activity entry.
1161  * 
1162  * @param h global fs handle
1163  * @param top top level activity entry
1164  */
1165 void
1166 GNUNET_FS_end_top (struct GNUNET_FS_Handle *h,
1167                    struct TopLevelActivity *top);
1168
1169
1170
1171 /**
1172  * Master context for most FS operations.
1173  */
1174 struct GNUNET_FS_Handle
1175 {
1176   /**
1177    * Configuration to use.
1178    */
1179   const struct GNUNET_CONFIGURATION_Handle *cfg;
1180
1181   /**
1182    * Name of our client.
1183    */
1184   char *client_name;
1185
1186   /**
1187    * Function to call with updates on our progress.
1188    */
1189   GNUNET_FS_ProgressCallback upcb;
1190
1191   /**
1192    * Closure for upcb.
1193    */
1194   void *upcb_cls;
1195
1196   /**
1197    * Head of DLL of top-level activities.
1198    */
1199   struct TopLevelActivity *top_head;
1200
1201   /**
1202    * Tail of DLL of top-level activities.
1203    */
1204   struct TopLevelActivity *top_tail;
1205
1206   /**
1207    * Head of DLL of running jobs.
1208    */
1209   struct GNUNET_FS_QueueEntry *running_head;
1210
1211   /**
1212    * Tail of DLL of running jobs.
1213    */
1214   struct GNUNET_FS_QueueEntry *running_tail;
1215
1216   /**
1217    * Head of DLL of pending jobs.
1218    */
1219   struct GNUNET_FS_QueueEntry *pending_head;
1220
1221   /**
1222    * Tail of DLL of pending jobs.
1223    */
1224   struct GNUNET_FS_QueueEntry *pending_tail;
1225
1226   /**
1227    * Task that processes the jobs in the running and pending queues
1228    * (and moves jobs around as needed).
1229    */
1230   GNUNET_SCHEDULER_TaskIdentifier queue_job;
1231
1232   /**
1233    * Average time we take for a single request to be satisfied.
1234    * FIXME: not yet calcualted properly...
1235    */
1236   struct GNUNET_TIME_Relative avg_block_latency;
1237
1238   /**
1239    * How many actual downloads do we have running right now?
1240    */
1241   unsigned int active_downloads;
1242
1243   /**
1244    * How many blocks do the active downloads have?
1245    */
1246   unsigned int active_blocks;
1247
1248   /**
1249    * General flags.
1250    */
1251   enum GNUNET_FS_Flags flags;
1252
1253   /**
1254    * Maximum number of parallel downloads.
1255    */
1256   unsigned int max_parallel_downloads;
1257
1258   /**
1259    * Maximum number of parallel requests.
1260    */
1261   unsigned int max_parallel_requests;
1262
1263 };
1264
1265
1266 /**
1267  * Handle for controlling a publication process.
1268  */
1269 struct GNUNET_FS_PublishContext
1270 {
1271   /**
1272    * Handle to the global fs context.
1273    */ 
1274   struct GNUNET_FS_Handle *h;
1275
1276   /**
1277    * Our top-level activity entry (if we are top-level, otherwise NULL).
1278    */
1279   struct TopLevelActivity *top;
1280
1281   /**
1282    * File-structure that is being shared.
1283    */
1284   struct GNUNET_FS_FileInformation *fi;
1285
1286   /**
1287    * Namespace that we are publishing in, NULL if we have no namespace.
1288    */
1289   struct GNUNET_FS_Namespace *namespace;
1290
1291   /**
1292    * ID of the content in the namespace, NULL if we have no namespace.
1293    */
1294   char *nid;
1295
1296   /**
1297    * ID for future updates, NULL if we have no namespace or no updates.
1298    */
1299   char *nuid;
1300
1301   /**
1302    * Filename used for serializing information about this operation
1303    * (should be determined using 'mktemp').
1304    */
1305   char *serialization;
1306
1307   /**
1308    * Our own client handle for the FS service; only briefly used when
1309    * we start to index a file, otherwise NULL.
1310    */
1311   struct GNUNET_CLIENT_Connection *client;
1312
1313   /**
1314    * Current position in the file-tree for the upload.
1315    */
1316   struct GNUNET_FS_FileInformation *fi_pos;
1317
1318   /**
1319    * Non-null if we are currently hashing a file.
1320    */
1321   struct GNUNET_CRYPTO_FileHashContext *fhc;
1322
1323   /**
1324    * Connection to the datastore service.
1325    */
1326   struct GNUNET_DATASTORE_Handle *dsh;
1327
1328   /**
1329    * Queue entry for reservation/unreservation.
1330    */
1331   struct GNUNET_DATASTORE_QueueEntry *qre;
1332
1333   /**
1334    * ID of the task performing the upload. NO_TASK if the upload has
1335    * completed.
1336    */
1337   GNUNET_SCHEDULER_TaskIdentifier upload_task;
1338
1339   /**
1340    * Storage space to reserve for the operation.
1341    */
1342   uint64_t reserve_space;
1343
1344   /**
1345    * Overall number of entries to reserve for the
1346    * publish operation.
1347    */
1348   uint32_t reserve_entries;
1349
1350   /**
1351    * Typically GNUNET_NO.  Set to GNUNET_YES if "upload_task" is
1352    * GNUNET_SCHEDULER_NO_TASK and we're waiting for a response from
1353    * the datastore service (in which case this struct must not be
1354    * freed until we have that response).  If someone tries to stop the
1355    * download for good during this period, "in_network_wait" is set to
1356    * GNUNET_SYSERR which will cause the struct to be destroyed right
1357    * after we have the reply (or timeout) from the datastore service.
1358    */
1359   int in_network_wait;
1360
1361   /**
1362    * Options for publishing.
1363    */
1364   enum GNUNET_FS_PublishOptions options;
1365
1366   /**
1367    * Space reservation ID with datastore service
1368    * for this upload.
1369    */
1370   int rid;
1371
1372   /**
1373    * Set to GNUNET_YES if all processing has completed.
1374    */
1375   int all_done;
1376 };
1377
1378
1379 /**
1380  * Phases of unindex processing (state machine).
1381  */ 
1382 enum UnindexState
1383   {
1384     /**
1385      * We're currently hashing the file.
1386      */
1387     UNINDEX_STATE_HASHING = 0,
1388
1389     /**
1390      * We're telling the datastore to delete
1391      * the respective entries.
1392      */
1393     UNINDEX_STATE_DS_REMOVE = 1,
1394
1395     /**
1396      * We're notifying the FS service about
1397      * the unindexing.
1398      */
1399     UNINDEX_STATE_FS_NOTIFY = 2,
1400
1401     /**
1402      * We're done.
1403      */
1404     UNINDEX_STATE_COMPLETE = 3,
1405
1406     /**
1407      * We've encountered a fatal error.
1408      */
1409     UNINDEX_STATE_ERROR = 4
1410
1411   };
1412
1413
1414 /**
1415  * Handle for controlling an unindexing operation.
1416  */
1417 struct GNUNET_FS_UnindexContext
1418 {
1419   
1420   /**
1421    * Global FS context.
1422    */
1423   struct GNUNET_FS_Handle *h;
1424
1425   /**
1426    * Our top-level activity entry.
1427    */
1428   struct TopLevelActivity *top;
1429
1430   /**
1431    * Name of the file that we are unindexing.
1432    */
1433   char *filename;
1434
1435   /**
1436    * Short name under which we are serializing the state of this operation.
1437    */
1438   char *serialization;
1439
1440   /**
1441    * Connection to the FS service, only valid during the
1442    * UNINDEX_STATE_FS_NOTIFY phase.
1443    */
1444   struct GNUNET_CLIENT_Connection *client;
1445
1446   /**
1447    * Connection to the datastore service, only valid during the
1448    * UNINDEX_STATE_DS_NOTIFY phase.
1449    */
1450   struct GNUNET_DATASTORE_Handle *dsh;
1451
1452   /**
1453    * Pointer kept for the client.
1454    */
1455   void *client_info;
1456
1457   /**
1458    * Merkle-ish tree encoder context.
1459    */
1460   struct GNUNET_FS_TreeEncoder *tc;
1461
1462   /**
1463    * Handle used to read the file.
1464    */
1465   struct GNUNET_DISK_FileHandle *fh;
1466
1467   /**
1468    * Error message, NULL on success.
1469    */
1470   char *emsg;
1471
1472   /**
1473    * Context for hashing of the file.
1474    */
1475   struct GNUNET_CRYPTO_FileHashContext *fhc;
1476
1477   /**
1478    * Overall size of the file.
1479    */ 
1480   uint64_t file_size;
1481
1482   /**
1483    * When did we start?
1484    */
1485   struct GNUNET_TIME_Absolute start_time;
1486
1487   /**
1488    * Hash of the file's contents (once computed).
1489    */
1490   GNUNET_HashCode file_id;
1491  
1492   /**
1493    * Current operatinonal phase.
1494    */
1495   enum UnindexState state; 
1496
1497 };
1498
1499
1500 /**
1501  * Information we keep for each keyword in
1502  * a keyword search.
1503  */
1504 struct SearchRequestEntry
1505 {
1506   /**
1507    * Hash of the original keyword, also known as the
1508    * key (for decrypting the KBlock).
1509    */
1510   GNUNET_HashCode key;
1511
1512   /**
1513    * Hash of the public key, also known as the query.
1514    */
1515   GNUNET_HashCode query;  
1516
1517   /**
1518    * Map that contains a "struct GNUNET_FS_SearchResult" for each result that
1519    * was found under this keyword.  Note that the entries will point
1520    * to the same locations as those in the master result map (in
1521    * "struct GNUNET_FS_SearchContext"), so they should not be freed.
1522    * The key for each entry is the XOR of the key and query in the CHK
1523    * URI (as a unique identifier for the search result).
1524    */
1525   struct GNUNET_CONTAINER_MultiHashMap *results;
1526
1527   /**
1528    * Is this keyword a mandatory keyword
1529    * (started with '+')?
1530    */
1531   int mandatory;
1532
1533 };
1534
1535
1536 /**
1537  * Handle for controlling a search.
1538  */
1539 struct GNUNET_FS_SearchContext
1540 {
1541   /**
1542    * Handle to the global FS context.
1543    */
1544   struct GNUNET_FS_Handle *h;
1545
1546   /**
1547    * Our top-level activity entry (if we are top-level, otherwise NULL).
1548    */
1549   struct TopLevelActivity *top;
1550
1551   /**
1552    * List of keywords that we're looking for.
1553    */
1554   struct GNUNET_FS_Uri *uri;
1555
1556   /**
1557    * For update-searches, link to the search result that triggered
1558    * the update search; otherwise NULL.
1559    */
1560   struct GNUNET_FS_SearchResult *psearch_result;
1561
1562   /**
1563    * Connection to the FS service.
1564    */
1565   struct GNUNET_CLIENT_Connection *client;
1566
1567   /**
1568    * Pointer we keep for the client.
1569    */
1570   void *client_info;
1571
1572   /**
1573    * Name of the file on disk we use for persistence.
1574    */
1575   char *serialization;
1576
1577   /**
1578    * Error message (non-NULL if this operation failed).
1579    */
1580   char *emsg;
1581
1582   /**
1583    * Map that contains a "struct GNUNET_FS_SearchResult" for each result that
1584    * was found in the search.  The key for each entry is the XOR of
1585    * the key and query in the CHK URI (as a unique identifier for the
1586    * search result).
1587    */
1588   struct GNUNET_CONTAINER_MultiHashMap *master_result_map;
1589
1590   /**
1591    * Per-keyword information for a keyword search.  This array will
1592    * have exactly as many entries as there were keywords.
1593    */
1594   struct SearchRequestEntry *requests;
1595   
1596   /**
1597    * When did we start?
1598    */
1599   struct GNUNET_TIME_Absolute start_time;
1600
1601   /**
1602    * ID of a task that is using this struct and that must be cancelled
1603    * when the search is being stopped (if not
1604    * GNUNET_SCHEDULER_NO_TASK).  Used for the task that adds some
1605    * artificial delay when trying to reconnect to the FS service.
1606    */
1607   GNUNET_SCHEDULER_TaskIdentifier task;
1608
1609   /**
1610    * How many of the entries in the search request
1611    * map have been passed to the service so far?
1612    */
1613   unsigned int search_request_map_offset;
1614
1615   /**
1616    * How many of the keywords in the KSK
1617    * map have been passed to the service so far?
1618    */
1619   unsigned int keyword_offset;
1620   
1621   /**
1622    * Anonymity level for the search.
1623    */
1624   uint32_t anonymity;
1625
1626   /**
1627    * Number of mandatory keywords in this query.
1628    */
1629   uint32_t mandatory_count;
1630
1631   /**
1632    * Options for the search.
1633    */
1634   enum GNUNET_FS_SearchOptions options;  
1635 };
1636
1637
1638 /**
1639  * FSM for possible states a block can go through.  The typical
1640  * order of progression is linear through the states, alternatives
1641  * are documented in the comments.
1642  */
1643 enum BlockRequestState
1644   {
1645     /**
1646      * Initial state, block has only been allocated (since it is
1647      * relevant to the overall download request).
1648      */
1649     BRS_INIT = 0,
1650
1651     /**
1652      * We've checked the block on the path down the tree, and the
1653      * content on disk did match the desired CHK, but not all
1654      * the way down, so at the bottom some blocks will still
1655      * need to be reconstructed).
1656      */
1657     BRS_RECONSTRUCT_DOWN = 1,
1658
1659     /**
1660      * We've calculated the CHK bottom-up based on the meta data.
1661      * This may work, but if it did we have to write the meta data to
1662      * disk at the end (and we still need to check against the
1663      * CHK set on top).
1664      */
1665     BRS_RECONSTRUCT_META_UP = 2,
1666
1667     /**
1668      * We've calculated the CHK bottom-up based on what we have on
1669      * disk, which may not be what the desired CHK is.  If the
1670      * reconstructed CHKs match whatever comes from above, we're
1671      * done with the respective subtree.
1672      */
1673     BRS_RECONSTRUCT_UP = 3,
1674
1675     /**
1676      * We've determined the real, desired CHK for this block 
1677      * (full tree reconstruction failed), request is now pending.
1678      * If the CHK that bubbled up through reconstruction did match
1679      * the top-level request, the state machine for the subtree
1680      * would have moved to BRS_DOWNLOAD_UP.
1681      */
1682     BRS_CHK_SET = 4,
1683
1684     /**
1685      * We've successfully downloaded this block, but the children
1686      * still need to be either downloaded or verified (download
1687      * request propagates down).  If the download fails, the
1688      * state machine for this block may move to 
1689      * BRS_DOWNLOAD_ERROR instead.
1690      */
1691     BRS_DOWNLOAD_DOWN = 5,
1692
1693     /**
1694      * This block and all of its children have been downloaded
1695      * successfully (full completion propagates up).
1696      */
1697     BRS_DOWNLOAD_UP = 6,
1698
1699     /**
1700      * We got a block back that matched the query but did not hash to
1701      * the key (malicious publisher or hash collision); this block
1702      * can never be downloaded (error propagates up).
1703      */
1704     BRS_ERROR = 7
1705     
1706   };
1707
1708
1709 /**
1710  * Information about an active download request.
1711  */ 
1712 struct DownloadRequest
1713 {
1714   /**
1715    * While pending, we keep all download requests in a doubly-linked list.
1716    */
1717   struct DownloadRequest *next;
1718
1719   /**
1720    * While pending, we keep all download requests in a doubly-linked list.
1721    */
1722   struct DownloadRequest *prev;
1723
1724   /**
1725    * Parent in the CHK-tree.
1726    */
1727   struct DownloadRequest *parent;
1728
1729   /**
1730    * Array (!) of child-requests, or NULL for the bottom of the tree.
1731    */
1732   struct DownloadRequest **children;
1733
1734   /**
1735    * CHK for the request for this block (set during reconstruction
1736    * to what we have on disk, later to what we want to have).
1737    */
1738   struct ContentHashKey chk;  
1739
1740   /**
1741    * Offset of the corresponding block.  Specifically, first (!) byte of
1742    * the first DBLOCK in the subtree induced by block represented by
1743    * this request.
1744    */
1745   uint64_t offset;
1746
1747   /**
1748    * Number of entries in 'children' array.
1749    */
1750   unsigned int num_children;
1751
1752   /**
1753    * Depth of the corresponding block in the tree.  0==DBLOCKs.
1754    */
1755   unsigned int depth;
1756
1757   /**
1758    * State in the FSM.
1759    */
1760   enum BlockRequestState state;
1761
1762   /**
1763    * GNUNET_YES if this entry is in the pending list.
1764    */
1765   int is_pending;
1766
1767 };
1768
1769
1770 /**
1771  * (recursively) free download request structure
1772  *
1773  * @param dr request to free
1774  */
1775 void
1776 GNUNET_FS_free_download_request_ (struct DownloadRequest *dr);
1777
1778
1779 /**
1780  * Context for controlling a download.
1781  */
1782 struct GNUNET_FS_DownloadContext
1783 {
1784   
1785   /**
1786    * Global FS context.
1787    */ 
1788   struct GNUNET_FS_Handle *h;
1789
1790   /**
1791    * Our top-level activity entry (if we are top-level, otherwise NULL).
1792    */
1793   struct TopLevelActivity *top;
1794   
1795   /**
1796    * Connection to the FS service.
1797    */
1798   struct GNUNET_CLIENT_Connection *client;
1799
1800   /**
1801    * Parent download (used when downloading files
1802    * in directories).
1803    */
1804   struct GNUNET_FS_DownloadContext *parent;
1805
1806   /**
1807    * Associated search (used when downloading files
1808    * based on search results), or NULL for none.
1809    */
1810   struct GNUNET_FS_SearchResult *search;
1811
1812   /**
1813    * Head of list of child downloads.
1814    */
1815   struct GNUNET_FS_DownloadContext *child_head;
1816
1817   /**
1818    * Tail of list of child downloads.
1819    */
1820   struct GNUNET_FS_DownloadContext *child_tail;
1821
1822   /**
1823    * Previous download belonging to the same parent.
1824    */
1825   struct GNUNET_FS_DownloadContext *prev;
1826
1827   /**
1828    * Next download belonging to the same parent.
1829    */
1830   struct GNUNET_FS_DownloadContext *next;
1831
1832   /**
1833    * Context kept for the client.
1834    */
1835   void *client_info;
1836
1837   /**
1838    * URI that identifies the file that we are downloading.
1839    */
1840   struct GNUNET_FS_Uri *uri;
1841
1842   /**
1843    * Known meta-data for the file (can be NULL).
1844    */
1845   struct GNUNET_CONTAINER_MetaData *meta;
1846
1847   /**
1848    * Error message, NULL if we're doing OK.
1849    */
1850   char *emsg;
1851
1852   /**
1853    * Random portion of filename we use for syncing state of this
1854    * download.
1855    */
1856   char *serialization;
1857
1858   /**
1859    * Where are we writing the data (name of the
1860    * file, can be NULL!).
1861    */
1862   char *filename;
1863
1864   /**
1865    * Where are we writing the data temporarily (name of the
1866    * file, can be NULL!); used if we do not have a permanent
1867    * name and we are a directory and we do a recursive download.
1868    */
1869   char *temp_filename;
1870
1871   /**
1872    * Our entry in the job queue.
1873    */
1874   struct GNUNET_FS_QueueEntry *job_queue;
1875
1876   /**
1877    * Non-NULL if we are currently having a request for
1878    * transmission pending with the client handle.
1879    */
1880   struct GNUNET_CLIENT_TransmitHandle *th;
1881
1882   /**
1883    * Tree encoder used for the reconstruction.
1884    */
1885   struct GNUNET_FS_TreeEncoder *te;
1886
1887   /**
1888    * File handle for reading data from an existing file
1889    * (to pass to tree encoder).
1890    */
1891   struct GNUNET_DISK_FileHandle *rfh;
1892
1893   /**
1894    * Map of active requests (those waiting for a response).  The key
1895    * is the hash of the encryped block (aka query).
1896    */
1897   struct GNUNET_CONTAINER_MultiHashMap *active;
1898
1899   /**
1900    * Head of linked list of pending requests.
1901    */
1902   struct DownloadRequest *pending_head;
1903
1904   /**
1905    * Head of linked list of pending requests.
1906    */
1907   struct DownloadRequest *pending_tail;
1908
1909   /**
1910    * Top-level download request.
1911    */
1912   struct DownloadRequest *top_request;
1913
1914   /**
1915    * Identity of the peer having the content, or all-zeros
1916    * if we don't know of such a peer.
1917    */
1918   struct GNUNET_PeerIdentity target;
1919
1920   /**
1921    * ID of a task that is using this struct and that must be cancelled
1922    * when the download is being stopped (if not
1923    * GNUNET_SCHEDULER_NO_TASK).  Used for the task that adds some
1924    * artificial delay when trying to reconnect to the FS service or
1925    * the task processing incrementally the data on disk, or the
1926    * task requesting blocks, etc.
1927    */
1928   GNUNET_SCHEDULER_TaskIdentifier task;
1929
1930   /**
1931    * What is the first offset that we're interested
1932    * in?
1933    */
1934   uint64_t offset;
1935
1936   /**
1937    * How many bytes starting from offset are desired?
1938    * This is NOT the overall length of the file!
1939    */
1940   uint64_t length;
1941
1942   /**
1943    * How many bytes have we already received within
1944    * the specified range (DBlocks only).
1945    */
1946   uint64_t completed;
1947
1948   /**
1949    * What was the size of the file on disk that we're downloading
1950    * before we started?  Used to detect if there is a point in
1951    * checking an existing block on disk for matching the desired
1952    * content.  0 if the file did not exist already.
1953    */
1954   uint64_t old_file_size;
1955
1956   /**
1957    * Time download was started.
1958    */
1959   struct GNUNET_TIME_Absolute start_time;
1960
1961   /**
1962    * Desired level of anonymity.
1963    */
1964   uint32_t anonymity;
1965
1966   /**
1967    * The depth of the file-tree.
1968    */
1969   unsigned int treedepth;
1970
1971   /**
1972    * Options for the download.
1973    */
1974   enum GNUNET_FS_DownloadOptions options;
1975
1976   /**
1977    * Flag set upon transitive completion (includes child downloads).
1978    * This flag is only set to GNUNET_YES for directories where all
1979    * child-downloads have also completed (and signalled completion).
1980    */
1981   int has_finished;
1982
1983   /**
1984    * Have we started the receive continuation yet?
1985    */
1986   int in_receive;
1987
1988 };
1989
1990
1991 /**
1992  * Information about an (updateable) node in the
1993  * namespace.
1994  */
1995 struct NamespaceUpdateNode
1996 {
1997   /**
1998    * Identifier for this node.
1999    */
2000   char *id;
2001
2002   /**
2003    * Identifier of children of this node.
2004    */
2005   char *update;
2006
2007   /**
2008    * Metadata for this entry.
2009    */
2010   struct GNUNET_CONTAINER_MetaData *md;
2011
2012   /**
2013    * URI of this entry in the namespace.
2014    */
2015   struct GNUNET_FS_Uri *uri;
2016
2017   /**
2018    * Namespace update generation ID.  Used to ensure
2019    * freshness of the tree_id.
2020    */
2021   unsigned int nug;
2022   
2023   /**
2024    * TREE this entry belongs to (if nug is current).
2025    */
2026   unsigned int tree_id;
2027
2028 };
2029
2030
2031 struct GNUNET_FS_Namespace
2032 {
2033
2034   /**
2035    * Handle to the FS service context.
2036    */
2037   struct GNUNET_FS_Handle *h;
2038   
2039   /**
2040    * Array with information about nodes in the namespace.
2041    */
2042   struct NamespaceUpdateNode **update_nodes;
2043
2044   /**
2045    * Private key for the namespace.
2046    */
2047   struct GNUNET_CRYPTO_RsaPrivateKey *key;
2048
2049   /**
2050    * Hash map mapping identifiers of update nodes
2051    * to the update nodes (initialized on-demand).
2052    */
2053   struct GNUNET_CONTAINER_MultiHashMap *update_map;
2054
2055   /**
2056    * Name of the file with the private key.
2057    */
2058   char *filename;
2059
2060   /**
2061    * Name of the namespace.
2062    */ 
2063   char *name;
2064
2065   /**
2066    * Size of the update nodes array.
2067    */
2068   unsigned int update_node_count;
2069
2070   /**
2071    * Reference counter.
2072    */
2073   unsigned int rc;
2074
2075   /**
2076    * Generator for unique nug numbers.
2077    */
2078   unsigned int nug_gen;
2079 };
2080
2081
2082 /**
2083  * Message sent from a GNUnet (fs) publishing activity to the
2084  * gnunet-fs-service to initiate indexing of a file.  The service is
2085  * supposed to check if the specified file is available and has the
2086  * same cryptographic hash.  It should then respond with either a
2087  * confirmation or a denial.
2088  *
2089  * On OSes where this works, it is considered acceptable if the
2090  * service only checks that the path, device and inode match (it can
2091  * then be assumed that the hash will also match without actually
2092  * computing it; this is an optimization that should be safe given
2093  * that the client is not our adversary).
2094  */
2095 struct IndexStartMessage
2096 {
2097
2098   /**
2099    * Message type will be GNUNET_MESSAGE_TYPE_FS_INDEX_START.
2100    */
2101   struct GNUNET_MessageHeader header;
2102
2103   /**
2104    * For alignment.
2105    */
2106   uint32_t reserved GNUNET_PACKED;
2107
2108   /**
2109    * ID of device containing the file, as seen by the client.  This
2110    * device ID is obtained using a call like "statvfs" (and converting
2111    * the "f_fsid" field to a 32-bit big-endian number).  Use 0 if the
2112    * OS does not support this, in which case the service must do a
2113    * full hash recomputation.
2114    */
2115   uint64_t device GNUNET_PACKED;
2116   
2117   /**
2118    * Inode of the file on the given device, as seen by the client
2119    * ("st_ino" field from "struct stat").  Use 0 if the OS does not
2120    * support this, in which case the service must do a full hash
2121    * recomputation.
2122    */
2123   uint64_t inode GNUNET_PACKED;
2124
2125   /**
2126    * Hash of the file that we would like to index.
2127    */
2128   GNUNET_HashCode file_id;
2129
2130   /* this is followed by a 0-terminated
2131      filename of a file with the hash
2132      "file_id" as seen by the client */
2133
2134 };
2135
2136
2137 /**
2138  * Message send by FS service in response to a request
2139  * asking for a list of all indexed files.
2140  */
2141 struct IndexInfoMessage
2142 {
2143   /**
2144    * Message type will be 
2145    * GNUNET_MESSAGE_TYPE_FS_INDEX_LIST_ENTRY.
2146    */
2147   struct GNUNET_MessageHeader header;
2148
2149   /**
2150    * Always zero.
2151    */
2152   uint32_t reserved GNUNET_PACKED;
2153
2154   /**
2155    * Hash of the indexed file.
2156    */
2157   GNUNET_HashCode file_id;
2158
2159   /* this is followed by a 0-terminated
2160      filename of a file with the hash
2161      "file_id" as seen by the client */
2162   
2163 };
2164
2165
2166 /**
2167  * Message sent from a GNUnet (fs) unindexing activity to the
2168  * gnunet-service-fs to indicate that a file will be unindexed.  The
2169  * service is supposed to remove the file from the list of indexed
2170  * files and response with a confirmation message (even if the file
2171  * was already not on the list).
2172  */
2173 struct UnindexMessage
2174 {
2175
2176   /**
2177    * Message type will be 
2178    * GNUNET_MESSAGE_TYPE_FS_UNINDEX.
2179    */
2180   struct GNUNET_MessageHeader header;
2181
2182   /**
2183    * Always zero.
2184    */
2185   uint32_t reserved GNUNET_PACKED;
2186
2187   /**
2188    * Hash of the file that we will unindex.
2189    */
2190   GNUNET_HashCode file_id;
2191
2192 };
2193
2194
2195 /**
2196  * Message sent from a GNUnet (fs) search activity to the
2197  * gnunet-service-fs to start a search.
2198  */
2199 struct SearchMessage
2200 {
2201
2202   /**
2203    * Message type will be 
2204    * GNUNET_MESSAGE_TYPE_FS_START_SEARCH.
2205    */
2206   struct GNUNET_MessageHeader header;
2207
2208   /**
2209    * Bitmask with options.  Zero for no options, one for loopback-only.  
2210    * Other bits are currently not defined.
2211    */
2212   int32_t options GNUNET_PACKED;
2213
2214   /**
2215    * Type of the content that we're looking for.
2216    */
2217   uint32_t type GNUNET_PACKED;
2218
2219   /**
2220    * Desired anonymity level, big-endian.
2221    */
2222   uint32_t anonymity_level GNUNET_PACKED;
2223
2224   /**
2225    * If the request is for a DBLOCK or IBLOCK, this is the identity of
2226    * the peer that is known to have a response.  Set to all-zeros if
2227    * such a target is not known (note that even if OUR anonymity
2228    * level is >0 we may happen to know the responder's identity;
2229    * nevertheless, we should probably not use it for a DHT-lookup
2230    * or similar blunt actions in order to avoid exposing ourselves).
2231    * <p>
2232    * If the request is for an SBLOCK, this is the identity of the
2233    * pseudonym to which the SBLOCK belongs. 
2234    * <p>
2235    * If the request is for a KBLOCK, "target" must be all zeros.
2236    */
2237   GNUNET_HashCode target;
2238
2239   /**
2240    * Hash of the keyword (aka query) for KBLOCKs; Hash of
2241    * the CHK-encoded block for DBLOCKS and IBLOCKS (aka query)
2242    * and hash of the identifier XORed with the target for
2243    * SBLOCKS (aka query).
2244    */
2245   GNUNET_HashCode query;
2246
2247   /* this is followed by the hash codes of already-known
2248      results (which should hence be excluded from what
2249      the service returns); naturally, this only applies
2250      to queries that can have multiple results, such as
2251      those for KBLOCKS (KSK) and SBLOCKS (SKS) */
2252 };
2253
2254
2255 /**
2256  * Only the (mandatory) query is included.
2257  */
2258 #define GET_MESSAGE_BIT_QUERY_ONLY 0
2259
2260 /**
2261  * The peer identity of a peer waiting for the
2262  * reply is included (used if the response
2263  * should be transmitted to someone other than
2264  * the sender of the GET).
2265  */
2266 #define GET_MESSAGE_BIT_RETURN_TO 1
2267
2268 /**
2269  * The hash of the public key of the target
2270  * namespace is included (for SKS queries).
2271  */
2272 #define GET_MESSAGE_BIT_SKS_NAMESPACE 2
2273
2274 /**
2275  * The peer identity of a peer that had claimed to have the content
2276  * previously is included (can be used if responder-anonymity is not
2277  * desired; note that the precursor presumably lacked a direct
2278  * connection to the specified peer; still, the receiver is in no way
2279  * required to limit forwarding only to the specified peer, it should
2280  * only prefer it somewhat if possible).
2281  */
2282 #define GET_MESSAGE_BIT_TRANSMIT_TO 4
2283
2284
2285 /**
2286  * Message sent between peers asking for FS-content.
2287  */
2288 struct GetMessage
2289 {
2290
2291   /**
2292    * Message type will be GNUNET_MESSAGE_TYPE_FS_GET.
2293    */
2294   struct GNUNET_MessageHeader header;
2295
2296   /**
2297    * Type of the query (block type).
2298    */
2299   uint32_t type GNUNET_PACKED;
2300
2301   /**
2302    * How important is this request (network byte order)
2303    */
2304   uint32_t priority GNUNET_PACKED;
2305
2306   /**
2307    * Relative time to live in MILLISECONDS (network byte order)
2308    */
2309   int32_t ttl GNUNET_PACKED;
2310
2311   /**
2312    * The content hash should be mutated using this value
2313    * before checking against the bloomfilter (used to
2314    * get many different filters for the same hash codes).
2315    * The number should be in big-endian format when used
2316    * for mingling.
2317    */
2318   uint32_t filter_mutator GNUNET_PACKED;
2319
2320   /**
2321    * Which of the optional hash codes are present at the end of the
2322    * message?  See GET_MESSAGE_BIT_xx constants.  For each bit that is
2323    * set, an additional GNUNET_HashCode with the respective content
2324    * (in order of the bits) will be appended to the end of the GET
2325    * message.
2326    */
2327   uint32_t hash_bitmap GNUNET_PACKED;
2328
2329   /**
2330    * Hashcodes of the file(s) we're looking for.
2331    * Details depend on the query type.
2332    */
2333   GNUNET_HashCode query GNUNET_PACKED;
2334
2335   /* this is followed by hash codes
2336      as specified in the  "hash_bitmap";
2337      after that, an optional bloomfilter
2338      (with bits set for replies that should
2339      be suppressed) can be present */
2340 };
2341
2342
2343 /**
2344  * Response from FS service with a result for a previous FS search.
2345  * Note that queries for DBLOCKS and IBLOCKS that have received a
2346  * single response are considered done.  This message is transmitted
2347  * between peers as well as between the service and a client.
2348  */
2349 struct PutMessage
2350 {
2351
2352   /**
2353    * Message type will be GNUNET_MESSAGE_TYPE_FS_PUT.
2354    */
2355   struct GNUNET_MessageHeader header;
2356
2357   /**
2358    * Type of the block (in big endian).  Should never be zero.
2359    */
2360   uint32_t type GNUNET_PACKED;
2361
2362   /**
2363    * When does this result expire? 
2364    */
2365   struct GNUNET_TIME_AbsoluteNBO expiration;
2366
2367   /* this is followed by the actual encrypted content */
2368
2369 };
2370
2371
2372 /**
2373  * Message send by a peer that wants to be excluded
2374  * from migration for a while.
2375  */
2376 struct MigrationStopMessage
2377 {
2378   /**
2379    * Message type will be 
2380    * GNUNET_MESSAGE_TYPE_FS_MIGRATION_STOP.
2381    */
2382   struct GNUNET_MessageHeader header;
2383
2384   /**
2385    * Always zero.
2386    */
2387   uint32_t reserved GNUNET_PACKED;
2388
2389   /**
2390    * How long should the block last?
2391    */
2392   struct GNUNET_TIME_RelativeNBO duration;
2393
2394 };
2395
2396
2397
2398 #endif
2399
2400 /* end of fs.h */