logging
[oweals/gnunet.git] / src / transport / gnunet-service-transport.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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 2, 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.c
23  * @brief low-level P2P messaging
24  * @author Christian Grothoff
25  *
26  */
27 #include "platform.h"
28 #include "gnunet_client_lib.h"
29 #include "gnunet_container_lib.h"
30 #include "gnunet_constants.h"
31 #include "gnunet_getopt_lib.h"
32 #include "gnunet_hello_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_peerinfo_service.h"
35 #include "gnunet_plugin_lib.h"
36 #include "gnunet_protocols.h"
37 #include "gnunet_service_lib.h"
38 #include "gnunet_signatures.h"
39 #include "plugin_transport.h"
40 #include "transport.h"
41
42 #define DEBUG_BLACKLIST GNUNET_NO
43
44 #define DEBUG_PING_PONG GNUNET_NO
45
46 #define SIGN_USELESS GNUNET_NO
47
48 /**
49  * Should we do some additional checks (to validate behavior
50  * of clients)?
51  */
52 #define EXTRA_CHECKS GNUNET_YES
53
54 /**
55  * How many messages can we have pending for a given client process
56  * before we start to drop incoming messages?  We typically should
57  * have only one client and so this would be the primary buffer for
58  * messages, so the number should be chosen rather generously.
59  *
60  * The expectation here is that most of the time the queue is large
61  * enough so that a drop is virtually never required.
62  */
63 #define MAX_PENDING 128
64
65 /**
66  * Size of the per-transport blacklist hash maps.
67  */
68 #define TRANSPORT_BLACKLIST_HT_SIZE 16
69
70 /**
71  * How often should we try to reconnect to a peer using a particular
72  * transport plugin before giving up?  Note that the plugin may be
73  * added back to the list after PLUGIN_RETRY_FREQUENCY expires.
74  */
75 #define MAX_CONNECT_RETRY 3
76
77 /**
78  * Limit on the number of ready-to-run tasks when validating 
79  * HELLOs.  If more tasks are ready to run, we will drop 
80  * HELLOs instead of validating them.
81  */
82 #define MAX_HELLO_LOAD 4
83
84 /**
85  * How often must a peer violate bandwidth quotas before we start
86  * to simply drop its messages?
87  */
88 #define QUOTA_VIOLATION_DROP_THRESHOLD 10
89
90 /**
91  * How long until a HELLO verification attempt should time out?
92  * Must be rather small, otherwise a partially successful HELLO
93  * validation (some addresses working) might not be available
94  * before a client's request for a connection fails for good.
95  * Besides, if a single request to an address takes a long time,
96  * then the peer is unlikely worthwhile anyway.
97  */
98 #define HELLO_VERIFICATION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
99
100 /**
101  * Priority to use for PONG messages.
102  */
103 #define TRANSPORT_PONG_PRIORITY 4
104
105 /**
106  * How often do we re-add (cheaper) plugins to our list of plugins
107  * to try for a given connected peer?
108  */
109 #define PLUGIN_RETRY_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
110
111 /**
112  * After how long do we expire an address in a HELLO that we just
113  * validated?  This value is also used for our own addresses when we
114  * create a HELLO.
115  */
116 #define HELLO_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
117
118
119 /**
120  * How long before an existing address expires should we again try to
121  * validate it?  Must be (significantly) smaller than
122  * HELLO_ADDRESS_EXPIRATION.
123  */
124 #define HELLO_REVALIDATION_START_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
125
126 /**
127  * Maximum frequency for re-evaluating latencies for all transport addresses.
128  */
129 #define LATENCY_EVALUATION_MAX_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
130
131 /**
132  * Maximum frequency for re-evaluating latencies for connected addresses.
133  */
134 #define CONNECTED_LATENCY_EVALUATION_MAX_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
135
136
137 /**
138  * List of addresses of other peers
139  */
140 struct ForeignAddressList
141 {
142   /**
143    * This is a linked list.
144    */
145   struct ForeignAddressList *next;
146
147   /**
148    * Which ready list does this entry belong to.
149    */
150   struct ReadyList *ready_list;
151
152   /**
153    * How long until we auto-expire this address (unless it is
154    * re-confirmed by the transport)?
155    */
156   struct GNUNET_TIME_Absolute expires;
157
158   /**
159    * Task used to re-validate addresses, updates latencies and
160    * verifies liveness.
161    */
162   GNUNET_SCHEDULER_TaskIdentifier revalidate_task;
163
164   /**
165    * The address.
166    */
167   const void *addr;
168
169   /**
170    * Session (or NULL if no valid session currently exists or if the
171    * plugin does not use sessions).
172    */
173   struct Session *session;
174
175   /**
176    * What was the last latency observed for this address, plugin and peer?
177    */
178   struct GNUNET_TIME_Relative latency;
179
180   /**
181    * If we did not successfully transmit a message to the given peer
182    * via this connection during the specified time, we should consider
183    * the connection to be dead.  This is used in the case that a TCP
184    * transport simply stalls writing to the stream but does not
185    * formerly get a signal that the other peer died.
186    */
187   struct GNUNET_TIME_Absolute timeout;
188
189   /**
190    * How often have we tried to connect using this plugin?  Used to
191    * discriminate against addresses that do not work well.
192    * FIXME: not yet used, but should be!
193    */
194   unsigned int connect_attempts;
195
196   /**
197    * DV distance to this peer (1 if no DV is used). 
198    * FIXME: need to set this from transport plugins!
199    */
200   uint32_t distance;
201
202   /**
203    * Length of addr.
204    */
205   uint16_t addrlen;
206
207   /**
208    * Have we ever estimated the latency of this address?  Used to
209    * ensure that the first time we add an address, we immediately
210    * probe its latency.
211    */
212   int8_t estimated;
213
214   /**
215    * Are we currently connected via this address?  The first time we
216    * successfully transmit or receive data to a peer via a particular
217    * address, we set this to GNUNET_YES.  If we later get an error
218    * (disconnect notification, transmission failure, timeout), we set
219    * it back to GNUNET_NO.  
220    */
221   int8_t connected;
222
223   /**
224    * Is this plugin currently busy transmitting to the specific target?
225    * GNUNET_NO if not (initial, default state is GNUNET_NO).   Internal
226    * messages do not count as 'in transmit'.
227    */
228   int8_t in_transmit;
229
230   /**
231    * Has this address been validated yet?
232    */
233   int8_t validated;
234
235 };
236
237
238 /**
239  * Entry in linked list of network addresses for ourselves.
240  */
241 struct OwnAddressList
242 {
243   /**
244    * This is a linked list.
245    */
246   struct OwnAddressList *next;
247
248   /**
249    * The address, actually a pointer to the end
250    * of this struct.  Do not free!
251    */
252   const void *addr;
253   
254   /**
255    * How long until we auto-expire this address (unless it is
256    * re-confirmed by the transport)?
257    */
258   struct GNUNET_TIME_Absolute expires;
259
260   /**
261    * Length of addr.
262    */
263   uint16_t addrlen;
264
265 };
266
267
268 /**
269  * Entry in linked list of all of our plugins.
270  */
271 struct TransportPlugin
272 {
273
274   /**
275    * This is a linked list.
276    */
277   struct TransportPlugin *next;
278
279   /**
280    * API of the transport as returned by the plugin's
281    * initialization function.
282    */
283   struct GNUNET_TRANSPORT_PluginFunctions *api;
284
285   /**
286    * Short name for the plugin (i.e. "tcp").
287    */
288   char *short_name;
289
290   /**
291    * Name of the library (i.e. "gnunet_plugin_transport_tcp").
292    */
293   char *lib_name;
294
295   /**
296    * List of our known addresses for this transport.
297    */
298   struct OwnAddressList *addresses;
299
300   /**
301    * Environment this transport service is using
302    * for this plugin.
303    */
304   struct GNUNET_TRANSPORT_PluginEnvironment env;
305
306   /**
307    * ID of task that is used to clean up expired addresses.
308    */
309   GNUNET_SCHEDULER_TaskIdentifier address_update_task;
310
311   /**
312    * Set to GNUNET_YES if we need to scrap the existing list of
313    * "addresses" and start fresh when we receive the next address
314    * update from a transport.  Set to GNUNET_NO if we should just add
315    * the new address to the list and wait for the commit call.
316    */
317   int rebuild;
318
319   /**
320    * Hashmap of blacklisted peers for this particular transport.
321    */
322   struct GNUNET_CONTAINER_MultiHashMap *blacklist;
323 };
324
325 struct NeighbourList;
326
327 /**
328  * For each neighbour we keep a list of messages
329  * that we still want to transmit to the neighbour.
330  */
331 struct MessageQueue
332 {
333
334   /**
335    * This is a doubly linked list.
336    */
337   struct MessageQueue *next;
338
339   /**
340    * This is a doubly linked list.
341    */
342   struct MessageQueue *prev;
343
344   /**
345    * The message(s) we want to transmit, GNUNET_MessageHeader(s)
346    * stuck together in memory.  Allocated at the end of this struct.
347    */
348   const char *message_buf;
349
350   /**
351    * Size of the message buf
352    */
353   size_t message_buf_size;
354
355   /**
356    * Client responsible for queueing the message;
357    * used to check that a client has no two messages
358    * pending for the same target.  Can be NULL.
359    */
360   struct TransportClient *client;
361
362   /**
363    * Using which specific address should we send this message?
364    */
365   struct ForeignAddressList *specific_address;
366
367   /**
368    * Peer ID of the Neighbour this entry belongs to.
369    */
370   struct GNUNET_PeerIdentity neighbour_id;
371
372   /**
373    * Plugin that we used for the transmission.
374    * NULL until we scheduled a transmission.
375    */
376   struct TransportPlugin *plugin;
377
378   /**
379    * At what time should we fail?
380    */
381   struct GNUNET_TIME_Absolute timeout;
382
383   /**
384    * Internal message of the transport system that should not be
385    * included in the usual SEND-SEND_OK transmission confirmation
386    * traffic management scheme.  Typically, "internal_msg" will
387    * be set whenever "client" is NULL (but it is not strictly
388    * required).
389    */
390   int internal_msg;
391
392   /**
393    * How important is the message?
394    */
395   unsigned int priority;
396
397 };
398
399
400 /**
401  * For a given Neighbour, which plugins are available
402  * to talk to this peer and what are their costs?
403  */
404 struct ReadyList
405 {
406   /**
407    * This is a linked list.
408    */
409   struct ReadyList *next;
410
411   /**
412    * Which of our transport plugins does this entry
413    * represent?
414    */
415   struct TransportPlugin *plugin;
416
417   /**
418    * Transport addresses, latency, and readiness for
419    * this particular plugin.
420    */
421   struct ForeignAddressList *addresses;
422
423   /**
424    * To which neighbour does this ready list belong to?
425    */
426   struct NeighbourList *neighbour;
427
428 };
429
430
431 /**
432  * Entry in linked list of all of our current neighbours.
433  */
434 struct NeighbourList
435 {
436
437   /**
438    * This is a linked list.
439    */
440   struct NeighbourList *next;
441
442   /**
443    * Which of our transports is connected to this peer
444    * and what is their status?
445    */
446   struct ReadyList *plugins;
447
448   /**
449    * Head of list of messages we would like to send to this peer;
450    * must contain at most one message per client.
451    */
452   struct MessageQueue *messages_head;
453
454   /**
455    * Tail of list of messages we would like to send to this peer; must
456    * contain at most one message per client.
457    */
458   struct MessageQueue *messages_tail;
459
460   /**
461    * Buffer for at most one payload message used when we receive
462    * payload data before our PING-PONG has succeeded.  We then
463    * store such messages in this intermediary buffer until the
464    * connection is fully up.  
465    */
466   struct GNUNET_MessageHeader *pre_connect_message_buffer;
467
468   /**
469    * Context for peerinfo iteration.
470    * NULL after we are done processing peerinfo's information.
471    */
472   struct GNUNET_PEERINFO_IteratorContext *piter;
473
474   /**
475    * Public key for this peer.   Valid only if the respective flag is set below.
476    */
477   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded publicKey;
478
479   /**
480    * Identity of this neighbour.
481    */
482   struct GNUNET_PeerIdentity id;
483
484   /**
485    * ID of task scheduled to run when this peer is about to
486    * time out (will free resources associated with the peer).
487    */
488   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
489
490   /**
491    * ID of task scheduled to run when we should retry transmitting
492    * the head of the message queue.  Actually triggered when the
493    * transmission is timing out (we trigger instantly when we have
494    * a chance of success).
495    */
496   GNUNET_SCHEDULER_TaskIdentifier retry_task;
497
498   /**
499    * How long until we should consider this peer dead
500    * (if we don't receive another message in the
501    * meantime)?
502    */
503   struct GNUNET_TIME_Absolute peer_timeout;
504
505   /**
506    * Tracker for inbound bandwidth.
507    */
508   struct GNUNET_BANDWIDTH_Tracker in_tracker;
509
510   /**
511    * The latency we have seen for this particular address for
512    * this particular peer.  This latency may have been calculated
513    * over multiple transports.  This value reflects how long it took
514    * us to receive a response when SENDING via this particular
515    * transport/neighbour/address combination!
516    *
517    * FIXME: we need to periodically send PINGs to update this
518    * latency (at least more often than the current "huge" (11h?)
519    * update interval).
520    */
521   struct GNUNET_TIME_Relative latency;
522
523   /**
524    * How often has the other peer (recently) violated the
525    * inbound traffic limit?  Incremented by 10 per violation,
526    * decremented by 1 per non-violation (for each
527    * time interval).
528    */
529   unsigned int quota_violation_count;
530
531   /**
532    * DV distance to this peer (1 if no DV is used). 
533    */
534   uint32_t distance;
535
536   /**
537    * Have we seen an PONG from this neighbour in the past (and
538    * not had a disconnect since)?
539    */
540   int received_pong;
541
542   /**
543    * Do we have a valid public key for this neighbour?
544    */
545   int public_key_valid;
546
547 };
548
549 /**
550  * Message used to ask a peer to validate receipt (to check an address
551  * from a HELLO).  
552  */
553 struct TransportPingMessage
554 {
555
556   /**
557    * Type will be GNUNET_MESSAGE_TYPE_TRANSPORT_PING
558    */
559   struct GNUNET_MessageHeader header;
560
561   /**
562    * Random challenge number (in network byte order).
563    */
564   uint32_t challenge GNUNET_PACKED;
565
566   /**
567    * Who is the intended recipient?
568    */
569   struct GNUNET_PeerIdentity target;
570
571 };
572
573
574 /**
575  * Message used to validate a HELLO.  The challenge is included in the
576  * confirmation to make matching of replies to requests possible.  The
577  * signature signs the original challenge number, our public key, the
578  * sender's address (so that the sender can check that the address we
579  * saw is plausible for him and possibly detect a MiM attack) and a
580  * timestamp (to limit replay).<p>
581  *
582  * This message is followed by the address of the
583  * client that we are observing (which is part of what
584  * is being signed).
585  */
586 struct TransportPongMessage
587 {
588
589   /**
590    * Type will be GNUNET_MESSAGE_TYPE_TRANSPORT_PONG
591    */
592   struct GNUNET_MessageHeader header;
593
594   /**
595    * For padding, always zero.
596    */
597   uint32_t reserved GNUNET_PACKED;
598
599   /**
600    * Signature.
601    */
602   struct GNUNET_CRYPTO_RsaSignature signature;
603
604   /**
605    * What are we signing and why?
606    */
607   struct GNUNET_CRYPTO_RsaSignaturePurpose purpose;
608
609   /**
610    * Random challenge number (in network byte order).
611    */
612   uint32_t challenge GNUNET_PACKED;
613
614   /**
615    * Who signed this message?
616    */
617   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded signer;
618
619   /**
620    * Size of address appended to this message
621    */
622   uint16_t addrlen;
623
624 };
625
626
627 /**
628  * Linked list of messages to be transmitted to the client.  Each
629  * entry is followed by the actual message.
630  */
631 struct ClientMessageQueueEntry
632 {
633   /**
634    * This is a doubly-linked list.
635    */
636   struct ClientMessageQueueEntry *next;
637
638   /**
639    * This is a doubly-linked list.
640    */
641   struct ClientMessageQueueEntry *prev;
642 };
643
644
645 /**
646  * Client connected to the transport service.
647  */
648 struct TransportClient
649 {
650
651   /**
652    * This is a linked list.
653    */
654   struct TransportClient *next;
655
656   /**
657    * Handle to the client.
658    */
659   struct GNUNET_SERVER_Client *client;
660
661   /**
662    * Linked list of messages yet to be transmitted to
663    * the client.
664    */
665   struct ClientMessageQueueEntry *message_queue_head;
666
667   /**
668    * Tail of linked list of messages yet to be transmitted to the
669    * client.
670    */
671   struct ClientMessageQueueEntry *message_queue_tail;
672
673   /**
674    * Current transmit request handle.
675    */ 
676   struct GNUNET_CONNECTION_TransmitHandle *th;
677
678   /**
679    * Is a call to "transmit_send_continuation" pending?  If so, we
680    * must not free this struct (even if the corresponding client
681    * disconnects) and instead only remove it from the linked list and
682    * set the "client" field to NULL.
683    */
684   int tcs_pending;
685
686   /**
687    * Length of the list of messages pending for this client.
688    */
689   unsigned int message_count;
690
691 };
692
693
694 /**
695  * Context of currently active requests to peerinfo
696  * for validation of HELLOs.
697  */
698 struct CheckHelloValidatedContext;
699
700
701 /**
702  * Entry in map of all HELLOs awaiting validation.
703  */
704 struct ValidationEntry
705 {
706
707   /**
708    * NULL if this entry is not part of a larger HELLO validation.
709    */
710   struct CheckHelloValidatedContext *chvc;
711
712   /**
713    * The address, actually a pointer to the end
714    * of this struct.  Do not free!
715    */
716   const void *addr;
717
718   /**
719    * Name of the transport.
720    */
721   char *transport_name;
722
723   /**
724    * The public key of the peer.
725    */
726   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded publicKey;
727
728   /**
729    * ID of task that will clean up this entry if we don't succeed
730    * with the validation first.
731    */
732   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
733
734   /**
735    * At what time did we send this validation?
736    */
737   struct GNUNET_TIME_Absolute send_time;
738
739   /**
740    * Session being validated (or NULL for none).
741    */
742   struct Session *session;
743
744   /**
745    * Challenge number we used.
746    */
747   uint32_t challenge;
748
749   /**
750    * Length of addr.
751    */
752   uint16_t addrlen;
753
754 };
755
756
757 /**
758  * Context of currently active requests to peerinfo
759  * for validation of HELLOs.
760  */
761 struct CheckHelloValidatedContext
762 {
763
764   /**
765    * This is a doubly-linked list.
766    */
767   struct CheckHelloValidatedContext *next;
768
769   /**
770    * This is a doubly-linked list.
771    */
772   struct CheckHelloValidatedContext *prev;
773
774   /**
775    * Hello that we are validating.
776    */
777   const struct GNUNET_HELLO_Message *hello;
778
779   /**
780    * Context for peerinfo iteration.
781    * NULL after we are done processing peerinfo's information.
782    */
783   struct GNUNET_PEERINFO_IteratorContext *piter;
784   
785   /**
786    * Was a HELLO known for this peer to peerinfo?
787    */
788   int hello_known;
789
790   /**
791    * Number of validation entries currently referring to this
792    * CHVC.
793    */
794   unsigned int ve_count;
795 };
796
797
798
799 /**
800  * Our HELLO message.
801  */
802 static struct GNUNET_HELLO_Message *our_hello;
803
804 /**
805  * "version" of "our_hello".  Used to see if a given neighbour has
806  * already been sent the latest version of our HELLO message.
807  */
808 static unsigned int our_hello_version;
809
810 /**
811  * Our public key.
812  */
813 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
814
815 /**
816  * Our identity.
817  */
818 static struct GNUNET_PeerIdentity my_identity;
819
820 /**
821  * Our private key.
822  */
823 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
824
825 /**
826  * Our scheduler.
827  */
828 struct GNUNET_SCHEDULER_Handle *sched;
829
830 /**
831  * Our configuration.
832  */
833 const struct GNUNET_CONFIGURATION_Handle *cfg;
834
835 /**
836  * Linked list of all clients to this service.
837  */
838 static struct TransportClient *clients;
839
840 /**
841  * All loaded plugins.
842  */
843 static struct TransportPlugin *plugins;
844
845 /**
846  * Our server.
847  */
848 static struct GNUNET_SERVER_Handle *server;
849
850 /**
851  * Handle to peerinfo service.
852  */
853 static struct GNUNET_PEERINFO_Handle *peerinfo;
854
855 /**
856  * All known neighbours and their HELLOs.
857  */
858 static struct NeighbourList *neighbours;
859
860 /**
861  * Number of neighbours we'd like to have.
862  */
863 static uint32_t max_connect_per_transport;
864
865 /**
866  * Head of linked list.
867  */
868 static struct CheckHelloValidatedContext *chvc_head;
869
870 /**
871  * Tail of linked list.
872  */
873 static struct CheckHelloValidatedContext *chvc_tail;
874
875 /**
876  * Map of PeerIdentities to 'struct ValidationEntry*'s (addresses
877  * of the given peer that we are currently validating).
878  */
879 static struct GNUNET_CONTAINER_MultiHashMap *validation_map;
880
881 /**
882  * Handle for reporting statistics.
883  */
884 static struct GNUNET_STATISTICS_Handle *stats;
885
886
887 /**
888  * The peer specified by the given neighbour has timed-out or a plugin
889  * has disconnected.  We may either need to do nothing (other plugins
890  * still up), or trigger a full disconnect and clean up.  This
891  * function updates our state and do the necessary notifications.
892  * Also notifies our clients that the neighbour is now officially
893  * gone.
894  *
895  * @param n the neighbour list entry for the peer
896  * @param check should we just check if all plugins
897  *        disconnected or must we ask all plugins to
898  *        disconnect?
899  */
900 static void disconnect_neighbour (struct NeighbourList *n, int check);
901
902 /**
903  * Check the ready list for the given neighbour and if a plugin is
904  * ready for transmission (and if we have a message), do so!
905  *
906  * @param neighbour target peer for which to transmit
907  */
908 static void try_transmission_to_peer (struct NeighbourList *neighbour);
909
910
911 /**
912  * Find an entry in the neighbour list for a particular peer.
913  *  
914  * @return NULL if not found.
915  */
916 static struct NeighbourList *
917 find_neighbour (const struct GNUNET_PeerIdentity *key)
918 {
919   struct NeighbourList *head = neighbours;
920
921   while ((head != NULL) &&
922         (0 != memcmp (key, &head->id, sizeof (struct GNUNET_PeerIdentity))))
923     head = head->next;
924   return head;
925 }
926
927
928 /**
929  * Find an entry in the transport list for a particular transport.
930  *
931  * @return NULL if not found.
932  */
933 static struct TransportPlugin *
934 find_transport (const char *short_name)
935 {
936   struct TransportPlugin *head = plugins;
937   while ((head != NULL) && (0 != strcmp (short_name, head->short_name)))
938     head = head->next;
939   return head;
940 }
941
942 /**
943  * Is a particular peer blacklisted for a particular transport?
944  *
945  * @param peer the peer to check for
946  * @param plugin the plugin used to connect to the peer
947  *
948  * @return GNUNET_YES if the peer is blacklisted, GNUNET_NO if not
949  */
950 static int
951 is_blacklisted (const struct GNUNET_PeerIdentity *peer, struct TransportPlugin *plugin)
952 {
953
954   if (plugin->blacklist != NULL)
955     {
956       if (GNUNET_CONTAINER_multihashmap_contains(plugin->blacklist, &peer->hashPubKey) == GNUNET_YES)
957         {
958 #if DEBUG_BLACKLIST
959           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
960                       _("Peer `%s:%s' is blacklisted!\n"),
961                       plugin->short_name, GNUNET_i2s (peer));
962 #endif
963           return GNUNET_YES;
964         }
965     }
966
967   return GNUNET_NO;
968 }
969
970
971 static void
972 add_peer_to_blacklist (struct GNUNET_PeerIdentity *peer, char *transport_name)
973 {
974   struct TransportPlugin *plugin;
975
976   plugin = find_transport(transport_name);
977   if (plugin == NULL) /* Nothing to do */
978     return;
979   if (plugin->blacklist == NULL)    
980     plugin->blacklist = GNUNET_CONTAINER_multihashmap_create(TRANSPORT_BLACKLIST_HT_SIZE);    
981   GNUNET_assert(plugin->blacklist != NULL);
982   GNUNET_CONTAINER_multihashmap_put(plugin->blacklist, &peer->hashPubKey,
983                                     NULL, 
984                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
985 }
986
987
988 /**
989  * Read the blacklist file, containing transport:peer entries.
990  * Provided the transport is loaded, set up hashmap with these
991  * entries to blacklist peers by transport.
992  *
993  */
994 static void
995 read_blacklist_file (const struct GNUNET_CONFIGURATION_Handle *cfg)
996 {
997   char *fn;
998   char *data;
999   size_t pos;
1000   size_t colon_pos;
1001   int tsize;
1002   struct GNUNET_PeerIdentity pid;
1003   struct stat frstat;
1004   struct GNUNET_CRYPTO_HashAsciiEncoded enc;
1005   unsigned int entries_found;
1006   char *transport_name;
1007
1008   if (GNUNET_OK !=
1009       GNUNET_CONFIGURATION_get_value_filename (cfg,
1010                                                "TRANSPORT",
1011                                                "BLACKLIST_FILE",
1012                                                &fn))
1013     {
1014 #if DEBUG_TRANSPORT
1015       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1016                   _("Option `%s' in section `%s' not specified!\n"),
1017                   "BLACKLIST_FILE",
1018                   "TRANSPORT");
1019 #endif
1020       return;
1021     }
1022   if (GNUNET_OK != GNUNET_DISK_file_test (fn))
1023     GNUNET_DISK_fn_write (fn, NULL, 0, GNUNET_DISK_PERM_USER_READ
1024         | GNUNET_DISK_PERM_USER_WRITE);
1025   if (0 != STAT (fn, &frstat))
1026     {
1027       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1028                   _("Could not read blacklist file `%s'\n"), fn);
1029       GNUNET_free (fn);
1030       return;
1031     }
1032   if (frstat.st_size == 0)
1033     {
1034       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1035                   _("Blacklist file `%s' is empty.\n"),
1036                   fn);
1037       GNUNET_free (fn);
1038       return;
1039     }
1040   /* FIXME: use mmap */
1041   data = GNUNET_malloc_large (frstat.st_size);
1042   if (frstat.st_size !=
1043       GNUNET_DISK_fn_read (fn, data, frstat.st_size))
1044     {
1045       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1046                   _("Failed to read blacklist from `%s'\n"), fn);
1047       GNUNET_free (fn);
1048       GNUNET_free (data);
1049       return;
1050     }
1051   entries_found = 0;
1052   pos = 0;
1053   while ((pos < frstat.st_size) && isspace (data[pos]))
1054     pos++;
1055   while ((frstat.st_size >= sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)) &&
1056          (pos <= frstat.st_size - sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)))
1057     {
1058       colon_pos = pos;
1059       while ((colon_pos < frstat.st_size) && (data[colon_pos] != ':') && !isspace (data[colon_pos]))
1060         colon_pos++;
1061
1062       if (colon_pos >= frstat.st_size)
1063         {
1064           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1065                       _("Syntax error in blacklist file at offset %llu, giving up!\n"),
1066                       (unsigned long long) colon_pos);
1067           GNUNET_free (fn);
1068           GNUNET_free (data);
1069           return;
1070         }
1071
1072       if (isspace(data[colon_pos]))
1073       {
1074         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1075                     _("Syntax error in blacklist file at offset %llu, skipping bytes.\n"),
1076                     (unsigned long long) colon_pos);
1077         pos = colon_pos;
1078         while ((pos < frstat.st_size) && isspace (data[pos]))
1079           pos++;
1080         continue;
1081       }
1082       tsize = colon_pos - pos;
1083       if ((pos >= frstat.st_size) || (pos + tsize >= frstat.st_size))
1084         {
1085           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1086                       _("Syntax error in blacklist file at offset %llu, giving up!\n"),
1087                       (unsigned long long) colon_pos);
1088           GNUNET_free (fn);
1089           GNUNET_free (data);
1090           return;
1091         }
1092
1093       transport_name = GNUNET_malloc(tsize);
1094       memcpy(transport_name, &data[pos], tsize);
1095       pos = colon_pos + 1;
1096
1097
1098       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1099                   _("Read transport name %s in blacklist file.\n"),
1100                   transport_name);
1101
1102       memcpy (&enc, &data[pos], sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded));
1103       if (!isspace (enc.encoding[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1]))
1104         {
1105           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1106                       _("Syntax error in blacklist file at offset %llu, skipping bytes.\n"),
1107                       (unsigned long long) pos);
1108           pos++;
1109           while ((pos < frstat.st_size) && (!isspace (data[pos])))
1110             pos++;
1111           GNUNET_free_non_null(transport_name);
1112           continue;
1113         }
1114       enc.encoding[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] = '\0';
1115       if (GNUNET_OK != GNUNET_CRYPTO_hash_from_string ((char *) &enc, &pid.hashPubKey))
1116         {
1117           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1118                       _("Syntax error in blacklist file at offset %llu, skipping bytes `%s'.\n"),
1119                       (unsigned long long) pos,
1120                       &enc);
1121         }
1122       else
1123         {
1124           if (0 != memcmp (&pid,
1125                            &my_identity,
1126                            sizeof (struct GNUNET_PeerIdentity)))
1127             {
1128               entries_found++;
1129               add_peer_to_blacklist (&pid,
1130                               transport_name);
1131               GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1132                           _("Found blacklisted peer `%s:%s' in configuration\n"),
1133                           transport_name, GNUNET_i2s (&pid));
1134             }
1135           else
1136             {
1137               GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1138                           _("Found myself `%s' in blacklist (useless, ignored)\n"),
1139                           GNUNET_i2s (&pid));
1140             }
1141         }
1142       pos = pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded);
1143       GNUNET_free_non_null(transport_name);
1144       while ((pos < frstat.st_size) && isspace (data[pos]))
1145         pos++;
1146     }
1147   GNUNET_free (data);
1148   GNUNET_free (fn);
1149 }
1150
1151
1152 /**
1153  * Function called to notify a client about the socket being ready to
1154  * queue more data.  "buf" will be NULL and "size" zero if the socket
1155  * was closed for writing in the meantime.
1156  *
1157  * @param cls closure
1158  * @param size number of bytes available in buf
1159  * @param buf where the callee should write the message
1160  * @return number of bytes written to buf
1161  */
1162 static size_t
1163 transmit_to_client_callback (void *cls, size_t size, void *buf)
1164 {
1165   struct TransportClient *client = cls;
1166   struct ClientMessageQueueEntry *q;
1167   uint16_t msize;
1168   size_t tsize;
1169   const struct GNUNET_MessageHeader *msg;
1170   char *cbuf;
1171
1172   client->th = NULL;
1173   if (buf == NULL)
1174     {
1175       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1176                   "Transmission to client failed, closing connection.\n");
1177       /* fatal error with client, free message queue! */
1178       while (NULL != (q = client->message_queue_head))
1179         {
1180           GNUNET_STATISTICS_update (stats,
1181                                     gettext_noop ("# bytes discarded (could not transmit to client)"),
1182                                     ntohs (((const struct GNUNET_MessageHeader*)&q[1])->size),
1183                                     GNUNET_NO);      
1184           GNUNET_CONTAINER_DLL_remove (client->message_queue_head,
1185                                        client->message_queue_tail,
1186                                        q);
1187           GNUNET_free (q);
1188         }
1189       client->message_count = 0;
1190       return 0;
1191     }
1192   cbuf = buf;
1193   tsize = 0;
1194   while (NULL != (q = client->message_queue_head))
1195     {
1196       msg = (const struct GNUNET_MessageHeader *) &q[1];
1197       msize = ntohs (msg->size);
1198       if (msize + tsize > size)
1199         break;
1200 #if DEBUG_TRANSPORT
1201       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1202                   "Transmitting message of type %u to client.\n",
1203                   ntohs (msg->type));
1204 #endif
1205       GNUNET_CONTAINER_DLL_remove (client->message_queue_head,
1206                                    client->message_queue_tail,
1207                                    q);
1208       memcpy (&cbuf[tsize], msg, msize);
1209       tsize += msize;
1210       GNUNET_free (q);
1211       client->message_count--;
1212     }
1213   if (NULL != q)
1214     {
1215       GNUNET_assert (msize >= sizeof (struct GNUNET_MessageHeader));
1216       client->th = GNUNET_SERVER_notify_transmit_ready (client->client,
1217                                                         msize,
1218                                                         GNUNET_TIME_UNIT_FOREVER_REL,
1219                                                         &transmit_to_client_callback,
1220                                                         client);
1221       GNUNET_assert (client->th != NULL);
1222     }
1223   return tsize;
1224 }
1225
1226
1227 /**
1228  * Mark the given FAL entry as 'connected' (and hence preferred for
1229  * sending); also mark all others for the same peer as 'not connected'
1230  * (since only one can be preferred).
1231  *
1232  * @param fal address to set to 'connected'
1233  */
1234 static void
1235 mark_address_connected (struct ForeignAddressList *fal)
1236 {
1237   struct ForeignAddressList *pos;
1238   int cnt;
1239
1240   GNUNET_assert (GNUNET_YES == fal->validated);
1241   if (fal->connected == GNUNET_YES)
1242     return; /* nothing to do */
1243   cnt = GNUNET_YES;
1244   pos = fal->ready_list->addresses;
1245   while (pos != NULL)
1246     {
1247       if (GNUNET_YES == pos->connected)
1248         {
1249           GNUNET_break (cnt == GNUNET_YES);
1250           cnt = GNUNET_NO;
1251           pos->connected = GNUNET_NO;
1252         }
1253       pos = pos->next;
1254     }
1255   fal->connected = GNUNET_YES;
1256   if (GNUNET_YES == cnt)
1257     {
1258       GNUNET_STATISTICS_update (stats,
1259                                 gettext_noop ("# connected addresses"),
1260                                 1,
1261                                 GNUNET_NO);
1262     }
1263 }
1264
1265
1266 /**
1267  * Send the specified message to the specified client.  Since multiple
1268  * messages may be pending for the same client at a time, this code
1269  * makes sure that no message is lost.
1270  *
1271  * @param client client to transmit the message to
1272  * @param msg the message to send
1273  * @param may_drop can this message be dropped if the
1274  *        message queue for this client is getting far too large?
1275  */
1276 static void
1277 transmit_to_client (struct TransportClient *client,
1278                     const struct GNUNET_MessageHeader *msg, int may_drop)
1279 {
1280   struct ClientMessageQueueEntry *q;
1281   uint16_t msize;
1282
1283   if ((client->message_count >= MAX_PENDING) && (GNUNET_YES == may_drop))
1284     {
1285       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1286                   _
1287                   ("Dropping message, have %u messages pending (%u is the soft limit)\n"),
1288                   client->message_count, MAX_PENDING);
1289       /* TODO: call to statistics... */
1290       return;
1291     }
1292   msize = ntohs (msg->size);
1293   GNUNET_assert (msize >= sizeof (struct GNUNET_MessageHeader));
1294   q = GNUNET_malloc (sizeof (struct ClientMessageQueueEntry) + msize);
1295   memcpy (&q[1], msg, msize);
1296   GNUNET_CONTAINER_DLL_insert_after (client->message_queue_head,
1297                                      client->message_queue_tail,
1298                                      client->message_queue_tail,
1299                                      q);                                     
1300   client->message_count++;
1301   if (client->th == NULL)
1302     {
1303       client->th = GNUNET_SERVER_notify_transmit_ready (client->client,
1304                                                         msize,
1305                                                         GNUNET_TIME_UNIT_FOREVER_REL,
1306                                                         &transmit_to_client_callback,
1307                                                         client);
1308       GNUNET_assert (client->th != NULL);
1309     }
1310 }
1311
1312
1313 /**
1314  * Transmit a 'SEND_OK' notification to the given client for the
1315  * given neighbour.
1316  *
1317  * @param client who to notify
1318  * @param n neighbour to notify about
1319  * @param result status code for the transmission request
1320  */
1321 static void
1322 transmit_send_ok (struct TransportClient *client,
1323                   struct NeighbourList *n,
1324                   int result)
1325 {
1326   struct SendOkMessage send_ok_msg;
1327
1328   send_ok_msg.header.size = htons (sizeof (send_ok_msg));
1329   send_ok_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK);
1330   send_ok_msg.success = htonl (result);
1331   send_ok_msg.latency = GNUNET_TIME_relative_hton (n->latency);
1332   send_ok_msg.peer = n->id;
1333   transmit_to_client (client, &send_ok_msg.header, GNUNET_NO); 
1334 }
1335
1336
1337 /**
1338  * Function called by the GNUNET_TRANSPORT_TransmitFunction
1339  * upon "completion" of a send request.  This tells the API
1340  * that it is now legal to send another message to the given
1341  * peer.
1342  *
1343  * @param cls closure, identifies the entry on the
1344  *            message queue that was transmitted and the
1345  *            client responsible for queueing the message
1346  * @param target the peer receiving the message
1347  * @param result GNUNET_OK on success, if the transmission
1348  *           failed, we should not tell the client to transmit
1349  *           more messages
1350  */
1351 static void
1352 transmit_send_continuation (void *cls,
1353                             const struct GNUNET_PeerIdentity *target,
1354                             int result)
1355 {
1356   struct MessageQueue *mq = cls;
1357   struct NeighbourList *n;
1358   
1359   GNUNET_STATISTICS_update (stats,
1360                             gettext_noop ("# bytes pending with plugins"),
1361                             - (int64_t) mq->message_buf_size,
1362                             GNUNET_NO);
1363   if (result == GNUNET_OK)
1364     {
1365       GNUNET_STATISTICS_update (stats,
1366                                 gettext_noop ("# bytes successfully transmitted by plugins"),
1367                                 mq->message_buf_size,
1368                                 GNUNET_NO);      
1369     }
1370   else
1371     {
1372       GNUNET_STATISTICS_update (stats,
1373                                 gettext_noop ("# bytes with transmission failure by plugins"),
1374                                 mq->message_buf_size,
1375                                 GNUNET_NO);      
1376     }  
1377   n = find_neighbour(&mq->neighbour_id);
1378   GNUNET_assert (n != NULL);
1379   if (mq->specific_address != NULL)
1380     {
1381       if (result == GNUNET_OK)    
1382         {
1383           mq->specific_address->timeout =
1384             GNUNET_TIME_relative_to_absolute
1385             (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
1386           if (mq->specific_address->validated == GNUNET_YES)
1387             mark_address_connected (mq->specific_address);
1388         }    
1389       else
1390         {
1391           if (mq->specific_address->connected != GNUNET_NO)
1392             {
1393               GNUNET_STATISTICS_update (stats,
1394                                         gettext_noop ("# connected addresses"),
1395                                         -1,
1396                                         GNUNET_NO);
1397               mq->specific_address->connected = GNUNET_NO;
1398             }
1399         }    
1400       if (! mq->internal_msg) 
1401         mq->specific_address->in_transmit = GNUNET_NO;
1402     }
1403   if (mq->client != NULL)
1404     transmit_send_ok (mq->client, n, result);
1405   GNUNET_free (mq);
1406   try_transmission_to_peer (n);
1407 }
1408
1409
1410 /**
1411  * Convert an address to a string.
1412  *
1413  * @param plugin name of the plugin responsible for the address
1414  * @param addr binary address
1415  * @param addr_len number of bytes in addr
1416  * @return NULL on error, otherwise address string
1417  */
1418 static const char*
1419 a2s (const char *plugin,
1420      const void *addr,
1421      uint16_t addr_len)
1422 {
1423   struct TransportPlugin *p;
1424
1425   if (plugin == NULL)
1426     return NULL;
1427   p = find_transport (plugin);
1428   if (p == NULL)
1429     return NULL;
1430   return p->api->address_to_string (p->api->cls,
1431                                     addr,
1432                                     addr_len);
1433 }   
1434
1435
1436 /**
1437  * Find an address in any of the available transports for
1438  * the given neighbour that would be good for message
1439  * transmission.  This is essentially the transport selection
1440  * routine.
1441  *
1442  * @param neighbour for whom to select an address
1443  * @return selected address, NULL if we have none
1444  */
1445 struct ForeignAddressList *
1446 find_ready_address(struct NeighbourList *neighbour)
1447 {
1448   struct ReadyList *head = neighbour->plugins;
1449   struct ForeignAddressList *addresses;
1450   struct GNUNET_TIME_Absolute now = GNUNET_TIME_absolute_get ();
1451   struct ForeignAddressList *best_address;
1452
1453   best_address = NULL;
1454   while (head != NULL)
1455     {
1456       addresses = head->addresses;
1457       while (addresses != NULL)
1458         {
1459           if ( (addresses->timeout.value < now.value) && 
1460                (addresses->connected == GNUNET_YES) )
1461             {
1462 #if DEBUG_TRANSPORT
1463               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1464                           "Marking long-time inactive connection to `%4s' as down.\n",
1465                           GNUNET_i2s (&neighbour->id));
1466 #endif
1467               GNUNET_STATISTICS_update (stats,
1468                                         gettext_noop ("# connected addresses"),
1469                                         -1,
1470                                         GNUNET_NO);
1471               addresses->connected = GNUNET_NO;
1472             }
1473           addresses = addresses->next;
1474         }
1475
1476       addresses = head->addresses;
1477       while (addresses != NULL)
1478         {
1479 #if DEBUG_TRANSPORT > 1
1480           if (addresses->addr != NULL)
1481             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1482                         "Have address `%s' for peer `%4s' (status: %d, %d, %d, %u, %llums, %u)\n",
1483                         a2s (head->plugin->short_name,
1484                              addresses->addr,
1485                              addresses->addrlen),
1486                         GNUNET_i2s (&neighbour->id),
1487                         addresses->connected,
1488                         addresses->in_transmit,
1489                         addresses->validated,
1490                         addresses->connect_attempts,
1491                         (unsigned long long) addresses->timeout.value,
1492                         (unsigned int) addresses->distance);
1493 #endif
1494           if ( ( (best_address == NULL) || 
1495                  (addresses->connected == GNUNET_YES) ||
1496                  (best_address->connected == GNUNET_NO) ) &&
1497                (addresses->in_transmit == GNUNET_NO) &&
1498                ( (best_address == NULL) || 
1499                  (addresses->latency.value < best_address->latency.value)) )
1500             best_address = addresses;            
1501           /* FIXME: also give lower-latency addresses that are not
1502              connected a chance some times... */
1503           addresses = addresses->next;
1504         }
1505       head = head->next;
1506     }
1507   if (best_address != NULL)
1508     {
1509 #if DEBUG_TRANSPORT
1510       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1511                   "Best address found has latency of %llu ms.\n",
1512                   best_address->latency.value);
1513 #endif
1514     }
1515   else
1516     {
1517       GNUNET_STATISTICS_update (stats,
1518                                 gettext_noop ("# transmission attempts failed (no address)"),
1519                                 1,
1520                                 GNUNET_NO);
1521     }
1522   return best_address;
1523
1524 }
1525
1526
1527 /**
1528  * We should re-try transmitting to the given peer,
1529  * hopefully we've learned something in the meantime.
1530  */
1531 static void
1532 retry_transmission_task (void *cls,
1533                          const struct GNUNET_SCHEDULER_TaskContext *tc)
1534 {
1535   struct NeighbourList *n = cls;
1536
1537   n->retry_task = GNUNET_SCHEDULER_NO_TASK;
1538   try_transmission_to_peer (n);
1539 }
1540
1541
1542 /**
1543  * Check the ready list for the given neighbour and if a plugin is
1544  * ready for transmission (and if we have a message), do so!
1545  *
1546  * @param neighbour target peer for which to transmit
1547  */
1548 static void
1549 try_transmission_to_peer (struct NeighbourList *neighbour)
1550 {
1551   struct ReadyList *rl;
1552   struct MessageQueue *mq;
1553   struct GNUNET_TIME_Relative timeout;
1554   ssize_t ret;
1555   int force_address;
1556
1557   if (neighbour->messages_head == NULL)
1558     {
1559 #if DEBUG_TRANSPORT
1560       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1561                   "Transmission queue for `%4s' is empty\n",
1562                   GNUNET_i2s (&neighbour->id));
1563 #endif
1564       return;                     /* nothing to do */
1565     }
1566   rl = NULL;
1567   mq = neighbour->messages_head;
1568   force_address = GNUNET_YES;
1569   if (mq->specific_address == NULL)
1570     {
1571       mq->specific_address = find_ready_address(neighbour); 
1572       GNUNET_STATISTICS_update (stats,
1573                                 gettext_noop ("# transport selected peer address freely"),
1574                                 1,
1575                                 GNUNET_NO); 
1576       force_address = GNUNET_NO;
1577     }
1578   if (mq->specific_address == NULL)
1579     {
1580       GNUNET_STATISTICS_update (stats,
1581                                 gettext_noop ("# transport failed to selected peer address"),
1582                                 1,
1583                                 GNUNET_NO); 
1584       timeout = GNUNET_TIME_absolute_get_remaining (mq->timeout);
1585       if (timeout.value == 0)
1586         {
1587 #if DEBUG_TRANSPORT
1588           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1589                       "No destination address available to transmit message of size %u to peer `%4s'\n",
1590                       mq->message_buf_size,
1591                       GNUNET_i2s (&mq->neighbour_id));
1592 #endif
1593           GNUNET_STATISTICS_update (stats,
1594                                     gettext_noop ("# bytes in message queue for other peers"),
1595                                     - (int64_t) mq->message_buf_size,
1596                                     GNUNET_NO);
1597           GNUNET_STATISTICS_update (stats,
1598                                     gettext_noop ("# bytes discarded (no destination address available)"),
1599                                     mq->message_buf_size,
1600                                     GNUNET_NO);      
1601           if (mq->client != NULL)
1602             transmit_send_ok (mq->client, neighbour, GNUNET_NO);
1603           GNUNET_CONTAINER_DLL_remove (neighbour->messages_head,
1604                                        neighbour->messages_tail,
1605                                        mq);
1606           GNUNET_free (mq);
1607           return;               /* nobody ready */ 
1608         }
1609       GNUNET_STATISTICS_update (stats,
1610                                 gettext_noop ("# message delivery deferred (no address)"),
1611                                 1,
1612                                 GNUNET_NO);
1613       if (neighbour->retry_task != GNUNET_SCHEDULER_NO_TASK)
1614         GNUNET_SCHEDULER_cancel (sched,
1615                                  neighbour->retry_task);
1616       neighbour->retry_task = GNUNET_SCHEDULER_add_delayed (sched,
1617                                                             timeout,
1618                                                             &retry_transmission_task,
1619                                                             neighbour);
1620 #if DEBUG_TRANSPORT
1621       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1622                   "No validated destination address available to transmit message of size %u to peer `%4s', will wait %llums to find an address.\n",
1623                   mq->message_buf_size,
1624                   GNUNET_i2s (&mq->neighbour_id),
1625                   timeout.value);
1626 #endif
1627       /* FIXME: might want to trigger peerinfo lookup here
1628          (unless that's already pending...) */
1629       return;    
1630     }
1631   GNUNET_CONTAINER_DLL_remove (neighbour->messages_head,
1632                                neighbour->messages_tail,
1633                                mq);
1634   if (mq->specific_address->connected == GNUNET_NO)
1635     mq->specific_address->connect_attempts++;
1636   rl = mq->specific_address->ready_list;
1637   mq->plugin = rl->plugin;
1638   if (!mq->internal_msg)
1639     mq->specific_address->in_transmit = GNUNET_YES;
1640 #if DEBUG_TRANSPORT
1641   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1642               "Sending message of size %u for `%4s' to `%s' via plugin `%s'\n",
1643               mq->message_buf_size,
1644               GNUNET_i2s (&neighbour->id), 
1645               (mq->specific_address->addr != NULL)
1646               ? a2s (mq->plugin->short_name,
1647                      mq->specific_address->addr,
1648                      mq->specific_address->addrlen)
1649               : "<inbound>",
1650               rl->plugin->short_name);
1651 #endif
1652   GNUNET_STATISTICS_update (stats,
1653                             gettext_noop ("# bytes in message queue for other peers"),
1654                             - (int64_t) mq->message_buf_size,
1655                             GNUNET_NO);
1656   GNUNET_STATISTICS_update (stats,
1657                             gettext_noop ("# bytes pending with plugins"),
1658                             mq->message_buf_size,
1659                             GNUNET_NO);
1660   ret = rl->plugin->api->send (rl->plugin->api->cls,
1661                                &mq->neighbour_id,
1662                                mq->message_buf,
1663                                mq->message_buf_size,
1664                                mq->priority,
1665                                GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1666                                mq->specific_address->session,
1667                                mq->specific_address->addr,
1668                                mq->specific_address->addrlen,
1669                                force_address,
1670                                &transmit_send_continuation, mq);
1671   if (ret == -1)
1672     {
1673       /* failure, but 'send' would not call continuation in this case,
1674          so we need to do it here! */
1675       transmit_send_continuation (mq, 
1676                                   &mq->neighbour_id,
1677                                   GNUNET_SYSERR);
1678     }
1679 }
1680
1681
1682 /**
1683  * Send the specified message to the specified peer.
1684  *
1685  * @param client source of the transmission request (can be NULL)
1686  * @param peer_address ForeignAddressList where we should send this message
1687  * @param priority how important is the message
1688  * @param timeout how long do we have to transmit?
1689  * @param message_buf message(s) to send GNUNET_MessageHeader(s)
1690  * @param message_buf_size total size of all messages in message_buf
1691  * @param is_internal is this an internal message; these are pre-pended and
1692  *                    also do not count for plugins being "ready" to transmit
1693  * @param neighbour handle to the neighbour for transmission
1694  */
1695 static void
1696 transmit_to_peer (struct TransportClient *client,
1697                   struct ForeignAddressList *peer_address,
1698                   unsigned int priority,
1699                   struct GNUNET_TIME_Relative timeout,
1700                   const char *message_buf,
1701                   size_t message_buf_size,
1702                   int is_internal, struct NeighbourList *neighbour)
1703 {
1704   struct MessageQueue *mq;
1705
1706 #if EXTRA_CHECKS
1707   if (client != NULL)
1708     {
1709       /* check for duplicate submission */
1710       mq = neighbour->messages_head;
1711       while (NULL != mq)
1712         {
1713           if (mq->client == client)
1714             {
1715               /* client transmitted to same peer twice
1716                  before getting SEND_OK! */
1717               GNUNET_break (0);
1718               return;
1719             }
1720           mq = mq->next;
1721         }
1722     }
1723 #endif
1724   GNUNET_STATISTICS_update (stats,
1725                             gettext_noop ("# bytes in message queue for other peers"),
1726                             message_buf_size,
1727                             GNUNET_NO);
1728   mq = GNUNET_malloc (sizeof (struct MessageQueue) + message_buf_size);
1729   mq->specific_address = peer_address;
1730   mq->client = client;
1731   memcpy (&mq[1], message_buf, message_buf_size);
1732   mq->message_buf = (const char*) &mq[1];
1733   mq->message_buf_size = message_buf_size;
1734   memcpy(&mq->neighbour_id, &neighbour->id, sizeof(struct GNUNET_PeerIdentity));
1735   mq->internal_msg = is_internal;
1736   mq->priority = priority;
1737   mq->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1738   if (is_internal)    
1739     GNUNET_CONTAINER_DLL_insert (neighbour->messages_head,
1740                                  neighbour->messages_tail,
1741                                  mq);
1742   else
1743     GNUNET_CONTAINER_DLL_insert_after (neighbour->messages_head,
1744                                        neighbour->messages_tail,
1745                                        neighbour->messages_tail,
1746                                        mq);
1747   try_transmission_to_peer (neighbour);
1748 }
1749
1750
1751 /**
1752  * FIXME: document.
1753  */
1754 struct GeneratorContext
1755 {
1756   struct TransportPlugin *plug_pos;
1757   struct OwnAddressList *addr_pos;
1758   struct GNUNET_TIME_Absolute expiration;
1759 };
1760
1761
1762 /**
1763  * FIXME: document.
1764  */
1765 static size_t
1766 address_generator (void *cls, size_t max, void *buf)
1767 {
1768   struct GeneratorContext *gc = cls;
1769   size_t ret;
1770
1771   while ((gc->addr_pos == NULL) && (gc->plug_pos != NULL))
1772     {
1773       gc->plug_pos = gc->plug_pos->next;
1774       gc->addr_pos = (gc->plug_pos != NULL) ? gc->plug_pos->addresses : NULL;
1775     }
1776   if (NULL == gc->plug_pos)
1777     {
1778
1779       return 0;
1780     }
1781   ret = GNUNET_HELLO_add_address (gc->plug_pos->short_name,
1782                                   gc->expiration,
1783                                   gc->addr_pos->addr,
1784                                   gc->addr_pos->addrlen, buf, max);
1785   gc->addr_pos = gc->addr_pos->next;
1786   return ret;
1787 }
1788
1789
1790 /**
1791  * Construct our HELLO message from all of the addresses of
1792  * all of the transports.
1793  */
1794 static void
1795 refresh_hello ()
1796 {
1797   struct GNUNET_HELLO_Message *hello;
1798   struct TransportClient *cpos;
1799   struct NeighbourList *npos;
1800   struct GeneratorContext gc;
1801
1802   gc.plug_pos = plugins;
1803   gc.addr_pos = plugins != NULL ? plugins->addresses : NULL;
1804   gc.expiration = GNUNET_TIME_relative_to_absolute (HELLO_ADDRESS_EXPIRATION);
1805   hello = GNUNET_HELLO_create (&my_public_key, &address_generator, &gc);
1806 #if DEBUG_TRANSPORT
1807   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
1808               "Refreshed my `%s', new size is %d\n", "HELLO", GNUNET_HELLO_size(hello));
1809 #endif
1810   GNUNET_STATISTICS_update (stats,
1811                             gettext_noop ("# refreshed my HELLO"),
1812                             1,
1813                             GNUNET_NO);
1814   cpos = clients;
1815   while (cpos != NULL)
1816     {
1817       transmit_to_client (cpos,
1818                           (const struct GNUNET_MessageHeader *) hello,
1819                           GNUNET_NO);
1820       cpos = cpos->next;
1821     }
1822
1823   GNUNET_free_non_null (our_hello);
1824   our_hello = hello;
1825   our_hello_version++;
1826   GNUNET_PEERINFO_add_peer (peerinfo, our_hello);
1827   npos = neighbours;
1828   while (npos != NULL)
1829     {
1830 #if DEBUG_TRANSPORT
1831       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
1832                   "Transmitting updated `%s' to neighbour `%4s'\n",
1833                   "HELLO", GNUNET_i2s (&npos->id));
1834 #endif
1835       GNUNET_STATISTICS_update (stats,
1836                                 gettext_noop ("# transmitted my HELLO to other peers"),
1837                                 1,
1838                                 GNUNET_NO);
1839       transmit_to_peer (NULL, NULL, 0,
1840                         HELLO_ADDRESS_EXPIRATION,
1841                         (const char *) our_hello, 
1842                         GNUNET_HELLO_size(our_hello),
1843                         GNUNET_NO, npos);
1844       npos = npos->next;
1845     }
1846 }
1847
1848
1849 /**
1850  * Task used to clean up expired addresses for a plugin.
1851  *
1852  * @param cls closure
1853  * @param tc context
1854  */
1855 static void
1856 expire_address_task (void *cls,
1857                      const struct GNUNET_SCHEDULER_TaskContext *tc);
1858
1859
1860 /**
1861  * Update the list of addresses for this plugin,
1862  * expiring those that are past their expiration date.
1863  *
1864  * @param plugin addresses of which plugin should be recomputed?
1865  * @param fresh set to GNUNET_YES if a new address was added
1866  *        and we need to regenerate the HELLO even if nobody
1867  *        expired
1868  */
1869 static void
1870 update_addresses (struct TransportPlugin *plugin, int fresh)
1871 {
1872   static struct GNUNET_TIME_Absolute last_update;
1873   struct GNUNET_TIME_Relative min_remaining;
1874   struct GNUNET_TIME_Relative remaining;
1875   struct GNUNET_TIME_Absolute now;
1876   struct OwnAddressList *pos;
1877   struct OwnAddressList *prev;
1878   struct OwnAddressList *next;
1879   int expired;
1880
1881   if (plugin->address_update_task != GNUNET_SCHEDULER_NO_TASK)
1882     GNUNET_SCHEDULER_cancel (plugin->env.sched, plugin->address_update_task);
1883   plugin->address_update_task = GNUNET_SCHEDULER_NO_TASK;
1884   now = GNUNET_TIME_absolute_get ();
1885   min_remaining = GNUNET_TIME_UNIT_FOREVER_REL;
1886   expired = (GNUNET_TIME_absolute_get_duration (last_update).value > (HELLO_ADDRESS_EXPIRATION.value / 4));
1887   prev = NULL;
1888   pos = plugin->addresses;
1889   while (pos != NULL)
1890     {
1891       next = pos->next;
1892       if (pos->expires.value < now.value)
1893         {
1894           expired = GNUNET_YES;
1895           if (prev == NULL)
1896             plugin->addresses = pos->next;
1897           else
1898             prev->next = pos->next;  
1899           GNUNET_free (pos);
1900         }
1901       else
1902         {
1903           remaining = GNUNET_TIME_absolute_get_remaining (pos->expires);
1904           if (remaining.value < min_remaining.value)
1905             min_remaining = remaining;
1906           prev = pos;
1907         }
1908       pos = next;
1909     }
1910
1911   if (expired || fresh)
1912     {
1913       last_update = now;
1914       refresh_hello ();
1915     }
1916   min_remaining = GNUNET_TIME_relative_min (min_remaining,
1917                                             GNUNET_TIME_relative_divide (HELLO_ADDRESS_EXPIRATION,
1918                                                                          2));
1919   plugin->address_update_task
1920     = GNUNET_SCHEDULER_add_delayed (plugin->env.sched,
1921                                     min_remaining,
1922                                     &expire_address_task, plugin);
1923 }
1924
1925
1926 /**
1927  * Task used to clean up expired addresses for a plugin.
1928  *
1929  * @param cls closure
1930  * @param tc context
1931  */
1932 static void
1933 expire_address_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1934 {
1935   struct TransportPlugin *plugin = cls;
1936
1937   plugin->address_update_task = GNUNET_SCHEDULER_NO_TASK;
1938   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1939     update_addresses (plugin, GNUNET_NO);
1940 }
1941
1942
1943 /**
1944  * Iterator over hash map entries that NULLs the session of validation
1945  * entries that match the given session.
1946  *
1947  * @param cls closure (the 'struct Session*' to match against)
1948  * @param key current key code (peer ID, not used)
1949  * @param value value in the hash map ('struct ValidationEntry*')
1950  * @return GNUNET_YES (we should continue to iterate)
1951  */
1952 static int 
1953 remove_session_validations (void *cls,
1954                             const GNUNET_HashCode * key,
1955                             void *value)
1956 {
1957   struct Session *session = cls;
1958   struct ValidationEntry *ve = value;
1959
1960   if (session == ve->session)
1961     ve->session = NULL;
1962   return GNUNET_YES;
1963 }
1964
1965
1966 /**
1967  * Function that will be called whenever the plugin internally
1968  * cleans up a session pointer and hence the service needs to
1969  * discard all of those sessions as well.  Plugins that do not
1970  * use sessions can simply omit calling this function and always
1971  * use NULL wherever a session pointer is needed.
1972  * 
1973  * @param cls closure
1974  * @param peer which peer was the session for 
1975  * @param session which session is being destoyed
1976  */
1977 static void
1978 plugin_env_session_end  (void *cls,
1979                          const struct GNUNET_PeerIdentity *peer,
1980                          struct Session *session)
1981 {
1982   struct TransportPlugin *p = cls;
1983   struct NeighbourList *nl;
1984   struct ReadyList *rl;
1985   struct ForeignAddressList *pos;
1986   struct ForeignAddressList *prev;
1987
1988   GNUNET_CONTAINER_multihashmap_iterate (validation_map,
1989                                          &remove_session_validations,
1990                                          session);
1991   nl = find_neighbour (peer);
1992   if (nl == NULL)
1993     return;
1994   rl = nl->plugins;
1995   while (rl != NULL)
1996     {
1997       if (rl->plugin == p)
1998         break;
1999       rl = rl->next;
2000     }
2001   if (rl == NULL)
2002     return;
2003   prev = NULL;
2004   pos = rl->addresses;
2005   while ( (pos != NULL) &&
2006           (pos->session != session) )
2007     {
2008       prev = pos;
2009       pos = pos->next;
2010     }
2011   if (pos == NULL)
2012     return;
2013   pos->session = NULL;
2014   if (pos->addrlen != 0)
2015     return;
2016   if (prev == NULL)
2017     rl->addresses = pos->next;
2018   else
2019     prev->next = pos->next;
2020   if (GNUNET_SCHEDULER_NO_TASK != pos->revalidate_task)
2021     {
2022       GNUNET_SCHEDULER_cancel (sched,
2023                                pos->revalidate_task);
2024       pos->revalidate_task = GNUNET_SCHEDULER_NO_TASK;
2025     }
2026   GNUNET_free (pos);
2027   if (nl->received_pong == GNUNET_NO)
2028     return; /* nothing to do */
2029   /* check if we have any validated addresses left */
2030   pos = rl->addresses;
2031   while (pos != NULL)
2032     {
2033       if (pos->validated)
2034         return;
2035       pos = pos->next;
2036     }
2037   /* no valid addresses left, signal disconnect! */
2038   disconnect_neighbour (nl, GNUNET_NO);  
2039 }
2040
2041
2042 /**
2043  * Function that must be called by each plugin to notify the
2044  * transport service about the addresses under which the transport
2045  * provided by the plugin can be reached.
2046  *
2047  * @param cls closure
2048  * @param name name of the transport that generated the address
2049  * @param addr one of the addresses of the host, NULL for the last address
2050  *        the specific address format depends on the transport
2051  * @param addrlen length of the address
2052  * @param expires when should this address automatically expire?
2053  */
2054 static void
2055 plugin_env_notify_address (void *cls,
2056                            const char *name,
2057                            const void *addr,
2058                            uint16_t addrlen,
2059                            struct GNUNET_TIME_Relative expires)
2060 {
2061   struct TransportPlugin *p = cls;
2062   struct OwnAddressList *al;
2063   struct GNUNET_TIME_Absolute abex;
2064
2065   GNUNET_assert (addr != NULL);
2066   abex = GNUNET_TIME_relative_to_absolute (expires);
2067   GNUNET_assert (p == find_transport (name));
2068   al = p->addresses;
2069   while (al != NULL)
2070     {
2071       if ((addrlen == al->addrlen) && (0 == memcmp (addr, &al[1], addrlen)))
2072         {
2073           if (al->expires.value < abex.value)
2074             al->expires = abex;
2075           return;
2076         }
2077       al = al->next;
2078     }
2079
2080   al = GNUNET_malloc (sizeof (struct OwnAddressList) + addrlen);
2081   al->addr = &al[1];
2082   al->next = p->addresses;
2083   p->addresses = al;
2084   al->expires = abex;
2085   al->addrlen = addrlen;
2086   memcpy (&al[1], addr, addrlen);
2087   update_addresses (p, GNUNET_YES);
2088 }
2089
2090
2091 /**
2092  * Notify all of our clients about a peer connecting.
2093  */
2094 static void
2095 notify_clients_connect (const struct GNUNET_PeerIdentity *peer,
2096                         struct GNUNET_TIME_Relative latency,
2097                         uint32_t distance)
2098 {
2099   struct ConnectInfoMessage cim;
2100   struct TransportClient *cpos;
2101
2102 #if DEBUG_TRANSPORT
2103   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2104               "Notifying clients about connection from `%s'\n",
2105               GNUNET_i2s (peer));
2106 #endif
2107   GNUNET_STATISTICS_update (stats,
2108                             gettext_noop ("# peers connected"),
2109                             1,
2110                             GNUNET_NO);
2111   cim.header.size = htons (sizeof (struct ConnectInfoMessage));
2112   cim.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
2113   cim.distance = htonl (distance);
2114   cim.latency = GNUNET_TIME_relative_hton (latency);
2115   memcpy (&cim.id, peer, sizeof (struct GNUNET_PeerIdentity));
2116   cpos = clients;
2117   while (cpos != NULL)
2118     {
2119       transmit_to_client (cpos, &cim.header, GNUNET_NO);
2120       cpos = cpos->next;
2121     }
2122 }
2123
2124
2125 /**
2126  * Notify all of our clients about a peer disconnecting.
2127  */
2128 static void
2129 notify_clients_disconnect (const struct GNUNET_PeerIdentity *peer)
2130 {
2131   struct DisconnectInfoMessage dim;
2132   struct TransportClient *cpos;
2133
2134 #if DEBUG_TRANSPORT
2135   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2136               "Notifying clients about lost connection to `%s'\n",
2137               GNUNET_i2s (peer));
2138 #endif
2139   GNUNET_STATISTICS_update (stats,
2140                             gettext_noop ("# peers connected"),
2141                             -1,
2142                             GNUNET_NO);
2143   dim.header.size = htons (sizeof (struct DisconnectInfoMessage));
2144   dim.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
2145   dim.reserved = htonl (0);
2146   memcpy (&dim.peer, peer, sizeof (struct GNUNET_PeerIdentity));
2147   cpos = clients;
2148   while (cpos != NULL)
2149     {
2150       transmit_to_client (cpos, &dim.header, GNUNET_NO);
2151       cpos = cpos->next;
2152     }
2153 }
2154
2155
2156 /**
2157  * Find a ForeignAddressList entry for the given neighbour
2158  * that matches the given address and transport.
2159  *
2160  * @param neighbour which peer we care about
2161  * @param tname name of the transport plugin
2162  * @param session session to look for, NULL for 'any'; otherwise
2163  *        can be used for the service to "learn" this session ID
2164  *        if 'addr' matches
2165  * @param addr binary address
2166  * @param addrlen length of addr
2167  * @return NULL if no such entry exists
2168  */
2169 static struct ForeignAddressList *
2170 find_peer_address(struct NeighbourList *neighbour,
2171                   const char *tname,
2172                   struct Session *session,
2173                   const char *addr,
2174                   uint16_t addrlen)
2175 {
2176   struct ReadyList *head;
2177   struct ForeignAddressList *pos;
2178
2179   head = neighbour->plugins;
2180   while (head != NULL)
2181     {
2182       if (0 == strcmp (tname, head->plugin->short_name))
2183         break;
2184       head = head->next;
2185     }
2186   if (head == NULL)
2187     return NULL;
2188   pos = head->addresses;
2189   while ( (pos != NULL) &&
2190           ( (pos->addrlen != addrlen) ||
2191             (memcmp(pos->addr, addr, addrlen) != 0) ) )
2192     {
2193       if ( (session != NULL) &&
2194            (pos->session == session) )
2195         return pos;
2196       pos = pos->next;
2197     }
2198   if ( (session != NULL) && (pos != NULL) )
2199     pos->session = session; /* learn it! */
2200   return pos;
2201 }
2202
2203
2204 /**
2205  * Get the peer address struct for the given neighbour and
2206  * address.  If it doesn't yet exist, create it.
2207  *
2208  * @param neighbour which peer we care about
2209  * @param tname name of the transport plugin
2210  * @param session session of the plugin, or NULL for none
2211  * @param addr binary address
2212  * @param addrlen length of addr
2213  * @return NULL if we do not have a transport plugin for 'tname'
2214  */
2215 static struct ForeignAddressList *
2216 add_peer_address (struct NeighbourList *neighbour,
2217                   const char *tname,
2218                   struct Session *session,
2219                   const char *addr, 
2220                   uint16_t addrlen)
2221 {
2222   struct ReadyList *head;
2223   struct ForeignAddressList *ret;
2224
2225   ret = find_peer_address (neighbour, tname, session, addr, addrlen);
2226   if (ret != NULL)
2227     return ret;
2228   head = neighbour->plugins;
2229
2230   while (head != NULL)
2231     {
2232       if (0 == strcmp (tname, head->plugin->short_name))
2233         break;
2234       head = head->next;
2235     }
2236   if (head == NULL)
2237     return NULL;
2238   ret = GNUNET_malloc(sizeof(struct ForeignAddressList) + addrlen);
2239   ret->session = session;
2240   if (addrlen > 0)
2241     {
2242       ret->addr = (const char*) &ret[1];
2243       memcpy (&ret[1], addr, addrlen);
2244     }
2245   else
2246     {
2247       ret->addr = NULL;
2248     }
2249   ret->addrlen = addrlen;
2250   ret->expires = GNUNET_TIME_relative_to_absolute
2251     (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
2252   ret->latency = GNUNET_TIME_relative_get_forever();
2253   ret->distance = -1;
2254   ret->timeout = GNUNET_TIME_relative_to_absolute
2255     (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT); 
2256   ret->ready_list = head;
2257   ret->next = head->addresses;
2258   head->addresses = ret;
2259   return ret;
2260 }
2261
2262
2263 /**
2264  * Closure for 'add_validated_address'.
2265  */
2266 struct AddValidatedAddressContext
2267 {
2268   /**
2269    * Entry that has been validated.
2270    */
2271   const struct ValidationEntry *ve;
2272
2273   /**
2274    * Flag set after we have added the address so
2275    * that we terminate the iteration next time.
2276    */
2277   int done;
2278 };
2279
2280
2281 /**
2282  * Callback function used to fill a buffer of max bytes with a list of
2283  * addresses in the format used by HELLOs.  Should use
2284  * "GNUNET_HELLO_add_address" as a helper function.
2285  *
2286  * @param cls the 'struct AddValidatedAddressContext' with the validated address
2287  * @param max maximum number of bytes that can be written to buf
2288  * @param buf where to write the address information
2289  * @return number of bytes written, 0 to signal the
2290  *         end of the iteration.
2291  */
2292 static size_t
2293 add_validated_address (void *cls,
2294                        size_t max, void *buf)
2295 {
2296   struct AddValidatedAddressContext *avac = cls;
2297   const struct ValidationEntry *ve = avac->ve;
2298
2299   if (GNUNET_YES == avac->done)
2300     return 0;
2301   avac->done = GNUNET_YES;
2302   return GNUNET_HELLO_add_address (ve->transport_name,
2303                                    GNUNET_TIME_relative_to_absolute (HELLO_ADDRESS_EXPIRATION),
2304                                    ve->addr,
2305                                    ve->addrlen,
2306                                    buf,
2307                                    max);
2308 }
2309
2310
2311
2312 /**
2313  * Closure for 'check_address_exists'.
2314  */
2315 struct CheckAddressExistsClosure
2316 {
2317   /**
2318    * Address to check for.
2319    */
2320   const void *addr;
2321
2322   /**
2323    * Name of the transport.
2324    */
2325   const char *tname;
2326
2327   /**
2328    * Session, or NULL.
2329    */
2330   struct Session *session;
2331
2332   /**
2333    * Set to GNUNET_YES if the address exists.
2334    */
2335   int exists;
2336
2337   /**
2338    * Length of addr.
2339    */
2340   uint16_t addrlen;
2341
2342 };
2343
2344
2345 /**
2346  * Iterator over hash map entries.  Checks if the given
2347  * validation entry is for the same address as what is given
2348  * in the closure.
2349  *
2350  * @param cls the 'struct CheckAddressExistsClosure*'
2351  * @param key current key code (ignored)
2352  * @param value value in the hash map ('struct ValidationEntry')
2353  * @return GNUNET_YES if we should continue to
2354  *         iterate (mismatch), GNUNET_NO if not (entry matched)
2355  */
2356 static int
2357 check_address_exists (void *cls,
2358                       const GNUNET_HashCode * key,
2359                       void *value)
2360 {
2361   struct CheckAddressExistsClosure *caec = cls;
2362   struct ValidationEntry *ve = value;
2363
2364   if ( (0 == strcmp (caec->tname,
2365                      ve->transport_name)) &&
2366        (caec->addrlen == ve->addrlen) &&
2367        (0 == memcmp (caec->addr,
2368                      ve->addr,
2369                      caec->addrlen)) )
2370     {
2371       caec->exists = GNUNET_YES;
2372       return GNUNET_NO;
2373     }
2374   if ( (ve->session != NULL) &&
2375        (caec->session == ve->session) )
2376     {
2377       caec->exists = GNUNET_YES;
2378       return GNUNET_NO;
2379     }
2380   return GNUNET_YES;
2381 }
2382
2383
2384
2385 /**
2386  * Iterator to free entries in the validation_map.
2387  *
2388  * @param cls closure (unused)
2389  * @param key current key code
2390  * @param value value in the hash map (validation to abort)
2391  * @return GNUNET_YES (always)
2392  */
2393 static int 
2394 abort_validation (void *cls,
2395                   const GNUNET_HashCode * key,
2396                   void *value)
2397 {
2398   struct ValidationEntry *va = value;
2399
2400   if (GNUNET_SCHEDULER_NO_TASK != va->timeout_task)
2401     GNUNET_SCHEDULER_cancel (sched, va->timeout_task);
2402   GNUNET_free (va->transport_name);
2403   if (va->chvc != NULL)
2404     {
2405       va->chvc->ve_count--;
2406       if (va->chvc->ve_count == 0)
2407         {
2408           GNUNET_CONTAINER_DLL_remove (chvc_head,
2409                                        chvc_tail,
2410                                        va->chvc);
2411           GNUNET_free (va->chvc);
2412         }
2413     }
2414   GNUNET_free (va);
2415   return GNUNET_YES;
2416 }
2417
2418
2419 /**
2420  * HELLO validation cleanup task (validation failed).
2421  *
2422  * @param cls the 'struct ValidationEntry' that failed
2423  * @param tc scheduler context (unused)
2424  */
2425 static void
2426 timeout_hello_validation (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2427 {
2428   struct ValidationEntry *va = cls;
2429   struct GNUNET_PeerIdentity pid;
2430
2431   va->timeout_task = GNUNET_SCHEDULER_NO_TASK;
2432   GNUNET_STATISTICS_update (stats,
2433                             gettext_noop ("# address validation timeouts"),
2434                             1,
2435                             GNUNET_NO);
2436   GNUNET_CRYPTO_hash (&va->publicKey,
2437                       sizeof (struct
2438                               GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
2439                       &pid.hashPubKey);
2440   GNUNET_break (GNUNET_OK ==
2441                 GNUNET_CONTAINER_multihashmap_remove (validation_map,
2442                                                       &pid.hashPubKey,
2443                                                       va));
2444   abort_validation (NULL, NULL, va);
2445 }
2446
2447
2448 static void
2449 neighbour_timeout_task (void *cls,
2450                        const struct GNUNET_SCHEDULER_TaskContext *tc)
2451 {
2452   struct NeighbourList *n = cls;
2453
2454 #if DEBUG_TRANSPORT
2455   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
2456               "Neighbour `%4s' has timed out!\n", GNUNET_i2s (&n->id));
2457 #endif
2458   GNUNET_STATISTICS_update (stats,
2459                             gettext_noop ("# disconnects due to timeout"),
2460                             1,
2461                             GNUNET_NO);
2462   n->timeout_task = GNUNET_SCHEDULER_NO_TASK;
2463   disconnect_neighbour (n, GNUNET_NO);
2464 }
2465
2466
2467 /**
2468  * Schedule the job that will cause us to send a PING to the
2469  * foreign address to evaluate its validity and latency.
2470  *
2471  * @param fal address to PING
2472  */
2473 static void
2474 schedule_next_ping (struct ForeignAddressList *fal);
2475
2476
2477 /**
2478  * Add the given address to the list of foreign addresses
2479  * available for the given peer (check for duplicates).
2480  *
2481  * @param cls the respective 'struct NeighbourList' to update
2482  * @param tname name of the transport
2483  * @param expiration expiration time
2484  * @param addr the address
2485  * @param addrlen length of the address
2486  * @return GNUNET_OK (always)
2487  */
2488 static int
2489 add_to_foreign_address_list (void *cls,
2490                              const char *tname,
2491                              struct GNUNET_TIME_Absolute expiration,
2492                              const void *addr,
2493                              uint16_t addrlen)
2494 {
2495   struct NeighbourList *n = cls;
2496   struct ForeignAddressList *fal;
2497   int try;
2498
2499   GNUNET_STATISTICS_update (stats,
2500                             gettext_noop ("# valid peer addresses returned by PEERINFO"),
2501                             1,
2502                             GNUNET_NO);      
2503   try = GNUNET_NO;
2504   fal = find_peer_address (n, tname, NULL, addr, addrlen);
2505   if (fal == NULL)
2506     {
2507 #if DEBUG_TRANSPORT
2508       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2509                   "Adding address `%s' (%s) for peer `%4s' due to PEERINFO data for %llums.\n",
2510                   a2s (tname, addr, addrlen),
2511                   tname,
2512                   GNUNET_i2s (&n->id),
2513                   expiration.value);
2514 #endif
2515       fal = add_peer_address (n, tname, NULL, addr, addrlen);
2516       if (fal == NULL)
2517         {
2518           GNUNET_STATISTICS_update (stats,
2519                                     gettext_noop ("# previously validated addresses lacking transport"),
2520                                     1,
2521                                     GNUNET_NO); 
2522         }
2523       else
2524         {
2525           fal->expires = GNUNET_TIME_absolute_max (expiration,
2526                                                    fal->expires);
2527           schedule_next_ping (fal);
2528         }
2529       try = GNUNET_YES;
2530     }
2531   else
2532     {
2533       fal->expires = GNUNET_TIME_absolute_max (expiration,
2534                                                fal->expires);
2535     }
2536   if (fal == NULL)
2537     {
2538       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2539                   "Failed to add new address for `%4s'\n",
2540                   GNUNET_i2s (&n->id));
2541       return GNUNET_OK;
2542     }
2543   if (fal->validated == GNUNET_NO)
2544     {
2545       fal->validated = GNUNET_YES;  
2546       GNUNET_STATISTICS_update (stats,
2547                                 gettext_noop ("# peer addresses considered valid"),
2548                                 1,
2549                                 GNUNET_NO);      
2550     }
2551   if (try == GNUNET_YES)
2552     {
2553       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2554                   "Have new addresses, will try to trigger transmissions.\n");
2555       try_transmission_to_peer (n);
2556     }
2557   return GNUNET_OK;
2558 }
2559
2560
2561 /**
2562  * Add addresses in validated HELLO "h" to the set of addresses
2563  * we have for this peer.
2564  *
2565  * @param cls closure ('struct NeighbourList*')
2566  * @param peer id of the peer, NULL for last call
2567  * @param h hello message for the peer (can be NULL)
2568  * @param trust amount of trust we have in the peer (not used)
2569  */
2570 static void
2571 add_hello_for_peer (void *cls,
2572                     const struct GNUNET_PeerIdentity *peer,
2573                     const struct GNUNET_HELLO_Message *h, 
2574                     uint32_t trust)
2575 {
2576   struct NeighbourList *n = cls;
2577
2578   if (peer == NULL)
2579     {
2580       n->piter = NULL;
2581       return;
2582     } 
2583   if (h == NULL)
2584     return; /* no HELLO available */
2585 #if DEBUG_TRANSPORT
2586   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2587               "Peerinfo had `%s' message for peer `%4s', adding existing addresses.\n",
2588               "HELLO",
2589               GNUNET_i2s (peer));
2590 #endif
2591   if (GNUNET_YES != n->public_key_valid)
2592     {
2593       GNUNET_HELLO_get_key (h, &n->publicKey);
2594       n->public_key_valid = GNUNET_YES;
2595     }
2596   GNUNET_HELLO_iterate_addresses (h,
2597                                   GNUNET_NO,
2598                                   &add_to_foreign_address_list,
2599                                   n);
2600 }
2601
2602
2603 /**
2604  * Create a fresh entry in our neighbour list for the given peer.
2605  * Will try to transmit our current HELLO to the new neighbour. 
2606  * Do not call this function directly, use 'setup_peer_check_blacklist.
2607  *
2608  * @param peer the peer for which we create the entry
2609  * @param do_hello should we schedule transmitting a HELLO
2610  * @return the new neighbour list entry
2611  */
2612 static struct NeighbourList *
2613 setup_new_neighbour (const struct GNUNET_PeerIdentity *peer,
2614                      int do_hello)
2615 {
2616   struct NeighbourList *n;
2617   struct TransportPlugin *tp;
2618   struct ReadyList *rl;
2619
2620 #if DEBUG_TRANSPORT
2621   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2622               "Setting up state for neighbour `%4s'\n",
2623               GNUNET_i2s (peer));
2624 #endif
2625   GNUNET_assert (our_hello != NULL);
2626   GNUNET_STATISTICS_update (stats,
2627                             gettext_noop ("# active neighbours"),
2628                             1,
2629                             GNUNET_NO);
2630   n = GNUNET_malloc (sizeof (struct NeighbourList));
2631   n->next = neighbours;
2632   neighbours = n;
2633   n->id = *peer;
2634   n->peer_timeout =
2635     GNUNET_TIME_relative_to_absolute
2636     (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
2637   GNUNET_BANDWIDTH_tracker_init (&n->in_tracker,
2638                                  GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT,
2639                                  MAX_BANDWIDTH_CARRY_S);
2640   tp = plugins;
2641   while (tp != NULL)
2642     {
2643       if ((tp->api->send != NULL) && (!is_blacklisted(peer, tp)))
2644         {
2645           rl = GNUNET_malloc (sizeof (struct ReadyList));
2646           rl->neighbour = n;
2647           rl->next = n->plugins;
2648           n->plugins = rl;
2649           rl->plugin = tp;
2650           rl->addresses = NULL;
2651         }
2652       tp = tp->next;
2653     }
2654   n->latency = GNUNET_TIME_UNIT_FOREVER_REL;
2655   n->distance = -1;
2656   n->timeout_task = GNUNET_SCHEDULER_add_delayed (sched,
2657                                                   GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
2658                                                   &neighbour_timeout_task, n);
2659   if (do_hello)
2660     {
2661       n->piter = GNUNET_PEERINFO_iterate (peerinfo, peer,
2662                                           0, GNUNET_TIME_UNIT_FOREVER_REL,
2663                                           &add_hello_for_peer, n);
2664       transmit_to_peer (NULL, NULL, 0,
2665                         HELLO_ADDRESS_EXPIRATION,
2666                         (const char *) our_hello, GNUNET_HELLO_size(our_hello),
2667                         GNUNET_NO, n);
2668     }
2669   return n;
2670 }
2671
2672
2673 /**
2674  * Function called after we have checked if communicating
2675  * with a given peer is acceptable.  
2676  *
2677  * @param cls closure
2678  * @param n NULL if communication is not acceptable
2679  */
2680 typedef void (*SetupContinuation)(void *cls,
2681                                   struct NeighbourList *n);
2682
2683
2684 /**
2685  * Information kept for each client registered to perform
2686  * blacklisting.
2687  */
2688 struct Blacklisters
2689 {
2690   /**
2691    * This is a linked list.
2692    */
2693   struct Blacklisters *next;
2694
2695   /**
2696    * This is a linked list.
2697    */
2698   struct Blacklisters *prev;
2699
2700   /**
2701    * Client responsible for this entry.
2702    */
2703   struct GNUNET_SERVER_Client *client;
2704
2705   /**
2706    * Blacklist check that we're currently performing.
2707    */
2708   struct BlacklistCheck *bc;
2709
2710 };
2711
2712
2713 /**
2714  * Head of DLL of blacklisting clients.
2715  */
2716 static struct Blacklisters *bl_head;
2717
2718 /**
2719  * Tail of DLL of blacklisting clients.
2720  */
2721 static struct Blacklisters *bl_tail;
2722
2723
2724 /**
2725  * Context we use when performing a blacklist check.
2726  */
2727 struct BlacklistCheck
2728 {
2729   
2730   /**
2731    * This is a linked list.
2732    */
2733   struct BlacklistCheck *next;
2734   
2735   /**
2736    * This is a linked list.
2737    */
2738   struct BlacklistCheck *prev;
2739
2740   /**
2741    * Peer being checked.
2742    */
2743   struct GNUNET_PeerIdentity peer;
2744
2745   /**
2746    * Option for setup neighbour afterwards.
2747    */
2748   int do_hello;
2749
2750   /**
2751    * Continuation to call with the result.
2752    */
2753   SetupContinuation cont;
2754
2755   /**
2756    * Closure for cont.
2757    */
2758   void *cont_cls;
2759
2760   /**
2761    * Current transmission request handle for this client, or NULL if no
2762    * request is pending.
2763    */
2764   struct GNUNET_CONNECTION_TransmitHandle *th;
2765
2766   /**
2767    * Our current position in the blacklisters list.
2768    */
2769   struct Blacklisters *bl_pos;
2770
2771   /**
2772    * Current task performing the check.
2773    */
2774   GNUNET_SCHEDULER_TaskIdentifier task;
2775
2776 };
2777
2778 /**
2779  * Head of DLL of active blacklisting queries.
2780  */
2781 static struct BlacklistCheck *bc_head;
2782
2783 /**
2784  * Tail of DLL of active blacklisting queries.
2785  */
2786 static struct BlacklistCheck *bc_tail;
2787
2788
2789 /**
2790  * Perform next action in the blacklist check.
2791  *
2792  * @param cls the 'struct BlacklistCheck*'
2793  * @param tc unused 
2794  */
2795 static void
2796 do_blacklist_check (void *cls,
2797                     const struct GNUNET_SCHEDULER_TaskContext *tc);
2798
2799
2800 /**
2801  * Transmit blacklist query to the client.
2802  *
2803  * @param cls the 'struct BlacklistCheck'
2804  * @param size number of bytes allowed
2805  * @param buf where to copy the message
2806  * @return number of bytes copied to buf
2807  */
2808 static size_t
2809 transmit_blacklist_message (void *cls,
2810                             size_t size,
2811                             void *buf)
2812 {
2813   struct BlacklistCheck *bc = cls;
2814   struct Blacklisters *bl;
2815   struct BlacklistMessage bm;
2816
2817   bc->th = NULL;
2818   if (size == 0)
2819     {
2820       GNUNET_assert (bc->task == GNUNET_SCHEDULER_NO_TASK);
2821       bc->task = GNUNET_SCHEDULER_add_now (sched,
2822                                            &do_blacklist_check,
2823                                            bc);
2824       return 0;
2825     }
2826   bl = bc->bl_pos;
2827   bm.header.size = htons (sizeof (struct BlacklistMessage));
2828   bm.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_BLACKLIST_QUERY);
2829   bm.is_allowed = htonl (0);
2830   bm.peer = bc->peer;
2831   memcpy (buf, &bm, sizeof (bm)); 
2832   GNUNET_SERVER_receive_done (bl->client, GNUNET_OK);
2833   return sizeof (bm);
2834 }
2835
2836
2837 /**
2838  * Perform next action in the blacklist check.
2839  *
2840  * @param cls the 'struct BlacklistCheck*'
2841  * @param tc unused 
2842  */
2843 static void
2844 do_blacklist_check (void *cls,
2845                     const struct GNUNET_SCHEDULER_TaskContext *tc)
2846 {
2847   struct BlacklistCheck *bc = cls;
2848   struct Blacklisters *bl;
2849
2850   bc->task = GNUNET_SCHEDULER_NO_TASK;
2851   bl = bc->bl_pos;
2852   if (bl == NULL)
2853     {
2854       bc->cont (bc->cont_cls,
2855                 setup_new_neighbour (&bc->peer, bc->do_hello));         
2856       GNUNET_free (bc);
2857       return;
2858     }
2859   if (bl->bc == NULL) 
2860     {
2861       bl->bc = bc;
2862       bc->th = GNUNET_SERVER_notify_transmit_ready (bl->client,
2863                                                     sizeof (struct BlacklistMessage),
2864                                                     GNUNET_TIME_UNIT_FOREVER_REL,
2865                                                     &transmit_blacklist_message,
2866                                                     bc); 
2867     }
2868 }
2869
2870
2871 /**
2872  * Obtain a 'struct NeighbourList' for the given peer.  If such an entry
2873  * does not yet exist, check the blacklist.  If the blacklist says creating
2874  * one is acceptable, create one and call the continuation; otherwise
2875  * call the continuation with NULL.
2876  *
2877  * @param peer peer to setup or look up a struct NeighbourList for
2878  * @param do_hello should we also schedule sending our HELLO to the peer
2879  *        if this is a new record
2880  * @param cont function to call with the 'struct NeigbhbourList*'
2881  * @param cont_cls closure for cont
2882  */
2883 static void
2884 setup_peer_check_blacklist (const struct GNUNET_PeerIdentity *peer,
2885                             int do_hello,
2886                             SetupContinuation cont,
2887                             void *cont_cls)
2888 {
2889   struct NeighbourList *n;
2890   struct BlacklistCheck *bc;
2891
2892   n = find_neighbour(peer);
2893   if (n != NULL)
2894     {
2895       cont (cont_cls, n);
2896       return;
2897     }
2898   if (bl_head == NULL)
2899     {
2900       cont (cont_cls,
2901             setup_new_neighbour (peer, do_hello));
2902       return;
2903     }
2904   bc = GNUNET_malloc (sizeof (struct BlacklistCheck));
2905   GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, bc);
2906   bc->peer = *peer;
2907   bc->do_hello = do_hello;
2908   bc->cont = cont;
2909   bc->cont_cls = cont_cls;
2910   bc->bl_pos = bl_head;
2911   bc->task = GNUNET_SCHEDULER_add_now (sched,
2912                                        &do_blacklist_check,
2913                                        bc);
2914 }
2915
2916
2917 /**
2918  * Function called with the result of querying a new blacklister about 
2919  * it being allowed (or not) to continue to talk to an existing neighbour.
2920  *
2921  * @param cls the original 'struct NeighbourList'
2922  * @param n NULL if we need to disconnect
2923  */
2924 static void
2925 confirm_or_drop_neighbour (void *cls,
2926                            struct NeighbourList *n)
2927 {
2928   struct NeighbourList * orig = cls;
2929
2930   if (n == NULL)
2931     disconnect_neighbour (orig, GNUNET_NO);
2932 }
2933
2934
2935 /**
2936  * Handle a request to start a blacklist.
2937  *
2938  * @param cls closure (always NULL)
2939  * @param client identification of the client
2940  * @param message the actual message
2941  */
2942 static void
2943 handle_blacklist_init (void *cls,
2944                        struct GNUNET_SERVER_Client *client,
2945                        const struct GNUNET_MessageHeader *message)
2946 {
2947   struct Blacklisters *bl;
2948   struct BlacklistCheck *bc;
2949   struct NeighbourList *n;
2950
2951   bl = bl_head;
2952   while (bl != NULL)
2953     {
2954       if (bl->client == client)
2955         {
2956           GNUNET_break (0);
2957           GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2958           return;
2959         }
2960       bl = bl->next;
2961     }
2962   bl = GNUNET_malloc (sizeof (struct Blacklisters));
2963   bl->client = client;
2964   GNUNET_SERVER_client_keep (client);
2965   GNUNET_CONTAINER_DLL_insert_after (bl_head, bl_tail, bl_tail, bl);
2966   /* confirm that all existing connections are OK! */
2967   n = neighbours;
2968   while (NULL != n)
2969     {
2970       bc = GNUNET_malloc (sizeof (struct BlacklistCheck));
2971       GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, bc);
2972       bc->peer = n->id;
2973       bc->do_hello = GNUNET_NO;
2974       bc->cont = &confirm_or_drop_neighbour;
2975       bc->cont_cls = n;
2976       bc->bl_pos = bl;
2977       if (n == neighbours) /* all would wait for the same client, no need to
2978                               create more than just the first task right now */
2979         bc->task = GNUNET_SCHEDULER_add_now (sched,
2980                                              &do_blacklist_check,
2981                                              bc);
2982       n = n->next;
2983     }
2984 }
2985
2986
2987 /**
2988  * Handle a request to blacklist a peer.
2989  *
2990  * @param cls closure (always NULL)
2991  * @param client identification of the client
2992  * @param message the actual message
2993  */
2994 static void
2995 handle_blacklist_reply (void *cls,
2996                         struct GNUNET_SERVER_Client *client,
2997                         const struct GNUNET_MessageHeader *message)
2998 {
2999   const struct BlacklistMessage *msg = (const struct BlacklistMessage*) message;
3000   struct Blacklisters *bl;
3001   struct BlacklistCheck *bc;
3002
3003   bl = bl_head;
3004   while ( (bl != NULL) &&
3005           (bl->client != client) )
3006     bl = bl->next;  
3007   if (bl == NULL)
3008     {
3009       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3010       return;
3011     }
3012   bc = bl->bc;
3013   bl->bc = NULL;  
3014   if (ntohl (msg->is_allowed) == GNUNET_SYSERR)
3015     {    
3016       bc->cont (bc->cont_cls, NULL);
3017       GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, bc);
3018       GNUNET_free (bc);
3019     }
3020   else
3021     {
3022       bc->bl_pos = bc->bl_pos->next;
3023       bc->task = GNUNET_SCHEDULER_add_now (sched,
3024                                            &do_blacklist_check,
3025                                            bc);      
3026     }
3027   /* check if any other bc's are waiting for this blacklister */
3028   bc = bc_head;
3029   while (bc != NULL)
3030     {
3031       if ( (bc->bl_pos == bl) &&
3032            (GNUNET_SCHEDULER_NO_TASK == bc->task) )
3033         bc->task = GNUNET_SCHEDULER_add_now (sched,
3034                                              &do_blacklist_check,
3035                                              bc);      
3036       bc = bc->next;
3037     }
3038 }
3039
3040
3041 /**
3042  * Send periodic PING messages to a given foreign address.
3043  *
3044  * @param cls our 'struct PeriodicValidationContext*'
3045  * @param tc task context
3046  */
3047 static void 
3048 send_periodic_ping (void *cls, 
3049                     const struct GNUNET_SCHEDULER_TaskContext *tc)
3050 {
3051   struct ForeignAddressList *peer_address = cls;
3052   struct TransportPlugin *tp;
3053   struct ValidationEntry *va;
3054   struct NeighbourList *neighbour;
3055   struct TransportPingMessage ping;
3056   struct CheckAddressExistsClosure caec;
3057   char * message_buf;
3058   uint16_t hello_size;
3059   size_t tsize;
3060
3061   peer_address->revalidate_task = GNUNET_SCHEDULER_NO_TASK;
3062   if (tc->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN)
3063     return; 
3064   tp = peer_address->ready_list->plugin;
3065   neighbour = peer_address->ready_list->neighbour;
3066   if (GNUNET_YES != neighbour->public_key_valid)
3067     {
3068       /* no public key yet, try again later */
3069       schedule_next_ping (peer_address);     
3070       return;
3071     }
3072   caec.addr = peer_address->addr;
3073   caec.addrlen = peer_address->addrlen;
3074   caec.tname = tp->short_name;
3075   caec.session = peer_address->session;
3076   caec.exists = GNUNET_NO;
3077   GNUNET_CONTAINER_multihashmap_iterate (validation_map,
3078                                          &check_address_exists,
3079                                          &caec);
3080   if (caec.exists == GNUNET_YES)
3081     {
3082       /* During validation attempts we will likely trigger the other
3083          peer trying to validate our address which in turn will cause
3084          it to send us its HELLO, so we expect to hit this case rather
3085          frequently.  Only print something if we are very verbose. */
3086 #if DEBUG_TRANSPORT > 1
3087       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3088                   "Some validation of address `%s' via `%s' for peer `%4s' already in progress.\n",
3089                   (peer_address->addr != NULL)
3090                   ? a2s (tp->short_name,
3091                          peer_address->addr,
3092                          peer_address->addrlen)
3093                   : "<inbound>",
3094                   tp->short_name,
3095                   GNUNET_i2s (&neighbour->id));
3096 #endif
3097       schedule_next_ping (peer_address);     
3098       return;
3099     }
3100   va = GNUNET_malloc (sizeof (struct ValidationEntry) + peer_address->addrlen);
3101   va->transport_name = GNUNET_strdup (tp->short_name);
3102   va->challenge = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
3103                                             (unsigned int) -1);
3104   va->send_time = GNUNET_TIME_absolute_get();
3105   va->session = peer_address->session;
3106   if (peer_address->addr != NULL)
3107     {
3108       va->addr = (const void*) &va[1];
3109       memcpy (&va[1], peer_address->addr, peer_address->addrlen);
3110       va->addrlen = peer_address->addrlen;
3111     }
3112   memcpy(&va->publicKey,
3113          &neighbour->publicKey, 
3114          sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
3115
3116   va->timeout_task = GNUNET_SCHEDULER_add_delayed (sched,
3117                                                    HELLO_VERIFICATION_TIMEOUT,
3118                                                    &timeout_hello_validation,
3119                                                    va);
3120   GNUNET_CONTAINER_multihashmap_put (validation_map,
3121                                      &neighbour->id.hashPubKey,
3122                                      va,
3123                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3124   hello_size = GNUNET_HELLO_size(our_hello);
3125   tsize = sizeof(struct TransportPingMessage) + hello_size;
3126   message_buf = GNUNET_malloc(tsize);
3127   ping.challenge = htonl(va->challenge);
3128   ping.header.size = htons(sizeof(struct TransportPingMessage));
3129   ping.header.type = htons(GNUNET_MESSAGE_TYPE_TRANSPORT_PING);
3130   memcpy(&ping.target, &neighbour->id, sizeof(struct GNUNET_PeerIdentity));
3131   memcpy(message_buf, our_hello, hello_size);
3132   memcpy(&message_buf[hello_size],
3133          &ping,
3134          sizeof(struct TransportPingMessage));
3135 #if DEBUG_TRANSPORT_REVALIDATION
3136   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3137               "Performing re-validation of address `%s' via `%s' for peer `%4s' sending `%s' (%u bytes) and `%s' (%u bytes)\n",
3138               (peer_address->addr != NULL) 
3139               ? a2s (peer_address->plugin->short_name,
3140                      peer_address->addr,
3141                      peer_address->addrlen)
3142               : "<inbound>",
3143               tp->short_name,
3144               GNUNET_i2s (&neighbour->id),
3145               "HELLO", hello_size,
3146               "PING", sizeof (struct TransportPingMessage));
3147 #endif
3148   GNUNET_STATISTICS_update (stats,
3149                             gettext_noop ("# PING messages sent for re-validation"),
3150                             1,
3151                             GNUNET_NO);
3152   transmit_to_peer (NULL, peer_address,
3153                     GNUNET_SCHEDULER_PRIORITY_DEFAULT,
3154                     HELLO_VERIFICATION_TIMEOUT,
3155                     message_buf, tsize,
3156                     GNUNET_YES, neighbour);
3157   GNUNET_free(message_buf);
3158   schedule_next_ping (peer_address);
3159 }
3160
3161
3162 /**
3163  * Schedule the job that will cause us to send a PING to the
3164  * foreign address to evaluate its validity and latency.
3165  *
3166  * @param fal address to PING
3167  */
3168 static void
3169 schedule_next_ping (struct ForeignAddressList *fal)
3170 {
3171   struct GNUNET_TIME_Relative delay;
3172
3173   if (fal->revalidate_task != GNUNET_SCHEDULER_NO_TASK)
3174     return;
3175   delay = GNUNET_TIME_absolute_get_remaining (fal->expires);
3176   delay.value /= 2; /* do before expiration */
3177   delay = GNUNET_TIME_relative_min (delay,
3178                                     LATENCY_EVALUATION_MAX_DELAY);
3179   if (GNUNET_YES != fal->estimated)
3180     {
3181       delay = GNUNET_TIME_UNIT_ZERO;
3182       fal->estimated = GNUNET_YES;
3183     }                               
3184   if (GNUNET_YES == fal->connected)
3185     {
3186       delay = GNUNET_TIME_relative_min (delay,
3187                                         CONNECTED_LATENCY_EVALUATION_MAX_DELAY);
3188     }  
3189   /* FIXME: also adjust delay based on how close the last
3190      observed latency is to the latency of the best alternative */
3191   /* bound how fast we can go */
3192   delay = GNUNET_TIME_relative_max (delay,
3193                                     GNUNET_TIME_UNIT_SECONDS);
3194   /* randomize a bit (to avoid doing all at the same time) */
3195   delay.value += GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 1000);
3196   fal->revalidate_task = GNUNET_SCHEDULER_add_delayed(sched, 
3197                                                       delay,
3198                                                       &send_periodic_ping, 
3199                                                       fal);
3200 }
3201
3202
3203
3204
3205 /**
3206  * Function that will be called if we receive some payload
3207  * from another peer.
3208  *
3209  * @param message the payload
3210  * @param n peer who claimed to be the sender
3211  */
3212 static void
3213 handle_payload_message (const struct GNUNET_MessageHeader *message,
3214                         struct NeighbourList *n)
3215 {
3216   struct InboundMessage *im;
3217   struct TransportClient *cpos;
3218   uint16_t msize;
3219
3220   msize = ntohs (message->size);
3221   if (n->received_pong == GNUNET_NO)
3222     {
3223       GNUNET_free_non_null (n->pre_connect_message_buffer);
3224       n->pre_connect_message_buffer = GNUNET_malloc (msize);
3225       memcpy (n->pre_connect_message_buffer, message, msize);
3226       return;
3227     }
3228 #if DEBUG_TRANSPORT
3229   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3230               "Received message of type %u from `%4s', sending to all clients.\n",
3231               ntohs (message->type), 
3232               GNUNET_i2s (&n->id));
3233 #endif
3234   if (GNUNET_YES == GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker,
3235                                                       (ssize_t) msize))
3236     {
3237       n->quota_violation_count++;
3238 #if DEBUG_TRANSPORT
3239       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,                        
3240                   "Bandwidth quota (%u b/s) violation detected (total of %u).\n", 
3241                   n->in_tracker.available_bytes_per_s__,
3242                   n->quota_violation_count);
3243 #endif
3244       /* Discount 32k per violation */
3245       GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker,
3246                                         - 32 * 1024);           
3247     }
3248   else 
3249     {
3250       if (n->quota_violation_count > 0)
3251         {
3252           /* try to add 32k back */
3253           GNUNET_BANDWIDTH_tracker_consume (&n->in_tracker,
3254                                             32 * 1024);
3255           n->quota_violation_count--;
3256         }
3257     }
3258   GNUNET_STATISTICS_update (stats,
3259                             gettext_noop ("# payload received from other peers"),
3260                             msize,
3261                             GNUNET_NO);
3262   /* transmit message to all clients */
3263   im = GNUNET_malloc (sizeof (struct InboundMessage) + msize);
3264   im->header.size = htons (sizeof (struct InboundMessage) + msize);
3265   im->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_RECV);
3266   im->latency = GNUNET_TIME_relative_hton (n->latency);
3267   im->peer = n->id;
3268   im->distance = ntohl(n->distance);
3269   memcpy (&im[1], message, msize);
3270   cpos = clients;
3271   while (cpos != NULL)
3272     {
3273       transmit_to_client (cpos, &im->header, GNUNET_YES);
3274       cpos = cpos->next;
3275     }
3276   GNUNET_free (im);
3277 }
3278
3279
3280 /**
3281  * Iterator over hash map entries.  Checks if the given validation
3282  * entry is for the same challenge as what is given in the PONG.
3283  *
3284  * @param cls the 'struct TransportPongMessage*'
3285  * @param key peer identity
3286  * @param value value in the hash map ('struct ValidationEntry')
3287  * @return GNUNET_YES if we should continue to
3288  *         iterate (mismatch), GNUNET_NO if not (entry matched)
3289  */
3290 static int
3291 check_pending_validation (void *cls,
3292                           const GNUNET_HashCode * key,
3293                           void *value)
3294 {
3295   const struct TransportPongMessage *pong = cls;
3296   struct ValidationEntry *ve = value;
3297   struct AddValidatedAddressContext avac;
3298   unsigned int challenge = ntohl(pong->challenge);
3299   struct GNUNET_HELLO_Message *hello;
3300   struct GNUNET_PeerIdentity target;
3301   struct NeighbourList *n;
3302   struct ForeignAddressList *fal;
3303   struct GNUNET_MessageHeader *prem;
3304
3305   if (ve->challenge != challenge)
3306     return GNUNET_YES;
3307
3308 #if SIGN_USELESS
3309   if (GNUNET_OK !=
3310       GNUNET_CRYPTO_rsa_verify (GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PING,
3311                                 &pong->purpose, 
3312                                 &pong->signature,
3313                                 &ve->publicKey))
3314     {
3315       GNUNET_break_op (0);
3316       return GNUNET_YES;
3317     }
3318 #endif
3319
3320 #if DEBUG_TRANSPORT
3321   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3322               "Confirmed validity of address, peer `%4s' has address `%s' (%s).\n",
3323               GNUNET_h2s (key),
3324               (ve->addr != NULL) 
3325               ? a2s (ve->transport_name,
3326                      (const struct sockaddr *) ve->addr,
3327                      ve->addrlen)
3328               : "<inbound>",
3329               ve->transport_name);
3330 #endif
3331   GNUNET_STATISTICS_update (stats,
3332                             gettext_noop ("# address validation successes"),
3333                             1,
3334                             GNUNET_NO);
3335   /* create the updated HELLO */
3336   GNUNET_CRYPTO_hash (&ve->publicKey,
3337                       sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
3338                       &target.hashPubKey);
3339   if (ve->addr != NULL)
3340     {
3341       avac.done = GNUNET_NO;
3342       avac.ve = ve;
3343       hello = GNUNET_HELLO_create (&ve->publicKey,
3344                                    &add_validated_address,
3345                                    &avac);
3346       GNUNET_PEERINFO_add_peer (peerinfo,
3347                                 hello);
3348       GNUNET_free (hello);
3349     }
3350   n = find_neighbour (&target);
3351   if (n != NULL)
3352     {
3353       n->publicKey = ve->publicKey;
3354       n->public_key_valid = GNUNET_YES;
3355       fal = add_peer_address (n,
3356                               ve->transport_name,
3357                               ve->session,
3358                               ve->addr,
3359                               ve->addrlen);
3360       GNUNET_assert (fal != NULL);
3361       fal->expires = GNUNET_TIME_relative_to_absolute (HELLO_ADDRESS_EXPIRATION);
3362       fal->validated = GNUNET_YES;
3363       mark_address_connected (fal);
3364       GNUNET_STATISTICS_update (stats,
3365                                 gettext_noop ("# peer addresses considered valid"),
3366                                 1,
3367                                 GNUNET_NO);      
3368       fal->latency = GNUNET_TIME_absolute_get_duration (ve->send_time);
3369       schedule_next_ping (fal);
3370       if (n->latency.value == GNUNET_TIME_UNIT_FOREVER_REL.value)
3371         n->latency = fal->latency;
3372       else
3373         n->latency.value = (fal->latency.value + n->latency.value) / 2;
3374
3375       n->distance = fal->distance;
3376       if (GNUNET_NO == n->received_pong)
3377         {
3378           n->received_pong = GNUNET_YES;
3379           notify_clients_connect (&target, n->latency, n->distance);
3380           if (NULL != (prem = n->pre_connect_message_buffer))
3381             {
3382               n->pre_connect_message_buffer = NULL;
3383               handle_payload_message (prem, n);
3384               GNUNET_free (prem);
3385             }
3386         }
3387       if (n->retry_task != GNUNET_SCHEDULER_NO_TASK)
3388         {
3389           GNUNET_SCHEDULER_cancel (sched,
3390                                    n->retry_task);
3391           n->retry_task = GNUNET_SCHEDULER_NO_TASK;
3392           try_transmission_to_peer (n);
3393         }
3394     }
3395
3396   /* clean up validation entry */
3397   GNUNET_assert (GNUNET_YES ==
3398                  GNUNET_CONTAINER_multihashmap_remove (validation_map,
3399                                                        key,
3400                                                        ve));
3401   abort_validation (NULL, NULL, ve);
3402   return GNUNET_NO;
3403 }
3404
3405
3406 /**
3407  * Function that will be called if we receive a validation
3408  * of an address challenge that we transmitted to another
3409  * peer.  Note that the validation should only be considered
3410  * acceptable if the challenge matches AND if the sender
3411  * address is at least a plausible address for this peer
3412  * (otherwise we may be seeing a MiM attack).
3413  *
3414  * @param cls closure
3415  * @param message the pong message
3416  * @param peer who responded to our challenge
3417  * @param sender_address string describing our sender address (as observed
3418  *         by the other peer in binary format)
3419  * @param sender_address_len number of bytes in 'sender_address'
3420  */
3421 static void
3422 handle_pong (void *cls, const struct GNUNET_MessageHeader *message,
3423              const struct GNUNET_PeerIdentity *peer,
3424              const char *sender_address,
3425              size_t sender_address_len)
3426 {
3427 #if DEBUG_TRANSPORT > 1
3428   /* we get tons of these that just get discarded, only log
3429      if we are quite verbose */
3430   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3431               "Receiving `%s' message from `%4s'.\n", "PONG",
3432               GNUNET_i2s (peer));
3433 #endif
3434   GNUNET_STATISTICS_update (stats,
3435                             gettext_noop ("# PONG messages received"),
3436                             1,
3437                             GNUNET_NO);
3438   if (GNUNET_SYSERR !=
3439       GNUNET_CONTAINER_multihashmap_get_multiple (validation_map,
3440                                                   &peer->hashPubKey,
3441                                                   &check_pending_validation,
3442                                                   (void*) message))
3443     {
3444       /* This is *expected* to happen a lot since we send
3445          PONGs to *all* known addresses of the sender of
3446          the PING, so most likely we get multiple PONGs
3447          per PING, and all but the first PONG will end up
3448          here. So really we should not print anything here
3449          unless we want to be very, very verbose... */
3450 #if DEBUG_TRANSPORT > 2
3451       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3452                   "Received `%s' message from `%4s' but have no record of a matching `%s' message. Ignoring.\n",
3453                   "PONG",
3454                   GNUNET_i2s (peer),
3455                   "PING");
3456 #endif
3457       return;
3458     }
3459
3460 }
3461
3462
3463 /**
3464  * Try to validate a neighbour's address by sending him our HELLO and a PING.
3465  *
3466  * @param cls the 'struct ValidationEntry*'
3467  * @param neighbour neighbour to validate, NULL if validation failed
3468  */
3469 static void
3470 transmit_hello_and_ping (void *cls,
3471                          struct NeighbourList *neighbour)
3472 {
3473   struct ValidationEntry *va = cls;
3474   struct ForeignAddressList *peer_address;
3475   struct TransportPingMessage ping;
3476   uint16_t hello_size;
3477   size_t tsize;
3478   char * message_buf;
3479
3480   if (neighbour == NULL)
3481     {
3482       /* FIXME: stats... */
3483       GNUNET_free (va->transport_name);
3484       GNUNET_free (va);
3485       return;
3486     }
3487   neighbour->publicKey = va->publicKey;
3488   neighbour->public_key_valid = GNUNET_YES;
3489   peer_address = add_peer_address (neighbour,
3490                                    va->transport_name, NULL,
3491                                    (const void*) &va[1],
3492                                    va->addrlen);
3493   if (peer_address == NULL)
3494     {
3495       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3496                   "Failed to add peer `%4s' for plugin `%s'\n",
3497                   GNUNET_i2s (&neighbour->id), 
3498                   va->transport_name);
3499       GNUNET_free (va->transport_name);
3500       GNUNET_free (va);
3501       return;
3502     }
3503   hello_size = GNUNET_HELLO_size(our_hello);
3504   tsize = sizeof(struct TransportPingMessage) + hello_size;
3505   message_buf = GNUNET_malloc(tsize);
3506   ping.challenge = htonl(va->challenge);
3507   ping.header.size = htons(sizeof(struct TransportPingMessage));
3508   ping.header.type = htons(GNUNET_MESSAGE_TYPE_TRANSPORT_PING);
3509   memcpy(&ping.target, &neighbour->id, sizeof(struct GNUNET_PeerIdentity));
3510   memcpy(message_buf, our_hello, hello_size);
3511   memcpy(&message_buf[hello_size],
3512          &ping,
3513          sizeof(struct TransportPingMessage));
3514 #if DEBUG_TRANSPORT
3515   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3516               "Performing validation of address `%s' via `%s' for peer `%4s' sending `%s' (%u bytes) and `%s' (%u bytes)\n",
3517               a2s (va->transport_name,
3518                    (const void*) &va[1], va->addrlen),
3519               va->transport_name,
3520               GNUNET_i2s (&neighbour->id),
3521               "HELLO", hello_size,
3522               "PING", sizeof (struct TransportPingMessage));
3523 #endif
3524   GNUNET_STATISTICS_update (stats,
3525                             gettext_noop ("# PING messages sent for initial validation"),
3526                             1,
3527                             GNUNET_NO);      
3528   transmit_to_peer (NULL, peer_address,
3529                     GNUNET_SCHEDULER_PRIORITY_DEFAULT,
3530                     HELLO_VERIFICATION_TIMEOUT,
3531                     message_buf, tsize,
3532                     GNUNET_YES, neighbour);
3533   GNUNET_free(message_buf);
3534 }
3535
3536
3537 /**
3538  * Check if the given address is already being validated; if not,
3539  * append the given address to the list of entries that are being be
3540  * validated and initiate validation.
3541  *
3542  * @param cls closure ('struct CheckHelloValidatedContext *')
3543  * @param tname name of the transport
3544  * @param expiration expiration time
3545  * @param addr the address
3546  * @param addrlen length of the address
3547  * @return GNUNET_OK (always)
3548  */
3549 static int
3550 run_validation (void *cls,
3551                 const char *tname,
3552                 struct GNUNET_TIME_Absolute expiration,
3553                 const void *addr, 
3554                 uint16_t addrlen)
3555 {
3556   struct CheckHelloValidatedContext *chvc = cls;
3557   struct GNUNET_PeerIdentity id;
3558   struct TransportPlugin *tp;
3559   struct ValidationEntry *va;
3560   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pk;
3561   struct CheckAddressExistsClosure caec;
3562   struct OwnAddressList *oal;
3563
3564   GNUNET_assert (addr != NULL);
3565   GNUNET_STATISTICS_update (stats,
3566                             gettext_noop ("# peer addresses scheduled for validation"),
3567                             1,
3568                             GNUNET_NO);      
3569   tp = find_transport (tname);
3570   if (tp == NULL)
3571     {
3572       GNUNET_log (GNUNET_ERROR_TYPE_INFO |
3573                   GNUNET_ERROR_TYPE_BULK,
3574                   _
3575                   ("Transport `%s' not loaded, will not try to validate peer address using this transport.\n"),
3576                   tname);
3577       GNUNET_STATISTICS_update (stats,
3578                                 gettext_noop ("# peer addresses not validated (plugin not available)"),
3579                                 1,
3580                                 GNUNET_NO);      
3581       return GNUNET_OK;
3582     }
3583   /* check if this is one of our own addresses */
3584   oal = tp->addresses;
3585   while (NULL != oal)
3586     {
3587       if ( (oal->addrlen == addrlen) &&
3588            (0 == memcmp (oal->addr,
3589                          addr,
3590                          addrlen)) )
3591         {
3592           /* not plausible, this address is equivalent to our own address! */
3593           GNUNET_STATISTICS_update (stats,
3594                                     gettext_noop ("# peer addresses not validated (loopback)"),
3595                                     1,
3596                                     GNUNET_NO);      
3597           return GNUNET_OK;
3598         }
3599       oal = oal->next;
3600     }
3601   GNUNET_HELLO_get_key (chvc->hello, &pk);
3602   GNUNET_CRYPTO_hash (&pk,
3603                       sizeof (struct
3604                               GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
3605                       &id.hashPubKey);
3606
3607   if (is_blacklisted(&id, tp))
3608     {
3609 #if DEBUG_TRANSPORT
3610       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3611                   "Attempted to validate blacklisted peer `%s' using `%s'!\n", 
3612                   GNUNET_i2s(&id), 
3613                   tname);
3614 #endif
3615       return GNUNET_OK;
3616     }
3617
3618   caec.addr = addr;
3619   caec.addrlen = addrlen;
3620   caec.session = NULL;
3621   caec.tname = tname;
3622   caec.exists = GNUNET_NO;
3623   GNUNET_CONTAINER_multihashmap_iterate (validation_map,
3624                                          &check_address_exists,
3625                                          &caec);
3626   if (caec.exists == GNUNET_YES)
3627     {
3628       /* During validation attempts we will likely trigger the other
3629          peer trying to validate our address which in turn will cause
3630          it to send us its HELLO, so we expect to hit this case rather
3631          frequently.  Only print something if we are very verbose. */
3632 #if DEBUG_TRANSPORT > 1
3633       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3634                   "Validation of address `%s' via `%s' for peer `%4s' already in progress.\n",
3635                   a2s (tname, addr, addrlen),
3636                   tname,
3637                   GNUNET_i2s (&id));
3638 #endif
3639       GNUNET_STATISTICS_update (stats,
3640                                 gettext_noop ("# peer addresses not validated (in progress)"),
3641                                 1,
3642                                 GNUNET_NO);      
3643       return GNUNET_OK;
3644     }
3645   va = GNUNET_malloc (sizeof (struct ValidationEntry) + addrlen);
3646   va->chvc = chvc;
3647   chvc->ve_count++;
3648   va->transport_name = GNUNET_strdup (tname);
3649   va->challenge = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
3650                                             (unsigned int) -1);
3651   va->send_time = GNUNET_TIME_absolute_get();
3652   va->addr = (const void*) &va[1];
3653   memcpy (&va[1], addr, addrlen);
3654   va->addrlen = addrlen;
3655   GNUNET_HELLO_get_key (chvc->hello,
3656                         &va->publicKey);
3657   va->timeout_task = GNUNET_SCHEDULER_add_delayed (sched,
3658                                                    HELLO_VERIFICATION_TIMEOUT,
3659                                                    &timeout_hello_validation,
3660                                                    va);
3661   GNUNET_CONTAINER_multihashmap_put (validation_map,
3662                                      &id.hashPubKey,
3663                                      va,
3664                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
3665   setup_peer_check_blacklist (&id, GNUNET_NO,
3666                               &transmit_hello_and_ping,
3667                               va);
3668   return GNUNET_OK;
3669 }
3670
3671
3672 /**
3673  * Check if addresses in validated hello "h" overlap with
3674  * those in "chvc->hello" and validate the rest.
3675  *
3676  * @param cls closure
3677  * @param peer id of the peer, NULL for last call
3678  * @param h hello message for the peer (can be NULL)
3679  * @param trust amount of trust we have in the peer (not used)
3680  */
3681 static void
3682 check_hello_validated (void *cls,
3683                        const struct GNUNET_PeerIdentity *peer,
3684                        const struct GNUNET_HELLO_Message *h, 
3685                        uint32_t trust)
3686 {
3687   struct CheckHelloValidatedContext *chvc = cls;
3688   struct GNUNET_HELLO_Message *plain_hello;
3689   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pk;
3690   struct GNUNET_PeerIdentity target;
3691   struct NeighbourList *n;
3692
3693   if (peer == NULL)
3694     {
3695       chvc->piter = NULL;
3696       if (GNUNET_NO == chvc->hello_known)
3697         {
3698           /* notify PEERINFO about the peer now, so that we at least
3699              have the public key if some other component needs it */
3700           GNUNET_HELLO_get_key (chvc->hello, &pk);
3701           GNUNET_CRYPTO_hash (&pk,
3702                               sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
3703                               &target.hashPubKey);
3704           plain_hello = GNUNET_HELLO_create (&pk,
3705                                              NULL, 
3706                                              NULL);
3707           GNUNET_PEERINFO_add_peer (peerinfo, plain_hello);
3708           GNUNET_free (plain_hello);
3709 #if DEBUG_TRANSPORT || 1
3710           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3711                       "PEERINFO had no `%s' message for peer `%4s', full validation needed.\n",
3712                       "HELLO",
3713                       GNUNET_i2s (&target));
3714 #endif
3715           GNUNET_STATISTICS_update (stats,
3716                                     gettext_noop ("# new HELLOs requiring full validation"),
3717                                     1,
3718                                     GNUNET_NO);      
3719           GNUNET_HELLO_iterate_addresses (chvc->hello,
3720                                           GNUNET_NO, 
3721                                           &run_validation, 
3722                                           chvc);
3723         }
3724       else
3725         {
3726           GNUNET_STATISTICS_update (stats,
3727                                     gettext_noop ("# duplicate HELLO (peer known)"),
3728                                     1,
3729                                     GNUNET_NO);      
3730         }
3731       if (chvc->ve_count == 0)
3732         {
3733           GNUNET_CONTAINER_DLL_remove (chvc_head,
3734                                        chvc_tail,
3735                                        chvc);
3736           GNUNET_free (chvc);
3737         }
3738       return;
3739     } 
3740   if (h == NULL)
3741     return;
3742 #if DEBUG_TRANSPORT
3743   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3744               "PEERINFO had `%s' message for peer `%4s', validating only new addresses.\n",
3745               "HELLO",
3746               GNUNET_i2s (peer));
3747 #endif
3748   chvc->hello_known = GNUNET_YES;
3749   n = find_neighbour (peer);
3750   if (n != NULL)
3751     {
3752       GNUNET_HELLO_iterate_addresses (h,
3753                                       GNUNET_NO,
3754                                       &add_to_foreign_address_list,
3755                                       n);
3756       try_transmission_to_peer (n);
3757     }
3758   else
3759     {
3760       GNUNET_STATISTICS_update (stats,
3761                                 gettext_noop ("# no existing neighbour record (validating HELLO)"),
3762                                 1,
3763                                 GNUNET_NO);      
3764     }
3765   GNUNET_STATISTICS_update (stats,
3766                             gettext_noop ("# HELLO validations (update case)"),
3767                             1,
3768                             GNUNET_NO);      
3769   GNUNET_HELLO_iterate_new_addresses (chvc->hello,
3770                                       h,
3771                                       GNUNET_TIME_relative_to_absolute (HELLO_REVALIDATION_START_TIME),
3772                                       &run_validation, 
3773                                       chvc);
3774 }
3775
3776
3777 /**
3778  * Process HELLO-message.
3779  *
3780  * @param plugin transport involved, may be NULL
3781  * @param message the actual message
3782  * @return GNUNET_OK if the HELLO was well-formed, GNUNET_SYSERR otherwise
3783  */
3784 static int
3785 process_hello (struct TransportPlugin *plugin,
3786                const struct GNUNET_MessageHeader *message)
3787 {
3788   uint16_t hsize;
3789   struct GNUNET_PeerIdentity target;
3790   const struct GNUNET_HELLO_Message *hello;
3791   struct CheckHelloValidatedContext *chvc;
3792   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded publicKey;
3793
3794   hsize = ntohs (message->size);
3795   if ((ntohs (message->type) != GNUNET_MESSAGE_TYPE_HELLO) ||
3796       (hsize < sizeof (struct GNUNET_MessageHeader)))
3797     {
3798       GNUNET_break (0);
3799       return GNUNET_SYSERR;
3800     }
3801   GNUNET_STATISTICS_update (stats,
3802                             gettext_noop ("# HELLOs received for validation"),
3803                             1,
3804                             GNUNET_NO);      
3805   /* first, check if load is too high */
3806   if (GNUNET_SCHEDULER_get_load (sched,
3807                                  GNUNET_SCHEDULER_PRIORITY_BACKGROUND) > MAX_HELLO_LOAD)
3808     {
3809       GNUNET_STATISTICS_update (stats,
3810                                 gettext_noop ("# HELLOs ignored due to high load"),
3811                                 1,
3812                                 GNUNET_NO);      
3813       return GNUNET_OK;
3814     }
3815   hello = (const struct GNUNET_HELLO_Message *) message;
3816   if (GNUNET_OK != GNUNET_HELLO_get_key (hello, &publicKey))
3817     {
3818       GNUNET_break_op (0);
3819       return GNUNET_SYSERR;
3820     }
3821   GNUNET_CRYPTO_hash (&publicKey,
3822                       sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
3823                       &target.hashPubKey);
3824   if (0 == memcmp (&my_identity,
3825                    &target,
3826                    sizeof (struct GNUNET_PeerIdentity)))
3827     {
3828       GNUNET_STATISTICS_update (stats,
3829                                 gettext_noop ("# HELLOs ignored for validation (is my own HELLO)"),
3830                                 1,
3831                                 GNUNET_NO);      
3832       return GNUNET_OK;      
3833     }
3834   chvc = chvc_head;
3835   while (NULL != chvc)
3836     {
3837       if (GNUNET_HELLO_equals (hello,
3838                                chvc->hello,
3839                                GNUNET_TIME_absolute_get ()).value > 0)
3840         {
3841 #if DEBUG_TRANSPORT
3842           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3843                       "Received duplicate `%s' message for `%4s'; ignored\n",
3844                       "HELLO", 
3845                       GNUNET_i2s (&target));
3846 #endif
3847           return GNUNET_OK; /* validation already pending */
3848         }
3849       if (GNUNET_HELLO_size(hello) == GNUNET_HELLO_size (chvc->hello))
3850         GNUNET_break (0 != memcmp (hello, chvc->hello,
3851                                    GNUNET_HELLO_size(hello)));
3852       chvc = chvc->next;
3853     }
3854 #if DEBUG_TRANSPORT 
3855   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3856               "Starting validation of `%s' message for `%4s' of size %u\n",
3857               "HELLO", 
3858               GNUNET_i2s (&target), 
3859               GNUNET_HELLO_size(hello));
3860 #endif
3861   chvc = GNUNET_malloc (sizeof (struct CheckHelloValidatedContext) + hsize);
3862   chvc->hello = (const struct GNUNET_HELLO_Message *) &chvc[1];
3863   memcpy (&chvc[1], hello, hsize);
3864   GNUNET_CONTAINER_DLL_insert (chvc_head,
3865                                chvc_tail,
3866                                chvc);
3867   /* finally, check if HELLO was previously validated
3868      (continuation will then schedule actual validation) */
3869   chvc->piter = GNUNET_PEERINFO_iterate (peerinfo,
3870                                          &target,
3871                                          0,
3872                                          HELLO_VERIFICATION_TIMEOUT,
3873                                          &check_hello_validated, chvc);
3874   return GNUNET_OK;
3875 }
3876
3877
3878 /**
3879  * The peer specified by the given neighbour has timed-out or a plugin
3880  * has disconnected.  We may either need to do nothing (other plugins
3881  * still up), or trigger a full disconnect and clean up.  This
3882  * function updates our state and does the necessary notifications.
3883  * Also notifies our clients that the neighbour is now officially
3884  * gone.
3885  *
3886  * @param n the neighbour list entry for the peer
3887  * @param check should we just check if all plugins
3888  *        disconnected or must we ask all plugins to
3889  *        disconnect?
3890  */
3891 static void
3892 disconnect_neighbour (struct NeighbourList *n, int check)
3893 {
3894   struct ReadyList *rpos;
3895   struct NeighbourList *npos;
3896   struct NeighbourList *nprev;
3897   struct MessageQueue *mq;
3898   struct ForeignAddressList *peer_addresses;
3899   struct ForeignAddressList *peer_pos;
3900
3901   if (GNUNET_YES == check)
3902     {
3903       rpos = n->plugins;
3904       while (NULL != rpos)
3905         {
3906           peer_addresses = rpos->addresses;
3907           while (peer_addresses != NULL)
3908             {
3909               if (GNUNET_YES == peer_addresses->connected)
3910                 return;             /* still connected */
3911               peer_addresses = peer_addresses->next;
3912             }
3913           rpos = rpos->next;
3914         }
3915     }
3916 #if DEBUG_TRANSPORT
3917   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
3918               "Disconnecting from `%4s'\n",
3919               GNUNET_i2s (&n->id));
3920 #endif
3921   /* remove n from neighbours list */
3922   nprev = NULL;
3923   npos = neighbours;
3924   while ((npos != NULL) && (npos != n))
3925     {
3926       nprev = npos;
3927       npos = npos->next;
3928     }
3929   GNUNET_assert (npos != NULL);
3930   if (nprev == NULL)
3931     neighbours = n->next;
3932   else
3933     nprev->next = n->next;
3934
3935   /* notify all clients about disconnect */
3936   if (GNUNET_YES == n->received_pong)
3937     notify_clients_disconnect (&n->id);
3938
3939   /* clean up all plugins, cancel connections and pending transmissions */
3940   while (NULL != (rpos = n->plugins))
3941     {
3942       n->plugins = rpos->next;
3943       rpos->plugin->api->disconnect (rpos->plugin->api->cls, &n->id);
3944       while (rpos->addresses != NULL)
3945         {
3946           peer_pos = rpos->addresses;
3947           rpos->addresses = peer_pos->next;
3948           if (peer_pos->connected == GNUNET_YES)
3949             GNUNET_STATISTICS_update (stats,
3950                                       gettext_noop ("# connected addresses"),
3951                                       -1,
3952                                       GNUNET_NO); 
3953           if (GNUNET_YES == peer_pos->validated)
3954             GNUNET_STATISTICS_update (stats,
3955                                       gettext_noop ("# peer addresses considered valid"),
3956                                       -1,
3957                                       GNUNET_NO);      
3958           if (GNUNET_SCHEDULER_NO_TASK != peer_pos->revalidate_task)
3959             {
3960               GNUNET_SCHEDULER_cancel (sched,
3961                                        peer_pos->revalidate_task);
3962               peer_pos->revalidate_task = GNUNET_SCHEDULER_NO_TASK;
3963             }
3964           GNUNET_free(peer_pos);
3965         }
3966       GNUNET_free (rpos);
3967     }
3968
3969   /* free all messages on the queue */
3970   while (NULL != (mq = n->messages_head))
3971     {
3972       GNUNET_STATISTICS_update (stats,
3973                                 gettext_noop ("# bytes in message queue for other peers"),
3974                                 - (int64_t) mq->message_buf_size,
3975                                 GNUNET_NO);
3976       GNUNET_STATISTICS_update (stats,
3977                                 gettext_noop ("# bytes discarded due to disconnect"),
3978                                 mq->message_buf_size,
3979                                 GNUNET_NO);
3980       GNUNET_CONTAINER_DLL_remove (n->messages_head,
3981                                    n->messages_tail,
3982                                    mq);
3983       GNUNET_assert (0 == memcmp(&mq->neighbour_id, 
3984                                  &n->id,
3985                                  sizeof(struct GNUNET_PeerIdentity)));
3986       GNUNET_free (mq);
3987     }
3988   if (n->timeout_task != GNUNET_SCHEDULER_NO_TASK)
3989     {
3990       GNUNET_SCHEDULER_cancel (sched, n->timeout_task);
3991       n->timeout_task = GNUNET_SCHEDULER_NO_TASK;
3992     }
3993   if (n->retry_task != GNUNET_SCHEDULER_NO_TASK)
3994     {
3995       GNUNET_SCHEDULER_cancel (sched, n->retry_task);
3996       n->retry_task = GNUNET_SCHEDULER_NO_TASK;
3997     }
3998   if (n->piter != NULL)
3999     {
4000       GNUNET_PEERINFO_iterate_cancel (n->piter);
4001       n->piter = NULL;
4002     }
4003   /* finally, free n itself */
4004   GNUNET_STATISTICS_update (stats,
4005                             gettext_noop ("# active neighbours"),
4006                             -1,
4007                             GNUNET_NO);
4008   GNUNET_free_non_null (n->pre_connect_message_buffer);
4009   GNUNET_free (n);
4010 }
4011
4012
4013 /**
4014  * We have received a PING message from someone.  Need to send a PONG message
4015  * in response to the peer by any means necessary. 
4016  */
4017 static int 
4018 handle_ping(void *cls, const struct GNUNET_MessageHeader *message,
4019             const struct GNUNET_PeerIdentity *peer,
4020             const char *sender_address,
4021             uint16_t sender_address_len)
4022 {
4023   struct TransportPlugin *plugin = cls;
4024   struct TransportPingMessage *ping;
4025   struct TransportPongMessage *pong;
4026   struct NeighbourList *n;
4027   struct ReadyList *rl;
4028   struct ForeignAddressList *fal;
4029
4030   if (ntohs (message->size) != sizeof (struct TransportPingMessage))
4031     {
4032       GNUNET_break_op (0);
4033       return GNUNET_SYSERR;
4034     }
4035
4036   ping = (struct TransportPingMessage *) message;
4037   if (0 != memcmp (&ping->target,
4038                    plugin->env.my_identity,
4039                    sizeof (struct GNUNET_PeerIdentity)))
4040     {
4041       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4042                   _("Received `%s' message not destined for me!\n"), 
4043                   "PING");
4044       return GNUNET_SYSERR;
4045     }
4046 #if DEBUG_PING_PONG
4047   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
4048               "Processing `%s' from `%s'\n",
4049               "PING", 
4050               (sender_address != NULL) 
4051               ? a2s (plugin->short_name,
4052                      (const struct sockaddr *)sender_address, 
4053                      sender_address_len)
4054               : "<inbound>");
4055 #endif
4056   GNUNET_STATISTICS_update (stats,
4057                             gettext_noop ("# PING messages received"),
4058                             1,
4059                             GNUNET_NO);
4060   pong = GNUNET_malloc (sizeof (struct TransportPongMessage) + sender_address_len);
4061   pong->header.size = htons (sizeof (struct TransportPongMessage) + sender_address_len);
4062   pong->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_PONG);
4063   pong->purpose.size =
4064     htonl (sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) +
4065            sizeof (uint32_t) +
4066            sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded) + sender_address_len);
4067   pong->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_TRANSPORT_PING);
4068   pong->challenge = ping->challenge;
4069   pong->addrlen = htons(sender_address_len);
4070   memcpy(&pong->signer, 
4071          &my_public_key, 
4072          sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
4073   if (sender_address != NULL)
4074     memcpy (&pong[1], sender_address, sender_address_len);
4075 #if SIGN_USELESS
4076   GNUNET_assert (GNUNET_OK ==
4077                  GNUNET_CRYPTO_rsa_sign (my_private_key,
4078                                          &pong->purpose, &pong->signature));
4079 #endif
4080   n = find_neighbour(peer);
4081   GNUNET_assert (n != NULL);
4082   /* first try reliable response transmission */
4083   rl = n->plugins;
4084   while (rl != NULL)
4085     {
4086       fal = rl->addresses;
4087       while (fal != NULL)
4088         {
4089           if (-1 != rl->plugin->api->send (rl->plugin->api->cls,
4090                                            peer,
4091                                            (const char*) pong,
4092                                            ntohs (pong->header.size),
4093                                            TRANSPORT_PONG_PRIORITY, 
4094                                            HELLO_VERIFICATION_TIMEOUT,
4095                                            fal->session,
4096                                            fal->addr,
4097                                            fal->addrlen,
4098                                            GNUNET_SYSERR,
4099                                            NULL, NULL))
4100             {
4101               /* done! */
4102               GNUNET_STATISTICS_update (stats,
4103                                         gettext_noop ("# PONGs unicast via reliable transport"),
4104                                         1,
4105                                         GNUNET_NO);      
4106               GNUNET_free (pong);
4107               return GNUNET_OK;
4108             }
4109           fal = fal->next;
4110         }
4111       rl = rl->next;
4112     }
4113   /* no reliable method found, do multicast */
4114   GNUNET_STATISTICS_update (stats,
4115                             gettext_noop ("# PONGs multicast to all available addresses"),
4116                             1,
4117                             GNUNET_NO);      
4118   rl = n->plugins;
4119   while (rl != NULL)
4120     {
4121       fal = rl->addresses;
4122       while (fal != NULL)
4123         {
4124           transmit_to_peer(NULL, fal,
4125                            TRANSPORT_PONG_PRIORITY, 
4126                            HELLO_VERIFICATION_TIMEOUT,
4127                            (const char *)pong, 
4128                            ntohs(pong->header.size), 
4129                            GNUNET_YES, 
4130                            n);
4131           fal = fal->next;
4132         }
4133       rl = rl->next;
4134     }
4135   GNUNET_free(pong);
4136   return GNUNET_OK;
4137 }
4138
4139
4140 /**
4141  * Function called by the plugin for each received message.
4142  * Update data volumes, possibly notify plugins about
4143  * reducing the rate at which they read from the socket
4144  * and generally forward to our receive callback.
4145  *
4146  * @param cls the "struct TransportPlugin *" we gave to the plugin
4147  * @param peer (claimed) identity of the other peer
4148  * @param message the message, NULL if we only care about
4149  *                learning about the delay until we should receive again
4150  * @param distance in overlay hops; use 1 unless DV (or 0 if message == NULL)
4151  * @param session identifier used for this session (can be NULL)
4152  * @param sender_address binary address of the sender (if observed)
4153  * @param sender_address_len number of bytes in sender_address
4154  * @return how long the plugin should wait until receiving more data
4155  *         (plugins that do not support this, can ignore the return value)
4156  */
4157 static struct GNUNET_TIME_Relative
4158 plugin_env_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
4159                     const struct GNUNET_MessageHeader *message,
4160                     uint32_t distance,
4161                     struct Session *session,
4162                     const char *sender_address,
4163                     uint16_t sender_address_len)
4164 {
4165   struct TransportPlugin *plugin = cls;
4166   struct ReadyList *service_context;
4167   struct ForeignAddressList *peer_address;
4168   uint16_t msize;
4169   struct NeighbourList *n;
4170   struct GNUNET_TIME_Relative ret;
4171
4172   if (is_blacklisted (peer, plugin))
4173     return GNUNET_TIME_UNIT_FOREVER_REL;
4174
4175   n = find_neighbour (peer);
4176   if (n == NULL)
4177     n = setup_new_neighbour (peer, GNUNET_YES);
4178   service_context = n->plugins;
4179   while ((service_context != NULL) && (plugin != service_context->plugin))
4180     service_context = service_context->next;
4181   GNUNET_assert ((plugin->api->send == NULL) || (service_context != NULL));
4182   peer_address = NULL;
4183   if (message != NULL)
4184     {
4185       if ( (session != NULL) ||
4186            (sender_address != NULL) )
4187         peer_address = add_peer_address (n, 
4188                                          plugin->short_name,
4189                                          session,
4190                                          sender_address, 
4191                                          sender_address_len);  
4192       if (peer_address != NULL)
4193         {
4194           peer_address->distance = distance;
4195           if (GNUNET_YES == peer_address->validated)
4196             mark_address_connected (peer_address);
4197           peer_address->timeout
4198             =
4199             GNUNET_TIME_relative_to_absolute
4200             (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
4201           schedule_next_ping (peer_address);
4202         }
4203       /* update traffic received amount ... */
4204       msize = ntohs (message->size);      
4205       GNUNET_STATISTICS_update (stats,
4206                                 gettext_noop ("# bytes received from other peers"),
4207                                 msize,
4208                                 GNUNET_NO);
4209       n->distance = distance;
4210       n->peer_timeout =
4211         GNUNET_TIME_relative_to_absolute
4212         (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
4213       GNUNET_SCHEDULER_cancel (sched,
4214                                n->timeout_task);
4215       n->timeout_task =
4216         GNUNET_SCHEDULER_add_delayed (sched,
4217                                       GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
4218                                       &neighbour_timeout_task, n);
4219       if (n->quota_violation_count > QUOTA_VIOLATION_DROP_THRESHOLD)
4220         {
4221           /* dropping message due to frequent inbound volume violations! */
4222           GNUNET_log (GNUNET_ERROR_TYPE_WARNING |
4223                       GNUNET_ERROR_TYPE_BULK,
4224                       _
4225                       ("Dropping incoming message due to repeated bandwidth quota (%u b/s) violations (total of %u).\n"), 
4226                       n->in_tracker.available_bytes_per_s__,
4227                       n->quota_violation_count);
4228           GNUNET_STATISTICS_update (stats,
4229                                     gettext_noop ("# bandwidth quota violations by other peers"),
4230                                     1,
4231                                     GNUNET_NO);
4232           return GNUNET_CONSTANTS_QUOTA_VIOLATION_TIMEOUT;
4233         }
4234 #if DEBUG_PING_PONG
4235           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4236                       "Received message of type %u from `%4s', sending to all clients.\n",
4237                       ntohs (message->type), GNUNET_i2s (peer));
4238 #endif
4239       switch (ntohs (message->type))
4240         {
4241         case GNUNET_MESSAGE_TYPE_HELLO:
4242           GNUNET_STATISTICS_update (stats,
4243                                     gettext_noop ("# HELLO messages received from other peers"),
4244                                     1,
4245                                     GNUNET_NO);
4246           process_hello (plugin, message);
4247           break;
4248         case GNUNET_MESSAGE_TYPE_TRANSPORT_PING:
4249           handle_ping (plugin, message, peer, sender_address, sender_address_len);
4250           break;
4251         case GNUNET_MESSAGE_TYPE_TRANSPORT_PONG:
4252           handle_pong (plugin, message, peer, sender_address, sender_address_len);
4253           break;
4254         default:
4255           handle_payload_message (message, n);
4256           break;
4257         }
4258     }  
4259   ret = GNUNET_BANDWIDTH_tracker_get_delay (&n->in_tracker, 0);
4260   if (ret.value > 0)
4261     {
4262       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4263                   "Throttling read (%llu bytes excess at %u b/s), waiting %llums before reading more.\n",
4264                   (unsigned long long) n->in_tracker.consumption_since_last_update__,
4265                   (unsigned int) n->in_tracker.available_bytes_per_s__,
4266                   (unsigned long long) ret.value);
4267       GNUNET_STATISTICS_update (stats,
4268                                 gettext_noop ("# ms throttling suggested"),
4269                                 (int64_t) ret.value,
4270                                 GNUNET_NO);      
4271     }
4272   return ret;
4273 }
4274
4275 /**
4276  * Handle START-message.  This is the first message sent to us
4277  * by any client which causes us to add it to our list.
4278  *
4279  * @param cls closure (always NULL)
4280  * @param client identification of the client
4281  * @param message the actual message
4282  */
4283 static void
4284 handle_start (void *cls,
4285               struct GNUNET_SERVER_Client *client,
4286               const struct GNUNET_MessageHeader *message)
4287 {
4288   struct TransportClient *c;
4289   struct ConnectInfoMessage cim;
4290   struct NeighbourList *n;
4291
4292 #if DEBUG_TRANSPORT
4293   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4294               "Received `%s' request from client\n", "START");
4295 #endif
4296   c = clients;
4297   while (c != NULL)
4298     {
4299       if (c->client == client)
4300         {
4301           /* client already on our list! */
4302           GNUNET_break (0);
4303           GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4304           return;
4305         }
4306       c = c->next;
4307     }
4308   c = GNUNET_malloc (sizeof (struct TransportClient));
4309   c->next = clients;
4310   clients = c;
4311   c->client = client;
4312   if (our_hello != NULL)
4313     {
4314 #if DEBUG_TRANSPORT
4315       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4316                   "Sending our own `%s' to new client\n", "HELLO");
4317 #endif
4318       transmit_to_client (c,
4319                           (const struct GNUNET_MessageHeader *) our_hello,
4320                           GNUNET_NO);
4321       /* tell new client about all existing connections */
4322       cim.header.size = htons (sizeof (struct ConnectInfoMessage));
4323       cim.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
4324       n = neighbours; 
4325       while (n != NULL)
4326         {
4327           if (GNUNET_YES == n->received_pong)
4328             {
4329               cim.id = n->id;
4330               cim.latency = GNUNET_TIME_relative_hton (n->latency);
4331               cim.distance = htonl (n->distance);
4332               transmit_to_client (c, &cim.header, GNUNET_NO);
4333             }
4334             n = n->next;
4335         }
4336     }
4337   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4338 }
4339
4340
4341 /**
4342  * Handle HELLO-message.
4343  *
4344  * @param cls closure (always NULL)
4345  * @param client identification of the client
4346  * @param message the actual message
4347  */
4348 static void
4349 handle_hello (void *cls,
4350               struct GNUNET_SERVER_Client *client,
4351               const struct GNUNET_MessageHeader *message)
4352 {
4353   int ret;
4354
4355   GNUNET_STATISTICS_update (stats,
4356                             gettext_noop ("# HELLOs received from clients"),
4357                             1,
4358                             GNUNET_NO);      
4359   ret = process_hello (NULL, message);
4360   GNUNET_SERVER_receive_done (client, ret);
4361 }
4362
4363
4364 /**
4365  * Closure for 'transmit_client_message'; followed by
4366  * 'msize' bytes of the actual message.
4367  */
4368 struct TransmitClientMessageContext 
4369 {
4370   /**
4371    * Client on whom's behalf we are sending.
4372    */
4373   struct GNUNET_SERVER_Client *client;
4374
4375   /**
4376    * Timeout for the transmission.
4377    */
4378   struct GNUNET_TIME_Absolute timeout;
4379   
4380   /**
4381    * Message priority.
4382    */
4383   uint32_t priority;
4384
4385   /**
4386    * Size of the message in bytes.
4387    */ 
4388   uint16_t msize;
4389 };
4390
4391
4392 /**
4393  * Schedule transmission of a message we got from a client to a peer.
4394  *
4395  * @param cls the 'struct TransmitClientMessageContext*'
4396  * @param n destination, or NULL on error (in that case, drop the message)
4397  */
4398 static void
4399 transmit_client_message (void *cls,
4400                          struct NeighbourList *n)
4401 {
4402   struct TransmitClientMessageContext *tcmc = cls;
4403   struct TransportClient *tc;
4404
4405   tc = clients;
4406   while ((tc != NULL) && (tc->client != tcmc->client))
4407     tc = tc->next;
4408
4409   if (n != NULL)
4410     {
4411       transmit_to_peer (tc, NULL, tcmc->priority, 
4412                         GNUNET_TIME_absolute_get_remaining (tcmc->timeout),
4413                         (char *)&tcmc[1],
4414                         tcmc->msize, GNUNET_NO, n);
4415     }
4416   GNUNET_SERVER_receive_done (tcmc->client, GNUNET_OK);
4417   GNUNET_SERVER_client_drop (tcmc->client);
4418   GNUNET_free (tcmc);
4419 }
4420
4421
4422 /**
4423  * Handle SEND-message.
4424  *
4425  * @param cls closure (always NULL)
4426  * @param client identification of the client
4427  * @param message the actual message
4428  */
4429 static void
4430 handle_send (void *cls,
4431              struct GNUNET_SERVER_Client *client,
4432              const struct GNUNET_MessageHeader *message)
4433 {
4434   const struct OutboundMessage *obm;
4435   const struct GNUNET_MessageHeader *obmm;
4436   struct TransmitClientMessageContext *tcmc;
4437   uint16_t size;
4438   uint16_t msize;
4439
4440   size = ntohs (message->size);
4441   if (size <
4442       sizeof (struct OutboundMessage) + sizeof (struct GNUNET_MessageHeader))
4443     {
4444       GNUNET_break (0);
4445       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4446       return;
4447     }
4448   GNUNET_STATISTICS_update (stats,
4449                             gettext_noop ("# payload received for other peers"),
4450                             size,
4451                             GNUNET_NO);      
4452   obm = (const struct OutboundMessage *) message;
4453   obmm = (const struct GNUNET_MessageHeader *) &obm[1];
4454   msize = size - sizeof (struct OutboundMessage);
4455 #if DEBUG_TRANSPORT
4456   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4457               "Received `%s' request from client with target `%4s' and message of type %u and size %u\n",
4458               "SEND", GNUNET_i2s (&obm->peer),
4459               ntohs (obmm->type),
4460               msize);
4461 #endif
4462   tcmc = GNUNET_malloc (sizeof (struct TransmitClientMessageContext) + msize);
4463   tcmc->client = client;
4464   tcmc->priority = ntohl (obm->priority);
4465   tcmc->timeout = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_relative_ntoh (obm->timeout));
4466   tcmc->msize = msize;
4467   memcpy (&tcmc[1], obmm, msize);
4468   GNUNET_SERVER_client_keep (client);
4469   setup_peer_check_blacklist (&obm->peer, GNUNET_YES,
4470                               &transmit_client_message,
4471                               tcmc);
4472 }
4473
4474
4475 /**
4476  * Handle SET_QUOTA-message.
4477  *
4478  * @param cls closure (always NULL)
4479  * @param client identification of the client
4480  * @param message the actual message
4481  */
4482 static void
4483 handle_set_quota (void *cls,
4484                   struct GNUNET_SERVER_Client *client,
4485                   const struct GNUNET_MessageHeader *message)
4486 {
4487   const struct QuotaSetMessage *qsm =
4488     (const struct QuotaSetMessage *) message;
4489   struct NeighbourList *n;
4490   
4491   GNUNET_STATISTICS_update (stats,
4492                             gettext_noop ("# SET QUOTA messages received"),
4493                             1,
4494                             GNUNET_NO);      
4495   n = find_neighbour (&qsm->peer);
4496   if (n == NULL)
4497     {
4498       GNUNET_SERVER_receive_done (client, GNUNET_OK);
4499       GNUNET_STATISTICS_update (stats,
4500                                 gettext_noop ("# SET QUOTA messages ignored (no such peer)"),
4501                                 1,
4502                                 GNUNET_NO);      
4503       return;
4504     }
4505 #if DEBUG_TRANSPORT
4506   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4507               "Received `%s' request (new quota %u, old quota %u) from client for peer `%4s'\n",
4508               "SET_QUOTA", 
4509               (unsigned int) ntohl (qsm->quota.value__),
4510               (unsigned int) n->in_tracker.available_bytes_per_s__,
4511               GNUNET_i2s (&qsm->peer));
4512 #endif
4513   GNUNET_BANDWIDTH_tracker_update_quota (&n->in_tracker,
4514                                          qsm->quota);
4515   if (0 == ntohl (qsm->quota.value__)) 
4516     disconnect_neighbour (n, GNUNET_NO);    
4517   GNUNET_SERVER_receive_done (client, GNUNET_OK);
4518 }
4519
4520
4521 /**
4522  * Take the given address and append it to the set of results send back to
4523  * the client.
4524  * 
4525  * @param cls the transmission context used ('struct GNUNET_SERVER_TransmitContext*')
4526  * @param address the resolved name, NULL to indicate the last response
4527  */
4528 static void
4529 transmit_address_to_client (void *cls, const char *address)
4530 {
4531   struct GNUNET_SERVER_TransmitContext *tc = cls;
4532   size_t slen;
4533
4534   if (NULL == address)
4535     slen = 0;
4536   else
4537     slen = strlen (address) + 1;
4538   GNUNET_SERVER_transmit_context_append_data (tc, address, slen,
4539                                               GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_REPLY);
4540   if (NULL == address)
4541     GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
4542 }
4543
4544
4545 /**
4546  * Handle AddressLookup-message.
4547  *
4548  * @param cls closure (always NULL)
4549  * @param client identification of the client
4550  * @param message the actual message
4551  */
4552 static void
4553 handle_address_lookup (void *cls,
4554                        struct GNUNET_SERVER_Client *client,
4555                        const struct GNUNET_MessageHeader *message)
4556 {
4557   const struct AddressLookupMessage *alum;
4558   struct TransportPlugin *lsPlugin;
4559   const char *nameTransport;
4560   const char *address;
4561   uint16_t size;
4562   struct GNUNET_SERVER_TransmitContext *tc;
4563   struct GNUNET_TIME_Absolute timeout;
4564   struct GNUNET_TIME_Relative rtimeout;
4565   int32_t numeric;
4566
4567   size = ntohs (message->size);
4568   if (size < sizeof (struct AddressLookupMessage))
4569     {
4570       GNUNET_break_op (0);
4571       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4572       return;
4573     }
4574   alum = (const struct AddressLookupMessage *) message;
4575   uint32_t addressLen = ntohl (alum->addrlen);
4576   if (size <= sizeof (struct AddressLookupMessage) + addressLen)
4577     {
4578       GNUNET_break_op (0);
4579       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4580       return;
4581     }
4582   address = (const char *) &alum[1];
4583   nameTransport = (const char *) &address[addressLen];
4584   if (nameTransport
4585       [size - sizeof (struct AddressLookupMessage) - addressLen - 1] != '\0')
4586     {
4587       GNUNET_break_op (0);
4588       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
4589       return;
4590     }
4591   timeout = GNUNET_TIME_absolute_ntoh (alum->timeout);
4592   rtimeout = GNUNET_TIME_absolute_get_remaining (timeout);
4593   numeric = ntohl (alum->numeric_only);
4594   lsPlugin = find_transport (nameTransport);
4595   if (NULL == lsPlugin)
4596     {
4597       tc = GNUNET_SERVER_transmit_context_create (client);
4598       GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
4599                                                   GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_REPLY);
4600       GNUNET_SERVER_transmit_context_run (tc, rtimeout);
4601       return;
4602     }
4603   tc = GNUNET_SERVER_transmit_context_create (client);
4604   lsPlugin->api->address_pretty_printer (lsPlugin->api->cls,
4605                                          nameTransport,
4606                                          address, addressLen, 
4607                                          numeric,
4608                                          rtimeout,
4609                                          &transmit_address_to_client, tc);
4610 }
4611
4612 /**
4613  * List of handlers for the messages understood by this
4614  * service.
4615  */
4616 static struct GNUNET_SERVER_MessageHandler handlers[] = {
4617   {&handle_start, NULL,
4618    GNUNET_MESSAGE_TYPE_TRANSPORT_START, 0},
4619   {&handle_hello, NULL,
4620    GNUNET_MESSAGE_TYPE_HELLO, 0},
4621   {&handle_send, NULL,
4622    GNUNET_MESSAGE_TYPE_TRANSPORT_SEND, 0},
4623   {&handle_set_quota, NULL,
4624    GNUNET_MESSAGE_TYPE_TRANSPORT_SET_QUOTA, sizeof (struct QuotaSetMessage)},
4625   {&handle_address_lookup, NULL,
4626    GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_LOOKUP,
4627    0},
4628   {&handle_blacklist_init, NULL,
4629    GNUNET_MESSAGE_TYPE_TRANSPORT_BLACKLIST_INIT, sizeof (struct GNUNET_MessageHeader)},
4630   {&handle_blacklist_reply, NULL,
4631    GNUNET_MESSAGE_TYPE_TRANSPORT_BLACKLIST_REPLY, sizeof (struct BlacklistMessage)},
4632   {NULL, NULL, 0, 0}
4633 };
4634
4635
4636 /**
4637  * Setup the environment for this plugin.
4638  */
4639 static void
4640 create_environment (struct TransportPlugin *plug)
4641 {
4642   plug->env.cfg = cfg;
4643   plug->env.sched = sched;
4644   plug->env.my_identity = &my_identity;
4645   plug->env.cls = plug;
4646   plug->env.receive = &plugin_env_receive;
4647   plug->env.notify_address = &plugin_env_notify_address;
4648   plug->env.session_end = &plugin_env_session_end;
4649   plug->env.max_connections = max_connect_per_transport;
4650   plug->env.stats = stats;
4651 }
4652
4653
4654 /**
4655  * Start the specified transport (load the plugin).
4656  */
4657 static void
4658 start_transport (struct GNUNET_SERVER_Handle *server, 
4659                  const char *name)
4660 {
4661   struct TransportPlugin *plug;
4662   char *libname;
4663
4664   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4665               _("Loading `%s' transport plugin\n"), name);
4666   GNUNET_asprintf (&libname, "libgnunet_plugin_transport_%s", name);
4667   plug = GNUNET_malloc (sizeof (struct TransportPlugin));
4668   create_environment (plug);
4669   plug->short_name = GNUNET_strdup (name);
4670   plug->lib_name = libname;
4671   plug->next = plugins;
4672   plugins = plug;
4673   plug->api = GNUNET_PLUGIN_load (libname, &plug->env);
4674   if (plug->api == NULL)
4675     {
4676       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4677                   _("Failed to load transport plugin for `%s'\n"), name);
4678       GNUNET_free (plug->short_name);
4679       plugins = plug->next;
4680       GNUNET_free (libname);
4681       GNUNET_free (plug);
4682     }
4683 }
4684
4685
4686 /**
4687  * Called whenever a client is disconnected.  Frees our
4688  * resources associated with that client.
4689  *
4690  * @param cls closure
4691  * @param client identification of the client
4692  */
4693 static void
4694 client_disconnect_notification (void *cls,
4695                                 struct GNUNET_SERVER_Client *client)
4696 {
4697   struct TransportClient *pos;
4698   struct TransportClient *prev;
4699   struct ClientMessageQueueEntry *mqe;
4700   struct Blacklisters *bl;
4701   struct BlacklistCheck *bc;
4702
4703   if (client == NULL)
4704     return;
4705 #if DEBUG_TRANSPORT
4706   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
4707               "Client disconnected, cleaning up.\n");
4708 #endif
4709   /* clean up blacklister */
4710   bl = bl_head;
4711   while (bl != NULL)
4712     {
4713       if (bl->client == client)
4714         {
4715           bc = bc_head;
4716           while (bc != NULL)
4717             {
4718               if (bc->bl_pos == bl)
4719                 {
4720                   bc->bl_pos = bl->next;
4721                   if (bc->th != NULL)
4722                     {
4723                       GNUNET_CONNECTION_notify_transmit_ready_cancel (bc->th);
4724                       bc->th = NULL;                  
4725                     }
4726                   if (bc->task == GNUNET_SCHEDULER_NO_TASK)
4727                     bc->task = GNUNET_SCHEDULER_add_now (sched,
4728                                                          &do_blacklist_check,
4729                                                          bc);
4730                   break;
4731                 }
4732               bc = bc->next;
4733             }
4734           GNUNET_CONTAINER_DLL_remove (bl_head,
4735                                        bl_tail,
4736                                        bl);
4737           GNUNET_SERVER_client_drop (bl->client);
4738           GNUNET_free (bl);
4739           break;
4740         }
4741       bl = bl->next;
4742     }
4743   /* clean up 'normal' clients */
4744   prev = NULL;
4745   pos = clients;
4746   while ((pos != NULL) && (pos->client != client))
4747     {
4748       prev = pos;
4749       pos = pos->next;
4750     }
4751   if (pos == NULL)
4752     return;
4753   while (NULL != (mqe = pos->message_queue_head))
4754     {
4755       GNUNET_CONTAINER_DLL_remove (pos->message_queue_head,
4756                                    pos->message_queue_tail,
4757                                    mqe);
4758       pos->message_count--;
4759       GNUNET_free (mqe);
4760     }
4761   if (prev == NULL)
4762     clients = pos->next;
4763   else
4764     prev->next = pos->next;
4765   if (GNUNET_YES == pos->tcs_pending)
4766     {
4767       pos->client = NULL;
4768       return;
4769     }
4770   if (pos->th != NULL)
4771     {
4772       GNUNET_CONNECTION_notify_transmit_ready_cancel (pos->th);
4773       pos->th = NULL;
4774     }
4775   GNUNET_break (0 == pos->message_count);
4776   GNUNET_free (pos);
4777 }
4778
4779
4780 /**
4781  * Function called when the service shuts down.  Unloads our plugins
4782  * and cancels pending validations.
4783  *
4784  * @param cls closure, unused
4785  * @param tc task context (unused)
4786  */
4787 static void
4788 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4789 {
4790   struct TransportPlugin *plug;
4791   struct OwnAddressList *al;
4792   struct CheckHelloValidatedContext *chvc;
4793
4794   while (neighbours != NULL)
4795     disconnect_neighbour (neighbours, GNUNET_NO);
4796 #if DEBUG_TRANSPORT
4797   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4798               "Transport service is unloading plugins...\n");
4799 #endif
4800   while (NULL != (plug = plugins))
4801     {
4802       plugins = plug->next;
4803       if (plug->address_update_task != GNUNET_SCHEDULER_NO_TASK)
4804         {
4805           GNUNET_SCHEDULER_cancel (plug->env.sched, 
4806                                    plug->address_update_task);
4807           plug->address_update_task = GNUNET_SCHEDULER_NO_TASK;
4808         }
4809       GNUNET_break (NULL == GNUNET_PLUGIN_unload (plug->lib_name, plug->api));
4810       GNUNET_free (plug->lib_name);
4811       GNUNET_free (plug->short_name);
4812       while (NULL != (al = plug->addresses))
4813         {
4814           plug->addresses = al->next;
4815           GNUNET_free (al);
4816         }
4817       GNUNET_free (plug);
4818     }
4819   if (my_private_key != NULL)
4820     GNUNET_CRYPTO_rsa_key_free (my_private_key);
4821   GNUNET_free_non_null (our_hello);
4822
4823   GNUNET_CONTAINER_multihashmap_iterate (validation_map,
4824                                          &abort_validation,
4825                                          NULL);
4826   GNUNET_CONTAINER_multihashmap_destroy (validation_map);
4827   validation_map = NULL;
4828
4829   /* free 'chvc' data structure */
4830   while (NULL != (chvc = chvc_head))
4831     {
4832       chvc_head = chvc->next;
4833       if (chvc->piter != NULL)
4834         GNUNET_PEERINFO_iterate_cancel (chvc->piter);      
4835       GNUNET_assert (chvc->ve_count == 0);
4836       GNUNET_free (chvc);
4837     }
4838   chvc_tail = NULL;
4839
4840   if (stats != NULL)
4841     {
4842       GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
4843       stats = NULL;
4844     }
4845   if (peerinfo != NULL)
4846     {
4847       GNUNET_PEERINFO_disconnect (peerinfo);
4848       peerinfo = NULL;
4849     }
4850   /* Can we assume those are gone by now, or do we need to clean up
4851      explicitly!? */
4852   GNUNET_break (bl_head == NULL);
4853   GNUNET_break (bc_head == NULL);
4854 }
4855
4856
4857 /**
4858  * Initiate transport service.
4859  *
4860  * @param cls closure
4861  * @param s scheduler to use
4862  * @param serv the initialized server
4863  * @param c configuration to use
4864  */
4865 static void
4866 run (void *cls,
4867      struct GNUNET_SCHEDULER_Handle *s,
4868      struct GNUNET_SERVER_Handle *serv,
4869      const struct GNUNET_CONFIGURATION_Handle *c)
4870 {
4871   char *plugs;
4872   char *pos;
4873   int no_transports;
4874   unsigned long long tneigh;
4875   char *keyfile;
4876
4877   sched = s;
4878   cfg = c;
4879   stats = GNUNET_STATISTICS_create (sched, "transport", cfg);
4880   validation_map = GNUNET_CONTAINER_multihashmap_create (64);
4881   /* parse configuration */
4882   if ((GNUNET_OK !=
4883        GNUNET_CONFIGURATION_get_value_number (c,
4884                                               "TRANSPORT",
4885                                               "NEIGHBOUR_LIMIT",
4886                                               &tneigh)) ||
4887       (GNUNET_OK !=
4888        GNUNET_CONFIGURATION_get_value_filename (c,
4889                                                 "GNUNETD",
4890                                                 "HOSTKEY", &keyfile)))
4891     {
4892       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4893                   _
4894                   ("Transport service is lacking key configuration settings.  Exiting.\n"));
4895       GNUNET_SCHEDULER_shutdown (s);
4896       if (stats != NULL)
4897         {
4898           GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
4899           stats = NULL;
4900         }
4901       GNUNET_CONTAINER_multihashmap_destroy (validation_map);
4902       validation_map = NULL;
4903       return;
4904     }
4905   max_connect_per_transport = (uint32_t) tneigh;
4906   peerinfo = GNUNET_PEERINFO_connect (sched, cfg);
4907   if (peerinfo == NULL)
4908     {
4909       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4910                   _("Could not access PEERINFO service.  Exiting.\n"));     
4911       GNUNET_SCHEDULER_shutdown (s);
4912       if (stats != NULL)
4913         {
4914           GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
4915           stats = NULL;
4916         }
4917       GNUNET_CONTAINER_multihashmap_destroy (validation_map);
4918       validation_map = NULL;
4919       GNUNET_free (keyfile);
4920       return;
4921     }
4922   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
4923   GNUNET_free (keyfile);
4924   if (my_private_key == NULL)
4925     {
4926       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4927                   _
4928                   ("Transport service could not access hostkey.  Exiting.\n"));
4929       GNUNET_SCHEDULER_shutdown (s);
4930       if (stats != NULL)
4931         {
4932           GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
4933           stats = NULL;
4934         }
4935       GNUNET_CONTAINER_multihashmap_destroy (validation_map);
4936       validation_map = NULL;
4937       return;
4938     }
4939   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
4940   GNUNET_CRYPTO_hash (&my_public_key,
4941                       sizeof (my_public_key), &my_identity.hashPubKey);
4942   /* setup notification */
4943   server = serv;
4944   GNUNET_SERVER_disconnect_notify (server,
4945                                    &client_disconnect_notification, NULL);
4946   /* load plugins... */
4947   no_transports = 1;
4948   if (GNUNET_OK ==
4949       GNUNET_CONFIGURATION_get_value_string (c,
4950                                              "TRANSPORT", "PLUGINS", &plugs))
4951     {
4952       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4953                   _("Starting transport plugins `%s'\n"), plugs);
4954       pos = strtok (plugs, " ");
4955       while (pos != NULL)
4956         {
4957           start_transport (server, pos);
4958           no_transports = 0;
4959           pos = strtok (NULL, " ");
4960         }
4961       GNUNET_free (plugs);
4962     }
4963   GNUNET_SCHEDULER_add_delayed (sched,
4964                                 GNUNET_TIME_UNIT_FOREVER_REL,
4965                                 &shutdown_task, NULL);
4966   if (no_transports)
4967     refresh_hello ();
4968
4969 #if DEBUG_TRANSPORT
4970   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Transport service ready.\n"));
4971 #endif
4972   /* If we have a blacklist file, read from it */
4973   read_blacklist_file(cfg);
4974   /* process client requests */
4975   GNUNET_SERVER_add_handlers (server, handlers);
4976 }
4977
4978
4979 /**
4980  * The main function for the transport service.
4981  *
4982  * @param argc number of arguments from the command line
4983  * @param argv command line arguments
4984  * @return 0 ok, 1 on error
4985  */
4986 int
4987 main (int argc, char *const *argv)
4988 {
4989   a2s (NULL, NULL, 0); /* make compiler happy */
4990   return (GNUNET_OK ==
4991           GNUNET_SERVICE_run (argc,
4992                               argv,
4993                               "transport",
4994                               GNUNET_SERVICE_OPTION_NONE,
4995                               &run, NULL)) ? 0 : 1;
4996 }
4997
4998 /* end of gnunet-service-transport.c */