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