Refactored to use functions instead of duplicated code for starting DHT GET for ID
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001 - 2011 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 mesh/gnunet-service-mesh.c
23  * @brief GNUnet MESH service
24  * @author Bartlomiej Polot
25  *
26  * STRUCTURE:
27  * - DATA STRUCTURES
28  * - GLOBAL VARIABLES
29  * - GENERAL HELPERS
30  * - PERIODIC FUNCTIONS
31  * - MESH NETWORK HANDLER HELPERS
32  * - MESH NETWORK HANDLES
33  * - MESH LOCAL HANDLER HELPERS
34  * - MESH LOCAL HANDLES
35  * - MAIN FUNCTIONS (main & run)
36  *
37  * TODO:
38  * - error reporting (CREATE/CHANGE/ADD/DEL?) -- new message!
39  * - partial disconnect reporting -- same as error reporting?
40  * - add vs create? change vs. keep-alive? same msg or different ones? -- thinking...
41  * - speed requirement specification (change?) in mesh API -- API call
42  * - add ping message
43  * - relay corking down to core
44  */
45
46 #include "platform.h"
47 #include "mesh.h"
48 #include "mesh_protocol.h"
49 #include "gnunet_dht_service.h"
50 #include "mesh_tunnel_tree.h"
51
52 /* TODO: move into configuration file */
53 #define REFRESH_PATH_TIME       GNUNET_TIME_relative_multiply(\
54                                     GNUNET_TIME_UNIT_SECONDS,\
55                                     300)
56 #define APP_ANNOUNCE_TIME       GNUNET_TIME_relative_multiply(\
57                                     GNUNET_TIME_UNIT_SECONDS,\
58                                     5)
59
60 #define ID_ANNOUNCE_TIME        GNUNET_TIME_relative_multiply(\
61                                     GNUNET_TIME_UNIT_SECONDS,\
62                                     10)
63
64 #define GET_RESTART_TIME        GNUNET_TIME_relative_multiply(\
65                                     GNUNET_TIME_UNIT_SECONDS,\
66                                     5)
67
68 #define UNACKNOWLEDGED_WAIT     GNUNET_TIME_relative_multiply(\
69                                     GNUNET_TIME_UNIT_SECONDS,\
70                                     2)
71
72 /******************************************************************************/
73 /************************      DATA STRUCTURES     ****************************/
74 /******************************************************************************/
75
76 /** FWD declaration */
77 struct MeshPeerInfo;
78
79 /**
80  * Struct containing all info possibly needed to build a package when called
81  * back by core.
82  */
83 struct MeshDataDescriptor
84 {
85     /** ID of the tunnel this packet travels in */
86   struct MESH_TunnelID *origin;
87
88     /** Data itself */
89   void *data;
90
91     /** Client that asked for the transmission, if any */
92   struct GNUNET_SERVER_Client *client;
93
94     /** Who was this message being sent to */
95   struct MeshPeerInfo *peer;
96
97     /** Ultimate destination of the packet */
98   GNUNET_PEER_Id destination;
99
100     /** Number of identical messages sent to different hops (multicast) */
101   unsigned int *copies;
102
103     /** Which handler was used to request the transmission */
104   unsigned int handler_n;
105
106     /** Size of the data */
107   size_t size;
108
109     /** Used to allow a client send more traffic to the service after a
110      * previous packet was tried to be sent to a neighbor and couldn't */
111   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
112 };
113
114
115 /**
116  * Struct containing all information regarding a given peer
117  */
118 struct MeshPeerInfo
119 {
120     /**
121      * ID of the peer
122      */
123   GNUNET_PEER_Id id;
124
125     /**
126      * Last time we heard from this peer
127      */
128   struct GNUNET_TIME_Absolute last_contact;
129
130     /**
131      * Number of attempts to reconnect so far
132      */
133   int n_reconnect_attempts;
134
135     /**
136      * Paths to reach the peer, ordered by ascending hop count
137      */
138   struct MeshPeerPath *path_head;
139
140     /**
141      * Paths to reach the peer, ordered by ascending hop count
142      */
143   struct MeshPeerPath *path_tail;
144
145     /**
146      * Handle to stop the DHT search for a path to this peer
147      */
148   struct GNUNET_DHT_GetHandle *dhtget;
149
150     /**
151      * Closure given to the DHT GET
152      */
153   struct MeshPathInfo *dhtgetcls;
154
155     /**
156      * Handles to stop queued transmissions for this peer
157      */
158   struct GNUNET_CORE_TransmitHandle *core_transmit[CORE_QUEUE_SIZE];
159
160     /**
161      * Pointer to info stuctures used as cls for queued transmissions
162      */
163   void *infos[CORE_QUEUE_SIZE];
164
165     /**
166      * Type of message being in each transmission
167      */
168   uint16_t types[CORE_QUEUE_SIZE];
169
170     /**
171      * Array of tunnels this peer participates in
172      * (most probably a small amount, therefore not a hashmap)
173      * When the path to the peer changes, notify these tunnels to let them
174      * re-adjust their path trees.
175      */
176   struct MeshTunnel **tunnels;
177
178     /**
179      * Number of tunnels this peers participates in
180      */
181   unsigned int ntunnels;
182 };
183
184
185 /**
186  * Data scheduled to transmit (to local client or remote peer)
187  */
188 struct MeshQueue
189 {
190     /**
191      * Double linked list
192      */
193   struct MeshQueue *next;
194   struct MeshQueue *prev;
195
196     /**
197      * Target of the data (NULL if target is client)
198      */
199   struct MeshPeerInfo *peer;
200
201     /**
202      * Client to send the data to (NULL if target is peer)
203      */
204   struct MeshClient *client;
205
206     /**
207      * Size of the message to transmit
208      */
209   unsigned int size;
210
211     /**
212      * How old is the data?
213      */
214   struct GNUNET_TIME_Absolute timestamp;
215
216     /**
217      * Data itself
218      */
219   struct GNUNET_MessageHeader *data;
220 };
221
222 /**
223  * Globally unique tunnel identification (owner + number)
224  * DO NOT USE OVER THE NETWORK
225  */
226 struct MESH_TunnelID
227 {
228     /**
229      * Node that owns the tunnel
230      */
231   GNUNET_PEER_Id oid;
232
233     /**
234      * Tunnel number to differentiate all the tunnels owned by the node oid
235      * ( tid < GNUNET_MESH_LOCAL_TUNNEL_ID_CLI )
236      */
237   MESH_TunnelNumber tid;
238 };
239
240
241 struct MeshClient;              /* FWD declaration */
242
243 /**
244  * Struct containing all information regarding a tunnel
245  * For an intermediate node the improtant info used will be:
246  * - id        Tunnel unique identification
247  * - paths[0]  To know where to send it next
248  * - metainfo: ready, speeds, accounting
249  */
250 struct MeshTunnel
251 {
252     /**
253      * Tunnel ID
254      */
255   struct MESH_TunnelID id;
256
257     /**
258      * Local tunnel number ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_CLI or 0 )
259      */
260   MESH_TunnelNumber local_tid;
261
262     /**
263      * Last time the tunnel was used
264      */
265   struct GNUNET_TIME_Absolute timestamp;
266
267     /**
268      * Peers in the tunnel, indexed by PeerIdentity -> (MeshPeerInfo)
269      * containing peers added by id or by type, not intermediate peers.
270      */
271   struct GNUNET_CONTAINER_MultiHashMap *peers;
272
273     /**
274      * Number of peers that are connected and potentially ready to receive data
275      */
276   unsigned int peers_ready;
277
278     /**
279      * Number of peers that have been added to the tunnel
280      */
281   unsigned int peers_total;
282
283     /**
284      * Client owner of the tunnel, if any
285      */
286   struct MeshClient *client;
287
288     /**
289      * Messages ready to transmit
290      */
291   struct MeshQueue *queue_head;
292   struct MeshQueue *queue_tail;
293
294   /**
295    * Tunnel paths
296    */
297   struct MeshTunnelTree *tree;
298
299   /**
300    * Application type we are looking for in this tunnel
301    */
302   GNUNET_MESH_ApplicationType type;
303
304     /**
305      * Used to search peers offering a service
306      */
307   struct GNUNET_DHT_GetHandle *dht_get_type;
308
309   /**
310    * Task to keep the used paths alive
311    */
312   GNUNET_SCHEDULER_TaskIdentifier path_refresh_task;
313
314   /**
315    * Task to destroy the tunnel after timeout
316    *
317    * FIXME: merge the two? a tunnel will have either
318    * a path refresh OR a timeout, never both!
319    */
320   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
321 };
322
323
324 /**
325  * Info needed to work with tunnel paths and peers
326  */
327 struct MeshPathInfo
328 {
329   /**
330    * Tunnel
331    */
332   struct MeshTunnel *t;
333
334   /**
335    * Neighbouring peer to whom we send the packet to
336    */
337   struct MeshPeerInfo *peer;
338
339   /**
340    * Path itself
341    */
342   struct MeshPeerPath *path;
343   
344   /**
345    * Position in peer's transmit queue
346    */
347   unsigned int pos;
348 };
349
350
351 /**
352  * Struct containing information about a client of the service
353  */
354 struct MeshClient
355 {
356     /**
357      * Linked list
358      */
359   struct MeshClient *next;
360   struct MeshClient *prev;
361
362     /**
363      * Tunnels that belong to this client, indexed by local id
364      */
365   struct GNUNET_CONTAINER_MultiHashMap *tunnels;
366
367     /**
368      * Handle to communicate with the client
369      */
370   struct GNUNET_SERVER_Client *handle;
371
372     /**
373      * Applications that this client has claimed to provide
374      */
375   struct GNUNET_CONTAINER_MultiHashMap *apps;
376
377     /**
378      * Messages that this client has declared interest in
379      */
380   struct GNUNET_CONTAINER_MultiHashMap *types;
381
382 #if MESH_DEBUG
383     /**
384      * ID of the client, for debug messages
385      */
386   unsigned int id;
387 #endif
388
389 };
390
391
392
393 /******************************************************************************/
394 /************************      DEBUG FUNCTIONS     ****************************/
395 /******************************************************************************/
396
397
398 /**
399  * GNUNET_SCHEDULER_Task for printing a message after some operation is done
400  * @param cls string to print
401  * @param tc task context
402  */
403 static void
404 mesh_debug (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
405 {
406   char *s = cls;
407
408   if (GNUNET_SCHEDULER_REASON_SHUTDOWN == tc->reason)
409   {
410     return;
411   }
412   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: %s\n", s);
413 }
414
415
416 /******************************************************************************/
417 /***********************      GLOBAL VARIABLES     ****************************/
418 /******************************************************************************/
419
420 /**
421  * All the clients
422  */
423 static struct MeshClient *clients;
424 static struct MeshClient *clients_tail;
425
426 /**
427  * Tunnels known, indexed by MESH_TunnelID (MeshTunnel)
428  */
429 static struct GNUNET_CONTAINER_MultiHashMap *tunnels;
430
431 /**
432  * Tunnels incoming, indexed by MESH_TunnelNumber
433  * (which is greater than GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
434  */
435 static struct GNUNET_CONTAINER_MultiHashMap *incoming_tunnels;
436
437 /**
438  * Peers known, indexed by PeerIdentity (MeshPeerInfo)
439  */
440 static struct GNUNET_CONTAINER_MultiHashMap *peers;
441
442 /**
443  * Handle to communicate with core
444  */
445 static struct GNUNET_CORE_Handle *core_handle;
446
447 /**
448  * Handle to use DHT
449  */
450 static struct GNUNET_DHT_Handle *dht_handle;
451
452 /**
453  * Handle to server
454  */
455 static struct GNUNET_SERVER_Handle *server_handle;
456
457 /**
458  * Notification context, to send messages to local clients
459  */
460 static struct GNUNET_SERVER_NotificationContext *nc;
461
462 /**
463  * Local peer own ID (memory efficient handle)
464  */
465 static GNUNET_PEER_Id myid;
466
467 /**
468  * Local peer own ID (full value)
469  */
470 static struct GNUNET_PeerIdentity my_full_id;
471
472 /**
473  * Own private key
474  */
475 static struct GNUNET_CRYPTO_RsaPrivateKey* my_private_key;
476
477 /**
478  * Own public key.
479  */
480 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
481
482 /**
483  * Tunnel ID for the next created tunnel (global tunnel number)
484  */
485 static MESH_TunnelNumber next_tid;
486
487 /**
488  * Tunnel ID for the next incoming tunnel (local tunnel number)
489  */
490 static MESH_TunnelNumber next_local_tid;
491
492 /**
493  * All application types provided by this peer
494  */
495 static struct GNUNET_CONTAINER_MultiHashMap *applications;
496
497 /**
498  * All message types clients of this peer are interested in
499  */
500 static struct GNUNET_CONTAINER_MultiHashMap *types;
501
502 /**
503  * Task to periodically announce provided applications
504  */
505 GNUNET_SCHEDULER_TaskIdentifier announce_applications_task;
506
507 /**
508  * Task to periodically announce itself in the network
509  */
510 GNUNET_SCHEDULER_TaskIdentifier announce_id_task;
511
512 #if MESH_DEBUG
513 unsigned int next_client_id;
514 #endif
515
516
517 /******************************************************************************/
518 /************************         ITERATORS        ****************************/
519 /******************************************************************************/
520
521 /* FIXME move iterators here */
522
523
524 /******************************************************************************/
525 /************************    PERIODIC FUNCTIONS    ****************************/
526 /******************************************************************************/
527
528 /**
529  * Announce iterator over for each application provided by the peer
530  *
531  * @param cls closure
532  * @param key current key code
533  * @param value value in the hash map
534  * @return GNUNET_YES if we should continue to
535  *         iterate,
536  *         GNUNET_NO if not.
537  */
538 static int
539 announce_application (void *cls, const GNUNET_HashCode * key, void *value)
540 {
541   /* FIXME are hashes in multihash map equal on all aquitectures? */
542   GNUNET_DHT_put (dht_handle,
543                   key,
544                   10U,
545                   GNUNET_DHT_RO_RECORD_ROUTE |
546                     GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
547                   GNUNET_BLOCK_TYPE_TEST,
548                   sizeof (struct GNUNET_PeerIdentity),
549                   (const char *) &my_full_id,
550 #if MESH_DEBUG
551                   GNUNET_TIME_UNIT_FOREVER_ABS, GNUNET_TIME_UNIT_FOREVER_REL,
552                   &mesh_debug, "DHT_put for app completed");
553 #else
554                   GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (),
555                                             APP_ANNOUNCE_TIME),
556                   APP_ANNOUNCE_TIME, NULL, NULL);
557 #endif
558   return GNUNET_OK;
559 }
560
561
562 /**
563  * Periodically announce what applications are provided by local clients
564  *
565  * @param cls closure
566  * @param tc task context
567  */
568 static void
569 announce_applications (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
570 {
571   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
572   {
573     announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
574     return;
575   }
576   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Starting PUT for apps\n");
577   GNUNET_CONTAINER_multihashmap_iterate (applications, &announce_application,
578                                          NULL);
579   announce_applications_task =
580       GNUNET_SCHEDULER_add_delayed (APP_ANNOUNCE_TIME, &announce_applications,
581                                     cls);
582   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Finished PUT for apps\n");
583   return;
584 }
585
586
587 /**
588  * Periodically announce self id in the DHT
589  *
590  * @param cls closure
591  * @param tc task context
592  */
593 static void
594 announce_id (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
595 {
596   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
597   {
598     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
599     return;
600   }
601   /* TODO
602    * - Set data expiration in function of X
603    * - Adapt X to churn
604    */
605   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: DHT_put for ID %s started.\n",
606               GNUNET_h2s_full (&my_full_id.hashPubKey));
607   GNUNET_DHT_put (dht_handle,   /* DHT handle */
608                   &my_full_id.hashPubKey,       /* Key to use */
609                   10U,          /* Replication level */
610                   GNUNET_DHT_RO_RECORD_ROUTE |
611                     GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,   /* DHT options */
612                   GNUNET_BLOCK_TYPE_TEST,       /* Block type */
613                   sizeof(my_full_id),   /* Size of the data */
614                   (char *)&my_full_id,  /* Data itself */
615                   GNUNET_TIME_absolute_get_forever (),  /* Data expiration */
616                   GNUNET_TIME_UNIT_FOREVER_REL, /* Retry time */
617 #if MESH_DEBUG
618                   &mesh_debug, "DHT_put for id completed");
619 #else
620                   NULL,         /* Continuation */
621                   NULL);        /* Continuation closure */
622 #endif
623   announce_id_task =
624       GNUNET_SCHEDULER_add_delayed (ID_ANNOUNCE_TIME, &announce_id, cls);
625 }
626
627
628 /**
629  * Function to process paths received for a new peer addition. The recorded
630  * paths form the initial tunnel, which can be optimized later.
631  * Called on each result obtained for the DHT search.
632  *
633  * @param cls closure
634  * @param exp when will this value expire
635  * @param key key of the result
636  * @param type type of the result
637  * @param size number of bytes in data
638  * @param data pointer to the result data
639  */
640 static void
641 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
642                     const GNUNET_HashCode * key,
643                     const struct GNUNET_PeerIdentity *get_path,
644                     unsigned int get_path_length,
645                     const struct GNUNET_PeerIdentity *put_path,
646                     unsigned int put_path_length,
647                     enum GNUNET_BLOCK_Type type, size_t size, const void *data);
648
649
650 /******************************************************************************/
651 /******************      GENERAL HELPER FUNCTIONS      ************************/
652 /******************************************************************************/
653
654 /**
655  * Check if client has registered with the service and has not disconnected
656  *
657  * @param client the client to check
658  *
659  * @return non-NULL if client exists in the global DLL
660  */
661 static struct MeshClient *
662 client_get (struct GNUNET_SERVER_Client *client)
663 {
664   struct MeshClient *c;
665
666   c = clients;
667   while (NULL != c)
668   {
669     if (c->handle == client)
670       return c;
671     c = c->next;
672   }
673   return NULL;
674 }
675
676
677 /**
678  * Checks if a given client has subscribed to certain message type
679  *
680  * @param message_type Type of message to check
681  * @param c Client to check
682  *
683  * @return GNUNET_YES or GNUNET_NO, depending on subscription status
684  *
685  * TODO inline?
686  */
687 static int
688 client_is_subscribed (uint16_t message_type, struct MeshClient *c)
689 {
690   GNUNET_HashCode hc;
691
692   GNUNET_CRYPTO_hash (&message_type, sizeof (uint16_t), &hc);
693   return GNUNET_CONTAINER_multihashmap_contains (c->types, &hc);
694 }
695
696 static void
697 client_allow_send(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
698 {
699   struct MeshDataDescriptor *info = cls;
700
701   if (GNUNET_SCHEDULER_REASON_SHUTDOWN == tc->reason)
702     return;
703   info->timeout_task = GNUNET_SCHEDULER_NO_TASK;
704   GNUNET_SERVER_receive_done(info->client, GNUNET_OK);
705 }
706
707
708 /**
709  * Search for a tunnel by global ID using full PeerIdentities
710  *
711  * @param oid owner of the tunnel
712  * @param tid global tunnel number
713  *
714  * @return tunnel handler, NULL if doesn't exist
715  */
716 static struct MeshTunnel *
717 tunnel_get (struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid);
718
719
720 /**
721  * Send the message to all clients that have subscribed to its type
722  *
723  * @param msg Pointer to the message itself
724  * @return number of clients this message was sent to
725  */
726 static unsigned int
727 send_subscribed_clients (const struct GNUNET_MessageHeader *msg,
728                          const struct GNUNET_MessageHeader *payload)
729 {
730   struct GNUNET_PeerIdentity *oid;
731   struct MeshClient *c;
732   struct MeshTunnel *t;
733   MESH_TunnelNumber *tid;
734   unsigned int count;
735   uint16_t type;
736   char cbuf[htons(msg->size)];
737
738   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Sending to clients...\n");
739   type = ntohs (payload->type);
740   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: message of type %u\n", type);
741
742   memcpy (cbuf, msg, sizeof(cbuf));
743   switch (htons(msg->type))
744   {
745     struct GNUNET_MESH_Unicast *uc;
746     struct GNUNET_MESH_Multicast *mc;
747     struct GNUNET_MESH_ToOrigin *to;
748
749     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
750       uc = (struct GNUNET_MESH_Unicast *) cbuf;
751       tid = &uc->tid;
752       oid = &uc->oid;
753       break;
754     case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
755       mc = (struct GNUNET_MESH_Multicast *) cbuf;
756       tid = &mc->tid;
757       oid = &mc->oid;
758       break;
759     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
760       to = (struct GNUNET_MESH_ToOrigin *) cbuf;
761       tid = &to->tid;
762       oid = &to->oid;
763       break;
764     default:
765       GNUNET_break (0);
766       return 0;
767   }
768   t = tunnel_get (oid, ntohl(*tid));
769   if (NULL == t)
770   {
771     GNUNET_break (0);
772     return 0;
773   }
774   *tid = htonl (t->local_tid);
775   for (count = 0, c = clients; c != NULL; c = c->next)
776   {
777     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    client %u\n", c->id);
778     if (client_is_subscribed (type, c))
779     {
780       count++;
781       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      sending\n");
782       GNUNET_SERVER_notification_context_unicast (
783           nc,
784           c->handle,
785           (struct GNUNET_MessageHeader *) cbuf,
786           GNUNET_YES);
787     }
788   }
789   return count;
790 }
791
792
793 /**
794  * Notify the client that owns the tunnel that a peer has connected to it
795  * (the requested path to it has been confirmed).
796  * 
797  * @param t Tunnel whose owner to notify
798  * @param id Short id of the peer that has connected
799  */
800 static void
801 send_client_peer_connected (const struct MeshTunnel *t, const GNUNET_PEER_Id id)
802 {
803   struct GNUNET_MESH_PeerControl pc;
804
805   pc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD);
806   pc.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
807   pc.tunnel_id = htonl (t->local_tid);
808   GNUNET_PEER_resolve (id, &pc.peer);
809   GNUNET_SERVER_notification_context_unicast (nc, t->client->handle,
810                                               &pc.header, GNUNET_NO);
811 }
812
813
814 /**
815  * Notify all clients (not depending on registration status) that the incoming
816  * tunnel is no longer valid.
817  * 
818  * @param t Tunnel that was destroyed.
819  */
820 static void
821 send_clients_tunnel_destroy (struct MeshTunnel *t)
822 {
823     struct GNUNET_MESH_TunnelMessage msg;
824
825     msg.header.size = htons (sizeof (msg));
826     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
827     msg.tunnel_id = htonl (t->local_tid);
828     GNUNET_SERVER_notification_context_broadcast(nc, &msg.header, GNUNET_NO);
829 }
830
831
832 /**
833  * Function called to notify a client about the socket
834  * being ready to queue more data.  "buf" will be
835  * NULL and "size" zero if the socket was closed for
836  * writing in the meantime.
837  *
838  * @param cls closure
839  * @param size number of bytes available in buf
840  * @param buf where the callee should write the message
841  * @return number of bytes written to buf
842  */
843 static size_t
844 send_core_create_path (void *cls, size_t size, void *buf);
845
846
847 /**
848  * Function called to notify a client about the socket
849  * being ready to queue more data.  "buf" will be
850  * NULL and "size" zero if the socket was closed for
851  * writing in the meantime.
852  *
853  * @param cls closure (data itself)
854  * @param size number of bytes available in buf
855  * @param buf where the callee should write the message
856  *
857  * @return number of bytes written to buf
858  */
859 static size_t
860 send_core_data_multicast (void *cls, size_t size, void *buf);
861
862
863 /**
864  * Cancel a core transmission that was already requested and free all resources
865  * associated to the request.
866  * 
867  * @param peer PeeInfo of the peer whose transmission is cancelled.
868  * @param i Position of the transmission to be cancelled.
869  */
870 static void
871 peer_info_cancel_transmission(struct MeshPeerInfo *peer, unsigned int i)
872 {
873   if (NULL != peer->core_transmit[i])
874   {
875     struct MeshDataDescriptor *dd;
876     struct MeshPathInfo *path_info;
877
878 #if MESH_DEBUG
879     {
880       struct GNUNET_PeerIdentity id;
881
882       GNUNET_PEER_resolve (peer->id, &id);
883       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
884                   "MESH:   Cancelling data transmission at %s [%u]\n",
885                   GNUNET_i2s (&id),
886                   i);
887       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
888                   "MESH:    message type %u\n",
889                   peer->types[i]);
890     }
891 #endif
892     /* TODO: notify that tranmission has failed */
893     switch (peer->types[i])
894     {
895       case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
896       case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
897       case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
898         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    type payload\n");
899         dd = peer->infos[i];
900         if (0 == --(*dd->copies))
901         {
902           GNUNET_free (dd->copies);
903           GNUNET_free (dd->data);
904         }
905         break;
906       case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
907         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    type create path\n");
908         path_info = peer->infos[i];
909         path_destroy(path_info->path);
910         break;
911       default:
912         GNUNET_break (0);
913         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    type unknown!\n");
914     }
915     GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit[i]);
916     peer->core_transmit[i] = NULL;
917     GNUNET_free (peer->infos[i]);
918   } 
919 }
920
921
922 /**
923  * Get a unused CORE slot to transmit a message to a peer. If all the slots
924  * are used, cancel one and return it's position.
925  *
926  * @param peer PeerInfo of the neighbor we want to transmit to.
927  *
928  * @return The index of an available slot to transmit to the neighbor.
929  */
930 static unsigned int
931 peer_info_transmit_slot (struct MeshPeerInfo *peer)
932 {
933   unsigned int i;
934
935   for (i = 0; peer->core_transmit[i]; i++)
936   {
937     if (i == (CORE_QUEUE_SIZE - 1))
938     {
939       /* All positions are taken! Overwriting! */
940       GNUNET_break (0);
941       peer_info_cancel_transmission(peer, 0);
942       return 0;
943     }
944   }
945   return i;
946 }
947
948
949 /**
950  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
951  * and insert it in the appropiate structures if the peer is not known yet.
952  *
953  * @param peer Full identity of the peer.
954  *
955  * @return Existing or newly created peer info.
956  */
957 static struct MeshPeerInfo *
958 peer_info_get (const struct GNUNET_PeerIdentity *peer)
959 {
960   struct MeshPeerInfo *peer_info;
961
962   peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
963   if (NULL == peer_info)
964   {
965     peer_info =
966         (struct MeshPeerInfo *) GNUNET_malloc (sizeof (struct MeshPeerInfo));
967     GNUNET_CONTAINER_multihashmap_put (peers, &peer->hashPubKey, peer_info,
968                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
969     peer_info->id = GNUNET_PEER_intern (peer);
970   }
971
972   return peer_info;
973 }
974
975
976 /**
977  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
978  * and insert it in the appropiate structures if the peer is not known yet.
979  *
980  * @param peer Short identity of the peer.
981  *
982  * @return Existing or newly created peer info.
983  */
984 static struct MeshPeerInfo *
985 peer_info_get_short (const GNUNET_PEER_Id peer)
986 {
987   struct GNUNET_PeerIdentity id;
988
989   GNUNET_PEER_resolve(peer, &id);
990   return peer_info_get(&id);
991 }
992
993
994 /**
995  * Iterator to remove the tunnel from the list of tunnels a peer participates
996  * in.
997  *
998  * @param cls Closure (tunnel info)
999  * @param key GNUNET_PeerIdentity of the peer (unused)
1000  * @param value PeerInfo of the peer
1001  *
1002  * @return always GNUNET_YES, to keep iterating
1003  */
1004 static int
1005 peer_info_delete_tunnel (void* cls, const GNUNET_HashCode* key, void* value)
1006 {
1007   struct MeshTunnel *t = cls;
1008   struct MeshPeerInfo *peer = value;
1009   unsigned int i;
1010
1011   for (i = 0; i < peer->ntunnels; i++)
1012   {
1013     if (0 == memcmp(&peer->tunnels[i]->id,
1014                     &t->id,
1015                     sizeof(struct MESH_TunnelID)))
1016     {
1017       peer->ntunnels--;
1018       peer->tunnels[i] = peer->tunnels[peer->ntunnels];
1019       peer->tunnels = GNUNET_realloc (peer->tunnels, peer->ntunnels);
1020       return GNUNET_YES;
1021     }
1022   }
1023   return GNUNET_YES;
1024 }
1025
1026
1027 /**
1028   * Core callback to write a 
1029   *
1030   * @param cls Closure (MeshDataDescriptor with data in "data" member).
1031   * @param size Number of bytes available in buf.
1032   * @param buf Where the to write the message.
1033   * 
1034   * @return number of bytes written to buf
1035   */
1036 static size_t
1037 send_core_data_raw (void *cls, size_t size, void *buf)
1038 {
1039   struct MeshDataDescriptor *info = cls;
1040   struct GNUNET_MessageHeader *msg;
1041   size_t total_size;
1042
1043   GNUNET_assert (NULL != info);
1044   GNUNET_assert (NULL != info->data);
1045   msg = (struct GNUNET_MessageHeader *) info->data;
1046   total_size = ntohs (msg->size);
1047
1048   if (total_size > size)
1049   {
1050     struct GNUNET_PeerIdentity id;
1051
1052     GNUNET_PEER_resolve (info->peer->id, &id);
1053     info->peer->core_transmit[info->handler_n] =
1054       GNUNET_CORE_notify_transmit_ready(core_handle,
1055                                         0,
1056                                         100,
1057                                         GNUNET_TIME_UNIT_FOREVER_REL,
1058                                         &id,
1059                                         size,
1060                                         &send_core_data_raw,
1061                                         info);
1062       return 0;
1063   }
1064   info->peer->core_transmit[info->handler_n] = NULL;
1065   memcpy (buf, msg, total_size);
1066   GNUNET_free (info->data);
1067   GNUNET_free (info);
1068   return total_size;
1069 }
1070
1071
1072 /**
1073  * Sends an already built message to a peer, properly registrating
1074  * all used resources.
1075  *
1076  * @param message Message to send.
1077  * @param peer Short ID of the neighbor whom to send the message.
1078  */
1079 static void
1080 send_message (const struct GNUNET_MessageHeader *message,
1081               const struct GNUNET_PeerIdentity *peer)
1082 {
1083   struct MeshDataDescriptor *info;
1084   struct MeshPeerInfo *neighbor;
1085   unsigned int i;
1086   size_t size;
1087
1088   size = ntohs (message->size);
1089   info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
1090   info->data = GNUNET_malloc (size);
1091   memcpy (info->data, message, size);
1092   neighbor = peer_info_get (peer);
1093   i = peer_info_transmit_slot (neighbor);
1094   info->handler_n = i;
1095   info->peer = neighbor;
1096   neighbor->types[i] = GNUNET_MESSAGE_TYPE_MESH_UNICAST;
1097   neighbor->infos[i] = info;
1098   neighbor->core_transmit[i] =
1099       GNUNET_CORE_notify_transmit_ready(core_handle,
1100                                         0,
1101                                         100,
1102                                         GNUNET_TIME_UNIT_FOREVER_REL,
1103                                         peer,
1104                                         size,
1105                                         &send_core_data_raw,
1106                                         info);
1107
1108 }
1109
1110
1111 /**
1112  * Sends a CREATE PATH message for a path to a peer, properly registrating
1113  * all used resources.
1114  * 
1115  * @param peer PeerInfo of the final peer for whom this path is being created.
1116  * @param p Path itself.
1117  * @param t Tunnel for which the path is created.
1118  */
1119 static void
1120 send_create_path (struct MeshPeerInfo *peer,
1121                   struct MeshPeerPath *p,
1122                   struct MeshTunnel *t)
1123 {
1124   struct GNUNET_PeerIdentity id;
1125   struct MeshPathInfo *path_info;
1126   struct MeshPeerInfo *neighbor;
1127   unsigned int i;
1128
1129   if (NULL == p)
1130   {
1131     p = tree_get_path_to_peer(t->tree, peer->id);
1132     if (NULL == p)
1133     {
1134       GNUNET_break (0);
1135       return;
1136     }
1137   }
1138   for (i = 0; i < p->length; i++)
1139   {
1140     if (p->peers[i] == myid)
1141       break;
1142   }
1143   if (i >= p->length - 1)
1144   {
1145     path_destroy(p);
1146     GNUNET_break (0);
1147     return;
1148   }
1149   GNUNET_PEER_resolve(p->peers[i + 1], &id);
1150
1151   path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
1152   path_info->path = p;
1153   path_info->t = t;
1154   neighbor = peer_info_get(&id);
1155   path_info->peer = neighbor;
1156   path_info->pos = peer_info_transmit_slot(neighbor);
1157   neighbor->types[path_info->pos] = GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE;
1158   neighbor->infos[path_info->pos] = path_info;
1159   neighbor->core_transmit[path_info->pos] = 
1160       GNUNET_CORE_notify_transmit_ready (
1161           core_handle, /* handle */
1162           0, /* cork */
1163           0, /* priority */
1164           GNUNET_TIME_UNIT_FOREVER_REL, /* timeout */
1165           &id, /* target */
1166           sizeof (struct GNUNET_MESH_ManipulatePath)
1167           + (p->length * sizeof (struct GNUNET_PeerIdentity)), /*size */
1168           &send_core_create_path, /* callback */
1169           path_info);        /* cls */
1170 }
1171
1172
1173 /**
1174  * Sends a DESTROY PATH message to free resources for a path in a tunnel
1175  * 
1176  * @param t Tunnel whose path to destroy.
1177  * @param destination Short ID of the peer to whom the path to destroy.
1178  */
1179 static void
1180 send_destroy_path (struct MeshTunnel *t, GNUNET_PEER_Id destination)
1181 {
1182   struct GNUNET_MESH_ManipulatePath *msg;
1183   struct GNUNET_PeerIdentity *pi;
1184   struct MeshPeerPath *p;
1185   unsigned int i;
1186   size_t size;
1187
1188   p = tree_get_path_to_peer(t->tree, destination);
1189   if (NULL == p)
1190   {
1191     GNUNET_break (0);
1192     return;
1193   }
1194   size = sizeof (struct GNUNET_MESH_ManipulatePath);
1195   size += p->length * sizeof (struct GNUNET_PeerIdentity);
1196   msg = GNUNET_malloc (size);
1197   msg->header.size = htons (size);
1198   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY);
1199   msg->tid = htonl (t->id.tid);
1200   pi = (struct GNUNET_PeerIdentity *) &msg[1];
1201   for (i = 0; i < p->length; i++)
1202   {
1203     GNUNET_PEER_resolve(p->peers[i], &pi[i]);
1204   }
1205   send_message (&msg->header, path_get_first_hop(t->tree, destination));
1206   path_destroy (p);
1207 }
1208
1209
1210 /**
1211  * Try to establish a new connection to this peer.
1212  * Use the best path for the given tunnel.
1213  * If the peer doesn't have any path to it yet, try to get one. 
1214  * If the peer already has some path, send a CREATE PATH towards it.
1215  *
1216  * @param peer PeerInfo of the peer.
1217  * @param t Tunnel for which to create the path, if possible.
1218  */
1219 static void
1220 peer_info_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t)
1221 {
1222   struct MeshPeerPath *p;
1223   struct MeshPathInfo *path_info;
1224
1225   if (NULL != peer->path_head)
1226   {
1227     p = tree_get_path_to_peer(t->tree, peer->id);
1228     if (p->length > 1)
1229     {
1230       send_create_path(peer, p, t);
1231     }
1232     else
1233     {
1234       path_destroy(p);
1235       send_client_peer_connected(t, myid);
1236     }
1237   }
1238   else if (NULL == peer->dhtget)
1239   {
1240     struct GNUNET_PeerIdentity id;
1241
1242     GNUNET_PEER_resolve(peer->id, &id);
1243     path_info = GNUNET_malloc(sizeof(struct MeshPathInfo));
1244     path_info->peer = peer;
1245     path_info->t = t;
1246     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1247                 "MESH:   Starting DHT GET for peer %s\n",
1248                 GNUNET_i2s (&id));
1249     peer->dhtgetcls = path_info;
1250     peer->dhtget =
1251         GNUNET_DHT_get_start(dht_handle,       /* handle */
1252                              GNUNET_TIME_UNIT_FOREVER_REL,     /* timeout */
1253                              GNUNET_BLOCK_TYPE_TEST,   /* type */
1254                              &id.hashPubKey,       /* key to search */
1255                              4,         /* replication level */
1256                              GNUNET_DHT_RO_RECORD_ROUTE |
1257                                GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1258                              NULL,     /* xquery */
1259                              0,        /* xquery bits */
1260                              &dht_get_id_handler,
1261                              path_info);
1262   }
1263   /* Otherwise, there is no path but the DHT get is already started. */
1264 }
1265
1266
1267 /**
1268  * Destroy the peer_info and free any allocated resources linked to it
1269  * 
1270  * @param pi The peer_info to destroy.
1271  * 
1272  * @return GNUNET_OK on success
1273  */
1274 static int
1275 peer_info_destroy (struct MeshPeerInfo *pi)
1276 {
1277   struct GNUNET_PeerIdentity id;
1278   GNUNET_HashCode hash;
1279   struct MeshPeerPath *p;
1280   struct MeshPeerPath *nextp;
1281   unsigned int i;
1282
1283   GNUNET_PEER_resolve (pi->id, &id);
1284   GNUNET_PEER_change_rc (pi->id, -1);
1285   GNUNET_CRYPTO_hash (&id, sizeof (struct GNUNET_PeerIdentity), &hash);
1286
1287   GNUNET_CONTAINER_multihashmap_remove (peers, &hash, pi);
1288   if (NULL != pi->dhtget)
1289   {
1290     GNUNET_DHT_get_stop(pi->dhtget);
1291     GNUNET_free (pi->dhtgetcls);
1292   }
1293   for (i = 0; i < CORE_QUEUE_SIZE; i++)
1294   {
1295     peer_info_cancel_transmission(pi, i);
1296   }
1297   p = pi->path_head;
1298   while (NULL != p)
1299   {
1300     nextp = p->next;
1301     GNUNET_CONTAINER_DLL_remove (pi->path_head, pi->path_tail, p);
1302     path_destroy (p);
1303     p = nextp;
1304   }
1305   GNUNET_free (pi);
1306   return GNUNET_OK;
1307 }
1308
1309
1310 /**
1311  * Notify a tunnel that a connection has broken that affects at least
1312  * some of its peers.
1313  *
1314  * @param t Tunnel affected.
1315  * @param peer Peer that (at least) has been affected by the disconnection.
1316  * @param p1 Peer that got disconnected from p2.
1317  * @param p2 Peer that got disconnected from p1.
1318  *
1319  * @return Short ID of the peer disconnected (either p1 or p2).
1320  *         0 if the tunnel remained unaffected.
1321  */
1322 static GNUNET_PEER_Id
1323 tunnel_notify_connection_broken (struct MeshTunnel *t,
1324                                  struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
1325                                  GNUNET_PEER_Id p2);
1326
1327
1328 /**
1329  * Remove all paths that rely on a direct connection between p1 and p2
1330  * from the peer itself and notify all tunnels about it.
1331  *
1332  * @param peer PeerInfo of affected peer.
1333  * @param p1 GNUNET_PEER_Id of one peer.
1334  * @param p2 GNUNET_PEER_Id of another peer that was connected to the first and
1335  *           no longer is.
1336  *
1337  * TODO: optimize (see below)
1338  */
1339 static void
1340 path_remove_from_peer (struct MeshPeerInfo *peer,
1341                        GNUNET_PEER_Id p1,
1342                        GNUNET_PEER_Id p2)
1343 {
1344   struct MeshPeerPath *p;
1345   struct MeshPeerPath *aux;
1346   struct MeshPeerInfo *peer_d;
1347   GNUNET_PEER_Id d;
1348   unsigned int destroyed;
1349   unsigned int best;
1350   unsigned int cost;
1351   unsigned int i;
1352
1353   destroyed = 0;
1354   p = peer->path_head;
1355   while (NULL != p)
1356   {
1357     aux = p->next;
1358     for (i = 0; i < (p->length - 1); i++)
1359     {
1360       if ((p->peers[i] == p1 && p->peers[i + 1] == p2) ||
1361           (p->peers[i] == p2 && p->peers[i + 1] == p1))
1362       {
1363         GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
1364         path_destroy (p);
1365         destroyed++;
1366         break;
1367       }
1368     }
1369     p = aux;
1370   }
1371   if (0 == destroyed)
1372     return;
1373
1374   for (i = 0; i < peer->ntunnels; i++)
1375   {
1376     d = tunnel_notify_connection_broken (peer->tunnels[i], peer, p1, p2);
1377     /* TODO
1378      * Problem: one or more peers have been deleted from the tunnel tree.
1379      * We don't know who they are to try to add them again.
1380      * We need to try to find a new path for each of the disconnected peers.
1381      * Some of them might already have a path to reach them that does not
1382      * involve p1 and p2. Adding all anew might render in a better tree than
1383      * the trivial immediate fix.
1384      * 
1385      * Trivial immiediate fix: try to reconnect to the disconnected node. All
1386      * its children will be reachable trough him.
1387      */
1388     peer_d = peer_info_get_short(d);
1389     best = UINT_MAX;
1390     aux = NULL;
1391     for (p = peer_d->path_head; NULL != p; p = p->next)
1392     {
1393       if ((cost = path_get_cost(peer->tunnels[i]->tree, p)) < best)
1394       {
1395         best = cost;
1396         aux = p;
1397       }
1398     }
1399     if (NULL != aux)
1400     {
1401       /* No callback, as peer will be already disconnected */
1402       tree_add_path(peer->tunnels[i]->tree, aux, NULL);
1403     }
1404     else
1405     {
1406       peer_info_connect (peer_d, peer->tunnels[i]);
1407     }
1408   }
1409 }
1410
1411
1412 /**
1413  * Add the path to the peer and update the path used to reach it in case this
1414  * is the shortest.
1415  *
1416  * @param peer_info Destination peer to add the path to.
1417  * @param path New path to add. Last peer must be the peer in arg 1.
1418  *             Path will be either used of freed if already known.
1419  *
1420  * TODO: trim the part from origin to us? Add it as path to origin?
1421  */
1422 void
1423 path_add_to_peer (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path)
1424 {
1425   struct MeshPeerPath *aux;
1426   unsigned int l;
1427   unsigned int l2;
1428
1429   if (NULL == peer_info || NULL == path)
1430   {
1431     GNUNET_break (0);
1432     return;
1433   }
1434
1435   l = path_get_length (path);
1436   if (0 == l)
1437   {
1438     GNUNET_free (path);
1439     return;
1440   }
1441
1442   for (aux = peer_info->path_head; aux != NULL; aux = aux->next)
1443   {
1444     l2 = path_get_length (aux);
1445     if (l2 > l)
1446     {
1447       GNUNET_CONTAINER_DLL_insert_before (peer_info->path_head,
1448                                           peer_info->path_tail, aux, path);
1449     }
1450     else
1451     {
1452       if (l2 == l && memcmp(path->peers, aux->peers, l) == 0)
1453       {
1454         path_destroy(path);
1455         return;
1456       }
1457     }
1458   }
1459   GNUNET_CONTAINER_DLL_insert_tail (peer_info->path_head, peer_info->path_tail,
1460                                     path);
1461   return;
1462 }
1463
1464
1465 /**
1466  * Add the path to the origin peer and update the path used to reach it in case
1467  * this is the shortest.
1468  * The path is given in peer_info -> destination, therefore we turn the path
1469  * upside down first.
1470  *
1471  * @param peer_info Peer to add the path to, being the origin of the path.
1472  * @param path New path to add after being inversed.
1473  */
1474 static void
1475 path_add_to_origin (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path)
1476 {
1477   path_invert(path);
1478   path_add_to_peer (peer_info, path);
1479 }
1480
1481
1482 /**
1483  * Build a PeerPath from the paths returned from the DHT, reversing the paths
1484  * to obtain a local peer -> destination path and interning the peer ids.
1485  *
1486  * @return Newly allocated and created path
1487  */
1488 static struct MeshPeerPath *
1489 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
1490                      unsigned int get_path_length,
1491                      const struct GNUNET_PeerIdentity *put_path,
1492                      unsigned int put_path_length)
1493 {
1494   struct MeshPeerPath *p;
1495   GNUNET_PEER_Id id;
1496   int i;
1497
1498   p = path_new (1);
1499   p->peers[0] = myid;
1500   GNUNET_PEER_change_rc(myid, 1);
1501   i = get_path_length;
1502   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    GET has %d hops.\n", i);
1503   for (i--; i >= 0; i--)
1504   {
1505     id = GNUNET_PEER_intern (&get_path[i]);
1506     if (p->length > 0 && id == p->peers[p->length - 1])
1507     {
1508       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    Optimizing 1 hop out.\n");
1509       GNUNET_PEER_change_rc(id, -1);
1510     }
1511     else
1512     {
1513       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
1514                  "MESH:    Adding from GET: %s.\n",
1515                  GNUNET_i2s(&get_path[i]));
1516       p->length++;
1517       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1518       p->peers[p->length - 1] = id;
1519     }
1520   }
1521   i = put_path_length;
1522   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    PUT has %d hops.\n", i);
1523   for (i--; i >= 0; i--)
1524   {
1525     id = GNUNET_PEER_intern (&put_path[i]);
1526     if (id == myid)
1527     {
1528       /* PUT path went through us, so discard the path up until now and start
1529        * from here to get a much shorter (and loop-free) path.
1530        */
1531       path_destroy (p);
1532       p = path_new (0);
1533     }
1534     if (p->length > 0 && id == p->peers[p->length - 1])
1535     {
1536       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    Optimizing 1 hop out.\n");
1537       GNUNET_PEER_change_rc(id, -1);
1538     }
1539     else
1540     {
1541       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
1542             "MESH:    Adding from PUT: %s.\n",
1543             GNUNET_i2s(&put_path[i]));
1544       p->length++;
1545       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1546       p->peers[p->length - 1] = id;
1547     }
1548   }
1549 #if MESH_DEBUG
1550   if (get_path_length > 0)
1551     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1552                 "MESH:    (first of GET: %s)\n",
1553                 GNUNET_h2s_full(&get_path[0].hashPubKey));
1554   if (put_path_length > 0)
1555     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1556                 "MESH:    (first of PUT: %s)\n",
1557                 GNUNET_h2s_full(&put_path[0].hashPubKey));
1558   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1559               "MESH:    In total: %d hops\n",
1560               p->length);
1561   for (i = 0; i < p->length; i++)
1562   {
1563     struct GNUNET_PeerIdentity peer_id;
1564
1565     GNUNET_PEER_resolve(p->peers[i], &peer_id);
1566     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1567               "MESH:        %u: %s\n",
1568               p->peers[i],
1569               GNUNET_h2s_full(&peer_id.hashPubKey));
1570   }
1571 #endif
1572   return p;
1573 }
1574
1575
1576 /**
1577  * Send keepalive packets for a peer
1578  *
1579  * @param cls Closure (tunnel for which to send the keepalive).
1580  * @param tc Notification context.
1581  *
1582  * TODO: implement explicit multicast keepalive?
1583  */
1584 static void
1585 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1586
1587
1588 /**
1589  * Search for a tunnel among the tunnels for a client
1590  *
1591  * @param c the client whose tunnels to search in
1592  * @param tid the local id of the tunnel
1593  *
1594  * @return tunnel handler, NULL if doesn't exist
1595  */
1596 static struct MeshTunnel *
1597 tunnel_get_by_local_id (struct MeshClient *c, MESH_TunnelNumber tid)
1598 {
1599   GNUNET_HashCode hash;
1600
1601   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
1602   if (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1603   {
1604     return GNUNET_CONTAINER_multihashmap_get (incoming_tunnels, &hash);
1605   }
1606   return GNUNET_CONTAINER_multihashmap_get (c->tunnels, &hash);
1607 }
1608
1609
1610 /**
1611  * Search for a tunnel by global ID using PEER_ID
1612  *
1613  * @param pi owner of the tunnel
1614  * @param tid global tunnel number
1615  *
1616  * @return tunnel handler, NULL if doesn't exist
1617  */
1618 static struct MeshTunnel *
1619 tunnel_get_by_pi (GNUNET_PEER_Id pi, MESH_TunnelNumber tid)
1620 {
1621   struct MESH_TunnelID id;
1622   GNUNET_HashCode hash;
1623
1624   id.oid = pi;
1625   id.tid = tid;
1626
1627   GNUNET_CRYPTO_hash (&id, sizeof (struct MESH_TunnelID), &hash);
1628   return GNUNET_CONTAINER_multihashmap_get (tunnels, &hash);
1629 }
1630
1631
1632 /**
1633  * Search for a tunnel by global ID using full PeerIdentities
1634  *
1635  * @param oid owner of the tunnel
1636  * @param tid global tunnel number
1637  *
1638  * @return tunnel handler, NULL if doesn't exist
1639  */
1640 static struct MeshTunnel *
1641 tunnel_get (struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid)
1642 {
1643   return tunnel_get_by_pi (GNUNET_PEER_search (oid), tid);
1644 }
1645
1646
1647 /**
1648  * Callback used to notify a client owner of a tunnel that a peer has
1649  * disconnected, most likely because of a path change.
1650  *
1651  * @param n Node in the tree representing the disconnected peer
1652  */
1653 void
1654 notify_peer_disconnected (const struct MeshTunnelTreeNode *n)
1655 {
1656   struct MeshPeerInfo *peer;
1657
1658   if (NULL != n->t->client && NULL != nc)
1659   {
1660     struct GNUNET_MESH_PeerControl msg;
1661     msg.header.size = htons (sizeof (msg));
1662     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
1663     msg.tunnel_id = htonl (n->t->local_tid);
1664     GNUNET_PEER_resolve (n->peer, &msg.peer);
1665     GNUNET_SERVER_notification_context_unicast (nc, n->t->client->handle,
1666                                                 &msg.header, GNUNET_NO);
1667   }
1668   peer = peer_info_get_short(n->peer);
1669   peer_info_connect(peer, n->t);
1670 }
1671
1672
1673 /**
1674  * Add a peer to a tunnel, accomodating paths accordingly and initializing all
1675  * needed rescources.
1676  * If peer already exists, reevaluate shortest path and change if different.
1677  *
1678  * @param t Tunnel we want to add a new peer to
1679  * @param peer PeerInfo of the peer being added
1680  *
1681  */
1682 static void
1683 tunnel_add_peer (struct MeshTunnel *t, struct MeshPeerInfo *peer)
1684 {
1685   struct GNUNET_PeerIdentity id;
1686   struct MeshPeerPath *best_p;
1687   struct MeshPeerPath *p;
1688   unsigned int best_cost;
1689   unsigned int cost;
1690
1691   GNUNET_PEER_resolve(peer->id, &id);
1692   if (GNUNET_NO ==
1693       GNUNET_CONTAINER_multihashmap_contains(t->peers, &id.hashPubKey))
1694   {
1695     t->peers_total++;
1696     GNUNET_array_append (peer->tunnels, peer->ntunnels, t);
1697     GNUNET_CONTAINER_multihashmap_put(
1698       t->peers,
1699       &id.hashPubKey,
1700       peer,
1701       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1702   }
1703
1704   if (NULL != (p = peer->path_head))
1705   {
1706     best_p = p;
1707     best_cost = path_get_cost(t->tree, p);
1708     while (NULL != p)
1709     {
1710       if ((cost = path_get_cost (t->tree, p)) < best_cost)
1711       {
1712         best_cost = cost;
1713         best_p = p;
1714       }
1715       p = p->next;
1716     }
1717     tree_add_path (t->tree, best_p, &notify_peer_disconnected);
1718     if (GNUNET_SCHEDULER_NO_TASK == t->path_refresh_task)
1719       t->path_refresh_task =
1720           GNUNET_SCHEDULER_add_delayed (t->tree->refresh, &path_refresh, t);
1721   }
1722   else
1723   {
1724     /* Start a DHT get if necessary */
1725     peer_info_connect(peer, t);
1726   }
1727 }
1728
1729 /**
1730  * Add a path to a tunnel which we don't own, just to remember the next hop.
1731  * If destination node was already in the tunnel, the first hop information
1732  * will be replaced with the new path.
1733  *
1734  * @param t Tunnel we want to add a new peer to
1735  * @param p Path to add
1736  * @param own_pos Position of local node in path.
1737  *
1738  */
1739 static void
1740 tunnel_add_path (struct MeshTunnel *t,
1741                  struct MeshPeerPath *p,
1742                  unsigned int own_pos)
1743 {
1744   struct GNUNET_PeerIdentity id;
1745
1746   GNUNET_assert (0 != own_pos);
1747   tree_add_path(t->tree, p, NULL);
1748   if (NULL == t->tree->me)
1749     t->tree->me = tree_find_peer(t->tree->root, p->peers[own_pos]);
1750   if (own_pos < p->length - 1)
1751   {
1752     GNUNET_PEER_resolve (p->peers[own_pos + 1], &id);
1753     tree_update_first_hops(t->tree, t->tree->me, &id);
1754   }
1755 }
1756
1757
1758 /**
1759  * Notify a tunnel that a connection has broken that affects at least
1760  * some of its peers.
1761  *
1762  * @param t Tunnel affected.
1763  * @param peer Peer that (at least) has been affected by the disconnection.
1764  * @param p1 Peer that got disconnected from p2.
1765  * @param p2 Peer that got disconnected from p1.
1766  *
1767  * @return Short ID of the peer disconnected (either p1 or p2).
1768  *         0 if the tunnel remained unaffected.
1769  */
1770 static GNUNET_PEER_Id
1771 tunnel_notify_connection_broken (struct MeshTunnel *t,
1772                                  struct MeshPeerInfo *peer,
1773                                  GNUNET_PEER_Id p1,
1774                                  GNUNET_PEER_Id p2)
1775 {
1776   return tree_notify_connection_broken (t->tree, p1, p2,
1777                                         &notify_peer_disconnected);
1778 }
1779
1780
1781 /**
1782  * Send a message in a tunnel in multicast, sending a copy to each child node
1783  * down the local one in the tunnel tree.
1784  *
1785  * @param t Tunnel in which to send the data.
1786  * @param msg Message to be sent
1787  *
1788  * @return Number of copies sent.
1789  */
1790 static int
1791 tunnel_send_multicast (struct MeshTunnel *t,
1792                        const struct GNUNET_MessageHeader *msg)
1793 {
1794   struct GNUNET_PeerIdentity neighbor;
1795   struct MeshDataDescriptor *info;
1796   struct MeshTunnelTreeNode *n;
1797   unsigned int *copies;
1798   unsigned int i;
1799   size_t size;
1800   void *data;
1801
1802   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1803               "MESH:  sending a multicast packet...\n");
1804   size = ntohs (msg->size);
1805   GNUNET_assert (NULL != t->tree->me);
1806   n = t->tree->me->children_head;
1807   if (NULL == n)
1808   {
1809     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1810               "MESH:  no children in the tree, no one to send.\n");
1811     return 0;
1812   }
1813   copies = GNUNET_malloc (sizeof (unsigned int));
1814   for (*copies = 0; NULL != n; n = n->next)
1815     (*copies)++;
1816   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  (%u copies)\n", *copies);
1817   n = t->tree->me->children_head;
1818   data = GNUNET_malloc (size);
1819   memcpy (data, msg, size);
1820   while (NULL != n)
1821   {
1822     info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
1823     info->data = data;
1824     info->size = size;
1825     info->copies = copies;
1826     if (NULL != t->client)
1827     {
1828       info->client = t->client->handle;
1829       info->timeout_task = GNUNET_SCHEDULER_add_delayed (UNACKNOWLEDGED_WAIT,
1830                                                          &client_allow_send,
1831                                                          t->client->handle);
1832     }
1833     info->destination = n->peer;
1834     GNUNET_PEER_resolve (n->peer, &neighbor);
1835     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1836               "MESH:  sending to %s...\n",
1837               GNUNET_i2s (&neighbor));
1838     info->peer = peer_info_get(&neighbor);
1839     GNUNET_assert (NULL != info->peer);
1840     i = peer_info_transmit_slot(info->peer);
1841     info->handler_n = i;
1842     info->peer->infos[i] = info;
1843     info->peer->types[i] = GNUNET_MESSAGE_TYPE_MESH_MULTICAST;
1844     info->peer->core_transmit[i] =
1845         GNUNET_CORE_notify_transmit_ready (core_handle,
1846                                            0,
1847                                            0,
1848                                            GNUNET_TIME_UNIT_FOREVER_REL,
1849                                            &neighbor,
1850                                            size,
1851                                            &send_core_data_multicast, info);
1852     n = n->next;
1853   }
1854   return *copies;
1855 }
1856
1857
1858 /**
1859  * Send a message to all peers in this tunnel that the tunnel is no longer
1860  * valid.
1861  *
1862  * @param t The tunnel whose peers to notify.
1863  */
1864 static void
1865 tunnel_send_destroy (struct MeshTunnel *t)
1866 {
1867   struct GNUNET_MESH_TunnelDestroy msg;
1868
1869   msg.header.size = htons (sizeof (msg));
1870   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
1871   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
1872   msg.tid = htonl (t->id.tid);
1873   tunnel_send_multicast (t, &msg.header);
1874 }
1875
1876
1877
1878 /**
1879  * Destroy the tunnel and free any allocated resources linked to it
1880  *
1881  * @param t the tunnel to destroy
1882  *
1883  * @return GNUNET_OK on success
1884  */
1885 static int
1886 tunnel_destroy (struct MeshTunnel *t)
1887 {
1888   struct MeshClient *c;
1889   struct MeshQueue *q;
1890   struct MeshQueue *qn;
1891   GNUNET_HashCode hash;
1892   int r;
1893
1894   if (NULL == t)
1895     return GNUNET_OK;
1896
1897   c = t->client;
1898 #if MESH_DEBUG
1899   {
1900     struct GNUNET_PeerIdentity id;
1901
1902     GNUNET_PEER_resolve(t->id.oid, &id);
1903     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1904                 "MESH: destroying tunnel %s [%x]\n",
1905                 GNUNET_i2s (&id),
1906                 t->id.tid);
1907     if (NULL != c)
1908       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
1909   }
1910 #endif
1911
1912   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
1913   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
1914   {
1915     r = GNUNET_SYSERR;
1916   }
1917
1918   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
1919   if (NULL != c &&
1920       GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (c->tunnels, &hash, t))
1921   {
1922     r = GNUNET_SYSERR;
1923   }
1924   if (t->local_tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1925   {
1926     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
1927     GNUNET_break (GNUNET_YES ==
1928       GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels, &hash, t));
1929   }
1930
1931   if (NULL != t->peers)
1932   {
1933     GNUNET_CONTAINER_multihashmap_iterate(t->peers,
1934                                           &peer_info_delete_tunnel, t);
1935     GNUNET_CONTAINER_multihashmap_destroy (t->peers);
1936   }
1937   q = t->queue_head;
1938   while (NULL != q)
1939   {
1940     if (NULL != q->data)
1941       GNUNET_free (q->data);
1942     qn = q->next;
1943     GNUNET_free (q);
1944     q = qn;
1945     /* TODO cancel core transmit ready in case it was active */
1946   }
1947   tree_destroy(t->tree);
1948   if (NULL != t->dht_get_type)
1949     GNUNET_DHT_get_stop(t->dht_get_type);
1950   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
1951     GNUNET_SCHEDULER_cancel(t->timeout_task);
1952   if (GNUNET_SCHEDULER_NO_TASK != t->path_refresh_task)
1953     GNUNET_SCHEDULER_cancel(t->path_refresh_task);
1954   GNUNET_free (t);
1955   return r;
1956 }
1957
1958
1959 /**
1960  * Removes an explicit path from a tunnel, freeing all intermediate nodes
1961  * that are no longer needed, as well as nodes of no longer reachable peers.
1962  * The tunnel itself is also destoyed if results in a remote empty tunnel.
1963  *
1964  * @param t Tunnel from which to remove the path.
1965  * @param p Peer which should be removed.
1966  */
1967 static void
1968 tunnel_delete_peer (struct MeshTunnel *t,
1969                     GNUNET_PEER_Id peer)
1970 {
1971   GNUNET_break (GNUNET_OK == tree_del_peer (t->tree, peer, NULL));
1972   if (NULL == t->tree->root)
1973     tunnel_destroy (t);
1974 }
1975
1976
1977 /**
1978  * tunnel_destroy_iterator: iterator for deleting each tunnel that belongs to a
1979  * client when the client disconnects.
1980  * 
1981  * @param cls closure (client that is disconnecting)
1982  * @param key the hash of the local tunnel id (used to access the hashmap)
1983  * @param value the value stored at the key (tunnel to destroy)
1984  * 
1985  * @return GNUNET_OK on success
1986  */
1987 static int
1988 tunnel_destroy_iterator (void *cls, const GNUNET_HashCode * key, void *value)
1989 {
1990   struct MeshTunnel *t = value;
1991   int r;
1992
1993   if (NULL != t->dht_get_type)
1994   {
1995     GNUNET_DHT_get_stop (t->dht_get_type);
1996   }
1997   r = tunnel_destroy (t);
1998   return r;
1999 }
2000
2001
2002 /**
2003  * Timeout function, destroys tunnel if called
2004  *
2005  * @param cls Closure (tunnel to destroy).
2006  * @param tc TaskContext
2007  */
2008 static void
2009 tunnel_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2010 {
2011   struct MeshTunnel *t = cls;
2012
2013   if (GNUNET_SCHEDULER_REASON_SHUTDOWN == tc->reason)
2014     return;
2015   t->timeout_task = GNUNET_SCHEDULER_NO_TASK;
2016   tunnel_destroy (t);
2017 }
2018
2019 /**
2020  * Resets the tunnel timeout. Starts it if no timeout was running.
2021  *
2022  * @param t Tunnel whose timeout to reset.
2023  */
2024 static void
2025 tunnel_reset_timeout (struct MeshTunnel *t)
2026 {
2027   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
2028     GNUNET_SCHEDULER_cancel (t->timeout_task);
2029   t->timeout_task = GNUNET_SCHEDULER_add_delayed (
2030       GNUNET_TIME_relative_multiply(REFRESH_PATH_TIME, 4),
2031       &tunnel_timeout,
2032       t);
2033 }
2034
2035
2036 /******************************************************************************/
2037 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
2038 /******************************************************************************/
2039
2040 /**
2041  * Function called to notify a client about the socket
2042  * being ready to queue more data.  "buf" will be
2043  * NULL and "size" zero if the socket was closed for
2044  * writing in the meantime.
2045  *
2046  * @param cls closure
2047  * @param size number of bytes available in buf
2048  * @param buf where the callee should write the message
2049  * @return number of bytes written to buf
2050  */
2051 static size_t
2052 send_core_create_path (void *cls, size_t size, void *buf)
2053 {
2054   struct MeshPathInfo *info = cls;
2055   struct GNUNET_MESH_ManipulatePath *msg;
2056   struct GNUNET_PeerIdentity *peer_ptr;
2057   struct MeshPeerInfo *peer = info->peer;
2058   struct MeshTunnel *t = info->t;
2059   struct MeshPeerPath *p = info->path;
2060   size_t size_needed;
2061   int i;
2062
2063   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2064               "MESH: CREATE PATH sending...\n");
2065   size_needed =
2066       sizeof (struct GNUNET_MESH_ManipulatePath) +
2067       p->length * sizeof (struct GNUNET_PeerIdentity);
2068
2069   if (size < size_needed || NULL == buf)
2070   {
2071     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: create path retransmit!\n");
2072     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   buf:  %p\n", buf);
2073     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   size: (%u/%u)\n",
2074                 size, size_needed);
2075     info->peer->core_transmit[info->pos] = 
2076       GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2077                                         GNUNET_TIME_UNIT_FOREVER_REL,
2078                                         path_get_first_hop (t->tree, peer->id),
2079                                         size_needed,
2080                                         &send_core_create_path,
2081                                         info);
2082     return 0;
2083   }
2084   info->peer->core_transmit[info->pos] = NULL;
2085 #if MESH_DEBUG
2086   {
2087     struct GNUNET_PeerIdentity id;
2088
2089     GNUNET_PEER_resolve (peer->id, &id);
2090     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2091                 "MESH:   setting core_transmit %s [%u] to NULL\n",
2092                 GNUNET_i2s (&id),
2093                 info->pos);
2094   }
2095 #endif
2096   msg = (struct GNUNET_MESH_ManipulatePath *) buf;
2097   msg->header.size = htons (size_needed);
2098   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
2099   msg->tid = ntohl (t->id.tid);
2100
2101   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
2102   for (i = 0; i < p->length; i++)
2103   {
2104     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
2105   }
2106
2107   path_destroy (p);
2108   GNUNET_free (info);
2109
2110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2111               "MESH: CREATE PATH (%u bytes long) sent!\n",
2112               size_needed);
2113   return size_needed;
2114 }
2115
2116
2117 /**
2118  * Function called to notify a client about the socket
2119  * being ready to queue more data.  "buf" will be
2120  * NULL and "size" zero if the socket was closed for
2121  * writing in the meantime.
2122  *
2123  * @param cls closure (data itself)
2124  * @param size number of bytes available in buf
2125  * @param buf where the callee should write the message
2126  * 
2127  * @return number of bytes written to buf
2128  */
2129 static size_t
2130 send_core_data_multicast (void *cls, size_t size, void *buf)
2131 {
2132   struct MeshDataDescriptor *info = cls;
2133   size_t total_size;
2134
2135   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Multicast callback.\n");
2136   GNUNET_assert (NULL != info);
2137   GNUNET_assert (NULL != info->peer);
2138   total_size = info->size;
2139   GNUNET_assert (total_size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
2140
2141   if (total_size > size)
2142   {
2143     /* Retry */
2144     struct GNUNET_PeerIdentity id;
2145
2146     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2147                 "MESH: Multicast: retransmitting... (%u/%u)\n",
2148                 size, total_size);
2149     GNUNET_PEER_resolve(info->peer->id, &id);
2150     info->peer->core_transmit[info->handler_n] =
2151       GNUNET_CORE_notify_transmit_ready (core_handle,
2152                                          0,
2153                                          0,
2154                                          GNUNET_TIME_UNIT_FOREVER_REL,
2155                                          &id,
2156                                          total_size,
2157                                          &send_core_data_multicast,
2158                                          info);
2159     return 0;
2160   }
2161   info->peer->core_transmit[info->handler_n] = NULL;
2162   info->peer->infos[info->handler_n] = NULL;
2163   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  copying data...\n");
2164   memcpy (buf, info->data, total_size);
2165 #if MESH_DEBUG
2166   {
2167     struct GNUNET_MESH_Multicast *mc;
2168     struct GNUNET_MessageHeader *mh;
2169
2170     mh = buf;
2171     if (ntohs (mh->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
2172     {
2173       mc = (struct GNUNET_MESH_Multicast *) mh;
2174       mh = (struct GNUNET_MessageHeader *) &mc[1];
2175       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2176                   "MESH:  multicast, payload type %u\n",
2177                   ntohs (mh->type));
2178       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2179                   "MESH:  multicast, payload size %u\n",
2180                   ntohs (mh->size));
2181     }
2182     else
2183     {
2184       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2185                   "MESH:  type %u\n",
2186                   ntohs (mh->type));
2187     }
2188   }
2189 #endif
2190   if (0 == --(*info->copies))
2191   {
2192     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Last copy!\n");
2193     if (NULL != info->client)
2194     {
2195       if (GNUNET_SCHEDULER_NO_TASK != info->timeout_task)
2196       {
2197         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2198                     "MESH:  cancelling client timeout (%u)...\n",
2199                     info->timeout_task);
2200         GNUNET_SCHEDULER_cancel(info->timeout_task);
2201         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  notifying client...\n");
2202         GNUNET_SERVER_receive_done (info->client, GNUNET_OK);
2203       }
2204     }
2205     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  freeing memory...\n");
2206     GNUNET_free (info->data);
2207     GNUNET_free (info->copies);
2208   }
2209   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: freeing info...\n");
2210   GNUNET_free (info);
2211   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: return %u\n", total_size);
2212   return total_size;
2213 }
2214
2215
2216 /**
2217  * Function called to notify a client about the socket
2218  * being ready to queue more data.  "buf" will be
2219  * NULL and "size" zero if the socket was closed for
2220  * writing in the meantime.
2221  *
2222  * @param cls closure (MeshDataDescriptor)
2223  * @param size number of bytes available in buf
2224  * @param buf where the callee should write the message
2225  * @return number of bytes written to buf
2226  */
2227 static size_t
2228 send_core_path_ack (void *cls, size_t size, void *buf)
2229 {
2230   struct MeshDataDescriptor *info = cls;
2231   struct GNUNET_MESH_PathACK *msg = buf;
2232
2233   GNUNET_assert (NULL != info);
2234   if (info->peer)
2235   {
2236     info->peer->core_transmit[info->handler_n] = NULL;
2237   }
2238   if (sizeof (struct GNUNET_MESH_PathACK) > size)
2239   {
2240     GNUNET_break (0);
2241     return 0;
2242   }
2243   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
2244   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
2245   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
2246   msg->tid = htonl (info->origin->tid);
2247   msg->peer_id = my_full_id;
2248   GNUNET_free (info);
2249   /* TODO add signature */
2250
2251   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: PATH ACK sent!\n");
2252   return sizeof (struct GNUNET_MESH_PathACK);
2253 }
2254
2255
2256 /******************************************************************************/
2257 /********************      MESH NETWORK HANDLERS     **************************/
2258 /******************************************************************************/
2259
2260
2261 /**
2262  * Core handler for path creation
2263  *
2264  * @param cls closure
2265  * @param message message
2266  * @param peer peer identity this notification is about
2267  * @param atsi performance data
2268  * 
2269  * @return GNUNET_OK to keep the connection open,
2270  *         GNUNET_SYSERR to close it (signal serious error)
2271  */
2272 static int
2273 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
2274                          const struct GNUNET_MessageHeader *message,
2275                          const struct GNUNET_ATS_Information *atsi)
2276 {
2277   unsigned int own_pos;
2278   uint16_t size;
2279   uint16_t i;
2280   MESH_TunnelNumber tid;
2281   struct GNUNET_MESH_ManipulatePath *msg;
2282   struct GNUNET_PeerIdentity *pi;
2283   GNUNET_HashCode hash;
2284   struct MeshPeerPath *path;
2285   struct MeshPeerInfo *dest_peer_info;
2286   struct MeshPeerInfo *orig_peer_info;
2287   struct MeshTunnel *t;
2288
2289   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2290               "MESH: Received a path create msg [%s]\n",
2291               GNUNET_i2s(&my_full_id));
2292   size = ntohs (message->size);
2293   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
2294   {
2295     GNUNET_break_op (0);
2296     return GNUNET_OK;
2297   }
2298
2299   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
2300   if (size % sizeof (struct GNUNET_PeerIdentity))
2301   {
2302     GNUNET_break_op (0);
2303     return GNUNET_OK;
2304   }
2305   size /= sizeof (struct GNUNET_PeerIdentity);
2306   if (size < 2)
2307   {
2308     GNUNET_break_op (0);
2309     return GNUNET_OK;
2310   }
2311   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2312               "MESH:     path has %u hops.\n",
2313               size);
2314   msg = (struct GNUNET_MESH_ManipulatePath *) message;
2315
2316   tid = ntohl (msg->tid);
2317   pi = (struct GNUNET_PeerIdentity *) &msg[1];
2318   t = tunnel_get (pi, tid);
2319   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2320               "MESH:     path is for tunnel %s [%X].\n",
2321               GNUNET_i2s(pi),
2322               tid);
2323   if (NULL == t)
2324   {
2325     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating tunnel\n");
2326     t = GNUNET_malloc (sizeof (struct MeshTunnel));
2327     t->id.oid = GNUNET_PEER_intern (pi);
2328     t->id.tid = tid;
2329     t->local_tid = next_local_tid++;
2330     /* FIXME test if taken */
2331     next_local_tid |= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
2332     t->tree = tree_new(t, t->id.oid);
2333
2334     GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2335     if (GNUNET_OK !=
2336         GNUNET_CONTAINER_multihashmap_put (
2337             tunnels,
2338             &hash,
2339             t,
2340             GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2341     {
2342       tunnel_destroy (t);
2343       GNUNET_break (0);
2344       return GNUNET_OK;
2345     }
2346     tunnel_reset_timeout (t);
2347     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
2348     if (GNUNET_OK !=
2349         GNUNET_CONTAINER_multihashmap_put (
2350             incoming_tunnels,
2351             &hash,
2352             t,
2353             GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2354     {
2355       tunnel_destroy (t);
2356       GNUNET_break (0);
2357       return GNUNET_OK;
2358     }
2359   }
2360   dest_peer_info =
2361       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
2362   if (NULL == dest_peer_info)
2363   {
2364     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2365                 "MESH:   Creating PeerInfo for destination.\n");
2366     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
2367     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
2368     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
2369                                        dest_peer_info,
2370                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2371   }
2372   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
2373   if (NULL == orig_peer_info)
2374   {
2375     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2376                 "MESH:   Creating PeerInfo for origin.\n");
2377     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
2378     orig_peer_info->id = GNUNET_PEER_intern (pi);
2379     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
2380                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2381   }
2382   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating path...\n");
2383   path = path_new (size);
2384   own_pos = 0;
2385   for (i = 0; i < size; i++)
2386   {
2387     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2388                 "MESH:   ... adding %s\n",
2389                 GNUNET_i2s(&pi[i]));
2390     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
2391     if (path->peers[i] == myid)
2392       own_pos = i;
2393   }
2394   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2395                 "MESH:   Own position: %u\n", own_pos);
2396   if (own_pos == 0)
2397   {
2398     /* cannot be self, must be 'not found' */
2399     /* create path: self not found in path through self */
2400     GNUNET_break_op (0);
2401     path_destroy (path);
2402     /* FIXME error. destroy tunnel? leave for timeout? */
2403     return 0;
2404   }
2405   tunnel_add_path (t, path, own_pos);
2406   if (own_pos == size - 1)
2407   {
2408     /* It is for us! Send ack. */
2409     struct GNUNET_MESH_TunnelNotification cmsg;
2410     struct MeshDataDescriptor *info;
2411     unsigned int j;
2412
2413     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2414                 "MESH:   It's for us!\n");
2415     path_add_to_origin (orig_peer_info, path);
2416     t->peers = GNUNET_CONTAINER_multihashmap_create(4);
2417     GNUNET_break (GNUNET_OK == GNUNET_CONTAINER_multihashmap_put (
2418         t->peers,
2419         &my_full_id.hashPubKey,
2420         peer_info_get(&my_full_id),
2421         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
2422     info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
2423     info->origin = &t->id;
2424     info->peer = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
2425     GNUNET_assert (NULL != info->peer);
2426     j = peer_info_transmit_slot(info->peer);
2427     info->handler_n = j;
2428     info->peer->types[j] = GNUNET_MESSAGE_TYPE_MESH_PATH_ACK;
2429     info->peer->infos[j] = info;
2430     info->peer->core_transmit[j] =
2431         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 100,
2432                                            GNUNET_TIME_UNIT_FOREVER_REL, peer,
2433                                            sizeof (struct GNUNET_MESH_PathACK),
2434                                            &send_core_path_ack, info);
2435     cmsg.header.size = htons(sizeof(cmsg));
2436     cmsg.header.type = htons(GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
2437     GNUNET_PEER_resolve(t->id.oid, &cmsg.peer);
2438     cmsg.tunnel_id = htonl(t->local_tid);
2439     GNUNET_SERVER_notification_context_broadcast(nc, &cmsg.header, GNUNET_NO);
2440   }
2441   else
2442   {
2443     struct MeshPeerPath *path2;
2444
2445     /* It's for somebody else! Retransmit. */
2446     path2 = path_duplicate(path);
2447     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2448                 "MESH:   Retransmitting.\n");
2449     path_add_to_peer(dest_peer_info, path);
2450     path = path_duplicate(path2);
2451     path_add_to_origin(orig_peer_info, path2);
2452     send_create_path(dest_peer_info, path, t);
2453   }
2454   return GNUNET_OK;
2455 }
2456
2457
2458 /**
2459  * Core handler for path destruction
2460  *
2461  * @param cls closure
2462  * @param message message
2463  * @param peer peer identity this notification is about
2464  * @param atsi performance data
2465  *
2466  * @return GNUNET_OK to keep the connection open,
2467  *         GNUNET_SYSERR to close it (signal serious error)
2468  */
2469 static int
2470 handle_mesh_path_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
2471                           const struct GNUNET_MessageHeader *message,
2472                           const struct GNUNET_ATS_Information *atsi)
2473 {
2474   struct GNUNET_MESH_ManipulatePath *msg;
2475   struct GNUNET_PeerIdentity *pi;
2476   struct MeshPeerPath *path;
2477   struct MeshTunnel *t;
2478   unsigned int own_pos;
2479   unsigned int i;
2480   size_t size;
2481
2482   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2483               "MESH: Received a PATH DESTROY msg from %s\n",
2484               GNUNET_i2s(peer));
2485   size = ntohs (message->size);
2486   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
2487   {
2488     GNUNET_break_op (0);
2489     return GNUNET_OK;
2490   }
2491
2492   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
2493   if (size % sizeof (struct GNUNET_PeerIdentity))
2494   {
2495     GNUNET_break_op (0);
2496     return GNUNET_OK;
2497   }
2498   size /= sizeof (struct GNUNET_PeerIdentity);
2499   if (size < 2)
2500   {
2501     GNUNET_break_op (0);
2502     return GNUNET_OK;
2503   }
2504   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2505               "MESH:     path has %u hops.\n",
2506               size);
2507
2508   msg = (struct GNUNET_MESH_ManipulatePath *) message;
2509   pi = (struct GNUNET_PeerIdentity *) &msg[1];
2510   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2511               "MESH:     path is for tunnel %s [%X].\n",
2512               GNUNET_i2s(pi),
2513               msg->tid);
2514   t = tunnel_get (pi, ntohl (msg->tid));
2515   if (NULL == t)
2516   {
2517     /* TODO notify back: we don't know this tunnel */
2518     GNUNET_break_op (0);
2519     return GNUNET_OK;
2520   }
2521   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating path...\n");
2522   path = path_new (size);
2523   own_pos = 0;
2524   for (i = 0; i < size; i++)
2525   {
2526     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2527                 "MESH:   ... adding %s\n",
2528                 GNUNET_i2s(&pi[i]));
2529     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
2530     if (path->peers[i] == myid)
2531       own_pos = i;
2532   }
2533   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2534                 "MESH:   Own position: %u\n", own_pos);
2535   if (own_pos < path->length - 1)
2536     send_message (message, &pi[own_pos + 1]);
2537   tunnel_delete_peer (t, path->peers[path->length - 1]);
2538   return GNUNET_OK;
2539 }
2540
2541
2542 /**
2543  * Core handler for tunnel destruction
2544  *
2545  * @param cls closure
2546  * @param message message
2547  * @param peer peer identity this notification is about
2548  * @param atsi performance data
2549  *
2550  * @return GNUNET_OK to keep the connection open,
2551  *         GNUNET_SYSERR to close it (signal serious error)
2552  */
2553 static int
2554 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
2555                             const struct GNUNET_MessageHeader *message,
2556                             const struct GNUNET_ATS_Information *atsi)
2557 {
2558   struct GNUNET_MESH_TunnelDestroy *msg;
2559   struct MeshTunnel *t;
2560
2561   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2562               "MESH: Got a TUNNEL DESTROY packet from %s\n",
2563               GNUNET_i2s (peer));
2564   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
2565   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2566               "MESH:   for tunnel %s [%u]\n",
2567               GNUNET_i2s (&msg->oid),
2568               ntohl (msg->tid));
2569   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2570   if (NULL == t)
2571   {
2572     /* TODO notify back: we don't know this tunnel */
2573     GNUNET_break_op (0);
2574     return GNUNET_OK;
2575   }
2576   if (t->id.oid == myid)
2577   {
2578     GNUNET_break_op (0);
2579     return GNUNET_OK;
2580   }
2581   if (t->local_tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
2582   {
2583     /* Tunnel was incoming, notify clients */
2584     send_clients_tunnel_destroy (t);
2585   }
2586   tunnel_send_destroy (t);
2587   tunnel_destroy (t);
2588   return GNUNET_OK;
2589 }
2590
2591
2592 /**
2593  * Core handler for mesh network traffic going from the origin to a peer
2594  *
2595  * @param cls closure
2596  * @param peer peer identity this notification is about
2597  * @param message message
2598  * @param atsi performance data
2599  * @return GNUNET_OK to keep the connection open,
2600  *         GNUNET_SYSERR to close it (signal serious error)
2601  */
2602 static int
2603 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2604                           const struct GNUNET_MessageHeader *message,
2605                           const struct GNUNET_ATS_Information *atsi)
2606 {
2607   struct GNUNET_MESH_Unicast *msg;
2608   struct MeshTunnel *t;
2609   GNUNET_PEER_Id pid;
2610   size_t size;
2611
2612   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2613               "MESH: got a unicast packet from %s\n",
2614               GNUNET_i2s (peer));
2615   size = ntohs (message->size);
2616   if (size <
2617       sizeof (struct GNUNET_MESH_Unicast) +
2618       sizeof (struct GNUNET_MessageHeader))
2619   {
2620     GNUNET_break (0);
2621     return GNUNET_OK;
2622   }
2623   msg = (struct GNUNET_MESH_Unicast *) message;
2624   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2625               "MESH:  of type %u\n",
2626               ntohs (msg[1].header.type));
2627   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2628   if (NULL == t)
2629   {
2630     /* TODO notify back: we don't know this tunnel */
2631     GNUNET_break_op (0);
2632     return GNUNET_OK;
2633   }
2634   tunnel_reset_timeout (t);
2635   pid = GNUNET_PEER_search(&msg->destination);
2636   if (pid == myid)
2637   {
2638     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2639                 "MESH:   it's for us! sending to clients...\n");
2640     send_subscribed_clients (message, (struct GNUNET_MessageHeader *) &msg[1]);
2641     return GNUNET_OK;
2642   }
2643   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2644               "MESH:   not for us, retransmitting...\n");
2645   send_message (message, path_get_first_hop(t->tree, pid));
2646   return GNUNET_OK;
2647 }
2648
2649
2650 /**
2651  * Core handler for mesh network traffic going from the origin to all peers
2652  *
2653  * @param cls closure
2654  * @param message message
2655  * @param peer peer identity this notification is about
2656  * @param atsi performance data
2657  * @return GNUNET_OK to keep the connection open,
2658  *         GNUNET_SYSERR to close it (signal serious error)
2659  *
2660  * TODO: Check who we got this from, to validate route.
2661  */
2662 static int
2663 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2664                             const struct GNUNET_MessageHeader *message,
2665                             const struct GNUNET_ATS_Information *atsi)
2666 {
2667   struct GNUNET_MESH_Multicast *msg;
2668   struct MeshTunnel *t;
2669   size_t size;
2670
2671   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2672               "MESH: got a multicast packet from %s\n",
2673               GNUNET_i2s (peer));
2674   size = ntohs (message->size);
2675   if (sizeof (struct GNUNET_MESH_Multicast) +
2676       sizeof (struct GNUNET_MessageHeader) > size)
2677   {
2678     GNUNET_break_op (0);
2679     return GNUNET_OK;
2680   }
2681   msg = (struct GNUNET_MESH_Multicast *) message;
2682   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2683
2684   if (NULL == t)
2685   {
2686     /* TODO notify that we dont know that tunnel */
2687     GNUNET_break_op (0);
2688     return GNUNET_OK;
2689   }
2690   tunnel_reset_timeout (t);
2691
2692   /* Transmit to locally interested clients */
2693   if (NULL != t->peers &&
2694       GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
2695   {
2696     send_subscribed_clients (message, &msg[1].header);
2697   }
2698   tunnel_send_multicast(t, message);
2699   return GNUNET_OK;
2700 }
2701
2702
2703 /**
2704  * Core handler for mesh network traffic toward the owner of a tunnel
2705  *
2706  * @param cls closure
2707  * @param message message
2708  * @param peer peer identity this notification is about
2709  * @param atsi performance data
2710  *
2711  * @return GNUNET_OK to keep the connection open,
2712  *         GNUNET_SYSERR to close it (signal serious error)
2713  */
2714 static int
2715 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
2716                           const struct GNUNET_MessageHeader *message,
2717                           const struct GNUNET_ATS_Information *atsi)
2718 {
2719   struct GNUNET_MESH_ToOrigin *msg;
2720   struct GNUNET_PeerIdentity id;
2721   struct MeshPeerInfo *peer_info;
2722   struct MeshTunnel *t;
2723   size_t size;
2724
2725   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2726               "MESH: got a ToOrigin packet from %s\n",
2727               GNUNET_i2s (peer));
2728   size = ntohs (message->size);
2729   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
2730       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
2731   {
2732     GNUNET_break_op (0);
2733     return GNUNET_OK;
2734   }
2735   msg = (struct GNUNET_MESH_ToOrigin *) message;
2736   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2737               "MESH:  of type %u\n",
2738               ntohs (msg[1].header.type));
2739   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2740
2741   if (NULL == t)
2742   {
2743     /* TODO notify that we dont know this tunnel (whom)? */
2744     GNUNET_break_op (0);
2745     return GNUNET_OK;
2746   }
2747
2748   if (t->id.oid == myid)
2749   {
2750     char cbuf[size];
2751     struct GNUNET_MESH_ToOrigin *copy;
2752
2753     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2754                 "MESH:   it's for us! sending to clients...\n");
2755     if (NULL == t->client)
2756     {
2757       /* got data packet for ownerless tunnel */
2758       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2759                 "MESH:   no clients!\n");
2760       GNUNET_break_op (0);
2761       return GNUNET_OK;
2762     }
2763     /* TODO signature verification */
2764     memcpy (cbuf, message, size);
2765     copy = (struct GNUNET_MESH_ToOrigin *) cbuf;
2766     copy->tid = htonl (t->local_tid);
2767     GNUNET_SERVER_notification_context_unicast (nc,
2768                                                 t->client->handle,
2769                                                 &copy->header,
2770                                                 GNUNET_YES);
2771     return GNUNET_OK;
2772   }
2773   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2774               "MESH:   not for us, retransmitting...\n");
2775
2776   peer_info = peer_info_get (&msg->oid);
2777   if (NULL == peer_info)
2778   {
2779     /* unknown origin of tunnel */
2780     GNUNET_break (0);
2781     return GNUNET_OK;
2782   }
2783   GNUNET_PEER_resolve (t->tree->me->parent->peer, &id);
2784   send_message (message, &id);
2785
2786   return GNUNET_OK;
2787 }
2788
2789
2790 /**
2791  * Core handler for path ACKs
2792  *
2793  * @param cls closure
2794  * @param message message
2795  * @param peer peer identity this notification is about
2796  * @param atsi performance data
2797  *
2798  * @return GNUNET_OK to keep the connection open,
2799  *         GNUNET_SYSERR to close it (signal serious error)
2800  */
2801 static int
2802 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
2803                       const struct GNUNET_MessageHeader *message,
2804                       const struct GNUNET_ATS_Information *atsi)
2805 {
2806   struct GNUNET_MESH_PathACK *msg;
2807   struct GNUNET_PeerIdentity id;
2808   struct MeshTunnelTreeNode *n;
2809   struct MeshPeerInfo *peer_info;
2810   struct MeshTunnel *t;
2811
2812   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2813               "MESH: Received a path ACK msg [%s]\n",
2814               GNUNET_i2s(&my_full_id));
2815   msg = (struct GNUNET_MESH_PathACK *) message;
2816   t = tunnel_get (&msg->oid, msg->tid);
2817   if (NULL == t)
2818   {
2819     /* TODO notify that we don't know the tunnel */
2820     return GNUNET_OK;
2821   }
2822
2823   /* Message for us? */
2824   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
2825   {
2826     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   It's for us!\n");
2827     if (NULL == t->client)
2828     {
2829       GNUNET_break_op (0);
2830       return GNUNET_OK;
2831     }
2832     peer_info = peer_info_get (&msg->peer_id);
2833     if (NULL == peer_info)
2834     {
2835       GNUNET_break_op (0);
2836       return GNUNET_OK;
2837     }
2838     n = tree_find_peer(t->tree->root, peer_info->id);
2839     if (NULL == n)
2840     {
2841       GNUNET_break_op (0);
2842       return GNUNET_OK;
2843     }
2844     n->status = MESH_PEER_READY;
2845     send_client_peer_connected(t, peer_info->id);
2846     return GNUNET_OK;
2847   }
2848   
2849   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2850               "MESH:   not for us, retransmitting...\n");
2851   GNUNET_PEER_resolve(t->tree->me->parent->peer, &id);
2852   peer_info = peer_info_get (&msg->oid);
2853   if (NULL == peer_info)
2854   {
2855     /* If we know the tunnel, we should DEFINITELY know the peer */
2856     GNUNET_break (0);
2857     return GNUNET_OK;
2858   }
2859   send_message (message, &id);
2860   return GNUNET_OK;
2861 }
2862
2863
2864 /**
2865  * Functions to handle messages from core
2866  */
2867 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
2868   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
2869   {&handle_mesh_path_destroy, GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY, 0},
2870   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY, 0},
2871   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
2872   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
2873   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
2874   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
2875    sizeof (struct GNUNET_MESH_PathACK)},
2876   {NULL, 0, 0}
2877 };
2878
2879
2880
2881 /******************************************************************************/
2882 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
2883 /******************************************************************************/
2884
2885 /**
2886  * deregister_app: iterator for removing each application registered by a client
2887  * 
2888  * @param cls closure
2889  * @param key the hash of the application id (used to access the hashmap)
2890  * @param value the value stored at the key (client)
2891  * 
2892  * @return GNUNET_OK on success
2893  */
2894 static int
2895 deregister_app (void *cls, const GNUNET_HashCode * key, void *value)
2896 {
2897   GNUNET_break (GNUNET_YES == 
2898       GNUNET_CONTAINER_multihashmap_remove (applications, key, value));
2899   return GNUNET_OK;
2900 }
2901
2902 #if LATER
2903 /**
2904  * notify_client_connection_failure: notify a client that the connection to the
2905  * requested remote peer is not possible (for instance, no route found)
2906  * Function called when the socket is ready to queue more data. "buf" will be
2907  * NULL and "size" zero if the socket was closed for writing in the meantime.
2908  *
2909  * @param cls closure
2910  * @param size number of bytes available in buf
2911  * @param buf where the callee should write the message
2912  * @return number of bytes written to buf
2913  */
2914 static size_t
2915 notify_client_connection_failure (void *cls, size_t size, void *buf)
2916 {
2917   int size_needed;
2918   struct MeshPeerInfo *peer_info;
2919   struct GNUNET_MESH_PeerControl *msg;
2920   struct GNUNET_PeerIdentity id;
2921
2922   if (0 == size && NULL == buf)
2923   {
2924     // TODO retry? cancel?
2925     return 0;
2926   }
2927
2928   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
2929   peer_info = (struct MeshPeerInfo *) cls;
2930   msg = (struct GNUNET_MESH_PeerControl *) buf;
2931   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
2932   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
2933 //     msg->tunnel_id = htonl(peer_info->t->tid);
2934   GNUNET_PEER_resolve (peer_info->id, &id);
2935   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
2936
2937   return size_needed;
2938 }
2939 #endif
2940
2941
2942 /**
2943  * Send keepalive packets for a peer
2944  *
2945  * @param cls Closure (tunnel for which to send the keepalive).
2946  * @param tc Notification context.
2947  *
2948  * TODO: implement explicit multicast keepalive?
2949  */
2950 static void
2951 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2952 {
2953   struct MeshTunnel *t = cls;
2954   struct GNUNET_MessageHeader *payload;
2955   struct GNUNET_MESH_Multicast *msg;
2956   size_t size = sizeof(struct GNUNET_MESH_Multicast) +
2957                 sizeof(struct GNUNET_MessageHeader);
2958   char cbuf[size];
2959
2960   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
2961   {
2962     return;
2963   }
2964   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
2965
2966   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2967               "MESH: sending keepalive for tunnel %d\n",
2968               t->id.tid);
2969
2970   msg = (struct GNUNET_MESH_Multicast *) cbuf;
2971   msg->header.size = htons (size);
2972   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
2973   msg->oid = my_full_id;
2974   msg->tid = htonl(t->id.tid);
2975   payload = (struct GNUNET_MessageHeader *) &msg[1];
2976   payload->size = htons (sizeof(struct GNUNET_MessageHeader));
2977   payload->type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE);
2978   tunnel_send_multicast (t, &msg->header);
2979
2980   t->path_refresh_task =
2981       GNUNET_SCHEDULER_add_delayed (t->tree->refresh, &path_refresh, t);
2982   return;
2983 }
2984
2985
2986 /**
2987  * Function to process paths received for a new peer addition. The recorded
2988  * paths form the initial tunnel, which can be optimized later.
2989  * Called on each result obtained for the DHT search.
2990  *
2991  * @param cls closure
2992  * @param exp when will this value expire
2993  * @param key key of the result
2994  * @param type type of the result
2995  * @param size number of bytes in data
2996  * @param data pointer to the result data
2997  *
2998  * TODO: re-issue the request after certain time? cancel after X results?
2999  */
3000 static void
3001 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
3002                     const GNUNET_HashCode * key,
3003                     const struct GNUNET_PeerIdentity *get_path,
3004                     unsigned int get_path_length,
3005                     const struct GNUNET_PeerIdentity *put_path,
3006                     unsigned int put_path_length,
3007                     enum GNUNET_BLOCK_Type type, size_t size, const void *data)
3008 {
3009   struct MeshPathInfo *path_info = cls;
3010   struct MeshPeerPath *p;
3011   struct GNUNET_PeerIdentity pi;
3012   int i;
3013
3014   GNUNET_PEER_resolve (path_info->peer->id, &pi);
3015   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
3016              "MESH: Got results from DHT for %s\n",
3017              GNUNET_h2s_full(&pi.hashPubKey));
3018   GNUNET_DHT_get_stop(path_info->peer->dhtget);
3019   path_info->peer->dhtget = NULL;
3020
3021   p = path_build_from_dht (get_path, get_path_length,
3022                            put_path, put_path_length);
3023   path_add_to_peer (path_info->peer, p);
3024   for (i = 0; i < path_info->peer->ntunnels; i++)
3025   {
3026     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
3027     peer_info_connect(path_info->peer, path_info->t);
3028   }
3029   GNUNET_free (path_info);
3030
3031   return;
3032 }
3033
3034
3035 /**
3036  * Function to process paths received for a new peer addition. The recorded
3037  * paths form the initial tunnel, which can be optimized later.
3038  * Called on each result obtained for the DHT search.
3039  *
3040  * @param cls closure
3041  * @param exp when will this value expire
3042  * @param key key of the result
3043  * @param type type of the result
3044  * @param size number of bytes in data
3045  * @param data pointer to the result data
3046  */
3047 static void
3048 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
3049                       const GNUNET_HashCode * key,
3050                       const struct GNUNET_PeerIdentity *get_path,
3051                       unsigned int get_path_length,
3052                       const struct GNUNET_PeerIdentity *put_path,
3053                       unsigned int put_path_length,
3054                       enum GNUNET_BLOCK_Type type, size_t size,
3055                       const void *data)
3056 {
3057   const struct GNUNET_PeerIdentity *pi = data;
3058   struct GNUNET_PeerIdentity id;
3059   struct MeshTunnel *t = cls;
3060   struct MeshPeerInfo *peer_info;
3061   struct MeshPathInfo *path_info;
3062   struct MeshPeerPath *p;
3063   int i;
3064
3065   if (size != sizeof (struct GNUNET_PeerIdentity))
3066   {
3067     GNUNET_break_op (0);
3068     return;
3069   }
3070   GNUNET_assert (NULL != t->client);
3071   GNUNET_DHT_get_stop (t->dht_get_type);
3072   t->dht_get_type = NULL;
3073   peer_info = peer_info_get (pi);
3074   GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey, peer_info,
3075                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3076
3077   if ((NULL == get_path || NULL == put_path) && NULL == peer_info->path_head &&
3078       NULL == peer_info->dhtget)
3079   {
3080     peer_info_connect (peer_info, t);
3081     return;
3082   }
3083
3084   p = path_build_from_dht (get_path, get_path_length, put_path, put_path_length);
3085   path_add_to_peer (peer_info, p);
3086   tunnel_add_peer(t, peer_info);
3087   p = tree_get_path_to_peer(t->tree, peer_info->id);
3088 #if MESH_DEBUG
3089   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3090               "MESH: new route for tunnel 0x%x found, has %u hops\n",
3091               t->local_tid, p->length);
3092   for (i = 0; i < p->length; i++)
3093   {
3094     GNUNET_PEER_resolve (p->peers[0], &id);
3095     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:\t%d\t%s\n", i,
3096                 GNUNET_h2s_full (&id.hashPubKey));
3097   }
3098 #endif
3099
3100   if (p->length > 1)
3101   {
3102     send_create_path(peer_info, p, t);
3103     return;
3104   }
3105   path_destroy(p);
3106   send_client_peer_connected(t, myid);
3107 }
3108
3109
3110 /******************************************************************************/
3111 /*********************       MESH LOCAL HANDLES      **************************/
3112 /******************************************************************************/
3113
3114
3115 /**
3116  * Handler for client disconnection
3117  *
3118  * @param cls closure
3119  * @param client identification of the client; NULL
3120  *        for the last call when the server is destroyed
3121  */
3122 static void
3123 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
3124 {
3125   struct MeshClient *c;
3126   struct MeshClient *next;
3127
3128   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: client disconnected\n");
3129   if (client == NULL)
3130      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    (SERVER DOWN)\n");
3131   c = clients;
3132   while (NULL != c)
3133   {
3134     if (c->handle != client && NULL != client)
3135     {
3136       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    ... searching\n");
3137       c = c->next;
3138       continue;
3139     }
3140     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: matching client found\n");
3141     if (NULL != c->tunnels)
3142     {
3143       GNUNET_CONTAINER_multihashmap_iterate (c->tunnels,
3144                                              &tunnel_destroy_iterator,
3145                                              c);
3146       GNUNET_CONTAINER_multihashmap_destroy (c->tunnels);
3147     }
3148
3149     /* deregister clients applications */
3150     if (NULL != c->apps)
3151     {
3152       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, NULL);
3153       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
3154     }
3155     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
3156         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
3157     {
3158       GNUNET_SCHEDULER_cancel (announce_applications_task);
3159       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
3160     }
3161     if (NULL != c->types)
3162       GNUNET_CONTAINER_multihashmap_destroy (c->types);
3163     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
3164     next = c->next;
3165     GNUNET_free (c);
3166     c = next;
3167   }
3168
3169   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    done!\n");
3170   return;
3171 }
3172
3173
3174 /**
3175  * Handler for new clients
3176  *
3177  * @param cls closure
3178  * @param client identification of the client
3179  * @param message the actual message, which includes messages the client wants
3180  */
3181 static void
3182 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
3183                          const struct GNUNET_MessageHeader *message)
3184 {
3185   struct GNUNET_MESH_ClientConnect *cc_msg;
3186   struct MeshClient *c;
3187   GNUNET_MESH_ApplicationType *a;
3188   unsigned int size;
3189   uint16_t ntypes;
3190   uint16_t *t;
3191   uint16_t napps;
3192   uint16_t i;
3193
3194   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client connected\n");
3195   /* Check data sanity */
3196   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
3197   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
3198   ntypes = ntohs (cc_msg->types);
3199   napps = ntohs (cc_msg->applications);
3200   if (size !=
3201       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
3202   {
3203     GNUNET_break (0);
3204     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3205     return;
3206   }
3207
3208   /* Create new client structure */
3209   c = GNUNET_malloc (sizeof (struct MeshClient));
3210 #if MESH_DEBUG
3211   c->id = next_client_id++;
3212 #endif
3213   c->handle = client;
3214   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
3215   if (napps > 0)
3216   {
3217     GNUNET_MESH_ApplicationType at;
3218     GNUNET_HashCode hc;
3219
3220     c->apps = GNUNET_CONTAINER_multihashmap_create (napps);
3221     for (i = 0; i < napps; i++)
3222     {
3223       at = ntohl (a[i]);
3224       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   app type: %u\n", at);
3225       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
3226       /* store in clients hashmap */
3227       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, c,
3228                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3229       /* store in global hashmap, for announcements */
3230       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
3231                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3232     }
3233     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
3234       announce_applications_task =
3235           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
3236
3237   }
3238   if (ntypes > 0)
3239   {
3240     uint16_t u16;
3241     GNUNET_HashCode hc;
3242
3243     t = (uint16_t *) & a[napps];
3244     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes);
3245     for (i = 0; i < ntypes; i++)
3246     {
3247       u16 = ntohs (t[i]);
3248       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
3249
3250       /* store in clients hashmap */
3251       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
3252                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3253       /* store in global hashmap */
3254       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
3255                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3256     }
3257   }
3258   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3259               "MESH:  client has %u+%u subscriptions\n", napps, ntypes);
3260
3261   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
3262   c->tunnels = GNUNET_CONTAINER_multihashmap_create (32);
3263   GNUNET_SERVER_notification_context_add (nc, client);
3264
3265   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3266 #if MESH_DEBUG
3267   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client processed\n");
3268 #endif
3269 }
3270
3271
3272 /**
3273  * Handler for requests of new tunnels
3274  *
3275  * @param cls closure
3276  * @param client identification of the client
3277  * @param message the actual message
3278  */
3279 static void
3280 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
3281                             const struct GNUNET_MessageHeader *message)
3282 {
3283   struct GNUNET_MESH_TunnelMessage *t_msg;
3284   struct MeshTunnel *t;
3285   struct MeshClient *c;
3286   GNUNET_HashCode hash;
3287
3288   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new tunnel requested\n");
3289
3290   /* Sanity check for client registration */
3291   if (NULL == (c = client_get (client)))
3292   {
3293     GNUNET_break (0);
3294     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3295     return;
3296   }
3297 #if MESH_DEBUG
3298   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
3299 #endif
3300
3301   /* Message sanity check */
3302   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
3303   {
3304     GNUNET_break (0);
3305     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3306     return;
3307   }
3308
3309   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
3310   /* Sanity check for tunnel numbering */
3311   if (0 == (ntohl (t_msg->tunnel_id) & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
3312   {
3313     GNUNET_break (0);
3314     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3315     return;
3316   }
3317   /* Sanity check for duplicate tunnel IDs */
3318   if (NULL != tunnel_get_by_local_id (c, ntohl (t_msg->tunnel_id)))
3319   {
3320     GNUNET_break (0);
3321     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3322     return;
3323   }
3324
3325   t = GNUNET_malloc (sizeof (struct MeshTunnel));
3326   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: CREATED TUNNEL at %p\n", t);
3327   while (NULL != tunnel_get_by_pi (myid, next_tid))
3328     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
3329   t->id.tid = next_tid++;
3330   t->id.oid = myid;
3331   t->local_tid = ntohl (t_msg->tunnel_id);
3332   t->client = c;
3333   t->peers = GNUNET_CONTAINER_multihashmap_create (32);
3334
3335   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
3336   if (GNUNET_OK !=
3337       GNUNET_CONTAINER_multihashmap_put (c->tunnels, &hash, t,
3338                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3339   {
3340     GNUNET_break (0);
3341     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3342     return;
3343   }
3344
3345   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3346   if (GNUNET_OK !=
3347       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
3348                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3349   {
3350     GNUNET_break (0);
3351     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3352     return;
3353   }
3354   t->tree = tree_new (t, myid);
3355   t->tree->refresh = REFRESH_PATH_TIME;
3356   t->tree->root->status = MESH_PEER_READY;
3357   t->tree->me = t->tree->root;
3358
3359   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3360   return;
3361 }
3362
3363
3364 /**
3365  * Handler for requests of deleting tunnels
3366  *
3367  * @param cls closure
3368  * @param client identification of the client
3369  * @param message the actual message
3370  */
3371 static void
3372 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
3373                              const struct GNUNET_MessageHeader *message)
3374 {
3375   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
3376   struct MeshClient *c;
3377   struct MeshTunnel *t;
3378   MESH_TunnelNumber tid;
3379   GNUNET_HashCode hash;
3380
3381   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3382               "MESH: Got a DESTROY TUNNEL from client!\n");
3383
3384   /* Sanity check for client registration */
3385   if (NULL == (c = client_get (client)))
3386   {
3387     GNUNET_break (0);
3388     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3389     return;
3390   }
3391   /* Message sanity check */
3392   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
3393   {
3394     GNUNET_break (0);
3395     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3396     return;
3397   }
3398 #if MESH_DEBUG
3399   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
3400 #endif
3401   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
3402
3403   /* Retrieve tunnel */
3404   tid = ntohl (tunnel_msg->tunnel_id);
3405
3406   /* Remove from local id hashmap */
3407   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
3408   t = GNUNET_CONTAINER_multihashmap_get (c->tunnels, &hash);
3409   GNUNET_CONTAINER_multihashmap_remove (c->tunnels, &hash, t);
3410
3411   t->client = NULL;
3412   tunnel_send_destroy (t);
3413   tunnel_destroy(t);
3414   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3415   return;
3416 }
3417
3418
3419 /**
3420  * Handler for connection requests to new peers
3421  *
3422  * @param cls closure
3423  * @param client identification of the client
3424  * @param message the actual message (PeerControl)
3425  */
3426 static void
3427 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
3428                           const struct GNUNET_MessageHeader *message)
3429 {
3430   struct GNUNET_MESH_PeerControl *peer_msg;
3431   struct MeshPeerInfo *peer_info;
3432   struct MeshClient *c;
3433   struct MeshTunnel *t;
3434   MESH_TunnelNumber tid;
3435
3436   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH: Got connection request\n");
3437   /* Sanity check for client registration */
3438   if (NULL == (c = client_get (client)))
3439   {
3440     GNUNET_break (0);
3441     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3442     return;
3443   }
3444
3445   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
3446   /* Sanity check for message size */
3447   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
3448   {
3449     GNUNET_break (0);
3450     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3451     return;
3452   }
3453
3454   /* Tunnel exists? */
3455   tid = ntohl (peer_msg->tunnel_id);
3456   t = tunnel_get_by_local_id (c, tid);
3457   if (NULL == t)
3458   {
3459     GNUNET_break (0);
3460     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3461     return;
3462   }
3463
3464   /* Does client own tunnel? */
3465   if (t->client->handle != client)
3466   {
3467     GNUNET_break (0);
3468     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3469     return;
3470   }
3471   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:      for %s\n",
3472              GNUNET_h2s_full(&peer_msg->peer.hashPubKey));
3473   peer_info = peer_info_get (&peer_msg->peer);
3474
3475   tunnel_add_peer(t, peer_info);
3476   peer_info_connect(peer_info, t);
3477
3478   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3479   return;
3480 }
3481
3482
3483 /**
3484  * Handler for disconnection requests of peers in a tunnel
3485  *
3486  * @param cls closure
3487  * @param client identification of the client
3488  * @param message the actual message (PeerControl)
3489  */
3490 static void
3491 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
3492                           const struct GNUNET_MessageHeader *message)
3493 {
3494   struct GNUNET_MESH_PeerControl *peer_msg;
3495   struct MeshPeerInfo *peer_info;
3496   struct MeshClient *c;
3497   struct MeshTunnel *t;
3498   MESH_TunnelNumber tid;
3499
3500   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Got a PEER DEL request\n");
3501   /* Sanity check for client registration */
3502   if (NULL == (c = client_get (client)))
3503   {
3504     GNUNET_break (0);
3505     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3506     return;
3507   }
3508   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
3509   /* Sanity check for message size */
3510   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
3511   {
3512     GNUNET_break (0);
3513     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3514     return;
3515   }
3516
3517   /* Tunnel exists? */
3518   tid = ntohl (peer_msg->tunnel_id);
3519   t = tunnel_get_by_local_id (c, tid);
3520   if (NULL == t)
3521   {
3522     GNUNET_break (0);
3523     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3524     return;
3525   }
3526   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   on tunnel %X\n", t->id.tid);
3527
3528   /* Does client own tunnel? */
3529   if (t->client->handle != client)
3530   {
3531     GNUNET_break (0);
3532     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3533     return;
3534   }
3535
3536   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3537               "MESH:   for peer %s\n",
3538               GNUNET_i2s(&peer_msg->peer));
3539   /* Is the peer in the tunnel? */
3540   peer_info = GNUNET_CONTAINER_multihashmap_get(t->peers,
3541                                                 &peer_msg->peer.hashPubKey);
3542   if (NULL == peer_info)
3543   {
3544     GNUNET_break (0);
3545     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3546     return;
3547   }
3548
3549   /* Ok, delete peer from tunnel */
3550   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
3551                                             &peer_msg->peer.hashPubKey);
3552
3553   send_destroy_path (t, peer_info->id);
3554   tunnel_delete_peer(t, peer_info->id);
3555   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3556   return;
3557 }
3558
3559
3560 /**
3561  * Handler for connection requests to new peers by type
3562  *
3563  * @param cls closure
3564  * @param client identification of the client
3565  * @param message the actual message (ConnectPeerByType)
3566  */
3567 static void
3568 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
3569                               const struct GNUNET_MessageHeader *message)
3570 {
3571   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
3572   struct MeshClient *c;
3573   struct MeshTunnel *t;
3574   GNUNET_HashCode hash;
3575   MESH_TunnelNumber tid;
3576
3577   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: got connect by type request\n");
3578   /* Sanity check for client registration */
3579   if (NULL == (c = client_get (client)))
3580   {
3581     GNUNET_break (0);
3582     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3583     return;
3584   }
3585
3586   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
3587   /* Sanity check for message size */
3588   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
3589       ntohs (connect_msg->header.size))
3590   {
3591     GNUNET_break (0);
3592     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3593     return;
3594   }
3595
3596   /* Tunnel exists? */
3597   tid = ntohl (connect_msg->tunnel_id);
3598   t = tunnel_get_by_local_id (c, tid);
3599   if (NULL == t)
3600   {
3601     GNUNET_break (0);
3602     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3603     return;
3604   }
3605
3606   /* Does client own tunnel? */
3607   if (t->client->handle != client)
3608   {
3609     GNUNET_break (0);
3610     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3611     return;
3612   }
3613
3614   /* Do WE have the service? */
3615   t->type = ntohl (connect_msg->type);
3616   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  type requested: %u\n", t->type);
3617   GNUNET_CRYPTO_hash (&t->type, sizeof (GNUNET_MESH_ApplicationType), &hash);
3618   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
3619       GNUNET_YES)
3620   {
3621     /* Yes! Fast forward, add ourselves to the tunnel and send the
3622      * good news to the client
3623      */
3624     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  available locally\n");
3625     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
3626                                        peer_info_get (&my_full_id),
3627                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3628
3629     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  notifying client\n");
3630     send_client_peer_connected(t, myid);
3631     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  Done\n");
3632     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3633     return;
3634   }
3635   /* Ok, lets find a peer offering the service */
3636   if (NULL != t->dht_get_type)
3637   {
3638     GNUNET_DHT_get_stop (t->dht_get_type);
3639   }
3640   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  looking in DHT for %s\n",
3641               GNUNET_h2s_full (&hash));
3642   t->dht_get_type =
3643       GNUNET_DHT_get_start (dht_handle,
3644                             GNUNET_TIME_UNIT_FOREVER_REL,
3645                             GNUNET_BLOCK_TYPE_TEST,
3646                             &hash,
3647                             10U,
3648                             GNUNET_DHT_RO_RECORD_ROUTE |
3649                               GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
3650                             NULL, 0,
3651                             &dht_get_type_handler, t);
3652
3653   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3654   return;
3655 }
3656
3657
3658 /**
3659  * Handler for client traffic directed to one peer
3660  *
3661  * @param cls closure
3662  * @param client identification of the client
3663  * @param message the actual message
3664  */
3665 static void
3666 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
3667                       const struct GNUNET_MessageHeader *message)
3668 {
3669   struct MeshClient *c;
3670   struct MeshTunnel *t;
3671   struct MeshPeerInfo *pi;
3672   struct GNUNET_MESH_Unicast *data_msg;
3673   MESH_TunnelNumber tid;
3674   size_t size;
3675
3676   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3677               "MESH: Got a unicast request from a client!\n");
3678
3679   /* Sanity check for client registration */
3680   if (NULL == (c = client_get (client)))
3681   {
3682     GNUNET_break (0);
3683     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3684     return;
3685   }
3686   data_msg = (struct GNUNET_MESH_Unicast *) message;
3687   /* Sanity check for message size */
3688   size = ntohs (message->size);
3689   if (sizeof (struct GNUNET_MESH_Unicast) +
3690       sizeof (struct GNUNET_MessageHeader) > size)
3691   {
3692     GNUNET_break (0);
3693     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3694     return;
3695   }
3696
3697   /* Tunnel exists? */
3698   tid = ntohl (data_msg->tid);
3699   t = tunnel_get_by_local_id (c, tid);
3700   if (NULL == t)
3701   {
3702     GNUNET_break (0);
3703     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3704     return;
3705   }
3706
3707   /*  Is it a local tunnel? Then, does client own the tunnel? */
3708   if (NULL != t->client &&
3709       NULL != t->client->handle &&
3710       t->client->handle != client)
3711   {
3712     GNUNET_break (0);
3713     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3714     return;
3715   }
3716
3717   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
3718                                           &data_msg->destination.hashPubKey);
3719   /* Is the selected peer in the tunnel? */
3720   if (NULL == pi)
3721   {
3722     GNUNET_break (0);
3723     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3724     return;
3725   }
3726
3727   /* Ok, everything is correct, send the message
3728    * (pretend we got it from a mesh peer)
3729    */
3730   {
3731     char buf[ntohs (message->size)];
3732     struct GNUNET_MESH_Unicast *copy;
3733
3734     /* Work around const limitation */
3735     copy = (struct GNUNET_MESH_Unicast *) buf;
3736     memcpy (buf, data_msg, size);
3737     copy->oid = my_full_id;
3738     copy->tid = htonl (t->id.tid);
3739     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3740                 "MESH:   calling generic handler...\n");
3741     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL);
3742   }
3743   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3744   return;
3745 }
3746
3747
3748 /**
3749  * Handler for client traffic directed to the origin
3750  *
3751  * @param cls closure
3752  * @param client identification of the client
3753  * @param message the actual message
3754  */
3755 static void
3756 handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client,
3757                         const struct GNUNET_MessageHeader *message)
3758 {
3759   struct GNUNET_MESH_ToOrigin *data_msg;
3760   struct GNUNET_PeerIdentity id;
3761   struct MeshClient *c;
3762   struct MeshTunnel *t;
3763   MESH_TunnelNumber tid;
3764   size_t size;
3765
3766   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3767               "MESH: Got a ToOrigin request from a client!\n");
3768
3769   /* Sanity check for client registration */
3770   if (NULL == (c = client_get (client)))
3771   {
3772     GNUNET_break (0);
3773     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3774     return;
3775   }
3776   data_msg = (struct GNUNET_MESH_ToOrigin *) message;
3777   /* Sanity check for message size */
3778   size = ntohs (message->size);
3779   if (sizeof (struct GNUNET_MESH_ToOrigin) +
3780       sizeof (struct GNUNET_MessageHeader) > size)
3781   {
3782     GNUNET_break (0);
3783     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3784     return;
3785   }
3786
3787   /* Tunnel exists? */
3788   tid = ntohl (data_msg->tid);
3789   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
3790   {
3791     GNUNET_break (0);
3792     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3793     return;
3794   }
3795   t = tunnel_get_by_local_id (c, tid);
3796   if (NULL == t)
3797   {
3798     GNUNET_break (0);
3799     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3800     return;
3801   }
3802
3803   /*  It shouldn't be a local tunnel.  */
3804   if (NULL != t->client)
3805   {
3806     GNUNET_break (0);
3807     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3808     return;
3809   }
3810   GNUNET_PEER_resolve(t->id.oid, &id);
3811
3812   /* Ok, everything is correct, send the message
3813    * (pretend we got it from a mesh peer)
3814    */
3815   {
3816     char buf[ntohs (message->size)];
3817     struct GNUNET_MESH_ToOrigin *copy;
3818
3819     /* Work around const limitation */
3820     copy = (struct GNUNET_MESH_ToOrigin *) buf;
3821     memcpy (buf, data_msg, size);
3822     copy->oid = id;
3823     copy->tid = htonl (t->id.tid);
3824     copy->sender = my_full_id;
3825     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3826                 "MESH:   calling generic handler...\n");
3827     handle_mesh_data_to_orig (NULL, &my_full_id, &copy->header, NULL);
3828   }
3829   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3830   return;
3831 }
3832
3833
3834 /**
3835  * Handler for client traffic directed to all peers in a tunnel
3836  *
3837  * @param cls closure
3838  * @param client identification of the client
3839  * @param message the actual message
3840  */
3841 static void
3842 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
3843                         const struct GNUNET_MessageHeader *message)
3844 {
3845   struct MeshClient *c;
3846   struct MeshTunnel *t;
3847   struct GNUNET_MESH_Multicast *data_msg;
3848   MESH_TunnelNumber tid;
3849
3850   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3851               "MESH: Got a multicast request from a client!\n");
3852
3853   /* Sanity check for client registration */
3854   if (NULL == (c = client_get (client)))
3855   {
3856     GNUNET_break (0);
3857     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3858     return;
3859   }
3860   data_msg = (struct GNUNET_MESH_Multicast *) message;
3861   /* Sanity check for message size */
3862   if (sizeof (struct GNUNET_MESH_Multicast) +
3863       sizeof (struct GNUNET_MessageHeader) > ntohs (data_msg->header.size))
3864   {
3865     GNUNET_break (0);
3866     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3867     return;
3868   }
3869
3870   /* Tunnel exists? */
3871   tid = ntohl (data_msg->tid);
3872   t = tunnel_get_by_local_id (c, tid);
3873   if (NULL == t)
3874   {
3875     GNUNET_break (0);
3876     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3877     return;
3878   }
3879
3880   /* Does client own tunnel? */
3881   if (t->client->handle != client)
3882   {
3883     GNUNET_break (0);
3884     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3885     return;
3886   }
3887
3888   {
3889     char buf[ntohs(message->size)];
3890     struct GNUNET_MESH_Multicast *copy;
3891
3892     copy = (struct GNUNET_MESH_Multicast *)buf;
3893     memcpy(buf, message, ntohs(message->size));
3894     copy->oid = my_full_id;
3895     copy->tid = htonl(t->id.tid);
3896     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3897                 "MESH:   calling generic handler...\n");
3898     handle_mesh_data_multicast(client, &my_full_id, &copy->header, NULL);
3899   }
3900
3901   /* receive done gets called when last copy is sent to a neighbor */
3902   return;
3903 }
3904
3905 /**
3906  * Functions to handle messages from clients
3907  */
3908 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
3909   {&handle_local_new_client, NULL,
3910    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
3911   {&handle_local_tunnel_create, NULL,
3912    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
3913    sizeof (struct GNUNET_MESH_TunnelMessage)},
3914   {&handle_local_tunnel_destroy, NULL,
3915    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
3916    sizeof (struct GNUNET_MESH_TunnelMessage)},
3917   {&handle_local_connect_add, NULL,
3918    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
3919    sizeof (struct GNUNET_MESH_PeerControl)},
3920   {&handle_local_connect_del, NULL,
3921    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
3922    sizeof (struct GNUNET_MESH_PeerControl)},
3923   {&handle_local_connect_by_type, NULL,
3924    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
3925    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
3926   {&handle_local_unicast, NULL,
3927    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
3928   {&handle_local_to_origin, NULL,
3929    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
3930   {&handle_local_multicast, NULL,
3931    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
3932   {NULL, NULL, 0, 0}
3933 };
3934
3935
3936 /**
3937  * To be called on core init/fail.
3938  *
3939  * @param cls service closure
3940  * @param server handle to the server for this service
3941  * @param identity the public identity of this peer
3942  */
3943 static void
3944 core_init (void *cls, struct GNUNET_CORE_Handle *server,
3945            const struct GNUNET_PeerIdentity *identity)
3946 {
3947   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Core init\n");
3948   core_handle = server;
3949   if (0 != memcmp(identity, &my_full_id, sizeof(my_full_id)) || NULL == server)
3950   {
3951     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("MESH: Wrong CORE service\n"));
3952     GNUNET_SCHEDULER_shutdown();   
3953   }
3954   return;
3955 }
3956
3957 /**
3958  * Method called whenever a given peer connects.
3959  *
3960  * @param cls closure
3961  * @param peer peer identity this notification is about
3962  * @param atsi performance data for the connection
3963  */
3964 static void
3965 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
3966               const struct GNUNET_ATS_Information *atsi)
3967 {
3968   struct MeshPeerInfo *peer_info;
3969   struct MeshPeerPath *path;
3970
3971 #if MESH_DEBUG_CONNECTION
3972   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer connected\n");
3973   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n",
3974               GNUNET_h2s(&my_full_id.hashPubKey));
3975 #endif
3976   peer_info = peer_info_get (peer);
3977   if (myid == peer_info->id)
3978   {
3979 #if MESH_DEBUG_CONNECTION
3980     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
3981 #endif
3982     return;
3983   }
3984 #if MESH_DEBUG_CONNECTION
3985   else
3986   {
3987     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n",
3988                 GNUNET_h2s(&peer->hashPubKey));
3989   }
3990 #endif
3991   path = path_new (2);
3992   path->peers[0] = myid;
3993   path->peers[1] = peer_info->id;
3994   GNUNET_PEER_change_rc(myid, 1);
3995   GNUNET_PEER_change_rc(peer_info->id, 1);
3996   path_add_to_peer (peer_info, path);
3997   return;
3998 }
3999
4000 /**
4001  * Method called whenever a peer disconnects.
4002  *
4003  * @param cls closure
4004  * @param peer peer identity this notification is about
4005  */
4006 static void
4007 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
4008 {
4009   struct MeshPeerInfo *pi;
4010   unsigned int i;
4011
4012 #if MESH_DEBUG_CONNECTION
4013   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer disconnected\n");
4014 #endif
4015   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
4016   if (NULL == pi)
4017   {
4018     GNUNET_break (0);
4019     return;
4020   }
4021   for (i = 0; i < CORE_QUEUE_SIZE; i++)
4022   {
4023     peer_info_cancel_transmission(pi, i);
4024   }
4025   path_remove_from_peer (pi, pi->id, myid);
4026 #if MESH_DEBUG_CONNECTION
4027   if (myid == pi->id)
4028   {
4029     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
4030   }
4031 #endif
4032   return;
4033 }
4034
4035
4036 /******************************************************************************/
4037 /************************      MAIN FUNCTIONS      ****************************/
4038 /******************************************************************************/
4039
4040 /**
4041  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
4042  *
4043  * @param cls closure
4044  * @param key current key code
4045  * @param value value in the hash map
4046  * @return GNUNET_YES if we should continue to iterate,
4047  *         GNUNET_NO if not.
4048  */
4049 int
4050 shutdown_tunnel (void *cls, const GNUNET_HashCode * key, void *value)
4051 {
4052   struct MeshTunnel *t = value;
4053   tunnel_destroy(t);
4054   return GNUNET_YES;
4055 }
4056
4057 /**
4058  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
4059  *
4060  * @param cls closure
4061  * @param key current key code
4062  * @param value value in the hash map
4063  * @return GNUNET_YES if we should continue to iterate,
4064  *         GNUNET_NO if not.
4065  */
4066 int
4067 shutdown_peer (void *cls, const GNUNET_HashCode * key, void *value)
4068 {
4069   struct MeshPeerInfo *p = value;
4070   peer_info_destroy(p);
4071   return GNUNET_YES;
4072 }
4073
4074 /**
4075  * Task run during shutdown.
4076  *
4077  * @param cls unused
4078  * @param tc unused
4079  */
4080 static void
4081 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4082 {
4083   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shutting down\n");
4084   /* TODO: destroy tunnels? */
4085   if (core_handle != NULL)
4086   {
4087     GNUNET_CORE_disconnect (core_handle);
4088     core_handle = NULL;
4089   }
4090   GNUNET_CONTAINER_multihashmap_iterate(tunnels, &shutdown_tunnel, NULL);
4091   GNUNET_CONTAINER_multihashmap_iterate(peers, &shutdown_peer, NULL);
4092   if (dht_handle != NULL)
4093   {
4094     GNUNET_DHT_disconnect (dht_handle);
4095     dht_handle = NULL;
4096   }
4097   if (nc != NULL)
4098   {
4099     GNUNET_SERVER_notification_context_destroy (nc);
4100     nc = NULL;
4101   }
4102   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
4103   {
4104     GNUNET_SCHEDULER_cancel (announce_id_task);
4105     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
4106   }
4107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shut down\n");
4108 }
4109
4110 /**
4111  * Process mesh requests.
4112  *
4113  * @param cls closure
4114  * @param server the initialized server
4115  * @param c configuration to use
4116  */
4117 static void
4118 run (void *cls, struct GNUNET_SERVER_Handle *server,
4119      const struct GNUNET_CONFIGURATION_Handle *c)
4120 {
4121   struct MeshPeerInfo *peer;
4122   struct MeshPeerPath *p;
4123   char *keyfile;
4124
4125   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: starting to run\n");
4126   server_handle = server;
4127   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
4128                                      CORE_QUEUE_SIZE,   /* queue size */
4129                                      NULL,      /* Closure passed to MESH functions */
4130                                      &core_init,        /* Call core_init once connected */
4131                                      &core_connect,     /* Handle connects */
4132                                      &core_disconnect,  /* remove peers on disconnects */
4133                                      NULL,      /* Don't notify about all incoming messages */
4134                                      GNUNET_NO, /* For header only in notification */
4135                                      NULL,      /* Don't notify about all outbound messages */
4136                                      GNUNET_NO, /* For header-only out notification */
4137                                      core_handlers);    /* Register these handlers */
4138   if (core_handle == NULL)
4139   {
4140     GNUNET_break (0);
4141     GNUNET_SCHEDULER_shutdown ();
4142     return;
4143   }
4144
4145   if (GNUNET_OK !=
4146        GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
4147                                                 &keyfile))
4148   {
4149     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4150                 _
4151                 ("Mesh service is lacking key configuration settings.  Exiting.\n"));
4152     GNUNET_SCHEDULER_shutdown ();
4153     return;
4154   }
4155   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
4156   GNUNET_free (keyfile);
4157   if (my_private_key == NULL)
4158   {
4159     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4160                 _("Mesh service could not access hostkey.  Exiting.\n"));
4161     GNUNET_SCHEDULER_shutdown ();
4162     return;
4163   }
4164   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
4165   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
4166                       &my_full_id.hashPubKey);
4167   myid = GNUNET_PEER_intern (&my_full_id);
4168
4169   dht_handle = GNUNET_DHT_connect (c, 64);
4170   if (dht_handle == NULL)
4171   {
4172     GNUNET_break (0);
4173   }
4174
4175   next_tid = 0;
4176   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4177
4178   tunnels = GNUNET_CONTAINER_multihashmap_create (32);
4179   incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
4180   peers = GNUNET_CONTAINER_multihashmap_create (32);
4181   applications = GNUNET_CONTAINER_multihashmap_create (32);
4182   types = GNUNET_CONTAINER_multihashmap_create (32);
4183
4184   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
4185   nc = GNUNET_SERVER_notification_context_create (server_handle,
4186                                                   LOCAL_QUEUE_SIZE);
4187   GNUNET_SERVER_disconnect_notify (server_handle,
4188                                    &handle_local_client_disconnect,
4189                                    NULL);
4190
4191
4192   clients = NULL;
4193   clients_tail = NULL;
4194 #if MESH_DEBUG
4195   next_client_id = 0;
4196 #endif
4197
4198   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
4199   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
4200
4201   /* Create a peer_info for the local peer */
4202   peer = peer_info_get(&my_full_id);
4203   p = path_new (1);
4204   p->peers[0] = myid;
4205   path_add_to_peer(peer, p);
4206
4207   /* Scheduled the task to clean up when shutdown is called */
4208   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
4209                                 NULL);
4210
4211   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: end of run()\n");
4212 }
4213
4214 /**
4215  * The main function for the mesh service.
4216  *
4217  * @param argc number of arguments from the command line
4218  * @param argv command line arguments
4219  * @return 0 ok, 1 on error
4220  */
4221 int
4222 main (int argc, char *const *argv)
4223 {
4224   int ret;
4225
4226   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main()\n");
4227   ret =
4228       (GNUNET_OK ==
4229        GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
4230                            NULL)) ? 0 : 1;
4231   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main() END\n");
4232
4233   return ret;
4234 }