Fixes in path creation
[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     GNUNET_break (0);
877     return;
878   }
879   GNUNET_PEER_resolve(p->peers[i + 1], &id);
880
881   path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
882   path_info->path = p;
883   path_info->peer = peer;
884   path_info->t = t;
885   neighbor = peer_info_get(&id);
886   path_info->pos = peer_info_transmit_slot(neighbor);
887   neighbor->types[path_info->pos] = GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE;
888   neighbor->infos[path_info->pos] = path_info;
889   neighbor->core_transmit[path_info->pos] = 
890       GNUNET_CORE_notify_transmit_ready (
891           core_handle, /* handle */
892           0, /* cork */
893           0, /* priority */
894           GNUNET_TIME_UNIT_FOREVER_REL, /* timeout */
895           &id, /* target */
896           sizeof (struct GNUNET_MESH_ManipulatePath)
897           + (p->length * sizeof (struct GNUNET_PeerIdentity)), /*size */
898           &send_core_create_path, /* callback */
899           path_info);        /* cls */
900 }
901
902
903 /**
904  * Try to establish a new connection to this peer.
905  * Use the best path for the given tunnel.
906  * If the peer doesn't have any path to it yet, try to get one. 
907  * If the peer already has some path, send a CREATE PATH towards it.
908  *
909  * @param peer PeerInfo of the peer.
910  * @param t Tunnel for which to create the path, if possible.
911  */
912 static void
913 peer_info_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t)
914 {
915   struct MeshPeerPath *p;
916   struct MeshPathInfo *path_info;
917
918   if (NULL != peer->path_head)
919   {
920     p = tree_get_path_to_peer(t->tree, peer->id);
921     if (p->length > 1)
922     {
923       send_create_path(peer, p, t);
924     }
925     else
926     {
927       send_client_peer_connected(t, myid);
928     }
929   }
930   else if (NULL == peer->dhtget)
931   {
932     struct GNUNET_PeerIdentity id;
933
934     GNUNET_PEER_resolve(peer->id, &id);
935     path_info = GNUNET_malloc(sizeof(struct MeshPathInfo));
936     path_info->peer = peer;
937     path_info->t = t;
938     peer->dhtget =
939         GNUNET_DHT_get_start(dht_handle,       /* handle */
940                              GNUNET_TIME_UNIT_FOREVER_REL,     /* timeout */
941                              GNUNET_BLOCK_TYPE_TEST,   /* type */
942                              &id.hashPubKey,       /* key to search */
943                              4,         /* replication level */
944                              GNUNET_DHT_RO_RECORD_ROUTE |
945                                GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
946                              NULL,     /* xquery */
947                              0,        /* xquery bits */
948                              &dht_get_id_handler,
949                              path_info);
950   }
951   /* Otherwise, there is no path but the DHT get is already started. */
952 }
953
954
955 #if LATER
956 /**
957  * Destroy the peer_info and free any allocated resources linked to it
958  * @param t tunnel the path belongs to
959  * @param pi the peer_info to destroy
960  * @return GNUNET_OK on success
961  */
962 static int
963 peer_info_destroy (struct MeshPeerInfo *pi)
964 {
965   GNUNET_HashCode hash;
966   struct GNUNET_PeerIdentity id;
967
968   GNUNET_PEER_resolve (pi->id, &id);
969   GNUNET_PEER_change_rc (pi->id, -1);
970   GNUNET_CRYPTO_hash (&id, sizeof (struct GNUNET_PeerIdentity), &hash);
971
972   GNUNET_CONTAINER_multihashmap_remove (peers, &hash, pi);
973   GNUNET_SCHEDULER_cancel (pi->path_refresh_task);
974   GNUNET_free (pi);
975   return GNUNET_OK;
976 }
977 #endif
978
979
980 /**
981  * Notify a tunnel that a connection has broken that affects at least
982  * some of its peers.
983  *
984  * @param t Tunnel affected.
985  * @param peer Peer that (at least) has been affected by the disconnection.
986  * @param p1 Peer that got disconnected from p2.
987  * @param p2 Peer that got disconnected from p1.
988  *
989  * @return Short ID of the peer disconnected (either p1 or p2).
990  *         0 if the tunnel remained unaffected.
991  */
992 static GNUNET_PEER_Id
993 tunnel_notify_connection_broken (struct MeshTunnel *t,
994                                  struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
995                                  GNUNET_PEER_Id p2);
996
997 /**
998  * Remove all paths that rely on a direct connection between p1 and p2
999  * from the peer itself and notify all tunnels about it.
1000  *
1001  * @param peer PeerInfo of affected peer.
1002  * @param p1 GNUNET_PEER_Id of one peer.
1003  * @param p2 GNUNET_PEER_Id of another peer that was connected to the first and
1004  *           no longer is.
1005  *
1006  * TODO: optimize (see below)
1007  */
1008 static void
1009 path_remove_from_peer (struct MeshPeerInfo *peer,
1010                        GNUNET_PEER_Id p1,
1011                        GNUNET_PEER_Id p2)
1012 {
1013   struct GNUNET_PeerIdentity id;
1014   struct MeshPeerPath *p;
1015   struct MeshPeerPath *aux;
1016   struct MeshPeerInfo *peer_d;
1017   GNUNET_PEER_Id d;
1018   unsigned int destroyed;
1019   unsigned int best;
1020   unsigned int cost;
1021   unsigned int i;
1022
1023   destroyed = 0;
1024   p = peer->path_head;
1025   while (NULL != p)
1026   {
1027     aux = p->next;
1028     for (i = 0; i < (p->length - 1); i++)
1029     {
1030       if ((p->peers[i] == p1 && p->peers[i + 1] == p2) ||
1031           (p->peers[i] == p2 && p->peers[i + 1] == p1))
1032       {
1033         path_destroy (p);
1034         destroyed++;
1035         break;
1036       }
1037     }
1038     p = aux;
1039   }
1040   if (0 == destroyed)
1041     return;
1042
1043   for (i = 0; i < peer->ntunnels; i++)
1044   {
1045     d = tunnel_notify_connection_broken (peer->tunnels[i], peer, p1, p2);
1046     /* TODO
1047      * Problem: one or more peers have been deleted from the tunnel tree.
1048      * We don't know who they are to try to add them again.
1049      * We need to try to find a new path for each of the disconnected peers.
1050      * Some of them might already have a path to reach them that does not
1051      * involve p1 and p2. Adding all anew might render in a better tree than
1052      * the trivial immediate fix.
1053      * 
1054      * Trivial immiediate fix: try to reconnect to the disconnected node. All
1055      * its children will be reachable trough him.
1056      */
1057     peer_d = peer_info_get_short(d);
1058     best = UINT_MAX;
1059     aux = NULL;
1060     for (p = peer_d->path_head; NULL != p; p = p->next)
1061     {
1062       if ((cost = path_get_cost(peer->tunnels[i]->tree, p)) < best)
1063       {
1064         best = cost;
1065         aux = p;
1066       }
1067     }
1068     if (NULL != aux)
1069     {
1070       /* No callback, as peer will be already disconnected */
1071       tree_add_path(peer->tunnels[i]->tree, aux, NULL);
1072     }
1073     else
1074     {
1075       struct MeshPathInfo *path_info;
1076
1077       if (NULL != peer_d->dhtget)
1078         return;
1079       path_info = GNUNET_malloc(sizeof(struct MeshPathInfo));
1080       path_info->path = p;
1081       path_info->peer = peer_d;
1082       path_info->t = peer->tunnels[i];
1083       peer_d->dhtget =
1084           GNUNET_DHT_get_start(dht_handle,       /* handle */
1085                                GNUNET_TIME_UNIT_FOREVER_REL, /* timeout */
1086                                GNUNET_BLOCK_TYPE_TEST,   /* type */
1087                                &id.hashPubKey,   /*key to search */
1088                                4,        /* replication level */
1089                                GNUNET_DHT_RO_RECORD_ROUTE |
1090                                  GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1091                                NULL,     /* xquery */
1092                                0,        /* xquery bits */
1093                                &dht_get_id_handler,
1094                                (void *) path_info);
1095     }
1096   }
1097 }
1098
1099
1100 /**
1101  * Add the path to the peer and update the path used to reach it in case this
1102  * is the shortest.
1103  *
1104  * @param peer_info Destination peer to add the path to.
1105  * @param path New path to add. Last peer must be the peer in arg 1.
1106  *             Path will be either used of freed if already known.
1107  *
1108  * TODO: trim the part from origin to us? Add it as path to origin?
1109  */
1110 void
1111 path_add_to_peer (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path)
1112 {
1113   struct MeshPeerPath *aux;
1114   unsigned int l;
1115   unsigned int l2;
1116
1117   if (NULL == peer_info || NULL == path)
1118   {
1119     GNUNET_break (0);
1120     return;
1121   }
1122
1123   l = path_get_length (path);
1124   if (0 == l)
1125   {
1126     GNUNET_free (path);
1127     return;
1128   }
1129
1130   for (aux = peer_info->path_head; aux != NULL; aux = aux->next)
1131   {
1132     l2 = path_get_length (aux);
1133     if (l2 > l)
1134     {
1135       GNUNET_CONTAINER_DLL_insert_before (peer_info->path_head,
1136                                           peer_info->path_tail, aux, path);
1137     }
1138     else
1139     {
1140       if (l2 == l && memcmp(path->peers, aux->peers, l) == 0)
1141       {
1142         path_destroy(path);
1143         return;
1144       }
1145     }
1146   }
1147   GNUNET_CONTAINER_DLL_insert_tail (peer_info->path_head, peer_info->path_tail,
1148                                     path);
1149   return;
1150 }
1151
1152
1153 /**
1154  * Add the path to the origin peer and update the path used to reach it in case
1155  * this is the shortest.
1156  * The path is given in peer_info -> destination, therefore we turn the path
1157  * upside down first.
1158  *
1159  * @param peer_info Peer to add the path to, being the origin of the path.
1160  * @param path New path to add after being inversed.
1161  */
1162 static void
1163 path_add_to_origin (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path)
1164 {
1165   path_invert(path);
1166   path_add_to_peer (peer_info, path);
1167 }
1168
1169
1170 /**
1171  * Build a PeerPath from the paths returned from the DHT, reversing the paths
1172  * to obtain a local peer -> destination path and interning the peer ids.
1173  *
1174  * @return Newly allocated and created path
1175  */
1176 static struct MeshPeerPath *
1177 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
1178                      unsigned int get_path_length,
1179                      const struct GNUNET_PeerIdentity *put_path,
1180                      unsigned int put_path_length)
1181 {
1182   struct MeshPeerPath *p;
1183   GNUNET_PEER_Id id;
1184   int i;
1185
1186   p = path_new (1);
1187   p->peers[0] = myid;
1188   GNUNET_PEER_change_rc(myid, 1);
1189   i = get_path_length;
1190   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    GET has %d hops.\n", i);
1191   for (i--; i >= 0; i--)
1192   {
1193     id = GNUNET_PEER_intern (&get_path[i]);
1194     if (p->length > 0 && id == p->peers[p->length - 1])
1195     {
1196       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    Optimizing 1 hop out.\n");
1197       GNUNET_PEER_change_rc(id, -1);
1198     }
1199     else
1200     {
1201       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
1202                  "MESH:    Adding from GET: %s.\n",
1203                  GNUNET_i2s(&get_path[i]));
1204       p->length++;
1205       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1206       p->peers[p->length - 1] = id;
1207     }
1208   }
1209   i = put_path_length;
1210   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    PUT has %d hops.\n", i);
1211   for (i--; i >= 0; i--)
1212   {
1213     id = GNUNET_PEER_intern (&put_path[i]);
1214     if (id == myid)
1215     {
1216       /* PUT path went through us, so discard the path up until now and start
1217        * from here to get a much shorter (and loop-free) path.
1218        */
1219       path_destroy (p);
1220       p = path_new (0);
1221     }
1222     if (p->length > 0 && id == p->peers[p->length - 1])
1223     {
1224       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:    Optimizing 1 hop out.\n");
1225       GNUNET_PEER_change_rc(id, -1);
1226     }
1227     else
1228     {
1229       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
1230             "MESH:    Adding from PUT: %s.\n",
1231             GNUNET_i2s(&put_path[i]));
1232       p->length++;
1233       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1234       p->peers[p->length - 1] = id;
1235     }
1236   }
1237 #if MESH_DEBUG
1238   if (get_path_length > 0)
1239     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1240                 "MESH:    (first of GET: %s)\n",
1241                 GNUNET_h2s_full(&get_path[0].hashPubKey));
1242   if (put_path_length > 0)
1243     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1244                 "MESH:    (first of PUT: %s)\n",
1245                 GNUNET_h2s_full(&put_path[0].hashPubKey));
1246   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1247               "MESH:    In total: %d hops\n",
1248               p->length);
1249   for (i = 0; i < p->length; i++)
1250   {
1251     struct GNUNET_PeerIdentity peer_id;
1252
1253     GNUNET_PEER_resolve(p->peers[i], &peer_id);
1254     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1255               "MESH:        %u: %s\n",
1256               p->peers[i],
1257               GNUNET_h2s_full(&peer_id.hashPubKey));
1258   }
1259 #endif
1260   return p;
1261 }
1262
1263
1264 /**
1265  * Send keepalive packets for a peer
1266  *
1267  * @param cls Closure (tunnel for which to send the keepalive).
1268  * @param tc Notification context.
1269  *
1270  * TODO: implement explicit multicast keepalive?
1271  */
1272 void
1273 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1274
1275
1276 /**
1277  * Search for a tunnel among the tunnels for a client
1278  *
1279  * @param c the client whose tunnels to search in
1280  * @param tid the local id of the tunnel
1281  *
1282  * @return tunnel handler, NULL if doesn't exist
1283  */
1284 static struct MeshTunnel *
1285 tunnel_get_by_local_id (struct MeshClient *c, MESH_TunnelNumber tid)
1286 {
1287   GNUNET_HashCode hash;
1288
1289   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
1290   return GNUNET_CONTAINER_multihashmap_get (c->tunnels, &hash);
1291 }
1292
1293
1294 /**
1295  * Search for a tunnel by global ID using PEER_ID
1296  *
1297  * @param pi owner of the tunnel
1298  * @param tid global tunnel number
1299  *
1300  * @return tunnel handler, NULL if doesn't exist
1301  */
1302 static struct MeshTunnel *
1303 tunnel_get_by_pi (GNUNET_PEER_Id pi, MESH_TunnelNumber tid)
1304 {
1305   struct MESH_TunnelID id;
1306   GNUNET_HashCode hash;
1307
1308   id.oid = pi;
1309   id.tid = tid;
1310
1311   GNUNET_CRYPTO_hash (&id, sizeof (struct MESH_TunnelID), &hash);
1312   return GNUNET_CONTAINER_multihashmap_get (tunnels, &hash);
1313 }
1314
1315
1316 /**
1317  * Search for a tunnel by global ID using full PeerIdentities
1318  *
1319  * @param oid owner of the tunnel
1320  * @param tid global tunnel number
1321  *
1322  * @return tunnel handler, NULL if doesn't exist
1323  */
1324 static struct MeshTunnel *
1325 tunnel_get (struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid)
1326 {
1327   return tunnel_get_by_pi (GNUNET_PEER_search (oid), tid);
1328 }
1329
1330
1331 /**
1332  * Callback used to notify a client owner of a tunnel that a peer has
1333  * disconnected, most likely because of a path change.
1334  *
1335  * @param n Node in the tree representing the disconnected peer
1336  */
1337 void
1338 notify_peer_disconnected (const struct MeshTunnelTreeNode *n)
1339 {
1340   struct MeshPeerInfo *peer;
1341
1342   if (NULL != n->t->client && NULL != nc)
1343   {
1344     struct GNUNET_MESH_PeerControl msg;
1345     msg.header.size = htons (sizeof (msg));
1346     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
1347     msg.tunnel_id = htonl (n->t->local_tid);
1348     GNUNET_PEER_resolve (n->peer, &msg.peer);
1349     GNUNET_SERVER_notification_context_unicast (nc, n->t->client->handle,
1350                                                 &msg.header, GNUNET_NO);
1351   }
1352   peer = peer_info_get_short(n->peer);
1353   peer_info_connect(peer, n->t);
1354 }
1355
1356
1357 /**
1358  * Add a peer to a tunnel, accomodating paths accordingly and initializing all
1359  * needed rescources.
1360  * If peer already exists, reevaluate shortest path and change if different.
1361  *
1362  * @param t Tunnel we want to add a new peer to
1363  * @param peer PeerInfo of the peer being added
1364  *
1365  */
1366 static void
1367 tunnel_add_peer (struct MeshTunnel *t, struct MeshPeerInfo *peer)
1368 {
1369   struct GNUNET_PeerIdentity id;
1370   struct MeshPeerPath *best_p;
1371   struct MeshPeerPath *p;
1372   unsigned int best_cost;
1373   unsigned int cost;
1374
1375   GNUNET_PEER_resolve(peer->id, &id);
1376   if (GNUNET_NO ==
1377       GNUNET_CONTAINER_multihashmap_contains(t->peers, &id.hashPubKey))
1378   {
1379     t->peers_total++;
1380     GNUNET_array_append (peer->tunnels, peer->ntunnels, t);
1381     GNUNET_CONTAINER_multihashmap_put(
1382       t->peers,
1383       &id.hashPubKey,
1384       peer,
1385       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1386   }
1387
1388   if (NULL != (p = peer->path_head))
1389   {
1390     best_p = p;
1391     best_cost = path_get_cost(t->tree, p);
1392     while (NULL != p)
1393     {
1394       if ((cost = path_get_cost (t->tree, p)) < best_cost)
1395       {
1396         best_cost = cost;
1397         best_p = p;
1398       }
1399       p = p->next;
1400     }
1401     tree_add_path (t->tree, best_p, &notify_peer_disconnected);
1402     if (GNUNET_SCHEDULER_NO_TASK == t->path_refresh_task)
1403       t->path_refresh_task =
1404           GNUNET_SCHEDULER_add_delayed (t->tree->refresh, &path_refresh, t);
1405   }
1406   else
1407   {
1408     /* Start a DHT get if necessary */
1409     peer_info_connect(peer, t);
1410   }
1411 }
1412
1413 /**
1414  * Add a path to a tunnel which we don't own, just to remember the next hop.
1415  * If destination node was already in the tunnel, the first hop information
1416  * will be replaced with the new path.
1417  *
1418  * @param t Tunnel we want to add a new peer to
1419  * @param p Path to add
1420  * @param own_pos Position of local node in path.
1421  *
1422  */
1423 static void
1424 tunnel_add_path (struct MeshTunnel *t,
1425                  struct MeshPeerPath *p,
1426                  unsigned int own_pos)
1427 {
1428   GNUNET_assert (0 != own_pos);
1429   tree_add_path(t->tree, p, NULL);
1430 }
1431
1432
1433 /**
1434  * Notify a tunnel that a connection has broken that affects at least
1435  * some of its peers.
1436  *
1437  * @param t Tunnel affected.
1438  * @param peer Peer that (at least) has been affected by the disconnection.
1439  * @param p1 Peer that got disconnected from p2.
1440  * @param p2 Peer that got disconnected from p1.
1441  *
1442  * @return Short ID of the peer disconnected (either p1 or p2).
1443  *         0 if the tunnel remained unaffected.
1444  */
1445 static GNUNET_PEER_Id
1446 tunnel_notify_connection_broken (struct MeshTunnel *t,
1447                                  struct MeshPeerInfo *peer,
1448                                  GNUNET_PEER_Id p1,
1449                                  GNUNET_PEER_Id p2)
1450 {
1451   return tree_notify_connection_broken (t->tree, p1, p2,
1452                                         &notify_peer_disconnected);
1453 }
1454
1455
1456 /**
1457  * Destroy the tunnel and free any allocated resources linked to it
1458  *
1459  * @param t the tunnel to destroy
1460  *
1461  * @return GNUNET_OK on success
1462  */
1463 static int
1464 tunnel_destroy (struct MeshTunnel *t)
1465 {
1466   struct MeshClient *c;
1467   struct MeshQueue *q;
1468   struct MeshQueue *qn;
1469   GNUNET_HashCode hash;
1470   int r;
1471
1472   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: DESTROYING TUNNEL at %p\n", t);
1473   if (NULL == t)
1474     return GNUNET_OK;
1475
1476   c = t->client;
1477 #if MESH_DEBUG
1478   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
1479 #endif
1480
1481   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
1482   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
1483   {
1484     r = GNUNET_SYSERR;
1485   }
1486
1487   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
1488   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (c->tunnels, &hash, t))
1489   {
1490     r = GNUNET_SYSERR;
1491   }
1492   GNUNET_CONTAINER_multihashmap_destroy (t->peers);
1493   q = t->queue_head;
1494   while (NULL != q)
1495   {
1496     if (NULL != q->data)
1497       GNUNET_free (q->data);
1498     qn = q->next;
1499     GNUNET_free (q);
1500     q = qn;
1501     /* TODO cancel core transmit ready in case it was active */
1502   }
1503   tree_destroy(t->tree);
1504   if (NULL != t->dht_get_type)
1505     GNUNET_DHT_get_stop(t->dht_get_type);
1506   t->dht_get_type = NULL;
1507   GNUNET_free (t);
1508   return r;
1509 }
1510
1511
1512 /**
1513  * tunnel_destroy_iterator: iterator for deleting each tunnel that belongs to a
1514  * client when the client disconnects.
1515  * 
1516  * @param cls closure (client that is disconnecting)
1517  * @param key the hash of the local tunnel id (used to access the hashmap)
1518  * @param value the value stored at the key (tunnel to destroy)
1519  * 
1520  * @return GNUNET_OK on success
1521  */
1522 static int
1523 tunnel_destroy_iterator (void *cls, const GNUNET_HashCode * key, void *value)
1524 {
1525   struct MeshTunnel *t = value;
1526   int r;
1527
1528   if (NULL != t->dht_get_type)
1529   {
1530     GNUNET_DHT_get_stop (t->dht_get_type);
1531   }
1532   r = tunnel_destroy (t);
1533   return r;
1534 }
1535
1536
1537 /******************************************************************************/
1538 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
1539 /******************************************************************************/
1540
1541 /**
1542  * Function called to notify a client about the socket
1543  * being ready to queue more data.  "buf" will be
1544  * NULL and "size" zero if the socket was closed for
1545  * writing in the meantime.
1546  *
1547  * @param cls closure
1548  * @param size number of bytes available in buf
1549  * @param buf where the callee should write the message
1550  * @return number of bytes written to buf
1551  */
1552 static size_t
1553 send_core_create_path (void *cls, size_t size, void *buf)
1554 {
1555   struct MeshPathInfo *info = cls;
1556   struct GNUNET_MESH_ManipulatePath *msg;
1557   struct GNUNET_PeerIdentity *peer_ptr;
1558   struct MeshPeerInfo *peer = info->peer;
1559   struct MeshTunnel *t = info->t;
1560   struct MeshPeerPath *p = info->path;
1561   size_t size_needed;
1562   int i;
1563
1564   size_needed =
1565       sizeof (struct GNUNET_MESH_ManipulatePath) +
1566       p->length * sizeof (struct GNUNET_PeerIdentity);
1567
1568   if (size < size_needed || NULL == buf)
1569   {
1570     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: create path retransmit!\n");
1571     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   buf:  %p\n", buf);
1572     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   size: (%u/%u)\n",
1573                 size, size_needed);
1574     info->peer->core_transmit[info->pos] = 
1575       GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
1576                                         GNUNET_TIME_UNIT_FOREVER_REL,
1577                                         path_get_first_hop (t->tree, peer->id),
1578                                         size_needed,
1579                                         &send_core_create_path,
1580                                         info);
1581     return 0;
1582   }
1583
1584   msg = (struct GNUNET_MESH_ManipulatePath *) buf;
1585   msg->header.size = htons (size_needed);
1586   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
1587   msg->tid = ntohl (t->id.tid);
1588
1589   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
1590   for (i = 0; i < p->length; i++)
1591   {
1592     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
1593   }
1594
1595   path_destroy (p);
1596   GNUNET_free (info);
1597
1598   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1599               "MESH: CREATE PATH (%u bytes long) sent!\n",
1600               size_needed);
1601   return size_needed;
1602 }
1603
1604
1605 #if LATER
1606 /**
1607  * Function called to notify a client about the socket
1608  * being ready to queue more data.  "buf" will be
1609  * NULL and "size" zero if the socket was closed for
1610  * writing in the meantime.
1611  *
1612  * @param cls closure (MeshDataDescriptor with all info to build packet)
1613  * @param size number of bytes available in buf
1614  * @param buf where the callee should write the message
1615  * @return number of bytes written to buf
1616  */
1617 static size_t
1618 send_core_data_to_origin (void *cls, size_t size, void *buf)
1619 {
1620   struct MeshDataDescriptor *info = cls;
1621   struct GNUNET_MESH_ToOrigin *msg = buf;
1622   size_t total_size;
1623
1624   GNUNET_assert (NULL != info);
1625   total_size = sizeof (struct GNUNET_MESH_ToOrigin) + info->size;
1626   GNUNET_assert (total_size < 65536);   /* UNIT16_MAX */
1627
1628   if (total_size > size)
1629   {
1630     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1631                 "not enough buffer to send data to origin\n");
1632     return 0;
1633   }
1634   msg->header.size = htons (total_size);
1635   msg->header.type = htons (GNUNET_MESSAGE_TYPE_DATA_MESSAGE_TO_ORIGIN);
1636   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
1637   msg->tid = htonl (info->origin->tid);
1638   if (0 != info->size)
1639   {
1640     memcpy (&msg[1], &info[1], info->size);
1641   }
1642   if (NULL != info->client)
1643   {
1644     GNUNET_SERVER_receive_done (info->client, GNUNET_OK);
1645   }
1646   GNUNET_free (info);
1647   return total_size;
1648 }
1649 #endif
1650
1651
1652 /**
1653  * Function called to notify a client about the socket
1654  * being ready to queue more data.  "buf" will be
1655  * NULL and "size" zero if the socket was closed for
1656  * writing in the meantime.
1657  *
1658  * @param cls closure (data itself)
1659  * @param size number of bytes available in buf
1660  * @param buf where the callee should write the message
1661  * 
1662  * @return number of bytes written to buf
1663  */
1664 static size_t
1665 send_core_data_multicast (void *cls, size_t size, void *buf)
1666 {
1667   struct MeshDataDescriptor *info = cls;
1668   struct GNUNET_MESH_Multicast *msg = buf;
1669   size_t total_size;
1670
1671   GNUNET_assert (NULL != info);
1672   GNUNET_assert (NULL != info->peer);
1673   total_size = info->size + sizeof (struct GNUNET_MESH_Multicast);
1674   GNUNET_assert (total_size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
1675
1676   if (total_size > size)
1677   {
1678     /* Retry */
1679     struct GNUNET_PeerIdentity id;
1680
1681     GNUNET_PEER_resolve(info->peer->id, &id);
1682     info->peer->infos[info->handler_n] = info;
1683     info->peer->types[info->handler_n] = GNUNET_MESSAGE_TYPE_MESH_MULTICAST;
1684     info->peer->core_transmit[info->handler_n] =
1685       GNUNET_CORE_notify_transmit_ready (core_handle,
1686                                          0,
1687                                          0,
1688                                          GNUNET_TIME_UNIT_FOREVER_REL,
1689                                          &id,
1690                                          total_size,
1691                                          &send_core_data_multicast,
1692                                          info);
1693     return 0;
1694   }
1695   info->peer->core_transmit[info->handler_n] = NULL;
1696   info->peer->infos[info->handler_n] = NULL;
1697   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
1698   msg->header.size = htons (total_size);
1699   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
1700   msg->tid = htonl (info->origin->tid);
1701   memcpy (&msg[1], info->data, info->size);
1702   if (0 == --(*info->copies))
1703   {
1704     if (NULL != info->client)
1705     {
1706       /* FIXME One unresponsive neighbor (who doesn't "call" tmt_rdy) can lock
1707        *       the client from sending anything else to the service.
1708        *       - Call receive_done after certain timeout.
1709        *       - Here cancel the timeout.
1710        */
1711       GNUNET_SERVER_receive_done (info->client, GNUNET_OK);
1712     }
1713     GNUNET_free (info->data);
1714     GNUNET_free (info->copies);
1715   }
1716   GNUNET_free (info);
1717   return total_size;
1718 }
1719
1720
1721 /**
1722  * Function called to notify a client about the socket
1723  * being ready to queue more data.  "buf" will be
1724  * NULL and "size" zero if the socket was closed for
1725  * writing in the meantime.
1726  *
1727  * @param cls closure (MeshDataDescriptor)
1728  * @param size number of bytes available in buf
1729  * @param buf where the callee should write the message
1730  * @return number of bytes written to buf
1731  */
1732 static size_t
1733 send_core_path_ack (void *cls, size_t size, void *buf)
1734 {
1735   struct MeshDataDescriptor *info = cls;
1736   struct GNUNET_MESH_PathACK *msg = buf;
1737
1738   GNUNET_assert (NULL != info);
1739   if (info->peer)
1740   {
1741     info->peer->core_transmit[info->handler_n] = NULL;
1742   }
1743   if (sizeof (struct GNUNET_MESH_PathACK) > size)
1744   {
1745     GNUNET_break (0);
1746     return 0;
1747   }
1748   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
1749   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
1750   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
1751   msg->tid = htonl (info->origin->tid);
1752   msg->peer_id = my_full_id;
1753   GNUNET_free (info);
1754   /* TODO add signature */
1755
1756   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: PATH ACK sent!\n");
1757   return sizeof (struct GNUNET_MESH_PathACK);
1758 }
1759
1760
1761 /**
1762  * Function called to notify a client about the socket
1763  * being ready to queue more data.  "buf" will be
1764  * NULL and "size" zero if the socket was closed for
1765  * writing in the meantime.
1766  *
1767  * @param cls closure (data itself)
1768  * @param size number of bytes available in buf
1769  * @param buf where the callee should write the message
1770  * @return number of bytes written to buf
1771  */
1772 static size_t
1773 send_core_data_raw (void *cls, size_t size, void *buf)
1774 {
1775   struct GNUNET_MessageHeader *msg = cls;
1776   size_t total_size;
1777
1778   GNUNET_assert (NULL != msg);
1779   total_size = ntohs (msg->size);
1780
1781   if (total_size > size)
1782   {
1783     GNUNET_break (0);
1784     return 0;
1785   }
1786   memcpy (buf, msg, total_size);
1787   GNUNET_free (cls);
1788   return total_size;
1789 }
1790
1791
1792 #if LATER
1793 /**
1794  * Send another peer a notification to destroy a tunnel
1795  * @param cls The tunnel to destroy
1796  * @param size Size in the buffer
1797  * @param buf Memory where to put the data to transmit
1798  * @return Size of data put in buffer
1799  */
1800 static size_t
1801 send_p2p_tunnel_destroy (void *cls, size_t size, void *buf)
1802 {
1803   struct MeshTunnel *t = cls;
1804   struct MeshClient *c;
1805   struct GNUNET_MESH_TunnelMessage *msg;
1806
1807   c = t->client;
1808   msg = buf;
1809   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
1810    /*FIXME*/ msg->header.size =
1811       htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1812   msg->tunnel_id = htonl (t->id.tid);
1813
1814   tunnel_destroy (c, t);
1815   return sizeof (struct GNUNET_MESH_TunnelMessage);
1816 }
1817 #endif
1818
1819
1820 /******************************************************************************/
1821 /********************      MESH NETWORK HANDLERS     **************************/
1822 /******************************************************************************/
1823
1824
1825 /**
1826  * Core handler for path creation
1827  * struct GNUNET_CORE_MessageHandler
1828  *
1829  * @param cls closure
1830  * @param message message
1831  * @param peer peer identity this notification is about
1832  * @param atsi performance data
1833  * @return GNUNET_OK to keep the connection open,
1834  *         GNUNET_SYSERR to close it (signal serious error)
1835  *
1836  */
1837 static int
1838 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
1839                          const struct GNUNET_MessageHeader *message,
1840                          const struct GNUNET_TRANSPORT_ATS_Information *atsi)
1841 {
1842   unsigned int own_pos;
1843   uint16_t size;
1844   uint16_t i;
1845   MESH_TunnelNumber tid;
1846   struct GNUNET_MESH_ManipulatePath *msg;
1847   struct GNUNET_PeerIdentity *pi;
1848   GNUNET_HashCode hash;
1849   struct MeshPeerPath *path;
1850   struct MeshPeerInfo *dest_peer_info;
1851   struct MeshPeerInfo *orig_peer_info;
1852   struct MeshTunnel *t;
1853
1854   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1855               "MESH: Received a path create msg [%s]\n",
1856               GNUNET_i2s(&my_full_id));
1857   size = ntohs (message->size);
1858   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
1859   {
1860     GNUNET_break_op (0);
1861     return GNUNET_OK;
1862   }
1863
1864   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
1865   if (size % sizeof (struct GNUNET_PeerIdentity))
1866   {
1867     GNUNET_break_op (0);
1868     return GNUNET_OK;
1869   }
1870   size /= sizeof (struct GNUNET_PeerIdentity);
1871   if (size < 2)
1872   {
1873     GNUNET_break_op (0);
1874     return GNUNET_OK;
1875   }
1876   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1877               "MESH:     path has %u hops.\n",
1878               size);
1879   msg = (struct GNUNET_MESH_ManipulatePath *) message;
1880
1881   tid = ntohl (msg->tid);
1882   pi = (struct GNUNET_PeerIdentity *) &msg[1];
1883   t = tunnel_get (pi, tid);
1884   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1885               "MESH:     path is for tunnel %s [%X].\n",
1886               GNUNET_i2s(pi),
1887               tid);
1888   if (NULL == t)
1889   {
1890     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating tunnel\n");
1891     t = GNUNET_malloc (sizeof (struct MeshTunnel));
1892     t->id.oid = GNUNET_PEER_intern (pi);
1893     t->id.tid = tid;
1894     t->peers = GNUNET_CONTAINER_multihashmap_create (32);
1895     t->local_tid = next_local_tid++;
1896     /* FIXME test if taken */
1897     next_local_tid |= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
1898     t->tree = tree_new(t, t->id.oid);
1899
1900     GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
1901     if (GNUNET_OK !=
1902         GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
1903                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1904     {
1905       GNUNET_break (0);
1906       return GNUNET_OK;
1907     }
1908   }
1909   dest_peer_info =
1910       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
1911   if (NULL == dest_peer_info)
1912   {
1913     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1914                 "MESH:   Creating PeerInfo for destination.\n");
1915     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
1916     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
1917     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
1918                                        dest_peer_info,
1919                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1920   }
1921   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
1922   if (NULL == orig_peer_info)
1923   {
1924     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1925                 "MESH:   Creating PeerInfo for origin.\n");
1926     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
1927     orig_peer_info->id = GNUNET_PEER_intern (pi);
1928     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
1929                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1930   }
1931   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating path...\n");
1932   path = path_new (size);
1933   own_pos = 0;
1934   for (i = 0; i < size; i++)
1935   {
1936     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1937                 "MESH:   ... adding %s\n",
1938                 GNUNET_i2s(&pi[i]));
1939     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
1940     if (path->peers[i] == myid)
1941       own_pos = i;
1942   }
1943   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1944                 "MESH:   Own position: %u\n", own_pos);
1945   if (own_pos == 0)
1946   {
1947     /* cannot be self, must be 'not found' */
1948     /* create path: self not found in path through self */
1949     GNUNET_break_op (0);
1950     path_destroy (path);
1951     /* FIXME error. destroy tunnel? leave for timeout? */
1952     return 0;
1953   }
1954   tunnel_add_path (t, path, own_pos);
1955   t->tree->me = tree_find_peer(t->tree->root, myid);
1956   if (own_pos == size - 1)
1957   {
1958     /* It is for us! Send ack. */
1959     struct GNUNET_MESH_TunnelNotification cmsg;
1960     struct MeshDataDescriptor *info;
1961     unsigned int j;
1962
1963     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1964                 "MESH:   It's for us!\n");
1965     path_add_to_origin (orig_peer_info, path);
1966     info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
1967     info->origin = &t->id;
1968     info->peer = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
1969     GNUNET_assert (NULL != info->peer);
1970     for (j = 0; info->peer->core_transmit[j]; j++)
1971     {
1972       if (j == (CORE_QUEUE_SIZE - 1))
1973       {
1974         GNUNET_break (0);
1975         return GNUNET_OK;
1976       }
1977     }
1978     info->handler_n = j;
1979     info->peer->types[j] = GNUNET_MESSAGE_TYPE_MESH_PATH_ACK;
1980     info->peer->infos[j] = info;
1981     info->peer->core_transmit[j] =
1982         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 100,
1983                                            GNUNET_TIME_UNIT_FOREVER_REL, peer,
1984                                            sizeof (struct GNUNET_MESH_PathACK),
1985                                            &send_core_path_ack, info);
1986     cmsg.header.size = htons(sizeof(cmsg));
1987     cmsg.header.type = htons(GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
1988     GNUNET_PEER_resolve(t->id.oid, &cmsg.peer);
1989     cmsg.tunnel_id = htonl(t->local_tid);
1990     GNUNET_SERVER_notification_context_broadcast(nc, &cmsg.header, GNUNET_NO);
1991   }
1992   else
1993   {
1994     struct MeshPeerPath *path2;
1995
1996     /* It's for somebody else! Retransmit. */
1997     path2 = path_duplicate(path);
1998     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1999                 "MESH:   Retransmitting.\n");
2000     path_add_to_peer(dest_peer_info, path);
2001     path = path_duplicate(path2);
2002     path_add_to_origin(orig_peer_info, path2);
2003     send_create_path(dest_peer_info, path, t);
2004   }
2005   return GNUNET_OK;
2006 }
2007
2008
2009 /**
2010  * Core handler for mesh network traffic going from the origin to a peer
2011  *
2012  * @param cls closure
2013  * @param peer peer identity this notification is about
2014  * @param message message
2015  * @param atsi performance data
2016  * @return GNUNET_OK to keep the connection open,
2017  *         GNUNET_SYSERR to close it (signal serious error)
2018  */
2019 static int
2020 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2021                           const struct GNUNET_MessageHeader *message,
2022                           const struct GNUNET_TRANSPORT_ATS_Information *atsi)
2023 {
2024   struct GNUNET_MESH_Unicast *msg;
2025   struct MeshTunnel *t;
2026   struct MeshPeerInfo *pi;
2027   size_t size;
2028
2029   size = ntohs (message->size);
2030   if (size <
2031       sizeof (struct GNUNET_MESH_Unicast) +
2032       sizeof (struct GNUNET_MessageHeader))
2033   {
2034     GNUNET_break (0);
2035     return GNUNET_OK;
2036   }
2037   msg = (struct GNUNET_MESH_Unicast *) message;
2038   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2039   if (NULL == t)
2040   {
2041     /* TODO notify back: we don't know this tunnel */
2042     GNUNET_break_op (0);
2043     return GNUNET_OK;
2044   }
2045   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
2046                                           &msg->destination.hashPubKey);
2047   if (NULL == pi)
2048   {
2049     /* TODO maybe feedback, log to statistics */
2050     GNUNET_break_op (0);
2051     return GNUNET_OK;
2052   }
2053   if (pi->id == myid)
2054   {
2055     send_subscribed_clients ((struct GNUNET_MessageHeader *) &msg[1]);
2056     return GNUNET_OK;
2057   }
2058   msg = GNUNET_malloc (size);
2059   memcpy (msg, message, size);
2060   GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2061                                      GNUNET_TIME_UNIT_FOREVER_REL,
2062                                      path_get_first_hop (t->tree, pi->id),
2063                                      size,
2064                                      &send_core_data_raw, msg);
2065   return GNUNET_OK;
2066 }
2067
2068
2069 /**
2070  * Core handler for mesh network traffic going from the origin to all peers
2071  *
2072  * @param cls closure
2073  * @param message message
2074  * @param peer peer identity this notification is about
2075  * @param atsi performance data
2076  * @return GNUNET_OK to keep the connection open,
2077  *         GNUNET_SYSERR to close it (signal serious error)
2078  *
2079  * TODO: Check who we got this from, to validate route.
2080  */
2081 static int
2082 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2083                             const struct GNUNET_MessageHeader *message,
2084                             const struct GNUNET_TRANSPORT_ATS_Information *atsi)
2085 {
2086   struct GNUNET_MESH_Multicast *msg;
2087   struct GNUNET_PeerIdentity *id;
2088   struct MeshDataDescriptor *info;
2089   struct MeshTunnelTreeNode *n;
2090   struct MeshTunnel *t;
2091   unsigned int *copies;
2092   unsigned int i;
2093   size_t size;
2094   void *data;
2095
2096   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_Multicast);
2097   if (size < sizeof (struct GNUNET_MessageHeader))
2098   {
2099     GNUNET_break_op (0);
2100     return GNUNET_OK;
2101   }
2102   msg = (struct GNUNET_MESH_Multicast *) message;
2103   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2104
2105   if (NULL == t)
2106   {
2107     /* TODO notify that we dont know that tunnel */
2108     GNUNET_break_op (0);
2109     return GNUNET_OK;
2110   }
2111
2112   /* Transmit to locally interested clients */
2113   if (GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
2114   {
2115     send_subscribed_clients ((struct GNUNET_MessageHeader *) &msg[1]);
2116   }
2117   n = t->tree->me->children_head;
2118   if (NULL == n)
2119     return GNUNET_OK;
2120   copies = GNUNET_malloc (sizeof (unsigned int));
2121   for (*copies = 0; NULL != n; n = n->next)
2122     (*copies)++;
2123   n = t->tree->me->children_head;
2124   data = GNUNET_malloc (size);
2125   memcpy (data, &msg[1], size);
2126   while (NULL != n)
2127   {
2128     info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
2129     info->origin = &t->id;
2130     info->data = data;
2131     info->size = size;
2132     info->copies = copies;
2133     info->client = t->client->handle;
2134     info->destination = n->peer;
2135     id = path_get_first_hop(t->tree, n->peer);
2136     info->peer = peer_info_get(id);
2137     GNUNET_assert (NULL != info->peer);
2138     for (i = 0; NULL != info->peer->core_transmit[i]; i++)
2139     {
2140       if (i == (CORE_QUEUE_SIZE - 1))
2141       {
2142         GNUNET_break (0);
2143         return GNUNET_OK;
2144       }
2145     }
2146     info->handler_n = i;
2147     info->peer->infos[i] = info;
2148     info->peer->types[i] = GNUNET_MESSAGE_TYPE_MESH_MULTICAST;
2149     info->peer->core_transmit[i] =
2150         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2151                                            GNUNET_TIME_UNIT_FOREVER_REL, id,
2152                                            ntohs (msg->header.size),
2153                                            &send_core_data_multicast, info);
2154   }
2155
2156   return GNUNET_OK;
2157 }
2158
2159
2160 /**
2161  * Core handler for mesh network traffic
2162  *
2163  * @param cls closure
2164  * @param message message
2165  * @param peer peer identity this notification is about
2166  * @param atsi performance data
2167  *
2168  * @return GNUNET_OK to keep the connection open,
2169  *         GNUNET_SYSERR to close it (signal serious error)
2170  */
2171 static int
2172 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
2173                           const struct GNUNET_MessageHeader *message,
2174                           const struct GNUNET_TRANSPORT_ATS_Information *atsi)
2175 {
2176   struct GNUNET_MESH_ToOrigin *msg;
2177   struct GNUNET_PeerIdentity id;
2178   struct MeshPeerInfo *peer_info;
2179   struct MeshTunnel *t;
2180   size_t size;
2181
2182   size = ntohs (message->size);
2183   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
2184       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
2185   {
2186     GNUNET_break_op (0);
2187     return GNUNET_OK;
2188   }
2189   msg = (struct GNUNET_MESH_ToOrigin *) message;
2190   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2191
2192   if (NULL == t)
2193   {
2194     /* TODO notify that we dont know this tunnel (whom)? */
2195     return GNUNET_OK;
2196   }
2197
2198   if (t->id.oid == myid)
2199   {
2200     if (NULL == t->client)
2201     {
2202       /* got data packet for ownerless tunnel */
2203       GNUNET_break_op (0);
2204       return GNUNET_OK;
2205     }
2206     /* TODO signature verification */
2207     GNUNET_SERVER_notification_context_unicast (nc, t->client->handle, message,
2208                                                 GNUNET_YES);
2209     return GNUNET_OK;
2210   }
2211   peer_info = peer_info_get (&msg->oid);
2212   if (NULL == peer_info)
2213   {
2214     /* unknown origin of tunnel */
2215     GNUNET_break (0);
2216     return GNUNET_OK;
2217   }
2218   GNUNET_PEER_resolve (t->tree->me->parent->peer, &id);
2219   msg = GNUNET_malloc (size);
2220   memcpy (msg, message, size);
2221   GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2222                                      GNUNET_TIME_UNIT_FOREVER_REL, &id, size,
2223                                      &send_core_data_raw, msg);
2224
2225   return GNUNET_OK;
2226 }
2227
2228
2229 /**
2230  * Core handler for path ACKs
2231  *
2232  * @param cls closure
2233  * @param message message
2234  * @param peer peer identity this notification is about
2235  * @param atsi performance data
2236  *
2237  * @return GNUNET_OK to keep the connection open,
2238  *         GNUNET_SYSERR to close it (signal serious error)
2239  */
2240 static int
2241 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
2242                       const struct GNUNET_MessageHeader *message,
2243                       const struct GNUNET_TRANSPORT_ATS_Information *atsi)
2244 {
2245   struct GNUNET_MESH_PathACK *msg;
2246   struct MeshTunnelTreeNode *n;
2247   struct MeshPeerInfo *peer_info;
2248   struct MeshTunnel *t;
2249
2250   msg = (struct GNUNET_MESH_PathACK *) message;
2251   t = tunnel_get (&msg->oid, msg->tid);
2252   if (NULL == t)
2253   {
2254     /* TODO notify that we don't know the tunnel */
2255     return GNUNET_OK;
2256   }
2257
2258   /* Message for us? */
2259   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
2260   {
2261     if (NULL == t->client)
2262     {
2263       GNUNET_break_op (0);
2264       return GNUNET_OK;
2265     }
2266     peer_info = peer_info_get (&msg->peer_id);
2267     if (NULL == peer_info)
2268     {
2269       GNUNET_break_op (0);
2270       return GNUNET_OK;
2271     }
2272     n = tree_find_peer(t->tree->root, peer_info->id);
2273     if (NULL == n)
2274     {
2275       GNUNET_break_op (0);
2276       return GNUNET_OK;
2277     }
2278     n->status = MESH_PEER_READY;
2279     send_client_peer_connected(t, peer_info->id);
2280     return GNUNET_OK;
2281   }
2282
2283   peer_info = peer_info_get (&msg->oid);
2284   if (NULL == peer_info)
2285   {
2286     /* If we know the tunnel, we should DEFINITELY know the peer */
2287     GNUNET_break (0);
2288     return GNUNET_OK;
2289   }
2290   msg = GNUNET_malloc (sizeof (struct GNUNET_MESH_PathACK));
2291   memcpy (msg, message, sizeof (struct GNUNET_MESH_PathACK));
2292   GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2293                                      GNUNET_TIME_UNIT_FOREVER_REL,
2294                                      path_get_first_hop (t->tree,
2295                                                          peer_info->id),
2296                                      sizeof (struct GNUNET_MESH_PathACK),
2297                                      &send_core_data_raw, msg);
2298   return GNUNET_OK;
2299 }
2300
2301
2302 /**
2303  * Functions to handle messages from core
2304  */
2305 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
2306   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
2307   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
2308   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
2309   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
2310   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
2311    sizeof (struct GNUNET_MESH_PathACK)},
2312   {NULL, 0, 0}
2313 };
2314
2315
2316
2317 /******************************************************************************/
2318 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
2319 /******************************************************************************/
2320
2321 /**
2322  * deregister_app: iterator for removing each application registered by a client
2323  * 
2324  * @param cls closure
2325  * @param key the hash of the application id (used to access the hashmap)
2326  * @param value the value stored at the key (client)
2327  * 
2328  * @return GNUNET_OK on success
2329  */
2330 static int
2331 deregister_app (void *cls, const GNUNET_HashCode * key, void *value)
2332 {
2333   GNUNET_CONTAINER_multihashmap_remove (applications, key, value);
2334   return GNUNET_OK;
2335 }
2336
2337 #if LATER
2338 /**
2339  * notify_client_connection_failure: notify a client that the connection to the
2340  * requested remote peer is not possible (for instance, no route found)
2341  * Function called when the socket is ready to queue more data. "buf" will be
2342  * NULL and "size" zero if the socket was closed for writing in the meantime.
2343  *
2344  * @param cls closure
2345  * @param size number of bytes available in buf
2346  * @param buf where the callee should write the message
2347  * @return number of bytes written to buf
2348  */
2349 static size_t
2350 notify_client_connection_failure (void *cls, size_t size, void *buf)
2351 {
2352   int size_needed;
2353   struct MeshPeerInfo *peer_info;
2354   struct GNUNET_MESH_PeerControl *msg;
2355   struct GNUNET_PeerIdentity id;
2356
2357   if (0 == size && NULL == buf)
2358   {
2359     // TODO retry? cancel?
2360     return 0;
2361   }
2362
2363   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
2364   peer_info = (struct MeshPeerInfo *) cls;
2365   msg = (struct GNUNET_MESH_PeerControl *) buf;
2366   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
2367   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
2368 //     msg->tunnel_id = htonl(peer_info->t->tid);
2369   GNUNET_PEER_resolve (peer_info->id, &id);
2370   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
2371
2372   return size_needed;
2373 }
2374 #endif
2375
2376
2377 /**
2378  * Send keepalive packets for a peer
2379  *
2380  * @param cls Closure (tunnel for which to send the keepalive).
2381  * @param tc Notification context.
2382  *
2383  * TODO: implement explicit multicast keepalive?
2384  */
2385 void
2386 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2387 {
2388   struct MeshTunnel *t = cls;
2389   struct GNUNET_MessageHeader *payload;
2390   struct GNUNET_MESH_Multicast *msg;
2391   size_t size;
2392
2393   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
2394   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
2395   {
2396     return;
2397   }
2398
2399   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2400               "MESH: sending keepalive for tunnel %d\n",
2401               t->id.tid);
2402
2403   size = sizeof(struct GNUNET_MESH_Multicast) +
2404          sizeof(struct GNUNET_MessageHeader);
2405   msg = GNUNET_malloc (size);
2406   msg->header.size = htons (size);
2407   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
2408   msg->oid = my_full_id;
2409   msg->tid = htonl(t->id.tid);
2410   payload = (struct GNUNET_MessageHeader *) &msg[1];
2411   payload->size = htons (sizeof(struct GNUNET_MessageHeader));
2412   payload->type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
2413   handle_mesh_data_multicast (NULL, &my_full_id, &msg->header, NULL);
2414
2415   GNUNET_free (msg);
2416   t->path_refresh_task =
2417       GNUNET_SCHEDULER_add_delayed (t->tree->refresh, &path_refresh, t);
2418   return;
2419 }
2420
2421
2422 /**
2423  * Function to process paths received for a new peer addition. The recorded
2424  * paths form the initial tunnel, which can be optimized later.
2425  * Called on each result obtained for the DHT search.
2426  *
2427  * @param cls closure
2428  * @param exp when will this value expire
2429  * @param key key of the result
2430  * @param type type of the result
2431  * @param size number of bytes in data
2432  * @param data pointer to the result data
2433  *
2434  * TODO: re-issue the request after certain time? cancel after X results?
2435  */
2436 static void
2437 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
2438                     const GNUNET_HashCode * key,
2439                     const struct GNUNET_PeerIdentity *get_path,
2440                     unsigned int get_path_length,
2441                     const struct GNUNET_PeerIdentity *put_path,
2442                     unsigned int put_path_length,
2443                     enum GNUNET_BLOCK_Type type, size_t size, const void *data)
2444 {
2445   struct MeshPathInfo *path_info = cls;
2446   struct MeshPeerPath *p;
2447   struct GNUNET_PeerIdentity pi;
2448   int i;
2449
2450   GNUNET_PEER_resolve (path_info->peer->id, &pi);
2451   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
2452              "MESH: Got results from DHT for %s\n",
2453              GNUNET_h2s_full(&pi.hashPubKey));
2454   GNUNET_DHT_get_stop(path_info->peer->dhtget);
2455   path_info->peer->dhtget = NULL;
2456
2457   p = path_build_from_dht (get_path, get_path_length,
2458                            put_path, put_path_length);
2459   path_add_to_peer (path_info->peer, p);
2460   for (i = 0; i < path_info->peer->ntunnels; i++)
2461   {
2462     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
2463     peer_info_connect(path_info->peer, path_info->t);
2464   }
2465   GNUNET_free (path_info);
2466
2467   return;
2468 }
2469
2470
2471 /**
2472  * Function to process paths received for a new peer addition. The recorded
2473  * paths form the initial tunnel, which can be optimized later.
2474  * Called on each result obtained for the DHT search.
2475  *
2476  * @param cls closure
2477  * @param exp when will this value expire
2478  * @param key key of the result
2479  * @param type type of the result
2480  * @param size number of bytes in data
2481  * @param data pointer to the result data
2482  */
2483 static void
2484 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
2485                       const GNUNET_HashCode * key,
2486                       const struct GNUNET_PeerIdentity *get_path,
2487                       unsigned int get_path_length,
2488                       const struct GNUNET_PeerIdentity *put_path,
2489                       unsigned int put_path_length,
2490                       enum GNUNET_BLOCK_Type type, size_t size,
2491                       const void *data)
2492 {
2493   const struct GNUNET_PeerIdentity *pi = data;
2494   struct GNUNET_PeerIdentity id;
2495   struct MeshTunnel *t = cls;
2496   struct MeshPeerInfo *peer_info;
2497   struct MeshPathInfo *path_info;
2498   struct MeshPeerPath *p;
2499   int i;
2500
2501   if (size != sizeof (struct GNUNET_PeerIdentity))
2502   {
2503     GNUNET_break_op (0);
2504     return;
2505   }
2506   GNUNET_assert (NULL != t->client);
2507   GNUNET_DHT_get_stop (t->dht_get_type);
2508   t->dht_get_type = NULL;
2509   peer_info = peer_info_get (pi);
2510   GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey, peer_info,
2511                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2512
2513   if ((NULL == get_path || NULL == put_path) && NULL == peer_info->path_head &&
2514       NULL == peer_info->dhtget)
2515   {
2516     path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
2517     path_info->peer = peer_info;
2518     path_info->t = t;
2519     /* we don't have a route to the peer, let's try a direct lookup */
2520     peer_info->dhtget =
2521         GNUNET_DHT_get_start (dht_handle, /* handle */
2522                               GNUNET_TIME_UNIT_FOREVER_REL, /* timeout */
2523                               GNUNET_BLOCK_TYPE_TEST, /* block type */
2524                               &pi->hashPubKey, /* key to look up */
2525                               10U, /* replication level */
2526                               GNUNET_DHT_RO_RECORD_ROUTE |
2527                                 GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
2528                               /* option to dht: record route */
2529                               NULL,     /* xquery */
2530                               0,        /* xquery bits */
2531                               dht_get_id_handler,  /* callback */
2532                               path_info);       /* closure */
2533     return;
2534   }
2535
2536   p = path_build_from_dht (get_path, get_path_length, put_path, put_path_length);
2537   path_add_to_peer (peer_info, p);
2538   tunnel_add_peer(t, peer_info);
2539   p = tree_get_path_to_peer(t->tree, peer_info->id);
2540 #if MESH_DEBUG
2541   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2542               "MESH: new route for tunnel 0x%x found, has %u hops\n",
2543               t->local_tid, p->length);
2544   for (i = 0; i < p->length; i++)
2545   {
2546     GNUNET_PEER_resolve (p->peers[0], &id);
2547     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:\t%d\t%s\n", i,
2548                 GNUNET_h2s_full (&id.hashPubKey));
2549   }
2550 #endif
2551
2552   if (p->length > 1)
2553   {
2554     send_create_path(peer_info, p, t);
2555     return;
2556   }
2557   path_destroy(p);
2558   send_client_peer_connected(t, myid);
2559 }
2560
2561
2562 /******************************************************************************/
2563 /*********************       MESH LOCAL HANDLES      **************************/
2564 /******************************************************************************/
2565
2566
2567 /**
2568  * Handler for client disconnection
2569  *
2570  * @param cls closure
2571  * @param client identification of the client; NULL
2572  *        for the last call when the server is destroyed
2573  */
2574 static void
2575 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
2576 {
2577   struct MeshClient *c;
2578   struct MeshClient *next;
2579
2580   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: client disconnected\n");
2581   if (client == NULL)
2582      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    (SERVER DOWN)\n");
2583   c = clients;
2584   while (NULL != c)
2585   {
2586     if (c->handle != client && NULL != client)
2587     {
2588       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    ... searching\n");
2589       c = c->next;
2590       continue;
2591     }
2592     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: matching client found\n");
2593     if (NULL != c->tunnels)
2594     {
2595       GNUNET_CONTAINER_multihashmap_iterate (c->tunnels,
2596                                              &tunnel_destroy_iterator,
2597                                              c);
2598       GNUNET_CONTAINER_multihashmap_destroy (c->tunnels);
2599     }
2600
2601     /* deregister clients applications */
2602     if (NULL != c->apps)
2603     {
2604       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, NULL);
2605       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
2606     }
2607     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
2608         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
2609     {
2610       GNUNET_SCHEDULER_cancel (announce_applications_task);
2611       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
2612     }
2613     if (NULL != c->types)
2614       GNUNET_CONTAINER_multihashmap_destroy (c->types);
2615     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
2616     next = c->next;
2617     GNUNET_free (c);
2618     c = next;
2619   }
2620
2621   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    done!\n");
2622   return;
2623 }
2624
2625
2626 /**
2627  * Handler for new clients
2628  *
2629  * @param cls closure
2630  * @param client identification of the client
2631  * @param message the actual message, which includes messages the client wants
2632  */
2633 static void
2634 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
2635                          const struct GNUNET_MessageHeader *message)
2636 {
2637   struct GNUNET_MESH_ClientConnect *cc_msg;
2638   struct MeshClient *c;
2639   GNUNET_MESH_ApplicationType *a;
2640   unsigned int size;
2641   uint16_t ntypes;
2642   uint16_t *t;
2643   uint16_t napps;
2644   uint16_t i;
2645
2646   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client connected\n");
2647   /* Check data sanity */
2648   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
2649   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
2650   ntypes = ntohs (cc_msg->types);
2651   napps = ntohs (cc_msg->applications);
2652   if (size !=
2653       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
2654   {
2655     GNUNET_break (0);
2656     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2657     return;
2658   }
2659
2660   /* Create new client structure */
2661   c = GNUNET_malloc (sizeof (struct MeshClient));
2662 #if MESH_DEBUG
2663   c->id = next_client_id++;
2664 #endif
2665   c->handle = client;
2666   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
2667   if (napps > 0)
2668   {
2669     GNUNET_MESH_ApplicationType at;
2670     GNUNET_HashCode hc;
2671
2672     c->apps = GNUNET_CONTAINER_multihashmap_create (napps);
2673     for (i = 0; i < napps; i++)
2674     {
2675       at = ntohl (a[i]);
2676       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   app type: %u\n", at);
2677       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
2678       /* store in clients hashmap */
2679       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, c,
2680                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2681       /* store in global hashmap, for announcements */
2682       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
2683                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2684     }
2685     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
2686       announce_applications_task =
2687           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
2688
2689   }
2690   if (ntypes > 0)
2691   {
2692     uint16_t u16;
2693     GNUNET_HashCode hc;
2694
2695     t = (uint16_t *) & a[napps];
2696     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes);
2697     for (i = 0; i < ntypes; i++)
2698     {
2699       u16 = ntohs (t[i]);
2700       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
2701
2702       /* store in clients hashmap */
2703       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
2704                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2705       /* store in global hashmap */
2706       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
2707                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2708     }
2709   }
2710   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2711               "MESH:  client has %u+%u subscriptions\n", napps, ntypes);
2712
2713   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
2714   c->tunnels = GNUNET_CONTAINER_multihashmap_create (32);
2715   GNUNET_SERVER_notification_context_add (nc, client);
2716
2717   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2718 #if MESH_DEBUG
2719   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client processed\n");
2720 #endif
2721 }
2722
2723
2724 /**
2725  * Handler for requests of new tunnels
2726  *
2727  * @param cls closure
2728  * @param client identification of the client
2729  * @param message the actual message
2730  */
2731 static void
2732 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
2733                             const struct GNUNET_MessageHeader *message)
2734 {
2735   struct GNUNET_MESH_TunnelMessage *t_msg;
2736   struct MeshTunnel *t;
2737   struct MeshClient *c;
2738   GNUNET_HashCode hash;
2739
2740   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new tunnel requested\n");
2741
2742   /* Sanity check for client registration */
2743   if (NULL == (c = client_get (client)))
2744   {
2745     GNUNET_break (0);
2746     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2747     return;
2748   }
2749 #if MESH_DEBUG
2750   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
2751 #endif
2752
2753   /* Message sanity check */
2754   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
2755   {
2756     GNUNET_break (0);
2757     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2758     return;
2759   }
2760
2761   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
2762   /* Sanity check for tunnel numbering */
2763   if (0 == (ntohl (t_msg->tunnel_id) & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
2764   {
2765     GNUNET_break (0);
2766     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2767     return;
2768   }
2769   /* Sanity check for duplicate tunnel IDs */
2770   if (NULL != tunnel_get_by_local_id (c, ntohl (t_msg->tunnel_id)))
2771   {
2772     GNUNET_break (0);
2773     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2774     return;
2775   }
2776
2777   t = GNUNET_malloc (sizeof (struct MeshTunnel));
2778   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: CREATED TUNNEL at %p\n", t);
2779   while (NULL != tunnel_get_by_pi (myid, next_tid))
2780     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
2781   t->id.tid = next_tid++;
2782   t->id.oid = myid;
2783   t->local_tid = ntohl (t_msg->tunnel_id);
2784   t->client = c;
2785   t->peers = GNUNET_CONTAINER_multihashmap_create (32);
2786
2787   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
2788   if (GNUNET_OK !=
2789       GNUNET_CONTAINER_multihashmap_put (c->tunnels, &hash, t,
2790                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
2791   {
2792     GNUNET_break (0);
2793     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2794     return;
2795   }
2796
2797   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2798   if (GNUNET_OK !=
2799       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
2800                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
2801   {
2802     GNUNET_break (0);
2803     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2804     return;
2805   }
2806   t->tree = tree_new (t, myid);
2807   t->tree->refresh = REFRESH_PATH_TIME;
2808   t->tree->root->status = MESH_PEER_READY;
2809   t->tree->me = t->tree->root;
2810
2811   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2812   return;
2813 }
2814
2815
2816 /**
2817  * Handler for requests of deleting tunnels
2818  *
2819  * @param cls closure
2820  * @param client identification of the client
2821  * @param message the actual message
2822  */
2823 static void
2824 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
2825                              const struct GNUNET_MessageHeader *message)
2826 {
2827   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
2828   struct MeshClient *c;
2829   struct MeshTunnel *t;
2830   MESH_TunnelNumber tid;
2831   GNUNET_HashCode hash;
2832
2833   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: destroying tunnel\n");
2834
2835   /* Sanity check for client registration */
2836   if (NULL == (c = client_get (client)))
2837   {
2838     GNUNET_break (0);
2839     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2840     return;
2841   }
2842   /* Message sanity check */
2843   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
2844   {
2845     GNUNET_break (0);
2846     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2847     return;
2848   }
2849 #if MESH_DEBUG
2850   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
2851 #endif
2852   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
2853
2854   /* Retrieve tunnel */
2855   tid = ntohl (tunnel_msg->tunnel_id);
2856
2857   /* Remove from local id hashmap */
2858   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
2859   t = GNUNET_CONTAINER_multihashmap_get (c->tunnels, &hash);
2860   GNUNET_CONTAINER_multihashmap_remove (c->tunnels, &hash, t);
2861
2862   /* Remove from global id hashmap */
2863   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2864   GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t);
2865
2866 //     notify_tunnel_destroy(t); FIXME
2867   tunnel_destroy(t);
2868   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2869   return;
2870 }
2871
2872
2873 /**
2874  * Handler for connection requests to new peers
2875  *
2876  * @param cls closure
2877  * @param client identification of the client
2878  * @param message the actual message (PeerControl)
2879  */
2880 static void
2881 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
2882                           const struct GNUNET_MessageHeader *message)
2883 {
2884   struct GNUNET_MESH_PeerControl *peer_msg;
2885   struct MeshPeerInfo *peer_info;
2886   struct MeshClient *c;
2887   struct MeshTunnel *t;
2888   MESH_TunnelNumber tid;
2889
2890   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH: Got connection request\n");
2891   /* Sanity check for client registration */
2892   if (NULL == (c = client_get (client)))
2893   {
2894     GNUNET_break (0);
2895     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2896     return;
2897   }
2898
2899   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
2900   /* Sanity check for message size */
2901   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
2902   {
2903     GNUNET_break (0);
2904     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2905     return;
2906   }
2907
2908   /* Tunnel exists? */
2909   tid = ntohl (peer_msg->tunnel_id);
2910   t = tunnel_get_by_local_id (c, tid);
2911   if (NULL == t)
2912   {
2913     GNUNET_break (0);
2914     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2915     return;
2916   }
2917
2918   /* Does client own tunnel? */
2919   if (t->client->handle != client)
2920   {
2921     GNUNET_break (0);
2922     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2923     return;
2924   }
2925   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:      for %s\n",
2926              GNUNET_h2s_full(&peer_msg->peer.hashPubKey));
2927   peer_info = peer_info_get (&peer_msg->peer);
2928
2929   tunnel_add_peer(t, peer_info);
2930   peer_info_connect(peer_info, t);
2931
2932   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2933   return;
2934 }
2935
2936
2937 /**
2938  * Handler for disconnection requests of peers in a tunnel
2939  *
2940  * @param cls closure
2941  * @param client identification of the client
2942  * @param message the actual message (PeerControl)
2943  */
2944 static void
2945 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
2946                           const struct GNUNET_MessageHeader *message)
2947 {
2948   struct GNUNET_MESH_PeerControl *peer_msg;
2949   struct MeshClient *c;
2950   struct MeshTunnel *t;
2951   MESH_TunnelNumber tid;
2952
2953   /* Sanity check for client registration */
2954   if (NULL == (c = client_get (client)))
2955   {
2956     GNUNET_break (0);
2957     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2958     return;
2959   }
2960   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
2961   /* Sanity check for message size */
2962   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
2963   {
2964     GNUNET_break (0);
2965     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2966     return;
2967   }
2968
2969   /* Tunnel exists? */
2970   tid = ntohl (peer_msg->tunnel_id);
2971   t = tunnel_get_by_local_id (c, tid);
2972   if (NULL == t)
2973   {
2974     GNUNET_break (0);
2975     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2976     return;
2977   }
2978
2979   /* Does client own tunnel? */
2980   if (t->client->handle != client)
2981   {
2982     GNUNET_break (0);
2983     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2984     return;
2985   }
2986
2987   /* Ok, delete peer from tunnel */
2988   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
2989                                             &peer_msg->peer.hashPubKey);
2990
2991   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2992   return;
2993 }
2994
2995
2996 /**
2997  * Handler for connection requests to new peers by type
2998  *
2999  * @param cls closure
3000  * @param client identification of the client
3001  * @param message the actual message (ConnectPeerByType)
3002  */
3003 static void
3004 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
3005                               const struct GNUNET_MessageHeader *message)
3006 {
3007   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
3008   struct MeshClient *c;
3009   struct MeshTunnel *t;
3010   GNUNET_HashCode hash;
3011   MESH_TunnelNumber tid;
3012
3013   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: got connect by type request\n");
3014   /* Sanity check for client registration */
3015   if (NULL == (c = client_get (client)))
3016   {
3017     GNUNET_break (0);
3018     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3019     return;
3020   }
3021
3022   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
3023   /* Sanity check for message size */
3024   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
3025       ntohs (connect_msg->header.size))
3026   {
3027     GNUNET_break (0);
3028     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3029     return;
3030   }
3031
3032   /* Tunnel exists? */
3033   tid = ntohl (connect_msg->tunnel_id);
3034   t = tunnel_get_by_local_id (c, tid);
3035   if (NULL == t)
3036   {
3037     GNUNET_break (0);
3038     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3039     return;
3040   }
3041
3042   /* Does client own tunnel? */
3043   if (t->client->handle != client)
3044   {
3045     GNUNET_break (0);
3046     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3047     return;
3048   }
3049
3050   /* Do WE have the service? */
3051   t->type = ntohl (connect_msg->type);
3052   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  type requested: %u\n", t->type);
3053   GNUNET_CRYPTO_hash (&t->type, sizeof (GNUNET_MESH_ApplicationType), &hash);
3054   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
3055       GNUNET_YES)
3056   {
3057     /* Yes! Fast forward, add ourselves to the tunnel and send the
3058      * good news to the client
3059      */
3060     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  available locally\n");
3061     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
3062                                        peer_info_get (&my_full_id),
3063                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3064
3065     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  notifying client\n");
3066     send_client_peer_connected(t, myid);
3067     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  Done\n");
3068     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3069     return;
3070   }
3071   /* Ok, lets find a peer offering the service */
3072   if (NULL != t->dht_get_type)
3073   {
3074     GNUNET_DHT_get_stop (t->dht_get_type);
3075   }
3076   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  looking in DHT for %s\n",
3077               GNUNET_h2s_full (&hash));
3078   t->dht_get_type =
3079       GNUNET_DHT_get_start (dht_handle,
3080                             GNUNET_TIME_UNIT_FOREVER_REL,
3081                             GNUNET_BLOCK_TYPE_TEST,
3082                             &hash,
3083                             10U,
3084                             GNUNET_DHT_RO_RECORD_ROUTE |
3085                               GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
3086                             NULL, 0,
3087                             &dht_get_type_handler, t);
3088
3089   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3090   return;
3091 }
3092
3093
3094 /**
3095  * Handler for client traffic directed to one peer
3096  *
3097  * @param cls closure
3098  * @param client identification of the client
3099  * @param message the actual message
3100  */
3101 static void
3102 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
3103                       const struct GNUNET_MessageHeader *message)
3104 {
3105   struct MeshClient *c;
3106   struct MeshTunnel *t;
3107   struct MeshPeerInfo *pi;
3108   struct GNUNET_MESH_Unicast *data_msg;
3109   MESH_TunnelNumber tid;
3110   size_t size;
3111
3112   /* Sanity check for client registration */
3113   if (NULL == (c = client_get (client)))
3114   {
3115     GNUNET_break (0);
3116     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3117     return;
3118   }
3119   data_msg = (struct GNUNET_MESH_Unicast *) message;
3120   /* Sanity check for message size */
3121   size = ntohs (message->size);
3122   if (sizeof (struct GNUNET_MESH_Unicast) +
3123       sizeof (struct GNUNET_MessageHeader) > size)
3124   {
3125     GNUNET_break (0);
3126     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3127     return;
3128   }
3129
3130   /* Tunnel exists? */
3131   tid = ntohl (data_msg->tid);
3132   t = tunnel_get_by_local_id (c, tid);
3133   if (NULL == t)
3134   {
3135     GNUNET_break (0);
3136     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3137     return;
3138   }
3139
3140   /*  Is it a local tunnel? Then, does client own the tunnel? */
3141   if (t->client->handle != NULL && t->client->handle != client)
3142   {
3143     GNUNET_break (0);
3144     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3145     return;
3146   }
3147
3148   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
3149                                           &data_msg->destination.hashPubKey);
3150   /* Is the selected peer in the tunnel? */
3151   if (NULL == pi)
3152   {
3153     GNUNET_break (0);
3154     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3155     return;
3156   }
3157
3158   /* Ok, everything is correct, send the message
3159    * (pretend we got it from a mesh peer)
3160    */
3161   {
3162     char buf[ntohs (message->size)];
3163     struct GNUNET_MESH_Unicast *copy;
3164
3165     /* Work around const limitation */
3166     copy = (struct GNUNET_MESH_Unicast *) buf;
3167     memcpy (buf, data_msg, size);
3168     copy->oid = my_full_id;
3169     copy->tid = htonl (t->id.tid);
3170     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL);
3171   }
3172   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3173   return;
3174 }
3175
3176 /**
3177  * Handler for client traffic directed to all peers in a tunnel
3178  *
3179  * @param cls closure
3180  * @param client identification of the client
3181  * @param message the actual message
3182  */
3183 static void
3184 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
3185                         const struct GNUNET_MessageHeader *message)
3186 {
3187   struct MeshClient *c;
3188   struct MeshTunnel *t;
3189   struct GNUNET_MESH_Multicast *data_msg;
3190   MESH_TunnelNumber tid;
3191
3192   /* Sanity check for client registration */
3193   if (NULL == (c = client_get (client)))
3194   {
3195     GNUNET_break (0);
3196     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3197     return;
3198   }
3199   data_msg = (struct GNUNET_MESH_Multicast *) message;
3200   /* Sanity check for message size */
3201   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (data_msg->header.size))
3202   {
3203     GNUNET_break (0);
3204     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3205     return;
3206   }
3207
3208   /* Tunnel exists? */
3209   tid = ntohl (data_msg->tid);
3210   t = tunnel_get_by_local_id (c, tid);
3211   if (NULL == t)
3212   {
3213     GNUNET_break (0);
3214     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3215     return;
3216   }
3217
3218   /* Does client own tunnel? */
3219   if (t->client->handle != client)
3220   {
3221     GNUNET_break (0);
3222     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3223     return;
3224   }
3225
3226   {
3227     char buf[ntohs(message->size)];
3228     struct GNUNET_MESH_Multicast *copy;
3229
3230     copy = (struct GNUNET_MESH_Multicast *)buf;
3231     memcpy(buf, message, ntohs(message->size));
3232     copy->oid = my_full_id;
3233     copy->tid = htonl(t->id.tid);
3234     handle_mesh_data_multicast(client, &my_full_id, &copy->header, NULL);
3235   }
3236
3237   /* receive done gets called when last copy is sent */
3238   return;
3239 }
3240
3241 /**
3242  * Functions to handle messages from clients
3243  */
3244 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
3245   {&handle_local_new_client, NULL, GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
3246   {&handle_local_tunnel_create, NULL,
3247    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
3248    sizeof (struct GNUNET_MESH_TunnelMessage)},
3249   {&handle_local_tunnel_destroy, NULL,
3250    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
3251    sizeof (struct GNUNET_MESH_TunnelMessage)},
3252   {&handle_local_connect_add, NULL,
3253    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
3254    sizeof (struct GNUNET_MESH_PeerControl)},
3255   {&handle_local_connect_del, NULL,
3256    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
3257    sizeof (struct GNUNET_MESH_PeerControl)},
3258   {&handle_local_connect_by_type, NULL,
3259    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
3260    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
3261   {&handle_local_unicast, NULL,
3262    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
3263   {&handle_local_unicast, NULL,
3264    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
3265   {&handle_local_multicast, NULL,
3266    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
3267   {NULL, NULL, 0, 0}
3268 };
3269
3270
3271 /**
3272  * To be called on core init/fail.
3273  *
3274  * @param cls service closure
3275  * @param server handle to the server for this service
3276  * @param identity the public identity of this peer
3277  */
3278 static void
3279 core_init (void *cls, struct GNUNET_CORE_Handle *server,
3280            const struct GNUNET_PeerIdentity *identity)
3281 {
3282   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Core init\n");
3283   core_handle = server;
3284   if (0 != memcmp(identity, &my_full_id, sizeof(my_full_id)) || NULL == server)
3285   {
3286     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("MESH: Wrong CORE service\n"));
3287     GNUNET_SCHEDULER_shutdown();   
3288   }
3289   return;
3290 }
3291
3292 /**
3293  * Method called whenever a given peer connects.
3294  *
3295  * @param cls closure
3296  * @param peer peer identity this notification is about
3297  * @param atsi performance data for the connection
3298  */
3299 static void
3300 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
3301               const struct GNUNET_TRANSPORT_ATS_Information *atsi)
3302 {
3303   struct MeshPeerInfo *peer_info;
3304   struct MeshPeerPath *path;
3305
3306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer connected\n");
3307   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n",
3308               GNUNET_h2s(&my_full_id.hashPubKey));
3309   peer_info = peer_info_get (peer);
3310   if (myid == peer_info->id)
3311   {
3312     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
3313     return;
3314   }
3315   else
3316   {
3317     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n",
3318                 GNUNET_h2s(&peer->hashPubKey));
3319   }
3320   path = path_new (2);
3321   path->peers[0] = myid;
3322   path->peers[1] = peer_info->id;
3323   GNUNET_PEER_change_rc(myid, 1);
3324   GNUNET_PEER_change_rc(peer_info->id, 1);
3325   path_add_to_peer (peer_info, path);
3326   return;
3327 }
3328
3329 /**
3330  * Method called whenever a peer disconnects.
3331  *
3332  * @param cls closure
3333  * @param peer peer identity this notification is about
3334  */
3335 static void
3336 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
3337 {
3338   struct MeshPeerInfo *pi;
3339   unsigned int i;
3340
3341   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer disconnected\n");
3342   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
3343   if (NULL == pi)
3344   {
3345     GNUNET_break (0);
3346     return;
3347   }
3348   for (i = 0; i < CORE_QUEUE_SIZE; i++)
3349   {
3350     peer_info_cancel_transmission(pi, i);
3351   }
3352   path_remove_from_peer (pi, pi->id, myid);
3353   if (myid == pi->id)
3354   {
3355     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
3356   }
3357   return;
3358 }
3359
3360
3361 /******************************************************************************/
3362 /************************      MAIN FUNCTIONS      ****************************/
3363 /******************************************************************************/
3364
3365 /**
3366  * Iterator over hash map entries.
3367  *
3368  * @param cls closure
3369  * @param key current key code
3370  * @param value value in the hash map
3371  * @return GNUNET_YES if we should continue to
3372  *         iterate,
3373  *         GNUNET_NO if not.
3374  */
3375 int
3376 shutdown_tunnel (void *cls, const GNUNET_HashCode * key, void *value)
3377 {
3378   struct MeshTunnel *t = value;
3379   tunnel_destroy(t);
3380   return GNUNET_YES;
3381 }
3382
3383 /**
3384  * Task run during shutdown.
3385  *
3386  * @param cls unused
3387  * @param tc unused
3388  */
3389 static void
3390 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3391 {
3392   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shutting down\n");
3393   /* TODO: destroy tunnels? */
3394   if (core_handle != NULL)
3395   {
3396     GNUNET_CORE_disconnect (core_handle);
3397     core_handle = NULL;
3398   }
3399   GNUNET_CONTAINER_multihashmap_iterate(tunnels, &shutdown_tunnel, NULL);
3400   if (dht_handle != NULL)
3401   {
3402     GNUNET_DHT_disconnect (dht_handle);
3403     dht_handle = NULL;
3404   }
3405   if (nc != NULL)
3406   {
3407     GNUNET_SERVER_notification_context_destroy (nc);
3408     nc = NULL;
3409   }
3410   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
3411   {
3412     GNUNET_SCHEDULER_cancel (announce_id_task);
3413     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
3414   }
3415   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shut down\n");
3416 }
3417
3418 /**
3419  * Process mesh requests.
3420  *
3421  * @param cls closure
3422  * @param server the initialized server
3423  * @param c configuration to use
3424  */
3425 static void
3426 run (void *cls, struct GNUNET_SERVER_Handle *server,
3427      const struct GNUNET_CONFIGURATION_Handle *c)
3428 {
3429   struct MeshPeerInfo *peer;
3430   struct MeshPeerPath *p;
3431   char *keyfile;
3432
3433   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: starting to run\n");
3434   server_handle = server;
3435   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
3436                                      CORE_QUEUE_SIZE,   /* queue size */
3437                                      NULL,      /* Closure passed to MESH functions */
3438                                      &core_init,        /* Call core_init once connected */
3439                                      &core_connect,     /* Handle connects */
3440                                      &core_disconnect,  /* remove peers on disconnects */
3441                                      NULL,      /* Don't notify about all incoming messages */
3442                                      GNUNET_NO, /* For header only in notification */
3443                                      NULL,      /* Don't notify about all outbound messages */
3444                                      GNUNET_NO, /* For header-only out notification */
3445                                      core_handlers);    /* Register these handlers */
3446   if (core_handle == NULL)
3447   {
3448     GNUNET_break (0);
3449     GNUNET_SCHEDULER_shutdown ();
3450     return;
3451   }
3452
3453   if (GNUNET_OK !=
3454        GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
3455                                                 &keyfile))
3456   {
3457     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3458                 _
3459                 ("Mesh service is lacking key configuration settings.  Exiting.\n"));
3460     GNUNET_SCHEDULER_shutdown ();
3461     return;
3462   }
3463   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
3464   GNUNET_free (keyfile);
3465   if (my_private_key == NULL)
3466   {
3467     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3468                 _("Mesh service could not access hostkey.  Exiting.\n"));
3469     GNUNET_SCHEDULER_shutdown ();
3470     return;
3471   }
3472   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
3473   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
3474                       &my_full_id.hashPubKey);
3475   myid = GNUNET_PEER_intern (&my_full_id);
3476
3477   dht_handle = GNUNET_DHT_connect (c, 64);
3478   if (dht_handle == NULL)
3479   {
3480     GNUNET_break (0);
3481   }
3482
3483   next_tid = 0;
3484   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
3485
3486   tunnels = GNUNET_CONTAINER_multihashmap_create (32);
3487   peers = GNUNET_CONTAINER_multihashmap_create (32);
3488   applications = GNUNET_CONTAINER_multihashmap_create (32);
3489   types = GNUNET_CONTAINER_multihashmap_create (32);
3490
3491   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
3492   nc = GNUNET_SERVER_notification_context_create (server_handle,
3493                                                   LOCAL_QUEUE_SIZE);
3494   GNUNET_SERVER_disconnect_notify (server_handle,
3495                                    &handle_local_client_disconnect,
3496                                    NULL);
3497
3498
3499   clients = NULL;
3500   clients_tail = NULL;
3501 #if MESH_DEBUG
3502   next_client_id = 0;
3503 #endif
3504
3505   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
3506   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
3507
3508   /* Create a peer_info for the local peer */
3509   peer = peer_info_get(&my_full_id);
3510   p = path_new (1);
3511   p->peers[0] = myid;
3512   path_add_to_peer(peer, p);
3513
3514   /* Scheduled the task to clean up when shutdown is called */
3515   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
3516                                 NULL);
3517
3518   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: end of run()\n");
3519 }
3520
3521 /**
3522  * The main function for the mesh service.
3523  *
3524  * @param argc number of arguments from the command line
3525  * @param argv command line arguments
3526  * @return 0 ok, 1 on error
3527  */
3528 int
3529 main (int argc, char *const *argv)
3530 {
3531   int ret;
3532
3533 #if MESH_DEBUG
3534 //   fprintf (stderr, "main ()\n");
3535 #endif
3536   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main()\n");
3537   ret =
3538       (GNUNET_OK ==
3539        GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
3540                            NULL)) ? 0 : 1;
3541   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main() END\n");
3542 #if MESH_DEBUG
3543 //   fprintf (stderr, "main () END\n");
3544 #endif
3545   return ret;
3546 }