- not a debug message
[oweals/gnunet.git] / src / mesh / mesh_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 Christian Grothoff (and other contributing authors)
4      GNUnet is free software; you can redistribute it and/or modify
5      it under the terms of the GNU General Public License as published
6      by the Free Software Foundation; either version 3, or (at your
7      option) any later version.
8      GNUnet is distributed in the hope that it will be useful, but
9      WITHOUT ANY WARRANTY; without even the implied warranty of
10      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11      General Public License for more details.
12      You should have received a copy of the GNU General Public License
13      along with GNUnet; see the file COPYING.  If not, write to the
14      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
15      Boston, MA 02111-1307, USA.
16 */
17
18 /**
19  * @file mesh/mesh_api.c
20  * @brief mesh api: client implementation of mesh service
21  * @author Bartlomiej Polot
22  *
23  * STRUCTURE:
24  * - CONSTANTS
25  * - DATA STRUCTURES
26  * - DECLARATIONS
27  * - AUXILIARY FUNCTIONS
28  * - RECEIVE HANDLERS
29  * - SEND FUNCTIONS
30  * - API CALL DEFINITIONS
31  *
32  * TODO: add regex to reconnect
33  */
34 #include "platform.h"
35 #include "gnunet_common.h"
36 #include "gnunet_client_lib.h"
37 #include "gnunet_util_lib.h"
38 #include "gnunet_peer_lib.h"
39 #include "gnunet_mesh_service.h"
40 #include "mesh.h"
41 #include "mesh_protocol.h"
42
43 #define LOG(kind,...) GNUNET_log_from (kind, "mesh-api",__VA_ARGS__)
44
45
46 /******************************************************************************/
47 /************************        CONSTANTS         ****************************/
48 /******************************************************************************/
49
50 #define HIGH_PID 0xFFFF0000
51 #define LOW_PID 0x0000FFFF
52
53 #define PID_OVERFLOW(pid, max) (pid > HIGH_PID && max < LOW_PID)
54
55 /******************************************************************************/
56 /************************      DATA STRUCTURES     ****************************/
57 /******************************************************************************/
58
59 /**
60  * Transmission queue to the service
61  */
62 struct GNUNET_MESH_TransmitHandle
63 {
64
65     /**
66      * Double Linked list
67      */
68   struct GNUNET_MESH_TransmitHandle *next;
69
70     /**
71      * Double Linked list
72      */
73   struct GNUNET_MESH_TransmitHandle *prev;
74
75     /**
76      * Tunnel this message is sent on / for (may be NULL for control messages).
77      */
78   struct GNUNET_MESH_Tunnel *tunnel;
79
80     /**
81      * Callback to obtain the message to transmit, or NULL if we
82      * got the message in 'data'.  Notice that messages built
83      * by 'notify' need to be encapsulated with information about
84      * the 'target'.
85      */
86   GNUNET_CONNECTION_TransmitReadyNotify notify;
87
88     /**
89      * Closure for 'notify'
90      */
91   void *notify_cls;
92
93     /**
94      * How long is this message valid.  Once the timeout has been
95      * reached, the message must no longer be sent.  If this
96      * is a message with a 'notify' callback set, the 'notify'
97      * function should be called with 'buf' NULL and size 0.
98      */
99   struct GNUNET_TIME_Absolute timeout;
100
101     /**
102      * Task triggering a timeout, can be NO_TASK if the timeout is FOREVER.
103      */
104   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
105
106     /**
107      * Target of the message, 0 for multicast.  This field
108      * is only valid if 'notify' is non-NULL.
109      */
110   GNUNET_PEER_Id target;
111
112     /**
113      * Size of 'data' -- or the desired size of 'notify' if 'data' is NULL.
114      */
115   size_t size;
116 };
117
118
119 /**
120  * Opaque handle to the service.
121  */
122 struct GNUNET_MESH_Handle
123 {
124
125     /**
126      * Handle to the server connection, to send messages later
127      */
128   struct GNUNET_CLIENT_Connection *client;
129
130     /**
131      * Set of handlers used for processing incoming messages in the tunnels
132      */
133   const struct GNUNET_MESH_MessageHandler *message_handlers;
134
135     /**
136      * Set of applications that should be claimed to be offered at this node.
137      * Note that this is just informative, the appropiate handlers must be
138      * registered independently and the mapping is up to the developer of the
139      * client application.
140      */
141   const GNUNET_MESH_ApplicationType *applications;
142
143     /**
144      * Double linked list of the tunnels this client is connected to, head.
145      */
146   struct GNUNET_MESH_Tunnel *tunnels_head;
147
148     /**
149      * Double linked list of the tunnels this client is connected to, tail.
150      */
151   struct GNUNET_MESH_Tunnel *tunnels_tail;
152
153     /**
154      * Callback for inbound tunnel creation
155      */
156   GNUNET_MESH_InboundTunnelNotificationHandler *new_tunnel;
157
158     /**
159      * Callback for inbound tunnel disconnection
160      */
161   GNUNET_MESH_TunnelEndHandler *cleaner;
162
163     /**
164      * Handle to cancel pending transmissions in case of disconnection
165      */
166   struct GNUNET_CLIENT_TransmitHandle *th;
167
168     /**
169      * Closure for all the handlers given by the client
170      */
171   void *cls;
172
173     /**
174      * Messages to send to the service, head.
175      */
176   struct GNUNET_MESH_TransmitHandle *th_head;
177
178     /**
179      * Messages to send to the service, tail.
180      */
181   struct GNUNET_MESH_TransmitHandle *th_tail;
182
183     /**
184      * tid of the next tunnel to create (to avoid reusing IDs often)
185      */
186   MESH_TunnelNumber next_tid;
187
188     /**
189      * Number of handlers in the handlers array.
190      */
191   unsigned int n_handlers;
192
193     /**
194      * Number of applications in the applications array.
195      */
196   unsigned int n_applications;
197
198     /**
199      * Have we started the task to receive messages from the service
200      * yet? We do this after we send the 'MESH_LOCAL_CONNECT' message.
201      */
202   int in_receive;
203
204   /**
205    * Configuration given by the client, in case of reconnection
206    */
207   const struct GNUNET_CONFIGURATION_Handle *cfg;
208
209   /**
210    * Time to the next reconnect in case one reconnect fails
211    */
212   struct GNUNET_TIME_Relative reconnect_time;
213   
214   /**
215    * Task for trying to reconnect.
216    */
217   GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
218 };
219
220
221 /**
222  * Description of a peer
223  */
224 struct GNUNET_MESH_Peer
225 {
226     /**
227      * ID of the peer in short form
228      */
229   GNUNET_PEER_Id id;
230
231   /**
232    * Tunnel this peer belongs to
233    */
234   struct GNUNET_MESH_Tunnel *t;
235
236   /**
237    * Flag indicating whether service has informed about its connection
238    */
239   int connected;
240
241 };
242
243
244 /**
245  * Opaque handle to a tunnel.
246  */
247 struct GNUNET_MESH_Tunnel
248 {
249
250     /**
251      * DLL next
252      */
253   struct GNUNET_MESH_Tunnel *next;
254
255     /**
256      * DLL prev
257      */
258   struct GNUNET_MESH_Tunnel *prev;
259
260     /**
261      * Callback to execute when peers connect to the tunnel
262      */
263   GNUNET_MESH_PeerConnectHandler connect_handler;
264
265     /**
266      * Callback to execute when peers disconnect from the tunnel
267      */
268   GNUNET_MESH_PeerDisconnectHandler disconnect_handler;
269
270     /**
271      * Closure for the connect/disconnect handlers
272      */
273   void *cls;
274
275     /**
276      * Handle to the mesh this tunnel belongs to
277      */
278   struct GNUNET_MESH_Handle *mesh;
279
280     /**
281      * Local ID of the tunnel
282      */
283   MESH_TunnelNumber tid;
284
285     /**
286      * Owner of the tunnel. 0 if the tunnel is the local client.
287      */
288   GNUNET_PEER_Id owner;
289
290     /**
291      * All peers added to the tunnel
292      */
293   struct GNUNET_MESH_Peer **peers;
294
295   /**
296    * List of application types that have been requested for this tunnel
297    */
298   GNUNET_MESH_ApplicationType *apps;
299
300   /**
301    * Any data the caller wants to put in here
302    */
303   void *ctx;
304
305   /**
306      * Number of peers added to the tunnel
307      */
308   unsigned int npeers;
309
310     /**
311      * Size of packet queued in this tunnel
312      */
313   unsigned int packet_size;
314
315     /**
316      * Number of applications requested this tunnel
317      */
318   unsigned int napps;
319
320     /**
321      * Is the tunnel throttled to the slowest peer?
322      */
323   int speed_min;
324
325     /**
326      * Is the tunnel allowed to buffer?
327      */
328   int buffering;
329
330     /**
331      * Next packet PID.
332      */
333   uint32_t pid;
334
335     /**
336      * Maximum allowed PID.
337      */
338   uint32_t max_pid;
339
340
341 };
342
343
344 /******************************************************************************/
345 /***********************         DECLARATIONS         *************************/
346 /******************************************************************************/
347
348 /**
349  * Function called to send a message to the service.
350  * "buf" will be NULL and "size" zero if the socket was closed for writing in
351  * the meantime.
352  *
353  * @param cls closure, the mesh handle
354  * @param size number of bytes available in buf
355  * @param buf where the callee should write the connect message
356  * @return number of bytes written to buf
357  */
358 static size_t
359 send_callback (void *cls, size_t size, void *buf);
360
361
362 /******************************************************************************/
363 /***********************     AUXILIARY FUNCTIONS      *************************/
364 /******************************************************************************/
365
366 /**
367  * Check if transmission is a payload packet.
368  *
369  * @param th Transmission handle.
370  *
371  * @return GNUNET_YES if it is a payload packet,
372  *         GNUNET_NO if it is a mesh management packet.
373  */
374 static int
375 th_is_payload (struct GNUNET_MESH_TransmitHandle *th)
376 {
377   return (th->notify != NULL) ? GNUNET_YES : GNUNET_NO;
378 }
379
380
381 /**
382  * Get the tunnel handler for the tunnel specified by id from the given handle
383  * @param h Mesh handle
384  * @param tid ID of the wanted tunnel
385  * @return handle to the required tunnel or NULL if not found
386  */
387 static struct GNUNET_MESH_Tunnel *
388 retrieve_tunnel (struct GNUNET_MESH_Handle *h, MESH_TunnelNumber tid)
389 {
390   struct GNUNET_MESH_Tunnel *t;
391
392   t = h->tunnels_head;
393   while (t != NULL)
394   {
395     if (t->tid == tid)
396       return t;
397     t = t->next;
398   }
399   return NULL;
400 }
401
402
403 /**
404  * Create a new tunnel and insert it in the tunnel list of the mesh handle
405  * @param h Mesh handle
406  * @param tid desired tid of the tunnel, 0 to assign one automatically
407  * @return handle to the created tunnel
408  */
409 static struct GNUNET_MESH_Tunnel *
410 create_tunnel (struct GNUNET_MESH_Handle *h, MESH_TunnelNumber tid)
411 {
412   struct GNUNET_MESH_Tunnel *t;
413
414   t = GNUNET_malloc (sizeof (struct GNUNET_MESH_Tunnel));
415   GNUNET_CONTAINER_DLL_insert (h->tunnels_head, h->tunnels_tail, t);
416   t->mesh = h;
417   if (0 == tid)
418   {
419     t->tid = h->next_tid;
420     while (NULL != retrieve_tunnel (h, h->next_tid))
421     {
422       h->next_tid++;
423       h->next_tid &= ~GNUNET_MESH_LOCAL_TUNNEL_ID_SERV;
424       h->next_tid |= GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
425     }
426   }
427   else
428   {
429     t->tid = tid;
430   }
431   return t;
432 }
433
434
435 /**
436  * Destroy the specified tunnel.
437  * - Destroys all peers, calling the disconnect callback on each if needed
438  * - Cancels all outgoing traffic for that tunnel, calling respective notifys
439  * - Calls cleaner if tunnel was inbound
440  * - Frees all memory used
441  *
442  * @param t Pointer to the tunnel.
443  * @param call_cleaner Whether to call the cleaner handler.
444  *
445  * @return Handle to the required tunnel or NULL if not found.
446  */
447 static void
448 destroy_tunnel (struct GNUNET_MESH_Tunnel *t, int call_cleaner)
449 {
450   struct GNUNET_MESH_Handle *h;
451   struct GNUNET_PeerIdentity pi;
452   struct GNUNET_MESH_TransmitHandle *th;
453   struct GNUNET_MESH_TransmitHandle *next;
454   unsigned int i;
455
456   LOG (GNUNET_ERROR_TYPE_DEBUG, "destroy_tunnel %X\n", t->tid);
457
458   if (NULL == t)
459   {
460     GNUNET_break (0);
461     return;
462   }
463   h = t->mesh;
464
465   /* disconnect all peers */
466   GNUNET_CONTAINER_DLL_remove (h->tunnels_head, h->tunnels_tail, t);
467   for (i = 0; i < t->npeers; i++)
468   {
469     if ( (NULL != t->disconnect_handler) && t->peers[i]->connected)
470     {
471       GNUNET_PEER_resolve (t->peers[i]->id, &pi);
472       t->disconnect_handler (t->cls, &pi);
473     }
474     GNUNET_PEER_change_rc (t->peers[i]->id, -1);
475     GNUNET_free (t->peers[i]);
476   }
477
478   /* signal tunnel destruction */
479   if ( (NULL != h->cleaner) && (0 != t->owner) && (GNUNET_YES == call_cleaner) )
480     h->cleaner (h->cls, t, t->ctx);
481
482   /* check that clients did not leave messages behind in the queue */
483   for (th = h->th_head; NULL != th; th = next)
484   {
485     next = th->next;
486     if (th->tunnel != t)
487       continue;
488     /* Clients should have aborted their requests already.
489      * Management traffic should be ok, as clients can't cancel that */
490     GNUNET_break (GNUNET_NO == th_is_payload(th));
491     GNUNET_CONTAINER_DLL_remove (h->th_head, h->th_tail, th);
492
493     /* clean up request */
494     if (GNUNET_SCHEDULER_NO_TASK != th->timeout_task)
495       GNUNET_SCHEDULER_cancel (th->timeout_task);
496     GNUNET_free (th);    
497   }
498
499   /* if there are no more pending requests with mesh service, cancel active request */
500   /* Note: this should be unnecessary... */
501   if ( (NULL == h->th_head) && (NULL != h->th))
502   {
503     GNUNET_CLIENT_notify_transmit_ready_cancel (h->th);
504     h->th = NULL;
505   }
506
507
508   if (t->npeers > 0)
509     GNUNET_free (t->peers);
510   if (0 != t->owner)
511     GNUNET_PEER_change_rc (t->owner, -1);
512   if (0 != t->napps && t->apps)
513     GNUNET_free (t->apps);
514   GNUNET_free (t);
515   return;
516 }
517
518
519 /**
520  * Get the peer descriptor for the peer with id from the given tunnel
521  * @param t Tunnel handle
522  * @param id Short form ID of the wanted peer
523  * @return handle to the requested peer or NULL if not found
524  */
525 static struct GNUNET_MESH_Peer *
526 retrieve_peer (struct GNUNET_MESH_Tunnel *t, GNUNET_PEER_Id id)
527 {
528   unsigned int i;
529
530   for (i = 0; i < t->npeers; i++)
531     if (t->peers[i]->id == id)
532       return t->peers[i];
533   return NULL;
534 }
535
536
537 /**
538  * Add a peer into a tunnel
539  * @param t Tunnel handle
540  * @param pi Full ID of the new peer
541  * @return handle to the newly created peer
542  */
543 static struct GNUNET_MESH_Peer *
544 add_peer_to_tunnel (struct GNUNET_MESH_Tunnel *t,
545                     const struct GNUNET_PeerIdentity *pi)
546 {
547   struct GNUNET_MESH_Peer *p;
548   GNUNET_PEER_Id id;
549
550   if (0 != t->owner)
551   {
552     GNUNET_break (0);
553     return NULL;
554   }
555   id = GNUNET_PEER_intern (pi);
556
557   p = GNUNET_malloc (sizeof (struct GNUNET_MESH_Peer));
558   p->id = id;
559   p->t = t;
560   GNUNET_array_append (t->peers, t->npeers, p);
561   return p;
562 }
563
564
565 /**
566  * Remove a peer from a tunnel
567  * @param p Peer handle
568  */
569 static void
570 remove_peer_from_tunnel (struct GNUNET_MESH_Peer *p)
571 {
572   unsigned int i;
573
574   for (i = 0; i < p->t->npeers; i++)
575   {
576     if (p->t->peers[i] == p)
577       break;
578   }
579   if (i == p->t->npeers)
580   {
581     GNUNET_break (0);
582     return;
583   }
584   p->t->peers[i] = p->t->peers[p->t->npeers - 1];
585   GNUNET_array_grow (p->t->peers, p->t->npeers, p->t->npeers - 1);
586 }
587
588
589 /**
590  * Notify client that the transmission has timed out
591  * @param cls closure
592  * @param tc task context
593  */
594 static void
595 timeout_transmission (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
596 {
597   struct GNUNET_MESH_TransmitHandle *th = cls;
598   struct GNUNET_MESH_Handle *mesh;
599
600   mesh = th->tunnel->mesh;
601   GNUNET_CONTAINER_DLL_remove (mesh->th_head, mesh->th_tail, th);
602   if (GNUNET_YES == th_is_payload (th))
603     th->notify (th->notify_cls, 0, NULL);
604   GNUNET_free (th);
605   if ((NULL == mesh->th_head) && (NULL != mesh->th))
606   {
607     /* queue empty, no point in asking for transmission */
608     GNUNET_CLIENT_notify_transmit_ready_cancel (mesh->th);
609     mesh->th = NULL;
610   }
611 }
612
613
614 /**
615  * Add a transmit handle to the transmission queue by priority and set the
616  * timeout if needed.
617  *
618  * @param h mesh handle with the queue head and tail
619  * @param th handle to the packet to be transmitted
620  */
621 static void
622 add_to_queue (struct GNUNET_MESH_Handle *h,
623               struct GNUNET_MESH_TransmitHandle *th)
624 {
625   struct GNUNET_MESH_TransmitHandle *p;
626
627   p = h->th_head;
628   while ((NULL != p))
629     p = p->next;
630   if (NULL == p)
631     p = h->th_tail;
632   else
633     p = p->prev;
634   GNUNET_CONTAINER_DLL_insert_after (h->th_head, h->th_tail, p, th);
635   if (GNUNET_TIME_UNIT_FOREVER_ABS.abs_value == th->timeout.abs_value)
636     return;
637   th->timeout_task =
638       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
639                                     (th->timeout), &timeout_transmission, th);
640 }
641
642
643 /**
644  * Auxiliary function to send an already constructed packet to the service.
645  * Takes care of creating a new queue element, copying the message and
646  * calling the tmt_rdy function if necessary.
647  *
648  * @param h mesh handle
649  * @param msg message to transmit
650  * @param tunnel tunnel this send is related to (NULL if N/A)
651  */
652 static void
653 send_packet (struct GNUNET_MESH_Handle *h,
654              const struct GNUNET_MessageHeader *msg,
655              struct GNUNET_MESH_Tunnel *tunnel);
656
657
658 /**
659  * Reconnect callback: tries to reconnect again after a failer previous
660  * reconnecttion
661  * @param cls closure (mesh handle)
662  * @param tc task context
663  */
664 static void
665 reconnect_cbk (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
666
667
668 /**
669  * Send a connect packet to the service with the applications and types
670  * requested by the user.
671  *
672  * @param h The mesh handle.
673  *
674  */
675 static void
676 send_connect (struct GNUNET_MESH_Handle *h)
677 {
678   size_t size;
679
680   size = sizeof (struct GNUNET_MESH_ClientConnect);
681   size += h->n_applications * sizeof (GNUNET_MESH_ApplicationType);
682   size += h->n_handlers * sizeof (uint16_t);
683   {
684     char buf[size] GNUNET_ALIGN;
685     struct GNUNET_MESH_ClientConnect *msg;
686     GNUNET_MESH_ApplicationType *apps;
687     uint16_t napps;
688     uint16_t *types;
689     uint16_t ntypes;
690
691     /* build connection packet */
692     msg = (struct GNUNET_MESH_ClientConnect *) buf;
693     msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT);
694     msg->header.size = htons (size);
695     apps = (GNUNET_MESH_ApplicationType *) &msg[1];
696     for (napps = 0; napps < h->n_applications; napps++)
697     {
698       apps[napps] = htonl (h->applications[napps]);
699       LOG (GNUNET_ERROR_TYPE_DEBUG, " app %u\n", h->applications[napps]);
700     }
701     types = (uint16_t *) & apps[napps];
702     for (ntypes = 0; ntypes < h->n_handlers; ntypes++)
703       types[ntypes] = htons (h->message_handlers[ntypes].type);
704     msg->applications = htons (napps);
705     msg->types = htons (ntypes);
706     LOG (GNUNET_ERROR_TYPE_DEBUG,
707          "Sending %lu bytes long message %d types and %d apps\n",
708          ntohs (msg->header.size), ntypes, napps);
709     send_packet (h, &msg->header, NULL);
710   }
711 }
712
713
714 /**
715  * Reconnect to the service, retransmit all infomation to try to restore the
716  * original state.
717  *
718  * @param h handle to the mesh
719  *
720  * @return GNUNET_YES in case of sucess, GNUNET_NO otherwise (service down...)
721  */
722 static int
723 do_reconnect (struct GNUNET_MESH_Handle *h)
724 {
725   struct GNUNET_MESH_Tunnel *t;
726   unsigned int i;
727
728   LOG (GNUNET_ERROR_TYPE_DEBUG, "*****************************\n");
729   LOG (GNUNET_ERROR_TYPE_DEBUG, "*******   RECONNECT   *******\n");
730   LOG (GNUNET_ERROR_TYPE_DEBUG, "*****************************\n");
731
732   h->in_receive = GNUNET_NO;
733   /* disconnect */
734   if (NULL != h->th)
735   {
736     GNUNET_CLIENT_notify_transmit_ready_cancel (h->th);
737     h->th = NULL;
738   }
739   if (NULL != h->client)
740   {
741     GNUNET_CLIENT_disconnect (h->client);
742   }
743
744   /* connect again */
745   h->client = GNUNET_CLIENT_connect ("mesh", h->cfg);
746   if (h->client == NULL)
747   {
748     h->reconnect_task = GNUNET_SCHEDULER_add_delayed (h->reconnect_time,
749                                                       &reconnect_cbk, h);
750     h->reconnect_time =
751         GNUNET_TIME_relative_min (GNUNET_TIME_UNIT_SECONDS,
752                                   GNUNET_TIME_relative_multiply
753                                   (h->reconnect_time, 2));
754     LOG (GNUNET_ERROR_TYPE_DEBUG, "  Next retry in %sms\n",
755          GNUNET_TIME_relative_to_string (h->reconnect_time));
756     GNUNET_break (0);
757     return GNUNET_NO;
758   }
759   else
760   {
761     h->reconnect_time = GNUNET_TIME_UNIT_MILLISECONDS;
762   }
763   send_connect (h);
764   /* Rebuild all tunnels */
765   for (t = h->tunnels_head; NULL != t; t = t->next)
766   {
767     struct GNUNET_MESH_TunnelMessage tmsg;
768     struct GNUNET_MESH_PeerControl pmsg;
769
770     if (t->tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
771     {
772       /* Tunnel was created by service (incoming tunnel) */
773       /* TODO: Notify service of missing tunnel, to request
774        * creator to recreate path (find a path to him via DHT?)
775        */
776       continue;
777     }
778     tmsg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
779     tmsg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
780     tmsg.tunnel_id = htonl (t->tid);
781     send_packet (h, &tmsg.header, t);
782
783     pmsg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
784     pmsg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD);
785     pmsg.tunnel_id = htonl (t->tid);
786
787     /* Reconnect all peers */
788     /* If the tunnel was "by type", dont connect individual peers */
789     for (i = 0; i < t->npeers && 0 == t->napps; i++)
790     {
791       GNUNET_PEER_resolve (t->peers[i]->id, &pmsg.peer);
792       if (NULL != t->disconnect_handler && t->peers[i]->connected)
793         t->disconnect_handler (t->cls, &pmsg.peer);
794       send_packet (t->mesh, &pmsg.header, t);
795     }
796     /* Reconnect all types, if any  */
797     for (i = 0; i < t->napps; i++)
798     {
799       struct GNUNET_MESH_ConnectPeerByType msg;
800
801       msg.header.size = htons (sizeof (struct GNUNET_MESH_ConnectPeerByType));
802       msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE);
803       msg.tunnel_id = htonl (t->tid);
804       msg.type = htonl (t->apps[i]);
805       send_packet (t->mesh, &msg.header, t);
806     }
807     if (GNUNET_NO == t->buffering)
808       GNUNET_MESH_tunnel_buffer (t, GNUNET_NO);
809     if (GNUNET_YES == t->speed_min)
810       GNUNET_MESH_tunnel_speed_min (t);
811   }
812   return GNUNET_YES;
813 }
814
815 /**
816  * Reconnect callback: tries to reconnect again after a failer previous
817  * reconnecttion
818  * @param cls closure (mesh handle)
819  * @param tc task context
820  */
821 static void
822 reconnect_cbk (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
823 {
824   struct GNUNET_MESH_Handle *h = cls;
825
826   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
827   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
828     return;
829   do_reconnect (h);
830 }
831
832
833 /**
834  * Reconnect to the service, retransmit all infomation to try to restore the
835  * original state.
836  *
837  * @param h handle to the mesh
838  *
839  * @return GNUNET_YES in case of sucess, GNUNET_NO otherwise (service down...)
840  */
841 static void
842 reconnect (struct GNUNET_MESH_Handle *h)
843 {
844   LOG (GNUNET_ERROR_TYPE_DEBUG, "Requested RECONNECT\n");
845   if (GNUNET_SCHEDULER_NO_TASK == h->reconnect_task)
846     h->reconnect_task = GNUNET_SCHEDULER_add_delayed (h->reconnect_time,
847                                                       &reconnect_cbk, h);
848 }
849
850
851 /******************************************************************************/
852 /***********************      RECEIVE HANDLERS     ****************************/
853 /******************************************************************************/
854
855 /**
856  * Process the new tunnel notification and add it to the tunnels in the handle
857  *
858  * @param h     The mesh handle
859  * @param msg   A message with the details of the new incoming tunnel
860  */
861 static void
862 process_tunnel_created (struct GNUNET_MESH_Handle *h,
863                         const struct GNUNET_MESH_TunnelNotification *msg)
864 {
865   struct GNUNET_MESH_Tunnel *t;
866   MESH_TunnelNumber tid;
867
868   tid = ntohl (msg->tunnel_id);
869   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
870   {
871     GNUNET_break (0);
872     return;
873   }
874   if (NULL != h->new_tunnel)
875   {
876     struct GNUNET_ATS_Information atsi;
877
878     t = create_tunnel (h, tid);
879     t->owner = GNUNET_PEER_intern (&msg->peer);
880     t->npeers = 1;
881     t->peers = GNUNET_malloc (sizeof (struct GNUNET_MESH_Peer *));
882     t->peers[0] = GNUNET_malloc (sizeof (struct GNUNET_MESH_Peer));
883     t->peers[0]->t = t;
884     t->peers[0]->connected = 1;
885     t->peers[0]->id = t->owner;
886     GNUNET_PEER_change_rc (t->owner, 1);
887     t->mesh = h;
888     t->tid = tid;
889     atsi.type = 0;
890     atsi.value = 0;
891     t->ctx = h->new_tunnel (h->cls, t, &msg->peer, &atsi);
892     LOG (GNUNET_ERROR_TYPE_DEBUG, "new incoming tunnel %X\n", t->tid);
893   }
894   else
895   {
896     struct GNUNET_MESH_TunnelMessage d_msg;
897
898     LOG (GNUNET_ERROR_TYPE_DEBUG, "No handler for incoming tunnels\n");
899
900     d_msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
901     d_msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
902     d_msg.tunnel_id = msg->tunnel_id;
903
904     send_packet (h, &d_msg.header, NULL);
905   }
906   return;
907 }
908
909
910 /**
911  * Process the tunnel destroy notification and free associated resources
912  *
913  * @param h     The mesh handle
914  * @param msg   A message with the details of the tunnel being destroyed
915  */
916 static void
917 process_tunnel_destroy (struct GNUNET_MESH_Handle *h,
918                         const struct GNUNET_MESH_TunnelMessage *msg)
919 {
920   struct GNUNET_MESH_Tunnel *t;
921   MESH_TunnelNumber tid;
922
923   tid = ntohl (msg->tunnel_id);
924   t = retrieve_tunnel (h, tid);
925
926   if (NULL == t)
927   {
928     return;
929   }
930   if (0 == t->owner)
931   {
932     GNUNET_break (0);
933   }
934   LOG (GNUNET_ERROR_TYPE_DEBUG, "tunnel %X destroyed\n", t->tid);
935   destroy_tunnel (t, GNUNET_YES);
936   return;
937 }
938
939
940 /**
941  * Process the new peer event and notify the upper level of it
942  *
943  * @param h     The mesh handle
944  * @param msg   A message with the details of the peer event
945  */
946 static void
947 process_peer_event (struct GNUNET_MESH_Handle *h,
948                     const struct GNUNET_MESH_PeerControl *msg)
949 {
950   struct GNUNET_MESH_Tunnel *t;
951   struct GNUNET_MESH_Peer *p;
952   struct GNUNET_ATS_Information atsi;
953   GNUNET_PEER_Id id;
954   uint16_t size;
955
956   LOG (GNUNET_ERROR_TYPE_DEBUG, "processig peer event\n");
957   size = ntohs (msg->header.size);
958   if (size != sizeof (struct GNUNET_MESH_PeerControl))
959   {
960     GNUNET_break (0);
961     return;
962   }
963   t = retrieve_tunnel (h, ntohl (msg->tunnel_id));
964   if (NULL == t)
965   {
966     GNUNET_break (0);
967     return;
968   }
969   id = GNUNET_PEER_search (&msg->peer);
970   if ((p = retrieve_peer (t, id)) == NULL)
971     p = add_peer_to_tunnel (t, &msg->peer);
972   if (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD == ntohs (msg->header.type))
973   {
974     LOG (GNUNET_ERROR_TYPE_DEBUG, "adding peer\n");
975     if (NULL != t->connect_handler)
976     {
977       atsi.type = 0;
978       atsi.value = 0;
979       t->connect_handler (t->cls, &msg->peer, &atsi);
980     }
981     p->connected = 1;
982   }
983   else
984   {
985     LOG (GNUNET_ERROR_TYPE_DEBUG, "removing peer\n");
986     if (NULL != t->disconnect_handler && p->connected)
987     {
988       t->disconnect_handler (t->cls, &msg->peer);
989     }
990     remove_peer_from_tunnel (p);
991     GNUNET_free (p);
992   }
993   LOG (GNUNET_ERROR_TYPE_DEBUG, "processing peer event END\n");
994 }
995
996
997 /**
998  * Process the incoming data packets
999  *
1000  * @param h         The mesh handle
1001  * @param message   A message encapsulating the data
1002  * 
1003  * @return GNUNET_YES if everything went fine
1004  *         GNUNET_NO if client closed connection (h no longer valid)
1005  */
1006 static int
1007 process_incoming_data (struct GNUNET_MESH_Handle *h,
1008                        const struct GNUNET_MessageHeader *message)
1009 {
1010   const struct GNUNET_MessageHeader *payload;
1011   const struct GNUNET_MESH_MessageHandler *handler;
1012   const struct GNUNET_PeerIdentity *peer;
1013   struct GNUNET_MESH_Unicast *ucast;
1014   struct GNUNET_MESH_Multicast *mcast;
1015   struct GNUNET_MESH_ToOrigin *to_orig;
1016   struct GNUNET_MESH_Tunnel *t;
1017   unsigned int i;
1018   uint16_t type;
1019
1020   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got a data message!\n");
1021   type = ntohs (message->type);
1022   switch (type)
1023   {
1024   case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
1025     ucast = (struct GNUNET_MESH_Unicast *) message;
1026
1027     t = retrieve_tunnel (h, ntohl (ucast->tid));
1028     payload = (struct GNUNET_MessageHeader *) &ucast[1];
1029     peer = &ucast->oid;
1030     LOG (GNUNET_ERROR_TYPE_DEBUG, "  ucast on tunnel %s [%X]\n",
1031          GNUNET_i2s (peer), ntohl (ucast->tid));
1032     break;
1033   case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
1034     mcast = (struct GNUNET_MESH_Multicast *) message;
1035     t = retrieve_tunnel (h, ntohl (mcast->tid));
1036     payload = (struct GNUNET_MessageHeader *) &mcast[1];
1037     peer = &mcast->oid;
1038     LOG (GNUNET_ERROR_TYPE_DEBUG, "  mcast on tunnel %s [%X]\n",
1039          GNUNET_i2s (peer), ntohl (mcast->tid));
1040     break;
1041   case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
1042     to_orig = (struct GNUNET_MESH_ToOrigin *) message;
1043     t = retrieve_tunnel (h, ntohl (to_orig->tid));
1044     payload = (struct GNUNET_MessageHeader *) &to_orig[1];
1045     peer = &to_orig->sender;
1046     LOG (GNUNET_ERROR_TYPE_DEBUG, "  torig on tunnel %s [%X]\n",
1047          GNUNET_i2s (peer), ntohl (to_orig->tid));
1048     break;
1049   default:
1050     GNUNET_break (0);
1051     return GNUNET_YES;
1052   }
1053   if (NULL == t)
1054   {
1055     /* Tunnel was ignored, probably service didn't get it yet */
1056     return GNUNET_YES;
1057   }
1058   type = ntohs (payload->type);
1059   for (i = 0; i < h->n_handlers; i++)
1060   {
1061     handler = &h->message_handlers[i];
1062     if (handler->type == type)
1063     {
1064       struct GNUNET_ATS_Information atsi;
1065
1066       atsi.type = 0;
1067       atsi.value = 0;
1068       if (GNUNET_OK !=
1069           handler->callback (h->cls, t, &t->ctx, peer, payload, &atsi))
1070       {
1071         LOG (GNUNET_ERROR_TYPE_DEBUG, "callback caused disconnection\n");
1072         GNUNET_MESH_disconnect (h);
1073         return GNUNET_NO;
1074       }
1075       else
1076       {
1077         LOG (GNUNET_ERROR_TYPE_DEBUG,
1078              "callback completed successfully\n");
1079       }
1080     }
1081   }
1082   return GNUNET_YES;
1083 }
1084
1085
1086 /**
1087  * Process a local ACK message, enabling the client to send
1088  * more data to the service.
1089  * 
1090  * @param h Mesh handle.
1091  * @param message Message itself.
1092  */
1093 static void
1094 process_ack (struct GNUNET_MESH_Handle *h,
1095              const struct GNUNET_MessageHeader *message)
1096 {
1097   struct GNUNET_MESH_LocalAck *msg;
1098   struct GNUNET_MESH_Tunnel *t;
1099   uint32_t ack;
1100
1101   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK!\n");
1102   msg = (struct GNUNET_MESH_LocalAck *) message;
1103
1104   t = retrieve_tunnel (h, ntohl (msg->tunnel_id));
1105
1106   if (NULL == t)
1107   {
1108     LOG (GNUNET_ERROR_TYPE_WARNING,
1109          "ACK on unknown tunnel %X\n",
1110          ntohl (msg->tunnel_id));
1111     return;
1112   }
1113   ack = ntohl (msg->max_pid);
1114   if (ack > t->max_pid || PID_OVERFLOW (t->max_pid, ack))
1115     t->max_pid = ack;
1116   if (NULL == h->th && 0 < t->packet_size)
1117     h->th =
1118         GNUNET_CLIENT_notify_transmit_ready (h->client, t->packet_size,
1119                                              GNUNET_TIME_UNIT_FOREVER_REL,
1120                                              GNUNET_YES, &send_callback, h);
1121 }
1122
1123
1124 /**
1125  * Function to process all messages received from the service
1126  *
1127  * @param cls closure
1128  * @param msg message received, NULL on timeout or fatal error
1129  */
1130 static void
1131 msg_received (void *cls, const struct GNUNET_MessageHeader *msg)
1132 {
1133   struct GNUNET_MESH_Handle *h = cls;
1134
1135   if (msg == NULL)
1136   {
1137     LOG (GNUNET_ERROR_TYPE_WARNING, "Received NULL msg on %p\n", h);
1138     reconnect (h);
1139     return;
1140   }
1141   LOG (GNUNET_ERROR_TYPE_DEBUG, "received a message type %hu from MESH\n",
1142        ntohs (msg->type));
1143   switch (ntohs (msg->type))
1144   {
1145     /* Notify of a new incoming tunnel */
1146   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE:
1147     process_tunnel_created (h, (struct GNUNET_MESH_TunnelNotification *) msg);
1148     break;
1149     /* Notify of a tunnel disconnection */
1150   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY:
1151     process_tunnel_destroy (h, (struct GNUNET_MESH_TunnelMessage *) msg);
1152     break;
1153     /* Notify of a new peer or a peer disconnect in the tunnel */
1154   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD:
1155   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL:
1156     process_peer_event (h, (struct GNUNET_MESH_PeerControl *) msg);
1157     break;
1158     /* Notify of a new data packet in the tunnel */
1159   case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
1160   case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
1161   case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
1162     if (GNUNET_NO == process_incoming_data (h, msg))
1163       return;
1164     break;
1165   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
1166     process_ack (h, msg);
1167     break;
1168   default:
1169     /* We shouldn't get any other packages, log and ignore */
1170     LOG (GNUNET_ERROR_TYPE_WARNING,
1171          "unsolicited message form service (type %d)\n",
1172          ntohs (msg->type));
1173   }
1174   LOG (GNUNET_ERROR_TYPE_DEBUG, "message processed\n");
1175   GNUNET_CLIENT_receive (h->client, &msg_received, h,
1176                          GNUNET_TIME_UNIT_FOREVER_REL);
1177 }
1178
1179
1180 /******************************************************************************/
1181 /************************       SEND FUNCTIONS     ****************************/
1182 /******************************************************************************/
1183
1184 /**
1185  * Function called to send a message to the service.
1186  * "buf" will be NULL and "size" zero if the socket was closed for writing in
1187  * the meantime.
1188  *
1189  * @param cls closure, the mesh handle
1190  * @param size number of bytes available in buf
1191  * @param buf where the callee should write the connect message
1192  * @return number of bytes written to buf
1193  */
1194 static size_t
1195 send_callback (void *cls, size_t size, void *buf)
1196 {
1197   struct GNUNET_MESH_Handle *h = cls;
1198   struct GNUNET_MESH_TransmitHandle *th;
1199   struct GNUNET_MESH_TransmitHandle *next;
1200   struct GNUNET_MESH_Tunnel *t;
1201   char *cbuf = buf;
1202   size_t tsize;
1203   size_t psize;
1204
1205   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send packet() Buffer %u\n", size);
1206   if ((0 == size) || (NULL == buf))
1207   {
1208     LOG (GNUNET_ERROR_TYPE_DEBUG, "Received NULL send callback on %p\n", h);
1209     reconnect (h);
1210     h->th = NULL;
1211     return 0;
1212   }
1213   tsize = 0;
1214   next = h->th_head;
1215   while ((NULL != (th = next)) && (size >= th->size))
1216   {
1217     t = th->tunnel;
1218     if (GNUNET_YES == th_is_payload (th))
1219     {
1220       LOG (GNUNET_ERROR_TYPE_DEBUG, " payload\n");
1221       if (t->max_pid < t->pid && ! PID_OVERFLOW (t->pid, t->max_pid)) {
1222         /* This tunnel is not ready to transmit yet, try next message */
1223         next = th->next;
1224         continue;
1225       }
1226       t->packet_size = 0;
1227       if (t->tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1228       {
1229         /* traffic to origin */
1230         struct GNUNET_MESH_ToOrigin to;
1231         struct GNUNET_MessageHeader *mh;
1232
1233         GNUNET_assert (size >= th->size);
1234         mh = (struct GNUNET_MessageHeader *) &cbuf[sizeof (to)];
1235         psize = th->notify (th->notify_cls, size - sizeof (to), mh);
1236         LOG (GNUNET_ERROR_TYPE_DEBUG, "  to origin, type %u\n",
1237              ntohs (mh->type));
1238         if (psize > 0)
1239         {
1240           psize += sizeof (to);
1241           GNUNET_assert (size >= psize);
1242           to.header.size = htons (psize);
1243           to.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
1244           to.tid = htonl (t->tid);
1245           // FIXME pid?
1246           memset (&to.oid, 0, sizeof (struct GNUNET_PeerIdentity));
1247           memset (&to.sender, 0, sizeof (struct GNUNET_PeerIdentity));
1248           memcpy (cbuf, &to, sizeof (to));
1249         }
1250       }
1251       else if (th->target == 0)
1252       {
1253         /* multicast */
1254         struct GNUNET_MESH_Multicast mc;
1255         struct GNUNET_MessageHeader *mh;
1256
1257         GNUNET_assert (size >= th->size);
1258         mh = (struct GNUNET_MessageHeader *) &cbuf[sizeof (mc)];
1259         psize = th->notify (th->notify_cls, size - sizeof (mc), mh);
1260         LOG (GNUNET_ERROR_TYPE_DEBUG, "  multicast, type %u\n",
1261              ntohs (mh->type));
1262         if (psize > 0)
1263         {
1264           psize += sizeof (mc);
1265           GNUNET_assert (size >= psize);
1266           mc.header.size = htons (psize);
1267           mc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
1268           mc.tid = htonl (t->tid);
1269           mc.pid = htonl (t->pid);
1270           mc.ttl = 0;
1271           memset (&mc.oid, 0, sizeof (struct GNUNET_PeerIdentity));
1272           memcpy (cbuf, &mc, sizeof (mc));
1273         }
1274       }
1275       else
1276       {
1277         /* unicast */
1278         struct GNUNET_MESH_Unicast uc;
1279         struct GNUNET_MessageHeader *mh;
1280
1281         GNUNET_assert (size >= th->size);
1282         mh = (struct GNUNET_MessageHeader *) &cbuf[sizeof (uc)];
1283         psize = th->notify (th->notify_cls, size - sizeof (uc), mh);
1284         LOG (GNUNET_ERROR_TYPE_DEBUG, "  unicast, type %u\n",
1285              ntohs (mh->type));
1286         if (psize > 0)
1287         {
1288           psize += sizeof (uc);
1289           GNUNET_assert (size >= psize);
1290           uc.header.size = htons (psize);
1291           uc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_UNICAST);
1292           uc.tid = htonl (t->tid);
1293           uc.pid = htonl (t->pid);
1294           memset (&uc.oid, 0, sizeof (struct GNUNET_PeerIdentity));
1295           GNUNET_PEER_resolve (th->target, &uc.destination);
1296           memcpy (cbuf, &uc, sizeof (uc));
1297         }
1298       }
1299       t->pid++;
1300     }
1301     else
1302     {
1303       struct GNUNET_MessageHeader *mh = (struct GNUNET_MessageHeader *) &th[1];
1304
1305       LOG (GNUNET_ERROR_TYPE_DEBUG, "  mesh traffic, type %u\n",
1306              ntohs (mh->type));
1307       memcpy (cbuf, &th[1], th->size);
1308       psize = th->size;
1309     }
1310     if (th->timeout_task != GNUNET_SCHEDULER_NO_TASK)
1311       GNUNET_SCHEDULER_cancel (th->timeout_task);
1312     GNUNET_CONTAINER_DLL_remove (h->th_head, h->th_tail, th);
1313     GNUNET_free (th);
1314     next = h->th_head;
1315     cbuf += psize;
1316     size -= psize;
1317     tsize += psize;
1318   }
1319   LOG (GNUNET_ERROR_TYPE_DEBUG, "  total size: %u\n", tsize);
1320   h->th = NULL;
1321   if (NULL != h->th_head)
1322   {
1323     int request = GNUNET_NO;
1324
1325     LOG (GNUNET_ERROR_TYPE_DEBUG, "  head not empty\n");
1326     for (th = h->th_head; NULL != th; th = th->next)
1327     {
1328       struct GNUNET_MESH_Tunnel *t = th->tunnel;
1329
1330       LOG (GNUNET_ERROR_TYPE_DEBUG, "  [%p] notify: %p, size %u\n",
1331            th, th->notify, th->size);
1332       GNUNET_assert (NULL != t);
1333       LOG (GNUNET_ERROR_TYPE_DEBUG, "  pid %u, max %u\n", t->pid, t->max_pid);
1334
1335       if (GNUNET_NO == th_is_payload (th) ||
1336           (t->max_pid >= t->pid || PID_OVERFLOW (t->pid, t->max_pid)))
1337       {
1338         request = GNUNET_YES;
1339         break;
1340       }
1341     }
1342
1343     if (GNUNET_YES == request)
1344     {
1345       LOG (GNUNET_ERROR_TYPE_DEBUG, "  next size: %u\n", th->size);
1346       h->th =
1347           GNUNET_CLIENT_notify_transmit_ready (h->client, th->size,
1348                                                GNUNET_TIME_UNIT_FOREVER_REL,
1349                                                GNUNET_YES, &send_callback, h);
1350     }
1351     else
1352     {
1353       LOG (GNUNET_ERROR_TYPE_DEBUG, "  nothing left to transmit\n");
1354     }
1355   }
1356   if (GNUNET_NO == h->in_receive)
1357   {
1358     LOG (GNUNET_ERROR_TYPE_DEBUG, " start receiving from service\n");
1359     h->in_receive = GNUNET_YES;
1360     GNUNET_CLIENT_receive (h->client, &msg_received, h,
1361                            GNUNET_TIME_UNIT_FOREVER_REL);
1362   }
1363   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send packet() END\n");
1364   return tsize;
1365 }
1366
1367
1368 /**
1369  * Auxiliary function to send an already constructed packet to the service.
1370  * Takes care of creating a new queue element, copying the message and
1371  * calling the tmt_rdy function if necessary.
1372  * 
1373  * @param h mesh handle
1374  * @param msg message to transmit
1375  * @param tunnel tunnel this send is related to (NULL if N/A)
1376  */
1377 static void
1378 send_packet (struct GNUNET_MESH_Handle *h,
1379              const struct GNUNET_MessageHeader *msg,
1380              struct GNUNET_MESH_Tunnel *tunnel)
1381 {
1382   struct GNUNET_MESH_TransmitHandle *th;
1383   size_t msize;
1384
1385   msize = ntohs (msg->size);
1386   th = GNUNET_malloc (sizeof (struct GNUNET_MESH_TransmitHandle) + msize);
1387   th->timeout = GNUNET_TIME_UNIT_FOREVER_ABS;
1388   th->size = msize;
1389   th->tunnel = tunnel;
1390   memcpy (&th[1], msg, msize);
1391   add_to_queue (h, th);
1392   if (NULL != h->th)
1393     return;
1394   h->th =
1395       GNUNET_CLIENT_notify_transmit_ready (h->client, msize,
1396                                            GNUNET_TIME_UNIT_FOREVER_REL,
1397                                            GNUNET_YES, &send_callback, h);
1398 }
1399
1400
1401 /******************************************************************************/
1402 /**********************      API CALL DEFINITIONS     *************************/
1403 /******************************************************************************/
1404
1405 /**
1406  * Connect to the mesh service.
1407  *
1408  * @param cfg configuration to use
1409  * @param cls closure for the various callbacks that follow
1410  *            (including handlers in the handlers array)
1411  * @param new_tunnel function called when an *inbound* tunnel is created
1412  * @param cleaner function called when an *inbound* tunnel is destroyed by the
1413  *                remote peer, it is *not* called if GNUNET_MESH_tunnel_destroy
1414  *                is called on the tunnel
1415  * @param handlers callbacks for messages we care about, NULL-terminated
1416  *                note that the mesh is allowed to drop notifications about
1417  *                inbound messages if the client does not process them fast
1418  *                enough (for this notification type, a bounded queue is used)
1419  * @param stypes list of the applications that this client claims to provide
1420  * @return handle to the mesh service NULL on error
1421  *         (in this case, init is never called)
1422  */
1423 struct GNUNET_MESH_Handle *
1424 GNUNET_MESH_connect (const struct GNUNET_CONFIGURATION_Handle *cfg, void *cls,
1425                      GNUNET_MESH_InboundTunnelNotificationHandler new_tunnel,
1426                      GNUNET_MESH_TunnelEndHandler cleaner,
1427                      const struct GNUNET_MESH_MessageHandler *handlers,
1428                      const GNUNET_MESH_ApplicationType *stypes)
1429 {
1430   struct GNUNET_MESH_Handle *h;
1431
1432   LOG (GNUNET_ERROR_TYPE_DEBUG, "GNUNET_MESH_connect()\n");
1433   h = GNUNET_malloc (sizeof (struct GNUNET_MESH_Handle));
1434   LOG (GNUNET_ERROR_TYPE_DEBUG, " addr %p\n", h);
1435   h->cfg = cfg;
1436   h->new_tunnel = new_tunnel;
1437   h->cleaner = cleaner;
1438   h->client = GNUNET_CLIENT_connect ("mesh", cfg);
1439   if (h->client == NULL)
1440   {
1441     GNUNET_break (0);
1442     GNUNET_free (h);
1443     return NULL;
1444   }
1445   h->cls = cls;
1446   /* FIXME memdup? */
1447   h->applications = stypes;
1448   h->message_handlers = handlers;
1449   h->next_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
1450   h->reconnect_time = GNUNET_TIME_UNIT_MILLISECONDS;
1451   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1452
1453   /* count handlers and apps, calculate size */
1454   for (h->n_applications = 0; stypes[h->n_applications]; h->n_applications++) ;
1455   for (h->n_handlers = 0; handlers[h->n_handlers].type; h->n_handlers++) ;
1456   send_connect (h);
1457   LOG (GNUNET_ERROR_TYPE_DEBUG, "GNUNET_MESH_connect() END\n");
1458   return h;
1459 }
1460
1461
1462 /**
1463  * Disconnect from the mesh service. All tunnels will be destroyed. All tunnel
1464  * disconnect callbacks will be called on any still connected peers, notifying
1465  * about their disconnection. The registered inbound tunnel cleaner will be
1466  * called should any inbound tunnels still exist.
1467  *
1468  * @param handle connection to mesh to disconnect
1469  */
1470 void
1471 GNUNET_MESH_disconnect (struct GNUNET_MESH_Handle *handle)
1472 {
1473   struct GNUNET_MESH_Tunnel *t;
1474   struct GNUNET_MESH_Tunnel *aux;
1475   struct GNUNET_MESH_TransmitHandle *th;
1476
1477   LOG (GNUNET_ERROR_TYPE_DEBUG, "MESH DISCONNECT\n");
1478
1479   t = handle->tunnels_head;
1480   while (NULL != t)
1481   {
1482     aux = t->next;
1483     if (t->tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1484     {
1485       GNUNET_break (0);
1486       LOG (GNUNET_ERROR_TYPE_DEBUG, "tunnel %X not destroyed\n", t->tid);
1487     }
1488     destroy_tunnel (t, GNUNET_YES);
1489     t = aux;
1490   }
1491   while ( (th = handle->th_head) != NULL)
1492   {
1493     struct GNUNET_MessageHeader *msg;
1494
1495     /* Make sure it is an allowed packet (everything else should have been
1496      * already canceled).
1497      */
1498     GNUNET_break (GNUNET_NO == th_is_payload (th));
1499     msg = (struct GNUNET_MessageHeader *) &th[1];
1500     switch (ntohs(msg->type))
1501     {
1502       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT:
1503       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY:
1504         break;
1505       default:
1506         GNUNET_break (0);
1507         LOG (GNUNET_ERROR_TYPE_DEBUG, "unexpected msg %u\n",
1508              ntohs(msg->type));
1509     }
1510
1511     GNUNET_CONTAINER_DLL_remove (handle->th_head, handle->th_tail, th);
1512     GNUNET_free (th);
1513   }
1514
1515   if (NULL != handle->th)
1516   {
1517     GNUNET_CLIENT_notify_transmit_ready_cancel (handle->th);
1518     handle->th = NULL;
1519   }
1520   if (NULL != handle->client)
1521   {
1522     GNUNET_CLIENT_disconnect (handle->client);
1523     handle->client = NULL;
1524   }
1525   if (GNUNET_SCHEDULER_NO_TASK != handle->reconnect_task)
1526   {
1527     GNUNET_SCHEDULER_cancel(handle->reconnect_task);
1528     handle->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1529   }
1530   GNUNET_free (handle);
1531 }
1532
1533
1534 /**
1535  * Announce to ther peer the availability of services described by the regex,
1536  * in order to be reachable to other peers via connect_by_string.
1537  * 
1538  * Note that the first 8 characters are considered to be part of a prefix,
1539  * (for instance 'gnunet://'). If you put a variable part in there (*, +. ()),
1540  * all matching strings will be stored in the DHT.
1541  *
1542  * @param h handle to mesh.
1543  * @param regex string with the regular expression describing local services.
1544  */
1545 void
1546 GNUNET_MESH_announce_regex (struct GNUNET_MESH_Handle *h,
1547                             const char *regex)
1548 {
1549   struct GNUNET_MessageHeader *msg;
1550   size_t len;
1551   size_t msgsize;
1552
1553   len = strlen (regex);
1554   msgsize = sizeof(struct GNUNET_MessageHeader) + len;
1555   GNUNET_assert (UINT16_MAX > msgsize);
1556
1557   {
1558     char buffer[msgsize];
1559
1560     msg = (struct GNUNET_MessageHeader *) buffer;
1561     msg->size = htons (msgsize);
1562     msg->type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ANNOUNCE_REGEX);
1563     memcpy (&msg[1], regex, len);
1564
1565     send_packet(h, msg, NULL);
1566   }
1567 }
1568
1569 /**
1570  * Create a new tunnel (we're initiator and will be allowed to add/remove peers
1571  * and to broadcast).
1572  *
1573  * @param h mesh handle
1574  * @param tunnel_ctx client's tunnel context to associate with the tunnel
1575  * @param connect_handler function to call when peers are actually connected
1576  * @param disconnect_handler function to call when peers are disconnected
1577  * @param handler_cls closure for connect/disconnect handlers
1578  */
1579 struct GNUNET_MESH_Tunnel *
1580 GNUNET_MESH_tunnel_create (struct GNUNET_MESH_Handle *h, void *tunnel_ctx,
1581                            GNUNET_MESH_PeerConnectHandler connect_handler,
1582                            GNUNET_MESH_PeerDisconnectHandler disconnect_handler,
1583                            void *handler_cls)
1584 {
1585   struct GNUNET_MESH_Tunnel *t;
1586   struct GNUNET_MESH_TunnelMessage msg;
1587
1588   LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating new tunnel\n");
1589   t = create_tunnel (h, 0);
1590   t->connect_handler = connect_handler;
1591   t->disconnect_handler = disconnect_handler;
1592   t->cls = handler_cls;
1593   t->ctx = tunnel_ctx;
1594   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
1595   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1596   msg.tunnel_id = htonl (t->tid);
1597   send_packet (h, &msg.header, t);
1598   return t;
1599 }
1600
1601
1602 /**
1603  * Destroy an existing tunnel. The existing callback for the tunnel will NOT
1604  * be called.
1605  *
1606  * @param tunnel tunnel handle
1607  */
1608 void
1609 GNUNET_MESH_tunnel_destroy (struct GNUNET_MESH_Tunnel *tunnel)
1610 {
1611   struct GNUNET_MESH_Handle *h;
1612   struct GNUNET_MESH_TunnelMessage msg;
1613   struct GNUNET_MESH_TransmitHandle *th;
1614
1615   LOG (GNUNET_ERROR_TYPE_DEBUG, "Destroying tunnel\n");
1616   h = tunnel->mesh;
1617
1618   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
1619   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1620   msg.tunnel_id = htonl (tunnel->tid);
1621   th = h->th_head;
1622   while (th != NULL)
1623   {
1624     struct GNUNET_MESH_TransmitHandle *aux;
1625     if (th->tunnel == tunnel)
1626     {
1627       aux = th->next;
1628       /* FIXME call the handler? */
1629       if (GNUNET_YES == th_is_payload (th))
1630         th->notify (th->notify_cls, 0, NULL);
1631       GNUNET_CONTAINER_DLL_remove (h->th_head, h->th_tail, th);
1632       GNUNET_free (th);
1633       th = aux;
1634     }
1635     else
1636       th = th->next;
1637   }
1638
1639   destroy_tunnel (tunnel, GNUNET_NO);
1640   send_packet (h, &msg.header, NULL);
1641 }
1642
1643 /**
1644  * Request that the tunnel data rate is limited to the speed of the slowest
1645  * receiver.
1646  *
1647  * @param tunnel Tunnel affected.
1648  */
1649 void
1650 GNUNET_MESH_tunnel_speed_min (struct GNUNET_MESH_Tunnel *tunnel)
1651 {
1652   struct GNUNET_MESH_TunnelMessage msg;
1653   struct GNUNET_MESH_Handle *h;
1654
1655   h = tunnel->mesh;
1656   tunnel->speed_min = GNUNET_YES;
1657
1658   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN);
1659   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1660   msg.tunnel_id = htonl (tunnel->tid);
1661
1662   send_packet (h, &msg.header, NULL);
1663 }
1664
1665
1666 /**
1667  * Request that the tunnel data rate is limited to the speed of the fastest
1668  * receiver. This is the default behavior.
1669  *
1670  * @param tunnel Tunnel affected.
1671  */
1672 void
1673 GNUNET_MESH_tunnel_speed_max (struct GNUNET_MESH_Tunnel *tunnel)
1674 {
1675   struct GNUNET_MESH_TunnelMessage msg;
1676   struct GNUNET_MESH_Handle *h;
1677
1678   h = tunnel->mesh;
1679   tunnel->speed_min = GNUNET_NO;
1680
1681   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX);
1682   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1683   msg.tunnel_id = htonl (tunnel->tid);
1684
1685   send_packet (h, &msg.header, NULL);
1686 }
1687
1688 /**
1689  * Turn on/off the buffering status of the tunnel.
1690  * 
1691  * @param tunnel Tunnel affected.
1692  * @param buffer GNUNET_YES to turn buffering on (default),
1693  *               GNUNET_NO otherwise.
1694  */
1695 void
1696 GNUNET_MESH_tunnel_buffer (struct GNUNET_MESH_Tunnel *tunnel, int buffer)
1697 {
1698   struct GNUNET_MESH_TunnelMessage msg;
1699   struct GNUNET_MESH_Handle *h;
1700
1701   h = tunnel->mesh;
1702   tunnel->buffering = buffer;
1703
1704   if (GNUNET_YES == buffer)
1705     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER);
1706   else
1707     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER);
1708   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1709   msg.tunnel_id = htonl (tunnel->tid);
1710
1711   send_packet (h, &msg.header, NULL);
1712 }
1713
1714 /**
1715  * Request that a peer should be added to the tunnel.  The existing
1716  * connect handler will be called ONCE with either success or failure.
1717  * This function should NOT be called again with the same peer before the
1718  * connect handler is called.
1719  *
1720  * @param tunnel handle to existing tunnel
1721  * @param peer peer to add
1722  */
1723 void
1724 GNUNET_MESH_peer_request_connect_add (struct GNUNET_MESH_Tunnel *tunnel,
1725                                       const struct GNUNET_PeerIdentity *peer)
1726 {
1727   struct GNUNET_MESH_PeerControl msg;
1728   GNUNET_PEER_Id peer_id;
1729   unsigned int i;
1730
1731   peer_id = GNUNET_PEER_intern (peer);
1732   for (i = 0; i < tunnel->npeers; i++)
1733   {
1734     if (tunnel->peers[i]->id == peer_id)
1735     {
1736       /* Peer already exists in tunnel */
1737       GNUNET_PEER_change_rc (peer_id, -1);
1738       GNUNET_break (0);
1739       return;
1740     }
1741   }
1742   if (NULL == add_peer_to_tunnel (tunnel, peer))
1743     return;
1744
1745   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1746   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD);
1747   msg.tunnel_id = htonl (tunnel->tid);
1748   msg.peer = *peer;
1749   send_packet (tunnel->mesh, &msg.header, tunnel);
1750
1751   return;
1752 }
1753
1754
1755 /**
1756  * Request that a peer should be removed from the tunnel.  The existing
1757  * disconnect handler will be called ONCE if we were connected.
1758  *
1759  * @param tunnel handle to existing tunnel
1760  * @param peer peer to remove
1761  */
1762 void
1763 GNUNET_MESH_peer_request_connect_del (struct GNUNET_MESH_Tunnel *tunnel,
1764                                       const struct GNUNET_PeerIdentity *peer)
1765 {
1766   struct GNUNET_MESH_PeerControl msg;
1767   GNUNET_PEER_Id peer_id;
1768   unsigned int i;
1769
1770   peer_id = GNUNET_PEER_search (peer);
1771   if (0 == peer_id)
1772   {
1773     GNUNET_break (0);
1774     return;
1775   }
1776   for (i = 0; i < tunnel->npeers; i++)
1777     if (tunnel->peers[i]->id == peer_id)
1778       break;
1779   if (i == tunnel->npeers)
1780   {
1781     GNUNET_break (0);
1782     return;
1783   }
1784   if (NULL != tunnel->disconnect_handler && tunnel->peers[i]->connected == 1)
1785     tunnel->disconnect_handler (tunnel->cls, peer);
1786   GNUNET_PEER_change_rc (peer_id, -1);
1787   GNUNET_free (tunnel->peers[i]);
1788   tunnel->peers[i] = tunnel->peers[tunnel->npeers - 1];
1789   GNUNET_array_grow (tunnel->peers, tunnel->npeers, tunnel->npeers - 1);
1790
1791   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1792   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
1793   msg.tunnel_id = htonl (tunnel->tid);
1794   memcpy (&msg.peer, peer, sizeof (struct GNUNET_PeerIdentity));
1795   send_packet (tunnel->mesh, &msg.header, tunnel);
1796 }
1797
1798
1799 /**
1800  * Request that the mesh should try to connect to a peer supporting the given
1801  * message type.
1802  *
1803  * @param tunnel handle to existing tunnel
1804  * @param app_type application type that must be supported by the peer (MESH
1805  *                 should discover peer in proximity handling this type)
1806  */
1807 void
1808 GNUNET_MESH_peer_request_connect_by_type (struct GNUNET_MESH_Tunnel *tunnel,
1809                                           GNUNET_MESH_ApplicationType app_type)
1810 {
1811   struct GNUNET_MESH_ConnectPeerByType msg;
1812
1813   GNUNET_array_append (tunnel->apps, tunnel->napps, app_type);
1814
1815   LOG (GNUNET_ERROR_TYPE_DEBUG, "* CONNECT BY TYPE *\n");
1816   msg.header.size = htons (sizeof (struct GNUNET_MESH_ConnectPeerByType));
1817   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE);
1818   msg.tunnel_id = htonl (tunnel->tid);
1819   msg.type = htonl (app_type);
1820   send_packet (tunnel->mesh, &msg.header, tunnel);
1821 }
1822
1823
1824 /**
1825  * Request that the mesh should try to connect to a peer matching the
1826  * description given in the service string.
1827  * 
1828  * FIXME: allow multiple? how to deal with reconnect?
1829  *
1830  * @param tunnel handle to existing tunnel
1831  * @param description string describing the destination node requirements
1832  */
1833 void
1834 GNUNET_MESH_peer_request_connect_by_string (struct GNUNET_MESH_Tunnel *tunnel,
1835                                             const char *description)
1836 {
1837   struct GNUNET_MESH_ConnectPeerByString *m;
1838   size_t len;
1839   size_t msgsize;
1840
1841   len = strlen (description);
1842   msgsize = sizeof(struct GNUNET_MESH_ConnectPeerByString) + len;
1843   GNUNET_assert (UINT16_MAX > msgsize);
1844   {
1845     char buffer[msgsize];
1846
1847     m = (struct GNUNET_MESH_ConnectPeerByString *) buffer;
1848     m->header.size = htons (msgsize);
1849     m->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_STRING);
1850     m->tunnel_id = htonl (tunnel->tid);
1851     memcpy(&m[1], description, len);
1852
1853     send_packet (tunnel->mesh, &m->header, tunnel);
1854   }
1855 }
1856
1857
1858 /**
1859  * Request that the given peer isn't added to this tunnel in calls to
1860  * connect_by_* calls, (due to misbehaviour, bad performance, ...).
1861  *
1862  * @param tunnel handle to existing tunnel.
1863  * @param peer peer identity of the peer which should be blacklisted
1864  *                  for the tunnel.
1865  */
1866 void
1867 GNUNET_MESH_peer_blacklist (struct GNUNET_MESH_Tunnel *tunnel,
1868                             const struct GNUNET_PeerIdentity *peer)
1869 {
1870   struct GNUNET_MESH_PeerControl msg;
1871
1872   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1873   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_BLACKLIST);
1874   msg.tunnel_id = htonl (tunnel->tid);
1875   msg.peer = *peer;
1876   send_packet (tunnel->mesh, &msg.header, tunnel);
1877
1878   return;
1879 }
1880
1881
1882 /**
1883  * Request that the given peer isn't blacklisted anymore from this tunnel,
1884  * and therefore can be added in future calls to connect_by_*.
1885  * The peer must have been previously blacklisted for this tunnel.
1886  *
1887  * @param tunnel handle to existing tunnel.
1888  * @param peer peer identity of the peer which shouldn't be blacklisted
1889  *                  for the tunnel anymore.
1890  */
1891 void
1892 GNUNET_MESH_peer_unblacklist (struct GNUNET_MESH_Tunnel *tunnel,
1893                               const struct GNUNET_PeerIdentity *peer)
1894 {
1895   struct GNUNET_MESH_PeerControl msg;
1896
1897   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1898   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_UNBLACKLIST);
1899   msg.tunnel_id = htonl (tunnel->tid);
1900   msg.peer = *peer;
1901   send_packet (tunnel->mesh, &msg.header, tunnel);
1902
1903   return;
1904 }
1905
1906
1907 /**
1908  * Ask the mesh to call "notify" once it is ready to transmit the
1909  * given number of bytes to the specified tunnel or target.
1910  * Only one call can be active at any time, to issue another request,
1911  * wait for the callback or cancel the current request.
1912  *
1913  * @param tunnel tunnel to use for transmission
1914  * @param cork is corking allowed for this transmission?
1915  * @param maxdelay how long can the message wait?
1916  * @param target destination for the message
1917  *               NULL for multicast to all tunnel targets
1918  * @param notify_size how many bytes of buffer space does notify want?
1919  * @param notify function to call when buffer space is available;
1920  *        will be called with NULL on timeout or if the overall queue
1921  *        for this peer is larger than queue_size and this is currently
1922  *        the message with the lowest priority
1923  * @param notify_cls closure for notify
1924  * @return non-NULL if the notify callback was queued,
1925  *         NULL if we can not even queue the request (insufficient
1926  *         memory); if NULL is returned, "notify" will NOT be called.
1927  */
1928 struct GNUNET_MESH_TransmitHandle *
1929 GNUNET_MESH_notify_transmit_ready (struct GNUNET_MESH_Tunnel *tunnel, int cork,
1930                                    struct GNUNET_TIME_Relative maxdelay,
1931                                    const struct GNUNET_PeerIdentity *target,
1932                                    size_t notify_size,
1933                                    GNUNET_CONNECTION_TransmitReadyNotify notify,
1934                                    void *notify_cls)
1935 {
1936   struct GNUNET_MESH_TransmitHandle *th;
1937   size_t overhead;
1938
1939   GNUNET_assert (NULL != tunnel);
1940   LOG (GNUNET_ERROR_TYPE_DEBUG, "mesh notify transmit ready called\n");
1941   if (NULL != target)
1942     LOG (GNUNET_ERROR_TYPE_DEBUG, "    target %s\n", GNUNET_i2s (target));
1943   else
1944     LOG (GNUNET_ERROR_TYPE_DEBUG, "    target multicast\n");
1945   LOG (GNUNET_ERROR_TYPE_DEBUG, "    payload size %u\n", notify_size);
1946   GNUNET_assert (NULL != notify);
1947   GNUNET_assert (0 == tunnel->packet_size); // Only one data packet allowed
1948   th = GNUNET_malloc (sizeof (struct GNUNET_MESH_TransmitHandle));
1949   th->tunnel = tunnel;
1950   th->timeout = GNUNET_TIME_relative_to_absolute (maxdelay);
1951   th->target = GNUNET_PEER_intern (target);
1952   if (tunnel->tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1953     overhead = sizeof (struct GNUNET_MESH_ToOrigin);
1954   else if (NULL == target)
1955     overhead = sizeof (struct GNUNET_MESH_Multicast);
1956   else
1957     overhead = sizeof (struct GNUNET_MESH_Unicast);
1958   tunnel->packet_size = th->size = notify_size + overhead;
1959   LOG (GNUNET_ERROR_TYPE_DEBUG, "    total size %u\n", th->size);
1960   th->notify = notify;
1961   th->notify_cls = notify_cls;
1962   add_to_queue (tunnel->mesh, th);
1963   if (NULL != tunnel->mesh->th)
1964     return th;
1965   LOG (GNUNET_ERROR_TYPE_DEBUG, "    call notify tmt rdy\n");
1966   tunnel->mesh->th =
1967       GNUNET_CLIENT_notify_transmit_ready (tunnel->mesh->client, th->size,
1968                                            GNUNET_TIME_UNIT_FOREVER_REL,
1969                                            GNUNET_YES, &send_callback,
1970                                            tunnel->mesh);
1971   return th;
1972 }
1973
1974
1975 /**
1976  * Cancel the specified transmission-ready notification.
1977  *
1978  * @param th handle that was returned by "notify_transmit_ready".
1979  */
1980 void
1981 GNUNET_MESH_notify_transmit_ready_cancel (struct GNUNET_MESH_TransmitHandle *th)
1982 {
1983   struct GNUNET_MESH_Handle *mesh;
1984
1985   mesh = th->tunnel->mesh;
1986   if (th->timeout_task != GNUNET_SCHEDULER_NO_TASK)
1987     GNUNET_SCHEDULER_cancel (th->timeout_task);
1988   GNUNET_CONTAINER_DLL_remove (mesh->th_head, mesh->th_tail, th);
1989   GNUNET_free (th);
1990   if ((NULL == mesh->th_head) && (NULL != mesh->th))
1991   {
1992     /* queue empty, no point in asking for transmission */
1993     GNUNET_CLIENT_notify_transmit_ready_cancel (mesh->th);
1994     mesh->th = NULL;
1995   }
1996 }
1997
1998
1999 /**
2000  * Transition API for tunnel ctx management
2001  */
2002 void
2003 GNUNET_MESH_tunnel_set_data (struct GNUNET_MESH_Tunnel *tunnel, void *data)
2004 {
2005   tunnel->ctx = data;
2006 }
2007
2008 /**
2009  * Transition API for tunnel ctx management
2010  */
2011 void *
2012 GNUNET_MESH_tunnel_get_data (struct GNUNET_MESH_Tunnel *tunnel)
2013 {
2014   return tunnel->ctx;
2015 }
2016
2017