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