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