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