move GNUNET_TRANSPORT_ATS_ to GNUNET_ATS_
[oweals/gnunet.git] / src / transport / gnunet-service-transport_neighbours.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010,2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/gnunet-service-transport_neighbours.c
23  * @brief neighbour management
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_ats_service.h"
28 #include "gnunet-service-transport_neighbours.h"
29 #include "gnunet-service-transport_plugins.h"
30 #include "gnunet-service-transport_validation.h"
31 #include "gnunet-service-transport_clients.h"
32 #include "gnunet-service-transport.h"
33 #include "gnunet_peerinfo_service.h"
34 #include "gnunet_constants.h"
35 #include "transport.h"
36
37
38 /**
39  * Size of the neighbour hash map.
40  */
41 #define NEIGHBOUR_TABLE_SIZE 256
42
43 /**
44  * How often must a peer violate bandwidth quotas before we start
45  * to simply drop its messages?
46  */
47 #define QUOTA_VIOLATION_DROP_THRESHOLD 10
48
49 /**
50  * How often do we send KEEPALIVE messages to each of our neighbours?
51  * (idle timeout is 5 minutes or 300 seconds, so with 90s interval we
52  * send 3 keepalives in each interval, so 3 messages would need to be
53  * lost in a row for a disconnect).
54  */
55 #define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 90)
56
57
58 /**
59  * Entry in neighbours.
60  */
61 struct NeighbourMapEntry;
62
63 /**
64  * Message a peer sends to another to indicate its
65  * preference for communicating via a particular
66  * session (and the desire to establish a real
67  * connection).
68  */
69 struct SessionConnectMessage
70 {
71   /**
72    * Header of type 'GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT'
73    */
74   struct GNUNET_MessageHeader header;
75
76   /**
77    * Always zero.
78    */
79   uint32_t reserved GNUNET_PACKED;
80
81   /**
82    * Absolute time at the sender.  Only the most recent connect
83    * message implies which session is preferred by the sender.
84    */
85   struct GNUNET_TIME_AbsoluteNBO timestamp;
86
87 };
88
89
90 struct SessionDisconnectMessage
91 {
92   /**
93    * Header of type 'GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT'
94    */
95   struct GNUNET_MessageHeader header;
96
97   /**
98    * Always zero.
99    */
100   uint32_t reserved GNUNET_PACKED;
101
102   /**
103    * Purpose of the signature.  Extends over the timestamp.
104    * Purpose should be GNUNET_SIGNATURE_PURPOSE_TRANSPORT_DISCONNECT.
105    */
106   struct GNUNET_CRYPTO_RsaSignaturePurpose purpose;
107
108   /**
109    * Absolute time at the sender.  Only the most recent connect
110    * message implies which session is preferred by the sender.
111    */
112   struct GNUNET_TIME_AbsoluteNBO timestamp;
113
114   /**
115    * Signature of the peer that sends us the disconnect.  Only
116    * valid if the timestamp is AFTER the timestamp from the
117    * corresponding 'CONNECT' message.
118    */
119   struct GNUNET_CRYPTO_RsaSignature signature;
120 };
121
122
123 /**
124  * For each neighbour we keep a list of messages
125  * that we still want to transmit to the neighbour.
126  */
127 struct MessageQueue
128 {
129
130   /**
131    * This is a doubly linked list.
132    */
133   struct MessageQueue *next;
134
135   /**
136    * This is a doubly linked list.
137    */
138   struct MessageQueue *prev;
139
140   /**
141    * Once this message is actively being transmitted, which
142    * neighbour is it associated with?
143    */
144   struct NeighbourMapEntry *n;
145
146   /**
147    * Function to call once we're done.
148    */
149   GST_NeighbourSendContinuation cont;
150
151   /**
152    * Closure for 'cont'
153    */
154   void *cont_cls;
155
156   /**
157    * The message(s) we want to transmit, GNUNET_MessageHeader(s)
158    * stuck together in memory.  Allocated at the end of this struct.
159    */
160   const char *message_buf;
161
162   /**
163    * Size of the message buf
164    */
165   size_t message_buf_size;
166
167   /**
168    * At what time should we fail?
169    */
170   struct GNUNET_TIME_Absolute timeout;
171
172 };
173
174
175 /**
176  * Entry in neighbours.
177  */
178 struct NeighbourMapEntry
179 {
180
181   /**
182    * Head of list of messages we would like to send to this peer;
183    * must contain at most one message per client.
184    */
185   struct MessageQueue *messages_head;
186
187   /**
188    * Tail of list of messages we would like to send to this peer; must
189    * contain at most one message per client.
190    */
191   struct MessageQueue *messages_tail;
192
193   /**
194    * Performance data for the peer.
195    */
196   //struct GNUNET_ATS_Information *ats;
197
198   /**
199    * Are we currently trying to send a message? If so, which one?
200    */
201   struct MessageQueue *is_active;
202
203   /**
204    * Active session for communicating with the peer.
205    */
206   struct Session *session;
207
208   /**
209    * Name of the plugin we currently use.
210    */
211   char *plugin_name;
212
213   /**
214    * Address used for communicating with the peer, NULL for inbound connections.
215    */
216   void *addr;
217
218   /**
219    * Number of bytes in 'addr'.
220    */
221   size_t addrlen;
222
223   /**
224    * Identity of this neighbour.
225    */
226   struct GNUNET_PeerIdentity id;
227
228   /**
229    * ID of task scheduled to run when this peer is about to
230    * time out (will free resources associated with the peer).
231    */
232   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
233
234   /**
235    * ID of task scheduled to send keepalives.
236    */
237   GNUNET_SCHEDULER_TaskIdentifier keepalive_task;
238
239   /**
240    * ID of task scheduled to run when we should try transmitting
241    * the head of the message queue.
242    */
243   GNUNET_SCHEDULER_TaskIdentifier transmission_task;
244
245   /**
246    * Tracker for inbound bandwidth.
247    */
248   struct GNUNET_BANDWIDTH_Tracker in_tracker;
249
250   /**
251    * How often has the other peer (recently) violated the inbound
252    * traffic limit?  Incremented by 10 per violation, decremented by 1
253    * per non-violation (for each time interval).
254    */
255   unsigned int quota_violation_count;
256
257   /**
258    * Number of values in 'ats' array.
259    */
260   //unsigned int ats_count;
261
262   /**
263    * Are we already in the process of disconnecting this neighbour?
264    */
265   int in_disconnect;
266
267   /**
268    * Do we currently consider this neighbour connected? (as far as
269    * the connect/disconnect callbacks are concerned)?
270    */
271   int is_connected;
272
273 };
274
275
276 /**
277  * All known neighbours and their HELLOs.
278  */
279 static struct GNUNET_CONTAINER_MultiHashMap *neighbours;
280
281 /**
282  * Closure for connect_notify_cb and disconnect_notify_cb
283  */
284 static void *callback_cls;
285
286 /**
287  * Function to call when we connected to a neighbour.
288  */
289 static GNUNET_TRANSPORT_NotifyConnect connect_notify_cb;
290
291 /**
292  * Function to call when we disconnected from a neighbour.
293  */
294 static GNUNET_TRANSPORT_NotifyDisconnect disconnect_notify_cb;
295
296 /**
297  * counter for connected neighbours
298  */
299 static int neighbours_connected;
300
301 /**
302  * Lookup a neighbour entry in the neighbours hash map.
303  *
304  * @param pid identity of the peer to look up
305  * @return the entry, NULL if there is no existing record
306  */
307 static struct NeighbourMapEntry *
308 lookup_neighbour (const struct GNUNET_PeerIdentity *pid)
309 {
310   return GNUNET_CONTAINER_multihashmap_get (neighbours, &pid->hashPubKey);
311 }
312
313
314 /**
315  * Task invoked to start a transmission to another peer.
316  *
317  * @param cls the 'struct NeighbourMapEntry'
318  * @param tc scheduler context
319  */
320 static void
321 transmission_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
322
323
324 /**
325  * We're done with our transmission attempt, continue processing.
326  *
327  * @param cls the 'struct MessageQueue' of the message
328  * @param receiver intended receiver
329  * @param success whether it worked or not
330  */
331 static void
332 transmit_send_continuation (void *cls,
333                             const struct GNUNET_PeerIdentity *receiver,
334                             int success)
335 {
336   struct MessageQueue *mq;
337   struct NeighbourMapEntry *n;
338
339   mq = cls;
340   n = mq->n;
341   if (NULL != n)
342   {
343     GNUNET_assert (n->is_active == mq);
344     n->is_active = NULL;
345     GNUNET_assert (n->transmission_task == GNUNET_SCHEDULER_NO_TASK);
346     n->transmission_task = GNUNET_SCHEDULER_add_now (&transmission_task, n);
347   }
348   if (NULL != mq->cont)
349     mq->cont (mq->cont_cls, success);
350   GNUNET_free (mq);
351 }
352
353
354 /**
355  * Check the ready list for the given neighbour and if a plugin is
356  * ready for transmission (and if we have a message), do so!
357  *
358  * @param n target peer for which to transmit
359  */
360 static void
361 try_transmission_to_peer (struct NeighbourMapEntry *n)
362 {
363   struct MessageQueue *mq;
364   struct GNUNET_TIME_Relative timeout;
365   ssize_t ret;
366   struct GNUNET_TRANSPORT_PluginFunctions *papi;
367
368   if (n->is_active != NULL)
369     return;                     /* transmission already pending */
370   if (n->transmission_task != GNUNET_SCHEDULER_NO_TASK)
371     return;                     /* currently waiting for bandwidth */
372   while (NULL != (mq = n->messages_head))
373   {
374     timeout = GNUNET_TIME_absolute_get_remaining (mq->timeout);
375     if (timeout.rel_value > 0)
376       break;
377     GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq);
378     n->is_active = mq;
379     transmit_send_continuation (mq, &n->id, GNUNET_SYSERR);     /* timeout */
380   }
381   if (NULL == mq)
382     return;                     /* no more messages */
383
384   papi = GST_plugins_find (n->plugin_name);
385   if (papi == NULL)
386   {
387     GNUNET_break (0);
388     return;
389   }
390   GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq);
391   n->is_active = mq;
392   mq->n = n;
393
394   if  (((n->session == NULL) && (n->addr == NULL) && (n->addrlen == 0)))
395   {
396     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No address peer for peer `%s'\n",
397                 GNUNET_i2s (&n->id));
398     transmit_send_continuation (mq, &n->id, GNUNET_SYSERR);
399     n->transmission_task = GNUNET_SCHEDULER_add_now (&transmission_task, n);
400     return;
401   }
402
403   ret =
404       papi->send (papi->cls, &n->id, mq->message_buf, mq->message_buf_size,
405                   0 /* priority -- remove from plugin API? */ ,
406                   timeout, n->session, n->addr, n->addrlen, GNUNET_YES,
407                   &transmit_send_continuation, mq);
408   if (ret == -1)
409   {
410     /* failure, but 'send' would not call continuation in this case,
411      * so we need to do it here! */
412     transmit_send_continuation (mq, &n->id, GNUNET_SYSERR);
413     n->transmission_task = GNUNET_SCHEDULER_add_now (&transmission_task, n);
414   }
415 }
416
417
418 /**
419  * Task invoked to start a transmission to another peer.
420  *
421  * @param cls the 'struct NeighbourMapEntry'
422  * @param tc scheduler context
423  */
424 static void
425 transmission_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
426 {
427   struct NeighbourMapEntry *n = cls;
428
429   n->transmission_task = GNUNET_SCHEDULER_NO_TASK;
430   try_transmission_to_peer (n);
431 }
432
433
434 /**
435  * Initialize the neighbours subsystem.
436  *
437  * @param cls closure for callbacks
438  * @param connect_cb function to call if we connect to a peer
439  * @param disconnect_cb function to call if we disconnect from a peer
440  */
441 void
442 GST_neighbours_start (void *cls, GNUNET_TRANSPORT_NotifyConnect connect_cb,
443                       GNUNET_TRANSPORT_NotifyDisconnect disconnect_cb)
444 {
445   callback_cls = cls;
446   connect_notify_cb = connect_cb;
447   disconnect_notify_cb = disconnect_cb;
448   neighbours = GNUNET_CONTAINER_multihashmap_create (NEIGHBOUR_TABLE_SIZE);
449 }
450
451
452 /**
453  * Disconnect from the given neighbour, clean up the record.
454  *
455  * @param n neighbour to disconnect from
456  */
457 static void
458 disconnect_neighbour (struct NeighbourMapEntry *n)
459 {
460   struct MessageQueue *mq;
461
462   if (GNUNET_YES == n->in_disconnect)
463     return;
464   n->in_disconnect = GNUNET_YES;
465   while (NULL != (mq = n->messages_head))
466   {
467     GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq);
468     if (NULL != mq->cont)
469       mq->cont (mq->cont_cls, GNUNET_SYSERR);
470     GNUNET_free (mq);
471   }
472   if (NULL != n->is_active)
473   {
474     n->is_active->n = NULL;
475     n->is_active = NULL;
476   }
477   if (GNUNET_YES == n->is_connected)
478   {
479     n->is_connected = GNUNET_NO;
480     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != n->keepalive_task);
481     GNUNET_SCHEDULER_cancel (n->keepalive_task);
482     n->keepalive_task = GNUNET_SCHEDULER_NO_TASK;  
483     GNUNET_assert (neighbours_connected > 0);
484     neighbours_connected--;
485     GNUNET_STATISTICS_update (GST_stats, gettext_noop ("# peers connected"), -1,
486                               GNUNET_NO);
487     disconnect_notify_cb (callback_cls, &n->id);
488   }
489   GNUNET_assert (GNUNET_YES ==
490                  GNUNET_CONTAINER_multihashmap_remove (neighbours,
491                                                        &n->id.hashPubKey, n));
492   if (GNUNET_SCHEDULER_NO_TASK != n->timeout_task)
493   {
494     GNUNET_SCHEDULER_cancel (n->timeout_task);
495     n->timeout_task = GNUNET_SCHEDULER_NO_TASK;
496   }
497   if (GNUNET_SCHEDULER_NO_TASK != n->transmission_task)
498   {
499     GNUNET_SCHEDULER_cancel (n->transmission_task);
500     n->transmission_task = GNUNET_SCHEDULER_NO_TASK;
501   }
502   if (NULL != n->plugin_name)
503   {
504     GNUNET_free (n->plugin_name);
505     n->plugin_name = NULL;
506   }
507   if (NULL != n->addr)
508   {
509     GNUNET_free (n->addr);
510     n->addr = NULL;
511     n->addrlen = 0;
512   }
513   n->session = NULL;
514   GNUNET_free (n);
515 }
516
517
518 /**
519  * Peer has been idle for too long. Disconnect.
520  *
521  * @param cls the 'struct NeighbourMapEntry' of the neighbour that went idle
522  * @param tc scheduler context
523  */
524 static void
525 neighbour_timeout_task (void *cls,
526                         const struct GNUNET_SCHEDULER_TaskContext *tc)
527 {
528   struct NeighbourMapEntry *n = cls;
529
530   n->timeout_task = GNUNET_SCHEDULER_NO_TASK;
531   if (GNUNET_YES == n->is_connected)
532     GNUNET_STATISTICS_update (GST_stats,
533                             gettext_noop ("# peers disconnected due to timeout"), 1,
534                             GNUNET_NO);
535   disconnect_neighbour (n);
536 }
537
538
539 /**
540  * Send another keepalive message.
541  *
542  * @param cls the 'struct NeighbourMapEntry' of the neighbour that went idle
543  * @param tc scheduler context
544  */
545 static void
546 neighbour_keepalive_task (void *cls,
547                           const struct GNUNET_SCHEDULER_TaskContext *tc)
548 {
549   struct NeighbourMapEntry *n = cls;
550   struct GNUNET_MessageHeader m;
551   struct GNUNET_TRANSPORT_PluginFunctions *papi;
552
553   n->keepalive_task = GNUNET_SCHEDULER_add_delayed (KEEPALIVE_FREQUENCY,
554                                                     &neighbour_keepalive_task,
555                                                     n);
556   GNUNET_assert (GNUNET_YES == n->is_connected);
557   GNUNET_STATISTICS_update (GST_stats,
558                             gettext_noop ("# keepalives sent"), 1,
559                             GNUNET_NO);
560   m.size = htons (sizeof (struct GNUNET_MessageHeader));
561   m.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE);
562   papi = GST_plugins_find (n->plugin_name);
563   if (papi != NULL)
564     papi->send (papi->cls, 
565                 &n->id, (const void *) &m,
566                 sizeof (m),
567                 UINT32_MAX /* priority */ ,
568                 GNUNET_TIME_UNIT_FOREVER_REL, n->session, n->addr, n->addrlen,
569                 GNUNET_YES, NULL, NULL);
570 }
571
572
573 /**
574  * Disconnect from the given neighbour.
575  *
576  * @param cls unused
577  * @param key hash of neighbour's public key (not used)
578  * @param value the 'struct NeighbourMapEntry' of the neighbour
579  */
580 static int
581 disconnect_all_neighbours (void *cls, const GNUNET_HashCode * key, void *value)
582 {
583   struct NeighbourMapEntry *n = value;
584
585 #if DEBUG_TRANSPORT
586   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting peer `%4s', %s\n",
587               GNUNET_i2s (&n->id), "SHUTDOWN_TASK");
588 #endif
589   if (GNUNET_YES == n->is_connected)
590     GNUNET_STATISTICS_update (GST_stats,
591                               gettext_noop ("# peers disconnected due to global disconnect"), 1,
592                               GNUNET_NO);
593   disconnect_neighbour (n);
594   return GNUNET_OK;
595 }
596
597
598 /**
599  * Cleanup the neighbours subsystem.
600  */
601 void
602 GST_neighbours_stop ()
603 {
604   GNUNET_assert (neighbours != NULL);
605
606   GNUNET_CONTAINER_multihashmap_iterate (neighbours, &disconnect_all_neighbours,
607                                          NULL);
608   GNUNET_CONTAINER_multihashmap_destroy (neighbours);
609   GNUNET_assert (neighbours_connected == 0);
610   neighbours = NULL;
611   callback_cls = NULL;
612   connect_notify_cb = NULL;
613   disconnect_notify_cb = NULL;
614 }
615
616
617 /**
618  * For an existing neighbour record, set the active connection to
619  * the given address.
620  *
621  * @param peer identity of the peer to switch the address for
622  * @param plugin_name name of transport that delivered the PONG
623  * @param address address of the other peer, NULL if other peer
624  *                       connected to us
625  * @param address_len number of bytes in address
626  * @param session session to use (or NULL)
627  * @param ats performance data
628  * @param ats_count number of entries in ats (excluding 0-termination)
629  */
630 void
631 GST_neighbours_switch_to_address (const struct GNUNET_PeerIdentity *peer,
632                                   const char *plugin_name, const void *address,
633                                   size_t address_len, struct Session *session,
634                                   const struct GNUNET_ATS_Information
635                                   *ats, uint32_t ats_count)
636 {
637   struct NeighbourMapEntry *n;
638   struct SessionConnectMessage connect_msg;
639   int was_connected;
640
641   GNUNET_assert (neighbours != NULL);
642
643   n = lookup_neighbour (peer);
644   if (NULL == n)
645   {
646     /* FIXME: ATS not fully implemented, once ATS only generates
647        these events for 'connected' addresses, things should be better... */
648     // GNUNET_break (0);
649     return;
650   }
651   was_connected = n->is_connected;
652   n->is_connected = GNUNET_YES;
653   n->keepalive_task = GNUNET_SCHEDULER_add_now (&neighbour_keepalive_task,
654                                                 n);
655
656 #if DEBUG_TRANSPORT
657   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
658               "SWITCH! Peer `%4s' switches to plugin `%s' address '%s' session %X\n",
659               GNUNET_i2s (peer), plugin_name,
660               (address_len == 0) ? "<inbound>" : GST_plugins_a2s (plugin_name,
661                                                                   address,
662                                                                   address_len),
663               session);
664 #endif
665
666   GNUNET_free_non_null (n->addr);
667   n->addr = GNUNET_malloc (address_len);
668   memcpy (n->addr, address, address_len);
669   n->addrlen = address_len;
670   n->session = session;
671   GNUNET_free_non_null (n->plugin_name);
672   n->plugin_name = GNUNET_strdup (plugin_name);
673   GNUNET_SCHEDULER_cancel (n->timeout_task);
674   n->timeout_task =
675       GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
676                                     &neighbour_timeout_task, n);
677   connect_msg.header.size = htons (sizeof (struct SessionConnectMessage));
678   connect_msg.header.type =
679       htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_CONNECT);
680   connect_msg.reserved = htonl (0);
681   connect_msg.timestamp =
682       GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_get ());
683   GST_neighbours_send (peer, &connect_msg, sizeof (connect_msg),
684                        GNUNET_TIME_UNIT_FOREVER_REL, NULL, NULL);
685
686   if (GNUNET_YES == was_connected)
687     return;
688   /* First tell clients about connected neighbours...*/
689   neighbours_connected++;
690   GNUNET_STATISTICS_update (GST_stats, gettext_noop ("# peers connected"), 1,
691                             GNUNET_NO);
692   connect_notify_cb (callback_cls, peer, ats, ats_count);
693 }
694
695 /**
696  * Try to create a connection to the given target (eventually).
697  *
698  * @param target peer to try to connect to
699  */
700 void
701 GST_neighbours_try_connect (const struct GNUNET_PeerIdentity *target)
702 {
703   struct NeighbourMapEntry *n;
704
705   GNUNET_assert (neighbours != NULL);
706
707 #if DEBUG_TRANSPORT
708   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Trying to connect to peer `%s'\n",
709               GNUNET_i2s (target));
710 #endif
711
712   GNUNET_assert (0 !=
713                  memcmp (target, &GST_my_identity,
714                          sizeof (struct GNUNET_PeerIdentity)));
715   n = lookup_neighbour (target);
716   if ((NULL != n) && (GNUNET_YES == n->is_connected))
717     return;                     /* already connected */
718   if (n == NULL)
719   {
720 #if DEBUG_TRANSPORT
721     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
722                 "Unknown peer `%s', creating new neighbour\n",
723                 GNUNET_i2s (target));
724 #endif
725     n = GNUNET_malloc (sizeof (struct NeighbourMapEntry));
726     n->id = *target;
727     GNUNET_BANDWIDTH_tracker_init (&n->in_tracker,
728                                    GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
729                                    MAX_BANDWIDTH_CARRY_S);
730     n->timeout_task =
731         GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
732                                       &neighbour_timeout_task, n);
733     GNUNET_assert (GNUNET_OK ==
734                    GNUNET_CONTAINER_multihashmap_put (neighbours,
735                                                       &n->id.hashPubKey, n,
736                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
737   }
738 #if DEBUG_TRANSPORT
739   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
740               "Asking ATS for suggested address to connect to peer `%s'\n",
741               GNUNET_i2s (target));
742 #endif
743    GNUNET_ATS_suggest_address (GST_ats, target);
744 }
745
746
747 /**
748  * Test if we're connected to the given peer.
749  *
750  * @param target peer to test
751  * @return GNUNET_YES if we are connected, GNUNET_NO if not
752  */
753 int
754 GST_neighbours_test_connected (const struct GNUNET_PeerIdentity *target)
755 {
756   struct NeighbourMapEntry *n;
757
758   GNUNET_assert (neighbours != NULL);
759
760   n = lookup_neighbour (target);
761   if ((NULL == n) || (n->is_connected != GNUNET_YES))
762     return GNUNET_NO;           /* not connected */
763   return GNUNET_YES;
764 }
765
766
767 /**
768  * A session was terminated. Take note.
769  *
770  * @param peer identity of the peer where the session died
771  * @param session session that is gone
772  */
773 void
774 GST_neighbours_session_terminated (const struct GNUNET_PeerIdentity *peer,
775                                    struct Session *session)
776 {
777   struct NeighbourMapEntry *n;
778
779   GNUNET_assert (neighbours != NULL);
780
781 #if DEBUG_TRANSPORT
782   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
783               "Session %X to peer `%s' ended \n",
784               session, GNUNET_i2s (peer));
785 #endif
786
787   n = lookup_neighbour (peer);
788   if (NULL == n)
789     return;
790   if (session != n->session)
791     return;                     /* doesn't affect us */
792
793   n->session = NULL;
794   GNUNET_free (n->addr);
795   n->addr = NULL;
796   n->addrlen = 0;
797
798
799   if (GNUNET_YES != n->is_connected)
800     return;                     /* not connected anymore anyway, shouldn't matter */
801
802   //n->is_connected = GNUNET_NO;
803
804   /* fast disconnect unless ATS suggests a new address */
805   GNUNET_SCHEDULER_cancel (n->timeout_task);
806   n->timeout_task =
807       GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_DISCONNECT_SESSION_TIMEOUT,
808                                     &neighbour_timeout_task, n);
809   /* try QUICKLY to re-establish a connection, reduce timeout! */
810   GNUNET_ATS_suggest_address (GST_ats, peer);
811 }
812
813
814 /**
815  * Transmit a message to the given target using the active connection.
816  *
817  * @param target destination
818  * @param msg message to send
819  * @param msg_size number of bytes in msg
820  * @param timeout when to fail with timeout
821  * @param cont function to call when done
822  * @param cont_cls closure for 'cont'
823  */
824 void
825 GST_neighbours_send (const struct GNUNET_PeerIdentity *target, const void *msg,
826                      size_t msg_size, struct GNUNET_TIME_Relative timeout,
827                      GST_NeighbourSendContinuation cont, void *cont_cls)
828 {
829   struct NeighbourMapEntry *n;
830   struct MessageQueue *mq;
831
832   GNUNET_assert (neighbours != NULL);
833
834   n = lookup_neighbour (target);
835   if ((n == NULL) || (GNUNET_YES != n->is_connected))
836   {
837     GNUNET_STATISTICS_update (GST_stats,
838                               gettext_noop
839                               ("# messages not sent (no such peer or not connected)"),
840                               1, GNUNET_NO);
841 #if DEBUG_TRANSPORT
842     if (n == NULL)
843       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
844                   "Could not send message to peer `%s': unknown neighbor",
845                   GNUNET_i2s (target));
846     else if (GNUNET_YES != n->is_connected)
847       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
848                   "Could not send message to peer `%s': not connected\n",
849                   GNUNET_i2s (target));
850 #endif
851     if (NULL != cont)
852       cont (cont_cls, GNUNET_SYSERR);
853     return;
854   }
855
856   if ((n->session == NULL) && (n->addr == NULL) && (n->addrlen ==0))
857   {
858     GNUNET_STATISTICS_update (GST_stats,
859                               gettext_noop
860                               ("# messages not sent (no such peer or not connected)"),
861                               1, GNUNET_NO);
862 #if DEBUG_TRANSPORT
863       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
864                   "Could not send message to peer `%s': no address available\n",
865                   GNUNET_i2s (target));
866 #endif
867
868     if (NULL != cont)
869       cont (cont_cls, GNUNET_SYSERR);
870     return;
871   }
872
873
874   GNUNET_assert (msg_size >= sizeof (struct GNUNET_MessageHeader));
875   GNUNET_STATISTICS_update (GST_stats,
876                             gettext_noop
877                             ("# bytes in message queue for other peers"),
878                             msg_size, GNUNET_NO);
879   mq = GNUNET_malloc (sizeof (struct MessageQueue) + msg_size);
880   mq->cont = cont;
881   mq->cont_cls = cont_cls;
882   /* FIXME: this memcpy can be up to 7% of our total runtime! */
883   memcpy (&mq[1], msg, msg_size);
884   mq->message_buf = (const char *) &mq[1];
885   mq->message_buf_size = msg_size;
886   mq->timeout = GNUNET_TIME_relative_to_absolute (timeout);
887   GNUNET_CONTAINER_DLL_insert_tail (n->messages_head, n->messages_tail, mq);
888   if ((GNUNET_SCHEDULER_NO_TASK == n->transmission_task) &&
889       (NULL == n->is_active))
890     n->transmission_task = GNUNET_SCHEDULER_add_now (&transmission_task, n);
891 }
892
893
894 /**
895  * We have received a message from the given sender.  How long should
896  * we delay before receiving more?  (Also used to keep the peer marked
897  * as live).
898  *
899  * @param sender sender of the message
900  * @param size size of the message
901  * @param do_forward set to GNUNET_YES if the message should be forwarded to clients
902  *                   GNUNET_NO if the neighbour is not connected or violates the quota
903  * @return how long to wait before reading more from this sender
904  */
905 struct GNUNET_TIME_Relative
906 GST_neighbours_calculate_receive_delay (const struct GNUNET_PeerIdentity
907                                         *sender, ssize_t size, int *do_forward)
908 {
909   struct NeighbourMapEntry *n;
910   struct GNUNET_TIME_Relative ret;
911
912   GNUNET_assert (neighbours != NULL);
913
914   n = lookup_neighbour (sender);
915   if (n == NULL)
916   {
917     *do_forward = GNUNET_NO;
918     return GNUNET_TIME_UNIT_ZERO;
919   }
920   if (GNUNET_YES == GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker, size))
921   {
922     n->quota_violation_count++;
923 #if DEBUG_TRANSPORT
924     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
925                 "Bandwidth quota (%u b/s) violation detected (total of %u).\n",
926                 n->in_tracker.available_bytes_per_s__,
927                 n->quota_violation_count);
928 #endif
929     /* Discount 32k per violation */
930     GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker, -32 * 1024);
931   }
932   else
933   {
934     if (n->quota_violation_count > 0)
935     {
936       /* try to add 32k back */
937       GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker, 32 * 1024);
938       n->quota_violation_count--;
939     }
940   }
941   if (n->quota_violation_count > QUOTA_VIOLATION_DROP_THRESHOLD)
942   {
943     GNUNET_STATISTICS_update (GST_stats,
944                               gettext_noop
945                               ("# bandwidth quota violations by other peers"),
946                               1, GNUNET_NO);
947     *do_forward = GNUNET_NO;
948     return GNUNET_CONSTANTS_QUOTA_VIOLATION_TIMEOUT;
949   }
950   *do_forward = GNUNET_YES;
951   ret = GNUNET_BANDWIDTH_tracker_get_delay (&n->in_tracker, 0);
952   if (ret.rel_value > 0)
953   {
954 #if DEBUG_TRANSPORT
955     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
956                 "Throttling read (%llu bytes excess at %u b/s), waiting %llu ms before reading more.\n",
957                 (unsigned long long) n->in_tracker.
958                 consumption_since_last_update__,
959                 (unsigned int) n->in_tracker.available_bytes_per_s__,
960                 (unsigned long long) ret.rel_value);
961 #endif
962     GNUNET_STATISTICS_update (GST_stats,
963                               gettext_noop ("# ms throttling suggested"),
964                               (int64_t) ret.rel_value, GNUNET_NO);
965   }
966   return ret;
967 }
968
969
970 /**
971  * Keep the connection to the given neighbour alive longer,
972  * we received a KEEPALIVE (or equivalent).
973  *
974  * @param neighbour neighbour to keep alive
975  */
976 void
977 GST_neighbours_keepalive (const struct GNUNET_PeerIdentity *neighbour)
978 {
979   struct NeighbourMapEntry *n;
980
981   GNUNET_assert (neighbours != NULL);
982
983   n = lookup_neighbour (neighbour);
984   if (NULL == n)
985   {
986     GNUNET_STATISTICS_update (GST_stats,
987                               gettext_noop
988                               ("# KEEPALIVE messages discarded (not connected)"),
989                               1, GNUNET_NO);
990     return;
991   }
992   GNUNET_SCHEDULER_cancel (n->timeout_task);
993   n->timeout_task =
994       GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
995                                     &neighbour_timeout_task, n);
996 }
997
998
999 /**
1000  * Change the incoming quota for the given peer.
1001  *
1002  * @param neighbour identity of peer to change qutoa for
1003  * @param quota new quota
1004  */
1005 void
1006 GST_neighbours_set_incoming_quota (const struct GNUNET_PeerIdentity *neighbour,
1007                                    struct GNUNET_BANDWIDTH_Value32NBO quota)
1008 {
1009   struct NeighbourMapEntry *n;
1010
1011   GNUNET_assert (neighbours != NULL);
1012
1013   n = lookup_neighbour (neighbour);
1014   if (n == NULL)
1015   {
1016     GNUNET_STATISTICS_update (GST_stats,
1017                               gettext_noop
1018                               ("# SET QUOTA messages ignored (no such peer)"),
1019                               1, GNUNET_NO);
1020     return;
1021   }
1022   GNUNET_BANDWIDTH_tracker_update_quota (&n->in_tracker, quota);
1023   if (0 != ntohl (quota.value__))
1024     return;
1025 #if DEBUG_TRANSPORT
1026   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting peer `%4s' due to `%s'\n",
1027               GNUNET_i2s (&n->id), "SET_QUOTA");
1028 #endif
1029   if (GNUNET_YES == n->is_connected)
1030     GNUNET_STATISTICS_update (GST_stats,
1031                               gettext_noop ("# disconnects due to quota of 0"), 1,
1032                               GNUNET_NO);
1033   disconnect_neighbour (n);
1034 }
1035
1036
1037 /**
1038  * Closure for the neighbours_iterate function.
1039  */
1040 struct IteratorContext
1041 {
1042   /**
1043    * Function to call on each connected neighbour.
1044    */
1045   GST_NeighbourIterator cb;
1046
1047   /**
1048    * Closure for 'cb'.
1049    */
1050   void *cb_cls;
1051 };
1052
1053
1054 /**
1055  * Call the callback from the closure for each connected neighbour.
1056  *
1057  * @param cls the 'struct IteratorContext'
1058  * @param key the hash of the public key of the neighbour
1059  * @param value the 'struct NeighbourMapEntry'
1060  * @return GNUNET_OK (continue to iterate)
1061  */
1062 static int
1063 neighbours_iterate (void *cls, const GNUNET_HashCode * key, void *value)
1064 {
1065   struct IteratorContext *ic = cls;
1066   struct NeighbourMapEntry *n = value;
1067
1068   if (GNUNET_YES != n->is_connected)
1069     return GNUNET_OK;
1070
1071   ic->cb (ic->cb_cls, &n->id, NULL, 0, n->plugin_name, n->addr, n->addrlen);
1072   return GNUNET_OK;
1073 }
1074
1075
1076 /**
1077  * Iterate over all connected neighbours.
1078  *
1079  * @param cb function to call
1080  * @param cb_cls closure for cb
1081  */
1082 void
1083 GST_neighbours_iterate (GST_NeighbourIterator cb, void *cb_cls)
1084 {
1085   struct IteratorContext ic;
1086
1087   GNUNET_assert (neighbours != NULL);
1088
1089   ic.cb = cb;
1090   ic.cb_cls = cb_cls;
1091   GNUNET_CONTAINER_multihashmap_iterate (neighbours, &neighbours_iterate, &ic);
1092 }
1093
1094
1095 /**
1096  * If we have an active connection to the given target, it must be shutdown.
1097  *
1098  * @param target peer to disconnect from
1099  */
1100 void
1101 GST_neighbours_force_disconnect (const struct GNUNET_PeerIdentity *target)
1102 {
1103   struct NeighbourMapEntry *n;
1104   struct GNUNET_TRANSPORT_PluginFunctions *papi;
1105   struct SessionDisconnectMessage disconnect_msg;
1106
1107   GNUNET_assert (neighbours != NULL);
1108
1109   n = lookup_neighbour (target);
1110   if (NULL == n)
1111     return;                     /* not active */
1112   if (GNUNET_YES == n->is_connected)
1113   {
1114     /* we're actually connected, send DISCONNECT message */
1115     disconnect_msg.header.size = htons (sizeof (struct SessionDisconnectMessage));
1116     disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
1117     disconnect_msg.reserved = htonl (0);
1118     disconnect_msg.purpose.size = htonl (sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) +
1119                                          sizeof (struct GNUNET_TIME_AbsoluteNBO));
1120     disconnect_msg.purpose.purpose = htonl (GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT);
1121     disconnect_msg.timestamp = GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_get ());
1122     GNUNET_assert (GNUNET_OK ==
1123                    GNUNET_CRYPTO_rsa_sign (GST_my_private_key,
1124                                            &disconnect_msg.purpose,
1125                                            &disconnect_msg.signature));
1126     papi = GST_plugins_find (n->plugin_name);
1127     if (papi != NULL)
1128       papi->send (papi->cls, target, (const void *) &disconnect_msg,
1129                   sizeof (disconnect_msg),
1130                   UINT32_MAX /* priority */ ,
1131                   GNUNET_TIME_UNIT_FOREVER_REL, n->session, n->addr, n->addrlen,
1132                   GNUNET_YES, NULL, NULL);
1133     GNUNET_STATISTICS_update (GST_stats,
1134                               gettext_noop ("# peers disconnected due to external request"), 1,
1135                               GNUNET_NO);
1136   }
1137   disconnect_neighbour (n);
1138 }
1139
1140
1141 /* end of file gnunet-service-transport_neighbours.c */