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