remove debugging output
[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     GNUNET_break(0);
1723     disconnect_neighbour (n);
1724     break;
1725   }
1726 }
1727
1728 /**
1729  * Send a SESSION_CONNECT message via the given address.
1730  *
1731  * @param na address to use
1732  */
1733 static void
1734 send_session_connect (struct NeighbourAddress *na)
1735 {
1736   struct GNUNET_TRANSPORT_PluginFunctions *papi;
1737   struct SessionConnectMessage connect_msg;
1738   struct NeighbourMapEntry *n;
1739
1740   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1741               "Sending SESSION_CONNECT message to peer `%s'\n",
1742               GNUNET_i2s (&na->address->peer));
1743
1744   if (NULL == (papi = GST_plugins_find (na->address->transport_name)))
1745   {
1746     GNUNET_break (0);
1747     return;
1748   }
1749   if (NULL == na->session)
1750     na->session = papi->get_session (papi->cls, na->address);
1751   if (NULL == na->session)
1752   {
1753     GNUNET_break (0);
1754     return;
1755   }
1756   GNUNET_STATISTICS_update (GST_stats,
1757                             gettext_noop
1758                             ("# SESSION_CONNECT messages sent"),
1759                             1, GNUNET_NO);
1760   na->connect_timestamp = GNUNET_TIME_absolute_get ();
1761   connect_msg.header.size = htons (sizeof (struct SessionConnectMessage));
1762   connect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT);
1763   connect_msg.reserved = htonl (0);
1764   connect_msg.timestamp = GNUNET_TIME_absolute_hton (na->connect_timestamp);
1765   if (-1 ==
1766       papi->send (papi->cls,
1767                   na->session,
1768                   (const char *) &connect_msg, sizeof (struct SessionConnectMessage),
1769                   UINT_MAX,
1770                   SETUP_CONNECTION_TIMEOUT,
1771                   send_session_connect_cont, NULL))
1772   {
1773     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1774                 _("Failed to transmit CONNECT message via plugin to %s\n"),
1775                 GST_plugins_a2s (na->address));
1776
1777     n = lookup_neighbour (&na->address->peer);
1778     if (NULL == n)
1779     {
1780       GNUNET_break (0);
1781       return;
1782     }
1783
1784     switch (n->state) {
1785       case GNUNET_TRANSPORT_PS_CONNECT_SENT:
1786         /* Remove address and request and additional one */
1787         unset_primary_address (n);
1788         set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
1789           GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
1790         /* Hard failure to send the CONNECT message with this address:
1791            Destroy address and session */
1792         break;
1793       case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
1794         /* Remove address and request and additional one */
1795         unset_primary_address (n);
1796         set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
1797           GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1798         break;
1799       case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
1800         GNUNET_STATISTICS_update (GST_stats, gettext_noop
1801             ("# Failed attempts to switch addresses (failed to send CONNECT)"), 1, GNUNET_NO);
1802         /* Remove address and request and additional one */
1803         unset_alternative_address (n);
1804         set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
1805           GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1806         break;
1807       default:
1808         GNUNET_break (0);
1809         disconnect_neighbour (n);
1810         break;
1811     }
1812     GNUNET_ATS_address_destroyed (GST_ats, na->address, na->session);
1813     GNUNET_ATS_address_destroyed (GST_ats, na->address, NULL);
1814   }
1815   GST_neighbours_notify_data_sent (&na->address->peer,
1816                                    na->address,
1817                                    na->session,
1818                                    sizeof (struct SessionConnectMessage));
1819 }
1820
1821
1822 static void
1823 send_session_connect_ack_cont (void *cls,
1824                       const struct GNUNET_PeerIdentity *target,
1825                       int result,
1826                       size_t size_payload,
1827                       size_t size_on_wire)
1828 {
1829   struct NeighbourMapEntry *n;
1830
1831   n = lookup_neighbour (target);
1832   if (NULL == n)
1833   {
1834     /* CONNECT_ACK continuation was called after neighbor was freed,
1835      * for example due to a time out for the state or the session
1836      * used was already terminated: nothing to do here... */
1837     return;
1838   }
1839
1840   if (GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK != n->state)
1841   {
1842     /* CONNECT_ACK continuation was called after neighbor changed state,
1843      * for example due to a time out for the state or the session
1844      * used was already terminated: nothing to do here... */
1845     return;
1846   }
1847   if (GNUNET_OK == result)
1848     return;
1849
1850   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1851             _("Failed to send CONNECT_ACK message to peer `%s' using address `%s' session %p\n"),
1852             GNUNET_i2s (target),
1853             GST_plugins_a2s (n->primary_address.address),
1854             n->primary_address.session);
1855
1856   /* Failed to send CONNECT_ACK message with this address */
1857   GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
1858       n->primary_address.session);
1859   GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
1860       NULL);
1861
1862   /* Remove address and request and additional one */
1863   unset_primary_address (n);
1864   n->ack_state = ACK_SEND_CONNECT_ACK;
1865   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
1866       GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1867   return;
1868 }
1869
1870
1871 /**
1872  * Send a CONNECT_ACK message via the given address.
1873  *
1874  * @param address address to use
1875  * @param session session to use
1876  * @param timestamp timestamp to use for the ACK message
1877  * @return GNUNET_SYSERR if sending immediately failed, GNUNET_OK otherwise
1878  */
1879 static void
1880 send_connect_ack_message (const struct GNUNET_HELLO_Address *address,
1881                                   struct Session *session,
1882                                   struct GNUNET_TIME_Absolute timestamp)
1883 {
1884   struct GNUNET_TRANSPORT_PluginFunctions *papi;
1885   struct SessionConnectMessage connect_msg;
1886   struct NeighbourMapEntry *n;
1887
1888   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1889               "Sending CONNECT_ACK to peer `%s'\n",
1890               GNUNET_i2s (&address->peer));
1891
1892   if (NULL == (papi = GST_plugins_find (address->transport_name)))
1893   {
1894     GNUNET_break (0);
1895     return;
1896   }
1897   if (NULL == session)
1898     session = papi->get_session (papi->cls, address);
1899   if (NULL == session)
1900   {
1901     GNUNET_break (0);
1902     return;
1903   }
1904   GNUNET_STATISTICS_update (GST_stats,
1905                             gettext_noop
1906                             ("# CONNECT_ACK messages sent"),
1907                             1, GNUNET_NO);
1908   connect_msg.header.size = htons (sizeof (struct SessionConnectMessage));
1909   connect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT_ACK);
1910   connect_msg.reserved = htonl (0);
1911   connect_msg.timestamp = GNUNET_TIME_absolute_hton (timestamp);
1912
1913   if (GNUNET_SYSERR == papi->send (papi->cls,
1914                      session,
1915                      (const char *) &connect_msg, sizeof (struct SessionConnectMessage),
1916                      UINT_MAX,
1917                      GNUNET_TIME_UNIT_FOREVER_REL,
1918                      send_session_connect_ack_cont, NULL))
1919   {
1920     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1921                 _("Failed to transmit CONNECT_ACK message via plugin to %s\n"),
1922                 GST_plugins_a2s (address));
1923
1924     n = lookup_neighbour (&address->peer);
1925     if (NULL == n)
1926     {
1927       GNUNET_break (0);
1928       return;
1929     }
1930     /* Hard failure to send the CONNECT_ACK message with this address:
1931        Destroy session (and address)  */
1932     if (GNUNET_YES == GNUNET_HELLO_address_check_option(address,
1933         GNUNET_HELLO_ADDRESS_INFO_INBOUND))
1934     {
1935       GNUNET_ATS_address_destroyed (GST_ats, address, session);
1936       GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
1937     }
1938     else
1939       GNUNET_ATS_address_destroyed (GST_ats, address, session);
1940
1941     /* Remove address and request and additional one */
1942     unset_primary_address (n);
1943     n->ack_state = ACK_SEND_CONNECT_ACK;
1944     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
1945         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
1946     return;
1947   }
1948
1949 }
1950
1951 struct QuotaNotificationRequest
1952 {
1953   struct GNUNET_PeerIdentity peer;
1954   struct Session *session;
1955   char *plugin;
1956 };
1957
1958 struct QNR_LookContext
1959 {
1960   struct GNUNET_PeerIdentity peer;
1961   struct Session *session;
1962   const char *plugin;
1963
1964   struct QuotaNotificationRequest *res;
1965 };
1966
1967 static int
1968 find_notification_request (void *cls, const struct GNUNET_PeerIdentity *key, void *value)
1969 {
1970   struct QNR_LookContext *qnr_ctx = cls;
1971   struct QuotaNotificationRequest *qnr = value;
1972
1973   if ((qnr->session == qnr_ctx->session) &&
1974       (0 == memcmp (&qnr->peer, &qnr_ctx->peer, sizeof (struct GNUNET_PeerIdentity))) &&
1975       (0 == strcmp(qnr_ctx->plugin, qnr->plugin)))
1976   {
1977     qnr_ctx->res = value;
1978     return GNUNET_NO;
1979   }
1980   return GNUNET_YES;
1981 }
1982
1983 void
1984 GST_neighbours_register_quota_notification(void *cls,
1985     const struct GNUNET_PeerIdentity *peer, const char *plugin,
1986     struct Session *session)
1987 {
1988   struct QuotaNotificationRequest *qnr;
1989   struct QNR_LookContext qnr_ctx;
1990
1991   if (NULL == registered_quota_notifications)
1992   {
1993     return; /* init or shutdown */
1994   }
1995
1996   qnr_ctx.peer = (*peer);
1997   qnr_ctx.plugin = plugin;
1998   qnr_ctx.session = session;
1999   qnr_ctx.res = NULL;
2000
2001   GNUNET_CONTAINER_multipeermap_get_multiple (registered_quota_notifications,
2002       peer, &find_notification_request, &qnr_ctx);
2003   if (NULL != qnr_ctx.res)
2004   {
2005     GNUNET_break(0);
2006     return;
2007   }
2008
2009   qnr = GNUNET_new (struct QuotaNotificationRequest);
2010   qnr->peer =  (*peer);
2011   qnr->plugin = GNUNET_strdup (plugin);
2012   qnr->session = session;
2013
2014   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2015       "Adding notification for peer `%s' plugin `%s' session %p \n",
2016       GNUNET_i2s (peer), plugin, session);
2017
2018   GNUNET_CONTAINER_multipeermap_put (registered_quota_notifications, peer,
2019       qnr, GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2020 }
2021
2022
2023 void
2024 GST_neighbours_unregister_quota_notification(void *cls,
2025     const struct GNUNET_PeerIdentity *peer, const char *plugin, struct Session *session)
2026 {
2027   struct QNR_LookContext qnr_ctx;
2028
2029   if (NULL == registered_quota_notifications)
2030   {
2031     return; /* init or shutdown */
2032   }
2033
2034   qnr_ctx.peer = (*peer);
2035   qnr_ctx.plugin = plugin;
2036   qnr_ctx.session = session;
2037   qnr_ctx.res = NULL;
2038
2039   GNUNET_CONTAINER_multipeermap_iterate (registered_quota_notifications,
2040       &find_notification_request, &qnr_ctx);
2041   if (NULL == qnr_ctx.res)
2042   {
2043     GNUNET_break(0);
2044     return;
2045   }
2046
2047   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2048       "Removing notification for peer `%s' plugin `%s' session %p \n",
2049       GNUNET_i2s (peer), plugin, session);
2050
2051   GNUNET_CONTAINER_multipeermap_remove (registered_quota_notifications, peer,
2052       qnr_ctx.res);
2053   GNUNET_free (qnr_ctx.res->plugin);
2054   GNUNET_free (qnr_ctx.res);
2055 }
2056
2057 static int
2058 notification_cb(void *cls, const struct GNUNET_PeerIdentity *key, void *value)
2059 {
2060   /* struct NeighbourMapEntry *n = cls; */
2061   struct QuotaNotificationRequest *qnr = value;
2062   struct GNUNET_TRANSPORT_PluginFunctions *papi;
2063   struct GNUNET_TIME_Relative delay;
2064   int do_forward;
2065
2066   papi = GST_plugins_find(qnr->plugin);
2067   if (NULL == papi)
2068   {
2069     GNUNET_break (0);
2070     return GNUNET_OK;
2071   }
2072
2073   delay = GST_neighbours_calculate_receive_delay (key, 0, &do_forward);
2074   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2075       "New inbound delay for peer `%s' is %llu ms\n", GNUNET_i2s (key),
2076       delay.rel_value_us / 1000);
2077
2078   if (NULL != papi->update_inbound_delay)
2079     papi->update_inbound_delay (papi->cls, key, qnr->session, delay);
2080   return GNUNET_OK;
2081 }
2082
2083 static int
2084 free_notification_cb(void *cls, const struct GNUNET_PeerIdentity *key,
2085     void *value)
2086 {
2087   /* struct NeighbourMapEntry *n = cls; */
2088   struct QuotaNotificationRequest *qnr = value;
2089
2090   GNUNET_break (GNUNET_OK == GNUNET_CONTAINER_multipeermap_remove (registered_quota_notifications, key,
2091       qnr));
2092   GNUNET_free(qnr->plugin);
2093   GNUNET_free(qnr);
2094
2095   return GNUNET_OK;
2096 }
2097
2098 static void
2099 inbound_bw_tracker_update(void *cls)
2100 {
2101   struct NeighbourMapEntry *n = cls;
2102
2103   /* Quota was updated, tell plugins to update the time to receive next */
2104   GNUNET_CONTAINER_multipeermap_get_multiple (registered_quota_notifications,
2105       &n->id, &notification_cb, n);
2106 }
2107
2108
2109 /**
2110  * Create a fresh entry in the neighbour map for the given peer
2111  *
2112  * @param peer peer to create an entry for
2113  * @return new neighbour map entry
2114  */
2115 static struct NeighbourMapEntry *
2116 setup_neighbour (const struct GNUNET_PeerIdentity *peer)
2117 {
2118   struct NeighbourMapEntry *n;
2119
2120   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2121               "Creating new neighbour entry for `%s'\n",
2122               GNUNET_i2s (peer));
2123   n = GNUNET_new (struct NeighbourMapEntry);
2124   n->id = *peer;
2125   n->ack_state = ACK_UNDEFINED;
2126   n->latency = GNUNET_TIME_UNIT_FOREVER_REL;
2127   n->last_util_transmission = GNUNET_TIME_absolute_get();
2128   n->util_payload_bytes_recv = 0;
2129   n->util_payload_bytes_sent = 0;
2130   n->util_total_bytes_recv = 0;
2131   n->util_total_bytes_sent = 0;
2132   GNUNET_BANDWIDTH_tracker_init (&n->in_tracker, &inbound_bw_tracker_update, n,
2133                                  GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
2134                                  MAX_BANDWIDTH_CARRY_S);
2135   n->task = GNUNET_SCHEDULER_add_now (&master_task, n);
2136   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_NOT_CONNECTED, GNUNET_TIME_UNIT_FOREVER_ABS);
2137   GNUNET_assert (GNUNET_OK ==
2138                  GNUNET_CONTAINER_multipeermap_put (neighbours,
2139                                                     &n->id, n,
2140                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2141   return n;
2142 }
2143
2144 /* We received a address suggestion after requesting an address in
2145  * try_connect or after receiving a connect, switch to address
2146  */
2147 static void
2148 address_suggest_cont (void *cls,
2149     const struct GNUNET_PeerIdentity *peer,
2150     const struct GNUNET_HELLO_Address *address, struct Session *session,
2151     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
2152     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
2153     const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
2154 {
2155   GST_neighbours_switch_to_address(peer, address, session, ats, ats_count,
2156       bandwidth_in, bandwidth_out);
2157 }
2158
2159
2160 struct BlacklistCheckSwitchContext
2161 {
2162   struct BlacklistCheckSwitchContext *prev;
2163   struct BlacklistCheckSwitchContext *next;
2164
2165
2166   struct GST_BlacklistCheck *blc;
2167
2168   struct GNUNET_HELLO_Address *address;
2169   struct Session *session;
2170   struct GNUNET_ATS_Information *ats;
2171   uint32_t ats_count;
2172
2173   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in;
2174   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out;
2175 };
2176
2177 /**
2178  * Black list check result for try_connect call
2179  * If connection to the peer is allowed request adddress and
2180  *
2181  * @param cls blc_ctx bl context
2182  * @param peer the peer
2183  * @param result the result
2184  */
2185 static void
2186 try_connect_bl_check_cont (void *cls,
2187     const struct GNUNET_PeerIdentity *peer, int result)
2188 {
2189   struct BlacklistCheckSwitchContext *blc_ctx = cls;
2190   struct NeighbourMapEntry *n;
2191
2192   GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2193   GNUNET_free (blc_ctx);
2194
2195   if (GNUNET_OK != result)
2196   {
2197     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2198         _("Blacklisting disapproved to connect to peer `%s'\n"),
2199         GNUNET_i2s (peer));
2200     return;
2201   }
2202
2203   /* Setup a new neighbour */
2204   n = setup_neighbour (peer);
2205
2206   /* Request address suggestions for this peer */
2207   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
2208       GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2209   GNUNET_ATS_reset_backoff (GST_ats, peer);
2210   n->suggest_handle = GNUNET_ATS_suggest_address (GST_ats, peer,
2211       &address_suggest_cont, n);
2212 }
2213
2214
2215
2216 /**
2217  * Try to create a connection to the given target (eventually).
2218  *
2219  * @param target peer to try to connect to
2220  */
2221 void
2222 GST_neighbours_try_connect (const struct GNUNET_PeerIdentity *target)
2223 {
2224   struct NeighbourMapEntry *n;
2225   struct GST_BlacklistCheck *blc;
2226   struct BlacklistCheckSwitchContext *blc_ctx;
2227
2228   if (NULL == neighbours)
2229   {
2230     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2231                 "Asked to connect to peer `%s' during shutdown\n",
2232                 GNUNET_i2s (target));
2233     return; /* during shutdown, do nothing */
2234   }
2235   n = lookup_neighbour (target);
2236   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2237               "Asked to connect to peer `%s' (state: %s)\n",
2238               GNUNET_i2s (target),
2239               (NULL != n) ? GNUNET_TRANSPORT_ps2s(n->state) : "NEW PEER");
2240   if (NULL != n)
2241   {
2242     switch (n->state)
2243     {
2244     case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2245       /* this should not be possible */
2246       GNUNET_break (0);
2247       free_neighbour (n, GNUNET_NO);
2248       break;
2249     case GNUNET_TRANSPORT_PS_INIT_ATS:
2250     case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2251     case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2252     case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2253       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2254                   "Ignoring request to try to connect to `%s', already trying!\n",
2255                   GNUNET_i2s (target));
2256       return; /* already trying */
2257     case GNUNET_TRANSPORT_PS_CONNECTED:
2258     case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2259     case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
2260     case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
2261       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2262                   "Ignoring request to try to connect, already connected to `%s'!\n",
2263                   GNUNET_i2s (target));
2264       return; /* already connected */
2265     case GNUNET_TRANSPORT_PS_DISCONNECT:
2266       /* get rid of remains, ready to re-try immediately */
2267       free_neighbour (n, GNUNET_NO);
2268       break;
2269     case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
2270       /* should not be possible */
2271       GNUNET_assert (0);
2272       return;
2273     default:
2274       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2275                   "Unhandled state `%s'\n",
2276                   GNUNET_TRANSPORT_ps2s (n->state));
2277       GNUNET_break (0);
2278       free_neighbour (n, GNUNET_NO);
2279       break;
2280     }
2281   }
2282
2283   /* Do blacklist check if connecting to this peer is allowed */
2284   blc_ctx = GNUNET_new (struct BlacklistCheckSwitchContext);
2285   GNUNET_CONTAINER_DLL_insert (pending_bc_head, pending_bc_tail, blc_ctx);
2286
2287   if (NULL != (blc = GST_blacklist_test_allowed (target, NULL,
2288         &try_connect_bl_check_cont, blc_ctx)))
2289   {
2290     blc_ctx->blc = blc;
2291   }
2292 }
2293
2294
2295 /**
2296  * We received a 'SESSION_CONNECT' message from the other peer.
2297  * Consider switching to it.
2298  *
2299  * @param message possibly a 'struct SessionConnectMessage' (check format)
2300  * @param peer identity of the peer to switch the address for
2301  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
2302  */
2303 int
2304 GST_neighbours_handle_connect (const struct GNUNET_MessageHeader *message,
2305                                const struct GNUNET_PeerIdentity *peer)
2306 {
2307   const struct SessionConnectMessage *scm;
2308   struct NeighbourMapEntry *n;
2309   struct GNUNET_TIME_Absolute ts;
2310
2311   if (ntohs (message->size) != sizeof (struct SessionConnectMessage))
2312   {
2313     GNUNET_break_op (0);
2314     return GNUNET_SYSERR;
2315   }
2316   GNUNET_STATISTICS_update (GST_stats,
2317                             gettext_noop
2318                             ("# CONNECT messages received"),
2319                             1, GNUNET_NO);
2320   if (NULL == neighbours)
2321   {
2322     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2323                 _("CONNECT request from peer `%s' ignored due impending shutdown\n"),
2324                 GNUNET_i2s (peer));
2325     return GNUNET_OK; /* we're shutting down */
2326   }
2327   scm = (const struct SessionConnectMessage *) message;
2328   GNUNET_break_op (0 == ntohl (scm->reserved));
2329   ts = GNUNET_TIME_absolute_ntoh (scm->timestamp);
2330   n = lookup_neighbour (peer);
2331   if (NULL == n)
2332   {
2333     /* This is a new neighbour and set to not connected */
2334     n = setup_neighbour (peer);
2335   }
2336
2337   /* Remember this CONNECT message in neighbour */
2338   n->ack_state = ACK_SEND_CONNECT_ACK;
2339   n->connect_ack_timestamp = ts;
2340
2341   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2342               "Received CONNECT for peer `%s' in state %s/%s\n",
2343               GNUNET_i2s (peer),
2344               GNUNET_TRANSPORT_ps2s (n->state),
2345               print_ack_state (n->ack_state));
2346
2347   switch (n->state)
2348   {
2349   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2350     /* Request an address from ATS to send CONNECT_ACK to this peer */
2351     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
2352         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2353     if (NULL == n->suggest_handle)
2354       GNUNET_ATS_suggest_address (GST_ats, peer, address_suggest_cont, n);
2355     break;
2356   case GNUNET_TRANSPORT_PS_INIT_ATS:
2357     /* CONNECT message takes priority over us asking ATS for address:
2358      * Wait for ATS to suggest an address and send CONNECT_ACK */
2359     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,
2360         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2361     break;
2362   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2363     /* We already wait for an address to send an CONNECT_ACK */
2364     break;
2365   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2366   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2367     /* Send ACK immediately */
2368     n->ack_state = ACK_SEND_SESSION_ACK;
2369     send_connect_ack_message (n->primary_address.address,
2370                               n->primary_address.session, ts);
2371     break;
2372   case GNUNET_TRANSPORT_PS_CONNECTED:
2373     /* we are already connected and can thus send the ACK immediately */
2374     GNUNET_assert (NULL != n->primary_address.address);
2375     GNUNET_assert (NULL != n->primary_address.session);
2376     n->ack_state = ACK_SEND_SESSION_ACK;
2377     send_connect_ack_message (n->primary_address.address,
2378                               n->primary_address.session, ts);
2379     break;
2380   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2381     /* We wait for ATS address suggestion */
2382     break;
2383   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
2384     /* We received a CONNECT message while waiting for a CONNECT_ACK in fast
2385      * reconnect. Send CONNECT_ACK immediately */
2386     n->ack_state = ACK_SEND_SESSION_ACK;
2387     send_connect_ack_message (n->primary_address.address,
2388         n->primary_address.session, n->connect_ack_timestamp);
2389     break;
2390   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
2391     /* We are already connected and can thus send the ACK immediately;
2392        still, it can never hurt to have an alternative address, so also
2393        tell ATS  about it */
2394     GNUNET_assert (NULL != n->primary_address.address);
2395     GNUNET_assert (NULL != n->primary_address.session);
2396     n->ack_state = ACK_SEND_SESSION_ACK;
2397     send_connect_ack_message (n->primary_address.address,
2398         n->primary_address.session, ts);
2399     break;
2400   case GNUNET_TRANSPORT_PS_DISCONNECT:
2401     /* Get rid of remains without terminating sessions, ready to re-try */
2402     free_neighbour (n, GNUNET_YES);
2403     n = setup_neighbour (peer);
2404     /* Remember the CONNECT time stamp for ACK message */
2405     n->ack_state = ACK_SEND_CONNECT_ACK;
2406     n->connect_ack_timestamp = ts;
2407     /* Request an address for the peer */
2408     GNUNET_ATS_suggest_address (GST_ats, peer, address_suggest_cont, n);
2409     GNUNET_ATS_reset_backoff (GST_ats, peer);
2410     set_state (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS);
2411     break;
2412   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
2413     /* should not be possible */
2414     GNUNET_assert (0);
2415     break;
2416   default:
2417     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2418                 "Unhandled state `%s'\n",
2419                 GNUNET_TRANSPORT_ps2s (n->state));
2420     GNUNET_break (0);
2421     return GNUNET_SYSERR;
2422   }
2423   return GNUNET_OK;
2424 }
2425
2426 static void
2427 switch_address_bl_check_cont (void *cls,
2428     const struct GNUNET_PeerIdentity *peer, int result)
2429 {
2430   struct BlacklistCheckSwitchContext *blc_ctx = cls;
2431   struct GNUNET_TRANSPORT_PluginFunctions *papi;
2432   struct NeighbourMapEntry *n;
2433
2434   papi = GST_plugins_find (blc_ctx->address->transport_name);
2435
2436   if ( (NULL == (n = lookup_neighbour (peer))) || (result == GNUNET_NO) ||
2437        (NULL == (papi)) )
2438   {
2439     if (NULL == n)
2440     {
2441       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2442                   "Peer %s is unknown, suggestion ignored\n",
2443                   GNUNET_i2s (peer));
2444     }
2445     if (result == GNUNET_NO)
2446     {
2447       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2448           "Blacklist denied to switch to suggested address `%s' session %p for peer `%s'\n",
2449           GST_plugins_a2s (blc_ctx->address),
2450           blc_ctx->session,
2451           GNUNET_i2s (&blc_ctx->address->peer));
2452     }
2453     if (NULL == papi)
2454     {
2455       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2456           "Plugin `%s' for suggested address `%s' session %p for peer `%s' is not available\n",
2457           blc_ctx->address->transport_name,
2458           GST_plugins_a2s (blc_ctx->address),
2459           blc_ctx->session,
2460           GNUNET_i2s (&blc_ctx->address->peer));
2461     }
2462
2463     /* This address is blacklisted, delete address and session (if existing) in ATS */
2464     GNUNET_ATS_address_destroyed (GST_ats, blc_ctx->address, blc_ctx->session);
2465
2466     if ( (GNUNET_YES == (GNUNET_HELLO_address_check_option (blc_ctx->address,
2467           GNUNET_HELLO_ADDRESS_INFO_INBOUND))) && (NULL != blc_ctx->session))
2468     {
2469       /* This is an inbound address, destroy full  address */
2470       GNUNET_ATS_address_destroyed (GST_ats, blc_ctx->address, NULL );
2471     }
2472
2473     /* Remove blacklist check and clean up */
2474     GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2475     GNUNET_HELLO_address_free (blc_ctx->address);
2476     GNUNET_free_non_null (blc_ctx->ats);
2477     GNUNET_free (blc_ctx);
2478     return;
2479   }
2480
2481   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2482       "Blacklist accepted address `%s' session %p for peer `%s'\n",
2483       GST_plugins_a2s (blc_ctx->address),
2484       blc_ctx->session,
2485       GNUNET_i2s (&blc_ctx->address->peer));
2486
2487   if (NULL == blc_ctx->session)
2488   {
2489     blc_ctx->session = papi->get_session (papi->cls, blc_ctx->address);
2490     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2491                 "Obtained new session for peer `%s' and  address '%s': %p\n",
2492                 GNUNET_i2s (&blc_ctx->address->peer), GST_plugins_a2s (blc_ctx->address), blc_ctx->session);
2493   }
2494   if (NULL == blc_ctx->session)
2495   {
2496     /* No session could be obtained, remove blacklist check and clean up */
2497     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2498                 "Failed to obtain new session for peer `%s' and  address '%s'\n",
2499                 GNUNET_i2s (&blc_ctx->address->peer),
2500                 GST_plugins_a2s (blc_ctx->address));
2501     /* Delete address in ATS */
2502     GNUNET_ATS_address_destroyed (GST_ats, blc_ctx->address, NULL);
2503
2504     GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2505     GNUNET_HELLO_address_free (blc_ctx->address);
2506     GNUNET_free_non_null (blc_ctx->ats);
2507     GNUNET_free (blc_ctx);
2508     return;
2509   }
2510
2511   switch (n->state)
2512   {
2513   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2514     GNUNET_break (0);
2515     free_neighbour (n, GNUNET_NO);
2516     return;
2517   case GNUNET_TRANSPORT_PS_INIT_ATS:
2518     /* We requested an address and ATS suggests one:
2519      * set primary address and send CONNECT message*/
2520     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2521         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2522     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) )
2523     {
2524       /* Send pending CONNECT_ACK message */
2525       n->ack_state = ACK_SEND_SESSION_ACK;
2526       send_connect_ack_message (n->primary_address.address,
2527           n->primary_address.session, n->connect_ack_timestamp);
2528     }
2529     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_SENT,
2530         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2531     send_session_connect (&n->primary_address);
2532     break;
2533   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2534     /* ATS suggested a new address while waiting for an CONNECT_ACK:
2535      * Switch and send new CONNECT */
2536     /* ATS suggests a different address, switch again */
2537     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2538         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2539     if (ACK_SEND_CONNECT_ACK == n->ack_state)
2540     {
2541       /* Send pending CONNECT_ACK message */
2542       n->ack_state = ACK_SEND_SESSION_ACK;
2543       send_connect_ack_message (n->primary_address.address,
2544           n->primary_address.session, n->connect_ack_timestamp);
2545     }
2546     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_SENT,
2547         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2548     send_session_connect (&n->primary_address);
2549     break;
2550   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2551     /* We requested an address and ATS suggests one:
2552      * set primary address and send CONNECT_ACK message*/
2553     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2554         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2555     /* Send an ACK message as a response to the CONNECT msg */
2556     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK,
2557         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2558     send_connect_ack_message (n->primary_address.address,
2559                               n->primary_address.session,
2560                               n->connect_ack_timestamp);
2561     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) ||
2562          (ACK_UNDEFINED == n->ack_state) )
2563       n->ack_state = ACK_SEND_SESSION_ACK;
2564     break;
2565   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2566     /* ATS asks us to switch while we were trying to connect; switch to new
2567        address and check blacklist again */
2568     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) )
2569     {
2570       n->ack_state = ACK_SEND_SESSION_ACK;
2571       send_connect_ack_message (n->primary_address.address,
2572           n->primary_address.session, n->connect_ack_timestamp);
2573     }
2574     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2575         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2576     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK,
2577         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2578     break;
2579   case GNUNET_TRANSPORT_PS_CONNECTED:
2580     GNUNET_assert (NULL != n->primary_address.address);
2581     GNUNET_assert (NULL != n->primary_address.session);
2582     if (n->primary_address.session == blc_ctx->session)
2583     {
2584       /* not an address change, just a quota change */
2585       set_primary_address (n, blc_ctx->address, blc_ctx->session,
2586           blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_YES);
2587       break;
2588     }
2589     /* ATS asks us to switch a life connection; see if we can get
2590        a CONNECT_ACK on it before we actually do this! */
2591     set_alternative_address (n, blc_ctx->address, blc_ctx->session,
2592         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out);
2593     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT,
2594         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2595     GNUNET_STATISTICS_update (GST_stats, gettext_noop
2596         ("# Attempts to switch addresses"), 1, GNUNET_NO);
2597     send_session_connect (&n->alternative_address);
2598     break;
2599   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2600     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2601         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2602     if ( (ACK_SEND_CONNECT_ACK == n->ack_state) )
2603     {
2604       /* Send pending CONNECT_ACK message */
2605       n->ack_state = ACK_SEND_SESSION_ACK;
2606       send_connect_ack_message (n->primary_address.address,
2607           n->primary_address.session, n->connect_ack_timestamp);
2608     }
2609     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_SENT,
2610         GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
2611     send_session_connect (&n->primary_address);
2612     break;
2613   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
2614     /* ATS asks us to switch while we were trying to reconnect; switch to new
2615        address and send CONNECT again */
2616     set_primary_address (n, blc_ctx->address, blc_ctx->session,
2617         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out, GNUNET_NO);
2618     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_SENT,
2619         GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
2620     send_session_connect (&n->primary_address);
2621     break;
2622   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
2623     if ( (0 == GNUNET_HELLO_address_cmp(n->primary_address.address,
2624         blc_ctx->address) && n->primary_address.session == blc_ctx->session) )
2625     {
2626       /* ATS switches back to still-active session */
2627       free_address (&n->alternative_address);
2628       set_state (n, GNUNET_TRANSPORT_PS_CONNECTED);
2629       break;
2630     }
2631     /* ATS asks us to switch a life connection, send */
2632     set_alternative_address (n, blc_ctx->address, blc_ctx->session,
2633         blc_ctx->bandwidth_in, blc_ctx->bandwidth_out);
2634     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT,
2635         GNUNET_TIME_relative_to_absolute (SETUP_CONNECTION_TIMEOUT));
2636     send_session_connect (&n->alternative_address);
2637     break;
2638   case GNUNET_TRANSPORT_PS_DISCONNECT:
2639     /* not going to switch addresses while disconnecting */
2640     return;
2641   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
2642     GNUNET_assert (0);
2643     break;
2644   default:
2645     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2646                 "Unhandled state `%s'\n",
2647                 GNUNET_TRANSPORT_ps2s (n->state));
2648     GNUNET_break (0);
2649     break;
2650   }
2651
2652   GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, blc_ctx);
2653   GNUNET_HELLO_address_free(blc_ctx->address);
2654   GNUNET_free_non_null (blc_ctx->ats);
2655   GNUNET_free (blc_ctx);
2656   return;
2657 }
2658
2659
2660 /**
2661  * For the given peer, switch to this address.
2662  *
2663  * Before accepting this addresses and actively using it, a blacklist check
2664  * is performed. If this blacklist check fails the address will be destroyed.
2665  *
2666  * @param peer identity of the peer to switch the address for
2667  * @param address address of the other peer,
2668  * @param session session to use or NULL if transport should initiate a session
2669  * @param ats performance data
2670  * @param ats_count number of entries in ats
2671  * @param bandwidth_in inbound quota to be used when connection is up,
2672  *      0 to disconnect from peer
2673  * @param bandwidth_out outbound quota to be used when connection is up,
2674  *      0 to disconnect from peer
2675  */
2676 void
2677 GST_neighbours_switch_to_address (const struct GNUNET_PeerIdentity *peer,
2678                                   const struct GNUNET_HELLO_Address *address,
2679                                   struct Session *session,
2680                                   const struct GNUNET_ATS_Information *ats,
2681                                   uint32_t ats_count,
2682                                   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
2683                                   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
2684 {
2685   struct NeighbourMapEntry *n;
2686   struct GST_BlacklistCheck *blc;
2687   struct BlacklistCheckSwitchContext *blc_ctx;
2688   int c;
2689
2690   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2691               "ATS has decided on an address for peer %s\n",
2692               GNUNET_i2s (peer));
2693   GNUNET_assert (NULL != address->transport_name);
2694   if (NULL == (n = lookup_neighbour (peer)))
2695   {
2696     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2697                 "Peer %s is unknown, suggestion ignored\n",
2698                 GNUNET_i2s (peer));
2699     return;
2700   }
2701
2702   /* Check if plugin is available */
2703   if (NULL == (GST_plugins_find (address->transport_name)))
2704   {
2705     /* we don't have the plugin for this address */
2706     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2707                 "Plugin `%s' is unknown, suggestion for peer %s ignored\n",
2708                 address->transport_name,
2709                 GNUNET_i2s (peer));
2710     GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
2711     return;
2712   }
2713   if ((NULL == session) &&
2714       (GNUNET_HELLO_address_check_option (address, GNUNET_HELLO_ADDRESS_INFO_INBOUND)))
2715   {
2716     /* This is a inbound address and we do not have a session to use! */
2717     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2718                 "Inbound address without session `%s'! Destroying address...\n",
2719                 GST_plugins_a2s (address));
2720     GNUNET_ATS_address_destroyed (GST_ats, address, NULL);
2721     return;
2722   }
2723
2724   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2725     "ATS suggests %s address '%s' session %p for "
2726     "peer `%s' in state %s/%s (quota in/out %u %u )\n",
2727     GNUNET_HELLO_address_check_option (address,
2728         GNUNET_HELLO_ADDRESS_INFO_INBOUND) ? "inbound" : "outbound",
2729     GST_plugins_a2s (address), session, GNUNET_i2s (peer),
2730     GNUNET_TRANSPORT_ps2s (n->state), print_ack_state (n->ack_state),
2731     ntohl (bandwidth_in.value__), ntohl (bandwidth_out.value__));
2732
2733   /* Perform blacklist check */
2734   blc_ctx = GNUNET_new (struct BlacklistCheckSwitchContext);
2735   blc_ctx->address = GNUNET_HELLO_address_copy (address);
2736   blc_ctx->session = session;
2737   blc_ctx->bandwidth_in = bandwidth_in;
2738   blc_ctx->bandwidth_out = bandwidth_out;
2739   blc_ctx->ats_count = ats_count;
2740   blc_ctx->ats = NULL;
2741   if (ats_count > 0)
2742   {
2743     blc_ctx->ats = GNUNET_malloc (ats_count * sizeof (struct GNUNET_ATS_Information));
2744     for (c = 0; c < ats_count; c++)
2745     {
2746       blc_ctx->ats[c].type = ats[c].type;
2747       blc_ctx->ats[c].value = ats[c].value;
2748     }
2749   }
2750
2751   GNUNET_CONTAINER_DLL_insert (pending_bc_head, pending_bc_tail, blc_ctx);
2752   if (NULL != (blc = GST_blacklist_test_allowed (peer, address->transport_name,
2753       &switch_address_bl_check_cont, blc_ctx)))
2754   {
2755     blc_ctx->blc = blc;
2756   }
2757 }
2758
2759
2760 static int
2761 send_utilization_data (void *cls,
2762                        const struct GNUNET_PeerIdentity *key,
2763                        void *value)
2764 {
2765   struct NeighbourMapEntry *n = value;
2766   struct GNUNET_ATS_Information atsi[4];
2767   uint32_t bps_pl_in;
2768   uint32_t bps_pl_out;
2769   uint32_t bps_in;
2770   uint32_t bps_out;
2771   struct GNUNET_TIME_Relative delta;
2772
2773   delta = GNUNET_TIME_absolute_get_difference (n->last_util_transmission,
2774                                                GNUNET_TIME_absolute_get ());
2775
2776   bps_pl_in = 0;
2777
2778   if ((0 != n->util_payload_bytes_recv) && (0 != delta.rel_value_us))
2779     bps_pl_in =  (1000LL * 1000LL *  n->util_payload_bytes_recv) / (delta.rel_value_us);
2780   bps_pl_out = 0;
2781   if ((0 != n->util_payload_bytes_sent) && (0 != delta.rel_value_us))
2782     bps_pl_out = (1000LL * 1000LL * n->util_payload_bytes_sent) / delta.rel_value_us;
2783   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2784               "`%s' payload: received %u Bytes/s, sent %u Bytes/s\n",
2785               GNUNET_i2s (key),
2786               bps_pl_in,
2787               bps_pl_out);
2788   bps_in = 0;
2789   if ((0 != n->util_total_bytes_recv) && (0 != delta.rel_value_us))
2790     bps_in =  (1000LL * 1000LL *  n->util_total_bytes_recv) / (delta.rel_value_us);
2791   bps_out = 0;
2792   if ((0 != n->util_total_bytes_sent) && (0 != delta.rel_value_us))
2793     bps_out = (1000LL * 1000LL * n->util_total_bytes_sent) / delta.rel_value_us;
2794
2795
2796   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2797               "`%s' total: received %u Bytes/s, sent %u Bytes/s\n",
2798               GNUNET_i2s (key),
2799               bps_in,
2800               bps_out);
2801   atsi[0].type = htonl (GNUNET_ATS_UTILIZATION_OUT);
2802   atsi[0].value = htonl (bps_out);
2803   atsi[1].type = htonl (GNUNET_ATS_UTILIZATION_IN);
2804   atsi[1].value = htonl (bps_in);
2805
2806   atsi[2].type = htonl (GNUNET_ATS_UTILIZATION_PAYLOAD_OUT);
2807   atsi[2].value = htonl (bps_pl_out);
2808   atsi[3].type = htonl (GNUNET_ATS_UTILIZATION_PAYLOAD_IN);
2809   atsi[3].value = htonl (bps_pl_in);
2810
2811   GST_ats_update_metrics (key, n->primary_address.address,
2812       n->primary_address.session, atsi, 4);
2813   n->util_payload_bytes_recv = 0;
2814   n->util_payload_bytes_sent = 0;
2815   n->util_total_bytes_recv = 0;
2816   n->util_total_bytes_sent = 0;
2817   n->last_util_transmission = GNUNET_TIME_absolute_get();
2818   return GNUNET_OK;
2819 }
2820
2821
2822 /**
2823  * Task transmitting utilization in a regular interval
2824  *
2825  * @param cls the 'struct NeighbourMapEntry' for which we are running
2826  * @param tc scheduler context (unused)
2827  */
2828 static void
2829 utilization_transmission (void *cls,
2830                           const struct GNUNET_SCHEDULER_TaskContext *tc)
2831 {
2832   util_transmission_tk = GNUNET_SCHEDULER_NO_TASK;
2833
2834   if (0 < GNUNET_CONTAINER_multipeermap_size (neighbours))
2835     GNUNET_CONTAINER_multipeermap_iterate (neighbours, send_utilization_data, NULL);
2836
2837   util_transmission_tk = GNUNET_SCHEDULER_add_delayed (UTIL_TRANSMISSION_INTERVAL,
2838       utilization_transmission, NULL);
2839
2840 }
2841
2842
2843 void
2844 GST_neighbours_notify_data_recv (const struct GNUNET_PeerIdentity *peer,
2845                                  const struct GNUNET_HELLO_Address *address,
2846                                  struct Session *session,
2847                                  const struct GNUNET_MessageHeader *message)
2848 {
2849   struct NeighbourMapEntry *n;
2850
2851   n = lookup_neighbour (peer);
2852   if (NULL == n)
2853     return;
2854   n->util_total_bytes_recv += ntohs(message->size);
2855 }
2856
2857
2858 void
2859 GST_neighbours_notify_payload_recv (const struct GNUNET_PeerIdentity *peer,
2860                                     const struct GNUNET_HELLO_Address *address,
2861                                     struct Session *session,
2862                                     const struct GNUNET_MessageHeader *message)
2863 {
2864   struct NeighbourMapEntry *n;
2865   n = lookup_neighbour (peer);
2866   if (NULL == n)
2867     return;
2868   n->util_payload_bytes_recv += ntohs(message->size);
2869 }
2870
2871
2872 void
2873 GST_neighbours_notify_data_sent (const struct GNUNET_PeerIdentity *peer,
2874                                  const struct GNUNET_HELLO_Address *address,
2875                                  struct Session *session,
2876                                  size_t size)
2877 {
2878   struct NeighbourMapEntry *n;
2879   n = lookup_neighbour (peer);
2880   if (NULL == n)
2881       return;
2882   if (n->primary_address.session != session)
2883     return;
2884   n->util_total_bytes_sent += size;
2885 }
2886
2887
2888 void
2889 GST_neighbours_notify_payload_sent (const struct GNUNET_PeerIdentity *peer,
2890                                     size_t size)
2891 {
2892   struct NeighbourMapEntry *n;
2893   n = lookup_neighbour (peer);
2894   if (NULL == n)
2895     return;
2896   n->util_payload_bytes_sent += size;
2897 }
2898
2899
2900 /**
2901  * Master task run for every neighbour.  Performs all of the time-related
2902  * activities (keep alive, send next message, disconnect if idle, finish
2903  * clean up after disconnect).
2904  *
2905  * @param cls the 'struct NeighbourMapEntry' for which we are running
2906  * @param tc scheduler context (unused)
2907  */
2908 static void
2909 master_task (void *cls,
2910              const struct GNUNET_SCHEDULER_TaskContext *tc)
2911 {
2912   struct NeighbourMapEntry *n = cls;
2913   struct GNUNET_TIME_Relative delay;
2914
2915   n->task = GNUNET_SCHEDULER_NO_TASK;
2916   delay = GNUNET_TIME_absolute_get_remaining (n->timeout);
2917   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2918               "Master task runs for neighbour `%s' in state %s with timeout in %s\n",
2919               GNUNET_i2s (&n->id),
2920               GNUNET_TRANSPORT_ps2s(n->state),
2921               GNUNET_STRINGS_relative_time_to_string (delay,
2922                                                       GNUNET_YES));
2923   switch (n->state)
2924   {
2925   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
2926     /* invalid state for master task, clean up */
2927     GNUNET_break (0);
2928     free_neighbour (n, GNUNET_NO);
2929     return;
2930   case GNUNET_TRANSPORT_PS_INIT_ATS:
2931     if (0 == delay.rel_value_us)
2932     {
2933       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2934                   "Connection to `%s' timed out waiting for ATS to provide address\n",
2935                   GNUNET_i2s (&n->id));
2936       free_neighbour (n, GNUNET_NO);
2937       return;
2938     }
2939     break;
2940   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
2941     if (0 == delay.rel_value_us)
2942     {
2943       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2944                   "Connection to `%s' timed out waiting for other peer to send CONNECT_ACK\n",
2945                   GNUNET_i2s (&n->id));
2946       /* We could not send to this address, delete address and session */
2947       if (NULL != n->primary_address.session)
2948         GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address,
2949             n->primary_address.session);
2950       GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
2951
2952       /* Remove address and request and additional one */
2953       unset_primary_address (n);
2954       set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
2955           GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
2956       return;
2957     }
2958     break;
2959   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
2960     if (0 == delay.rel_value_us)
2961     {
2962       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2963                   "Connection to `%s' timed out waiting ATS to provide address to use for CONNECT_ACK\n",
2964                   GNUNET_i2s (&n->id));
2965       free_neighbour (n, GNUNET_NO);
2966       return;
2967     }
2968     break;
2969   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
2970     if (0 == delay.rel_value_us)
2971     {
2972       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2973                   "Connection to `%s' timed out waiting for other peer to send SESSION_ACK\n",
2974                   GNUNET_i2s (&n->id));
2975       disconnect_neighbour (n);
2976       return;
2977     }
2978     break;
2979   case GNUNET_TRANSPORT_PS_CONNECTED:
2980     if (0 == delay.rel_value_us)
2981     {
2982       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2983                   "Connection to `%s' timed out, missing KEEPALIVE_RESPONSEs\n",
2984                   GNUNET_i2s (&n->id));
2985       disconnect_neighbour (n);
2986       return;
2987     }
2988     try_transmission_to_peer (n);
2989     send_keepalive (n);
2990     break;
2991   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
2992     if (0 == delay.rel_value_us)
2993     {
2994       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2995                   "Connection to `%s' timed out, waiting for ATS replacement address\n",
2996                   GNUNET_i2s (&n->id));
2997       disconnect_neighbour (n);
2998       return;
2999     }
3000     break;
3001   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3002     if (0 == delay.rel_value_us)
3003     {
3004       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3005                   "Connection to `%s' timed out, waiting for other peer to CONNECT_ACK replacement address\n",
3006                   GNUNET_i2s (&n->id));
3007       disconnect_neighbour (n);
3008       return;
3009     }
3010     break;
3011   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3012     if (0 == delay.rel_value_us)
3013     {
3014       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3015                   "Connection to `%s' timed out, missing KEEPALIVE_RESPONSEs (after trying to CONNECT on alternative address)\n",
3016                   GNUNET_i2s (&n->id));
3017       GNUNET_STATISTICS_update (GST_stats, gettext_noop
3018           ("# Failed attempts to switch addresses (no response)"), 1, GNUNET_NO);
3019       disconnect_neighbour (n);
3020       return;
3021     }
3022     try_transmission_to_peer (n);
3023     send_keepalive (n);
3024     break;
3025   case GNUNET_TRANSPORT_PS_DISCONNECT:
3026     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3027                 "Cleaning up connection to `%s' after sending DISCONNECT\n",
3028                 GNUNET_i2s (&n->id));
3029     free_neighbour (n, GNUNET_NO);
3030     return;
3031   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3032     /* how did we get here!? */
3033     GNUNET_assert (0);
3034     break;
3035   default:
3036     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3037                 "Unhandled state `%s'\n",
3038                 GNUNET_TRANSPORT_ps2s (n->state));
3039     GNUNET_break (0);
3040     break;
3041   }
3042   if ( (GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT == n->state) ||
3043        (GNUNET_TRANSPORT_PS_CONNECTED == n->state) )
3044   {
3045     /* if we are *now* in one of the two states, we're sending
3046        keep alive messages, so we need to consider the keepalive
3047        delay, not just the connection timeout */
3048     delay = GNUNET_TIME_relative_min (GNUNET_TIME_absolute_get_remaining (n->keep_alive_time),
3049                                       delay);
3050   }
3051   if (GNUNET_SCHEDULER_NO_TASK == n->task)
3052     n->task = GNUNET_SCHEDULER_add_delayed (delay,
3053                                             &master_task,
3054                                             n);
3055 }
3056
3057
3058 /**
3059  * Send a SESSION_ACK message to the neighbour to confirm that we
3060  * got his CONNECT_ACK.
3061  *
3062  * @param n neighbour to send the SESSION_ACK to
3063  */
3064 static void
3065 send_session_ack_message (struct NeighbourMapEntry *n)
3066 {
3067   struct GNUNET_MessageHeader msg;
3068
3069   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Sending SESSION_ACK message to peer `%s'\n",
3070               GNUNET_i2s (&n->id));
3071
3072   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
3073   msg.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_ACK);
3074   (void) send_with_session(n,
3075                            (const char *) &msg, sizeof (struct GNUNET_MessageHeader),
3076                            UINT32_MAX, GNUNET_TIME_UNIT_FOREVER_REL, GNUNET_NO,
3077                            NULL, NULL);
3078 }
3079
3080
3081 /**
3082  * We received a 'SESSION_CONNECT_ACK' message from the other peer.
3083  * Consider switching to it.
3084  *
3085  * @param message possibly a 'struct SessionConnectMessage' (check format)
3086  * @param peer identity of the peer to switch the address for
3087  * @param address address of the other peer, NULL if other peer
3088  *                       connected to us
3089  * @param session session to use (or NULL)
3090  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
3091  */
3092 int
3093 GST_neighbours_handle_connect_ack (const struct GNUNET_MessageHeader *message,
3094                                    const struct GNUNET_PeerIdentity *peer,
3095                                    const struct GNUNET_HELLO_Address *address,
3096                                    struct Session *session)
3097 {
3098   const struct SessionConnectMessage *scm;
3099   struct GNUNET_TIME_Absolute ts;
3100   struct NeighbourMapEntry *n;
3101
3102   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3103               "Received CONNECT_ACK message from peer `%s'\n",
3104               GNUNET_i2s (peer));
3105
3106   if (ntohs (message->size) != sizeof (struct SessionConnectMessage))
3107   {
3108     GNUNET_break_op (0);
3109     return GNUNET_SYSERR;
3110   }
3111   GNUNET_STATISTICS_update (GST_stats,
3112                             gettext_noop
3113                             ("# CONNECT_ACK messages received"),
3114                             1, GNUNET_NO);
3115   scm = (const struct SessionConnectMessage *) message;
3116   GNUNET_break_op (ntohl (scm->reserved) == 0);
3117   if (NULL == (n = lookup_neighbour (peer)))
3118   {
3119     GNUNET_STATISTICS_update (GST_stats,
3120                               gettext_noop
3121                               ("# unexpected CONNECT_ACK messages (no peer)"),
3122                               1, GNUNET_NO);
3123     return GNUNET_SYSERR;
3124   }
3125   ts = GNUNET_TIME_absolute_ntoh (scm->timestamp);
3126   switch (n->state)
3127   {
3128   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
3129     GNUNET_break (0);
3130     free_neighbour (n, GNUNET_NO);
3131     return GNUNET_SYSERR;
3132   case GNUNET_TRANSPORT_PS_INIT_ATS:
3133     GNUNET_STATISTICS_update (GST_stats,
3134                               gettext_noop
3135                               ("# unexpected CONNECT_ACK messages (not ready)"),
3136                               1, GNUNET_NO);
3137     break;
3138   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
3139     if (ts.abs_value_us != n->primary_address.connect_timestamp.abs_value_us)
3140     {
3141       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3142                   "CONNECT_ACK ignored as the timestamp does not match our CONNECT request\n");
3143       return GNUNET_OK;
3144     }
3145     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3146         GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3147     GNUNET_STATISTICS_set (GST_stats,
3148                            gettext_noop ("# peers connected"),
3149                            ++neighbours_connected,
3150                            GNUNET_NO);
3151     connect_notify_cb (callback_cls, &n->id,
3152                        n->primary_address.bandwidth_in,
3153                        n->primary_address.bandwidth_out);
3154     /* Tell ATS that the outbound session we created to send CONNECT was successful */
3155     GST_ats_add_address (n->primary_address.address,
3156                          n->primary_address.session,
3157                          NULL, 0);
3158     set_primary_address (n,
3159                  n->primary_address.address,
3160                  n->primary_address.session,
3161                  n->primary_address.bandwidth_in,
3162                  n->primary_address.bandwidth_out,
3163                  GNUNET_YES);
3164     send_session_ack_message (n);
3165     break;
3166   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
3167   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
3168     GNUNET_STATISTICS_update (GST_stats,
3169                               gettext_noop
3170                               ("# unexpected CONNECT_ACK messages (not ready)"),
3171                               1, GNUNET_NO);
3172     break;
3173   case GNUNET_TRANSPORT_PS_CONNECTED:
3174     /* duplicate CONNECT_ACK, let's answer by duplicate SESSION_ACK just in case */
3175     send_session_ack_message (n);
3176     break;
3177   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
3178     /* we didn't expect any CONNECT_ACK, as we are waiting for ATS
3179        to give us a new address... */
3180     GNUNET_STATISTICS_update (GST_stats,
3181                               gettext_noop
3182                               ("# unexpected CONNECT_ACK messages (waiting on ATS)"),
3183                               1, GNUNET_NO);
3184     break;
3185   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3186     /* Reconnecting with new address address worked; go back to connected! */
3187     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3188         GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3189     send_session_ack_message (n);
3190     break;
3191   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3192     /* new address worked; adopt it and go back to connected! */
3193     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3194         GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3195     GNUNET_break (GNUNET_NO == n->alternative_address.ats_active);
3196
3197     /* Notify about session... perhaps we obtained it */
3198     GST_ats_add_address (n->alternative_address.address,
3199         n->alternative_address.session, NULL, 0);
3200     /* Set primary addresses */
3201     set_primary_address (n, n->alternative_address.address,
3202         n->alternative_address.session, n->alternative_address.bandwidth_in,
3203         n->alternative_address.bandwidth_out, GNUNET_YES);
3204
3205     GNUNET_STATISTICS_update (GST_stats, gettext_noop
3206         ("# Successful attempts to switch addresses"), 1, GNUNET_NO);
3207
3208     free_address (&n->alternative_address);
3209     send_session_ack_message (n);
3210     break;
3211   case GNUNET_TRANSPORT_PS_DISCONNECT:
3212     GNUNET_STATISTICS_update (GST_stats,
3213                               gettext_noop
3214                               ("# unexpected CONNECT_ACK messages (disconnecting)"),
3215                               1, GNUNET_NO);
3216     return GNUNET_SYSERR;
3217   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3218     GNUNET_assert (0);
3219     break;
3220   default:
3221     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3222                 "Unhandled state `%s'\n",
3223                 GNUNET_TRANSPORT_ps2s (n->state));
3224     GNUNET_break (0);
3225     return GNUNET_SYSERR;
3226   }
3227   return GNUNET_OK;
3228 }
3229
3230
3231 /**
3232  * A session was terminated. Take note; if needed, try to get
3233  * an alternative address from ATS.
3234  *
3235  * @param peer identity of the peer where the session died
3236  * @param session session that is gone
3237  * @return #GNUNET_YES if this was a session used, #GNUNET_NO if
3238  *        this session was not in use
3239  */
3240 int
3241 GST_neighbours_session_terminated (const struct GNUNET_PeerIdentity *peer,
3242                                    struct Session *session)
3243 {
3244   struct NeighbourMapEntry *n;
3245   struct BlackListCheckContext *bcc;
3246   struct BlackListCheckContext *bcc_next;
3247
3248   /* make sure to cancel all ongoing blacklist checks involving 'session' */
3249   bcc_next = bc_head;
3250   while (NULL != (bcc = bcc_next))
3251   {
3252     bcc_next = bcc->next;
3253     if (bcc->na.session == session)
3254     {
3255       if (NULL != bcc->bc)
3256         GST_blacklist_test_cancel (bcc->bc);
3257       GNUNET_HELLO_address_free (bcc->na.address);
3258       GNUNET_CONTAINER_DLL_remove (bc_head,
3259                                    bc_tail,
3260                                    bcc);
3261       GNUNET_free (bcc);
3262     }
3263   }
3264   if (NULL == (n = lookup_neighbour (peer)))
3265     return GNUNET_NO; /* can't affect us */
3266   if (session != n->primary_address.session)
3267   {
3268     if (session == n->alternative_address.session)
3269     {
3270       if ( (GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT == n->state) )
3271         set_state (n, GNUNET_TRANSPORT_PS_CONNECTED);
3272       else
3273         free_address (&n->alternative_address);
3274     }
3275     return GNUNET_NO; /* doesn't affect us further */
3276   }
3277
3278   n->expect_latency_response = GNUNET_NO;
3279   /* The session for neighbour's primary address died */
3280   switch (n->state)
3281   {
3282   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
3283     GNUNET_break (0);
3284     free_neighbour (n, GNUNET_NO);
3285     return GNUNET_YES;
3286   case GNUNET_TRANSPORT_PS_INIT_ATS:
3287     GNUNET_break (0);
3288     free_neighbour (n, GNUNET_NO);
3289     return GNUNET_YES;
3290   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
3291     /* The session used to send the CONNECT terminated:
3292      * this implies a connect error*/
3293     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3294                 "Failed to send CONNECT in %s with `%s' %p: session terminated\n",
3295                 "CONNECT_SENT",
3296                 GST_plugins_a2s (n->primary_address.address),
3297                 n->primary_address.session,
3298                 GNUNET_i2s (peer));
3299
3300     /* Destroy the address since it cannot be used */
3301     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
3302     unset_primary_address (n);
3303     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_INIT_ATS,
3304         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
3305     break;
3306   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
3307   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
3308     /* error on inbound session; free neighbour entirely */
3309     free_address (&n->primary_address);
3310     free_neighbour (n, GNUNET_NO);
3311     return GNUNET_YES;
3312   case GNUNET_TRANSPORT_PS_CONNECTED:
3313     /* Our primary connection died, try a fast reconnect */
3314     unset_primary_address (n);
3315     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
3316         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
3317     break;
3318   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
3319     /* we don't have an address, how can it go down? */
3320     GNUNET_break (0);
3321     break;
3322   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3323     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3324                 "Failed to send CONNECT in %s with `%s' %p: session terminated\n",
3325                 "RECONNECT_SENT",
3326                 GST_plugins_a2s (n->primary_address.address),
3327                 n->primary_address.session,
3328                 GNUNET_i2s (peer));
3329
3330     /* Destroy the address since it cannot be used */
3331     GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
3332     unset_primary_address (n);
3333     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
3334         GNUNET_TIME_relative_to_absolute (ATS_RESPONSE_TIMEOUT));
3335     break;
3336   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3337     /* primary went down while we were waiting for CONNECT_ACK on secondary;
3338        secondary as primary */
3339
3340     /* Destroy the inbound address since it cannot be used */
3341     if (GNUNET_YES
3342         == GNUNET_HELLO_address_check_option (n->primary_address.address,
3343             GNUNET_HELLO_ADDRESS_INFO_INBOUND))
3344       GNUNET_ATS_address_destroyed (GST_ats, n->primary_address.address, NULL);
3345     free_address (&n->primary_address);
3346     n->primary_address = n->alternative_address;
3347     memset (&n->alternative_address, 0, sizeof (struct NeighbourAddress));
3348     set_state_and_timeout (n, GNUNET_TRANSPORT_PS_RECONNECT_ATS,
3349         GNUNET_TIME_relative_to_absolute (FAST_RECONNECT_TIMEOUT));
3350     break;
3351   case GNUNET_TRANSPORT_PS_DISCONNECT:
3352     free_address (&n->primary_address);
3353     break;
3354   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3355     /* neighbour was freed and plugins told to terminate session */
3356     return GNUNET_NO;
3357     break;
3358   default:
3359     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3360                 "Unhandled state `%s'\n",
3361                 GNUNET_TRANSPORT_ps2s (n->state));
3362     GNUNET_break (0);
3363     break;
3364   }
3365   if (GNUNET_SCHEDULER_NO_TASK != n->task)
3366     GNUNET_SCHEDULER_cancel (n->task);
3367   n->task = GNUNET_SCHEDULER_add_now (&master_task, n);
3368   return GNUNET_YES;
3369 }
3370
3371
3372 /**
3373  * We received a 'SESSION_ACK' message from the other peer.
3374  * If we sent a 'CONNECT_ACK' last, this means we are now
3375  * connected.  Otherwise, do nothing.
3376  *
3377  * @param message possibly a 'struct SessionConnectMessage' (check format)
3378  * @param peer identity of the peer to switch the address for
3379  * @param address address of the other peer, NULL if other peer
3380  *                       connected to us
3381  * @param session session to use (or NULL)
3382  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
3383  */
3384 int
3385 GST_neighbours_handle_session_ack (const struct GNUNET_MessageHeader *message,
3386                                    const struct GNUNET_PeerIdentity *peer,
3387                                    const struct GNUNET_HELLO_Address *address,
3388                                    struct Session *session)
3389 {
3390   struct NeighbourMapEntry *n;
3391
3392   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3393               "Received SESSION_ACK message from peer `%s'\n",
3394               GNUNET_i2s (peer));
3395   if (ntohs (message->size) != sizeof (struct GNUNET_MessageHeader))
3396   {
3397     GNUNET_break_op (0);
3398     return GNUNET_SYSERR;
3399   }
3400   GNUNET_STATISTICS_update (GST_stats,
3401                             gettext_noop
3402                             ("# SESSION_ACK messages received"),
3403                             1, GNUNET_NO);
3404   if (NULL == (n = lookup_neighbour (peer)))
3405   {
3406     GNUNET_break_op (0);
3407     return GNUNET_SYSERR;
3408   }
3409   /* Check if we are in a plausible state for having sent
3410      a CONNECT_ACK.  If not, return, otherwise break.
3411
3412      The remote peers sends a SESSION_ACK as a response for a CONNECT_ACK
3413      message.
3414
3415      We expect a SESSION_ACK:
3416      - If a remote peer has sent a CONNECT, we responded with a CONNECT_ACK and
3417      now wait for the ACK to finally be connected
3418      - If we sent a CONNECT_ACK to this peer before */
3419
3420   if (   (GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK != n->state) &&
3421          (ACK_SEND_SESSION_ACK != n->ack_state))
3422   {
3423     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3424                 "Received unexpected SESSION_ACK message from peer `%s' in state %s/%s\n",
3425                 GNUNET_i2s (peer),
3426                 GNUNET_TRANSPORT_ps2s (n->state),
3427                 print_ack_state (n->ack_state));
3428
3429     GNUNET_STATISTICS_update (GST_stats,
3430                               gettext_noop ("# unexpected SESSION_ACK messages"), 1,
3431                               GNUNET_NO);
3432     return GNUNET_OK;
3433   }
3434
3435   /* We are connected */
3436   if (GNUNET_NO == GST_neighbours_test_connected(&n->id))
3437   {
3438     /* Notify about connection */
3439     connect_notify_cb (callback_cls, &n->id,
3440                      n->primary_address.bandwidth_in,
3441                      n->primary_address.bandwidth_out);\
3442
3443      GNUNET_STATISTICS_set (GST_stats,
3444                             gettext_noop ("# peers connected"),
3445                             ++neighbours_connected,
3446                             GNUNET_NO);
3447   }
3448
3449   set_state_and_timeout (n, GNUNET_TRANSPORT_PS_CONNECTED,
3450       GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT));
3451
3452   /* Add session to ATS since no session was given (NULL) and we may have
3453    * obtained a new session */
3454   GST_ats_add_address (n->primary_address.address, n->primary_address.session,
3455       NULL, 0);
3456
3457   /* Set primary address to used */
3458   set_primary_address (n,
3459                n->primary_address.address,
3460                n->primary_address.session,
3461                n->primary_address.bandwidth_in,
3462                n->primary_address.bandwidth_out,
3463                GNUNET_YES);
3464   return GNUNET_OK;
3465 }
3466
3467
3468 /**
3469  * Test if we're connected to the given peer.
3470  *
3471  * @param target peer to test
3472  * @return #GNUNET_YES if we are connected, #GNUNET_NO if not
3473  */
3474 int
3475 GST_neighbours_test_connected (const struct GNUNET_PeerIdentity *target)
3476 {
3477   return test_connected (lookup_neighbour (target));
3478 }
3479
3480 /**
3481  * Change the incoming quota for the given peer.
3482  *
3483  * @param neighbour identity of peer to change qutoa for
3484  * @param quota new quota
3485  */
3486 void
3487 GST_neighbours_set_incoming_quota (const struct GNUNET_PeerIdentity *neighbour,
3488                                    struct GNUNET_BANDWIDTH_Value32NBO quota)
3489 {
3490   struct NeighbourMapEntry *n;
3491
3492   if (NULL == (n = lookup_neighbour (neighbour)))
3493   {
3494     GNUNET_STATISTICS_update (GST_stats,
3495                               gettext_noop
3496                               ("# SET QUOTA messages ignored (no such peer)"),
3497                               1, GNUNET_NO);
3498     return;
3499   }
3500   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3501               "Setting inbound quota of %u Bps for peer `%s' to all clients\n",
3502               ntohl (quota.value__), GNUNET_i2s (&n->id));
3503   GNUNET_BANDWIDTH_tracker_update_quota (&n->in_tracker, quota);
3504   if (0 != ntohl (quota.value__))
3505     return;
3506   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3507               "Disconnecting peer `%4s' due to SET_QUOTA\n",
3508               GNUNET_i2s (&n->id));
3509   if (GNUNET_YES == test_connected (n))
3510     GNUNET_STATISTICS_update (GST_stats,
3511                               gettext_noop ("# disconnects due to quota of 0"),
3512                               1, GNUNET_NO);
3513   disconnect_neighbour (n);
3514 }
3515
3516 void delayed_disconnect (void *cls,
3517     const struct GNUNET_SCHEDULER_TaskContext* tc)
3518 {
3519   struct NeighbourMapEntry *n = cls;
3520
3521   n->delayed_disconnect_task = GNUNET_SCHEDULER_NO_TASK;
3522   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3523               "Disconnecting by request from peer %s\n",
3524               GNUNET_i2s (&n->id));
3525   free_neighbour (n, GNUNET_NO);
3526 }
3527
3528
3529 /**
3530  * We received a disconnect message from the given peer,
3531  * validate and process.
3532  *
3533  * @param peer sender of the message
3534  * @param msg the disconnect message
3535  */
3536 void
3537 GST_neighbours_handle_disconnect_message (const struct GNUNET_PeerIdentity *peer,
3538                                           const struct GNUNET_MessageHeader *msg)
3539 {
3540   struct NeighbourMapEntry *n;
3541   const struct SessionDisconnectMessage *sdm;
3542
3543   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3544               "Received DISCONNECT message from peer `%s'\n",
3545               GNUNET_i2s (peer));
3546   if (ntohs (msg->size) != sizeof (struct SessionDisconnectMessage))
3547   {
3548     GNUNET_break_op (0);
3549     GNUNET_STATISTICS_update (GST_stats,
3550                               gettext_noop
3551                               ("# disconnect messages ignored (malformed)"), 1,
3552                               GNUNET_NO);
3553     return;
3554   }
3555   GNUNET_STATISTICS_update (GST_stats,
3556                             gettext_noop
3557                             ("# DISCONNECT messages received"),
3558                             1, GNUNET_NO);
3559   sdm = (const struct SessionDisconnectMessage *) msg;
3560   if (NULL == (n = lookup_neighbour (peer)))
3561     return;                     /* gone already */
3562   if (GNUNET_TIME_absolute_ntoh (sdm->timestamp).abs_value_us <= n->connect_ack_timestamp.abs_value_us)
3563   {
3564     GNUNET_STATISTICS_update (GST_stats,
3565                               gettext_noop
3566                               ("# disconnect messages ignored (timestamp)"), 1,
3567                               GNUNET_NO);
3568     return;
3569   }
3570   if (0 != memcmp (peer, &sdm->public_key, sizeof (struct GNUNET_PeerIdentity)))
3571   {
3572     GNUNET_break_op (0);
3573     return;
3574   }
3575   if (ntohl (sdm->purpose.size) !=
3576       sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
3577       sizeof (struct GNUNET_CRYPTO_EddsaPublicKey) +
3578       sizeof (struct GNUNET_TIME_AbsoluteNBO))
3579   {
3580     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3581                 "%s message from peer `%s' has invalid size \n",
3582                 "DISCONNECT",
3583                 GNUNET_i2s (peer));
3584     GNUNET_break_op (0);
3585     return;
3586   }
3587   if (GNUNET_OK !=
3588       GNUNET_CRYPTO_eddsa_verify
3589       (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT, &sdm->purpose,
3590        &sdm->signature, &sdm->public_key))
3591   {
3592     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3593                 "%s message from peer `%s' cannot be verified \n",
3594                 "DISCONNECT",
3595                 GNUNET_i2s (peer));
3596     GNUNET_break_op (0);
3597     return;
3598   }
3599   n->delayed_disconnect_task = GNUNET_SCHEDULER_add_now (&delayed_disconnect, n);
3600 }
3601
3602
3603 /**
3604  * Closure for the neighbours_iterate function.
3605  */
3606 struct IteratorContext
3607 {
3608   /**
3609    * Function to call on each connected neighbour.
3610    */
3611   GST_NeighbourIterator cb;
3612
3613   /**
3614    * Closure for 'cb'.
3615    */
3616   void *cb_cls;
3617 };
3618
3619
3620 /**
3621  * Call the callback from the closure for each neighbour.
3622  *
3623  * @param cls the `struct IteratorContext`
3624  * @param key the hash of the public key of the neighbour
3625  * @param value the `struct NeighbourMapEntry`
3626  * @return #GNUNET_OK (continue to iterate)
3627  */
3628 static int
3629 neighbours_iterate (void *cls,
3630                     const struct GNUNET_PeerIdentity *key,
3631                     void *value)
3632 {
3633   struct IteratorContext *ic = cls;
3634   struct NeighbourMapEntry *n = value;
3635   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in;
3636   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out;
3637
3638
3639   if (NULL != n->primary_address.address)
3640   {
3641     bandwidth_in = n->primary_address.bandwidth_in;
3642     bandwidth_out = n->primary_address.bandwidth_out;
3643   }
3644   else
3645   {
3646     bandwidth_in = GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT;
3647     bandwidth_out = GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT;
3648   }
3649   ic->cb (ic->cb_cls,
3650           &n->id,
3651           n->primary_address.address,
3652           n->state,
3653           n->timeout,
3654           bandwidth_in, bandwidth_out);
3655   return GNUNET_OK;
3656 }
3657
3658
3659 /**
3660  * Iterate over all connected neighbours.
3661  *
3662  * @param cb function to call
3663  * @param cb_cls closure for cb
3664  */
3665 void
3666 GST_neighbours_iterate (GST_NeighbourIterator cb, void *cb_cls)
3667 {
3668   struct IteratorContext ic;
3669
3670   if (NULL == neighbours)
3671     return; /* can happen during shutdown */
3672   ic.cb = cb;
3673   ic.cb_cls = cb_cls;
3674   GNUNET_CONTAINER_multipeermap_iterate (neighbours, &neighbours_iterate, &ic);
3675 }
3676
3677
3678 /**
3679  * If we have an active connection to the given target, it must be shutdown.
3680  *
3681  * @param target peer to disconnect from
3682  */
3683 void
3684 GST_neighbours_force_disconnect (const struct GNUNET_PeerIdentity *target)
3685 {
3686   struct NeighbourMapEntry *n;
3687
3688   if (NULL == (n = lookup_neighbour (target)))
3689     return;  /* not active */
3690   if (GNUNET_YES == test_connected (n))
3691     GNUNET_STATISTICS_update (GST_stats,
3692                               gettext_noop
3693                               ("# disconnected from peer upon explicit request"), 1,
3694                               GNUNET_NO);
3695   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3696               "Forced disconnect from peer %s\n",
3697               GNUNET_i2s (target));
3698   disconnect_neighbour (n);
3699 }
3700
3701
3702 /**
3703  * Obtain current latency information for the given neighbour.
3704  *
3705  * @param peer to get the latency for
3706  * @return observed latency of the address, FOREVER if the
3707  *         the connection is not up
3708  */
3709 struct GNUNET_TIME_Relative
3710 GST_neighbour_get_latency (const struct GNUNET_PeerIdentity *peer)
3711 {
3712   struct NeighbourMapEntry *n;
3713
3714   n = lookup_neighbour (peer);
3715   if (NULL == n)
3716     return GNUNET_TIME_UNIT_FOREVER_REL;
3717   switch (n->state)
3718   {
3719   case GNUNET_TRANSPORT_PS_CONNECTED:
3720   case GNUNET_TRANSPORT_PS_CONNECTED_SWITCHING_CONNECT_SENT:
3721   case GNUNET_TRANSPORT_PS_RECONNECT_SENT:
3722   case GNUNET_TRANSPORT_PS_RECONNECT_ATS:
3723     return n->latency;
3724   case GNUNET_TRANSPORT_PS_NOT_CONNECTED:
3725   case GNUNET_TRANSPORT_PS_INIT_ATS:
3726   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS:
3727   case GNUNET_TRANSPORT_PS_CONNECT_RECV_ACK:
3728   case GNUNET_TRANSPORT_PS_CONNECT_SENT:
3729   case GNUNET_TRANSPORT_PS_DISCONNECT:
3730   case GNUNET_TRANSPORT_PS_DISCONNECT_FINISHED:
3731     return GNUNET_TIME_UNIT_FOREVER_REL;
3732   default:
3733     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3734                 "Unhandled state `%s'\n",
3735                 GNUNET_TRANSPORT_ps2s (n->state));
3736     GNUNET_break (0);
3737     break;
3738   }
3739   return GNUNET_TIME_UNIT_FOREVER_REL;
3740 }
3741
3742
3743 /**
3744  * Obtain current address information for the given neighbour.
3745  *
3746  * @param peer
3747  * @return address currently used
3748  */
3749 struct GNUNET_HELLO_Address *
3750 GST_neighbour_get_current_address (const struct GNUNET_PeerIdentity *peer)
3751 {
3752   struct NeighbourMapEntry *n;
3753
3754   n = lookup_neighbour (peer);
3755   if (NULL == n)
3756     return NULL;
3757   return n->primary_address.address;
3758 }
3759
3760
3761 /**
3762  * Initialize the neighbours subsystem.
3763  *
3764  * @param cls closure for callbacks
3765  * @param connect_cb function to call if we connect to a peer
3766  * @param disconnect_cb function to call if we disconnect from a peer
3767  * @param peer_address_cb function to call if we change an active address
3768  *                   of a neighbour
3769  * @param max_fds maximum number of fds to use
3770  */
3771 void
3772 GST_neighbours_start (void *cls,
3773                       NotifyConnect connect_cb,
3774                       GNUNET_TRANSPORT_NotifyDisconnect disconnect_cb,
3775                       GNUNET_TRANSPORT_NeighbourChangeCallback peer_address_cb,
3776                       unsigned int max_fds)
3777 {
3778   callback_cls = cls;
3779   connect_notify_cb = connect_cb;
3780   disconnect_notify_cb = disconnect_cb;
3781   neighbour_change_cb = peer_address_cb;
3782   neighbours = GNUNET_CONTAINER_multipeermap_create (NEIGHBOUR_TABLE_SIZE, GNUNET_NO);
3783   registered_quota_notifications = GNUNET_CONTAINER_multipeermap_create (NEIGHBOUR_TABLE_SIZE, GNUNET_NO);
3784   util_transmission_tk = GNUNET_SCHEDULER_add_delayed (UTIL_TRANSMISSION_INTERVAL,
3785       utilization_transmission, NULL);
3786 }
3787
3788
3789 /**
3790  * Disconnect from the given neighbour.
3791  *
3792  * @param cls unused
3793  * @param key hash of neighbour's public key (not used)
3794  * @param value the 'struct NeighbourMapEntry' of the neighbour
3795  * @return #GNUNET_OK (continue to iterate)
3796  */
3797 static int
3798 disconnect_all_neighbours (void *cls,
3799                            const struct GNUNET_PeerIdentity *key,
3800                            void *value)
3801 {
3802   struct NeighbourMapEntry *n = value;
3803
3804   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3805               "Disconnecting peer `%4s', %s\n",
3806               GNUNET_i2s (&n->id), "SHUTDOWN_TASK");
3807   free_neighbour (n, GNUNET_NO);
3808   return GNUNET_OK;
3809 }
3810
3811
3812 /**
3813  * Cleanup the neighbours subsystem.
3814  */
3815 void
3816 GST_neighbours_stop ()
3817 {
3818   struct BlacklistCheckSwitchContext *cur;
3819   struct BlacklistCheckSwitchContext *next;
3820
3821   if (NULL == neighbours)
3822     return;
3823   if (GNUNET_SCHEDULER_NO_TASK != util_transmission_tk)
3824   {
3825     GNUNET_SCHEDULER_cancel (util_transmission_tk);
3826     util_transmission_tk = GNUNET_SCHEDULER_NO_TASK;
3827   }
3828
3829   GNUNET_CONTAINER_multipeermap_iterate (neighbours, &disconnect_all_neighbours,
3830       NULL );
3831   GNUNET_CONTAINER_multipeermap_destroy (neighbours);
3832
3833   next = pending_bc_head;
3834   for (cur = next; NULL != cur; cur = next )
3835   {
3836     next = cur->next;
3837     GNUNET_CONTAINER_DLL_remove (pending_bc_head, pending_bc_tail, cur);
3838
3839     if (NULL != cur->blc)
3840     {
3841       GST_blacklist_test_cancel (cur->blc);
3842       cur->blc = NULL;
3843     }
3844     if (NULL != cur->address)
3845       GNUNET_HELLO_address_free (cur->address);
3846     GNUNET_free_non_null (cur->ats);
3847     GNUNET_free (cur);
3848   }
3849
3850   GNUNET_CONTAINER_multipeermap_iterate (registered_quota_notifications,
3851       &free_notification_cb, NULL);
3852   GNUNET_CONTAINER_multipeermap_destroy (registered_quota_notifications);
3853   registered_quota_notifications = NULL;
3854
3855   neighbours = NULL;
3856   callback_cls = NULL;
3857   connect_notify_cb = NULL;
3858   disconnect_notify_cb = NULL;
3859   neighbour_change_cb = NULL;
3860 }
3861
3862
3863 /* end of file gnunet-service-transport_neighbours.c */