changing time measurement from milliseconds to microseconds
[oweals/gnunet.git] / src / fs / gnunet-service-fs.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 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/gnunet-service-fs.c
23  * @brief gnunet anonymity protocol implementation
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include <float.h>
28 #include "gnunet_constants.h"
29 #include "gnunet_core_service.h"
30 #include "gnunet_dht_service.h"
31 #include "gnunet_datastore_service.h"
32 #include "gnunet_load_lib.h"
33 #include "gnunet_peer_lib.h"
34 #include "gnunet_protocols.h"
35 #include "gnunet_signatures.h"
36 #include "gnunet_statistics_service.h"
37 #include "gnunet_transport_service.h"
38 #include "gnunet_util_lib.h"
39 #include "gnunet-service-fs_cp.h"
40 #include "gnunet-service-fs_indexing.h"
41 #include "gnunet-service-fs_lc.h"
42 #include "gnunet-service-fs_pe.h"
43 #include "gnunet-service-fs_pr.h"
44 #include "gnunet-service-fs_push.h"
45 #include "gnunet-service-fs_put.h"
46 #include "gnunet-service-fs_mesh.h"
47 #include "fs.h"
48
49 /**
50  * Size for the hash map for DHT requests from the FS
51  * service.  Should be about the number of concurrent
52  * DHT requests we plan to make.
53  */
54 #define FS_DHT_HT_SIZE 1024
55
56
57 /**
58  * How quickly do we age cover traffic?  At the given
59  * time interval, remaining cover traffic counters are
60  * decremented by 1/16th.
61  */
62 #define COVER_AGE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
63
64 /**
65  * Collect an instane number of statistics?  May cause excessive IPC.
66  */
67 #define INSANE_STATISTICS GNUNET_NO
68
69
70 /* ****************************** globals ****************************** */
71
72 /**
73  * Our connection to the datastore.
74  */
75 struct GNUNET_DATASTORE_Handle *GSF_dsh;
76
77 /**
78  * Our configuration.
79  */
80 const struct GNUNET_CONFIGURATION_Handle *GSF_cfg;
81
82 /**
83  * Handle for reporting statistics.
84  */
85 struct GNUNET_STATISTICS_Handle *GSF_stats;
86
87 /**
88  * Handle for DHT operations.
89  */
90 struct GNUNET_DHT_Handle *GSF_dht;
91
92 /**
93  * How long do requests typically stay in the routing table?
94  */
95 struct GNUNET_LOAD_Value *GSF_rt_entry_lifetime;
96
97 /**
98  * Running average of the observed latency to other peers (round trip).
99  * Initialized to 5s as the initial default.
100  */
101 struct GNUNET_TIME_Relative GSF_avg_latency = { 500 };
102
103 /**
104  * Handle to ATS service.
105  */
106 struct GNUNET_ATS_PerformanceHandle *GSF_ats;
107
108
109 /**
110  * Typical priorities we're seeing from other peers right now.  Since
111  * most priorities will be zero, this value is the weighted average of
112  * non-zero priorities seen "recently".  In order to ensure that new
113  * values do not dramatically change the ratio, values are first
114  * "capped" to a reasonable range (+N of the current value) and then
115  * averaged into the existing value by a ratio of 1:N.  Hence
116  * receiving the largest possible priority can still only raise our
117  * "current_priorities" by at most 1.
118  */
119 double GSF_current_priorities;
120
121 /**
122  * Size of the datastore queue we assume for common requests.
123  */
124 unsigned int GSF_datastore_queue_size;
125
126 /**
127  * How many query messages have we received 'recently' that
128  * have not yet been claimed as cover traffic?
129  */
130 unsigned int GSF_cover_query_count;
131
132 /**
133  * How many content messages have we received 'recently' that
134  * have not yet been claimed as cover traffic?
135  */
136 unsigned int GSF_cover_content_count;
137
138 /**
139  * Our block context.
140  */
141 struct GNUNET_BLOCK_Context *GSF_block_ctx;
142
143 /**
144  * Pointer to handle to the core service (points to NULL until we've
145  * connected to it).
146  */
147 struct GNUNET_CORE_Handle *GSF_core;
148
149 /**
150  * Are we introducing randomized delays for better anonymity?
151  */
152 int GSF_enable_randomized_delays;
153
154 /* ***************************** locals ******************************* */
155
156 /**
157  * Configuration for block library.
158  */
159 static struct GNUNET_CONFIGURATION_Handle *block_cfg;
160
161 /**
162  * ID of our task that we use to age the cover counters.
163  */
164 static GNUNET_SCHEDULER_TaskIdentifier cover_age_task;
165
166 /**
167  * Datastore 'GET' load tracking.
168  */
169 static struct GNUNET_LOAD_Value *datastore_get_load;
170
171 /**
172  * Identity of this peer.
173  */
174 static struct GNUNET_PeerIdentity my_id;
175
176 /**
177  * Task that periodically ages our cover traffic statistics.
178  *
179  * @param cls unused closure
180  * @param tc task context
181  */
182 static void
183 age_cover_counters (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
184 {
185   GSF_cover_content_count = (GSF_cover_content_count * 15) / 16;
186   GSF_cover_query_count = (GSF_cover_query_count * 15) / 16;
187   cover_age_task =
188       GNUNET_SCHEDULER_add_delayed (COVER_AGE_FREQUENCY, &age_cover_counters,
189                                     NULL);
190 }
191
192
193 /**
194  * We've just now completed a datastore request.  Update our
195  * datastore load calculations.
196  *
197  * @param start time when the datastore request was issued
198  */
199 void
200 GSF_update_datastore_delay_ (struct GNUNET_TIME_Absolute start)
201 {
202   struct GNUNET_TIME_Relative delay;
203
204   delay = GNUNET_TIME_absolute_get_duration (start);
205   GNUNET_LOAD_update (datastore_get_load, delay.rel_value_us);
206 }
207
208
209 /**
210  * Test if the DATABASE (GET) load on this peer is too high
211  * to even consider processing the query at
212  * all.
213  *
214  * @param priority priority of the request (used as a reference point to compare with the load)
215  * @return GNUNET_YES if the load is too high to do anything (load high)
216  *         GNUNET_NO to process normally (load normal)
217  *         GNUNET_SYSERR to process for free (load low)
218  */
219 int
220 GSF_test_get_load_too_high_ (uint32_t priority)
221 {
222   double ld;
223
224   ld = GNUNET_LOAD_get_load (datastore_get_load);
225   if (ld < 1)
226     return GNUNET_SYSERR;
227   if (ld <= priority)
228     return GNUNET_NO;
229   return GNUNET_YES;
230 }
231
232
233 /**
234  * We've received peer performance information. Update
235  * our running average for the P2P latency.
236 *
237  * @param cls closure
238  * @param address the address
239  * @param active is this address in active use
240  * @param bandwidth_out assigned outbound bandwidth for the connection
241  * @param bandwidth_in assigned inbound bandwidth for the connection
242  * @param ats performance data for the address (as far as known)
243  * @param ats_count number of performance records in 'ats'
244  */
245 static void
246 update_latencies (void *cls,
247                   const struct GNUNET_HELLO_Address *address,
248                   int active,
249                   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
250                   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
251                   const struct GNUNET_ATS_Information *ats, 
252                   uint32_t ats_count)
253 {
254   unsigned int i;
255   struct GNUNET_TIME_Relative latency;
256
257   if (GNUNET_YES != active)
258         return;
259   for (i = 0; i < ats_count; i++)
260   {
261     if (GNUNET_ATS_QUALITY_NET_DELAY != ntohl (ats[i].type))
262       continue;
263     latency.rel_value_us = ntohl (ats[i].value);
264     GSF_update_peer_latency_ (&address->peer,
265                               latency);
266     GSF_avg_latency.rel_value_us =
267       (GSF_avg_latency.rel_value_us * 31 +
268        GNUNET_MIN (5000, ntohl (ats[i].value))) / 32;
269     GNUNET_STATISTICS_set (GSF_stats,
270                            gettext_noop
271                            ("# running average P2P latency (ms)"),
272                            GSF_avg_latency.rel_value_us / 1000LL, GNUNET_NO);
273     break;    
274   }
275 }
276
277
278 /**
279  * Handle P2P "PUT" message.
280  *
281  * @param cls closure, always NULL
282  * @param other the other peer involved (sender or receiver, NULL
283  *        for loopback messages where we are both sender and receiver)
284  * @param message the actual message
285  * @return GNUNET_OK to keep the connection open,
286  *         GNUNET_SYSERR to close it (signal serious error)
287  */
288 static int
289 handle_p2p_put (void *cls, const struct GNUNET_PeerIdentity *other,
290                 const struct GNUNET_MessageHeader *message)
291 {
292   struct GSF_ConnectedPeer *cp;
293
294   cp = GSF_peer_get_ (other);
295   if (NULL == cp)
296   {
297     GNUNET_break (0);
298     return GNUNET_OK;
299   }
300   GSF_cover_content_count++;
301   return GSF_handle_p2p_content_ (cp, message);
302 }
303
304
305 /**
306  * We have a new request, consider forwarding it to the given
307  * peer.
308  *
309  * @param cls the 'struct GSF_PendingRequest'
310  * @param peer identity of the peer
311  * @param cp handle to the connected peer record
312  * @param ppd peer performance data
313  */
314 static void
315 consider_request_for_forwarding (void *cls,
316                                  const struct GNUNET_PeerIdentity *peer,
317                                  struct GSF_ConnectedPeer *cp,
318                                  const struct GSF_PeerPerformanceData *ppd)
319 {
320   struct GSF_PendingRequest *pr = cls;
321
322   if (GNUNET_YES != GSF_pending_request_test_target_ (pr, peer))
323   {
324 #if INSANE_STATISTICS
325     GNUNET_STATISTICS_update (GSF_stats,
326                               gettext_noop ("# Loopback routes suppressed"), 1,
327                               GNUNET_NO);
328 #endif
329     return;
330   }
331   GSF_plan_add_ (cp, pr);
332 }
333
334
335 /**
336  * Function to be called after we're done processing
337  * replies from the local lookup.  If the result status
338  * code indicates that there may be more replies, plan
339  * forwarding the request.
340  *
341  * @param cls closure (NULL)
342  * @param pr the pending request we were processing
343  * @param result final datastore lookup result
344  */
345 static void
346 consider_forwarding (void *cls, struct GSF_PendingRequest *pr,
347                      enum GNUNET_BLOCK_EvaluationResult result)
348 {
349   if (GNUNET_BLOCK_EVALUATION_OK_LAST == result)
350     return;                     /* we're done... */
351   GSF_iterate_connected_peers_ (&consider_request_for_forwarding, pr);
352 }
353
354
355 /**
356  * Handle P2P "GET" request.
357  *
358  * @param cls closure, always NULL
359  * @param other the other peer involved (sender or receiver, NULL
360  *        for loopback messages where we are both sender and receiver)
361  * @param message the actual message
362  * @return GNUNET_OK to keep the connection open,
363  *         GNUNET_SYSERR to close it (signal serious error)
364  */
365 static int
366 handle_p2p_get (void *cls, const struct GNUNET_PeerIdentity *other,
367                 const struct GNUNET_MessageHeader *message)
368 {
369   struct GSF_PendingRequest *pr;
370
371   pr = GSF_handle_p2p_query_ (other, message);
372   if (NULL == pr)
373     return GNUNET_SYSERR;
374   GSF_pending_request_get_data_ (pr)->has_started = GNUNET_YES;
375   GSF_local_lookup_ (pr, &consider_forwarding, NULL);
376   return GNUNET_OK;
377 }
378
379
380 /**
381  * We're done with the local lookup, now consider
382  * P2P processing (depending on request options and
383  * result status).  Also signal that we can now
384  * receive more request information from the client.
385  *
386  * @param cls the client doing the request ('struct GNUNET_SERVER_Client')
387  * @param pr the pending request we were processing
388  * @param result final datastore lookup result
389  */
390 static void
391 start_p2p_processing (void *cls, struct GSF_PendingRequest *pr,
392                       enum GNUNET_BLOCK_EvaluationResult result)
393 {
394   struct GNUNET_SERVER_Client *client = cls;
395   struct GSF_PendingRequestData *prd;
396
397   prd = GSF_pending_request_get_data_ (pr);
398   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
399               "Finished database lookup for local request `%s' with result %d\n",
400               GNUNET_h2s (&prd->query), result);
401   GNUNET_SERVER_receive_done (client, GNUNET_OK);
402   if (GNUNET_BLOCK_EVALUATION_OK_LAST == result)
403     return;                     /* we're done, 'pr' was already destroyed... */
404   if (0 != (GSF_PRO_LOCAL_ONLY & prd->options))
405   {
406     GSF_pending_request_cancel_ (pr, GNUNET_YES);
407     return;
408   }
409   if (0 == prd->anonymity_level)
410   {
411     switch (prd->type)
412     {
413     case GNUNET_BLOCK_TYPE_FS_DBLOCK:
414     case GNUNET_BLOCK_TYPE_FS_IBLOCK:
415       /* the above block types MAY be available via 'mesh' */
416       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
417                   "Considering mesh-based download for block\n");
418       GSF_mesh_lookup_ (pr);
419       break; 
420     case GNUNET_BLOCK_TYPE_FS_UBLOCK:
421       /* the above block types are in the DHT */
422       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
423                   "Considering DHT-based search for block\n");
424       GSF_dht_lookup_ (pr);
425       break;
426     default:
427       GNUNET_break (0);
428       break;
429     }
430   }
431   consider_forwarding (NULL, pr, result);
432 }
433
434
435 /**
436  * Handle START_SEARCH-message (search request from client).
437  *
438  * @param cls closure
439  * @param client identification of the client
440  * @param message the actual message
441  */
442 static void
443 handle_start_search (void *cls, struct GNUNET_SERVER_Client *client,
444                      const struct GNUNET_MessageHeader *message)
445 {
446   struct GSF_PendingRequest *pr;
447   int ret;
448
449   pr = NULL;
450   ret = GSF_local_client_start_search_handler_ (client, message, &pr);
451   switch (ret)
452   {
453   case GNUNET_SYSERR:
454     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
455     break;
456   case GNUNET_NO:
457     GNUNET_SERVER_receive_done (client, GNUNET_OK);
458     break;
459   case GNUNET_YES:
460     GSF_pending_request_get_data_ (pr)->has_started = GNUNET_YES;
461     GSF_local_lookup_ (pr, &start_p2p_processing, client);
462     break;
463   default:
464     GNUNET_assert (0);
465   }
466 }
467
468
469 /**
470  * Task run during shutdown.
471  *
472  * @param cls unused
473  * @param tc unused
474  */
475 static void
476 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
477 {
478   GSF_mesh_stop_client ();
479   GSF_mesh_stop_server ();
480   if (NULL != GSF_core)
481   {
482     GNUNET_CORE_disconnect (GSF_core);
483     GSF_core = NULL;
484   }
485   if (NULL != GSF_ats)
486   {
487     GNUNET_ATS_performance_done (GSF_ats);
488     GSF_ats = NULL;
489   }
490   GSF_put_done_ ();
491   GSF_push_done_ ();
492   GSF_pending_request_done_ ();
493   GSF_plan_done ();
494   GSF_connected_peer_done_ ();
495   GNUNET_DATASTORE_disconnect (GSF_dsh, GNUNET_NO);
496   GSF_dsh = NULL;
497   GNUNET_DHT_disconnect (GSF_dht);
498   GSF_dht = NULL;
499   GNUNET_BLOCK_context_destroy (GSF_block_ctx);
500   GSF_block_ctx = NULL;
501   GNUNET_CONFIGURATION_destroy (block_cfg);
502   block_cfg = NULL;
503   GNUNET_STATISTICS_destroy (GSF_stats, GNUNET_NO);
504   GSF_stats = NULL;
505   if (GNUNET_SCHEDULER_NO_TASK != cover_age_task)
506   {
507     GNUNET_SCHEDULER_cancel (cover_age_task);
508     cover_age_task = GNUNET_SCHEDULER_NO_TASK;
509   }
510   GNUNET_FS_indexing_done ();
511   GNUNET_LOAD_value_free (datastore_get_load);
512   datastore_get_load = NULL;
513   GNUNET_LOAD_value_free (GSF_rt_entry_lifetime);
514   GSF_rt_entry_lifetime = NULL;
515 }
516
517
518 /**
519  * Function called for each pending request whenever a new
520  * peer connects, giving us a chance to decide about submitting
521  * the existing request to the new peer.
522  *
523  * @param cls the 'struct GSF_ConnectedPeer' of the new peer
524  * @param key query for the request
525  * @param pr handle to the pending request
526  * @return GNUNET_YES to continue to iterate
527  */
528 static int
529 consider_peer_for_forwarding (void *cls, const struct GNUNET_HashCode * key,
530                               struct GSF_PendingRequest *pr)
531 {
532   struct GSF_ConnectedPeer *cp = cls;
533   struct GNUNET_PeerIdentity pid;
534
535   GSF_connected_peer_get_identity_ (cp, &pid);
536   if (GNUNET_YES != GSF_pending_request_test_target_ (pr, &pid))
537   {
538     GNUNET_STATISTICS_update (GSF_stats,
539                               gettext_noop ("# Loopback routes suppressed"), 1,
540                               GNUNET_NO);
541     return GNUNET_YES;
542   }
543   GSF_plan_add_ (cp, pr);
544   return GNUNET_YES;
545 }
546
547
548 /**
549  * Method called whenever a given peer connects.
550  *
551  * @param cls closure, not used
552  * @param peer peer identity this notification is about
553  */
554 static void
555 peer_connect_handler (void *cls, const struct GNUNET_PeerIdentity *peer)
556 {
557   struct GSF_ConnectedPeer *cp;
558
559   if (0 == memcmp (&my_id, peer, sizeof (struct GNUNET_PeerIdentity)))
560     return;
561   cp = GSF_peer_connect_handler_ (peer);
562   if (NULL == cp)
563     return;
564   GSF_iterate_pending_requests_ (&consider_peer_for_forwarding, cp);
565 }
566
567
568 /**
569  * Function called after GNUNET_CORE_connect has succeeded
570  * (or failed for good).  Note that the private key of the
571  * peer is intentionally not exposed here; if you need it,
572  * your process should try to read the private key file
573  * directly (which should work if you are authorized...).
574  *
575  * @param cls closure
576  * @param server handle to the server, NULL if we failed
577  * @param my_identity ID of this peer, NULL if we failed
578  */
579 static void
580 peer_init_handler (void *cls, struct GNUNET_CORE_Handle *server,
581                    const struct GNUNET_PeerIdentity *my_identity)
582 {
583   my_id = *my_identity;
584 }
585
586
587 /**
588  * Process fs requests.
589  *
590  * @param server the initialized server
591  * @param c configuration to use
592  */
593 static int
594 main_init (struct GNUNET_SERVER_Handle *server,
595            const struct GNUNET_CONFIGURATION_Handle *c)
596 {
597   static const struct GNUNET_CORE_MessageHandler no_p2p_handlers[] = {
598     {NULL, 0, 0}
599   };
600   static const struct GNUNET_CORE_MessageHandler p2p_handlers[] = {
601     {&handle_p2p_get,
602      GNUNET_MESSAGE_TYPE_FS_GET, 0},
603     {&handle_p2p_put,
604      GNUNET_MESSAGE_TYPE_FS_PUT, 0},
605     {&GSF_handle_p2p_migration_stop_,
606      GNUNET_MESSAGE_TYPE_FS_MIGRATION_STOP,
607      sizeof (struct MigrationStopMessage)},
608     {NULL, 0, 0}
609   };
610   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
611     {&GNUNET_FS_handle_index_start, NULL,
612      GNUNET_MESSAGE_TYPE_FS_INDEX_START, 0},
613     {&GNUNET_FS_handle_index_list_get, NULL,
614      GNUNET_MESSAGE_TYPE_FS_INDEX_LIST_GET,
615      sizeof (struct GNUNET_MessageHeader)},
616     {&GNUNET_FS_handle_unindex, NULL, GNUNET_MESSAGE_TYPE_FS_UNINDEX,
617      sizeof (struct UnindexMessage)},
618     {&handle_start_search, NULL, GNUNET_MESSAGE_TYPE_FS_START_SEARCH,
619      0},
620     {NULL, NULL, 0, 0}
621   };
622   int anon_p2p_off;
623
624   /* this option is really only for testcases that need to disable
625      _anonymous_ file-sharing for some reason */
626   anon_p2p_off = (GNUNET_YES ==
627                   GNUNET_CONFIGURATION_get_value_yesno (GSF_cfg,
628                                                         "fs",
629                                                         "DISABLE_ANON_TRANSFER"));  
630   GSF_core =
631       GNUNET_CORE_connect (GSF_cfg, NULL, &peer_init_handler,
632                            &peer_connect_handler, &GSF_peer_disconnect_handler_,
633                            NULL, GNUNET_NO, NULL, GNUNET_NO,
634                            (GNUNET_YES == anon_p2p_off)
635                            ? no_p2p_handlers
636                            : p2p_handlers);
637   if (NULL == GSF_core)
638   {
639     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
640                 _("Failed to connect to `%s' service.\n"), "core");
641     return GNUNET_SYSERR;
642   }
643   GNUNET_SERVER_disconnect_notify (server, &GSF_client_disconnect_handler_,
644                                    NULL);
645   GNUNET_SERVER_add_handlers (server, handlers);
646   cover_age_task =
647       GNUNET_SCHEDULER_add_delayed (COVER_AGE_FREQUENCY, &age_cover_counters,
648                                     NULL);
649   datastore_get_load = GNUNET_LOAD_value_init (DATASTORE_LOAD_AUTODECLINE);
650   GSF_mesh_start_server ();
651   GSF_mesh_start_client ();
652   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
653                                 NULL);
654   return GNUNET_OK;
655 }
656
657
658 /**
659  * Process fs requests.
660  *
661  * @param cls closure
662  * @param server the initialized server
663  * @param cfg configuration to use
664  */
665 static void
666 run (void *cls, struct GNUNET_SERVER_Handle *server,
667      const struct GNUNET_CONFIGURATION_Handle *cfg)
668 {
669   unsigned long long dqs;
670
671   GSF_cfg = cfg;
672   if (GNUNET_OK !=
673       GNUNET_CONFIGURATION_get_value_size (GSF_cfg, "fs", "DATASTORE_QUEUE_SIZE",
674                                            &dqs))
675   {
676     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_INFO,
677                                "fs", "DATASTORE_QUEUE_SIZE");
678     dqs = 1024;
679   }
680   GSF_datastore_queue_size = (unsigned int) dqs;
681   GSF_enable_randomized_delays =
682       GNUNET_CONFIGURATION_get_value_yesno (cfg, "fs", "DELAY");
683   GSF_dsh = GNUNET_DATASTORE_connect (cfg);
684   if (NULL == GSF_dsh)
685   {
686     GNUNET_SCHEDULER_shutdown ();
687     return;
688   }
689   GSF_rt_entry_lifetime = GNUNET_LOAD_value_init (GNUNET_TIME_UNIT_FOREVER_REL);
690   GSF_stats = GNUNET_STATISTICS_create ("fs", cfg);
691   block_cfg = GNUNET_CONFIGURATION_create ();
692   GSF_block_ctx = GNUNET_BLOCK_context_create (block_cfg);
693   GNUNET_assert (NULL != GSF_block_ctx);
694   GSF_dht = GNUNET_DHT_connect (cfg, FS_DHT_HT_SIZE);
695   GSF_plan_init ();
696   GSF_pending_request_init_ ();
697   GSF_connected_peer_init_ ();
698   GSF_ats = GNUNET_ATS_performance_init (GSF_cfg, &update_latencies, NULL);
699   GSF_push_init_ ();
700   GSF_put_init_ ();
701   if ((GNUNET_OK != GNUNET_FS_indexing_init (cfg, GSF_dsh)) ||
702       (GNUNET_OK != main_init (server, cfg)))
703   {
704     GNUNET_SCHEDULER_shutdown ();
705     shutdown_task (NULL, NULL);
706     return;
707   }
708 }
709
710
711 /**
712  * The main function for the fs service.
713  *
714  * @param argc number of arguments from the command line
715  * @param argv command line arguments
716  * @return 0 ok, 1 on error
717  */
718 int
719 main (int argc, char *const *argv)
720 {
721   return (GNUNET_OK ==
722           GNUNET_SERVICE_run (argc, argv, "fs", GNUNET_SERVICE_OPTION_NONE,
723                               &run, NULL)) ? 0 : 1;
724 }
725
726 /* end of gnunet-service-fs.c */