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