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