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