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