- dozygen
[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 "transport.h"
41
42 /* globals */
43
44 /**
45  * Statistics handle.
46  */
47 struct GNUNET_STATISTICS_Handle *GST_stats;
48
49 /**
50  * Configuration handle.
51  */
52 const struct GNUNET_CONFIGURATION_Handle *GST_cfg;
53
54 /**
55  * Configuration handle.
56  */
57 struct GNUNET_PeerIdentity GST_my_identity;
58
59 /**
60  * Handle to peerinfo service.
61  */
62 struct GNUNET_PEERINFO_Handle *GST_peerinfo;
63
64 /**
65  * Our public key.
66  */
67 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded GST_my_public_key;
68
69 /**
70  * Our private key.
71  */
72 struct GNUNET_CRYPTO_RsaPrivateKey *GST_my_private_key;
73
74 /**
75  * ATS handle.
76  */
77 struct GNUNET_ATS_SchedulingHandle *GST_ats;
78
79 /**
80  * DEBUGGING connection counter
81  */
82 static int connections;
83
84
85 /**
86  * Transmit our HELLO message to the given (connected) neighbour.
87  *
88  * @param cls the 'HELLO' message
89  * @param target a connected neighbour
90  * @param ats performance information (unused)
91  * @param ats_count number of records in ats (unused)
92  * @param address the address
93  * @param bandwidth_in inbound quota in NBO
94  * @param bandwidth_out outbound quota in NBO
95  */
96 static void
97 transmit_our_hello (void *cls, const struct GNUNET_PeerIdentity *target,
98                     const struct GNUNET_ATS_Information *ats,
99                     uint32_t ats_count,
100                     const struct GNUNET_HELLO_Address *address,
101                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
102                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
103 {
104   const struct GNUNET_MessageHeader *hello = cls;
105
106   GST_neighbours_send (target, (const char *) hello, ntohs (hello->size),
107                        GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION, NULL, NULL);
108 }
109
110
111 /**
112  * My HELLO has changed. Tell everyone who should know.
113  *
114  * @param cls unused
115  * @param hello new HELLO
116  */
117 static void
118 process_hello_update (void *cls, const struct GNUNET_MessageHeader *hello)
119 {
120   GST_clients_broadcast (hello, GNUNET_NO);
121   GST_neighbours_iterate (&transmit_our_hello, (void *) hello);
122 }
123
124
125
126 /**
127  * We received some payload.  Prepare to pass it on to our clients.
128  *
129  * @param peer (claimed) identity of the other peer
130  * @param address the address
131  * @param session session used
132  * @param message the message to process
133  * @param ats performance information
134  * @param ats_count number of records in ats
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                  const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
143 {
144   struct GNUNET_TIME_Relative ret;
145   int do_forward;
146   struct InboundMessage *im;
147   size_t msg_size = ntohs (message->size);
148   size_t size =
149       sizeof (struct InboundMessage) + msg_size +
150       sizeof (struct GNUNET_ATS_Information) * (ats_count + 1);
151   char buf[size] GNUNET_ALIGN;
152   struct GNUNET_ATS_Information *ap;
153
154   ret = GNUNET_TIME_UNIT_ZERO;
155   do_forward = GNUNET_SYSERR;
156   ret = GST_neighbours_calculate_receive_delay (peer, msg_size, &do_forward);
157
158   if (!GST_neighbours_test_connected (peer))
159   {
160
161     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
162                 "Discarded %u bytes type %u payload from peer `%s'\n", msg_size,
163                 ntohs (message->type), GNUNET_i2s (peer));
164
165     GNUNET_STATISTICS_update (GST_stats,
166                               gettext_noop
167                               ("# bytes payload discarded due to not connected peer "),
168                               msg_size, GNUNET_NO);
169     return ret;
170   }
171
172   if (do_forward != GNUNET_YES)
173     return ret;
174   im = (struct InboundMessage *) buf;
175   im->header.size = htons (size);
176   im->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_RECV);
177   im->ats_count = htonl (ats_count + 1);
178   im->peer = *peer;
179   ap = (struct GNUNET_ATS_Information *) &im[1];
180   memcpy (ap, ats, ats_count * sizeof (struct GNUNET_ATS_Information));
181   ap[ats_count].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
182   ap[ats_count].value =
183       htonl ((uint32_t) GST_neighbour_get_latency (peer).rel_value);
184   memcpy (&ap[ats_count + 1], message, ntohs (message->size));
185
186   GNUNET_ATS_address_add (GST_ats, address, session, ap, ats_count + 1);
187   GNUNET_ATS_address_update (GST_ats, address, session, ap, ats_count + 1);
188   GST_clients_broadcast (&im->header, GNUNET_YES);
189
190   return ret;
191 }
192
193
194 /**
195  * Function called by the transport for each received message.
196  * This function should also be called with "NULL" for the
197  * message to signal that the other peer disconnected.
198  *
199  * @param cls closure, const char* with the name of the plugin we received the message from
200  * @param peer (claimed) identity of the other peer
201  * @param message the message, NULL if we only care about
202  *                learning about the delay until we should receive again -- FIXME!
203  * @param ats performance information
204  * @param ats_count number of records in ats
205  * @param session identifier used for this session (NULL for plugins
206  *                that do not offer bi-directional communication to the sender
207  *                using the same "connection")
208  * @param sender_address binary address of the sender (if we established the
209  *                connection or are otherwise sure of it; should be NULL
210  *                for inbound TCP/UDP connections since it it not clear
211  *                that we could establish ourselves a connection to that
212  *                IP address and get the same system)
213  * @param sender_address_len number of bytes in sender_address
214  * @return how long the plugin should wait until receiving more data
215  *         (plugins that do not support this, can ignore the return value)
216  */
217 static struct GNUNET_TIME_Relative
218 plugin_env_receive_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
219                              const struct GNUNET_MessageHeader *message,
220                              const struct GNUNET_ATS_Information *ats,
221                              uint32_t ats_count, struct Session *session,
222                              const char *sender_address,
223                              uint16_t sender_address_len)
224 {
225   const char *plugin_name = cls;
226   struct GNUNET_TIME_Relative ret;
227   struct GNUNET_HELLO_Address address;
228   uint16_t type;
229
230   address.peer = *peer;
231   address.address = sender_address;
232   address.address_length = sender_address_len;
233   address.transport_name = plugin_name;
234   ret = GNUNET_TIME_UNIT_ZERO;
235   if (NULL == message)
236     goto end;
237   type = ntohs (message->type);
238   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received Message with type %u from peer `%s'\n", type, GNUNET_i2s (peer));
239
240   GNUNET_STATISTICS_update (GST_stats,
241                         gettext_noop
242                         ("# bytes total received"),
243                             ntohs (message->size), GNUNET_NO);
244
245   switch (type)
246   {
247   case GNUNET_MESSAGE_TYPE_HELLO:
248     GST_validation_handle_hello (message);
249     return ret;
250   case GNUNET_MESSAGE_TYPE_TRANSPORT_PING:
251     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
252                 "Processing `%s' from `%s'\n", "PING",
253                 (sender_address !=
254                  NULL) ? GST_plugins_a2s (&address) : "<inbound>");
255     GST_validation_handle_ping (peer, message, &address, session);
256     break;
257   case GNUNET_MESSAGE_TYPE_TRANSPORT_PONG:
258     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
259                 "Processing `%s' from `%s'\n", "PONG",
260                 (sender_address !=
261                  NULL) ? GST_plugins_a2s (&address) : "<inbound>");
262     GST_validation_handle_pong (peer, message);
263     break;
264   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT:
265     GST_neighbours_handle_connect (message, peer, &address, session, ats,
266                                    ats_count);
267     break;
268   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT_ACK:
269     GST_neighbours_handle_connect_ack (message, peer, &address, session, ats,
270                                        ats_count);
271     break;
272   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_ACK:
273     GST_neighbours_handle_session_ack (message, peer, &address, session, ats,
274                                        ats_count);
275     break;
276   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT:
277     GST_neighbours_handle_disconnect_message (peer, message);
278     break;
279   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE:
280     GST_neighbours_keepalive (peer);
281     break;
282   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE_RESPONSE:
283     GST_neighbours_keepalive_response (peer, ats, ats_count);
284     break;
285   default:
286     /* should be payload */
287     GNUNET_STATISTICS_update (GST_stats,
288                               gettext_noop
289                               ("# bytes payload received"),
290                               ntohs (message->size), GNUNET_NO);
291     ret = process_payload (peer, &address, session, message, ats, ats_count);
292     break;
293   }
294 end:
295   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
296               "Allowing receive from peer %s to continue in %llu ms\n",
297               GNUNET_i2s (peer), (unsigned long long) ret.rel_value);
298   return ret;
299 }
300
301
302 /**
303  * Function that will be called for each address the transport
304  * is aware that it might be reachable under.  Update our HELLO.
305  *
306  * @param cls name of the plugin (const char*)
307  * @param add_remove should the address added (YES) or removed (NO) from the
308  *                   set of valid addresses?
309  * @param addr one of the addresses of the host
310  *        the specific address format depends on the transport
311  * @param addrlen length of the address
312  */
313 static void
314 plugin_env_address_change_notification (void *cls, int add_remove,
315                                         const void *addr, size_t addrlen)
316 {
317   const char *plugin_name = cls;
318   struct GNUNET_HELLO_Address address;
319
320   address.peer = GST_my_identity;
321   address.transport_name = plugin_name;
322   address.address = addr;
323   address.address_length = addrlen;
324   GST_hello_modify_addresses (add_remove, &address);
325 }
326
327
328 /**
329  * Function that will be called whenever the plugin internally
330  * cleans up a session pointer and hence the service needs to
331  * discard all of those sessions as well.  Plugins that do not
332  * use sessions can simply omit calling this function and always
333  * use NULL wherever a session pointer is needed.  This function
334  * should be called BEFORE a potential "TransmitContinuation"
335  * from the "TransmitFunction".
336  *
337  * @param cls closure
338  * @param peer which peer was the session for
339  * @param session which session is being destoyed
340  */
341 static void
342 plugin_env_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
343                         struct Session *session)
344 {
345   const char *transport_name = cls;
346   struct GNUNET_HELLO_Address address;
347
348   GNUNET_assert (strlen (transport_name) > 0);
349   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Session %p to peer `%s' ended \n",
350               session, GNUNET_i2s (peer));
351   if (NULL != session)
352     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
353                      "transport-ats",
354                      "Telling ATS to destroy session %p from peer %s\n",
355                      session, GNUNET_i2s (peer));
356   address.peer = *peer;
357   address.address = NULL;
358   address.address_length = 0;
359   address.transport_name = transport_name;
360   GST_neighbours_session_terminated (peer, session);
361
362   /* Tell ATS that session has ended */
363   GNUNET_ATS_address_destroyed (GST_ats, &address, session);
364 }
365
366
367 /**
368  * Function that will be called to figure if an address is an loopback,
369  * LAN, WAN etc. address
370  *
371  * @param cls closure
372  * @param addr binary address
373  * @param addrlen length of the address
374  * @return ATS Information containing the network type
375  */
376 static struct GNUNET_ATS_Information
377 plugin_env_address_to_type (void *cls,
378                             const struct sockaddr *addr,
379                             size_t addrlen)
380 {
381   struct GNUNET_ATS_Information ats;
382   ats.type = htonl (GNUNET_ATS_NETWORK_TYPE);
383   ats.value = htonl (GNUNET_ATS_NET_UNSPECIFIED);
384   if (GST_ats == NULL)
385   {
386     GNUNET_break (0);
387     return ats;
388   }
389   if (((addr->sa_family != AF_INET) && (addrlen != sizeof (struct sockaddr_in))) &&
390       ((addr->sa_family != AF_INET6) && (addrlen != sizeof (struct sockaddr_in6))) &&
391       (addr->sa_family != AF_UNIX))
392   {
393     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Malformed address with length %u `%s'\n",
394                 addrlen,
395                 GNUNET_a2s(addr, addrlen));
396     GNUNET_break (0);
397     return (const struct GNUNET_ATS_Information) ats;
398   }
399   return GNUNET_ATS_address_get_type(GST_ats, addr, addrlen);
400 }
401
402
403 /**
404  * Function called by ATS to notify the callee that the
405  * assigned bandwidth or address for a given peer was changed.  If the
406  * callback is called with address/bandwidth assignments of zero, the
407  * ATS disconnect function will still be called once the disconnect
408  * actually happened.
409  *
410  * @param cls closure
411  * @param address address to use (for peer given in address)
412  * @param session session to use (if available)
413  * @param bandwidth_out assigned outbound bandwidth for the connection, 0 to disconnect from peer
414  * @param bandwidth_in assigned inbound bandwidth for the connection, 0 to disconnect from peer
415  * @param ats ATS information
416  * @param ats_count number of ATS elements
417  */
418 static void
419 ats_request_address_change (void *cls,
420                             const struct GNUNET_HELLO_Address *address,
421                             struct Session *session,
422                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
423                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
424                             const struct GNUNET_ATS_Information *ats,
425                             uint32_t ats_count)
426 {
427   uint32_t bw_in = ntohl (bandwidth_in.value__);
428   uint32_t bw_out = ntohl (bandwidth_out.value__);
429
430   /* ATS tells me to disconnect from peer */
431   if ((bw_in == 0) && (bw_out == 0))
432   {
433     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
434                 "ATS tells me to disconnect from peer `%s'\n",
435                 GNUNET_i2s (&address->peer));
436     GST_neighbours_force_disconnect (&address->peer);
437     return;
438   }
439   GST_neighbours_switch_to_address (&address->peer, address, session, ats,
440                                          ats_count, bandwidth_in,
441                                          bandwidth_out);
442 }
443
444
445 /**
446  * Function called to notify transport users that another
447  * peer connected to us.
448  *
449  * @param cls closure
450  * @param peer the peer that connected
451  * @param ats performance data
452  * @param ats_count number of entries in ats
453  * @param bandwidth_in inbound bandwidth in NBO
454  * @param bandwidth_out outbound bandwidth in NBO
455  */
456 static void
457 neighbours_connect_notification (void *cls,
458                                  const struct GNUNET_PeerIdentity *peer,
459                                  const struct GNUNET_ATS_Information *ats,
460                                  uint32_t ats_count,
461                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
462                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
463 {
464   size_t len =
465       sizeof (struct ConnectInfoMessage) +
466       ats_count * sizeof (struct GNUNET_ATS_Information);
467   char buf[len] GNUNET_ALIGN;
468   struct ConnectInfoMessage *connect_msg = (struct ConnectInfoMessage *) buf;
469   struct GNUNET_ATS_Information *ap;
470
471   connections++;
472   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
473               "We are now connected to peer `%s' and %u peers in total\n",
474               GNUNET_i2s (peer), connections);
475
476   connect_msg->header.size = htons (sizeof (buf));
477   connect_msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
478   connect_msg->ats_count = htonl (ats_count);
479   connect_msg->id = *peer;
480   connect_msg->quota_in = bandwidth_in;
481   connect_msg->quota_out = bandwidth_out;
482   ap = (struct GNUNET_ATS_Information *) &connect_msg[1];
483   memcpy (ap, ats, ats_count * sizeof (struct GNUNET_ATS_Information));
484   GST_clients_broadcast (&connect_msg->header, GNUNET_NO);
485 }
486
487
488 /**
489  * Function called to notify transport users that another
490  * peer disconnected from us.
491  *
492  * @param cls closure
493  * @param peer the peer that disconnected
494  */
495 static void
496 neighbours_disconnect_notification (void *cls,
497                                     const struct GNUNET_PeerIdentity *peer)
498 {
499   struct DisconnectInfoMessage disconnect_msg;
500
501   connections--;
502   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
503               "Peer `%s' disconnected and we are connected to %u peers\n",
504               GNUNET_i2s (peer), connections);
505
506   disconnect_msg.header.size = htons (sizeof (struct DisconnectInfoMessage));
507   disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
508   disconnect_msg.reserved = htonl (0);
509   disconnect_msg.peer = *peer;
510   GST_clients_broadcast (&disconnect_msg.header, GNUNET_NO);
511 }
512
513
514 /**
515  * Function called to notify transport users that a neighbour peer changed its
516  * active address.
517  *
518  * @param cls closure
519  * @param peer peer this update is about (never NULL)
520  * @param address address, NULL on disconnect
521  */
522 static void
523 neighbours_address_notification (void *cls,
524                                  const struct GNUNET_PeerIdentity *peer,
525                                  const struct GNUNET_HELLO_Address *address)
526 {
527   GST_clients_broadcast_address_notification (peer, address);
528 }
529
530
531 /**
532  * Function called when the service shuts down.  Unloads our plugins
533  * and cancels pending validations.
534  *
535  * @param cls closure, unused
536  * @param tc task context (unused)
537  */
538 static void
539 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
540 {
541   GST_neighbours_stop ();
542   GST_validation_stop ();
543   GST_plugins_unload ();
544
545   GNUNET_ATS_scheduling_done (GST_ats);
546   GST_ats = NULL;
547   GST_clients_stop ();
548   GST_blacklist_stop ();
549   GST_hello_stop ();
550
551   if (GST_peerinfo != NULL)
552   {
553     GNUNET_PEERINFO_disconnect (GST_peerinfo);
554     GST_peerinfo = NULL;
555   }
556   if (GST_stats != NULL)
557   {
558     GNUNET_STATISTICS_destroy (GST_stats, GNUNET_NO);
559     GST_stats = NULL;
560   }
561   if (GST_my_private_key != NULL)
562   {
563     GNUNET_CRYPTO_rsa_key_free (GST_my_private_key);
564     GST_my_private_key = NULL;
565   }
566 }
567
568
569 /**
570  * Initiate transport service.
571  *
572  * @param cls closure
573  * @param server the initialized server
574  * @param c configuration to use
575  */
576 static void
577 run (void *cls, struct GNUNET_SERVER_Handle *server,
578      const struct GNUNET_CONFIGURATION_Handle *c)
579 {
580   char *keyfile;
581   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded tmp;
582   /* setup globals */
583   GST_cfg = c;
584   if (GNUNET_OK !=
585       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
586                                                &keyfile))
587   {
588     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
589                 _
590                 ("Transport service is lacking key configuration settings.  Exiting.\n"));
591     GNUNET_SCHEDULER_shutdown ();
592     return;
593   }
594   GST_my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
595   GNUNET_free (keyfile);
596   if (GST_my_private_key == NULL)
597   {
598     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
599                 _("Transport service could not access hostkey.  Exiting.\n"));
600     GNUNET_SCHEDULER_shutdown ();
601     return;
602   }
603   GST_stats = GNUNET_STATISTICS_create ("transport", c);
604   GST_peerinfo = GNUNET_PEERINFO_connect (c);
605   memset (&GST_my_public_key, '\0', sizeof (GST_my_public_key));
606   memset (&tmp, '\0', sizeof (tmp));
607   GNUNET_CRYPTO_rsa_key_get_public (GST_my_private_key, &GST_my_public_key);
608   GNUNET_CRYPTO_hash (&GST_my_public_key, sizeof (GST_my_public_key),
609                       &GST_my_identity.hashPubKey);
610
611   GNUNET_assert (NULL != GST_my_private_key);
612   GNUNET_assert (0 != memcmp (&GST_my_public_key, &tmp, sizeof (GST_my_public_key)));
613
614   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
615                                 NULL);
616   if (GST_peerinfo == NULL)
617   {
618     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
619                 _("Could not access PEERINFO service.  Exiting.\n"));
620     GNUNET_SCHEDULER_shutdown ();
621     return;
622   }
623
624   /* start subsystems */
625   GST_hello_start (&process_hello_update, NULL);
626   GNUNET_assert (NULL != GST_hello_get());
627   GST_blacklist_start (server);
628   GST_ats =
629       GNUNET_ATS_scheduling_init (GST_cfg, &ats_request_address_change, NULL);
630   GST_plugins_load (&plugin_env_receive_callback,
631                     &plugin_env_address_change_notification,
632                     &plugin_env_session_end,
633                     &plugin_env_address_to_type);
634   GST_neighbours_start (NULL,
635                         &neighbours_connect_notification,
636                         &neighbours_disconnect_notification,
637                         &neighbours_address_notification);
638   GST_clients_start (server);
639   GST_validation_start ();
640 }
641
642
643 /**
644  * The main function for the transport service.
645  *
646  * @param argc number of arguments from the command line
647  * @param argv command line arguments
648  * @return 0 ok, 1 on error
649  */
650 int
651 main (int argc, char *const *argv)
652 {
653   return (GNUNET_OK ==
654           GNUNET_SERVICE_run (argc, argv, "transport",
655                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
656 }
657
658 /* end of file gnunet-service-transport.c */