9f0dc0856afec2f68b3230d950e8874bb284a7d2
[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   LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating incoming tunnel %X\n", tid);
912   if (tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
913   {
914     GNUNET_break (0);
915     return;
916   }
917   if (NULL != h->new_tunnel)
918   {
919     struct GNUNET_ATS_Information atsi;
920
921     t = create_tunnel (h, tid);
922     t->owner = GNUNET_PEER_intern (&msg->peer);
923     t->npeers = 1;
924     t->peers = GNUNET_malloc (sizeof (struct GNUNET_MESH_Peer *));
925     t->peers[0] = GNUNET_malloc (sizeof (struct GNUNET_MESH_Peer));
926     t->peers[0]->t = t;
927     t->peers[0]->connected = 1;
928     t->peers[0]->id = t->owner;
929     GNUNET_PEER_change_rc (t->owner, 1);
930     t->mesh = h;
931     t->tid = tid;
932     atsi.type = 0;
933     atsi.value = 0;
934     LOG (GNUNET_ERROR_TYPE_DEBUG, "  created tunnel %p\n", t);
935     t->ctx = h->new_tunnel (h->cls, t, &msg->peer, &atsi);
936     LOG (GNUNET_ERROR_TYPE_DEBUG, "User notified\n");
937   }
938   else
939   {
940     struct GNUNET_MESH_TunnelMessage d_msg;
941
942     LOG (GNUNET_ERROR_TYPE_DEBUG, "No handler for incoming tunnels\n");
943
944     d_msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
945     d_msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
946     d_msg.tunnel_id = msg->tunnel_id;
947
948     send_packet (h, &d_msg.header, NULL);
949   }
950   return;
951 }
952
953
954 /**
955  * Process the tunnel destroy notification and free associated resources
956  *
957  * @param h     The mesh handle
958  * @param msg   A message with the details of the tunnel being destroyed
959  */
960 static void
961 process_tunnel_destroy (struct GNUNET_MESH_Handle *h,
962                         const struct GNUNET_MESH_TunnelMessage *msg)
963 {
964   struct GNUNET_MESH_Tunnel *t;
965   MESH_TunnelNumber tid;
966
967   tid = ntohl (msg->tunnel_id);
968   t = retrieve_tunnel (h, tid);
969
970   if (NULL == t)
971   {
972     return;
973   }
974   if (0 == t->owner)
975   {
976     GNUNET_break (0);
977   }
978   LOG (GNUNET_ERROR_TYPE_DEBUG, "tunnel %X destroyed\n", t->tid);
979   destroy_tunnel (t, GNUNET_YES);
980   return;
981 }
982
983
984 /**
985  * Process the new peer event and notify the upper level of it
986  *
987  * @param h     The mesh handle
988  * @param msg   A message with the details of the peer event
989  */
990 static void
991 process_peer_event (struct GNUNET_MESH_Handle *h,
992                     const struct GNUNET_MESH_PeerControl *msg)
993 {
994   struct GNUNET_MESH_Tunnel *t;
995   struct GNUNET_MESH_Peer *p;
996   struct GNUNET_ATS_Information atsi;
997   GNUNET_PEER_Id id;
998   uint16_t size;
999
1000   LOG (GNUNET_ERROR_TYPE_DEBUG, "processig peer event\n");
1001   size = ntohs (msg->header.size);
1002   if (size != sizeof (struct GNUNET_MESH_PeerControl))
1003   {
1004     GNUNET_break (0);
1005     return;
1006   }
1007   t = retrieve_tunnel (h, ntohl (msg->tunnel_id));
1008   if (NULL == t)
1009   {
1010     GNUNET_break (0);
1011     return;
1012   }
1013   id = GNUNET_PEER_search (&msg->peer);
1014   if ((p = retrieve_peer (t, id)) == NULL)
1015     p = add_peer_to_tunnel (t, &msg->peer);
1016   if (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD == ntohs (msg->header.type))
1017   {
1018     LOG (GNUNET_ERROR_TYPE_DEBUG, "adding peer\n");
1019     if (NULL != t->connect_handler)
1020     {
1021       atsi.type = 0;
1022       atsi.value = 0;
1023       t->connect_handler (t->cls, &msg->peer, &atsi);
1024     }
1025     p->connected = 1;
1026   }
1027   else
1028   {
1029     LOG (GNUNET_ERROR_TYPE_DEBUG, "removing peer\n");
1030     if (NULL != t->disconnect_handler && p->connected)
1031     {
1032       t->disconnect_handler (t->cls, &msg->peer);
1033     }
1034     remove_peer_from_tunnel (p);
1035     GNUNET_free (p);
1036   }
1037   LOG (GNUNET_ERROR_TYPE_DEBUG, "processing peer event END\n");
1038 }
1039
1040
1041 /**
1042  * Process the incoming data packets
1043  *
1044  * @param h         The mesh handle
1045  * @param message   A message encapsulating the data
1046  * 
1047  * @return GNUNET_YES if everything went fine
1048  *         GNUNET_NO if client closed connection (h no longer valid)
1049  */
1050 static int
1051 process_incoming_data (struct GNUNET_MESH_Handle *h,
1052                        const struct GNUNET_MessageHeader *message)
1053 {
1054   const struct GNUNET_MessageHeader *payload;
1055   const struct GNUNET_MESH_MessageHandler *handler;
1056   const struct GNUNET_PeerIdentity *peer;
1057   struct GNUNET_MESH_Unicast *ucast;
1058   struct GNUNET_MESH_Multicast *mcast;
1059   struct GNUNET_MESH_ToOrigin *to_orig;
1060   struct GNUNET_MESH_Tunnel *t;
1061   unsigned int i;
1062   uint16_t type;
1063
1064   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got a data message!\n");
1065   type = ntohs (message->type);
1066   switch (type)
1067   {
1068   case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
1069     ucast = (struct GNUNET_MESH_Unicast *) message;
1070
1071     t = retrieve_tunnel (h, ntohl (ucast->tid));
1072     payload = (struct GNUNET_MessageHeader *) &ucast[1];
1073     peer = &ucast->oid;
1074     LOG (GNUNET_ERROR_TYPE_DEBUG, "  ucast on tunnel %s [%X]\n",
1075          GNUNET_i2s (peer), ntohl (ucast->tid));
1076     break;
1077   case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
1078     mcast = (struct GNUNET_MESH_Multicast *) message;
1079     t = retrieve_tunnel (h, ntohl (mcast->tid));
1080     payload = (struct GNUNET_MessageHeader *) &mcast[1];
1081     peer = &mcast->oid;
1082     LOG (GNUNET_ERROR_TYPE_DEBUG, "  mcast on tunnel %s [%X]\n",
1083          GNUNET_i2s (peer), ntohl (mcast->tid));
1084     break;
1085   case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
1086     to_orig = (struct GNUNET_MESH_ToOrigin *) message;
1087     t = retrieve_tunnel (h, ntohl (to_orig->tid));
1088     payload = (struct GNUNET_MessageHeader *) &to_orig[1];
1089     peer = &to_orig->sender;
1090     LOG (GNUNET_ERROR_TYPE_DEBUG, "  torig on tunnel %s [%X]\n",
1091          GNUNET_i2s (peer), ntohl (to_orig->tid));
1092     break;
1093   default:
1094     GNUNET_break (0);
1095     return GNUNET_YES;
1096   }
1097   if (NULL == t)
1098   {
1099     /* Tunnel was ignored, probably service didn't get it yet */
1100     return GNUNET_YES;
1101   }
1102   type = ntohs (payload->type);
1103   for (i = 0; i < h->n_handlers; i++)
1104   {
1105     handler = &h->message_handlers[i];
1106     if (handler->type == type)
1107     {
1108       struct GNUNET_ATS_Information atsi;
1109
1110       atsi.type = 0;
1111       atsi.value = 0;
1112       if (GNUNET_OK !=
1113           handler->callback (h->cls, t, &t->ctx, peer, payload, &atsi))
1114       {
1115         LOG (GNUNET_ERROR_TYPE_DEBUG, "callback caused disconnection\n");
1116         GNUNET_MESH_disconnect (h);
1117         return GNUNET_NO;
1118       }
1119       else
1120       {
1121         LOG (GNUNET_ERROR_TYPE_DEBUG,
1122              "callback completed successfully\n");
1123         send_ack (h, t);
1124       }
1125     }
1126   }
1127   return GNUNET_YES;
1128 }
1129
1130
1131 /**
1132  * Process a local ACK message, enabling the client to send
1133  * more data to the service.
1134  * 
1135  * @param h Mesh handle.
1136  * @param message Message itself.
1137  */
1138 static void
1139 process_ack (struct GNUNET_MESH_Handle *h,
1140              const struct GNUNET_MessageHeader *message)
1141 {
1142   struct GNUNET_MESH_LocalAck *msg;
1143   struct GNUNET_MESH_Tunnel *t;
1144   uint32_t ack;
1145
1146   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got an ACK!\n");
1147   msg = (struct GNUNET_MESH_LocalAck *) message;
1148
1149   t = retrieve_tunnel (h, ntohl (msg->tunnel_id));
1150
1151   if (NULL == t)
1152   {
1153     LOG (GNUNET_ERROR_TYPE_WARNING,
1154          "ACK on unknown tunnel %X\n",
1155          ntohl (msg->tunnel_id));
1156     return;
1157   }
1158   ack = ntohl (msg->max_pid);
1159   LOG (GNUNET_ERROR_TYPE_DEBUG, "  on tunnel %X, ack %u!\n", t->tid, ack);
1160   if (ack > t->max_pid || PID_OVERFLOW (t->max_pid, ack))
1161     t->max_pid = ack;
1162   else
1163     return;
1164   if (NULL == h->th && 0 < t->packet_size)
1165   {
1166     LOG (GNUNET_ERROR_TYPE_DEBUG, "  tmt rdy was NULL, requesting!\n", t->tid, ack);
1167     h->th =
1168         GNUNET_CLIENT_notify_transmit_ready (h->client, t->packet_size,
1169                                              GNUNET_TIME_UNIT_FOREVER_REL,
1170                                              GNUNET_YES, &send_callback, h);
1171   }
1172 }
1173
1174
1175 /**
1176  * Function to process all messages received from the service
1177  *
1178  * @param cls closure
1179  * @param msg message received, NULL on timeout or fatal error
1180  */
1181 static void
1182 msg_received (void *cls, const struct GNUNET_MessageHeader *msg)
1183 {
1184   struct GNUNET_MESH_Handle *h = cls;
1185
1186   if (msg == NULL)
1187   {
1188     LOG (GNUNET_ERROR_TYPE_WARNING, "Received NULL msg on %p\n", h);
1189     reconnect (h);
1190     return;
1191   }
1192   LOG (GNUNET_ERROR_TYPE_DEBUG, "received a message: %s\n",
1193        GNUNET_MESH_DEBUG_M2S (ntohs (msg->type)));
1194   switch (ntohs (msg->type))
1195   {
1196     /* Notify of a new incoming tunnel */
1197   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE:
1198     process_tunnel_created (h, (struct GNUNET_MESH_TunnelNotification *) msg);
1199     break;
1200     /* Notify of a tunnel disconnection */
1201   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY:
1202     process_tunnel_destroy (h, (struct GNUNET_MESH_TunnelMessage *) msg);
1203     break;
1204     /* Notify of a new peer or a peer disconnect in the tunnel */
1205   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD:
1206   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL:
1207     process_peer_event (h, (struct GNUNET_MESH_PeerControl *) msg);
1208     break;
1209     /* Notify of a new data packet in the tunnel */
1210   case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
1211   case GNUNET_MESSAGE_TYPE_MESH_MULTICAST:
1212   case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
1213     if (GNUNET_NO == process_incoming_data (h, msg))
1214       return;
1215     break;
1216   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
1217     process_ack (h, msg);
1218     break;
1219   default:
1220     /* We shouldn't get any other packages, log and ignore */
1221     LOG (GNUNET_ERROR_TYPE_WARNING,
1222          "unsolicited message form service (type %hu)\n",
1223          ntohs (msg->type));
1224   }
1225   LOG (GNUNET_ERROR_TYPE_DEBUG, "message processed\n");
1226   if (GNUNET_YES == h->in_receive)
1227   {
1228     GNUNET_CLIENT_receive (h->client, &msg_received, h,
1229                            GNUNET_TIME_UNIT_FOREVER_REL);
1230   }
1231   else
1232   {
1233     LOG (GNUNET_ERROR_TYPE_DEBUG,
1234          "in receive off, not calling CLIENT_receive\n");
1235   }
1236 }
1237
1238
1239 /******************************************************************************/
1240 /************************       SEND FUNCTIONS     ****************************/
1241 /******************************************************************************/
1242
1243 /**
1244  * Function called to send a message to the service.
1245  * "buf" will be NULL and "size" zero if the socket was closed for writing in
1246  * the meantime.
1247  *
1248  * @param cls closure, the mesh handle
1249  * @param size number of bytes available in buf
1250  * @param buf where the callee should write the connect message
1251  * @return number of bytes written to buf
1252  */
1253 static size_t
1254 send_callback (void *cls, size_t size, void *buf)
1255 {
1256   struct GNUNET_MESH_Handle *h = cls;
1257   struct GNUNET_MESH_TransmitHandle *th;
1258   struct GNUNET_MESH_TransmitHandle *next;
1259   struct GNUNET_MESH_Tunnel *t;
1260   char *cbuf = buf;
1261   size_t tsize;
1262   size_t psize;
1263
1264   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send packet() Buffer %u\n", size);
1265   if ((0 == size) || (NULL == buf))
1266   {
1267     LOG (GNUNET_ERROR_TYPE_DEBUG, "Received NULL send callback on %p\n", h);
1268     reconnect (h);
1269     h->th = NULL;
1270     return 0;
1271   }
1272   tsize = 0;
1273   next = h->th_head;
1274   while ((NULL != (th = next)) && (size >= th->size))
1275   {
1276     t = th->tunnel;
1277     if (GNUNET_YES == th_is_payload (th))
1278     {
1279       LOG (GNUNET_ERROR_TYPE_DEBUG, " payload\n");
1280       if (t->max_pid < t->pid && GNUNET_NO == PID_OVERFLOW (t->pid, t->max_pid))
1281       {
1282         /* This tunnel is not ready to transmit yet, try next message */
1283         next = th->next;
1284         continue;
1285       }
1286       t->packet_size = 0;
1287       if (t->tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1288       {
1289         /* traffic to origin */
1290         struct GNUNET_MESH_ToOrigin to;
1291         struct GNUNET_MessageHeader *mh;
1292
1293         GNUNET_assert (size >= th->size);
1294         mh = (struct GNUNET_MessageHeader *) &cbuf[sizeof (to)];
1295         psize = th->notify (th->notify_cls, size - sizeof (to), mh);
1296         LOG (GNUNET_ERROR_TYPE_DEBUG, "  to origin, type %s\n",
1297              GNUNET_MESH_DEBUG_M2S (ntohs (mh->type)));
1298         if (psize > 0)
1299         {
1300           psize += sizeof (to);
1301           GNUNET_assert (size >= psize);
1302           to.header.size = htons (psize);
1303           to.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN);
1304           to.tid = htonl (t->tid);
1305           to.pid = htonl (t->pid);
1306           memset (&to.oid, 0, sizeof (struct GNUNET_PeerIdentity));
1307           memset (&to.sender, 0, sizeof (struct GNUNET_PeerIdentity));
1308           memcpy (cbuf, &to, sizeof (to));
1309         }
1310       }
1311       else if (th->target == 0)
1312       {
1313         /* multicast */
1314         struct GNUNET_MESH_Multicast mc;
1315         struct GNUNET_MessageHeader *mh;
1316
1317         GNUNET_assert (size >= th->size);
1318         mh = (struct GNUNET_MessageHeader *) &cbuf[sizeof (mc)];
1319         psize = th->notify (th->notify_cls, size - sizeof (mc), mh);
1320         LOG (GNUNET_ERROR_TYPE_DEBUG, "  multicast, type %s\n",
1321              GNUNET_MESH_DEBUG_M2S (ntohs (mh->type)));
1322         if (psize > 0)
1323         {
1324           psize += sizeof (mc);
1325           GNUNET_assert (size >= psize);
1326           mc.header.size = htons (psize);
1327           mc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_MULTICAST);
1328           mc.tid = htonl (t->tid);
1329           mc.pid = htonl (t->pid);
1330           mc.ttl = 0;
1331           memset (&mc.oid, 0, sizeof (struct GNUNET_PeerIdentity));
1332           memcpy (cbuf, &mc, sizeof (mc));
1333         }
1334       }
1335       else
1336       {
1337         /* unicast */
1338         struct GNUNET_MESH_Unicast uc;
1339         struct GNUNET_MessageHeader *mh;
1340
1341         GNUNET_assert (size >= th->size);
1342         mh = (struct GNUNET_MessageHeader *) &cbuf[sizeof (uc)];
1343         psize = th->notify (th->notify_cls, size - sizeof (uc), mh);
1344         LOG (GNUNET_ERROR_TYPE_DEBUG, "  unicast, type %s\n",
1345              GNUNET_MESH_DEBUG_M2S (ntohs (mh->type)));
1346         if (psize > 0)
1347         {
1348           psize += sizeof (uc);
1349           GNUNET_assert (size >= psize);
1350           uc.header.size = htons (psize);
1351           uc.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_UNICAST);
1352           uc.tid = htonl (t->tid);
1353           uc.pid = htonl (t->pid);
1354           memset (&uc.oid, 0, sizeof (struct GNUNET_PeerIdentity));
1355           GNUNET_PEER_resolve (th->target, &uc.destination);
1356           memcpy (cbuf, &uc, sizeof (uc));
1357         }
1358       }
1359       t->pid++;
1360     }
1361     else
1362     {
1363       struct GNUNET_MessageHeader *mh = (struct GNUNET_MessageHeader *) &th[1];
1364
1365       LOG (GNUNET_ERROR_TYPE_DEBUG, "  mesh traffic, type %s\n",
1366              GNUNET_MESH_DEBUG_M2S (ntohs (mh->type)));
1367       memcpy (cbuf, &th[1], th->size);
1368       psize = th->size;
1369     }
1370     if (th->timeout_task != GNUNET_SCHEDULER_NO_TASK)
1371       GNUNET_SCHEDULER_cancel (th->timeout_task);
1372     GNUNET_CONTAINER_DLL_remove (h->th_head, h->th_tail, th);
1373     GNUNET_free (th);
1374     next = h->th_head;
1375     cbuf += psize;
1376     size -= psize;
1377     tsize += psize;
1378   }
1379   LOG (GNUNET_ERROR_TYPE_DEBUG, "  total size: %u\n", tsize);
1380   h->th = NULL;
1381   size = message_ready_size (h);
1382   if (0 != size)
1383   {
1384     LOG (GNUNET_ERROR_TYPE_DEBUG, "  next size: %u\n", size);
1385     h->th =
1386         GNUNET_CLIENT_notify_transmit_ready (h->client, size,
1387                                              GNUNET_TIME_UNIT_FOREVER_REL,
1388                                              GNUNET_YES, &send_callback, h);
1389   }
1390   else
1391   {
1392     LOG (GNUNET_ERROR_TYPE_DEBUG, "  nothing left to transmit\n");
1393   }
1394   if (GNUNET_NO == h->in_receive)
1395   {
1396     LOG (GNUNET_ERROR_TYPE_DEBUG, " start receiving from service\n");
1397     h->in_receive = GNUNET_YES;
1398     GNUNET_CLIENT_receive (h->client, &msg_received, h,
1399                            GNUNET_TIME_UNIT_FOREVER_REL);
1400   }
1401   LOG (GNUNET_ERROR_TYPE_DEBUG, "Send packet() END\n");
1402   return tsize;
1403 }
1404
1405
1406 /**
1407  * Auxiliary function to send an already constructed packet to the service.
1408  * Takes care of creating a new queue element, copying the message and
1409  * calling the tmt_rdy function if necessary.
1410  * 
1411  * @param h mesh handle
1412  * @param msg message to transmit
1413  * @param tunnel tunnel this send is related to (NULL if N/A)
1414  */
1415 static void
1416 send_packet (struct GNUNET_MESH_Handle *h,
1417              const struct GNUNET_MessageHeader *msg,
1418              struct GNUNET_MESH_Tunnel *tunnel)
1419 {
1420   struct GNUNET_MESH_TransmitHandle *th;
1421   size_t msize;
1422
1423   msize = ntohs (msg->size);
1424   th = GNUNET_malloc (sizeof (struct GNUNET_MESH_TransmitHandle) + msize);
1425   th->timeout = GNUNET_TIME_UNIT_FOREVER_ABS;
1426   th->size = msize;
1427   th->tunnel = tunnel;
1428   memcpy (&th[1], msg, msize);
1429   add_to_queue (h, th);
1430   if (NULL != h->th)
1431     return;
1432   h->th =
1433       GNUNET_CLIENT_notify_transmit_ready (h->client, msize,
1434                                            GNUNET_TIME_UNIT_FOREVER_REL,
1435                                            GNUNET_YES, &send_callback, h);
1436 }
1437
1438
1439 /******************************************************************************/
1440 /**********************      API CALL DEFINITIONS     *************************/
1441 /******************************************************************************/
1442
1443 /**
1444  * Connect to the mesh service.
1445  *
1446  * @param cfg configuration to use
1447  * @param cls closure for the various callbacks that follow
1448  *            (including handlers in the handlers array)
1449  * @param new_tunnel function called when an *inbound* tunnel is created
1450  * @param cleaner function called when an *inbound* tunnel is destroyed by the
1451  *                remote peer, it is *not* called if GNUNET_MESH_tunnel_destroy
1452  *                is called on the tunnel
1453  * @param handlers callbacks for messages we care about, NULL-terminated
1454  *                note that the mesh is allowed to drop notifications about
1455  *                inbound messages if the client does not process them fast
1456  *                enough (for this notification type, a bounded queue is used)
1457  * @param stypes list of the applications that this client claims to provide
1458  * @return handle to the mesh service NULL on error
1459  *         (in this case, init is never called)
1460  */
1461 struct GNUNET_MESH_Handle *
1462 GNUNET_MESH_connect (const struct GNUNET_CONFIGURATION_Handle *cfg, void *cls,
1463                      GNUNET_MESH_InboundTunnelNotificationHandler new_tunnel,
1464                      GNUNET_MESH_TunnelEndHandler cleaner,
1465                      const struct GNUNET_MESH_MessageHandler *handlers,
1466                      const GNUNET_MESH_ApplicationType *stypes)
1467 {
1468   struct GNUNET_MESH_Handle *h;
1469
1470   LOG (GNUNET_ERROR_TYPE_DEBUG, "GNUNET_MESH_connect()\n");
1471   h = GNUNET_malloc (sizeof (struct GNUNET_MESH_Handle));
1472   LOG (GNUNET_ERROR_TYPE_DEBUG, " addr %p\n", h);
1473   h->cfg = cfg;
1474   h->new_tunnel = new_tunnel;
1475   h->cleaner = cleaner;
1476   h->client = GNUNET_CLIENT_connect ("mesh", cfg);
1477   if (h->client == NULL)
1478   {
1479     GNUNET_break (0);
1480     GNUNET_free (h);
1481     return NULL;
1482   }
1483   h->cls = cls;
1484   /* FIXME memdup? */
1485   h->applications = stypes;
1486   h->message_handlers = handlers;
1487   h->next_tid = GNUNET_MESH_LOCAL_TUNNEL_ID_CLI;
1488   h->reconnect_time = GNUNET_TIME_UNIT_MILLISECONDS;
1489   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1490
1491   /* count handlers and apps, calculate size */
1492   for (h->n_applications = 0; stypes[h->n_applications]; h->n_applications++) ;
1493   for (h->n_handlers = 0; handlers[h->n_handlers].type; h->n_handlers++) ;
1494   send_connect (h);
1495   LOG (GNUNET_ERROR_TYPE_DEBUG, "GNUNET_MESH_connect() END\n");
1496   return h;
1497 }
1498
1499
1500 /**
1501  * Disconnect from the mesh service. All tunnels will be destroyed. All tunnel
1502  * disconnect callbacks will be called on any still connected peers, notifying
1503  * about their disconnection. The registered inbound tunnel cleaner will be
1504  * called should any inbound tunnels still exist.
1505  *
1506  * @param handle connection to mesh to disconnect
1507  */
1508 void
1509 GNUNET_MESH_disconnect (struct GNUNET_MESH_Handle *handle)
1510 {
1511   struct GNUNET_MESH_Tunnel *t;
1512   struct GNUNET_MESH_Tunnel *aux;
1513   struct GNUNET_MESH_TransmitHandle *th;
1514
1515   LOG (GNUNET_ERROR_TYPE_DEBUG, "MESH DISCONNECT\n");
1516
1517   t = handle->tunnels_head;
1518   while (NULL != t)
1519   {
1520     aux = t->next;
1521     if (t->tid < GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1522     {
1523       GNUNET_break (0);
1524       LOG (GNUNET_ERROR_TYPE_DEBUG, "tunnel %X not destroyed\n", t->tid);
1525     }
1526     destroy_tunnel (t, GNUNET_YES);
1527     t = aux;
1528   }
1529   while ( (th = handle->th_head) != NULL)
1530   {
1531     struct GNUNET_MessageHeader *msg;
1532
1533     /* Make sure it is an allowed packet (everything else should have been
1534      * already canceled).
1535      */
1536     GNUNET_break (GNUNET_NO == th_is_payload (th));
1537     msg = (struct GNUNET_MessageHeader *) &th[1];
1538     switch (ntohs(msg->type))
1539     {
1540       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT:
1541       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY:
1542         break;
1543       default:
1544         GNUNET_break (0);
1545         LOG (GNUNET_ERROR_TYPE_DEBUG, "unexpected msg %u\n",
1546              ntohs(msg->type));
1547     }
1548
1549     GNUNET_CONTAINER_DLL_remove (handle->th_head, handle->th_tail, th);
1550     GNUNET_free (th);
1551   }
1552
1553   if (NULL != handle->th)
1554   {
1555     GNUNET_CLIENT_notify_transmit_ready_cancel (handle->th);
1556     handle->th = NULL;
1557   }
1558   if (NULL != handle->client)
1559   {
1560     GNUNET_CLIENT_disconnect (handle->client);
1561     handle->client = NULL;
1562   }
1563   if (GNUNET_SCHEDULER_NO_TASK != handle->reconnect_task)
1564   {
1565     GNUNET_SCHEDULER_cancel(handle->reconnect_task);
1566     handle->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1567   }
1568   GNUNET_free (handle);
1569 }
1570
1571
1572 /**
1573  * Announce to ther peer the availability of services described by the regex,
1574  * in order to be reachable to other peers via connect_by_string.
1575  * 
1576  * Note that the first 8 characters are considered to be part of a prefix,
1577  * (for instance 'gnunet://'). If you put a variable part in there (*, +. ()),
1578  * all matching strings will be stored in the DHT.
1579  *
1580  * @param h handle to mesh.
1581  * @param regex string with the regular expression describing local services.
1582  */
1583 void
1584 GNUNET_MESH_announce_regex (struct GNUNET_MESH_Handle *h,
1585                             const char *regex)
1586 {
1587   struct GNUNET_MessageHeader *msg;
1588   size_t len;
1589   size_t msgsize;
1590
1591   len = strlen (regex);
1592   msgsize = sizeof(struct GNUNET_MessageHeader) + len;
1593   GNUNET_assert (UINT16_MAX > msgsize);
1594
1595   {
1596     char buffer[msgsize];
1597
1598     msg = (struct GNUNET_MessageHeader *) buffer;
1599     msg->size = htons (msgsize);
1600     msg->type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ANNOUNCE_REGEX);
1601     memcpy (&msg[1], regex, len);
1602
1603     send_packet(h, msg, NULL);
1604   }
1605 }
1606
1607 /**
1608  * Create a new tunnel (we're initiator and will be allowed to add/remove peers
1609  * and to broadcast).
1610  *
1611  * @param h mesh handle
1612  * @param tunnel_ctx client's tunnel context to associate with the tunnel
1613  * @param connect_handler function to call when peers are actually connected
1614  * @param disconnect_handler function to call when peers are disconnected
1615  * @param handler_cls closure for connect/disconnect handlers
1616  */
1617 struct GNUNET_MESH_Tunnel *
1618 GNUNET_MESH_tunnel_create (struct GNUNET_MESH_Handle *h, void *tunnel_ctx,
1619                            GNUNET_MESH_PeerConnectHandler connect_handler,
1620                            GNUNET_MESH_PeerDisconnectHandler disconnect_handler,
1621                            void *handler_cls)
1622 {
1623   struct GNUNET_MESH_Tunnel *t;
1624   struct GNUNET_MESH_TunnelMessage msg;
1625
1626   LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating new tunnel\n");
1627   t = create_tunnel (h, 0);
1628   LOG (GNUNET_ERROR_TYPE_DEBUG, "  at %p\n", t);
1629   LOG (GNUNET_ERROR_TYPE_DEBUG, "  number %X\n", t->tid);
1630   t->connect_handler = connect_handler;
1631   t->disconnect_handler = disconnect_handler;
1632   t->cls = handler_cls;
1633   t->ctx = tunnel_ctx;
1634   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_CREATE);
1635   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1636   msg.tunnel_id = htonl (t->tid);
1637   send_packet (h, &msg.header, t);
1638   return t;
1639 }
1640
1641
1642 /**
1643  * Destroy an existing tunnel. The existing callback for the tunnel will NOT
1644  * be called.
1645  *
1646  * @param tunnel tunnel handle
1647  */
1648 void
1649 GNUNET_MESH_tunnel_destroy (struct GNUNET_MESH_Tunnel *tunnel)
1650 {
1651   struct GNUNET_MESH_Handle *h;
1652   struct GNUNET_MESH_TunnelMessage msg;
1653   struct GNUNET_MESH_TransmitHandle *th;
1654
1655   LOG (GNUNET_ERROR_TYPE_DEBUG, "Destroying tunnel\n");
1656   h = tunnel->mesh;
1657
1658   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_DESTROY);
1659   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1660   msg.tunnel_id = htonl (tunnel->tid);
1661   th = h->th_head;
1662   while (th != NULL)
1663   {
1664     struct GNUNET_MESH_TransmitHandle *aux;
1665     if (th->tunnel == tunnel)
1666     {
1667       aux = th->next;
1668       /* FIXME call the handler? */
1669       if (GNUNET_YES == th_is_payload (th))
1670         th->notify (th->notify_cls, 0, NULL);
1671       GNUNET_CONTAINER_DLL_remove (h->th_head, h->th_tail, th);
1672       GNUNET_free (th);
1673       th = aux;
1674     }
1675     else
1676       th = th->next;
1677   }
1678
1679   destroy_tunnel (tunnel, GNUNET_NO);
1680   send_packet (h, &msg.header, NULL);
1681 }
1682
1683 /**
1684  * Request that the tunnel data rate is limited to the speed of the slowest
1685  * receiver.
1686  *
1687  * @param tunnel Tunnel affected.
1688  */
1689 void
1690 GNUNET_MESH_tunnel_speed_min (struct GNUNET_MESH_Tunnel *tunnel)
1691 {
1692   struct GNUNET_MESH_TunnelMessage msg;
1693   struct GNUNET_MESH_Handle *h;
1694
1695   h = tunnel->mesh;
1696   tunnel->speed_min = GNUNET_YES;
1697
1698   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MIN);
1699   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1700   msg.tunnel_id = htonl (tunnel->tid);
1701
1702   send_packet (h, &msg.header, NULL);
1703 }
1704
1705
1706 /**
1707  * Request that the tunnel data rate is limited to the speed of the fastest
1708  * receiver. This is the default behavior.
1709  *
1710  * @param tunnel Tunnel affected.
1711  */
1712 void
1713 GNUNET_MESH_tunnel_speed_max (struct GNUNET_MESH_Tunnel *tunnel)
1714 {
1715   struct GNUNET_MESH_TunnelMessage msg;
1716   struct GNUNET_MESH_Handle *h;
1717
1718   h = tunnel->mesh;
1719   tunnel->speed_min = GNUNET_NO;
1720
1721   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_MAX);
1722   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1723   msg.tunnel_id = htonl (tunnel->tid);
1724
1725   send_packet (h, &msg.header, NULL);
1726 }
1727
1728 /**
1729  * Turn on/off the buffering status of the tunnel.
1730  * 
1731  * @param tunnel Tunnel affected.
1732  * @param buffer GNUNET_YES to turn buffering on (default),
1733  *               GNUNET_NO otherwise.
1734  */
1735 void
1736 GNUNET_MESH_tunnel_buffer (struct GNUNET_MESH_Tunnel *tunnel, int buffer)
1737 {
1738   struct GNUNET_MESH_TunnelMessage msg;
1739   struct GNUNET_MESH_Handle *h;
1740
1741   h = tunnel->mesh;
1742   tunnel->buffering = buffer;
1743
1744   if (GNUNET_YES == buffer)
1745     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_BUFFER);
1746   else
1747     msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_TUNNEL_NOBUFFER);
1748   msg.header.size = htons (sizeof (struct GNUNET_MESH_TunnelMessage));
1749   msg.tunnel_id = htonl (tunnel->tid);
1750
1751   send_packet (h, &msg.header, NULL);
1752 }
1753
1754 /**
1755  * Request that a peer should be added to the tunnel.  The existing
1756  * connect handler will be called ONCE with either success or failure.
1757  * This function should NOT be called again with the same peer before the
1758  * connect handler is called.
1759  *
1760  * @param tunnel handle to existing tunnel
1761  * @param peer peer to add
1762  */
1763 void
1764 GNUNET_MESH_peer_request_connect_add (struct GNUNET_MESH_Tunnel *tunnel,
1765                                       const struct GNUNET_PeerIdentity *peer)
1766 {
1767   struct GNUNET_MESH_PeerControl msg;
1768   GNUNET_PEER_Id peer_id;
1769   unsigned int i;
1770
1771   peer_id = GNUNET_PEER_intern (peer);
1772   for (i = 0; i < tunnel->npeers; i++)
1773   {
1774     if (tunnel->peers[i]->id == peer_id)
1775     {
1776       /* Peer already exists in tunnel */
1777       GNUNET_PEER_change_rc (peer_id, -1);
1778       GNUNET_break (0);
1779       return;
1780     }
1781   }
1782   if (NULL == add_peer_to_tunnel (tunnel, peer))
1783     return;
1784
1785   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1786   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD);
1787   msg.tunnel_id = htonl (tunnel->tid);
1788   msg.peer = *peer;
1789   send_packet (tunnel->mesh, &msg.header, tunnel);
1790
1791   return;
1792 }
1793
1794
1795 /**
1796  * Request that a peer should be removed from the tunnel.  The existing
1797  * disconnect handler will be called ONCE if we were connected.
1798  *
1799  * @param tunnel handle to existing tunnel
1800  * @param peer peer to remove
1801  */
1802 void
1803 GNUNET_MESH_peer_request_connect_del (struct GNUNET_MESH_Tunnel *tunnel,
1804                                       const struct GNUNET_PeerIdentity *peer)
1805 {
1806   struct GNUNET_MESH_PeerControl msg;
1807   GNUNET_PEER_Id peer_id;
1808   unsigned int i;
1809
1810   peer_id = GNUNET_PEER_search (peer);
1811   if (0 == peer_id)
1812   {
1813     GNUNET_break (0);
1814     return;
1815   }
1816   for (i = 0; i < tunnel->npeers; i++)
1817     if (tunnel->peers[i]->id == peer_id)
1818       break;
1819   if (i == tunnel->npeers)
1820   {
1821     GNUNET_break (0);
1822     return;
1823   }
1824   if (NULL != tunnel->disconnect_handler && tunnel->peers[i]->connected == 1)
1825     tunnel->disconnect_handler (tunnel->cls, peer);
1826   GNUNET_PEER_change_rc (peer_id, -1);
1827   GNUNET_free (tunnel->peers[i]);
1828   tunnel->peers[i] = tunnel->peers[tunnel->npeers - 1];
1829   GNUNET_array_grow (tunnel->peers, tunnel->npeers, tunnel->npeers - 1);
1830
1831   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1832   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_DEL);
1833   msg.tunnel_id = htonl (tunnel->tid);
1834   memcpy (&msg.peer, peer, sizeof (struct GNUNET_PeerIdentity));
1835   send_packet (tunnel->mesh, &msg.header, tunnel);
1836 }
1837
1838
1839 /**
1840  * Request that the mesh should try to connect to a peer supporting the given
1841  * message type.
1842  *
1843  * @param tunnel handle to existing tunnel
1844  * @param app_type application type that must be supported by the peer (MESH
1845  *                 should discover peer in proximity handling this type)
1846  */
1847 void
1848 GNUNET_MESH_peer_request_connect_by_type (struct GNUNET_MESH_Tunnel *tunnel,
1849                                           GNUNET_MESH_ApplicationType app_type)
1850 {
1851   struct GNUNET_MESH_ConnectPeerByType msg;
1852
1853   GNUNET_array_append (tunnel->apps, tunnel->napps, app_type);
1854
1855   LOG (GNUNET_ERROR_TYPE_DEBUG, "* CONNECT BY TYPE *\n");
1856   msg.header.size = htons (sizeof (struct GNUNET_MESH_ConnectPeerByType));
1857   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_TYPE);
1858   msg.tunnel_id = htonl (tunnel->tid);
1859   msg.type = htonl (app_type);
1860   send_packet (tunnel->mesh, &msg.header, tunnel);
1861 }
1862
1863
1864 /**
1865  * Request that the mesh should try to connect to a peer matching the
1866  * description given in the service string.
1867  * 
1868  * FIXME: allow multiple? how to deal with reconnect?
1869  *
1870  * @param tunnel handle to existing tunnel
1871  * @param description string describing the destination node requirements
1872  */
1873 void
1874 GNUNET_MESH_peer_request_connect_by_string (struct GNUNET_MESH_Tunnel *tunnel,
1875                                             const char *description)
1876 {
1877   struct GNUNET_MESH_ConnectPeerByString *m;
1878   size_t len;
1879   size_t msgsize;
1880
1881   len = strlen (description);
1882   msgsize = sizeof(struct GNUNET_MESH_ConnectPeerByString) + len;
1883   GNUNET_assert (UINT16_MAX > msgsize);
1884   {
1885     char buffer[msgsize];
1886
1887     m = (struct GNUNET_MESH_ConnectPeerByString *) buffer;
1888     m->header.size = htons (msgsize);
1889     m->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_ADD_BY_STRING);
1890     m->tunnel_id = htonl (tunnel->tid);
1891     memcpy(&m[1], description, len);
1892
1893     send_packet (tunnel->mesh, &m->header, tunnel);
1894   }
1895 }
1896
1897
1898 /**
1899  * Request that the given peer isn't added to this tunnel in calls to
1900  * connect_by_* calls, (due to misbehaviour, bad performance, ...).
1901  *
1902  * @param tunnel handle to existing tunnel.
1903  * @param peer peer identity of the peer which should be blacklisted
1904  *                  for the tunnel.
1905  */
1906 void
1907 GNUNET_MESH_peer_blacklist (struct GNUNET_MESH_Tunnel *tunnel,
1908                             const struct GNUNET_PeerIdentity *peer)
1909 {
1910   struct GNUNET_MESH_PeerControl msg;
1911
1912   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1913   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_BLACKLIST);
1914   msg.tunnel_id = htonl (tunnel->tid);
1915   msg.peer = *peer;
1916   send_packet (tunnel->mesh, &msg.header, tunnel);
1917
1918   return;
1919 }
1920
1921
1922 /**
1923  * Request that the given peer isn't blacklisted anymore from this tunnel,
1924  * and therefore can be added in future calls to connect_by_*.
1925  * The peer must have been previously blacklisted for this tunnel.
1926  *
1927  * @param tunnel handle to existing tunnel.
1928  * @param peer peer identity of the peer which shouldn't be blacklisted
1929  *                  for the tunnel anymore.
1930  */
1931 void
1932 GNUNET_MESH_peer_unblacklist (struct GNUNET_MESH_Tunnel *tunnel,
1933                               const struct GNUNET_PeerIdentity *peer)
1934 {
1935   struct GNUNET_MESH_PeerControl msg;
1936
1937   msg.header.size = htons (sizeof (struct GNUNET_MESH_PeerControl));
1938   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_PEER_UNBLACKLIST);
1939   msg.tunnel_id = htonl (tunnel->tid);
1940   msg.peer = *peer;
1941   send_packet (tunnel->mesh, &msg.header, tunnel);
1942
1943   return;
1944 }
1945
1946
1947 /**
1948  * Ask the mesh to call "notify" once it is ready to transmit the
1949  * given number of bytes to the specified tunnel or target.
1950  * Only one call can be active at any time, to issue another request,
1951  * wait for the callback or cancel the current request.
1952  *
1953  * @param tunnel tunnel to use for transmission
1954  * @param cork is corking allowed for this transmission?
1955  * @param maxdelay how long can the message wait?
1956  * @param target destination for the message
1957  *               NULL for multicast to all tunnel targets
1958  * @param notify_size how many bytes of buffer space does notify want?
1959  * @param notify function to call when buffer space is available;
1960  *        will be called with NULL on timeout or if the overall queue
1961  *        for this peer is larger than queue_size and this is currently
1962  *        the message with the lowest priority
1963  * @param notify_cls closure for notify
1964  * @return non-NULL if the notify callback was queued,
1965  *         NULL if we can not even queue the request (insufficient
1966  *         memory); if NULL is returned, "notify" will NOT be called.
1967  */
1968 struct GNUNET_MESH_TransmitHandle *
1969 GNUNET_MESH_notify_transmit_ready (struct GNUNET_MESH_Tunnel *tunnel, int cork,
1970                                    struct GNUNET_TIME_Relative maxdelay,
1971                                    const struct GNUNET_PeerIdentity *target,
1972                                    size_t notify_size,
1973                                    GNUNET_CONNECTION_TransmitReadyNotify notify,
1974                                    void *notify_cls)
1975 {
1976   struct GNUNET_MESH_TransmitHandle *th;
1977   size_t overhead;
1978
1979   GNUNET_assert (NULL != tunnel);
1980   LOG (GNUNET_ERROR_TYPE_DEBUG, "mesh notify transmit ready called\n");
1981   if (NULL != target)
1982     LOG (GNUNET_ERROR_TYPE_DEBUG, "    target %s\n", GNUNET_i2s (target));
1983   else
1984     LOG (GNUNET_ERROR_TYPE_DEBUG, "    target multicast\n");
1985   LOG (GNUNET_ERROR_TYPE_DEBUG, "    payload size %u\n", notify_size);
1986   GNUNET_assert (NULL != notify);
1987   GNUNET_assert (0 == tunnel->packet_size); // Only one data packet allowed
1988   th = GNUNET_malloc (sizeof (struct GNUNET_MESH_TransmitHandle));
1989   th->tunnel = tunnel;
1990   th->timeout = GNUNET_TIME_relative_to_absolute (maxdelay);
1991   th->target = GNUNET_PEER_intern (target);
1992   if (tunnel->tid >= GNUNET_MESH_LOCAL_TUNNEL_ID_SERV)
1993     overhead = sizeof (struct GNUNET_MESH_ToOrigin);
1994   else if (NULL == target)
1995     overhead = sizeof (struct GNUNET_MESH_Multicast);
1996   else
1997     overhead = sizeof (struct GNUNET_MESH_Unicast);
1998   tunnel->packet_size = th->size = notify_size + overhead;
1999   LOG (GNUNET_ERROR_TYPE_DEBUG, "    total size %u\n", th->size);
2000   th->notify = notify;
2001   th->notify_cls = notify_cls;
2002   add_to_queue (tunnel->mesh, th);
2003   if (NULL != tunnel->mesh->th)
2004     return th;
2005   if (GNUNET_NO == PID_OVERFLOW(tunnel->pid, tunnel->max_pid) &&
2006       tunnel->max_pid <= tunnel->pid)
2007     return th;
2008   LOG (GNUNET_ERROR_TYPE_DEBUG, "    call notify tmt rdy\n");
2009   tunnel->mesh->th =
2010       GNUNET_CLIENT_notify_transmit_ready (tunnel->mesh->client, th->size,
2011                                            GNUNET_TIME_UNIT_FOREVER_REL,
2012                                            GNUNET_YES, &send_callback,
2013                                            tunnel->mesh);
2014   return th;
2015 }
2016
2017
2018 /**
2019  * Cancel the specified transmission-ready notification.
2020  *
2021  * @param th handle that was returned by "notify_transmit_ready".
2022  */
2023 void
2024 GNUNET_MESH_notify_transmit_ready_cancel (struct GNUNET_MESH_TransmitHandle *th)
2025 {
2026   struct GNUNET_MESH_Handle *mesh;
2027
2028   th->tunnel->packet_size = 0;
2029   mesh = th->tunnel->mesh;
2030   if (th->timeout_task != GNUNET_SCHEDULER_NO_TASK)
2031     GNUNET_SCHEDULER_cancel (th->timeout_task);
2032   GNUNET_CONTAINER_DLL_remove (mesh->th_head, mesh->th_tail, th);
2033   GNUNET_free (th);
2034   if ((0 == message_ready_size (mesh)) && (NULL != mesh->th))
2035   {
2036     /* queue empty, no point in asking for transmission */
2037     GNUNET_CLIENT_notify_transmit_ready_cancel (mesh->th);
2038     mesh->th = NULL;
2039   }
2040 }
2041
2042
2043 /**
2044  * Transition API for tunnel ctx management
2045  */
2046 void
2047 GNUNET_MESH_tunnel_set_data (struct GNUNET_MESH_Tunnel *tunnel, void *data)
2048 {
2049   tunnel->ctx = data;
2050 }
2051
2052 /**
2053  * Transition API for tunnel ctx management
2054  */
2055 void *
2056 GNUNET_MESH_tunnel_get_data (struct GNUNET_MESH_Tunnel *tunnel)
2057 {
2058   return tunnel->ctx;
2059 }
2060
2061