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