e0a47348eb7ca2e0f09d2191dfba67a9ced4dca1
[oweals/gnunet.git] / src / dv / gnunet-service-dv.c
1 /*
2      This file is part of GNUnet.
3      (C) 2013 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 dv/gnunet-service-dv.c
23  * @brief the distance vector service, primarily handles gossip of nearby
24  * peers and sending/receiving DV messages from core and decapsulating
25  * them
26  *
27  * @author Christian Grothoff
28  * @author Nathan Evans
29  *
30  * TODO:
31  * - distance updates are not properly communicate to US by core/transport/ats
32  */
33 #include "platform.h"
34 #include "gnunet_util_lib.h"
35 #include "gnunet_protocols.h"
36 #include "gnunet_core_service.h"
37 #include "gnunet_hello_lib.h"
38 #include "gnunet_peerinfo_service.h"
39 #include "gnunet_statistics_service.h"
40 #include "gnunet_consensus_service.h"
41 #include "dv.h"
42 #include <gcrypt.h>
43
44 /**
45  * How often do we establish the consensu?
46  */
47 #define GNUNET_DV_CONSENSUS_FREQUENCY GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 5)
48
49 /**
50  * Maximum number of messages we queue per peer.
51  */
52 #define MAX_QUEUE_SIZE 16
53
54 /**
55  * Maximum number of messages we queue towards the clients/plugin.
56  */
57 #define MAX_QUEUE_SIZE_PLUGIN 1024
58
59 /**
60  * The default fisheye depth, from how many hops away will
61  * we keep peers?
62  */
63 #define DEFAULT_FISHEYE_DEPTH 3
64
65 /**
66  * How many hops is a direct neighbor away?
67  */
68 #define DIRECT_NEIGHBOR_COST 1
69
70
71 GNUNET_NETWORK_STRUCT_BEGIN
72
73 /**
74  * Information about a peer DV can route to.  These entries are what
75  * we use as the binary format to establish consensus to create our
76  * routing table and as the address format in the HELLOs.
77  */
78 struct Target
79 {
80
81   /**
82    * Identity of the peer we can reach.
83    */
84   struct GNUNET_PeerIdentity peer;
85
86   /**
87    * How many hops (1-3) is this peer away? in network byte order
88    */
89   uint32_t distance GNUNET_PACKED;
90
91 };
92
93
94 /**
95  * Message exchanged between DV services (via core), requesting a
96  * message to be routed.  
97  */
98 struct RouteMessage
99 {
100   /**
101    * Type: GNUNET_MESSAGE_TYPE_DV_ROUTE
102    */
103   struct GNUNET_MessageHeader header;
104
105   /**
106    * Expected (remaining) distance.  Must be always smaller than
107    * DEFAULT_FISHEYE_DEPTH, should be zero at the target.  Must
108    * be decremented by one at each hop.  Peers must not forward
109    * these messages further once the counter has reached zero.
110    */
111   uint32_t distance GNUNET_PACKED;
112
113   /**
114    * The (actual) target of the message (this peer, if distance is zero).
115    */
116   struct GNUNET_PeerIdentity target;
117
118   /**
119    * The (actual) sender of the message.
120    */
121   struct GNUNET_PeerIdentity sender;
122
123 };
124
125 GNUNET_NETWORK_STRUCT_END
126
127
128 /**
129  * Linked list of messages to send to clients.
130  */
131 struct PendingMessage
132 {
133   /**
134    * Pointer to next item in the list
135    */
136   struct PendingMessage *next;
137
138   /**
139    * Pointer to previous item in the list
140    */
141   struct PendingMessage *prev;
142
143   /**
144    * Actual message to be sent, allocated after this struct.
145    */
146   const struct GNUNET_MessageHeader *msg;
147
148   /**
149    * Ultimate target for the message.
150    */
151   struct GNUNET_PeerIdentity ultimate_target;
152
153   /**
154    * Unique ID of the message.
155    */
156   uint32_t uid;
157
158 };
159
160
161 /**
162  * Information about a direct neighbor (core-level, excluding
163  * DV-links, only DV-enabled peers).
164  */
165 struct DirectNeighbor
166 {
167
168   /**
169    * Identity of the peer.
170    */
171   struct GNUNET_PeerIdentity peer;
172   
173   /**
174    * Head of linked list of messages to send to this peer.
175    */
176   struct PendingMessage *pm_head;
177
178   /**
179    * Tail of linked list of messages to send to this peer.
180    */
181   struct PendingMessage *pm_tail;
182
183   /**
184    * Transmit handle to core service.
185    */
186   struct GNUNET_CORE_TransmitHandle *cth;
187
188   /**
189    * Routing table of the neighbor, NULL if not yet established.
190    * Keys are peer identities, values are 'struct Target' entries.
191    * Note that the distances in the targets are from the point-of-view
192    * of the peer, not from us!
193    */ 
194   struct GNUNET_CONTAINER_MultiHashMap *neighbor_table;
195
196   /**
197    * Updated routing table of the neighbor, under construction,
198    * NULL if we are not currently building it.
199    * Keys are peer identities, values are 'struct Target' entries.
200    * Note that the distances in the targets are from the point-of-view
201    * of the peer, not from us!
202    */ 
203   struct GNUNET_CONTAINER_MultiHashMap *neighbor_table_consensus;
204
205   /**
206    * Active consensus, if we are currently synchronizing the
207    * routing tables.
208    */
209   struct GNUNET_CONSENSUS_Handle *consensus;
210
211   /**
212    * ID of the task we use to (periodically) update our consensus
213    * with this peer.
214    */
215   GNUNET_SCHEDULER_TaskIdentifier consensus_task;
216
217   /**
218    * At what offset are we, with respect to inserting our own routes
219    * into the consensus?
220    */
221   unsigned int consensus_insertion_offset;
222
223   /**
224    * At what distance are we, with respect to inserting our own routes
225    * into the consensus?
226    */
227   unsigned int consensus_insertion_distance;
228
229   /**
230    * Number of messages currently in the 'pm_XXXX'-DLL.
231    */
232   unsigned int pm_queue_size;
233
234   /**
235    * Flag set within 'check_target_removed' to trigger full global route refresh.
236    */
237   int target_removed;
238
239 };
240
241
242 /**
243  * A route includes information about the next hop,
244  * the target, and the ultimate distance to the
245  * target.
246  */
247 struct Route
248 {
249
250   /**
251    * Which peer do we need to forward the message to?
252    */
253   struct DirectNeighbor *next_hop;
254
255   /**
256    * What would be the target, and how far is it away?
257    */
258   struct Target target;
259
260   /**
261    * Offset of this target in the respective consensus set.
262    */
263   unsigned int set_offset;
264
265 };
266
267
268 /**
269  * Set of targets we bring to a consensus; all targets in a set have a
270  * distance equal to the sets distance (which is implied by the array
271  * index of the set).
272  */
273 struct ConsensusSet
274 {
275
276   /**
277    * Array of targets in the set, may include NULL entries if a
278    * neighbor has disconnected; the targets are allocated with the
279    * respective container (all_routes), not here.
280    */
281   struct Route **targets;
282
283   /**
284    * Size of the 'targets' array.
285    */
286   unsigned int array_length;
287
288 };
289
290
291 /**
292  * Hashmap of all of our direct neighbors (no DV routing).
293  */
294 static struct GNUNET_CONTAINER_MultiHashMap *direct_neighbors;
295
296 /**
297  * Hashmap with all routes that we currently support; contains 
298  * routing information for all peers from distance 2
299  * up to distance DEFAULT_FISHEYE_DEPTH.
300  */
301 static struct GNUNET_CONTAINER_MultiHashMap *all_routes;
302
303 /**
304  * Array of consensus sets we expose to the outside world.  Sets
305  * are structured by the distance to the target.
306  */
307 static struct ConsensusSet consensi[DEFAULT_FISHEYE_DEPTH - 1];
308
309 /**
310  * Handle to the core service api.
311  */
312 static struct GNUNET_CORE_Handle *core_api;
313
314 /**
315  * The identity of our peer.
316  */
317 static struct GNUNET_PeerIdentity my_identity;
318
319 /**
320  * The configuration for this service.
321  */
322 static const struct GNUNET_CONFIGURATION_Handle *cfg;
323
324 /**
325  * The client, the DV plugin connected to us (or an event monitor).
326  * Hopefully this client will never change, although if the plugin
327  * dies and returns for some reason it may happen.
328  */
329 static struct GNUNET_SERVER_NotificationContext *nc;
330
331 /**
332  * Handle for the statistics service.
333  */
334 struct GNUNET_STATISTICS_Handle *stats;
335
336
337 /**
338  * Get distance information from 'atsi'.
339  *
340  * @param atsi performance data
341  * @param atsi_count number of entries in atsi
342  * @return connected transport distance
343  */
344 static uint32_t
345 get_atsi_distance (const struct GNUNET_ATS_Information *atsi,
346                    unsigned int atsi_count)
347 {
348   unsigned int i;
349
350   for (i = 0; i < atsi_count; i++)
351     if (ntohl (atsi[i].type) == GNUNET_ATS_QUALITY_NET_DISTANCE)
352       return ntohl (atsi->value);
353   /* FIXME: we do not have distance data? Assume direct neighbor. */
354   return DIRECT_NEIGHBOR_COST;
355 }
356
357
358 /**
359  * Forward a message from another peer to the plugin.
360  *
361  * @param message the message to send to the plugin
362  * @param origin the original sender of the message
363  * @param distnace distance to the original sender of the message
364  */
365 static void
366 send_data_to_plugin (const struct GNUNET_MessageHeader *message, 
367                      const struct GNUNET_PeerIdentity *origin,
368                      uint32_t distance)
369 {
370   struct GNUNET_DV_ReceivedMessage *received_msg;
371   size_t size;
372
373   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
374               "Delivering message from peer `%s'\n",
375               GNUNET_i2s (origin));
376   size = sizeof (struct GNUNET_DV_ReceivedMessage) + 
377     ntohs (message->size);
378   if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
379   {    
380     GNUNET_break (0); /* too big */
381     return;
382   }
383   received_msg = GNUNET_malloc (size);
384   received_msg->header.size = htons (size);
385   received_msg->header.type = htons (GNUNET_MESSAGE_TYPE_DV_RECV);
386   received_msg->distance = htonl (distance);
387   received_msg->sender = *origin;
388   memcpy (&received_msg[1], message, ntohs (message->size));
389   GNUNET_SERVER_notification_context_broadcast (nc, 
390                                                 &received_msg->header,
391                                                 GNUNET_YES);
392   GNUNET_free (received_msg);
393 }
394
395
396 /**
397  * Forward a control message to the plugin.
398  *
399  * @param message the message to send to the plugin
400  * @param distant_neighbor the original sender of the message
401  * @param distnace distance to the original sender of the message
402  */
403 static void
404 send_control_to_plugin (const struct GNUNET_MessageHeader *message)
405 {
406   GNUNET_SERVER_notification_context_broadcast (nc, 
407                                                 message,
408                                                 GNUNET_NO);
409 }
410
411
412 /**
413  * Give an (N)ACK message to the plugin, we transmitted a message for it.
414  *
415  * @param target peer that received the message
416  * @param uid plugin-chosen UID for the message
417  * @param nack GNUNET_NO to send ACK, GNUNET_YES to send NACK
418  */
419 static void
420 send_ack_to_plugin (const struct GNUNET_PeerIdentity *target, 
421                     uint32_t uid,
422                     int nack)
423 {
424   struct GNUNET_DV_AckMessage ack_msg;
425
426   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
427               "Delivering ACK for message to peer `%s'\n",
428               GNUNET_i2s (target));
429   ack_msg.header.size = htons (sizeof (ack_msg));
430   ack_msg.header.type = htons ((GNUNET_YES == nack) 
431                                ? GNUNET_MESSAGE_TYPE_DV_SEND_NACK
432                                : GNUNET_MESSAGE_TYPE_DV_SEND_ACK);
433   ack_msg.uid = htonl (uid);
434   ack_msg.target = *target;
435   send_control_to_plugin (&ack_msg.header);
436 }
437
438
439 /**
440  * Send a DISTANCE_CHANGED message to the plugin.
441  *
442  * @param peer peer with a changed distance
443  * @param distance new distance to the peer
444  */
445 static void
446 send_distance_change_to_plugin (const struct GNUNET_PeerIdentity *peer, 
447                                 uint32_t distance)
448 {
449   struct GNUNET_DV_DistanceUpdateMessage du_msg;
450
451   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
452               "Delivering DISTANCE_CHANGED for message about peer `%s'\n",
453               GNUNET_i2s (peer));
454   du_msg.header.size = htons (sizeof (du_msg));
455   du_msg.header.type = htons (GNUNET_MESSAGE_TYPE_DV_DISTANCE_CHANGED);
456   du_msg.distance = htonl (distance);
457   du_msg.peer = *peer;
458   send_control_to_plugin (&du_msg.header);
459 }
460
461
462 /**
463  * Give a CONNECT message to the plugin.
464  *
465  * @param target peer that connected
466  * @param distance distance to the target
467  */
468 static void
469 send_connect_to_plugin (const struct GNUNET_PeerIdentity *target, 
470                         uint32_t distance)
471 {
472   struct GNUNET_DV_ConnectMessage cm;
473
474   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
475               "Delivering CONNECT about peer `%s'\n",
476               GNUNET_i2s (target));
477   cm.header.size = htons (sizeof (cm));
478   cm.header.type = htons (GNUNET_MESSAGE_TYPE_DV_CONNECT);
479   cm.distance = htonl (distance);
480   cm.peer = *target;
481   send_control_to_plugin (&cm.header);
482 }
483
484
485 /**
486  * Give a DISCONNECT message to the plugin.
487  *
488  * @param target peer that disconnected
489  */
490 static void
491 send_disconnect_to_plugin (const struct GNUNET_PeerIdentity *target)
492 {
493   struct GNUNET_DV_DisconnectMessage dm;
494
495   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
496               "Delivering DISCONNECT about peer `%s'\n",
497               GNUNET_i2s (target));
498   dm.header.size = htons (sizeof (dm));
499   dm.header.type = htons (GNUNET_MESSAGE_TYPE_DV_DISCONNECT);
500   dm.reserved = htonl (0);
501   dm.peer = *target;
502   send_control_to_plugin (&dm.header);
503 }
504
505
506 /**
507  * Function called to transfer a message to another peer
508  * via core.
509  *
510  * @param cls closure with the direct neighbor
511  * @param size number of bytes available in buf
512  * @param buf where the callee should write the message
513  * @return number of bytes written to buf
514  */
515 static size_t
516 core_transmit_notify (void *cls, size_t size, void *buf)
517 {
518   struct DirectNeighbor *dn = cls;
519   char *cbuf = buf;
520   struct PendingMessage *pending;
521   size_t off;
522   size_t msize;
523
524   dn->cth = NULL;
525   if (NULL == buf)
526   {
527     /* peer disconnected */
528     return 0;
529   }
530   off = 0;
531   pending = dn->pm_head;
532   off = 0;
533   while ( (NULL != (pending = dn->pm_head)) &&
534           (size >= off + (msize = ntohs (pending->msg->size))))
535   {
536     dn->pm_queue_size--;
537     GNUNET_CONTAINER_DLL_remove (dn->pm_head,
538                                  dn->pm_tail,
539                                  pending);
540     memcpy (&cbuf[off], pending->msg, msize);
541     if (0 != pending->uid) 
542       send_ack_to_plugin (&pending->ultimate_target,
543                           pending->uid,
544                           GNUNET_NO);
545     GNUNET_free (pending);
546     off += msize;
547   }
548   if (NULL != dn->pm_head)
549     dn->cth =
550       GNUNET_CORE_notify_transmit_ready (core_api,
551                                          GNUNET_YES /* cork */,
552                                          0 /* priority */,
553                                          GNUNET_TIME_UNIT_FOREVER_REL,
554                                          &dn->peer,
555                                          msize,                                  
556                                          &core_transmit_notify, dn);
557   return off;
558 }
559
560
561 /**
562  * Forward the given payload to the given target.
563  *
564  * @param target where to send the message
565  * @param uid unique ID for the message
566  * @param ultimate_target ultimate recipient for the message
567  * @param distance expected (remaining) distance to the target
568  * @param sender original sender of the message
569  * @param payload payload of the message
570  */
571 static void
572 forward_payload (struct DirectNeighbor *target,
573                  uint32_t distance,
574                  uint32_t uid,
575                  const struct GNUNET_PeerIdentity *sender,
576                  const struct GNUNET_PeerIdentity *ultimate_target,
577                  const struct GNUNET_MessageHeader *payload)
578 {
579   struct PendingMessage *pm;
580   struct RouteMessage *rm;
581   size_t msize;
582
583   if ( (target->pm_queue_size >= MAX_QUEUE_SIZE) &&
584        (0 != memcmp (sender,
585                      &my_identity,
586                      sizeof (struct GNUNET_PeerIdentity))) )
587   {
588     GNUNET_break (0 == uid);
589     return;
590   }
591   msize = sizeof (struct RouteMessage) + ntohs (payload->size);
592   if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
593   {
594     GNUNET_break (0);
595     return;
596   }
597   pm = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
598   pm->ultimate_target = *ultimate_target;
599   pm->uid = uid;
600   pm->msg = (const struct GNUNET_MessageHeader *) &pm[1];
601   rm = (struct RouteMessage *) &pm[1];
602   rm->header.size = htons ((uint16_t) msize);
603   rm->header.type = htons (GNUNET_MESSAGE_TYPE_DV_ROUTE);
604   rm->distance = htonl (distance);
605   rm->target = target->peer;
606   rm->sender = *sender;
607   memcpy (&rm[1], payload, ntohs (payload->size));
608   GNUNET_CONTAINER_DLL_insert_tail (target->pm_head,
609                                     target->pm_tail,
610                                     pm);
611   target->pm_queue_size++;
612   if (NULL == target->cth)
613     target->cth = GNUNET_CORE_notify_transmit_ready (core_api,
614                                                      GNUNET_YES /* cork */,
615                                                      0 /* priority */,
616                                                      GNUNET_TIME_UNIT_FOREVER_REL,
617                                                      &target->peer,
618                                                      msize,                                      
619                                                      &core_transmit_notify, target);
620 }
621
622
623 /**
624  * Find a free slot for storing a 'route' in the 'consensi'
625  * set at the given distance.
626  *
627  * @param distance distance to use for the set slot
628  */
629 static unsigned int
630 get_consensus_slot (uint32_t distance)
631 {
632   struct ConsensusSet *cs;
633   unsigned int i;
634
635   cs = &consensi[distance];
636   i = 0;
637   while ( (i < cs->array_length) &&
638           (NULL != cs->targets[i]) ) i++;
639   if (i == cs->array_length)
640     GNUNET_array_grow (cs->targets,
641                        cs->array_length,
642                        cs->array_length * 2 + 2);
643   return i;
644 }
645
646
647 /**
648  * Allocate a slot in the consensus set for a route.
649  *
650  * @param route route to initialize
651  * @param distance which consensus set to use
652  */
653 static void
654 allocate_route (struct Route *route,
655                 uint32_t distance)
656 {
657   unsigned int i;
658
659   i = get_consensus_slot (distance);
660   route->set_offset = i;
661   consensi[distance].targets[i] = route;
662   route->target.distance = htonl (distance);
663 }
664
665
666 /**
667  * Release a slot in the consensus set for a route.
668  *
669  * @param route route to release the slot from
670  */
671 static void
672 release_route (struct Route *route)
673 {
674   consensi[ntohl (route->target.distance)].targets[route->set_offset] = NULL;
675   route->set_offset = UINT_MAX; /* indicate invalid slot */
676 }
677
678
679 /**
680  * Move a route from one consensus set to another.
681  *
682  * @param route route to move
683  * @param new_distance new distance for the route (destination set)
684  */
685 static void
686 move_route (struct Route *route,
687             uint32_t new_distance)
688 {
689   unsigned int i;
690
691   release_route (route);
692   i = get_consensus_slot (new_distance);
693   route->set_offset = i;
694   consensi[new_distance].targets[i] = route;     
695   route->target.distance = htonl (new_distance);
696 }
697
698
699 /**
700  * Start creating a new consensus from scratch.
701  *
702  * @param cls the 'struct DirectNeighbor' of the peer we're building
703  *        a routing consensus with
704  * @param tc scheduler context
705  */    
706 static void
707 start_consensus (void *cls,
708                  const struct GNUNET_SCHEDULER_TaskContext *tc);
709
710
711 /**
712  * Method called whenever a peer connects.
713  *
714  * @param cls closure
715  * @param peer peer identity this notification is about
716  * @param atsi performance data
717  * @param atsi_count number of entries in atsi
718  */
719 static void
720 handle_core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
721                      const struct GNUNET_ATS_Information *atsi,
722                      unsigned int atsi_count)
723 {
724   struct DirectNeighbor *neighbor;
725   struct Route *route;
726   uint32_t distance;
727  
728   /* Check for connect to self message */
729   if (0 == memcmp (&my_identity, peer, sizeof (struct GNUNET_PeerIdentity)))
730     return;
731   distance = get_atsi_distance (atsi, atsi_count);
732   neighbor = GNUNET_CONTAINER_multihashmap_get (direct_neighbors, 
733                                                 &peer->hashPubKey);
734   if (NULL != neighbor)
735   {
736     GNUNET_break (0);
737     return;
738   }
739   if (DIRECT_NEIGHBOR_COST != distance) 
740     return; /* is a DV-neighbor */
741   GNUNET_STATISTICS_update (stats,
742                             "# peers connected (1-hop)",
743                             1, GNUNET_NO);
744   neighbor = GNUNET_malloc (sizeof (struct DirectNeighbor));
745   neighbor->peer = *peer;
746   GNUNET_assert (GNUNET_YES ==
747                  GNUNET_CONTAINER_multihashmap_put (direct_neighbors,
748                                                     &peer->hashPubKey,
749                                                     neighbor,
750                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
751   route = GNUNET_CONTAINER_multihashmap_get (all_routes, 
752                                              &peer->hashPubKey);
753   if (NULL != route)  
754   {
755     send_disconnect_to_plugin (peer);
756     release_route (route);
757     GNUNET_free (route);
758   }
759   route->next_hop = neighbor;
760   neighbor->consensus_task = GNUNET_SCHEDULER_add_now (&start_consensus,
761                                                        neighbor);
762 }
763
764
765 /**
766  * Called for each 'target' in a neighbor table to free the associated memory.
767  *
768  * @param cls NULL
769  * @param key key of the value
770  * @param value value to free
771  * @return GNUNET_OK to continue to iterate
772  */
773 static int
774 free_targets (void *cls,
775               const struct GNUNET_HashCode *key,
776               void *value)
777 {
778   GNUNET_free (value);
779   return GNUNET_OK;
780 }
781
782
783 /**
784  * Multihashmap iterator for checking if a given route is
785  * (now) useful to this peer.
786  *
787  * @param cls the direct neighbor for the given route
788  * @param key key value stored under
789  * @param value a 'struct Target' that may or may not be useful; not that
790  *        the distance in 'target' does not include the first hop yet
791  * @return GNUNET_YES to continue iteration, GNUNET_NO to stop
792  */
793 static int
794 check_possible_route (void *cls, const struct GNUNET_HashCode * key, void *value)
795 {
796   struct DirectNeighbor *neighbor = cls;
797   struct Target *target = value;
798   struct Route *route;
799   
800   route = GNUNET_CONTAINER_multihashmap_get (all_routes,
801                                            key);
802   if (NULL != route)
803   {
804     if (ntohl (route->target.distance) > ntohl (target->distance) + 1)
805     {
806       /* this 'target' is cheaper than the existing route; switch to alternative route! */
807       move_route (route, ntohl (target->distance) + 1);
808       route->next_hop = neighbor;
809       send_distance_change_to_plugin (&target->peer, ntohl (target->distance) + 1);
810     }
811     return GNUNET_YES; /* got a route to this target already */
812   }
813   route = GNUNET_malloc (sizeof (struct Route));
814   route->next_hop = neighbor;
815   route->target.distance = htonl (ntohl (target->distance) + 1);
816   route->target.peer = target->peer;
817   allocate_route (route, ntohl (route->target.distance));
818   GNUNET_assert (GNUNET_YES ==
819                  GNUNET_CONTAINER_multihashmap_put (all_routes,
820                                                     &route->target.peer.hashPubKey,
821                                                     route,
822                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
823   send_connect_to_plugin (&route->target.peer, ntohl (target->distance));
824   return GNUNET_YES;
825 }
826
827
828 /**
829  * Multihashmap iterator for finding routes that were previously
830  * "hidden" due to a better route (called after a disconnect event).
831  *
832  * @param cls NULL
833  * @param key peer identity of the given direct neighbor
834  * @param value a 'struct DirectNeighbor' to check for additional routes
835  * @return GNUNET_YES to continue iteration
836  */
837 static int
838 refresh_routes (void *cls, const struct GNUNET_HashCode * key, void *value)
839 {
840   struct DirectNeighbor *neighbor = value;
841
842   if (NULL != neighbor->neighbor_table)
843     GNUNET_CONTAINER_multihashmap_iterate (neighbor->neighbor_table,
844                                            &check_possible_route,
845                                            neighbor);
846   return GNUNET_YES;
847 }
848
849
850 /**
851  * Check if a target was removed from the set of the other peer; if so,
852  * if we also used it for our route, we need to remove it from our
853  * 'all_routes' set (and later check if an alternative path now exists).
854  *
855  * @param cls the 'struct DirectNeighbor'
856  * @param key peer identity for the target
857  * @param value a 'struct Target' previously reachable via the given neighbor
858  */
859 static int
860 check_target_removed (void *cls,
861                       const struct GNUNET_HashCode *key,
862                       void *value)
863 {
864   struct DirectNeighbor *neighbor = cls;
865   struct Target *new_target;
866   struct Route *current_route;
867
868   new_target = GNUNET_CONTAINER_multihashmap_get (neighbor->neighbor_table_consensus,
869                                                   key);
870   if (NULL == new_target)
871   {
872     /* target was revoked, check if it was used */
873     current_route = GNUNET_CONTAINER_multihashmap_get (all_routes,
874                                                        key);
875     if ( (NULL == current_route) ||
876          (current_route->next_hop != neighbor) )
877     {
878       /* didn't matter, wasn't used */
879       return GNUNET_OK;
880     }
881     /* remove existing route */
882     GNUNET_assert (GNUNET_YES ==
883                    GNUNET_CONTAINER_multihashmap_remove (all_routes, key, current_route));
884     send_disconnect_to_plugin (&current_route->target.peer);
885     GNUNET_free (current_route);
886     neighbor->target_removed = GNUNET_YES;
887     return GNUNET_OK;
888   }
889   return GNUNET_OK;
890 }
891
892
893 /**
894  * Check if a target was added to the set of the other peer; if it
895  * was added or impoves the existing route, do the needed updates.
896  *
897  * @param cls the 'struct DirectNeighbor'
898  * @param key peer identity for the target
899  * @param value a 'struct Target' now reachable via the given neighbor
900  */
901 static int
902 check_target_added (void *cls,
903                       const struct GNUNET_HashCode *key,
904                       void *value)
905 {
906   struct DirectNeighbor *neighbor = cls;
907   struct Target *target = value;
908   struct Route *current_route;
909
910   /* target was revoked, check if it was used */
911   current_route = GNUNET_CONTAINER_multihashmap_get (all_routes,
912                                                      key);
913   if (NULL != current_route)
914   {
915     /* route exists */
916     if (current_route->next_hop == neighbor)
917     {
918       /* we had the same route before, no change */
919       if (ntohl (target->distance) + 1 != ntohl (current_route->target.distance))
920       {
921         current_route->target.distance = htonl (ntohl (target->distance) + 1);
922         send_distance_change_to_plugin (&target->peer, ntohl (target->distance) + 1);
923       }
924       return GNUNET_OK;
925     }
926     if (ntohl (current_route->target.distance) >= ntohl (target->distance) + 1)
927     {
928       /* alternative, shorter route exists, ignore */
929       return GNUNET_OK;
930     }
931     /* new route is better than the existing one, take over! */
932     /* NOTE: minor security issue: malicious peers may advertise
933        very short routes to take over longer paths; as we don't
934        check that the shorter routes actually work, a malicious
935        direct neighbor can use this to DoS our long routes */
936     current_route->next_hop = neighbor;
937     current_route->target.distance = htonl (ntohl (target->distance) + 1);
938     send_distance_change_to_plugin (&target->peer, ntohl (target->distance) + 1);
939     return GNUNET_OK;
940   }
941   /* new route */
942   current_route = GNUNET_malloc (sizeof (struct Route));
943   current_route->next_hop = neighbor;
944   current_route->target.peer = target->peer;
945   current_route->target.distance = htonl (ntohl (target->distance) + 1);
946   GNUNET_assert (GNUNET_YES ==
947                  GNUNET_CONTAINER_multihashmap_put (all_routes,
948                                                     &current_route->target.peer.hashPubKey,
949                                                     current_route,
950                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
951   send_connect_to_plugin (&current_route->target.peer,
952                           ntohl (current_route->target.distance));
953   return GNUNET_OK;
954 }
955
956
957
958 /**
959  * The consensus has concluded, clean up and schedule the next one.
960  *
961  * @param cls the 'struct GNUNET_DirectNeighbor' with which we created the consensus
962  * @param group FIXME
963  */
964 static void
965 consensus_done_cb (void *cls,
966                    const struct GNUNET_CONSENSUS_Group *group)
967 {
968   struct DirectNeighbor *neighbor = cls;
969
970   GNUNET_CONSENSUS_destroy (neighbor->consensus);
971   neighbor->consensus = NULL;
972   /* remove targets that disappeared */
973   neighbor->target_removed = GNUNET_NO;
974   GNUNET_CONTAINER_multihashmap_iterate (neighbor->neighbor_table,
975                                          &check_target_removed,
976                                          neighbor);
977   if (GNUNET_YES == neighbor->target_removed)
978   {
979     /* check if we got an alternative for the removed routes */
980     GNUNET_CONTAINER_multihashmap_iterate (direct_neighbors,
981                                            &refresh_routes,
982                                            NULL);    
983   }
984   /* add targets that appeared (and check for improved routes) */
985   GNUNET_CONTAINER_multihashmap_iterate (neighbor->neighbor_table_consensus,
986                                          &check_target_added,
987                                          neighbor);
988   if (NULL != neighbor->neighbor_table)
989   {
990     GNUNET_CONTAINER_multihashmap_iterate (neighbor->neighbor_table,
991                                            &free_targets,
992                                            NULL);
993     GNUNET_CONTAINER_multihashmap_destroy (neighbor->neighbor_table);
994     neighbor->neighbor_table = NULL;
995   }
996   neighbor->neighbor_table = neighbor->neighbor_table_consensus;
997   neighbor->neighbor_table_consensus = NULL;
998   neighbor->consensus_task = GNUNET_SCHEDULER_add_delayed (GNUNET_DV_CONSENSUS_FREQUENCY,
999                                                            &start_consensus,
1000                                                            neighbor);
1001 }
1002
1003
1004 /**
1005  * We inserted the last element into the consensus, get ready to
1006  * insert the next element into the consensus or conclude if
1007  * we're done.
1008  *
1009  * @param cls the 'struct DirectNeighbor' of the peer we're building
1010  *        a routing consensus with
1011  * @param success GNUNET_OK if the last element was added successfully,
1012  *                GNUNET_SYSERR if we failed
1013  */
1014 static void
1015 insert_next_element (void *cls,
1016                      int success)
1017 {
1018   struct DirectNeighbor *neighbor = cls;
1019   struct GNUNET_CONSENSUS_Element element;
1020
1021   while ( (DEFAULT_FISHEYE_DEPTH - 1 > neighbor->consensus_insertion_distance) &&
1022           (consensi[neighbor->consensus_insertion_distance].array_length == neighbor->consensus_insertion_offset) )
1023   {
1024     neighbor->consensus_insertion_offset = 0;
1025     neighbor->consensus_insertion_distance++;
1026     /* skip over NULL entries */
1027     while ( (DEFAULT_FISHEYE_DEPTH - 1 > neighbor->consensus_insertion_distance) &&
1028             (consensi[neighbor->consensus_insertion_distance].array_length < neighbor->consensus_insertion_offset) &&
1029             (NULL == consensi[neighbor->consensus_insertion_distance].targets[neighbor->consensus_insertion_offset]) )
1030       neighbor->consensus_insertion_offset++;
1031   }
1032   if (DEFAULT_FISHEYE_DEPTH - 1 == neighbor->consensus_insertion_distance)
1033   {
1034     /* we're done, conclude! */
1035     GNUNET_CONSENSUS_conclude (neighbor->consensus,
1036                                GNUNET_DV_CONSENSUS_FREQUENCY,
1037                                2 /* both peers */,
1038                                &consensus_done_cb,
1039                                neighbor);
1040     return;
1041   }
1042   element.size = sizeof (struct Target);
1043   element.data = &consensi[neighbor->consensus_insertion_distance].targets[neighbor->consensus_insertion_offset++]->target;
1044
1045   /* skip over NULL entries */
1046   while ( (DEFAULT_FISHEYE_DEPTH - 1 > neighbor->consensus_insertion_distance) &&
1047           (consensi[neighbor->consensus_insertion_distance].array_length < neighbor->consensus_insertion_offset) &&
1048           (NULL == consensi[neighbor->consensus_insertion_distance].targets[neighbor->consensus_insertion_offset]) )
1049     neighbor->consensus_insertion_offset++;  
1050   GNUNET_CONSENSUS_insert (neighbor->consensus,
1051                            &element,
1052                            &insert_next_element,
1053                            neighbor);
1054 }
1055
1056
1057 /**
1058  * We have learned a new route from the other peer.  Add it to the
1059  * route set we're building.
1060  *
1061  * @param cls the 'struct DirectNeighbor' we're building the consensus with
1062  * @param element the new element we have learned
1063  * @return GNUNET_OK if the valid is well-formed and should be added to the consensus,
1064  *         GNUNET_SYSERR if the element should be ignored and not be propagated
1065  */
1066 static int
1067 learn_route_cb (void *cls,
1068                 const struct GNUNET_CONSENSUS_Element *element)
1069 {
1070   struct DirectNeighbor *neighbor = cls;
1071   struct Target *target;
1072
1073   if (sizeof (struct Target) != element->size)
1074   {
1075     GNUNET_break_op (0);
1076     return GNUNET_SYSERR;
1077   }
1078   target = GNUNET_malloc (sizeof (struct Target));
1079   memcpy (target, element->data, sizeof (struct Target));
1080   if (GNUNET_YES !=
1081       GNUNET_CONTAINER_multihashmap_put (neighbor->neighbor_table_consensus,
1082                                          &target->peer.hashPubKey,
1083                                          target,
1084                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1085   {
1086     GNUNET_break_op (0);
1087     GNUNET_free (target);
1088     return GNUNET_SYSERR;
1089   }
1090   return GNUNET_OK;
1091 }
1092
1093
1094 /**
1095  * Start creating a new consensus from scratch.
1096  *
1097  * @param cls the 'struct DirectNeighbor' of the peer we're building
1098  *        a routing consensus with
1099  * @param tc scheduler context
1100  */    
1101 static void
1102 start_consensus (void *cls,
1103                  const struct GNUNET_SCHEDULER_TaskContext *tc)
1104 {
1105   struct DirectNeighbor *neighbor = cls;
1106   struct GNUNET_HashCode session_id;
1107   struct GNUNET_HashCode real_session_id;
1108
1109   neighbor->consensus_task = GNUNET_SCHEDULER_NO_TASK;
1110   neighbor->consensus_insertion_offset = 0;
1111   neighbor->consensus_insertion_distance = 0;
1112   GNUNET_assert (NULL == neighbor->neighbor_table_consensus);
1113   GNUNET_assert (NULL == neighbor->consensus);
1114   neighbor->neighbor_table_consensus = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_YES);
1115   /* construct session ID seed as XOR of both peer's identities */
1116   GNUNET_CRYPTO_hash_xor (&my_identity.hashPubKey, 
1117                           &neighbor->peer.hashPubKey, 
1118                           &session_id);
1119   /* make sure session ID is unique across applications by salting it with 'DV' */
1120   GNUNET_CRYPTO_hkdf (&real_session_id, sizeof (real_session_id),
1121                       GCRY_MD_SHA512, GCRY_MD_SHA256,
1122                       "DV-SALT", 2,
1123                       &session_id, sizeof (session_id),
1124                       NULL, 0);
1125   neighbor->consensus = GNUNET_CONSENSUS_create (cfg,
1126                                                  1,
1127                                                  &neighbor->peer,
1128                                                  &real_session_id,
1129                                                  &learn_route_cb,
1130                                                  neighbor);
1131   if (NULL == neighbor->consensus)
1132   {
1133     neighbor->consensus_task = GNUNET_SCHEDULER_add_delayed (GNUNET_DV_CONSENSUS_FREQUENCY,
1134                                                              &start_consensus,
1135                                                              neighbor);
1136     return;
1137   }
1138   insert_next_element (neighbor, GNUNET_OK);
1139 }
1140
1141
1142 /**
1143  * Core handler for DV data messages.  Whatever this message
1144  * contains all we really have to do is rip it out of its
1145  * DV layering and give it to our pal the DV plugin to report
1146  * in with.
1147  *
1148  * @param cls closure
1149  * @param peer peer which sent the message (immediate sender)
1150  * @param message the message
1151  * @param atsi transport ATS information (latency, distance, etc.)
1152  * @param atsi_count number of entries in atsi
1153  * @return GNUNET_OK on success, GNUNET_SYSERR if the other peer violated the protocol
1154  */
1155 static int
1156 handle_dv_route_message (void *cls, const struct GNUNET_PeerIdentity *peer,
1157                          const struct GNUNET_MessageHeader *message,
1158                          const struct GNUNET_ATS_Information *atsi,
1159                          unsigned int atsi_count)
1160 {
1161   const struct RouteMessage *rm;
1162   const struct GNUNET_MessageHeader *payload;
1163   struct Route *route;
1164
1165   if (ntohs (message->size) < sizeof (struct RouteMessage) + sizeof (struct GNUNET_MessageHeader))
1166   {
1167     GNUNET_break_op (0);
1168     return GNUNET_SYSERR;
1169   }
1170   rm = (const struct RouteMessage *) message;
1171   payload = (const struct GNUNET_MessageHeader *) &rm[1];
1172   if (ntohs (message->size) != sizeof (struct RouteMessage) + ntohs (payload->size))
1173   {
1174     GNUNET_break_op (0);
1175     return GNUNET_SYSERR;
1176   }
1177   if (0 == memcmp (&rm->target,
1178                    &my_identity,
1179                    sizeof (struct GNUNET_PeerIdentity)))
1180   {
1181     /* message is for me, check reverse route! */
1182     route = GNUNET_CONTAINER_multihashmap_get (all_routes,
1183                                                &rm->sender.hashPubKey);
1184     if (NULL == route)
1185     {
1186       /* don't have reverse route, drop */
1187       GNUNET_STATISTICS_update (stats,
1188                                 "# message discarded (no reverse route)",
1189                                 1, GNUNET_NO);
1190       return GNUNET_OK;
1191     }
1192     send_data_to_plugin (payload,
1193                          &rm->sender,
1194                          ntohl (route->target.distance));
1195     return GNUNET_OK;
1196   }
1197   route = GNUNET_CONTAINER_multihashmap_get (all_routes,
1198                                              &rm->target.hashPubKey);
1199   if (NULL == route)
1200   {
1201     GNUNET_STATISTICS_update (stats,
1202                               "# messages discarded (no route)",
1203                               1, GNUNET_NO);
1204     return GNUNET_OK;
1205   }
1206   if (ntohl (route->target.distance) > ntohl (rm->distance) + 1)
1207   {
1208     GNUNET_STATISTICS_update (stats,
1209                               "# messages discarded (target too far)",
1210                               1, GNUNET_NO);
1211     return GNUNET_OK;
1212   }
1213   forward_payload (route->next_hop,
1214                    ntohl (route->target.distance),
1215                    0,
1216                    &rm->target,
1217                    &rm->sender,
1218                    payload);
1219   return GNUNET_OK;  
1220 }
1221
1222
1223 /**
1224  * Service server's handler for message send requests (which come
1225  * bubbling up to us through the DV plugin).
1226  *
1227  * @param cls closure
1228  * @param client identification of the client
1229  * @param message the actual message
1230  */
1231 static void
1232 handle_dv_send_message (void *cls, struct GNUNET_SERVER_Client *client,
1233                         const struct GNUNET_MessageHeader *message)
1234 {
1235   struct Route *route;
1236   const struct GNUNET_DV_SendMessage *msg;
1237   const struct GNUNET_MessageHeader *payload;
1238
1239   if (ntohs (message->size) < sizeof (struct GNUNET_DV_SendMessage) + sizeof (struct GNUNET_MessageHeader))
1240   {
1241     GNUNET_break (0);
1242     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1243     return;
1244   }
1245   msg = (const struct GNUNET_DV_SendMessage *) message;
1246   GNUNET_break (0 != ntohl (msg->uid));
1247   payload = (const struct GNUNET_MessageHeader *) &msg[1];
1248   if (ntohs (message->size) != sizeof (struct GNUNET_DV_SendMessage) + ntohs (payload->size))
1249   {
1250     GNUNET_break (0);
1251     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1252     return;
1253   }
1254   route = GNUNET_CONTAINER_multihashmap_get (all_routes,
1255                                              &msg->target.hashPubKey);
1256   if (NULL == route)
1257   {
1258     /* got disconnected */
1259     GNUNET_STATISTICS_update (stats,
1260                               "# local messages discarded (no route)",
1261                               1, GNUNET_NO);
1262     send_ack_to_plugin (&msg->target, ntohl (msg->uid), GNUNET_YES);
1263     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1264     return;
1265   }
1266   forward_payload (route->next_hop,
1267                    ntohl (route->target.distance),
1268                    htonl (msg->uid),
1269                    &msg->target,
1270                    &my_identity,
1271                    payload);
1272   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1273 }
1274
1275
1276 /**
1277  * Multihashmap iterator for freeing routes that go via a particular
1278  * neighbor that disconnected and is thus no longer available.
1279  *
1280  * @param cls the direct neighbor that is now unavailable
1281  * @param key key value stored under
1282  * @param value a 'struct Route' that may or may not go via neighbor
1283  *
1284  * @return GNUNET_YES to continue iteration, GNUNET_NO to stop
1285  */
1286 static int
1287 cull_routes (void *cls, const struct GNUNET_HashCode * key, void *value)
1288 {
1289   struct DirectNeighbor *neighbor = cls;
1290   struct Route *route = value;
1291
1292   if (route->next_hop != neighbor)
1293     return GNUNET_YES; /* not affected */
1294   GNUNET_assert (GNUNET_YES ==
1295                  GNUNET_CONTAINER_multihashmap_remove (all_routes, key, value));
1296   release_route (route);
1297   send_disconnect_to_plugin (&route->target.peer);
1298   GNUNET_free (route);
1299   return GNUNET_YES;
1300 }
1301
1302
1303 /**
1304  * Cleanup all of the data structures associated with a given neighbor.
1305  *
1306  * @param neighbor neighbor to clean up
1307  */
1308 static void
1309 cleanup_neighbor (struct DirectNeighbor *neighbor)
1310 {
1311   struct PendingMessage *pending;
1312
1313   while (NULL != (pending = neighbor->pm_head))
1314   {
1315     neighbor->pm_queue_size--;
1316     GNUNET_CONTAINER_DLL_remove (neighbor->pm_head,
1317                                  neighbor->pm_tail,
1318                                  pending);    
1319     GNUNET_free (pending);
1320   }
1321   GNUNET_CONTAINER_multihashmap_iterate (all_routes,
1322                                          &cull_routes,
1323                                          neighbor);
1324   if (NULL != neighbor->cth)
1325   {
1326     GNUNET_CORE_notify_transmit_ready_cancel (neighbor->cth);
1327     neighbor->cth = NULL;
1328   }
1329   if (NULL != neighbor->neighbor_table_consensus)
1330   {
1331     GNUNET_CONTAINER_multihashmap_iterate (neighbor->neighbor_table_consensus,
1332                                            &free_targets,
1333                                            NULL);
1334     GNUNET_CONTAINER_multihashmap_destroy (neighbor->neighbor_table_consensus);
1335     neighbor->neighbor_table_consensus = NULL;
1336   }
1337   if (NULL != neighbor->neighbor_table)
1338   {
1339     GNUNET_CONTAINER_multihashmap_iterate (neighbor->neighbor_table,
1340                                            &free_targets,
1341                                            NULL);
1342     GNUNET_CONTAINER_multihashmap_destroy (neighbor->neighbor_table);
1343     neighbor->neighbor_table = NULL;
1344   }
1345   if (GNUNET_SCHEDULER_NO_TASK != neighbor->consensus_task)
1346   {
1347     GNUNET_SCHEDULER_cancel (neighbor->consensus_task);
1348     neighbor->consensus_task = GNUNET_SCHEDULER_NO_TASK;
1349   }
1350   if (NULL != neighbor->consensus)
1351   {
1352     GNUNET_CONSENSUS_destroy (neighbor->consensus);
1353     neighbor->consensus = NULL;
1354   }
1355   GNUNET_assert (GNUNET_YES ==
1356                  GNUNET_CONTAINER_multihashmap_remove (direct_neighbors, 
1357                                                        &neighbor->peer.hashPubKey,
1358                                                        neighbor));
1359   GNUNET_free (neighbor);
1360 }
1361
1362
1363 /**
1364  * Method called whenever a given peer disconnects.
1365  *
1366  * @param cls closure
1367  * @param peer peer identity this notification is about
1368  */
1369 static void
1370 handle_core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
1371 {
1372   struct DirectNeighbor *neighbor;
1373
1374   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1375               "Received core peer disconnect message for peer `%s'!\n",
1376               GNUNET_i2s (peer));
1377   /* Check for disconnect from self message */
1378   if (0 == memcmp (&my_identity, peer, sizeof (struct GNUNET_PeerIdentity)))
1379     return;
1380   neighbor =
1381       GNUNET_CONTAINER_multihashmap_get (direct_neighbors, &peer->hashPubKey);
1382   if (NULL == neighbor)
1383   {
1384     /* must have been a DV-neighbor, ignore */
1385     return;
1386   }
1387   GNUNET_STATISTICS_update (stats,
1388                             "# peers connected (1-hop)",
1389                             -1, GNUNET_NO);  
1390   cleanup_neighbor (neighbor);
1391   GNUNET_CONTAINER_multihashmap_iterate (direct_neighbors,
1392                                          &refresh_routes,
1393                                          NULL);
1394 }
1395
1396
1397 /**
1398  * Multihashmap iterator for freeing routes.  Should never be called.
1399  *
1400  * @param cls NULL
1401  * @param key key value stored under
1402  * @param value the route to be freed
1403  *
1404  * @return GNUNET_YES to continue iteration, GNUNET_NO to stop
1405  */
1406 static int
1407 free_route (void *cls, const struct GNUNET_HashCode * key, void *value)
1408 {
1409   struct Route *route = value;
1410
1411   GNUNET_break (0);
1412   GNUNET_assert (GNUNET_YES ==
1413                  GNUNET_CONTAINER_multihashmap_remove (all_routes, key, value));
1414   release_route (route);
1415   send_disconnect_to_plugin (&route->target.peer);
1416   GNUNET_free (route);
1417   return GNUNET_YES;
1418 }
1419
1420
1421 /**
1422  * Multihashmap iterator for freeing direct neighbors. Should never be called.
1423  *
1424  * @param cls NULL
1425  * @param key key value stored under
1426  * @param value the direct neighbor to be freed
1427  *
1428  * @return GNUNET_YES to continue iteration, GNUNET_NO to stop
1429  */
1430 static int
1431 free_direct_neighbors (void *cls, const struct GNUNET_HashCode * key, void *value)
1432 {
1433   struct DirectNeighbor *neighbor = value;
1434
1435   GNUNET_break (0);
1436   cleanup_neighbor (neighbor);
1437   return GNUNET_YES;
1438 }
1439
1440
1441 /**
1442  * Task run during shutdown.
1443  *
1444  * @param cls unused
1445  * @param tc unused
1446  */
1447 static void
1448 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1449 {
1450   unsigned int i;
1451
1452   GNUNET_CONTAINER_multihashmap_iterate (direct_neighbors,
1453                                          &free_direct_neighbors, NULL);
1454   GNUNET_CONTAINER_multihashmap_destroy (direct_neighbors);
1455   GNUNET_CONTAINER_multihashmap_iterate (all_routes,
1456                                          &free_route, NULL);
1457   GNUNET_CONTAINER_multihashmap_destroy (all_routes);
1458   GNUNET_CORE_disconnect (core_api);
1459   core_api = NULL;
1460   GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
1461   stats = NULL;
1462   GNUNET_SERVER_notification_context_destroy (nc);
1463   nc = NULL;
1464   for (i=0;i<DEFAULT_FISHEYE_DEPTH - 1;i++)
1465     GNUNET_array_grow (consensi[i].targets,
1466                        consensi[i].array_length,
1467                        0);
1468 }
1469
1470
1471 /**
1472  * Notify newly connected client about an existing route.
1473  *
1474  * @param cls the 'struct GNUNET_SERVER_Client'
1475  * @param key peer identity
1476  * @param value the XXX.
1477  * @return GNUNET_OK (continue to iterate)
1478  */
1479 static int
1480 add_route (void *cls,
1481            const struct GNUNET_HashCode *key,
1482            void *value)
1483 {
1484   struct GNUNET_SERVER_Client *client = cls;
1485   struct Route *route = value;
1486   struct GNUNET_DV_ConnectMessage cm;
1487   
1488   cm.header.size = htons (sizeof (cm));
1489   cm.header.type = htons (GNUNET_MESSAGE_TYPE_DV_CONNECT);
1490   cm.distance = htonl (route->target.distance);
1491   cm.peer = route->target.peer;
1492
1493   GNUNET_SERVER_notification_context_unicast (nc, 
1494                                               client,
1495                                               &cm.header,
1496                                               GNUNET_NO);
1497   return GNUNET_OK;
1498 }
1499
1500
1501 /**
1502  * Handle START-message.  This is the first message sent to us
1503  * by the client (can only be one!).
1504  *
1505  * @param cls closure (always NULL)
1506  * @param client identification of the client
1507  * @param message the actual message
1508  */
1509 static void
1510 handle_start (void *cls, struct GNUNET_SERVER_Client *client,
1511               const struct GNUNET_MessageHeader *message)
1512 {
1513   GNUNET_SERVER_notification_context_add (nc, client);  
1514   GNUNET_CONTAINER_multihashmap_iterate (all_routes,
1515                                          &add_route,
1516                                          client);
1517 }
1518
1519
1520 /**
1521  * Called on core init.
1522  *
1523  * @param cls unused
1524  * @param server legacy
1525  * @param identity this peer's identity
1526  */
1527 static void
1528 core_init (void *cls, struct GNUNET_CORE_Handle *server,
1529            const struct GNUNET_PeerIdentity *identity)
1530 {
1531   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1532               "I am peer: %s\n",
1533               GNUNET_i2s (identity));
1534   my_identity = *identity;
1535 }
1536
1537
1538 /**
1539  * Process dv requests.
1540  *
1541  * @param cls closure
1542  * @param server the initialized server
1543  * @param c configuration to use
1544  */
1545 static void
1546 run (void *cls, struct GNUNET_SERVER_Handle *server,
1547      const struct GNUNET_CONFIGURATION_Handle *c)
1548 {
1549   static struct GNUNET_CORE_MessageHandler core_handlers[] = {
1550     {&handle_dv_route_message, GNUNET_MESSAGE_TYPE_DV_ROUTE, 0},
1551     {NULL, 0, 0}
1552   };
1553   static struct GNUNET_SERVER_MessageHandler plugin_handlers[] = {
1554     {&handle_start, NULL, 
1555      GNUNET_MESSAGE_TYPE_DV_START, 
1556      sizeof (struct GNUNET_MessageHeader) },
1557     { &handle_dv_send_message, NULL, 
1558       GNUNET_MESSAGE_TYPE_DV_SEND, 
1559       0},
1560     {NULL, NULL, 0, 0}
1561   };
1562
1563   cfg = c;
1564   direct_neighbors = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO);
1565   all_routes = GNUNET_CONTAINER_multihashmap_create (65536, GNUNET_NO);
1566   core_api = GNUNET_CORE_connect (cfg, NULL,
1567                                   &core_init, 
1568                                   &handle_core_connect,
1569                                   &handle_core_disconnect,
1570                                   NULL, GNUNET_NO, 
1571                                   NULL, GNUNET_NO, 
1572                                   core_handlers);
1573
1574   if (NULL == core_api)
1575     return;
1576   nc = GNUNET_SERVER_notification_context_create (server,
1577                                                   MAX_QUEUE_SIZE_PLUGIN);
1578   stats = GNUNET_STATISTICS_create ("dv", cfg);
1579   GNUNET_SERVER_add_handlers (server, plugin_handlers);
1580   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1581                                 &shutdown_task, NULL);
1582 }
1583
1584
1585 /**
1586  * The main function for the dv service.
1587  *
1588  * @param argc number of arguments from the command line
1589  * @param argv command line arguments
1590  * @return 0 ok, 1 on error
1591  */
1592 int
1593 main (int argc, char *const *argv)
1594 {
1595   return (GNUNET_OK ==
1596           GNUNET_SERVICE_run (argc, argv, "dv", GNUNET_SERVICE_OPTION_NONE,
1597                               &run, NULL)) ? 0 : 1;
1598 }
1599
1600 /* end of gnunet-service-dv.c */