-fix use of possibly wrong or uninitialized session
[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 /**
44  * Information we need for an asynchronous session kill.
45  */
46 struct SessionKiller
47 {
48   /**
49    * Kept in a DLL.
50    */
51   struct SessionKiller *next;
52
53   /**
54    * Kept in a DLL.
55    */
56   struct SessionKiller *prev;
57
58   /**
59    * Session to kill.
60    */
61   struct Session *session;
62
63   /**
64    * Plugin for the session.
65    */
66   struct GNUNET_TRANSPORT_PluginFunctions *plugin;
67
68   /**
69    * The kill task.
70    */
71   GNUNET_SCHEDULER_TaskIdentifier task;
72 };
73
74 struct BlacklistCheckContext
75 {
76   struct BlacklistCheckContext *prev;
77   struct BlacklistCheckContext *next;
78
79
80   struct GST_BlacklistCheck *blc;
81
82   struct GNUNET_HELLO_Address *address;
83   struct Session *session;
84   struct GNUNET_MessageHeader *msg;
85   struct GNUNET_ATS_Information *ats;
86   uint32_t ats_count;
87 };
88
89 /* globals */
90
91 /**
92  * Statistics handle.
93  */
94 struct GNUNET_STATISTICS_Handle *GST_stats;
95
96 /**
97  * Configuration handle.
98  */
99 const struct GNUNET_CONFIGURATION_Handle *GST_cfg;
100
101 /**
102  * Configuration handle.
103  */
104 struct GNUNET_PeerIdentity GST_my_identity;
105
106 /**
107  * Handle to peerinfo service.
108  */
109 struct GNUNET_PEERINFO_Handle *GST_peerinfo;
110
111 /**
112  * Handle to our service's server.
113  */
114 static struct GNUNET_SERVER_Handle *GST_server;
115
116 /**
117  * Our private key.
118  */
119 struct GNUNET_CRYPTO_EddsaPrivateKey *GST_my_private_key;
120
121 /**
122  * ATS handle.
123  */
124 struct GNUNET_ATS_SchedulingHandle *GST_ats;
125
126 /**
127  * Hello address expiration
128  */
129 struct GNUNET_TIME_Relative hello_expiration;
130
131 /**
132  * DEBUGGING connection counter
133  */
134 static int connections;
135
136 /**
137  * Head of DLL of asynchronous tasks to kill sessions.
138  */
139 static struct SessionKiller *sk_head;
140
141 /**
142  * Tail of DLL of asynchronous tasks to kill sessions.
143  */
144 static struct SessionKiller *sk_tail;
145
146 struct BlacklistCheckContext *bc_head;
147 struct BlacklistCheckContext *bc_tail;
148
149
150 /**
151  * Transmit our HELLO message to the given (connected) neighbour.
152  *
153  * @param cls the 'HELLO' message
154  * @param target a connected neighbour
155  * @param address the address
156  * @param state current state this peer is in
157  * @param state_timeout timeout for the current state of the peer
158  * @param bandwidth_in inbound quota in NBO
159  * @param bandwidth_out outbound quota in NBO
160  */
161 static void
162 transmit_our_hello (void *cls, const struct GNUNET_PeerIdentity *target,
163     const struct GNUNET_HELLO_Address *address,
164     enum GNUNET_TRANSPORT_PeerState state,
165     struct GNUNET_TIME_Absolute state_timeout,
166     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
167     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
168 {
169   const struct GNUNET_MessageHeader *hello = cls;
170
171   if (GNUNET_NO == GST_neighbours_test_connected (target))
172     return;
173
174   GST_neighbours_send (target, hello, ntohs (hello->size), hello_expiration,
175       NULL, NULL );
176 }
177
178 /**
179  * My HELLO has changed. Tell everyone who should know.
180  *
181  * @param cls unused
182  * @param hello new HELLO
183  */
184 static void
185 process_hello_update (void *cls, const struct GNUNET_MessageHeader *hello)
186 {
187   GST_clients_broadcast (hello, GNUNET_NO);
188   GST_neighbours_iterate (&transmit_our_hello, (void *) hello);
189 }
190
191 /**
192  * We received some payload.  Prepare to pass it on to our clients.
193  *
194  * @param peer (claimed) identity of the other peer
195  * @param address the address
196  * @param session session used
197  * @param message the message to process
198  * @return how long the plugin should wait until receiving more data
199  */
200 static struct GNUNET_TIME_Relative
201 process_payload (const struct GNUNET_PeerIdentity *peer,
202     const struct GNUNET_HELLO_Address *address, struct Session *session,
203     const struct GNUNET_MessageHeader *message)
204 {
205   struct GNUNET_TIME_Relative ret;
206   int do_forward;
207   struct InboundMessage *im;
208   size_t msg_size = ntohs (message->size);
209   size_t size = sizeof(struct InboundMessage) + msg_size;
210   char buf[size] GNUNET_ALIGN;
211
212   do_forward = GNUNET_SYSERR;
213   ret = GST_neighbours_calculate_receive_delay (peer, msg_size, &do_forward);
214   if (!GST_neighbours_test_connected (peer))
215   {
216     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
217         "Discarded %u bytes type %u payload from peer `%s'\n", msg_size,
218         ntohs (message->type), GNUNET_i2s (peer));
219     GNUNET_STATISTICS_update (GST_stats, gettext_noop
220     ("# bytes payload discarded due to not connected peer"), msg_size,
221         GNUNET_NO);
222     return ret;
223   }
224
225   GST_ats_add_address (address, session, NULL, 0);
226
227   if (GNUNET_YES != do_forward)
228     return ret;
229   im = (struct InboundMessage *) buf;
230   im->header.size = htons (size);
231   im->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_RECV);
232   im->peer = *peer;
233   memcpy (&im[1], message, ntohs (message->size));
234   GST_clients_broadcast (&im->header, GNUNET_YES);
235   return ret;
236 }
237
238 /**
239  * Task to asynchronously terminate a session.
240  *
241  * @param cls the `struct SessionKiller` with the information for the kill
242  * @param tc scheduler context
243  */
244 static void
245 kill_session_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
246 {
247   struct SessionKiller *sk = cls;
248
249   sk->task = GNUNET_SCHEDULER_NO_TASK;
250   GNUNET_CONTAINER_DLL_remove(sk_head, sk_tail, sk);
251   sk->plugin->disconnect_session (sk->plugin->cls, sk->session);
252   GNUNET_free(sk);
253 }
254
255 static void
256 cancel_pending_blacklist_checks (const struct GNUNET_HELLO_Address *address, struct Session *session)
257 {
258   struct BlacklistCheckContext *blctx;
259   struct BlacklistCheckContext *next;
260   next = bc_head;
261   for (blctx = next; NULL != blctx; blctx = next)
262   {
263     next = blctx->next;
264     if ((NULL != blctx->address) && (0 == GNUNET_HELLO_address_cmp(blctx->address, address)) && (blctx->session == session))
265     {
266       GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
267       if (NULL != blctx->blc)
268       {
269         GST_blacklist_test_cancel (blctx->blc);
270         blctx->blc = NULL;
271       }
272       GNUNET_HELLO_address_free (blctx->address);
273       GNUNET_free_non_null (blctx->msg);
274       GNUNET_free_non_null (blctx->ats);
275       GNUNET_free (blctx);
276     }
277   }
278 }
279
280 /**
281  * Force plugin to terminate session due to communication
282  * issue.
283  *
284  * @param plugin_name name of the plugin
285  * @param session session to termiante
286  */
287 static void
288 kill_session (const char *plugin_name, struct Session *session)
289 {
290   struct GNUNET_TRANSPORT_PluginFunctions *plugin;
291   struct SessionKiller *sk;
292
293   for (sk = sk_head; NULL != sk; sk = sk->next)
294     if (sk->session == session)
295       return;
296   plugin = GST_plugins_find (plugin_name);
297   if (NULL == plugin)
298   {
299     GNUNET_break(0);
300     return;
301   }
302   /* need to issue disconnect asynchronously */
303   sk = GNUNET_new (struct SessionKiller);
304   sk->session = session;
305   sk->plugin = plugin;
306   sk->task = GNUNET_SCHEDULER_add_now (&kill_session_task, sk);
307   GNUNET_CONTAINER_DLL_insert(sk_head, sk_tail, sk);
308 }
309
310
311
312 /**
313  * Black list check result for try_connect call
314  * If connection to the peer is allowed request adddress and
315  *
316  * @param cls blc_ctx bl context
317  * @param peer the peer
318  * @param result the result
319  */
320 static void
321 connect_bl_check_cont (void *cls,
322     const struct GNUNET_PeerIdentity *peer, int result)
323 {
324   struct BlacklistCheckContext *blctx = cls;
325
326   GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
327   blctx->blc = NULL;
328
329   if (GNUNET_OK == result)
330   {
331     /* Blacklist allows to speak to this peer, forward SYN to neighbours  */
332     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
333                 "Received SYN message from peer `%s' with `%s' %p\n",
334                 GNUNET_i2s (peer), GST_plugins_a2s (blctx->address), blctx->session);
335
336     if (GNUNET_OK != GST_neighbours_handle_session_syn (blctx->msg,
337         &blctx->address->peer))
338     {
339       cancel_pending_blacklist_checks (blctx->address, blctx->session);
340       kill_session (blctx->address->transport_name, blctx->session);
341     }
342   }
343   else
344   {
345     /* Blacklist denies to speak to this peer */
346
347     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
348         "Discarding SYN message from `%s' due to denied blacklist check\n",
349         GNUNET_i2s (peer));
350     cancel_pending_blacklist_checks (blctx->address, blctx->session);
351     kill_session (blctx->address->transport_name, blctx->session);
352   }
353
354   if (NULL != blctx->address)
355     GNUNET_HELLO_address_free (blctx->address);
356   GNUNET_free (blctx->msg);
357   GNUNET_free (blctx);
358 }
359
360 /**
361  * Black list check result for try_connect call
362  * If connection to the peer is allowed request adddress and
363  *
364  * @param cls blc_ctx bl context
365  * @param peer the peer
366  * @param result the result
367  */
368 static void
369 connect_transport_bl_check_cont (void *cls,
370     const struct GNUNET_PeerIdentity *peer, int result)
371 {
372   struct BlacklistCheckContext *blctx = cls;
373
374   GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
375   blctx->blc = NULL;
376
377   if (GNUNET_OK == result)
378   {
379     /* Blacklist allows to speak to this transport */
380     GST_ats_add_address(blctx->address, blctx->session, blctx->ats, blctx->ats_count);
381   }
382
383   if (NULL != blctx->address)
384     GNUNET_HELLO_address_free (blctx->address);
385   GNUNET_free (blctx->msg);
386   GNUNET_free (blctx);
387 }
388
389
390 /**
391  * Function called by the transport for each received message.
392  *
393  * @param cls closure, const char* with the name of the plugin we received the message from
394  * @param address address and (claimed) identity of the other peer
395  * @param message the message, NULL if we only care about
396  *                learning about the delay until we should receive again
397  * @param session identifier used for this session (NULL for plugins
398  *                that do not offer bi-directional communication to the sender
399  *                using the same "connection")
400  * @return how long the plugin should wait until receiving more data
401  *         (plugins that do not support this, can ignore the return value)
402  */
403 struct GNUNET_TIME_Relative
404 GST_receive_callback (void *cls,
405                       const struct GNUNET_HELLO_Address *address,
406                       struct Session *session,
407                       const struct GNUNET_MessageHeader *message)
408 {
409   const char *plugin_name = cls;
410   struct GNUNET_TIME_Relative ret;
411   struct BlacklistCheckContext *blctx;
412   struct GST_BlacklistCheck *blc;
413   uint16_t type;
414
415   ret = GNUNET_TIME_UNIT_ZERO;
416   if (NULL == message)
417     goto end;
418   type = ntohs (message->type);
419   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
420       "Received Message with type %u from peer `%s'\n", type,
421       GNUNET_i2s (&address->peer));
422
423   GNUNET_STATISTICS_update (GST_stats, gettext_noop
424   ("# bytes total received"), ntohs (message->size), GNUNET_NO);
425   GST_neighbours_notify_data_recv (&address->peer, address, session, message);
426
427   switch (type)
428   {
429   case GNUNET_MESSAGE_TYPE_HELLO_LEGACY:
430     /* Legacy HELLO message, discard  */
431     return ret;
432   case GNUNET_MESSAGE_TYPE_HELLO:
433     if (GNUNET_OK != GST_validation_handle_hello (message))
434     {
435       GNUNET_break_op(0);
436       cancel_pending_blacklist_checks (address, session);
437     }
438     return ret;
439   case GNUNET_MESSAGE_TYPE_TRANSPORT_PING:
440     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
441         "Processing `%s' from `%s'\n", "PING", GST_plugins_a2s (address));
442     if (GNUNET_OK
443         != GST_validation_handle_ping (&address->peer, message, address, session))
444     {
445       cancel_pending_blacklist_checks (address, session);
446       kill_session (plugin_name, session);
447     }
448     break;
449   case GNUNET_MESSAGE_TYPE_TRANSPORT_PONG:
450     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
451         "Processing `%s' from `%s'\n", "PONG",
452         GST_plugins_a2s (address));
453     if (GNUNET_OK != GST_validation_handle_pong (&address->peer, message))
454     {
455       GNUNET_break_op(0);
456       cancel_pending_blacklist_checks (address, session);
457       kill_session (plugin_name, session);
458     }
459     break;
460   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_SYN:
461     /* Do blacklist check if communication with this peer is allowed */
462     blctx = GNUNET_new (struct BlacklistCheckContext);
463     blctx->address = GNUNET_HELLO_address_copy (address);
464     blctx->session = session;
465     blctx->msg = GNUNET_malloc (ntohs(message->size));
466     memcpy (blctx->msg, message, ntohs(message->size));
467     GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, blctx);
468     if (NULL != (blc = GST_blacklist_test_allowed (&address->peer, NULL,
469           &connect_bl_check_cont, blctx)))
470     {
471       blctx->blc = blc;
472     }
473
474     blctx = GNUNET_new (struct BlacklistCheckContext);
475     blctx->address = GNUNET_HELLO_address_copy (address);
476     blctx->session = session;
477     blctx->msg = GNUNET_malloc (ntohs(message->size));
478     memcpy (blctx->msg, message, ntohs(message->size));
479     GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, blctx);
480     if (NULL != (blc = GST_blacklist_test_allowed (&address->peer,
481         address->transport_name, &connect_transport_bl_check_cont, blctx)))
482     {
483       blctx->blc = blc;
484     }
485     break;
486   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_SYN_ACK:
487     if (GNUNET_OK != GST_neighbours_handle_session_syn_ack (message,
488         &address->peer, address, session))
489     {
490       cancel_pending_blacklist_checks (address, session);
491       kill_session (plugin_name, session);
492     }
493     break;
494   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_ACK:
495     if (GNUNET_OK
496         != GST_neighbours_handle_session_ack (message, &address->peer, address, session))
497     {
498       GNUNET_break_op(0);
499       cancel_pending_blacklist_checks (address, session);
500       kill_session (plugin_name, session);
501     }
502     break;
503   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT:
504     GST_neighbours_handle_disconnect_message (&address->peer, message);
505     break;
506   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE:
507     GST_neighbours_keepalive (&address->peer, message);
508     break;
509   case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE_RESPONSE:
510     GST_neighbours_keepalive_response (&address->peer, message);
511     break;
512   default:
513     /* should be payload */
514     GNUNET_STATISTICS_update (GST_stats, gettext_noop
515     ("# bytes payload received"), ntohs (message->size), GNUNET_NO);
516     GST_neighbours_notify_payload_recv (&address->peer, address, session, message);
517     ret = process_payload (&address->peer, address, session, message);
518     break;
519   }
520   end:
521   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
522       "Allowing receive from peer %s to continue in %s\n", GNUNET_i2s (&address->peer),
523       GNUNET_STRINGS_relative_time_to_string (ret, GNUNET_YES));
524   return ret;
525 }
526
527 /**
528  * Function that will be called for each address the transport
529  * is aware that it might be reachable under.  Update our HELLO.
530  *
531  * @param cls name of the plugin (const char*)
532  * @param add_remove should the address added (YES) or removed (NO) from the
533  *                   set of valid addresses?
534  * @param address the address to add or remove
535  */
536 static void
537 plugin_env_address_change_notification (void *cls, int add_remove,
538     const struct GNUNET_HELLO_Address *address)
539 {
540   static int addresses = 0;
541   struct GNUNET_STATISTICS_Handle *cfg = GST_stats;
542
543   if (GNUNET_YES == add_remove)
544   {
545     addresses ++;
546     GNUNET_STATISTICS_update (cfg, "# transport addresses", 1, GNUNET_NO);
547   }
548   else if (GNUNET_NO == add_remove)
549   {
550     if (0 == addresses)
551       GNUNET_break (0);
552     else
553     {
554       addresses --;
555       GNUNET_STATISTICS_update (cfg, "# transport addresses", -1, GNUNET_NO);
556     }
557   }
558
559   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
560       "Transport now has %u addresses to communicate\n", addresses);
561
562   GST_hello_modify_addresses (add_remove, address);
563 }
564
565 /**
566  * Function that will be called whenever the plugin internally
567  * cleans up a session pointer and hence the service needs to
568  * discard all of those sessions as well.  Plugins that do not
569  * use sessions can simply omit calling this function and always
570  * use NULL wherever a session pointer is needed.  This function
571  * should be called BEFORE a potential "TransmitContinuation"
572  * from the "TransmitFunction".
573  *
574  * @param cls closure
575  * @param address which address was the session for
576  * @param session which session is being destoyed
577  */
578 static void
579 plugin_env_session_end (void *cls, const struct GNUNET_HELLO_Address *address,
580     struct Session *session)
581 {
582   struct SessionKiller *sk;
583
584   if (NULL == address)
585   {
586     GNUNET_break (0);
587     return;
588   }
589
590   if (NULL == session)
591   {
592     GNUNET_break (0);
593     return;
594   }
595
596   GNUNET_assert(strlen (address->transport_name) > 0);
597   GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Session %p to peer `%s' ended \n",
598       session, GNUNET_i2s (&address->peer));
599
600   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
601       "Notification from plugin `%s' about terminated %s session %p from peer `%s' address `%s'\n",
602       address->transport_name,
603       GNUNET_HELLO_address_check_option (address,
604           GNUNET_HELLO_ADDRESS_INFO_INBOUND) ? "inbound" : "outbound", session,
605       GNUNET_i2s (&address->peer), GST_plugins_a2s (address));
606
607   GST_neighbours_session_terminated (&address->peer, session);
608
609   GNUNET_log_from(GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
610       "transport-ats", "Telling ATS to destroy session %p from peer %s\n",
611       session, GNUNET_i2s (&address->peer));
612
613   /* Tell ATS that session has ended */
614   GNUNET_ATS_address_destroyed (GST_ats, address, session);
615
616   cancel_pending_blacklist_checks (address, session);
617
618   for (sk = sk_head; NULL != sk; sk = sk->next)
619   {
620     if (sk->session == session)
621     {
622       GNUNET_CONTAINER_DLL_remove(sk_head, sk_tail, sk);
623       GNUNET_SCHEDULER_cancel (sk->task);
624       GNUNET_free(sk);
625       break;
626     }
627   }
628 }
629
630 /**
631  * Function that will be called to figure if an address is an loopback,
632  * LAN, WAN etc. address
633  *
634  * @param cls closure
635  * @param addr binary address
636  * @param addrlen length of the address
637  * @return ATS Information containing the network type
638  */
639 static struct GNUNET_ATS_Information
640 plugin_env_address_to_type (void *cls, const struct sockaddr *addr,
641     size_t addrlen)
642 {
643   struct GNUNET_ATS_Information ats;
644
645   ats.type = htonl (GNUNET_ATS_NETWORK_TYPE);
646   ats.value = htonl (GNUNET_ATS_NET_UNSPECIFIED);
647   if (NULL == GST_ats)
648   {
649     GNUNET_break(0);
650     return ats;
651   }
652   if (((addr->sa_family != AF_INET) && (addrlen != sizeof(struct sockaddr_in)))
653       && ((addr->sa_family != AF_INET6)
654           && (addrlen != sizeof(struct sockaddr_in6)))
655       && (addr->sa_family != AF_UNIX))
656   {
657     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
658         "Malformed address with length %u `%s'\n", addrlen,
659         GNUNET_a2s (addr, addrlen));
660     GNUNET_break(0);
661     return ats;
662   }
663   return GNUNET_ATS_address_get_type (GST_ats, addr, addrlen);
664 }
665
666 /**
667  * Notify ATS about the new address including the network this address is
668  * located in.
669  *
670  * @param address the address
671  * @param session the session
672  * @param ats ats information
673  * @param ats_count number of @a ats information
674  */
675 void
676 GST_ats_add_address (const struct GNUNET_HELLO_Address *address,
677     struct Session *session, const struct GNUNET_ATS_Information *ats,
678     uint32_t ats_count)
679 {
680   struct GNUNET_TRANSPORT_PluginFunctions *papi;
681   struct GNUNET_ATS_Information ats2[ats_count + 1];
682   uint32_t net;
683
684   /* valid new address, let ATS know! */
685   if (NULL == address->transport_name)
686   {
687     GNUNET_break(0);
688     return;
689   }
690   if (NULL == (papi = GST_plugins_find (address->transport_name)))
691   {
692     /* we don't have the plugin for this address */
693     GNUNET_break(0);
694     return;
695   }
696
697   if (GNUNET_YES == GNUNET_ATS_session_known (GST_ats, address, session))
698   {
699     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
700         "ATS already knows the address, not passing it on again\n");
701     return;
702   }
703
704   net = papi->get_network (papi->cls, session);
705   if (GNUNET_ATS_NET_UNSPECIFIED == net)
706   {
707     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
708         _("Could not obtain a valid network for `%s' %s (%s)\n"),
709         GNUNET_i2s (&address->peer), GST_plugins_a2s (address),
710         address->transport_name);
711     return;
712   }
713   ats2[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
714   ats2[0].value = htonl (net);
715   memcpy (&ats2[1], ats, sizeof(struct GNUNET_ATS_Information) * ats_count);
716   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
717       "Notifying ATS about peer `%s''s new address `%s' session %p in network %s\n",
718       GNUNET_i2s (&address->peer),
719       (0 == address->address_length) ? "<inbound>" : GST_plugins_a2s (address),
720       session, GNUNET_ATS_print_network_type (net));
721   GNUNET_ATS_address_add (GST_ats, address, session, ats2, ats_count + 1);
722 }
723
724 /**
725  * Notify ATS about property changes to an address
726  *
727  * @param peer the peer
728  * @param address the address
729  * @param session the session
730  * @param ats performance information
731  * @param ats_count number of elements in @a ats
732  */
733 void
734 GST_ats_update_metrics (const struct GNUNET_PeerIdentity *peer,
735                         const struct GNUNET_HELLO_Address *address,
736                         struct Session *session,
737                         const struct GNUNET_ATS_Information *ats,
738                         uint32_t ats_count)
739 {
740   struct GNUNET_ATS_Information *ats_new;
741
742   if (GNUNET_NO == GNUNET_ATS_session_known (GST_ats, address, session))
743     return;
744
745   /* Call to manipulation to manipulate ATS information */
746   ats_new = GST_manipulation_manipulate_metrics (peer, address, session, ats,
747       ats_count);
748   if (NULL == ats_new)
749   {
750     GNUNET_break(0);
751     return;
752   }
753   if (GNUNET_NO == GNUNET_ATS_address_update (GST_ats, address, session,
754         ats_new, ats_count))
755   {
756     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
757         _("Address or session unknown: failed to update properties for peer `%s' plugin `%s' address `%s' session %p\n"),
758         GNUNET_i2s (peer), address->transport_name, GST_plugins_a2s (address),
759         session);
760   }
761   GNUNET_free(ats_new);
762 }
763
764 /**
765  * Function that will be called to update metrics for an address
766  *
767  * @param cls closure
768  * @param address address to update metrics for
769  * @param session the session
770  * @param ats the ats information to update
771  * @param ats_count the number of @a ats elements
772  */
773 static void
774 plugin_env_update_metrics (void *cls,
775                            const struct GNUNET_HELLO_Address *address,
776                            struct Session *session,
777                            const struct GNUNET_ATS_Information *ats,
778                            uint32_t ats_count)
779 {
780   if ((NULL == ats) || (0 == ats_count))
781     return;
782   GNUNET_assert(NULL != GST_ats);
783
784   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
785               "Updating metrics for peer `%s' address %s session %p\n",
786               GNUNET_i2s (&address->peer),
787               GST_plugins_a2s (address),
788               session);
789   GST_ats_update_metrics (&address->peer,
790                           address,
791                           session,
792                           ats, ats_count);
793 }
794
795
796 /**
797  * Black list check result for try_connect call
798  * If connection to the peer is allowed request adddress and
799  *
800  * @param cls blc_ctx bl context
801  * @param peer the peer
802  * @param result the result
803  */
804 static void
805 plugin_env_session_start_bl_check_cont (void *cls,
806     const struct GNUNET_PeerIdentity *peer, int result)
807 {
808   struct BlacklistCheckContext *blctx = cls;
809
810   GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
811   blctx->blc = NULL;
812
813   if (GNUNET_OK == result)
814   {
815     GST_ats_add_address (blctx->address, blctx->session,
816         blctx->ats, blctx->ats_count);
817   }
818   else
819   {
820     cancel_pending_blacklist_checks (blctx->address, blctx->session);
821     kill_session (blctx->address->transport_name, blctx->session);
822   }
823
824   GNUNET_HELLO_address_free (blctx->address);
825   GNUNET_free_non_null (blctx->ats);
826   GNUNET_free (blctx);
827 }
828
829
830 /**
831  * Plugin tells transport service about a new inbound session
832  *
833  * @param cls unused
834  * @param address the address
835  * @param session the new session
836  * @param ats ats information
837  * @param ats_count number of @a ats information
838  */
839 static void
840 plugin_env_session_start (void *cls,
841                           struct GNUNET_HELLO_Address *address,
842                           struct Session *session,
843                           const struct GNUNET_ATS_Information *ats,
844                           uint32_t ats_count)
845 {
846   struct BlacklistCheckContext *blctx;
847   struct GST_BlacklistCheck *blc;
848   int c;
849
850   if (NULL == address)
851   {
852     GNUNET_break(0);
853     return;
854   }
855   if (NULL == session)
856   {
857     GNUNET_break(0);
858     return;
859   }
860   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
861       "Notification from plugin `%s' about new %s session %p from peer `%s' address `%s'\n",
862       address->transport_name,
863       GNUNET_HELLO_address_check_option (address,
864           GNUNET_HELLO_ADDRESS_INFO_INBOUND) ? "inbound" : "outbound",
865       session, GNUNET_i2s (&address->peer), GST_plugins_a2s (address));
866
867   /* Do blacklist check if communication with this peer is allowed */
868   blctx = GNUNET_new (struct BlacklistCheckContext);
869   blctx->address = GNUNET_HELLO_address_copy (address);
870   blctx->session = session;
871   if (ats_count > 0)
872   {
873     blctx->ats = GNUNET_malloc (ats_count * sizeof (struct GNUNET_ATS_Information));
874     for (c = 0; c < ats_count; c++)
875     {
876       blctx->ats[c].type = ats[c].type;
877       blctx->ats[c].value = ats[c].value;
878     }
879   }
880
881   GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, blctx);
882   if (NULL != (blc = GST_blacklist_test_allowed (&address->peer, address->transport_name,
883         &plugin_env_session_start_bl_check_cont, blctx)))
884   {
885     blctx->blc = blc;
886   }
887 }
888
889
890 /**
891  * Function called by ATS to notify the callee that the
892  * assigned bandwidth or address for a given peer was changed.  If the
893  * callback is called with address/bandwidth assignments of zero, the
894  * ATS disconnect function will still be called once the disconnect
895  * actually happened.
896  *
897  * @param cls closure
898  * @param peer the peer this address is intended for
899  * @param address address to use (for peer given in address)
900  * @param session session to use (if available)
901  * @param bandwidth_out assigned outbound bandwidth for the connection in NBO,
902  *      0 to disconnect from peer
903  * @param bandwidth_in assigned inbound bandwidth for the connection in NBO,
904  *      0 to disconnect from peer
905  * @param ats ATS information
906  * @param ats_count number of @a ats elements
907  */
908 static void
909 ats_request_address_change (void *cls,
910                             const struct GNUNET_PeerIdentity *peer,
911                             const struct GNUNET_HELLO_Address *address,
912                             struct Session *session,
913                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
914                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
915                             const struct GNUNET_ATS_Information *ats,
916                             uint32_t ats_count)
917 {
918   uint32_t bw_in = ntohl (bandwidth_in.value__);
919   uint32_t bw_out = ntohl (bandwidth_out.value__);
920
921   /* ATS tells me to disconnect from peer */
922   if ((0 == bw_in) && (0 == bw_out))
923   {
924     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
925         "ATS tells me to disconnect from peer `%s'\n",
926         GNUNET_i2s (&address->peer));
927     GST_neighbours_force_disconnect (&address->peer);
928     return;
929   }
930
931   GST_neighbours_switch_to_address (&address->peer, address, session, ats,
932       ats_count, bandwidth_in, bandwidth_out);
933 }
934
935 /**
936  * Function called to notify transport users that another
937  * peer connected to us.
938  *
939  * @param cls closure
940  * @param peer the peer that connected
941  * @param bandwidth_in inbound bandwidth in NBO
942  * @param bandwidth_out outbound bandwidth in NBO
943  */
944 static void
945 neighbours_connect_notification (void *cls,
946     const struct GNUNET_PeerIdentity *peer,
947     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
948     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
949 {
950   size_t len = sizeof(struct ConnectInfoMessage);
951   char buf[len] GNUNET_ALIGN;
952   struct ConnectInfoMessage *connect_msg = (struct ConnectInfoMessage *) buf;
953
954   connections++;
955   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
956       "We are now connected to peer `%s' and %u peers in total\n",
957       GNUNET_i2s (peer), connections);
958   connect_msg->header.size = htons (sizeof(buf));
959   connect_msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
960   connect_msg->id = *peer;
961   connect_msg->quota_in = bandwidth_in;
962   connect_msg->quota_out = bandwidth_out;
963   GST_clients_broadcast (&connect_msg->header, GNUNET_NO);
964 }
965
966
967 /**
968  * Function called to notify transport users that another
969  * peer disconnected from us.
970  *
971  * @param cls closure
972  * @param peer the peer that disconnected
973  */
974 static void
975 neighbours_disconnect_notification (void *cls,
976                                     const struct GNUNET_PeerIdentity *peer)
977 {
978   struct DisconnectInfoMessage disconnect_msg;
979
980   connections--;
981   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
982       "Peer `%s' disconnected and we are connected to %u peers\n",
983       GNUNET_i2s (peer), connections);
984
985   GST_manipulation_peer_disconnect (peer);
986   disconnect_msg.header.size = htons (sizeof(struct DisconnectInfoMessage));
987   disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
988   disconnect_msg.reserved = htonl (0);
989   disconnect_msg.peer = *peer;
990   GST_clients_broadcast (&disconnect_msg.header, GNUNET_NO);
991 }
992
993
994 /**
995  * Function called to notify transport users that a neighbour peer changed its
996  * active address.
997  *
998  * @param cls closure
999  * @param peer peer this update is about (never NULL)
1000  * @param address address, NULL on disconnect
1001  * @param state current state this peer is in
1002  * @param state_timeout timeout for the current state of the peer
1003  * @param bandwidth_in bandwidth assigned inbound
1004  * @param bandwidth_out bandwidth assigned outbound
1005  */
1006 static void
1007 neighbours_changed_notification (void *cls,
1008                                  const struct GNUNET_PeerIdentity *peer,
1009                                  const struct GNUNET_HELLO_Address *address,
1010                                  enum GNUNET_TRANSPORT_PeerState state,
1011                                  struct GNUNET_TIME_Absolute state_timeout,
1012                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
1013                                  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
1014 {
1015   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
1016              "Notifying about change for peer `%s' with address `%s' in state `%s' timing out at %s\n",
1017              GNUNET_i2s (peer),
1018              (NULL != address) ? GST_plugins_a2s (address) : "<none>",
1019              GNUNET_TRANSPORT_ps2s (state),
1020              GNUNET_STRINGS_absolute_time_to_string (state_timeout));
1021
1022   GST_clients_broadcast_peer_notification (peer,
1023                                            address,
1024                                            state,
1025                                            state_timeout);
1026 }
1027
1028
1029 /**
1030  * Function called when the service shuts down.  Unloads our plugins
1031  * and cancels pending validations.
1032  *
1033  * @param cls closure, unused
1034  * @param tc task context (unused)
1035  */
1036 static void
1037 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1038 {
1039   GST_neighbours_stop ();
1040   GST_validation_stop ();
1041   GST_plugins_unload ();
1042
1043   GNUNET_ATS_scheduling_done (GST_ats);
1044   GST_ats = NULL;
1045   GST_clients_stop ();
1046   GST_blacklist_stop ();
1047   GST_hello_stop ();
1048   GST_manipulation_stop ();
1049
1050   if (NULL != GST_peerinfo)
1051   {
1052     GNUNET_PEERINFO_disconnect (GST_peerinfo);
1053     GST_peerinfo = NULL;
1054   }
1055   if (NULL != GST_stats)
1056   {
1057     GNUNET_STATISTICS_destroy (GST_stats, GNUNET_NO);
1058     GST_stats = NULL;
1059   }
1060   if (NULL != GST_my_private_key)
1061   {
1062     GNUNET_free(GST_my_private_key);
1063     GST_my_private_key = NULL;
1064   }
1065   GST_server = NULL;
1066 }
1067
1068
1069 /**
1070  * Initiate transport service.
1071  *
1072  * @param cls closure
1073  * @param server the initialized server
1074  * @param c configuration to use
1075  */
1076 static void
1077 run (void *cls, struct GNUNET_SERVER_Handle *server,
1078     const struct GNUNET_CONFIGURATION_Handle *c)
1079 {
1080   char *keyfile;
1081   struct GNUNET_CRYPTO_EddsaPrivateKey *pk;
1082   long long unsigned int max_fd_cfg;
1083   int max_fd_rlimit;
1084   int max_fd;
1085   int friend_only;
1086
1087   /* setup globals */
1088   GST_cfg = c;
1089   if (GNUNET_OK
1090       != GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
1091           &keyfile))
1092   {
1093     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
1094         _("Transport service is lacking key configuration settings. Exiting.\n"));
1095     GNUNET_SCHEDULER_shutdown ();
1096     return;
1097   }
1098   if (GNUNET_OK !=
1099       GNUNET_CONFIGURATION_get_value_time (c,
1100                                            "transport",
1101                                            "HELLO_EXPIRATION",
1102                                            &hello_expiration))
1103   {
1104     hello_expiration = GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION;
1105   }
1106   GST_server = server;
1107   pk = GNUNET_CRYPTO_eddsa_key_create_from_file (keyfile);
1108   GNUNET_free (keyfile);
1109   GNUNET_assert (NULL != pk);
1110   GST_my_private_key = pk;
1111
1112   GST_stats = GNUNET_STATISTICS_create ("transport", GST_cfg);
1113   GST_peerinfo = GNUNET_PEERINFO_connect (GST_cfg);
1114   GNUNET_CRYPTO_eddsa_key_get_public (GST_my_private_key,
1115       &GST_my_identity.public_key);
1116   GNUNET_assert(NULL != GST_my_private_key);
1117
1118   GNUNET_log(GNUNET_ERROR_TYPE_INFO,
1119              "My identity is `%4s'\n",
1120              GNUNET_i2s_full (&GST_my_identity));
1121
1122   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
1123       NULL );
1124   if (NULL == GST_peerinfo)
1125   {
1126     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
1127         _("Could not access PEERINFO service.  Exiting.\n"));
1128     GNUNET_SCHEDULER_shutdown ();
1129     return;
1130   }
1131
1132   max_fd_rlimit = 0;
1133   max_fd_cfg = 0;
1134 #if HAVE_GETRLIMIT
1135   struct rlimit r_file;
1136   if (0 == getrlimit (RLIMIT_NOFILE, &r_file))
1137   {
1138     max_fd_rlimit = r_file.rlim_cur;
1139     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1140         "Maximum number of open files was: %u/%u\n",
1141         r_file.rlim_cur,
1142         r_file.rlim_max);
1143   }
1144   max_fd_rlimit = (9 * max_fd_rlimit) / 10; /* Keep 10% for rest of transport */
1145 #endif
1146   GNUNET_CONFIGURATION_get_value_number (GST_cfg, "transport", "MAX_FD",
1147       &max_fd_cfg);
1148
1149   if (max_fd_cfg > max_fd_rlimit)
1150     max_fd = max_fd_cfg;
1151   else
1152     max_fd = max_fd_rlimit;
1153   if (max_fd < DEFAULT_MAX_FDS)
1154     max_fd = DEFAULT_MAX_FDS;
1155
1156   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
1157       "Limiting number of sockets to %u: validation %u, neighbors: %u\n",
1158       max_fd, (max_fd / 3), (max_fd / 3) * 2);
1159
1160   friend_only = GNUNET_CONFIGURATION_get_value_yesno (GST_cfg, "topology",
1161       "FRIENDS-ONLY");
1162   if (GNUNET_SYSERR == friend_only)
1163     friend_only = GNUNET_NO; /* According to topology defaults */
1164   /* start subsystems */
1165   GST_hello_start (friend_only, &process_hello_update, NULL );
1166   GNUNET_assert(NULL != GST_hello_get());
1167   GST_blacklist_start (GST_server, GST_cfg, &GST_my_identity);
1168   GST_ats = GNUNET_ATS_scheduling_init (GST_cfg, &ats_request_address_change,
1169       NULL );
1170   GST_manipulation_init (GST_cfg);
1171   GST_plugins_load (&GST_manipulation_recv,
1172                     &GST_neighbours_register_quota_notification,
1173                     &GST_neighbours_unregister_quota_notification,
1174                     &plugin_env_address_change_notification,
1175                     &plugin_env_session_start,
1176                     &plugin_env_session_end,
1177                     &plugin_env_address_to_type,
1178                     &plugin_env_update_metrics);
1179   GST_neighbours_start (NULL,
1180                         &neighbours_connect_notification,
1181                         &neighbours_disconnect_notification,
1182                         &neighbours_changed_notification,
1183                         (max_fd / 3) * 2);
1184   GST_clients_start (GST_server);
1185   GST_validation_start ((max_fd / 3));
1186 }
1187
1188
1189 /**
1190  * The main function for the transport service.
1191  *
1192  * @param argc number of arguments from the command line
1193  * @param argv command line arguments
1194  * @return 0 ok, 1 on error
1195  */
1196 int
1197 main (int argc, char * const *argv)
1198 {
1199   return
1200       (GNUNET_OK
1201           == GNUNET_SERVICE_run (argc, argv, "transport",
1202               GNUNET_SERVICE_OPTION_NONE, &run, NULL )) ? 0 : 1;
1203 }
1204
1205 /* end of file gnunet-service-transport.c */