Merge branch 'master' of ssh://gnunet.org/gnunet
[oweals/gnunet.git] / src / cadet / gnunet-service-cadet.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001-2013, 2017 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file cadet/gnunet-service-cadet.c
23  * @brief GNUnet CADET service with encryption
24  * @author Bartlomiej Polot
25  * @author Christian Grothoff
26  *
27  * Dictionary:
28  * - peer: other cadet instance. If there is direct connection it's a neighbor.
29  * - path: series of directly connected peer from one peer to another.
30  * - connection: path which is being used in a tunnel.
31  * - tunnel: encrypted connection to a peer, neighbor or not.
32  * - channel: logical link between two clients, on the same or different peers.
33  *            have properties like reliability.
34  */
35
36 #include "platform.h"
37 #include "gnunet_util_lib.h"
38 #include "cadet.h"
39 #include "gnunet_statistics_service.h"
40 #include "gnunet-service-cadet.h"
41 #include "gnunet-service-cadet_channel.h"
42 #include "gnunet-service-cadet_connection.h"
43 #include "gnunet-service-cadet_core.h"
44 #include "gnunet-service-cadet_dht.h"
45 #include "gnunet-service-cadet_hello.h"
46 #include "gnunet-service-cadet_tunnels.h"
47 #include "gnunet-service-cadet_peer.h"
48 #include "gnunet-service-cadet_paths.h"
49
50 #define LOG(level, ...) GNUNET_log (level,__VA_ARGS__)
51
52
53 /**
54  * Struct containing information about a client of the service
55  */
56 struct CadetClient
57 {
58   /**
59    * Linked list next
60    */
61   struct CadetClient *next;
62
63   /**
64    * Linked list prev
65    */
66   struct CadetClient *prev;
67
68   /**
69    * Tunnels that belong to this client, indexed by local id,
70    * value is a `struct CadetChannel`.
71    */
72   struct GNUNET_CONTAINER_MultiHashMap32 *channels;
73
74   /**
75    * Handle to communicate with the client
76    */
77   struct GNUNET_MQ_Handle *mq;
78   
79   /**
80    * Client handle.
81    */
82   struct GNUNET_SERVICE_Client *client;
83
84   /**
85    * Ports that this client has declared interest in.
86    * Indexed by port, contains `struct OpenPort`
87    */
88   struct GNUNET_CONTAINER_MultiHashMap *ports;
89
90   /**
91    * Channel ID to use for the next incoming channel for this client.
92    * Wraps around (in theory).
93    */
94   struct GNUNET_CADET_ClientChannelNumber next_ccn;
95
96   /**
97    * ID of the client, mainly for debug messages. Purely internal to this file.
98    */
99   unsigned int id;
100 };
101
102
103 /******************************************************************************/
104 /***********************      GLOBAL VARIABLES     ****************************/
105 /******************************************************************************/
106
107 /****************************** Global variables ******************************/
108
109 /**
110  * Handle to our configuration.
111  */
112 const struct GNUNET_CONFIGURATION_Handle *cfg;
113
114 /**
115  * Handle to the statistics service.
116  */
117 struct GNUNET_STATISTICS_Handle *stats;
118
119 /**
120  * Handle to communicate with ATS.
121  */
122 struct GNUNET_ATS_ConnectivityHandle *ats_ch;
123
124 /**
125  * Local peer own ID.
126  */
127 struct GNUNET_PeerIdentity my_full_id;
128
129 /**
130  * Own private key.
131  */
132 struct GNUNET_CRYPTO_EddsaPrivateKey *my_private_key;
133
134 /**
135  * Signal that shutdown is happening: prevent recovery measures.
136  */
137 int shutting_down;
138
139 /**
140  * DLL with all the clients, head.
141  */
142 static struct CadetClient *clients_head;
143
144 /**
145  * DLL with all the clients, tail.
146  */
147 static struct CadetClient *clients_tail;
148
149 /**
150  * Next ID to assign to a client.
151  */
152 static unsigned int next_client_id;
153
154 /**
155  * All ports clients of this peer have opened.  Maps from
156  * a hashed port to a `struct OpenPort`.
157  */
158 struct GNUNET_CONTAINER_MultiHashMap *open_ports;
159
160 /**
161  * Map from ports to channels where the ports were closed at the
162  * time we got the inbound connection.
163  * Indexed by h_port, contains `struct CadetChannel`.
164  */
165 struct GNUNET_CONTAINER_MultiHashMap *loose_channels;
166
167 /**
168  * Map from PIDs to `struct CadetPeer` entries.
169  */
170 struct GNUNET_CONTAINER_MultiPeerMap *peers;
171
172 /**
173  * Map from `struct GNUNET_CADET_ConnectionTunnelIdentifier`
174  * hash codes to `struct CadetConnection` objects.
175  */
176 struct GNUNET_CONTAINER_MultiShortmap *connections;
177
178 /**
179  * How many messages are needed to trigger an AXOLOTL ratchet advance.
180  */
181 unsigned long long ratchet_messages;
182
183 /**
184  * How long until we trigger a ratched advance due to time.
185  */
186 struct GNUNET_TIME_Relative ratchet_time;
187
188 /**
189  * How frequently do we send KEEPALIVE messages on idle connections?
190  */
191 struct GNUNET_TIME_Relative keepalive_period;
192
193 /**
194  * Set to non-zero values to create random drops to test retransmissions.
195  */
196 unsigned long long drop_percent;
197
198
199 /**
200  * Send a message to a client.
201  *
202  * @param c client to get the message
203  * @param env envelope with the message
204  */
205 void
206 GSC_send_to_client (struct CadetClient *c,
207                     struct GNUNET_MQ_Envelope *env)
208 {
209   GNUNET_MQ_send (c->mq,
210                   env);
211 }
212
213
214 /**
215  * Return identifier for a client as a string.
216  *
217  * @param c client to identify
218  * @return string for debugging
219  */
220 const char *
221 GSC_2s (struct CadetClient *c)
222 {
223   static char buf[32];
224
225   GNUNET_snprintf (buf,
226                    sizeof (buf),
227                    "Client(%u)",
228                    c->id);
229   return buf;
230 }
231
232
233 /**
234  * Lookup channel of client @a c by @a ccn.
235  *
236  * @param c client to look in
237  * @param ccn channel ID to look up
238  * @return NULL if no such channel exists
239  */
240 static struct CadetChannel *
241 lookup_channel (struct CadetClient *c,
242                 struct GNUNET_CADET_ClientChannelNumber ccn)
243 {
244   return GNUNET_CONTAINER_multihashmap32_get (c->channels,
245                                               ntohl (ccn.channel_of_client));
246 }
247
248
249 /**
250  * Obtain the next LID to use for incoming connections to
251  * the given client.
252  *
253  * @param c client handle
254  */
255 static struct GNUNET_CADET_ClientChannelNumber
256 client_get_next_ccn (struct CadetClient *c)
257 {
258   struct GNUNET_CADET_ClientChannelNumber ccn = c->next_ccn;
259
260   /* increment until we have a free one... */
261   while (NULL !=
262          lookup_channel (c,
263                          ccn))
264   {
265     ccn.channel_of_client
266       = htonl (1 + (ntohl (ccn.channel_of_client)));
267     if (ntohl (ccn.channel_of_client) >=
268         GNUNET_CADET_LOCAL_CHANNEL_ID_CLI)
269       ccn.channel_of_client = htonl (0);
270   }
271   c->next_ccn.channel_of_client
272     = htonl (1 + (ntohl (ccn.channel_of_client)));
273   return ccn;
274 }
275
276
277 /**
278  * Bind incoming channel to this client, and notify client about
279  * incoming connection.  Caller is responsible for notifying the other
280  * peer about our acceptance of the channel.
281  *
282  * @param c client to bind to
283  * @param ch channel to be bound
284  * @param dest peer that establishes the connection
285  * @param port port number
286  * @param options options
287  * @return local channel number assigned to the new client
288  */
289 struct GNUNET_CADET_ClientChannelNumber
290 GSC_bind (struct CadetClient *c,
291           struct CadetChannel *ch,
292           struct CadetPeer *dest,
293           const struct GNUNET_HashCode *port,
294           uint32_t options)
295 {
296   struct GNUNET_MQ_Envelope *env;
297   struct GNUNET_CADET_LocalChannelCreateMessage *cm;
298   struct GNUNET_CADET_ClientChannelNumber ccn;
299
300   ccn = client_get_next_ccn (c);
301   GNUNET_assert (GNUNET_YES ==
302                  GNUNET_CONTAINER_multihashmap32_put (c->channels,
303                                                       ntohl (ccn.channel_of_client),
304                                                       ch,
305                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
306   LOG (GNUNET_ERROR_TYPE_DEBUG,
307        "Accepting incoming %s from %s on open port %s (%u), assigning ccn %X\n",
308        GCCH_2s (ch),
309        GCP_2s (dest),
310        GNUNET_h2s (port),
311        (uint32_t) ntohl (options),
312        (uint32_t) ntohl (ccn.channel_of_client));
313   /* notify local client about incoming connection! */
314   env = GNUNET_MQ_msg (cm,
315                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_CHANNEL_CREATE);
316   cm->ccn = ccn;
317   cm->port = *port;
318   cm->opt = htonl (options);
319   cm->peer = *GCP_get_id (dest);
320   GSC_send_to_client (c,
321                       env);
322   return ccn;
323 }
324
325
326 /**
327  * Callback invoked on all peers to destroy all tunnels
328  * that may still exist.
329  *
330  * @param cls NULL
331  * @param pid identify of a peer
332  * @param value a `struct CadetPeer` that may still have a tunnel
333  * @return #GNUNET_OK (iterate over all entries)
334  */
335 static int
336 destroy_tunnels_now (void *cls,
337                      const struct GNUNET_PeerIdentity *pid,
338                      void *value)
339 {
340   struct CadetPeer *cp = value;
341   struct CadetTunnel *t = GCP_get_tunnel (cp,
342                                           GNUNET_NO);
343
344   if (NULL != t)
345     GCT_destroy_tunnel_now (t);
346   return GNUNET_OK;
347 }
348
349
350 /**
351  * Callback invoked on all peers to destroy all tunnels
352  * that may still exist.
353  *
354  * @param cls NULL
355  * @param pid identify of a peer
356  * @param value a `struct CadetPeer` that may still have a tunnel
357  * @return #GNUNET_OK (iterate over all entries)
358  */
359 static int
360 destroy_paths_now (void *cls,
361                    const struct GNUNET_PeerIdentity *pid,
362                    void *value)
363 {
364   struct CadetPeer *cp = value;
365
366   GCP_drop_owned_paths (cp);
367   return GNUNET_OK;
368 }
369
370
371 /**
372  * Shutdown everything once the clients have disconnected.
373  */
374 static void
375 shutdown_rest ()
376 {
377   if (NULL != stats)
378   {
379     GNUNET_STATISTICS_destroy (stats,
380                                GNUNET_NO);
381     stats = NULL;
382   }
383   if (NULL != open_ports)
384   {
385     GNUNET_CONTAINER_multihashmap_destroy (open_ports);
386     open_ports = NULL;
387   }
388   if (NULL != loose_channels)
389   {
390     GNUNET_CONTAINER_multihashmap_destroy (loose_channels);
391     loose_channels = NULL;
392   }
393   /* Destroy tunnels.  Note that all channels must be destroyed first! */
394   GCP_iterate_all (&destroy_tunnels_now,
395                    NULL);
396   /* All tunnels, channels, connections and CORE must be down before this point. */
397   GCP_iterate_all (&destroy_paths_now,
398                    NULL);
399   /* All paths, tunnels, channels, connections and CORE must be down before this point. */
400   GCP_destroy_all_peers ();
401   if (NULL != peers)
402   {
403     GNUNET_CONTAINER_multipeermap_destroy (peers);
404     peers = NULL;
405   }
406   if (NULL != connections)
407   {
408     GNUNET_CONTAINER_multishortmap_destroy (connections);
409     connections = NULL;
410   }
411   if (NULL != ats_ch)
412   {
413     GNUNET_ATS_connectivity_done (ats_ch);
414     ats_ch = NULL;
415   }
416   GCD_shutdown ();
417   GCH_shutdown ();
418   GNUNET_free_non_null (my_private_key);
419   my_private_key = NULL;
420 }
421
422
423 /**
424  * Task run during shutdown.
425  *
426  * @param cls unused
427  */
428 static void
429 shutdown_task (void *cls)
430 {
431   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
432               "Shutting down\n");
433   shutting_down = GNUNET_YES;
434   GCO_shutdown ();
435   if (NULL == clients_head)
436     shutdown_rest ();
437 }
438
439
440 /**
441  * We had a remote connection @a value to port @a h_port before
442  * client @a cls opened port @a port.  Bind them now.
443  *
444  * @param cls the `struct CadetClient`
445  * @param h_port the hashed port
446  * @param value the `struct CadetChannel`
447  * @return #GNUNET_YES (iterate over all such channels)
448  */
449 static int
450 bind_loose_channel (void *cls,
451                     const struct GNUNET_HashCode *port,
452                     void *value)
453 {
454   struct OpenPort *op = cls;
455   struct CadetChannel *ch = value;
456
457   GCCH_bind (ch,
458              op->c,
459              &op->port);
460   GNUNET_assert (GNUNET_YES ==
461                  GNUNET_CONTAINER_multihashmap_remove (loose_channels,
462                                                        &op->h_port,
463                                                        ch));
464   return GNUNET_YES;
465 }
466
467
468 /**
469  * Handle port open request.  Creates a mapping from the
470  * port to the respective client and checks whether we have
471  * loose channels trying to bind to the port.  If so, those
472  * are bound.
473  *
474  * @param cls Identification of the client.
475  * @param pmsg The actual message.
476  */
477 static void
478 handle_port_open (void *cls,
479                   const struct GNUNET_CADET_PortMessage *pmsg)
480 {
481   struct CadetClient *c = cls;
482   struct OpenPort *op;
483
484   LOG (GNUNET_ERROR_TYPE_DEBUG,
485        "Open port %s requested by %s\n",
486        GNUNET_h2s (&pmsg->port),
487        GSC_2s (c));
488   if (NULL == c->ports)
489     c->ports = GNUNET_CONTAINER_multihashmap_create (4,
490                                                      GNUNET_NO);
491   op = GNUNET_new (struct OpenPort);
492   op->c = c;
493   op->port = pmsg->port;
494   GCCH_hash_port (&op->h_port,
495                   &pmsg->port,
496                   &my_full_id);
497   if (GNUNET_OK !=
498       GNUNET_CONTAINER_multihashmap_put (c->ports,
499                                          &op->port,
500                                          op,
501                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
502   {
503     GNUNET_break (0);
504     GNUNET_SERVICE_client_drop (c->client);
505     return;
506   }
507   (void) GNUNET_CONTAINER_multihashmap_put (open_ports,
508                                             &op->h_port,
509                                             op,
510                                             GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
511   GNUNET_CONTAINER_multihashmap_get_multiple (loose_channels,
512                                               &op->h_port,
513                                               &bind_loose_channel,
514                                               op);
515   GNUNET_SERVICE_client_continue (c->client);
516 }
517
518
519 /**
520  * Handler for port close requests.  Marks this port as closed
521  * (unless of course we have another client with the same port
522  * open).  Note that existing channels accepted on the port are
523  * not affected.
524  *
525  * @param cls Identification of the client.
526  * @param pmsg The actual message.
527  */
528 static void
529 handle_port_close (void *cls,
530                    const struct GNUNET_CADET_PortMessage *pmsg)
531 {
532   struct CadetClient *c = cls;
533   struct OpenPort *op;
534
535   LOG (GNUNET_ERROR_TYPE_DEBUG,
536        "Closing port %s as requested by %s\n",
537        GNUNET_h2s (&pmsg->port),
538        GSC_2s (c));
539   op = GNUNET_CONTAINER_multihashmap_get (c->ports,
540                                           &pmsg->port);
541   if (NULL == op)
542   {
543     GNUNET_break (0);
544     GNUNET_SERVICE_client_drop (c->client);
545     return;
546   }
547   GNUNET_assert (GNUNET_YES ==
548                  GNUNET_CONTAINER_multihashmap_remove (c->ports,
549                                                        &op->port,
550                                                        op));
551   GNUNET_assert (GNUNET_YES ==
552                  GNUNET_CONTAINER_multihashmap_remove (open_ports,
553                                                        &op->h_port,
554                                                        op));
555   GNUNET_free (op);
556   GNUNET_SERVICE_client_continue (c->client);
557 }
558
559
560 /**
561  * Handler for requests for us creating a new channel to another peer and port.
562  *
563  * @param cls Identification of the client.
564  * @param tcm The actual message.
565  */
566 static void
567 handle_channel_create (void *cls,
568                        const struct GNUNET_CADET_LocalChannelCreateMessage *tcm)
569 {
570   struct CadetClient *c = cls;
571   struct CadetChannel *ch;
572
573   if (ntohl (tcm->ccn.channel_of_client) < GNUNET_CADET_LOCAL_CHANNEL_ID_CLI)
574   {
575     /* Channel ID not in allowed range. */
576     GNUNET_break (0);
577     GNUNET_SERVICE_client_drop (c->client);
578     return;
579   }
580   ch = lookup_channel (c,
581                        tcm->ccn);
582   if (NULL != ch)
583   {
584     /* Channel ID already in use. Not allowed. */
585     GNUNET_break (0);
586     GNUNET_SERVICE_client_drop (c->client);
587     return;
588   }
589   LOG (GNUNET_ERROR_TYPE_DEBUG,
590        "New channel to %s at port %s requested by %s\n",
591        GNUNET_i2s (&tcm->peer),
592        GNUNET_h2s (&tcm->port),
593        GSC_2s (c));
594
595   /* Create channel */
596   ch = GCCH_channel_local_new (c,
597                                tcm->ccn,
598                                GCP_get (&tcm->peer,
599                                         GNUNET_YES),
600                                &tcm->port,
601                                ntohl (tcm->opt));
602   if (NULL == ch)
603   {
604     GNUNET_break (0);
605     GNUNET_SERVICE_client_drop (c->client);
606     return;
607   }
608   GNUNET_assert (GNUNET_YES ==
609                  GNUNET_CONTAINER_multihashmap32_put (c->channels,
610                                                       ntohl (tcm->ccn.channel_of_client),
611                                                       ch,
612                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
613
614   GNUNET_SERVICE_client_continue (c->client);
615 }
616
617
618 /**
619  * Handler for requests of destroying an existing channel.
620  *
621  * @param cls client identification of the client
622  * @param msg the actual message
623  */
624 static void
625 handle_channel_destroy (void *cls,
626                         const struct GNUNET_CADET_LocalChannelDestroyMessage *msg)
627 {
628   struct CadetClient *c = cls;
629   struct CadetChannel *ch;
630
631   ch = lookup_channel (c,
632                        msg->ccn);
633   if (NULL == ch)
634   {
635     /* Client attempted to destroy unknown channel.
636        Can happen if the other side went down at the same time.*/
637     LOG (GNUNET_ERROR_TYPE_DEBUG,
638          "%s tried to destroy unknown channel %X\n",
639          GSC_2s(c),
640          (uint32_t) ntohl (msg->ccn.channel_of_client));
641     return;
642   }
643   LOG (GNUNET_ERROR_TYPE_DEBUG,
644        "%s is destroying %s\n",
645        GSC_2s(c),
646        GCCH_2s (ch));
647   GNUNET_assert (GNUNET_YES ==
648                  GNUNET_CONTAINER_multihashmap32_remove (c->channels,
649                                                          ntohl (msg->ccn.channel_of_client),
650                                                          ch));
651   GCCH_channel_local_destroy (ch,
652                               c,
653                               msg->ccn);
654   GNUNET_SERVICE_client_continue (c->client);
655 }
656
657
658 /**
659  * Check for client traffic data message is well-formed.
660  *
661  * @param cls identification of the client
662  * @param msg the actual message
663  * @return #GNUNET_OK if @a msg is OK, #GNUNET_SYSERR if not
664  */
665 static int
666 check_local_data (void *cls,
667                   const struct GNUNET_CADET_LocalData *msg)
668 {
669   size_t payload_size;
670   size_t payload_claimed_size;
671   const char *buf;
672   struct GNUNET_MessageHeader pa;
673
674   /* FIXME: what is the format we shall allow for @a msg?
675      ONE payload item or multiple? Seems current cadet_api
676      at least in theory allows more than one. Next-gen
677      cadet_api will likely no more, so we could then
678      simplify this mess again. */
679   /* Sanity check for message size */
680   payload_size = ntohs (msg->header.size) - sizeof (*msg);
681   buf = (const char *) &msg[1];
682   while (payload_size >= sizeof (struct GNUNET_MessageHeader))
683   {
684     /* need to memcpy() for alignment */
685     GNUNET_memcpy (&pa,
686                    buf,
687                    sizeof (pa));
688     payload_claimed_size = ntohs (pa.size);
689     if ( (payload_size < payload_claimed_size) ||
690          (payload_claimed_size < sizeof (struct GNUNET_MessageHeader)) ||
691          (GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE < payload_claimed_size) )
692     {
693       GNUNET_break (0);
694       LOG (GNUNET_ERROR_TYPE_DEBUG,
695            "Local data of %u total size had sub-message %u at %u with %u bytes\n",
696            ntohs (msg->header.size),
697            ntohs (pa.type),
698            (unsigned int) (buf - (const char *) &msg[1]),
699            (unsigned int) payload_claimed_size);
700       return GNUNET_SYSERR;
701     }
702     payload_size -= payload_claimed_size;
703     buf += payload_claimed_size;
704   }
705   if (0 != payload_size)
706   {
707     GNUNET_break_op (0);
708     return GNUNET_SYSERR;
709   }
710   return GNUNET_OK;
711 }
712
713
714 /**
715  * Handler for client payload traffic to be send on a channel to
716  * another peer.
717  *
718  * @param cls identification of the client
719  * @param msg the actual message
720  */
721 static void
722 handle_local_data (void *cls,
723                    const struct GNUNET_CADET_LocalData *msg)
724 {
725   struct CadetClient *c = cls;
726   struct CadetChannel *ch;
727   size_t payload_size;
728   const char *buf;
729
730   ch = lookup_channel (c,
731                        msg->ccn);
732   if (NULL == ch)
733   {
734     /* Channel does not exist (anymore) */
735     LOG (GNUNET_ERROR_TYPE_WARNING,
736          "Dropping payload for channel %u from client (channel unknown, other endpoint may have disconnected)\n",
737          (unsigned int) ntohl (msg->ccn.channel_of_client));
738     GNUNET_SERVICE_client_continue (c->client);
739     return;
740   }
741   payload_size = ntohs (msg->header.size) - sizeof (*msg);
742   GNUNET_STATISTICS_update (stats,
743                             "# payload received from clients",
744                             payload_size,
745                             GNUNET_NO);
746   buf = (const char *) &msg[1];
747   LOG (GNUNET_ERROR_TYPE_DEBUG,
748        "Received %u bytes payload from %s for %s\n",
749        (unsigned int) payload_size,
750        GSC_2s (c),
751        GCCH_2s (ch));
752   if (GNUNET_OK !=
753       GCCH_handle_local_data (ch,
754                               msg->ccn,
755                               buf,
756                               payload_size))
757   {
758     GNUNET_SERVICE_client_drop (c->client);
759     return;
760   }
761   GNUNET_SERVICE_client_continue (c->client);
762 }
763
764
765 /**
766  * Handler for client's ACKs for payload traffic.
767  *
768  * @param cls identification of the client.
769  * @param msg The actual message.
770  */
771 static void
772 handle_local_ack (void *cls,
773                   const struct GNUNET_CADET_LocalAck *msg)
774 {
775   struct CadetClient *c = cls;
776   struct CadetChannel *ch;
777
778   ch = lookup_channel (c,
779                        msg->ccn);
780   if (NULL == ch)
781   {
782     /* Channel does not exist (anymore) */
783     LOG (GNUNET_ERROR_TYPE_WARNING,
784          "Ignoring local ACK for channel %u from client (channel unknown, other endpoint may have disconnected)\n",
785          (unsigned int) ntohl (msg->ccn.channel_of_client));
786     GNUNET_SERVICE_client_continue (c->client);
787     return;
788   }
789   LOG (GNUNET_ERROR_TYPE_DEBUG,
790        "Got a local ACK from %s for %s\n",
791        GSC_2s(c),
792        GCCH_2s (ch));
793   GCCH_handle_local_ack (ch,
794                          msg->ccn);
795   GNUNET_SERVICE_client_continue (c->client);
796 }
797
798
799 /**
800  * Iterator over all peers to send a monitoring client info about each peer.
801  *
802  * @param cls Closure ().
803  * @param peer Peer ID (tunnel remote peer).
804  * @param value Peer info.
805  * @return #GNUNET_YES, to keep iterating.
806  */
807 static int
808 get_all_peers_iterator (void *cls,
809                         const struct GNUNET_PeerIdentity *peer,
810                         void *value)
811 {
812   struct CadetClient *c = cls;
813   struct CadetPeer *p = value;
814   struct GNUNET_MQ_Envelope *env;
815   struct GNUNET_CADET_LocalInfoPeer *msg;
816
817   env = GNUNET_MQ_msg (msg,
818                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEERS);
819   msg->destination = *peer;
820   msg->paths = htons (GCP_count_paths (p));
821   msg->tunnel = htons (NULL != GCP_get_tunnel (p,
822                                                GNUNET_NO));
823   GNUNET_MQ_send (c->mq,
824                   env);
825   return GNUNET_YES;
826 }
827
828
829 /**
830  * Handler for client's INFO PEERS request.
831  *
832  * @param cls Identification of the client.
833  * @param message The actual message.
834  */
835 static void
836 handle_get_peers (void *cls,
837                   const struct GNUNET_MessageHeader *message)
838 {
839   struct CadetClient *c = cls;
840   struct GNUNET_MQ_Envelope *env;
841   struct GNUNET_MessageHeader *reply;
842
843   GCP_iterate_all (&get_all_peers_iterator,
844                    c);
845   env = GNUNET_MQ_msg (reply,
846                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEERS);
847   GNUNET_MQ_send (c->mq,
848                   env);
849   GNUNET_SERVICE_client_continue (c->client);
850 }
851
852
853 /**
854  * Iterator over all paths of a peer to build an InfoPeer message.
855  * Message contains blocks of peers, first not included.
856  *
857  * @param cls message queue for transmission
858  * @param path Path itself
859  * @param off offset of the peer on @a path
860  * @return #GNUNET_YES if should keep iterating.
861  *         #GNUNET_NO otherwise.
862  */
863 static int
864 path_info_iterator (void *cls,
865                     struct CadetPeerPath *path,
866                     unsigned int off)
867 {
868   struct GNUNET_MQ_Handle *mq = cls;
869   struct GNUNET_MQ_Envelope *env;
870   struct GNUNET_MessageHeader *resp;
871   struct GNUNET_PeerIdentity *id;
872   uint16_t path_size;
873   unsigned int i;
874   unsigned int path_length;
875
876   path_length = GCPP_get_length (path);
877   path_size = sizeof (struct GNUNET_PeerIdentity) * (path_length - 1);
878   if (sizeof (*resp) + path_size > UINT16_MAX)
879   {
880     LOG (GNUNET_ERROR_TYPE_WARNING,
881          "Path of %u entries is too long for info message\n",
882          path_length);
883     return GNUNET_YES;
884   }
885   env = GNUNET_MQ_msg_extra (resp,
886                              path_size,
887                              GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEER);
888   id = (struct GNUNET_PeerIdentity *) &resp[1];
889
890   /* Don't copy first peer.  First peer is always the local one.  Last
891    * peer is always the destination (leave as 0, EOL).
892    */
893   for (i = 0; i < off; i++)
894     id[i] = *GCP_get_id (GCPP_get_peer_at_offset (path,
895                                                   i + 1));
896   GNUNET_MQ_send (mq,
897                   env);
898   return GNUNET_YES;
899 }
900
901
902 /**
903  * Handler for client's SHOW_PEER request.
904  *
905  * @param cls Identification of the client.
906  * @param msg The actual message.
907  */
908 static void
909 handle_show_peer (void *cls,
910                   const struct GNUNET_CADET_LocalInfo *msg)
911 {
912   struct CadetClient *c = cls;
913   struct CadetPeer *p;
914   struct GNUNET_MQ_Envelope *env;
915   struct GNUNET_MessageHeader *resp;
916
917   p = GCP_get (&msg->peer,
918                GNUNET_NO);
919   if (NULL != p)
920     GCP_iterate_paths (p,
921                        &path_info_iterator,
922                        c->mq);
923   /* Send message with 0/0 to indicate the end */
924   env = GNUNET_MQ_msg (resp,
925                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEER_END);
926   GNUNET_MQ_send (c->mq,
927                   env);
928   GNUNET_SERVICE_client_continue (c->client);
929 }
930
931
932 /**
933  * Iterator over all tunnels to send a monitoring client info about each tunnel.
934  *
935  * @param cls Closure ().
936  * @param peer Peer ID (tunnel remote peer).
937  * @param value a `struct CadetPeer`
938  * @return #GNUNET_YES, to keep iterating.
939  */
940 static int
941 get_all_tunnels_iterator (void *cls,
942                           const struct GNUNET_PeerIdentity *peer,
943                           void *value)
944 {
945   struct CadetClient *c = cls;
946   struct CadetPeer *p = value;
947   struct GNUNET_MQ_Envelope *env;
948   struct GNUNET_CADET_LocalInfoTunnel *msg;
949   struct CadetTunnel *t;
950
951   t = GCP_get_tunnel (p,
952                       GNUNET_NO);
953   if (NULL == t)
954     return GNUNET_YES;
955   env = GNUNET_MQ_msg (msg,
956                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNELS);
957   msg->destination = *peer;
958   msg->channels = htonl (GCT_count_channels (t));
959   msg->connections = htonl (GCT_count_any_connections (t));
960   msg->cstate = htons (0);
961   msg->estate = htons ((uint16_t) GCT_get_estate (t));
962   GNUNET_MQ_send (c->mq,
963                   env);
964   return GNUNET_YES;
965 }
966
967
968 /**
969  * Handler for client's #GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNELS request.
970  *
971  * @param cls client Identification of the client.
972  * @param message The actual message.
973  */
974 static void
975 handle_info_tunnels (void *cls,
976                      const struct GNUNET_MessageHeader *message)
977 {
978   struct CadetClient *c = cls;
979   struct GNUNET_MQ_Envelope *env;
980   struct GNUNET_MessageHeader *reply;
981
982   GCP_iterate_all (&get_all_tunnels_iterator,
983                    c);
984   env = GNUNET_MQ_msg (reply,
985                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNELS);
986   GNUNET_MQ_send (c->mq,
987                   env);
988   GNUNET_SERVICE_client_continue (c->client);
989 }
990
991
992 /**
993  * Update the message with information about the connection.
994  *
995  * @param cls a `struct GNUNET_CADET_LocalInfoTunnel` message to update
996  * @param ct a connection about which we should store information in @a cls
997  */
998 static void
999 iter_connection (void *cls,
1000                  struct CadetTConnection *ct)
1001 {
1002   struct GNUNET_CADET_LocalInfoTunnel *msg = cls;
1003   struct CadetConnection *cc = ct->cc;
1004   struct GNUNET_CADET_ConnectionTunnelIdentifier *h;
1005
1006   h = (struct GNUNET_CADET_ConnectionTunnelIdentifier *) &msg[1];
1007   h[msg->connections++] = *(GCC_get_id (cc));
1008 }
1009
1010
1011 /**
1012  * Update the message with information about the channel.
1013  *
1014  * @param cls a `struct GNUNET_CADET_LocalInfoTunnel` message to update
1015  * @param ch a channel about which we should store information in @a cls
1016  */
1017 static void
1018 iter_channel (void *cls,
1019               struct CadetChannel *ch)
1020 {
1021   struct GNUNET_CADET_LocalInfoTunnel *msg = cls;
1022   struct GNUNET_CADET_ConnectionTunnelIdentifier *h = (struct GNUNET_CADET_ConnectionTunnelIdentifier *) &msg[1];
1023   struct GNUNET_CADET_ChannelTunnelNumber *chn
1024     = (struct GNUNET_CADET_ChannelTunnelNumber *) &h[msg->connections];
1025
1026   chn[msg->channels++] = GCCH_get_id (ch);
1027 }
1028
1029
1030 /**
1031  * Handler for client's #GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL request.
1032  *
1033  * @param cls Identification of the client.
1034  * @param msg The actual message.
1035  */
1036 static void
1037 handle_info_tunnel (void *cls,
1038                     const struct GNUNET_CADET_LocalInfo *msg)
1039 {
1040   struct CadetClient *c = cls;
1041   struct GNUNET_MQ_Envelope *env;
1042   struct GNUNET_CADET_LocalInfoTunnel *resp;
1043   struct CadetTunnel *t;
1044   struct CadetPeer *p;
1045   unsigned int ch_n;
1046   unsigned int c_n;
1047
1048   p = GCP_get (&msg->peer,
1049                GNUNET_NO);
1050   t = GCP_get_tunnel (p,
1051                       GNUNET_NO);
1052   if (NULL == t)
1053   {
1054     /* We don't know the tunnel */
1055     struct GNUNET_MQ_Envelope *env;
1056     struct GNUNET_CADET_LocalInfoTunnel *warn;
1057
1058     LOG (GNUNET_ERROR_TYPE_INFO,
1059          "Tunnel to %s unknown\n",
1060          GNUNET_i2s_full (&msg->peer));
1061     env = GNUNET_MQ_msg (warn,
1062                          GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL);
1063     warn->destination = msg->peer;
1064     GNUNET_MQ_send (c->mq,
1065                     env);
1066     GNUNET_SERVICE_client_continue (c->client);
1067     return;
1068   }
1069
1070   /* Initialize context */
1071   ch_n = GCT_count_channels (t);
1072   c_n = GCT_count_any_connections (t);
1073   env = GNUNET_MQ_msg_extra (resp,
1074                              c_n * sizeof (struct GNUNET_CADET_ConnectionTunnelIdentifier) +
1075                              ch_n * sizeof (struct GNUNET_CADET_ChannelTunnelNumber),
1076                              GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL);
1077   resp->destination = msg->peer;
1078   /* Do not reorder! #iter_channel needs counters in HBO! */
1079   GCT_iterate_connections (t,
1080                            &iter_connection,
1081                            resp);
1082   GCT_iterate_channels (t,
1083                         &iter_channel,
1084                         resp);
1085   resp->connections = htonl (resp->connections);
1086   resp->channels = htonl (resp->channels);
1087   resp->cstate = htons (0);
1088   resp->estate = htons (GCT_get_estate (t));
1089   GNUNET_MQ_send (c->mq,
1090                   env);
1091   GNUNET_SERVICE_client_continue (c->client);
1092 }
1093
1094
1095 /**
1096  * Iterator over all peers to dump info for each peer.
1097  *
1098  * @param cls Closure (unused).
1099  * @param peer Peer ID (tunnel remote peer).
1100  * @param value Peer info.
1101  *
1102  * @return #GNUNET_YES, to keep iterating.
1103  */
1104 static int
1105 show_peer_iterator (void *cls,
1106                     const struct GNUNET_PeerIdentity *peer,
1107                     void *value)
1108 {
1109   struct CadetPeer *p = value;
1110   struct CadetTunnel *t;
1111
1112   t = GCP_get_tunnel (p,
1113                       GNUNET_NO);
1114   if (NULL != t)
1115     GCT_debug (t,
1116                GNUNET_ERROR_TYPE_ERROR);
1117   LOG (GNUNET_ERROR_TYPE_ERROR, "\n");
1118   return GNUNET_YES;
1119 }
1120
1121
1122 /**
1123  * Handler for client's INFO_DUMP request.
1124  *
1125  * @param cls Identification of the client.
1126  * @param message The actual message.
1127  */
1128 static void
1129 handle_info_dump (void *cls,
1130                   const struct GNUNET_MessageHeader *message)
1131 {
1132   struct CadetClient *c = cls;
1133
1134   LOG (GNUNET_ERROR_TYPE_INFO,
1135        "Received dump info request from client %u\n",
1136        c->id);
1137
1138   LOG (GNUNET_ERROR_TYPE_ERROR,
1139        "*************************** DUMP START ***************************\n");
1140   for (struct CadetClient *ci = clients_head;
1141        NULL != ci;
1142        ci = ci->next)
1143   {
1144     LOG (GNUNET_ERROR_TYPE_ERROR,
1145          "Client %u (%p), handle: %p, ports: %u, channels: %u\n",
1146          ci->id,
1147          ci,
1148          ci->client,
1149          (NULL != c->ports)
1150          ? GNUNET_CONTAINER_multihashmap_size (ci->ports)
1151          : 0,
1152          GNUNET_CONTAINER_multihashmap32_size (ci->channels));
1153   }
1154   LOG (GNUNET_ERROR_TYPE_ERROR, "***************************\n");
1155   GCP_iterate_all (&show_peer_iterator,
1156                    NULL);
1157
1158   LOG (GNUNET_ERROR_TYPE_ERROR,
1159        "**************************** DUMP END ****************************\n");
1160
1161   GNUNET_SERVICE_client_continue (c->client);
1162 }
1163
1164
1165
1166 /**
1167  * Callback called when a client connects to the service.
1168  *
1169  * @param cls closure for the service
1170  * @param client the new client that connected to the service
1171  * @param mq the message queue used to send messages to the client
1172  * @return @a c
1173  */
1174 static void *
1175 client_connect_cb (void *cls,
1176                    struct GNUNET_SERVICE_Client *client,
1177                    struct GNUNET_MQ_Handle *mq)
1178 {
1179   struct CadetClient *c;
1180
1181   c = GNUNET_new (struct CadetClient);
1182   c->client = client;
1183   c->mq = mq;
1184   c->id = next_client_id++; /* overflow not important: just for debug */
1185   c->channels
1186     = GNUNET_CONTAINER_multihashmap32_create (32);
1187   GNUNET_CONTAINER_DLL_insert (clients_head,
1188                                clients_tail,
1189                                c);
1190   GNUNET_STATISTICS_update (stats,
1191                             "# clients",
1192                             +1,
1193                             GNUNET_NO);
1194   LOG (GNUNET_ERROR_TYPE_DEBUG,
1195        "%s connected\n",
1196        GSC_2s (c));
1197   return c;
1198 }
1199
1200
1201 /**
1202  * A channel was destroyed by the other peer. Tell our client.
1203  *
1204  * @param c client that lost a channel
1205  * @param ccn channel identification number for the client
1206  * @param ch the channel object
1207  */
1208 void
1209 GSC_handle_remote_channel_destroy (struct CadetClient *c,
1210                                    struct GNUNET_CADET_ClientChannelNumber ccn,
1211                                    struct CadetChannel *ch)
1212 {
1213   struct GNUNET_MQ_Envelope *env;
1214   struct GNUNET_CADET_LocalChannelDestroyMessage *tdm;
1215
1216   env = GNUNET_MQ_msg (tdm,
1217                        GNUNET_MESSAGE_TYPE_CADET_LOCAL_CHANNEL_DESTROY);
1218   tdm->ccn = ccn;
1219   GSC_send_to_client (c,
1220                       env);
1221   GNUNET_assert (GNUNET_YES ==
1222                  GNUNET_CONTAINER_multihashmap32_remove (c->channels,
1223                                                          ntohl (ccn.channel_of_client),
1224                                                          ch));
1225 }
1226
1227
1228 /**
1229  * A client that created a loose channel that was not bound to a port
1230  * disconnected, drop it from the #loose_channels list.
1231  *
1232  * @param h_port the hashed port the channel was trying to bind to
1233  * @param ch the channel that was lost
1234  */
1235 void
1236 GSC_drop_loose_channel (const struct GNUNET_HashCode *h_port,
1237                         struct CadetChannel *ch)
1238 {
1239   GNUNET_assert (GNUNET_YES ==
1240                  GNUNET_CONTAINER_multihashmap_remove (loose_channels,
1241                                                        h_port,
1242                                                        ch));
1243 }
1244
1245
1246 /**
1247  * Iterator for deleting each channel whose client endpoint disconnected.
1248  *
1249  * @param cls Closure (client that has disconnected).
1250  * @param key The local channel id in host byte order
1251  * @param value The value stored at the key (channel to destroy).
1252  * @return #GNUNET_OK, keep iterating.
1253  */
1254 static int
1255 channel_destroy_iterator (void *cls,
1256                           uint32_t key,
1257                           void *value)
1258 {
1259   struct CadetClient *c = cls;
1260   struct GNUNET_CADET_ClientChannelNumber ccn;
1261   struct CadetChannel *ch = value;
1262
1263   LOG (GNUNET_ERROR_TYPE_DEBUG,
1264        "Destroying %s, due to %s disconnecting.\n",
1265        GCCH_2s (ch),
1266        GSC_2s (c));
1267   ccn.channel_of_client = htonl (key);
1268   GCCH_channel_local_destroy (ch,
1269                               c,
1270                               ccn);
1271   GNUNET_assert (GNUNET_YES ==
1272                  GNUNET_CONTAINER_multihashmap32_remove (c->channels,
1273                                                          key,
1274                                                          ch));
1275   return GNUNET_OK;
1276 }
1277
1278
1279 /**
1280  * Remove client's ports from the global hashmap on disconnect.
1281  *
1282  * @param cls the `struct CadetClient`
1283  * @param port the port.
1284  * @param value the `struct OpenPort` to remove
1285  * @return #GNUNET_OK, keep iterating.
1286  */
1287 static int
1288 client_release_ports (void *cls,
1289                       const struct GNUNET_HashCode *port,
1290                       void *value)
1291 {
1292   struct CadetClient *c = cls;
1293   struct OpenPort *op = value;
1294
1295   GNUNET_assert (c == op->c);
1296   LOG (GNUNET_ERROR_TYPE_DEBUG,
1297        "Closing port %s due to %s disconnect.\n",
1298        GNUNET_h2s (port),
1299        GSC_2s (c));
1300   GNUNET_assert (GNUNET_YES ==
1301                  GNUNET_CONTAINER_multihashmap_remove (open_ports,
1302                                                        &op->h_port,
1303                                                        op));
1304   GNUNET_assert (GNUNET_YES ==
1305                  GNUNET_CONTAINER_multihashmap_remove (c->ports,
1306                                                        port,
1307                                                        op));
1308   GNUNET_free (op);
1309   return GNUNET_OK;
1310 }
1311
1312
1313 /**
1314  * Callback called when a client disconnected from the service
1315  *
1316  * @param cls closure for the service
1317  * @param client the client that disconnected
1318  * @param internal_cls should be equal to @a c
1319  */
1320 static void
1321 client_disconnect_cb (void *cls,
1322                       struct GNUNET_SERVICE_Client *client,
1323                       void *internal_cls)
1324 {
1325   struct CadetClient *c = internal_cls;
1326
1327   GNUNET_assert (c->client == client);
1328   LOG (GNUNET_ERROR_TYPE_DEBUG,
1329        "%s is disconnecting.\n",
1330        GSC_2s (c));
1331   if (NULL != c->channels)
1332   {
1333     GNUNET_CONTAINER_multihashmap32_iterate (c->channels,
1334                                              &channel_destroy_iterator,
1335                                              c);
1336     GNUNET_assert (0 == GNUNET_CONTAINER_multihashmap32_size (c->channels));
1337     GNUNET_CONTAINER_multihashmap32_destroy (c->channels);
1338   }
1339   if (NULL != c->ports)
1340   {
1341     GNUNET_CONTAINER_multihashmap_iterate (c->ports,
1342                                            &client_release_ports,
1343                                            c);
1344     GNUNET_CONTAINER_multihashmap_destroy (c->ports);
1345   }
1346   GNUNET_CONTAINER_DLL_remove (clients_head,
1347                                clients_tail,
1348                                c);
1349   GNUNET_STATISTICS_update (stats,
1350                             "# clients",
1351                             -1,
1352                             GNUNET_NO);
1353   GNUNET_free (c);
1354   if ( (NULL == clients_head) &&
1355        (GNUNET_YES == shutting_down) )
1356     shutdown_rest ();
1357 }
1358
1359
1360 /**
1361  * Setup CADET internals.
1362  *
1363  * @param cls closure
1364  * @param server the initialized server
1365  * @param c configuration to use
1366  */
1367 static void
1368 run (void *cls,
1369      const struct GNUNET_CONFIGURATION_Handle *c,
1370      struct GNUNET_SERVICE_Handle *service)
1371 {
1372   cfg = c;
1373   if (GNUNET_OK !=
1374       GNUNET_CONFIGURATION_get_value_number (c,
1375                                              "CADET",
1376                                              "RATCHET_MESSAGES",
1377                                              &ratchet_messages))
1378   {
1379     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1380                                "CADET",
1381                                "RATCHET_MESSAGES",
1382                                "needs to be a number");
1383     ratchet_messages = 64;
1384   }
1385   if (GNUNET_OK !=
1386       GNUNET_CONFIGURATION_get_value_time (c,
1387                                            "CADET",
1388                                            "RATCHET_TIME",
1389                                            &ratchet_time))
1390   {
1391     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1392                                "CADET",
1393                                "RATCHET_TIME",
1394                                "need delay value");
1395     ratchet_time = GNUNET_TIME_UNIT_HOURS;
1396   }
1397   if (GNUNET_OK !=
1398       GNUNET_CONFIGURATION_get_value_time (c,
1399                                            "CADET",
1400                                            "REFRESH_CONNECTION_TIME",
1401                                            &keepalive_period))
1402   {
1403     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1404                                "CADET",
1405                                "REFRESH_CONNECTION_TIME",
1406                                "need delay value");
1407     keepalive_period = GNUNET_TIME_UNIT_MINUTES;
1408   }
1409   if (GNUNET_OK !=
1410       GNUNET_CONFIGURATION_get_value_number (c,
1411                                              "CADET",
1412                                              "DROP_PERCENT",
1413                                              &drop_percent))
1414   {
1415     drop_percent = 0;
1416   }
1417   else
1418   {
1419     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1420     LOG (GNUNET_ERROR_TYPE_WARNING, "Cadet is running with DROP enabled.\n");
1421     LOG (GNUNET_ERROR_TYPE_WARNING, "This is NOT a good idea!\n");
1422     LOG (GNUNET_ERROR_TYPE_WARNING, "Remove DROP_PERCENT from config file.\n");
1423     LOG (GNUNET_ERROR_TYPE_WARNING, "**************************************\n");
1424   }
1425   my_private_key = GNUNET_CRYPTO_eddsa_key_create_from_configuration (c);
1426   if (NULL == my_private_key)
1427   {
1428     GNUNET_break (0);
1429     GNUNET_SCHEDULER_shutdown ();
1430     return;
1431   }
1432   GNUNET_CRYPTO_eddsa_key_get_public (my_private_key,
1433                                       &my_full_id.public_key);
1434   stats = GNUNET_STATISTICS_create ("cadet",
1435                                     c);
1436   GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
1437                                  NULL);
1438   ats_ch = GNUNET_ATS_connectivity_init (c);
1439   /* FIXME: optimize code to allow GNUNET_YES here! */
1440   open_ports = GNUNET_CONTAINER_multihashmap_create (16,
1441                                                      GNUNET_NO);
1442   loose_channels = GNUNET_CONTAINER_multihashmap_create (16,
1443                                                          GNUNET_NO);
1444   peers = GNUNET_CONTAINER_multipeermap_create (16,
1445                                                 GNUNET_YES);
1446   connections = GNUNET_CONTAINER_multishortmap_create (256,
1447                                                        GNUNET_YES);
1448   GCH_init (c);
1449   GCD_init (c);
1450   GCO_init (c);
1451   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1452               "CADET started for peer %s\n",
1453               GNUNET_i2s (&my_full_id));
1454
1455 }
1456
1457
1458 /**
1459  * Define "main" method using service macro.
1460  */
1461 GNUNET_SERVICE_MAIN
1462 ("cadet",
1463  GNUNET_SERVICE_OPTION_NONE,
1464  &run,
1465  &client_connect_cb,
1466  &client_disconnect_cb,
1467  NULL,
1468  GNUNET_MQ_hd_fixed_size (port_open,
1469                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_PORT_OPEN,
1470                           struct GNUNET_CADET_PortMessage,
1471                           NULL),
1472  GNUNET_MQ_hd_fixed_size (port_close,
1473                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_PORT_CLOSE,
1474                           struct GNUNET_CADET_PortMessage,
1475                           NULL),
1476  GNUNET_MQ_hd_fixed_size (channel_create,
1477                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_CHANNEL_CREATE,
1478                           struct GNUNET_CADET_LocalChannelCreateMessage,
1479                           NULL),
1480  GNUNET_MQ_hd_fixed_size (channel_destroy,
1481                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_CHANNEL_DESTROY,
1482                           struct GNUNET_CADET_LocalChannelDestroyMessage,
1483                           NULL),
1484  GNUNET_MQ_hd_var_size (local_data,
1485                         GNUNET_MESSAGE_TYPE_CADET_LOCAL_DATA,
1486                         struct GNUNET_CADET_LocalData,
1487                         NULL),
1488  GNUNET_MQ_hd_fixed_size (local_ack,
1489                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_ACK,
1490                           struct GNUNET_CADET_LocalAck,
1491                           NULL),
1492  GNUNET_MQ_hd_fixed_size (get_peers,
1493                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEERS,
1494                           struct GNUNET_MessageHeader,
1495                           NULL),
1496  GNUNET_MQ_hd_fixed_size (show_peer,
1497                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_PEER,
1498                           struct GNUNET_CADET_LocalInfo,
1499                           NULL),
1500  GNUNET_MQ_hd_fixed_size (info_tunnels,
1501                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNELS,
1502                           struct GNUNET_MessageHeader,
1503                           NULL),
1504  GNUNET_MQ_hd_fixed_size (info_tunnel,
1505                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNEL,
1506                           struct GNUNET_CADET_LocalInfo,
1507                           NULL),
1508  GNUNET_MQ_hd_fixed_size (info_dump,
1509                           GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_DUMP,
1510                           struct GNUNET_MessageHeader,
1511                           NULL),
1512  GNUNET_MQ_handler_end ());
1513
1514 /* end of gnunet-service-cadet-new.c */