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