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