do latency computation - #1768
[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-new.c
23  * @brief
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_statistics_service.h"
29 #include "gnunet_transport_service.h"
30 #include "gnunet_peerinfo_service.h"
31 #include "gnunet_ats_service.h"
32 #include "gnunet-service-transport.h"
33 #include "gnunet-service-transport_blacklist.h"
34 #include "gnunet-service-transport_clients.h"
35 #include "gnunet-service-transport_hello.h"
36 #include "gnunet-service-transport_neighbours.h"
37 #include "gnunet-service-transport_plugins.h"
38 #include "gnunet-service-transport_validation.h"
39 #include "transport.h"
40
41 /* globals */
42
43 /**
44  * Statistics handle.
45  */
46 struct GNUNET_STATISTICS_Handle *GST_stats;
47
48 /**
49  * Configuration handle.
50  */
51 const struct GNUNET_CONFIGURATION_Handle *GST_cfg;
52
53 /**
54  * Configuration handle.
55  */
56 struct GNUNET_PeerIdentity GST_my_identity;
57
58 /**
59  * Handle to peerinfo service.
60  */
61 struct GNUNET_PEERINFO_Handle *GST_peerinfo;
62
63 /**
64  * Our public key.
65  */
66 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded GST_my_public_key;
67
68 /**
69  * Our private key.
70  */
71 struct GNUNET_CRYPTO_RsaPrivateKey *GST_my_private_key;
72
73 /**
74  * ATS handle.
75  */
76 struct GNUNET_ATS_Handle *GST_ats;
77
78
79 /**
80  * Transmit our HELLO message to the given (connected) neighbour.
81  *
82  * @param cls the 'HELLO' message
83  * @param target a connected neighbour
84  * @param ats performance information (unused)
85  * @param ats_count number of records in ats (unused)
86  */
87 static void
88 transmit_our_hello (void *cls, const struct GNUNET_PeerIdentity *target,
89                     const struct GNUNET_TRANSPORT_ATS_Information *ats,
90                     uint32_t ats_count)
91 {
92   const struct GNUNET_MessageHeader *hello = cls;
93
94   GST_neighbours_send (target, (const char *) hello, ntohs (hello->size),
95                        GST_HELLO_ADDRESS_EXPIRATION, NULL, NULL);
96 }
97
98
99 /**
100  * My HELLO has changed. Tell everyone who should know.
101  *
102  * @param cls unused
103  * @param hello new HELLO
104  */
105 static void
106 process_hello_update (void *cls, const struct GNUNET_MessageHeader *hello)
107 {
108   GST_clients_broadcast (hello, GNUNET_NO);
109   GST_neighbours_iterate (&transmit_our_hello, (void *) hello);
110 }
111
112
113 /**
114  * Try to initiate a connection to the given peer if the blacklist
115  * allowed it.
116  *
117  * @param cls closure (unused, NULL)
118  * @param peer identity of peer that was tested
119  * @param result GNUNET_OK if the connection is allowed,
120  *               GNUNET_NO if not
121  */
122 static void
123 try_connect_if_allowed (void *cls, const struct GNUNET_PeerIdentity *peer,
124                         int result)
125 {
126   if (GNUNET_OK != result)
127     return;                     /* not allowed */
128   GST_neighbours_try_connect (peer);
129 }
130
131
132 /**
133  * Function called by the transport for each received message.
134  * This function should also be called with "NULL" for the
135  * message to signal that the other peer disconnected.
136  *
137  * @param cls closure, const char* with the name of the plugin we received the message from
138  * @param peer (claimed) identity of the other peer
139  * @param message the message, NULL if we only care about
140  *                learning about the delay until we should receive again -- FIXME!
141  * @param ats performance information
142  * @param ats_count number of records in ats
143  * @param session identifier used for this session (NULL for plugins
144  *                that do not offer bi-directional communication to the sender
145  *                using the same "connection")
146  * @param sender_address binary address of the sender (if we established the
147  *                connection or are otherwise sure of it; should be NULL
148  *                for inbound TCP/UDP connections since it it not clear
149  *                that we could establish ourselves a connection to that
150  *                IP address and get the same system)
151  * @param sender_address_len number of bytes in sender_address
152  * @return how long the plugin should wait until receiving more data
153  *         (plugins that do not support this, can ignore the return value)
154  */
155 static struct GNUNET_TIME_Relative
156 plugin_env_receive_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
157                              const struct GNUNET_MessageHeader *message,
158                              const struct GNUNET_TRANSPORT_ATS_Information *ats,
159                              uint32_t ats_count, struct Session *session,
160                              const char *sender_address,
161                              uint16_t sender_address_len)
162 {
163   const char *plugin_name = cls;
164   int do_forward;
165   struct GNUNET_TIME_Relative ret;
166   uint16_t type;
167
168   ret = GNUNET_TIME_UNIT_ZERO;
169   if (NULL != message)
170   {
171     type = ntohs (message->type);
172     switch (type)
173     {
174     case GNUNET_MESSAGE_TYPE_HELLO:
175       GST_validation_handle_hello (message);
176       break;
177     case GNUNET_MESSAGE_TYPE_TRANSPORT_PING:
178 #if DEBUG_TRANSPORT
179       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
180                   "Processing `%s' from `%s'\n", "PING",
181                   (sender_address != NULL) ? GST_plugins_a2s (plugin_name,
182                                                               sender_address,
183                                                               sender_address_len)
184                   : "<inbound>");
185 #endif
186       GST_validation_handle_ping (peer, message, plugin_name, session,
187                                   sender_address, sender_address_len);
188       break;
189     case GNUNET_MESSAGE_TYPE_TRANSPORT_PONG:
190 #if DEBUG_TRANSPORT
191       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
192                   "Processing `%s' from `%s'\n", "PONG",
193                   (sender_address != NULL) ? GST_plugins_a2s (plugin_name,
194                                                               sender_address,
195                                                               sender_address_len)
196                   : "<inbound>");
197 #endif
198       GST_validation_handle_pong (peer, message);
199       break;
200     case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT:
201       (void) GST_blacklist_test_allowed (peer, NULL, &try_connect_if_allowed,
202                                          NULL);
203       /* TODO: if 'session != NULL', and timestamp more recent than the
204        * previous one, maybe notify ATS that this is now the preferred
205        * * way to communicate with this peer (other peer switched transport) */
206       break;
207     case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT:
208       /* FIXME: do some validation to prevent an attacker from sending
209        * a fake disconnect message... */          
210       GST_neighbours_force_disconnect (peer);
211       break;
212     case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE:
213       GST_neighbours_keepalive (peer);
214       break;
215     default:
216       /* should be payload */
217       do_forward = GNUNET_SYSERR;
218       ret =
219           GST_neighbours_calculate_receive_delay (peer,
220                                                   (message ==
221                                                    NULL) ? 0 :
222                                                   ntohs (message->size),
223                                                   &do_forward);
224       if (do_forward == GNUNET_YES)
225       {
226         struct InboundMessage *im;
227         size_t size = sizeof (struct InboundMessage) + ntohs (message->size);
228
229         im = GNUNET_malloc (size);
230         im->header.size = htons (size);
231         im->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_RECV);
232         im->ats_count = htonl (0);
233         memcpy (&(im->peer), peer, sizeof (struct GNUNET_PeerIdentity));
234         memcpy (&im[1], message, ntohs (message->size));
235
236         GST_clients_broadcast ((const struct GNUNET_MessageHeader *) im,
237                                GNUNET_YES);
238
239         GNUNET_free (im);
240       }
241       break;
242     }
243   }
244   GNUNET_assert ((ats_count > 0) && (ats != NULL));
245   /*
246      FIXME: this gives an address that might not have been validated to
247      ATS for 'selection', which is probably not what we want; this 
248      might be particularly wrong (as in, possibly hiding bugs with address
249      validation) as 'GNUNET_ATS_address_update' currently ignores
250      the expiration given.
251   */
252   GNUNET_ATS_address_update (GST_ats, peer, GNUNET_TIME_absolute_get (),        /* valid at least until right now... */
253                              plugin_name, session, sender_address,
254                              sender_address_len, ats, ats_count);
255   return ret;
256 }
257
258
259 /**
260  * Function that will be called for each address the transport
261  * is aware that it might be reachable under.  Update our HELLO.
262  *
263  * @param cls name of the plugin (const char*)
264  * @param add_remove should the address added (YES) or removed (NO) from the
265  *                   set of valid addresses?
266  * @param addr one of the addresses of the host
267  *        the specific address format depends on the transport
268  * @param addrlen length of the address
269  */
270 static void
271 plugin_env_address_change_notification (void *cls, int add_remove,
272                                         const void *addr, size_t addrlen)
273 {
274   const char *plugin_name = cls;
275
276   GST_hello_modify_addresses (add_remove, plugin_name, addr, addrlen);
277 }
278
279
280 /**
281  * Function that will be called whenever the plugin internally
282  * cleans up a session pointer and hence the service needs to
283  * discard all of those sessions as well.  Plugins that do not
284  * use sessions can simply omit calling this function and always
285  * use NULL wherever a session pointer is needed.  This function
286  * should be called BEFORE a potential "TransmitContinuation"
287  * from the "TransmitFunction".
288  *
289  * @param cls closure
290  * @param peer which peer was the session for
291  * @param session which session is being destoyed
292  */
293 static void
294 plugin_env_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
295                         struct Session *session)
296 {
297   GST_neighbours_session_terminated (peer, session);
298 }
299
300
301 /**
302  * Function called by ATS to notify the callee that the
303  * assigned bandwidth or address for a given peer was changed.  If the
304  * callback is called with address/bandwidth assignments of zero, the
305  * ATS disconnect function will still be called once the disconnect
306  * actually happened.
307  *
308  * @param cls closure
309  * @param peer identity of the peer
310  * @param plugin_name name of the transport plugin, NULL to disconnect
311  * @param session session to use (if available)
312  * @param plugin_addr address to use (if available)
313  * @param plugin_addr_len number of bytes in addr
314  * @param bandwidth assigned outbound bandwidth for the connection
315  */
316 static void
317 ats_request_address_change (void *cls, const struct GNUNET_PeerIdentity *peer,
318                             const char *plugin_name, struct Session *session,
319                             const void *plugin_addr, size_t plugin_addr_len,
320                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth)
321 {
322   GST_neighbours_switch_to_address (peer, plugin_name, plugin_addr,
323                                     plugin_addr_len, session, NULL, 0);
324   GST_neighbours_set_incoming_quota (peer, bandwidth);
325 }
326
327
328 /**
329  * Function called to notify transport users that another
330  * peer connected to us.
331  *
332  * @param cls closure
333  * @param peer the peer that connected
334  * @param ats performance data
335  * @param ats_count number of entries in ats (excluding 0-termination)
336  */
337 static void
338 neighbours_connect_notification (void *cls,
339                                  const struct GNUNET_PeerIdentity *peer,
340                                  const struct GNUNET_TRANSPORT_ATS_Information
341                                  *ats, uint32_t ats_count)
342 {
343   char buf[sizeof (struct ConnectInfoMessage) +
344            ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information)];
345   struct ConnectInfoMessage *connect_msg = (struct ConnectInfoMessage *) buf;
346   struct GNUNET_TRANSPORT_ATS_Information *atsm = &connect_msg->ats;
347
348   connect_msg->header.size = htons (sizeof (buf));
349   connect_msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
350   connect_msg->ats_count = htonl (ats_count);
351   connect_msg->id = *peer;
352   memcpy (&connect_msg->ats, ats,
353           ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
354   atsm[ats_count].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
355   atsm[ats_count].value = htonl (0);
356   GST_clients_broadcast (&connect_msg->header, GNUNET_NO);
357 }
358
359
360 /**
361  * Function called to notify transport users that another
362  * peer disconnected from us.
363  *
364  * @param cls closure
365  * @param peer the peer that disconnected
366  */
367 static void
368 neighbours_disconnect_notification (void *cls,
369                                     const struct GNUNET_PeerIdentity *peer)
370 {
371   struct DisconnectInfoMessage disconnect_msg;
372
373   disconnect_msg.header.size = htons (sizeof (struct DisconnectInfoMessage));
374   disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
375   disconnect_msg.reserved = htonl (0);
376   disconnect_msg.peer = *peer;
377   GST_clients_broadcast (&disconnect_msg.header, GNUNET_NO);
378 }
379
380
381 /**
382  * Function called when the service shuts down.  Unloads our plugins
383  * and cancels pending validations.
384  *
385  * @param cls closure, unused
386  * @param tc task context (unused)
387  */
388 static void
389 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
390 {
391   GST_validation_stop ();
392   GST_plugins_unload ();
393   GST_neighbours_stop ();
394   GNUNET_ATS_shutdown (GST_ats);
395   GST_ats = NULL;
396   GST_clients_stop ();
397   GST_blacklist_stop ();
398   GST_hello_stop ();
399
400   if (GST_peerinfo != NULL)
401   {
402     GNUNET_PEERINFO_disconnect (GST_peerinfo);
403     GST_peerinfo = NULL;
404   }
405   if (GST_stats != NULL)
406   {
407     GNUNET_STATISTICS_destroy (GST_stats, GNUNET_NO);
408     GST_stats = NULL;
409   }
410   if (GST_my_private_key != NULL)
411   {
412     GNUNET_CRYPTO_rsa_key_free (GST_my_private_key);
413     GST_my_private_key = NULL;
414   }
415 }
416
417
418 /**
419  * Initiate transport service.
420  *
421  * @param cls closure
422  * @param server the initialized server
423  * @param c configuration to use
424  */
425 static void
426 run (void *cls, struct GNUNET_SERVER_Handle *server,
427      const struct GNUNET_CONFIGURATION_Handle *c)
428 {
429   char *keyfile;
430
431   /* setup globals */
432   GST_cfg = c;
433   if (GNUNET_OK !=
434       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
435                                                &keyfile))
436   {
437     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
438                 _
439                 ("Transport service is lacking key configuration settings.  Exiting.\n"));
440     GNUNET_SCHEDULER_shutdown ();
441     return;
442   }
443   GST_my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
444   GNUNET_free (keyfile);
445   if (GST_my_private_key == NULL)
446   {
447     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
448                 _("Transport service could not access hostkey.  Exiting.\n"));
449     GNUNET_SCHEDULER_shutdown ();
450     return;
451   }
452   GST_stats = GNUNET_STATISTICS_create ("transport", c);
453   GST_peerinfo = GNUNET_PEERINFO_connect (c);
454   GNUNET_CRYPTO_rsa_key_get_public (GST_my_private_key, &GST_my_public_key);
455   GNUNET_CRYPTO_hash (&GST_my_public_key, sizeof (GST_my_public_key),
456                       &GST_my_identity.hashPubKey);
457   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
458                                 NULL);
459   if (GST_peerinfo == NULL)
460   {
461     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
462                 _("Could not access PEERINFO service.  Exiting.\n"));
463     GNUNET_SCHEDULER_shutdown ();
464     return;
465   }
466
467   /* start subsystems */
468   GST_hello_start (&process_hello_update, NULL);
469   GST_blacklist_start (server);
470   GST_plugins_load (&plugin_env_receive_callback,
471                     &plugin_env_address_change_notification,
472                     &plugin_env_session_end);
473   GST_ats = GNUNET_ATS_init (GST_cfg, &ats_request_address_change, NULL);
474   GST_neighbours_start (NULL, &neighbours_connect_notification,
475                         &neighbours_disconnect_notification);
476   GST_clients_start (server);
477   GST_validation_start ();
478 }
479
480
481 /**
482  * The main function for the transport service.
483  *
484  * @param argc number of arguments from the command line
485  * @param argv command line arguments
486  * @return 0 ok, 1 on error
487  */
488 int
489 main (int argc, char *const *argv)
490 {
491   return (GNUNET_OK ==
492           GNUNET_SERVICE_run (argc, argv, "transport",
493                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
494 }
495
496 /* end of file gnunet-service-transport-new.c */