Add info about peer's paths on ACK of a path
[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  * - relay corking down to core
44  * - set ttl relative to tree depth
45  */
46
47 #include "platform.h"
48 #include "mesh.h"
49 #include "mesh_protocol.h"
50 #include "gnunet_dht_service.h"
51 #include "mesh_tunnel_tree.h"
52
53 /* TODO: move into configuration file */
54 #define REFRESH_PATH_TIME       GNUNET_TIME_relative_multiply(\
55                                     GNUNET_TIME_UNIT_SECONDS,\
56                                     300)
57 #define APP_ANNOUNCE_TIME       GNUNET_TIME_relative_multiply(\
58                                     GNUNET_TIME_UNIT_SECONDS,\
59                                     5)
60
61 #define ID_ANNOUNCE_TIME        GNUNET_TIME_relative_multiply(\
62                                     GNUNET_TIME_UNIT_SECONDS,\
63                                     10)
64
65 #define GET_RESTART_TIME        GNUNET_TIME_relative_multiply(\
66                                     GNUNET_TIME_UNIT_SECONDS,\
67                                     5)
68
69 #define UNACKNOWLEDGED_WAIT     GNUNET_TIME_relative_multiply(\
70                                     GNUNET_TIME_UNIT_SECONDS,\
71                                     2)
72 #define DEFAULT_TTL     64
73
74 #define MESH_DEBUG_DHT GNUNET_NO
75
76
77
78 /******************************************************************************/
79 /************************      DATA STRUCTURES     ****************************/
80 /******************************************************************************/
81
82 /** FWD declaration */
83 struct MeshPeerInfo;
84
85 /**
86  * Struct containing all info possibly needed to build a package when called
87  * back by core.
88  */
89 struct MeshDataDescriptor
90 {
91     /** ID of the tunnel this packet travels in */
92   struct MESH_TunnelID *origin;
93
94     /** Data itself */
95   void *data;
96
97     /** Client that asked for the transmission, if any */
98   struct GNUNET_SERVER_Client *client;
99
100     /** Who was this message being sent to */
101   struct MeshPeerInfo *peer;
102
103     /** Ultimate destination of the packet */
104   GNUNET_PEER_Id destination;
105
106     /** Number of identical messages sent to different hops (multicast) */
107   unsigned int *copies;
108
109     /** Which handler was used to request the transmission */
110   unsigned int handler_n;
111
112     /** Size of the data */
113   size_t size;
114
115     /** Used to allow a client send more traffic to the service after a
116      * previous packet was tried to be sent to a neighbor and couldn't */
117   GNUNET_SCHEDULER_TaskIdentifier *timeout_task;
118 };
119
120
121 /**
122  * Struct containing all information regarding a given peer
123  */
124 struct MeshPeerInfo
125 {
126     /**
127      * ID of the peer
128      */
129   GNUNET_PEER_Id id;
130
131     /**
132      * Last time we heard from this peer
133      */
134   struct GNUNET_TIME_Absolute last_contact;
135
136     /**
137      * Number of attempts to reconnect so far
138      */
139   int n_reconnect_attempts;
140
141     /**
142      * Paths to reach the peer, ordered by ascending hop count
143      */
144   struct MeshPeerPath *path_head;
145
146     /**
147      * Paths to reach the peer, ordered by ascending hop count
148      */
149   struct MeshPeerPath *path_tail;
150
151     /**
152      * Handle to stop the DHT search for a path to this peer
153      */
154   struct GNUNET_DHT_GetHandle *dhtget;
155
156     /**
157      * Closure given to the DHT GET
158      */
159   struct MeshPathInfo *dhtgetcls;
160
161     /**
162      * Handles to stop queued transmissions for this peer
163      */
164   struct GNUNET_CORE_TransmitHandle *core_transmit[CORE_QUEUE_SIZE];
165
166     /**
167      * Pointer to info stuctures used as cls for queued transmissions
168      */
169   void *infos[CORE_QUEUE_SIZE];
170
171     /**
172      * Type of message being in each transmission
173      */
174   uint16_t types[CORE_QUEUE_SIZE];
175
176     /**
177      * Array of tunnels this peer participates in
178      * (most probably a small amount, therefore not a hashmap)
179      * When the path to the peer changes, notify these tunnels to let them
180      * re-adjust their path trees.
181      */
182   struct MeshTunnel **tunnels;
183
184     /**
185      * Number of tunnels this peers participates in
186      */
187   unsigned int ntunnels;
188 };
189
190
191 /**
192  * Data scheduled to transmit (to local client or remote peer)
193  */
194 struct MeshQueue
195 {
196     /**
197      * Double linked list
198      */
199   struct MeshQueue *next;
200   struct MeshQueue *prev;
201
202     /**
203      * Target of the data (NULL if target is client)
204      */
205   struct MeshPeerInfo *peer;
206
207     /**
208      * Client to send the data to (NULL if target is peer)
209      */
210   struct MeshClient *client;
211
212     /**
213      * Size of the message to transmit
214      */
215   unsigned int size;
216
217     /**
218      * How old is the data?
219      */
220   struct GNUNET_TIME_Absolute timestamp;
221
222     /**
223      * Data itself
224      */
225   struct GNUNET_MessageHeader *data;
226 };
227
228 /**
229  * Globally unique tunnel identification (owner + number)
230  * DO NOT USE OVER THE NETWORK
231  */
232 struct MESH_TunnelID
233 {
234     /**
235      * Node that owns the tunnel
236      */
237   GNUNET_PEER_Id oid;
238
239     /**
240      * Tunnel number to differentiate all the tunnels owned by the node oid
241      * ( tid < GNUNET_MESH_LOCAL_TUNNEL_ID_CLI )
242      */
243   MESH_TunnelNumber tid;
244 };
245
246
247 struct MeshClient;              /* FWD declaration */
248
249 /**
250  * Struct containing all information regarding a tunnel
251  * For an intermediate node the improtant info used will be:
252  * - id        Tunnel unique identification
253  * - paths[0]  To know where to send it next
254  * - metainfo: ready, speeds, accounting
255  */
256 struct MeshTunnel
257 {
258     /**
259      * Tunnel ID
260      */
261   struct MESH_TunnelID id;
262
263     /**
264      * Local tunnel number ( >= GNUNET_MESH_LOCAL_TUNNEL_ID_CLI or 0 )
265      */
266   MESH_TunnelNumber local_tid;
267
268     /**
269      * ID of the last multicast packet seen/sent.
270      */
271   uint32_t mid;
272
273     /**
274      * Last time the tunnel was used
275      */
276   struct GNUNET_TIME_Absolute timestamp;
277
278     /**
279      * Peers in the tunnel, indexed by PeerIdentity -> (MeshPeerInfo)
280      * containing peers added by id or by type, not intermediate peers.
281      */
282   struct GNUNET_CONTAINER_MultiHashMap *peers;
283
284     /**
285      * Number of peers that are connected and potentially ready to receive data
286      */
287   unsigned int peers_ready;
288
289     /**
290      * Number of peers that have been added to the tunnel
291      */
292   unsigned int peers_total;
293
294     /**
295      * Client owner of the tunnel, if any
296      */
297   struct MeshClient *client;
298
299     /**
300      * Messages ready to transmit
301      */
302   struct MeshQueue *queue_head;
303   struct MeshQueue *queue_tail;
304
305   /**
306    * Tunnel paths
307    */
308   struct MeshTunnelTree *tree;
309
310   /**
311    * Application type we are looking for in this tunnel
312    */
313   GNUNET_MESH_ApplicationType type;
314
315     /**
316      * Used to search peers offering a service
317      */
318   struct GNUNET_DHT_GetHandle *dht_get_type;
319
320   /**
321    * Task to keep the used paths alive
322    */
323   GNUNET_SCHEDULER_TaskIdentifier path_refresh_task;
324
325   /**
326    * Task to destroy the tunnel after timeout
327    *
328    * FIXME: merge the two? a tunnel will have either
329    * a path refresh OR a timeout, never both!
330    */
331   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
332 };
333
334
335 /**
336  * Info needed to work with tunnel paths and peers
337  */
338 struct MeshPathInfo
339 {
340   /**
341    * Tunnel
342    */
343   struct MeshTunnel *t;
344
345   /**
346    * Neighbouring peer to whom we send the packet to
347    */
348   struct MeshPeerInfo *peer;
349
350   /**
351    * Path itself
352    */
353   struct MeshPeerPath *path;
354
355   /**
356    * Position in peer's transmit queue
357    */
358   unsigned int pos;
359 };
360
361
362 /**
363  * Struct containing information about a client of the service
364  */
365 struct MeshClient
366 {
367     /**
368      * Linked list
369      */
370   struct MeshClient *next;
371   struct MeshClient *prev;
372
373     /**
374      * Tunnels that belong to this client, indexed by local id
375      */
376   struct GNUNET_CONTAINER_MultiHashMap *tunnels;
377
378     /**
379      * Handle to communicate with the client
380      */
381   struct GNUNET_SERVER_Client *handle;
382
383     /**
384      * Applications that this client has claimed to provide
385      */
386   struct GNUNET_CONTAINER_MultiHashMap *apps;
387
388     /**
389      * Messages that this client has declared interest in
390      */
391   struct GNUNET_CONTAINER_MultiHashMap *types;
392
393 #if MESH_DEBUG
394     /**
395      * ID of the client, for debug messages
396      */
397   unsigned int id;
398 #endif
399
400 };
401
402
403
404 /******************************************************************************/
405 /************************      DEBUG FUNCTIONS     ****************************/
406 /******************************************************************************/
407
408 #if MESH_DEBUG
409 /**
410  * GNUNET_SCHEDULER_Task for printing a message after some operation is done
411  * @param cls string to print
412  * @param tc task context
413  */
414 static void
415 mesh_debug (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
416 {
417   char *s = cls;
418
419   if (GNUNET_SCHEDULER_REASON_SHUTDOWN == tc->reason)
420   {
421     return;
422   }
423   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: %s\n", s);
424 }
425 #endif
426
427 /******************************************************************************/
428 /***********************      GLOBAL VARIABLES     ****************************/
429 /******************************************************************************/
430
431 /**
432  * All the clients
433  */
434 static struct MeshClient *clients;
435 static struct MeshClient *clients_tail;
436
437 /**
438  * Tunnels known, indexed by MESH_TunnelID (MeshTunnel)
439  */
440 static struct GNUNET_CONTAINER_MultiHashMap *tunnels;
441
442 /**
443  * Tunnels incoming, indexed by MESH_TunnelNumber
444  * (which is greater than GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
445  */
446 static struct GNUNET_CONTAINER_MultiHashMap *incoming_tunnels;
447
448 /**
449  * Peers known, indexed by PeerIdentity (MeshPeerInfo)
450  */
451 static struct GNUNET_CONTAINER_MultiHashMap *peers;
452
453 /**
454  * Handle to communicate with core
455  */
456 static struct GNUNET_CORE_Handle *core_handle;
457
458 /**
459  * Handle to communicate with transport
460  */
461 // static struct GNUNET_TRANSPORT_Handle *transport_handle;
462
463 /**
464  * Handle to use DHT
465  */
466 static struct GNUNET_DHT_Handle *dht_handle;
467
468 /**
469  * Handle to server
470  */
471 static struct GNUNET_SERVER_Handle *server_handle;
472
473 /**
474  * Notification context, to send messages to local clients
475  */
476 static struct GNUNET_SERVER_NotificationContext *nc;
477
478 /**
479  * Local peer own ID (memory efficient handle)
480  */
481 static GNUNET_PEER_Id myid;
482
483 /**
484  * Local peer own ID (full value)
485  */
486 static struct GNUNET_PeerIdentity my_full_id;
487
488 /**
489  * Own private key
490  */
491 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
492
493 /**
494  * Own public key.
495  */
496 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
497
498 /**
499  * Tunnel ID for the next created tunnel (global tunnel number)
500  */
501 static MESH_TunnelNumber next_tid;
502
503 /**
504  * Tunnel ID for the next incoming tunnel (local tunnel number)
505  */
506 static MESH_TunnelNumber next_local_tid;
507
508 /**
509  * All application types provided by this peer
510  */
511 static struct GNUNET_CONTAINER_MultiHashMap *applications;
512
513 /**
514  * All message types clients of this peer are interested in
515  */
516 static struct GNUNET_CONTAINER_MultiHashMap *types;
517
518 /**
519  * Task to periodically announce provided applications
520  */
521 GNUNET_SCHEDULER_TaskIdentifier announce_applications_task;
522
523 /**
524  * Task to periodically announce itself in the network
525  */
526 GNUNET_SCHEDULER_TaskIdentifier announce_id_task;
527
528 #if MESH_DEBUG
529 unsigned int next_client_id;
530 #endif
531
532
533 /******************************************************************************/
534 /************************         ITERATORS        ****************************/
535 /******************************************************************************/
536
537 /* FIXME move iterators here */
538
539
540 /******************************************************************************/
541 /************************    PERIODIC FUNCTIONS    ****************************/
542 /******************************************************************************/
543
544 /**
545  * Announce iterator over for each application provided by the peer
546  *
547  * @param cls closure
548  * @param key current key code
549  * @param value value in the hash map
550  * @return GNUNET_YES if we should continue to
551  *         iterate,
552  *         GNUNET_NO if not.
553  */
554 static int
555 announce_application (void *cls, const GNUNET_HashCode * key, void *value)
556 {
557   /* FIXME are hashes in multihash map equal on all aquitectures? */
558   GNUNET_DHT_put (dht_handle, key, 10U,
559                   GNUNET_DHT_RO_RECORD_ROUTE |
560                   GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE, GNUNET_BLOCK_TYPE_TEST,
561                   sizeof (struct GNUNET_PeerIdentity),
562                   (const char *) &my_full_id,
563 #if MESH_DEBUG
564                   GNUNET_TIME_UNIT_FOREVER_ABS, GNUNET_TIME_UNIT_FOREVER_REL,
565                   &mesh_debug, "DHT_put for app completed");
566 #else
567                   GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (),
568                                             APP_ANNOUNCE_TIME),
569                   APP_ANNOUNCE_TIME, NULL, NULL);
570 #endif
571   return GNUNET_OK;
572 }
573
574
575 /**
576  * Periodically announce what applications are provided by local clients
577  *
578  * @param cls closure
579  * @param tc task context
580  */
581 static void
582 announce_applications (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
583 {
584   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
585   {
586     announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
587     return;
588   }
589 #if MESH_DEBUG_DHT
590   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Starting PUT for apps\n");
591 #endif
592   GNUNET_CONTAINER_multihashmap_iterate (applications, &announce_application,
593                                          NULL);
594   announce_applications_task =
595       GNUNET_SCHEDULER_add_delayed (APP_ANNOUNCE_TIME, &announce_applications,
596                                     cls);
597 #if MESH_DEBUG_DHT
598   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Finished PUT for apps\n");
599 #endif
600   return;
601 }
602
603
604 /**
605  * Periodically announce self id in the DHT
606  *
607  * @param cls closure
608  * @param tc task context
609  */
610 static void
611 announce_id (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
612 {
613   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
614   {
615     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
616     return;
617   }
618   /* TODO
619    * - Set data expiration in function of X
620    * - Adapt X to churn
621    */
622 #if MESH_DEBUG_DHT
623   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: DHT_put for ID %s started.\n",
624               GNUNET_i2s (&my_full_id));
625 #endif
626   GNUNET_DHT_put (dht_handle,   /* DHT handle */
627                   &my_full_id.hashPubKey,       /* Key to use */
628                   10U,          /* Replication level */
629                   GNUNET_DHT_RO_RECORD_ROUTE | GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,    /* DHT options */
630                   GNUNET_BLOCK_TYPE_TEST,       /* Block type */
631                   sizeof (my_full_id),  /* Size of the data */
632                   (char *) &my_full_id, /* Data itself */
633                   GNUNET_TIME_absolute_get_forever (),  /* Data expiration */
634                   GNUNET_TIME_UNIT_FOREVER_REL, /* Retry time */
635 #if MESH_DEBUG_DHT
636                   &mesh_debug, "DHT_put for id completed");
637 #else
638                   NULL,         /* Continuation */
639                   NULL);        /* Continuation closure */
640 #endif
641   announce_id_task =
642       GNUNET_SCHEDULER_add_delayed (ID_ANNOUNCE_TIME, &announce_id, cls);
643 }
644
645
646 /**
647  * Function to process paths received for a new peer addition. The recorded
648  * paths form the initial tunnel, which can be optimized later.
649  * Called on each result obtained for the DHT search.
650  *
651  * @param cls closure
652  * @param exp when will this value expire
653  * @param key key of the result
654  * @param type type of the result
655  * @param size number of bytes in data
656  * @param data pointer to the result data
657  */
658 static void
659 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
660                     const GNUNET_HashCode * key,
661                     const struct GNUNET_PeerIdentity *get_path,
662                     unsigned int get_path_length,
663                     const struct GNUNET_PeerIdentity *put_path,
664                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
665                     size_t size, const void *data);
666
667
668 /******************************************************************************/
669 /******************      GENERAL HELPER FUNCTIONS      ************************/
670 /******************************************************************************/
671
672 /**
673  * Check if client has registered with the service and has not disconnected
674  *
675  * @param client the client to check
676  *
677  * @return non-NULL if client exists in the global DLL
678  */
679 static struct MeshClient *
680 client_get (struct GNUNET_SERVER_Client *client)
681 {
682   struct MeshClient *c;
683
684   c = clients;
685   while (NULL != c)
686   {
687     if (c->handle == client)
688       return c;
689     c = c->next;
690   }
691   return NULL;
692 }
693
694
695 /**
696  * Checks if a given client has subscribed to certain message type
697  *
698  * @param message_type Type of message to check
699  * @param c Client to check
700  *
701  * @return GNUNET_YES or GNUNET_NO, depending on subscription status
702  *
703  * TODO inline?
704  */
705 static int
706 client_is_subscribed (uint16_t message_type, struct MeshClient *c)
707 {
708   GNUNET_HashCode hc;
709
710   GNUNET_CRYPTO_hash (&message_type, sizeof (uint16_t), &hc);
711   return GNUNET_CONTAINER_multihashmap_contains (c->types, &hc);
712 }
713
714
715 /**
716  * Allow a client to send more data after transmitting a multicast message
717  * which some neighbor has not yet accepted altough a reasonable time has
718  * passed.
719  *
720  * @param cls Closure (DataDescriptor containing the task identifier)
721  * @param tc Task Context
722  */
723 static void
724 client_allow_send (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
725 {
726   struct MeshDataDescriptor *info = cls;
727
728   if (GNUNET_SCHEDULER_REASON_SHUTDOWN == tc->reason)
729     return;
730 #if MESH_DEBUG
731   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
732               "MESH: CLIENT ALLOW SEND DESPITE %u COPIES PENDING\n",
733               *(info->copies));
734 #endif
735   *(info->timeout_task) = GNUNET_SCHEDULER_NO_TASK;
736   GNUNET_SERVER_receive_done (info->client, GNUNET_OK);
737 }
738
739
740 /**
741  * Search for a tunnel by global ID using full PeerIdentities
742  *
743  * @param oid owner of the tunnel
744  * @param tid global tunnel number
745  *
746  * @return tunnel handler, NULL if doesn't exist
747  */
748 static struct MeshTunnel *
749 tunnel_get (struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid);
750
751
752 /**
753  * Notify a tunnel that a connection has broken that affects at least
754  * some of its peers.
755  *
756  * @param t Tunnel affected.
757  * @param p1 Peer that got disconnected from p2.
758  * @param p2 Peer that got disconnected from p1.
759  *
760  * @return Short ID of the peer disconnected (either p1 or p2).
761  *         0 if the tunnel remained unaffected.
762  */
763 static GNUNET_PEER_Id
764 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
765                                  GNUNET_PEER_Id p2);
766
767
768 /**
769  * Send the message to all clients that have subscribed to its type
770  *
771  * @param msg Pointer to the message itself
772  * @return number of clients this message was sent to
773  */
774 static unsigned int
775 send_subscribed_clients (const struct GNUNET_MessageHeader *msg,
776                          const struct GNUNET_MessageHeader *payload)
777 {
778   struct GNUNET_PeerIdentity *oid;
779   struct MeshClient *c;
780   struct MeshTunnel *t;
781   MESH_TunnelNumber *tid;
782   unsigned int count;
783   uint16_t type;
784   char cbuf[htons (msg->size)];
785
786   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Sending to clients...\n");
787   type = ntohs (payload->type);
788   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: message of type %u\n", type);
789
790   memcpy (cbuf, msg, sizeof (cbuf));
791   switch (htons (msg->type))
792   {
793     struct GNUNET_MESH_Unicast *uc;
794     struct GNUNET_MESH_Multicast *mc;
795     struct GNUNET_MESH_ToOrigin *to;
796
797   case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
798     uc = (struct GNUNET_MESH_Unicast *) cbuf;
799     tid = &uc->tid;
800     oid = &uc->oid;
801     break;
802   case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
803     mc = (struct GNUNET_MESH_Multicast *) cbuf;
804     tid = &mc->tid;
805     oid = &mc->oid;
806     break;
807   case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
808     to = (struct GNUNET_MESH_ToOrigin *) cbuf;
809     tid = &to->tid;
810     oid = &to->oid;
811     break;
812   default:
813     GNUNET_break (0);
814     return 0;
815   }
816   t = tunnel_get (oid, ntohl (*tid));
817   if (NULL == t)
818   {
819     GNUNET_break (0);
820     return 0;
821   }
822   *tid = htonl (t->local_tid);
823   for (count = 0, c = clients; c != NULL; c = c->next)
824   {
825 #if MESH_DEBUG
826     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    client %u\n", c->id);
827 #endif
828     if (client_is_subscribed (type, c))
829     {
830       count++;
831       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      sending\n");
832       GNUNET_SERVER_notification_context_unicast (nc, c->handle,
833                                                   (struct GNUNET_MessageHeader
834                                                    *) cbuf, GNUNET_YES);
835     }
836   }
837   return count;
838 }
839
840
841 /**
842  * Notify the client that owns the tunnel that a peer has connected to it
843  * (the requested path to it has been confirmed).
844  *
845  * @param t Tunnel whose owner to notify
846  * @param id Short id of the peer that has connected
847  */
848 static void
849 send_client_peer_connected (const struct MeshTunnel *t, const GNUNET_PEER_Id id)
850 {
851   struct GNUNET_MESH_PeerControl pc;
852
853   pc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD);
854   pc.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
855   pc.tunnel_id = htonl (t->local_tid);
856   GNUNET_PEER_resolve (id, &pc.peer);
857   GNUNET_SERVER_notification_context_unicast (nc, t->client->handle, &pc.header,
858                                               GNUNET_NO);
859 }
860
861
862 /**
863  * Notify all clients (not depending on registration status) that the incoming
864  * tunnel is no longer valid.
865  *
866  * @param t Tunnel that was destroyed.
867  */
868 static void
869 send_clients_tunnel_destroy (struct MeshTunnel *t)
870 {
871   struct GNUNET_MESH_TunnelMessage msg;
872
873   msg.header.size = htons (sizeof (msg));
874   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
875   msg.tunnel_id = htonl (t->local_tid);
876   GNUNET_SERVER_notification_context_broadcast (nc, &msg.header, GNUNET_NO);
877 }
878
879
880 /**
881  * Function called to notify a client about the socket
882  * being ready to queue more data.  "buf" will be
883  * NULL and "size" zero if the socket was closed for
884  * writing in the meantime.
885  *
886  * @param cls closure
887  * @param size number of bytes available in buf
888  * @param buf where the callee should write the message
889  * @return number of bytes written to buf
890  */
891 static size_t
892 send_core_create_path (void *cls, size_t size, void *buf);
893
894
895 /**
896  * Function called to notify a client about the socket
897  * being ready to queue more data.  "buf" will be
898  * NULL and "size" zero if the socket was closed for
899  * writing in the meantime.
900  *
901  * @param cls closure (data itself)
902  * @param size number of bytes available in buf
903  * @param buf where the callee should write the message
904  *
905  * @return number of bytes written to buf
906  */
907 static size_t
908 send_core_data_multicast (void *cls, size_t size, void *buf);
909
910
911 /**
912  * Decrements the reference counter and frees all resources if needed
913  *
914  * @param dd Data Descriptor used in a multicast message
915  */
916 static void
917 data_descriptor_decrement_multicast (struct MeshDataDescriptor *dd)
918 {
919   if (0 == --(*(dd->copies)))
920   {
921     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Last copy!\n");
922     if (NULL != dd->client)
923     {
924       if (GNUNET_SCHEDULER_NO_TASK != *(dd->timeout_task))
925       {
926         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
927                     "MESH:  cancelling client timeout (%u)...\n",
928                     *(dd->timeout_task));
929         GNUNET_SCHEDULER_cancel (*(dd->timeout_task));
930         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  notifying client...\n");
931         GNUNET_SERVER_receive_done (dd->client, GNUNET_OK);
932       }
933       GNUNET_free (dd->timeout_task);
934     }
935     GNUNET_free (dd->copies);
936     GNUNET_free (dd->data);
937   }
938 }
939
940
941 /**
942  * Cancel a core transmission that was already requested and free all resources
943  * associated to the request.
944  *
945  * @param peer PeeInfo of the peer whose transmission is cancelled.
946  * @param i Position of the transmission to be cancelled.
947  */
948 static void
949 peer_info_cancel_transmission (struct MeshPeerInfo *peer, unsigned int i)
950 {
951   if (NULL != peer->core_transmit[i])
952   {
953     struct MeshDataDescriptor *dd;
954     struct MeshPathInfo *path_info;
955
956 #if MESH_DEBUG
957     {
958       struct GNUNET_PeerIdentity id;
959
960       GNUNET_PEER_resolve (peer->id, &id);
961       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
962                   "MESH:   Cancelling data transmission at %s [%u]\n",
963                   GNUNET_i2s (&id), i);
964       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    message type %u\n",
965                   peer->types[i]);
966     }
967 #endif
968     /* TODO: notify that tranmission has failed */
969     switch (peer->types[i])
970     {
971     case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
972     case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
973     case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
974       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    type payload\n");
975       dd = peer->infos[i];
976       data_descriptor_decrement_multicast (dd);
977       break;
978     case GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE:
979       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    type create path\n");
980       path_info = peer->infos[i];
981       path_destroy (path_info->path);
982       break;
983     default:
984       GNUNET_break (0);
985       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    type unknown!\n");
986     }
987     GNUNET_CORE_notify_transmit_ready_cancel (peer->core_transmit[i]);
988     peer->core_transmit[i] = NULL;
989     GNUNET_free (peer->infos[i]);
990   }
991 }
992
993
994 /**
995  * Get a unused CORE slot to transmit a message to a peer. If all the slots
996  * are used, cancel one and return it's position.
997  *
998  * @param peer PeerInfo of the neighbor we want to transmit to.
999  *
1000  * @return The index of an available slot to transmit to the neighbor.
1001  */
1002 static unsigned int
1003 peer_info_transmit_slot (struct MeshPeerInfo *peer)
1004 {
1005   unsigned int i;
1006
1007   for (i = 0; peer->core_transmit[i]; i++)
1008   {
1009     if (i == (CORE_QUEUE_SIZE - 1))
1010     {
1011       /* All positions are taken! Overwriting! */
1012       GNUNET_break (0);
1013       peer_info_cancel_transmission (peer, 0);
1014       return 0;
1015     }
1016   }
1017   return i;
1018 }
1019
1020
1021 /**
1022  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
1023  * and insert it in the appropiate structures if the peer is not known yet.
1024  *
1025  * @param peer Full identity of the peer.
1026  *
1027  * @return Existing or newly created peer info.
1028  */
1029 static struct MeshPeerInfo *
1030 peer_info_get (const struct GNUNET_PeerIdentity *peer)
1031 {
1032   struct MeshPeerInfo *peer_info;
1033
1034   peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
1035   if (NULL == peer_info)
1036   {
1037     peer_info =
1038         (struct MeshPeerInfo *) GNUNET_malloc (sizeof (struct MeshPeerInfo));
1039     GNUNET_CONTAINER_multihashmap_put (peers, &peer->hashPubKey, peer_info,
1040                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1041     peer_info->id = GNUNET_PEER_intern (peer);
1042   }
1043
1044   return peer_info;
1045 }
1046
1047
1048 /**
1049  * Retrieve the MeshPeerInfo stucture associated with the peer, create one
1050  * and insert it in the appropiate structures if the peer is not known yet.
1051  *
1052  * @param peer Short identity of the peer.
1053  *
1054  * @return Existing or newly created peer info.
1055  */
1056 static struct MeshPeerInfo *
1057 peer_info_get_short (const GNUNET_PEER_Id peer)
1058 {
1059   struct GNUNET_PeerIdentity id;
1060
1061   GNUNET_PEER_resolve (peer, &id);
1062   return peer_info_get (&id);
1063 }
1064
1065
1066 /**
1067  * Iterator to remove the tunnel from the list of tunnels a peer participates
1068  * in.
1069  *
1070  * @param cls Closure (tunnel info)
1071  * @param key GNUNET_PeerIdentity of the peer (unused)
1072  * @param value PeerInfo of the peer
1073  *
1074  * @return always GNUNET_YES, to keep iterating
1075  */
1076 static int
1077 peer_info_delete_tunnel (void *cls, const GNUNET_HashCode * key, void *value)
1078 {
1079   struct MeshTunnel *t = cls;
1080   struct MeshPeerInfo *peer = value;
1081   unsigned int i;
1082
1083   for (i = 0; i < peer->ntunnels; i++)
1084   {
1085     if (0 ==
1086         memcmp (&peer->tunnels[i]->id, &t->id, sizeof (struct MESH_TunnelID)))
1087     {
1088       peer->ntunnels--;
1089       peer->tunnels[i] = peer->tunnels[peer->ntunnels];
1090       peer->tunnels = GNUNET_realloc (peer->tunnels, peer->ntunnels);
1091       return GNUNET_YES;
1092     }
1093   }
1094   return GNUNET_YES;
1095 }
1096
1097
1098 /**
1099   * Core callback to write a
1100   *
1101   * @param cls Closure (MeshDataDescriptor with data in "data" member).
1102   * @param size Number of bytes available in buf.
1103   * @param buf Where the to write the message.
1104   *
1105   * @return number of bytes written to buf
1106   */
1107 static size_t
1108 send_core_data_raw (void *cls, size_t size, void *buf)
1109 {
1110   struct MeshDataDescriptor *info = cls;
1111   struct GNUNET_MessageHeader *msg;
1112   size_t total_size;
1113
1114   GNUNET_assert (NULL != info);
1115   GNUNET_assert (NULL != info->data);
1116   msg = (struct GNUNET_MessageHeader *) info->data;
1117   total_size = ntohs (msg->size);
1118
1119   if (total_size > size)
1120   {
1121     struct GNUNET_PeerIdentity id;
1122
1123     GNUNET_PEER_resolve (info->peer->id, &id);
1124     info->peer->core_transmit[info->handler_n] =
1125         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 100,
1126                                            GNUNET_TIME_UNIT_FOREVER_REL, &id,
1127                                            size, &send_core_data_raw, info);
1128     return 0;
1129   }
1130   info->peer->core_transmit[info->handler_n] = NULL;
1131   memcpy (buf, msg, total_size);
1132   GNUNET_free (info->data);
1133   GNUNET_free (info);
1134   return total_size;
1135 }
1136
1137
1138 /**
1139  * Sends an already built message to a peer, properly registrating
1140  * all used resources.
1141  *
1142  * @param message Message to send. Fucntion makes a copy of it.
1143  * @param peer Short ID of the neighbor whom to send the message.
1144  */
1145 static void
1146 send_message (const struct GNUNET_MessageHeader *message,
1147               const struct GNUNET_PeerIdentity *peer)
1148 {
1149   struct MeshDataDescriptor *info;
1150   struct MeshPeerInfo *neighbor;
1151   struct MeshPeerPath *p;
1152   unsigned int i;
1153   size_t size;
1154
1155 //   GNUNET_TRANSPORT_try_connect();
1156
1157   size = ntohs (message->size);
1158   info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
1159   info->data = GNUNET_malloc (size);
1160   memcpy (info->data, message, size);
1161   neighbor = peer_info_get (peer);
1162   for (p = neighbor->path_head; NULL != p; p = p->next)
1163   {
1164     if (2 == p->length)
1165     {
1166       break;
1167     }
1168   }
1169   if (NULL == p)
1170   {
1171     GNUNET_break (0);
1172     GNUNET_free (info);
1173     return;
1174   }
1175   i = peer_info_transmit_slot (neighbor);
1176   info->handler_n = i;
1177   info->peer = neighbor;
1178   neighbor->types[i] = GNUNET_MESSAGE_TYPE_MESH_UNICAST;
1179   neighbor->infos[i] = info;
1180   neighbor->core_transmit[i] =
1181       GNUNET_CORE_notify_transmit_ready (core_handle, 0, 100,
1182                                          GNUNET_TIME_UNIT_FOREVER_REL, peer,
1183                                          size, &send_core_data_raw, info);
1184
1185 }
1186
1187
1188 /**
1189  * Sends a CREATE PATH message for a path to a peer, properly registrating
1190  * all used resources.
1191  *
1192  * @param peer PeerInfo of the final peer for whom this path is being created.
1193  * @param p Path itself.
1194  * @param t Tunnel for which the path is created.
1195  */
1196 static void
1197 send_create_path (struct MeshPeerInfo *peer, struct MeshPeerPath *p,
1198                   struct MeshTunnel *t)
1199 {
1200   struct GNUNET_PeerIdentity id;
1201   struct MeshPathInfo *path_info;
1202   struct MeshPeerInfo *neighbor;
1203   unsigned int i;
1204
1205   if (NULL == p)
1206   {
1207     p = tree_get_path_to_peer (t->tree, peer->id);
1208     if (NULL == p)
1209     {
1210       GNUNET_break (0);
1211       return;
1212     }
1213   }
1214   for (i = 0; i < p->length; i++)
1215   {
1216     if (p->peers[i] == myid)
1217       break;
1218   }
1219   if (i >= p->length - 1)
1220   {
1221     path_destroy (p);
1222     GNUNET_break (0);
1223     return;
1224   }
1225   GNUNET_PEER_resolve (p->peers[i + 1], &id);
1226
1227   path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
1228   path_info->path = p;
1229   path_info->t = t;
1230   neighbor = peer_info_get (&id);
1231   path_info->peer = neighbor;
1232   path_info->pos = peer_info_transmit_slot (neighbor);
1233   neighbor->types[path_info->pos] = GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE;
1234   neighbor->infos[path_info->pos] = path_info;
1235   neighbor->core_transmit[path_info->pos] = GNUNET_CORE_notify_transmit_ready (core_handle,     /* handle */
1236                                                                                0,       /* cork */
1237                                                                                0,       /* priority */
1238                                                                                GNUNET_TIME_UNIT_FOREVER_REL,    /* timeout */
1239                                                                                &id,     /* target */
1240                                                                                sizeof (struct GNUNET_MESH_ManipulatePath) + (p->length * sizeof (struct GNUNET_PeerIdentity)),  /*size */
1241                                                                                &send_core_create_path,  /* callback */
1242                                                                                path_info);      /* cls */
1243 }
1244
1245
1246 /**
1247  * Sends a DESTROY PATH message to free resources for a path in a tunnel
1248  *
1249  * @param t Tunnel whose path to destroy.
1250  * @param destination Short ID of the peer to whom the path to destroy.
1251  */
1252 static void
1253 send_destroy_path (struct MeshTunnel *t, GNUNET_PEER_Id destination)
1254 {
1255   struct MeshPeerPath *p;
1256   size_t size;
1257
1258   p = tree_get_path_to_peer (t->tree, destination);
1259   if (NULL == p)
1260   {
1261     GNUNET_break (0);
1262     return;
1263   }
1264   size = sizeof (struct GNUNET_MESH_ManipulatePath);
1265   size += p->length * sizeof (struct GNUNET_PeerIdentity);
1266   {
1267     struct GNUNET_MESH_ManipulatePath *msg;
1268     struct GNUNET_PeerIdentity *pi;
1269     char cbuf[size];
1270     unsigned int i;
1271
1272     msg = (struct GNUNET_MESH_ManipulatePath *) cbuf;
1273     msg->header.size = htons (size);
1274     msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY);
1275     msg->tid = htonl (t->id.tid);
1276     pi = (struct GNUNET_PeerIdentity *) &msg[1];
1277     for (i = 0; i < p->length; i++)
1278     {
1279       GNUNET_PEER_resolve (p->peers[i], &pi[i]);
1280     }
1281     send_message (&msg->header, tree_get_first_hop (t->tree, destination));
1282   }
1283   path_destroy (p);
1284 }
1285
1286
1287 /**
1288  * Try to establish a new connection to this peer.
1289  * Use the best path for the given tunnel.
1290  * If the peer doesn't have any path to it yet, try to get one.
1291  * If the peer already has some path, send a CREATE PATH towards it.
1292  *
1293  * @param peer PeerInfo of the peer.
1294  * @param t Tunnel for which to create the path, if possible.
1295  */
1296 static void
1297 peer_info_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t)
1298 {
1299   struct MeshPeerPath *p;
1300   struct MeshPathInfo *path_info;
1301
1302   if (NULL != peer->path_head)
1303   {
1304     p = tree_get_path_to_peer (t->tree, peer->id);
1305     if (NULL == p)
1306     {
1307       GNUNET_break (0);
1308       return;
1309     }
1310
1311     if (p->length > 1)
1312     {
1313       send_create_path (peer, p, t);
1314     }
1315     else
1316     {
1317       path_destroy (p);
1318       send_client_peer_connected (t, myid);
1319     }
1320   }
1321   else if (NULL == peer->dhtget)
1322   {
1323     struct GNUNET_PeerIdentity id;
1324
1325     GNUNET_PEER_resolve (peer->id, &id);
1326     path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
1327     path_info->peer = peer;
1328     path_info->t = t;
1329     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1330                 "MESH:   Starting DHT GET for peer %s\n", GNUNET_i2s (&id));
1331     peer->dhtgetcls = path_info;
1332     peer->dhtget = GNUNET_DHT_get_start (dht_handle,    /* handle */
1333                                          GNUNET_TIME_UNIT_FOREVER_REL,  /* timeout */
1334                                          GNUNET_BLOCK_TYPE_TEST,        /* type */
1335                                          &id.hashPubKey,        /* key to search */
1336                                          4,     /* replication level */
1337                                          GNUNET_DHT_RO_RECORD_ROUTE | GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE, NULL,       /* xquery */
1338                                          0,     /* xquery bits */
1339                                          &dht_get_id_handler, path_info);
1340   }
1341   /* Otherwise, there is no path but the DHT get is already started. */
1342 }
1343
1344
1345 /**
1346  * Task to delay the connection of a peer
1347  *
1348  * @param cls Closure (path info with tunnel and peer to connect).
1349  *            Will be free'd on exection.
1350  * @param tc TaskContext
1351  */
1352 static void
1353 peer_info_connect_task (void *cls,
1354                         const struct GNUNET_SCHEDULER_TaskContext *tc)
1355 {
1356   struct MeshPathInfo *path_info = cls;
1357
1358   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
1359   {
1360     GNUNET_free (cls);
1361     return;
1362   }
1363   peer_info_connect (path_info->peer, path_info->t);
1364   GNUNET_free (cls);
1365 }
1366
1367
1368 /**
1369  * Destroy the peer_info and free any allocated resources linked to it
1370  *
1371  * @param pi The peer_info to destroy.
1372  *
1373  * @return GNUNET_OK on success
1374  */
1375 static int
1376 peer_info_destroy (struct MeshPeerInfo *pi)
1377 {
1378   struct GNUNET_PeerIdentity id;
1379   struct MeshPeerPath *p;
1380   struct MeshPeerPath *nextp;
1381   unsigned int i;
1382
1383   GNUNET_PEER_resolve (pi->id, &id);
1384   GNUNET_PEER_change_rc (pi->id, -1);
1385
1386   if (GNUNET_YES !=
1387       GNUNET_CONTAINER_multihashmap_remove (peers, &id.hashPubKey, pi))
1388   {
1389     GNUNET_break (0);
1390     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1391                 "MESH: removing peer %s, not in hashmap\n", GNUNET_i2s (&id));
1392   }
1393   if (NULL != pi->dhtget)
1394   {
1395     GNUNET_DHT_get_stop (pi->dhtget);
1396     GNUNET_free (pi->dhtgetcls);
1397   }
1398   for (i = 0; i < CORE_QUEUE_SIZE; i++)
1399   {
1400     peer_info_cancel_transmission (pi, i);
1401   }
1402   p = pi->path_head;
1403   while (NULL != p)
1404   {
1405     nextp = p->next;
1406     GNUNET_CONTAINER_DLL_remove (pi->path_head, pi->path_tail, p);
1407     path_destroy (p);
1408     p = nextp;
1409   }
1410   GNUNET_free (pi);
1411   return GNUNET_OK;
1412 }
1413
1414
1415 /**
1416  * Remove all paths that rely on a direct connection between p1 and p2
1417  * from the peer itself and notify all tunnels about it.
1418  *
1419  * @param peer PeerInfo of affected peer.
1420  * @param p1 GNUNET_PEER_Id of one peer.
1421  * @param p2 GNUNET_PEER_Id of another peer that was connected to the first and
1422  *           no longer is.
1423  *
1424  * TODO: optimize (see below)
1425  */
1426 static void
1427 peer_info_remove_path (struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
1428                        GNUNET_PEER_Id p2)
1429 {
1430   struct MeshPeerPath *p;
1431   struct MeshPeerPath *aux;
1432   struct MeshPeerInfo *peer_d;
1433   GNUNET_PEER_Id d;
1434   unsigned int destroyed;
1435   unsigned int best;
1436   unsigned int cost;
1437   unsigned int i;
1438
1439   destroyed = 0;
1440   p = peer->path_head;
1441   while (NULL != p)
1442   {
1443     aux = p->next;
1444     for (i = 0; i < (p->length - 1); i++)
1445     {
1446       if ((p->peers[i] == p1 && p->peers[i + 1] == p2) ||
1447           (p->peers[i] == p2 && p->peers[i + 1] == p1))
1448       {
1449         GNUNET_CONTAINER_DLL_remove (peer->path_head, peer->path_tail, p);
1450         path_destroy (p);
1451         destroyed++;
1452         break;
1453       }
1454     }
1455     p = aux;
1456   }
1457   if (0 == destroyed)
1458     return;
1459
1460   for (i = 0; i < peer->ntunnels; i++)
1461   {
1462     d = tunnel_notify_connection_broken (peer->tunnels[i], p1, p2);
1463     if (0 == d) continue;
1464     /* TODO
1465      * Problem: one or more peers have been deleted from the tunnel tree.
1466      * We don't know who they are to try to add them again.
1467      * We need to try to find a new path for each of the disconnected peers.
1468      * Some of them might already have a path to reach them that does not
1469      * involve p1 and p2. Adding all anew might render in a better tree than
1470      * the trivial immediate fix.
1471      *
1472      * Trivial immiediate fix: try to reconnect to the disconnected node. All
1473      * its children will be reachable trough him.
1474      */
1475     peer_d = peer_info_get_short (d);
1476     best = UINT_MAX;
1477     aux = NULL;
1478     for (p = peer_d->path_head; NULL != p; p = p->next)
1479     {
1480       if ((cost = tree_get_path_cost (peer->tunnels[i]->tree, p)) < best)
1481       {
1482         best = cost;
1483         aux = p;
1484       }
1485     }
1486     if (NULL != aux)
1487     {
1488       /* No callback, as peer will be already disconnected and a connection
1489        * scheduled by tunnel_notify_connection_broken.
1490        */
1491       tree_add_path (peer->tunnels[i]->tree, aux, NULL, NULL);
1492     }
1493     else
1494     {
1495       peer_info_connect (peer_d, peer->tunnels[i]);
1496     }
1497   }
1498 }
1499
1500
1501 /**
1502  * Add the path to the peer and update the path used to reach it in case this
1503  * is the shortest.
1504  *
1505  * @param peer_info Destination peer to add the path to.
1506  * @param path New path to add. Last peer must be the peer in arg 1.
1507  *             Path will be either used of freed if already known.
1508  * @param trusted Do we trust that this path is real?
1509  */
1510 void
1511 peer_info_add_path (struct MeshPeerInfo *peer_info, struct MeshPeerPath *path,
1512                     int trusted)
1513 {
1514   struct MeshPeerPath *aux;
1515   unsigned int l;
1516   unsigned int l2;
1517
1518   if ((NULL == peer_info) || (NULL == path))
1519   {
1520     GNUNET_break (0);
1521     path_destroy (path);
1522     return;
1523   }
1524   if (path->peers[path->length - 1] != peer_info->id)
1525   {
1526     GNUNET_break (0);
1527     path_destroy (path);
1528     return;
1529   }
1530   if (path->length <= 2 && GNUNET_NO == trusted)
1531   {
1532     /* Only allow CORE to tell us about direct paths */
1533     path_destroy (path);
1534     return;
1535   }
1536   GNUNET_assert (peer_info->id == path->peers[path->length - 1]);
1537   for (l = 1; l < path->length; l++)
1538   {
1539     if (path->peers[l] == myid)
1540     {
1541       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shortening path by %u\n", l);
1542       for (l2 = 0; l2 < path->length - l; l2++)
1543       {
1544         path->peers[l2] = path->peers[l + l2];
1545       }
1546       path->length -= l;
1547       l = 1;
1548       path->peers =
1549           GNUNET_realloc (path->peers, path->length * sizeof (GNUNET_PEER_Id));
1550     }
1551   }
1552 #if MESH_DEBUG
1553   {
1554     struct GNUNET_PeerIdentity id;
1555
1556     GNUNET_PEER_resolve (peer_info->id, &id);
1557     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: adding path [%u] to peer %s\n",
1558                 path->length, GNUNET_i2s (&id));
1559   }
1560 #endif
1561   l = path_get_length (path);
1562   if (0 == l)
1563   {
1564     GNUNET_free (path);
1565     return;
1566   }
1567
1568   GNUNET_assert (peer_info->id == path->peers[path->length - 1]);
1569   for (aux = peer_info->path_head; aux != NULL; aux = aux->next)
1570   {
1571     l2 = path_get_length (aux);
1572     if (l2 > l)
1573     {
1574       GNUNET_CONTAINER_DLL_insert_before (peer_info->path_head,
1575                                           peer_info->path_tail, aux, path);
1576       return;
1577     }
1578     else
1579     {
1580       if (l2 == l && memcmp (path->peers, aux->peers, l) == 0)
1581       {
1582         path_destroy (path);
1583         return;
1584       }
1585     }
1586   }
1587   GNUNET_CONTAINER_DLL_insert_tail (peer_info->path_head, peer_info->path_tail,
1588                                     path);
1589   return;
1590 }
1591
1592
1593 /**
1594  * Add the path to the origin peer and update the path used to reach it in case
1595  * this is the shortest.
1596  * The path is given in peer_info -> destination, therefore we turn the path
1597  * upside down first.
1598  *
1599  * @param peer_info Peer to add the path to, being the origin of the path.
1600  * @param path New path to add after being inversed.
1601  * @param trusted Do we trust that this path is real?
1602  */
1603 static void
1604 peer_info_add_path_to_origin (struct MeshPeerInfo *peer_info,
1605                               struct MeshPeerPath *path, int trusted)
1606 {
1607   path_invert (path);
1608   peer_info_add_path (peer_info, path, trusted);
1609 }
1610
1611
1612 /**
1613  * Build a PeerPath from the paths returned from the DHT, reversing the paths
1614  * to obtain a local peer -> destination path and interning the peer ids.
1615  *
1616  * @return Newly allocated and created path
1617  */
1618 static struct MeshPeerPath *
1619 path_build_from_dht (const struct GNUNET_PeerIdentity *get_path,
1620                      unsigned int get_path_length,
1621                      const struct GNUNET_PeerIdentity *put_path,
1622                      unsigned int put_path_length)
1623 {
1624   struct MeshPeerPath *p;
1625   GNUNET_PEER_Id id;
1626   int i;
1627
1628   p = path_new (1);
1629   p->peers[0] = myid;
1630   GNUNET_PEER_change_rc (myid, 1);
1631   i = get_path_length;
1632   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    GET has %d hops.\n", i);
1633   for (i--; i >= 0; i--)
1634   {
1635     id = GNUNET_PEER_intern (&get_path[i]);
1636     if (p->length > 0 && id == p->peers[p->length - 1])
1637     {
1638       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    Optimizing 1 hop out.\n");
1639       GNUNET_PEER_change_rc (id, -1);
1640     }
1641     else
1642     {
1643       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    Adding from GET: %s.\n",
1644                   GNUNET_i2s (&get_path[i]));
1645       p->length++;
1646       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1647       p->peers[p->length - 1] = id;
1648     }
1649   }
1650   i = put_path_length;
1651   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    PUT has %d hops.\n", i);
1652   for (i--; i >= 0; i--)
1653   {
1654     id = GNUNET_PEER_intern (&put_path[i]);
1655     if (id == myid)
1656     {
1657       /* PUT path went through us, so discard the path up until now and start
1658        * from here to get a much shorter (and loop-free) path.
1659        */
1660       path_destroy (p);
1661       p = path_new (0);
1662     }
1663     if (p->length > 0 && id == p->peers[p->length - 1])
1664     {
1665       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    Optimizing 1 hop out.\n");
1666       GNUNET_PEER_change_rc (id, -1);
1667     }
1668     else
1669     {
1670       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    Adding from PUT: %s.\n",
1671                   GNUNET_i2s (&put_path[i]));
1672       p->length++;
1673       p->peers = GNUNET_realloc (p->peers, sizeof (GNUNET_PEER_Id) * p->length);
1674       p->peers[p->length - 1] = id;
1675     }
1676   }
1677 #if MESH_DEBUG
1678   if (get_path_length > 0)
1679     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    (first of GET: %s)\n",
1680                 GNUNET_i2s (&get_path[0]));
1681   if (put_path_length > 0)
1682     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    (first of PUT: %s)\n",
1683                 GNUNET_i2s (&put_path[0]));
1684   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    In total: %d hops\n",
1685               p->length);
1686   for (i = 0; i < p->length; i++)
1687   {
1688     struct GNUNET_PeerIdentity peer_id;
1689
1690     GNUNET_PEER_resolve (p->peers[i], &peer_id);
1691     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:        %u: %s\n", p->peers[i],
1692                 GNUNET_i2s (&peer_id));
1693   }
1694 #endif
1695   return p;
1696 }
1697
1698
1699 /**
1700  * Send keepalive packets for a peer
1701  *
1702  * @param cls Closure (tunnel for which to send the keepalive).
1703  * @param tc Notification context.
1704  *
1705  * TODO: implement explicit multicast keepalive?
1706  */
1707 static void
1708 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1709
1710
1711 /**
1712  * Search for a tunnel among the incoming tunnels
1713  *
1714  * @param tid the local id of the tunnel
1715  *
1716  * @return tunnel handler, NULL if doesn't exist
1717  */
1718 static struct MeshTunnel *
1719 tunnel_get_incoming (MESH_TunnelNumber tid)
1720 {
1721   GNUNET_HashCode hash;
1722
1723   GNUNET_assert (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV);
1724   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
1725   return GNUNET_CONTAINER_multihashmap_get (incoming_tunnels, &hash);
1726 }
1727
1728
1729 /**
1730  * Search for a tunnel among the tunnels for a client
1731  *
1732  * @param c the client whose tunnels to search in
1733  * @param tid the local id of the tunnel
1734  *
1735  * @return tunnel handler, NULL if doesn't exist
1736  */
1737 static struct MeshTunnel *
1738 tunnel_get_by_local_id (struct MeshClient *c, MESH_TunnelNumber tid)
1739 {
1740   if (tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1741   {
1742     return tunnel_get_incoming (tid);
1743   }
1744   else
1745   {
1746     GNUNET_HashCode hash;
1747
1748     GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
1749     return GNUNET_CONTAINER_multihashmap_get (c->tunnels, &hash);
1750   }
1751 }
1752
1753
1754 /**
1755  * Search for a tunnel by global ID using PEER_ID
1756  *
1757  * @param pi owner of the tunnel
1758  * @param tid global tunnel number
1759  *
1760  * @return tunnel handler, NULL if doesn't exist
1761  */
1762 static struct MeshTunnel *
1763 tunnel_get_by_pi (GNUNET_PEER_Id pi, MESH_TunnelNumber tid)
1764 {
1765   struct MESH_TunnelID id;
1766   GNUNET_HashCode hash;
1767
1768   id.oid = pi;
1769   id.tid = tid;
1770
1771   GNUNET_CRYPTO_hash (&id, sizeof (struct MESH_TunnelID), &hash);
1772   return GNUNET_CONTAINER_multihashmap_get (tunnels, &hash);
1773 }
1774
1775
1776 /**
1777  * Search for a tunnel by global ID using full PeerIdentities
1778  *
1779  * @param oid owner of the tunnel
1780  * @param tid global tunnel number
1781  *
1782  * @return tunnel handler, NULL if doesn't exist
1783  */
1784 static struct MeshTunnel *
1785 tunnel_get (struct GNUNET_PeerIdentity *oid, MESH_TunnelNumber tid)
1786 {
1787   return tunnel_get_by_pi (GNUNET_PEER_search (oid), tid);
1788 }
1789
1790
1791 /**
1792  * Callback used to notify a client owner of a tunnel that a peer has
1793  * disconnected, most likely because of a path change.
1794  *
1795  * @param cls Closure (tunnel this notification is about).
1796  * @param peer_id Short ID of disconnected peer.
1797  */
1798 void
1799 notify_peer_disconnected (void *cls, GNUNET_PEER_Id peer_id)
1800 {
1801   struct MeshTunnel *t = cls;
1802   struct MeshPeerInfo *peer;
1803   struct MeshPathInfo *path_info;
1804
1805   if (NULL != t->client && NULL != nc)
1806   {
1807     struct GNUNET_MESH_PeerControl msg;
1808
1809     msg.header.size = htons (sizeof (msg));
1810     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
1811     msg.tunnel_id = htonl (t->local_tid);
1812     GNUNET_PEER_resolve (peer_id, &msg.peer);
1813     GNUNET_SERVER_notification_context_unicast (nc, t->client->handle,
1814                                                 &msg.header, GNUNET_NO);
1815   }
1816   peer = peer_info_get_short (peer_id);
1817   path_info = GNUNET_malloc (sizeof (struct MeshPathInfo));
1818   path_info->peer = peer;
1819   path_info->t = t;
1820   GNUNET_SCHEDULER_add_now (&peer_info_connect_task, path_info);
1821 }
1822
1823
1824 /**
1825  * Add a peer to a tunnel, accomodating paths accordingly and initializing all
1826  * needed rescources.
1827  * If peer already exists, reevaluate shortest path and change if different.
1828  *
1829  * @param t Tunnel we want to add a new peer to
1830  * @param peer PeerInfo of the peer being added
1831  *
1832  */
1833 static void
1834 tunnel_add_peer (struct MeshTunnel *t, struct MeshPeerInfo *peer)
1835 {
1836   struct GNUNET_PeerIdentity id;
1837   struct MeshPeerPath *best_p;
1838   struct MeshPeerPath *p;
1839   unsigned int best_cost;
1840   unsigned int cost;
1841
1842   GNUNET_PEER_resolve (peer->id, &id);
1843   if (GNUNET_NO ==
1844       GNUNET_CONTAINER_multihashmap_contains (t->peers, &id.hashPubKey))
1845   {
1846     t->peers_total++;
1847     GNUNET_array_append (peer->tunnels, peer->ntunnels, t);
1848     GNUNET_assert (GNUNET_OK ==
1849                    GNUNET_CONTAINER_multihashmap_put (t->peers, &id.hashPubKey,
1850                                                       peer,
1851                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
1852   }
1853
1854   if (NULL != (p = peer->path_head))
1855   {
1856     best_p = p;
1857     best_cost = tree_get_path_cost (t->tree, p);
1858     while (NULL != p)
1859     {
1860       if ((cost = tree_get_path_cost (t->tree, p)) < best_cost)
1861       {
1862         best_cost = cost;
1863         best_p = p;
1864       }
1865       p = p->next;
1866     }
1867     tree_add_path (t->tree, best_p, &notify_peer_disconnected, t);
1868     if (GNUNET_SCHEDULER_NO_TASK == t->path_refresh_task)
1869       t->path_refresh_task =
1870           GNUNET_SCHEDULER_add_delayed (REFRESH_PATH_TIME, &path_refresh, t);
1871   }
1872   else
1873   {
1874     /* Start a DHT get */
1875     peer_info_connect (peer, t);
1876   }
1877 }
1878
1879 /**
1880  * Add a path to a tunnel which we don't own, just to remember the next hop.
1881  * If destination node was already in the tunnel, the first hop information
1882  * will be replaced with the new path.
1883  *
1884  * @param t Tunnel we want to add a new peer to
1885  * @param p Path to add
1886  * @param own_pos Position of local node in path.
1887  *
1888  */
1889 static void
1890 tunnel_add_path (struct MeshTunnel *t, struct MeshPeerPath *p,
1891                  unsigned int own_pos)
1892 {
1893   struct GNUNET_PeerIdentity id;
1894
1895   GNUNET_assert (0 != own_pos);
1896   tree_add_path (t->tree, p, NULL, NULL);
1897   if (own_pos < p->length - 1)
1898   {
1899     GNUNET_PEER_resolve (p->peers[own_pos + 1], &id);
1900     tree_update_first_hops (t->tree, myid, &id);
1901   }
1902 }
1903
1904
1905 /**
1906  * Notifies a tunnel that a connection has broken that affects at least
1907  * some of its peers. Sends a notification towards the root of the tree.
1908  * In case the peer is the owner of the tree, notifies the client that owns
1909  * the tunnel and tries to reconnect.
1910  *
1911  * @param t Tunnel affected.
1912  * @param p1 Peer that got disconnected from p2.
1913  * @param p2 Peer that got disconnected from p1.
1914  *
1915  * @return Short ID of the peer disconnected (either p1 or p2).
1916  *         0 if the tunnel remained unaffected.
1917  */
1918 static GNUNET_PEER_Id
1919 tunnel_notify_connection_broken (struct MeshTunnel *t, GNUNET_PEER_Id p1,
1920                                  GNUNET_PEER_Id p2)
1921 {
1922   GNUNET_PEER_Id pid;
1923
1924   pid =
1925       tree_notify_connection_broken (t->tree, p1, p2, &notify_peer_disconnected,
1926                                      t);
1927   if (myid != p1 && myid != p2)
1928   {
1929     return pid;
1930   }
1931   if (pid != myid)
1932   {
1933     if (tree_get_predecessor (t->tree) != 0)
1934     {
1935       /* We are the peer still connected, notify owner of the disconnection. */
1936       struct GNUNET_MESH_PathBroken msg;
1937       struct GNUNET_PeerIdentity neighbor;
1938
1939       msg.header.size = htons (sizeof (msg));
1940       msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN);
1941       GNUNET_PEER_resolve (t->id.oid, &msg.oid);
1942       msg.tid = htonl (t->id.tid);
1943       msg.peer1 = my_full_id;
1944       GNUNET_PEER_resolve (pid, &msg.peer2);
1945       GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &neighbor);
1946       send_message (&msg.header, &neighbor);
1947     }
1948   }
1949   return pid;
1950 }
1951
1952
1953 struct MeshMulticastData
1954 {
1955   struct MeshTunnel *t;
1956
1957   GNUNET_SCHEDULER_TaskIdentifier *task;
1958
1959   unsigned int *reference_counter;
1960
1961   size_t data_len;
1962
1963   void *data;
1964 };
1965
1966
1967 /**
1968  * Send a multicast packet to a neighbor.
1969  */
1970 static void
1971 tunnel_send_multicast_iterator (void *cls, GNUNET_PEER_Id neighbor_id)
1972 {
1973   struct MeshMulticastData *mdata = cls;
1974   struct MeshDataDescriptor *info;
1975   struct GNUNET_PeerIdentity neighbor;
1976   unsigned int i;
1977
1978   info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
1979
1980   info->data = mdata->data;
1981   info->size = mdata->data_len;
1982   info->copies = mdata->reference_counter;
1983   (*(mdata->reference_counter))++;
1984
1985   if (NULL != mdata->t->client)
1986   {
1987     info->client = mdata->t->client->handle;
1988     info->timeout_task = mdata->task;
1989   }
1990   info->destination = neighbor_id;
1991   GNUNET_PEER_resolve (neighbor_id, &neighbor);
1992 #if MESH_DEBUG
1993   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    sending to %s...\n",
1994               GNUNET_i2s (&neighbor));
1995 #endif
1996   info->peer = peer_info_get (&neighbor);
1997   GNUNET_assert (NULL != info->peer);
1998   i = peer_info_transmit_slot (info->peer);
1999   info->handler_n = i;
2000   info->peer->infos[i] = info;
2001   info->peer->types[i] = GNUNET_MESSAGE_TYPE_MESH_MULTICAST;
2002   info->peer->core_transmit[i] =
2003       GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2004                                          GNUNET_TIME_UNIT_FOREVER_REL,
2005                                          &neighbor, info->size,
2006                                          &send_core_data_multicast, info);
2007 }
2008
2009 /**
2010  * Send a message in a tunnel in multicast, sending a copy to each child node
2011  * down the local one in the tunnel tree.
2012  *
2013  * @param t Tunnel in which to send the data.
2014  * @param msg Message to be sent
2015  */
2016 static void
2017 tunnel_send_multicast (struct MeshTunnel *t,
2018                        const struct GNUNET_MessageHeader *msg)
2019 {
2020   struct MeshMulticastData *mdata;
2021
2022 #if MESH_DEBUG
2023   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2024               "MESH:  sending a multicast packet...\n");
2025 #endif
2026   mdata = GNUNET_malloc (sizeof (struct MeshMulticastData));
2027   mdata->data_len = ntohs (msg->size);
2028   mdata->reference_counter = GNUNET_malloc (sizeof (unsigned int));
2029   mdata->t = t;
2030   mdata->data = GNUNET_malloc (mdata->data_len);
2031   memcpy (mdata->data, msg, mdata->data_len);
2032   if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
2033   {
2034     struct GNUNET_MESH_Multicast *mcast;
2035
2036     mcast = (struct GNUNET_MESH_Multicast *) mdata->data;
2037     mcast->ttl = htonl (ntohl (mcast->ttl) - 1);
2038 #if MESH_DEBUG
2039     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2040                 "MESH:   data packet, ttl: %u\n",
2041                 ntohl (mcast->ttl));
2042   }
2043   else
2044   {
2045     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2046                 "MESH:   not a data packet, no ttl\n");
2047 #endif
2048   }
2049   if (NULL != t->client)
2050   {
2051     mdata->task = GNUNET_malloc (sizeof (GNUNET_SCHEDULER_TaskIdentifier));
2052     *(mdata->task) =
2053         GNUNET_SCHEDULER_add_delayed (UNACKNOWLEDGED_WAIT, &client_allow_send,
2054                                       t->client->handle);
2055   }
2056
2057   tree_iterate_children (t->tree, &tunnel_send_multicast_iterator, mdata);
2058   if (*(mdata->reference_counter) == 0)
2059   {
2060     GNUNET_free (mdata->data);
2061     GNUNET_free (mdata->reference_counter);
2062     if (NULL != mdata->task)
2063     {
2064       GNUNET_free (mdata->task);
2065     }
2066   }
2067   GNUNET_free (mdata);
2068 #if MESH_DEBUG
2069   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2070               "MESH:  sending a multicast packet done\n");
2071 #endif
2072   return;
2073 }
2074
2075
2076 /**
2077  * Send a message to all peers in this tunnel that the tunnel is no longer
2078  * valid.
2079  *
2080  * @param t The tunnel whose peers to notify.
2081  */
2082 static void
2083 tunnel_send_destroy (struct MeshTunnel *t)
2084 {
2085   struct GNUNET_MESH_TunnelDestroy msg;
2086
2087   msg.header.size = htons (sizeof (msg));
2088   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY);
2089   GNUNET_PEER_resolve (t->id.oid, &msg.oid);
2090   msg.tid = htonl (t->id.tid);
2091   tunnel_send_multicast (t, &msg.header);
2092 }
2093
2094
2095
2096 /**
2097  * Destroy the tunnel and free any allocated resources linked to it
2098  *
2099  * @param t the tunnel to destroy
2100  *
2101  * @return GNUNET_OK on success
2102  */
2103 static int
2104 tunnel_destroy (struct MeshTunnel *t)
2105 {
2106   struct MeshClient *c;
2107   struct MeshQueue *q;
2108   struct MeshQueue *qn;
2109   GNUNET_HashCode hash;
2110   int r;
2111
2112   if (NULL == t)
2113     return GNUNET_OK;
2114
2115   c = t->client;
2116 #if MESH_DEBUG
2117   {
2118     struct GNUNET_PeerIdentity id;
2119
2120     GNUNET_PEER_resolve (t->id.oid, &id);
2121     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: destroying tunnel %s [%x]\n",
2122                 GNUNET_i2s (&id), t->id.tid);
2123     if (NULL != c)
2124       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
2125   }
2126 #endif
2127
2128   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2129   if (GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (tunnels, &hash, t))
2130   {
2131     r = GNUNET_SYSERR;
2132   }
2133
2134   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
2135   if (NULL != c &&
2136       GNUNET_YES != GNUNET_CONTAINER_multihashmap_remove (c->tunnels, &hash, t))
2137   {
2138     r = GNUNET_SYSERR;
2139   }
2140   if (t->local_tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
2141   {
2142     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
2143     GNUNET_break (GNUNET_YES ==
2144                   GNUNET_CONTAINER_multihashmap_remove (incoming_tunnels, &hash,
2145                                                         t));
2146   }
2147   if (NULL != t->peers)
2148   {
2149     GNUNET_CONTAINER_multihashmap_iterate (t->peers, &peer_info_delete_tunnel,
2150                                            t);
2151     GNUNET_CONTAINER_multihashmap_destroy (t->peers);
2152   }
2153   q = t->queue_head;
2154   while (NULL != q)
2155   {
2156     if (NULL != q->data)
2157       GNUNET_free (q->data);
2158     qn = q->next;
2159     GNUNET_free (q);
2160     q = qn;
2161     /* TODO cancel core transmit ready in case it was active */
2162   }
2163   tree_destroy (t->tree);
2164   if (NULL != t->dht_get_type)
2165     GNUNET_DHT_get_stop (t->dht_get_type);
2166   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
2167     GNUNET_SCHEDULER_cancel (t->timeout_task);
2168   if (GNUNET_SCHEDULER_NO_TASK != t->path_refresh_task)
2169     GNUNET_SCHEDULER_cancel (t->path_refresh_task);
2170   GNUNET_free (t);
2171   return r;
2172 }
2173
2174
2175 /**
2176  * Removes an explicit path from a tunnel, freeing all intermediate nodes
2177  * that are no longer needed, as well as nodes of no longer reachable peers.
2178  * The tunnel itself is also destoyed if results in a remote empty tunnel.
2179  *
2180  * @param t Tunnel from which to remove the path.
2181  * @param p Peer which should be removed.
2182  */
2183 static void
2184 tunnel_delete_peer (struct MeshTunnel *t, GNUNET_PEER_Id peer)
2185 {
2186   if (GNUNET_NO == tree_del_peer (t->tree, peer, NULL, NULL))
2187     tunnel_destroy (t);
2188 }
2189
2190
2191 /**
2192  * tunnel_destroy_iterator: iterator for deleting each tunnel that belongs to a
2193  * client when the client disconnects.
2194  *
2195  * @param cls closure (client that is disconnecting)
2196  * @param key the hash of the local tunnel id (used to access the hashmap)
2197  * @param value the value stored at the key (tunnel to destroy)
2198  *
2199  * @return GNUNET_OK on success
2200  */
2201 static int
2202 tunnel_destroy_iterator (void *cls, const GNUNET_HashCode * key, void *value)
2203 {
2204   struct MeshTunnel *t = value;
2205   int r;
2206
2207   r = tunnel_destroy (t);
2208   return r;
2209 }
2210
2211
2212 /**
2213  * Timeout function, destroys tunnel if called
2214  *
2215  * @param cls Closure (tunnel to destroy).
2216  * @param tc TaskContext
2217  */
2218 static void
2219 tunnel_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2220 {
2221   struct MeshTunnel *t = cls;
2222
2223   if (GNUNET_SCHEDULER_REASON_SHUTDOWN == tc->reason)
2224     return;
2225   t->timeout_task = GNUNET_SCHEDULER_NO_TASK;
2226   tunnel_destroy (t);
2227 }
2228
2229 /**
2230  * Resets the tunnel timeout. Starts it if no timeout was running.
2231  *
2232  * @param t Tunnel whose timeout to reset.
2233  */
2234 static void
2235 tunnel_reset_timeout (struct MeshTunnel *t)
2236 {
2237   if (GNUNET_SCHEDULER_NO_TASK != t->timeout_task)
2238     GNUNET_SCHEDULER_cancel (t->timeout_task);
2239   t->timeout_task =
2240       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
2241                                     (REFRESH_PATH_TIME, 4), &tunnel_timeout, t);
2242 }
2243
2244
2245 /******************************************************************************/
2246 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
2247 /******************************************************************************/
2248
2249 /**
2250  * Function called to notify a client about the socket
2251  * being ready to queue more data.  "buf" will be
2252  * NULL and "size" zero if the socket was closed for
2253  * writing in the meantime.
2254  *
2255  * @param cls closure
2256  * @param size number of bytes available in buf
2257  * @param buf where the callee should write the message
2258  * @return number of bytes written to buf
2259  */
2260 static size_t
2261 send_core_create_path (void *cls, size_t size, void *buf)
2262 {
2263   struct MeshPathInfo *info = cls;
2264   struct GNUNET_MESH_ManipulatePath *msg;
2265   struct GNUNET_PeerIdentity *peer_ptr;
2266   struct MeshPeerInfo *peer = info->peer;
2267   struct MeshTunnel *t = info->t;
2268   struct MeshPeerPath *p = info->path;
2269   size_t size_needed;
2270   int i;
2271
2272   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: CREATE PATH sending...\n");
2273   size_needed =
2274       sizeof (struct GNUNET_MESH_ManipulatePath) +
2275       p->length * sizeof (struct GNUNET_PeerIdentity);
2276
2277   if (size < size_needed || NULL == buf)
2278   {
2279     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: create path retransmit!\n");
2280     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   buf:  %p\n", buf);
2281     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   size: (%u/%u)\n", size,
2282                 size_needed);
2283     info->peer->core_transmit[info->pos] =
2284         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2285                                            GNUNET_TIME_UNIT_FOREVER_REL,
2286                                            tree_get_first_hop (t->tree,
2287                                                                peer->id),
2288                                            size_needed, &send_core_create_path,
2289                                            info);
2290     return 0;
2291   }
2292   info->peer->core_transmit[info->pos] = NULL;
2293 #if MESH_DEBUG
2294   {
2295     struct GNUNET_PeerIdentity id;
2296
2297     GNUNET_PEER_resolve (peer->id, &id);
2298     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2299                 "MESH:   setting core_transmit %s [%u] to NULL\n",
2300                 GNUNET_i2s (&id), info->pos);
2301   }
2302 #endif
2303   msg = (struct GNUNET_MESH_ManipulatePath *) buf;
2304   msg->header.size = htons (size_needed);
2305   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE);
2306   msg->tid = ntohl (t->id.tid);
2307
2308   peer_ptr = (struct GNUNET_PeerIdentity *) &msg[1];
2309   for (i = 0; i < p->length; i++)
2310   {
2311     GNUNET_PEER_resolve (p->peers[i], peer_ptr++);
2312   }
2313
2314   path_destroy (p);
2315   GNUNET_free (info);
2316
2317   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2318               "MESH: CREATE PATH (%u bytes long) sent!\n", size_needed);
2319   return size_needed;
2320 }
2321
2322
2323 /**
2324  * Function called to notify a client about the socket
2325  * being ready to queue more data.  "buf" will be
2326  * NULL and "size" zero if the socket was closed for
2327  * writing in the meantime.
2328  *
2329  * @param cls closure (data itself)
2330  * @param size number of bytes available in buf
2331  * @param buf where the callee should write the message
2332  *
2333  * @return number of bytes written to buf
2334  */
2335 static size_t
2336 send_core_data_multicast (void *cls, size_t size, void *buf)
2337 {
2338   struct MeshDataDescriptor *info = cls;
2339   size_t total_size;
2340
2341   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Multicast callback.\n");
2342   GNUNET_assert (NULL != info);
2343   GNUNET_assert (NULL != info->peer);
2344   total_size = info->size;
2345   GNUNET_assert (total_size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
2346
2347   if (total_size > size)
2348   {
2349     /* Retry */
2350     struct GNUNET_PeerIdentity id;
2351
2352     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2353                 "MESH: Multicast: retransmitting... (%u/%u)\n", size,
2354                 total_size);
2355     GNUNET_PEER_resolve (info->peer->id, &id);
2356     info->peer->core_transmit[info->handler_n] =
2357         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 0,
2358                                            GNUNET_TIME_UNIT_FOREVER_REL, &id,
2359                                            total_size,
2360                                            &send_core_data_multicast, info);
2361     return 0;
2362   }
2363   info->peer->core_transmit[info->handler_n] = NULL;
2364   info->peer->infos[info->handler_n] = NULL;
2365   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  copying data...\n");
2366   memcpy (buf, info->data, total_size);
2367 #if MESH_DEBUG
2368   {
2369     struct GNUNET_MESH_Multicast *mc;
2370     struct GNUNET_MessageHeader *mh;
2371
2372     mh = buf;
2373     if (ntohs (mh->type) == GNUNET_MESSAGE_TYPE_MESH_MULTICAST)
2374     {
2375       mc = (struct GNUNET_MESH_Multicast *) mh;
2376       mh = (struct GNUNET_MessageHeader *) &mc[1];
2377       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2378                   "MESH:  multicast, payload type %u\n", ntohs (mh->type));
2379       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2380                   "MESH:  multicast, payload size %u\n", ntohs (mh->size));
2381     }
2382     else
2383     {
2384       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  type %u\n",
2385                   ntohs (mh->type));
2386     }
2387   }
2388 #endif
2389   data_descriptor_decrement_multicast (info);
2390   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: freeing info...\n");
2391   GNUNET_free (info);
2392   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: return %u\n", total_size);
2393   return total_size;
2394 }
2395
2396
2397 /**
2398  * Function called to notify a client about the socket
2399  * being ready to queue more data.  "buf" will be
2400  * NULL and "size" zero if the socket was closed for
2401  * writing in the meantime.
2402  *
2403  * @param cls closure (MeshDataDescriptor)
2404  * @param size number of bytes available in buf
2405  * @param buf where the callee should write the message
2406  * @return number of bytes written to buf
2407  */
2408 static size_t
2409 send_core_path_ack (void *cls, size_t size, void *buf)
2410 {
2411   struct MeshDataDescriptor *info = cls;
2412   struct GNUNET_MESH_PathACK *msg = buf;
2413
2414   GNUNET_assert (NULL != info);
2415   if (info->peer)
2416   {
2417     info->peer->core_transmit[info->handler_n] = NULL;
2418   }
2419   if (sizeof (struct GNUNET_MESH_PathACK) > size)
2420   {
2421     GNUNET_break (0);
2422     return 0;
2423   }
2424   msg->header.size = htons (sizeof (struct GNUNET_MESH_PathACK));
2425   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_ACK);
2426   GNUNET_PEER_resolve (info->origin->oid, &msg->oid);
2427   msg->tid = htonl (info->origin->tid);
2428   msg->peer_id = my_full_id;
2429   GNUNET_free (info);
2430   /* TODO add signature */
2431
2432   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: PATH ACK sent!\n");
2433   return sizeof (struct GNUNET_MESH_PathACK);
2434 }
2435
2436
2437 /******************************************************************************/
2438 /********************      MESH NETWORK HANDLERS     **************************/
2439 /******************************************************************************/
2440
2441
2442 /**
2443  * Core handler for path creation
2444  *
2445  * @param cls closure
2446  * @param message message
2447  * @param peer peer identity this notification is about
2448  * @param atsi performance data
2449  * @param atsi_count number of records in 'atsi'
2450  *
2451  * @return GNUNET_OK to keep the connection open,
2452  *         GNUNET_SYSERR to close it (signal serious error)
2453  */
2454 static int
2455 handle_mesh_path_create (void *cls, const struct GNUNET_PeerIdentity *peer,
2456                          const struct GNUNET_MessageHeader *message,
2457                          const struct GNUNET_ATS_Information *atsi,
2458                          unsigned int atsi_count)
2459 {
2460   unsigned int own_pos;
2461   uint16_t size;
2462   uint16_t i;
2463   MESH_TunnelNumber tid;
2464   struct GNUNET_MESH_ManipulatePath *msg;
2465   struct GNUNET_PeerIdentity *pi;
2466   GNUNET_HashCode hash;
2467   struct MeshPeerPath *path;
2468   struct MeshPeerInfo *dest_peer_info;
2469   struct MeshPeerInfo *orig_peer_info;
2470   struct MeshTunnel *t;
2471
2472   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2473               "MESH: Received a path create msg [%s]\n",
2474               GNUNET_i2s (&my_full_id));
2475   size = ntohs (message->size);
2476   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
2477   {
2478     GNUNET_break_op (0);
2479     return GNUNET_OK;
2480   }
2481
2482   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
2483   if (size % sizeof (struct GNUNET_PeerIdentity))
2484   {
2485     GNUNET_break_op (0);
2486     return GNUNET_OK;
2487   }
2488   size /= sizeof (struct GNUNET_PeerIdentity);
2489   if (size < 2)
2490   {
2491     GNUNET_break_op (0);
2492     return GNUNET_OK;
2493   }
2494   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:     path has %u hops.\n", size);
2495   msg = (struct GNUNET_MESH_ManipulatePath *) message;
2496
2497   tid = ntohl (msg->tid);
2498   pi = (struct GNUNET_PeerIdentity *) &msg[1];
2499   t = tunnel_get (pi, tid);
2500   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2501               "MESH:     path is for tunnel %s [%X].\n", GNUNET_i2s (pi), tid);
2502   if (NULL == t)
2503   {
2504     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating tunnel\n");
2505     t = GNUNET_malloc (sizeof (struct MeshTunnel));
2506     t->id.oid = GNUNET_PEER_intern (pi);
2507     t->id.tid = tid;
2508     while (NULL != tunnel_get_incoming (next_local_tid))
2509       next_local_tid = (next_local_tid + 1) | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
2510     t->local_tid = next_local_tid++;
2511     next_local_tid = next_local_tid | GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
2512     t->tree = tree_new (t->id.oid);
2513
2514     GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
2515     if (GNUNET_OK !=
2516         GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
2517                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2518     {
2519       tunnel_destroy (t);
2520       GNUNET_break (0);
2521       return GNUNET_OK;
2522     }
2523     tunnel_reset_timeout (t);
2524     GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
2525     if (GNUNET_OK !=
2526         GNUNET_CONTAINER_multihashmap_put (incoming_tunnels, &hash, t,
2527                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
2528     {
2529       tunnel_destroy (t);
2530       GNUNET_break (0);
2531       return GNUNET_OK;
2532     }
2533   }
2534   dest_peer_info =
2535       GNUNET_CONTAINER_multihashmap_get (peers, &pi[size - 1].hashPubKey);
2536   if (NULL == dest_peer_info)
2537   {
2538     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2539                 "MESH:   Creating PeerInfo for destination.\n");
2540     dest_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
2541     dest_peer_info->id = GNUNET_PEER_intern (&pi[size - 1]);
2542     GNUNET_CONTAINER_multihashmap_put (peers, &pi[size - 1].hashPubKey,
2543                                        dest_peer_info,
2544                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2545   }
2546   orig_peer_info = GNUNET_CONTAINER_multihashmap_get (peers, &pi->hashPubKey);
2547   if (NULL == orig_peer_info)
2548   {
2549     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2550                 "MESH:   Creating PeerInfo for origin.\n");
2551     orig_peer_info = GNUNET_malloc (sizeof (struct MeshPeerInfo));
2552     orig_peer_info->id = GNUNET_PEER_intern (pi);
2553     GNUNET_CONTAINER_multihashmap_put (peers, &pi->hashPubKey, orig_peer_info,
2554                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
2555   }
2556   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating path...\n");
2557   path = path_new (size);
2558   own_pos = 0;
2559   for (i = 0; i < size; i++)
2560   {
2561     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   ... adding %s\n",
2562                 GNUNET_i2s (&pi[i]));
2563     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
2564     if (path->peers[i] == myid)
2565       own_pos = i;
2566   }
2567   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Own position: %u\n", own_pos);
2568   if (own_pos == 0)
2569   {
2570     /* cannot be self, must be 'not found' */
2571     /* create path: self not found in path through self */
2572     GNUNET_break_op (0);
2573     path_destroy (path);
2574     /* FIXME error. destroy tunnel? leave for timeout? */
2575     return 0;
2576   }
2577   tunnel_add_path (t, path, own_pos);
2578   if (own_pos == size - 1)
2579   {
2580     /* It is for us! Send ack. */
2581     struct MeshDataDescriptor *info;
2582     unsigned int j;
2583
2584     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   It's for us!\n");
2585     peer_info_add_path_to_origin (orig_peer_info, path, GNUNET_NO);
2586     if (NULL == t->peers)
2587     {
2588       /* New tunnel! Notify clients! */
2589       struct GNUNET_MESH_TunnelNotification cmsg;
2590
2591       cmsg.header.size = htons (sizeof (cmsg));
2592       cmsg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
2593       GNUNET_PEER_resolve (t->id.oid, &cmsg.peer);
2594       cmsg.tunnel_id = htonl (t->local_tid);
2595       GNUNET_SERVER_notification_context_broadcast (nc, &cmsg.header,
2596                                                     GNUNET_NO);
2597
2598       t->peers = GNUNET_CONTAINER_multihashmap_create (4);
2599     }
2600     GNUNET_break (GNUNET_OK ==
2601                   GNUNET_CONTAINER_multihashmap_put (t->peers,
2602                                                      &my_full_id.hashPubKey,
2603                                                      peer_info_get
2604                                                      (&my_full_id),
2605                                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE));
2606     /* FIXME use send_message */
2607     info = GNUNET_malloc (sizeof (struct MeshDataDescriptor));
2608     info->origin = &t->id;
2609     info->peer = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
2610     GNUNET_assert (NULL != info->peer);
2611     j = peer_info_transmit_slot (info->peer);
2612     info->handler_n = j;
2613     info->peer->types[j] = GNUNET_MESSAGE_TYPE_MESH_PATH_ACK;
2614     info->peer->infos[j] = info;
2615     info->peer->core_transmit[j] =
2616         GNUNET_CORE_notify_transmit_ready (core_handle, 0, 100,
2617                                            GNUNET_TIME_UNIT_FOREVER_REL, peer,
2618                                            sizeof (struct GNUNET_MESH_PathACK),
2619                                            &send_core_path_ack, info);
2620   }
2621   else
2622   {
2623     struct MeshPeerPath *path2;
2624
2625     /* It's for somebody else! Retransmit. */
2626     path2 = path_duplicate (path);
2627     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Retransmitting.\n");
2628     peer_info_add_path (dest_peer_info, path2, GNUNET_NO);
2629     path2 = path_duplicate (path);
2630     peer_info_add_path_to_origin (orig_peer_info, path2, GNUNET_NO);
2631     send_create_path (dest_peer_info, path, t);
2632   }
2633   return GNUNET_OK;
2634 }
2635
2636
2637 /**
2638  * Core handler for path destruction
2639  *
2640  * @param cls closure
2641  * @param message message
2642  * @param peer peer identity this notification is about
2643  * @param atsi performance data
2644  * @param atsi_count number of records in 'atsi'
2645  *
2646  * @return GNUNET_OK to keep the connection open,
2647  *         GNUNET_SYSERR to close it (signal serious error)
2648  */
2649 static int
2650 handle_mesh_path_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
2651                           const struct GNUNET_MessageHeader *message,
2652                           const struct GNUNET_ATS_Information *atsi,
2653                           unsigned int atsi_count)
2654 {
2655   struct GNUNET_MESH_ManipulatePath *msg;
2656   struct GNUNET_PeerIdentity *pi;
2657   struct MeshPeerPath *path;
2658   struct MeshTunnel *t;
2659   unsigned int own_pos;
2660   unsigned int i;
2661   size_t size;
2662
2663   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2664               "MESH: Received a PATH DESTROY msg from %s\n", GNUNET_i2s (peer));
2665   size = ntohs (message->size);
2666   if (size < sizeof (struct GNUNET_MESH_ManipulatePath))
2667   {
2668     GNUNET_break_op (0);
2669     return GNUNET_OK;
2670   }
2671
2672   size -= sizeof (struct GNUNET_MESH_ManipulatePath);
2673   if (size % sizeof (struct GNUNET_PeerIdentity))
2674   {
2675     GNUNET_break_op (0);
2676     return GNUNET_OK;
2677   }
2678   size /= sizeof (struct GNUNET_PeerIdentity);
2679   if (size < 2)
2680   {
2681     GNUNET_break_op (0);
2682     return GNUNET_OK;
2683   }
2684   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:     path has %u hops.\n", size);
2685
2686   msg = (struct GNUNET_MESH_ManipulatePath *) message;
2687   pi = (struct GNUNET_PeerIdentity *) &msg[1];
2688   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2689               "MESH:     path is for tunnel %s [%X].\n", GNUNET_i2s (pi),
2690               msg->tid);
2691   t = tunnel_get (pi, ntohl (msg->tid));
2692   if (NULL == t)
2693   {
2694     /* TODO notify back: we don't know this tunnel */
2695     GNUNET_break_op (0);
2696     return GNUNET_OK;
2697   }
2698   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Creating path...\n");
2699   path = path_new (size);
2700   own_pos = 0;
2701   for (i = 0; i < size; i++)
2702   {
2703     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   ... adding %s\n",
2704                 GNUNET_i2s (&pi[i]));
2705     path->peers[i] = GNUNET_PEER_intern (&pi[i]);
2706     if (path->peers[i] == myid)
2707       own_pos = i;
2708   }
2709   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   Own position: %u\n", own_pos);
2710   if (own_pos < path->length - 1)
2711     send_message (message, &pi[own_pos + 1]);
2712   tunnel_delete_peer (t, path->peers[path->length - 1]);
2713   path_destroy (path);
2714   return GNUNET_OK;
2715 }
2716
2717
2718 /**
2719  * Core handler for notifications of broken paths
2720  *
2721  * @param cls closure
2722  * @param message message
2723  * @param peer peer identity this notification is about
2724  * @param atsi performance data
2725  * @param atsi_count number of records in 'atsi'
2726  *
2727  * @return GNUNET_OK to keep the connection open,
2728  *         GNUNET_SYSERR to close it (signal serious error)
2729  */
2730 static int
2731 handle_mesh_path_broken (void *cls, const struct GNUNET_PeerIdentity *peer,
2732                          const struct GNUNET_MessageHeader *message,
2733                          const struct GNUNET_ATS_Information *atsi,
2734                          unsigned int atsi_count)
2735 {
2736   struct GNUNET_MESH_PathBroken *msg;
2737   struct MeshTunnel *t;
2738
2739   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2740               "MESH: Received a PATH BROKEN msg from %s\n", GNUNET_i2s (peer));
2741   msg = (struct GNUNET_MESH_PathBroken *) message;
2742   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   regarding %s\n",
2743               GNUNET_i2s (&msg->peer1));
2744   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   regarding %s\n",
2745               GNUNET_i2s (&msg->peer2));
2746   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2747   if (NULL == t)
2748   {
2749     GNUNET_break_op (0);
2750     return GNUNET_OK;
2751   }
2752   tunnel_notify_connection_broken (t, GNUNET_PEER_search (&msg->peer1),
2753                                    GNUNET_PEER_search (&msg->peer2));
2754   return GNUNET_OK;
2755
2756 }
2757
2758
2759 /**
2760  * Core handler for tunnel destruction
2761  *
2762  * @param cls closure
2763  * @param message message
2764  * @param peer peer identity this notification is about
2765  * @param atsi performance data
2766  * @param atsi_count number of records in 'atsi'
2767  *
2768  * @return GNUNET_OK to keep the connection open,
2769  *         GNUNET_SYSERR to close it (signal serious error)
2770  */
2771 static int
2772 handle_mesh_tunnel_destroy (void *cls, const struct GNUNET_PeerIdentity *peer,
2773                             const struct GNUNET_MessageHeader *message,
2774                             const struct GNUNET_ATS_Information *atsi,
2775                             unsigned int atsi_count)
2776 {
2777   struct GNUNET_MESH_TunnelDestroy *msg;
2778   struct MeshTunnel *t;
2779
2780   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2781               "MESH: Got a TUNNEL DESTROY packet from %s\n", GNUNET_i2s (peer));
2782   msg = (struct GNUNET_MESH_TunnelDestroy *) message;
2783   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   for tunnel %s [%u]\n",
2784               GNUNET_i2s (&msg->oid), ntohl (msg->tid));
2785   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2786   if (NULL == t)
2787   {
2788     /* Probably already got the message from another path,
2789      * destroyed the tunnel and retransmitted to children.
2790      * Safe to ignore.
2791      */
2792     return GNUNET_OK;
2793   }
2794   if (t->id.oid == myid)
2795   {
2796     GNUNET_break_op (0);
2797     return GNUNET_OK;
2798   }
2799   if (t->local_tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
2800   {
2801     /* Tunnel was incoming, notify clients */
2802     send_clients_tunnel_destroy (t);
2803   }
2804   tunnel_send_destroy (t);
2805   tunnel_destroy (t);
2806   return GNUNET_OK;
2807 }
2808
2809
2810 /**
2811  * Core handler for mesh network traffic going from the origin to a peer
2812  *
2813  * @param cls closure
2814  * @param peer peer identity this notification is about
2815  * @param message message
2816  * @param atsi performance data
2817  * @param atsi_count number of records in 'atsi'
2818  * @return GNUNET_OK to keep the connection open,
2819  *         GNUNET_SYSERR to close it (signal serious error)
2820  */
2821 static int
2822 handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2823                           const struct GNUNET_MessageHeader *message,
2824                           const struct GNUNET_ATS_Information *atsi,
2825                           unsigned int atsi_count)
2826 {
2827   struct GNUNET_MESH_Unicast *msg;
2828   struct MeshTunnel *t;
2829   GNUNET_PEER_Id pid;
2830   size_t size;
2831
2832   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: got a unicast packet from %s\n",
2833               GNUNET_i2s (peer));
2834   size = ntohs (message->size);
2835   if (size <
2836       sizeof (struct GNUNET_MESH_Unicast) +
2837       sizeof (struct GNUNET_MessageHeader))
2838   {
2839     GNUNET_break (0);
2840     return GNUNET_OK;
2841   }
2842   msg = (struct GNUNET_MESH_Unicast *) message;
2843   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  of type %u\n",
2844               ntohs (msg[1].header.type));
2845   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2846   if (NULL == t)
2847   {
2848     /* TODO notify back: we don't know this tunnel */
2849     GNUNET_break_op (0);
2850     return GNUNET_OK;
2851   }
2852   tunnel_reset_timeout (t);
2853   pid = GNUNET_PEER_search (&msg->destination);
2854   if (pid == myid)
2855   {
2856     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2857                 "MESH:   it's for us! sending to clients...\n");
2858     send_subscribed_clients (message, (struct GNUNET_MessageHeader *) &msg[1]);
2859     return GNUNET_OK;
2860   }
2861   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2862               "MESH:   not for us, retransmitting...\n");
2863   send_message (message, tree_get_first_hop (t->tree, pid));
2864   return GNUNET_OK;
2865 }
2866
2867
2868 /**
2869  * Core handler for mesh network traffic going from the origin to all peers
2870  *
2871  * @param cls closure
2872  * @param message message
2873  * @param peer peer identity this notification is about
2874  * @param atsi performance data
2875  * @param atsi_count number of records in 'atsi'
2876  * @return GNUNET_OK to keep the connection open,
2877  *         GNUNET_SYSERR to close it (signal serious error)
2878  *
2879  * TODO: Check who we got this from, to validate route.
2880  */
2881 static int
2882 handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer,
2883                             const struct GNUNET_MessageHeader *message,
2884                             const struct GNUNET_ATS_Information *atsi,
2885                             unsigned int atsi_count)
2886 {
2887   struct GNUNET_MESH_Multicast *msg;
2888   struct MeshTunnel *t;
2889   size_t size;
2890
2891   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: got a multicast packet from %s\n",
2892               GNUNET_i2s (peer));
2893   size = ntohs (message->size);
2894   if (sizeof (struct GNUNET_MESH_Multicast) +
2895       sizeof (struct GNUNET_MessageHeader) > size)
2896   {
2897     GNUNET_break_op (0);
2898     return GNUNET_OK;
2899   }
2900   msg = (struct GNUNET_MESH_Multicast *) message;
2901   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2902
2903   if (NULL == t)
2904   {
2905     /* TODO notify that we dont know that tunnel */
2906     GNUNET_break_op (0);
2907     return GNUNET_OK;
2908   }
2909   if (t->mid == ntohl (msg->mid))
2910   {
2911     /* FIXME: already seen this packet, log dropping */
2912     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2913                 "MESH:  Already seen mid %u, DROPPING!\n",
2914                 t->mid);
2915     return GNUNET_OK;
2916   }
2917 #if MESH_DEBUG
2918   else
2919   {
2920     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2921                 "MESH:  mid %u not seen yet, forwarding\n",
2922                 ntohl (msg->mid));
2923   }
2924 #endif
2925   t->mid = ntohl (msg->mid);
2926   tunnel_reset_timeout (t);
2927
2928   /* Transmit to locally interested clients */
2929   if (NULL != t->peers &&
2930       GNUNET_CONTAINER_multihashmap_contains (t->peers, &my_full_id.hashPubKey))
2931   {
2932     send_subscribed_clients (message, &msg[1].header);
2933   }
2934 #if MESH_DEBUG
2935   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2936               "MESH:    ttl: %u\n",
2937               ntohl (msg->ttl));
2938 #endif
2939   if (ntohl (msg->ttl) == 0)
2940   {
2941     /* FIXME: ttl is 0, log dropping */
2942     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2943                 "MESH:  TTL is 0, DROPPING!\n");
2944     return GNUNET_OK;
2945   }
2946   tunnel_send_multicast (t, message);
2947   return GNUNET_OK;
2948 }
2949
2950
2951 /**
2952  * Core handler for mesh network traffic toward the owner of a tunnel
2953  *
2954  * @param cls closure
2955  * @param message message
2956  * @param peer peer identity this notification is about
2957  * @param atsi performance data
2958  * @param atsi_count number of records in 'atsi'
2959  *
2960  * @return GNUNET_OK to keep the connection open,
2961  *         GNUNET_SYSERR to close it (signal serious error)
2962  */
2963 static int
2964 handle_mesh_data_to_orig (void *cls, const struct GNUNET_PeerIdentity *peer,
2965                           const struct GNUNET_MessageHeader *message,
2966                           const struct GNUNET_ATS_Information *atsi,
2967                           unsigned int atsi_count)
2968 {
2969   struct GNUNET_MESH_ToOrigin *msg;
2970   struct GNUNET_PeerIdentity id;
2971   struct MeshPeerInfo *peer_info;
2972   struct MeshTunnel *t;
2973   size_t size;
2974
2975   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: got a ToOrigin packet from %s\n",
2976               GNUNET_i2s (peer));
2977   size = ntohs (message->size);
2978   if (size < sizeof (struct GNUNET_MESH_ToOrigin) +     /* Payload must be */
2979       sizeof (struct GNUNET_MessageHeader))     /* at least a header */
2980   {
2981     GNUNET_break_op (0);
2982     return GNUNET_OK;
2983   }
2984   msg = (struct GNUNET_MESH_ToOrigin *) message;
2985   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  of type %u\n",
2986               ntohs (msg[1].header.type));
2987   t = tunnel_get (&msg->oid, ntohl (msg->tid));
2988
2989   if (NULL == t)
2990   {
2991     /* TODO notify that we dont know this tunnel (whom)? */
2992     GNUNET_break_op (0);
2993     return GNUNET_OK;
2994   }
2995
2996   if (t->id.oid == myid)
2997   {
2998     char cbuf[size];
2999     struct GNUNET_MESH_ToOrigin *copy;
3000
3001     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3002                 "MESH:   it's for us! sending to clients...\n");
3003     if (NULL == t->client)
3004     {
3005       /* got data packet for ownerless tunnel */
3006       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   no clients!\n");
3007       GNUNET_break_op (0);
3008       return GNUNET_OK;
3009     }
3010     /* TODO signature verification */
3011     memcpy (cbuf, message, size);
3012     copy = (struct GNUNET_MESH_ToOrigin *) cbuf;
3013     copy->tid = htonl (t->local_tid);
3014     GNUNET_SERVER_notification_context_unicast (nc, t->client->handle,
3015                                                 &copy->header, GNUNET_YES);
3016     return GNUNET_OK;
3017   }
3018   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3019               "MESH:   not for us, retransmitting...\n");
3020
3021   peer_info = peer_info_get (&msg->oid);
3022   if (NULL == peer_info)
3023   {
3024     /* unknown origin of tunnel */
3025     GNUNET_break (0);
3026     return GNUNET_OK;
3027   }
3028   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
3029   send_message (message, &id);
3030
3031   return GNUNET_OK;
3032 }
3033
3034
3035 /**
3036  * Core handler for path ACKs
3037  *
3038  * @param cls closure
3039  * @param message message
3040  * @param peer peer identity this notification is about
3041  * @param atsi performance data
3042  * @param atsi_count number of records in 'atsi'
3043  *
3044  * @return GNUNET_OK to keep the connection open,
3045  *         GNUNET_SYSERR to close it (signal serious error)
3046  */
3047 static int
3048 handle_mesh_path_ack (void *cls, const struct GNUNET_PeerIdentity *peer,
3049                       const struct GNUNET_MessageHeader *message,
3050                       const struct GNUNET_ATS_Information *atsi,
3051                       unsigned int atsi_count)
3052 {
3053   struct GNUNET_MESH_PathACK *msg;
3054   struct GNUNET_PeerIdentity id;
3055   struct MeshPeerInfo *peer_info;
3056   struct MeshPeerPath *p;
3057   struct MeshTunnel *t;
3058   unsigned int i;
3059
3060   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Received a path ACK msg [%s]\n",
3061               GNUNET_i2s (&my_full_id));
3062   msg = (struct GNUNET_MESH_PathACK *) message;
3063   t = tunnel_get (&msg->oid, msg->tid);
3064   if (NULL == t)
3065   {
3066     /* TODO notify that we don't know the tunnel */
3067     return GNUNET_OK;
3068   }
3069
3070   /* Add paths to peers */
3071   peer_info = peer_info_get (&msg->peer_id);
3072   p = tree_get_path_to_peer(t->tree, peer_info->id);
3073   for (i = 1; i < p->length && p->peers[i] != myid; i++) /* skip'em */;
3074   for (i++; i < p->length; i++)
3075   {
3076     struct MeshPeerInfo *aux;
3077     struct MeshPeerPath *copy;
3078
3079     aux = peer_info_get_short(p->peers[i]);
3080     copy = path_duplicate(p);
3081     copy->length = i;
3082     peer_info_add_path(aux, copy, 0);
3083   }
3084
3085   /* Message for us? */
3086   if (0 == memcmp (&msg->oid, &my_full_id, sizeof (struct GNUNET_PeerIdentity)))
3087   {
3088     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   It's for us!\n");
3089     if (NULL == t->client)
3090     {
3091       GNUNET_break_op (0);
3092       return GNUNET_OK;
3093     }
3094     if (NULL != t->dht_get_type)
3095     {
3096       GNUNET_DHT_get_stop (t->dht_get_type);
3097       t->dht_get_type = NULL;
3098     }
3099     if (tree_get_status(t->tree, peer_info->id) != MESH_PEER_READY)
3100     {
3101       tree_set_status (t->tree, peer_info->id, MESH_PEER_READY);
3102       send_client_peer_connected (t, peer_info->id);
3103     }
3104     return GNUNET_OK;
3105   }
3106
3107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3108               "MESH:   not for us, retransmitting...\n");
3109   GNUNET_PEER_resolve (tree_get_predecessor (t->tree), &id);
3110   peer_info = peer_info_get (&msg->oid);
3111   if (NULL == peer_info)
3112   {
3113     /* If we know the tunnel, we should DEFINITELY know the peer */
3114     GNUNET_break (0);
3115     return GNUNET_OK;
3116   }
3117   send_message (message, &id);
3118   return GNUNET_OK;
3119 }
3120
3121
3122 /**
3123  * Functions to handle messages from core
3124  */
3125 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
3126   {&handle_mesh_path_create, GNUNET_MESSAGE_TYPE_MESH_PATH_CREATE, 0},
3127   {&handle_mesh_path_destroy, GNUNET_MESSAGE_TYPE_MESH_PATH_DESTROY, 0},
3128   {&handle_mesh_path_broken, GNUNET_MESSAGE_TYPE_MESH_PATH_BROKEN,
3129    sizeof (struct GNUNET_MESH_PathBroken)},
3130   {&handle_mesh_tunnel_destroy, GNUNET_MESSAGE_TYPE_MESH_TUNNEL_DESTROY, 0},
3131   {&handle_mesh_data_unicast, GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
3132   {&handle_mesh_data_multicast, GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
3133   {&handle_mesh_data_to_orig, GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
3134   {&handle_mesh_path_ack, GNUNET_MESSAGE_TYPE_MESH_PATH_ACK,
3135    sizeof (struct GNUNET_MESH_PathACK)},
3136   {NULL, 0, 0}
3137 };
3138
3139
3140
3141 /******************************************************************************/
3142 /****************       MESH LOCAL HANDLER HELPERS      ***********************/
3143 /******************************************************************************/
3144
3145 /**
3146  * deregister_app: iterator for removing each application registered by a client
3147  *
3148  * @param cls closure
3149  * @param key the hash of the application id (used to access the hashmap)
3150  * @param value the value stored at the key (client)
3151  *
3152  * @return GNUNET_OK on success
3153  */
3154 static int
3155 deregister_app (void *cls, const GNUNET_HashCode * key, void *value)
3156 {
3157   GNUNET_break (GNUNET_YES ==
3158                 GNUNET_CONTAINER_multihashmap_remove (applications, key,
3159                                                       value));
3160   return GNUNET_OK;
3161 }
3162
3163 #if LATER
3164 /**
3165  * notify_client_connection_failure: notify a client that the connection to the
3166  * requested remote peer is not possible (for instance, no route found)
3167  * Function called when the socket is ready to queue more data. "buf" will be
3168  * NULL and "size" zero if the socket was closed for writing in the meantime.
3169  *
3170  * @param cls closure
3171  * @param size number of bytes available in buf
3172  * @param buf where the callee should write the message
3173  * @return number of bytes written to buf
3174  */
3175 static size_t
3176 notify_client_connection_failure (void *cls, size_t size, void *buf)
3177 {
3178   int size_needed;
3179   struct MeshPeerInfo *peer_info;
3180   struct GNUNET_MESH_PeerControl *msg;
3181   struct GNUNET_PeerIdentity id;
3182
3183   if (0 == size && NULL == buf)
3184   {
3185     // TODO retry? cancel?
3186     return 0;
3187   }
3188
3189   size_needed = sizeof (struct GNUNET_MESH_PeerControl);
3190   peer_info = (struct MeshPeerInfo *) cls;
3191   msg = (struct GNUNET_MESH_PeerControl *) buf;
3192   msg->header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
3193   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DISCONNECTED);
3194 //     msg->tunnel_id = htonl(peer_info->t->tid);
3195   GNUNET_PEER_resolve (peer_info->id, &id);
3196   memcpy (&msg->peer, &id, sizeof (struct GNUNET_PeerIdentity));
3197
3198   return size_needed;
3199 }
3200 #endif
3201
3202
3203 /**
3204  * Send keepalive packets for a peer
3205  *
3206  * @param cls Closure (tunnel for which to send the keepalive).
3207  * @param tc Notification context.
3208  *
3209  * TODO: implement explicit multicast keepalive?
3210  */
3211 static void
3212 path_refresh (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3213 {
3214   struct MeshTunnel *t = cls;
3215   struct GNUNET_MessageHeader *payload;
3216   struct GNUNET_MESH_Multicast *msg;
3217   size_t size =
3218       sizeof (struct GNUNET_MESH_Multicast) +
3219       sizeof (struct GNUNET_MessageHeader);
3220   char cbuf[size];
3221
3222   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
3223   {
3224     return;
3225   }
3226   t->path_refresh_task = GNUNET_SCHEDULER_NO_TASK;
3227
3228   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3229               "MESH: sending keepalive for tunnel %d\n", t->id.tid);
3230
3231   msg = (struct GNUNET_MESH_Multicast *) cbuf;
3232   msg->header.size = htons (size);
3233   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
3234   msg->oid = my_full_id;
3235   msg->tid = htonl (t->id.tid);
3236   payload = (struct GNUNET_MessageHeader *) &msg[1];
3237   payload->size = htons (sizeof (struct GNUNET_MessageHeader));
3238   payload->type = htons (GNUNET_MESSAGE_TYPE_MESH_PATH_KEEPALIVE);
3239   tunnel_send_multicast (t, &msg->header);
3240
3241   t->path_refresh_task =
3242       GNUNET_SCHEDULER_add_delayed (REFRESH_PATH_TIME, &path_refresh, t);
3243   return;
3244 }
3245
3246
3247 /**
3248  * Function to process paths received for a new peer addition. The recorded
3249  * paths form the initial tunnel, which can be optimized later.
3250  * Called on each result obtained for the DHT search.
3251  *
3252  * @param cls closure
3253  * @param exp when will this value expire
3254  * @param key key of the result
3255  * @param type type of the result
3256  * @param size number of bytes in data
3257  * @param data pointer to the result data
3258  *
3259  * TODO: re-issue the request after certain time? cancel after X results?
3260  */
3261 static void
3262 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
3263                     const GNUNET_HashCode * key,
3264                     const struct GNUNET_PeerIdentity *get_path,
3265                     unsigned int get_path_length,
3266                     const struct GNUNET_PeerIdentity *put_path,
3267                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
3268                     size_t size, const void *data)
3269 {
3270   struct MeshPathInfo *path_info = cls;
3271   struct MeshPeerPath *p;
3272   struct GNUNET_PeerIdentity pi;
3273   int i;
3274
3275   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Got results from DHT!\n");
3276   GNUNET_PEER_resolve (path_info->peer->id, &pi);
3277   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   for %s\n", GNUNET_i2s (&pi));
3278
3279   p = path_build_from_dht (get_path, get_path_length, put_path,
3280                            put_path_length);
3281   peer_info_add_path (path_info->peer, p, GNUNET_NO);
3282   for (i = 0; i < path_info->peer->ntunnels; i++)
3283   {
3284     tunnel_add_peer (path_info->peer->tunnels[i], path_info->peer);
3285     peer_info_connect (path_info->peer, path_info->t);
3286   }
3287
3288   return;
3289 }
3290
3291
3292 /**
3293  * Function to process paths received for a new peer addition. The recorded
3294  * paths form the initial tunnel, which can be optimized later.
3295  * Called on each result obtained for the DHT search.
3296  *
3297  * @param cls closure
3298  * @param exp when will this value expire
3299  * @param key key of the result
3300  * @param type type of the result
3301  * @param size number of bytes in data
3302  * @param data pointer to the result data
3303  */
3304 static void
3305 dht_get_type_handler (void *cls, struct GNUNET_TIME_Absolute exp,
3306                       const GNUNET_HashCode * key,
3307                       const struct GNUNET_PeerIdentity *get_path,
3308                       unsigned int get_path_length,
3309                       const struct GNUNET_PeerIdentity *put_path,
3310                       unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
3311                       size_t size, const void *data)
3312 {
3313   const struct GNUNET_PeerIdentity *pi = data;
3314   struct MeshTunnel *t = cls;
3315   struct MeshPeerInfo *peer_info;
3316   struct MeshPeerPath *p;
3317
3318   if (size != sizeof (struct GNUNET_PeerIdentity))
3319   {
3320     GNUNET_break_op (0);
3321     return;
3322   }
3323   GNUNET_assert (NULL != t->client);
3324   peer_info = peer_info_get (pi);
3325   (void) GNUNET_CONTAINER_multihashmap_put (t->peers, &pi->hashPubKey,
3326                                             peer_info,
3327                                             GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
3328
3329   p = path_build_from_dht (get_path, get_path_length, put_path,
3330                            put_path_length);
3331   peer_info_add_path (peer_info, p, GNUNET_NO);
3332   tunnel_add_peer (t, peer_info);
3333   peer_info_connect (peer_info, t);
3334 }
3335
3336
3337 /******************************************************************************/
3338 /*********************       MESH LOCAL HANDLES      **************************/
3339 /******************************************************************************/
3340
3341
3342 /**
3343  * Handler for client disconnection
3344  *
3345  * @param cls closure
3346  * @param client identification of the client; NULL
3347  *        for the last call when the server is destroyed
3348  */
3349 static void
3350 handle_local_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
3351 {
3352   struct MeshClient *c;
3353   struct MeshClient *next;
3354
3355   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: client disconnected\n");
3356   if (client == NULL)
3357   {
3358     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    (SERVER DOWN)\n");
3359     return;
3360   }
3361   c = clients;
3362   while (NULL != c)
3363   {
3364     if (c->handle != client && NULL != client)
3365     {
3366       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    ... searching\n");
3367       c = c->next;
3368       continue;
3369     }
3370     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: matching client found\n");
3371     GNUNET_SERVER_client_drop (c->handle);
3372     if (NULL != c->tunnels)
3373     {
3374       GNUNET_CONTAINER_multihashmap_iterate (c->tunnels,
3375                                              &tunnel_destroy_iterator, c);
3376       GNUNET_CONTAINER_multihashmap_destroy (c->tunnels);
3377     }
3378
3379     /* deregister clients applications */
3380     if (NULL != c->apps)
3381     {
3382       GNUNET_CONTAINER_multihashmap_iterate (c->apps, &deregister_app, NULL);
3383       GNUNET_CONTAINER_multihashmap_destroy (c->apps);
3384     }
3385     if (0 == GNUNET_CONTAINER_multihashmap_size (applications) &&
3386         GNUNET_SCHEDULER_NO_TASK != announce_applications_task)
3387     {
3388       GNUNET_SCHEDULER_cancel (announce_applications_task);
3389       announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
3390     }
3391     if (NULL != c->types)
3392       GNUNET_CONTAINER_multihashmap_destroy (c->types);
3393     next = c->next;
3394     GNUNET_CONTAINER_DLL_remove (clients, clients_tail, c);
3395     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   CLIENT FREE at %p\n", c);
3396     GNUNET_free (c);
3397     c = next;
3398   }
3399
3400   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:    done!\n");
3401   return;
3402 }
3403
3404
3405 /**
3406  * Handler for new clients
3407  *
3408  * @param cls closure
3409  * @param client identification of the client
3410  * @param message the actual message, which includes messages the client wants
3411  */
3412 static void
3413 handle_local_new_client (void *cls, struct GNUNET_SERVER_Client *client,
3414                          const struct GNUNET_MessageHeader *message)
3415 {
3416   struct GNUNET_MESH_ClientConnect *cc_msg;
3417   struct MeshClient *c;
3418   GNUNET_MESH_ApplicationType *a;
3419   unsigned int size;
3420   uint16_t ntypes;
3421   uint16_t *t;
3422   uint16_t napps;
3423   uint16_t i;
3424
3425   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client connected\n");
3426   /* Check data sanity */
3427   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
3428   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
3429   ntypes = ntohs (cc_msg->types);
3430   napps = ntohs (cc_msg->applications);
3431   if (size !=
3432       ntypes * sizeof (uint16_t) + napps * sizeof (GNUNET_MESH_ApplicationType))
3433   {
3434     GNUNET_break (0);
3435     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3436     return;
3437   }
3438
3439   /* Create new client structure */
3440   c = GNUNET_malloc (sizeof (struct MeshClient));
3441 #if MESH_DEBUG
3442   c->id = next_client_id++;
3443   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   CLIENT NEW %u at %p\n", c->id,
3444               c);
3445 #endif
3446   c->handle = client;
3447   GNUNET_SERVER_client_keep (client);
3448   a = (GNUNET_MESH_ApplicationType *) &cc_msg[1];
3449   if (napps > 0)
3450   {
3451     GNUNET_MESH_ApplicationType at;
3452     GNUNET_HashCode hc;
3453
3454     c->apps = GNUNET_CONTAINER_multihashmap_create (napps);
3455     for (i = 0; i < napps; i++)
3456     {
3457       at = ntohl (a[i]);
3458       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   app type: %u\n", at);
3459       GNUNET_CRYPTO_hash (&at, sizeof (at), &hc);
3460       /* store in clients hashmap */
3461       GNUNET_CONTAINER_multihashmap_put (c->apps, &hc, c,
3462                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3463       /* store in global hashmap, for announcements */
3464       GNUNET_CONTAINER_multihashmap_put (applications, &hc, c,
3465                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3466     }
3467     if (GNUNET_SCHEDULER_NO_TASK == announce_applications_task)
3468       announce_applications_task =
3469           GNUNET_SCHEDULER_add_now (&announce_applications, NULL);
3470
3471   }
3472   if (ntypes > 0)
3473   {
3474     uint16_t u16;
3475     GNUNET_HashCode hc;
3476
3477     t = (uint16_t *) & a[napps];
3478     c->types = GNUNET_CONTAINER_multihashmap_create (ntypes);
3479     for (i = 0; i < ntypes; i++)
3480     {
3481       u16 = ntohs (t[i]);
3482       GNUNET_CRYPTO_hash (&u16, sizeof (u16), &hc);
3483
3484       /* store in clients hashmap */
3485       GNUNET_CONTAINER_multihashmap_put (c->types, &hc, c,
3486                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3487       /* store in global hashmap */
3488       GNUNET_CONTAINER_multihashmap_put (types, &hc, c,
3489                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3490     }
3491   }
3492   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3493               "MESH:  client has %u+%u subscriptions\n", napps, ntypes);
3494
3495   GNUNET_CONTAINER_DLL_insert (clients, clients_tail, c);
3496   c->tunnels = GNUNET_CONTAINER_multihashmap_create (32);
3497   GNUNET_SERVER_notification_context_add (nc, client);
3498
3499   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3500 #if MESH_DEBUG
3501   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new client processed\n");
3502 #endif
3503 }
3504
3505
3506 /**
3507  * Handler for requests of new tunnels
3508  *
3509  * @param cls closure
3510  * @param client identification of the client
3511  * @param message the actual message
3512  */
3513 static void
3514 handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
3515                             const struct GNUNET_MessageHeader *message)
3516 {
3517   struct GNUNET_MESH_TunnelMessage *t_msg;
3518   struct MeshTunnel *t;
3519   struct MeshClient *c;
3520   GNUNET_HashCode hash;
3521
3522   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: new tunnel requested\n");
3523
3524   /* Sanity check for client registration */
3525   if (NULL == (c = client_get (client)))
3526   {
3527     GNUNET_break (0);
3528     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3529     return;
3530   }
3531 #if MESH_DEBUG
3532   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
3533 #endif
3534
3535   /* Message sanity check */
3536   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
3537   {
3538     GNUNET_break (0);
3539     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3540     return;
3541   }
3542
3543   t_msg = (struct GNUNET_MESH_TunnelMessage *) message;
3544   /* Sanity check for tunnel numbering */
3545   if (0 == (ntohl (t_msg->tunnel_id) & GNUNET_MESH_LOCAL_TUNNEL_ID_CLI))
3546   {
3547     GNUNET_break (0);
3548     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3549     return;
3550   }
3551   /* Sanity check for duplicate tunnel IDs */
3552   if (NULL != tunnel_get_by_local_id (c, ntohl (t_msg->tunnel_id)))
3553   {
3554     GNUNET_break (0);
3555     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3556     return;
3557   }
3558
3559   t = GNUNET_malloc (sizeof (struct MeshTunnel));
3560   while (NULL != tunnel_get_by_pi (myid, next_tid))
3561     next_tid = (next_tid + 1) & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
3562   t->id.tid = next_tid++;
3563   next_tid = next_tid & ~GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
3564   t->id.oid = myid;
3565   t->local_tid = ntohl (t_msg->tunnel_id);
3566 #if MESH_DEBUG
3567   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: CREATED TUNNEL %s [%x] (%x)\n",
3568               GNUNET_i2s (&my_full_id), t->id.tid, t->local_tid);
3569 #endif
3570   t->client = c;
3571   t->peers = GNUNET_CONTAINER_multihashmap_create (32);
3572
3573   GNUNET_CRYPTO_hash (&t->local_tid, sizeof (MESH_TunnelNumber), &hash);
3574   if (GNUNET_OK !=
3575       GNUNET_CONTAINER_multihashmap_put (c->tunnels, &hash, t,
3576                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3577   {
3578     GNUNET_break (0);
3579     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3580     return;
3581   }
3582
3583   GNUNET_CRYPTO_hash (&t->id, sizeof (struct MESH_TunnelID), &hash);
3584   if (GNUNET_OK !=
3585       GNUNET_CONTAINER_multihashmap_put (tunnels, &hash, t,
3586                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
3587   {
3588     GNUNET_break (0);
3589     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3590     return;
3591   }
3592   t->tree = tree_new (myid);
3593
3594   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3595   return;
3596 }
3597
3598
3599 /**
3600  * Handler for requests of deleting tunnels
3601  *
3602  * @param cls closure
3603  * @param client identification of the client
3604  * @param message the actual message
3605  */
3606 static void
3607 handle_local_tunnel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
3608                              const struct GNUNET_MessageHeader *message)
3609 {
3610   struct GNUNET_MESH_TunnelMessage *tunnel_msg;
3611   struct MeshClient *c;
3612   struct MeshTunnel *t;
3613   MESH_TunnelNumber tid;
3614   GNUNET_HashCode hash;
3615
3616   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3617               "MESH: Got a DESTROY TUNNEL from client!\n");
3618
3619   /* Sanity check for client registration */
3620   if (NULL == (c = client_get (client)))
3621   {
3622     GNUNET_break (0);
3623     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3624     return;
3625   }
3626   /* Message sanity check */
3627   if (sizeof (struct GNUNET_MESH_TunnelMessage) != ntohs (message->size))
3628   {
3629     GNUNET_break (0);
3630     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3631     return;
3632   }
3633 #if MESH_DEBUG
3634   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   by client %u\n", c->id);
3635 #endif
3636   tunnel_msg = (struct GNUNET_MESH_TunnelMessage *) message;
3637
3638   /* Retrieve tunnel */
3639   tid = ntohl (tunnel_msg->tunnel_id);
3640
3641   /* Remove from local id hashmap */
3642   GNUNET_CRYPTO_hash (&tid, sizeof (MESH_TunnelNumber), &hash);
3643   t = GNUNET_CONTAINER_multihashmap_get (c->tunnels, &hash);
3644   GNUNET_assert (GNUNET_YES ==
3645                  GNUNET_CONTAINER_multihashmap_remove (c->tunnels, &hash, t));
3646
3647   t->client = NULL;
3648   tunnel_send_destroy (t);
3649   tunnel_destroy (t);
3650   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3651   return;
3652 }
3653
3654
3655 /**
3656  * Handler for connection requests to new peers
3657  *
3658  * @param cls closure
3659  * @param client identification of the client
3660  * @param message the actual message (PeerControl)
3661  */
3662 static void
3663 handle_local_connect_add (void *cls, struct GNUNET_SERVER_Client *client,
3664                           const struct GNUNET_MessageHeader *message)
3665 {
3666   struct GNUNET_MESH_PeerControl *peer_msg;
3667   struct MeshPeerInfo *peer_info;
3668   struct MeshClient *c;
3669   struct MeshTunnel *t;
3670   MESH_TunnelNumber tid;
3671
3672   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Got connection request\n");
3673   /* Sanity check for client registration */
3674   if (NULL == (c = client_get (client)))
3675   {
3676     GNUNET_break (0);
3677     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3678     return;
3679   }
3680
3681   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
3682   /* Sanity check for message size */
3683   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
3684   {
3685     GNUNET_break (0);
3686     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3687     return;
3688   }
3689
3690   /* Tunnel exists? */
3691   tid = ntohl (peer_msg->tunnel_id);
3692   t = tunnel_get_by_local_id (c, tid);
3693   if (NULL == t)
3694   {
3695     GNUNET_break (0);
3696     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3697     return;
3698   }
3699
3700   /* Does client own tunnel? */
3701   if (t->client->handle != client)
3702   {
3703     GNUNET_break (0);
3704     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3705     return;
3706   }
3707   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      for %s\n",
3708               GNUNET_i2s (&peer_msg->peer));
3709   peer_info = peer_info_get (&peer_msg->peer);
3710
3711   tunnel_add_peer (t, peer_info);
3712   peer_info_connect (peer_info, t);
3713
3714   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3715   return;
3716 }
3717
3718
3719 /**
3720  * Handler for disconnection requests of peers in a tunnel
3721  *
3722  * @param cls closure
3723  * @param client identification of the client
3724  * @param message the actual message (PeerControl)
3725  */
3726 static void
3727 handle_local_connect_del (void *cls, struct GNUNET_SERVER_Client *client,
3728                           const struct GNUNET_MessageHeader *message)
3729 {
3730   struct GNUNET_MESH_PeerControl *peer_msg;
3731   struct MeshPeerInfo *peer_info;
3732   struct MeshClient *c;
3733   struct MeshTunnel *t;
3734   MESH_TunnelNumber tid;
3735
3736   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Got a PEER DEL request\n");
3737   /* Sanity check for client registration */
3738   if (NULL == (c = client_get (client)))
3739   {
3740     GNUNET_break (0);
3741     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3742     return;
3743   }
3744   peer_msg = (struct GNUNET_MESH_PeerControl *) message;
3745   /* Sanity check for message size */
3746   if (sizeof (struct GNUNET_MESH_PeerControl) != ntohs (peer_msg->header.size))
3747   {
3748     GNUNET_break (0);
3749     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3750     return;
3751   }
3752
3753   /* Tunnel exists? */
3754   tid = ntohl (peer_msg->tunnel_id);
3755   t = tunnel_get_by_local_id (c, tid);
3756   if (NULL == t)
3757   {
3758     GNUNET_break (0);
3759     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3760     return;
3761   }
3762   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   on tunnel %X\n", t->id.tid);
3763
3764   /* Does client own tunnel? */
3765   if (t->client->handle != client)
3766   {
3767     GNUNET_break (0);
3768     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3769     return;
3770   }
3771
3772   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:   for peer %s\n",
3773               GNUNET_i2s (&peer_msg->peer));
3774   /* Is the peer in the tunnel? */
3775   peer_info =
3776       GNUNET_CONTAINER_multihashmap_get (t->peers, &peer_msg->peer.hashPubKey);
3777   if (NULL == peer_info)
3778   {
3779     GNUNET_break (0);
3780     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3781     return;
3782   }
3783
3784   /* Ok, delete peer from tunnel */
3785   GNUNET_CONTAINER_multihashmap_remove_all (t->peers,
3786                                             &peer_msg->peer.hashPubKey);
3787
3788   send_destroy_path (t, peer_info->id);
3789   tunnel_delete_peer (t, peer_info->id);
3790   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3791   return;
3792 }
3793
3794
3795 /**
3796  * Handler for connection requests to new peers by type
3797  *
3798  * @param cls closure
3799  * @param client identification of the client
3800  * @param message the actual message (ConnectPeerByType)
3801  */
3802 static void
3803 handle_local_connect_by_type (void *cls, struct GNUNET_SERVER_Client *client,
3804                               const struct GNUNET_MessageHeader *message)
3805 {
3806   struct GNUNET_MESH_ConnectPeerByType *connect_msg;
3807   struct MeshClient *c;
3808   struct MeshTunnel *t;
3809   GNUNET_HashCode hash;
3810   MESH_TunnelNumber tid;
3811
3812   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: got connect by type request\n");
3813   /* Sanity check for client registration */
3814   if (NULL == (c = client_get (client)))
3815   {
3816     GNUNET_break (0);
3817     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3818     return;
3819   }
3820
3821   connect_msg = (struct GNUNET_MESH_ConnectPeerByType *) message;
3822   /* Sanity check for message size */
3823   if (sizeof (struct GNUNET_MESH_ConnectPeerByType) !=
3824       ntohs (connect_msg->header.size))
3825   {
3826     GNUNET_break (0);
3827     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3828     return;
3829   }
3830
3831   /* Tunnel exists? */
3832   tid = ntohl (connect_msg->tunnel_id);
3833   t = tunnel_get_by_local_id (c, tid);
3834   if (NULL == t)
3835   {
3836     GNUNET_break (0);
3837     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3838     return;
3839   }
3840
3841   /* Does client own tunnel? */
3842   if (t->client->handle != client)
3843   {
3844     GNUNET_break (0);
3845     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3846     return;
3847   }
3848
3849   /* Do WE have the service? */
3850   t->type = ntohl (connect_msg->type);
3851   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  type requested: %u\n", t->type);
3852   GNUNET_CRYPTO_hash (&t->type, sizeof (GNUNET_MESH_ApplicationType), &hash);
3853   if (GNUNET_CONTAINER_multihashmap_contains (applications, &hash) ==
3854       GNUNET_YES)
3855   {
3856     /* Yes! Fast forward, add ourselves to the tunnel and send the
3857      * good news to the client
3858      */
3859     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  available locally\n");
3860     GNUNET_CONTAINER_multihashmap_put (t->peers, &my_full_id.hashPubKey,
3861                                        peer_info_get (&my_full_id),
3862                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
3863
3864     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  notifying client\n");
3865     send_client_peer_connected (t, myid);
3866     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  Done\n");
3867     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3868     return;
3869   }
3870   /* Ok, lets find a peer offering the service */
3871   if (NULL != t->dht_get_type)
3872   {
3873     GNUNET_DHT_get_stop (t->dht_get_type);
3874   }
3875   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:  looking in DHT for %s\n",
3876               GNUNET_h2s (&hash));
3877   t->dht_get_type =
3878       GNUNET_DHT_get_start (dht_handle, GNUNET_TIME_UNIT_FOREVER_REL,
3879                             GNUNET_BLOCK_TYPE_TEST, &hash, 10U,
3880                             GNUNET_DHT_RO_RECORD_ROUTE |
3881                             GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE, NULL, 0,
3882                             &dht_get_type_handler, t);
3883
3884   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3885   return;
3886 }
3887
3888
3889 /**
3890  * Handler for client traffic directed to one peer
3891  *
3892  * @param cls closure
3893  * @param client identification of the client
3894  * @param message the actual message
3895  */
3896 static void
3897 handle_local_unicast (void *cls, struct GNUNET_SERVER_Client *client,
3898                       const struct GNUNET_MessageHeader *message)
3899 {
3900   struct MeshClient *c;
3901   struct MeshTunnel *t;
3902   struct MeshPeerInfo *pi;
3903   struct GNUNET_MESH_Unicast *data_msg;
3904   MESH_TunnelNumber tid;
3905   size_t size;
3906
3907   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3908               "MESH: Got a unicast request from a client!\n");
3909
3910   /* Sanity check for client registration */
3911   if (NULL == (c = client_get (client)))
3912   {
3913     GNUNET_break (0);
3914     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3915     return;
3916   }
3917   data_msg = (struct GNUNET_MESH_Unicast *) message;
3918   /* Sanity check for message size */
3919   size = ntohs (message->size);
3920   if (sizeof (struct GNUNET_MESH_Unicast) +
3921       sizeof (struct GNUNET_MessageHeader) > size)
3922   {
3923     GNUNET_break (0);
3924     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3925     return;
3926   }
3927
3928   /* Tunnel exists? */
3929   tid = ntohl (data_msg->tid);
3930   t = tunnel_get_by_local_id (c, tid);
3931   if (NULL == t)
3932   {
3933     GNUNET_break (0);
3934     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3935     return;
3936   }
3937
3938   /*  Is it a local tunnel? Then, does client own the tunnel? */
3939   if (NULL != t->client && NULL != t->client->handle &&
3940       t->client->handle != client)
3941   {
3942     GNUNET_break (0);
3943     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3944     return;
3945   }
3946
3947   pi = GNUNET_CONTAINER_multihashmap_get (t->peers,
3948                                           &data_msg->destination.hashPubKey);
3949   /* Is the selected peer in the tunnel? */
3950   if (NULL == pi)
3951   {
3952     GNUNET_break (0);
3953     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3954     return;
3955   }
3956
3957   /* Ok, everything is correct, send the message
3958    * (pretend we got it from a mesh peer)
3959    */
3960   {
3961     char buf[ntohs (message->size)];
3962     struct GNUNET_MESH_Unicast *copy;
3963
3964     /* Work around const limitation */
3965     copy = (struct GNUNET_MESH_Unicast *) buf;
3966     memcpy (buf, data_msg, size);
3967     copy->oid = my_full_id;
3968     copy->tid = htonl (t->id.tid);
3969     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3970                 "MESH:   calling generic handler...\n");
3971     handle_mesh_data_unicast (NULL, &my_full_id, &copy->header, NULL, 0);
3972   }
3973   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3974   return;
3975 }
3976
3977
3978 /**
3979  * Handler for client traffic directed to the origin
3980  *
3981  * @param cls closure
3982  * @param client identification of the client
3983  * @param message the actual message
3984  */
3985 static void
3986 handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client,
3987                         const struct GNUNET_MessageHeader *message)
3988 {
3989   struct GNUNET_MESH_ToOrigin *data_msg;
3990   struct GNUNET_PeerIdentity id;
3991   struct MeshClient *c;
3992   struct MeshTunnel *t;
3993   MESH_TunnelNumber tid;
3994   size_t size;
3995
3996   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3997               "MESH: Got a ToOrigin request from a client!\n");
3998
3999   /* Sanity check for client registration */
4000   if (NULL == (c = client_get (client)))
4001   {
4002     GNUNET_break (0);
4003     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4004     return;
4005   }
4006   data_msg = (struct GNUNET_MESH_ToOrigin *) message;
4007   /* Sanity check for message size */
4008   size = ntohs (message->size);
4009   if (sizeof (struct GNUNET_MESH_ToOrigin) +
4010       sizeof (struct GNUNET_MessageHeader) > size)
4011   {
4012     GNUNET_break (0);
4013     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4014     return;
4015   }
4016
4017   /* Tunnel exists? */
4018   tid = ntohl (data_msg->tid);
4019   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
4020   {
4021     GNUNET_break (0);
4022     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4023     return;
4024   }
4025   t = tunnel_get_by_local_id (c, tid);
4026   if (NULL == t)
4027   {
4028     GNUNET_break (0);
4029     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4030     return;
4031   }
4032
4033   /*  It shouldn't be a local tunnel.  */
4034   if (NULL != t->client)
4035   {
4036     GNUNET_break (0);
4037     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4038     return;
4039   }
4040   GNUNET_PEER_resolve (t->id.oid, &id);
4041
4042   /* Ok, everything is correct, send the message
4043    * (pretend we got it from a mesh peer)
4044    */
4045   {
4046     char buf[ntohs (message->size)];
4047     struct GNUNET_MESH_ToOrigin *copy;
4048
4049     /* Work around const limitation */
4050     copy = (struct GNUNET_MESH_ToOrigin *) buf;
4051     memcpy (buf, data_msg, size);
4052     copy->oid = id;
4053     copy->tid = htonl (t->id.tid);
4054     copy->sender = my_full_id;
4055     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4056                 "MESH:   calling generic handler...\n");
4057     handle_mesh_data_to_orig (NULL, &my_full_id, &copy->header, NULL, 0);
4058   }
4059   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4060   return;
4061 }
4062
4063
4064 /**
4065  * Handler for client traffic directed to all peers in a tunnel
4066  *
4067  * @param cls closure
4068  * @param client identification of the client
4069  * @param message the actual message
4070  */
4071 static void
4072 handle_local_multicast (void *cls, struct GNUNET_SERVER_Client *client,
4073                         const struct GNUNET_MessageHeader *message)
4074 {
4075   struct MeshClient *c;
4076   struct MeshTunnel *t;
4077   struct GNUNET_MESH_Multicast *data_msg;
4078   MESH_TunnelNumber tid;
4079
4080   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4081               "MESH: Got a multicast request from a client!\n");
4082
4083   /* Sanity check for client registration */
4084   if (NULL == (c = client_get (client)))
4085   {
4086     GNUNET_break (0);
4087     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4088     return;
4089   }
4090   data_msg = (struct GNUNET_MESH_Multicast *) message;
4091   /* Sanity check for message size */
4092   if (sizeof (struct GNUNET_MESH_Multicast) +
4093       sizeof (struct GNUNET_MessageHeader) > ntohs (data_msg->header.size))
4094   {
4095     GNUNET_break (0);
4096     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4097     return;
4098   }
4099
4100   /* Tunnel exists? */
4101   tid = ntohl (data_msg->tid);
4102   t = tunnel_get_by_local_id (c, tid);
4103   if (NULL == t)
4104   {
4105     GNUNET_break (0);
4106     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4107     return;
4108   }
4109
4110   /* Does client own tunnel? */
4111   if (t->client->handle != client)
4112   {
4113     GNUNET_break (0);
4114     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4115     return;
4116   }
4117
4118   {
4119     char buf[ntohs (message->size)];
4120     struct GNUNET_MESH_Multicast *copy;
4121
4122     copy = (struct GNUNET_MESH_Multicast *) buf;
4123     memcpy (buf, message, ntohs (message->size));
4124     copy->oid = my_full_id;
4125     copy->tid = htonl (t->id.tid);
4126     copy->ttl = htonl (DEFAULT_TTL);
4127     copy->mid = htonl (t->mid + 1);
4128     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4129                 "MESH:   calling generic handler...\n");
4130     handle_mesh_data_multicast (client, &my_full_id, &copy->header, NULL, 0);
4131   }
4132
4133   /* receive done gets called when last copy is sent to a neighbor */
4134   return;
4135 }
4136
4137 /**
4138  * Functions to handle messages from clients
4139  */
4140 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
4141   {&handle_local_new_client, NULL,
4142    GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
4143   {&handle_local_tunnel_create, NULL,
4144    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE,
4145    sizeof (struct GNUNET_MESH_TunnelMessage)},
4146   {&handle_local_tunnel_destroy, NULL,
4147    GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY,
4148    sizeof (struct GNUNET_MESH_TunnelMessage)},
4149   {&handle_local_connect_add, NULL,
4150    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD,
4151    sizeof (struct GNUNET_MESH_PeerControl)},
4152   {&handle_local_connect_del, NULL,
4153    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL,
4154    sizeof (struct GNUNET_MESH_PeerControl)},
4155   {&handle_local_connect_by_type, NULL,
4156    GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE,
4157    sizeof (struct GNUNET_MESH_ConnectPeerByType)},
4158   {&handle_local_unicast, NULL,
4159    GNUNET_MESSAGE_TYPE_MESH_UNICAST, 0},
4160   {&handle_local_to_origin, NULL,
4161    GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN, 0},
4162   {&handle_local_multicast, NULL,
4163    GNUNET_MESSAGE_TYPE_MESH_MULTICAST, 0},
4164   {NULL, NULL, 0, 0}
4165 };
4166
4167
4168 /**
4169  * To be called on core init/fail.
4170  *
4171  * @param cls service closure
4172  * @param server handle to the server for this service
4173  * @param identity the public identity of this peer
4174  */
4175 static void
4176 core_init (void *cls, struct GNUNET_CORE_Handle *server,
4177            const struct GNUNET_PeerIdentity *identity)
4178 {
4179   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Core init\n");
4180   core_handle = server;
4181   if (0 != memcmp (identity, &my_full_id, sizeof (my_full_id)) ||
4182       NULL == server)
4183   {
4184     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("MESH: Wrong CORE service\n"));
4185     GNUNET_SCHEDULER_shutdown ();
4186   }
4187   return;
4188 }
4189
4190 /**
4191  * Method called whenever a given peer connects.
4192  *
4193  * @param cls closure
4194  * @param peer peer identity this notification is about
4195  * @param atsi performance data for the connection
4196  * @param atsi_count number of records in 'atsi'
4197  */
4198 static void
4199 core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
4200               const struct GNUNET_ATS_Information *atsi,
4201               unsigned int atsi_count)
4202 {
4203   struct MeshPeerInfo *peer_info;
4204   struct MeshPeerPath *path;
4205
4206 #if MESH_DEBUG_CONNECTION
4207   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer connected\n");
4208   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n",
4209               GNUNET_i2s (&my_full_id));
4210 #endif
4211   peer_info = peer_info_get (peer);
4212   if (myid == peer_info->id)
4213   {
4214 #if MESH_DEBUG_CONNECTION
4215     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
4216 #endif
4217     return;
4218   }
4219 #if MESH_DEBUG_CONNECTION
4220   else
4221   {
4222     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      %s\n", GNUNET_i2s (peer));
4223   }
4224 #endif
4225   path = path_new (2);
4226   path->peers[0] = myid;
4227   path->peers[1] = peer_info->id;
4228   GNUNET_PEER_change_rc (myid, 1);
4229   GNUNET_PEER_change_rc (peer_info->id, 1);
4230   peer_info_add_path (peer_info, path, GNUNET_YES);
4231   return;
4232 }
4233
4234 /**
4235  * Method called whenever a peer disconnects.
4236  *
4237  * @param cls closure
4238  * @param peer peer identity this notification is about
4239  */
4240 static void
4241 core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
4242 {
4243   struct MeshPeerInfo *pi;
4244   unsigned int i;
4245
4246 #if MESH_DEBUG_CONNECTION
4247   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: Peer disconnected\n");
4248 #endif
4249   pi = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
4250   if (NULL == pi)
4251   {
4252     GNUNET_break (0);
4253     return;
4254   }
4255   for (i = 0; i < CORE_QUEUE_SIZE; i++)
4256   {
4257     /* TODO: notify that the transmission failed */
4258     peer_info_cancel_transmission (pi, i);
4259   }
4260   peer_info_remove_path (pi, pi->id, myid);
4261 #if MESH_DEBUG_CONNECTION
4262   if (myid == pi->id)
4263   {
4264     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH:      (self)\n");
4265   }
4266 #endif
4267   return;
4268 }
4269
4270
4271 /******************************************************************************/
4272 /************************      MAIN FUNCTIONS      ****************************/
4273 /******************************************************************************/
4274
4275 /**
4276  * Iterator over tunnel hash map entries to destroy the tunnel during shutdown.
4277  *
4278  * @param cls closure
4279  * @param key current key code
4280  * @param value value in the hash map
4281  * @return GNUNET_YES if we should continue to iterate,
4282  *         GNUNET_NO if not.
4283  */
4284 static int
4285 shutdown_tunnel (void *cls, const GNUNET_HashCode * key, void *value)
4286 {
4287   struct MeshTunnel *t = value;
4288
4289   tunnel_destroy (t);
4290   return GNUNET_YES;
4291 }
4292
4293 /**
4294  * Iterator over peer hash map entries to destroy the tunnel during shutdown.
4295  *
4296  * @param cls closure
4297  * @param key current key code
4298  * @param value value in the hash map
4299  * @return GNUNET_YES if we should continue to iterate,
4300  *         GNUNET_NO if not.
4301  */
4302 static int
4303 shutdown_peer (void *cls, const GNUNET_HashCode * key, void *value)
4304 {
4305   struct MeshPeerInfo *p = value;
4306
4307   peer_info_destroy (p);
4308   return GNUNET_YES;
4309 }
4310
4311 /**
4312  * Task run during shutdown.
4313  *
4314  * @param cls unused
4315  * @param tc unused
4316  */
4317 static void
4318 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4319 {
4320   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shutting down\n");
4321   /* TODO: destroy tunnels? */
4322   if (core_handle != NULL)
4323   {
4324     GNUNET_CORE_disconnect (core_handle);
4325     core_handle = NULL;
4326   }
4327   GNUNET_CONTAINER_multihashmap_iterate (tunnels, &shutdown_tunnel, NULL);
4328   GNUNET_CONTAINER_multihashmap_iterate (peers, &shutdown_peer, NULL);
4329   if (dht_handle != NULL)
4330   {
4331     GNUNET_DHT_disconnect (dht_handle);
4332     dht_handle = NULL;
4333   }
4334   if (nc != NULL)
4335   {
4336     GNUNET_SERVER_notification_context_destroy (nc);
4337     nc = NULL;
4338   }
4339   if (GNUNET_SCHEDULER_NO_TASK != announce_id_task)
4340   {
4341     GNUNET_SCHEDULER_cancel (announce_id_task);
4342     announce_id_task = GNUNET_SCHEDULER_NO_TASK;
4343   }
4344   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: shut down\n");
4345 }
4346
4347 /**
4348  * Process mesh requests.
4349  *
4350  * @param cls closure
4351  * @param server the initialized server
4352  * @param c configuration to use
4353  */
4354 static void
4355 run (void *cls, struct GNUNET_SERVER_Handle *server,
4356      const struct GNUNET_CONFIGURATION_Handle *c)
4357 {
4358   struct MeshPeerInfo *peer;
4359   struct MeshPeerPath *p;
4360   char *keyfile;
4361
4362   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: starting to run\n");
4363   server_handle = server;
4364   core_handle = GNUNET_CORE_connect (c, /* Main configuration */
4365                                      CORE_QUEUE_SIZE,   /* queue size */
4366                                      NULL,      /* Closure passed to MESH functions */
4367                                      &core_init,        /* Call core_init once connected */
4368                                      &core_connect,     /* Handle connects */
4369                                      &core_disconnect,  /* remove peers on disconnects */
4370                                      NULL,      /* Don't notify about all incoming messages */
4371                                      GNUNET_NO, /* For header only in notification */
4372                                      NULL,      /* Don't notify about all outbound messages */
4373                                      GNUNET_NO, /* For header-only out notification */
4374                                      core_handlers);    /* Register these handlers */
4375
4376   if (core_handle == NULL)
4377   {
4378     GNUNET_break (0);
4379     GNUNET_SCHEDULER_shutdown ();
4380     return;
4381   }
4382
4383   if (GNUNET_OK !=
4384       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
4385                                                &keyfile))
4386   {
4387     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4388                 _
4389                 ("Mesh service is lacking key configuration settings.  Exiting.\n"));
4390     GNUNET_SCHEDULER_shutdown ();
4391     return;
4392   }
4393   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
4394   GNUNET_free (keyfile);
4395   if (my_private_key == NULL)
4396   {
4397     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4398                 _("Mesh service could not access hostkey.  Exiting.\n"));
4399     GNUNET_SCHEDULER_shutdown ();
4400     return;
4401   }
4402   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
4403   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
4404                       &my_full_id.hashPubKey);
4405   myid = GNUNET_PEER_intern (&my_full_id);
4406
4407 // //   transport_handle = GNUNET_TRANSPORT_connect(c,
4408 // //                                               &my_full_id,
4409 // //                                               NULL,
4410 // //                                               NULL,
4411 // //                                               NULL,
4412 // //                                               NULL);
4413
4414   dht_handle = GNUNET_DHT_connect (c, 64);
4415   if (dht_handle == NULL)
4416   {
4417     GNUNET_break (0);
4418   }
4419
4420   next_tid = 0;
4421   next_local_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
4422
4423   tunnels = GNUNET_CONTAINER_multihashmap_create (32);
4424   incoming_tunnels = GNUNET_CONTAINER_multihashmap_create (32);
4425   peers = GNUNET_CONTAINER_multihashmap_create (32);
4426   applications = GNUNET_CONTAINER_multihashmap_create (32);
4427   types = GNUNET_CONTAINER_multihashmap_create (32);
4428
4429   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
4430   nc = GNUNET_SERVER_notification_context_create (server_handle,
4431                                                   LOCAL_QUEUE_SIZE);
4432   GNUNET_SERVER_disconnect_notify (server_handle,
4433                                    &handle_local_client_disconnect, NULL);
4434
4435
4436   clients = NULL;
4437   clients_tail = NULL;
4438 #if MESH_DEBUG
4439   next_client_id = 0;
4440 #endif
4441
4442   announce_applications_task = GNUNET_SCHEDULER_NO_TASK;
4443   announce_id_task = GNUNET_SCHEDULER_add_now (&announce_id, cls);
4444
4445   /* Create a peer_info for the local peer */
4446   peer = peer_info_get (&my_full_id);
4447   p = path_new (1);
4448   p->peers[0] = myid;
4449   GNUNET_PEER_change_rc (myid, 1);
4450   peer_info_add_path (peer, p, GNUNET_YES);
4451
4452   /* Scheduled the task to clean up when shutdown is called */
4453   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
4454                                 NULL);
4455
4456   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: end of run()\n");
4457 }
4458
4459 /**
4460  * The main function for the mesh service.
4461  *
4462  * @param argc number of arguments from the command line
4463  * @param argv command line arguments
4464  * @return 0 ok, 1 on error
4465  */
4466 int
4467 main (int argc, char *const *argv)
4468 {
4469   int ret;
4470
4471   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main()\n");
4472   ret =
4473       (GNUNET_OK ==
4474        GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
4475                            NULL)) ? 0 : 1;
4476   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MESH: main() END\n");
4477
4478   return ret;
4479 }