- fix show tunnel
[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 /*
1038  * Process a local reply about info on all tunnels, pass info to the user.
1039  *
1040  * @param h Mesh handle.
1041  * @param message Message itself.
1042  */
1043 static void
1044 process_get_tunnels (struct GNUNET_MESH_Handle *h,
1045                      const struct GNUNET_MessageHeader *message)
1046 {
1047   struct GNUNET_MESH_LocalInfoTunnel *msg;
1048   uint16_t size;
1049
1050   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Get Tunnels messasge received\n");
1051
1052   if (NULL == h->tunnels_cb)
1053   {
1054     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ignored\n");
1055     return;
1056   }
1057
1058   size = ntohs (message->size);
1059   if (sizeof (struct GNUNET_MESH_LocalInfoTunnel) > size)
1060   {
1061     h->tunnels_cb (h->tunnel_cls, NULL, 0, 0, 0, 0);
1062     h->tunnels_cb = NULL;
1063     h->tunnels_cls = NULL;
1064     return;
1065   }
1066
1067   msg = (struct GNUNET_MESH_LocalInfoTunnel *) message;
1068   h->tunnels_cb (h->tunnel_cls,
1069                  &msg->destination,
1070                  ntohl (msg->channels),
1071                  ntohl (msg->connections),
1072                  ntohs (msg->estate),
1073                  ntohs (msg->cstate));
1074
1075 }
1076
1077
1078
1079 /*
1080  * Process a local monitor_channel reply, pass info to the user.
1081  *
1082  * @param h Mesh handle.
1083  * @param message Message itself.
1084  */
1085 static void
1086 process_get_tunnel (struct GNUNET_MESH_Handle *h,
1087                     const struct GNUNET_MessageHeader *message)
1088 {
1089   struct GNUNET_MESH_LocalInfoTunnel *msg;
1090   size_t esize;
1091   size_t msize;
1092
1093   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Get Tunnel messasge received\n");
1094   if (NULL == h->tunnel_cb)
1095   {
1096     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  ignored\n");
1097     return;
1098   }
1099
1100   /* Verify message sanity */
1101   msg = (struct GNUNET_MESH_LocalInfoTunnel *) message;
1102   msize = ntohs (message->size);
1103   esize = sizeof (struct GNUNET_MESH_LocalInfoTunnel);
1104   if (esize > msize)
1105   {
1106     GNUNET_break_op (0);
1107     h->tunnel_cb (h->tunnel_cls, NULL, 0, 0, 0, 0);
1108     goto clean_cls;
1109   }
1110   esize += ntohl (msg->connections) * sizeof (struct GNUNET_HashCode);
1111   esize += ntohl (msg->channels) * sizeof (MESH_ChannelNumber);
1112   if (msize != esize)
1113   {
1114     GNUNET_break_op (0);
1115     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "e: %u, m:%u\n", esize, msize);
1116     h->tunnel_cb (h->tunnel_cls, NULL, 0, 0, 0, 0);
1117     goto clean_cls;
1118   }
1119
1120   /* Call Callback with tunnel info. */
1121   h->tunnel_cb (h->tunnel_cls,
1122                 &msg->destination,
1123                 ntohl (msg->channels),
1124                 ntohl (msg->connections),
1125                 ntohl (msg->estate),
1126                 ntohl (msg->cstate));
1127
1128 clean_cls:
1129   h->tunnel_cb = NULL;
1130   h->tunnel_cls = NULL;
1131 }
1132
1133 /**
1134  * Function to process all messages received from the service
1135  *
1136  * @param cls closure
1137  * @param msg message received, NULL on timeout or fatal error
1138  */
1139 static void
1140 msg_received (void *cls, const struct GNUNET_MessageHeader *msg)
1141 {
1142   struct GNUNET_MESH_Handle *h = cls;
1143   uint16_t type;
1144
1145   if (msg == NULL)
1146   {
1147     LOG (GNUNET_ERROR_TYPE_DEBUG,
1148          "Mesh service disconnected, reconnecting\n", h);
1149     reconnect (h);
1150     return;
1151   }
1152   type = ntohs (msg->type);
1153   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
1154   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received a message: %s\n",
1155        GM_m2s (type));
1156   switch (type)
1157   {
1158     /* Notify of a new incoming channel */
1159   case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
1160     process_channel_created (h, (struct GNUNET_MESH_ChannelMessage *) msg);
1161     break;
1162     /* Notify of a channel disconnection */
1163   case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY: /* TODO separate(gid problem)*/
1164   case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_NACK:
1165     process_channel_destroy (h, (struct GNUNET_MESH_ChannelMessage *) msg);
1166     break;
1167   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA:
1168     process_incoming_data (h, msg);
1169     break;
1170   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK:
1171     process_ack (h, msg);
1172     break;
1173 //   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CHANNELS:
1174 //     process_get_channels (h, msg);
1175 //     break;
1176 //   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CHANNEL:
1177 //     process_show_channel (h, msg);
1178 //     break;
1179   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS:
1180     process_get_tunnels (h, msg);
1181     break;
1182   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL:
1183     process_get_tunnel (h, msg);
1184     break;
1185 //   case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CHANNEL:
1186 //     process_show_channel (h, msg);
1187 //     break;
1188   default:
1189     /* We shouldn't get any other packages, log and ignore */
1190     LOG (GNUNET_ERROR_TYPE_WARNING,
1191          "unsolicited message form service (type %s)\n",
1192          GM_m2s (ntohs (msg->type)));
1193   }
1194   LOG (GNUNET_ERROR_TYPE_DEBUG, "message processed\n");
1195   if (GNUNET_YES == h->in_receive)
1196   {
1197     GNUNET_CLIENT_receive (h->client, &msg_received, h,
1198                            GNUNET_TIME_UNIT_FOREVER_REL);
1199   }
1200   else
1201   {
1202     LOG (GNUNET_ERROR_TYPE_DEBUG,
1203          "in receive off, not calling CLIENT_receive\n");
1204   }
1205 }
1206
1207
1208 /******************************************************************************/
1209 /************************       SEND FUNCTIONS     ****************************/
1210 /******************************************************************************/
1211
1212 /**
1213  * Function called to send a message to the service.
1214  * "buf" will be NULL and "size" zero if the socket was closed for writing in
1215  * the meantime.
1216  *
1217  * @param cls closure, the mesh handle
1218  * @param size number of bytes available in buf
1219  * @param buf where the callee should write the connect message
1220  * @return number of bytes written to buf
1221  */
1222 static size_t
1223 send_callback (void *cls, size_t size, void *buf)
1224 {
1225   struct GNUNET_MESH_Handle *h = cls;
1226   struct GNUNET_MESH_TransmitHandle *th;
1227   struct GNUNET_MESH_TransmitHandle *next;
1228   struct GNUNET_MESH_Channel *ch;
1229   char *cbuf = buf;
1230   size_t tsize;
1231   size_t psize;
1232   size_t nsize;
1233
1234   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
1235   LOG (GNUNET_ERROR_TYPE_DEBUG, "# Send packet() Buffer %u\n", size);
1236   if ((0 == size) || (NULL == buf))
1237   {
1238     LOG (GNUNET_ERROR_TYPE_DEBUG, "# Received NULL send callback on %p\n", h);
1239     reconnect (h);
1240     h->th = NULL;
1241     return 0;
1242   }
1243   tsize = 0;
1244   next = h->th_head;
1245   nsize = message_ready_size (h);
1246   while ((NULL != (th = next)) && (0 < nsize) && (size >= nsize))
1247   {
1248     ch = th->channel;
1249     if (GNUNET_YES == th_is_payload (th))
1250     {
1251       struct GNUNET_MESH_LocalData *dmsg;
1252       struct GNUNET_MessageHeader *mh;
1253
1254       LOG (GNUNET_ERROR_TYPE_DEBUG, "#  payload\n");
1255       if (GNUNET_NO == ch->allow_send)
1256       {
1257         /* This channel is not ready to transmit yet, try next message */
1258         next = th->next;
1259         continue;
1260       }
1261       ch->packet_size = 0;
1262       GNUNET_assert (size >= th->size);
1263       dmsg = (struct GNUNET_MESH_LocalData *) cbuf;
1264       mh = (struct GNUNET_MessageHeader *) &dmsg[1];
1265       psize = th->notify (th->notify_cls,
1266                           size - sizeof (struct GNUNET_MESH_LocalData),
1267                           mh);
1268       if (psize > 0)
1269       {
1270         psize += sizeof (struct GNUNET_MESH_LocalData);
1271         GNUNET_assert (size >= psize);
1272         dmsg->header.size = htons (psize);
1273         dmsg->id = htonl (ch->chid);
1274         dmsg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA);
1275         LOG (GNUNET_ERROR_TYPE_DEBUG, "#  payload type %s\n",
1276              GM_m2s (ntohs (mh->type)));
1277                 ch->allow_send = GNUNET_NO;
1278       }
1279       else
1280       {
1281         LOG (GNUNET_ERROR_TYPE_DEBUG,
1282              "#  callback returned size 0, "
1283              "application canceled transmission\n");
1284       }
1285     }
1286     else
1287     {
1288       struct GNUNET_MessageHeader *mh = (struct GNUNET_MessageHeader *) &th[1];
1289
1290       LOG (GNUNET_ERROR_TYPE_DEBUG, "#  mesh internal traffic, type %s\n",
1291            GM_m2s (ntohs (mh->type)));
1292       memcpy (cbuf, &th[1], th->size);
1293       psize = th->size;
1294     }
1295     if (th->timeout_task != GNUNET_SCHEDULER_NO_TASK)
1296       GNUNET_SCHEDULER_cancel (th->timeout_task);
1297     GNUNET_CONTAINER_DLL_remove (h->th_head, h->th_tail, th);
1298     GNUNET_free (th);
1299     next = h->th_head;
1300     nsize = message_ready_size (h);
1301     cbuf += psize;
1302     size -= psize;
1303     tsize += psize;
1304   }
1305   LOG (GNUNET_ERROR_TYPE_DEBUG, "#  total size: %u\n", tsize);
1306   h->th = NULL;
1307   size = message_ready_size (h);
1308   if (0 != size)
1309   {
1310     LOG (GNUNET_ERROR_TYPE_DEBUG, "#  next size: %u\n", size);
1311     h->th =
1312         GNUNET_CLIENT_notify_transmit_ready (h->client, size,
1313                                              GNUNET_TIME_UNIT_FOREVER_REL,
1314                                              GNUNET_YES, &send_callback, h);
1315   }
1316   else
1317   {
1318     if (NULL != h->th_head)
1319       LOG (GNUNET_ERROR_TYPE_DEBUG, "#  can't transmit any more\n");
1320     else
1321       LOG (GNUNET_ERROR_TYPE_DEBUG, "#  nothing left to transmit\n");
1322   }
1323   if (GNUNET_NO == h->in_receive)
1324   {
1325     LOG (GNUNET_ERROR_TYPE_DEBUG, "# start receiving from service\n");
1326     h->in_receive = GNUNET_YES;
1327     GNUNET_CLIENT_receive (h->client, &msg_received, h,
1328                            GNUNET_TIME_UNIT_FOREVER_REL);
1329   }
1330   LOG (GNUNET_ERROR_TYPE_DEBUG, "# Send packet() END\n");
1331   return tsize;
1332 }
1333
1334
1335 /**
1336  * Auxiliary function to send an already constructed packet to the service.
1337  * Takes care of creating a new queue element, copying the message and
1338  * calling the tmt_rdy function if necessary.
1339  *
1340  * @param h mesh handle
1341  * @param msg message to transmit
1342  * @param channel channel this send is related to (NULL if N/A)
1343  */
1344 static void
1345 send_packet (struct GNUNET_MESH_Handle *h,
1346              const struct GNUNET_MessageHeader *msg,
1347              struct GNUNET_MESH_Channel *channel)
1348 {
1349   struct GNUNET_MESH_TransmitHandle *th;
1350   size_t msize;
1351
1352   LOG (GNUNET_ERROR_TYPE_DEBUG, " Sending message to service: %s\n",
1353        GM_m2s(ntohs(msg->type)));
1354   msize = ntohs (msg->size);
1355   th = GNUNET_malloc (sizeof (struct GNUNET_MESH_TransmitHandle) + msize);
1356   th->timeout = GNUNET_TIME_UNIT_FOREVER_ABS;
1357   th->size = msize;
1358   th->channel = channel;
1359   memcpy (&th[1], msg, msize);
1360   add_to_queue (h, th);
1361   LOG (GNUNET_ERROR_TYPE_DEBUG, "  queued\n");
1362   if (NULL != h->th)
1363     return;
1364   LOG (GNUNET_ERROR_TYPE_DEBUG, "  calling ntfy tmt rdy for %u bytes\n", msize);
1365   h->th =
1366       GNUNET_CLIENT_notify_transmit_ready (h->client, msize,
1367                                            GNUNET_TIME_UNIT_FOREVER_REL,
1368                                            GNUNET_YES, &send_callback, h);
1369 }
1370
1371
1372 /******************************************************************************/
1373 /**********************      API CALL DEFINITIONS     *************************/
1374 /******************************************************************************/
1375
1376 struct GNUNET_MESH_Handle *
1377 GNUNET_MESH_connect (const struct GNUNET_CONFIGURATION_Handle *cfg, void *cls,
1378                      GNUNET_MESH_InboundChannelNotificationHandler new_channel,
1379                      GNUNET_MESH_ChannelEndHandler cleaner,
1380                      const struct GNUNET_MESH_MessageHandler *handlers,
1381                      const uint32_t *ports)
1382 {
1383   struct GNUNET_MESH_Handle *h;
1384
1385   LOG (GNUNET_ERROR_TYPE_DEBUG, "GNUNET_MESH_connect()\n");
1386   h = GNUNET_new (struct GNUNET_MESH_Handle);
1387   LOG (GNUNET_ERROR_TYPE_DEBUG, " addr %p\n", h);
1388   h->cfg = cfg;
1389   h->new_channel = new_channel;
1390   h->cleaner = cleaner;
1391   h->client = GNUNET_CLIENT_connect ("mesh", cfg);
1392   if (h->client == NULL)
1393   {
1394     GNUNET_break (0);
1395     GNUNET_free (h);
1396     return NULL;
1397   }
1398   h->cls = cls;
1399   h->message_handlers = handlers;
1400   h->ports = ports;
1401   h->next_chid = GNUNET_MESH_LOCAL_CHANNEL_ID_CLI;
1402   h->reconnect_time = GNUNET_TIME_UNIT_MILLISECONDS;
1403   h->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1404
1405   if (NULL != ports && ports[0] != 0 && NULL == new_channel)
1406   {
1407     GNUNET_break (0);
1408     LOG (GNUNET_ERROR_TYPE_DEBUG,
1409          "no new channel handler given, ports parameter is useless!!\n");
1410   }
1411   if ((NULL == ports || ports[0] == 0) && NULL != new_channel)
1412   {
1413     GNUNET_break (0);
1414     LOG (GNUNET_ERROR_TYPE_DEBUG,
1415          "no ports given, new channel handler will never be called!!\n");
1416   }
1417   /* count handlers */
1418   for (h->n_handlers = 0;
1419        handlers && handlers[h->n_handlers].type;
1420        h->n_handlers++) ;
1421   for (h->n_ports = 0;
1422        ports && ports[h->n_ports];
1423        h->n_ports++) ;
1424   send_connect (h);
1425   LOG (GNUNET_ERROR_TYPE_DEBUG, "GNUNET_MESH_connect() END\n");
1426   return h;
1427 }
1428
1429
1430 void
1431 GNUNET_MESH_disconnect (struct GNUNET_MESH_Handle *handle)
1432 {
1433   struct GNUNET_MESH_Channel *ch;
1434   struct GNUNET_MESH_Channel *aux;
1435   struct GNUNET_MESH_TransmitHandle *th;
1436
1437   LOG (GNUNET_ERROR_TYPE_DEBUG, "MESH DISCONNECT\n");
1438
1439   ch = handle->channels_head;
1440   while (NULL != ch)
1441   {
1442     aux = ch->next;
1443     if (ch->chid < GNUNET_MESH_LOCAL_CHANNEL_ID_SERV)
1444     {
1445       GNUNET_break (0);
1446       LOG (GNUNET_ERROR_TYPE_DEBUG, "channel %X not destroyed\n", ch->chid);
1447     }
1448     destroy_channel (ch, GNUNET_YES);
1449     ch = aux;
1450   }
1451   while ( (th = handle->th_head) != NULL)
1452   {
1453     struct GNUNET_MessageHeader *msg;
1454
1455     /* Make sure it is an allowed packet (everything else should have been
1456      * already canceled).
1457      */
1458     GNUNET_break (GNUNET_NO == th_is_payload (th));
1459     msg = (struct GNUNET_MessageHeader *) &th[1];
1460     switch (ntohs(msg->type))
1461     {
1462       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT:
1463       case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE:
1464       case GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY:
1465       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CHANNELS:
1466       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CHANNEL:
1467       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL:
1468       case GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS:
1469         break;
1470       default:
1471         GNUNET_break (0);
1472         LOG (GNUNET_ERROR_TYPE_ERROR, "unexpected msg %u\n",
1473              ntohs(msg->type));
1474     }
1475
1476     GNUNET_CONTAINER_DLL_remove (handle->th_head, handle->th_tail, th);
1477     GNUNET_free (th);
1478   }
1479
1480   if (NULL != handle->th)
1481   {
1482     GNUNET_CLIENT_notify_transmit_ready_cancel (handle->th);
1483     handle->th = NULL;
1484   }
1485   if (NULL != handle->client)
1486   {
1487     GNUNET_CLIENT_disconnect (handle->client);
1488     handle->client = NULL;
1489   }
1490   if (GNUNET_SCHEDULER_NO_TASK != handle->reconnect_task)
1491   {
1492     GNUNET_SCHEDULER_cancel(handle->reconnect_task);
1493     handle->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1494   }
1495   GNUNET_free (handle);
1496 }
1497
1498
1499 /**
1500  * Create a new channel towards a remote peer.
1501  *
1502  * If the destination port is not open by any peer or the destination peer
1503  * does not accept the channel, #GNUNET_MESH_ChannelEndHandler will be called
1504  * for this channel.
1505  *
1506  * @param h mesh handle
1507  * @param channel_ctx client's channel context to associate with the channel
1508  * @param peer peer identity the channel should go to
1509  * @param port Port number.
1510  * @param options MeshOption flag field, with all desired option bits set to 1.
1511  *
1512  * @return handle to the channel
1513  */
1514 struct GNUNET_MESH_Channel *
1515 GNUNET_MESH_channel_create (struct GNUNET_MESH_Handle *h,
1516                             void *channel_ctx,
1517                             const struct GNUNET_PeerIdentity *peer,
1518                             uint32_t port,
1519                             enum GNUNET_MESH_ChannelOption options)
1520 {
1521   struct GNUNET_MESH_Channel *ch;
1522   struct GNUNET_MESH_ChannelMessage msg;
1523
1524   LOG (GNUNET_ERROR_TYPE_DEBUG,
1525        "Creating new channel to %s:%u\n",
1526        GNUNET_i2s (peer), port);
1527   ch = create_channel (h, 0);
1528   LOG (GNUNET_ERROR_TYPE_DEBUG, "  at %p\n", ch);
1529   LOG (GNUNET_ERROR_TYPE_DEBUG, "  number %X\n", ch->chid);
1530   ch->ctx = channel_ctx;
1531   ch->peer = GNUNET_PEER_intern (peer);
1532   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE);
1533   msg.header.size = htons (sizeof (struct GNUNET_MESH_ChannelMessage));
1534   msg.channel_id = htonl (ch->chid);
1535   msg.port = htonl (port);
1536   msg.peer = *peer;
1537   msg.opt = htonl (options);
1538   ch->allow_send = 0;
1539   send_packet (h, &msg.header, ch);
1540   return ch;
1541 }
1542
1543
1544 void
1545 GNUNET_MESH_channel_destroy (struct GNUNET_MESH_Channel *channel)
1546 {
1547   struct GNUNET_MESH_Handle *h;
1548   struct GNUNET_MESH_ChannelMessage msg;
1549   struct GNUNET_MESH_TransmitHandle *th;
1550
1551   LOG (GNUNET_ERROR_TYPE_DEBUG, "Destroying channel\n");
1552   h = channel->mesh;
1553
1554   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY);
1555   msg.header.size = htons (sizeof (struct GNUNET_MESH_ChannelMessage));
1556   msg.channel_id = htonl (channel->chid);
1557   memset (&msg.peer, 0, sizeof (struct GNUNET_PeerIdentity));
1558   msg.port = 0;
1559   msg.opt = 0;
1560   th = h->th_head;
1561   while (th != NULL)
1562   {
1563     struct GNUNET_MESH_TransmitHandle *aux;
1564     if (th->channel == channel)
1565     {
1566       aux = th->next;
1567       /* FIXME call the handler? */
1568       if (GNUNET_YES == th_is_payload (th))
1569         th->notify (th->notify_cls, 0, NULL);
1570       GNUNET_CONTAINER_DLL_remove (h->th_head, h->th_tail, th);
1571       GNUNET_free (th);
1572       th = aux;
1573     }
1574     else
1575       th = th->next;
1576   }
1577
1578   destroy_channel (channel, GNUNET_YES);
1579   send_packet (h, &msg.header, NULL);
1580 }
1581
1582
1583 /**
1584  * Get information about a channel.
1585  *
1586  * @param channel Channel handle.
1587  * @param option Query (GNUNET_MESH_OPTION_*).
1588  * @param ... dependant on option, currently not used
1589  *
1590  * @return Union with an answer to the query.
1591  */
1592 const union GNUNET_MESH_ChannelInfo *
1593 GNUNET_MESH_channel_get_info (struct GNUNET_MESH_Channel *channel,
1594                               enum GNUNET_MESH_ChannelOption option, ...)
1595 {
1596   static int bool_flag;
1597   const union GNUNET_MESH_ChannelInfo *ret;
1598
1599   switch (option)
1600   {
1601     case GNUNET_MESH_OPTION_NOBUFFER:
1602     case GNUNET_MESH_OPTION_RELIABLE:
1603     case GNUNET_MESH_OPTION_OOORDER:
1604       if (0 != (option & channel->options))
1605         bool_flag = GNUNET_YES;
1606       else
1607         bool_flag = GNUNET_NO;
1608       ret = (const union GNUNET_MESH_ChannelInfo *) &bool_flag;
1609       break;
1610     case GNUNET_MESH_OPTION_PEER:
1611       ret = (const union GNUNET_MESH_ChannelInfo *) GNUNET_PEER_resolve2 (channel->peer);
1612       break;
1613     default:
1614       GNUNET_break (0);
1615       return NULL;
1616   }
1617
1618   return ret;
1619 }
1620
1621 struct GNUNET_MESH_TransmitHandle *
1622 GNUNET_MESH_notify_transmit_ready (struct GNUNET_MESH_Channel *channel, int cork,
1623                                    struct GNUNET_TIME_Relative maxdelay,
1624                                    size_t notify_size,
1625                                    GNUNET_CONNECTION_TransmitReadyNotify notify,
1626                                    void *notify_cls)
1627 {
1628   struct GNUNET_MESH_TransmitHandle *th;
1629
1630   GNUNET_assert (NULL != channel);
1631   LOG (GNUNET_ERROR_TYPE_DEBUG, "MESH NOTIFY TRANSMIT READY\n");
1632   LOG (GNUNET_ERROR_TYPE_DEBUG, "    on channel %X\n", channel->chid);
1633   LOG (GNUNET_ERROR_TYPE_DEBUG, "    allow_send %d\n", channel->allow_send);
1634   if (channel->chid >= GNUNET_MESH_LOCAL_CHANNEL_ID_SERV)
1635     LOG (GNUNET_ERROR_TYPE_DEBUG, "    to origin\n");
1636   else
1637     LOG (GNUNET_ERROR_TYPE_DEBUG, "    to destination\n");
1638   LOG (GNUNET_ERROR_TYPE_DEBUG, "    payload size %u\n", notify_size);
1639   GNUNET_assert (NULL != notify);
1640   GNUNET_assert (0 == channel->packet_size); // Only one data packet allowed
1641   th = GNUNET_new (struct GNUNET_MESH_TransmitHandle);
1642   th->channel = channel;
1643   th->timeout = GNUNET_TIME_relative_to_absolute (maxdelay);
1644   th->size = notify_size + sizeof (struct GNUNET_MESH_LocalData);
1645   channel->packet_size = th->size;
1646   LOG (GNUNET_ERROR_TYPE_DEBUG, "    total size %u\n", th->size);
1647   th->notify = notify;
1648   th->notify_cls = notify_cls;
1649   add_to_queue (channel->mesh, th);
1650   if (NULL != channel->mesh->th)
1651     return th;
1652   if (GNUNET_NO == channel->allow_send)
1653     return th;
1654   LOG (GNUNET_ERROR_TYPE_DEBUG, "    call client notify tmt rdy\n");
1655   channel->mesh->th =
1656       GNUNET_CLIENT_notify_transmit_ready (channel->mesh->client, th->size,
1657                                            GNUNET_TIME_UNIT_FOREVER_REL,
1658                                            GNUNET_YES, &send_callback,
1659                                            channel->mesh);
1660   LOG (GNUNET_ERROR_TYPE_DEBUG, "MESH NOTIFY TRANSMIT READY END\n");
1661   return th;
1662 }
1663
1664
1665 void
1666 GNUNET_MESH_notify_transmit_ready_cancel (struct GNUNET_MESH_TransmitHandle *th)
1667 {
1668   struct GNUNET_MESH_Handle *mesh;
1669
1670   th->channel->packet_size = 0;
1671   mesh = th->channel->mesh;
1672   if (th->timeout_task != GNUNET_SCHEDULER_NO_TASK)
1673     GNUNET_SCHEDULER_cancel (th->timeout_task);
1674   GNUNET_CONTAINER_DLL_remove (mesh->th_head, mesh->th_tail, th);
1675   GNUNET_free (th);
1676   if ((0 == message_ready_size (mesh)) && (NULL != mesh->th))
1677   {
1678     /* queue empty, no point in asking for transmission */
1679     GNUNET_CLIENT_notify_transmit_ready_cancel (mesh->th);
1680     mesh->th = NULL;
1681   }
1682 }
1683
1684
1685 void
1686 GNUNET_MESH_receive_done (struct GNUNET_MESH_Channel *channel)
1687 {
1688   send_ack (channel);
1689 }
1690
1691
1692 static void
1693 send_info_request (struct GNUNET_MESH_Handle *h, uint16_t type)
1694 {
1695   struct GNUNET_MessageHeader msg;
1696
1697   msg.size = htons (sizeof (msg));
1698   msg.type = htons (type);
1699   send_packet (h, &msg, NULL);
1700 }
1701
1702 /**
1703  * Request information about the running mesh peer.
1704  * The callback will be called for every channel known to the service,
1705  * listing all active peers that blong to the channel.
1706  *
1707  * If called again on the same handle, it will overwrite the previous
1708  * callback and cls. To retrieve the cls, monitor_cancel must be
1709  * called first.
1710  *
1711  * WARNING: unstable API, likely to change in the future!
1712  *
1713  * @param h Handle to the mesh peer.
1714  * @param callback Function to call with the requested data.
1715  * @param callback_cls Closure for @c callback.
1716  */
1717 void
1718 GNUNET_MESH_get_channels (struct GNUNET_MESH_Handle *h,
1719                          GNUNET_MESH_ChannelsCB callback,
1720                          void *callback_cls)
1721 {
1722   send_info_request (h, GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CHANNELS);
1723   h->channels_cb = callback;
1724   h->channels_cls = callback_cls;
1725 }
1726
1727
1728 /**
1729  * Cancel a monitor request. The monitor callback will not be called.
1730  *
1731  * WARNING: unstable API, likely to change in the future!
1732  *
1733  * @param h Mesh handle.
1734  *
1735  * @return Closure given to GNUNET_MESH_monitor, if any.
1736  */
1737 void *
1738 GNUNET_MESH_get_channels_cancel (struct GNUNET_MESH_Handle *h)
1739 {
1740   void *cls;
1741
1742   cls = h->channels_cls;
1743   h->channels_cb = NULL;
1744   h->channels_cls = NULL;
1745   return cls;
1746 }
1747
1748
1749 /**
1750  * Request information about the running mesh peer.
1751  * The callback will be called for every peer known to the service.
1752  *
1753  * If called again on the same handle, it will overwrite the previous
1754  * callback and cls. To retrieve the cls, monitor_cancel must be
1755  * called first.
1756  *
1757  * WARNING: unstable API, likely to change in the future!
1758  *
1759  * @param h Handle to the mesh peer.
1760  * @param callback Function to call with the requested data.
1761  * @param callback_cls Closure for @c callback.
1762  */
1763 void
1764 GNUNET_MESH_get_peers (struct GNUNET_MESH_Handle *h,
1765                        GNUNET_MESH_PeersCB callback,
1766                        void *callback_cls)
1767 {
1768   send_info_request (h, GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_PEERS);
1769   h->peers_cb = callback;
1770   h->peers_cls = callback_cls;
1771 }
1772
1773
1774
1775 /**
1776  * Request information about the running mesh peer.
1777  * The callback will be called for every tunnel known to the service.
1778  *
1779  * If called again on the same handle, it will overwrite the previous
1780  * callback and cls. To retrieve the cls, monitor_cancel must be
1781  * called first.
1782  *
1783  * WARNING: unstable API, likely to change in the future!
1784  *
1785  * @param h Handle to the mesh peer.
1786  * @param callback Function to call with the requested data.
1787  * @param callback_cls Closure for @c callback.
1788  */
1789 void
1790 GNUNET_MESH_get_tunnels (struct GNUNET_MESH_Handle *h,
1791                          GNUNET_MESH_TunnelsCB callback,
1792                          void *callback_cls)
1793 {
1794   send_info_request (h, GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS);
1795   h->tunnels_cb = callback;
1796   h->tunnels_cls = callback_cls;
1797 }
1798
1799
1800 /**
1801  * Cancel a monitor request. The monitor callback will not be called.
1802  *
1803  * @param h Mesh handle.
1804  *
1805  * @return Closure given to GNUNET_MESH_monitor, if any.
1806  */
1807 void *
1808 GNUNET_MESH_get_tunnels_cancel (struct GNUNET_MESH_Handle *h)
1809 {
1810   void *cls;
1811
1812   h->tunnels_cb = NULL;
1813   cls = h->tunnels_cls;
1814   h->tunnels_cls = NULL;
1815
1816   return cls;
1817 }
1818
1819
1820
1821 /**
1822  * Request information about the running mesh peer.
1823  * The callback will be called for every channel known to the service,
1824  * listing all active peers that blong to the channel.
1825  *
1826  * If called again on the same handle, it will overwrite the previous
1827  * callback and cls. To retrieve the cls, monitor_cancel must be
1828  * called first.
1829  *
1830  * WARNING: unstable API, likely to change in the future!
1831  *
1832  * @param h Handle to the mesh peer.
1833  * @param callback Function to call with the requested data.
1834  * @param callback_cls Closure for @c callback.
1835  */
1836 void
1837 GNUNET_MESH_get_tunnel (struct GNUNET_MESH_Handle *h,
1838                         const struct GNUNET_PeerIdentity *id,
1839                         GNUNET_MESH_TunnelCB callback,
1840                         void *callback_cls)
1841 {
1842   struct GNUNET_MESH_LocalInfo msg;
1843
1844   memset (&msg, 0, sizeof (msg));
1845   msg.header.size = htons (sizeof (msg));
1846   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL);
1847   msg.peer = *id;
1848   send_packet (h, &msg.header, NULL);
1849   h->tunnel_cb = callback;
1850   h->tunnel_cls = callback_cls;
1851 }
1852
1853
1854 /**
1855  * Request information about a specific channel of the running mesh peer.
1856  *
1857  * WARNING: unstable API, likely to change in the future!
1858  * FIXME Add destination option.
1859  *
1860  * @param h Handle to the mesh peer.
1861  * @param initiator ID of the owner of the channel.
1862  * @param channel_number Channel number.
1863  * @param callback Function to call with the requested data.
1864  * @param callback_cls Closure for @c callback.
1865  */
1866 void
1867 GNUNET_MESH_show_channel (struct GNUNET_MESH_Handle *h,
1868                          struct GNUNET_PeerIdentity *initiator,
1869                          unsigned int channel_number,
1870                          GNUNET_MESH_ChannelCB callback,
1871                          void *callback_cls)
1872 {
1873   struct GNUNET_MESH_LocalInfo msg;
1874
1875   msg.header.size = htons (sizeof (msg));
1876   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_CHANNEL);
1877   msg.peer = *initiator;
1878   msg.channel_id = htonl (channel_number);
1879 //   msg.reserved = 0;
1880   send_packet (h, &msg.header, NULL);
1881   h->channel_cb = callback;
1882   h->channel_cls = callback_cls;
1883 }
1884
1885
1886 /**
1887  * Function called to notify a client about the connection
1888  * begin ready to queue more data.  "buf" will be
1889  * NULL and "size" zero if the connection was closed for
1890  * writing in the meantime.
1891  *
1892  * @param cls closure
1893  * @param size number of bytes available in buf
1894  * @param buf where the callee should write the message
1895  * @return number of bytes written to buf
1896  */
1897 static size_t
1898 mesh_mq_ntr (void *cls, size_t size,
1899              void *buf)
1900 {
1901   struct GNUNET_MQ_Handle *mq = cls;
1902   struct MeshMQState *state = GNUNET_MQ_impl_state (mq);
1903   const struct GNUNET_MessageHeader *msg = GNUNET_MQ_impl_current (mq);
1904   uint16_t msize;
1905
1906   state->th = NULL;
1907   if (NULL == buf)
1908   {
1909     GNUNET_MQ_inject_error (mq, GNUNET_MQ_ERROR_WRITE);
1910     return 0;
1911   }
1912   msize = ntohs (msg->size);
1913   GNUNET_assert (msize <= size);
1914   memcpy (buf, msg, msize);
1915   GNUNET_MQ_impl_send_continue (mq);
1916   return msize;
1917 }
1918
1919
1920 /**
1921  * Signature of functions implementing the
1922  * sending functionality of a message queue.
1923  *
1924  * @param mq the message queue
1925  * @param msg the message to send
1926  * @param impl_state state of the implementation
1927  */
1928 static void
1929 mesh_mq_send_impl (struct GNUNET_MQ_Handle *mq,
1930                    const struct GNUNET_MessageHeader *msg, void *impl_state)
1931 {
1932   struct MeshMQState *state = impl_state;
1933
1934   GNUNET_assert (NULL == state->th);
1935   state->th =
1936       GNUNET_MESH_notify_transmit_ready (state->channel,
1937                                          /* FIXME: add option for corking */
1938                                          GNUNET_NO,
1939                                          GNUNET_TIME_UNIT_FOREVER_REL,
1940                                          ntohs (msg->size),
1941                                          mesh_mq_ntr, mq);
1942
1943 }
1944
1945
1946 /**
1947  * Signature of functions implementing the
1948  * destruction of a message queue.
1949  * Implementations must not free 'mq', but should
1950  * take care of 'impl_state'.
1951  *
1952  * @param mq the message queue to destroy
1953  * @param impl_state state of the implementation
1954  */
1955 static void
1956 mesh_mq_destroy_impl (struct GNUNET_MQ_Handle *mq, void *impl_state)
1957 {
1958   struct MeshMQState *state = impl_state;
1959
1960   if (NULL != state->th)
1961     GNUNET_MESH_notify_transmit_ready_cancel (state->th);
1962
1963   GNUNET_free (state);
1964 }
1965
1966
1967 /**
1968  * Create a message queue for a mesh channel.
1969  * The message queue can only be used to transmit messages,
1970  * not to receive them.
1971  *
1972  * @param channel the channel to create the message qeue for
1973  * @return a message queue to messages over the channel
1974  */
1975 struct GNUNET_MQ_Handle *
1976 GNUNET_MESH_mq_create (struct GNUNET_MESH_Channel *channel)
1977 {
1978   struct GNUNET_MQ_Handle *mq;
1979   struct MeshMQState *state;
1980
1981   state = GNUNET_new (struct MeshMQState);
1982   state->channel = channel;
1983
1984   mq = GNUNET_MQ_queue_for_callbacks (mesh_mq_send_impl,
1985                                       mesh_mq_destroy_impl,
1986                                       NULL, /* FIXME: cancel impl. */
1987                                       state,
1988                                       NULL, /* no msg handlers */
1989                                       NULL, /* no err handlers */
1990                                       NULL); /* no handler cls */
1991   return mq;
1992 }
1993