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