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