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