Debug statements
[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: Retransmitting create path\n");
1225     GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
1226                                        GNUNET_TIME_UNIT_FOREVER_REL,
1227                                        path_get_first_hop (t->tree, peer->id),
1228                                        size_needed, &send_core_create_path,
1229                                        info);
1230     return 0;
1231   }
1232
1233   msg = (struct GNUNET_MESH_ManipulatePath *) buf;
1234   msg->header.size = htons (size_needed);
1235   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
1236   msg->tid = ntohl (t->id.tid);
1237
1238   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
1239   for (i = 0; i < p->length; i++)
1240   {
1241     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
1242   }
1243
1244   path_destroy (p);
1245   GNUNET_free (info);
1246
1247   return size_needed;
1248 }
1249
1250
1251 #if LATER
1252 /**
1253  * Function called to notify a client about the socket
1254  * being ready to queue more data.  "buf" will be
1255  * NULL and "size" zero if the socket was closed for
1256  * writing in the meantime.
1257  *
1258  * @param cls closure (MeshDataDescriptor with all info to build packet)
1259  * @param size number of bytes available in buf
1260  * @param buf where the callee should write the message
1261  * @return number of bytes written to buf
1262  */
1263 static size_t
1264 send_core_data_to_origin (void *cls, size_t size, void *buf)
1265 {
1266   struct MeshDataDescriptor *info = cls;
1267   struct GNUNET_MESH_ToOrigin *msg = buf;
1268   size_t total_size;
1269
1270   GNUNET_assert (NULL != info);
1271   total_size = sizeof (struct GNUNET_MESH_ToOrigin) + info->size;
1272   GNUNET_assert (total_size < 65536);   /* UNIT16_MAX */
1273
1274   if (total_size > size)
1275   {
1276     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1277                 "not enough buffer to send data to origin\n");
1278     return 0;
1279   }
1280   msg->header.size = htons (total_size);
1281   msg->header.type = htons (GNUNET_MESSAGE_TYPE_DATA_MESSAGE_TO_ORIGIN);
1282   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
1283   msg->tid = htonl (info->origin->tid);
1284   if (0 != info->size)
1285   {
1286     memcpy (&msg[1], &info[1], info->size);
1287   }
1288   if (NULL != info->client)
1289   {
1290     GNUNET_SERVER_receive_done (info->client, GNUNET_OK);
1291   }
1292   GNUNET_free (info);
1293   return total_size;
1294 }
1295 #endif
1296
1297
1298 /**
1299  * Function called to notify a client about the socket
1300  * being ready to queue more data.  "buf" will be
1301  * NULL and "size" zero if the socket was closed for
1302  * writing in the meantime.
1303  *
1304  * @param cls closure (data itself)
1305  * @param size number of bytes available in buf
1306  * @param buf where the callee should write the message
1307  * 
1308  * @return number of bytes written to buf
1309  */
1310 static size_t
1311 send_core_data_multicast (void *cls, size_t size, void *buf)
1312 {
1313   struct MeshDataDescriptor *info = cls;
1314   struct GNUNET_MESH_Multicast *msg = buf;
1315   size_t total_size;
1316
1317   GNUNET_assert (NULL != info);
1318   GNUNET_assert (NULL != info->peer);
1319   total_size = info->size + sizeof (struct GNUNET_MESH_Multicast);
1320   GNUNET_assert (total_size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
1321
1322   if (total_size > size)
1323   {
1324     /* Retry */
1325     struct GNUNET_PeerIdentity id;
1326
1327     GNUNET_PEER_resolve(info->peer->id, &id);
1328     info->peer->infos[info->handler_n] = info;
1329     info->peer->types[info->handler_n] = GNUNET_MESSAGE_TYPE_MESH_MULTICAST;
1330     info->peer->core_transmit[info->handler_n] =
1331       GNUNET_CORE_notify_transmit_ready (core_handle,
1332                                          0,
1333                                          0,
1334                                          GNUNET_TIME_UNIT_FOREVER_REL,
1335                                          &id,
1336                                          total_size,
1337                                          &send_core_data_multicast,
1338                                          info);
1339     return 0;
1340   }
1341   info->peer->core_transmit[info->handler_n] = NULL;
1342   info->peer->infos[info->handler_n] = NULL;
1343   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
1344   msg->header.size = htons (total_size);
1345   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
1346   msg->tid = htonl (info->origin->tid);
1347   memcpy (&msg[1], info->data, info->size);
1348   if (0 == --(*info->copies))
1349   {
1350     if (NULL != info->client)
1351     {
1352       /* FIXME One unresponsive neighbor (who doesn't "call" tmt_rdy) can lock
1353        *       the client from sending anything else to the service.
1354        *       - Call receive_done after certain timeout.
1355        *       - Here cancel the timeout.
1356        */
1357       GNUNET_SERVER_receive_done (info->client, GNUNET_OK);
1358     }
1359     GNUNET_free (info->data);
1360     GNUNET_free (info->copies);
1361   }
1362   GNUNET_free (info);
1363   return total_size;
1364 }
1365
1366
1367 /**
1368  * Function called to notify a client about the socket
1369  * being ready to queue more data.  "buf" will be
1370  * NULL and "size" zero if the socket was closed for
1371  * writing in the meantime.
1372  *
1373  * @param cls closure (MeshDataDescriptor)
1374  * @param size number of bytes available in buf
1375  * @param buf where the callee should write the message
1376  * @return number of bytes written to buf
1377  */
1378 static size_t
1379 send_core_path_ack (void *cls, size_t size, void *buf)
1380 {
1381   struct MeshDataDescriptor *info = cls;
1382   struct GNUNET_MESH_PathACK *msg = buf;
1383
1384   GNUNET_assert (NULL != info);
1385   if (info->peer)
1386   {
1387     info->peer->core_transmit[info->handler_n] = NULL;
1388   }
1389   if (sizeof (struct GNUNET_MESH_PathACK) > size)
1390   {
1391     GNUNET_break (0);
1392     return 0;
1393   }
1394   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
1395   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
1396   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
1397   msg->tid = htonl (info->origin->tid);
1398   msg->peer_id = my_full_id;
1399   GNUNET_free (info);
1400   /* TODO add signature */
1401
1402   return sizeof (struct GNUNET_MESH_PathACK);
1403 }
1404
1405
1406 /**
1407  * Function called to notify a client about the socket
1408  * being ready to queue more data.  "buf" will be
1409  * NULL and "size" zero if the socket was closed for
1410  * writing in the meantime.
1411  *
1412  * @param cls closure (data itself)
1413  * @param size number of bytes available in buf
1414  * @param buf where the callee should write the message
1415  * @return number of bytes written to buf
1416  */
1417 static size_t
1418 send_core_data_raw (void *cls, size_t size, void *buf)
1419 {
1420   struct GNUNET_MessageHeader *msg = cls;
1421   size_t total_size;
1422
1423   GNUNET_assert (NULL != msg);
1424   total_size = ntohs (msg->size);
1425
1426   if (total_size > size)
1427   {
1428     GNUNET_break (0);
1429     return 0;
1430   }
1431   memcpy (buf, msg, total_size);
1432   GNUNET_free (cls);
1433   return total_size;
1434 }
1435
1436
1437 #if LATER
1438 /**
1439  * Send another peer a notification to destroy a tunnel
1440  * @param cls The tunnel to destroy
1441  * @param size Size in the buffer
1442  * @param buf Memory where to put the data to transmit
1443  * @return Size of data put in buffer
1444  */
1445 static size_t
1446 send_p2p_tunnel_destroy (void *cls, size_t size, void *buf)
1447 {
1448   struct MeshTunnel *t = cls;
1449   struct MeshClient *c;
1450   struct GNUNET_MESH_TunnelMessage *msg;
1451
1452   c = t->client;
1453   msg = buf;
1454   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
1455    /*FIXME*/ msg->header.size =
1456       htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1457   msg->tunnel_id = htonl (t->id.tid);
1458
1459   tunnel_destroy (c, t);
1460   return sizeof (struct GNUNET_MESH_TunnelMessage);
1461 }
1462 #endif
1463
1464
1465 /**
1466  * Send the message to all clients that have subscribed to its type
1467  *
1468  * @param msg Pointer to the message itself
1469  * @return number of clients this message was sent to
1470  */
1471 static unsigned int
1472 send_subscribed_clients (struct GNUNET_MessageHeader *msg)
1473 {
1474   struct MeshClient *c;
1475   unsigned int count;
1476   uint16_t type;
1477
1478   type = ntohs (msg->type);
1479   for (count = 0, c = clients; c != NULL; c = c->next)
1480   {
1481     if (client_is_subscribed (type, c))
1482     {
1483       count++;
1484       GNUNET_SERVER_notification_context_unicast (nc, c->handle, msg,
1485                                                   GNUNET_YES);
1486     }
1487   }
1488   return count;
1489 }
1490
1491
1492
1493 /**
1494  * Notify the client that owns the tunnel that a peer has connected to it
1495  * 
1496  * @param t Tunnel whose owner to notify
1497  * @param id Short id of the peer that has connected
1498  */
1499 static void
1500 send_client_peer_connected (const struct MeshTunnel *t, const GNUNET_PEER_Id id)
1501 {
1502   struct GNUNET_MESH_PeerControl pc;
1503
1504   pc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD);
1505   pc.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1506   pc.tunnel_id = htonl (t->local_tid);
1507   GNUNET_PEER_resolve (id, &pc.peer);
1508   GNUNET_SERVER_notification_context_unicast (nc, t->client->handle,
1509                                               &pc.header, GNUNET_NO);
1510 }
1511
1512
1513 /******************************************************************************/
1514 /********************      MESH NETWORK HANDLERS     **************************/
1515 /******************************************************************************/
1516
1517
1518 /**
1519  * Core handler for path creation
1520  * struct GNUNET_CORE_MessageHandler
1521  *
1522  * @param cls closure
1523  * @param message message
1524  * @param peer peer identity this notification is about
1525  * @param atsi performance data
1526  * @return GNUNET_OK to keep the connection open,
1527  *         GNUNET_SYSERR to close it (signal serious error)
1528  *
1529  */
1530 static int
1531 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
1532                          const struct GNUNET_MessageHeader *message,
1533                          const struct GNUNET_TRANSPORT_ATS_Information *atsi)
1534 {
1535   unsigned int own_pos;
1536   uint16_t size;
1537   uint16_t i;
1538   MESH_TunnelNumber tid;
1539   struct GNUNET_MESH_ManipulatePath *msg;
1540   struct GNUNET_PeerIdentity *pi;
1541   struct GNUNET_PeerIdentity id;
1542   GNUNET_HashCode hash;
1543   struct MeshPeerPath *path;
1544   struct MeshPeerInfo *dest_peer_info;
1545   struct MeshPeerInfo *orig_peer_info;
1546   struct MeshTunnel *t;
1547
1548   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1549               "MESH: Received a path create msg\n");
1550   size = ntohs (message->size);
1551   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
1552   {
1553     GNUNET_break_op (0);
1554     return GNUNET_OK;
1555   }
1556
1557   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
1558   if (size % sizeof (struct GNUNET_PeerIdentity))
1559   {
1560     GNUNET_break_op (0);
1561     return GNUNET_OK;
1562   }
1563   size /= sizeof (struct GNUNET_PeerIdentity);
1564   if (size < 2)
1565   {
1566     GNUNET_break_op (0);
1567     return GNUNET_OK;
1568   }
1569   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1570               "MESH:     path as %u hops.\n",
1571               size);
1572   msg = (struct GNUNET_MESH_ManipulatePath *) message;
1573
1574   tid = ntohl (msg->tid);
1575   pi = (struct GNUNET_PeerIdentity *) &msg[1];
1576   t = tunnel_get (pi, tid);
1577   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1578               "MESH:     path as for tunnel %s [%X].\n",
1579               GNUNET_i2s(pi),
1580               tid);
1581   if (NULL == t)
1582   {
1583     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating tunnel\n");
1584     t = GNUNET_malloc (sizeof (struct MeshTunnel));
1585     t->id.oid = GNUNET_PEER_intern (pi);
1586     t->id.tid = tid;
1587     t->peers = GNUNET_CONTAINER_multihashmap_create (32);
1588
1589     GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
1590     if (GNUNET_OK !=
1591         GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
1592                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1593     {
1594       GNUNET_break (0);
1595       return GNUNET_OK;
1596     }
1597   }
1598   dest_peer_info =
1599       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
1600   if (NULL == dest_peer_info)
1601   {
1602     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
1603     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
1604     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
1605                                        dest_peer_info,
1606                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1607   }
1608   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
1609   if (NULL == orig_peer_info)
1610   {
1611     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
1612     orig_peer_info->id = GNUNET_PEER_intern (pi);
1613     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
1614                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1615   }
1616
1617   path = path_new (size);
1618   own_pos = 0;
1619   for (i = 0; i < size; i++)
1620   {
1621     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
1622     if (path->peers[i] == myid)
1623       own_pos = i;
1624   }
1625   if (own_pos == 0)
1626   {                             /* cannot be self, must be 'not found' */
1627     /* create path: self not found in path through self */
1628     GNUNET_break_op (0);
1629     path_destroy (path);
1630     /* FIXME error. destroy tunnel? leave for timeout? */
1631     return 0;
1632   }
1633   if (own_pos == size - 1)
1634   {
1635     /* It is for us! Send ack. */
1636     struct MeshDataDescriptor *info;
1637     unsigned int j;
1638
1639     path_add_to_origin (orig_peer_info, path);  /* inverts path!  */
1640     info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
1641     info->origin = &t->id;
1642     info->peer = GNUNET_CONTAINER_multihashmap_get (peers, &id.hashPubKey);
1643     GNUNET_assert (NULL != info->peer);
1644     for (j = 0; info->peer->core_transmit[j]; j++)
1645     {
1646       if (j == 9)
1647       {
1648         GNUNET_break (0);
1649         return GNUNET_OK;
1650       }
1651     }
1652     info->handler_n = j;
1653     info->peer->core_transmit[j] =
1654         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 100,
1655                                            GNUNET_TIME_UNIT_FOREVER_REL, peer,
1656                                            sizeof (struct GNUNET_MessageHeader),
1657                                            &send_core_path_ack, info);
1658   }
1659   else
1660   {
1661     /* It's for somebody else! Retransmit. */
1662     struct MeshPathInfo *path_info;
1663
1664     path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
1665     path_info->t = t;
1666     path_info->path = path;
1667     path_info->peer = dest_peer_info;
1668
1669     path_add_to_peer (dest_peer_info, path);
1670     GNUNET_PEER_resolve (path->peers[own_pos + 1], &id);
1671     GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
1672                                        GNUNET_TIME_UNIT_FOREVER_REL, &id,
1673                                        sizeof (struct GNUNET_MessageHeader),
1674                                        &send_core_create_path, path_info);
1675   }
1676   return GNUNET_OK;
1677 }
1678
1679
1680 /**
1681  * Core handler for mesh network traffic going from the origin to a peer
1682  *
1683  * @param cls closure
1684  * @param peer peer identity this notification is about
1685  * @param message message
1686  * @param atsi performance data
1687  * @return GNUNET_OK to keep the connection open,
1688  *         GNUNET_SYSERR to close it (signal serious error)
1689  */
1690 static int
1691 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
1692                           const struct GNUNET_MessageHeader *message,
1693                           const struct GNUNET_TRANSPORT_ATS_Information *atsi)
1694 {
1695   struct GNUNET_MESH_Unicast *msg;
1696   struct MeshTunnel *t;
1697   struct MeshPeerInfo *pi;
1698   size_t size;
1699
1700   size = ntohs (message->size);
1701   if (size <
1702       sizeof (struct GNUNET_MESH_Unicast) +
1703       sizeof (struct GNUNET_MessageHeader))
1704   {
1705     GNUNET_break (0);
1706     return GNUNET_OK;
1707   }
1708   msg = (struct GNUNET_MESH_Unicast *) message;
1709   t = tunnel_get (&msg->oid, ntohl (msg->tid));
1710   if (NULL == t)
1711   {
1712     /* TODO notify back: we don't know this tunnel */
1713     GNUNET_break_op (0);
1714     return GNUNET_OK;
1715   }
1716   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
1717                                           &msg->destination.hashPubKey);
1718   if (NULL == pi)
1719   {
1720     /* TODO maybe feedback, log to statistics */
1721     GNUNET_break_op (0);
1722     return GNUNET_OK;
1723   }
1724   if (pi->id == myid)
1725   {
1726     send_subscribed_clients ((struct GNUNET_MessageHeader *) &msg[1]);
1727     return GNUNET_OK;
1728   }
1729   msg = GNUNET_malloc (size);
1730   memcpy (msg, message, size);
1731   GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
1732                                      GNUNET_TIME_UNIT_FOREVER_REL,
1733                                      path_get_first_hop (t->tree, pi->id),
1734                                      size,
1735                                      &send_core_data_raw, msg);
1736   return GNUNET_OK;
1737 }
1738
1739
1740 /**
1741  * Core handler for mesh network traffic going from the origin to all peers
1742  *
1743  * @param cls closure
1744  * @param message message
1745  * @param peer peer identity this notification is about
1746  * @param atsi performance data
1747  * @return GNUNET_OK to keep the connection open,
1748  *         GNUNET_SYSERR to close it (signal serious error)
1749  *
1750  * TODO: Check who we got this from, to validate route.
1751  */
1752 static int
1753 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
1754                             const struct GNUNET_MessageHeader *message,
1755                             const struct GNUNET_TRANSPORT_ATS_Information *atsi)
1756 {
1757   struct GNUNET_MESH_Multicast *msg;
1758   struct GNUNET_PeerIdentity *id;
1759   struct MeshDataDescriptor *info;
1760   struct MeshTunnelTreeNode *n;
1761   struct MeshTunnel *t;
1762   unsigned int *copies;
1763   unsigned int i;
1764   size_t size;
1765   void *data;
1766
1767   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_Multicast);
1768   if (size < sizeof (struct GNUNET_MessageHeader))
1769   {
1770     GNUNET_break_op (0);
1771     return GNUNET_OK;
1772   }
1773   msg = (struct GNUNET_MESH_Multicast *) message;
1774   t = tunnel_get (&msg->oid, ntohl (msg->tid));
1775
1776   if (NULL == t)
1777   {
1778     /* TODO notify that we dont know that tunnel */
1779     GNUNET_break_op (0);
1780     return GNUNET_OK;
1781   }
1782
1783   /* Transmit to locally interested clients */
1784   if (GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
1785   {
1786     send_subscribed_clients ((struct GNUNET_MessageHeader *) &msg[1]);
1787   }
1788   n = t->tree->me->children_head;
1789   if (NULL == n)
1790     return GNUNET_OK;
1791   copies = GNUNET_malloc (sizeof (unsigned int));
1792   for (*copies = 0; NULL != n; n = n->next)
1793     (*copies)++;
1794   n = t->tree->me->children_head;
1795   data = GNUNET_malloc (size);
1796   memcpy (data, &msg[1], size);
1797   while (NULL != n)
1798   {
1799     info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
1800     info->origin = &t->id;
1801     info->data = data;
1802     info->size = size;
1803     info->copies = copies;
1804     info->client = t->client->handle;
1805     info->destination = n->peer;
1806     id = path_get_first_hop(t->tree, n->peer);
1807     info->peer = peer_info_get(id);
1808     GNUNET_assert (NULL != info->peer);
1809     for (i = 0; NULL != info->peer->core_transmit[i]; i++)
1810     {
1811       if (i == (CORE_QUEUE_SIZE - 1))
1812       {
1813         GNUNET_break (0);
1814         return GNUNET_OK;
1815       }
1816     }
1817     info->handler_n = i;
1818     info->peer->infos[i] = info;
1819     info->peer->types[i] = GNUNET_MESSAGE_TYPE_MESH_MULTICAST;
1820     info->peer->core_transmit[i] =
1821         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
1822                                            GNUNET_TIME_UNIT_FOREVER_REL, id,
1823                                            ntohs (msg->header.size),
1824                                            &send_core_data_multicast, info);
1825   }
1826
1827   return GNUNET_OK;
1828 }
1829
1830
1831 /**
1832  * Core handler for mesh network traffic
1833  *
1834  * @param cls closure
1835  * @param message message
1836  * @param peer peer identity this notification is about
1837  * @param atsi performance data
1838  *
1839  * @return GNUNET_OK to keep the connection open,
1840  *         GNUNET_SYSERR to close it (signal serious error)
1841  */
1842 static int
1843 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
1844                           const struct GNUNET_MessageHeader *message,
1845                           const struct GNUNET_TRANSPORT_ATS_Information *atsi)
1846 {
1847   struct GNUNET_MESH_ToOrigin *msg;
1848   struct GNUNET_PeerIdentity id;
1849   struct MeshPeerInfo *peer_info;
1850   struct MeshTunnel *t;
1851   size_t size;
1852
1853   size = ntohs (message->size);
1854   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
1855       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
1856   {
1857     GNUNET_break_op (0);
1858     return GNUNET_OK;
1859   }
1860   msg = (struct GNUNET_MESH_ToOrigin *) message;
1861   t = tunnel_get (&msg->oid, ntohl (msg->tid));
1862
1863   if (NULL == t)
1864   {
1865     /* TODO notify that we dont know this tunnel (whom)? */
1866     return GNUNET_OK;
1867   }
1868
1869   if (t->id.oid == myid)
1870   {
1871     if (NULL == t->client)
1872     {
1873       /* got data packet for ownerless tunnel */
1874       GNUNET_break_op (0);
1875       return GNUNET_OK;
1876     }
1877     /* TODO signature verification */
1878     GNUNET_SERVER_notification_context_unicast (nc, t->client->handle, message,
1879                                                 GNUNET_YES);
1880     return GNUNET_OK;
1881   }
1882   peer_info = peer_info_get (&msg->oid);
1883   if (NULL == peer_info)
1884   {
1885     /* unknown origin of tunnel */
1886     GNUNET_break (0);
1887     return GNUNET_OK;
1888   }
1889   GNUNET_PEER_resolve (t->tree->me->parent->peer, &id);
1890   msg = GNUNET_malloc (size);
1891   memcpy (msg, message, size);
1892   GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
1893                                      GNUNET_TIME_UNIT_FOREVER_REL, &id, size,
1894                                      &send_core_data_raw, msg);
1895
1896   return GNUNET_OK;
1897 }
1898
1899
1900 /**
1901  * Core handler for path ACKs
1902  *
1903  * @param cls closure
1904  * @param message message
1905  * @param peer peer identity this notification is about
1906  * @param atsi performance data
1907  *
1908  * @return GNUNET_OK to keep the connection open,
1909  *         GNUNET_SYSERR to close it (signal serious error)
1910  */
1911 static int
1912 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
1913                       const struct GNUNET_MessageHeader *message,
1914                       const struct GNUNET_TRANSPORT_ATS_Information *atsi)
1915 {
1916   struct GNUNET_MESH_PathACK *msg;
1917   struct MeshTunnelTreeNode *n;
1918   struct MeshPeerInfo *peer_info;
1919   struct MeshTunnel *t;
1920
1921   msg = (struct GNUNET_MESH_PathACK *) message;
1922   t = tunnel_get (&msg->oid, msg->tid);
1923   if (NULL == t)
1924   {
1925     /* TODO notify that we don't know the tunnel */
1926     return GNUNET_OK;
1927   }
1928
1929   /* Message for us? */
1930   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
1931   {
1932     if (NULL == t->client)
1933     {
1934       GNUNET_break_op (0);
1935       return GNUNET_OK;
1936     }
1937     peer_info = peer_info_get (&msg->peer_id);
1938     if (NULL == peer_info)
1939     {
1940       GNUNET_break_op (0);
1941       return GNUNET_OK;
1942     }
1943     n = tree_find_peer(t->tree->root, peer_info->id);
1944     if (NULL == n)
1945     {
1946       GNUNET_break_op (0);
1947       return GNUNET_OK;
1948     }
1949     n->status = MESH_PEER_READY;
1950     send_client_peer_connected(t, peer_info->id);
1951     return GNUNET_OK;
1952   }
1953
1954   peer_info = peer_info_get (&msg->oid);
1955   if (NULL == peer_info)
1956   {
1957     /* If we know the tunnel, we should DEFINITELY know the peer */
1958     GNUNET_break (0);
1959     return GNUNET_OK;
1960   }
1961   msg = GNUNET_malloc (sizeof (struct GNUNET_MESH_PathACK));
1962   memcpy (msg, message, sizeof (struct GNUNET_MESH_PathACK));
1963   GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
1964                                      GNUNET_TIME_UNIT_FOREVER_REL,
1965                                      path_get_first_hop (t->tree,
1966                                                          peer_info->id),
1967                                      sizeof (struct GNUNET_MESH_PathACK),
1968                                      &send_core_data_raw, msg);
1969   return GNUNET_OK;
1970 }
1971
1972
1973 /**
1974  * Functions to handle messages from core
1975  */
1976 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
1977   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
1978   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
1979   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
1980   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
1981   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
1982    sizeof (struct GNUNET_MESH_PathACK)},
1983   {NULL, 0, 0}
1984 };
1985
1986
1987
1988 /******************************************************************************/
1989 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
1990 /******************************************************************************/
1991
1992 /**
1993  * deregister_app: iterator for removing each application registered by a client
1994  * 
1995  * @param cls closure
1996  * @param key the hash of the application id (used to access the hashmap)
1997  * @param value the value stored at the key (client)
1998  * 
1999  * @return GNUNET_OK on success
2000  */
2001 static int
2002 deregister_app (void *cls, const GNUNET_HashCode * key, void *value)
2003 {
2004   GNUNET_CONTAINER_multihashmap_remove (applications, key, value);
2005   return GNUNET_OK;
2006 }
2007
2008 #if LATER
2009 /**
2010  * notify_client_connection_failure: notify a client that the connection to the
2011  * requested remote peer is not possible (for instance, no route found)
2012  * Function called when the socket is ready to queue more data. "buf" will be
2013  * NULL and "size" zero if the socket was closed for writing in the meantime.
2014  *
2015  * @param cls closure
2016  * @param size number of bytes available in buf
2017  * @param buf where the callee should write the message
2018  * @return number of bytes written to buf
2019  */
2020 static size_t
2021 notify_client_connection_failure (void *cls, size_t size, void *buf)
2022 {
2023   int size_needed;
2024   struct MeshPeerInfo *peer_info;
2025   struct GNUNET_MESH_PeerControl *msg;
2026   struct GNUNET_PeerIdentity id;
2027
2028   if (0 == size && NULL == buf)
2029   {
2030     // TODO retry? cancel?
2031     return 0;
2032   }
2033
2034   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
2035   peer_info = (struct MeshPeerInfo *) cls;
2036   msg = (struct GNUNET_MESH_PeerControl *) buf;
2037   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
2038   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
2039 //     msg->tunnel_id = htonl(peer_info->t->tid);
2040   GNUNET_PEER_resolve (peer_info->id, &id);
2041   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
2042
2043   return size_needed;
2044 }
2045 #endif
2046
2047
2048 /**
2049  * Send keepalive packets for a peer
2050  *
2051  * @param cls Closure (tunnel for which to send the keepalive).
2052  * @param tc Notification context.
2053  *
2054  * TODO: implement explicit multicast keepalive?
2055  */
2056 void
2057 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2058 {
2059   struct MeshTunnel *t = cls;
2060   struct GNUNET_MessageHeader *payload;
2061   struct GNUNET_MESH_Multicast *msg;
2062   size_t size;
2063
2064   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
2065   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
2066   {
2067     return;
2068   }
2069
2070   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2071               "MESH: sending keepalive for tunnel %d\n",
2072               t->id.tid);
2073
2074   size = sizeof(struct GNUNET_MESH_Multicast) +
2075          sizeof(struct GNUNET_MessageHeader);
2076   msg = GNUNET_malloc (size);
2077   msg->header.size = htons (size);
2078   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
2079   msg->oid = my_full_id;
2080   msg->tid = htonl(t->id.tid);
2081   payload = (struct GNUNET_MessageHeader *) &msg[1];
2082   payload->size = htons (sizeof(struct GNUNET_MessageHeader));
2083   payload->type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
2084   handle_mesh_data_multicast (NULL, &my_full_id, &msg->header, NULL);
2085
2086   GNUNET_free (msg);
2087   t->path_refresh_task =
2088       GNUNET_SCHEDULER_add_delayed (t->tree->refresh, &path_refresh, t);
2089   return;
2090 }
2091
2092 #if LATER /* FIXME DHT */
2093 /**
2094  * Function to process paths received for a new peer addition. The recorded
2095  * paths form the initial tunnel, which can be optimized later.
2096  * Called on each result obtained for the DHT search.
2097  *
2098  * @param cls closure
2099  * @param exp when will this value expire
2100  * @param key key of the result
2101  * @param type type of the result
2102  * @param size number of bytes in data
2103  * @param data pointer to the result data
2104  *
2105  * TODO: re-issue the request after certain time? cancel after X results?
2106  */
2107 static void
2108 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
2109                     const GNUNET_HashCode * key,
2110                     const struct GNUNET_PeerIdentity *get_path,
2111                     unsigned int get_path_length,
2112                     const struct GNUNET_PeerIdentity *put_path,
2113                     unsigned int put_path_length,
2114                     enum GNUNET_BLOCK_Type type, size_t size, const void *data)
2115 {
2116   struct MeshPathInfo *path_info = cls;
2117   struct MeshPathInfo *path_info_aux;
2118   struct MeshPeerPath *p;
2119   struct MeshPeerPath *aux;
2120   struct GNUNET_PeerIdentity pi;
2121   int i;
2122
2123   GNUNET_PEER_resolve (path_info->peer->id, &pi);
2124   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
2125              "MESH: Got results from DHT for %s\n",
2126              GNUNET_h2s_full(&pi.hashPubKey));
2127   if (NULL == get_path || NULL == put_path)
2128   {
2129     if (NULL == path_info->peer->path_head)
2130     {
2131       // Find ourselves some alternate initial path to the destination: retry
2132       GNUNET_DHT_get_stop (path_info->peer->dhtget);
2133 //       path_info->peer->dhtget = GNUNET_DHT_get_start (dht_handle,       /* handle */ FIXME DHT
2134 //                                                       GNUNET_TIME_UNIT_FOREVER_REL,     /* timeout */
2135 //                                                       GNUNET_BLOCK_TYPE_TEST,   /* type */
2136 //                                                       &pi.hashPubKey,   /*key to search */
2137 //                                                       4,        /* replication level */
2138 //                                                       GNUNET_DHT_RO_RECORD_ROUTE, 
2139 //                                                       NULL,     /* xquery */
2140 //                                                       0,        /* xquery bits */
2141 //                                                       &dht_get_id_handler,
2142 //                                                       (void *) path_info);
2143       return;
2144     }
2145   }
2146
2147   p = path_build_from_dht (get_path, get_path_length, put_path, put_path_length);
2148   path_add_to_peer (path_info->peer, p);
2149   for (i = 0; i < path_info->peer->ntunnels; i++)
2150   {
2151     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
2152     aux = tree_get_path_to_peer(path_info->peer->tunnels[i]->tree,
2153                                 path_info->peer->id);
2154     if (aux->length > 1)
2155     {
2156       struct GNUNET_PeerIdentity id;
2157
2158       path_info_aux = GNUNET_malloc (sizeof (struct MeshPathInfo));
2159       path_info_aux->path = aux;
2160       path_info_aux->peer = path_info->peer;
2161       path_info_aux->t = path_info->t;
2162       GNUNET_PEER_resolve (p->peers[1], &id);
2163       GNUNET_CORE_notify_transmit_ready (core_handle, /* handle */
2164                                       0, /* cork */
2165                                       0, /* priority */
2166                                       GNUNET_TIME_UNIT_FOREVER_REL,
2167                                       /* timeout */
2168                                       &id, /* target */
2169                                       sizeof (struct GNUNET_MESH_ManipulatePath)
2170                                       +
2171                                       (aux->length *
2172                                         sizeof (struct GNUNET_PeerIdentity)),
2173                                       /*size */
2174                                       &send_core_create_path,
2175                                       /* callback */
2176                                       path_info_aux);        /* cls */
2177     }
2178     else
2179     {
2180       send_client_peer_connected(path_info->t, myid);
2181     }
2182   }
2183   GNUNET_free (path_info);
2184
2185   return;
2186 }
2187
2188
2189 /**
2190  * Function to process paths received for a new peer addition. The recorded
2191  * paths form the initial tunnel, which can be optimized later.
2192  * Called on each result obtained for the DHT search.
2193  *
2194  * @param cls closure
2195  * @param exp when will this value expire
2196  * @param key key of the result
2197  * @param type type of the result
2198  * @param size number of bytes in data
2199  * @param data pointer to the result data
2200  */
2201 static void
2202 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
2203                       const GNUNET_HashCode * key,
2204                       const struct GNUNET_PeerIdentity *get_path,
2205                       unsigned int get_path_length,
2206                       const struct GNUNET_PeerIdentity *put_path,
2207                       unsigned int put_path_length,
2208                       enum GNUNET_BLOCK_Type type, size_t size,
2209                       const void *data)
2210 {
2211   const struct GNUNET_PeerIdentity *pi = data;
2212   struct GNUNET_PeerIdentity id;
2213   struct MeshTunnel *t = cls;
2214   struct MeshPeerInfo *peer_info;
2215   struct MeshPathInfo *path_info;
2216   struct MeshPeerPath *p;
2217   int i;
2218
2219   if (size != sizeof (struct GNUNET_PeerIdentity))
2220   {
2221     GNUNET_break_op (0);
2222     return;
2223   }
2224   GNUNET_assert (NULL != t->client);
2225   GNUNET_DHT_get_stop (t->client->dht_get_type);
2226   t->client->dht_get_type = NULL;
2227   peer_info = peer_info_get (pi);
2228   GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey, peer_info,
2229                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2230
2231   if ((NULL == get_path || NULL == put_path) && NULL == peer_info->path_head &&
2232       NULL == peer_info->dhtget)
2233   {
2234 //     path_info = GNUNET_malloc (sizeof (struct MeshPathInfo)); FIXME DHT
2235 //     path_info->peer = peer_info;
2236 //     path_info->t = t;
2237 //     /* we don't have a route to the peer, let's try a direct lookup */
2238 //     peer_info->dhtget = GNUNET_DHT_get_start (dht_handle,
2239 //                                               /* handle */
2240 //                                               GNUNET_TIME_UNIT_FOREVER_REL,
2241 //                                               /* timeout */
2242 //                                               GNUNET_BLOCK_TYPE_TEST,
2243 //                                               /* block type */
2244 //                                               &pi->hashPubKey,
2245 //                                               /* key to look up */
2246 //                                               10U,
2247 //                                               /* replication level */
2248 //                                               GNUNET_DHT_RO_RECORD_ROUTE,
2249 //                                               /* option to dht: record route */
2250 //                                               NULL,     /* xquery */
2251 //                                               0,        /* xquery bits */
2252 //                                               dht_get_id_handler,
2253 //                                               /* callback */
2254 //                                               path_info);       /* closure */
2255     return;
2256   }
2257
2258   p = path_build_from_dht (get_path, get_path_length, put_path, put_path_length);
2259   path_add_to_peer (peer_info, p);
2260   tunnel_add_peer(t, peer_info);
2261   p = tree_get_path_to_peer(t->tree, peer_info->id);
2262 #if MESH_DEBUG
2263   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2264               "MESH: new route for tunnel 0x%x found, has %u hops\n",
2265               t->local_tid, p->length);
2266   for (i = 0; i < p->length; i++)
2267   {
2268     GNUNET_PEER_resolve (p->peers[0], &id);
2269     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:\t%d\t%s\n", i,
2270                 GNUNET_h2s_full (&id.hashPubKey));
2271   }
2272 #endif
2273
2274   if (p->length > 1)
2275   {
2276     path_info = GNUNET_malloc(sizeof(struct MeshPathInfo));
2277     path_info->t = t;
2278     path_info->peer = peer_info;
2279     path_info->path = p;
2280     GNUNET_PEER_resolve (p->peers[1], &id);
2281     GNUNET_CORE_notify_transmit_ready (core_handle,
2282                                      /* handle */
2283                                      0,
2284                                      /* cork */
2285                                      0,
2286                                      /* priority */
2287                                      GNUNET_TIME_UNIT_FOREVER_REL,
2288                                      /* timeout */
2289                                      &id,
2290                                      /* target */
2291                                      sizeof (struct GNUNET_MESH_ManipulatePath)
2292                                      +
2293                                      (p->length *
2294                                       sizeof (struct GNUNET_PeerIdentity)),
2295                                      /*size */
2296                                      &send_core_create_path,
2297                                      /* callback */
2298                                      path_info);        /* cls */
2299     return;
2300   }
2301   path_destroy(p);
2302   send_client_peer_connected(t, myid);
2303 }
2304
2305 #endif
2306
2307 /******************************************************************************/
2308 /*********************       MESH LOCAL HANDLES      **************************/
2309 /******************************************************************************/
2310
2311
2312 /**
2313  * Handler for client disconnection
2314  *
2315  * @param cls closure
2316  * @param client identification of the client; NULL
2317  *        for the last call when the server is destroyed
2318  */
2319 static void
2320 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
2321 {
2322   struct MeshClient *c;
2323   struct MeshClient *next;
2324
2325   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: client disconnected\n");
2326   if (client == NULL)
2327      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    (SERVER DOWN)\n");
2328   c = clients;
2329   while (NULL != c)
2330   {
2331     if (c->handle != client && NULL != client)
2332     {
2333       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    ... searching\n");
2334       c = c->next;
2335       continue;
2336     }
2337     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: matching client found\n");
2338     if (NULL != c->tunnels)
2339     {
2340       GNUNET_CONTAINER_multihashmap_iterate (c->tunnels,
2341                                              &tunnel_destroy_iterator,
2342                                              c);
2343       GNUNET_CONTAINER_multihashmap_destroy (c->tunnels);
2344     }
2345
2346     /* deregister clients applications */
2347     if (NULL != c->apps)
2348     {
2349       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, NULL);
2350       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
2351     }
2352     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
2353         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
2354     {
2355       GNUNET_SCHEDULER_cancel (announce_applications_task);
2356       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
2357     }
2358     if (NULL != c->types)
2359       GNUNET_CONTAINER_multihashmap_destroy (c->types);
2360     if (NULL != c->dht_get_type)
2361       GNUNET_DHT_get_stop (c->dht_get_type);
2362     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
2363     next = c->next;
2364     GNUNET_free (c);
2365     c = next;
2366   }
2367
2368   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    done!\n");
2369   return;
2370 }
2371
2372
2373 /**
2374  * Handler for new clients
2375  *
2376  * @param cls closure
2377  * @param client identification of the client
2378  * @param message the actual message, which includes messages the client wants
2379  */
2380 static void
2381 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
2382                          const struct GNUNET_MessageHeader *message)
2383 {
2384   struct GNUNET_MESH_ClientConnect *cc_msg;
2385   struct MeshClient *c;
2386   GNUNET_MESH_ApplicationType *a;
2387   unsigned int size;
2388   uint16_t ntypes;
2389   uint16_t *t;
2390   uint16_t napps;
2391   uint16_t i;
2392
2393   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client connected\n");
2394   /* Check data sanity */
2395   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
2396   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
2397   ntypes = ntohs (cc_msg->types);
2398   napps = ntohs (cc_msg->applications);
2399   if (size !=
2400       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
2401   {
2402     GNUNET_break (0);
2403     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2404     return;
2405   }
2406
2407   /* Create new client structure */
2408   c = GNUNET_malloc (sizeof (struct MeshClient));
2409 #if MESH_DEBUG
2410   c->id = next_client_id++;
2411 #endif
2412   c->handle = client;
2413   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
2414   if (napps > 0)
2415   {
2416     GNUNET_MESH_ApplicationType at;
2417     GNUNET_HashCode hc;
2418
2419     c->apps = GNUNET_CONTAINER_multihashmap_create (napps);
2420     for (i = 0; i < napps; i++)
2421     {
2422       at = ntohl (a[i]);
2423       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   app type: %u\n", at);
2424       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
2425       /* store in clients hashmap */
2426       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, c,
2427                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2428       /* store in global hashmap, for announcements */
2429       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
2430                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2431     }
2432     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
2433       announce_applications_task =
2434           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
2435
2436   }
2437   if (ntypes > 0)
2438   {
2439     uint16_t u16;
2440     GNUNET_HashCode hc;
2441
2442     t = (uint16_t *) & a[napps];
2443     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes);
2444     for (i = 0; i < ntypes; i++)
2445     {
2446       u16 = ntohs (t[i]);
2447       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
2448
2449       /* store in clients hashmap */
2450       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
2451                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2452       /* store in global hashmap */
2453       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
2454                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2455     }
2456   }
2457   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2458               "MESH:  client has %u+%u subscriptions\n", napps, ntypes);
2459
2460   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
2461   c->tunnels = GNUNET_CONTAINER_multihashmap_create (32);
2462   GNUNET_SERVER_notification_context_add (nc, client);
2463
2464   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2465 #if MESH_DEBUG
2466   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client processed\n");
2467 #endif
2468 }
2469
2470
2471 /**
2472  * Handler for requests of new tunnels
2473  *
2474  * @param cls closure
2475  * @param client identification of the client
2476  * @param message the actual message
2477  */
2478 static void
2479 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
2480                             const struct GNUNET_MessageHeader *message)
2481 {
2482   struct GNUNET_MESH_TunnelMessage *t_msg;
2483   struct MeshTunnel *t;
2484   struct MeshClient *c;
2485   GNUNET_HashCode hash;
2486
2487   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new tunnel requested\n");
2488
2489   /* Sanity check for client registration */
2490   if (NULL == (c = client_get (client)))
2491   {
2492     GNUNET_break (0);
2493     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2494     return;
2495   }
2496 #if MESH_DEBUG
2497   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
2498 #endif
2499
2500   /* Message sanity check */
2501   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
2502   {
2503     GNUNET_break (0);
2504     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2505     return;
2506   }
2507
2508   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
2509   /* Sanity check for tunnel numbering */
2510   if (0 == (ntohl (t_msg->tunnel_id) & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
2511   {
2512     GNUNET_break (0);
2513     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2514     return;
2515   }
2516   /* Sanity check for duplicate tunnel IDs */
2517   if (NULL != tunnel_get_by_local_id (c, ntohl (t_msg->tunnel_id)))
2518   {
2519     GNUNET_break (0);
2520     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2521     return;
2522   }
2523
2524   t = GNUNET_malloc (sizeof (struct MeshTunnel));
2525   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: CREATED TUNNEL at %p\n", t);
2526   while (NULL != tunnel_get_by_pi (myid, next_tid))
2527     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
2528   t->id.tid = next_tid++;
2529   t->id.oid = myid;
2530   t->local_tid = ntohl (t_msg->tunnel_id);
2531   t->client = c;
2532   t->peers = GNUNET_CONTAINER_multihashmap_create (32);
2533
2534   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
2535   if (GNUNET_OK !=
2536       GNUNET_CONTAINER_multihashmap_put (c->tunnels, &hash, t,
2537                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
2538   {
2539     GNUNET_break (0);
2540     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2541     return;
2542   }
2543
2544   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2545   if (GNUNET_OK !=
2546       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
2547                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
2548   {
2549     GNUNET_break (0);
2550     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2551     return;
2552   }
2553   t->tree = tree_new (t, myid);
2554   t->tree->refresh = REFRESH_PATH_TIME;
2555   t->tree->root->status = MESH_PEER_READY;
2556   t->tree->me = t->tree->root;
2557
2558   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2559   return;
2560 }
2561
2562
2563 /**
2564  * Handler for requests of deleting tunnels
2565  *
2566  * @param cls closure
2567  * @param client identification of the client
2568  * @param message the actual message
2569  */
2570 static void
2571 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
2572                              const struct GNUNET_MessageHeader *message)
2573 {
2574   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
2575   struct MeshClient *c;
2576   struct MeshTunnel *t;
2577   MESH_TunnelNumber tid;
2578   GNUNET_HashCode hash;
2579
2580   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: destroying tunnel\n");
2581
2582   /* Sanity check for client registration */
2583   if (NULL == (c = client_get (client)))
2584   {
2585     GNUNET_break (0);
2586     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2587     return;
2588   }
2589   /* Message sanity check */
2590   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
2591   {
2592     GNUNET_break (0);
2593     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2594     return;
2595   }
2596 #if MESH_DEBUG
2597   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
2598 #endif
2599   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
2600
2601   /* Retrieve tunnel */
2602   tid = ntohl (tunnel_msg->tunnel_id);
2603
2604   /* Remove from local id hashmap */
2605   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
2606   t = GNUNET_CONTAINER_multihashmap_get (c->tunnels, &hash);
2607   GNUNET_CONTAINER_multihashmap_remove (c->tunnels, &hash, t);
2608
2609   /* Remove from global id hashmap */
2610   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2611   GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t);
2612
2613 //     notify_tunnel_destroy(t); FIXME
2614   tunnel_destroy(t);
2615   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2616   return;
2617 }
2618
2619
2620 /**
2621  * Handler for connection requests to new peers
2622  *
2623  * @param cls closure
2624  * @param client identification of the client
2625  * @param message the actual message (PeerControl)
2626  */
2627 static void
2628 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
2629                           const struct GNUNET_MessageHeader *message)
2630 {
2631   struct GNUNET_MESH_PeerControl *peer_msg;
2632   struct MeshPathInfo *path_info;
2633   struct MeshPeerInfo *peer_info;
2634   struct MeshClient *c;
2635   struct MeshTunnel *t;
2636   MESH_TunnelNumber tid;
2637
2638   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH: Got connection request\n");
2639   /* Sanity check for client registration */
2640   if (NULL == (c = client_get (client)))
2641   {
2642     GNUNET_break (0);
2643     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2644     return;
2645   }
2646
2647   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
2648   /* Sanity check for message size */
2649   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
2650   {
2651     GNUNET_break (0);
2652     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2653     return;
2654   }
2655
2656   /* Tunnel exists? */
2657   tid = ntohl (peer_msg->tunnel_id);
2658   t = tunnel_get_by_local_id (c, tid);
2659   if (NULL == t)
2660   {
2661     GNUNET_break (0);
2662     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2663     return;
2664   }
2665
2666   /* Does client own tunnel? */
2667   if (t->client->handle != client)
2668   {
2669     GNUNET_break (0);
2670     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2671     return;
2672   }
2673   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "MESH:      for %s\n",
2674              GNUNET_h2s_full(&peer_msg->peer.hashPubKey));
2675   peer_info = peer_info_get (&peer_msg->peer);
2676
2677   /* Start DHT search if needed, otherwise just add peer to tunnel. */
2678   if (NULL == peer_info->dhtget && NULL == peer_info->path_head)
2679   {
2680 //     path_info = GNUNET_malloc(sizeof(struct MeshPathInfo));
2681 //     path_info->peer = peer_info;
2682 //     path_info->t = t;
2683 //     peer_info->dhtget = GNUNET_DHT_get_start(dht_handle,       /* handle */ FIXME DHT
2684 //                                           GNUNET_TIME_UNIT_FOREVER_REL,     /* timeout */
2685 //                                           GNUNET_BLOCK_TYPE_TEST,   /* type */
2686 //                                           &peer_msg->peer.hashPubKey,   /*key to search */
2687 //                                           4,        /* replication level */
2688 //                                           GNUNET_DHT_RO_RECORD_ROUTE,
2689 //                                           NULL,     /* xquery */
2690 //                                           0,        /* xquery bits */
2691 //                                           &dht_get_id_handler,
2692 //                                           (void *) path_info);
2693   }
2694   else if (NULL != peer_info->path_head)
2695   {
2696     unsigned int i;
2697     for (i = 0; i < CORE_QUEUE_SIZE; i++)
2698     {
2699       if (NULL == peer_info->core_transmit[i])
2700         break;
2701     }
2702     if (CORE_QUEUE_SIZE == i)
2703     {
2704       GNUNET_break (0);
2705       GNUNET_SERVER_receive_done (client, GNUNET_OK);
2706       return;
2707     }
2708     path_info = GNUNET_malloc(sizeof(struct MeshPathInfo));
2709     path_info->peer = peer_info;
2710     path_info->t = t;
2711     tunnel_add_peer(t, peer_info);
2712     path_info->path = tree_get_path_to_peer(t->tree, peer_info->id);
2713     peer_info = peer_info_get(path_get_first_hop(t->tree, path_info->peer->id));
2714     peer_info->infos[i] = path_info;
2715     peer_info->types[i] = GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE;
2716     peer_info->core_transmit[i] =
2717       GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2718                                          GNUNET_TIME_UNIT_FOREVER_REL,
2719                                          path_get_first_hop(t->tree,
2720                                                             path_info->peer->id),
2721                                          sizeof (struct GNUNET_MessageHeader),
2722                                          &send_core_create_path, path_info);
2723   }
2724   /* Otherwise: there is no path yet, but there is a DHT_get active already. */
2725   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2726   return;
2727 }
2728
2729
2730 /**
2731  * Handler for disconnection requests of peers in a tunnel
2732  *
2733  * @param cls closure
2734  * @param client identification of the client
2735  * @param message the actual message (PeerControl)
2736  */
2737 static void
2738 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
2739                           const struct GNUNET_MessageHeader *message)
2740 {
2741   struct GNUNET_MESH_PeerControl *peer_msg;
2742   struct MeshClient *c;
2743   struct MeshTunnel *t;
2744   MESH_TunnelNumber tid;
2745
2746   /* Sanity check for client registration */
2747   if (NULL == (c = client_get (client)))
2748   {
2749     GNUNET_break (0);
2750     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2751     return;
2752   }
2753   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
2754   /* Sanity check for message size */
2755   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
2756   {
2757     GNUNET_break (0);
2758     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2759     return;
2760   }
2761
2762   /* Tunnel exists? */
2763   tid = ntohl (peer_msg->tunnel_id);
2764   t = tunnel_get_by_local_id (c, tid);
2765   if (NULL == t)
2766   {
2767     GNUNET_break (0);
2768     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2769     return;
2770   }
2771
2772   /* Does client own tunnel? */
2773   if (t->client->handle != client)
2774   {
2775     GNUNET_break (0);
2776     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2777     return;
2778   }
2779
2780   /* Ok, delete peer from tunnel */
2781   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
2782                                             &peer_msg->peer.hashPubKey);
2783
2784   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2785   return;
2786 }
2787
2788
2789 /**
2790  * Handler for connection requests to new peers by type
2791  *
2792  * @param cls closure
2793  * @param client identification of the client
2794  * @param message the actual message (ConnectPeerByType)
2795  */
2796 static void
2797 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
2798                               const struct GNUNET_MessageHeader *message)
2799 {
2800   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
2801   struct MeshClient *c;
2802   struct MeshTunnel *t;
2803   GNUNET_HashCode hash;
2804   GNUNET_MESH_ApplicationType type;
2805   MESH_TunnelNumber tid;
2806
2807   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: got connect by type request\n");
2808   /* Sanity check for client registration */
2809   if (NULL == (c = client_get (client)))
2810   {
2811     GNUNET_break (0);
2812     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2813     return;
2814   }
2815
2816   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
2817   /* Sanity check for message size */
2818   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
2819       ntohs (connect_msg->header.size))
2820   {
2821     GNUNET_break (0);
2822     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2823     return;
2824   }
2825
2826   /* Tunnel exists? */
2827   tid = ntohl (connect_msg->tunnel_id);
2828   t = tunnel_get_by_local_id (c, tid);
2829   if (NULL == t)
2830   {
2831     GNUNET_break (0);
2832     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2833     return;
2834   }
2835
2836   /* Does client own tunnel? */
2837   if (t->client->handle != client)
2838   {
2839     GNUNET_break (0);
2840     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2841     return;
2842   }
2843
2844   /* Do WE have the service? */
2845   type = ntohl (connect_msg->type);
2846   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  type requested: %u\n", type);
2847   GNUNET_CRYPTO_hash (&type, sizeof (GNUNET_MESH_ApplicationType), &hash);
2848   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
2849       GNUNET_YES)
2850   {
2851     /* Yes! Fast forward, add ourselves to the tunnel and send the
2852      * good news to the client
2853      */
2854     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  available locally\n");
2855     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
2856                                        peer_info_get (&my_full_id),
2857                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2858
2859     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  notifying client\n");
2860     send_client_peer_connected(t, myid);
2861     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  Done\n");
2862     GNUNET_SERVER_receive_done (client, GNUNET_OK);
2863     return;
2864   }
2865   /* Ok, lets find a peer offering the service */
2866   if (c->dht_get_type)
2867   {
2868     GNUNET_DHT_get_stop (c->dht_get_type);
2869   }
2870   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  looking in DHT for %s\n",
2871               GNUNET_h2s_full (&hash));
2872 //   c->dht_get_type = FIXME DHT
2873 //       GNUNET_DHT_get_start (dht_handle, GNUNET_TIME_UNIT_FOREVER_REL,
2874 //                             GNUNET_BLOCK_TYPE_TEST, &hash, 10U,
2875 //                             GNUNET_DHT_RO_RECORD_ROUTE, NULL, 0,
2876 //                             &dht_get_type_handler, t);
2877
2878   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2879   return;
2880 }
2881
2882
2883 /**
2884  * Handler for client traffic directed to one peer
2885  *
2886  * @param cls closure
2887  * @param client identification of the client
2888  * @param message the actual message
2889  */
2890 static void
2891 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
2892                       const struct GNUNET_MessageHeader *message)
2893 {
2894   struct MeshClient *c;
2895   struct MeshTunnel *t;
2896   struct MeshPeerInfo *pi;
2897   struct GNUNET_MESH_Unicast *data_msg;
2898   MESH_TunnelNumber tid;
2899   size_t size;
2900
2901   /* Sanity check for client registration */
2902   if (NULL == (c = client_get (client)))
2903   {
2904     GNUNET_break (0);
2905     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2906     return;
2907   }
2908   data_msg = (struct GNUNET_MESH_Unicast *) message;
2909   /* Sanity check for message size */
2910   size = ntohs (message->size);
2911   if (sizeof (struct GNUNET_MESH_Unicast) +
2912       sizeof (struct GNUNET_MessageHeader) > size)
2913   {
2914     GNUNET_break (0);
2915     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2916     return;
2917   }
2918
2919   /* Tunnel exists? */
2920   tid = ntohl (data_msg->tid);
2921   t = tunnel_get_by_local_id (c, tid);
2922   if (NULL == t)
2923   {
2924     GNUNET_break (0);
2925     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2926     return;
2927   }
2928
2929   /*  Is it a local tunnel? Then, does client own the tunnel? */
2930   if (t->client->handle != NULL && t->client->handle != client)
2931   {
2932     GNUNET_break (0);
2933     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2934     return;
2935   }
2936
2937   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
2938                                           &data_msg->destination.hashPubKey);
2939   /* Is the selected peer in the tunnel? */
2940   if (NULL == pi)
2941   {
2942     GNUNET_break (0);
2943     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2944     return;
2945   }
2946
2947   /* Ok, everything is correct, send the message
2948    * (pretend we got it from a mesh peer)
2949    */
2950   {
2951     char buf[ntohs (message->size)];
2952     struct GNUNET_MESH_Unicast *copy;
2953
2954     /* Work around const limitation */
2955     copy = (struct GNUNET_MESH_Unicast *) buf;
2956     memcpy (buf, data_msg, size);
2957     copy->oid = my_full_id;
2958     copy->tid = htonl (t->id.tid);
2959     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL);
2960   }
2961   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2962   return;
2963 }
2964
2965 /**
2966  * Handler for client traffic directed to all peers in a tunnel
2967  *
2968  * @param cls closure
2969  * @param client identification of the client
2970  * @param message the actual message
2971  */
2972 static void
2973 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
2974                         const struct GNUNET_MessageHeader *message)
2975 {
2976   struct MeshClient *c;
2977   struct MeshTunnel *t;
2978   struct GNUNET_MESH_Multicast *data_msg;
2979   MESH_TunnelNumber tid;
2980
2981   /* Sanity check for client registration */
2982   if (NULL == (c = client_get (client)))
2983   {
2984     GNUNET_break (0);
2985     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2986     return;
2987   }
2988   data_msg = (struct GNUNET_MESH_Multicast *) message;
2989   /* Sanity check for message size */
2990   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (data_msg->header.size))
2991   {
2992     GNUNET_break (0);
2993     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2994     return;
2995   }
2996
2997   /* Tunnel exists? */
2998   tid = ntohl (data_msg->tid);
2999   t = tunnel_get_by_local_id (c, tid);
3000   if (NULL == t)
3001   {
3002     GNUNET_break (0);
3003     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3004     return;
3005   }
3006
3007   /* Does client own tunnel? */
3008   if (t->client->handle != client)
3009   {
3010     GNUNET_break (0);
3011     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3012     return;
3013   }
3014
3015   {
3016     char buf[ntohs(message->size)];
3017     struct GNUNET_MESH_Multicast *copy;
3018
3019     copy = (struct GNUNET_MESH_Multicast *)buf;
3020     memcpy(buf, message, ntohs(message->size));
3021     copy->oid = my_full_id;
3022     copy->tid = htonl(t->id.tid);
3023     handle_mesh_data_multicast(client, &my_full_id, &copy->header, NULL);
3024   }
3025
3026   /* receive done gets called when last copy is sent */
3027   return;
3028 }
3029
3030 /**
3031  * Functions to handle messages from clients
3032  */
3033 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
3034   {&handle_local_new_client, NULL, GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
3035   {&handle_local_tunnel_create, NULL,
3036    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
3037    sizeof (struct GNUNET_MESH_TunnelMessage)},
3038   {&handle_local_tunnel_destroy, NULL,
3039    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
3040    sizeof (struct GNUNET_MESH_TunnelMessage)},
3041   {&handle_local_connect_add, NULL,
3042    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
3043    sizeof (struct GNUNET_MESH_PeerControl)},
3044   {&handle_local_connect_del, NULL,
3045    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
3046    sizeof (struct GNUNET_MESH_PeerControl)},
3047   {&handle_local_connect_by_type, NULL,
3048    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
3049    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
3050   {&handle_local_unicast, NULL,
3051    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
3052   {&handle_local_unicast, NULL,
3053    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
3054   {&handle_local_multicast, NULL,
3055    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
3056   {NULL, NULL, 0, 0}
3057 };
3058
3059
3060 /**
3061  * To be called on core init/fail.
3062  *
3063  * @param cls service closure
3064  * @param server handle to the server for this service
3065  * @param identity the public identity of this peer
3066  * @param publicKey the public key of this peer
3067  */
3068 static void
3069 core_init (void *cls, struct GNUNET_CORE_Handle *server,
3070            const struct GNUNET_PeerIdentity *identity,
3071            const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *publicKey)
3072 {
3073   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Core init\n");
3074   core_handle = server;
3075   if (0 != memcmp(identity, &my_full_id, sizeof(my_full_id)) || NULL == server)
3076   {
3077     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("MESH: Wrong CORE service\n"));
3078     GNUNET_SCHEDULER_shutdown();   
3079   }
3080   return;
3081 }
3082
3083 /**
3084  * Method called whenever a given peer connects.
3085  *
3086  * @param cls closure
3087  * @param peer peer identity this notification is about
3088  * @param atsi performance data for the connection
3089  */
3090 static void
3091 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
3092               const struct GNUNET_TRANSPORT_ATS_Information *atsi)
3093 {
3094   struct MeshPeerInfo *peer_info;
3095   struct MeshPeerPath *path;
3096
3097 //   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer connected\n");
3098 //   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n",
3099 //               GNUNET_h2s(&my_full_id.hashPubKey));
3100   peer_info = peer_info_get (peer);
3101   if (myid == peer_info->id)
3102   {
3103 //     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
3104     return;
3105   }
3106   else
3107   {
3108 //     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n",
3109 //                 GNUNET_h2s(&peer->hashPubKey));
3110   }
3111   path = path_new (2);
3112   path->peers[0] = myid;
3113   path->peers[1] = peer_info->id;
3114   path_add_to_peer (peer_info, path);
3115   return;
3116 }
3117
3118 /**
3119  * Method called whenever a peer disconnects.
3120  *
3121  * @param cls closure
3122  * @param peer peer identity this notification is about
3123  */
3124 static void
3125 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
3126 {
3127   struct MeshPeerInfo *pi;
3128   unsigned int i;
3129
3130   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer disconnected\n");
3131   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
3132   if (!pi)
3133   {
3134     GNUNET_break (0);
3135     return;
3136   }
3137   for (i = 0; i < CORE_QUEUE_SIZE; i++)
3138   {
3139     if (pi->core_transmit[i])
3140     {
3141       struct MeshDataDescriptor *dd;
3142       struct MeshPathInfo *path_info;
3143       GNUNET_CORE_notify_transmit_ready_cancel (pi->core_transmit[i]);
3144       /* TODO: notify that tranmission has failed */
3145       switch (pi->types[i])
3146       {
3147         case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
3148         case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
3149         case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
3150           dd = pi->infos[i];
3151           if (0 == --(*dd->copies))
3152           {
3153             GNUNET_free (dd->copies);
3154             GNUNET_free (dd->data);
3155           }
3156           break;
3157         case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
3158           path_info = pi->infos[i];
3159           path_destroy(path_info->path);
3160           break;
3161       }
3162       GNUNET_free (pi->infos[i]);
3163     }
3164   }
3165   path_remove_from_peer (pi, pi->id, myid);
3166   if (myid == pi->id)
3167   {
3168     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
3169   }
3170   return;
3171 }
3172
3173
3174 /******************************************************************************/
3175 /************************      MAIN FUNCTIONS      ****************************/
3176 /******************************************************************************/
3177
3178 /**
3179  * Task run during shutdown.
3180  *
3181  * @param cls unused
3182  * @param tc unused
3183  */
3184 static void
3185 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3186 {
3187 //   struct MeshClient *c;
3188
3189   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shutting down\n");
3190   if (core_handle != NULL)
3191   {
3192     GNUNET_CORE_disconnect (core_handle);
3193     core_handle = NULL;
3194   }
3195 //   if (dht_handle != NULL) FIXME DHT
3196 //   {
3197 //     for (c = clients; NULL != c; c = c->next)
3198 //       if (NULL != c->dht_get_type)
3199 //         GNUNET_DHT_get_stop (c->dht_get_type);
3200 //     GNUNET_DHT_disconnect (dht_handle);
3201 //     dht_handle = NULL;
3202 //   }
3203   if (nc != NULL)
3204   {
3205     GNUNET_SERVER_notification_context_destroy (nc);
3206     nc = NULL;
3207   }
3208   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
3209   {
3210     GNUNET_SCHEDULER_cancel (announce_id_task);
3211     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
3212   }
3213   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shut down\n");
3214 }
3215
3216 /**
3217  * Process mesh requests.
3218  *
3219  * @param cls closure
3220  * @param server the initialized server
3221  * @param c configuration to use
3222  */
3223 static void
3224 run (void *cls, struct GNUNET_SERVER_Handle *server,
3225      const struct GNUNET_CONFIGURATION_Handle *c)
3226 {
3227   struct MeshPeerInfo *peer;
3228   struct MeshPeerPath *p;
3229   char *keyfile;
3230
3231   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: starting to run\n");
3232   server_handle = server;
3233   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
3234                                      CORE_QUEUE_SIZE,   /* queue size */
3235                                      NULL,      /* Closure passed to MESH functions */
3236                                      &core_init,        /* Call core_init once connected */
3237                                      &core_connect,     /* Handle connects */
3238                                      &core_disconnect,  /* remove peers on disconnects */
3239                                      NULL,      /* Do we care about "status" updates? */
3240                                      NULL,      /* Don't notify about all incoming messages */
3241                                      GNUNET_NO, /* For header only in notification */
3242                                      NULL,      /* Don't notify about all outbound messages */
3243                                      GNUNET_NO, /* For header-only out notification */
3244                                      core_handlers);    /* Register these handlers */
3245   if (core_handle == NULL)
3246   {
3247     GNUNET_break (0);
3248     GNUNET_SCHEDULER_shutdown ();
3249     return;
3250   }
3251
3252   if (GNUNET_OK !=
3253        GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
3254                                                 &keyfile))
3255   {
3256     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3257                 _
3258                 ("Mesh service is lacking key configuration settings.  Exiting.\n"));
3259     GNUNET_SCHEDULER_shutdown ();
3260     return;
3261   }
3262   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
3263   GNUNET_free (keyfile);
3264   if (my_private_key == NULL)
3265   {
3266     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3267                 _("Mesh service could not access hostkey.  Exiting.\n"));
3268     GNUNET_SCHEDULER_shutdown ();
3269     return;
3270   }
3271   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
3272   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
3273                       &my_full_id.hashPubKey);
3274   myid = GNUNET_PEER_intern (&my_full_id);
3275
3276 //   dht_handle = GNUNET_DHT_connect (c, 64); FIXME DHT
3277 //   if (dht_handle == NULL)
3278 //   {
3279 //     GNUNET_break (0);
3280 //   }
3281
3282   next_tid = 0;
3283
3284   tunnels = GNUNET_CONTAINER_multihashmap_create (32);
3285   peers = GNUNET_CONTAINER_multihashmap_create (32);
3286   applications = GNUNET_CONTAINER_multihashmap_create (32);
3287   types = GNUNET_CONTAINER_multihashmap_create (32);
3288
3289   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
3290   nc = GNUNET_SERVER_notification_context_create (server_handle,
3291                                                   LOCAL_QUEUE_SIZE);
3292   GNUNET_SERVER_disconnect_notify (server_handle,
3293                                    &handle_local_client_disconnect,
3294                                    NULL);
3295
3296
3297   clients = NULL;
3298   clients_tail = NULL;
3299 #if MESH_DEBUG
3300   next_client_id = 0;
3301 #endif
3302
3303   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
3304   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
3305
3306   /* Create a peer_info for the local peer */
3307   peer = peer_info_get(&my_full_id);
3308   p = path_new (1);
3309   p->peers[0] = myid;
3310   path_add_to_peer(peer, p);
3311
3312   /* Scheduled the task to clean up when shutdown is called */
3313   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
3314                                 NULL);
3315
3316   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: end of run()\n");
3317 }
3318
3319 /**
3320  * The main function for the mesh service.
3321  *
3322  * @param argc number of arguments from the command line
3323  * @param argv command line arguments
3324  * @return 0 ok, 1 on error
3325  */
3326 int
3327 main (int argc, char *const *argv)
3328 {
3329   int ret;
3330
3331 #if MESH_DEBUG
3332 //   fprintf (stderr, "main ()\n");
3333 #endif
3334   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main()\n");
3335   ret =
3336       (GNUNET_OK ==
3337        GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
3338                            NULL)) ? 0 : 1;
3339   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main() END\n");
3340 #if MESH_DEBUG
3341 //   fprintf (stderr, "main () END\n");
3342 #endif
3343   return ret;
3344 }