retry faster
[oweals/gnunet.git] / src / topology / gnunet-daemon-topology.c
1 /*
2      This file is part of GNUnet.
3      (C) 2007, 2008, 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 topology/gnunet-daemon-topology.c
23  * @brief code for maintaining the mesh topology
24  * @author Christian Grothoff
25  */
26
27 #include <stdlib.h>
28 #include "platform.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_core_service.h"
31 #include "gnunet_protocols.h"
32 #include "gnunet_peerinfo_service.h"
33 #include "gnunet_statistics_service.h"
34 #include "gnunet_transport_service.h"
35 #include "gnunet_util_lib.h"
36
37
38 #define DEBUG_TOPOLOGY GNUNET_YES
39
40 /**
41  * For how long do we blacklist a peer after a failed connection
42  * attempt?
43  */
44 #define GREYLIST_AFTER_ATTEMPT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
45
46 /**
47  * For how long do we blacklist a friend after a failed connection
48  * attempt?
49  */
50 #define GREYLIST_AFTER_ATTEMPT_FRIEND GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
51
52 /**
53  * For how long do we blacklist anyone under any cirumstances after a failed connection
54  * attempt?
55  */
56 #define GREYLIST_AFTER_ATTEMPT_MIN GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
57
58 /**
59  * For how long do we blacklist anyone under any cirumstances after a failed connection
60  * attempt?
61  */
62 #define GREYLIST_AFTER_ATTEMPT_MAX GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
63
64 /**
65  * How often do we at most advertise any HELLO to a peer?
66  */
67 #define HELLO_ADVERTISEMENT_MIN_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
68
69 /**
70  * How often do we at most advertise the same HELLO to the same peer?
71  */
72 #define HELLO_ADVERTISEMENT_MIN_REPEAT_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
73
74
75 /**
76  * Record for neighbours, friends and blacklisted peers.
77  */
78 struct Peer
79 {
80   /**
81    * Which peer is this entry about?
82    */
83   struct GNUNET_PeerIdentity pid;
84
85   /**
86    * Our handle for the request to transmit HELLOs to this peer; NULL
87    * if no such request is pending.
88    */
89   struct GNUNET_CORE_TransmitHandle *hello_req;  
90
91   /**
92    * Our handle for the request to connect to this peer; NULL if no
93    * such request is pending.
94    */
95   struct GNUNET_CORE_PeerRequestHandle *connect_req;  
96
97   /**
98    * Pointer to the HELLO message of this peer; can be NULL.
99    */
100   struct GNUNET_HELLO_Message *hello;
101
102   /**
103    * Bloom filter used to mark which peers already got the HELLO
104    * from this peer.
105    */
106   struct GNUNET_CONTAINER_BloomFilter *filter;
107
108   /**
109    * Until what time should we not try to connect again
110    * to this peer?
111    */
112   struct GNUNET_TIME_Absolute greylisted_until;
113
114   /**
115    * Next time we are allowed to transmit a HELLO to this peer?
116    */
117   struct GNUNET_TIME_Absolute next_hello_allowed;
118
119   /**
120    * When should we reset the bloom filter of this entry?
121    */
122   struct GNUNET_TIME_Absolute filter_expiration;
123
124   /**
125    * ID of task we use to wait for the time to send the next HELLO
126    * to this peer.
127    */
128   GNUNET_SCHEDULER_TaskIdentifier hello_delay_task;
129
130   /**
131    * ID of task we use to clear peers from the greylist.
132    */
133   GNUNET_SCHEDULER_TaskIdentifier greylist_clean_task;
134
135   /**
136    * How often have we tried so far?
137    */
138   unsigned int connect_attempts;
139
140   /**
141    * Is this peer listed here because he is a friend?
142    */
143   int is_friend;
144
145   /**
146    * Are we connected to this peer right now?
147    */
148   int is_connected;
149
150 };
151
152
153 /**
154  * Our peerinfo notification context.  We use notification
155  * to instantly learn about new peers as they are discovered.
156  */
157 static struct GNUNET_PEERINFO_NotifyContext *peerinfo_notify;
158
159 /**
160  * Our configuration.
161  */
162 static const struct GNUNET_CONFIGURATION_Handle *cfg;
163
164 /**
165  * Handle to the core API.
166  */
167 static struct GNUNET_CORE_Handle *handle;
168
169 /**
170  * Handle to the transport API.
171  */
172 static struct GNUNET_TRANSPORT_Handle *transport;
173
174 /**
175  * Identity of this peer.
176  */
177 static struct GNUNET_PeerIdentity my_identity;
178
179 /**
180  * All of our friends, all of our current neighbours and all peers for
181  * which we have HELLOs.  So pretty much everyone.  Maps peer identities
182  * to 'struct Peer *' values.
183  */
184 static struct GNUNET_CONTAINER_MultiHashMap *peers;
185
186 /**
187  * Handle for reporting statistics.
188  */
189 static struct GNUNET_STATISTICS_Handle *stats;
190
191 /**
192  * Blacklist (NULL if we have none).
193  */
194 static struct GNUNET_TRANSPORT_Blacklist *blacklist;
195
196 /**
197  * Flag to disallow non-friend connections (pure F2F mode).
198  */
199 static int friends_only;
200
201 /**
202  * Minimum number of friends to have in the
203  * connection set before we allow non-friends.
204  */
205 static unsigned int minimum_friend_count;
206
207 /**
208  * Number of peers (friends and others) that we are currently connected to.
209  */
210 static unsigned int connection_count;
211
212 /**
213  * Target number of connections.
214  */
215 static unsigned int target_connection_count;
216
217 /**
218  * Number of friends that we are currently connected to.
219  */
220 static unsigned int friend_count;
221
222 /**
223  * Should the topology daemon try to establish connections?
224  */
225 static int autoconnect;
226
227
228 /**
229  * Function that decides if a connection is acceptable or not.  
230  * If we have a blacklist, only friends are allowed, so the check
231  * is rather simple.
232  *
233  * @param cls closure
234  * @param pid peer to approve or disapproave
235  * @return GNUNET_OK if the connection is allowed
236  */
237 static int
238 blacklist_check (void *cls,
239                  const struct GNUNET_PeerIdentity *pid)
240 {
241   struct Peer *pos;
242
243   pos = GNUNET_CONTAINER_multihashmap_get (peers, &pid->hashPubKey);
244   if ( (pos != NULL) &&
245        (pos->is_friend == GNUNET_YES) )
246     return GNUNET_OK;
247   GNUNET_STATISTICS_update (stats,
248                             gettext_noop ("# peers blacklisted"),
249                             1,
250                             GNUNET_NO);
251   return GNUNET_SYSERR;
252 }
253
254
255 /**
256  * Whitelist all peers that we blacklisted; we've passed
257  * the minimum number of friends.
258  */
259 static void
260 whitelist_peers ()
261 {
262   if (blacklist != NULL)
263     {
264       GNUNET_TRANSPORT_blacklist_cancel (blacklist);
265       blacklist = NULL;
266     }
267 }
268
269
270 /**
271  * Function called by core when our attempt to connect succeeded.
272  *
273  * @param cls the 'struct Peer' for which we issued the connect request
274  * @param success was the request transmitted
275  */
276 static void
277 connect_completed_callback (void *cls,
278                             int success)
279 {
280   struct Peer *pos = cls;
281
282   pos->connect_req = NULL;
283 }
284
285
286 /**
287  * Check if an additional connection from the given peer is allowed.
288  * 
289  * @param peer connection to check
290  * @return GNUNET_OK if the connection is allowed
291  */
292 static int
293 is_connection_allowed (struct Peer *peer)
294 {
295   if (0 == memcmp (&my_identity, 
296                    &peer->pid, 
297                    sizeof (struct GNUNET_PeerIdentity)))
298     return GNUNET_SYSERR;       /* disallow connections to self */
299   if (peer->is_friend)
300     return GNUNET_OK;
301   if (GNUNET_YES == friends_only)
302     {
303 #if DEBUG_TOPOLOGY
304       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
305                   "Determined that `%s' is not allowed to connect (not a friend)\n",
306                   GNUNET_i2s (&peer->pid));
307 #endif       
308       return GNUNET_SYSERR;
309     }
310   if (friend_count >= minimum_friend_count)
311     return GNUNET_OK;
312 #if DEBUG_TOPOLOGY
313   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
314               "Determined that `%s' is not allowed to connect (not enough connected friends)\n",
315               GNUNET_i2s (&peer->pid));
316 #endif       
317   return GNUNET_SYSERR;
318 }
319
320
321 /**
322  * Free all resources associated with the given peer.
323  *
324  * @param cls closure (not used)
325  * @param pid identity of the peer
326  * @param value peer to free
327  * @return GNUNET_YES (always: continue to iterate)
328  */
329 static int
330 free_peer (void *cls,
331            const GNUNET_HashCode *pid,
332            void *value)
333 {
334   struct Peer *pos = value;
335
336   GNUNET_break (GNUNET_OK == 
337                 GNUNET_CONTAINER_multihashmap_remove (peers,
338                                                       pid,
339                                                       pos));
340   if (pos->hello_req != NULL)
341     GNUNET_CORE_notify_transmit_ready_cancel (pos->hello_req);
342   if (pos->connect_req != NULL)
343     GNUNET_CORE_peer_request_connect_cancel (pos->connect_req);       
344   if (pos->hello_delay_task != GNUNET_SCHEDULER_NO_TASK)
345     GNUNET_SCHEDULER_cancel (pos->hello_delay_task);
346   if (pos->greylist_clean_task != GNUNET_SCHEDULER_NO_TASK)
347     GNUNET_SCHEDULER_cancel (pos->greylist_clean_task);
348   GNUNET_free_non_null (pos->hello);   
349   if (pos->filter != NULL)
350     GNUNET_CONTAINER_bloomfilter_free (pos->filter);
351   GNUNET_free (pos);
352   return GNUNET_YES;
353 }
354
355
356 /**
357  * Discard peer entries for greylisted peers
358  * where the greylisting has expired.
359  *
360  * @param cls 'struct Peer' to greylist
361  * @param tc scheduler context
362  */
363 static void
364 remove_from_greylist (void *cls,
365                       const struct GNUNET_SCHEDULER_TaskContext *tc);
366
367
368 /**
369  * Try to connect to the specified peer.
370  *
371  * @param pos peer to connect to
372  */
373 static void
374 attempt_connect (struct Peer *pos)
375 {
376   struct GNUNET_TIME_Relative rem;
377   
378   if ( (connection_count >= target_connection_count) &&
379        (friend_count >= minimum_friend_count) )
380     return;
381   if (GNUNET_YES == pos->is_connected)
382     return;
383   if (GNUNET_OK != is_connection_allowed (pos))
384     return;
385   if (GNUNET_TIME_absolute_get_remaining (pos->greylisted_until).rel_value > 0)
386     return;
387   if (GNUNET_YES == pos->is_friend)
388     rem = GREYLIST_AFTER_ATTEMPT_FRIEND;
389   else
390     rem = GREYLIST_AFTER_ATTEMPT;
391   rem = GNUNET_TIME_relative_multiply (rem, connection_count);
392   rem = GNUNET_TIME_relative_divide (rem, target_connection_count);
393   if (pos->connect_attempts > 30)
394     pos->connect_attempts = 30;
395   rem = GNUNET_TIME_relative_multiply (rem, 1 << (++pos->connect_attempts));
396   rem = GNUNET_TIME_relative_max (rem,
397                                   GREYLIST_AFTER_ATTEMPT_MIN);
398   rem = GNUNET_TIME_relative_min (rem,
399                                   GREYLIST_AFTER_ATTEMPT_MAX);
400   pos->greylisted_until = GNUNET_TIME_relative_to_absolute (rem);
401   if (pos->greylist_clean_task != GNUNET_SCHEDULER_NO_TASK)
402     GNUNET_SCHEDULER_cancel (pos->greylist_clean_task);
403   pos->greylist_clean_task 
404     = GNUNET_SCHEDULER_add_delayed (rem,
405                                     &remove_from_greylist,
406                                     pos);
407 #if DEBUG_TOPOLOGY
408   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
409               "Asking  to connect to `%s'\n",
410               GNUNET_i2s (&pos->pid));
411 #endif
412   GNUNET_STATISTICS_update (stats,
413                             gettext_noop ("# connect requests issued to core"),
414                             1,
415                             GNUNET_NO);
416   pos->connect_req = GNUNET_CORE_peer_request_connect (handle,
417                                                        GNUNET_TIME_UNIT_MINUTES,
418                                                        &pos->pid,
419                                                        &connect_completed_callback,
420                                                        pos);
421 }
422
423
424 /**
425  * Discard peer entries for greylisted peers
426  * where the greylisting has expired.
427  *
428  * @param cls 'struct Peer' to greylist
429  * @param tc scheduler context
430  */
431 static void
432 remove_from_greylist (void *cls,
433                       const struct GNUNET_SCHEDULER_TaskContext *tc)
434 {
435   struct Peer *pos = cls;
436   struct GNUNET_TIME_Relative rem;
437
438   pos->greylist_clean_task = GNUNET_SCHEDULER_NO_TASK;
439   rem = GNUNET_TIME_absolute_get_remaining (pos->greylisted_until);
440   if (rem.rel_value == 0)
441     {
442       attempt_connect (pos);
443     }
444   else
445     {
446       pos->greylist_clean_task 
447         = GNUNET_SCHEDULER_add_delayed (rem,
448                                         &remove_from_greylist,
449                                         pos);
450     }
451   if ( (GNUNET_NO == pos->is_friend) &&
452        (GNUNET_NO == pos->is_connected) )
453     {
454       free_peer (NULL, &pos->pid.hashPubKey, pos);
455       return;
456     }
457 }
458
459
460 /**
461  * Create a new entry in the peer list.
462  *
463  * @param peer identity of the new entry
464  * @param hello hello message, can be NULL
465  * @param is_friend is the new entry for a friend?
466  * @return the new entry
467  */
468 static struct Peer *
469 make_peer (const struct
470            GNUNET_PeerIdentity * peer,
471            const struct GNUNET_HELLO_Message *hello,
472            int is_friend)
473 {
474   struct Peer *ret;
475   
476   ret = GNUNET_malloc (sizeof (struct Peer));
477   ret->pid = *peer;
478   ret->is_friend = is_friend;
479   if (hello != NULL)
480     {
481       ret->hello = GNUNET_malloc (GNUNET_HELLO_size (hello));
482       memcpy (ret->hello, hello,
483               GNUNET_HELLO_size (hello));
484     }
485   GNUNET_break (GNUNET_OK ==
486                 GNUNET_CONTAINER_multihashmap_put (peers,
487                                                    &peer->hashPubKey,
488                                                    ret,
489                                                    GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
490   return ret;
491 }
492
493
494 /**
495  * Setup bloom filter for the given peer entry.
496  *
497  * @param peer entry to initialize
498  */
499 static void
500 setup_filter (struct Peer *peer)
501 {
502   /* 2^{-5} chance of not sending a HELLO to a peer is
503      acceptably small (if the filter is 50% full);
504      64 bytes of memory are small compared to the rest
505      of the data structure and would only really become
506      "useless" once a HELLO has been passed on to ~100
507      other peers, which is likely more than enough in
508      any case; hence 64, 5 as bloomfilter parameters. */
509   peer->filter = GNUNET_CONTAINER_bloomfilter_load (NULL, 64, 5);
510   peer->filter_expiration = GNUNET_TIME_relative_to_absolute (HELLO_ADVERTISEMENT_MIN_REPEAT_FREQUENCY);
511   /* never send a peer its own HELLO */
512   GNUNET_CONTAINER_bloomfilter_add (peer->filter, &peer->pid.hashPubKey);
513 }
514
515
516 /**
517  * Function to fill send buffer with HELLO.
518  *
519  * @param cls 'struct Peer' of the target peer
520  * @param size number of bytes available in buf
521  * @param buf where the callee should write the message
522  * @return number of bytes written to buf
523  */
524 static size_t
525 hello_advertising_ready (void *cls,
526                          size_t size,
527                          void *buf);
528
529
530
531
532 /**
533  * Closure for 'find_advertisable_hello'.
534  */
535 struct FindAdvHelloContext {
536
537   /**
538    * Peer we want to advertise to.
539    */
540   struct Peer *peer;
541
542   /**
543    * Where to store the result (peer selected for advertising).
544    */
545   struct Peer *result;
546
547   /**
548    * Maximum HELLO size we can use right now.
549    */
550   size_t max_size;
551
552   struct GNUNET_TIME_Relative next_adv;
553 };
554
555
556 /**
557  * Find a peer that would be reasonable for advertising.
558  *
559  * @param cls closure
560  * @param pid identity of a peer
561  * @param value 'struct Peer*' for the peer we are considering 
562  * @return GNUNET_YES (continue iteration)
563  */
564 static int
565 find_advertisable_hello (void *cls,
566                          const GNUNET_HashCode *pid,
567                          void *value)
568 {
569   struct FindAdvHelloContext *fah = cls;
570   struct Peer *pos = value;
571   struct GNUNET_TIME_Relative rst_time;
572   size_t hs;
573
574   if (pos == fah->peer)
575     return GNUNET_YES;
576   if (pos->hello == NULL)
577     return GNUNET_YES;
578   rst_time = GNUNET_TIME_absolute_get_remaining (pos->filter_expiration);
579   if (0 == rst_time.rel_value)
580     {
581       /* time to discard... */
582       GNUNET_CONTAINER_bloomfilter_free (pos->filter);
583       setup_filter (pos);
584     }
585   fah->next_adv = GNUNET_TIME_relative_min (rst_time,
586                                             fah->next_adv);
587   hs = GNUNET_HELLO_size (pos->hello);
588   if (hs > fah->max_size)
589     return GNUNET_YES;
590   if (GNUNET_NO ==
591       GNUNET_CONTAINER_bloomfilter_test (pos->filter,
592                                          &fah->peer->pid.hashPubKey))
593     fah->result = pos;    
594   return GNUNET_YES;
595 }
596
597
598 /**
599  * Calculate when we would like to send the next HELLO to this
600  * peer and ask for it.
601  *
602  * @param cls for which peer to schedule the HELLO
603  * @param tc task context
604  */
605 static void
606 schedule_next_hello (void *cls,
607                      const struct GNUNET_SCHEDULER_TaskContext *tc)
608 {
609   struct Peer *pl = cls;
610   struct FindAdvHelloContext fah;
611   size_t next_want;
612   struct GNUNET_TIME_Relative delay;
613  
614   pl->hello_delay_task = GNUNET_SCHEDULER_NO_TASK;
615   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
616     return; /* we're out of here */
617   if (pl->hello_req != NULL)
618     return; /* did not finish sending the previous one */
619   /* find applicable HELLOs */
620   fah.peer = pl;
621   fah.result = NULL;
622   fah.max_size = GNUNET_SERVER_MAX_MESSAGE_SIZE - 1;
623   fah.next_adv = GNUNET_TIME_UNIT_FOREVER_REL;
624   GNUNET_CONTAINER_multihashmap_iterate (peers,
625                                          &find_advertisable_hello,
626                                          &fah);
627   pl->hello_delay_task 
628     = GNUNET_SCHEDULER_add_delayed (fah.next_adv,
629                                     &schedule_next_hello,
630                                     pl);
631   if (fah.result == NULL)
632     return;   
633   next_want = GNUNET_HELLO_size (fah.result->hello);
634   delay = GNUNET_TIME_absolute_get_remaining (pl->next_hello_allowed);
635   if (delay.rel_value == 0)
636     {
637       /* now! */
638       pl->hello_req = GNUNET_CORE_notify_transmit_ready (handle, 0,
639                                                          GNUNET_CONSTANTS_SERVICE_TIMEOUT,
640                                                          &pl->pid,
641                                                          next_want,
642                                                          &hello_advertising_ready,
643                                                          pl);
644     }
645 }
646
647
648 /**
649  * Cancel existing requests for sending HELLOs to this peer
650  * and recalculate when we should send HELLOs to it based
651  * on our current state (something changed!).
652  *
653  * @param cls closure, 'struct Peer' to skip, or NULL
654  * @param pid identity of a peer
655  * @param value 'struct Peer*' for the peer
656  * @return GNUNET_YES (always)
657  */
658 static int
659 reschedule_hellos (void *cls,
660                    const GNUNET_HashCode *pid,
661                    void *value)
662 {
663   struct Peer *peer = value;
664   struct Peer *skip = cls;
665
666   if (skip == peer)
667     return GNUNET_YES;
668   if (! peer->is_connected) 
669     return GNUNET_YES;
670   if (peer->hello_req != NULL)
671     {
672       GNUNET_CORE_notify_transmit_ready_cancel (peer->hello_req);
673       peer->hello_req = NULL;
674     }
675   if (peer->hello_delay_task != GNUNET_SCHEDULER_NO_TASK)
676     {
677       GNUNET_SCHEDULER_cancel (peer->hello_delay_task);
678       peer->hello_delay_task = GNUNET_SCHEDULER_NO_TASK;
679     }
680   peer->hello_delay_task 
681     = GNUNET_SCHEDULER_add_now (&schedule_next_hello,
682                                 peer);
683   return GNUNET_YES;
684 }
685
686
687 /**
688  * Method called whenever a peer connects.
689  *
690  * @param cls closure
691  * @param peer peer identity this notification is about
692  * @param atsi performance data
693  */
694 static void 
695 connect_notify (void *cls,
696                 const struct
697                 GNUNET_PeerIdentity * peer,
698                 const struct GNUNET_TRANSPORT_ATS_Information *atsi)
699 {
700   struct Peer *pos;
701
702 #if DEBUG_TOPOLOGY
703   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
704               "Core told us that we are connecting to `%s'\n",
705               GNUNET_i2s (peer));
706 #endif
707   if (0 == memcmp(&my_identity, peer, sizeof(struct GNUNET_PeerIdentity)))
708     return;
709
710   connection_count++;
711   GNUNET_STATISTICS_set (stats,
712                          gettext_noop ("# peers connected"),
713                          connection_count,
714                          GNUNET_NO);
715   pos = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
716   if (pos == NULL)    
717     {
718       pos = make_peer (peer, NULL, GNUNET_NO);
719       GNUNET_break (GNUNET_OK == is_connection_allowed (pos));
720     }
721   else
722     {
723       GNUNET_assert (GNUNET_NO == pos->is_connected);
724       pos->greylisted_until.abs_value = 0; /* remove greylisting */
725     }
726   pos->is_connected = GNUNET_YES;
727   pos->connect_attempts = 0; /* re-set back-off factor */
728   if (pos->is_friend)
729     {
730       if ( (friend_count == minimum_friend_count - 1) &&
731            (GNUNET_YES != friends_only) )       
732         whitelist_peers ();       
733       friend_count++;
734       GNUNET_STATISTICS_set (stats,
735                              gettext_noop ("# friends connected"),
736                              friend_count,
737                              GNUNET_NO);
738     }
739   reschedule_hellos (NULL, &peer->hashPubKey, pos);
740 }
741
742
743 /**
744  * Try to add more peers to our connection set.
745  *
746  * @param cls closure, not used
747  * @param pid identity of a peer
748  * @param value 'struct Peer*' for the peer
749  * @return GNUNET_YES (continue to iterate)
750  */
751 static int
752 try_add_peers (void *cls,
753                const GNUNET_HashCode *pid,
754                void *value)
755 {
756   struct Peer *pos = value;
757
758   attempt_connect (pos);
759   return GNUNET_YES;
760 }
761
762
763 /**
764  * Method called whenever a peer disconnects.
765  *
766  * @param cls closure
767  * @param peer peer identity this notification is about
768  */
769 static void 
770 disconnect_notify (void *cls,
771                    const struct
772                    GNUNET_PeerIdentity * peer)
773 {
774   struct Peer *pos;
775
776   if (0 == memcmp(&my_identity, peer, sizeof(struct GNUNET_PeerIdentity)))
777     return;
778 #if DEBUG_TOPOLOGY
779   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
780               "Core told us that we disconnected from `%s'\n",
781               GNUNET_i2s (peer));
782 #endif       
783   pos = GNUNET_CONTAINER_multihashmap_get (peers,
784                                            &peer->hashPubKey);
785   if (pos == NULL)
786     {
787       GNUNET_break (0);
788       return;
789     }
790   if (pos->is_connected != GNUNET_YES)
791     {
792       GNUNET_break (0);
793       return;
794     }
795   connection_count--;
796   GNUNET_STATISTICS_set (stats,
797                          gettext_noop ("# peers connected"),
798                          connection_count,
799                          GNUNET_NO);
800   if (pos->is_friend)
801     {
802       friend_count--; 
803       GNUNET_STATISTICS_set (stats,
804                              gettext_noop ("# friends connected"),
805                              friend_count,
806                              GNUNET_NO);
807     }
808   if ( (connection_count < target_connection_count) ||
809        (friend_count < minimum_friend_count) )
810     GNUNET_CONTAINER_multihashmap_iterate (peers,
811                                            &try_add_peers,
812                                            NULL);
813   if ( (friend_count < minimum_friend_count) &&
814        (blacklist == NULL) )
815     blacklist = GNUNET_TRANSPORT_blacklist (cfg,
816                                             &blacklist_check, NULL);
817 }
818
819
820 /**
821  * Iterator called on each address.
822  *
823  * @param cls flag that we will set if we see any addresses
824  * @param tname name of the transport
825  * @param expiration when will the given address expire
826  * @param addr the address of the peer
827  * @param addrlen number of bytes in addr
828  * @return GNUNET_SYSERR always, to terminate iteration
829  */
830 static int
831 address_iterator (void *cls,
832                   const char *tname,
833                   struct GNUNET_TIME_Absolute expiration,
834                   const void *addr, 
835                   uint16_t addrlen)
836 {
837   int *flag = cls;
838   *flag = GNUNET_YES;
839   return GNUNET_SYSERR;
840 }
841
842
843 /**
844  * We've gotten a HELLO from another peer.  Consider it for
845  * advertising.
846  *
847  * @param hello the HELLO we got
848  */
849 static void
850 consider_for_advertising (const struct GNUNET_HELLO_Message *hello)
851 {
852   int have_address;
853   struct GNUNET_PeerIdentity pid;
854   struct GNUNET_TIME_Absolute dt;
855   struct GNUNET_HELLO_Message *nh;
856   struct Peer *peer;
857   uint16_t size;
858
859   if (GNUNET_OK != GNUNET_HELLO_get_id (hello, &pid))
860     {
861         GNUNET_break (0);
862         return;
863     }
864   if (0 == memcmp (&pid,
865                    &my_identity,
866                    sizeof (struct GNUNET_PeerIdentity)))
867     return; /* that's me! */
868   have_address = GNUNET_NO;
869   GNUNET_HELLO_iterate_addresses (hello,
870                                   GNUNET_NO,
871                                   &address_iterator,
872                                   &have_address);
873   if (GNUNET_NO == have_address)
874     return; /* no point in advertising this one... */
875   peer = GNUNET_CONTAINER_multihashmap_get (peers,
876                                             &pid.hashPubKey);
877   if (peer == NULL)
878     {
879       peer = make_peer (&pid, hello, GNUNET_NO);
880     }
881   else if (peer->hello != NULL)
882     {
883       dt = GNUNET_HELLO_equals (peer->hello,
884                                 hello,
885                                 GNUNET_TIME_absolute_get());
886       if (dt.abs_value == GNUNET_TIME_UNIT_FOREVER_ABS.abs_value)
887         return; /* nothing new here */
888     }
889 #if DEBUG_TOPOLOGY
890   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
891               "Found `%s' from peer `%s' for advertising\n",
892               "HELLO",
893               GNUNET_i2s (&pid));
894 #endif 
895   if (peer->hello != NULL)
896     {
897       nh = GNUNET_HELLO_merge (peer->hello,
898                                hello);
899       GNUNET_free (peer->hello);
900       peer->hello = nh;
901     }
902   else
903     {
904       size = GNUNET_HELLO_size (hello);
905       peer->hello = GNUNET_malloc (size);
906       memcpy (peer->hello, hello, size);
907     }
908   if (peer->filter != NULL)
909     GNUNET_CONTAINER_bloomfilter_free (peer->filter);
910   setup_filter (peer);
911   /* since we have a new HELLO to pick from, re-schedule all
912      HELLO requests that are not bound by the HELLO send rate! */
913   GNUNET_CONTAINER_multihashmap_iterate (peers,
914                                          &reschedule_hellos,
915                                          peer);
916 }
917
918
919 /**
920  * PEERINFO calls this function to let us know about a possible peer
921  * that we might want to connect to.
922  *
923  * @param cls closure (not used)
924  * @param peer potential peer to connect to
925  * @param hello HELLO for this peer (or NULL)
926  */
927 static void
928 process_peer (void *cls,
929               const struct GNUNET_PeerIdentity *peer,
930               const struct GNUNET_HELLO_Message *hello)
931 {
932   struct Peer *pos;
933
934   GNUNET_assert (peer != NULL);
935   if (0 == memcmp (&my_identity,
936                    peer, sizeof (struct GNUNET_PeerIdentity)))
937     return;  /* that's me! */
938   if (hello == NULL)
939     {
940       /* free existing HELLO, if any */
941       pos = GNUNET_CONTAINER_multihashmap_get (peers,
942                                                &peer->hashPubKey);
943       if (NULL != pos)
944         {
945           GNUNET_free_non_null (pos->hello);
946           pos->hello = NULL;
947           if (pos->filter != NULL)
948             {
949               GNUNET_CONTAINER_bloomfilter_free (pos->filter);
950               pos->filter = NULL;
951             }
952           if ( (! pos->is_connected) &&
953                (! pos->is_friend) &&
954                (0 == GNUNET_TIME_absolute_get_remaining (pos->greylisted_until).rel_value) )
955             free_peer (NULL, &pos->pid.hashPubKey, pos);
956         }
957       return;
958     }
959   consider_for_advertising (hello);
960   pos = GNUNET_CONTAINER_multihashmap_get (peers,
961                                            &peer->hashPubKey);
962   if (pos == NULL)
963     pos = make_peer (peer, hello, GNUNET_NO);
964   GNUNET_assert (NULL != pos);
965   if (GNUNET_YES == pos->is_connected)
966     {
967 #if DEBUG_TOPOLOGY
968       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
969                   "Already connected to peer `%s'\n",
970                   GNUNET_i2s (peer));
971 #endif 
972       return;
973     }
974   if (GNUNET_TIME_absolute_get_remaining (pos->greylisted_until).rel_value > 0)
975     {
976 #if DEBUG_TOPOLOGY
977       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
978                   "Already tried peer `%s' recently\n",
979                   GNUNET_i2s (peer));
980 #endif 
981       return; /* peer still greylisted */
982     }
983 #if DEBUG_TOPOLOGY
984   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
985               "Considering connecting to peer `%s'\n",
986               GNUNET_i2s (peer));
987 #endif 
988   attempt_connect (pos);
989 }
990
991
992 /**
993  * Function called after GNUNET_CORE_connect has succeeded
994  * (or failed for good).
995  *
996  * @param cls closure
997  * @param server handle to the server, NULL if we failed
998  * @param my_id ID of this peer, NULL if we failed
999  * @param publicKey public key of this peer, NULL if we failed
1000  */
1001 static void
1002 core_init (void *cls,
1003            struct GNUNET_CORE_Handle * server,
1004            const struct GNUNET_PeerIdentity *
1005            my_id,
1006            const struct
1007            GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *
1008            publicKey)
1009 {
1010   if (server == NULL)
1011     {
1012       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1013                   _("Failed to connect to core service, can not manage topology!\n"));
1014       GNUNET_SCHEDULER_shutdown ();
1015       return;
1016     }
1017   handle = server;
1018   my_identity = *my_id;
1019 #if DEBUG_TOPOLOGY
1020   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1021               "I am peer `%s'\n",
1022               GNUNET_i2s (my_id));
1023 #endif  
1024   peerinfo_notify = GNUNET_PEERINFO_notify (cfg, &process_peer,
1025                                             NULL);
1026 }
1027
1028
1029 /**
1030  * Read the friends file.
1031  */
1032 static void
1033 read_friends_file (const struct GNUNET_CONFIGURATION_Handle *cfg)
1034 {
1035   char *fn;
1036   char *data;
1037   size_t pos;
1038   struct GNUNET_PeerIdentity pid;
1039   struct stat frstat;
1040   struct GNUNET_CRYPTO_HashAsciiEncoded enc;
1041   unsigned int entries_found;
1042   struct Peer *fl;
1043
1044   if (GNUNET_OK !=
1045       GNUNET_CONFIGURATION_get_value_filename (cfg,
1046                                                "TOPOLOGY",
1047                                                "FRIENDS",
1048                                                &fn))
1049     {
1050       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1051                   _("Option `%s' in section `%s' not specified!\n"),
1052                   "FRIENDS",
1053                   "TOPOLOGY");
1054       return;
1055     }
1056   if (GNUNET_OK != GNUNET_DISK_file_test (fn))
1057     GNUNET_DISK_fn_write (fn, NULL, 0, 
1058                           GNUNET_DISK_PERM_USER_READ
1059                           | GNUNET_DISK_PERM_USER_WRITE);
1060   if (0 != STAT (fn, &frstat))
1061     {
1062       if ((friends_only) || (minimum_friend_count > 0))
1063         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1064                     _("Could not read friends list `%s'\n"), fn);
1065       GNUNET_free (fn);
1066       return;
1067     }
1068   if (frstat.st_size == 0)
1069     {
1070       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1071                   _("Friends file `%s' is empty.\n"),
1072                   fn);
1073       GNUNET_free (fn);
1074       return;
1075     }
1076   data = GNUNET_malloc_large (frstat.st_size);
1077   if (data == NULL)
1078     {
1079       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1080                   _("Failed to read friends list from `%s': out of memory\n"), fn);
1081       GNUNET_free (fn);
1082       return;
1083     }
1084   if (frstat.st_size !=
1085       GNUNET_DISK_fn_read (fn, data, frstat.st_size))
1086     {
1087       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1088                   _("Failed to read friends list from `%s'\n"), fn);
1089       GNUNET_free (fn);
1090       GNUNET_free (data);
1091       return;
1092     }
1093   entries_found = 0;
1094   pos = 0;
1095   while ((pos < frstat.st_size) && isspace ( (unsigned char) data[pos]))
1096     pos++;
1097   while ((frstat.st_size >= sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)) &&
1098          (pos <= frstat.st_size - sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)))
1099     {
1100       memcpy (&enc, &data[pos], sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded));
1101       if (!isspace ( (unsigned char) enc.encoding[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1]))
1102         {
1103           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1104                       _("Syntax error in topology specification at offset %llu, skipping bytes.\n"),
1105                       (unsigned long long) pos);
1106           pos++;
1107           while ((pos < frstat.st_size) && (!isspace ( (unsigned char) data[pos])))
1108             pos++;
1109           continue;
1110         }
1111       enc.encoding[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] = '\0';
1112       if (GNUNET_OK != GNUNET_CRYPTO_hash_from_string ((char *) &enc, &pid.hashPubKey))
1113         {
1114           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1115                       _("Syntax error in topology specification at offset %llu, skipping bytes `%s'.\n"),
1116                       (unsigned long long) pos,
1117                       &enc);
1118         }
1119       else
1120         {
1121           if (0 != memcmp (&pid,
1122                            &my_identity,
1123                            sizeof (struct GNUNET_PeerIdentity)))
1124             {
1125               entries_found++;
1126               fl = make_peer (&pid,
1127                               NULL,
1128                               GNUNET_YES);
1129               GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1130                           _("Found friend `%s' in configuration\n"),
1131                           GNUNET_i2s (&fl->pid));
1132             }
1133           else
1134             {
1135               GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1136                           _("Found myself `%s' in friend list (useless, ignored)\n"),
1137                           GNUNET_i2s (&pid));
1138             }
1139         }
1140       pos = pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded);
1141       while ((pos < frstat.st_size) && isspace ( (unsigned char) data[pos]))
1142         pos++;
1143     }
1144   GNUNET_free (data);
1145   GNUNET_free (fn);
1146   GNUNET_STATISTICS_update (stats,
1147                             gettext_noop ("# friends in configuration"),
1148                             entries_found,
1149                             GNUNET_NO);
1150   if ( (minimum_friend_count > entries_found) &&
1151        (friends_only == GNUNET_NO) )
1152     {
1153       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1154                   _("Fewer friends specified than required by minimum friend count. Will only connect to friends.\n"));
1155     }
1156   if ( (minimum_friend_count > target_connection_count) &&
1157        (friends_only == GNUNET_NO) )
1158     {
1159       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1160                   _("More friendly connections required than target total number of connections.\n"));
1161     }
1162 }
1163
1164
1165 /**
1166  * This function is called whenever an encrypted HELLO message is
1167  * received.
1168  *
1169  * @param cls closure
1170  * @param other the other peer involved (sender or receiver, NULL
1171  *        for loopback messages where we are both sender and receiver)
1172  * @param message the actual HELLO message
1173  * @param atsi performance data
1174  * @return GNUNET_OK to keep the connection open,
1175  *         GNUNET_SYSERR to close it (signal serious error)
1176  */
1177 static int
1178 handle_encrypted_hello (void *cls,
1179                         const struct GNUNET_PeerIdentity * other,
1180                         const struct GNUNET_MessageHeader *
1181                         message,
1182                         const struct GNUNET_TRANSPORT_ATS_Information *atsi)
1183 {
1184   struct Peer *peer;
1185   struct GNUNET_PeerIdentity pid;
1186
1187 #if DEBUG_TOPOLOGY
1188   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1189               "Received encrypted `%s' from peer `%s'",
1190               "HELLO",
1191               GNUNET_i2s (other));
1192 #endif  
1193   if (GNUNET_OK !=
1194       GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message*) message,
1195                            &pid))
1196     {
1197       GNUNET_break_op (0);
1198       return GNUNET_SYSERR;
1199     }
1200   GNUNET_STATISTICS_update (stats,
1201                             gettext_noop ("# HELLO messages received"),
1202                             1,
1203                             GNUNET_NO);
1204   peer = GNUNET_CONTAINER_multihashmap_get (peers,
1205                                             &pid.hashPubKey);
1206   if (peer == NULL)
1207     {
1208       if ( (GNUNET_YES == friends_only) ||
1209            (friend_count < minimum_friend_count) )
1210         return GNUNET_OK;      
1211     }
1212   else
1213     {
1214       if ( (GNUNET_YES != peer->is_friend) &&
1215            (GNUNET_YES == friends_only) )
1216         return GNUNET_OK;
1217       if ( (GNUNET_YES != peer->is_friend) &&
1218            (friend_count < minimum_friend_count) )
1219         return GNUNET_OK;      
1220     }
1221   if (transport != NULL)
1222     GNUNET_TRANSPORT_offer_hello (transport,
1223                                   message);
1224   return GNUNET_OK;
1225 }
1226
1227
1228 /**
1229  * Function to fill send buffer with HELLO.
1230  *
1231  * @param cls 'struct Peer' of the target peer
1232  * @param size number of bytes available in buf
1233  * @param buf where the callee should write the message
1234  * @return number of bytes written to buf
1235  */
1236 static size_t
1237 hello_advertising_ready (void *cls,
1238                          size_t size,
1239                          void *buf)
1240 {
1241   struct Peer *pl = cls;
1242   struct FindAdvHelloContext fah;
1243   size_t want;
1244
1245   pl->hello_req = NULL;
1246   /* find applicable HELLOs */
1247   fah.peer = pl;
1248   fah.result = NULL;
1249   fah.max_size = size;
1250   fah.next_adv = GNUNET_TIME_UNIT_FOREVER_REL;
1251   GNUNET_CONTAINER_multihashmap_iterate (peers,
1252                                          &find_advertisable_hello,
1253                                          &fah);
1254   want = 0;
1255   if (fah.result != NULL)
1256     {
1257       want = GNUNET_HELLO_size (fah.result->hello);
1258       GNUNET_assert (want <= size);
1259       memcpy (buf, fah.result->hello, want);
1260       GNUNET_CONTAINER_bloomfilter_add (fah.result->filter,
1261                                         &pl->pid.hashPubKey);
1262 #if DEBUG_TOPOLOGY
1263       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1264                   "Sending `%s' with %u bytes",
1265                   "HELLO",
1266                   (unsigned int) want);
1267 #endif  
1268       GNUNET_STATISTICS_update (stats,
1269                                 gettext_noop ("# HELLO messages gossipped"),
1270                                 1,
1271                                 GNUNET_NO);    
1272     }
1273   pl->next_hello_allowed = GNUNET_TIME_relative_to_absolute (HELLO_ADVERTISEMENT_MIN_FREQUENCY);
1274   pl->hello_delay_task 
1275     = GNUNET_SCHEDULER_add_now (&schedule_next_hello,
1276                                 pl);
1277   return want;
1278 }
1279
1280
1281 /**
1282  * Last task run during shutdown.  Disconnects us from
1283  * the transport and core.
1284  *
1285  * @param cls unused, NULL
1286  * @param tc scheduler context
1287  */
1288 static void
1289 cleaning_task (void *cls, 
1290                const struct GNUNET_SCHEDULER_TaskContext *tc)
1291 {
1292   if (NULL != peerinfo_notify)
1293     {
1294       GNUNET_PEERINFO_notify_cancel (peerinfo_notify);
1295       peerinfo_notify = NULL;
1296     }
1297   GNUNET_TRANSPORT_disconnect (transport);
1298   transport = NULL;
1299   GNUNET_CONTAINER_multihashmap_iterate (peers,
1300                                          &free_peer,
1301                                          NULL);
1302   GNUNET_CONTAINER_multihashmap_destroy (peers);
1303   if (handle != NULL)
1304     {
1305       GNUNET_CORE_disconnect (handle);
1306       handle = NULL;
1307     }
1308   whitelist_peers ();
1309   if (stats != NULL)
1310     {
1311       GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
1312       stats = NULL;
1313     }
1314 }
1315
1316
1317 /**
1318  * Main function that will be run.
1319  *
1320  * @param cls closure
1321  * @param args remaining command-line arguments
1322  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
1323  * @param c configuration
1324  */
1325 static void
1326 run (void *cls,
1327      char *const *args,
1328      const char *cfgfile,
1329      const struct GNUNET_CONFIGURATION_Handle * c)
1330 {
1331   struct GNUNET_CORE_MessageHandler handlers[] =
1332     {
1333       { &handle_encrypted_hello, GNUNET_MESSAGE_TYPE_HELLO, 0},
1334       { NULL, 0, 0 }
1335     };
1336   unsigned long long opt;
1337
1338   cfg = c;
1339   stats = GNUNET_STATISTICS_create ("topology", cfg);
1340   autoconnect = GNUNET_CONFIGURATION_get_value_yesno (cfg,
1341                                                       "TOPOLOGY",
1342                                                       "AUTOCONNECT");
1343   friends_only = GNUNET_CONFIGURATION_get_value_yesno (cfg,
1344                                                        "TOPOLOGY",
1345                                                        "FRIENDS-ONLY");
1346   if (GNUNET_OK !=
1347       GNUNET_CONFIGURATION_get_value_number (cfg,
1348                                              "TOPOLOGY",
1349                                              "MINIMUM-FRIENDS",
1350                                              &opt))
1351     opt = 0;
1352   minimum_friend_count = (unsigned int) opt;
1353   if (GNUNET_OK !=
1354       GNUNET_CONFIGURATION_get_value_number (cfg,
1355                                              "TOPOLOGY",
1356                                              "TARGET-CONNECTION-COUNT",
1357                                              &opt))
1358     opt = 16;
1359   target_connection_count = (unsigned int) opt;
1360   peers = GNUNET_CONTAINER_multihashmap_create (target_connection_count * 2);
1361
1362   if ( (friends_only == GNUNET_YES) ||
1363        (minimum_friend_count > 0) )
1364     read_friends_file (cfg);
1365 #if DEBUG_TOPOLOGY
1366   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1367               "Topology would like %u connections with at least %u friends (%s)\n",
1368               target_connection_count,
1369               minimum_friend_count,
1370               autoconnect ? "autoconnect enabled" : "autoconnect disabled");
1371 #endif       
1372   if (friend_count < minimum_friend_count) 
1373     blacklist = GNUNET_TRANSPORT_blacklist (cfg,
1374                                             &blacklist_check, NULL);
1375   transport = GNUNET_TRANSPORT_connect (cfg,
1376                                         NULL,
1377                                         NULL,
1378                                         NULL,
1379                                         NULL,
1380                                         NULL);
1381   handle = GNUNET_CORE_connect (cfg,
1382                                 1,
1383                                 NULL,
1384                                 &core_init,
1385                                 &connect_notify,
1386                                 &disconnect_notify, 
1387                                 NULL,
1388                                 NULL, GNUNET_NO,
1389                                 NULL, GNUNET_NO,
1390                                 handlers);
1391   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1392                                 &cleaning_task, NULL);
1393   if (NULL == transport)
1394     {
1395       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1396                   _("Failed to connect to `%s' service.\n"),
1397                   "transport");
1398       GNUNET_SCHEDULER_shutdown ();
1399       return;
1400     }
1401   if (NULL == handle)
1402     {
1403       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1404                   _("Failed to connect to `%s' service.\n"),
1405                   "core");
1406       GNUNET_SCHEDULER_shutdown ();
1407       return;
1408     }
1409 }
1410
1411
1412 /**
1413  * The main function for the topology daemon.
1414  *
1415  * @param argc number of arguments from the command line
1416  * @param argv command line arguments
1417  * @return 0 ok, 1 on error
1418  */
1419 int
1420 main (int argc, char *const *argv)
1421 {
1422   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
1423     GNUNET_GETOPT_OPTION_END
1424   };
1425   int ret;
1426
1427   ret = (GNUNET_OK ==
1428          GNUNET_PROGRAM_run (argc,
1429                              argv,
1430                              "topology",
1431                              _("GNUnet topology control (maintaining P2P mesh and F2F constraints)"),
1432                              options,
1433                              &run, NULL)) ? 0 : 1;
1434   return ret;
1435 }
1436
1437 /* end of gnunet-daemon-topology.c */