removing fprintfs -- with bad %fmt statements giving warnings
[oweals/gnunet.git] / src / peerinfo / gnunet-service-peerinfo.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2004, 2005, 2007, 2009, 2010 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 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 peerinfo/gnunet-service-peerinfo.c
23  * @brief maintains list of known peers
24  *
25  * Code to maintain the list of currently known hosts (in memory
26  * structure of data/hosts/).
27  *
28  * @author Christian Grothoff
29  *
30  * TODO:
31  * - HostEntries are never 'free'd (add expiration, upper bound?)
32  */
33
34 #include "platform.h"
35 #include "gnunet_crypto_lib.h"
36 #include "gnunet_container_lib.h"
37 #include "gnunet_disk_lib.h"
38 #include "gnunet_hello_lib.h"
39 #include "gnunet_protocols.h"
40 #include "gnunet_service_lib.h"
41 #include "gnunet_statistics_service.h"
42 #include "peerinfo.h"
43
44 /**
45  * How often do we scan the HOST_DIR for new entries?
46  */
47 #define DATA_HOST_FREQ GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
48
49 /**
50  * How often do we discard old entries in data/hosts/?
51  */
52 #define DATA_HOST_CLEAN_FREQ GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 60)
53
54 /**
55  * In-memory cache of known hosts.
56  */
57 struct HostEntry
58 {
59
60   /**
61    * Identity of the peer.
62    */
63   struct GNUNET_PeerIdentity identity;
64
65   /**
66    * Hello for the peer (can be NULL)
67    */
68   struct GNUNET_HELLO_Message *hello;
69
70 };
71
72
73 /**
74  * The in-memory list of known hosts, mapping of
75  * host IDs to 'struct HostEntry*' values.
76  */
77 static struct GNUNET_CONTAINER_MultiHashMap *hostmap;
78
79 /**
80  * Clients to immediately notify about all changes.
81  */
82 static struct GNUNET_SERVER_NotificationContext *notify_list;
83
84 /**
85  * Directory where the hellos are stored in (data/hosts)
86  */
87 static char *networkIdDirectory;
88
89 /**
90  * Handle for reporting statistics.
91  */
92 static struct GNUNET_STATISTICS_Handle *stats;
93
94
95 /**
96  * Notify all clients in the notify list about the
97  * given host entry changing.
98  */
99 static struct InfoMessage *
100 make_info_message (const struct HostEntry *he)
101 {
102   struct InfoMessage *im;
103   size_t hs;
104
105   hs = (he->hello == NULL) ? 0 : GNUNET_HELLO_size (he->hello);
106   im = GNUNET_malloc (sizeof (struct InfoMessage) + hs);
107   im->header.size = htons (hs + sizeof (struct InfoMessage));
108   im->header.type = htons (GNUNET_MESSAGE_TYPE_PEERINFO_INFO);
109   im->peer = he->identity;
110   if (he->hello != NULL)
111     memcpy (&im[1], he->hello, hs);
112   return im;
113 }
114
115
116 /**
117  * Address iterator that causes expired entries to be discarded.
118  *
119  * @param cls pointer to the current time
120  * @param tname name of the transport
121  * @param expiration expiration time for the address
122  * @param addr the address
123  * @param addrlen length of addr in bytes
124  * @return GNUNET_NO if expiration smaller than the current time
125  */
126 static int
127 discard_expired (void *cls,
128                  const char *tname,
129                  struct GNUNET_TIME_Absolute expiration,
130                  const void *addr, uint16_t addrlen)
131 {
132   const struct GNUNET_TIME_Absolute *now = cls;
133   if (now->abs_value > expiration.abs_value)
134     {
135       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
136                   _("Removing expired address of transport `%s'\n"),
137                   tname);
138       return GNUNET_NO;
139     }
140   return GNUNET_OK;
141 }
142
143
144 /**
145  * Get the filename under which we would store the GNUNET_HELLO_Message
146  * for the given host and protocol.
147  * @return filename of the form DIRECTORY/HOSTID
148  */
149 static char *
150 get_host_filename (const struct GNUNET_PeerIdentity *id)
151 {
152   struct GNUNET_CRYPTO_HashAsciiEncoded fil;
153   char *fn;
154
155   GNUNET_CRYPTO_hash_to_enc (&id->hashPubKey, &fil);
156   GNUNET_asprintf (&fn,
157                    "%s%s%s", networkIdDirectory, DIR_SEPARATOR_STR, &fil);
158   return fn;
159 }
160
161
162 /**
163  * Broadcast information about the given entry to all 
164  * clients that care.
165  *
166  * @param entry entry to broadcast about
167  */
168 static void
169 notify_all (struct HostEntry *entry)
170 {
171   struct InfoMessage *msg;
172
173   msg = make_info_message (entry);
174   GNUNET_SERVER_notification_context_broadcast (notify_list,
175                                                 &msg->header,
176                                                 GNUNET_NO);
177   GNUNET_free (msg);
178 }
179
180
181 /**
182  * Add a host to the list.
183  *
184  * @param identity the identity of the host
185  */
186 static void
187 add_host_to_known_hosts (const struct GNUNET_PeerIdentity *identity)
188 {
189   struct HostEntry *entry;
190   char buffer[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
191   const struct GNUNET_HELLO_Message *hello;
192   struct GNUNET_HELLO_Message *hello_clean;
193   int size;
194   struct GNUNET_TIME_Absolute now;
195   char *fn;
196
197   entry = GNUNET_CONTAINER_multihashmap_get (hostmap,
198                                              &identity->hashPubKey);
199   if (entry != NULL)
200     return;
201   GNUNET_STATISTICS_update (stats,
202                             gettext_noop ("# peers known"),
203                             1,
204                             GNUNET_NO);
205   entry = GNUNET_malloc (sizeof (struct HostEntry));
206   entry->identity = *identity;
207
208   fn = get_host_filename (identity);
209   if (GNUNET_DISK_file_test (fn) == GNUNET_YES)
210     {
211       size = GNUNET_DISK_fn_read (fn, buffer, sizeof (buffer));
212       hello = (const struct GNUNET_HELLO_Message *) buffer;
213       if ( (size < sizeof (struct GNUNET_MessageHeader)) ||
214            (size != ntohs((((const struct GNUNET_MessageHeader*) hello)->size))) ||
215            (size != GNUNET_HELLO_size (hello)) )
216         {
217           GNUNET_break (0);
218           if (0 != UNLINK (fn))
219             GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
220                                       "unlink",
221                                       fn);
222         }
223       else
224         {
225           now = GNUNET_TIME_absolute_get ();
226           hello_clean = GNUNET_HELLO_iterate_addresses (hello,
227                                                         GNUNET_YES,
228                                                         &discard_expired, &now);
229           entry->hello = hello_clean;
230         }
231     }
232   GNUNET_free (fn);
233   GNUNET_CONTAINER_multihashmap_put (hostmap,
234                                      &identity->hashPubKey,
235                                      entry,
236                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
237   notify_all (entry);
238 }
239
240
241 /**
242  * Remove a file that should not be there.  LOG
243  * success or failure.
244  */
245 static void
246 remove_garbage (const char *fullname)
247 {
248   if (0 == UNLINK (fullname))
249     GNUNET_log (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,
250                 _
251                 ("File `%s' in directory `%s' does not match naming convention. "
252                  "Removed.\n"), fullname, networkIdDirectory);
253   else
254     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR |
255                               GNUNET_ERROR_TYPE_BULK, "unlink", fullname);
256 }
257
258
259 static int
260 hosts_directory_scan_callback (void *cls,
261                                const char *fullname)
262 {
263   unsigned int *matched = cls;
264   struct GNUNET_PeerIdentity identity;
265   const char *filename;
266
267   if (GNUNET_DISK_file_test (fullname) != GNUNET_YES)
268     return GNUNET_OK;           /* ignore non-files */
269   if (strlen (fullname) < sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded))
270     {
271       remove_garbage (fullname);
272       return GNUNET_OK;
273     }
274   filename =
275     &fullname[strlen (fullname) -
276               sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) + 1];
277   if (filename[-1] != DIR_SEPARATOR)
278     {
279       remove_garbage (fullname);
280       return GNUNET_OK;
281     }
282   if (GNUNET_OK != GNUNET_CRYPTO_hash_from_string (filename,
283                                                    &identity.hashPubKey))
284     {
285       remove_garbage (fullname);
286       return GNUNET_OK;
287     }
288   (*matched)++;
289   add_host_to_known_hosts (&identity);
290   return GNUNET_OK;
291 }
292
293
294 /**
295  * Call this method periodically to scan data/hosts for new hosts.
296  */
297 static void
298 cron_scan_directory_data_hosts (void *cls,
299                                 const struct GNUNET_SCHEDULER_TaskContext *tc)
300 {
301   static unsigned int retries;
302   unsigned int count;
303
304   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
305     return;
306   count = 0;
307   GNUNET_DISK_directory_create (networkIdDirectory);
308   GNUNET_DISK_directory_scan (networkIdDirectory,
309                               &hosts_directory_scan_callback, &count);
310   if ((0 == count) && (0 == (++retries & 31)))
311     GNUNET_log (GNUNET_ERROR_TYPE_WARNING |
312                 GNUNET_ERROR_TYPE_BULK,
313                 _("Still no peers found in `%s'!\n"), networkIdDirectory);
314   GNUNET_SCHEDULER_add_delayed (DATA_HOST_FREQ,
315                                 &cron_scan_directory_data_hosts, NULL);
316 }
317
318
319 /**
320  * Bind a host address (hello) to a hostId.
321  *
322  * @param peer the peer for which this is a hello
323  * @param hello the verified (!) hello message
324  */
325 static void
326 bind_address (const struct GNUNET_PeerIdentity *peer,
327               const struct GNUNET_HELLO_Message *hello)
328 {
329   char *fn;
330   struct HostEntry *host;
331   struct GNUNET_HELLO_Message *mrg;
332   struct GNUNET_TIME_Absolute delta;
333
334   add_host_to_known_hosts (peer);
335   host = GNUNET_CONTAINER_multihashmap_get (hostmap,
336                                             &peer->hashPubKey);
337   GNUNET_assert (host != NULL);
338   if (host->hello == NULL)
339     {
340       host->hello = GNUNET_malloc (GNUNET_HELLO_size (hello));
341       memcpy (host->hello, hello, GNUNET_HELLO_size (hello));
342     }
343   else
344     {
345       mrg = GNUNET_HELLO_merge (host->hello, hello);
346       delta = GNUNET_HELLO_equals (mrg,
347                                    host->hello,
348                                    GNUNET_TIME_absolute_get ());
349       if (delta.abs_value == GNUNET_TIME_UNIT_FOREVER_ABS.abs_value)
350         {
351           GNUNET_free (mrg);
352           return;
353         }
354       GNUNET_free (host->hello);
355       host->hello = mrg;
356     }
357   fn = get_host_filename (peer);
358   GNUNET_DISK_directory_create_for_file (fn);
359   GNUNET_DISK_fn_write (fn, 
360                         host->hello, 
361                         GNUNET_HELLO_size (host->hello),
362                         GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE
363                         | GNUNET_DISK_PERM_GROUP_READ | GNUNET_DISK_PERM_OTHER_READ);
364   GNUNET_free (fn);
365   notify_all (host);
366 }
367
368
369
370 /**
371  * Do transmit info about peer to given host.
372  *
373  * @param cls NULL to hit all hosts, otherwise specifies a particular target
374  * @param key hostID
375  * @param value information to transmit
376  * @return GNUNET_YES (continue to iterate)
377  */
378 static int
379 add_to_tc (void *cls,
380            const GNUNET_HashCode *key,
381            void *value)
382 {
383   struct GNUNET_SERVER_TransmitContext *tc = cls;
384   struct HostEntry *pos = value;
385   struct InfoMessage *im;
386   uint16_t hs;
387   char buf[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
388
389   hs = 0;
390   im = (struct InfoMessage *) buf;
391   if (pos->hello != NULL)
392     {
393       hs = GNUNET_HELLO_size (pos->hello);
394       GNUNET_assert (hs <
395                      GNUNET_SERVER_MAX_MESSAGE_SIZE -
396                      sizeof (struct InfoMessage));
397       memcpy (&im[1], pos->hello, hs);
398     }
399   im->header.type = htons (GNUNET_MESSAGE_TYPE_PEERINFO_INFO);
400   im->header.size = htons (sizeof (struct InfoMessage) + hs);
401   im->reserved = htonl (0);
402   im->peer = pos->identity;
403   GNUNET_SERVER_transmit_context_append_message (tc,
404                                                  &im->header);
405   return GNUNET_YES;
406 }
407
408
409 /**
410  * @brief delete expired HELLO entries in data/hosts/
411  */
412 static int
413 discard_hosts_helper (void *cls, const char *fn)
414 {
415   struct GNUNET_TIME_Absolute *now = cls;
416   char buffer[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
417   const struct GNUNET_HELLO_Message *hello;
418   struct GNUNET_HELLO_Message *new_hello;
419   int size;
420
421   size = GNUNET_DISK_fn_read (fn, buffer, sizeof (buffer));
422   if (size < sizeof (struct GNUNET_MessageHeader))
423     {
424       if (0 != UNLINK (fn))
425         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING |
426                                   GNUNET_ERROR_TYPE_BULK, "unlink", fn);
427       return GNUNET_OK;
428     }
429   hello = (const struct GNUNET_HELLO_Message *) buffer;
430   new_hello = GNUNET_HELLO_iterate_addresses (hello,
431                                               GNUNET_YES,
432                                               &discard_expired, now);
433   if (new_hello != NULL)
434     {
435       GNUNET_DISK_fn_write (fn, 
436                             new_hello,
437                             GNUNET_HELLO_size (new_hello),
438                             GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE
439                             | GNUNET_DISK_PERM_GROUP_READ | GNUNET_DISK_PERM_OTHER_READ);
440       GNUNET_free (new_hello);
441     }
442   else
443     {
444       if (0 != UNLINK (fn))
445         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING |
446                                   GNUNET_ERROR_TYPE_BULK, "unlink", fn);      
447     }
448   return GNUNET_OK;
449 }
450
451
452 /**
453  * Call this method periodically to scan data/hosts for new hosts.
454  */
455 static void
456 cron_clean_data_hosts (void *cls,
457                        const struct GNUNET_SCHEDULER_TaskContext *tc)
458 {
459   struct GNUNET_TIME_Absolute now;
460
461   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
462     return;
463   now = GNUNET_TIME_absolute_get ();
464   GNUNET_DISK_directory_scan (networkIdDirectory,
465                               &discard_hosts_helper, &now);
466   GNUNET_SCHEDULER_add_delayed (DATA_HOST_CLEAN_FREQ,
467                                 &cron_clean_data_hosts, NULL);
468 }
469
470
471 /**
472  * Handle HELLO-message.
473  *
474  * @param cls closure
475  * @param client identification of the client
476  * @param message the actual message
477  */
478 static void
479 handle_hello (void *cls,
480               struct GNUNET_SERVER_Client *client,
481               const struct GNUNET_MessageHeader *message)
482 {
483   const struct GNUNET_HELLO_Message *hello;
484   struct GNUNET_PeerIdentity pid;
485
486   hello = (const struct GNUNET_HELLO_Message *) message;
487   if (GNUNET_OK !=  GNUNET_HELLO_get_id (hello, &pid))
488     {
489       GNUNET_break (0);
490       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
491       return;
492     }
493 #if DEBUG_PEERINFO
494   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
495               "`%s' message received for peer `%4s'\n",
496               "HELLO",
497               GNUNET_i2s (&pid));
498 #endif
499   bind_address (&pid, hello);
500   GNUNET_SERVER_receive_done (client, GNUNET_OK);
501 }
502
503
504 /**
505  * Handle GET-message.
506  *
507  * @param cls closure
508  * @param client identification of the client
509  * @param message the actual message
510  */
511 static void
512 handle_get (void *cls,
513             struct GNUNET_SERVER_Client *client,
514             const struct GNUNET_MessageHeader *message)
515 {
516   const struct ListPeerMessage *lpm;
517   struct GNUNET_SERVER_TransmitContext *tc;
518
519   lpm = (const struct ListPeerMessage *) message;
520   GNUNET_break (0 == ntohl (lpm->reserved));
521 #if DEBUG_PEERINFO
522   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
523               "`%s' message received for peer `%4s'\n",
524               "GET",
525               GNUNET_i2s (&lpm->peer));
526 #endif
527   tc = GNUNET_SERVER_transmit_context_create (client);
528   GNUNET_CONTAINER_multihashmap_get_multiple (hostmap,
529                                               &lpm->peer.hashPubKey,
530                                               &add_to_tc,
531                                               tc);
532   GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
533                                               GNUNET_MESSAGE_TYPE_PEERINFO_INFO_END);
534   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
535 }
536
537
538 /**
539  * Handle GET-ALL-message.
540  *
541  * @param cls closure
542  * @param client identification of the client
543  * @param message the actual message
544  */
545 static void
546 handle_get_all (void *cls,
547                 struct GNUNET_SERVER_Client *client,
548                 const struct GNUNET_MessageHeader *message)
549 {
550   struct GNUNET_SERVER_TransmitContext *tc;
551
552 #if DEBUG_PEERINFO
553   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
554               "`%s' message received\n",
555               "GET_ALL");
556 #endif
557   tc = GNUNET_SERVER_transmit_context_create (client);
558   GNUNET_CONTAINER_multihashmap_iterate (hostmap,
559                                          &add_to_tc,
560                                          tc);
561   GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
562                                               GNUNET_MESSAGE_TYPE_PEERINFO_INFO_END);
563   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
564 }
565
566
567 static int
568 do_notify_entry (void *cls,
569                  const GNUNET_HashCode *key,
570                  void *value)
571 {
572   struct GNUNET_SERVER_Client *client = cls;
573   struct HostEntry *he = value;
574   struct InfoMessage *msg;
575
576   msg = make_info_message (he);
577   GNUNET_SERVER_notification_context_unicast (notify_list,
578                                               client,
579                                               &msg->header,
580                                               GNUNET_NO);
581   GNUNET_free (msg);
582   return GNUNET_YES;
583 }
584
585
586 /**
587  * Handle NOTIFY-message.
588  *
589  * @param cls closure
590  * @param client identification of the client
591  * @param message the actual message
592  */
593 static void
594 handle_notify (void *cls,
595                struct GNUNET_SERVER_Client *client,
596                const struct GNUNET_MessageHeader *message)
597 {
598 #if DEBUG_PEERINFO
599   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
600               "`%s' message received\n",
601               "NOTIFY");
602 #endif
603   GNUNET_SERVER_notification_context_add (notify_list,
604                                           client);
605   GNUNET_CONTAINER_multihashmap_iterate (hostmap,
606                                          &do_notify_entry,
607                                          client);
608 }
609
610
611 static int
612 free_host_entry (void *cls,
613                  const GNUNET_HashCode *key,
614                  void *value)
615 {
616   struct HostEntry *he = value;
617
618   GNUNET_free_non_null (he->hello);
619   GNUNET_free (he);
620   return GNUNET_YES;
621 }
622
623 /**
624  * Clean up our state.  Called during shutdown.
625  *
626  * @param cls unused
627  * @param tc scheduler task context, unused
628  */
629 static void
630 shutdown_task (void *cls,
631                const struct GNUNET_SCHEDULER_TaskContext *tc)
632 {
633   GNUNET_SERVER_notification_context_destroy (notify_list);
634   notify_list = NULL;
635   GNUNET_CONTAINER_multihashmap_iterate (hostmap,
636                                          &free_host_entry,
637                                          NULL);
638   GNUNET_CONTAINER_multihashmap_destroy (hostmap);
639   if (stats != NULL)
640     {
641       GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
642       stats = NULL;
643     }
644 }
645
646
647 /**
648  * Process statistics requests.
649  *
650  * @param cls closure
651  * @param server the initialized server
652  * @param cfg configuration to use
653  */
654 static void
655 run (void *cls,
656      struct GNUNET_SERVER_Handle *server,
657      const struct GNUNET_CONFIGURATION_Handle *cfg)
658 {
659   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
660     {&handle_hello, NULL, GNUNET_MESSAGE_TYPE_HELLO, 0},
661     {&handle_get, NULL, GNUNET_MESSAGE_TYPE_PEERINFO_GET,
662      sizeof (struct ListPeerMessage)},
663     {&handle_get_all, NULL, GNUNET_MESSAGE_TYPE_PEERINFO_GET_ALL,
664      sizeof (struct GNUNET_MessageHeader)},
665     {&handle_notify, NULL, GNUNET_MESSAGE_TYPE_PEERINFO_NOTIFY,
666      sizeof (struct GNUNET_MessageHeader)},
667     {NULL, NULL, 0, 0}
668   };
669
670   hostmap = GNUNET_CONTAINER_multihashmap_create (1024);
671   stats = GNUNET_STATISTICS_create ("peerinfo", cfg);
672   notify_list = GNUNET_SERVER_notification_context_create (server, 0);
673   GNUNET_assert (GNUNET_OK ==
674                  GNUNET_CONFIGURATION_get_value_filename (cfg,
675                                                           "peerinfo",
676                                                           "HOSTS",
677                                                           &networkIdDirectory));
678   GNUNET_DISK_directory_create (networkIdDirectory);
679   GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_IDLE,
680                                       &cron_scan_directory_data_hosts, NULL);
681   GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_IDLE,
682                                       &cron_clean_data_hosts, NULL);
683   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
684                                 &shutdown_task, NULL);
685   GNUNET_SERVER_add_handlers (server, handlers);
686 }
687
688
689 /**
690  * The main function for the statistics service.
691  *
692  * @param argc number of arguments from the command line
693  * @param argv command line arguments
694  * @return 0 ok, 1 on error
695  */
696 int
697 main (int argc, char *const *argv)
698 {
699   int ret;
700
701   ret = (GNUNET_OK ==
702          GNUNET_SERVICE_run (argc,
703                              argv,
704                               "peerinfo",
705                              GNUNET_SERVICE_OPTION_NONE,
706                              &run, NULL)) ? 0 : 1;
707   GNUNET_free_non_null (networkIdDirectory);
708   return ret;
709 }
710
711
712 /* end of gnunet-service-peerinfo.c */