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