validation fast start and throttling
[oweals/gnunet.git] / src / transport / gnunet-service-transport_validation.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_validation.c
23  * @brief address validation subsystem
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet-service-transport_validation.h"
28 #include "gnunet-service-transport_plugins.h"
29 #include "gnunet-service-transport_hello.h"
30 #include "gnunet-service-transport_blacklist.h"
31 #include "gnunet-service-transport.h"
32 #include "gnunet_hello_lib.h"
33 #include "gnunet_ats_service.h"
34 #include "gnunet_peerinfo_service.h"
35 #include "gnunet_signatures.h"
36
37
38 /**
39  * How long is a PONG signature valid?  We'll recycle a signature until
40  * 1/4 of this time is remaining.  PONGs should expire so that if our
41  * external addresses change an adversary cannot replay them indefinitely.
42  * OTOH, we don't want to spend too much time generating PONG signatures,
43  * so they must have some lifetime to reduce our CPU usage.
44  */
45 #define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
46
47 /**
48  * After how long do we expire an address in a HELLO that we just
49  * validated?  This value is also used for our own addresses when we
50  * create a HELLO.
51  */
52 #define HELLO_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
53
54 /**
55  * How often do we allow PINGing an address that we have not yet
56  * validated?  This also determines how long we track an address that
57  * we cannot validate (because after this time we can destroy the
58  * validation record).
59  */
60 #define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
61
62 /**
63  * How often do we PING an address that we have successfully validated
64  * in the past but are not actively using?  Should be (significantly)
65  * smaller than HELLO_ADDRESS_EXPIRATION.
66  */
67 #define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
68
69 /**
70  * How often do we PING an address that we are currently using?
71  */
72 #define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
73
74 /**
75  * How much delay is acceptable for sending the PING or PONG?
76  */
77 #define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
78
79 /**
80  * Size of the validation map hashmap.
81  */
82 #define VALIDATION_MAP_SIZE 256
83
84 /**
85  * Priority to use for PINGs
86  */
87 #define PING_PRIORITY 2
88
89 /**
90  * Priority to use for PONGs
91  */
92 #define PONG_PRIORITY 4
93
94
95 GNUNET_NETWORK_STRUCT_BEGIN
96
97 /**
98  * Message used to ask a peer to validate receipt (to check an address
99  * from a HELLO).  Followed by the address we are trying to validate,
100  * or an empty address if we are just sending a PING to confirm that a
101  * connection which the receiver (of the PING) initiated is still valid.
102  */
103 struct TransportPingMessage
104 {
105
106   /**
107    * Type will be GNUNET_MESSAGE_TYPE_TRANSPORT_PING
108    */
109   struct GNUNET_MessageHeader header;
110
111   /**
112    * Challenge code (to ensure fresh reply).
113    */
114   uint32_t challenge GNUNET_PACKED;
115
116   /**
117    * Who is the intended recipient?
118    */
119   struct GNUNET_PeerIdentity target;
120
121 };
122
123
124 /**
125  * Message used to validate a HELLO.  The challenge is included in the
126  * confirmation to make matching of replies to requests possible.  The
127  * signature signs our public key, an expiration time and our address.<p>
128  *
129  * This message is followed by our transport address that the PING tried
130  * to confirm (if we liked it).  The address can be empty (zero bytes)
131  * if the PING had not address either (and we received the request via
132  * a connection that we initiated).
133  */
134 struct TransportPongMessage
135 {
136
137   /**
138    * Type will be GNUNET_MESSAGE_TYPE_TRANSPORT_PONG
139    */
140   struct GNUNET_MessageHeader header;
141
142   /**
143    * Challenge code from PING (showing freshness).  Not part of what
144    * is signed so that we can re-use signatures.
145    */
146   uint32_t challenge GNUNET_PACKED;
147
148   /**
149    * Signature.
150    */
151   struct GNUNET_CRYPTO_EccSignature signature;
152
153   /**
154    * GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN to confirm that this is a
155    * plausible address for the signing peer.
156    */
157   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
158
159   /**
160    * When does this signature expire?
161    */
162   struct GNUNET_TIME_AbsoluteNBO expiration;
163
164   /**
165    * Size of address appended to this message (part of what is
166    * being signed, hence not redundant).
167    */
168   uint32_t addrlen GNUNET_PACKED;
169
170 };
171 GNUNET_NETWORK_STRUCT_END
172
173 /**
174  * Information about an address under validation
175  */
176 struct ValidationEntry
177 {
178
179   /**
180    * The address.
181    */
182   struct GNUNET_HELLO_Address *address;
183
184   /**
185    * Handle to the blacklist check (if we're currently in it).
186    */
187   struct GST_BlacklistCheck *bc;
188
189   /**
190    * Public key of the peer.
191    */
192   struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded public_key;
193
194   /**
195    * The identity of the peer. FIXME: duplicated (also in 'address')
196    */
197   struct GNUNET_PeerIdentity pid;
198
199   /**
200    * Cached PONG signature
201    */
202   struct GNUNET_CRYPTO_EccSignature pong_sig_cache;
203
204   /**
205    * ID of task that will clean up this entry if nothing happens.
206    */
207   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
208
209   /**
210    * ID of task that will trigger address revalidation.
211    */
212   GNUNET_SCHEDULER_TaskIdentifier revalidation_task;
213
214   /**
215    * At what time did we send the latest validation request (PING)?
216    */
217   struct GNUNET_TIME_Absolute send_time;
218
219   /**
220    * Until when is this address valid?
221    * ZERO if it is not currently considered valid.
222    */
223   struct GNUNET_TIME_Absolute valid_until;
224
225   /**
226    * Until when is the cached PONG signature valid?
227    * ZERO if it is not currently considered valid.
228    */
229   struct GNUNET_TIME_Absolute pong_sig_valid_until;
230
231   /**
232    * How long until we can try to validate this address again?
233    * FOREVER if the address is for an unsupported plugin (from PEERINFO)
234    * ZERO if the address is considered valid (no validation needed)
235    * otherwise a time in the future if we're currently denying re-validation
236    */
237   struct GNUNET_TIME_Absolute revalidation_block;
238
239   /**
240    * Last observed latency for this address (round-trip), delay between
241    * last PING sent and PONG received; FOREVER if we never got a PONG.
242    */
243   struct GNUNET_TIME_Relative latency;
244
245   /**
246    * Challenge number we used.
247    */
248   uint32_t challenge;
249
250   /**
251    * When passing the address in 'add_valid_peer_address', did we
252    * copy the address to the HELLO yet?
253    */
254   int copied;
255
256   /**
257    * Are we currently using this address for a connection?
258    */
259   int in_use;
260
261   /**
262    * Are we expecting a PONG message for this validation entry?
263    */
264   int expecting_pong;
265
266   /* FIXME: DEBUGGING */
267   int last_line_set_to_no;
268   int last_line_set_to_yes;
269 };
270
271
272 /**
273  * Context of currently active requests to peerinfo
274  * for validation of HELLOs.
275  */
276 struct CheckHelloValidatedContext
277 {
278
279   /**
280    * This is a doubly-linked list.
281    */
282   struct CheckHelloValidatedContext *next;
283
284   /**
285    * This is a doubly-linked list.
286    */
287   struct CheckHelloValidatedContext *prev;
288
289   /**
290    * Hello that we are validating.
291    */
292   const struct GNUNET_HELLO_Message *hello;
293
294 };
295
296
297 /**
298  * Head of linked list of HELLOs awaiting validation.
299  */
300 static struct CheckHelloValidatedContext *chvc_head;
301
302 /**
303  * Tail of linked list of HELLOs awaiting validation
304  */
305 static struct CheckHelloValidatedContext *chvc_tail;
306
307 /**
308  * Map of PeerIdentities to 'struct ValidationEntry*'s (addresses
309  * of the given peer that we are currently validating, have validated
310  * or are blocked from re-validation for a while).
311  */
312 static struct GNUNET_CONTAINER_MultiHashMap *validation_map;
313
314 /**
315  * Context for peerinfo iteration.
316  */
317 static struct GNUNET_PEERINFO_NotifyContext *pnc;
318
319
320 /**
321  * Minimum delay between to validations
322  */
323 static struct GNUNET_TIME_Relative validation_delay;
324
325 /**
326  * Number of validations running
327  */
328 static unsigned int validations_running;
329
330 /**
331  * Validition fast start threshold
332  */
333 static unsigned int validations_fast_start_threshold;
334
335 /**
336  * When is next validation allowed
337  */
338 static struct GNUNET_TIME_Absolute validation_next;
339
340 /**
341  * Context for the validation entry match function.
342  */
343 struct ValidationEntryMatchContext
344 {
345   /**
346    * Where to store the result?
347    */
348   struct ValidationEntry *ve;
349
350   /**
351    * Address we're interested in.
352    */
353   const struct GNUNET_HELLO_Address *address;
354
355 };
356
357
358 /**
359  * Iterate over validation entries until a matching one is found.
360  *
361  * @param cls the 'struct ValidationEntryMatchContext'
362  * @param key peer identity (unused)
363  * @param value a 'struct ValidationEntry' to match
364  * @return GNUNET_YES if the entry does not match,
365  *         GNUNET_NO if the entry does match
366  */
367 static int
368 validation_entry_match (void *cls, const struct GNUNET_HashCode * key, void *value)
369 {
370   struct ValidationEntryMatchContext *vemc = cls;
371   struct ValidationEntry *ve = value;
372
373   if (0 == GNUNET_HELLO_address_cmp (ve->address, vemc->address))
374   {
375     vemc->ve = ve;
376     return GNUNET_NO;
377   }
378   return GNUNET_YES;
379 }
380
381
382 /**
383  * Iterate over validation entries and free them.
384  *
385  * @param cls (unused)
386  * @param key peer identity (unused)
387  * @param value a 'struct ValidationEntry' to clean up
388  * @return GNUNET_YES (continue to iterate)
389  */
390 static int
391 cleanup_validation_entry (void *cls, const struct GNUNET_HashCode * key, void *value)
392 {
393   struct ValidationEntry *ve = value;
394
395   if (NULL != ve->bc)
396   {
397     GST_blacklist_test_cancel (ve->bc);
398     ve->bc = NULL;
399   }
400   GNUNET_break (GNUNET_OK ==
401                 GNUNET_CONTAINER_multihashmap_remove (validation_map,
402                                                       &ve->pid.hashPubKey, ve));
403   GNUNET_HELLO_address_free (ve->address);
404   if (GNUNET_SCHEDULER_NO_TASK != ve->timeout_task)
405   {
406     GNUNET_SCHEDULER_cancel (ve->timeout_task);
407     ve->timeout_task = GNUNET_SCHEDULER_NO_TASK;
408   }
409   if (GNUNET_SCHEDULER_NO_TASK != ve->revalidation_task)
410   {
411     GNUNET_SCHEDULER_cancel (ve->revalidation_task);
412     ve->revalidation_task = GNUNET_SCHEDULER_NO_TASK;
413   }
414   if ((GNUNET_YES == ve->expecting_pong) &&
415                 (validations_running > 0))
416   {
417                 validations_running --;
418           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
419                       "Validation finished, %u validation processes running\n",
420                       validations_running);
421   }
422   GNUNET_free (ve);
423   return GNUNET_OK;
424 }
425
426
427 /**
428  * Address validation cleanup task.  Assesses if the record is no
429  * longer valid and then possibly triggers its removal.
430  *
431  * @param cls the 'struct ValidationEntry'
432  * @param tc scheduler context (unused)
433  */
434 static void
435 timeout_hello_validation (void *cls,
436                           const struct GNUNET_SCHEDULER_TaskContext *tc)
437 {
438   struct ValidationEntry *ve = cls;
439   struct GNUNET_TIME_Absolute max;
440   struct GNUNET_TIME_Relative left;
441
442   ve->timeout_task = GNUNET_SCHEDULER_NO_TASK;
443   max = GNUNET_TIME_absolute_max (ve->valid_until, ve->revalidation_block);
444   left = GNUNET_TIME_absolute_get_remaining (max);
445   if (left.rel_value > 0)
446   {
447     /* should wait a bit longer */
448     ve->timeout_task =
449         GNUNET_SCHEDULER_add_delayed (left, &timeout_hello_validation, ve);
450     return;
451   }
452   GNUNET_STATISTICS_update (GST_stats,
453                             gettext_noop ("# address records discarded"), 1,
454                             GNUNET_NO);
455   cleanup_validation_entry (NULL, &ve->pid.hashPubKey, ve);
456 }
457
458
459 /**
460  * Function called with the result from blacklisting.
461  * Send a PING to the other peer if a communication is allowed.
462  *
463  * @param cls our 'struct ValidationEntry'
464  * @param pid identity of the other peer
465  * @param result GNUNET_OK if the connection is allowed, GNUNET_NO if not
466  */
467 static void
468 transmit_ping_if_allowed (void *cls, const struct GNUNET_PeerIdentity *pid,
469                           int result)
470 {
471   struct ValidationEntry *ve = cls;
472   struct TransportPingMessage ping;
473   struct GNUNET_TRANSPORT_PluginFunctions *papi;
474   struct GNUNET_TIME_Absolute next;
475   const struct GNUNET_MessageHeader *hello;
476   ssize_t ret;
477   size_t tsize;
478   size_t slen;
479   uint16_t hsize;
480
481   ve->bc = NULL;
482
483   if (GNUNET_NO == result)
484   {
485           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Blacklist denies to send PING to `%s' %s %s\n",
486                       GNUNET_i2s (pid), GST_plugins_a2s (ve->address), ve->address->transport_name);
487                 return;
488   }
489
490   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Transmitting plain PING to `%s' %s %s\n",
491               GNUNET_i2s (pid), GST_plugins_a2s (ve->address), ve->address->transport_name);
492
493   next = GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), validation_delay);
494   if (next.abs_value > validation_next.abs_value)
495         validation_next = next; /* We're going to send a PING so delay next validation */
496
497   slen = strlen (ve->address->transport_name) + 1;
498   hello = GST_hello_get ();
499   hsize = ntohs (hello->size);
500   tsize =
501       sizeof (struct TransportPingMessage) + ve->address->address_length +
502       slen + hsize;
503
504   ping.header.size =
505       htons (sizeof (struct TransportPingMessage) +
506              ve->address->address_length + slen);
507   ping.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_PING);
508   ping.challenge = htonl (ve->challenge);
509   ping.target = *pid;
510
511   if (tsize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
512   {
513     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
514                 _
515                 ("Not transmitting `%s' with `%s', message too big (%u bytes!). This should not happen.\n"),
516                 "HELLO", "PING", (unsigned int) tsize);
517     /* message too big (!?), get rid of HELLO */
518     hsize = 0;
519     tsize =
520         sizeof (struct TransportPingMessage) + ve->address->address_length +
521         slen + hsize;
522   }
523   {
524     char message_buf[tsize];
525
526     /* build message with structure:
527      *  [HELLO][TransportPingMessage][Transport name][Address] */
528     memcpy (message_buf, hello, hsize);
529     memcpy (&message_buf[hsize], &ping, sizeof (struct TransportPingMessage));
530     memcpy (&message_buf[sizeof (struct TransportPingMessage) + hsize],
531             ve->address->transport_name, slen);
532     memcpy (&message_buf[sizeof (struct TransportPingMessage) + slen + hsize],
533             ve->address->address, ve->address->address_length);
534     papi = GST_plugins_find (ve->address->transport_name);
535     if (papi == NULL)
536       ret = -1;
537     else
538     {
539       GNUNET_assert (papi->send != NULL);
540       GNUNET_assert (papi->get_session != NULL);
541       struct Session * session = papi->get_session(papi->cls, ve->address);
542
543       if (session != NULL)
544       {
545         ret = papi->send (papi->cls, session,
546                           message_buf, tsize,
547                           PING_PRIORITY, ACCEPTABLE_PING_DELAY,
548                           NULL, NULL);
549       }
550       else
551       {
552         /* Could not get a valid session */
553         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Could not get a valid session for `%s' %s\n",
554                     GNUNET_i2s (pid), GST_plugins_a2s (ve->address));
555         ret = -1;
556       }
557     }
558   }
559   if (-1 != ret)
560   {
561     ve->send_time = GNUNET_TIME_absolute_get ();
562     GNUNET_STATISTICS_update (GST_stats,
563                               gettext_noop
564                               ("# PING without HELLO messages sent"), 1,
565                               GNUNET_NO);
566     ve->expecting_pong = GNUNET_YES;
567     validations_running ++;
568           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
569                       "Validation started, %u validation processes running\n",
570                       validations_running);
571   }
572 }
573
574
575 /**
576  * Do address validation again to keep address valid.
577  *
578  * @param cls the 'struct ValidationEntry'
579  * @param tc scheduler context (unused)
580  */
581 static void
582 revalidate_address (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
583 {
584   struct ValidationEntry *ve = cls;
585   struct GNUNET_TIME_Relative canonical_delay;
586   struct GNUNET_TIME_Relative delay;
587   struct GNUNET_TIME_Relative blocked_for;
588   struct GST_BlacklistCheck *bc;
589   uint32_t rdelay;
590
591   ve->revalidation_task = GNUNET_SCHEDULER_NO_TASK;
592   delay = GNUNET_TIME_absolute_get_remaining (ve->revalidation_block);
593   /* How long until we can possibly permit the next PING? */
594   canonical_delay =
595       (ve->in_use ==
596        GNUNET_YES) ? CONNECTED_PING_FREQUENCY
597       : ((GNUNET_TIME_absolute_get_remaining (ve->valid_until).rel_value >
598           0) ? VALIDATED_PING_FREQUENCY : UNVALIDATED_PING_KEEPALIVE);
599   if (delay.rel_value > canonical_delay.rel_value * 2)
600   {
601     /* situation changed, recalculate delay */
602     delay = canonical_delay;
603     ve->revalidation_block = GNUNET_TIME_relative_to_absolute (delay);
604   }
605   if (delay.rel_value > 0)
606   {
607     /* should wait a bit longer */
608     ve->revalidation_task =
609         GNUNET_SCHEDULER_add_delayed (delay, &revalidate_address, ve);
610     return;
611   }
612   blocked_for = GNUNET_TIME_absolute_get_remaining(validation_next);
613   if (validations_running > validations_fast_start_threshold)
614         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,"Throttle!\n");
615   if ((validations_running > validations_fast_start_threshold) &&
616                 (blocked_for.rel_value > 0))
617   {
618     /* Validations are blocked, have to wait for blocked_for time */
619     ve->revalidation_task =
620       GNUNET_SCHEDULER_add_delayed (blocked_for, &revalidate_address, ve);
621     return;
622   }
623   ve->revalidation_block = GNUNET_TIME_relative_to_absolute (canonical_delay);
624
625   /* schedule next PINGing with some extra random delay to avoid synchronous re-validations */
626   rdelay =
627       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
628                                 canonical_delay.rel_value);
629
630   /* Debug code for mantis 0002726*/
631   if (GNUNET_TIME_UNIT_FOREVER_REL.rel_value ==
632       GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, rdelay).rel_value)
633   {
634     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
635                 "Revalidation interval for peer `%s' for is FOREVER (debug: rdelay: %llu, canonical delay %llu)\n",
636                 GNUNET_i2s (&ve->pid),
637                 (unsigned long long) delay.rel_value,
638                 (unsigned long long) canonical_delay.rel_value);
639     delay = canonical_delay;
640   }
641   else
642   {
643       delay = GNUNET_TIME_relative_add (canonical_delay,
644                                 GNUNET_TIME_relative_multiply
645                                 (GNUNET_TIME_UNIT_MILLISECONDS, rdelay));
646   }
647   /* End debug code for mantis 0002726*/
648   ve->revalidation_task =
649       GNUNET_SCHEDULER_add_delayed (delay, &revalidate_address, ve);
650
651   /* start PINGing by checking blacklist */
652   GNUNET_STATISTICS_update (GST_stats,
653                             gettext_noop ("# address revalidations started"), 1,
654                             GNUNET_NO);
655   bc = GST_blacklist_test_allowed (&ve->pid, ve->address->transport_name,
656                                    &transmit_ping_if_allowed, ve);
657   if (NULL != bc)
658     ve->bc = bc;                /* only set 'bc' if 'transmit_ping_if_allowed' was not already
659                                  * called... */
660 }
661
662
663 /**
664  * Find a ValidationEntry entry for the given neighbour that matches
665  * the given address and transport.  If none exists, create one (but
666  * without starting any validation).
667  *
668  * @param public_key public key of the peer, NULL for unknown
669  * @param address address to find
670  * @return validation entry matching the given specifications, NULL
671  *         if we don't have an existing entry and no public key was given
672  */
673 static struct ValidationEntry *
674 find_validation_entry (const struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded
675                        *public_key, const struct GNUNET_HELLO_Address *address)
676 {
677   struct ValidationEntryMatchContext vemc;
678   struct ValidationEntry *ve;
679
680   vemc.ve = NULL;
681   vemc.address = address;
682   GNUNET_CONTAINER_multihashmap_get_multiple (validation_map,
683                                               &address->peer.hashPubKey,
684                                               &validation_entry_match, &vemc);
685   if (NULL != (ve = vemc.ve))
686     return ve;
687   if (public_key == NULL)
688     return NULL;
689   ve = GNUNET_malloc (sizeof (struct ValidationEntry));
690   ve->in_use = GNUNET_SYSERR; /* not defined */
691   ve->last_line_set_to_no  = 0;
692   ve->last_line_set_to_yes  = 0;
693   ve->address = GNUNET_HELLO_address_copy (address);
694   ve->public_key = *public_key;
695   ve->pid = address->peer;
696   ve->pong_sig_valid_until = GNUNET_TIME_absolute_get_zero_();
697   memset (&ve->pong_sig_cache, '\0', sizeof (struct GNUNET_CRYPTO_EccSignature));
698   ve->latency = GNUNET_TIME_UNIT_FOREVER_REL;
699   ve->challenge =
700       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
701   ve->timeout_task =
702       GNUNET_SCHEDULER_add_delayed (UNVALIDATED_PING_KEEPALIVE,
703                                     &timeout_hello_validation, ve);
704   GNUNET_CONTAINER_multihashmap_put (validation_map, &address->peer.hashPubKey,
705                                      ve,
706                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
707   ve->expecting_pong = GNUNET_NO;
708   return ve;
709 }
710
711
712 /**
713  * Iterator which adds the given address to the set of validated
714  * addresses.
715  *
716  * @param cls original HELLO message
717  * @param address the address
718  * @param expiration expiration time
719  * @return GNUNET_OK (keep the address)
720  */
721 static int
722 add_valid_address (void *cls, const struct GNUNET_HELLO_Address *address,
723                    struct GNUNET_TIME_Absolute expiration)
724 {
725   const struct GNUNET_HELLO_Message *hello = cls;
726   struct ValidationEntry *ve;
727   struct GNUNET_PeerIdentity pid;
728   struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded public_key;
729
730   if (GNUNET_TIME_absolute_get_remaining (expiration).rel_value == 0)
731     return GNUNET_OK;           /* expired */
732   if ((GNUNET_OK != GNUNET_HELLO_get_id (hello, &pid)) ||
733       (GNUNET_OK != GNUNET_HELLO_get_key (hello, &public_key)))
734   {
735     GNUNET_break (0);
736     return GNUNET_OK;           /* invalid HELLO !? */
737   }
738   if (0 == memcmp (&GST_my_identity, &pid, sizeof (struct GNUNET_PeerIdentity)))
739   {
740     /* Peerinfo returned own identity, skip validation */
741     return GNUNET_OK;
742   }
743
744   ve = find_validation_entry (&public_key, address);
745   ve->valid_until = GNUNET_TIME_absolute_max (ve->valid_until, expiration);
746
747   if (GNUNET_SCHEDULER_NO_TASK == ve->revalidation_task)
748     ve->revalidation_task = GNUNET_SCHEDULER_add_now (&revalidate_address, ve);
749   GNUNET_ATS_address_add (GST_ats, address, NULL, NULL, 0);
750   return GNUNET_OK;
751 }
752
753
754 /**
755  * Function called for any HELLO known to PEERINFO.
756  *
757  * @param cls unused
758  * @param peer id of the peer, NULL for last call
759  * @param hello hello message for the peer (can be NULL)
760  * @param err_msg error message
761  */
762 static void
763 process_peerinfo_hello (void *cls, const struct GNUNET_PeerIdentity *peer,
764                         const struct GNUNET_HELLO_Message *hello,
765                         const char *err_msg)
766 {
767   GNUNET_assert (NULL != peer);
768   if (NULL == hello)
769     return;
770   GNUNET_assert (NULL ==
771                  GNUNET_HELLO_iterate_addresses (hello, GNUNET_NO,
772                                                  &add_valid_address,
773                                                  (void *) hello));
774 }
775
776
777 /**
778  * Start the validation subsystem.
779  *
780  * @param max_fds maximum number of fds to use
781  */
782 void
783 GST_validation_start (unsigned int max_fds)
784 {
785         /**
786          * Initialization for validation throttling
787          *
788          * We have a maximum number max_fds of connections we can use for validation
789          * We monitor the number of validations in parallel and start to throttle it
790          * when doing to many validations in parallel:
791          * if (running validations < (max_fds / 2))
792          * - "fast start": run validation immediately
793          * - have delay of (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value) / (max_fds / 2)
794          *   (300 sec / ~150 == ~2 sec.) between two validations
795          */
796
797         validation_next = GNUNET_TIME_absolute_get();
798         validation_delay.rel_value = (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value) /  (max_fds / 2);
799         validations_fast_start_threshold = (max_fds / 2);
800         validations_running = 0;
801         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Validation uses a fast start threshold of %u connections and a delay between of %u ms\n ",
802                         validations_fast_start_threshold, validation_delay.rel_value);
803   validation_map = GNUNET_CONTAINER_multihashmap_create (VALIDATION_MAP_SIZE,
804                                                          GNUNET_NO);
805   pnc = GNUNET_PEERINFO_notify (GST_cfg, &process_peerinfo_hello, NULL);
806 }
807
808
809 /**
810  * Stop the validation subsystem.
811  */
812 void
813 GST_validation_stop ()
814 {
815   struct CheckHelloValidatedContext *chvc;
816
817   GNUNET_CONTAINER_multihashmap_iterate (validation_map,
818                                          &cleanup_validation_entry, NULL);
819   GNUNET_CONTAINER_multihashmap_destroy (validation_map);
820   validation_map = NULL;
821   while (NULL != (chvc = chvc_head))
822   {
823     GNUNET_CONTAINER_DLL_remove (chvc_head, chvc_tail, chvc);
824     GNUNET_free (chvc);
825   }
826   GNUNET_PEERINFO_notify_cancel (pnc);
827 }
828
829
830 /**
831  * Send the given PONG to the given address.
832  *
833  * @param cls the PONG message
834  * @param public_key public key for the peer, never NULL
835  * @param valid_until is ZERO if we never validated the address,
836  *                    otherwise a time up to when we consider it (or was) valid
837  * @param validation_block  is FOREVER if the address is for an unsupported plugin (from PEERINFO)
838  *                          is ZERO if the address is considered valid (no validation needed)
839  *                          otherwise a time in the future if we're currently denying re-validation
840  * @param address target address
841  */
842 static void
843 multicast_pong (void *cls,
844                 const struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded
845                 *public_key, struct GNUNET_TIME_Absolute valid_until,
846                 struct GNUNET_TIME_Absolute validation_block,
847                 const struct GNUNET_HELLO_Address *address)
848 {
849   struct TransportPongMessage *pong = cls;
850   struct GNUNET_TRANSPORT_PluginFunctions *papi;
851
852   papi = GST_plugins_find (address->transport_name);
853   if (papi == NULL)
854     return;
855
856   GNUNET_assert (papi->send != NULL);
857   GNUNET_assert (papi->get_session != NULL);
858
859   struct Session * session = papi->get_session(papi->cls, address);
860   if (session == NULL)
861   {
862      GNUNET_break (0);
863      return;
864   }
865
866   papi->send (papi->cls, session,
867               (const char *) pong, ntohs (pong->header.size),
868               PONG_PRIORITY, ACCEPTABLE_PING_DELAY,
869               NULL, NULL);
870 }
871
872
873 /**
874  * We've received a PING.  If appropriate, generate a PONG.
875  *
876  * @param sender peer sending the PING
877  * @param hdr the PING
878  * @param sender_address the sender address as we got it
879  * @param session session we got the PING from
880  */
881 void
882 GST_validation_handle_ping (const struct GNUNET_PeerIdentity *sender,
883                             const struct GNUNET_MessageHeader *hdr,
884                             const struct GNUNET_HELLO_Address *sender_address,
885                             struct Session *session)
886 {
887   const struct TransportPingMessage *ping;
888   struct TransportPongMessage *pong;
889   struct GNUNET_TRANSPORT_PluginFunctions *papi;
890   struct GNUNET_CRYPTO_EccSignature *sig_cache;
891   struct GNUNET_TIME_Absolute *sig_cache_exp;
892   const char *addr;
893   const char *addrend;
894   size_t alen;
895   size_t slen;
896   ssize_t ret;
897   int buggy = GNUNET_NO;
898   struct GNUNET_HELLO_Address address;
899
900   if (ntohs (hdr->size) < sizeof (struct TransportPingMessage))
901   {
902     GNUNET_break_op (0);
903     return;
904   }
905   ping = (const struct TransportPingMessage *) hdr;
906   if (0 !=
907       memcmp (&ping->target, &GST_my_identity,
908               sizeof (struct GNUNET_PeerIdentity)))
909   {
910     GNUNET_STATISTICS_update (GST_stats,
911                               gettext_noop
912                               ("# PING message for different peer received"), 1,
913                               GNUNET_NO);
914     return;
915   }
916   GNUNET_STATISTICS_update (GST_stats,
917                             gettext_noop ("# PING messages received"), 1,
918                             GNUNET_NO);
919   addr = (const char *) &ping[1];
920   alen = ntohs (hdr->size) - sizeof (struct TransportPingMessage);
921   /* peer wants to confirm that this is one of our addresses, this is what is
922    * used for address validation */
923
924   sig_cache = NULL;
925   sig_cache_exp = NULL;
926
927   if (alen > 0)
928   {
929     addrend = memchr (addr, '\0', alen);
930     if (NULL == addrend)
931     {
932       GNUNET_break_op (0);
933       return;
934     }
935     addrend++;
936     slen = strlen (addr) + 1;
937     alen -= slen;
938     address.address = addrend;
939     address.address_length = alen;
940     address.transport_name = addr;
941     address.peer = GST_my_identity;
942
943
944     if (GNUNET_YES != GST_hello_test_address (&address, &sig_cache, &sig_cache_exp))
945     {
946       if (GNUNET_NO == buggy)
947       {
948         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
949                     "Not confirming PING from peer `%s' with address `%s' since I cannot confirm having this address.\n",
950                     GNUNET_i2s (sender),
951                     GST_plugins_a2s (&address));
952         return;
953       }
954       else
955       {
956         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
957                     _("Received a PING message with validation bug from `%s'\n"),
958                     GNUNET_i2s (sender));
959       }
960     }
961   }
962   else
963   {
964     addrend = NULL;             /* make gcc happy */
965     slen = 0;
966     static struct GNUNET_CRYPTO_EccSignature no_address_signature;
967     static struct GNUNET_TIME_Absolute no_address_signature_expiration;
968
969     sig_cache = &no_address_signature;
970     sig_cache_exp = &no_address_signature_expiration;
971   }
972
973   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
974               "I am `%s', sending PONG to peer `%s'\n",
975               GNUNET_h2s (&GST_my_identity.hashPubKey),
976               GNUNET_i2s (sender));
977
978   /* message with structure:
979    * [TransportPongMessage][Transport name][Address] */
980
981   pong = GNUNET_malloc (sizeof (struct TransportPongMessage) + alen + slen);
982   pong->header.size =
983       htons (sizeof (struct TransportPongMessage) + alen + slen);
984   pong->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_PONG);
985   pong->purpose.size =
986       htonl (sizeof (struct GNUNET_CRYPTO_EccSignaturePurpose) +
987              sizeof (uint32_t) + sizeof (struct GNUNET_TIME_AbsoluteNBO) +
988              alen + slen);
989   pong->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN);
990   memcpy (&pong->challenge, &ping->challenge, sizeof (ping->challenge));
991   pong->addrlen = htonl (alen + slen);
992   memcpy (&pong[1], addr, slen);   /* Copy transport plugin */
993   if (alen > 0)
994   {
995     GNUNET_assert (NULL != addrend);
996     memcpy (&((char *) &pong[1])[slen], addrend, alen);
997   }
998   if (GNUNET_TIME_absolute_get_remaining (*sig_cache_exp).rel_value <
999       PONG_SIGNATURE_LIFETIME.rel_value / 4)
1000   {
1001     /* create / update cached sig */
1002     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1003                 "Creating PONG signature to indicate ownership.\n");
1004     *sig_cache_exp = GNUNET_TIME_relative_to_absolute (PONG_SIGNATURE_LIFETIME);
1005     pong->expiration = GNUNET_TIME_absolute_hton (*sig_cache_exp);
1006     GNUNET_assert (GNUNET_OK ==
1007                    GNUNET_CRYPTO_ecc_sign (GST_my_private_key, &pong->purpose,
1008                                            sig_cache));
1009   }
1010   else
1011   {
1012     pong->expiration = GNUNET_TIME_absolute_hton (*sig_cache_exp);
1013   }
1014   pong->signature = *sig_cache;
1015   
1016   GNUNET_assert (sender_address != NULL);
1017
1018   /* first see if the session we got this PING from can be used to transmit
1019    * a response reliably */
1020   papi = GST_plugins_find (sender_address->transport_name);
1021   if (papi == NULL)
1022     ret = -1;
1023   else
1024   {
1025     GNUNET_assert (papi->send != NULL);
1026     GNUNET_assert (papi->get_session != NULL);
1027
1028     if (session == NULL)
1029     {
1030       session = papi->get_session (papi->cls, sender_address);
1031     }
1032     if (session == NULL)
1033     {
1034       GNUNET_break (0);
1035       ret = -1;
1036     }
1037     else
1038     {
1039       ret = papi->send (papi->cls, session,
1040                         (const char *) pong, ntohs (pong->header.size),
1041                         PONG_PRIORITY, ACCEPTABLE_PING_DELAY,
1042                         NULL, NULL);
1043     }
1044   }
1045   if (ret != -1)
1046   {
1047     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1048                 "Transmitted PONG to `%s' via reliable mechanism\n",
1049                 GNUNET_i2s (sender));
1050     /* done! */
1051     GNUNET_STATISTICS_update (GST_stats,
1052                               gettext_noop
1053                               ("# PONGs unicast via reliable transport"), 1,
1054                               GNUNET_NO);
1055     GNUNET_free (pong);
1056     return;
1057   }
1058
1059   /* no reliable method found, try transmission via all known addresses */
1060   GNUNET_STATISTICS_update (GST_stats,
1061                             gettext_noop
1062                             ("# PONGs multicast to all available addresses"), 1,
1063                             GNUNET_NO);
1064   GST_validation_get_addresses (sender, &multicast_pong, pong);
1065   GNUNET_free (pong);
1066 }
1067
1068
1069 /**
1070  * Context for the 'validate_address' function
1071  */
1072 struct ValidateAddressContext
1073 {
1074   /**
1075    * Hash of the public key of the peer whose address is being validated.
1076    */
1077   struct GNUNET_PeerIdentity pid;
1078
1079   /**
1080    * Public key of the peer whose address is being validated.
1081    */
1082   struct GNUNET_CRYPTO_EccPublicKeyBinaryEncoded public_key;
1083 };
1084
1085
1086 /**
1087  * Iterator callback to go over all addresses and try to validate them
1088  * (unless blocked or already validated).
1089  *
1090  * @param cls pointer to a 'struct ValidateAddressContext'
1091  * @param address the address
1092  * @param expiration expiration time
1093  * @return GNUNET_OK (keep the address)
1094  */
1095 static int
1096 validate_address_iterator (void *cls,
1097                            const struct GNUNET_HELLO_Address *address,
1098                            struct GNUNET_TIME_Absolute expiration)
1099 {
1100   const struct ValidateAddressContext *vac = cls;
1101   struct ValidationEntry *ve;
1102
1103   if (GNUNET_TIME_absolute_get_remaining (expiration).rel_value == 0)
1104     return GNUNET_OK;           /* expired */
1105   ve = find_validation_entry (&vac->public_key, address);
1106   if (GNUNET_SCHEDULER_NO_TASK == ve->revalidation_task)
1107     ve->revalidation_task = GNUNET_SCHEDULER_add_now (&revalidate_address, ve);
1108   return GNUNET_OK;
1109 }
1110
1111
1112 /**
1113  * Add the validated peer address to the HELLO.
1114  *
1115  * @param cls the 'struct ValidationEntry' with the validated address
1116  * @param max space in buf
1117  * @param buf where to add the address
1118  * @return number of bytes written, 0 to signal the
1119  *         end of the iteration.
1120  */
1121 static size_t
1122 add_valid_peer_address (void *cls, size_t max, void *buf)
1123 {
1124   struct ValidationEntry *ve = cls;
1125
1126   if (GNUNET_YES == ve->copied)
1127     return 0;                   /* terminate */
1128   ve->copied = GNUNET_YES;
1129   return GNUNET_HELLO_add_address (ve->address, ve->valid_until, buf, max);
1130 }
1131
1132
1133 /**
1134  * We've received a PONG.  Check if it matches a pending PING and
1135  * mark the respective address as confirmed.
1136  *
1137  * @param sender peer sending the PONG
1138  * @param hdr the PONG
1139  */
1140 void
1141 GST_validation_handle_pong (const struct GNUNET_PeerIdentity *sender,
1142                             const struct GNUNET_MessageHeader *hdr)
1143 {
1144   const struct TransportPongMessage *pong;
1145   struct ValidationEntry *ve;
1146   const char *tname;
1147   const char *addr;
1148   size_t addrlen;
1149   size_t slen;
1150   size_t size;
1151   struct GNUNET_HELLO_Message *hello;
1152   struct GNUNET_HELLO_Address address;
1153   int sig_res;
1154
1155   if (ntohs (hdr->size) < sizeof (struct TransportPongMessage))
1156   {
1157     GNUNET_break_op (0);
1158     return;
1159   }
1160   GNUNET_STATISTICS_update (GST_stats,
1161                             gettext_noop ("# PONG messages received"), 1,
1162                             GNUNET_NO);
1163
1164   /* message with structure:
1165    * [TransportPongMessage][Transport name][Address] */
1166
1167   pong = (const struct TransportPongMessage *) hdr;
1168   tname = (const char *) &pong[1];
1169   size = ntohs (hdr->size) - sizeof (struct TransportPongMessage);
1170   addr = memchr (tname, '\0', size);
1171   if (NULL == addr)
1172   {
1173     GNUNET_break_op (0);
1174     return;
1175   }
1176   addr++;
1177   slen = strlen (tname) + 1;
1178   addrlen = size - slen;
1179   address.peer = *sender;
1180   address.address = addr;
1181   address.address_length = addrlen;
1182   address.transport_name = tname;
1183   ve = find_validation_entry (NULL, &address);
1184   if ((NULL == ve) || (GNUNET_NO == ve->expecting_pong))
1185   {
1186     GNUNET_STATISTICS_update (GST_stats,
1187                               gettext_noop
1188                               ("# PONGs dropped, no matching pending validation"),
1189                               1, GNUNET_NO);
1190     return;
1191   }
1192   /* now check that PONG is well-formed */
1193   if (0 != memcmp (&ve->pid, sender, sizeof (struct GNUNET_PeerIdentity)))
1194   {
1195     GNUNET_break_op (0);
1196     return;
1197   }
1198   if (GNUNET_TIME_absolute_get_remaining
1199       (GNUNET_TIME_absolute_ntoh (pong->expiration)).rel_value == 0)
1200   {
1201     GNUNET_STATISTICS_update (GST_stats,
1202                               gettext_noop
1203                               ("# PONGs dropped, signature expired"), 1,
1204                               GNUNET_NO);
1205     return;
1206   }
1207
1208   sig_res = GNUNET_SYSERR;
1209   if (0 != GNUNET_TIME_absolute_get_remaining(ve->pong_sig_valid_until).rel_value)
1210   {
1211                 if (0 == memcmp (&ve->pong_sig_cache, &pong->signature, sizeof (struct GNUNET_CRYPTO_EccSignature)))
1212                         sig_res = GNUNET_OK;
1213                 else
1214                         sig_res = GNUNET_SYSERR;
1215   }
1216   else
1217   {
1218                 sig_res = GNUNET_CRYPTO_ecc_verify (GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN,
1219                                 &pong->purpose, &pong->signature,
1220                                 &ve->public_key);
1221   }
1222
1223   if (sig_res == GNUNET_SYSERR)
1224   {
1225     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1226                 "Invalid signature on address %s:%s from peer `%s'\n",
1227                 tname, GST_plugins_a2s (ve->address),
1228                 GNUNET_i2s (sender));
1229     return;
1230   }
1231   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1232               "Address validated for peer `%s' with plugin `%s': `%s'\n",
1233               GNUNET_i2s (sender), tname, GST_plugins_a2s (ve->address));
1234   /* validity achieved, remember it! */
1235   ve->expecting_pong = GNUNET_NO;
1236   ve->valid_until = GNUNET_TIME_relative_to_absolute (HELLO_ADDRESS_EXPIRATION);
1237   ve->pong_sig_cache = pong->signature;
1238         ve->pong_sig_valid_until = GNUNET_TIME_absolute_ntoh (pong->expiration);
1239   ve->latency = GNUNET_TIME_absolute_get_duration (ve->send_time);
1240   {
1241     struct GNUNET_ATS_Information ats;
1242     ats.type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
1243     ats.value = htonl ((uint32_t) ve->latency.rel_value);
1244     GNUNET_ATS_address_add (GST_ats, ve->address, NULL, &ats, 1);
1245   }
1246   if (validations_running > 0)
1247   {
1248         validations_running --;
1249           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1250                       "Validation finished, %u validation processes running\n",
1251                       validations_running);
1252   }
1253   else
1254         GNUNET_break (0);
1255
1256   /* build HELLO to store in PEERINFO */
1257   ve->copied = GNUNET_NO;
1258   hello = GNUNET_HELLO_create (&ve->public_key, &add_valid_peer_address, ve);
1259   GNUNET_PEERINFO_add_peer (GST_peerinfo, hello, NULL, NULL);
1260   GNUNET_free (hello);
1261 }
1262
1263
1264 /**
1265  * We've received a HELLO, check which addresses are new and trigger
1266  * validation.
1267  *
1268  * @param hello the HELLO we received
1269  */
1270 void
1271 GST_validation_handle_hello (const struct GNUNET_MessageHeader *hello)
1272 {
1273   const struct GNUNET_HELLO_Message *hm =
1274       (const struct GNUNET_HELLO_Message *) hello;
1275   struct ValidateAddressContext vac;
1276   struct GNUNET_HELLO_Message *h;
1277
1278   if ((GNUNET_OK != GNUNET_HELLO_get_id (hm, &vac.pid)) ||
1279       (GNUNET_OK != GNUNET_HELLO_get_key (hm, &vac.public_key)))
1280   {
1281     /* malformed HELLO */
1282     GNUNET_break (0);
1283     return;
1284   }
1285   if (0 ==
1286       memcmp (&GST_my_identity, &vac.pid, sizeof (struct GNUNET_PeerIdentity)))
1287     return;
1288   /* Add peer identity without addresses to peerinfo service */
1289   h = GNUNET_HELLO_create (&vac.public_key, NULL, NULL);
1290   GNUNET_PEERINFO_add_peer (GST_peerinfo, h, NULL, NULL);
1291
1292   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1293               _("Adding `%s' without addresses for peer `%s'\n"), "HELLO",
1294               GNUNET_i2s (&vac.pid));
1295
1296   GNUNET_free (h);
1297   GNUNET_assert (NULL ==
1298                  GNUNET_HELLO_iterate_addresses (hm, GNUNET_NO,
1299                                                  &validate_address_iterator,
1300                                                  &vac));
1301 }
1302
1303
1304 /**
1305  * Closure for 'iterate_addresses'
1306  */
1307 struct IteratorContext
1308 {
1309   /**
1310    * Function to call on each address.
1311    */
1312   GST_ValidationAddressCallback cb;
1313
1314   /**
1315    * Closure for 'cb'.
1316    */
1317   void *cb_cls;
1318
1319 };
1320
1321
1322 /**
1323  * Call the callback in the closure for each validation entry.
1324  *
1325  * @param cls the 'struct GST_ValidationIteratorContext'
1326  * @param key the peer's identity
1327  * @param value the 'struct ValidationEntry'
1328  * @return GNUNET_OK (continue to iterate)
1329  */
1330 static int
1331 iterate_addresses (void *cls, const struct GNUNET_HashCode * key, void *value)
1332 {
1333   struct IteratorContext *ic = cls;
1334   struct ValidationEntry *ve = value;
1335
1336   ic->cb (ic->cb_cls, &ve->public_key, ve->valid_until, ve->revalidation_block,
1337           ve->address);
1338   return GNUNET_OK;
1339 }
1340
1341
1342 /**
1343  * Call the given function for each address for the given target.
1344  * Can either give a snapshot (synchronous API) or be continuous.
1345  *
1346  * @param target peer information is requested for
1347  * @param cb function to call; will not be called after this function returns
1348  * @param cb_cls closure for 'cb'
1349  */
1350 void
1351 GST_validation_get_addresses (const struct GNUNET_PeerIdentity *target,
1352                               GST_ValidationAddressCallback cb, void *cb_cls)
1353 {
1354   struct IteratorContext ic;
1355
1356   ic.cb = cb;
1357   ic.cb_cls = cb_cls;
1358   GNUNET_CONTAINER_multihashmap_get_multiple (validation_map,
1359                                               &target->hashPubKey,
1360                                               &iterate_addresses, &ic);
1361 }
1362
1363
1364 /**
1365  * Update if we are using an address for a connection actively right now.
1366  * Based on this, the validation module will measure latency for the
1367  * address more or less often.
1368  *
1369  * @param address the address
1370  * @param session the session
1371  * @param in_use GNUNET_YES if we are now using the address for a connection,
1372  *               GNUNET_NO if we are no longer using the address for a connection
1373  * @param line line of caller just for DEBUGGING!
1374  */
1375 void
1376 GST_validation_set_address_use (const struct GNUNET_HELLO_Address *address,
1377                                 struct Session *session,
1378                                 int in_use,
1379                                 int line)
1380 {
1381   struct ValidationEntry *ve;
1382
1383   if (NULL != address)
1384     ve = find_validation_entry (NULL, address);
1385   else
1386     ve = NULL;                  /* FIXME: lookup based on session... */
1387   if (NULL == ve)
1388   {
1389     /* this can happen for inbound connections (sender_address_len == 0); */
1390     return;
1391   }
1392   if (ve->in_use == in_use)
1393   {
1394
1395     if (GNUNET_YES == in_use)
1396     {
1397       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1398                   "Error setting address in use for peer `%s' `%s' to USED: set last time by %i, called now by %i\n",
1399                   GNUNET_i2s (&address->peer), GST_plugins_a2s (address),
1400                   ve->last_line_set_to_yes, line);
1401     }
1402     if (GNUNET_NO == in_use)
1403     {
1404       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1405                   "Error setting address in use for peer `%s' `%s' to NOT_USED: set last time by %i, called now by %i\n",
1406                   GNUNET_i2s (&address->peer), GST_plugins_a2s (address),
1407                   ve->last_line_set_to_no, line);
1408     }
1409   }
1410
1411   if (GNUNET_YES == in_use)
1412   {
1413     ve->last_line_set_to_yes = line;
1414   }
1415   if (GNUNET_NO == in_use)
1416   {
1417     ve->last_line_set_to_no = line;
1418   }
1419
1420   GNUNET_break (ve->in_use != in_use);  /* should be different... */
1421   ve->in_use = in_use;
1422   if (in_use == GNUNET_YES)
1423   {
1424     /* from now on, higher frequeny, so reschedule now */
1425     GNUNET_SCHEDULER_cancel (ve->revalidation_task);
1426     ve->revalidation_task = GNUNET_SCHEDULER_add_now (&revalidate_address, ve);
1427   }
1428 }
1429
1430
1431 /**
1432  * Query validation about the latest observed latency on a given
1433  * address.
1434  *
1435  * @param sender peer
1436  * @param address the address
1437  * @param session session
1438  * @return observed latency of the address, FOREVER if the address was
1439  *         never successfully validated
1440  */
1441 struct GNUNET_TIME_Relative
1442 GST_validation_get_address_latency (const struct GNUNET_PeerIdentity *sender,
1443                                     const struct GNUNET_HELLO_Address *address,
1444                                     struct Session *session)
1445 {
1446   struct ValidationEntry *ve;
1447
1448   if (NULL == address)
1449   {
1450     GNUNET_break (0);           // FIXME: support having latency only with session...
1451     return GNUNET_TIME_UNIT_FOREVER_REL;
1452   }
1453   ve = find_validation_entry (NULL, address);
1454   if (NULL == ve)
1455     return GNUNET_TIME_UNIT_FOREVER_REL;
1456   return ve->latency;
1457 }
1458
1459
1460 /* end of file gnunet-service-transport_validation.c */