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