demultiplexing
[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 // TODO: observe latency between PING/PONG and give information to ATS!
38
39 /**
40  * How long is a PONG signature valid?  We'll recycle a signature until
41  * 1/4 of this time is remaining.  PONGs should expire so that if our
42  * external addresses change an adversary cannot replay them indefinitely.
43  * OTOH, we don't want to spend too much time generating PONG signatures,
44  * so they must have some lifetime to reduce our CPU usage.
45  */
46 #define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
47
48 /**
49  * After how long do we expire an address in a HELLO that we just
50  * validated?  This value is also used for our own addresses when we
51  * create a HELLO.
52  */
53 #define HELLO_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
54
55 /**
56  * How long before an existing address expires should we again try to
57  * validate it?  Must be (significantly) smaller than
58  * HELLO_ADDRESS_EXPIRATION.
59  */
60 #define HELLO_REVALIDATION_START_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
61
62 /**
63  * Size of the validation map hashmap.
64  */
65 #define VALIDATION_MAP_SIZE 256
66
67 /**
68  * Priority to use for PINGs
69  */ 
70 #define PING_PRIORITY 2
71
72 /**
73  * Priority to use for PONGs
74  */ 
75 #define PONG_PRIORITY 4
76
77
78 /**
79  * Message used to ask a peer to validate receipt (to check an address
80  * from a HELLO).  Followed by the address we are trying to validate,
81  * or an empty address if we are just sending a PING to confirm that a
82  * connection which the receiver (of the PING) initiated is still valid.
83  */
84 struct TransportPingMessage
85 {
86
87   /**
88    * Type will be GNUNET_MESSAGE_TYPE_TRANSPORT_PING
89    */
90   struct GNUNET_MessageHeader header;
91
92   /**
93    * Challenge code (to ensure fresh reply).
94    */
95   uint32_t challenge GNUNET_PACKED;
96
97   /**
98    * Who is the intended recipient?
99    */
100   struct GNUNET_PeerIdentity target;
101
102 };
103
104
105 /**
106  * Message used to validate a HELLO.  The challenge is included in the
107  * confirmation to make matching of replies to requests possible.  The
108  * signature signs our public key, an expiration time and our address.<p>
109  *
110  * This message is followed by our transport address that the PING tried
111  * to confirm (if we liked it).  The address can be empty (zero bytes)
112  * if the PING had not address either (and we received the request via
113  * a connection that we initiated).
114  */
115 struct TransportPongMessage
116 {
117
118   /**
119    * Type will be GNUNET_MESSAGE_TYPE_TRANSPORT_PONG
120    */
121   struct GNUNET_MessageHeader header;
122
123   /**
124    * Challenge code from PING (showing freshness).  Not part of what
125    * is signed so that we can re-use signatures.
126    */
127   uint32_t challenge GNUNET_PACKED;
128
129   /**
130    * Signature.
131    */
132   struct GNUNET_CRYPTO_RsaSignature signature;
133
134   /**
135    * What are we signing and why?  Two possible reason codes can be here:
136    * GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN to confirm that this is a
137    * plausible address for this peer (pid is set to identity of signer); or
138    * GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_USING to confirm that this is
139    * an address we used to connect to the peer with the given pid.
140    */
141   struct GNUNET_CRYPTO_RsaSignaturePurpose purpose;
142
143   /**
144    * When does this signature expire?
145    */
146   struct GNUNET_TIME_AbsoluteNBO expiration;
147
148   /**
149    * Either the identity of the peer Who signed this message, or the
150    * identity of the peer that we're connected to using the given
151    * address (depending on purpose.type).
152    */
153   struct GNUNET_PeerIdentity pid;
154
155   /**
156    * Size of address appended to this message (part of what is
157    * being signed, hence not redundant).
158    */
159   uint32_t addrlen GNUNET_PACKED;
160
161 };
162
163
164 /**
165  * Information about an address under validation
166  */
167 struct ValidationEntry 
168 {
169
170   /**
171    * Name of the transport.
172    */
173   char *transport_name;
174
175   /**
176    * The address, actually a pointer to the end
177    * of this struct.  Do not free!
178    */
179   const void *addr;
180
181   /**
182    * Handle to the blacklist check (if we're currently in it).
183    */
184   struct GST_BlacklistCheck *bc;
185
186   /**
187    * Public key of the peer.
188    */
189   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded public_key;                                                
190
191   /**
192    * The identity of the peer.
193    */
194   struct GNUNET_PeerIdentity pid;
195
196   /**
197    * ID of task that will clean up this entry if nothing happens.
198    */
199   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
200
201   /**
202    * At what time did we send the latest validation request?
203    */
204   struct GNUNET_TIME_Absolute send_time;
205
206   /**
207    * Until when is this address valid?
208    * ZERO if it is not currently considered valid.
209    */
210   struct GNUNET_TIME_Absolute valid_until;
211
212   /**
213    * How long until we can try to validate this address again?
214    * FOREVER if the address is for an unsupported plugin (from PEERINFO)
215    * ZERO if the address is considered valid (no validation needed)
216    * otherwise a time in the future if we're currently denying re-validation
217    */
218   struct GNUNET_TIME_Absolute validation_block;
219                                             
220   /**
221    * Challenge number we used.
222    */
223   uint32_t challenge;
224
225   /**
226    * Length of addr.
227    */
228   size_t addrlen;
229
230 };
231
232
233 /**
234  * Context of currently active requests to peerinfo
235  * for validation of HELLOs.
236  */
237 struct CheckHelloValidatedContext
238 {
239
240   /**
241    * This is a doubly-linked list.
242    */
243   struct CheckHelloValidatedContext *next;
244
245   /**
246    * This is a doubly-linked list.
247    */
248   struct CheckHelloValidatedContext *prev;
249
250   /**
251    * Hello that we are validating.
252    */
253   const struct GNUNET_HELLO_Message *hello;
254
255 };
256
257
258 /**
259  * Head of linked list of HELLOs awaiting validation.
260  */
261 static struct CheckHelloValidatedContext *chvc_head;
262
263 /**
264  * Tail of linked list of HELLOs awaiting validation
265  */
266 static struct CheckHelloValidatedContext *chvc_tail;
267
268 /**
269  * Map of PeerIdentities to 'struct ValidationEntry*'s (addresses
270  * of the given peer that we are currently validating, have validated
271  * or are blocked from re-validation for a while).
272  */
273 static struct GNUNET_CONTAINER_MultiHashMap *validation_map;
274
275 /**
276  * Context for peerinfo iteration.
277  */
278 static struct GNUNET_PEERINFO_NotifyContext *pnc;
279
280
281 /**
282  * Context for the validation entry match function.
283  */
284 struct ValidationEntryMatchContext
285 {
286   /**
287    * Where to store the result?
288    */
289   struct ValidationEntry *ve;
290   
291   /**
292    * Transport name we're looking for.
293    */
294   const char *transport_name;
295
296   /**
297    * Address we're interested in.
298    */
299   const char *addr;
300
301   /**
302    * Number of bytes in 'addr'.
303    */
304   size_t addrlen;
305 };
306
307
308 /**
309  * Iterate over validation entries until a matching one is found.
310  *
311  * @param cls the 'struct ValidationEntryMatchContext'
312  * @param key peer identity (unused)
313  * @param value a 'struct ValidationEntry' to match
314  * @return GNUNET_YES if the entry does not match,
315  *         GNUNET_NO if the entry does match
316  */
317 static int
318 validation_entry_match (void *cls,
319                         const GNUNET_HashCode *key,
320                         void *value)
321 {
322   struct ValidationEntryMatchContext *vemc = cls;
323   struct ValidationEntry *ve = value;
324
325   if ( (ve->addrlen == vemc->addrlen) &&
326        (0 == memcmp (ve->addr, vemc->addr, ve->addrlen)) &&
327        (0 == strcmp (ve->transport_name, vemc->transport_name)) )
328     {
329       vemc->ve = ve;
330       return GNUNET_NO;
331     }
332   return GNUNET_YES;
333 }
334
335
336 /**
337  * Find a ValidationEntry entry for the given neighbour that matches
338  * the given address and transport.  If none exists, create one (but
339  * without starting any validation).
340  *
341  * @param public_key public key of the peer, NULL for unknown
342  * @param neighbour which peer we care about
343  * @param tname name of the transport plugin
344  * @param session session to look for, NULL for 'any'; otherwise
345  *        can be used for the service to "learn" this session ID
346  *        if 'addr' matches
347  * @param addr binary address
348  * @param addrlen length of addr
349  * @return validation entry matching the given specifications, NULL
350  *         if we don't have an existing entry and no public key was given
351  */
352 static struct ValidationEntry *
353 find_validation_entry (const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *public_key,
354                        const struct GNUNET_PeerIdentity *neighbour,
355                        const char *tname,
356                        const char *addr,
357                        size_t addrlen)
358 {
359   struct ValidationEntryMatchContext vemc;
360   struct ValidationEntry *ve;
361
362   vemc.ve = NULL;
363   vemc.transport_name = tname;
364   vemc.addr = addr;
365   vemc.addrlen = addrlen;
366   GNUNET_CONTAINER_multihashmap_get_multiple (validation_map,
367                                               &neighbour->hashPubKey,
368                                               &validation_entry_match,
369                                               &vemc);
370   if (NULL != (ve = vemc.ve))
371     return ve;
372   if (public_key == NULL)
373     return NULL;
374   ve = GNUNET_malloc (sizeof (struct ValidationEntry) + addrlen);
375   ve->transport_name = GNUNET_strdup (tname);
376   ve->addr = (void*) &ve[1];
377   ve->public_key = *public_key;
378   ve->pid = *neighbour;
379   ve->challenge = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
380                                             UINT32_MAX);
381   memcpy (&ve[1], addr, addrlen);
382   ve->addrlen = addrlen;
383   GNUNET_CONTAINER_multihashmap_put (validation_map,
384                                      &neighbour->hashPubKey,
385                                      ve,
386                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
387   return ve;
388 }
389
390
391 /**
392  * Iterator which adds the given address to the set of validated
393  * addresses.
394  *
395  * @param cls original HELLO message
396  * @param tname name of the transport
397  * @param expiration expiration time
398  * @param addr the address
399  * @param addrlen length of the address
400  * @return GNUNET_OK (keep the address)
401  */
402 static int
403 add_valid_address (void *cls,
404                    const char *tname,
405                    struct GNUNET_TIME_Absolute expiration,
406                    const void *addr, 
407                    uint16_t addrlen)
408 {
409   const struct GNUNET_HELLO_Message *hello = cls;
410   struct ValidationEntry *ve;
411   struct GNUNET_PeerIdentity pid;
412   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded public_key;
413
414   if (GNUNET_TIME_absolute_get_remaining (expiration).rel_value == 0)
415     return GNUNET_OK; /* expired */
416   if ( (GNUNET_OK !=
417         GNUNET_HELLO_get_id (hello, &pid)) ||
418        (GNUNET_OK !=
419         GNUNET_HELLO_get_key (hello, &public_key)) )
420     {
421       GNUNET_break (0);
422       return GNUNET_OK; /* invalid HELLO !? */
423     }
424   ve = find_validation_entry (&public_key, &pid, tname, addr, addrlen);
425   ve->valid_until = GNUNET_TIME_absolute_max (ve->valid_until,
426                                               expiration);
427   GNUNET_ATS_address_update (GST_ats,
428                              &pid,
429                              ve->valid_until,
430                              tname,
431                              NULL,
432                              addr,
433                              addrlen,
434                              NULL, 0);
435   return GNUNET_OK;
436 }
437
438
439 /**
440  * Function called for any HELLO known to PEERINFO. 
441  *
442  * @param cls unused
443  * @param peer id of the peer, NULL for last call
444  * @param hello hello message for the peer (can be NULL)
445  * @param error message
446  */
447 static void
448 process_peerinfo_hello (void *cls,
449                         const struct GNUNET_PeerIdentity *peer,
450                         const struct GNUNET_HELLO_Message *hello,
451                         const char *err_msg)
452 {
453   GNUNET_assert (NULL != peer);
454   if (NULL == hello)
455     return;
456   GNUNET_assert (NULL ==
457                  GNUNET_HELLO_iterate_addresses (hello,
458                                                  GNUNET_NO,
459                                                  &add_valid_address,
460                                                  (void*) hello));  
461 }
462
463
464 /**
465  * Start the validation subsystem.
466  */
467 void 
468 GST_validation_start ()
469 {
470   validation_map = GNUNET_CONTAINER_multihashmap_create (VALIDATION_MAP_SIZE);
471   pnc = GNUNET_PEERINFO_notify (GST_cfg,
472                                 &process_peerinfo_hello,
473                                 NULL);
474 }
475
476
477 /**
478  * Iterate over validation entries and free them.
479  *
480  * @param cls (unused)
481  * @param key peer identity (unused)
482  * @param value a 'struct ValidationEntry' to clean up
483  * @return GNUNET_YES (continue to iterate)
484  */
485 static int
486 cleanup_validation_entry (void *cls,
487                           const GNUNET_HashCode *key,
488                           void *value)
489 {
490   struct ValidationEntry *ve = value;
491     
492   if (NULL != ve->bc)
493     {
494       GST_blacklist_test_cancel (ve->bc);
495       ve->bc = NULL;
496     }
497   GNUNET_break (GNUNET_OK ==
498                 GNUNET_CONTAINER_multihashmap_remove (validation_map,
499                                                       &ve->pid.hashPubKey,
500                                                       ve));
501   GNUNET_free (ve->transport_name);
502   if (GNUNET_SCHEDULER_NO_TASK != ve->timeout_task)
503     {
504       GNUNET_SCHEDULER_cancel (ve->timeout_task);
505       ve->timeout_task = GNUNET_SCHEDULER_NO_TASK;
506     }
507   GNUNET_free (ve);
508   return GNUNET_OK;
509 }
510
511
512 /**
513  * Stop the validation subsystem.
514  */
515 void
516 GST_validation_stop ()
517 {
518   struct CheckHelloValidatedContext *chvc;
519
520   GNUNET_CONTAINER_multihashmap_iterate (validation_map,
521                                          &cleanup_validation_entry,
522                                          NULL);
523   GNUNET_CONTAINER_multihashmap_destroy (validation_map);
524   validation_map = NULL;
525   while (NULL != (chvc = chvc_head))
526     {
527       GNUNET_CONTAINER_DLL_remove (chvc_head,
528                                    chvc_tail,
529                                    chvc);
530       GNUNET_free (chvc);
531     }
532   GNUNET_PEERINFO_notify_cancel (pnc);
533 }
534
535
536 /**
537  * Address validation cleanup task (record no longer needed).
538  *
539  * @param cls the 'struct ValidationEntry'
540  * @param tc scheduler context (unused)
541  */
542 static void
543 timeout_hello_validation (void *cls, 
544                           const struct GNUNET_SCHEDULER_TaskContext *tc)
545 {
546   struct ValidationEntry *ve = cls;
547
548   ve->timeout_task = GNUNET_SCHEDULER_NO_TASK;
549   GNUNET_STATISTICS_update (GST_stats,
550                             gettext_noop ("# address records discarded"),
551                             1,
552                             GNUNET_NO);
553   cleanup_validation_entry (NULL, &ve->pid.hashPubKey, ve);
554 }
555
556
557 /**
558  * Send the given PONG to the given address.
559  *
560  * @param cls the PONG message
561  * @param public_key public key for the peer, never NULL
562  * @param target peer this change is about, never NULL
563  * @param valid_until is ZERO if we never validated the address,
564  *                    otherwise a time up to when we consider it (or was) valid
565  * @param validation_block  is FOREVER if the address is for an unsupported plugin (from PEERINFO)
566  *                          is ZERO if the address is considered valid (no validation needed)
567  *                          otherwise a time in the future if we're currently denying re-validation
568  * @param plugin_name name of the plugin
569  * @param plugin_address binary address
570  * @param plugin_address_len length of address
571  */
572 static void
573 multicast_pong (void *cls,
574                 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *public_key,
575                 const struct GNUNET_PeerIdentity *target,
576                 struct GNUNET_TIME_Absolute valid_until,
577                 struct GNUNET_TIME_Absolute validation_block,
578                 const char *plugin_name,
579                 const void *plugin_address,
580                 size_t plugin_address_len)
581 {
582   struct TransportPongMessage *pong = cls;
583   struct GNUNET_TRANSPORT_PluginFunctions *papi;
584
585   papi = GST_plugins_find (plugin_name);
586   if (papi == NULL)
587     return;
588   (void) papi->send (papi->cls,
589                      target,
590                      (const char*) pong,
591                      ntohs (pong->header.size),
592                      PONG_PRIORITY,
593                      HELLO_REVALIDATION_START_TIME,
594                      NULL,
595                      plugin_address,
596                      plugin_address_len,
597                      GNUNET_YES,
598                      NULL, NULL);
599 }
600
601
602 /**
603  * We've received a PING.  If appropriate, generate a PONG.
604  *
605  * @param sender peer sending the PING
606  * @param hdr the PING
607  * @param session session we got the PING from
608  * @param plugin_name name of plugin that received the PING
609  * @param sender_address address of the sender as known to the plugin, NULL
610  *                       if we did not initiate the connection
611  * @param sender_address_len number of bytes in sender_address
612  */
613 void
614 GST_validation_handle_ping (const struct GNUNET_PeerIdentity *sender,
615                             const struct GNUNET_MessageHeader *hdr,
616                             const char *plugin_name,
617                             struct Session *session,
618                             const void *sender_address,
619                             size_t sender_address_len)
620 {
621   const struct TransportPingMessage *ping;
622   struct TransportPongMessage *pong;
623   struct GNUNET_TRANSPORT_PluginFunctions *papi;
624   struct GNUNET_CRYPTO_RsaSignature *sig_cache;
625   struct GNUNET_TIME_Absolute *sig_cache_exp;
626   const char *addr;
627   const char *addrend;
628   size_t alen;
629   size_t slen;
630   ssize_t ret;
631
632   if (ntohs (hdr->size) < sizeof (struct TransportPingMessage))
633     {
634       GNUNET_break_op (0);
635       return;
636     }
637   ping = (const struct TransportPingMessage *) hdr;
638   if (0 != memcmp (&ping->target,
639                    &GST_my_identity,
640                    sizeof (struct GNUNET_PeerIdentity)))
641     {
642       GNUNET_break_op (0);
643       return;
644     }
645 #if DEBUG_TRANSPORT
646   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
647               "Processing `%s' from `%s'\n",
648               "PING",
649               (sender_address != NULL)
650               ? GST_plugin_a2s (plugin_name,
651                                 sender_address,
652                                 sender_address_len)
653               : "<inbound>");
654 #endif
655   GNUNET_STATISTICS_update (GST_stats,
656                             gettext_noop ("# PING messages received"),
657                             1,
658                             GNUNET_NO);
659   addr = (const char*) &ping[1];
660   alen = ntohs (hdr->size) - sizeof (struct TransportPingMessage);
661   /* peer wants to confirm that this is one of our addresses, this is what is
662      used for address validation */
663   
664   addrend = memchr (addr, '\0', alen);
665   if (NULL == addrend)
666     {
667       GNUNET_break_op (0);
668       return;
669     }
670   addrend++;
671   slen = strlen(addr);
672   alen -= slen;
673   
674   if (GNUNET_YES !=
675       GST_hello_test_address (addr,
676                               addrend,
677                               alen,
678                               &sig_cache,
679                               &sig_cache_exp))
680     {
681       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
682                   _("Not confirming PING with address `%s' since I cannot confirm having this address.\n"),
683                   GST_plugins_a2s (addr,
684                                    addrend,
685                                    alen));
686       return;
687     }
688   
689   pong = GNUNET_malloc (sizeof (struct TransportPongMessage) + alen + slen);
690   pong->header.size = htons (sizeof (struct TransportPongMessage) + alen + slen);
691   pong->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_PONG);
692   pong->purpose.size =
693     htonl (sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) +
694            sizeof (uint32_t) +
695            sizeof (struct GNUNET_TIME_AbsoluteNBO) +
696            sizeof (struct GNUNET_PeerIdentity) + alen + slen);
697   pong->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN);
698   pong->challenge = ping->challenge;
699   pong->addrlen = htonl(alen + slen);
700   pong->pid = GST_my_identity;
701   memcpy (&pong[1], addr, slen);
702   memcpy (&((char*)&pong[1])[slen], addrend, alen);
703   if (GNUNET_TIME_absolute_get_remaining (*sig_cache_exp).rel_value < PONG_SIGNATURE_LIFETIME.rel_value / 4)
704     {
705       /* create / update cached sig */
706 #if DEBUG_TRANSPORT
707       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
708                   "Creating PONG signature to indicate ownership.\n");
709 #endif
710       *sig_cache_exp = GNUNET_TIME_relative_to_absolute (PONG_SIGNATURE_LIFETIME);
711       pong->expiration = GNUNET_TIME_absolute_hton (*sig_cache_exp);
712       GNUNET_assert (GNUNET_OK ==
713                      GNUNET_CRYPTO_rsa_sign (GST_my_private_key,
714                                              &pong->purpose,
715                                              sig_cache));
716     }
717   else
718     {
719       pong->expiration = GNUNET_TIME_absolute_hton (*sig_cache_exp);
720     }
721   pong->signature = *sig_cache;
722
723   /* first see if the session we got this PING from can be used to transmit
724      a response reliably */
725   papi = GST_plugins_find (plugin_name);
726   if (papi == NULL)
727     ret = -1;
728   else
729     ret = papi->send (papi->cls,
730                       sender,
731                       (const char*) pong,
732                       ntohs (pong->header.size),
733                       PONG_PRIORITY,
734                       HELLO_REVALIDATION_START_TIME,
735                       session,
736                       sender_address,
737                       sender_address_len,
738                       GNUNET_SYSERR,
739                       NULL, NULL);
740   if (ret != -1)
741     {
742       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
743                   "Transmitted PONG to `%s' via reliable mechanism\n",
744                   GNUNET_i2s (sender));
745       /* done! */
746       GNUNET_STATISTICS_update (GST_stats,
747                                 gettext_noop ("# PONGs unicast via reliable transport"),
748                                 1,
749                                 GNUNET_NO);
750       GNUNET_free (pong);
751       return;
752     }
753   
754   /* no reliable method found, try transmission via all known addresses */
755   GNUNET_STATISTICS_update (GST_stats,
756                             gettext_noop ("# PONGs multicast to all available addresses"),
757                             1,
758                             GNUNET_NO);
759   GST_validation_get_addresses (sender,
760                                 &multicast_pong,
761                                 pong);
762   GNUNET_free (pong);
763 }
764
765
766 /**
767  * Context for the 'validate_address' function
768  */
769 struct ValidateAddressContext
770 {
771   /**
772    * Hash of the public key of the peer whose address is being validated.
773    */ 
774   struct GNUNET_PeerIdentity pid;
775
776   /**
777    * Public key of the peer whose address is being validated.
778    */
779   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded public_key;
780 };
781
782
783 /**
784  * Function called with the result from blacklisting.
785  * Send a PING to the other peer if a communication is allowed.
786  *
787  * @param cls ou r'struct ValidationEntry'
788  * @param pid identity of the other peer
789  * @param result GNUNET_OK if the connection is allowed, GNUNET_NO if not
790  */
791 static void
792 transmit_ping_if_allowed (void *cls,
793                           const struct GNUNET_PeerIdentity *pid,
794                           int result)
795 {
796   struct ValidationEntry *ve = cls;
797   struct TransportPingMessage ping;
798   struct GNUNET_TRANSPORT_PluginFunctions *papi;
799   const struct GNUNET_MessageHeader *hello;
800   ssize_t ret;
801   size_t tsize;
802   size_t slen;
803   uint16_t hsize;
804
805   ve->bc = NULL;
806   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
807               "Transmitting plain PING to `%s'\n",
808               GNUNET_i2s (pid));  
809   ping.header.size = htons(sizeof(struct TransportPingMessage));
810   ping.header.type = htons(GNUNET_MESSAGE_TYPE_TRANSPORT_PING);
811   ping.challenge = htonl(ve->challenge);
812   ping.target = *pid;
813   
814   slen = strlen(ve->transport_name) + 1;
815   hello = GST_hello_get ();
816   hsize = ntohs (hello->size);
817   tsize = sizeof(struct TransportPingMessage) + ve->addrlen + slen + hsize;
818   if (tsize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
819     {
820       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
821                   _("Not transmitting `%s' with `%s', message too big (%u bytes!). This should not happen.\n"),
822                   "HELLO",
823                   "PING",
824                   (unsigned int) tsize);
825       /* message too big (!?), get rid of HELLO */
826       hsize = 0;
827       tsize = sizeof(struct TransportPingMessage) + ve->addrlen + slen + hsize;
828     }
829   {
830     char message_buf[tsize];
831
832     memcpy(message_buf, hello, hsize);
833     memcpy(&message_buf[hsize], &ping, sizeof (struct TransportPingMessage));
834     memcpy(&message_buf[sizeof (struct TransportPingMessage) + hsize],
835            ve->transport_name,
836            slen);
837     memcpy(&message_buf[sizeof (struct TransportPingMessage) + slen + hsize],
838            ve->addr,
839            ve->addrlen);
840     papi = GST_plugins_find (ve->transport_name);
841     if (papi == NULL)
842       ret = -1;
843     else
844       ret = papi->send (papi->cls,
845                         pid,
846                         message_buf,
847                         tsize,
848                         PING_PRIORITY,
849                         HELLO_REVALIDATION_START_TIME,
850                         NULL /* no session */,
851                         ve->addr,
852                         ve->addrlen,
853                         GNUNET_YES,
854                         NULL, NULL);
855   }
856   if (-1 != ret)
857     {
858       ve->send_time = GNUNET_TIME_absolute_get ();
859       GNUNET_STATISTICS_update (GST_stats,
860                                 gettext_noop ("# PING without HELLO messages sent"),
861                                 1,
862                                 GNUNET_NO);
863     }
864 }
865
866
867 /**
868  * Iterator callback to go over all addresses and try to validate them
869  * (unless blocked or already validated).
870  *
871  * @param cls pointer to a 'struct ValidateAddressContext'
872  * @param tname name of the transport
873  * @param expiration expiration time
874  * @param addr the address
875  * @param addrlen length of the address
876  * @return GNUNET_OK (keep the address)
877  */
878 static int
879 validate_address (void *cls,
880                   const char *tname,
881                   struct GNUNET_TIME_Absolute expiration,
882                   const void *addr, 
883                   uint16_t addrlen)
884 {
885   const struct ValidateAddressContext *vac = cls;
886   const struct GNUNET_PeerIdentity *pid = &vac->pid;
887   struct ValidationEntry *ve;
888   struct GST_BlacklistCheck *bc;
889
890   if (GNUNET_TIME_absolute_get_remaining (expiration).rel_value == 0)
891     return GNUNET_OK; /* expired */
892   ve = find_validation_entry (&vac->public_key, pid, tname, addr, addrlen);
893   if (GNUNET_TIME_absolute_get_remaining (ve->validation_block).rel_value > 0)
894     return GNUNET_OK; /* blocked */
895   if ( (GNUNET_SCHEDULER_NO_TASK != ve->timeout_task) &&
896        (GNUNET_TIME_absolute_get_remaining (ve->valid_until).rel_value > 0) )
897     return GNUNET_OK; /* revalidation task already scheduled & still  valid */  
898   ve->validation_block = GNUNET_TIME_relative_to_absolute (HELLO_REVALIDATION_START_TIME);
899   if (GNUNET_SCHEDULER_NO_TASK != ve->timeout_task)
900     GNUNET_SCHEDULER_cancel (ve->timeout_task);
901   ve->timeout_task = GNUNET_SCHEDULER_add_delayed (HELLO_REVALIDATION_START_TIME,
902                                                    &timeout_hello_validation,
903                                                    ve);
904   bc = GST_blacklist_test_allowed (pid,
905                                    tname,
906                                    &transmit_ping_if_allowed,
907                                    ve);
908   if (NULL != bc)
909     ve->bc = bc;
910   return GNUNET_OK;
911 }
912
913
914 /**
915  * Do address validation again to keep address valid.
916  *
917  * @param cls the 'struct ValidationEntry'
918  * @param tc scheduler context (unused)
919  */
920 static void
921 revalidate_address (void *cls, 
922                     const struct GNUNET_SCHEDULER_TaskContext *tc)
923 {
924   struct ValidationEntry *ve = cls;
925   struct GNUNET_TIME_Relative delay;
926   struct ValidateAddressContext vac;
927
928   ve->timeout_task = GNUNET_SCHEDULER_NO_TASK;
929   delay = GNUNET_TIME_absolute_get_remaining (ve->validation_block);
930   if (delay.rel_value > 0)
931     {
932       /* should wait a bit longer */
933       ve->timeout_task = GNUNET_SCHEDULER_add_delayed (delay,
934                                                        &revalidate_address,
935                                                        ve);
936       return;
937     }
938   GNUNET_STATISTICS_update (GST_stats,
939                             gettext_noop ("# address revalidations started"),
940                             1,
941                             GNUNET_NO);
942   vac.pid = ve->pid;
943   vac.public_key = ve->public_key;
944   validate_address (&vac,
945                     ve->transport_name,
946                     ve->valid_until,
947                     ve->addr,
948                     (uint16_t) ve->addrlen);
949 }
950
951
952 /**
953  * Add the validated peer address to the HELLO.
954  *
955  * @param cls the 'struct ValidationEntry' with the validated address
956  * @param max space in buf
957  * @param buf where to add the address
958  */
959 static size_t
960 add_valid_peer_address (void *cls,
961                         size_t max,
962                         void *buf)
963 {
964   struct ValidationEntry *ve = cls;
965
966   return GNUNET_HELLO_add_address (ve->transport_name,
967                                    ve->valid_until,
968                                    ve->addr,
969                                    ve->addrlen,
970                                    buf,
971                                    max);
972 }
973
974
975 /**
976  * We've received a PONG.  Check if it matches a pending PING and
977  * mark the respective address as confirmed.
978  *
979  * @param sender peer sending the PONG
980  * @param hdr the PONG
981  */
982 void
983 GST_validation_handle_pong (const struct GNUNET_PeerIdentity *sender,
984                             const struct GNUNET_MessageHeader *hdr)
985 {
986   const struct TransportPongMessage *pong;
987   struct ValidationEntry *ve;
988   const char *addr;
989   const char *addrend;
990   size_t alen;
991   size_t slen;
992   uint32_t rdelay;
993   struct GNUNET_TIME_Relative delay;
994   struct GNUNET_HELLO_Message *hello;
995
996   if (ntohs (hdr->size) < sizeof (struct TransportPongMessage))
997     {
998       GNUNET_break_op (0);
999       return;
1000     }
1001   GNUNET_STATISTICS_update (GST_stats,
1002                             gettext_noop ("# PONG messages received"),
1003                             1,
1004                             GNUNET_NO);
1005   pong = (const struct TransportPongMessage *) hdr;
1006   if (0 != memcmp (&pong->pid,
1007                    sender,
1008                    sizeof (struct GNUNET_PeerIdentity)))
1009     {
1010       GNUNET_break_op (0);
1011       return;
1012     }
1013   addr = (const char*) &pong[1];
1014   alen = ntohs (hdr->size) - sizeof (struct TransportPongMessage);
1015   addrend = memchr (addr, '\0', alen);
1016   if (NULL == addrend)
1017     {
1018       GNUNET_break_op (0);
1019       return;
1020     }
1021   addrend++;
1022   slen = strlen(addr);
1023   alen -= slen;
1024   ve = find_validation_entry (NULL,
1025                               sender,
1026                               addr,
1027                               addrend,
1028                               alen);
1029   if (NULL == ve)
1030     {
1031       GNUNET_STATISTICS_update (GST_stats,
1032                                 gettext_noop ("# PONGs dropped, no matching pending validation"),
1033                                 1,
1034                                 GNUNET_NO);
1035       return;
1036     }
1037   /* now check that PONG is well-formed */
1038   if (GNUNET_TIME_absolute_get_remaining (GNUNET_TIME_absolute_ntoh (pong->expiration)).rel_value == 0)
1039     {
1040       GNUNET_STATISTICS_update (GST_stats,
1041                                 gettext_noop ("# PONGs dropped, signature expired"),
1042                                 1,
1043                                 GNUNET_NO);
1044       return;
1045     }
1046   if (GNUNET_OK !=
1047       GNUNET_CRYPTO_rsa_verify (GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PONG_OWN,
1048                                 &pong->purpose,
1049                                 &pong->signature,
1050                                 &ve->public_key))
1051     {
1052       GNUNET_break_op (0);
1053       return;
1054     }
1055   
1056   /* validity achieved, remember it! */
1057   ve->valid_until = GNUNET_TIME_relative_to_absolute (HELLO_ADDRESS_EXPIRATION);
1058   GNUNET_ATS_address_update (GST_ats,
1059                              &ve->pid,
1060                              ve->valid_until,
1061                              ve->transport_name,
1062                              NULL,
1063                              ve->addr,
1064                              ve->addrlen,
1065                              NULL, 0); /* FIXME: compute and add latency here... */
1066
1067   /* build HELLO to store in PEERINFO */
1068   hello = GNUNET_HELLO_create (&ve->public_key,
1069                                &add_valid_peer_address,
1070                                ve);
1071   GNUNET_PEERINFO_add_peer (GST_peerinfo,
1072                             hello);
1073   GNUNET_free (hello);
1074
1075   if (GNUNET_SCHEDULER_NO_TASK != ve->timeout_task)
1076     GNUNET_SCHEDULER_cancel (ve->timeout_task);
1077
1078   /* randomly delay by up to 1h to avoid synchronous validations */
1079   rdelay = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
1080                                      60 * 60);
1081   delay = GNUNET_TIME_relative_add (HELLO_REVALIDATION_START_TIME,
1082                                     GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
1083                                                                    rdelay));
1084   ve->timeout_task = GNUNET_SCHEDULER_add_delayed (delay,
1085                                                    &revalidate_address,
1086                                                    ve);
1087 }
1088
1089
1090 /**
1091  * We've received a HELLO, check which addresses are new and trigger
1092  * validation.
1093  *
1094  * @param hello the HELLO we received
1095  */
1096 void
1097 GST_validation_handle_hello (const struct GNUNET_MessageHeader *hello)
1098 {
1099   const struct GNUNET_HELLO_Message* hm = (const struct GNUNET_HELLO_Message*) hello;
1100   struct ValidateAddressContext vac;
1101
1102   if ( (GNUNET_OK !=
1103         GNUNET_HELLO_get_id (hm, &vac.pid)) ||
1104        (GNUNET_OK !=
1105         GNUNET_HELLO_get_key (hm, &vac.public_key)) )
1106     {
1107       /* malformed HELLO */
1108       GNUNET_break (0);
1109       return; 
1110     }
1111   GNUNET_assert (NULL ==
1112                  GNUNET_HELLO_iterate_addresses (hm,
1113                                                  GNUNET_NO,
1114                                                  &validate_address,
1115                                                  &vac));
1116 }
1117
1118
1119 /**
1120  * Closure for 'iterate_addresses'
1121  */
1122 struct IteratorContext
1123 {
1124   /**
1125    * Function to call on each address.
1126    */
1127   GST_ValidationAddressCallback cb;
1128
1129   /**
1130    * Closure for 'cb'.
1131    */
1132   void *cb_cls;
1133
1134 };
1135
1136
1137 /**
1138  * Call the callback in the closure for each validation entry.
1139  *
1140  * @param cls the 'struct GST_ValidationIteratorContext'
1141  * @param key the peer's identity
1142  * @param value the 'struct ValidationEntry'
1143  * @return GNUNET_OK (continue to iterate)
1144  */
1145 static int
1146 iterate_addresses (void *cls,
1147                    const GNUNET_HashCode *key,
1148                    void *value)
1149 {
1150   struct IteratorContext *ic = cls;
1151   struct ValidationEntry *ve = value;
1152
1153   ic->cb (ic->cb_cls,
1154           &ve->public_key,
1155           &ve->pid,
1156           ve->valid_until,
1157           ve->validation_block,
1158           ve->transport_name,
1159           ve->addr,
1160           ve->addrlen);
1161   return GNUNET_OK;
1162 }
1163
1164
1165 /**
1166  * Call the given function for each address for the given target.
1167  * Can either give a snapshot (synchronous API) or be continuous.
1168  *
1169  * @param target peer information is requested for
1170  * @param snapshot_only GNUNET_YES to iterate over addresses once, GNUNET_NO to
1171  *                      continue to give information about addresses as it evolves
1172  * @param cb function to call; will not be called after this function returns
1173  *                             if snapshot_only is GNUNET_YES
1174  * @param cb_cls closure for 'cb'
1175  * @return context to cancel, NULL if 'snapshot_only' is GNUNET_YES
1176  */
1177 void
1178 GST_validation_get_addresses (const struct GNUNET_PeerIdentity *target,
1179                               GST_ValidationAddressCallback cb,
1180                               void *cb_cls)
1181 {
1182   struct IteratorContext  ic;
1183
1184   ic.cb = cb;
1185   ic.cb_cls = cb_cls;
1186   GNUNET_CONTAINER_multihashmap_get_multiple (validation_map,
1187                                               &target->hashPubKey,
1188                                               &iterate_addresses,
1189                                               &ic);
1190 }
1191
1192
1193 /* end of file gnunet-service-transport_validation.c */