make new current
[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       /* TODO: 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
245   GNUNET_assert ((ats_count > 0) && (ats != NULL));
246
247   GNUNET_ATS_address_update (GST_ats, peer, GNUNET_TIME_absolute_get (),        /* valid at least until right now... */
248                              plugin_name, session, sender_address,
249                              sender_address_len, ats, ats_count);
250
251   return ret;
252 }
253
254
255 /**
256  * Function that will be called for each address the transport
257  * is aware that it might be reachable under.  Update our HELLO.
258  *
259  * @param cls name of the plugin (const char*)
260  * @param add_remove should the address added (YES) or removed (NO) from the
261  *                   set of valid addresses?
262  * @param addr one of the addresses of the host
263  *        the specific address format depends on the transport
264  * @param addrlen length of the address
265  */
266 static void
267 plugin_env_address_change_notification (void *cls, int add_remove,
268                                         const void *addr, size_t addrlen)
269 {
270   const char *plugin_name = cls;
271
272   GST_hello_modify_addresses (add_remove, plugin_name, addr, addrlen);
273 }
274
275
276 /**
277  * Function that will be called whenever the plugin internally
278  * cleans up a session pointer and hence the service needs to
279  * discard all of those sessions as well.  Plugins that do not
280  * use sessions can simply omit calling this function and always
281  * use NULL wherever a session pointer is needed.  This function
282  * should be called BEFORE a potential "TransmitContinuation"
283  * from the "TransmitFunction".
284  *
285  * @param cls closure
286  * @param peer which peer was the session for
287  * @param session which session is being destoyed
288  */
289 static void
290 plugin_env_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
291                         struct Session *session)
292 {
293   GST_neighbours_session_terminated (peer, session);
294 }
295
296
297 /**
298  * Function called by ATS to notify the callee that the
299  * assigned bandwidth or address for a given peer was changed.  If the
300  * callback is called with address/bandwidth assignments of zero, the
301  * ATS disconnect function will still be called once the disconnect
302  * actually happened.
303  *
304  * @param cls closure
305  * @param peer identity of the peer
306  * @param plugin_name name of the transport plugin, NULL to disconnect
307  * @param session session to use (if available)
308  * @param plugin_addr address to use (if available)
309  * @param plugin_addr_len number of bytes in addr
310  * @param bandwidth assigned outbound bandwidth for the connection
311  */
312 static void
313 ats_request_address_change (void *cls, const struct GNUNET_PeerIdentity *peer,
314                             const char *plugin_name, struct Session *session,
315                             const void *plugin_addr, size_t plugin_addr_len,
316                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth)
317 {
318   GST_neighbours_switch_to_address (peer, plugin_name, plugin_addr,
319                                     plugin_addr_len, session, NULL, 0);
320   GST_neighbours_set_incoming_quota (peer, bandwidth);
321 }
322
323
324 /**
325  * Function called to notify transport users that another
326  * peer connected to us.
327  *
328  * @param cls closure
329  * @param peer the peer that connected
330  * @param ats performance data
331  * @param ats_count number of entries in ats (excluding 0-termination)
332  */
333 static void
334 neighbours_connect_notification (void *cls,
335                                  const struct GNUNET_PeerIdentity *peer,
336                                  const struct GNUNET_TRANSPORT_ATS_Information
337                                  *ats, uint32_t ats_count)
338 {
339   char buf[sizeof (struct ConnectInfoMessage) +
340            ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information)];
341   struct ConnectInfoMessage *connect_msg = (struct ConnectInfoMessage *) buf;
342   struct GNUNET_TRANSPORT_ATS_Information *atsm = &connect_msg->ats;
343
344   connect_msg->header.size = htons (sizeof (buf));
345   connect_msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
346   connect_msg->ats_count = htonl (ats_count);
347   connect_msg->id = *peer;
348   memcpy (&connect_msg->ats, ats,
349           ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
350   atsm[ats_count].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
351   atsm[ats_count].value = htonl (0);
352   GST_clients_broadcast (&connect_msg->header, GNUNET_NO);
353 }
354
355
356 /**
357  * Function called to notify transport users that another
358  * peer disconnected from us.
359  *
360  * @param cls closure
361  * @param peer the peer that disconnected
362  */
363 static void
364 neighbours_disconnect_notification (void *cls,
365                                     const struct GNUNET_PeerIdentity *peer)
366 {
367   struct DisconnectInfoMessage disconnect_msg;
368
369   disconnect_msg.header.size = htons (sizeof (struct DisconnectInfoMessage));
370   disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
371   disconnect_msg.reserved = htonl (0);
372   disconnect_msg.peer = *peer;
373   GST_clients_broadcast (&disconnect_msg.header, GNUNET_NO);
374 }
375
376
377 /**
378  * Function called when the service shuts down.  Unloads our plugins
379  * and cancels pending validations.
380  *
381  * @param cls closure, unused
382  * @param tc task context (unused)
383  */
384 static void
385 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
386 {
387   GST_validation_stop ();
388   GST_plugins_unload ();
389   GST_neighbours_stop ();
390   GNUNET_ATS_shutdown (GST_ats);
391   GST_ats = NULL;
392   GST_clients_stop ();
393   GST_blacklist_stop ();
394   GST_hello_stop ();
395
396   if (GST_peerinfo != NULL)
397   {
398     GNUNET_PEERINFO_disconnect (GST_peerinfo);
399     GST_peerinfo = NULL;
400   }
401   if (GST_stats != NULL)
402   {
403     GNUNET_STATISTICS_destroy (GST_stats, GNUNET_NO);
404     GST_stats = NULL;
405   }
406   if (GST_my_private_key != NULL)
407   {
408     GNUNET_CRYPTO_rsa_key_free (GST_my_private_key);
409     GST_my_private_key = NULL;
410   }
411 }
412
413
414 /**
415  * Initiate transport service.
416  *
417  * @param cls closure
418  * @param server the initialized server
419  * @param c configuration to use
420  */
421 static void
422 run (void *cls, struct GNUNET_SERVER_Handle *server,
423      const struct GNUNET_CONFIGURATION_Handle *c)
424 {
425   char *keyfile;
426
427   /* setup globals */
428   GST_cfg = c;
429   if (GNUNET_OK !=
430       GNUNET_CONFIGURATION_get_value_filename (c, "GNUNETD", "HOSTKEY",
431                                                &keyfile))
432   {
433     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
434                 _
435                 ("Transport service is lacking key configuration settings.  Exiting.\n"));
436     GNUNET_SCHEDULER_shutdown ();
437     return;
438   }
439   GST_my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
440   GNUNET_free (keyfile);
441   if (GST_my_private_key == NULL)
442   {
443     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
444                 _("Transport service could not access hostkey.  Exiting.\n"));
445     GNUNET_SCHEDULER_shutdown ();
446     return;
447   }
448   GST_stats = GNUNET_STATISTICS_create ("transport", c);
449   GST_peerinfo = GNUNET_PEERINFO_connect (c);
450   GNUNET_CRYPTO_rsa_key_get_public (GST_my_private_key, &GST_my_public_key);
451   GNUNET_CRYPTO_hash (&GST_my_public_key, sizeof (GST_my_public_key),
452                       &GST_my_identity.hashPubKey);
453   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
454                                 NULL);
455   if (GST_peerinfo == NULL)
456   {
457     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
458                 _("Could not access PEERINFO service.  Exiting.\n"));
459     GNUNET_SCHEDULER_shutdown ();
460     return;
461   }
462
463   /* start subsystems */
464   GST_hello_start (&process_hello_update, NULL);
465   GST_blacklist_start (server);
466   GST_plugins_load (&plugin_env_receive_callback,
467                     &plugin_env_address_change_notification,
468                     &plugin_env_session_end);
469   GST_ats = GNUNET_ATS_init (GST_cfg, &ats_request_address_change, NULL);
470   GST_neighbours_start (NULL, &neighbours_connect_notification,
471                         &neighbours_disconnect_notification);
472   GST_clients_start (server);
473   GST_validation_start ();
474 }
475
476
477 /**
478  * The main function for the transport service.
479  *
480  * @param argc number of arguments from the command line
481  * @param argv command line arguments
482  * @return 0 ok, 1 on error
483  */
484 int
485 main (int argc, char *const *argv)
486 {
487   return (GNUNET_OK ==
488           GNUNET_SERVICE_run (argc, argv, "transport",
489                               GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
490 }
491
492 /* end of file gnunet-service-transport-new.c */