- Add some of the tunnel introscpecion back
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_local.c
1 /*
2      This file is part of GNUnet.
3      (C) 2013 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21
22 #include "platform.h"
23 #include "gnunet_util_lib.h"
24
25 #include "gnunet_statistics_service.h"
26
27 #include "mesh.h"
28 #include "mesh_protocol.h" /* GNUNET_MESH_Data is shared */
29
30 #include "gnunet-service-mesh_local.h"
31 #include "gnunet-service-mesh_channel.h"
32
33 /* INFO DEBUG */
34 #include "gnunet-service-mesh_tunnel.h"
35
36 #define LOG(level, ...) GNUNET_log_from(level,"mesh-loc",__VA_ARGS__)
37
38 /******************************************************************************/
39 /********************************   STRUCTS  **********************************/
40 /******************************************************************************/
41
42 /**
43  * Struct containing information about a client of the service
44  *
45  * TODO: add a list of 'waiting' ports
46  */
47 struct MeshClient
48 {
49     /**
50      * Linked list next
51      */
52   struct MeshClient *next;
53
54     /**
55      * Linked list prev
56      */
57   struct MeshClient *prev;
58
59     /**
60      * Tunnels that belong to this client, indexed by local id
61      */
62   struct GNUNET_CONTAINER_MultiHashMap32 *own_channels;
63
64     /**
65      * Tunnels this client has accepted, indexed by incoming local id
66      */
67   struct GNUNET_CONTAINER_MultiHashMap32 *incoming_channels;
68
69     /**
70      * Channel ID for the next incoming channel.
71      */
72   MESH_ChannelNumber next_chid;
73
74     /**
75      * Handle to communicate with the client
76      */
77   struct GNUNET_SERVER_Client *handle;
78
79     /**
80      * Ports that this client has declared interest in.
81      * Indexed by port, contains *Client.
82      */
83   struct GNUNET_CONTAINER_MultiHashMap32 *ports;
84
85     /**
86      * Whether the client is active or shutting down (don't send confirmations
87      * to a client that is shutting down.
88      */
89   int shutting_down;
90
91     /**
92      * ID of the client, mainly for debug messages
93      */
94   unsigned int id;
95 };
96
97 /******************************************************************************/
98 /*******************************   GLOBALS  ***********************************/
99 /******************************************************************************/
100
101 /**
102  * Global handle to the statistics service.
103  */
104 extern struct GNUNET_STATISTICS_Handle *stats;
105
106 /**
107  * Handle to server lib.
108  */
109 static struct GNUNET_SERVER_Handle *server_handle;
110
111 /**
112  * DLL with all the clients, head.
113  */
114 static struct MeshClient *clients_head;
115
116 /**
117  * DLL with all the clients, tail.
118  */
119 static struct MeshClient *clients_tail;
120
121 /**
122  * Next ID to assign to a client.
123  */
124 unsigned int next_client_id;
125
126 /**
127  * All ports clients of this peer have opened.
128  */
129 static struct GNUNET_CONTAINER_MultiHashMap32 *ports;
130
131 /**
132  * Notification context, to send messages to local clients.
133  */
134 static struct GNUNET_SERVER_NotificationContext *nc;
135
136
137 /******************************************************************************/
138 /********************************   STATIC  ***********************************/
139 /******************************************************************************/
140
141 /**
142  * Remove client's ports from the global hashmap on disconnect.
143  *
144  * @param cls Closure (unused).
145  * @param key Port.
146  * @param value Client structure.
147  *
148  * @return GNUNET_OK, keep iterating.
149  */
150 static int
151 client_release_ports (void *cls,
152                       uint32_t key,
153                       void *value)
154 {
155   int res;
156
157   res = GNUNET_CONTAINER_multihashmap32_remove (ports, key, value);
158   if (GNUNET_YES != res)
159   {
160     GNUNET_break (0);
161     LOG (GNUNET_ERROR_TYPE_WARNING,
162                 "Port %u by client %p was not registered.\n",
163                 key, value);
164   }
165   return GNUNET_OK;
166 }
167
168
169
170 /******************************************************************************/
171 /********************************  HANDLES  ***********************************/
172 /******************************************************************************/
173
174
175 /**
176  * Handler for client connection.
177  *
178  * @param cls Closure (unused).
179  * @param client Client handler.
180  */
181 static void
182 handle_client_connect (void *cls, struct GNUNET_SERVER_Client *client)
183 {
184   struct MeshClient *c;
185
186   LOG (GNUNET_ERROR_TYPE_DEBUG, "client connected: %p\n", client);
187   if (NULL == client)
188     return;
189   c = GNUNET_new (struct MeshClient);
190   c->handle = client;
191   c->id = next_client_id++; /* overflow not important: just for debug */
192   c->next_chid = GNUNET_MESH_LOCAL_CHANNEL_ID_SERV;
193   GNUNET_SERVER_client_keep (client);
194   GNUNET_SERVER_client_set_user_context (client, c);
195   GNUNET_CONTAINER_DLL_insert (clients_head, clients_tail, c);
196 }
197
198
199 /**
200  * Iterator for deleting each channel whose client endpoint disconnected.
201  *
202  * @param cls Closure (client that has disconnected).
203  * @param key The local channel id (used to access the hashmap).
204  * @param value The value stored at the key (channel to destroy).
205  *
206  * @return GNUNET_OK, keep iterating.
207  */
208 static int
209 channel_destroy_iterator (void *cls,
210                           uint32_t key,
211                           void *value)
212 {
213   struct MeshChannel *ch = value;
214   struct MeshClient *c = cls;
215
216   LOG (GNUNET_ERROR_TYPE_DEBUG,
217               " Channel %s destroy, due to client %s shutdown.\n",
218               GMCH_2s (ch), GML_2s (c));
219
220   GMCH_handle_local_destroy (ch, c, key < GNUNET_MESH_LOCAL_CHANNEL_ID_SERV);
221   return GNUNET_OK;
222 }
223
224 /**
225  * Handler for client disconnection
226  *
227  * @param cls closure
228  * @param client identification of the client; NULL
229  *        for the last call when the server is destroyed
230  */
231 static void
232 handle_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
233 {
234   struct MeshClient *c;
235
236   LOG (GNUNET_ERROR_TYPE_DEBUG, "client disconnected: %p\n", client);
237   if (client == NULL)
238   {
239     LOG (GNUNET_ERROR_TYPE_DEBUG, "   (SERVER DOWN)\n");
240     return;
241   }
242
243   c = GML_client_get (client);
244   if (NULL != c)
245   {
246     LOG (GNUNET_ERROR_TYPE_DEBUG, "matching client found (%u, %p)\n",
247                 c->id, c);
248     GNUNET_SERVER_client_drop (c->handle);
249     c->shutting_down = GNUNET_YES;
250     if (NULL != c->own_channels)
251     {
252       GNUNET_CONTAINER_multihashmap32_iterate (c->own_channels,
253                                                &channel_destroy_iterator, c);
254       GNUNET_CONTAINER_multihashmap32_destroy (c->own_channels);
255     }
256
257     if (NULL != c->incoming_channels)
258     {
259       GNUNET_CONTAINER_multihashmap32_iterate (c->incoming_channels,
260                                                &channel_destroy_iterator, c);
261       GNUNET_CONTAINER_multihashmap32_destroy (c->incoming_channels);
262     }
263
264     if (NULL != c->ports)
265     {
266       GNUNET_CONTAINER_multihashmap32_iterate (c->ports,
267                                                &client_release_ports, c);
268       GNUNET_CONTAINER_multihashmap32_destroy (c->ports);
269     }
270     GNUNET_CONTAINER_DLL_remove (clients_head, clients_tail, c);
271     GNUNET_STATISTICS_update (stats, "# clients", -1, GNUNET_NO);
272     LOG (GNUNET_ERROR_TYPE_DEBUG, "  client free (%p)\n", c);
273     GNUNET_free (c);
274   }
275   else
276   {
277     LOG (GNUNET_ERROR_TYPE_WARNING, " context NULL!\n");
278   }
279   LOG (GNUNET_ERROR_TYPE_DEBUG, "done!\n");
280   return;
281 }
282
283
284 /**
285  * Handler for new clients
286  *
287  * @param cls closure
288  * @param client identification of the client
289  * @param message the actual message, which includes messages the client wants
290  */
291 static void
292 handle_new_client (void *cls, struct GNUNET_SERVER_Client *client,
293                    const struct GNUNET_MessageHeader *message)
294 {
295   struct GNUNET_MESH_ClientConnect *cc_msg;
296   struct MeshClient *c;
297   unsigned int size;
298   uint32_t *p;
299   unsigned int i;
300
301   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\nnew client connected %p\n", client);
302
303   /* Check data sanity */
304   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_ClientConnect);
305   cc_msg = (struct GNUNET_MESH_ClientConnect *) message;
306   if (0 != (size % sizeof (uint32_t)))
307   {
308     GNUNET_break (0);
309     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
310     return;
311   }
312   size /= sizeof (uint32_t);
313
314   /* Initialize new client structure */
315   c = GNUNET_SERVER_client_get_user_context (client, struct MeshClient);
316   LOG (GNUNET_ERROR_TYPE_DEBUG, "  client id %u\n", c->id);
317   LOG (GNUNET_ERROR_TYPE_DEBUG, "  client has %u ports\n", size);
318   if (size > 0)
319   {
320     uint32_t u32;
321
322     p = (uint32_t *) &cc_msg[1];
323     c->ports = GNUNET_CONTAINER_multihashmap32_create (size);
324     for (i = 0; i < size; i++)
325     {
326       u32 = ntohl (p[i]);
327       LOG (GNUNET_ERROR_TYPE_DEBUG, "    port: %u\n", u32);
328
329       /* store in client's hashmap */
330       GNUNET_CONTAINER_multihashmap32_put (c->ports, u32, c,
331                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
332       /* store in global hashmap */
333       /* FIXME only allow one client to have the port open,
334        *       have a backup hashmap with waiting clients */
335       GNUNET_CONTAINER_multihashmap32_put (ports, u32, c,
336                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
337     }
338   }
339
340   c->own_channels = GNUNET_CONTAINER_multihashmap32_create (32);
341   c->incoming_channels = GNUNET_CONTAINER_multihashmap32_create (32);
342   GNUNET_SERVER_notification_context_add (nc, client);
343   GNUNET_STATISTICS_update (stats, "# clients", 1, GNUNET_NO);
344
345   GNUNET_SERVER_receive_done (client, GNUNET_OK);
346   LOG (GNUNET_ERROR_TYPE_DEBUG, "new client processed\n");
347 }
348
349
350 /**
351  * Handler for requests of new tunnels
352  *
353  * @param cls Closure.
354  * @param client Identification of the client.
355  * @param message The actual message.
356  */
357 static void
358 handle_channel_create (void *cls, struct GNUNET_SERVER_Client *client,
359                        const struct GNUNET_MessageHeader *message)
360 {
361   struct MeshClient *c;
362
363   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
364   LOG (GNUNET_ERROR_TYPE_DEBUG, "new channel requested\n");
365
366   /* Sanity check for client registration */
367   if (NULL == (c = GML_client_get (client)))
368   {
369     GNUNET_break (0);
370     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
371     return;
372   }
373   LOG (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
374
375   /* Message size sanity check */
376   if (sizeof (struct GNUNET_MESH_ChannelMessage) != ntohs (message->size))
377   {
378     GNUNET_break (0);
379     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
380     return;
381   }
382
383   if (GNUNET_OK !=
384       GMCH_handle_local_create (c,
385                                 (struct GNUNET_MESH_ChannelMessage *) message))
386   {
387     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
388     return;
389   }
390
391   GNUNET_SERVER_receive_done (client, GNUNET_OK);
392   return;
393 }
394
395
396 /**
397  * Handler for requests of deleting tunnels
398  *
399  * @param cls closure
400  * @param client identification of the client
401  * @param message the actual message
402  */
403 static void
404 handle_channel_destroy (void *cls, struct GNUNET_SERVER_Client *client,
405                         const struct GNUNET_MessageHeader *message)
406 {
407   struct GNUNET_MESH_ChannelMessage *msg;
408   struct MeshClient *c;
409   struct MeshChannel *ch;
410   MESH_ChannelNumber chid;
411
412   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\nGot a DESTROY CHANNEL from client!\n");
413
414   /* Sanity check for client registration */
415   if (NULL == (c = GML_client_get (client)))
416   {
417     GNUNET_break (0);
418     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
419     return;
420   }
421   LOG (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
422
423   /* Message sanity check */
424   if (sizeof (struct GNUNET_MESH_ChannelMessage) != ntohs (message->size))
425   {
426     GNUNET_break (0);
427     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
428     return;
429   }
430
431   msg = (struct GNUNET_MESH_ChannelMessage *) message;
432
433   /* Retrieve tunnel */
434   chid = ntohl (msg->channel_id);
435   LOG (GNUNET_ERROR_TYPE_DEBUG, "  for channel %X\n", chid);
436   ch = GML_channel_get (c, chid);
437   if (NULL == ch)
438   {
439     LOG (GNUNET_ERROR_TYPE_DEBUG, "  channel %X not found\n", chid);
440     GNUNET_STATISTICS_update (stats,
441                               "# client destroy messages on unknown channel",
442                               1, GNUNET_NO);
443     GNUNET_SERVER_receive_done (client, GNUNET_OK);
444     return;
445   }
446
447   GMCH_handle_local_destroy (ch, c, chid < GNUNET_MESH_LOCAL_CHANNEL_ID_SERV);
448
449   GNUNET_SERVER_receive_done (client, GNUNET_OK);
450   return;
451 }
452
453
454 /**
455  * Handler for client traffic
456  *
457  * @param cls closure
458  * @param client identification of the client
459  * @param message the actual message
460  */
461 static void
462 handle_data (void *cls, struct GNUNET_SERVER_Client *client,
463              const struct GNUNET_MessageHeader *message)
464 {
465   struct GNUNET_MESH_LocalData *msg;
466   struct MeshClient *c;
467   struct MeshChannel *ch;
468   MESH_ChannelNumber chid;
469   size_t size;
470   int fwd;
471
472   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\nGot data from a client!\n");
473
474   /* Sanity check for client registration */
475   if (NULL == (c = GML_client_get (client)))
476   {
477     GNUNET_break (0);
478     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
479     return;
480   }
481   LOG (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
482
483   msg = (struct GNUNET_MESH_LocalData *) message;
484
485   /* Sanity check for message size */
486   size = ntohs (message->size) - sizeof (struct GNUNET_MESH_LocalData);
487   if (size < sizeof (struct GNUNET_MessageHeader))
488   {
489     GNUNET_break (0);
490     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
491     return;
492   }
493
494   /* Channel exists? */
495   chid = ntohl (msg->id);
496   LOG (GNUNET_ERROR_TYPE_DEBUG, "  on channel %X\n", chid);
497   fwd = chid < GNUNET_MESH_LOCAL_CHANNEL_ID_SERV;
498   ch = GML_channel_get (c, chid);
499   if (NULL == ch)
500   {
501     GNUNET_STATISTICS_update (stats,
502                               "# client data messages on unknown channel",
503                               1, GNUNET_NO);
504     GNUNET_SERVER_receive_done (client, GNUNET_OK);
505     return;
506   }
507
508   if (GNUNET_OK !=
509       GMCH_handle_local_data (ch, c,
510                               (struct GNUNET_MessageHeader *)&msg[1], fwd))
511   {
512     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
513     return;
514   }
515
516   LOG (GNUNET_ERROR_TYPE_DEBUG, "receive done OK\n");
517   GNUNET_SERVER_receive_done (client, GNUNET_OK);
518
519   return;
520 }
521
522
523 /**
524  * Handler for client's ACKs for payload traffic.
525  *
526  * @param cls Closure (unused).
527  * @param client Identification of the client.
528  * @param message The actual message.
529  */
530 static void
531 handle_ack (void *cls, struct GNUNET_SERVER_Client *client,
532             const struct GNUNET_MessageHeader *message)
533 {
534   struct GNUNET_MESH_LocalAck *msg;
535   struct MeshChannel *ch;
536   struct MeshClient *c;
537   MESH_ChannelNumber chid;
538   int fwd;
539
540   LOG (GNUNET_ERROR_TYPE_DEBUG, "\n");
541   LOG (GNUNET_ERROR_TYPE_DEBUG, "Got a local ACK\n");
542
543   /* Sanity check for client registration */
544   if (NULL == (c = GML_client_get (client)))
545   {
546     GNUNET_break (0);
547     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
548     return;
549   }
550   LOG (GNUNET_ERROR_TYPE_DEBUG, "  by client %u\n", c->id);
551
552   msg = (struct GNUNET_MESH_LocalAck *) message;
553
554   /* Channel exists? */
555   chid = ntohl (msg->channel_id);
556   LOG (GNUNET_ERROR_TYPE_DEBUG, "  on channel %X\n", chid);
557   ch = GML_channel_get (c, chid);
558   LOG (GNUNET_ERROR_TYPE_DEBUG, "   -- ch %p\n", ch);
559   if (NULL == ch)
560   {
561     LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %X unknown.\n", chid);
562     LOG (GNUNET_ERROR_TYPE_DEBUG, "  for client %u.\n", c->id);
563     GNUNET_STATISTICS_update (stats,
564                               "# client ack messages on unknown channel",
565                               1, GNUNET_NO);
566     GNUNET_SERVER_receive_done (client, GNUNET_OK);
567     return;
568   }
569
570   /* If client is root, the ACK is going FWD, therefore this is "BCK ACK". */
571   /* If client is dest, the ACK is going BCK, therefore this is "FWD ACK" */
572   fwd = chid >= GNUNET_MESH_LOCAL_CHANNEL_ID_SERV;
573
574   GMCH_handle_local_ack (ch, fwd);
575   GNUNET_SERVER_receive_done (client, GNUNET_OK);
576
577   return;
578 }
579
580
581 /**
582  * Iterator over all tunnels to send a monitoring client info about each tunnel.
583  *
584  * @param cls Closure (client handle).
585  * @param peer Peer ID (tunnel remote peer).
586  * @param value Tunnel info.
587  *
588  * @return #GNUNET_YES, to keep iterating.
589  */
590 static int
591 monitor_all_tunnels_iterator (void *cls,
592                               const struct GNUNET_PeerIdentity * peer,
593                               void *value)
594 {
595   struct GNUNET_SERVER_Client *client = cls;
596   struct MeshChannel *ch = value;
597   struct GNUNET_MESH_LocalInfo *msg;
598
599   msg = GNUNET_new (struct GNUNET_MESH_LocalInfo);
600   msg->channel_id = htonl (GMCH_get_id (ch));
601   msg->header.size = htons (sizeof (struct GNUNET_MESH_LocalInfo));
602   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS);
603
604   LOG (GNUNET_ERROR_TYPE_INFO,
605               "*  sending info about tunnel %s\n",
606               GNUNET_i2s (&msg->owner));
607
608   GNUNET_SERVER_notification_context_unicast (nc, client,
609                                               &msg->header, GNUNET_NO);
610   return GNUNET_YES;
611 }
612
613
614 /**
615  * Handler for client's INFO TUNNELS request.
616  *
617  * @param cls Closure (unused).
618  * @param client Identification of the client.
619  * @param message The actual message.
620  */
621 static void
622 handle_get_tunnels (void *cls, struct GNUNET_SERVER_Client *client,
623                     const struct GNUNET_MessageHeader *message)
624 {
625   struct MeshClient *c;
626   size_t size;
627   struct GNUNET_MessageHeader *reply;
628
629   /* Sanity check for client registration */
630   if (NULL == (c = GML_client_get (client)))
631   {
632     GNUNET_break (0);
633     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
634     return;
635   }
636
637   LOG (GNUNET_ERROR_TYPE_INFO, "Received get tunnels request from client %u\n",
638        c->id);
639
640   size = GMT_count_all () + 1; /* Last one is all \0 to mark 'end' */
641   size *= sizeof (struct GNUNET_PeerIdentity);
642   size += sizeof (*reply);
643   reply = GNUNET_malloc (size);
644   GMT_iterate_all (reply, monitor_all_tunnels_iterator);
645   reply->size = htons (size);
646   reply->type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS);
647   GNUNET_SERVER_notification_context_unicast (nc, client, reply, GNUNET_NO);
648
649   LOG (GNUNET_ERROR_TYPE_INFO,
650               "Get tunnels request from client %u completed\n",
651               c->id);
652   GNUNET_SERVER_receive_done (client, GNUNET_OK);
653 }
654
655
656 /**
657  * Handler for client's MONITOR_TUNNEL request.
658  *
659  * @param cls Closure (unused).
660  * @param client Identification of the client.
661  * @param message The actual message.
662  */
663 void
664 handle_show_tunnel (void *cls, struct GNUNET_SERVER_Client *client,
665                     const struct GNUNET_MessageHeader *message)
666 {
667   const struct GNUNET_MESH_LocalInfo *msg;
668   struct GNUNET_MESH_LocalInfo *resp;
669   struct MeshClient *c;
670   struct MeshChannel *ch;
671
672   /* Sanity check for client registration */
673   if (NULL == (c = GML_client_get (client)))
674   {
675     GNUNET_break (0);
676     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
677     return;
678   }
679
680   msg = (struct GNUNET_MESH_LocalInfo *) message;
681   LOG (GNUNET_ERROR_TYPE_INFO,
682               "Received tunnel info request from client %u for tunnel %s[%X]\n",
683               c->id,
684               &msg->owner,
685               ntohl (msg->channel_id));
686 //   ch = channel_get (&msg->owner, ntohl (msg->channel_id));
687   ch = NULL; // FIXME
688   if (NULL == ch)
689   {
690     /* We don't know the tunnel */
691     struct GNUNET_MESH_LocalInfo warn;
692
693     warn = *msg;
694     GNUNET_SERVER_notification_context_unicast (nc, client,
695                                                 &warn.header,
696                                                 GNUNET_NO);
697     GNUNET_SERVER_receive_done (client, GNUNET_OK);
698     return;
699   }
700
701   /* Initialize context */
702   resp = GNUNET_new (struct GNUNET_MESH_LocalInfo);
703   *resp = *msg;
704   resp->header.size = htons (sizeof (struct GNUNET_MESH_LocalInfo));
705   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
706                                               &resp->header, GNUNET_NO);
707   GNUNET_free (resp);
708
709   LOG (GNUNET_ERROR_TYPE_INFO,
710               "Monitor tunnel request from client %u completed\n",
711               c->id);
712   GNUNET_SERVER_receive_done (client, GNUNET_OK);
713 }
714
715
716 /**
717  * Functions to handle messages from clients
718  */
719 static struct GNUNET_SERVER_MessageHandler client_handlers[] = {
720   {&handle_new_client, NULL, GNUNET_MESSAGE_TYPE_MESH_LOCAL_CONNECT, 0},
721   {&handle_channel_create, NULL, GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE,
722    sizeof (struct GNUNET_MESH_ChannelMessage)},
723   {&handle_channel_destroy, NULL, GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY,
724    sizeof (struct GNUNET_MESH_ChannelMessage)},
725   {&handle_data, NULL, GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA, 0},
726   {&handle_ack, NULL, GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK,
727    sizeof (struct GNUNET_MESH_LocalAck)},
728   {&handle_get_tunnels, NULL, GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNELS,
729    sizeof (struct GNUNET_MessageHeader)},
730   {&handle_show_tunnel, NULL, GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_TUNNEL,
731    sizeof (struct GNUNET_MESH_LocalInfo)},
732   {NULL, NULL, 0, 0}
733 };
734
735
736
737 /******************************************************************************/
738 /********************************    API    ***********************************/
739 /******************************************************************************/
740
741 /**
742  * Initialize server subsystem.
743  *
744  * @param handle Server handle.
745  */
746 void
747 GML_init (struct GNUNET_SERVER_Handle *handle)
748 {
749   LOG (GNUNET_ERROR_TYPE_DEBUG, "init\n");
750   server_handle = handle;
751   GNUNET_SERVER_suspend (server_handle);
752   ports = GNUNET_CONTAINER_multihashmap32_create (32);
753 }
754
755
756 /**
757  * Install server (service) handlers and start listening to clients.
758  */
759 void
760 GML_start (void)
761 {
762   GNUNET_SERVER_add_handlers (server_handle, client_handlers);
763   GNUNET_SERVER_connect_notify (server_handle,  &handle_client_connect, NULL);
764   GNUNET_SERVER_disconnect_notify (server_handle, &handle_client_disconnect,
765                                    NULL);
766   nc = GNUNET_SERVER_notification_context_create (server_handle, 1);
767
768   clients_head = NULL;
769   clients_tail = NULL;
770   next_client_id = 0;
771   GNUNET_SERVER_resume (server_handle);
772 }
773
774
775 /**
776  * Shutdown server.
777  */
778 void
779 GML_shutdown (void)
780 {
781   if (nc != NULL)
782   {
783     GNUNET_SERVER_notification_context_destroy (nc);
784     nc = NULL;
785   }
786 }
787
788
789 /**
790  * Get a channel from a client.
791  *
792  * @param c Client to check.
793  * @param chid Channel ID, must be local (> 0x800...).
794  *
795  * @return non-NULL if channel exists in the clients lists
796  */
797 struct MeshChannel *
798 GML_channel_get (struct MeshClient *c, MESH_ChannelNumber chid)
799 {
800   struct GNUNET_CONTAINER_MultiHashMap32 *map;
801
802   if (0 == (chid & GNUNET_MESH_LOCAL_CHANNEL_ID_CLI))
803   {
804     GNUNET_break_op (0);
805     LOG (GNUNET_ERROR_TYPE_DEBUG, "CHID %X not a local chid\n", chid);
806     return NULL;
807   }
808
809   if (chid >= GNUNET_MESH_LOCAL_CHANNEL_ID_SERV)
810     map = c->incoming_channels;
811   else if (chid >= GNUNET_MESH_LOCAL_CHANNEL_ID_CLI)
812     map = c->own_channels;
813   else
814   {
815     GNUNET_break (0);
816     map = NULL;
817   }
818   if (NULL == map)
819   {
820     GNUNET_break (0);
821     LOG (GNUNET_ERROR_TYPE_DEBUG,
822          "Client %s does no t have a valid map for CHID %X\n",
823          GML_2s (c), chid);
824     return NULL;
825   }
826   return GNUNET_CONTAINER_multihashmap32_get (map, chid);
827 }
828
829
830 /**
831  * Add a channel to a client
832  *
833  * @param client Client.
834  * @param chid Channel ID.
835  * @param ch Channel.
836  */
837 void
838 GML_channel_add (struct MeshClient *client,
839                  uint32_t chid,
840                  struct MeshChannel *ch)
841 {
842   if (chid >= GNUNET_MESH_LOCAL_CHANNEL_ID_SERV)
843     GNUNET_CONTAINER_multihashmap32_put (client->incoming_channels, chid, ch,
844                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
845   else if (chid >= GNUNET_MESH_LOCAL_CHANNEL_ID_CLI)
846     GNUNET_CONTAINER_multihashmap32_put (client->own_channels, chid, ch,
847                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
848   else
849     GNUNET_break (0);
850 }
851
852
853 /**
854  * Remove a channel from a client.
855  *
856  * @param client Client.
857  * @param chid Channel ID.
858  * @param ch Channel.
859  */
860 void
861 GML_channel_remove (struct MeshClient *client,
862                     uint32_t chid,
863                     struct MeshChannel *ch)
864 {
865   if (GNUNET_MESH_LOCAL_CHANNEL_ID_SERV <= chid)
866     GNUNET_break (GNUNET_YES ==
867                   GNUNET_CONTAINER_multihashmap32_remove (client->incoming_channels,
868                                                           chid, ch));
869   else if (GNUNET_MESH_LOCAL_CHANNEL_ID_CLI <= chid)
870     GNUNET_break (GNUNET_YES ==
871                   GNUNET_CONTAINER_multihashmap32_remove (client->own_channels,
872                                                           chid, ch));
873   else
874     GNUNET_break (0);
875 }
876
877
878 /**
879  * Get the tunnel's next free local channel ID.
880  *
881  * @param c Client.
882  *
883  * @return LID of a channel free to use.
884  */
885 MESH_ChannelNumber
886 GML_get_next_chid (struct MeshClient *c)
887 {
888   MESH_ChannelNumber chid;
889
890   while (NULL != GML_channel_get (c, c->next_chid))
891   {
892     LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %u exists...\n", c->next_chid);
893     c->next_chid = (c->next_chid + 1) | GNUNET_MESH_LOCAL_CHANNEL_ID_SERV;
894   }
895   chid = c->next_chid;
896   c->next_chid = (c->next_chid + 1) | GNUNET_MESH_LOCAL_CHANNEL_ID_SERV;
897
898   return chid;
899 }
900
901
902 /**
903  * Check if client has registered with the service and has not disconnected
904  *
905  * @param client the client to check
906  *
907  * @return non-NULL if client exists in the global DLL
908  */
909 struct MeshClient *
910 GML_client_get (struct GNUNET_SERVER_Client *client)
911 {
912   return GNUNET_SERVER_client_get_user_context (client, struct MeshClient);
913 }
914
915 /**
916  * Find a client that has opened a port
917  *
918  * @param port Port to check.
919  *
920  * @return non-NULL if a client has the port.
921  */
922 struct MeshClient *
923 GML_client_get_by_port (uint32_t port)
924 {
925   return GNUNET_CONTAINER_multihashmap32_get (ports, port);
926 }
927
928
929 /**
930  * Deletes a channel from a client (either owner or destination).
931  *
932  * @param c Client whose tunnel to delete.
933  * @param ch Channel which should be deleted.
934  * @param id Channel ID.
935  */
936 void
937 GML_client_delete_channel (struct MeshClient *c,
938                            struct MeshChannel *ch,
939                            MESH_ChannelNumber id)
940 {
941   int res;
942
943   if (GNUNET_MESH_LOCAL_CHANNEL_ID_SERV <= id)
944   {
945     res = GNUNET_CONTAINER_multihashmap32_remove (c->incoming_channels,
946                                                   id, ch);
947     if (GNUNET_YES != res)
948       LOG (GNUNET_ERROR_TYPE_DEBUG, "client_delete_channel dest KO\n");
949   }
950   else if (GNUNET_MESH_LOCAL_CHANNEL_ID_CLI <= id)
951   {
952     res = GNUNET_CONTAINER_multihashmap32_remove (c->own_channels,
953                                                   id, ch);
954     if (GNUNET_YES != res)
955       LOG (GNUNET_ERROR_TYPE_DEBUG, "client_delete_tunnel root KO\n");
956   }
957   else
958   {
959     GNUNET_break (0);
960   }
961 }
962
963 /**
964  * Build a local ACK message and send it to a local client, if needed.
965  *
966  * If the client was already allowed to send data, do nothing.
967  *
968  * @param c Client to whom send the ACK.
969  * @param id Channel ID to use
970  */
971 void
972 GML_send_ack (struct MeshClient *c, MESH_ChannelNumber id)
973 {
974   struct GNUNET_MESH_LocalAck msg;
975
976   LOG (GNUNET_ERROR_TYPE_DEBUG,
977               "send local %s ack on %X towards %p\n",
978               id < GNUNET_MESH_LOCAL_CHANNEL_ID_SERV ? "FWD" : "BCK", id, c);
979
980   msg.header.size = htons (sizeof (msg));
981   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
982   msg.channel_id = htonl (id);
983   GNUNET_SERVER_notification_context_unicast (nc,
984                                               c->handle,
985                                               &msg.header,
986                                               GNUNET_NO);
987
988 }
989
990
991 /**
992  * Build a local channel NACK message and send it to a local client.
993  *
994  * @param c Client to whom send the NACK.
995  * @param id Channel ID to use
996  */
997 void
998 GML_send_nack (struct MeshClient *c, MESH_ChannelNumber id)
999 {
1000   struct GNUNET_MESH_LocalAck msg;
1001
1002   LOG (GNUNET_ERROR_TYPE_DEBUG,
1003               "send local nack on %X towards %p\n",
1004               id, c);
1005
1006   msg.header.size = htons (sizeof (msg));
1007   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_NACK);
1008   msg.channel_id = htonl (id);
1009   GNUNET_SERVER_notification_context_unicast (nc,
1010                                               c->handle,
1011                                               &msg.header,
1012                                               GNUNET_NO);
1013
1014 }
1015
1016
1017 /**
1018  * Notify the client that a new incoming channel was created.
1019  *
1020  * @param c Client to notify.
1021  * @param id Channel ID.
1022  * @param port Channel's destination port.
1023  * @param opt Options (bit array).
1024  * @param peer Origin peer.
1025  */
1026 void
1027 GML_send_channel_create (struct MeshClient *c,
1028                          uint32_t id, uint32_t port, uint32_t opt,
1029                          const struct GNUNET_PeerIdentity *peer)
1030 {
1031   struct GNUNET_MESH_ChannelMessage msg;
1032
1033   msg.header.size = htons (sizeof (msg));
1034   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_CREATE);
1035   msg.channel_id = htonl (id);
1036   msg.port = htonl (port);
1037   msg.opt = htonl (opt);
1038   msg.peer = *peer;
1039   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1040                                               &msg.header, GNUNET_NO);
1041 }
1042
1043
1044 /**
1045  * Notify a client that a channel is no longer valid.
1046  *
1047  * @param c Client.
1048  * @param id ID of the channel that is destroyed.
1049  */
1050 void
1051 GML_send_channel_destroy (struct MeshClient *c, uint32_t id)
1052 {
1053   struct GNUNET_MESH_ChannelMessage msg;
1054
1055   if (NULL == c)
1056   {
1057     GNUNET_break (0);
1058     return;
1059   }
1060   if (GNUNET_YES == c->shutting_down)
1061     return;
1062   msg.header.size = htons (sizeof (msg));
1063   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_CHANNEL_DESTROY);
1064   msg.channel_id = htonl (id);
1065   msg.port = htonl (0);
1066   memset (&msg.peer, 0, sizeof (msg.peer));
1067   msg.opt = htonl (0);
1068   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1069                                               &msg.header, GNUNET_NO);
1070 }
1071
1072
1073 /**
1074  * Modify the mesh message ID from global to local and send to client.
1075  *
1076  * @param c Client to send to.
1077  * @param msg Message to modify and send.
1078  * @param id Channel ID to use (c can be both owner and client).
1079  */
1080 void
1081 GML_send_data (struct MeshClient *c,
1082                const struct GNUNET_MESH_Data *msg,
1083                MESH_ChannelNumber id)
1084 {
1085   struct GNUNET_MESH_LocalData *copy;
1086   uint16_t size = ntohs (msg->header.size) - sizeof (struct GNUNET_MESH_Data);
1087   char cbuf[size + sizeof (struct GNUNET_MESH_LocalData)];
1088
1089   if (size < sizeof (struct GNUNET_MessageHeader))
1090   {
1091     GNUNET_break_op (0);
1092     return;
1093   }
1094   if (NULL == c)
1095   {
1096     GNUNET_break (0);
1097     return;
1098   }
1099   copy = (struct GNUNET_MESH_LocalData *) cbuf;
1100   memcpy (&copy[1], &msg[1], size);
1101   copy->header.size = htons (sizeof (struct GNUNET_MESH_LocalData) + size);
1102   copy->header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_DATA);
1103   copy->id = htonl (id);
1104   GNUNET_SERVER_notification_context_unicast (nc, c->handle,
1105                                               &copy->header, GNUNET_NO);
1106 }
1107
1108
1109 /**
1110  * Get the static string to represent a client.
1111  *
1112  * @param c Client.
1113  *
1114  * @return Static string for the client.
1115  */
1116 const char *
1117 GML_2s (const struct MeshClient *c)
1118 {
1119   static char buf[32];
1120
1121   sprintf (buf, "%u", c->id);
1122   return buf;
1123 }