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