remove breaks not required anymore
[oweals/gnunet.git] / src / transport / gnunet-service-transport_neighbours.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010-2013 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_neighbours.c
23  * @brief neighbour management
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_ats_service.h"
28 #include "gnunet-service-transport_neighbours.h"
29 #include "gnunet-service-transport_plugins.h"
30 #include "gnunet-service-transport_validation.h"
31 #include "gnunet-service-transport_clients.h"
32 #include "gnunet-service-transport.h"
33 #include "gnunet_peerinfo_service.h"
34 #include "gnunet-service-transport_blacklist.h"
35 #include "gnunet_constants.h"
36 #include "transport.h"
37
38
39
40 /**
41  * Size of the neighbour hash map.
42  */
43 #define NEIGHBOUR_TABLE_SIZE 256
44
45 /**
46  * Time we give plugin to transmit DISCONNECT message before the
47  * neighbour entry self-destructs.
48  */
49 #define DISCONNECT_SENT_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 500)
50
51 /**
52  * How often must a peer violate bandwidth quotas before we start
53  * to simply drop its messages?
54  */
55 #define QUOTA_VIOLATION_DROP_THRESHOLD 10
56
57 /**
58  * How long are we willing to wait for a response from ATS before timing out?
59  */
60 #define ATS_RESPONSE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 5000)
61
62 /**
63  * How long are we willing to wait for an ACK from the other peer before
64  * giving up on our connect operation?
65  */
66 #define SETUP_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
67
68 /**
69  * How long are we willing to wait for a successful reconnect if
70  * an existing connection went down?  Much shorter than the
71  * usual SETUP_CONNECTION_TIMEOUT as we do not inform the
72  * higher layers about the disconnect during this period.
73  */
74 #define FAST_RECONNECT_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
75
76 /**
77  * How long are we willing to wait for a response from the blacklist
78  * subsystem before timing out?
79  */
80 #define BLACKLIST_RESPONSE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 500)
81
82 /**
83  * Interval to send utilization data
84  */
85 #define UTIL_TRANSMISSION_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
86
87 /**
88  * State describing which kind a reply this neighbour should send
89  */
90 enum GST_ACK_State
91 {
92   /**
93    * We did not receive a CONNECT message for this neighbour
94    */
95   ACK_UNDEFINED = 0,
96
97   /* The neighbour received a CONNECT message and has to send a CONNECT_ACK
98    * as reply */
99   ACK_SEND_CONNECT_ACK = 1,
100
101   /* The neighbour sent a CONNECT_ACK message and has to send a SESSION_ACK
102    * as reply */
103   ACK_SEND_SESSION_ACK = 2
104 };
105
106
107 GNUNET_NETWORK_STRUCT_BEGIN
108
109 /**
110  * Message a peer sends to another to indicate that it intends to
111  * setup a connection/session for data exchange.  A 'SESSION_CONNECT'
112  * should be answered with a 'SESSION_CONNECT_ACK' with the same body
113  * to confirm.  A 'SESSION_CONNECT_ACK' should then be followed with
114  * a 'SESSION_ACK'.  Once the 'SESSION_ACK' is received, both peers
115  * should be connected.
116  */
117 struct SessionConnectMessage
118 {
119   /**
120    * Header of type #GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT
121    * or #GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT_ACK
122    */
123   struct GNUNET_MessageHeader header;
124
125   /**
126    * Always zero.
127    */
128   uint32_t reserved GNUNET_PACKED;
129
130   /**
131    * Absolute time at the sender.  Only the most recent connect
132    * message implies which session is preferred by the sender.
133    */
134   struct GNUNET_TIME_AbsoluteNBO timestamp;
135
136 };
137
138
139 /**
140  * Message a peer sends to another when connected to indicate that a
141  * session is in use and the peer is still alive or to respond to a keep alive.
142  * A peer sends a message with type #GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE
143  * to request a message with #GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE_RESPONSE.
144  * When the keep alive response with type is received, transport service
145  * will call the respective plugin to update the session timeout
146  */
147 struct SessionKeepAliveMessage
148 {
149   /**
150    * Header of type #GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE or
151    * #GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE_RESPONSE.
152    */
153   struct GNUNET_MessageHeader header;
154
155   /**
156    * A nonce to identify the session the keep alive is used for
157    */
158   uint32_t nonce GNUNET_PACKED;
159 };
160
161 /**
162  * Message we send to the other peer to notify him that we intentionally
163  * are disconnecting (to reduce timeouts).  This is just a friendly
164  * notification, peers must not rely on always receiving disconnect
165  * messages.
166  */
167 struct SessionDisconnectMessage
168 {
169   /**
170    * Header of type #GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT
171    */
172   struct GNUNET_MessageHeader header;
173
174   /**
175    * Always zero.
176    */
177   uint32_t reserved GNUNET_PACKED;
178
179   /**
180    * Purpose of the signature.  Extends over the timestamp.
181    * Purpose should be #GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DISCONNECT.
182    */
183   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
184
185   /**
186    * Absolute time at the sender.  Only the most recent connect
187    * message implies which session is preferred by the sender.
188    */
189   struct GNUNET_TIME_AbsoluteNBO timestamp;
190
191   /**
192    * Public key of the sender.
193    */
194   struct GNUNET_CRYPTO_EddsaPublicKey public_key;
195
196   /**
197    * Signature of the peer that sends us the disconnect.  Only
198    * valid if the timestamp is AFTER the timestamp from the
199    * corresponding 'CONNECT' message.
200    */
201   struct GNUNET_CRYPTO_EddsaSignature signature;
202
203 };
204
205 GNUNET_NETWORK_STRUCT_END
206
207
208 /**
209  * For each neighbour we keep a list of messages
210  * that we still want to transmit to the neighbour.
211  */
212 struct MessageQueue
213 {
214
215   /**
216    * This is a doubly linked list.
217    */
218   struct MessageQueue *next;
219
220   /**
221    * This is a doubly linked list.
222    */
223   struct MessageQueue *prev;
224
225   /**
226    * Function to call once we're done.
227    */
228   GST_NeighbourSendContinuation cont;
229
230   /**
231    * Closure for @e cont
232    */
233   void *cont_cls;
234
235   /**
236    * The message(s) we want to transmit, GNUNET_MessageHeader(s)
237    * stuck together in memory.  Allocated at the end of this struct.
238    */
239   const char *message_buf;
240
241   /**
242    * Size of the message buf
243    */
244   size_t message_buf_size;
245
246   /**
247    * At what time should we fail?
248    */
249   struct GNUNET_TIME_Absolute timeout;
250
251 };
252
253
254
255
256 /**
257  * A possible address we could use to communicate with a neighbour.
258  */
259 struct NeighbourAddress
260 {
261
262   /**
263    * Active session for this address.
264    */
265   struct Session *session;
266
267   /**
268    * Network-level address information.
269    */
270   struct GNUNET_HELLO_Address *address;
271
272   /**
273    * Timestamp of the 'SESSION_CONNECT' message we sent to the other
274    * peer for this address.  Use to check that the ACK is in response
275    * to our most recent 'CONNECT'.
276    */
277   struct GNUNET_TIME_Absolute connect_timestamp;
278
279   /**
280    * Inbound bandwidth from ATS for this address.
281    */
282   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in;
283
284   /**
285    * Outbound bandwidth from ATS for this address.
286    */
287   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out;
288
289   /**
290    * Did we tell ATS that this is our 'active' address?
291    */
292   int ats_active;
293
294   /**
295    * The current nonce sent in the last keep alive messages
296    */
297   uint32_t keep_alive_nonce;
298 };
299
300 /**
301  * Entry in neighbours.
302  */
303 struct NeighbourMapEntry
304 {
305
306   /**
307    * Head of list of messages we would like to send to this peer;
308    * must contain at most one message per client.
309    */
310   struct MessageQueue *messages_head;
311
312   /**
313    * Tail of list of messages we would like to send to this peer; must
314    * contain at most one message per client.
315    */
316   struct MessageQueue *messages_tail;
317
318   /**
319    * Are we currently trying to send a message? If so, which one?
320    */
321   struct MessageQueue *is_active;
322
323   /**
324    * Primary address we currently use to communicate with the neighbour.
325    */
326   struct NeighbourAddress primary_address;
327
328   /**
329    * Alternative address currently under consideration for communicating
330    * with the neighbour.
331    */
332   struct NeighbourAddress alternative_address;
333
334   /**
335    * Identity of this neighbour.
336    */
337   struct GNUNET_PeerIdentity id;
338
339   /**
340    * Main task that drives this peer (timeouts, keepalives, etc.).
341    * Always runs the 'master_task'.
342    */
343   GNUNET_SCHEDULER_TaskIdentifier task;
344
345   /**
346    * Task to disconnect neighbour after we received a DISCONNECT message
347    */
348   GNUNET_SCHEDULER_TaskIdentifier delayed_disconnect_task;
349
350   /**
351    * At what time should we sent the next keep-alive message?
352    */
353   struct GNUNET_TIME_Absolute keep_alive_time;
354
355   /**
356    * At what time did we sent the last keep-alive message?  Used
357    * to calculate round-trip time ("latency").
358    */
359   struct GNUNET_TIME_Absolute last_keep_alive_time;
360
361   /**
362    * Timestamp we should include in our next CONNECT_ACK message.
363    * (only valid if 'send_connect_ack' is #GNUNET_YES).  Used to build
364    * our CONNECT_ACK message.
365    */
366   struct GNUNET_TIME_Absolute connect_ack_timestamp;
367
368   /**
369    * ATS address suggest handle
370    */
371   struct GNUNET_ATS_SuggestHandle *suggest_handle;
372
373   /**
374    * Time where we should cut the connection (timeout) if we don't
375    * make progress in the state machine (or get a KEEPALIVE_RESPONSE
376    * if we are in S_CONNECTED).
377    */
378   struct GNUNET_TIME_Absolute timeout;
379
380   /**
381    * Latest calculated latency value
382    */
383   struct GNUNET_TIME_Relative latency;
384
385   /**
386    * Tracker for inbound bandwidth.
387    */
388   struct GNUNET_BANDWIDTH_Tracker in_tracker;
389
390   /**
391    * How often has the other peer (recently) violated the inbound
392    * traffic limit?  Incremented by 10 per violation, decremented by 1
393    * per non-violation (for each time interval).
394    */
395   unsigned int quota_violation_count;
396
397   /**
398    * The current state of the peer.
399    */
400   enum GNUNET_TRANSPORT_PeerState state;
401
402   /**
403    * Did we sent an KEEP_ALIVE message and are we expecting a response?
404    */
405   int expect_latency_response;
406
407   /**
408    * When a peer wants to connect we have to reply to the 1st CONNECT message
409    * with a CONNECT_ACK message. But sometime we cannot send this message
410    * immediately since we do not have an address and then we have to remember
411    * to send this message as soon as we have an address.
412    *
413    * Flag to set if we still need to send a CONNECT_ACK message to the other peer
414    * (once we have an address to use and the peer has been allowed by our
415    * blacklist).  Initially set to #ACK_UNDEFINED. Set to #ACK_SEND_CONNECT_ACK
416    * if we need to send a CONNECT_ACK.  Set to #ACK_SEND_SESSION_ACK if we did
417    * send a CONNECT_ACK and should go to 'S_CONNECTED' upon receiving a
418    * 'SESSION_ACK' (regardless of what our own state machine might say).
419    */
420   enum GST_ACK_State ack_state;
421
422   /**
423    * Tracking utilization of outbound bandwidth
424    */
425   uint32_t util_payload_bytes_sent;
426
427   /**
428    * Tracking utilization of inbound bandwidth
429    */
430   uint32_t util_payload_bytes_recv;
431
432   /**
433    * Tracking utilization of outbound bandwidth
434    */
435   uint32_t util_total_bytes_sent;
436
437   /**
438    * Tracking utilization of inbound bandwidth
439    */
440   uint32_t util_total_bytes_recv;
441
442   /**
443    * Date of last utilization transmission
444    */
445   struct GNUNET_TIME_Absolute last_util_transmission;
446 };
447
448
449 /**
450  * Context for blacklist checks and the #try_connect_bl_check_cont()
451  * function.  Stores information about ongoing blacklist checks.
452  */
453 struct BlackListCheckContext
454 {
455
456   /**
457    * We keep blacklist checks in a DLL.
458    */
459   struct BlackListCheckContext *next;
460
461   /**
462    * We keep blacklist checks in a DLL.
463    */
464   struct BlackListCheckContext *prev;
465
466   /**
467    * Address that is being checked.
468    */
469   struct NeighbourAddress na;
470
471   /**
472    * Handle to the ongoing blacklist check.
473    */
474   struct GST_BlacklistCheck *bc;
475 };
476
477
478 /**
479  * Hash map from peer identities to the respective 'struct NeighbourMapEntry'.
480  */
481 static struct GNUNET_CONTAINER_MultiPeerMap *neighbours;
482
483 /**
484  * We keep blacklist checks in a DLL so that we can find
485  * the 'sessions' in their 'struct NeighbourAddress' if
486  * a session goes down.
487  */
488 static struct BlackListCheckContext *bc_head;
489
490 /**
491  * We keep blacklist checks in a DLL.
492  */
493 static struct BlackListCheckContext *bc_tail;
494
495 /**
496  * List of pending blacklist checks: head
497  */
498 static struct BlacklistCheckSwitchContext *pending_bc_head;
499
500 /**
501  * List of pending blacklist checks: tail
502  */
503 static struct BlacklistCheckSwitchContext *pending_bc_tail;
504
505 /**
506  * Closure for #connect_notify_cb, #disconnect_notify_cb and #neighbour_change_cb
507  */
508 static void *callback_cls;
509
510 /**
511  * Function to call when we connected to a neighbour.
512  */
513 static NotifyConnect connect_notify_cb;
514
515 /**
516  * Function to call when we disconnected from a neighbour.
517  */
518 static GNUNET_TRANSPORT_NotifyDisconnect disconnect_notify_cb;
519
520 /**
521  * Function to call when a neighbour changed address, state or bandwidth.
522  */
523 static GNUNET_TRANSPORT_NeighbourChangeCallback neighbour_change_cb;
524
525 /**
526  * counter for connected neighbours
527  */
528 static unsigned int neighbours_connected;
529
530 /**
531  * Number of bytes we have currently queued for transmission.
532  */
533 static unsigned long long bytes_in_send_queue;
534
535 /**
536  * Task transmitting utilization data
537  */
538 static GNUNET_SCHEDULER_TaskIdentifier util_transmission_tk;
539
540
541 static struct GNUNET_CONTAINER_MultiPeerMap *registered_quota_notifications;
542
543 static char *
544 print_ack_state (enum GST_ACK_State s)
545 {
546   switch (s) {
547     case ACK_UNDEFINED:
548       return "UNDEFINED";
549     case ACK_SEND_CONNECT_ACK:
550       return "SEND_CONNECT_ACK";
551     case ACK_SEND_SESSION_ACK:
552       return "SEND_SESSION_ACK";
553     default:
554       GNUNET_break (0);
555       return "N/A";
556   }
557 }
558
559 /**
560  * Lookup a neighbour entry in the neighbours hash map.
561  *
562  * @param pid identity of the peer to look up
563  * @return the entry, NULL if there is no existing record
564  */
565 static struct NeighbourMapEntry *
566 lookup_neighbour (const struct GNUNET_PeerIdentity *pid)
567 {
568   if (NULL == neighbours)
569     return NULL;
570   return GNUNET_CONTAINER_multipeermap_get (neighbours, pid);
571 }
572
573
574 /**
575  * Test if we're connected to the given peer.
576  *
577  * @param n neighbour entry of peer to test
578  * @return #GNUNET_YES if we are connected, #GNUNET_NO if not
579  */
580 static int
581 test_connected (struct NeighbourMapEntry *n)
582 {
583   if (NULL == n)
584     return GNUNET_NO;
585   return GNUNET_TRANSPORT_is_connected (n->state);
586 }
587
588 /**
589  * Send information about a new outbound quota to our clients.
590  *
591  * @param target affected peer
592  * @param quota new quota
593  */
594 static void
595 send_outbound_quota (const struct GNUNET_PeerIdentity *target,
596                      struct GNUNET_BANDWIDTH_Value32NBO quota)
597 {
598   struct QuotaSetMessage q_msg;
599
600   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
601               "Sending outbound quota of %u Bps for peer `%s' to all clients\n",
602               ntohl (quota.value__), GNUNET_i2s (target));
603   q_msg.header.size = htons (sizeof (struct QuotaSetMessage));
604   q_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SET_QUOTA);
605   q_msg.quota = quota;
606   q_msg.peer = (*target);
607   GST_clients_broadcast (&q_msg.header, GNUNET_NO);
608 }
609
610
611 /**
612  * We don't need a given neighbour address any more.
613  * Release its resources and give appropriate notifications
614  * to ATS and other subsystems.
615  *
616  * @param na address we are done with; @a na itself must NOT be 'free'd, only the contents!
617  */
618 static void
619 free_address (struct NeighbourAddress *na)
620 {
621   if (GNUNET_YES == na->ats_active)
622   {
623     GST_validation_set_address_use (na->address, na->session, GNUNET_NO);
624     GNUNET_ATS_address_in_use (GST_ats, na->address, na->session, GNUNET_NO);
625   }
626
627   na->bandwidth_in = GNUNET_BANDWIDTH_value_init (0);
628   na->bandwidth_out = GNUNET_BANDWIDTH_value_init (0);
629   na->ats_active = GNUNET_NO;
630   na->keep_alive_nonce = 0;
631   if (NULL != na->address)
632   {
633     GNUNET_HELLO_address_free (na->address);
634     na->address = NULL;
635   }
636   na->session = NULL;
637 }
638
639
640 /**
641  * Set net state for this neighbour and notify monitoring
642  *
643  * @param n the respective neighbour
644  * @param s the new state
645  */
646 static void
647 set_state (struct NeighbourMapEntry *n, enum GNUNET_TRANSPORT_PeerState s)
648 {
649   n->state = s;
650   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Neighbour `%s' changed state to %s\n",
651       GNUNET_i2s (&n->id),
652       GNUNET_TRANSPORT_ps2s(s));
653   neighbour_change_cb (callback_cls,
654       &n->id,
655       n->primary_address.address,
656       n->state, n->timeout,
657       n->primary_address.bandwidth_in,
658       n->primary_address.bandwidth_out);
659 }
660
661
662 /**
663  * Set net state and state timeout for this neighbour and notify monitoring
664  *
665  * @param n the respective neighbour
666  * @param s the new state
667  * @param timeout the new timeout
668  */
669 static void
670 set_state_and_timeout (struct NeighbourMapEntry *n,
671     enum GNUNET_TRANSPORT_PeerState s,
672     struct GNUNET_TIME_Absolute timeout)
673 {
674   n->state = s;
675   n->timeout = timeout;
676   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Neighbour `%s' changed state to %s with timeout %s\n",
677       GNUNET_i2s (&n->id),
678       GNUNET_TRANSPORT_ps2s(s),
679       GNUNET_STRINGS_absolute_time_to_string (timeout));
680   neighbour_change_cb (callback_cls,
681       &n->id,
682       n->primary_address.address,
683       n->state, n->timeout,
684       n->primary_address.bandwidth_in,
685       n->primary_address.bandwidth_out);
686 }
687
688
689 /**
690  * Set new state timeout for this neighbour and notify monitoring
691  *
692  * @param n the respective neighbour
693  * @param timeout the new timeout
694  */
695 static void
696 set_timeout (struct NeighbourMapEntry *n,
697     struct GNUNET_TIME_Absolute timeout)
698 {
699   n->timeout = timeout;
700   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Neighbour `%s' changed timeout %s\n",
701       GNUNET_i2s (&n->id),
702       GNUNET_STRINGS_absolute_time_to_string (timeout));
703   neighbour_change_cb (callback_cls,
704       &n->id,
705       n->primary_address.address,
706       n->state, n->timeout,
707       n->primary_address.bandwidth_in,
708       n->primary_address.bandwidth_out);
709 }
710
711
712 /**
713  * Initialize the alternative address of a neighbour
714  *
715  * @param n the neighbour
716  * @param address address of the other peer, NULL if other peer
717  *                       connected to us
718  * @param session session to use (or NULL, in which case an
719  *        address must be setup)
720  * @param bandwidth_in inbound quota to be used when connection is up
721  * @param bandwidth_out outbound quota to be used when connection is up
722  */
723 static void
724 set_alternative_address (struct NeighbourMapEntry *n,
725              const struct GNUNET_HELLO_Address *address,
726              struct Session *session,
727              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
728              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
729 {
730   struct GNUNET_TRANSPORT_PluginFunctions *papi;
731   if (NULL == (papi = GST_plugins_find (address->transport_name)))
732   {
733     GNUNET_break (0);
734     return;
735   }
736   if (session == n->alternative_address.session)
737   {
738     n->alternative_address.bandwidth_in = bandwidth_in;
739     n->alternative_address.bandwidth_out = bandwidth_out;
740     return;
741   }
742   free_address (&n->alternative_address);
743   if (NULL == session)
744     session = papi->get_session (papi->cls, address);
745   if (NULL == session)
746   {
747     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
748                 "Failed to obtain new session for peer `%s' and  address '%s'\n",
749                 GNUNET_i2s (&address->peer), GST_plugins_a2s (address));
750     GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
751     return;
752   }
753
754   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Neighbour `%s' configured alternative address %s\n",
755       GNUNET_i2s (&n->id),
756       GST_plugins_a2s(address));
757
758   n->alternative_address.address = GNUNET_HELLO_address_copy (address);
759   n->alternative_address.bandwidth_in = bandwidth_in;
760   n->alternative_address.bandwidth_out = bandwidth_out;
761   n->alternative_address.session = session;
762   n->alternative_address.ats_active = GNUNET_NO;
763   n->alternative_address.keep_alive_nonce = 0;
764 }
765
766
767 /**
768  * Initialize the primary address of a neighbour
769  *
770  * @param n the neighbour
771  * @param address address of the other peer, NULL if other peer
772  *                       connected to us
773  * @param session session to use (or NULL, in which case an
774  *        address must be setup)
775  * @param bandwidth_in inbound quota to be used when connection is up
776  * @param bandwidth_out outbound quota to be used when connection is up
777  * @param is_active #GNUNET_YES to mark this as the active address with ATS
778  */
779 static void
780 set_primary_address (struct NeighbourMapEntry *n,
781              const struct GNUNET_HELLO_Address *address,
782              struct Session *session,
783              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
784              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
785              int is_active)
786 {
787   struct GNUNET_TRANSPORT_PluginFunctions *papi;
788
789   if (NULL == (papi = GST_plugins_find (address->transport_name)))
790   {
791     GNUNET_break (0);
792     return;
793   }
794   if (session == n->primary_address.session)
795   {
796     n->primary_address.bandwidth_in = bandwidth_in;
797     n->primary_address.bandwidth_out = bandwidth_out;
798     if (is_active != n->primary_address.ats_active)
799     {
800       n->primary_address.ats_active = is_active;
801       GNUNET_ATS_address_in_use (GST_ats, n->primary_address.address, n->primary_address.session, is_active);
802       GST_validation_set_address_use (n->primary_address.address, n->primary_address.session, is_active);
803     }
804     if (GNUNET_YES == is_active)
805     {
806       GST_neighbours_set_incoming_quota (&address->peer, bandwidth_in);
807       send_outbound_quota (&address->peer, bandwidth_out);
808     }
809     return;
810   }
811   free_address (&n->primary_address);
812   if (NULL == session)
813     session = papi->get_session (papi->cls, address);
814   if (NULL == session)
815   {
816     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
817                 "Failed to obtain new session for peer `%s' and  address '%s'\n",
818                 GNUNET_i2s (&address->peer), GST_plugins_a2s (address));
819     GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
820     return;
821   }
822
823   n->primary_address.address = GNUNET_HELLO_address_copy (address);
824   n->primary_address.bandwidth_in = bandwidth_in;
825   n->primary_address.bandwidth_out = bandwidth_out;
826   n->primary_address.session = session;
827   n->primary_address.ats_active = is_active;
828   n->primary_address.keep_alive_nonce = 0;
829   if (GNUNET_YES == is_active)
830   {
831     /* Telling ATS about new session */
832     GNUNET_ATS_address_in_use (GST_ats, n->primary_address.address, n->primary_address.session, GNUNET_YES);
833     GST_validation_set_address_use (n->primary_address.address, n->primary_address.session, GNUNET_YES);
834     GST_neighbours_set_incoming_quota (&address->peer, bandwidth_in);
835     send_outbound_quota (&address->peer, bandwidth_out);
836   }
837
838   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Neighbour `%s' switched to address `%s'\n",
839       GNUNET_i2s (&n->id),
840       GST_plugins_a2s(address));
841
842   neighbour_change_cb (callback_cls,
843       &n->id,
844       n->primary_address.address,
845       n->state, n->timeout,
846       n->primary_address.bandwidth_in,
847       n->primary_address.bandwidth_out);
848 }
849
850 /**
851  * Clear the primary address of a neighbour since this address is not
852  * valid anymore and notify monitoring about it
853  *
854  * @param n the neighbour
855  */
856 static void
857 unset_primary_address (struct NeighbourMapEntry *n)
858 {
859   /* Unset primary address */
860   free_address (&n->primary_address);
861
862   /* Notify monitoring about it */
863   neighbour_change_cb (callback_cls,
864       &n->id,
865       NULL,
866       n->state, n->timeout,
867       n->primary_address.bandwidth_in,
868       n->primary_address.bandwidth_out);
869 }
870
871 /**
872  * Clear the alternative address of a neighbour since this address is not
873  * valid anymore
874  *
875  * @param n the neighbour
876  */
877 static void
878 unset_alternative_address (struct NeighbourMapEntry *n)
879 {
880   /* Unset primary address */
881   free_address (&n->alternative_address);
882 }
883
884 /**
885  * Free a neighbour map entry.
886  *
887  * @param n entry to free
888  * @param keep_sessions #GNUNET_NO to tell plugin to terminate sessions,
889  *                      #GNUNET_YES to keep all sessions
890  */
891 static void
892 free_neighbour (struct NeighbourMapEntry *n,
893                 int keep_sessions)
894 {
895   struct MessageQueue *mq;
896   struct GNUNET_TRANSPORT_PluginFunctions *papi;
897   struct GNUNET_HELLO_Address *backup_primary;
898
899   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
900               "Freeing neighbour state of peer `%s'\n",
901               GNUNET_i2s (&n->id));
902   n->is_active = NULL; /* always free'd by its own continuation! */
903
904   /* fail messages currently in the queue */
905   while (NULL != (mq = n->messages_head))
906   {
907     GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq);
908     if (NULL != mq->cont)
909       mq->cont (mq->cont_cls, GNUNET_SYSERR, mq->message_buf_size, 0);
910     GNUNET_free (mq);
911   }
912   /* It is too late to send other peer disconnect notifications, but at
913      least internally we need to get clean... */
914   if (GNUNET_YES == test_connected (n))
915   {
916     GNUNET_STATISTICS_set (GST_stats,
917                            gettext_noop ("# peers connected"),
918                            --neighbours_connected,
919                            GNUNET_NO);
920     disconnect_notify_cb (callback_cls, &n->id);
921   }
922
923   /* Mark peer as disconnected */
924   set_state (n, GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED);
925
926   if (NULL != n->primary_address.address)
927     backup_primary = GNUNET_HELLO_address_copy (n->primary_address.address);
928   else
929     backup_primary = NULL;
930
931   /* free addresses and mark as unused */
932   unset_primary_address (n);
933   free_address (&n->alternative_address);
934
935   /* cut all transport-level connection for this peer */
936   if ((GNUNET_NO == keep_sessions) &&
937       (NULL != backup_primary) &&
938       (NULL != (papi = GST_plugins_find (backup_primary->transport_name))))
939     papi->disconnect_peer (papi->cls, &n->id);
940
941   if (NULL != backup_primary)
942     GNUNET_HELLO_address_free (backup_primary);
943   GNUNET_assert (GNUNET_YES ==
944                  GNUNET_CONTAINER_multipeermap_remove (neighbours,
945                                                        &n->id, n));
946
947   /* Cancel address requests for this peer */
948   if (NULL != n->suggest_handle)
949   {
950     GNUNET_ATS_suggest_address_cancel (GST_ats, &n->id);
951     n->suggest_handle = NULL;
952   }
953
954   /* Cancel the disconnect task */
955   if (GNUNET_SCHEDULER_NO_TASK != n->delayed_disconnect_task)
956   {
957     GNUNET_SCHEDULER_cancel (n->delayed_disconnect_task);
958     n->delayed_disconnect_task = GNUNET_SCHEDULER_NO_TASK;
959   }
960
961   /* Cancel the master task */
962   if (GNUNET_SCHEDULER_NO_TASK != n->task)
963   {
964     GNUNET_SCHEDULER_cancel (n->task);
965     n->task = GNUNET_SCHEDULER_NO_TASK;
966   }
967   /* free rest of memory */
968   GNUNET_free (n);
969 }
970
971
972 /**
973  * Transmit a message using the current session of the given
974  * neighbour.
975  *
976  * @param n entry for the recipient
977  * @param msgbuf buffer to transmit
978  * @param msgbuf_size number of bytes in @a msgbuf buffer
979  * @param priority transmission priority
980  * @param timeout transmission timeout
981  * @param use_keepalive_timeout #GNUNET_YES to use plugin-specific keep-alive
982  *        timeout (@a timeout is ignored in that case), #GNUNET_NO otherwise
983  * @param cont continuation to call when finished (can be NULL)
984  * @param cont_cls closure for @a cont
985  * @return timeout (copy of @a timeout or a calculated one if
986  *         @a use_keepalive_timeout is #GNUNET_YES.
987  */
988 static struct GNUNET_TIME_Relative
989 send_with_session (struct NeighbourMapEntry *n,
990                    const char *msgbuf, size_t msgbuf_size,
991                    uint32_t priority,
992                    struct GNUNET_TIME_Relative timeout,
993                    unsigned int use_keepalive_timeout,
994                    GNUNET_TRANSPORT_TransmitContinuation cont,
995                    void *cont_cls)
996 {
997   struct GNUNET_TRANSPORT_PluginFunctions *papi;
998   struct GNUNET_TIME_Relative result = GNUNET_TIME_UNIT_FOREVER_REL;
999
1000   GNUNET_assert (n->primary_address.session != NULL);
1001   if ( ((NULL == (papi = GST_plugins_find (n->primary_address.address->transport_name)) ||
1002          (-1 == papi->send (papi->cls,
1003                             n->primary_address.session,
1004                             msgbuf, msgbuf_size,
1005                             priority,
1006                             (result = (GNUNET_NO == use_keepalive_timeout) ? timeout :
1007                                 GNUNET_TIME_relative_divide (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1008                                                              papi->query_keepalive_factor (papi->cls))),
1009                             cont, cont_cls)))) &&
1010        (NULL != cont))
1011     cont (cont_cls, &n->id, GNUNET_SYSERR, msgbuf_size, 0);
1012   GST_neighbours_notify_data_sent (&n->id,
1013       n->primary_address.address, n->primary_address.session, msgbuf_size);
1014   GNUNET_break (NULL != papi);
1015   return result;
1016 }
1017
1018
1019 /**
1020  * Master task run for every neighbour.  Performs all of the time-related
1021  * activities (keep alive, send next message, disconnect if idle, finish
1022  * clean up after disconnect).
1023  *
1024  * @param cls the `struct NeighbourMapEntry` for which we are running
1025  * @param tc scheduler context (unused)
1026  */
1027 static void
1028 master_task (void *cls,
1029              const struct GNUNET_SCHEDULER_TaskContext *tc);
1030
1031
1032 /**
1033  * Function called when the 'DISCONNECT' message has been sent by the
1034  * plugin.  Frees the neighbour --- if the entry still exists.
1035  *
1036  * @param cls NULL
1037  * @param target identity of the neighbour that was disconnected
1038  * @param result #GNUNET_OK if the disconnect got out successfully
1039  * @param payload bytes payload
1040  * @param physical bytes physical
1041  */
1042 static void
1043 send_disconnect_cont (void *cls, const struct GNUNET_PeerIdentity *target,
1044                       int result, size_t payload, size_t physical)
1045 {
1046   struct NeighbourMapEntry *n;
1047
1048   n = lookup_neighbour (target);
1049   if (NULL == n)
1050     return; /* already gone */
1051   if (GNUNET_TRANSPORT_PS_DISCONNECT != n->state)
1052     return; /* have created a fresh entry since */
1053   if (GNUNET_SCHEDULER_NO_TASK != n->task)
1054     GNUNET_SCHEDULER_cancel (n->task);
1055   n->task = GNUNET_SCHEDULER_add_now (&master_task, n);
1056 }
1057
1058
1059 /**
1060  * Transmit a DISCONNECT message to the other peer.
1061  *
1062  * @param n neighbour to send DISCONNECT message.
1063  */
1064 static void
1065 send_disconnect (struct NeighbourMapEntry *n)
1066 {
1067   struct SessionDisconnectMessage disconnect_msg;
1068
1069   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1070               "Sending DISCONNECT message to peer `%4s'\n",
1071               GNUNET_i2s (&n->id));
1072   disconnect_msg.header.size = htons (sizeof (struct SessionDisconnectMessage));
1073   disconnect_msg.header.type =
1074       htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT);
1075   disconnect_msg.reserved = htonl (0);
1076   disconnect_msg.purpose.size =
1077       htonl (sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
1078              sizeof (struct GNUNET_CRYPTO_EddsaPublicKey) +
1079              sizeof (struct GNUNET_TIME_AbsoluteNBO));
1080   disconnect_msg.purpose.purpose =
1081       htonl (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT);
1082   disconnect_msg.timestamp =
1083       GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_get ());
1084   disconnect_msg.public_key = GST_my_identity.public_key;
1085   GNUNET_assert (GNUNET_OK ==
1086                  GNUNET_CRYPTO_eddsa_sign (GST_my_private_key,
1087                                          &disconnect_msg.purpose,
1088                                          &disconnect_msg.signature));
1089
1090   (void) send_with_session (n, (const char *) &disconnect_msg,
1091       sizeof (disconnect_msg), UINT32_MAX, GNUNET_TIME_UNIT_FOREVER_REL,
1092       GNUNET_NO, &send_disconnect_cont, NULL );
1093   GNUNET_STATISTICS_update (GST_stats,
1094                             gettext_noop
1095                             ("# DISCONNECT messages sent"), 1,
1096                             GNUNET_NO);
1097 }
1098
1099
1100 /**
1101  * Disconnect from the given neighbour, clean up the record.
1102  *
1103  * @param n neighbour to disconnect from
1104  */
1105 static void
1106 disconnect_neighbour (struct NeighbourMapEntry *n)
1107 {
1108   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1109               "Disconnecting from peer %s in state %s\n",
1110               GNUNET_i2s (&n->id),
1111               GNUNET_TRANSPORT_ps2s (n->state));
1112   /* depending on state, notify neighbour and/or upper layers of this peer
1113      about disconnect */
1114   switch (n->state)
1115   {
1116   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
1117   case GNUNET_TRANSPORT_PS_INIT_ATS:
1118     /* other peer is completely unaware of us, no need to send DISCONNECT */
1119     free_neighbour (n, GNUNET_NO);
1120     return;
1121   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
1122     send_disconnect (n);
1123     set_state (n, GNUNET_TRANSPORT_PS_DISCONNECT);
1124     break;
1125   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
1126     /* we never ACK'ed the other peer's request, no need to send DISCONNECT */
1127     free_neighbour (n, GNUNET_NO);
1128     return;
1129   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
1130     /* we DID ACK the other peer's request, must send DISCONNECT */
1131     send_disconnect (n);
1132     set_state (n, GNUNET_TRANSPORT_PS_DISCONNECT);
1133     break;
1134   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
1135   case GNUNET_TRANSPORT_PS_CONNECTED:
1136   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
1137     /* we are currently connected, need to send disconnect and do
1138        internal notifications and update statistics */
1139     send_disconnect (n);
1140     GNUNET_STATISTICS_set (GST_stats,
1141                            gettext_noop ("# peers connected"),
1142                            --neighbours_connected,
1143                            GNUNET_NO);
1144     disconnect_notify_cb (callback_cls, &n->id);
1145     set_state (n, GNUNET_TRANSPORT_PS_DISCONNECT);
1146     break;
1147   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
1148     /* Disconnecting while waiting for an ATS address to reconnect,
1149      * cannot send DISCONNECT */
1150     free_neighbour (n, GNUNET_NO);
1151     return;
1152   case GNUNET_TRANSPORT_PS_DISCONNECT:
1153     /* already disconnected, ignore */
1154     break;
1155   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
1156     /* already cleaned up, how did we get here!? */
1157     GNUNET_assert (0);
1158     break;
1159   default:
1160     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1161                 "Unhandled state `%s'\n",
1162                 GNUNET_TRANSPORT_ps2s (n->state));
1163     GNUNET_break (0);
1164     break;
1165   }
1166   /* schedule timeout to clean up */
1167   if (GNUNET_SCHEDULER_NO_TASK != n->task)
1168     GNUNET_SCHEDULER_cancel (n->task);
1169   n->task = GNUNET_SCHEDULER_add_delayed (DISCONNECT_SENT_TIMEOUT,
1170                                           &master_task, n);
1171 }
1172
1173
1174 /**
1175  * We're done with our transmission attempt, continue processing.
1176  *
1177  * @param cls the `struct MessageQueue` of the message
1178  * @param receiver intended receiver
1179  * @param success whether it worked or not
1180  * @param size_payload bytes payload sent
1181  * @param physical bytes sent on wire
1182  */
1183 static void
1184 transmit_send_continuation (void *cls,
1185                             const struct GNUNET_PeerIdentity *receiver,
1186                             int success, size_t size_payload, size_t physical)
1187 {
1188   struct MessageQueue *mq = cls;
1189   struct NeighbourMapEntry *n;
1190
1191   if (NULL == (n = lookup_neighbour (receiver)))
1192   {
1193     GNUNET_free (mq);
1194     return; /* disconnect or other error while transmitting, can happen */
1195   }
1196   if (n->is_active == mq)
1197   {
1198     /* this is still "our" neighbour, remove us from its queue
1199        and allow it to send the next message now */
1200     n->is_active = NULL;
1201     if (GNUNET_SCHEDULER_NO_TASK != n->task)
1202       GNUNET_SCHEDULER_cancel (n->task);
1203     n->task = GNUNET_SCHEDULER_add_now (&master_task, n);
1204   }
1205   if (bytes_in_send_queue < mq->message_buf_size)
1206   {
1207     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1208                 "Bytes_in_send_queue `%u', Message_size %u, result: %s, payload %u, on wire %u\n",
1209                 bytes_in_send_queue, mq->message_buf_size,
1210                 (GNUNET_OK == success) ? "OK" : "FAIL",
1211                 size_payload, physical);
1212     GNUNET_break (0);
1213   }
1214
1215
1216   GNUNET_break (size_payload == mq->message_buf_size);
1217   bytes_in_send_queue -= mq->message_buf_size;
1218   GNUNET_STATISTICS_set (GST_stats,
1219                         gettext_noop
1220                          ("# bytes in message queue for other peers"),
1221                          bytes_in_send_queue, GNUNET_NO);
1222   if (GNUNET_OK == success)
1223     GNUNET_STATISTICS_update (GST_stats,
1224                               gettext_noop
1225                               ("# messages transmitted to other peers"),
1226                               1, GNUNET_NO);
1227   else
1228     GNUNET_STATISTICS_update (GST_stats,
1229                               gettext_noop
1230                               ("# transmission failures for messages to other peers"),
1231                               1, GNUNET_NO);
1232   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1233               "Sending message to `%s' of type %u with %u bytes was a %s\n",
1234               GNUNET_i2s (receiver),
1235               ntohs (((struct GNUNET_MessageHeader *) mq->message_buf)->type),
1236               mq->message_buf_size,
1237               (success == GNUNET_OK) ? "success" : "FAILURE");
1238   if (NULL != mq->cont)
1239     mq->cont (mq->cont_cls, success, size_payload, physical);
1240   GNUNET_free (mq);
1241 }
1242
1243
1244 /**
1245  * Check the message list for the given neighbour and if we can
1246  * send a message, do so.  This function should only be called
1247  * if the connection is at least generally ready for transmission.
1248  * While we will only send one message at a time, no bandwidth
1249  * quota management is performed here.  If a message was given to
1250  * the plugin, the continuation will automatically re-schedule
1251  * the 'master' task once the next message might be transmitted.
1252  *
1253  * @param n target peer for which to transmit
1254  */
1255 static void
1256 try_transmission_to_peer (struct NeighbourMapEntry *n)
1257 {
1258   struct MessageQueue *mq;
1259   struct GNUNET_TIME_Relative timeout;
1260
1261   if (NULL == n->primary_address.address)
1262   {
1263     /* no address, why are we here? */
1264     GNUNET_break (0);
1265     return;
1266   }
1267   if ((0 == n->primary_address.address->address_length) &&
1268       (NULL == n->primary_address.session))
1269   {
1270     /* no address, why are we here? */
1271     GNUNET_break (0);
1272     return;
1273   }
1274   if (NULL != n->is_active)
1275   {
1276     /* transmission already pending */
1277     return;
1278   }
1279
1280   /* timeout messages from the queue that are past their due date */
1281   while (NULL != (mq = n->messages_head))
1282   {
1283     timeout = GNUNET_TIME_absolute_get_remaining (mq->timeout);
1284     if (timeout.rel_value_us > 0)
1285       break;
1286     GNUNET_STATISTICS_update (GST_stats,
1287                               gettext_noop
1288                               ("# messages timed out while in transport queue"),
1289                               1, GNUNET_NO);
1290     GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq);
1291     n->is_active = mq;
1292     transmit_send_continuation (mq, &n->id,
1293                                 GNUNET_SYSERR,
1294                                 mq->message_buf_size, 0);     /* timeout */
1295   }
1296   if (NULL == mq)
1297     return;                     /* no more messages */
1298   GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq);
1299   n->is_active = mq;
1300
1301   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1302       "Giving message with %u bytes to plugin session %p\n",
1303       mq->message_buf_size, n->primary_address.session);
1304
1305   (void) send_with_session (n,
1306                             mq->message_buf, mq->message_buf_size,
1307                             0 /* priority */, timeout, GNUNET_NO,
1308                             &transmit_send_continuation, mq);
1309 }
1310
1311
1312 /**
1313  * Send keepalive message to the neighbour.  Must only be called
1314  * if we are on 'connected' state or while trying to switch addresses.
1315  * Will internally determine if a keepalive is truly needed (so can
1316  * always be called).
1317  *
1318  * @param n neighbour that went idle and needs a keepalive
1319  */
1320 static void
1321 send_keepalive (struct NeighbourMapEntry *n)
1322 {
1323   struct SessionKeepAliveMessage m;
1324   struct GNUNET_TIME_Relative timeout;
1325   uint32_t nonce;
1326
1327   GNUNET_assert ((GNUNET_TRANSPORT_PS_CONNECTED == n->state) ||
1328                  (GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT));
1329   if (GNUNET_TIME_absolute_get_remaining (n->keep_alive_time).rel_value_us > 0)
1330     return; /* no keepalive needed at this time */
1331
1332   nonce = 0; /* 0 indicates 'not set' */
1333   while (0 == nonce)
1334     nonce = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
1335
1336   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1337       "Sending keep alive to peer `%s' with nonce %u\n",
1338       GNUNET_i2s (&n->id), nonce);
1339
1340   m.header.size = htons (sizeof (struct SessionKeepAliveMessage));
1341   m.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE);
1342   m.nonce = htonl (nonce);
1343
1344   timeout = send_with_session (n,
1345                                (const void *) &m, sizeof (m),
1346                                UINT32_MAX /* priority */,
1347                                GNUNET_TIME_UNIT_FOREVER_REL, GNUNET_YES,
1348                                NULL, NULL);
1349   GNUNET_STATISTICS_update (GST_stats, gettext_noop ("# keepalives sent"), 1,
1350                             GNUNET_NO);
1351   n->primary_address.keep_alive_nonce = nonce;
1352   n->expect_latency_response = GNUNET_YES;
1353   n->last_keep_alive_time = GNUNET_TIME_absolute_get ();
1354   n->keep_alive_time = GNUNET_TIME_relative_to_absolute (timeout);
1355
1356 }
1357
1358
1359 /**
1360  * Keep the connection to the given neighbour alive longer,
1361  * we received a KEEPALIVE (or equivalent); send a response.
1362  *
1363  * @param neighbour neighbour to keep alive (by sending keep alive response)
1364  * @param m the keep alive message containing the nonce to respond to
1365  */
1366 void
1367 GST_neighbours_keepalive (const struct GNUNET_PeerIdentity *neighbour,
1368     const struct GNUNET_MessageHeader *m)
1369 {
1370   struct NeighbourMapEntry *n;
1371   const struct SessionKeepAliveMessage *msg_in;
1372   struct SessionKeepAliveMessage msg;
1373
1374   if (sizeof (struct SessionKeepAliveMessage) != ntohs (m->size))
1375     return;
1376
1377   msg_in = (struct SessionKeepAliveMessage *) m;
1378   if (NULL == (n = lookup_neighbour (neighbour)))
1379   {
1380     GNUNET_STATISTICS_update (GST_stats,
1381                               gettext_noop
1382                               ("# KEEPALIVE messages discarded (peer unknown)"),
1383                               1, GNUNET_NO);
1384     return;
1385   }
1386   if (NULL == n->primary_address.session)
1387   {
1388     GNUNET_STATISTICS_update (GST_stats,
1389                               gettext_noop
1390                               ("# KEEPALIVE messages discarded (no session)"),
1391                               1, GNUNET_NO);
1392     return;
1393   }
1394
1395   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1396       "Received keep alive request from peer `%s' with nonce %u\n",
1397       GNUNET_i2s (&n->id), ntohl (msg_in->nonce));
1398
1399   /* send reply to allow neighbour to measure latency */
1400   msg.header.size = htons (sizeof (struct SessionKeepAliveMessage));
1401   msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE_RESPONSE);
1402   msg.nonce = msg_in->nonce;
1403   (void) send_with_session(n,
1404                            (const void *) &msg, sizeof (struct SessionKeepAliveMessage),
1405                            UINT32_MAX /* priority */,
1406                            GNUNET_TIME_UNIT_FOREVER_REL, GNUNET_YES,
1407                            NULL, NULL);
1408 }
1409
1410
1411 /**
1412  * We received a KEEP_ALIVE_RESPONSE message and use this to calculate
1413  * latency to this peer.  Pass the updated information (existing ats
1414  * plus calculated latency) to ATS.
1415  *
1416  * @param neighbour neighbour to keep alive
1417  * @param m the message containing the keep alive response
1418  */
1419 void
1420 GST_neighbours_keepalive_response (const struct GNUNET_PeerIdentity *neighbour,
1421     const struct GNUNET_MessageHeader *m)
1422 {
1423   struct NeighbourMapEntry *n;
1424   const struct SessionKeepAliveMessage *msg;
1425   struct GNUNET_TRANSPORT_PluginFunctions *papi;
1426   uint32_t latency;
1427   struct GNUNET_ATS_Information ats;
1428
1429   if (sizeof (struct SessionKeepAliveMessage) != ntohs (m->size))
1430     return;
1431
1432   msg = (const struct SessionKeepAliveMessage *) m;
1433   if (NULL == (n = lookup_neighbour (neighbour)))
1434   {
1435     GNUNET_STATISTICS_update (GST_stats,
1436                               gettext_noop
1437                               ("# KEEPALIVE_RESPONSE messages discarded (not connected)"),
1438                               1, GNUNET_NO);
1439     return;
1440   }
1441   if ( (GNUNET_TRANSPORT_PS_CONNECTED != n->state) ||
1442        (GNUNET_YES != n->expect_latency_response) )
1443   {
1444     GNUNET_STATISTICS_update (GST_stats,
1445                               gettext_noop
1446                               ("# KEEPALIVE_RESPONSE messages discarded (not expected)"),
1447                               1, GNUNET_NO);
1448     return;
1449   }
1450   if (NULL == n->primary_address.address)
1451   {
1452     GNUNET_STATISTICS_update (GST_stats,
1453                               gettext_noop
1454                               ("# KEEPALIVE_RESPONSE messages discarded (address changed)"),
1455                               1, GNUNET_NO);
1456     return;
1457   }
1458   if (n->primary_address.keep_alive_nonce != ntohl (msg->nonce))
1459   {
1460     GNUNET_STATISTICS_update (GST_stats,
1461                               gettext_noop
1462                               ("# KEEPALIVE_RESPONSE messages discarded (wrong nonce)"),
1463                               1, GNUNET_NO);
1464     return;
1465   }
1466   else
1467   {
1468     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1469         "Received keep alive response from peer `%s' for session %p\n",
1470         GNUNET_i2s (&n->id), n->primary_address.session);
1471
1472   }
1473
1474   /* Update session timeout here */
1475   if (NULL != (papi = GST_plugins_find (n->primary_address.address->transport_name)))
1476   {
1477     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1478         "Updating session for peer `%s' for session %p\n",
1479         GNUNET_i2s (&n->id), n->primary_address.session);
1480     papi->update_session_timeout (papi->cls, &n->id, n->primary_address.session);
1481   }
1482   else
1483   {
1484     GNUNET_break (0);
1485   }
1486
1487   n->primary_address.keep_alive_nonce = 0;
1488   n->expect_latency_response = GNUNET_NO;
1489   n->latency = GNUNET_TIME_absolute_get_duration (n->last_keep_alive_time);
1490   set_timeout (n, GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
1491
1492   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1493               "Latency for peer `%s' is %s\n",
1494               GNUNET_i2s (&n->id),
1495               GNUNET_STRINGS_relative_time_to_string (n->latency,
1496                                                       GNUNET_YES));
1497   /* append latency */
1498   ats.type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
1499   if (n->latency.rel_value_us > UINT32_MAX)
1500     latency = UINT32_MAX;
1501   else
1502     latency = n->latency.rel_value_us;
1503   ats.value = htonl (latency);
1504   GST_ats_update_metrics (&n->id, n->primary_address.address,
1505       n->primary_address.session, &ats, 1);
1506 }
1507
1508
1509 /**
1510  * We have received a message from the given sender.  How long should
1511  * we delay before receiving more?  (Also used to keep the peer marked
1512  * as live).
1513  *
1514  * @param sender sender of the message
1515  * @param size size of the message
1516  * @param do_forward set to #GNUNET_YES if the message should be forwarded to clients
1517  *                   #GNUNET_NO if the neighbour is not connected or violates the quota,
1518  *                   #GNUNET_SYSERR if the connection is not fully up yet
1519  * @return how long to wait before reading more from this sender
1520  */
1521 struct GNUNET_TIME_Relative
1522 GST_neighbours_calculate_receive_delay (const struct GNUNET_PeerIdentity
1523                                         *sender, ssize_t size, int *do_forward)
1524 {
1525   struct NeighbourMapEntry *n;
1526   struct GNUNET_TIME_Relative ret;
1527
1528   if (NULL == neighbours)
1529   {
1530     *do_forward = GNUNET_NO;
1531     return GNUNET_TIME_UNIT_FOREVER_REL; /* This can happen during shutdown */
1532   }
1533   if (NULL == (n = lookup_neighbour (sender)))
1534   {
1535     GST_neighbours_try_connect (sender);
1536     if (NULL == (n = lookup_neighbour (sender)))
1537     {
1538       GNUNET_STATISTICS_update (GST_stats,
1539                                 gettext_noop
1540                                 ("# messages discarded due to lack of neighbour record"),
1541                                 1, GNUNET_NO);
1542       *do_forward = GNUNET_NO;
1543       return GNUNET_TIME_UNIT_ZERO;
1544     }
1545   }
1546   if (! test_connected (n))
1547   {
1548     *do_forward = GNUNET_SYSERR;
1549     return GNUNET_TIME_UNIT_ZERO;
1550   }
1551   if (GNUNET_YES == GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker, size))
1552   {
1553     n->quota_violation_count++;
1554     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1555                 "Bandwidth quota (%u b/s) violation detected (total of %u).\n",
1556                 n->in_tracker.available_bytes_per_s__,
1557                 n->quota_violation_count);
1558     /* Discount 32k per violation */
1559     GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker, -32 * 1024);
1560   }
1561   else
1562   {
1563     if (n->quota_violation_count > 0)
1564     {
1565       /* try to add 32k back */
1566       GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker, 32 * 1024);
1567       n->quota_violation_count--;
1568     }
1569   }
1570   if (n->quota_violation_count > QUOTA_VIOLATION_DROP_THRESHOLD)
1571   {
1572     GNUNET_STATISTICS_update (GST_stats,
1573                               gettext_noop
1574                               ("# bandwidth quota violations by other peers"),
1575                               1, GNUNET_NO);
1576     *do_forward = GNUNET_NO;
1577     return GNUNET_CONSTANTS_QUOTA_VIOLATION_TIMEOUT;
1578   }
1579   *do_forward = GNUNET_YES;
1580   ret = GNUNET_BANDWIDTH_tracker_get_delay (&n->in_tracker, 32 * 1024);
1581   if (ret.rel_value_us > 0)
1582   {
1583     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1584                 "Throttling read (%llu bytes excess at %u b/s), waiting %s before reading more.\n",
1585                 (unsigned long long) n->in_tracker.
1586                 consumption_since_last_update__,
1587                 (unsigned int) n->in_tracker.available_bytes_per_s__,
1588                 GNUNET_STRINGS_relative_time_to_string (ret, GNUNET_YES));
1589     GNUNET_STATISTICS_update (GST_stats,
1590                               gettext_noop ("# ms throttling suggested"),
1591                               (int64_t) ret.rel_value_us / 1000LL,
1592                               GNUNET_NO);
1593   }
1594   return ret;
1595 }
1596
1597
1598 /**
1599  * Transmit a message to the given target using the active connection.
1600  *
1601  * @param target destination
1602  * @param msg message to send
1603  * @param msg_size number of bytes in msg
1604  * @param timeout when to fail with timeout
1605  * @param cont function to call when done
1606  * @param cont_cls closure for 'cont'
1607  */
1608 void
1609 GST_neighbours_send (const struct GNUNET_PeerIdentity *target, const void *msg,
1610                      size_t msg_size, struct GNUNET_TIME_Relative timeout,
1611                      GST_NeighbourSendContinuation cont, void *cont_cls)
1612 {
1613   struct NeighbourMapEntry *n;
1614   struct MessageQueue *mq;
1615
1616   /* All ove these cases should never happen; they are all API violations.
1617      But we check anyway, just to be sure. */
1618   if (NULL == (n = lookup_neighbour (target)))
1619   {
1620     GNUNET_break (0);
1621     if (NULL != cont)
1622       cont (cont_cls, GNUNET_SYSERR, msg_size, 0);
1623     return;
1624   }
1625   if (GNUNET_YES != test_connected (n))
1626   {
1627     GNUNET_break (0);
1628     if (NULL != cont)
1629       cont (cont_cls, GNUNET_SYSERR, msg_size, 0);
1630     return;
1631   }
1632   bytes_in_send_queue += msg_size;
1633   GNUNET_STATISTICS_set (GST_stats,
1634                          gettext_noop
1635                          ("# bytes in message queue for other peers"),
1636                          bytes_in_send_queue, GNUNET_NO);
1637   mq = GNUNET_malloc (sizeof (struct MessageQueue) + msg_size);
1638   mq->cont = cont;
1639   mq->cont_cls = cont_cls;
1640   memcpy (&mq[1], msg, msg_size);
1641   mq->message_buf = (const char *) &mq[1];
1642   mq->message_buf_size = msg_size;
1643   mq->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1644
1645   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Enqueueing %u bytes to send to peer %s\n",
1646       msg_size, GNUNET_i2s (target));
1647
1648   GNUNET_CONTAINER_DLL_insert_tail (n->messages_head, n->messages_tail, mq);
1649   if (GNUNET_SCHEDULER_NO_TASK != n->task)
1650     GNUNET_SCHEDULER_cancel (n->task);
1651   n->task = GNUNET_SCHEDULER_add_now (&master_task, n);
1652 }
1653
1654 static void
1655 send_session_connect_cont (void *cls,
1656                       const struct GNUNET_PeerIdentity *target,
1657                       int result,
1658                       size_t size_payload,
1659                       size_t size_on_wire)
1660 {
1661   struct NeighbourMapEntry *n;
1662
1663   n = lookup_neighbour (target);
1664   if (NULL == n)
1665   {
1666     /* CONNECT continuation was called after neighbor was freed,
1667      * for example due to a time out for the state or the session
1668      * used was already terminated: nothing to do here... */
1669     return;
1670   }
1671
1672   if ( (GNUNET_TRANSPORT_PS_CONNECT_SENT != n->state) &&
1673        (GNUNET_TRANSPORT_PS_RECONNECT_SENT != n->state) &&
1674        (GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT != n->state))
1675   {
1676     /* CONNECT continuation was called after neighbor changed state,
1677      * for example due to a time out for the state or the session
1678      * used was already terminated: nothing to do here... */
1679     return;
1680   }
1681   if (GNUNET_OK == result)
1682     return;
1683
1684   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1685             _("Failed to send CONNECT message to peer `%s' using address `%s' session %p\n"),
1686             GNUNET_i2s (target),
1687             GST_plugins_a2s (n->primary_address.address),
1688             n->primary_address.session);
1689
1690   switch (n->state) {
1691   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
1692     /* Remove address and request and additional one */
1693     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
1694         n->primary_address.session);
1695     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL );
1696     unset_primary_address (n);
1697     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
1698         GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
1699     break;
1700   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
1701     /* Remove address and request and additional one */
1702     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
1703         n->primary_address.session);
1704     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL );
1705     unset_primary_address (n);
1706     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
1707         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1708     break;
1709   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
1710     /* Remove address and request and go back to primary address */
1711     GNUNET_STATISTICS_update (GST_stats, gettext_noop
1712         ("# Failed attempts to switch addresses (failed to send CONNECT CONT)"), 1, GNUNET_NO);
1713     GNUNET_ATS_address_destroyed (GST_ats, n->alternative_address.address,
1714         n->alternative_address.session);
1715     GNUNET_ATS_address_destroyed (GST_ats, n->alternative_address.address,
1716         NULL );
1717     unset_alternative_address (n);
1718     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
1719         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1720     break;
1721   default:
1722     disconnect_neighbour (n);
1723     break;
1724   }
1725 }
1726
1727 /**
1728  * Send a SESSION_CONNECT message via the given address.
1729  *
1730  * @param na address to use
1731  */
1732 static void
1733 send_session_connect (struct NeighbourAddress *na)
1734 {
1735   struct GNUNET_TRANSPORT_PluginFunctions *papi;
1736   struct SessionConnectMessage connect_msg;
1737   struct NeighbourMapEntry *n;
1738
1739   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1740               "Sending SESSION_CONNECT message to peer `%s'\n",
1741               GNUNET_i2s (&na->address->peer));
1742
1743   if (NULL == (papi = GST_plugins_find (na->address->transport_name)))
1744   {
1745     GNUNET_break (0);
1746     return;
1747   }
1748   if (NULL == na->session)
1749     na->session = papi->get_session (papi->cls, na->address);
1750   if (NULL == na->session)
1751   {
1752     GNUNET_break (0);
1753     return;
1754   }
1755   GNUNET_STATISTICS_update (GST_stats,
1756                             gettext_noop
1757                             ("# SESSION_CONNECT messages sent"),
1758                             1, GNUNET_NO);
1759   na->connect_timestamp = GNUNET_TIME_absolute_get ();
1760   connect_msg.header.size = htons (sizeof (struct SessionConnectMessage));
1761   connect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT);
1762   connect_msg.reserved = htonl (0);
1763   connect_msg.timestamp = GNUNET_TIME_absolute_hton (na->connect_timestamp);
1764   if (-1 ==
1765       papi->send (papi->cls,
1766                   na->session,
1767                   (const char *) &connect_msg, sizeof (struct SessionConnectMessage),
1768                   UINT_MAX,
1769                   SETUP_CONNECTION_TIMEOUT,
1770                   send_session_connect_cont, NULL))
1771   {
1772     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1773                 _("Failed to transmit CONNECT message via plugin to %s\n"),
1774                 GST_plugins_a2s (na->address));
1775
1776     n = lookup_neighbour (&na->address->peer);
1777     if (NULL == n)
1778     {
1779       GNUNET_break (0);
1780       return;
1781     }
1782
1783     switch (n->state) {
1784       case GNUNET_TRANSPORT_PS_CONNECT_SENT:
1785         /* Remove address and request and additional one */
1786         unset_primary_address (n);
1787         set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
1788           GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
1789         /* Hard failure to send the CONNECT message with this address:
1790            Destroy address and session */
1791         break;
1792       case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
1793         /* Remove address and request and additional one */
1794         unset_primary_address (n);
1795         set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
1796           GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1797         break;
1798       case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
1799         GNUNET_STATISTICS_update (GST_stats, gettext_noop
1800             ("# Failed attempts to switch addresses (failed to send CONNECT)"), 1, GNUNET_NO);
1801         /* Remove address and request and additional one */
1802         unset_alternative_address (n);
1803         set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
1804           GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1805         break;
1806       default:
1807         disconnect_neighbour (n);
1808         break;
1809     }
1810     GNUNET_ATS_address_destroyed (GST_ats, na->address, na->session);
1811     GNUNET_ATS_address_destroyed (GST_ats, na->address, NULL);
1812   }
1813   GST_neighbours_notify_data_sent (&na->address->peer,
1814                                    na->address,
1815                                    na->session,
1816                                    sizeof (struct SessionConnectMessage));
1817 }
1818
1819
1820 static void
1821 send_session_connect_ack_cont (void *cls,
1822                       const struct GNUNET_PeerIdentity *target,
1823                       int result,
1824                       size_t size_payload,
1825                       size_t size_on_wire)
1826 {
1827   struct NeighbourMapEntry *n;
1828
1829   n = lookup_neighbour (target);
1830   if (NULL == n)
1831   {
1832     /* CONNECT_ACK continuation was called after neighbor was freed,
1833      * for example due to a time out for the state or the session
1834      * used was already terminated: nothing to do here... */
1835     return;
1836   }
1837
1838   if (GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK != n->state)
1839   {
1840     /* CONNECT_ACK continuation was called after neighbor changed state,
1841      * for example due to a time out for the state or the session
1842      * used was already terminated: nothing to do here... */
1843     return;
1844   }
1845   if (GNUNET_OK == result)
1846     return;
1847
1848   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1849             _("Failed to send CONNECT_ACK message to peer `%s' using address `%s' session %p\n"),
1850             GNUNET_i2s (target),
1851             GST_plugins_a2s (n->primary_address.address),
1852             n->primary_address.session);
1853
1854   /* Failed to send CONNECT_ACK message with this address */
1855   GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
1856       n->primary_address.session);
1857   GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
1858       NULL);
1859
1860   /* Remove address and request and additional one */
1861   unset_primary_address (n);
1862   n->ack_state = ACK_SEND_CONNECT_ACK;
1863   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
1864       GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1865   return;
1866 }
1867
1868
1869 /**
1870  * Send a CONNECT_ACK message via the given address.
1871  *
1872  * @param address address to use
1873  * @param session session to use
1874  * @param timestamp timestamp to use for the ACK message
1875  * @return GNUNET_SYSERR if sending immediately failed, GNUNET_OK otherwise
1876  */
1877 static void
1878 send_connect_ack_message (const struct GNUNET_HELLO_Address *address,
1879                                   struct Session *session,
1880                                   struct GNUNET_TIME_Absolute timestamp)
1881 {
1882   struct GNUNET_TRANSPORT_PluginFunctions *papi;
1883   struct SessionConnectMessage connect_msg;
1884   struct NeighbourMapEntry *n;
1885
1886   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1887               "Sending CONNECT_ACK to peer `%s'\n",
1888               GNUNET_i2s (&address->peer));
1889
1890   if (NULL == (papi = GST_plugins_find (address->transport_name)))
1891   {
1892     GNUNET_break (0);
1893     return;
1894   }
1895   if (NULL == session)
1896     session = papi->get_session (papi->cls, address);
1897   if (NULL == session)
1898   {
1899     GNUNET_break (0);
1900     return;
1901   }
1902   GNUNET_STATISTICS_update (GST_stats,
1903                             gettext_noop
1904                             ("# CONNECT_ACK messages sent"),
1905                             1, GNUNET_NO);
1906   connect_msg.header.size = htons (sizeof (struct SessionConnectMessage));
1907   connect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT_ACK);
1908   connect_msg.reserved = htonl (0);
1909   connect_msg.timestamp = GNUNET_TIME_absolute_hton (timestamp);
1910
1911   if (GNUNET_SYSERR == papi->send (papi->cls,
1912                      session,
1913                      (const char *) &connect_msg, sizeof (struct SessionConnectMessage),
1914                      UINT_MAX,
1915                      GNUNET_TIME_UNIT_FOREVER_REL,
1916                      send_session_connect_ack_cont, NULL))
1917   {
1918     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1919                 _("Failed to transmit CONNECT_ACK message via plugin to %s\n"),
1920                 GST_plugins_a2s (address));
1921
1922     n = lookup_neighbour (&address->peer);
1923     if (NULL == n)
1924     {
1925       GNUNET_break (0);
1926       return;
1927     }
1928     /* Hard failure to send the CONNECT_ACK message with this address:
1929        Destroy session (and address)  */
1930     if (GNUNET_YES == GNUNET_HELLO_address_check_option(address,
1931         GNUNET_HELLO_ADDRESS_INFO_INBOUND))
1932     {
1933       GNUNET_ATS_address_destroyed (GST_ats, address, session);
1934       GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
1935     }
1936     else
1937       GNUNET_ATS_address_destroyed (GST_ats, address, session);
1938
1939     /* Remove address and request and additional one */
1940     unset_primary_address (n);
1941     n->ack_state = ACK_SEND_CONNECT_ACK;
1942     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
1943         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1944     return;
1945   }
1946
1947 }
1948
1949 struct QuotaNotificationRequest
1950 {
1951   struct GNUNET_PeerIdentity peer;
1952   struct Session *session;
1953   char *plugin;
1954 };
1955
1956 struct QNR_LookContext
1957 {
1958   struct GNUNET_PeerIdentity peer;
1959   struct Session *session;
1960   const char *plugin;
1961
1962   struct QuotaNotificationRequest *res;
1963 };
1964
1965 static int
1966 find_notification_request (void *cls, const struct GNUNET_PeerIdentity *key, void *value)
1967 {
1968   struct QNR_LookContext *qnr_ctx = cls;
1969   struct QuotaNotificationRequest *qnr = value;
1970
1971   if ((qnr->session == qnr_ctx->session) &&
1972       (0 == memcmp (&qnr->peer, &qnr_ctx->peer, sizeof (struct GNUNET_PeerIdentity))) &&
1973       (0 == strcmp(qnr_ctx->plugin, qnr->plugin)))
1974   {
1975     qnr_ctx->res = value;
1976     return GNUNET_NO;
1977   }
1978   return GNUNET_YES;
1979 }
1980
1981 void
1982 GST_neighbours_register_quota_notification(void *cls,
1983     const struct GNUNET_PeerIdentity *peer, const char *plugin,
1984     struct Session *session)
1985 {
1986   struct QuotaNotificationRequest *qnr;
1987   struct QNR_LookContext qnr_ctx;
1988
1989   if (NULL == registered_quota_notifications)
1990   {
1991     return; /* init or shutdown */
1992   }
1993
1994   qnr_ctx.peer = (*peer);
1995   qnr_ctx.plugin = plugin;
1996   qnr_ctx.session = session;
1997   qnr_ctx.res = NULL;
1998
1999   GNUNET_CONTAINER_multipeermap_get_multiple (registered_quota_notifications,
2000       peer, &find_notification_request, &qnr_ctx);
2001   if (NULL != qnr_ctx.res)
2002   {
2003     GNUNET_break(0);
2004     return;
2005   }
2006
2007   qnr = GNUNET_new (struct QuotaNotificationRequest);
2008   qnr->peer =  (*peer);
2009   qnr->plugin = GNUNET_strdup (plugin);
2010   qnr->session = session;
2011
2012   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2013       "Adding notification for peer `%s' plugin `%s' session %p \n",
2014       GNUNET_i2s (peer), plugin, session);
2015
2016   GNUNET_CONTAINER_multipeermap_put (registered_quota_notifications, peer,
2017       qnr, GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2018 }
2019
2020
2021 void
2022 GST_neighbours_unregister_quota_notification(void *cls,
2023     const struct GNUNET_PeerIdentity *peer, const char *plugin, struct Session *session)
2024 {
2025   struct QNR_LookContext qnr_ctx;
2026
2027   if (NULL == registered_quota_notifications)
2028   {
2029     return; /* init or shutdown */
2030   }
2031
2032   qnr_ctx.peer = (*peer);
2033   qnr_ctx.plugin = plugin;
2034   qnr_ctx.session = session;
2035   qnr_ctx.res = NULL;
2036
2037   GNUNET_CONTAINER_multipeermap_iterate (registered_quota_notifications,
2038       &find_notification_request, &qnr_ctx);
2039   if (NULL == qnr_ctx.res)
2040   {
2041     GNUNET_break(0);
2042     return;
2043   }
2044
2045   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2046       "Removing notification for peer `%s' plugin `%s' session %p \n",
2047       GNUNET_i2s (peer), plugin, session);
2048
2049   GNUNET_CONTAINER_multipeermap_remove (registered_quota_notifications, peer,
2050       qnr_ctx.res);
2051   GNUNET_free (qnr_ctx.res->plugin);
2052   GNUNET_free (qnr_ctx.res);
2053 }
2054
2055 static int
2056 notification_cb(void *cls, const struct GNUNET_PeerIdentity *key, void *value)
2057 {
2058   /* struct NeighbourMapEntry *n = cls; */
2059   struct QuotaNotificationRequest *qnr = value;
2060   struct GNUNET_TRANSPORT_PluginFunctions *papi;
2061   struct GNUNET_TIME_Relative delay;
2062   int do_forward;
2063
2064   papi = GST_plugins_find(qnr->plugin);
2065   if (NULL == papi)
2066   {
2067     GNUNET_break (0);
2068     return GNUNET_OK;
2069   }
2070
2071   delay = GST_neighbours_calculate_receive_delay (key, 0, &do_forward);
2072   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2073       "New inbound delay for peer `%s' is %llu ms\n", GNUNET_i2s (key),
2074       delay.rel_value_us / 1000);
2075
2076   if (NULL != papi->update_inbound_delay)
2077     papi->update_inbound_delay (papi->cls, key, qnr->session, delay);
2078   return GNUNET_OK;
2079 }
2080
2081 static int
2082 free_notification_cb(void *cls, const struct GNUNET_PeerIdentity *key,
2083     void *value)
2084 {
2085   /* struct NeighbourMapEntry *n = cls; */
2086   struct QuotaNotificationRequest *qnr = value;
2087
2088   GNUNET_break (GNUNET_OK == GNUNET_CONTAINER_multipeermap_remove (registered_quota_notifications, key,
2089       qnr));
2090   GNUNET_free(qnr->plugin);
2091   GNUNET_free(qnr);
2092
2093   return GNUNET_OK;
2094 }
2095
2096 static void
2097 inbound_bw_tracker_update(void *cls)
2098 {
2099   struct NeighbourMapEntry *n = cls;
2100
2101   /* Quota was updated, tell plugins to update the time to receive next */
2102   GNUNET_CONTAINER_multipeermap_get_multiple (registered_quota_notifications,
2103       &n->id, &notification_cb, n);
2104 }
2105
2106
2107 /**
2108  * Create a fresh entry in the neighbour map for the given peer
2109  *
2110  * @param peer peer to create an entry for
2111  * @return new neighbour map entry
2112  */
2113 static struct NeighbourMapEntry *
2114 setup_neighbour (const struct GNUNET_PeerIdentity *peer)
2115 {
2116   struct NeighbourMapEntry *n;
2117
2118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2119               "Creating new neighbour entry for `%s'\n",
2120               GNUNET_i2s (peer));
2121   n = GNUNET_new (struct NeighbourMapEntry);
2122   n->id = *peer;
2123   n->ack_state = ACK_UNDEFINED;
2124   n->latency = GNUNET_TIME_UNIT_FOREVER_REL;
2125   n->last_util_transmission = GNUNET_TIME_absolute_get();
2126   n->util_payload_bytes_recv = 0;
2127   n->util_payload_bytes_sent = 0;
2128   n->util_total_bytes_recv = 0;
2129   n->util_total_bytes_sent = 0;
2130   GNUNET_BANDWIDTH_tracker_init (&n->in_tracker, &inbound_bw_tracker_update, n,
2131                                  GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
2132                                  MAX_BANDWIDTH_CARRY_S);
2133   n->task = GNUNET_SCHEDULER_add_now (&master_task, n);
2134   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_NOT_CONNECTED, GNUNET_TIME_UNIT_FOREVER_ABS);
2135   GNUNET_assert (GNUNET_OK ==
2136                  GNUNET_CONTAINER_multipeermap_put (neighbours,
2137                                                     &n->id, n,
2138                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2139   return n;
2140 }
2141
2142 /* We received a address suggestion after requesting an address in
2143  * try_connect or after receiving a connect, switch to address
2144  */
2145 static void
2146 address_suggest_cont (void *cls,
2147     const struct GNUNET_PeerIdentity *peer,
2148     const struct GNUNET_HELLO_Address *address, struct Session *session,
2149     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
2150     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
2151     const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
2152 {
2153   GST_neighbours_switch_to_address(peer, address, session, ats, ats_count,
2154       bandwidth_in, bandwidth_out);
2155 }
2156
2157
2158 struct BlacklistCheckSwitchContext
2159 {
2160   struct BlacklistCheckSwitchContext *prev;
2161   struct BlacklistCheckSwitchContext *next;
2162
2163
2164   struct GST_BlacklistCheck *blc;
2165
2166   struct GNUNET_HELLO_Address *address;
2167   struct Session *session;
2168   struct GNUNET_ATS_Information *ats;
2169   uint32_t ats_count;
2170
2171   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in;
2172   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out;
2173 };
2174
2175 /**
2176  * Black list check result for try_connect call
2177  * If connection to the peer is allowed request adddress and
2178  *
2179  * @param cls blc_ctx bl context
2180  * @param peer the peer
2181  * @param result the result
2182  */
2183 static void
2184 try_connect_bl_check_cont (void *cls,
2185     const struct GNUNET_PeerIdentity *peer, int result)
2186 {
2187   struct BlacklistCheckSwitchContext *blc_ctx = cls;
2188   struct NeighbourMapEntry *n;
2189
2190   GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2191   GNUNET_free (blc_ctx);
2192
2193   if (GNUNET_OK != result)
2194   {
2195     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2196         _("Blacklisting disapproved to connect to peer `%s'\n"),
2197         GNUNET_i2s (peer));
2198     return;
2199   }
2200
2201   /* Setup a new neighbour */
2202   n = setup_neighbour (peer);
2203
2204   /* Request address suggestions for this peer */
2205   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
2206       GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2207   GNUNET_ATS_reset_backoff (GST_ats, peer);
2208   n->suggest_handle = GNUNET_ATS_suggest_address (GST_ats, peer,
2209       &address_suggest_cont, n);
2210 }
2211
2212
2213
2214 /**
2215  * Try to create a connection to the given target (eventually).
2216  *
2217  * @param target peer to try to connect to
2218  */
2219 void
2220 GST_neighbours_try_connect (const struct GNUNET_PeerIdentity *target)
2221 {
2222   struct NeighbourMapEntry *n;
2223   struct GST_BlacklistCheck *blc;
2224   struct BlacklistCheckSwitchContext *blc_ctx;
2225
2226   if (NULL == neighbours)
2227   {
2228     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2229                 "Asked to connect to peer `%s' during shutdown\n",
2230                 GNUNET_i2s (target));
2231     return; /* during shutdown, do nothing */
2232   }
2233   n = lookup_neighbour (target);
2234   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2235               "Asked to connect to peer `%s' (state: %s)\n",
2236               GNUNET_i2s (target),
2237               (NULL != n) ? GNUNET_TRANSPORT_ps2s(n->state) : "NEW PEER");
2238   if (NULL != n)
2239   {
2240     switch (n->state)
2241     {
2242     case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2243       /* this should not be possible */
2244       GNUNET_break (0);
2245       free_neighbour (n, GNUNET_NO);
2246       break;
2247     case GNUNET_TRANSPORT_PS_INIT_ATS:
2248     case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2249     case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2250     case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2251       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2252                   "Ignoring request to try to connect to `%s', already trying!\n",
2253                   GNUNET_i2s (target));
2254       return; /* already trying */
2255     case GNUNET_TRANSPORT_PS_CONNECTED:
2256     case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2257     case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
2258     case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
2259       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2260                   "Ignoring request to try to connect, already connected to `%s'!\n",
2261                   GNUNET_i2s (target));
2262       return; /* already connected */
2263     case GNUNET_TRANSPORT_PS_DISCONNECT:
2264       /* get rid of remains, ready to re-try immediately */
2265       free_neighbour (n, GNUNET_NO);
2266       break;
2267     case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
2268       /* should not be possible */
2269       GNUNET_assert (0);
2270       return;
2271     default:
2272       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2273                   "Unhandled state `%s'\n",
2274                   GNUNET_TRANSPORT_ps2s (n->state));
2275       GNUNET_break (0);
2276       free_neighbour (n, GNUNET_NO);
2277       break;
2278     }
2279   }
2280
2281   /* Do blacklist check if connecting to this peer is allowed */
2282   blc_ctx = GNUNET_new (struct BlacklistCheckSwitchContext);
2283   GNUNET_CONTAINER_DLL_insert (pending_bc_head, pending_bc_tail, blc_ctx);
2284
2285   if (NULL != (blc = GST_blacklist_test_allowed (target, NULL,
2286         &try_connect_bl_check_cont, blc_ctx)))
2287   {
2288     blc_ctx->blc = blc;
2289   }
2290 }
2291
2292
2293 /**
2294  * We received a 'SESSION_CONNECT' message from the other peer.
2295  * Consider switching to it.
2296  *
2297  * @param message possibly a 'struct SessionConnectMessage' (check format)
2298  * @param peer identity of the peer to switch the address for
2299  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
2300  */
2301 int
2302 GST_neighbours_handle_connect (const struct GNUNET_MessageHeader *message,
2303                                const struct GNUNET_PeerIdentity *peer)
2304 {
2305   const struct SessionConnectMessage *scm;
2306   struct NeighbourMapEntry *n;
2307   struct GNUNET_TIME_Absolute ts;
2308
2309   if (ntohs (message->size) != sizeof (struct SessionConnectMessage))
2310   {
2311     GNUNET_break_op (0);
2312     return GNUNET_SYSERR;
2313   }
2314   GNUNET_STATISTICS_update (GST_stats,
2315                             gettext_noop
2316                             ("# CONNECT messages received"),
2317                             1, GNUNET_NO);
2318   if (NULL == neighbours)
2319   {
2320     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2321                 _("CONNECT request from peer `%s' ignored due impending shutdown\n"),
2322                 GNUNET_i2s (peer));
2323     return GNUNET_OK; /* we're shutting down */
2324   }
2325   scm = (const struct SessionConnectMessage *) message;
2326   GNUNET_break_op (0 == ntohl (scm->reserved));
2327   ts = GNUNET_TIME_absolute_ntoh (scm->timestamp);
2328   n = lookup_neighbour (peer);
2329   if (NULL == n)
2330   {
2331     /* This is a new neighbour and set to not connected */
2332     n = setup_neighbour (peer);
2333   }
2334
2335   /* Remember this CONNECT message in neighbour */
2336   n->ack_state = ACK_SEND_CONNECT_ACK;
2337   n->connect_ack_timestamp = ts;
2338
2339   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2340               "Received CONNECT for peer `%s' in state %s/%s\n",
2341               GNUNET_i2s (peer),
2342               GNUNET_TRANSPORT_ps2s (n->state),
2343               print_ack_state (n->ack_state));
2344
2345   switch (n->state)
2346   {
2347   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2348     /* Request an address from ATS to send CONNECT_ACK to this peer */
2349     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
2350         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2351     if (NULL == n->suggest_handle)
2352       GNUNET_ATS_suggest_address (GST_ats, peer, address_suggest_cont, n);
2353     break;
2354   case GNUNET_TRANSPORT_PS_INIT_ATS:
2355     /* CONNECT message takes priority over us asking ATS for address:
2356      * Wait for ATS to suggest an address and send CONNECT_ACK */
2357     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
2358         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2359     break;
2360   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2361     /* We already wait for an address to send an CONNECT_ACK */
2362     break;
2363   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2364   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2365     /* Send ACK immediately */
2366     n->ack_state = ACK_SEND_SESSION_ACK;
2367     send_connect_ack_message (n->primary_address.address,
2368                               n->primary_address.session, ts);
2369     break;
2370   case GNUNET_TRANSPORT_PS_CONNECTED:
2371     /* we are already connected and can thus send the ACK immediately */
2372     GNUNET_assert (NULL != n->primary_address.address);
2373     GNUNET_assert (NULL != n->primary_address.session);
2374     n->ack_state = ACK_SEND_SESSION_ACK;
2375     send_connect_ack_message (n->primary_address.address,
2376                               n->primary_address.session, ts);
2377     break;
2378   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2379     /* We wait for ATS address suggestion */
2380     break;
2381   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
2382     /* We received a CONNECT message while waiting for a CONNECT_ACK in fast
2383      * reconnect. Send CONNECT_ACK immediately */
2384     n->ack_state = ACK_SEND_SESSION_ACK;
2385     send_connect_ack_message (n->primary_address.address,
2386         n->primary_address.session, n->connect_ack_timestamp);
2387     break;
2388   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
2389     /* We are already connected and can thus send the ACK immediately;
2390        still, it can never hurt to have an alternative address, so also
2391        tell ATS  about it */
2392     GNUNET_assert (NULL != n->primary_address.address);
2393     GNUNET_assert (NULL != n->primary_address.session);
2394     n->ack_state = ACK_SEND_SESSION_ACK;
2395     send_connect_ack_message (n->primary_address.address,
2396         n->primary_address.session, ts);
2397     break;
2398   case GNUNET_TRANSPORT_PS_DISCONNECT:
2399     /* Get rid of remains without terminating sessions, ready to re-try */
2400     free_neighbour (n, GNUNET_YES);
2401     n = setup_neighbour (peer);
2402     /* Remember the CONNECT time stamp for ACK message */
2403     n->ack_state = ACK_SEND_CONNECT_ACK;
2404     n->connect_ack_timestamp = ts;
2405     /* Request an address for the peer */
2406     GNUNET_ATS_suggest_address (GST_ats, peer, address_suggest_cont, n);
2407     GNUNET_ATS_reset_backoff (GST_ats, peer);
2408     set_state (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS);
2409     break;
2410   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
2411     /* should not be possible */
2412     GNUNET_assert (0);
2413     break;
2414   default:
2415     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2416                 "Unhandled state `%s'\n",
2417                 GNUNET_TRANSPORT_ps2s (n->state));
2418     GNUNET_break (0);
2419     return GNUNET_SYSERR;
2420   }
2421   return GNUNET_OK;
2422 }
2423
2424 static void
2425 switch_address_bl_check_cont (void *cls,
2426     const struct GNUNET_PeerIdentity *peer, int result)
2427 {
2428   struct BlacklistCheckSwitchContext *blc_ctx = cls;
2429   struct GNUNET_TRANSPORT_PluginFunctions *papi;
2430   struct NeighbourMapEntry *n;
2431
2432   papi = GST_plugins_find (blc_ctx->address->transport_name);
2433
2434   if ( (NULL == (n = lookup_neighbour (peer))) || (result == GNUNET_NO) ||
2435        (NULL == (papi)) )
2436   {
2437     if (NULL == n)
2438     {
2439       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2440                   "Peer %s is unknown, suggestion ignored\n",
2441                   GNUNET_i2s (peer));
2442     }
2443     if (result == GNUNET_NO)
2444     {
2445       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2446           "Blacklist denied to switch to suggested address `%s' session %p for peer `%s'\n",
2447           GST_plugins_a2s (blc_ctx->address),
2448           blc_ctx->session,
2449           GNUNET_i2s (&blc_ctx->address->peer));
2450     }
2451     if (NULL == papi)
2452     {
2453       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2454           "Plugin `%s' for suggested address `%s' session %p for peer `%s' is not available\n",
2455           blc_ctx->address->transport_name,
2456           GST_plugins_a2s (blc_ctx->address),
2457           blc_ctx->session,
2458           GNUNET_i2s (&blc_ctx->address->peer));
2459     }
2460
2461     /* This address is blacklisted, delete address and session (if existing) in ATS */
2462     GNUNET_ATS_address_destroyed (GST_ats, blc_ctx->address, blc_ctx->session);
2463
2464     if ( (GNUNET_YES == (GNUNET_HELLO_address_check_option (blc_ctx->address,
2465           GNUNET_HELLO_ADDRESS_INFO_INBOUND))) && (NULL != blc_ctx->session))
2466     {
2467       /* This is an inbound address, destroy full  address */
2468       GNUNET_ATS_address_destroyed (GST_ats, blc_ctx->address, NULL );
2469     }
2470
2471     /* Remove blacklist check and clean up */
2472     GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2473     GNUNET_HELLO_address_free (blc_ctx->address);
2474     GNUNET_free_non_null (blc_ctx->ats);
2475     GNUNET_free (blc_ctx);
2476     return;
2477   }
2478
2479   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2480       "Blacklist accepted address `%s' session %p for peer `%s'\n",
2481       GST_plugins_a2s (blc_ctx->address),
2482       blc_ctx->session,
2483       GNUNET_i2s (&blc_ctx->address->peer));
2484
2485   if (NULL == blc_ctx->session)
2486   {
2487     blc_ctx->session = papi->get_session (papi->cls, blc_ctx->address);
2488     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2489                 "Obtained new session for peer `%s' and  address '%s': %p\n",
2490                 GNUNET_i2s (&blc_ctx->address->peer), GST_plugins_a2s (blc_ctx->address), blc_ctx->session);
2491   }
2492   if (NULL == blc_ctx->session)
2493   {
2494     /* No session could be obtained, remove blacklist check and clean up */
2495     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2496                 "Failed to obtain new session for peer `%s' and  address '%s'\n",
2497                 GNUNET_i2s (&blc_ctx->address->peer),
2498                 GST_plugins_a2s (blc_ctx->address));
2499     /* Delete address in ATS */
2500     GNUNET_ATS_address_destroyed (GST_ats, blc_ctx->address, NULL);
2501
2502     GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2503     GNUNET_HELLO_address_free (blc_ctx->address);
2504     GNUNET_free_non_null (blc_ctx->ats);
2505     GNUNET_free (blc_ctx);
2506     return;
2507   }
2508
2509   switch (n->state)
2510   {
2511   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2512     GNUNET_break (0);
2513     free_neighbour (n, GNUNET_NO);
2514     return;
2515   case GNUNET_TRANSPORT_PS_INIT_ATS:
2516     /* We requested an address and ATS suggests one:
2517      * set primary address and send CONNECT message*/
2518     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2519         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2520     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) )
2521     {
2522       /* Send pending CONNECT_ACK message */
2523       n->ack_state = ACK_SEND_SESSION_ACK;
2524       send_connect_ack_message (n->primary_address.address,
2525           n->primary_address.session, n->connect_ack_timestamp);
2526     }
2527     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_SENT,
2528         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2529     send_session_connect (&n->primary_address);
2530     break;
2531   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2532     /* ATS suggested a new address while waiting for an CONNECT_ACK:
2533      * Switch and send new CONNECT */
2534     /* ATS suggests a different address, switch again */
2535     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2536         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2537     if (ACK_SEND_CONNECT_ACK == n->ack_state)
2538     {
2539       /* Send pending CONNECT_ACK message */
2540       n->ack_state = ACK_SEND_SESSION_ACK;
2541       send_connect_ack_message (n->primary_address.address,
2542           n->primary_address.session, n->connect_ack_timestamp);
2543     }
2544     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_SENT,
2545         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2546     send_session_connect (&n->primary_address);
2547     break;
2548   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2549     /* We requested an address and ATS suggests one:
2550      * set primary address and send CONNECT_ACK message*/
2551     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2552         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2553     /* Send an ACK message as a response to the CONNECT msg */
2554     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK,
2555         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2556     send_connect_ack_message (n->primary_address.address,
2557                               n->primary_address.session,
2558                               n->connect_ack_timestamp);
2559     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) ||
2560          (ACK_UNDEFINED == n->ack_state) )
2561       n->ack_state = ACK_SEND_SESSION_ACK;
2562     break;
2563   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2564     /* ATS asks us to switch while we were trying to connect; switch to new
2565        address and check blacklist again */
2566     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) )
2567     {
2568       n->ack_state = ACK_SEND_SESSION_ACK;
2569       send_connect_ack_message (n->primary_address.address,
2570           n->primary_address.session, n->connect_ack_timestamp);
2571     }
2572     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2573         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2574     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK,
2575         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2576     break;
2577   case GNUNET_TRANSPORT_PS_CONNECTED:
2578     GNUNET_assert (NULL != n->primary_address.address);
2579     GNUNET_assert (NULL != n->primary_address.session);
2580     if (n->primary_address.session == blc_ctx->session)
2581     {
2582       /* not an address change, just a quota change */
2583       set_primary_address (n, blc_ctx->address, blc_ctx->session,
2584           blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_YES);
2585       break;
2586     }
2587     /* ATS asks us to switch a life connection; see if we can get
2588        a CONNECT_ACK on it before we actually do this! */
2589     set_alternative_address (n, blc_ctx->address, blc_ctx->session,
2590         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out);
2591     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT,
2592         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2593     GNUNET_STATISTICS_update (GST_stats, gettext_noop
2594         ("# Attempts to switch addresses"), 1, GNUNET_NO);
2595     send_session_connect (&n->alternative_address);
2596     break;
2597   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2598     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2599         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2600     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) )
2601     {
2602       /* Send pending CONNECT_ACK message */
2603       n->ack_state = ACK_SEND_SESSION_ACK;
2604       send_connect_ack_message (n->primary_address.address,
2605           n->primary_address.session, n->connect_ack_timestamp);
2606     }
2607     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_SENT,
2608         GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
2609     send_session_connect (&n->primary_address);
2610     break;
2611   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
2612     /* ATS asks us to switch while we were trying to reconnect; switch to new
2613        address and send CONNECT again */
2614     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2615         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2616     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_SENT,
2617         GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
2618     send_session_connect (&n->primary_address);
2619     break;
2620   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
2621     if ( (0 == GNUNET_HELLO_address_cmp(n->primary_address.address,
2622         blc_ctx->address) && n->primary_address.session == blc_ctx->session) )
2623     {
2624       /* ATS switches back to still-active session */
2625       free_address (&n->alternative_address);
2626       set_state (n, GNUNET_TRANSPORT_PS_CONNECTED);
2627       break;
2628     }
2629     /* ATS asks us to switch a life connection, send */
2630     set_alternative_address (n, blc_ctx->address, blc_ctx->session,
2631         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out);
2632     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT,
2633         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2634     send_session_connect (&n->alternative_address);
2635     break;
2636   case GNUNET_TRANSPORT_PS_DISCONNECT:
2637     /* not going to switch addresses while disconnecting */
2638     return;
2639   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
2640     GNUNET_assert (0);
2641     break;
2642   default:
2643     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2644                 "Unhandled state `%s'\n",
2645                 GNUNET_TRANSPORT_ps2s (n->state));
2646     GNUNET_break (0);
2647     break;
2648   }
2649
2650   GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2651   GNUNET_HELLO_address_free(blc_ctx->address);
2652   GNUNET_free_non_null (blc_ctx->ats);
2653   GNUNET_free (blc_ctx);
2654   return;
2655 }
2656
2657
2658 /**
2659  * For the given peer, switch to this address.
2660  *
2661  * Before accepting this addresses and actively using it, a blacklist check
2662  * is performed. If this blacklist check fails the address will be destroyed.
2663  *
2664  * @param peer identity of the peer to switch the address for
2665  * @param address address of the other peer,
2666  * @param session session to use or NULL if transport should initiate a session
2667  * @param ats performance data
2668  * @param ats_count number of entries in ats
2669  * @param bandwidth_in inbound quota to be used when connection is up,
2670  *      0 to disconnect from peer
2671  * @param bandwidth_out outbound quota to be used when connection is up,
2672  *      0 to disconnect from peer
2673  */
2674 void
2675 GST_neighbours_switch_to_address (const struct GNUNET_PeerIdentity *peer,
2676                                   const struct GNUNET_HELLO_Address *address,
2677                                   struct Session *session,
2678                                   const struct GNUNET_ATS_Information *ats,
2679                                   uint32_t ats_count,
2680                                   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
2681                                   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
2682 {
2683   struct NeighbourMapEntry *n;
2684   struct GST_BlacklistCheck *blc;
2685   struct BlacklistCheckSwitchContext *blc_ctx;
2686   int c;
2687
2688   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2689               "ATS has decided on an address for peer %s\n",
2690               GNUNET_i2s (peer));
2691   GNUNET_assert (NULL != address->transport_name);
2692   if (NULL == (n = lookup_neighbour (peer)))
2693   {
2694     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2695                 "Peer %s is unknown, suggestion ignored\n",
2696                 GNUNET_i2s (peer));
2697     return;
2698   }
2699
2700   /* Check if plugin is available */
2701   if (NULL == (GST_plugins_find (address->transport_name)))
2702   {
2703     /* we don't have the plugin for this address */
2704     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2705                 "Plugin `%s' is unknown, suggestion for peer %s ignored\n",
2706                 address->transport_name,
2707                 GNUNET_i2s (peer));
2708     GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
2709     return;
2710   }
2711   if ((NULL == session) &&
2712       (GNUNET_HELLO_address_check_option (address, GNUNET_HELLO_ADDRESS_INFO_INBOUND)))
2713   {
2714     /* This is a inbound address and we do not have a session to use! */
2715     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2716                 "Inbound address without session `%s'! Destroying address...\n",
2717                 GST_plugins_a2s (address));
2718     GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
2719     return;
2720   }
2721
2722   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2723     "ATS suggests %s address '%s' session %p for "
2724     "peer `%s' in state %s/%s (quota in/out %u %u )\n",
2725     GNUNET_HELLO_address_check_option (address,
2726         GNUNET_HELLO_ADDRESS_INFO_INBOUND) ? "inbound" : "outbound",
2727     GST_plugins_a2s (address), session, GNUNET_i2s (peer),
2728     GNUNET_TRANSPORT_ps2s (n->state), print_ack_state (n->ack_state),
2729     ntohl (bandwidth_in.value__), ntohl (bandwidth_out.value__));
2730
2731   /* Perform blacklist check */
2732   blc_ctx = GNUNET_new (struct BlacklistCheckSwitchContext);
2733   blc_ctx->address = GNUNET_HELLO_address_copy (address);
2734   blc_ctx->session = session;
2735   blc_ctx->bandwidth_in = bandwidth_in;
2736   blc_ctx->bandwidth_out = bandwidth_out;
2737   blc_ctx->ats_count = ats_count;
2738   blc_ctx->ats = NULL;
2739   if (ats_count > 0)
2740   {
2741     blc_ctx->ats = GNUNET_malloc (ats_count * sizeof (struct GNUNET_ATS_Information));
2742     for (c = 0; c < ats_count; c++)
2743     {
2744       blc_ctx->ats[c].type = ats[c].type;
2745       blc_ctx->ats[c].value = ats[c].value;
2746     }
2747   }
2748
2749   GNUNET_CONTAINER_DLL_insert (pending_bc_head, pending_bc_tail, blc_ctx);
2750   if (NULL != (blc = GST_blacklist_test_allowed (peer, address->transport_name,
2751       &switch_address_bl_check_cont, blc_ctx)))
2752   {
2753     blc_ctx->blc = blc;
2754   }
2755 }
2756
2757
2758 static int
2759 send_utilization_data (void *cls,
2760                        const struct GNUNET_PeerIdentity *key,
2761                        void *value)
2762 {
2763   struct NeighbourMapEntry *n = value;
2764   struct GNUNET_ATS_Information atsi[4];
2765   uint32_t bps_pl_in;
2766   uint32_t bps_pl_out;
2767   uint32_t bps_in;
2768   uint32_t bps_out;
2769   struct GNUNET_TIME_Relative delta;
2770
2771   delta = GNUNET_TIME_absolute_get_difference (n->last_util_transmission,
2772                                                GNUNET_TIME_absolute_get ());
2773
2774   bps_pl_in = 0;
2775
2776   if ((0 != n->util_payload_bytes_recv) && (0 != delta.rel_value_us))
2777     bps_pl_in =  (1000LL * 1000LL *  n->util_payload_bytes_recv) / (delta.rel_value_us);
2778   bps_pl_out = 0;
2779   if ((0 != n->util_payload_bytes_sent) && (0 != delta.rel_value_us))
2780     bps_pl_out = (1000LL * 1000LL * n->util_payload_bytes_sent) / delta.rel_value_us;
2781   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2782               "`%s' payload: received %u Bytes/s, sent %u Bytes/s\n",
2783               GNUNET_i2s (key),
2784               bps_pl_in,
2785               bps_pl_out);
2786   bps_in = 0;
2787   if ((0 != n->util_total_bytes_recv) && (0 != delta.rel_value_us))
2788     bps_in =  (1000LL * 1000LL *  n->util_total_bytes_recv) / (delta.rel_value_us);
2789   bps_out = 0;
2790   if ((0 != n->util_total_bytes_sent) && (0 != delta.rel_value_us))
2791     bps_out = (1000LL * 1000LL * n->util_total_bytes_sent) / delta.rel_value_us;
2792
2793
2794   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2795               "`%s' total: received %u Bytes/s, sent %u Bytes/s\n",
2796               GNUNET_i2s (key),
2797               bps_in,
2798               bps_out);
2799   atsi[0].type = htonl (GNUNET_ATS_UTILIZATION_OUT);
2800   atsi[0].value = htonl (bps_out);
2801   atsi[1].type = htonl (GNUNET_ATS_UTILIZATION_IN);
2802   atsi[1].value = htonl (bps_in);
2803
2804   atsi[2].type = htonl (GNUNET_ATS_UTILIZATION_PAYLOAD_OUT);
2805   atsi[2].value = htonl (bps_pl_out);
2806   atsi[3].type = htonl (GNUNET_ATS_UTILIZATION_PAYLOAD_IN);
2807   atsi[3].value = htonl (bps_pl_in);
2808
2809   GST_ats_update_metrics (key, n->primary_address.address,
2810       n->primary_address.session, atsi, 4);
2811   n->util_payload_bytes_recv = 0;
2812   n->util_payload_bytes_sent = 0;
2813   n->util_total_bytes_recv = 0;
2814   n->util_total_bytes_sent = 0;
2815   n->last_util_transmission = GNUNET_TIME_absolute_get();
2816   return GNUNET_OK;
2817 }
2818
2819
2820 /**
2821  * Task transmitting utilization in a regular interval
2822  *
2823  * @param cls the 'struct NeighbourMapEntry' for which we are running
2824  * @param tc scheduler context (unused)
2825  */
2826 static void
2827 utilization_transmission (void *cls,
2828                           const struct GNUNET_SCHEDULER_TaskContext *tc)
2829 {
2830   util_transmission_tk = GNUNET_SCHEDULER_NO_TASK;
2831
2832   if (0 < GNUNET_CONTAINER_multipeermap_size (neighbours))
2833     GNUNET_CONTAINER_multipeermap_iterate (neighbours, send_utilization_data, NULL);
2834
2835   util_transmission_tk = GNUNET_SCHEDULER_add_delayed (UTIL_TRANSMISSION_INTERVAL,
2836       utilization_transmission, NULL);
2837
2838 }
2839
2840
2841 void
2842 GST_neighbours_notify_data_recv (const struct GNUNET_PeerIdentity *peer,
2843                                  const struct GNUNET_HELLO_Address *address,
2844                                  struct Session *session,
2845                                  const struct GNUNET_MessageHeader *message)
2846 {
2847   struct NeighbourMapEntry *n;
2848
2849   n = lookup_neighbour (peer);
2850   if (NULL == n)
2851     return;
2852   n->util_total_bytes_recv += ntohs(message->size);
2853 }
2854
2855
2856 void
2857 GST_neighbours_notify_payload_recv (const struct GNUNET_PeerIdentity *peer,
2858                                     const struct GNUNET_HELLO_Address *address,
2859                                     struct Session *session,
2860                                     const struct GNUNET_MessageHeader *message)
2861 {
2862   struct NeighbourMapEntry *n;
2863   n = lookup_neighbour (peer);
2864   if (NULL == n)
2865     return;
2866   n->util_payload_bytes_recv += ntohs(message->size);
2867 }
2868
2869
2870 void
2871 GST_neighbours_notify_data_sent (const struct GNUNET_PeerIdentity *peer,
2872                                  const struct GNUNET_HELLO_Address *address,
2873                                  struct Session *session,
2874                                  size_t size)
2875 {
2876   struct NeighbourMapEntry *n;
2877   n = lookup_neighbour (peer);
2878   if (NULL == n)
2879       return;
2880   if (n->primary_address.session != session)
2881     return;
2882   n->util_total_bytes_sent += size;
2883 }
2884
2885
2886 void
2887 GST_neighbours_notify_payload_sent (const struct GNUNET_PeerIdentity *peer,
2888                                     size_t size)
2889 {
2890   struct NeighbourMapEntry *n;
2891   n = lookup_neighbour (peer);
2892   if (NULL == n)
2893     return;
2894   n->util_payload_bytes_sent += size;
2895 }
2896
2897
2898 /**
2899  * Master task run for every neighbour.  Performs all of the time-related
2900  * activities (keep alive, send next message, disconnect if idle, finish
2901  * clean up after disconnect).
2902  *
2903  * @param cls the 'struct NeighbourMapEntry' for which we are running
2904  * @param tc scheduler context (unused)
2905  */
2906 static void
2907 master_task (void *cls,
2908              const struct GNUNET_SCHEDULER_TaskContext *tc)
2909 {
2910   struct NeighbourMapEntry *n = cls;
2911   struct GNUNET_TIME_Relative delay;
2912
2913   n->task = GNUNET_SCHEDULER_NO_TASK;
2914   delay = GNUNET_TIME_absolute_get_remaining (n->timeout);
2915   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2916               "Master task runs for neighbour `%s' in state %s with timeout in %s\n",
2917               GNUNET_i2s (&n->id),
2918               GNUNET_TRANSPORT_ps2s(n->state),
2919               GNUNET_STRINGS_relative_time_to_string (delay,
2920                                                       GNUNET_YES));
2921   switch (n->state)
2922   {
2923   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2924     /* invalid state for master task, clean up */
2925     GNUNET_break (0);
2926     free_neighbour (n, GNUNET_NO);
2927     return;
2928   case GNUNET_TRANSPORT_PS_INIT_ATS:
2929     if (0 == delay.rel_value_us)
2930     {
2931       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2932                   "Connection to `%s' timed out waiting for ATS to provide address\n",
2933                   GNUNET_i2s (&n->id));
2934       free_neighbour (n, GNUNET_NO);
2935       return;
2936     }
2937     break;
2938   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2939     if (0 == delay.rel_value_us)
2940     {
2941       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2942                   "Connection to `%s' timed out waiting for other peer to send CONNECT_ACK\n",
2943                   GNUNET_i2s (&n->id));
2944       /* We could not send to this address, delete address and session */
2945       if (NULL != n->primary_address.session)
2946         GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
2947             n->primary_address.session);
2948       GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
2949
2950       /* Remove address and request and additional one */
2951       unset_primary_address (n);
2952       set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
2953           GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2954       return;
2955     }
2956     break;
2957   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2958     if (0 == delay.rel_value_us)
2959     {
2960       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2961                   "Connection to `%s' timed out waiting ATS to provide address to use for CONNECT_ACK\n",
2962                   GNUNET_i2s (&n->id));
2963       free_neighbour (n, GNUNET_NO);
2964       return;
2965     }
2966     break;
2967   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2968     if (0 == delay.rel_value_us)
2969     {
2970       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2971                   "Connection to `%s' timed out waiting for other peer to send SESSION_ACK\n",
2972                   GNUNET_i2s (&n->id));
2973       disconnect_neighbour (n);
2974       return;
2975     }
2976     break;
2977   case GNUNET_TRANSPORT_PS_CONNECTED:
2978     if (0 == delay.rel_value_us)
2979     {
2980       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2981                   "Connection to `%s' timed out, missing KEEPALIVE_RESPONSEs\n",
2982                   GNUNET_i2s (&n->id));
2983       disconnect_neighbour (n);
2984       return;
2985     }
2986     try_transmission_to_peer (n);
2987     send_keepalive (n);
2988     break;
2989   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2990     if (0 == delay.rel_value_us)
2991     {
2992       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2993                   "Connection to `%s' timed out, waiting for ATS replacement address\n",
2994                   GNUNET_i2s (&n->id));
2995       disconnect_neighbour (n);
2996       return;
2997     }
2998     break;
2999   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3000     if (0 == delay.rel_value_us)
3001     {
3002       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3003                   "Connection to `%s' timed out, waiting for other peer to CONNECT_ACK replacement address\n",
3004                   GNUNET_i2s (&n->id));
3005       disconnect_neighbour (n);
3006       return;
3007     }
3008     break;
3009   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3010     if (0 == delay.rel_value_us)
3011     {
3012       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3013                   "Connection to `%s' timed out, missing KEEPALIVE_RESPONSEs (after trying to CONNECT on alternative address)\n",
3014                   GNUNET_i2s (&n->id));
3015       GNUNET_STATISTICS_update (GST_stats, gettext_noop
3016           ("# Failed attempts to switch addresses (no response)"), 1, GNUNET_NO);
3017       disconnect_neighbour (n);
3018       return;
3019     }
3020     try_transmission_to_peer (n);
3021     send_keepalive (n);
3022     break;
3023   case GNUNET_TRANSPORT_PS_DISCONNECT:
3024     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3025                 "Cleaning up connection to `%s' after sending DISCONNECT\n",
3026                 GNUNET_i2s (&n->id));
3027     free_neighbour (n, GNUNET_NO);
3028     return;
3029   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3030     /* how did we get here!? */
3031     GNUNET_assert (0);
3032     break;
3033   default:
3034     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3035                 "Unhandled state `%s'\n",
3036                 GNUNET_TRANSPORT_ps2s (n->state));
3037     GNUNET_break (0);
3038     break;
3039   }
3040   if ( (GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT == n->state) ||
3041        (GNUNET_TRANSPORT_PS_CONNECTED == n->state) )
3042   {
3043     /* if we are *now* in one of the two states, we're sending
3044        keep alive messages, so we need to consider the keepalive
3045        delay, not just the connection timeout */
3046     delay = GNUNET_TIME_relative_min (GNUNET_TIME_absolute_get_remaining (n->keep_alive_time),
3047                                       delay);
3048   }
3049   if (GNUNET_SCHEDULER_NO_TASK == n->task)
3050     n->task = GNUNET_SCHEDULER_add_delayed (delay,
3051                                             &master_task,
3052                                             n);
3053 }
3054
3055
3056 /**
3057  * Send a SESSION_ACK message to the neighbour to confirm that we
3058  * got his CONNECT_ACK.
3059  *
3060  * @param n neighbour to send the SESSION_ACK to
3061  */
3062 static void
3063 send_session_ack_message (struct NeighbourMapEntry *n)
3064 {
3065   struct GNUNET_MessageHeader msg;
3066
3067   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Sending SESSION_ACK message to peer `%s'\n",
3068               GNUNET_i2s (&n->id));
3069
3070   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
3071   msg.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_ACK);
3072   (void) send_with_session(n,
3073                            (const char *) &msg, sizeof (struct GNUNET_MessageHeader),
3074                            UINT32_MAX, GNUNET_TIME_UNIT_FOREVER_REL, GNUNET_NO,
3075                            NULL, NULL);
3076 }
3077
3078
3079 /**
3080  * We received a 'SESSION_CONNECT_ACK' message from the other peer.
3081  * Consider switching to it.
3082  *
3083  * @param message possibly a 'struct SessionConnectMessage' (check format)
3084  * @param peer identity of the peer to switch the address for
3085  * @param address address of the other peer, NULL if other peer
3086  *                       connected to us
3087  * @param session session to use (or NULL)
3088  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
3089  */
3090 int
3091 GST_neighbours_handle_connect_ack (const struct GNUNET_MessageHeader *message,
3092                                    const struct GNUNET_PeerIdentity *peer,
3093                                    const struct GNUNET_HELLO_Address *address,
3094                                    struct Session *session)
3095 {
3096   const struct SessionConnectMessage *scm;
3097   struct GNUNET_TIME_Absolute ts;
3098   struct NeighbourMapEntry *n;
3099
3100   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3101               "Received CONNECT_ACK message from peer `%s'\n",
3102               GNUNET_i2s (peer));
3103
3104   if (ntohs (message->size) != sizeof (struct SessionConnectMessage))
3105   {
3106     GNUNET_break_op (0);
3107     return GNUNET_SYSERR;
3108   }
3109   GNUNET_STATISTICS_update (GST_stats,
3110                             gettext_noop
3111                             ("# CONNECT_ACK messages received"),
3112                             1, GNUNET_NO);
3113   scm = (const struct SessionConnectMessage *) message;
3114   GNUNET_break_op (ntohl (scm->reserved) == 0);
3115   if (NULL == (n = lookup_neighbour (peer)))
3116   {
3117     GNUNET_STATISTICS_update (GST_stats,
3118                               gettext_noop
3119                               ("# unexpected CONNECT_ACK messages (no peer)"),
3120                               1, GNUNET_NO);
3121     return GNUNET_SYSERR;
3122   }
3123   ts = GNUNET_TIME_absolute_ntoh (scm->timestamp);
3124   switch (n->state)
3125   {
3126   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
3127     GNUNET_break (0);
3128     free_neighbour (n, GNUNET_NO);
3129     return GNUNET_SYSERR;
3130   case GNUNET_TRANSPORT_PS_INIT_ATS:
3131     GNUNET_STATISTICS_update (GST_stats,
3132                               gettext_noop
3133                               ("# unexpected CONNECT_ACK messages (not ready)"),
3134                               1, GNUNET_NO);
3135     break;
3136   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
3137     if (ts.abs_value_us != n->primary_address.connect_timestamp.abs_value_us)
3138     {
3139       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3140                   "CONNECT_ACK ignored as the timestamp does not match our CONNECT request\n");
3141       return GNUNET_OK;
3142     }
3143     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3144         GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3145     GNUNET_STATISTICS_set (GST_stats,
3146                            gettext_noop ("# peers connected"),
3147                            ++neighbours_connected,
3148                            GNUNET_NO);
3149     connect_notify_cb (callback_cls, &n->id,
3150                        n->primary_address.bandwidth_in,
3151                        n->primary_address.bandwidth_out);
3152     /* Tell ATS that the outbound session we created to send CONNECT was successful */
3153     GST_ats_add_address (n->primary_address.address,
3154                          n->primary_address.session,
3155                          NULL, 0);
3156     set_primary_address (n,
3157                  n->primary_address.address,
3158                  n->primary_address.session,
3159                  n->primary_address.bandwidth_in,
3160                  n->primary_address.bandwidth_out,
3161                  GNUNET_YES);
3162     send_session_ack_message (n);
3163     break;
3164   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
3165   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
3166     GNUNET_STATISTICS_update (GST_stats,
3167                               gettext_noop
3168                               ("# unexpected CONNECT_ACK messages (not ready)"),
3169                               1, GNUNET_NO);
3170     break;
3171   case GNUNET_TRANSPORT_PS_CONNECTED:
3172     /* duplicate CONNECT_ACK, let's answer by duplicate SESSION_ACK just in case */
3173     send_session_ack_message (n);
3174     break;
3175   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
3176     /* we didn't expect any CONNECT_ACK, as we are waiting for ATS
3177        to give us a new address... */
3178     GNUNET_STATISTICS_update (GST_stats,
3179                               gettext_noop
3180                               ("# unexpected CONNECT_ACK messages (waiting on ATS)"),
3181                               1, GNUNET_NO);
3182     break;
3183   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3184     /* Reconnecting with new address address worked; go back to connected! */
3185     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3186         GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3187     send_session_ack_message (n);
3188     break;
3189   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3190     /* new address worked; adopt it and go back to connected! */
3191     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3192         GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3193     GNUNET_break (GNUNET_NO == n->alternative_address.ats_active);
3194
3195     /* Notify about session... perhaps we obtained it */
3196     GST_ats_add_address (n->alternative_address.address,
3197         n->alternative_address.session, NULL, 0);
3198     /* Set primary addresses */
3199     set_primary_address (n, n->alternative_address.address,
3200         n->alternative_address.session, n->alternative_address.bandwidth_in,
3201         n->alternative_address.bandwidth_out, GNUNET_YES);
3202     GNUNET_STATISTICS_update (GST_stats, gettext_noop
3203         ("# Successful attempts to switch addresses"), 1, GNUNET_NO);
3204
3205     free_address (&n->alternative_address);
3206     send_session_ack_message (n);
3207     break;
3208   case GNUNET_TRANSPORT_PS_DISCONNECT:
3209     GNUNET_STATISTICS_update (GST_stats,
3210                               gettext_noop
3211                               ("# unexpected CONNECT_ACK messages (disconnecting)"),
3212                               1, GNUNET_NO);
3213     return GNUNET_SYSERR;
3214   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3215     GNUNET_assert (0);
3216     break;
3217   default:
3218     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3219                 "Unhandled state `%s'\n",
3220                 GNUNET_TRANSPORT_ps2s (n->state));
3221     GNUNET_break (0);
3222     return GNUNET_SYSERR;
3223   }
3224   return GNUNET_OK;
3225 }
3226
3227
3228 /**
3229  * A session was terminated. Take note; if needed, try to get
3230  * an alternative address from ATS.
3231  *
3232  * @param peer identity of the peer where the session died
3233  * @param session session that is gone
3234  * @return #GNUNET_YES if this was a session used, #GNUNET_NO if
3235  *        this session was not in use
3236  */
3237 int
3238 GST_neighbours_session_terminated (const struct GNUNET_PeerIdentity *peer,
3239                                    struct Session *session)
3240 {
3241   struct NeighbourMapEntry *n;
3242   struct BlackListCheckContext *bcc;
3243   struct BlackListCheckContext *bcc_next;
3244
3245   /* make sure to cancel all ongoing blacklist checks involving 'session' */
3246   bcc_next = bc_head;
3247   while (NULL != (bcc = bcc_next))
3248   {
3249     bcc_next = bcc->next;
3250     if (bcc->na.session == session)
3251     {
3252       if (NULL != bcc->bc)
3253         GST_blacklist_test_cancel (bcc->bc);
3254       GNUNET_HELLO_address_free (bcc->na.address);
3255       GNUNET_CONTAINER_DLL_remove (bc_head,
3256                                    bc_tail,
3257                                    bcc);
3258       GNUNET_free (bcc);
3259     }
3260   }
3261   if (NULL == (n = lookup_neighbour (peer)))
3262     return GNUNET_NO; /* can't affect us */
3263   if (session != n->primary_address.session)
3264   {
3265     if (session == n->alternative_address.session)
3266     {
3267       if ( (GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT == n->state) )
3268         set_state (n, GNUNET_TRANSPORT_PS_CONNECTED);
3269       else
3270         free_address (&n->alternative_address);
3271     }
3272     return GNUNET_NO; /* doesn't affect us further */
3273   }
3274
3275   n->expect_latency_response = GNUNET_NO;
3276   /* The session for neighbour's primary address died */
3277   switch (n->state)
3278   {
3279   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
3280     GNUNET_break (0);
3281     free_neighbour (n, GNUNET_NO);
3282     return GNUNET_YES;
3283   case GNUNET_TRANSPORT_PS_INIT_ATS:
3284     GNUNET_break (0);
3285     free_neighbour (n, GNUNET_NO);
3286     return GNUNET_YES;
3287   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
3288     /* The session used to send the CONNECT terminated:
3289      * this implies a connect error*/
3290     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3291                 "Failed to send CONNECT in %s with `%s' %p: session terminated\n",
3292                 "CONNECT_SENT",
3293                 GST_plugins_a2s (n->primary_address.address),
3294                 n->primary_address.session,
3295                 GNUNET_i2s (peer));
3296
3297     /* Destroy the address since it cannot be used */
3298     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
3299     unset_primary_address (n);
3300     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
3301         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
3302     break;
3303   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
3304   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
3305     /* error on inbound session; free neighbour entirely */
3306     free_address (&n->primary_address);
3307     free_neighbour (n, GNUNET_NO);
3308     return GNUNET_YES;
3309   case GNUNET_TRANSPORT_PS_CONNECTED:
3310     /* Our primary connection died, try a fast reconnect */
3311     unset_primary_address (n);
3312     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
3313         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
3314     break;
3315   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
3316     /* we don't have an address, how can it go down? */
3317     GNUNET_break (0);
3318     break;
3319   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3320     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3321                 "Failed to send CONNECT in %s with `%s' %p: session terminated\n",
3322                 "RECONNECT_SENT",
3323                 GST_plugins_a2s (n->primary_address.address),
3324                 n->primary_address.session,
3325                 GNUNET_i2s (peer));
3326
3327     /* Destroy the address since it cannot be used */
3328     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
3329     unset_primary_address (n);
3330     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
3331         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
3332     break;
3333   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3334     /* primary went down while we were waiting for CONNECT_ACK on secondary;
3335        secondary as primary */
3336
3337     /* Destroy the inbound address since it cannot be used */
3338     if (GNUNET_YES
3339         == GNUNET_HELLO_address_check_option (n->primary_address.address,
3340             GNUNET_HELLO_ADDRESS_INFO_INBOUND))
3341       GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
3342     free_address (&n->primary_address);
3343     n->primary_address = n->alternative_address;
3344     memset (&n->alternative_address, 0, sizeof (struct NeighbourAddress));
3345     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
3346         GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
3347     break;
3348   case GNUNET_TRANSPORT_PS_DISCONNECT:
3349     free_address (&n->primary_address);
3350     break;
3351   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3352     /* neighbour was freed and plugins told to terminate session */
3353     return GNUNET_NO;
3354     break;
3355   default:
3356     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3357                 "Unhandled state `%s'\n",
3358                 GNUNET_TRANSPORT_ps2s (n->state));
3359     GNUNET_break (0);
3360     break;
3361   }
3362   if (GNUNET_SCHEDULER_NO_TASK != n->task)
3363     GNUNET_SCHEDULER_cancel (n->task);
3364   n->task = GNUNET_SCHEDULER_add_now (&master_task, n);
3365   return GNUNET_YES;
3366 }
3367
3368
3369 /**
3370  * We received a 'SESSION_ACK' message from the other peer.
3371  * If we sent a 'CONNECT_ACK' last, this means we are now
3372  * connected.  Otherwise, do nothing.
3373  *
3374  * @param message possibly a 'struct SessionConnectMessage' (check format)
3375  * @param peer identity of the peer to switch the address for
3376  * @param address address of the other peer, NULL if other peer
3377  *                       connected to us
3378  * @param session session to use (or NULL)
3379  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
3380  */
3381 int
3382 GST_neighbours_handle_session_ack (const struct GNUNET_MessageHeader *message,
3383                                    const struct GNUNET_PeerIdentity *peer,
3384                                    const struct GNUNET_HELLO_Address *address,
3385                                    struct Session *session)
3386 {
3387   struct NeighbourMapEntry *n;
3388
3389   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3390               "Received SESSION_ACK message from peer `%s'\n",
3391               GNUNET_i2s (peer));
3392   if (ntohs (message->size) != sizeof (struct GNUNET_MessageHeader))
3393   {
3394     GNUNET_break_op (0);
3395     return GNUNET_SYSERR;
3396   }
3397   GNUNET_STATISTICS_update (GST_stats,
3398                             gettext_noop
3399                             ("# SESSION_ACK messages received"),
3400                             1, GNUNET_NO);
3401   if (NULL == (n = lookup_neighbour (peer)))
3402   {
3403     GNUNET_break_op (0);
3404     return GNUNET_SYSERR;
3405   }
3406
3407   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3408               "Received %s for peer `%s' in state %s/%s\n",
3409               "SESSION_ACK",
3410               GNUNET_i2s (peer),
3411               GNUNET_TRANSPORT_ps2s (n->state),
3412               print_ack_state (n->ack_state));
3413
3414   /* Check if we are in a plausible state for having sent
3415      a CONNECT_ACK.  If not, return, otherwise break.
3416
3417      The remote peers sends a SESSION_ACK as a response for a CONNECT_ACK
3418      message.
3419
3420      We expect a SESSION_ACK:
3421      - If a remote peer has sent a CONNECT, we responded with a CONNECT_ACK and
3422      now wait for the ACK to finally be connected
3423      - If we sent a CONNECT_ACK to this peer before */
3424
3425   if (   (GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK != n->state) &&
3426          (ACK_SEND_SESSION_ACK != n->ack_state))
3427   {
3428     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3429                 "Received unexpected SESSION_ACK message from peer `%s' in state %s/%s\n",
3430                 GNUNET_i2s (peer),
3431                 GNUNET_TRANSPORT_ps2s (n->state),
3432                 print_ack_state (n->ack_state));
3433
3434     GNUNET_STATISTICS_update (GST_stats,
3435                               gettext_noop ("# unexpected SESSION_ACK messages"), 1,
3436                               GNUNET_NO);
3437     return GNUNET_OK;
3438   }
3439
3440   /* We are connected */
3441   if (GNUNET_NO == GST_neighbours_test_connected(&n->id))
3442   {
3443     /* Notify about connection */
3444     connect_notify_cb (callback_cls, &n->id,
3445                      n->primary_address.bandwidth_in,
3446                      n->primary_address.bandwidth_out);\
3447
3448      GNUNET_STATISTICS_set (GST_stats,
3449                             gettext_noop ("# peers connected"),
3450                             ++neighbours_connected,
3451                             GNUNET_NO);
3452   }
3453
3454   if (GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT == n->state)
3455   {
3456     /* We tried to switch addresses while being connect. We explicitly wait
3457      * for a CONNECT_ACK before going to GNUNET_TRANSPORT_PS_CONNECTED,
3458      * so we do not want to set the address as in use! */
3459     return GNUNET_OK;
3460   }
3461
3462   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3463     GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3464
3465   /* Add session to ATS since no session was given (NULL) and we may have
3466    * obtained a new session */
3467   GST_ats_add_address (n->primary_address.address, n->primary_address.session,
3468       NULL, 0);
3469
3470   /* Set primary address to used */
3471   set_primary_address (n,
3472                n->primary_address.address,
3473                n->primary_address.session,
3474                n->primary_address.bandwidth_in,
3475                n->primary_address.bandwidth_out,
3476                GNUNET_YES);
3477   return GNUNET_OK;
3478 }
3479
3480
3481 /**
3482  * Test if we're connected to the given peer.
3483  *
3484  * @param target peer to test
3485  * @return #GNUNET_YES if we are connected, #GNUNET_NO if not
3486  */
3487 int
3488 GST_neighbours_test_connected (const struct GNUNET_PeerIdentity *target)
3489 {
3490   return test_connected (lookup_neighbour (target));
3491 }
3492
3493 /**
3494  * Change the incoming quota for the given peer.
3495  *
3496  * @param neighbour identity of peer to change qutoa for
3497  * @param quota new quota
3498  */
3499 void
3500 GST_neighbours_set_incoming_quota (const struct GNUNET_PeerIdentity *neighbour,
3501                                    struct GNUNET_BANDWIDTH_Value32NBO quota)
3502 {
3503   struct NeighbourMapEntry *n;
3504
3505   if (NULL == (n = lookup_neighbour (neighbour)))
3506   {
3507     GNUNET_STATISTICS_update (GST_stats,
3508                               gettext_noop
3509                               ("# SET QUOTA messages ignored (no such peer)"),
3510                               1, GNUNET_NO);
3511     return;
3512   }
3513   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3514               "Setting inbound quota of %u Bps for peer `%s' to all clients\n",
3515               ntohl (quota.value__), GNUNET_i2s (&n->id));
3516   GNUNET_BANDWIDTH_tracker_update_quota (&n->in_tracker, quota);
3517   if (0 != ntohl (quota.value__))
3518     return;
3519   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3520               "Disconnecting peer `%4s' due to SET_QUOTA\n",
3521               GNUNET_i2s (&n->id));
3522   if (GNUNET_YES == test_connected (n))
3523     GNUNET_STATISTICS_update (GST_stats,
3524                               gettext_noop ("# disconnects due to quota of 0"),
3525                               1, GNUNET_NO);
3526   disconnect_neighbour (n);
3527 }
3528
3529 void delayed_disconnect (void *cls,
3530     const struct GNUNET_SCHEDULER_TaskContext* tc)
3531 {
3532   struct NeighbourMapEntry *n = cls;
3533
3534   n->delayed_disconnect_task = GNUNET_SCHEDULER_NO_TASK;
3535   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3536               "Disconnecting by request from peer %s\n",
3537               GNUNET_i2s (&n->id));
3538   free_neighbour (n, GNUNET_NO);
3539 }
3540
3541
3542 /**
3543  * We received a disconnect message from the given peer,
3544  * validate and process.
3545  *
3546  * @param peer sender of the message
3547  * @param msg the disconnect message
3548  */
3549 void
3550 GST_neighbours_handle_disconnect_message (const struct GNUNET_PeerIdentity *peer,
3551                                           const struct GNUNET_MessageHeader *msg)
3552 {
3553   struct NeighbourMapEntry *n;
3554   const struct SessionDisconnectMessage *sdm;
3555
3556   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3557               "Received DISCONNECT message from peer `%s'\n",
3558               GNUNET_i2s (peer));
3559   if (ntohs (msg->size) != sizeof (struct SessionDisconnectMessage))
3560   {
3561     GNUNET_break_op (0);
3562     GNUNET_STATISTICS_update (GST_stats,
3563                               gettext_noop
3564                               ("# disconnect messages ignored (malformed)"), 1,
3565                               GNUNET_NO);
3566     return;
3567   }
3568   GNUNET_STATISTICS_update (GST_stats,
3569                             gettext_noop
3570                             ("# DISCONNECT messages received"),
3571                             1, GNUNET_NO);
3572   sdm = (const struct SessionDisconnectMessage *) msg;
3573   if (NULL == (n = lookup_neighbour (peer)))
3574     return;                     /* gone already */
3575   if (GNUNET_TIME_absolute_ntoh (sdm->timestamp).abs_value_us <= n->connect_ack_timestamp.abs_value_us)
3576   {
3577     GNUNET_STATISTICS_update (GST_stats,
3578                               gettext_noop
3579                               ("# disconnect messages ignored (timestamp)"), 1,
3580                               GNUNET_NO);
3581     return;
3582   }
3583   if (0 != memcmp (peer, &sdm->public_key, sizeof (struct GNUNET_PeerIdentity)))
3584   {
3585     GNUNET_break_op (0);
3586     return;
3587   }
3588   if (ntohl (sdm->purpose.size) !=
3589       sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
3590       sizeof (struct GNUNET_CRYPTO_EddsaPublicKey) +
3591       sizeof (struct GNUNET_TIME_AbsoluteNBO))
3592   {
3593     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3594                 "%s message from peer `%s' has invalid size \n",
3595                 "DISCONNECT",
3596                 GNUNET_i2s (peer));
3597     GNUNET_break_op (0);
3598     return;
3599   }
3600   if (GNUNET_OK !=
3601       GNUNET_CRYPTO_eddsa_verify
3602       (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT, &sdm->purpose,
3603        &sdm->signature, &sdm->public_key))
3604   {
3605     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3606                 "%s message from peer `%s' cannot be verified \n",
3607                 "DISCONNECT",
3608                 GNUNET_i2s (peer));
3609     GNUNET_break_op (0);
3610     return;
3611   }
3612   n->delayed_disconnect_task = GNUNET_SCHEDULER_add_now (&delayed_disconnect, n);
3613 }
3614
3615
3616 /**
3617  * Closure for the neighbours_iterate function.
3618  */
3619 struct IteratorContext
3620 {
3621   /**
3622    * Function to call on each connected neighbour.
3623    */
3624   GST_NeighbourIterator cb;
3625
3626   /**
3627    * Closure for 'cb'.
3628    */
3629   void *cb_cls;
3630 };
3631
3632
3633 /**
3634  * Call the callback from the closure for each neighbour.
3635  *
3636  * @param cls the `struct IteratorContext`
3637  * @param key the hash of the public key of the neighbour
3638  * @param value the `struct NeighbourMapEntry`
3639  * @return #GNUNET_OK (continue to iterate)
3640  */
3641 static int
3642 neighbours_iterate (void *cls,
3643                     const struct GNUNET_PeerIdentity *key,
3644                     void *value)
3645 {
3646   struct IteratorContext *ic = cls;
3647   struct NeighbourMapEntry *n = value;
3648   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in;
3649   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out;
3650
3651
3652   if (NULL != n->primary_address.address)
3653   {
3654     bandwidth_in = n->primary_address.bandwidth_in;
3655     bandwidth_out = n->primary_address.bandwidth_out;
3656   }
3657   else
3658   {
3659     bandwidth_in = GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT;
3660     bandwidth_out = GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT;
3661   }
3662   ic->cb (ic->cb_cls,
3663           &n->id,
3664           n->primary_address.address,
3665           n->state,
3666           n->timeout,
3667           bandwidth_in, bandwidth_out);
3668   return GNUNET_OK;
3669 }
3670
3671
3672 /**
3673  * Iterate over all connected neighbours.
3674  *
3675  * @param cb function to call
3676  * @param cb_cls closure for cb
3677  */
3678 void
3679 GST_neighbours_iterate (GST_NeighbourIterator cb, void *cb_cls)
3680 {
3681   struct IteratorContext ic;
3682
3683   if (NULL == neighbours)
3684     return; /* can happen during shutdown */
3685   ic.cb = cb;
3686   ic.cb_cls = cb_cls;
3687   GNUNET_CONTAINER_multipeermap_iterate (neighbours, &neighbours_iterate, &ic);
3688 }
3689
3690
3691 /**
3692  * If we have an active connection to the given target, it must be shutdown.
3693  *
3694  * @param target peer to disconnect from
3695  */
3696 void
3697 GST_neighbours_force_disconnect (const struct GNUNET_PeerIdentity *target)
3698 {
3699   struct NeighbourMapEntry *n;
3700
3701   if (NULL == (n = lookup_neighbour (target)))
3702     return;  /* not active */
3703   if (GNUNET_YES == test_connected (n))
3704     GNUNET_STATISTICS_update (GST_stats,
3705                               gettext_noop
3706                               ("# disconnected from peer upon explicit request"), 1,
3707                               GNUNET_NO);
3708   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3709               "Forced disconnect from peer %s\n",
3710               GNUNET_i2s (target));
3711   disconnect_neighbour (n);
3712 }
3713
3714
3715 /**
3716  * Obtain current latency information for the given neighbour.
3717  *
3718  * @param peer to get the latency for
3719  * @return observed latency of the address, FOREVER if the
3720  *         the connection is not up
3721  */
3722 struct GNUNET_TIME_Relative
3723 GST_neighbour_get_latency (const struct GNUNET_PeerIdentity *peer)
3724 {
3725   struct NeighbourMapEntry *n;
3726
3727   n = lookup_neighbour (peer);
3728   if (NULL == n)
3729     return GNUNET_TIME_UNIT_FOREVER_REL;
3730   switch (n->state)
3731   {
3732   case GNUNET_TRANSPORT_PS_CONNECTED:
3733   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3734   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3735   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
3736     return n->latency;
3737   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
3738   case GNUNET_TRANSPORT_PS_INIT_ATS:
3739   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
3740   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
3741   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
3742   case GNUNET_TRANSPORT_PS_DISCONNECT:
3743   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3744     return GNUNET_TIME_UNIT_FOREVER_REL;
3745   default:
3746     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3747                 "Unhandled state `%s'\n",
3748                 GNUNET_TRANSPORT_ps2s (n->state));
3749     GNUNET_break (0);
3750     break;
3751   }
3752   return GNUNET_TIME_UNIT_FOREVER_REL;
3753 }
3754
3755
3756 /**
3757  * Obtain current address information for the given neighbour.
3758  *
3759  * @param peer
3760  * @return address currently used
3761  */
3762 struct GNUNET_HELLO_Address *
3763 GST_neighbour_get_current_address (const struct GNUNET_PeerIdentity *peer)
3764 {
3765   struct NeighbourMapEntry *n;
3766
3767   n = lookup_neighbour (peer);
3768   if (NULL == n)
3769     return NULL;
3770   return n->primary_address.address;
3771 }
3772
3773
3774 /**
3775  * Initialize the neighbours subsystem.
3776  *
3777  * @param cls closure for callbacks
3778  * @param connect_cb function to call if we connect to a peer
3779  * @param disconnect_cb function to call if we disconnect from a peer
3780  * @param peer_address_cb function to call if we change an active address
3781  *                   of a neighbour
3782  * @param max_fds maximum number of fds to use
3783  */
3784 void
3785 GST_neighbours_start (void *cls,
3786                       NotifyConnect connect_cb,
3787                       GNUNET_TRANSPORT_NotifyDisconnect disconnect_cb,
3788                       GNUNET_TRANSPORT_NeighbourChangeCallback peer_address_cb,
3789                       unsigned int max_fds)
3790 {
3791   callback_cls = cls;
3792   connect_notify_cb = connect_cb;
3793   disconnect_notify_cb = disconnect_cb;
3794   neighbour_change_cb = peer_address_cb;
3795   neighbours = GNUNET_CONTAINER_multipeermap_create (NEIGHBOUR_TABLE_SIZE, GNUNET_NO);
3796   registered_quota_notifications = GNUNET_CONTAINER_multipeermap_create (NEIGHBOUR_TABLE_SIZE, GNUNET_NO);
3797   util_transmission_tk = GNUNET_SCHEDULER_add_delayed (UTIL_TRANSMISSION_INTERVAL,
3798       utilization_transmission, NULL);
3799 }
3800
3801
3802 /**
3803  * Disconnect from the given neighbour.
3804  *
3805  * @param cls unused
3806  * @param key hash of neighbour's public key (not used)
3807  * @param value the 'struct NeighbourMapEntry' of the neighbour
3808  * @return #GNUNET_OK (continue to iterate)
3809  */
3810 static int
3811 disconnect_all_neighbours (void *cls,
3812                            const struct GNUNET_PeerIdentity *key,
3813                            void *value)
3814 {
3815   struct NeighbourMapEntry *n = value;
3816
3817   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3818               "Disconnecting peer `%4s', %s\n",
3819               GNUNET_i2s (&n->id), "SHUTDOWN_TASK");
3820   free_neighbour (n, GNUNET_NO);
3821   return GNUNET_OK;
3822 }
3823
3824
3825 /**
3826  * Cleanup the neighbours subsystem.
3827  */
3828 void
3829 GST_neighbours_stop ()
3830 {
3831   struct BlacklistCheckSwitchContext *cur;
3832   struct BlacklistCheckSwitchContext *next;
3833
3834   if (NULL == neighbours)
3835     return;
3836   if (GNUNET_SCHEDULER_NO_TASK != util_transmission_tk)
3837   {
3838     GNUNET_SCHEDULER_cancel (util_transmission_tk);
3839     util_transmission_tk = GNUNET_SCHEDULER_NO_TASK;
3840   }
3841
3842   GNUNET_CONTAINER_multipeermap_iterate (neighbours, &disconnect_all_neighbours,
3843       NULL );
3844   GNUNET_CONTAINER_multipeermap_destroy (neighbours);
3845
3846   next = pending_bc_head;
3847   for (cur = next; NULL != cur; cur = next )
3848   {
3849     next = cur->next;
3850     GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, cur);
3851
3852     if (NULL != cur->blc)
3853     {
3854       GST_blacklist_test_cancel (cur->blc);
3855       cur->blc = NULL;
3856     }
3857     if (NULL != cur->address)
3858       GNUNET_HELLO_address_free (cur->address);
3859     GNUNET_free_non_null (cur->ats);
3860     GNUNET_free (cur);
3861   }
3862
3863   GNUNET_CONTAINER_multipeermap_iterate (registered_quota_notifications,
3864       &free_notification_cb, NULL);
3865   GNUNET_CONTAINER_multipeermap_destroy (registered_quota_notifications);
3866   registered_quota_notifications = NULL;
3867
3868   neighbours = NULL;
3869   callback_cls = NULL;
3870   connect_notify_cb = NULL;
3871   disconnect_notify_cb = NULL;
3872   neighbour_change_cb = NULL;
3873 }
3874
3875
3876 /* end of file gnunet-service-transport_neighbours.c */