3adf5b35d469571724da15435e73c66cff46c668
[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,
536            const struct GNUNET_PeerIdentity *peer,
537            const char *plugin,
538            const void *address,
539            uint16_t address_len,
540            struct Session *session,
541            const struct GNUNET_ATS_Information *ats,
542            uint32_t ats_count)
543 {
544         struct GNUNET_HELLO_Address *addr;
545         if (NULL == peer)
546         {
547                 GNUNET_break (0);
548                 return;
549         }
550         if (NULL == plugin)
551         {
552                 GNUNET_break (0);
553                 return;
554         }
555         if ((address_len != 0) && (NULL == address))
556         {
557                 GNUNET_break (0);
558                 return;
559         }
560         if (NULL == session)
561         {
562                 GNUNET_break (0);
563                 return;
564         }
565
566         addr = GNUNET_HELLO_address_allocate (peer, plugin, address, address_len);
567         if (0 != address_len)
568         {
569                 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
570                                 "Inbound session from plugin `%s' about new session %p from peer `%s' address `%s' does not have address length 0 but %u\n",
571                                 plugin, session, GNUNET_i2s (peer), GST_plugins_a2s(addr), address_len);
572         }
573         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
574                         "Notification from plugin `%s' about new session %p from peer `%s' address `%s'\n",
575                         plugin, session, GNUNET_i2s (peer), GST_plugins_a2s(addr));
576         GST_ats_add_address (addr, session);
577
578         if (0 < ats_count)
579                 GST_ats_update_metrics (peer, addr, session, ats, ats_count);
580         GNUNET_free (addr);
581 }
582
583 /**
584  * Function called by ATS to notify the callee that the
585  * assigned bandwidth or address for a given peer was changed.  If the
586  * callback is called with address/bandwidth assignments of zero, the
587  * ATS disconnect function will still be called once the disconnect
588  * actually happened.
589  *
590  * @param cls closure
591  * @param address address to use (for peer given in address)
592  * @param session session to use (if available)
593  * @param bandwidth_out assigned outbound bandwidth for the connection in NBO,
594  *      0 to disconnect from peer
595  * @param bandwidth_in assigned inbound bandwidth for the connection in NBO,
596  *      0 to disconnect from peer
597  * @param ats ATS information
598  * @param ats_count number of ATS elements
599  */
600 static void
601 ats_request_address_change (void *cls,
602                             const struct GNUNET_HELLO_Address *address,
603                             struct Session *session,
604                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
605                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
606                             const struct GNUNET_ATS_Information *ats,
607                             uint32_t ats_count)
608 {
609   uint32_t bw_in = ntohl (bandwidth_in.value__);
610   uint32_t bw_out = ntohl (bandwidth_out.value__);
611
612   /* ATS tells me to disconnect from peer */
613   if ((bw_in == 0) && (bw_out == 0))
614   {
615     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
616                 "ATS tells me to disconnect from peer `%s'\n",
617                 GNUNET_i2s (&address->peer));
618     GST_neighbours_force_disconnect (&address->peer);
619     return;
620   }
621   GST_neighbours_switch_to_address (&address->peer, address, session, ats,
622                                          ats_count, bandwidth_in,
623                                          bandwidth_out);
624 }
625
626
627 /**
628  * Function called to notify transport users that another
629  * peer connected to us.
630  *
631  * @param cls closure
632  * @param peer the peer that connected
633  * @param bandwidth_in inbound bandwidth in NBO
634  * @param bandwidth_out outbound bandwidth in NBO
635  */
636 static void
637 neighbours_connect_notification (void *cls,
638                                  const struct GNUNET_PeerIdentity *peer,
639                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
640                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
641 {
642   size_t len = sizeof (struct ConnectInfoMessage);
643   char buf[len] GNUNET_ALIGN;
644   struct ConnectInfoMessage *connect_msg = (struct ConnectInfoMessage *) buf;
645
646   connections++;
647   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
648               "We are now connected to peer `%s' and %u peers in total\n",
649               GNUNET_i2s (peer), connections);
650
651   connect_msg->header.size = htons (sizeof (buf));
652   connect_msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
653   connect_msg->id = *peer;
654   connect_msg->quota_in = bandwidth_in;
655   connect_msg->quota_out = bandwidth_out;
656   GST_clients_broadcast (&connect_msg->header, GNUNET_NO);
657 }
658
659
660 /**
661  * Function called to notify transport users that another
662  * peer disconnected from us.
663  *
664  * @param cls closure
665  * @param peer the peer that disconnected
666  */
667 static void
668 neighbours_disconnect_notification (void *cls,
669                                     const struct GNUNET_PeerIdentity *peer)
670 {
671   struct DisconnectInfoMessage disconnect_msg;
672
673   connections--;
674   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
675               "Peer `%s' disconnected and we are connected to %u peers\n",
676               GNUNET_i2s (peer), connections);
677
678   GST_manipulation_peer_disconnect (peer);
679   disconnect_msg.header.size = htons (sizeof (struct DisconnectInfoMessage));
680   disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
681   disconnect_msg.reserved = htonl (0);
682   disconnect_msg.peer = *peer;
683   GST_clients_broadcast (&disconnect_msg.header, GNUNET_NO);
684 }
685
686
687 /**
688  * Function called to notify transport users that a neighbour peer changed its
689  * active address.
690  *
691  * @param cls closure
692  * @param peer peer this update is about (never NULL)
693  * @param address address, NULL on disconnect
694  */
695 static void
696 neighbours_address_notification (void *cls,
697                                  const struct GNUNET_PeerIdentity *peer,
698                                  const struct GNUNET_HELLO_Address *address)
699 {
700   GST_clients_broadcast_address_notification (peer, address);
701 }
702
703
704 /**
705  * Function called when the service shuts down.  Unloads our plugins
706  * and cancels pending validations.
707  *
708  * @param cls closure, unused
709  * @param tc task context (unused)
710  */
711 static void
712 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
713 {
714   GST_neighbours_stop ();
715   GST_validation_stop ();
716   GST_plugins_unload ();
717
718   GNUNET_ATS_scheduling_done (GST_ats);
719   GST_ats = NULL;
720   GST_clients_stop ();
721   GST_blacklist_stop ();
722   GST_hello_stop ();
723   GST_manipulation_stop ();
724
725   if (NULL != GST_peerinfo)
726   {
727     GNUNET_PEERINFO_disconnect (GST_peerinfo);
728     GST_peerinfo = NULL;
729   }
730   if (NULL != GST_stats)
731   {
732     GNUNET_STATISTICS_destroy (GST_stats, GNUNET_NO);
733     GST_stats = NULL;
734   }
735   if (NULL != GST_my_private_key)
736   {
737     GNUNET_free (GST_my_private_key);
738     GST_my_private_key = NULL;
739   }
740   GST_server = NULL;
741 }
742
743
744 /**
745  * Initiate transport service.
746  *
747  * @param cls closure
748  * @param server the initialized server
749  * @param c configuration to use
750  */
751 static void
752 run (void *cls, struct GNUNET_SERVER_Handle *server,
753      const struct GNUNET_CONFIGURATION_Handle *c)
754 {
755   char *keyfile;
756   struct GNUNET_CRYPTO_EccPrivateKey *pk;
757   long long unsigned int max_fd_cfg;
758   int max_fd_rlimit;
759   int max_fd;
760   int friend_only;
761
762   /* setup globals */
763   GST_cfg = c;
764   if (GNUNET_OK !=
765       GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
766                                                &keyfile))
767   {
768     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
769                 _
770                 ("Transport service is lacking key configuration settings.  Exiting.\n"));
771     GNUNET_SCHEDULER_shutdown ();
772     return;
773   }
774   if (GNUNET_OK !=
775       GNUNET_CONFIGURATION_get_value_time (c, "transport", "HELLO_EXPIRATION",
776                                            &hello_expiration))
777   {
778     hello_expiration = GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION;
779   }
780   GST_server = server;
781   pk = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
782   GNUNET_free (keyfile);
783   GNUNET_assert (NULL != pk);
784   GST_my_private_key = pk;
785
786   GST_stats = GNUNET_STATISTICS_create ("transport", GST_cfg);
787   GST_peerinfo = GNUNET_PEERINFO_connect (GST_cfg);
788   GNUNET_CRYPTO_ecc_key_get_public_for_signature (GST_my_private_key,
789                                                   &GST_my_identity.public_key);
790   GNUNET_assert (NULL != GST_my_private_key);
791
792   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
793               "My identity is `%4s'\n", GNUNET_i2s (&GST_my_identity));
794
795   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
796                                 NULL);
797   if (NULL == GST_peerinfo)
798   {
799     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
800                 _("Could not access PEERINFO service.  Exiting.\n"));
801     GNUNET_SCHEDULER_shutdown ();
802     return;
803   }
804
805   max_fd_rlimit = 0;
806   max_fd_cfg = 0;
807 #if HAVE_GETRLIMIT
808   struct rlimit r_file;
809   if (0 == getrlimit (RLIMIT_NOFILE, &r_file))
810   {
811     max_fd_rlimit = r_file.rlim_cur;
812     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
813                 "Maximum number of open files was: %u/%u\n", r_file.rlim_cur,
814                 r_file.rlim_max);
815   }
816   max_fd_rlimit = (9 * max_fd_rlimit) / 10; /* Keep 10% for rest of transport */
817 #endif
818   GNUNET_CONFIGURATION_get_value_number (GST_cfg, "transport", "MAX_FD", &max_fd_cfg);
819
820   if (max_fd_cfg > max_fd_rlimit)
821         max_fd = max_fd_cfg;
822   else
823         max_fd = max_fd_rlimit;
824   if (max_fd < DEFAULT_MAX_FDS)
825         max_fd = DEFAULT_MAX_FDS;
826
827   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
828               "Limiting number of sockets to %u: validation %u, neighbors: %u\n",
829               max_fd, (max_fd / 3) , (max_fd / 3) * 2);
830
831   friend_only = GNUNET_CONFIGURATION_get_value_yesno(GST_cfg, "topology","FRIENDS-ONLY");
832   if (GNUNET_SYSERR == friend_only)
833         friend_only = GNUNET_NO; /* According to topology defaults */
834   /* start subsystems */
835   GST_hello_start (friend_only, &process_hello_update, NULL);
836   GNUNET_assert (NULL != GST_hello_get());
837   GST_blacklist_start (GST_server, GST_cfg, &GST_my_identity);
838   GST_ats =
839       GNUNET_ATS_scheduling_init (GST_cfg, &ats_request_address_change, NULL);
840   GST_manipulation_init (GST_cfg);
841   GST_plugins_load (&GST_manipulation_recv,
842                     &plugin_env_address_change_notification,
843                     &plugin_env_session_start,
844                     &plugin_env_session_end,
845                     &plugin_env_address_to_type,
846                     &plugin_env_update_metrics);
847   GST_neighbours_start (NULL,
848                         &neighbours_connect_notification,
849                         &neighbours_disconnect_notification,
850                         &neighbours_address_notification,
851                         (max_fd / 3) * 2);
852   GST_clients_start (GST_server);
853   GST_validation_start ((max_fd / 3));
854 }
855
856
857 /**
858  * The main function for the transport service.
859  *
860  * @param argc number of arguments from the command line
861  * @param argv command line arguments
862  * @return 0 ok, 1 on error
863  */
864 int
865 main (int argc, char *const *argv)
866 {
867   return (GNUNET_OK ==
868           GNUNET_SERVICE_run (argc, argv, "transport",
869                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
870 }
871
872 /* end of file gnunet-service-transport.c */