-switching (again) to named sockets, see #2887
[oweals/gnunet.git] / src / transport / gnunet-service-transport.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010,2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/gnunet-service-transport.c
23  * @brief
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_hello_lib.h"
29 #include "gnunet_statistics_service.h"
30 #include "gnunet_transport_service.h"
31 #include "gnunet_peerinfo_service.h"
32 #include "gnunet_ats_service.h"
33 #include "gnunet-service-transport.h"
34 #include "gnunet-service-transport_blacklist.h"
35 #include "gnunet-service-transport_clients.h"
36 #include "gnunet-service-transport_hello.h"
37 #include "gnunet-service-transport_neighbours.h"
38 #include "gnunet-service-transport_plugins.h"
39 #include "gnunet-service-transport_validation.h"
40 #include "gnunet-service-transport_manipulation.h"
41 #include "transport.h"
42
43 /* globals */
44
45 /**
46  * Statistics handle.
47  */
48 struct GNUNET_STATISTICS_Handle *GST_stats;
49
50 /**
51  * Configuration handle.
52  */
53 const struct GNUNET_CONFIGURATION_Handle *GST_cfg;
54
55 /**
56  * Configuration handle.
57  */
58 struct GNUNET_PeerIdentity GST_my_identity;
59
60 /**
61  * Handle to peerinfo service.
62  */
63 struct GNUNET_PEERINFO_Handle *GST_peerinfo;
64
65 /**
66  * Handle to our service's server.
67  */
68 static struct GNUNET_SERVER_Handle *GST_server;
69
70 /**
71  * Our private key.
72  */
73 struct GNUNET_CRYPTO_EccPrivateKey *GST_my_private_key;
74
75 /**
76  * ATS handle.
77  */
78 struct GNUNET_ATS_SchedulingHandle *GST_ats;
79
80 /**
81  * DEBUGGING connection counter
82  */
83 static int connections;
84
85 /**
86  * Hello address expiration
87  */
88 struct GNUNET_TIME_Relative hello_expiration;
89
90
91 /**
92  * Transmit our HELLO message to the given (connected) neighbour.
93  *
94  * @param cls the 'HELLO' message
95  * @param target a connected neighbour
96  * @param address the address
97  * @param bandwidth_in inbound quota in NBO
98  * @param bandwidth_out outbound quota in NBO
99  */
100 static void
101 transmit_our_hello (void *cls, const struct GNUNET_PeerIdentity *target,
102                     const struct GNUNET_HELLO_Address *address,
103                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
104                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
105 {
106   const struct GNUNET_MessageHeader *hello = cls;
107
108   GST_neighbours_send (target, (const char *) hello, ntohs (hello->size),
109                        hello_expiration, NULL, NULL);
110 }
111
112
113 /**
114  * My HELLO has changed. Tell everyone who should know.
115  *
116  * @param cls unused
117  * @param hello new HELLO
118  */
119 static void
120 process_hello_update (void *cls, const struct GNUNET_MessageHeader *hello)
121 {
122   GST_clients_broadcast (hello, GNUNET_NO);
123   GST_neighbours_iterate (&transmit_our_hello, (void *) hello);
124 }
125
126
127
128 /**
129  * We received some payload.  Prepare to pass it on to our clients.
130  *
131  * @param peer (claimed) identity of the other peer
132  * @param address the address
133  * @param session session used
134  * @param message the message to process
135  * @return how long the plugin should wait until receiving more data
136  */
137 static struct GNUNET_TIME_Relative
138 process_payload (const struct GNUNET_PeerIdentity *peer,
139                  const struct GNUNET_HELLO_Address *address,
140                  struct Session *session,
141                  const struct GNUNET_MessageHeader *message)
142 {
143   struct GNUNET_TIME_Relative ret;
144   int do_forward;
145   struct InboundMessage *im;
146   size_t msg_size = ntohs (message->size);
147   size_t size =
148       sizeof (struct InboundMessage) + msg_size;
149   char buf[size] GNUNET_ALIGN;
150
151   do_forward = GNUNET_SYSERR;
152   ret = GST_neighbours_calculate_receive_delay (peer, msg_size, &do_forward);
153
154   if (!GST_neighbours_test_connected (peer))
155   {
156
157     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
158                 "Discarded %u bytes type %u payload from peer `%s'\n", msg_size,
159                 ntohs (message->type), GNUNET_i2s (peer));
160
161     GNUNET_STATISTICS_update (GST_stats,
162                               gettext_noop
163                               ("# bytes payload discarded due to not connected peer "),
164                               msg_size, GNUNET_NO);
165     return ret;
166   }
167
168   GST_ats_add_address ((struct GNUNET_HELLO_Address *) address, session);
169
170   if (do_forward != GNUNET_YES)
171     return ret;
172   im = (struct InboundMessage *) buf;
173   im->header.size = htons (size);
174   im->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_RECV);
175   im->peer = *peer;
176   memcpy (&im[1], message, ntohs (message->size));
177
178   GST_clients_broadcast (&im->header, GNUNET_YES);
179
180   return ret;
181 }
182
183
184 /**
185  * Function called by the transport for each received message.
186  * This function should also be called with "NULL" for the
187  * message to signal that the other peer disconnected.
188  *
189  * @param cls closure, const char* with the name of the plugin we received the message from
190  * @param peer (claimed) identity of the other peer
191  * @param message the message, NULL if we only care about
192  *                learning about the delay until we should receive again -- FIXME!
193  * @param session identifier used for this session (NULL for plugins
194  *                that do not offer bi-directional communication to the sender
195  *                using the same "connection")
196  * @param sender_address binary address of the sender (if we established the
197  *                connection or are otherwise sure of it; should be NULL
198  *                for inbound TCP/UDP connections since it it not clear
199  *                that we could establish ourselves a connection to that
200  *                IP address and get the same system)
201  * @param sender_address_len number of bytes in sender_address
202  * @return how long the plugin should wait until receiving more data
203  *         (plugins that do not support this, can ignore the return value)
204  */
205 struct GNUNET_TIME_Relative
206 GST_receive_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
207                              const struct GNUNET_MessageHeader *message,
208                              struct Session *session,
209                              const char *sender_address,
210                              uint16_t sender_address_len)
211 {
212   const char *plugin_name = cls;
213   struct GNUNET_TIME_Relative ret;
214   struct GNUNET_HELLO_Address address;
215   uint16_t type;
216
217   address.peer = *peer;
218   address.address = sender_address;
219   address.address_length = sender_address_len;
220   address.transport_name = plugin_name;
221   ret = GNUNET_TIME_UNIT_ZERO;
222   if (NULL == message)
223     goto end;
224   type = ntohs (message->type);
225   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received Message with type %u from peer `%s'\n", type, GNUNET_i2s (peer));
226
227   GNUNET_STATISTICS_update (GST_stats,
228                         gettext_noop
229                         ("# bytes total received"),
230                             ntohs (message->size), GNUNET_NO);
231
232   switch (type)
233   {
234   case GNUNET_MESSAGE_TYPE_HELLO_LEGACY:
235     /* Legacy HELLO message, discard  */
236     return ret;
237   case GNUNET_MESSAGE_TYPE_HELLO:
238     GST_validation_handle_hello (message);
239     return ret;
240   case GNUNET_MESSAGE_TYPE_TRANSPORT_PING:
241     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
242                 "Processing `%s' from `%s'\n", "PING",
243                 (sender_address !=
244                  NULL) ? GST_plugins_a2s (&address) : TRANSPORT_SESSION_INBOUND_STRING);
245     GST_validation_handle_ping (peer, message, &address, session);
246     break;
247   case GNUNET_MESSAGE_TYPE_TRANSPORT_PONG:
248     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
249                 "Processing `%s' from `%s'\n", "PONG",
250                 (sender_address !=
251                  NULL) ? GST_plugins_a2s (&address) : TRANSPORT_SESSION_INBOUND_STRING);
252     GST_validation_handle_pong (peer, message);
253     break;
254   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT:
255     GST_neighbours_handle_connect (message, peer, &address, session);
256     break;
257   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT_ACK:
258     GST_neighbours_handle_connect_ack (message, peer, &address, session);
259     break;
260   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_ACK:
261     GST_neighbours_handle_session_ack (message, peer, &address, session);
262     break;
263   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT:
264     GST_neighbours_handle_disconnect_message (peer, message);
265     break;
266   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE:
267     GST_neighbours_keepalive (peer);
268     break;
269   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE_RESPONSE:
270     GST_neighbours_keepalive_response (peer);
271     break;
272   default:
273     /* should be payload */
274     GNUNET_STATISTICS_update (GST_stats,
275                               gettext_noop
276                               ("# bytes payload received"),
277                               ntohs (message->size), GNUNET_NO);
278     ret = process_payload (peer, &address, session, message);
279     break;
280   }
281 end:
282   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
283               "Allowing receive from peer %s to continue in %s\n",
284               GNUNET_i2s (peer),
285               GNUNET_STRINGS_relative_time_to_string (ret, GNUNET_YES));
286   return ret;
287 }
288
289
290 /**
291  * Function that will be called for each address the transport
292  * is aware that it might be reachable under.  Update our HELLO.
293  *
294  * @param cls name of the plugin (const char*)
295  * @param add_remove should the address added (YES) or removed (NO) from the
296  *                   set of valid addresses?
297  * @param addr one of the addresses of the host
298  *        the specific address format depends on the transport
299  * @param addrlen length of the address
300  * @param dest_plugin destination plugin to use this address with
301  */
302 static void
303 plugin_env_address_change_notification (void *cls, int add_remove,
304                                         const void *addr, size_t addrlen,
305                                         const char *dest_plugin)
306 {
307   struct GNUNET_HELLO_Address address;
308
309   address.peer = GST_my_identity;
310   address.transport_name = dest_plugin;
311   address.address = addr;
312   address.address_length = addrlen;
313   GST_hello_modify_addresses (add_remove, &address);
314 }
315
316
317 /**
318  * Function that will be called whenever the plugin internally
319  * cleans up a session pointer and hence the service needs to
320  * discard all of those sessions as well.  Plugins that do not
321  * use sessions can simply omit calling this function and always
322  * use NULL wherever a session pointer is needed.  This function
323  * should be called BEFORE a potential "TransmitContinuation"
324  * from the "TransmitFunction".
325  *
326  * @param cls closure
327  * @param peer which peer was the session for
328  * @param session which session is being destoyed
329  */
330 static void
331 plugin_env_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
332                         struct Session *session)
333 {
334   const char *transport_name = cls;
335   struct GNUNET_HELLO_Address address;
336
337   GNUNET_assert (strlen (transport_name) > 0);
338   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Session %p to peer `%s' ended \n",
339               session, GNUNET_i2s (peer));
340   if (NULL != session)
341     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
342                      "transport-ats",
343                      "Telling ATS to destroy session %p from peer %s\n",
344                      session, GNUNET_i2s (peer));
345   address.peer = *peer;
346   address.address = NULL;
347   address.address_length = 0;
348   address.transport_name = transport_name;
349   GST_neighbours_session_terminated (peer, session);
350
351   /* Tell ATS that session has ended */
352   GNUNET_ATS_address_destroyed (GST_ats, &address, session);
353 }
354
355
356 /**
357  * Function that will be called to figure if an address is an loopback,
358  * LAN, WAN etc. address
359  *
360  * @param cls closure
361  * @param addr binary address
362  * @param addrlen length of the address
363  * @return ATS Information containing the network type
364  */
365 static struct GNUNET_ATS_Information
366 plugin_env_address_to_type (void *cls,
367                             const struct sockaddr *addr,
368                             size_t addrlen)
369 {
370   struct GNUNET_ATS_Information ats;
371   ats.type = htonl (GNUNET_ATS_NETWORK_TYPE);
372   ats.value = htonl (GNUNET_ATS_NET_UNSPECIFIED);
373   if (GST_ats == NULL)
374   {
375     GNUNET_break (0);
376     return ats;
377   }
378   if (((addr->sa_family != AF_INET) && (addrlen != sizeof (struct sockaddr_in))) &&
379       ((addr->sa_family != AF_INET6) && (addrlen != sizeof (struct sockaddr_in6))) &&
380       (addr->sa_family != AF_UNIX))
381   {
382     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Malformed address with length %u `%s'\n",
383                 addrlen,
384                 GNUNET_a2s(addr, addrlen));
385     GNUNET_break (0);
386     return ats;
387   }
388   return GNUNET_ATS_address_get_type(GST_ats, addr, addrlen);
389 }
390
391
392 /**
393  * Notify ATS about the new address including the network this address is
394  * located in.
395  *
396  * @param address the address
397  * @param session the session
398  */
399 void
400 GST_ats_add_address (const struct GNUNET_HELLO_Address *address,
401                                                                                  struct Session *session)
402 {
403   struct GNUNET_TRANSPORT_PluginFunctions *papi;
404         struct GNUNET_ATS_Information ats;
405         uint32_t net;
406
407   /* valid new address, let ATS know! */
408   if (NULL == address->transport_name)
409   {
410         GNUNET_break (0);
411         return;
412   }
413   if (NULL == (papi = GST_plugins_find (address->transport_name)))
414   {
415     /* we don't have the plugin for this address */
416         GNUNET_break (0);
417         return;
418   }
419
420   if (GNUNET_YES == GNUNET_ATS_session_known (GST_ats, address, session))
421         return;
422
423         net = papi->get_network (NULL, (void *) session);
424   if (GNUNET_ATS_NET_UNSPECIFIED == net)
425   {
426     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
427                                                 _("Could not obtain a valid network for `%s' %s\n"),
428                 GNUNET_i2s (&address->peer), GST_plugins_a2s (address));
429         GNUNET_break (0);
430   }
431         ats.type = htonl (GNUNET_ATS_NETWORK_TYPE);
432         ats.value = htonl(net);
433         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
434                         "Notifying ATS about peer `%s''s new address `%s' session %p in network %s\n",
435                         GNUNET_i2s (&address->peer),
436                         (0 == address->address_length) ? "<inbound>" : GST_plugins_a2s (address),
437                         session,
438                         GNUNET_ATS_print_network_type(net));
439         GNUNET_ATS_address_add (GST_ats,
440                         address, session, &ats, 1);
441 }
442
443
444 /**
445  * Notify ATS about property changes to an address
446  *
447  * @param peer the peer
448  * @param address the address
449  * @param session the session
450  * @param ats performance information
451  * @param ats_count number of elements in ats
452  */
453 void
454 GST_ats_update_metrics (const struct GNUNET_PeerIdentity *peer,
455                         const struct GNUNET_HELLO_Address *address,
456                         struct Session *session,
457                         const struct GNUNET_ATS_Information *ats,
458                         uint32_t ats_count)
459 {
460         struct GNUNET_ATS_Information *ats_new;
461
462   if (GNUNET_NO == GNUNET_ATS_session_known (GST_ats, address, session))
463         return;
464
465         /* Call to manipulation to manipulate ATS information */
466         ats_new = GST_manipulation_manipulate_metrics (peer, address, session, ats, ats_count);
467         if (NULL == ats_new)
468         {
469                         GNUNET_break (0);
470                         return;
471         }
472   if (GNUNET_NO == GNUNET_ATS_address_update (GST_ats, address, session, ats_new, ats_count))
473   {
474         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
475                         _("Address or session unknown: failed to update properties for peer `%s' plugin `%s' address `%s' session %p\n"),
476                         GNUNET_i2s (peer), address->transport_name, GST_plugins_a2s (address), session);
477   }
478   GNUNET_free (ats_new);
479 }
480
481
482 /**
483  * Function that will be called to figure if an address is an loopback,
484  * LAN, WAN etc. address
485  *
486  * @param cls closure
487  * @param peer the peer
488  * @param address binary address
489  * @param address_len length of the address
490  * @param session the session
491  * @param ats the ats information to update
492  * @param ats_count the number of ats elements
493  */
494 static void
495 plugin_env_update_metrics (void *cls,
496                            const struct GNUNET_PeerIdentity *peer,
497                            const void *address,
498                            uint16_t address_len,
499                            struct Session *session,
500                            const struct GNUNET_ATS_Information *ats,
501                            uint32_t ats_count)
502 {
503   struct GNUNET_HELLO_Address haddress;
504   const char *plugin_name = cls;
505
506         if ((NULL == ats) || (0 == ats_count))
507                 return;
508         GNUNET_assert (NULL != GST_ats);
509
510
511         haddress.peer = *peer;
512         haddress.address = address;
513   haddress.address_length = address_len;
514   haddress.transport_name = plugin_name;
515
516         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Updating metrics for peer `%s' address %s session %p\n",
517                         GNUNET_i2s (peer), GST_plugins_a2s(&haddress), session);
518   GST_ats_update_metrics (peer, &haddress, session, ats, ats_count);
519 }
520
521 /**
522  * Plugin tells transport service about a new (inbound) session
523  *
524  * @param cls unused
525  * @param peer the peer
526  * @param plugin plugin name
527  * @param address address
528  * @param address_len address length
529  * @param session the new session
530  * @param ats ats information
531  * @param ats_count number of ats information
532  */
533
534 static void
535 plugin_env_session_start (void *cls, const struct GNUNET_PeerIdentity *peer,
536     const char *plugin, const void *address, uint16_t address_len,
537     struct Session *session, const struct GNUNET_ATS_Information *ats,
538     uint32_t ats_count)
539 {
540   struct GNUNET_HELLO_Address *addr;
541   if (NULL == peer)
542   {
543     GNUNET_break(0);
544     return;
545   }
546   if (NULL == plugin)
547   {
548     GNUNET_break(0);
549     return;
550   }
551   if (NULL == session)
552   {
553     GNUNET_break(0);
554     return;
555   }
556
557   addr = GNUNET_HELLO_address_allocate (peer, plugin, address, address_len);
558   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
559       "Notification from plugin `%s' about new session %p from peer `%s' address `%s'\n",
560       plugin, session, GNUNET_i2s (peer), GST_plugins_a2s (addr));
561   GST_ats_add_address (addr, session);
562
563   if (0 < ats_count)
564     GST_ats_update_metrics (peer, addr, session, ats, ats_count);
565   GNUNET_free(addr);
566 }
567
568 /**
569  * Function called by ATS to notify the callee that the
570  * assigned bandwidth or address for a given peer was changed.  If the
571  * callback is called with address/bandwidth assignments of zero, the
572  * ATS disconnect function will still be called once the disconnect
573  * actually happened.
574  *
575  * @param cls closure
576  * @param address address to use (for peer given in address)
577  * @param session session to use (if available)
578  * @param bandwidth_out assigned outbound bandwidth for the connection in NBO,
579  *      0 to disconnect from peer
580  * @param bandwidth_in assigned inbound bandwidth for the connection in NBO,
581  *      0 to disconnect from peer
582  * @param ats ATS information
583  * @param ats_count number of ATS elements
584  */
585 static void
586 ats_request_address_change (void *cls,
587                             const struct GNUNET_HELLO_Address *address,
588                             struct Session *session,
589                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
590                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
591                             const struct GNUNET_ATS_Information *ats,
592                             uint32_t ats_count)
593 {
594   uint32_t bw_in = ntohl (bandwidth_in.value__);
595   uint32_t bw_out = ntohl (bandwidth_out.value__);
596
597   /* ATS tells me to disconnect from peer */
598   if ((bw_in == 0) && (bw_out == 0))
599   {
600     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
601                 "ATS tells me to disconnect from peer `%s'\n",
602                 GNUNET_i2s (&address->peer));
603     GST_neighbours_force_disconnect (&address->peer);
604     return;
605   }
606   GST_neighbours_switch_to_address (&address->peer, address, session, ats,
607                                          ats_count, bandwidth_in,
608                                          bandwidth_out);
609 }
610
611
612 /**
613  * Function called to notify transport users that another
614  * peer connected to us.
615  *
616  * @param cls closure
617  * @param peer the peer that connected
618  * @param bandwidth_in inbound bandwidth in NBO
619  * @param bandwidth_out outbound bandwidth in NBO
620  */
621 static void
622 neighbours_connect_notification (void *cls,
623                                  const struct GNUNET_PeerIdentity *peer,
624                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
625                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
626 {
627   size_t len = sizeof (struct ConnectInfoMessage);
628   char buf[len] GNUNET_ALIGN;
629   struct ConnectInfoMessage *connect_msg = (struct ConnectInfoMessage *) buf;
630
631   connections++;
632   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
633               "We are now connected to peer `%s' and %u peers in total\n",
634               GNUNET_i2s (peer), connections);
635
636   connect_msg->header.size = htons (sizeof (buf));
637   connect_msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
638   connect_msg->id = *peer;
639   connect_msg->quota_in = bandwidth_in;
640   connect_msg->quota_out = bandwidth_out;
641   GST_clients_broadcast (&connect_msg->header, GNUNET_NO);
642 }
643
644
645 /**
646  * Function called to notify transport users that another
647  * peer disconnected from us.
648  *
649  * @param cls closure
650  * @param peer the peer that disconnected
651  */
652 static void
653 neighbours_disconnect_notification (void *cls,
654                                     const struct GNUNET_PeerIdentity *peer)
655 {
656   struct DisconnectInfoMessage disconnect_msg;
657
658   connections--;
659   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
660               "Peer `%s' disconnected and we are connected to %u peers\n",
661               GNUNET_i2s (peer), connections);
662
663   GST_manipulation_peer_disconnect (peer);
664   disconnect_msg.header.size = htons (sizeof (struct DisconnectInfoMessage));
665   disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
666   disconnect_msg.reserved = htonl (0);
667   disconnect_msg.peer = *peer;
668   GST_clients_broadcast (&disconnect_msg.header, GNUNET_NO);
669 }
670
671
672 /**
673  * Function called to notify transport users that a neighbour peer changed its
674  * active address.
675  *
676  * @param cls closure
677  * @param peer peer this update is about (never NULL)
678  * @param address address, NULL on disconnect
679  */
680 static void
681 neighbours_address_notification (void *cls,
682                                  const struct GNUNET_PeerIdentity *peer,
683                                  const struct GNUNET_HELLO_Address *address)
684 {
685   GST_clients_broadcast_address_notification (peer, address);
686 }
687
688
689 /**
690  * Function called when the service shuts down.  Unloads our plugins
691  * and cancels pending validations.
692  *
693  * @param cls closure, unused
694  * @param tc task context (unused)
695  */
696 static void
697 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
698 {
699   GST_neighbours_stop ();
700   GST_validation_stop ();
701   GST_plugins_unload ();
702
703   GNUNET_ATS_scheduling_done (GST_ats);
704   GST_ats = NULL;
705   GST_clients_stop ();
706   GST_blacklist_stop ();
707   GST_hello_stop ();
708   GST_manipulation_stop ();
709
710   if (NULL != GST_peerinfo)
711   {
712     GNUNET_PEERINFO_disconnect (GST_peerinfo);
713     GST_peerinfo = NULL;
714   }
715   if (NULL != GST_stats)
716   {
717     GNUNET_STATISTICS_destroy (GST_stats, GNUNET_NO);
718     GST_stats = NULL;
719   }
720   if (NULL != GST_my_private_key)
721   {
722     GNUNET_free (GST_my_private_key);
723     GST_my_private_key = NULL;
724   }
725   GST_server = NULL;
726 }
727
728
729 /**
730  * Initiate transport service.
731  *
732  * @param cls closure
733  * @param server the initialized server
734  * @param c configuration to use
735  */
736 static void
737 run (void *cls, struct GNUNET_SERVER_Handle *server,
738      const struct GNUNET_CONFIGURATION_Handle *c)
739 {
740   char *keyfile;
741   struct GNUNET_CRYPTO_EccPrivateKey *pk;
742   long long unsigned int max_fd_cfg;
743   int max_fd_rlimit;
744   int max_fd;
745   int friend_only;
746
747   /* setup globals */
748   GST_cfg = c;
749   if (GNUNET_OK !=
750       GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
751                                                &keyfile))
752   {
753     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
754                 _
755                 ("Transport service is lacking key configuration settings.  Exiting.\n"));
756     GNUNET_SCHEDULER_shutdown ();
757     return;
758   }
759   if (GNUNET_OK !=
760       GNUNET_CONFIGURATION_get_value_time (c, "transport", "HELLO_EXPIRATION",
761                                            &hello_expiration))
762   {
763     hello_expiration = GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION;
764   }
765   GST_server = server;
766   pk = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
767   GNUNET_free (keyfile);
768   GNUNET_assert (NULL != pk);
769   GST_my_private_key = pk;
770
771   GST_stats = GNUNET_STATISTICS_create ("transport", GST_cfg);
772   GST_peerinfo = GNUNET_PEERINFO_connect (GST_cfg);
773   GNUNET_CRYPTO_ecc_key_get_public_for_signature (GST_my_private_key,
774                                                   &GST_my_identity.public_key);
775   GNUNET_assert (NULL != GST_my_private_key);
776
777   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
778               "My identity is `%4s'\n", GNUNET_i2s (&GST_my_identity));
779
780   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
781                                 NULL);
782   if (NULL == GST_peerinfo)
783   {
784     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
785                 _("Could not access PEERINFO service.  Exiting.\n"));
786     GNUNET_SCHEDULER_shutdown ();
787     return;
788   }
789
790   max_fd_rlimit = 0;
791   max_fd_cfg = 0;
792 #if HAVE_GETRLIMIT
793   struct rlimit r_file;
794   if (0 == getrlimit (RLIMIT_NOFILE, &r_file))
795   {
796     max_fd_rlimit = r_file.rlim_cur;
797     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
798                 "Maximum number of open files was: %u/%u\n", r_file.rlim_cur,
799                 r_file.rlim_max);
800   }
801   max_fd_rlimit = (9 * max_fd_rlimit) / 10; /* Keep 10% for rest of transport */
802 #endif
803   GNUNET_CONFIGURATION_get_value_number (GST_cfg, "transport", "MAX_FD", &max_fd_cfg);
804
805   if (max_fd_cfg > max_fd_rlimit)
806         max_fd = max_fd_cfg;
807   else
808         max_fd = max_fd_rlimit;
809   if (max_fd < DEFAULT_MAX_FDS)
810         max_fd = DEFAULT_MAX_FDS;
811
812   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
813               "Limiting number of sockets to %u: validation %u, neighbors: %u\n",
814               max_fd, (max_fd / 3) , (max_fd / 3) * 2);
815
816   friend_only = GNUNET_CONFIGURATION_get_value_yesno(GST_cfg, "topology","FRIENDS-ONLY");
817   if (GNUNET_SYSERR == friend_only)
818         friend_only = GNUNET_NO; /* According to topology defaults */
819   /* start subsystems */
820   GST_hello_start (friend_only, &process_hello_update, NULL);
821   GNUNET_assert (NULL != GST_hello_get());
822   GST_blacklist_start (GST_server, GST_cfg, &GST_my_identity);
823   GST_ats =
824       GNUNET_ATS_scheduling_init (GST_cfg, &ats_request_address_change, NULL);
825   GST_manipulation_init (GST_cfg);
826   GST_plugins_load (&GST_manipulation_recv,
827                     &plugin_env_address_change_notification,
828                     &plugin_env_session_start,
829                     &plugin_env_session_end,
830                     &plugin_env_address_to_type,
831                     &plugin_env_update_metrics);
832   GST_neighbours_start (NULL,
833                         &neighbours_connect_notification,
834                         &neighbours_disconnect_notification,
835                         &neighbours_address_notification,
836                         (max_fd / 3) * 2);
837   GST_clients_start (GST_server);
838   GST_validation_start ((max_fd / 3));
839 }
840
841
842 /**
843  * The main function for the transport service.
844  *
845  * @param argc number of arguments from the command line
846  * @param argv command line arguments
847  * @return 0 ok, 1 on error
848  */
849 int
850 main (int argc, char *const *argv)
851 {
852   return (GNUNET_OK ==
853           GNUNET_SERVICE_run (argc, argv, "transport",
854                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
855 }
856
857 /* end of file gnunet-service-transport.c */