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