935d959bec45da68fa5d2068f0da38510198d68d
[oweals/gnunet.git] / src / core / gnunet-service-core.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 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file core/gnunet-service-core.c
23  * @brief high-level P2P messaging
24  * @author Christian Grothoff
25  *
26  * Considerations for later:
27  * - check that hostkey used by transport (for HELLOs) is the
28  *   same as the hostkey that we are using!
29  * - add code to send PINGs if we are about to time-out otherwise
30  * - optimize lookup (many O(n) list traversals
31  *   could ideally be changed to O(1) hash map lookups)
32  */
33 #include "platform.h"
34 #include "gnunet_constants.h"
35 #include "gnunet_util_lib.h"
36 #include "gnunet_hello_lib.h"
37 #include "gnunet_peerinfo_service.h"
38 #include "gnunet_protocols.h"
39 #include "gnunet_signatures.h"
40 #include "gnunet_statistics_service.h"
41 #include "gnunet_transport_service.h"
42 #include "core.h"
43
44
45 #define DEBUG_HANDSHAKE GNUNET_NO
46
47 #define DEBUG_CORE_QUOTA GNUNET_NO
48
49 /**
50  * Receive and send buffer windows grow over time.  For
51  * how long can 'unused' bandwidth accumulate before we
52  * need to cap it?  (specified in seconds).
53  */
54 #define MAX_WINDOW_TIME_S (5 * 60)
55
56 /**
57  * How many messages do we queue up at most for optional
58  * notifications to a client?  (this can cause notifications
59  * about outgoing messages to be dropped).
60  */
61 #define MAX_NOTIFY_QUEUE 1024
62
63 /**
64  * Minimum bandwidth (out) to assign to any connected peer.
65  * Should be rather low; values larger than DEFAULT_BW_IN_OUT make no
66  * sense.
67  */
68 #define MIN_BANDWIDTH_PER_PEER GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT
69
70 /**
71  * After how much time past the "official" expiration time do
72  * we discard messages?  Should not be zero since we may 
73  * intentionally defer transmission until close to the deadline
74  * and then may be slightly past the deadline due to inaccuracy
75  * in sleep and our own CPU consumption.
76  */
77 #define PAST_EXPIRATION_DISCARD_TIME GNUNET_TIME_UNIT_SECONDS
78
79 /**
80  * What is the maximum delay for a SET_KEY message?
81  */
82 #define MAX_SET_KEY_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
83
84 /**
85  * How long do we wait for SET_KEY confirmation initially?
86  */
87 #define INITIAL_SET_KEY_RETRY_FREQUENCY GNUNET_TIME_relative_multiply (MAX_SET_KEY_DELAY, 1)
88
89 /**
90  * What is the maximum delay for a PING message?
91  */
92 #define MAX_PING_DELAY GNUNET_TIME_relative_multiply (MAX_SET_KEY_DELAY, 2)
93
94 /**
95  * What is the maximum delay for a PONG message?
96  */
97 #define MAX_PONG_DELAY GNUNET_TIME_relative_multiply (MAX_PING_DELAY, 2)
98
99 /**
100  * What is the minimum frequency for a PING message?
101  */
102 #define MIN_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
103
104 /**
105  * How often do we recalculate bandwidth quotas?
106  */
107 #define QUOTA_UPDATE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
108
109 /**
110  * What is the priority for a SET_KEY message?
111  */
112 #define SET_KEY_PRIORITY 0xFFFFFF
113
114 /**
115  * What is the priority for a PING message?
116  */
117 #define PING_PRIORITY 0xFFFFFF
118
119 /**
120  * What is the priority for a PONG message?
121  */
122 #define PONG_PRIORITY 0xFFFFFF
123
124 /**
125  * How many messages do we queue per peer at most?  Must be at
126  * least two.
127  */
128 #define MAX_PEER_QUEUE_SIZE 16
129
130 /**
131  * How many non-mandatory messages do we queue per client at most?
132  */
133 #define MAX_CLIENT_QUEUE_SIZE 32
134
135 /**
136  * What is the maximum age of a message for us to consider
137  * processing it?  Note that this looks at the timestamp used
138  * by the other peer, so clock skew between machines does
139  * come into play here.  So this should be picked high enough
140  * so that a little bit of clock skew does not prevent peers
141  * from connecting to us.
142  */
143 #define MAX_MESSAGE_AGE GNUNET_TIME_UNIT_DAYS
144
145
146 /**
147  * State machine for our P2P encryption handshake.  Everyone starts in
148  * "DOWN", if we receive the other peer's key (other peer initiated)
149  * we start in state RECEIVED (since we will immediately send our
150  * own); otherwise we start in SENT.  If we get back a PONG from
151  * within either state, we move up to CONFIRMED (the PONG will always
152  * be sent back encrypted with the key we sent to the other peer).
153  */
154 enum PeerStateMachine
155 {
156   /**
157    * No handshake yet.
158    */
159   PEER_STATE_DOWN,
160
161   /**
162    * We've sent our session key.
163    */
164   PEER_STATE_KEY_SENT,
165   
166   /**
167    * We've received the other peers session key.
168    */
169   PEER_STATE_KEY_RECEIVED,
170
171   /**
172    * The other peer has confirmed our session key with a message
173    * encrypted with his session key (which we got).  Session is now fully up.
174    */
175   PEER_STATE_KEY_CONFIRMED
176 };
177
178
179 /**
180  * Encapsulation for encrypted messages exchanged between
181  * peers.  Followed by the actual encrypted data.
182  */
183 struct EncryptedMessage
184 {
185   /**
186    * Message type is either CORE_ENCRYPTED_MESSAGE.
187    */
188   struct GNUNET_MessageHeader header;
189
190   /**
191    * Random value used for IV generation.
192    */
193   uint32_t iv_seed GNUNET_PACKED;
194
195   /**
196    * MAC of the encrypted message (starting at 'sequence_number'),
197    * used to verify message integrity. Everything after this value
198    * (excluding this value itself) will be encrypted and authenticated.
199    * ENCRYPTED_HEADER_SIZE must be set to the offset of the *next* field.
200    */
201   GNUNET_HashCode hmac;
202
203   /**
204    * Sequence number, in network byte order.  This field
205    * must be the first encrypted/decrypted field
206    */
207   uint32_t sequence_number GNUNET_PACKED;
208
209   /**
210    * Desired bandwidth (how much we should send to this peer / how
211    * much is the sender willing to receive)?
212    */
213   struct GNUNET_BANDWIDTH_Value32NBO inbound_bw_limit;
214
215   /**
216    * Timestamp.  Used to prevent reply of ancient messages
217    * (recent messages are caught with the sequence number).
218    */
219   struct GNUNET_TIME_AbsoluteNBO timestamp;
220
221 };
222
223
224 /**
225  * Number of bytes (at the beginning) of "struct EncryptedMessage"
226  * that are NOT encrypted.
227  */
228 #define ENCRYPTED_HEADER_SIZE (offsetof(struct EncryptedMessage, sequence_number))
229
230
231 /**
232  * We're sending an (encrypted) PING to the other peer to check if he
233  * can decrypt.  The other peer should respond with a PONG with the
234  * same content, except this time encrypted with the receiver's key.
235  */
236 struct PingMessage
237 {
238   /**
239    * Message type is CORE_PING.
240    */
241   struct GNUNET_MessageHeader header;
242   
243   /**
244    * Seed for the IV
245    */
246   uint32_t iv_seed GNUNET_PACKED;
247
248   /**
249    * Intended target of the PING, used primarily to check
250    * that decryption actually worked.
251    */
252   struct GNUNET_PeerIdentity target;
253
254   /**
255    * Random number chosen to make reply harder.
256    */
257   uint32_t challenge GNUNET_PACKED;
258 };
259
260
261
262 /**
263  * Response to a PING.  Includes data from the original PING
264  * plus initial bandwidth quota information.
265  */
266 struct PongMessage
267 {
268   /**
269    * Message type is CORE_PONG.
270    */
271   struct GNUNET_MessageHeader header;
272     
273   /**
274    * Seed for the IV
275    */
276   uint32_t iv_seed GNUNET_PACKED;
277
278   /**
279    * Random number to make faking the reply harder.  Must be
280    * first field after header (this is where we start to encrypt!).
281    */
282   uint32_t challenge GNUNET_PACKED;
283
284   /**
285    * Desired bandwidth (how much we should send to this
286    * peer / how much is the sender willing to receive).
287    */
288   struct GNUNET_BANDWIDTH_Value32NBO inbound_bw_limit;
289
290   /**
291    * Intended target of the PING, used primarily to check
292    * that decryption actually worked.
293    */
294   struct GNUNET_PeerIdentity target;
295 };
296
297
298 /**
299  * Message transmitted to set (or update) a session key.
300  */
301 struct SetKeyMessage
302 {
303
304   /**
305    * Message type is either CORE_SET_KEY.
306    */
307   struct GNUNET_MessageHeader header;
308
309   /**
310    * Status of the sender (should be in "enum PeerStateMachine"), nbo.
311    */
312   int32_t sender_status GNUNET_PACKED;
313
314   /**
315    * Purpose of the signature, will be
316    * GNUNET_SIGNATURE_PURPOSE_SET_KEY.
317    */
318   struct GNUNET_CRYPTO_RsaSignaturePurpose purpose;
319
320   /**
321    * At what time was this key created?
322    */
323   struct GNUNET_TIME_AbsoluteNBO creation_time;
324
325   /**
326    * The encrypted session key.
327    */
328   struct GNUNET_CRYPTO_RsaEncryptedData encrypted_key;
329
330   /**
331    * Who is the intended recipient?
332    */
333   struct GNUNET_PeerIdentity target;
334
335   /**
336    * Signature of the stuff above (starting at purpose).
337    */
338   struct GNUNET_CRYPTO_RsaSignature signature;
339
340 };
341
342
343 /**
344  * Message waiting for transmission. This struct
345  * is followed by the actual content of the message.
346  */
347 struct MessageEntry
348 {
349
350   /**
351    * We keep messages in a doubly linked list.
352    */
353   struct MessageEntry *next;
354
355   /**
356    * We keep messages in a doubly linked list.
357    */
358   struct MessageEntry *prev;
359
360   /**
361    * By when are we supposed to transmit this message?
362    */
363   struct GNUNET_TIME_Absolute deadline;
364
365   /**
366    * By when are we supposed to transmit this message (after
367    * giving slack)?
368    */
369   struct GNUNET_TIME_Absolute slack_deadline;
370
371   /**
372    * How important is this message to us?
373    */
374   unsigned int priority;
375
376   /**
377    * If this is a SET_KEY message, what was our connection status when this
378    * message was queued?
379    */
380   enum PeerStateMachine sender_status;
381
382   /**
383    * Is this a SET_KEY message?
384    */
385   int is_setkey;
386
387   /**
388    * How long is the message? (number of bytes following
389    * the "struct MessageEntry", but not including the
390    * size of "struct MessageEntry" itself!)
391    */
392   uint16_t size;
393
394   /**
395    * Was this message selected for transmission in the
396    * current round? GNUNET_YES or GNUNET_NO.
397    */
398   int8_t do_transmit;
399
400   /**
401    * Did we give this message some slack (delayed sending) previously
402    * (and hence should not give it any more slack)? GNUNET_YES or
403    * GNUNET_NO.
404    */
405   int8_t got_slack;
406
407 };
408
409
410 /**
411  * Record kept for each request for transmission issued by a 
412  * client that is still pending.
413  */
414 struct ClientActiveRequest;
415
416 /**
417  * Data kept per neighbouring peer.
418  */
419 struct Neighbour
420 {
421
422   /**
423    * Unencrypted messages destined for this peer.
424    */
425   struct MessageEntry *messages;
426
427   /**
428    * Head of the batched, encrypted message queue (already ordered,
429    * transmit starting with the head).
430    */
431   struct MessageEntry *encrypted_head;
432
433   /**
434    * Tail of the batched, encrypted message queue (already ordered,
435    * append new messages to tail)
436    */
437   struct MessageEntry *encrypted_tail;
438
439   /**
440    * Head of list of requests from clients for transmission to 
441    * this peer.
442    */
443   struct ClientActiveRequest *active_client_request_head;
444
445   /**
446    * Tail of list of requests from clients for transmission to 
447    * this peer.
448    */
449   struct ClientActiveRequest *active_client_request_tail;
450
451   /**
452    * Handle for pending requests for transmission to this peer
453    * with the transport service.  NULL if no request is pending.
454    */
455   struct GNUNET_TRANSPORT_TransmitHandle *th;
456
457   /**
458    * Public key of the neighbour, NULL if we don't have it yet.
459    */
460   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *public_key;
461
462   /**
463    * We received a PING message before we got the "public_key"
464    * (or the SET_KEY).  We keep it here until we have a key
465    * to decrypt it.  NULL if no PING is pending.
466    */
467   struct PingMessage *pending_ping;
468
469   /**
470    * We received a PONG message before we got the "public_key"
471    * (or the SET_KEY).  We keep it here until we have a key
472    * to decrypt it.  NULL if no PONG is pending.
473    */
474   struct PongMessage *pending_pong;
475
476   /**
477    * Non-NULL if we are currently looking up HELLOs for this peer.
478    * for this peer.
479    */
480   struct GNUNET_PEERINFO_IteratorContext *pitr;
481
482   /**
483    * SetKeyMessage to transmit, NULL if we are not currently trying
484    * to send one.
485    */
486   struct SetKeyMessage *skm;
487
488   /**
489    * Performance data for the peer.
490    */ 
491   struct GNUNET_TRANSPORT_ATS_Information *ats;
492
493   /**
494    * Identity of the neighbour.
495    */
496   struct GNUNET_PeerIdentity peer;
497
498   /**
499    * Key we use to encrypt our messages for the other peer
500    * (initialized by us when we do the handshake).
501    */
502   struct GNUNET_CRYPTO_AesSessionKey encrypt_key;
503
504   /**
505    * Key we use to decrypt messages from the other peer
506    * (given to us by the other peer during the handshake).
507    */
508   struct GNUNET_CRYPTO_AesSessionKey decrypt_key;
509
510   /**
511    * ID of task used for re-trying plaintext scheduling.
512    */
513   GNUNET_SCHEDULER_TaskIdentifier retry_plaintext_task;
514
515   /**
516    * ID of task used for re-trying SET_KEY and PING message.
517    */
518   GNUNET_SCHEDULER_TaskIdentifier retry_set_key_task;
519
520   /**
521    * ID of task used for updating bandwidth quota for this neighbour.
522    */
523   GNUNET_SCHEDULER_TaskIdentifier quota_update_task;
524
525   /**
526    * ID of task used for sending keep-alive pings.
527    */
528   GNUNET_SCHEDULER_TaskIdentifier keep_alive_task;
529
530   /**
531    * ID of task used for cleaning up dead neighbour entries.
532    */
533   GNUNET_SCHEDULER_TaskIdentifier dead_clean_task;
534
535   /**
536    * At what time did we generate our encryption key?
537    */
538   struct GNUNET_TIME_Absolute encrypt_key_created;
539
540   /**
541    * At what time did the other peer generate the decryption key?
542    */
543   struct GNUNET_TIME_Absolute decrypt_key_created;
544
545   /**
546    * At what time did we initially establish (as in, complete session
547    * key handshake) this connection?  Should be zero if status != KEY_CONFIRMED.
548    */
549   struct GNUNET_TIME_Absolute time_established;
550
551   /**
552    * At what time did we last receive an encrypted message from the
553    * other peer?  Should be zero if status != KEY_CONFIRMED.
554    */
555   struct GNUNET_TIME_Absolute last_activity;
556
557   /**
558    * At what frequency are we currently re-trying SET_KEY messages?
559    */
560   struct GNUNET_TIME_Relative set_key_retry_frequency;
561
562   /**
563    * Tracking bandwidth for sending to this peer.
564    */
565   struct GNUNET_BANDWIDTH_Tracker available_send_window;
566
567   /**
568    * Tracking bandwidth for receiving from this peer.
569    */
570   struct GNUNET_BANDWIDTH_Tracker available_recv_window;
571
572   /**
573    * How valueable were the messages of this peer recently?
574    */
575   unsigned long long current_preference;
576
577   /**
578    * Number of entries in 'ats'.
579    */ 
580   unsigned int ats_count;
581
582   /**
583    * Bit map indicating which of the 32 sequence numbers before the last
584    * were received (good for accepting out-of-order packets and
585    * estimating reliability of the connection)
586    */
587   unsigned int last_packets_bitmap;
588
589   /**
590    * last sequence number received on this connection (highest)
591    */
592   uint32_t last_sequence_number_received;
593
594   /**
595    * last sequence number transmitted
596    */
597   uint32_t last_sequence_number_sent;
598
599   /**
600    * Available bandwidth in for this peer (current target).
601    */
602   struct GNUNET_BANDWIDTH_Value32NBO bw_in;    
603
604   /**
605    * Available bandwidth out for this peer (current target).
606    */
607   struct GNUNET_BANDWIDTH_Value32NBO bw_out;  
608
609   /**
610    * Internal bandwidth limit set for this peer (initially typically
611    * set to "-1").  Actual "bw_out" is MIN of
612    * "bpm_out_internal_limit" and "bw_out_external_limit".
613    */
614   struct GNUNET_BANDWIDTH_Value32NBO bw_out_internal_limit;
615
616   /**
617    * External bandwidth limit set for this peer by the
618    * peer that we are communicating with.  "bw_out" is MIN of
619    * "bw_out_internal_limit" and "bw_out_external_limit".
620    */
621   struct GNUNET_BANDWIDTH_Value32NBO bw_out_external_limit;
622
623   /**
624    * What was our PING challenge number (for this peer)?
625    */
626   uint32_t ping_challenge;
627
628   /**
629    * What is our connection status?
630    */
631   enum PeerStateMachine status;
632
633   /**
634    * Are we currently connected to this neighbour?
635    */ 
636   int is_connected;
637
638 };
639
640
641 /**
642  * Data structure for each client connected to the core service.
643  */
644 struct Client
645 {
646   /**
647    * Clients are kept in a linked list.
648    */
649   struct Client *next;
650
651   /**
652    * Handle for the client with the server API.
653    */
654   struct GNUNET_SERVER_Client *client_handle;
655
656   /**
657    * Array of the types of messages this peer cares
658    * about (with "tcnt" entries).  Allocated as part
659    * of this client struct, do not free!
660    */
661   const uint16_t *types;
662
663   /**
664    * Map of peer identities to active transmission requests of this
665    * client to the peer (of type 'struct ClientActiveRequest').
666    */
667   struct GNUNET_CONTAINER_MultiHashMap *requests;
668
669   /**
670    * Options for messages this client cares about,
671    * see GNUNET_CORE_OPTION_ values.
672    */
673   uint32_t options;
674
675   /**
676    * Number of types of incoming messages this client
677    * specifically cares about.  Size of the "types" array.
678    */
679   unsigned int tcnt;
680
681 };
682
683
684 /**
685  * Record kept for each request for transmission issued by a 
686  * client that is still pending.
687  */
688 struct ClientActiveRequest
689 {
690
691   /**
692    * Active requests are kept in a doubly-linked list of
693    * the respective target peer.
694    */
695   struct ClientActiveRequest *next;
696
697   /**
698    * Active requests are kept in a doubly-linked list of
699    * the respective target peer.
700    */
701   struct ClientActiveRequest *prev;
702
703   /**
704    * Handle to the client.
705    */
706   struct Client *client;
707
708   /**
709    * By what time would the client want to see this message out?
710    */
711   struct GNUNET_TIME_Absolute deadline;
712
713   /**
714    * How important is this request.
715    */
716   uint32_t priority;
717
718   /**
719    * How many more requests does this client have?
720    */
721   uint32_t queue_size;
722
723   /**
724    * How many bytes does the client intend to send?
725    */
726   uint16_t msize;
727
728   /**
729    * Unique request ID (in big endian).
730    */
731   uint16_t smr_id;
732   
733 };
734
735
736
737 /**
738  * Our public key.
739  */
740 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
741
742 /**
743  * Our identity.
744  */
745 static struct GNUNET_PeerIdentity my_identity;
746
747 /**
748  * Our private key.
749  */
750 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
751
752
753 /**
754  * Handle to peerinfo service.
755  */
756 static struct GNUNET_PEERINFO_Handle *peerinfo;
757
758 /**
759  * Our message stream tokenizer (for encrypted payload).
760  */
761 static struct GNUNET_SERVER_MessageStreamTokenizer *mst;
762
763 /**
764  * Our configuration.
765  */
766 const struct GNUNET_CONFIGURATION_Handle *cfg;
767
768 /**
769  * Transport service.
770  */
771 static struct GNUNET_TRANSPORT_Handle *transport;
772
773 /**
774  * Linked list of our clients.
775  */
776 static struct Client *clients;
777
778 /**
779  * Context for notifications we need to send to our clients.
780  */
781 static struct GNUNET_SERVER_NotificationContext *notifier;
782
783 /**
784  * Map of peer identities to 'struct Neighbour'.
785  */
786 static struct GNUNET_CONTAINER_MultiHashMap *neighbours;
787
788 /**
789  * Neighbour entry for "this" peer.
790  */
791 static struct Neighbour self;
792
793 /**
794  * For creating statistics.
795  */
796 static struct GNUNET_STATISTICS_Handle *stats;
797
798 /**
799  * Sum of all preferences among all neighbours.
800  */
801 static unsigned long long preference_sum;
802
803 /**
804  * How much inbound bandwidth are we supposed to be using per second?
805  */
806 static unsigned long long bandwidth_target_in_bps;
807
808 /**
809  * How much outbound bandwidth are we supposed to be using per second?
810  */
811 static unsigned long long bandwidth_target_out_bps;
812
813 /**
814  * Derive an authentication key from "set key" information
815  */
816 static void
817 derive_auth_key (struct GNUNET_CRYPTO_AuthKey *akey,
818     const struct GNUNET_CRYPTO_AesSessionKey *skey,
819     uint32_t seed,
820     struct GNUNET_TIME_Absolute creation_time)
821 {
822   static const char ctx[] = "authentication key";
823   struct GNUNET_TIME_AbsoluteNBO ctbe;
824
825
826   ctbe = GNUNET_TIME_absolute_hton (creation_time);
827   GNUNET_CRYPTO_hmac_derive_key (akey,
828                                  skey,
829                                  &seed,
830                                  sizeof(seed),
831                                  &skey->key,
832                                  sizeof(skey->key),
833                                  &ctbe,
834                                  sizeof(ctbe),
835                                  ctx,
836                                  sizeof(ctx), NULL);
837 }
838
839
840 /**
841  * Derive an IV from packet information
842  */
843 static void
844 derive_iv (struct GNUNET_CRYPTO_AesInitializationVector *iv,
845     const struct GNUNET_CRYPTO_AesSessionKey *skey, uint32_t seed,
846     const struct GNUNET_PeerIdentity *identity)
847 {
848   static const char ctx[] = "initialization vector";
849
850   GNUNET_CRYPTO_aes_derive_iv (iv,
851                                skey,
852                                &seed,
853                                sizeof(seed),
854                                &identity->hashPubKey.bits,
855                                sizeof(identity->hashPubKey.bits),
856                                ctx,
857                                sizeof(ctx), NULL);
858 }
859
860 /**
861  * Derive an IV from pong packet information
862  */
863 static void
864 derive_pong_iv (struct GNUNET_CRYPTO_AesInitializationVector *iv,
865     const struct GNUNET_CRYPTO_AesSessionKey *skey, uint32_t seed,
866     uint32_t challenge, const struct GNUNET_PeerIdentity *identity)
867 {
868   static const char ctx[] = "pong initialization vector";
869
870   GNUNET_CRYPTO_aes_derive_iv (iv,
871                                skey,
872                                &seed,
873                                sizeof(seed),
874                                &identity->hashPubKey.bits,
875                                sizeof(identity->hashPubKey.bits),
876                                &challenge,
877                                sizeof(challenge),
878                                ctx,
879                                sizeof(ctx), NULL);
880 }
881
882
883 /**
884  * At what time should the connection to the given neighbour
885  * time out (given no further activity?)
886  *
887  * @param n neighbour in question
888  * @return absolute timeout
889  */
890 static struct GNUNET_TIME_Absolute 
891 get_neighbour_timeout (struct Neighbour *n)
892 {
893   return GNUNET_TIME_absolute_add (n->last_activity,
894                                    GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
895 }
896
897
898 /**
899  * Helper function for update_preference_sum.
900  */
901 static int
902 update_preference (void *cls,
903                    const GNUNET_HashCode *key,
904                    void *value)
905 {
906   unsigned long long *ps = cls;
907   struct Neighbour *n = value;
908
909   n->current_preference /= 2;
910   *ps += n->current_preference;
911   return GNUNET_OK;
912 }    
913
914
915 /**
916  * A preference value for a neighbour was update.  Update
917  * the preference sum accordingly.
918  *
919  * @param inc how much was a preference value increased?
920  */
921 static void
922 update_preference_sum (unsigned long long inc)
923 {
924   unsigned long long os;
925
926   os = preference_sum;
927   preference_sum += inc;
928   if (preference_sum >= os)
929     return; /* done! */
930   /* overflow! compensate by cutting all values in half! */
931   preference_sum = 0;
932   GNUNET_CONTAINER_multihashmap_iterate (neighbours,
933                                          &update_preference,
934                                          &preference_sum);
935   GNUNET_STATISTICS_set (stats, gettext_noop ("# total peer preference"), preference_sum, GNUNET_NO);
936 }
937
938
939 /**
940  * Find the entry for the given neighbour.
941  *
942  * @param peer identity of the neighbour
943  * @return NULL if we are not connected, otherwise the
944  *         neighbour's entry.
945  */
946 static struct Neighbour *
947 find_neighbour (const struct GNUNET_PeerIdentity *peer)
948 {
949   return GNUNET_CONTAINER_multihashmap_get (neighbours, &peer->hashPubKey);
950 }
951
952
953 /**
954  * Send a message to one of our clients.
955  *
956  * @param client target for the message
957  * @param msg message to transmit
958  * @param can_drop could this message be dropped if the
959  *        client's queue is getting too large?
960  */
961 static void
962 send_to_client (struct Client *client,
963                 const struct GNUNET_MessageHeader *msg, 
964                 int can_drop)
965 {
966 #if DEBUG_CORE_CLIENT
967   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
968               "Preparing to send %u bytes of message of type %u to client.\n",
969               (unsigned int) ntohs (msg->size),
970               (unsigned int) ntohs (msg->type));
971 #endif  
972   GNUNET_SERVER_notification_context_unicast (notifier,
973                                               client->client_handle,
974                                               msg,
975                                               can_drop);
976 }
977
978
979 /**
980  * Send a message to all of our current clients that have
981  * the right options set.
982  * 
983  * @param msg message to multicast
984  * @param can_drop can this message be discarded if the queue is too long
985  * @param options mask to use 
986  */
987 static void
988 send_to_all_clients (const struct GNUNET_MessageHeader *msg, 
989                      int can_drop,
990                      int options)
991 {
992   struct Client *c;
993
994   c = clients;
995   while (c != NULL)
996     {
997       if (0 != (c->options & options))
998         {
999 #if DEBUG_CORE_CLIENT
1000           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1001                       "Sending message of type %u to client.\n",
1002                       (unsigned int) ntohs (msg->type));
1003 #endif
1004           send_to_client (c, msg, can_drop);
1005         }
1006       c = c->next;
1007     }
1008 }
1009
1010
1011 /**
1012  * Function called by transport telling us that a peer
1013  * changed status.
1014  *
1015  * @param n the peer that changed status
1016  */
1017 static void
1018 handle_peer_status_change (struct Neighbour *n)
1019 {
1020   struct PeerStatusNotifyMessage *psnm;
1021   char buf[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
1022   struct GNUNET_TRANSPORT_ATS_Information *ats;
1023   size_t size;
1024
1025   if ( (! n->is_connected) ||
1026        (n->status != PEER_STATE_KEY_CONFIRMED) )
1027     return;
1028 #if DEBUG_CORE
1029   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1030               "Peer `%4s' changed status\n",
1031               GNUNET_i2s (&n->peer));
1032 #endif
1033   size = sizeof (struct PeerStatusNotifyMessage) +
1034     n->ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
1035   if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1036     {
1037       GNUNET_break (0);
1038       /* recovery strategy: throw away performance data */
1039       GNUNET_array_grow (n->ats,
1040                          n->ats_count,
1041                          0);
1042       size = sizeof (struct PeerStatusNotifyMessage) +
1043         n->ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
1044     }
1045   psnm = (struct PeerStatusNotifyMessage*) buf;
1046   psnm->header.size = htons (size);
1047   psnm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_STATUS_CHANGE);
1048   psnm->timeout = GNUNET_TIME_absolute_hton (get_neighbour_timeout (n));
1049   psnm->bandwidth_in = n->bw_in;
1050   psnm->bandwidth_out = n->bw_out;
1051   psnm->peer = n->peer;
1052   psnm->ats_count = htonl (n->ats_count);
1053   ats = &psnm->ats;
1054   memcpy (ats,
1055           n->ats,
1056           n->ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
1057   ats[n->ats_count].type = htonl (0);
1058   ats[n->ats_count].value = htonl (0);
1059   send_to_all_clients (&psnm->header, 
1060                        GNUNET_YES, 
1061                        GNUNET_CORE_OPTION_SEND_STATUS_CHANGE);
1062   GNUNET_STATISTICS_update (stats, 
1063                             gettext_noop ("# peer status changes"), 
1064                             1, 
1065                             GNUNET_NO);
1066 }
1067
1068
1069 /**
1070  * Go over our message queue and if it is not too long, go
1071  * over the pending requests from clients for this
1072  * neighbour and send some clients a 'READY' notification.
1073  *
1074  * @param n which peer to process
1075  */
1076 static void
1077 schedule_peer_messages (struct Neighbour *n)
1078 {
1079   struct SendMessageReady smr;
1080   struct ClientActiveRequest *car;
1081   struct ClientActiveRequest *pos;
1082   struct Client *c;
1083   struct MessageEntry *mqe;
1084   unsigned int queue_size;
1085   
1086   /* check if neighbour queue is empty enough! */
1087   if (n != &self)
1088     {
1089       queue_size = 0;
1090       mqe = n->messages;
1091       while (mqe != NULL) 
1092         {
1093           queue_size++;
1094           mqe = mqe->next;
1095         }
1096       if (queue_size >= MAX_PEER_QUEUE_SIZE)
1097         {
1098 #if DEBUG_CORE_CLIENT
1099           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1100                       "Not considering client transmission requests: queue full\n");
1101 #endif
1102           return; /* queue still full */
1103         }
1104       /* find highest priority request */
1105       pos = n->active_client_request_head;
1106       car = NULL;
1107       while (pos != NULL)
1108         {
1109           if ( (car == NULL) ||
1110                (pos->priority > car->priority) )
1111             car = pos;
1112           pos = pos->next;
1113         }
1114     }
1115   else
1116     {
1117       car = n->active_client_request_head;
1118     }
1119   if (car == NULL)
1120     return; /* no pending requests */
1121 #if DEBUG_CORE_CLIENT
1122   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1123               "Permitting client transmission request to `%s'\n",
1124               GNUNET_i2s (&n->peer));
1125 #endif
1126   c = car->client;
1127   GNUNET_CONTAINER_DLL_remove (n->active_client_request_head,
1128                                n->active_client_request_tail,
1129                                car);
1130   GNUNET_assert (GNUNET_YES ==
1131                  GNUNET_CONTAINER_multihashmap_remove (c->requests,
1132                                                        &n->peer.hashPubKey,
1133                                                        car));  
1134   smr.header.size = htons (sizeof (struct SendMessageReady));
1135   smr.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_SEND_READY);
1136   smr.size = htons (car->msize);
1137   smr.smr_id = car->smr_id;
1138   smr.peer = n->peer;
1139   send_to_client (c, &smr.header, GNUNET_NO);
1140   GNUNET_free (car);
1141 }
1142
1143
1144 /**
1145  * Handle CORE_SEND_REQUEST message.
1146  */
1147 static void
1148 handle_client_send_request (void *cls,
1149                             struct GNUNET_SERVER_Client *client,
1150                             const struct GNUNET_MessageHeader *message)
1151 {
1152   const struct SendMessageRequest *req;
1153   struct Neighbour *n;
1154   struct Client *c;
1155   struct ClientActiveRequest *car;
1156
1157   req = (const struct SendMessageRequest*) message;
1158   if (0 == memcmp (&req->peer,
1159                    &my_identity,
1160                    sizeof (struct GNUNET_PeerIdentity)))
1161     n = &self;
1162   else
1163     n = find_neighbour (&req->peer);
1164   if ( (n == NULL) ||
1165        (GNUNET_YES != n->is_connected) ||
1166        (n->status != PEER_STATE_KEY_CONFIRMED) )
1167     { 
1168       /* neighbour must have disconnected since request was issued,
1169          ignore (client will realize it once it processes the 
1170          disconnect notification) */
1171 #if DEBUG_CORE_CLIENT
1172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1173               "Dropped client request for transmission (am disconnected)\n");
1174 #endif
1175       GNUNET_STATISTICS_update (stats, 
1176                                 gettext_noop ("# send requests dropped (disconnected)"), 
1177                                 1, 
1178                                 GNUNET_NO);
1179       GNUNET_SERVER_receive_done (client, GNUNET_OK);
1180       return;
1181     }
1182   c = clients;
1183   while ( (c != NULL) &&
1184           (c->client_handle != client) )
1185     c = c->next;
1186   if (c == NULL)
1187     {
1188       /* client did not send INIT first! */
1189       GNUNET_break (0);
1190       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1191       return;
1192     }
1193   if (c->requests == NULL)
1194     c->requests = GNUNET_CONTAINER_multihashmap_create (16);
1195 #if DEBUG_CORE_CLIENT
1196   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1197               "Received client transmission request. queueing\n");
1198 #endif
1199   car = GNUNET_CONTAINER_multihashmap_get (c->requests,
1200                                            &req->peer.hashPubKey);
1201   if (car == NULL)
1202     {
1203       /* create new entry */
1204       car = GNUNET_malloc (sizeof (struct ClientActiveRequest));
1205       GNUNET_assert (GNUNET_OK ==
1206                      GNUNET_CONTAINER_multihashmap_put (c->requests,
1207                                                         &req->peer.hashPubKey,
1208                                                         car,
1209                                                         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
1210       GNUNET_CONTAINER_DLL_insert (n->active_client_request_head,
1211                                    n->active_client_request_tail,
1212                                    car);
1213       car->client = c;
1214     }
1215   car->deadline = GNUNET_TIME_absolute_ntoh (req->deadline);
1216   car->priority = ntohl (req->priority);
1217   car->queue_size = ntohl (req->queue_size);
1218   car->msize = ntohs (req->size);
1219   car->smr_id = req->smr_id;
1220   schedule_peer_messages (n);
1221   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1222 }
1223
1224
1225 /**
1226  * Notify client about an existing connection to one of our neighbours.
1227  */
1228 static int
1229 notify_client_about_neighbour (void *cls,
1230                                const GNUNET_HashCode *key,
1231                                void *value)
1232 {
1233   struct Client *c = cls;
1234   struct Neighbour *n = value;
1235   size_t size;
1236   char buf[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
1237   struct GNUNET_TRANSPORT_ATS_Information *ats;
1238   struct ConnectNotifyMessage *cnm;
1239
1240   size = sizeof (struct ConnectNotifyMessage) +
1241     (n->ats_count) * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
1242   if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1243     {
1244       GNUNET_break (0);
1245       /* recovery strategy: throw away performance data */
1246       GNUNET_array_grow (n->ats,
1247                          n->ats_count,
1248                          0);
1249       size = sizeof (struct ConnectNotifyMessage) +
1250         (n->ats_count) * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
1251     }
1252   cnm = (struct ConnectNotifyMessage*) buf;       
1253   cnm->header.size = htons (size);
1254   cnm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_CONNECT);
1255   cnm->ats_count = htonl (n->ats_count);
1256   ats = &cnm->ats;
1257   memcpy (ats,
1258           n->ats,
1259           sizeof (struct GNUNET_TRANSPORT_ATS_Information) * n->ats_count);
1260   ats[n->ats_count].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
1261   ats[n->ats_count].value = htonl (0);
1262   if (n->status == PEER_STATE_KEY_CONFIRMED)
1263     {
1264 #if DEBUG_CORE_CLIENT
1265       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1266                   "Sending `%s' message to client.\n", "NOTIFY_CONNECT");
1267 #endif
1268       cnm->peer = n->peer;
1269       send_to_client (c, &cnm->header, GNUNET_NO);
1270     }
1271   return GNUNET_OK;
1272 }
1273
1274
1275
1276 /**
1277  * Handle CORE_INIT request.
1278  */
1279 static void
1280 handle_client_init (void *cls,
1281                     struct GNUNET_SERVER_Client *client,
1282                     const struct GNUNET_MessageHeader *message)
1283 {
1284   const struct InitMessage *im;
1285   struct InitReplyMessage irm;
1286   struct Client *c;
1287   uint16_t msize;
1288   const uint16_t *types;
1289   uint16_t *wtypes;
1290   unsigned int i;
1291
1292 #if DEBUG_CORE_CLIENT
1293   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1294               "Client connecting to core service with `%s' message\n",
1295               "INIT");
1296 #endif
1297   /* check that we don't have an entry already */
1298   c = clients;
1299   while (c != NULL)
1300     {
1301       if (client == c->client_handle)
1302         {
1303           GNUNET_break (0);
1304           GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1305           return;
1306         }
1307       c = c->next;
1308     }
1309   msize = ntohs (message->size);
1310   if (msize < sizeof (struct InitMessage))
1311     {
1312       GNUNET_break (0);
1313       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1314       return;
1315     }
1316   GNUNET_SERVER_notification_context_add (notifier, client);
1317   im = (const struct InitMessage *) message;
1318   types = (const uint16_t *) &im[1];
1319   msize -= sizeof (struct InitMessage);
1320   c = GNUNET_malloc (sizeof (struct Client) + msize);
1321   c->client_handle = client;
1322   c->next = clients;
1323   clients = c;
1324   c->tcnt = msize / sizeof (uint16_t);
1325   c->types = (const uint16_t *) &c[1];
1326   wtypes = (uint16_t *) &c[1];
1327   for (i=0;i<c->tcnt;i++)
1328     wtypes[i] = ntohs (types[i]);
1329   c->options = ntohl (im->options);
1330 #if DEBUG_CORE_CLIENT
1331   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1332               "Client %p is interested in %u message types\n",
1333               c,
1334               (unsigned int) c->tcnt);
1335 #endif
1336   /* send init reply message */
1337   irm.header.size = htons (sizeof (struct InitReplyMessage));
1338   irm.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_INIT_REPLY);
1339   irm.reserved = htonl (0);
1340   memcpy (&irm.publicKey,
1341           &my_public_key,
1342           sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
1343 #if DEBUG_CORE_CLIENT
1344   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1345               "Sending `%s' message to client.\n", "INIT_REPLY");
1346 #endif
1347   send_to_client (c, &irm.header, GNUNET_NO);
1348   if (0 != (c->options & GNUNET_CORE_OPTION_SEND_CONNECT))
1349     {
1350       /* notify new client about existing neighbours */
1351       GNUNET_CONTAINER_multihashmap_iterate (neighbours,
1352                                              &notify_client_about_neighbour,
1353                                              c);
1354     }
1355   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1356 }
1357
1358
1359 /**
1360  * Free client request records.
1361  *
1362  * @param cls NULL
1363  * @param key identity of peer for which this is an active request
1364  * @param value the 'struct ClientActiveRequest' to free
1365  * @return GNUNET_YES (continue iteration)
1366  */
1367 static int
1368 destroy_active_client_request (void *cls,
1369                                const GNUNET_HashCode *key,
1370                                void *value)
1371 {
1372   struct ClientActiveRequest *car = value;
1373   struct Neighbour *n;
1374   struct GNUNET_PeerIdentity peer;
1375
1376   peer.hashPubKey = *key;
1377   n = find_neighbour (&peer);
1378   GNUNET_CONTAINER_DLL_remove (n->active_client_request_head,
1379                                n->active_client_request_tail,
1380                                car);
1381   GNUNET_free (car);
1382   return GNUNET_YES;
1383 }
1384
1385
1386 /**
1387  * A client disconnected, clean up.
1388  *
1389  * @param cls closure
1390  * @param client identification of the client
1391  */
1392 static void
1393 handle_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
1394 {
1395   struct Client *pos;
1396   struct Client *prev;
1397
1398   if (client == NULL)
1399     return;
1400 #if DEBUG_CORE_CLIENT
1401   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1402               "Client %p has disconnected from core service.\n",
1403               client);
1404 #endif
1405   prev = NULL;
1406   pos = clients;
1407   while (pos != NULL)
1408     {
1409       if (client == pos->client_handle)
1410         break;
1411       prev = pos;
1412       pos = pos->next;
1413     }
1414   if (pos == NULL)
1415     {
1416       /* client never sent INIT */
1417       return;
1418     }
1419   if (prev == NULL)
1420     clients = pos->next;
1421   else
1422     prev->next = pos->next;
1423   if (pos->requests != NULL)
1424     {
1425       GNUNET_CONTAINER_multihashmap_iterate (pos->requests,
1426                                              &destroy_active_client_request,
1427                                              NULL);
1428       GNUNET_CONTAINER_multihashmap_destroy (pos->requests);
1429     }
1430   GNUNET_free (pos);
1431 }
1432
1433
1434 /**
1435  * Helper function for handle_client_iterate_peers.
1436  */
1437 static int
1438 queue_connect_message (void *cls,
1439                        const GNUNET_HashCode *key,
1440                        void *value)
1441 {
1442   struct GNUNET_SERVER_TransmitContext *tc = cls;
1443   struct Neighbour *n = value;
1444   char buf[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
1445   struct GNUNET_TRANSPORT_ATS_Information *ats;
1446   size_t size;
1447   struct ConnectNotifyMessage *cnm;
1448
1449   cnm = (struct ConnectNotifyMessage*) buf;
1450   if (n->status != PEER_STATE_KEY_CONFIRMED)
1451     return GNUNET_OK;
1452   size = sizeof (struct ConnectNotifyMessage) +
1453     (n->ats_count) * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
1454   if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
1455     {
1456       GNUNET_break (0);
1457       /* recovery strategy: throw away performance data */
1458       GNUNET_array_grow (n->ats,
1459                          n->ats_count,
1460                          0);
1461       size = sizeof (struct PeerStatusNotifyMessage) +
1462         n->ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
1463     }
1464   cnm = (struct ConnectNotifyMessage*) buf;
1465   cnm->header.size = htons (size);
1466   cnm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_CONNECT);
1467   cnm->ats_count = htonl (n->ats_count);
1468   ats = &cnm->ats;
1469   memcpy (ats,
1470           n->ats,
1471           n->ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
1472   ats[n->ats_count].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
1473   ats[n->ats_count].value = htonl (0);    
1474 #if DEBUG_CORE_CLIENT
1475   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1476               "Sending `%s' message to client.\n",
1477               "NOTIFY_CONNECT");
1478 #endif
1479   cnm->peer = n->peer;
1480   GNUNET_SERVER_transmit_context_append_message (tc, 
1481                                                  &cnm->header);
1482   return GNUNET_OK;
1483 }
1484
1485
1486 /**
1487  * Handle CORE_ITERATE_PEERS request.
1488  *
1489  * @param cls unused
1490  * @param client client sending the iteration request
1491  * @param message iteration request message
1492  */
1493 static void
1494 handle_client_iterate_peers (void *cls,
1495                              struct GNUNET_SERVER_Client *client,
1496                              const struct GNUNET_MessageHeader *message)
1497
1498 {
1499   struct GNUNET_MessageHeader done_msg;
1500   struct GNUNET_SERVER_TransmitContext *tc;
1501
1502   /* notify new client about existing neighbours */
1503   tc = GNUNET_SERVER_transmit_context_create (client);
1504   GNUNET_CONTAINER_multihashmap_iterate (neighbours, &queue_connect_message, tc);
1505   done_msg.size = htons (sizeof (struct GNUNET_MessageHeader));
1506   done_msg.type = htons (GNUNET_MESSAGE_TYPE_CORE_ITERATE_PEERS_END);
1507   GNUNET_SERVER_transmit_context_append_message (tc, &done_msg);
1508   GNUNET_SERVER_transmit_context_run (tc,
1509                                       GNUNET_TIME_UNIT_FOREVER_REL);
1510 }
1511
1512
1513 /**
1514  * Handle REQUEST_INFO request.
1515  */
1516 static void
1517 handle_client_request_info (void *cls,
1518                             struct GNUNET_SERVER_Client *client,
1519                             const struct GNUNET_MessageHeader *message)
1520 {
1521   const struct RequestInfoMessage *rcm;
1522   struct Client *pos;
1523   struct Neighbour *n;
1524   struct ConfigurationInfoMessage cim;
1525   int32_t want_reserv;
1526   int32_t got_reserv;
1527   unsigned long long old_preference;
1528
1529 #if DEBUG_CORE_CLIENT
1530   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1531               "Core service receives `%s' request.\n", "REQUEST_INFO");
1532 #endif
1533   pos = clients;
1534   while (pos != NULL)
1535     {
1536       if (client == pos->client_handle)
1537         break;
1538       pos = pos->next;
1539     }
1540   if (pos == NULL)
1541     {
1542       GNUNET_break (0);
1543       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1544       return;
1545     }
1546
1547   rcm = (const struct RequestInfoMessage *) message;
1548   n = find_neighbour (&rcm->peer);
1549   memset (&cim, 0, sizeof (cim));
1550   if (n != NULL) 
1551     {
1552       want_reserv = ntohl (rcm->reserve_inbound);
1553       if (n->bw_out_internal_limit.value__ != rcm->limit_outbound.value__)
1554         {
1555           n->bw_out_internal_limit = rcm->limit_outbound;
1556           if (n->bw_out.value__ != GNUNET_BANDWIDTH_value_min (n->bw_out_internal_limit,
1557                                                                n->bw_out_external_limit).value__)
1558             {
1559               n->bw_out = GNUNET_BANDWIDTH_value_min (n->bw_out_internal_limit,
1560                                                       n->bw_out_external_limit);
1561               GNUNET_BANDWIDTH_tracker_update_quota (&n->available_recv_window,
1562                                                      n->bw_out);
1563               GNUNET_TRANSPORT_set_quota (transport,
1564                                           &n->peer,
1565                                           n->bw_in,
1566                                           n->bw_out,
1567                                           GNUNET_TIME_UNIT_FOREVER_REL,
1568                                           NULL, NULL); 
1569               handle_peer_status_change (n);
1570             }
1571         }
1572       if (want_reserv < 0)
1573         {
1574           got_reserv = want_reserv;
1575         }
1576       else if (want_reserv > 0)
1577         {
1578           if (GNUNET_BANDWIDTH_tracker_get_delay (&n->available_recv_window,
1579                                                   want_reserv).rel_value == 0)
1580             got_reserv = want_reserv;
1581           else
1582             got_reserv = 0; /* all or nothing */
1583         }
1584       else
1585         got_reserv = 0;
1586       GNUNET_BANDWIDTH_tracker_consume (&n->available_recv_window,
1587                                         got_reserv);
1588       old_preference = n->current_preference;
1589       n->current_preference += GNUNET_ntohll(rcm->preference_change);
1590       if (old_preference > n->current_preference) 
1591         {
1592           /* overflow; cap at maximum value */
1593           n->current_preference = ULLONG_MAX;
1594         }
1595       update_preference_sum (n->current_preference - old_preference);
1596 #if DEBUG_CORE_QUOTA
1597       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1598                   "Received reservation request for %d bytes for peer `%4s', reserved %d bytes\n",
1599                   (int) want_reserv,
1600                   GNUNET_i2s (&rcm->peer),
1601                   (int) got_reserv);
1602 #endif
1603       cim.reserved_amount = htonl (got_reserv);
1604       cim.rim_id = rcm->rim_id;
1605       cim.bw_out = n->bw_out;
1606       cim.preference = n->current_preference;
1607     }
1608   cim.header.size = htons (sizeof (struct ConfigurationInfoMessage));
1609   cim.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_CONFIGURATION_INFO);
1610   cim.peer = rcm->peer;
1611 #if DEBUG_CORE_CLIENT
1612   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1613               "Sending `%s' message to client.\n", "CONFIGURATION_INFO");
1614 #endif
1615   send_to_client (pos, &cim.header, GNUNET_NO);
1616   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1617 }
1618
1619
1620 /**
1621  * Free the given entry for the neighbour (it has
1622  * already been removed from the list at this point).
1623  *
1624  * @param n neighbour to free
1625  */
1626 static void
1627 free_neighbour (struct Neighbour *n)
1628 {
1629   struct MessageEntry *m;
1630   struct ClientActiveRequest *car;
1631
1632 #if DEBUG_CORE
1633   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1634               "Destroying neighbour entry for peer `%4s'\n",
1635               GNUNET_i2s (&n->peer));
1636 #endif
1637   if (n->pitr != NULL)
1638     {
1639       GNUNET_PEERINFO_iterate_cancel (n->pitr);
1640       n->pitr = NULL;
1641     }
1642   if (n->skm != NULL)
1643     {
1644       GNUNET_free (n->skm);
1645       n->skm = NULL;
1646     }
1647   while (NULL != (m = n->messages))
1648     {
1649       n->messages = m->next;
1650       GNUNET_free (m);
1651     }
1652   while (NULL != (m = n->encrypted_head))
1653     {
1654       GNUNET_CONTAINER_DLL_remove (n->encrypted_head,
1655                                    n->encrypted_tail,
1656                                    m);
1657       GNUNET_free (m);
1658     }
1659   while (NULL != (car = n->active_client_request_head))
1660     {
1661       GNUNET_CONTAINER_DLL_remove (n->active_client_request_head,
1662                                    n->active_client_request_tail,
1663                                    car);
1664       GNUNET_CONTAINER_multihashmap_remove (car->client->requests,
1665                                             &n->peer.hashPubKey,
1666                                             car);
1667       GNUNET_free (car);
1668     }
1669   if (NULL != n->th)
1670     {
1671       GNUNET_TRANSPORT_notify_transmit_ready_cancel (n->th);
1672       n->th = NULL;
1673     }
1674   if (n->retry_plaintext_task != GNUNET_SCHEDULER_NO_TASK)
1675     GNUNET_SCHEDULER_cancel (n->retry_plaintext_task);
1676   if (n->retry_set_key_task != GNUNET_SCHEDULER_NO_TASK)
1677     GNUNET_SCHEDULER_cancel (n->retry_set_key_task);
1678   if (n->quota_update_task != GNUNET_SCHEDULER_NO_TASK)
1679     GNUNET_SCHEDULER_cancel (n->quota_update_task);
1680   if (n->dead_clean_task != GNUNET_SCHEDULER_NO_TASK)
1681     GNUNET_SCHEDULER_cancel (n->dead_clean_task);
1682   if (n->keep_alive_task != GNUNET_SCHEDULER_NO_TASK)    
1683       GNUNET_SCHEDULER_cancel (n->keep_alive_task);
1684   if (n->status == PEER_STATE_KEY_CONFIRMED)
1685     GNUNET_STATISTICS_update (stats, 
1686                               gettext_noop ("# established sessions"), 
1687                               -1, 
1688                               GNUNET_NO);
1689   GNUNET_array_grow (n->ats, n->ats_count, 0);
1690   GNUNET_free_non_null (n->public_key);
1691   GNUNET_free_non_null (n->pending_ping);
1692   GNUNET_free_non_null (n->pending_pong);
1693   GNUNET_free (n);
1694 }
1695
1696
1697 /**
1698  * Check if we have encrypted messages for the specified neighbour
1699  * pending, and if so, check with the transport about sending them
1700  * out.
1701  *
1702  * @param n neighbour to check.
1703  */
1704 static void process_encrypted_neighbour_queue (struct Neighbour *n);
1705
1706
1707 /**
1708  * Encrypt size bytes from in and write the result to out.  Use the
1709  * key for outbound traffic of the given neighbour.
1710  *
1711  * @param n neighbour we are sending to
1712  * @param iv initialization vector to use
1713  * @param in ciphertext
1714  * @param out plaintext
1715  * @param size size of in/out
1716  * @return GNUNET_OK on success
1717  */
1718 static int
1719 do_encrypt (struct Neighbour *n,
1720             const struct GNUNET_CRYPTO_AesInitializationVector * iv,
1721             const void *in, void *out, size_t size)
1722 {
1723   if (size != (uint16_t) size)
1724     {
1725       GNUNET_break (0);
1726       return GNUNET_NO;
1727     }
1728   GNUNET_assert (size ==
1729                  GNUNET_CRYPTO_aes_encrypt (in,
1730                                             (uint16_t) size,
1731                                             &n->encrypt_key,
1732                                             iv, out));
1733   GNUNET_STATISTICS_update (stats, gettext_noop ("# bytes encrypted"), size, GNUNET_NO);
1734 #if DEBUG_CORE
1735   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1736               "Encrypted %u bytes for `%4s' using key %u, IV %u\n",
1737               (unsigned int) size,
1738               GNUNET_i2s (&n->peer),
1739               (unsigned int) n->encrypt_key.crc32,
1740               GNUNET_CRYPTO_crc32_n (iv, sizeof(iv)));
1741 #endif
1742   return GNUNET_OK;
1743 }
1744
1745
1746 /**
1747  * Consider freeing the given neighbour since we may not need
1748  * to keep it around anymore.
1749  *
1750  * @param n neighbour to consider discarding
1751  */
1752 static void
1753 consider_free_neighbour (struct Neighbour *n);
1754
1755
1756 /**
1757  * Task triggered when a neighbour entry is about to time out 
1758  * (and we should prevent this by sending a PING).
1759  *
1760  * @param cls the 'struct Neighbour'
1761  * @param tc scheduler context (not used)
1762  */
1763 static void
1764 send_keep_alive (void *cls,
1765                  const struct GNUNET_SCHEDULER_TaskContext *tc)
1766 {
1767   struct Neighbour *n = cls;
1768   struct GNUNET_TIME_Relative retry;
1769   struct GNUNET_TIME_Relative left;
1770   struct MessageEntry *me;
1771   struct PingMessage pp;
1772   struct PingMessage *pm;
1773   struct GNUNET_CRYPTO_AesInitializationVector iv;
1774
1775   n->keep_alive_task = GNUNET_SCHEDULER_NO_TASK;
1776   /* send PING */
1777   me = GNUNET_malloc (sizeof (struct MessageEntry) +
1778                       sizeof (struct PingMessage));
1779   me->deadline = GNUNET_TIME_relative_to_absolute (MAX_PING_DELAY);
1780   me->priority = PING_PRIORITY;
1781   me->size = sizeof (struct PingMessage);
1782   GNUNET_CONTAINER_DLL_insert_after (n->encrypted_head,
1783                                      n->encrypted_tail,
1784                                      n->encrypted_tail,
1785                                      me);
1786   pm = (struct PingMessage *) &me[1];
1787   pm->header.size = htons (sizeof (struct PingMessage));
1788   pm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_PING);
1789   pm->iv_seed = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
1790       UINT32_MAX);
1791   derive_iv (&iv, &n->encrypt_key, pm->iv_seed, &n->peer);
1792   pp.challenge = n->ping_challenge;
1793   pp.target = n->peer;
1794 #if DEBUG_HANDSHAKE
1795   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1796               "Encrypting `%s' message with challenge %u for `%4s' using key %u, IV %u (salt %u).\n",
1797               "PING", 
1798               (unsigned int) n->ping_challenge,
1799               GNUNET_i2s (&n->peer),
1800               (unsigned int) n->encrypt_key.crc32,
1801               GNUNET_CRYPTO_crc32_n (&iv, sizeof(iv)),
1802               pm->iv_seed);
1803 #endif
1804   do_encrypt (n,
1805               &iv,
1806               &pp.target,
1807               &pm->target,
1808               sizeof (struct PingMessage) -
1809               ((void *) &pm->target - (void *) pm));
1810   process_encrypted_neighbour_queue (n);
1811   /* reschedule PING job */
1812   left = GNUNET_TIME_absolute_get_remaining (get_neighbour_timeout (n));
1813   retry = GNUNET_TIME_relative_max (GNUNET_TIME_relative_divide (left, 2),
1814                                     MIN_PING_FREQUENCY);
1815   n->keep_alive_task 
1816     = GNUNET_SCHEDULER_add_delayed (retry,
1817                                     &send_keep_alive,
1818                                     n);
1819
1820 }
1821
1822
1823 /**
1824  * Task triggered when a neighbour entry might have gotten stale.
1825  *
1826  * @param cls the 'struct Neighbour'
1827  * @param tc scheduler context (not used)
1828  */
1829 static void
1830 consider_free_task (void *cls,
1831                     const struct GNUNET_SCHEDULER_TaskContext *tc)
1832 {
1833   struct Neighbour *n = cls;
1834
1835   n->dead_clean_task = GNUNET_SCHEDULER_NO_TASK;
1836   consider_free_neighbour (n);
1837 }
1838
1839
1840 /**
1841  * Consider freeing the given neighbour since we may not need
1842  * to keep it around anymore.
1843  *
1844  * @param n neighbour to consider discarding
1845  */
1846 static void
1847 consider_free_neighbour (struct Neighbour *n)
1848
1849   struct GNUNET_TIME_Relative left;
1850
1851   if ( (n->th != NULL) ||
1852        (n->pitr != NULL) ||
1853        (GNUNET_YES == n->is_connected) )
1854     return; /* no chance */
1855     
1856   left = GNUNET_TIME_absolute_get_remaining (get_neighbour_timeout (n));
1857   if (left.rel_value > 0)
1858     {
1859       if (n->dead_clean_task != GNUNET_SCHEDULER_NO_TASK)
1860         GNUNET_SCHEDULER_cancel (n->dead_clean_task);
1861       n->dead_clean_task = GNUNET_SCHEDULER_add_delayed (left,
1862                                                          &consider_free_task,
1863                                                          n);
1864       return;
1865     }
1866   /* actually free the neighbour... */
1867   GNUNET_assert (GNUNET_OK ==
1868                  GNUNET_CONTAINER_multihashmap_remove (neighbours,
1869                                                        &n->peer.hashPubKey,
1870                                                        n));
1871   GNUNET_STATISTICS_set (stats,
1872                          gettext_noop ("# neighbour entries allocated"), 
1873                          GNUNET_CONTAINER_multihashmap_size (neighbours),
1874                          GNUNET_NO);
1875   free_neighbour (n);
1876 }
1877
1878
1879 /**
1880  * Function called when the transport service is ready to
1881  * receive an encrypted message for the respective peer
1882  *
1883  * @param cls neighbour to use message from
1884  * @param size number of bytes we can transmit
1885  * @param buf where to copy the message
1886  * @return number of bytes transmitted
1887  */
1888 static size_t
1889 notify_encrypted_transmit_ready (void *cls, size_t size, void *buf)
1890 {
1891   struct Neighbour *n = cls;
1892   struct MessageEntry *m;
1893   size_t ret;
1894   char *cbuf;
1895
1896   n->th = NULL;
1897   m = n->encrypted_head;
1898   if (m == NULL)
1899     {
1900 #if DEBUG_CORE
1901       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1902                   "Encrypted message queue empty, no messages added to buffer for `%4s'\n",
1903                   GNUNET_i2s (&n->peer));
1904 #endif
1905       return 0;
1906     }
1907   GNUNET_CONTAINER_DLL_remove (n->encrypted_head,
1908                                n->encrypted_tail,
1909                                m);
1910   ret = 0;
1911   cbuf = buf;
1912   if (buf != NULL)
1913     {
1914       GNUNET_assert (size >= m->size);
1915       memcpy (cbuf, &m[1], m->size);
1916       ret = m->size;
1917       GNUNET_BANDWIDTH_tracker_consume (&n->available_send_window,
1918                                         m->size);
1919 #if DEBUG_CORE
1920       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1921                   "Copied message of type %u and size %u into transport buffer for `%4s'\n",
1922                   (unsigned int) ntohs (((struct GNUNET_MessageHeader *) &m[1])->type),
1923                   (unsigned int) ret, 
1924                   GNUNET_i2s (&n->peer));
1925 #endif
1926       process_encrypted_neighbour_queue (n);
1927     }
1928   else
1929     {
1930 #if DEBUG_CORE
1931       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1932                   "Transmission of message of type %u and size %u failed\n",
1933                   (unsigned int) ntohs (((struct GNUNET_MessageHeader *) &m[1])->type),
1934                   (unsigned int) m->size);
1935 #endif
1936     }
1937   GNUNET_free (m);
1938   consider_free_neighbour (n);
1939   return ret;
1940 }
1941
1942
1943 /**
1944  * Check if we have plaintext messages for the specified neighbour
1945  * pending, and if so, consider batching and encrypting them (and
1946  * then trigger processing of the encrypted queue if needed).
1947  *
1948  * @param n neighbour to check.
1949  */
1950 static void process_plaintext_neighbour_queue (struct Neighbour *n);
1951
1952
1953 /**
1954  * Check if we have encrypted messages for the specified neighbour
1955  * pending, and if so, check with the transport about sending them
1956  * out.
1957  *
1958  * @param n neighbour to check.
1959  */
1960 static void
1961 process_encrypted_neighbour_queue (struct Neighbour *n)
1962 {
1963   struct MessageEntry *m;
1964  
1965   if (n->th != NULL)
1966     return;  /* request already pending */
1967   m = n->encrypted_head;
1968   if (m == NULL)
1969     {
1970       /* encrypted queue empty, try plaintext instead */
1971       process_plaintext_neighbour_queue (n);
1972       return;
1973     }
1974 #if DEBUG_CORE
1975   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1976               "Asking transport for transmission of %u bytes to `%4s' in next %llu ms\n",
1977               (unsigned int) m->size,
1978               GNUNET_i2s (&n->peer),
1979               (unsigned long long) GNUNET_TIME_absolute_get_remaining (m->deadline).rel_value);
1980 #endif
1981   n->th =
1982     GNUNET_TRANSPORT_notify_transmit_ready (transport, &n->peer,
1983                                             m->size,
1984                                             m->priority,
1985                                             GNUNET_TIME_absolute_get_remaining
1986                                             (m->deadline),
1987                                             &notify_encrypted_transmit_ready,
1988                                             n);
1989   if (n->th == NULL)
1990     {
1991       /* message request too large or duplicate request */
1992       GNUNET_break (0);
1993       /* discard encrypted message */
1994       GNUNET_CONTAINER_DLL_remove (n->encrypted_head,
1995                                    n->encrypted_tail,
1996                                    m);
1997       GNUNET_free (m);
1998       process_encrypted_neighbour_queue (n);
1999     }
2000 }
2001
2002
2003 /**
2004  * Decrypt size bytes from in and write the result to out.  Use the
2005  * key for inbound traffic of the given neighbour.  This function does
2006  * NOT do any integrity-checks on the result.
2007  *
2008  * @param n neighbour we are receiving from
2009  * @param iv initialization vector to use
2010  * @param in ciphertext
2011  * @param out plaintext
2012  * @param size size of in/out
2013  * @return GNUNET_OK on success
2014  */
2015 static int
2016 do_decrypt (struct Neighbour *n,
2017             const struct GNUNET_CRYPTO_AesInitializationVector * iv,
2018             const void *in, void *out, size_t size)
2019 {
2020   if (size != (uint16_t) size)
2021     {
2022       GNUNET_break (0);
2023       return GNUNET_NO;
2024     }
2025   if ((n->status != PEER_STATE_KEY_RECEIVED) &&
2026       (n->status != PEER_STATE_KEY_CONFIRMED))
2027     {
2028       GNUNET_break_op (0);
2029       return GNUNET_SYSERR;
2030     }
2031   if (size !=
2032       GNUNET_CRYPTO_aes_decrypt (in,
2033                                  (uint16_t) size,
2034                                  &n->decrypt_key,
2035                                  iv,
2036                                  out))
2037     {
2038       GNUNET_break (0);
2039       return GNUNET_SYSERR;
2040     }
2041   GNUNET_STATISTICS_update (stats, gettext_noop ("# bytes decrypted"), size, GNUNET_NO);
2042 #if DEBUG_CORE
2043   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2044               "Decrypted %u bytes from `%4s' using key %u, IV %u\n",
2045               (unsigned int) size, 
2046               GNUNET_i2s (&n->peer),
2047               (unsigned int) n->decrypt_key.crc32,
2048               GNUNET_CRYPTO_crc32_n (iv, sizeof(*iv)));
2049 #endif
2050   return GNUNET_OK;
2051 }
2052
2053
2054 /**
2055  * Select messages for transmission.  This heuristic uses a combination
2056  * of earliest deadline first (EDF) scheduling (with bounded horizon)
2057  * and priority-based discard (in case no feasible schedule exist) and
2058  * speculative optimization (defer any kind of transmission until
2059  * we either create a batch of significant size, 25% of max, or until
2060  * we are close to a deadline).  Furthermore, when scheduling the
2061  * heuristic also packs as many messages into the batch as possible,
2062  * starting with those with the earliest deadline.  Yes, this is fun.
2063  *
2064  * @param n neighbour to select messages from
2065  * @param size number of bytes to select for transmission
2066  * @param retry_time set to the time when we should try again
2067  *        (only valid if this function returns zero)
2068  * @return number of bytes selected, or 0 if we decided to
2069  *         defer scheduling overall; in that case, retry_time is set.
2070  */
2071 static size_t
2072 select_messages (struct Neighbour *n,
2073                  size_t size, struct GNUNET_TIME_Relative *retry_time)
2074 {
2075   struct MessageEntry *pos;
2076   struct MessageEntry *min;
2077   struct MessageEntry *last;
2078   unsigned int min_prio;
2079   struct GNUNET_TIME_Absolute t;
2080   struct GNUNET_TIME_Absolute now;
2081   struct GNUNET_TIME_Relative delta;
2082   uint64_t avail;
2083   struct GNUNET_TIME_Relative slack;     /* how long could we wait before missing deadlines? */
2084   size_t off;
2085   uint64_t tsize;
2086   unsigned int queue_size;
2087   int discard_low_prio;
2088
2089   GNUNET_assert (NULL != n->messages);
2090   now = GNUNET_TIME_absolute_get ();
2091   /* last entry in linked list of messages processed */
2092   last = NULL;
2093   /* should we remove the entry with the lowest
2094      priority from consideration for scheduling at the
2095      end of the loop? */
2096   queue_size = 0;
2097   tsize = 0;
2098   pos = n->messages;
2099   while (pos != NULL)
2100     {
2101       queue_size++;
2102       tsize += pos->size;
2103       pos = pos->next;
2104     }
2105   discard_low_prio = GNUNET_YES;
2106   while (GNUNET_YES == discard_low_prio)
2107     {
2108       min = NULL;
2109       min_prio = UINT_MAX;
2110       discard_low_prio = GNUNET_NO;
2111       /* calculate number of bytes available for transmission at time "t" */
2112       avail = GNUNET_BANDWIDTH_tracker_get_available (&n->available_send_window);
2113       t = now;
2114       /* how many bytes have we (hypothetically) scheduled so far */
2115       off = 0;
2116       /* maximum time we can wait before transmitting anything
2117          and still make all of our deadlines */
2118       slack = GNUNET_TIME_UNIT_FOREVER_REL;
2119       pos = n->messages;
2120       /* note that we use "*2" here because we want to look
2121          a bit further into the future; much more makes no
2122          sense since new message might be scheduled in the
2123          meantime... */
2124       while ((pos != NULL) && (off < size * 2))
2125         {         
2126           if (pos->do_transmit == GNUNET_YES)
2127             {
2128               /* already removed from consideration */
2129               pos = pos->next;
2130               continue;
2131             }
2132           if (discard_low_prio == GNUNET_NO)
2133             {
2134               delta = GNUNET_TIME_absolute_get_difference (t, pos->deadline);
2135               if (delta.rel_value > 0)
2136                 {
2137                   // FIXME: HUH? Check!
2138                   t = pos->deadline;
2139                   avail += GNUNET_BANDWIDTH_value_get_available_until (n->bw_out,
2140                                                                        delta);
2141                 }
2142               if (avail < pos->size)
2143                 {
2144                   // FIXME: HUH? Check!
2145                   discard_low_prio = GNUNET_YES;        /* we could not schedule this one! */
2146                 }
2147               else
2148                 {
2149                   avail -= pos->size;
2150                   /* update slack, considering both its absolute deadline
2151                      and relative deadlines caused by other messages
2152                      with their respective load */
2153                   slack = GNUNET_TIME_relative_min (slack,
2154                                                     GNUNET_BANDWIDTH_value_get_delay_for (n->bw_out,
2155                                                                                           avail));
2156                   if (pos->deadline.abs_value <= now.abs_value) 
2157                     {
2158                       /* now or never */
2159                       slack = GNUNET_TIME_UNIT_ZERO;
2160                     }
2161                   else if (GNUNET_YES == pos->got_slack)
2162                     {
2163                       /* should be soon now! */
2164                       slack = GNUNET_TIME_relative_min (slack,
2165                                                         GNUNET_TIME_absolute_get_remaining (pos->slack_deadline));
2166                     }
2167                   else
2168                     {
2169                       slack =
2170                         GNUNET_TIME_relative_min (slack, 
2171                                                   GNUNET_TIME_absolute_get_difference (now, pos->deadline));
2172                       pos->got_slack = GNUNET_YES;
2173                       pos->slack_deadline = GNUNET_TIME_absolute_min (pos->deadline,
2174                                                                       GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_MAX_CORK_DELAY));
2175                     }
2176                 }
2177             }
2178           off += pos->size;
2179           t = GNUNET_TIME_absolute_max (pos->deadline, t); // HUH? Check!
2180           if (pos->priority <= min_prio)
2181             {
2182               /* update min for discard */
2183               min_prio = pos->priority;
2184               min = pos;
2185             }
2186           pos = pos->next;
2187         }
2188       if (discard_low_prio)
2189         {
2190           GNUNET_assert (min != NULL);
2191           /* remove lowest-priority entry from consideration */
2192           min->do_transmit = GNUNET_YES;        /* means: discard (for now) */
2193         }
2194       last = pos;
2195     }
2196   /* guard against sending "tiny" messages with large headers without
2197      urgent deadlines */
2198   if ( (slack.rel_value > GNUNET_CONSTANTS_MAX_CORK_DELAY.rel_value) && 
2199        (size > 4 * off) &&
2200        (queue_size <= MAX_PEER_QUEUE_SIZE - 2) )
2201     {
2202       /* less than 25% of message would be filled with deadlines still
2203          being met if we delay by one second or more; so just wait for
2204          more data; but do not wait longer than 1s (since we don't want
2205          to delay messages for a really long time either). */
2206       *retry_time = GNUNET_CONSTANTS_MAX_CORK_DELAY;
2207       /* reset do_transmit values for next time */
2208       while (pos != last)
2209         {
2210           pos->do_transmit = GNUNET_NO;   
2211           pos = pos->next;
2212         }
2213       GNUNET_STATISTICS_update (stats, 
2214                                 gettext_noop ("# transmissions delayed due to corking"), 
2215                                 1, GNUNET_NO);
2216 #if DEBUG_CORE
2217       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2218                   "Deferring transmission for %llums due to underfull message buffer size (%u/%u)\n",
2219                   (unsigned long long) retry_time->rel_value,
2220                   (unsigned int) off,
2221                   (unsigned int) size);
2222 #endif
2223       return 0;
2224     }
2225   /* select marked messages (up to size) for transmission */
2226   off = 0;
2227   pos = n->messages;
2228   while (pos != last)
2229     {
2230       if ((pos->size <= size) && (pos->do_transmit == GNUNET_NO))
2231         {
2232           pos->do_transmit = GNUNET_YES;        /* mark for transmission */
2233           off += pos->size;
2234           size -= pos->size;
2235 #if DEBUG_CORE
2236           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2237                       "Selecting message of size %u for transmission\n",
2238                       (unsigned int) pos->size);
2239 #endif
2240         }
2241       else
2242         {
2243 #if DEBUG_CORE
2244           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2245                       "Not selecting message of size %u for transmission at this time (maximum is %u)\n",
2246                       (unsigned int) pos->size,
2247                       size);
2248 #endif
2249           pos->do_transmit = GNUNET_NO;   /* mark for not transmitting! */
2250         }
2251       pos = pos->next;
2252     }
2253 #if DEBUG_CORE
2254   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2255               "Selected %llu/%llu bytes of %u/%u plaintext messages for transmission to `%4s'.\n",
2256               (unsigned long long) off, (unsigned long long) tsize,
2257               queue_size, (unsigned int) MAX_PEER_QUEUE_SIZE,
2258               GNUNET_i2s (&n->peer));
2259 #endif
2260   return off;
2261 }
2262
2263
2264 /**
2265  * Batch multiple messages into a larger buffer.
2266  *
2267  * @param n neighbour to take messages from
2268  * @param buf target buffer
2269  * @param size size of buf
2270  * @param deadline set to transmission deadline for the result
2271  * @param retry_time set to the time when we should try again
2272  *        (only valid if this function returns zero)
2273  * @param priority set to the priority of the batch
2274  * @return number of bytes written to buf (can be zero)
2275  */
2276 static size_t
2277 batch_message (struct Neighbour *n,
2278                char *buf,
2279                size_t size,
2280                struct GNUNET_TIME_Absolute *deadline,
2281                struct GNUNET_TIME_Relative *retry_time,
2282                unsigned int *priority)
2283 {
2284   char ntmb[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
2285   struct NotifyTrafficMessage *ntm = (struct NotifyTrafficMessage*) ntmb;
2286   struct MessageEntry *pos;
2287   struct MessageEntry *prev;
2288   struct MessageEntry *next;
2289   size_t ret;
2290   
2291   ret = 0;
2292   *priority = 0;
2293   *deadline = GNUNET_TIME_UNIT_FOREVER_ABS;
2294   *retry_time = GNUNET_TIME_UNIT_FOREVER_REL;
2295   if (0 == select_messages (n, size, retry_time))
2296     {
2297 #if DEBUG_CORE
2298       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2299                   "No messages selected, will try again in %llu ms\n",
2300                   retry_time->rel_value);
2301 #endif
2302       return 0;
2303     }
2304   ntm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_OUTBOUND);
2305   ntm->ats_count = htonl (0);
2306   ntm->ats.type = htonl (0);
2307   ntm->ats.value = htonl (0);
2308   ntm->peer = n->peer;
2309   pos = n->messages;
2310   prev = NULL;
2311   while ((pos != NULL) && (size >= sizeof (struct GNUNET_MessageHeader)))
2312     {
2313       next = pos->next;
2314       if (GNUNET_YES == pos->do_transmit)
2315         {
2316           GNUNET_assert (pos->size <= size);
2317           /* do notifications */
2318           /* FIXME: track if we have *any* client that wants
2319              full notifications and only do this if that is
2320              actually true */
2321           if (pos->size < GNUNET_SERVER_MAX_MESSAGE_SIZE - sizeof (struct NotifyTrafficMessage))
2322             {
2323               memcpy (&ntm[1], &pos[1], pos->size);
2324               ntm->header.size = htons (sizeof (struct NotifyTrafficMessage) + 
2325                                         sizeof (struct GNUNET_MessageHeader));
2326               send_to_all_clients (&ntm->header,
2327                                    GNUNET_YES,
2328                                    GNUNET_CORE_OPTION_SEND_HDR_OUTBOUND);
2329             }
2330           else
2331             {
2332               /* message too large for 'full' notifications, we do at
2333                  least the 'hdr' type */
2334               memcpy (&ntm[1],
2335                       &pos[1],
2336                       sizeof (struct GNUNET_MessageHeader));
2337             }
2338           ntm->header.size = htons (sizeof (struct NotifyTrafficMessage) + 
2339                                     pos->size);
2340           send_to_all_clients (&ntm->header,
2341                                GNUNET_YES,
2342                                GNUNET_CORE_OPTION_SEND_FULL_OUTBOUND);   
2343 #if DEBUG_HANDSHAKE
2344           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2345                       "Encrypting %u bytes with message of type %u and size %u\n",
2346                       pos->size,
2347                       (unsigned int) ntohs(((const struct GNUNET_MessageHeader*)&pos[1])->type),
2348                       (unsigned int) ntohs(((const struct GNUNET_MessageHeader*)&pos[1])->size));
2349 #endif
2350           /* copy for encrypted transmission */
2351           memcpy (&buf[ret], &pos[1], pos->size);
2352           ret += pos->size;
2353           size -= pos->size;
2354           *priority += pos->priority;
2355 #if DEBUG_CORE
2356           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2357                       "Adding plaintext message of size %u with deadline %llu ms to batch\n",
2358                       (unsigned int) pos->size,
2359                       (unsigned long long) GNUNET_TIME_absolute_get_remaining (pos->deadline).rel_value);
2360 #endif
2361           deadline->abs_value = GNUNET_MIN (deadline->abs_value, pos->deadline.abs_value);
2362           GNUNET_free (pos);
2363           if (prev == NULL)
2364             n->messages = next;
2365           else
2366             prev->next = next;
2367         }
2368       else
2369         {
2370           prev = pos;
2371         }
2372       pos = next;
2373     }
2374 #if DEBUG_CORE
2375   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2376               "Deadline for message batch is %llu ms\n",
2377               GNUNET_TIME_absolute_get_remaining (*deadline).rel_value);
2378 #endif
2379   return ret;
2380 }
2381
2382
2383 /**
2384  * Remove messages with deadlines that have long expired from
2385  * the queue.
2386  *
2387  * @param n neighbour to inspect
2388  */
2389 static void
2390 discard_expired_messages (struct Neighbour *n)
2391 {
2392   struct MessageEntry *prev;
2393   struct MessageEntry *next;
2394   struct MessageEntry *pos;
2395   struct GNUNET_TIME_Absolute now;
2396   struct GNUNET_TIME_Relative delta;
2397   int disc;
2398
2399   disc = GNUNET_NO;
2400   now = GNUNET_TIME_absolute_get ();
2401   prev = NULL;
2402   pos = n->messages;
2403   while (pos != NULL) 
2404     {
2405       next = pos->next;
2406       delta = GNUNET_TIME_absolute_get_difference (pos->deadline, now);
2407       if (delta.rel_value > PAST_EXPIRATION_DISCARD_TIME.rel_value)
2408         {
2409 #if DEBUG_CORE
2410           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2411                       "Message is %llu ms past due, discarding.\n",
2412                       delta.rel_value);
2413 #endif
2414           if (prev == NULL)
2415             n->messages = next;
2416           else
2417             prev->next = next;
2418           GNUNET_STATISTICS_update (stats, 
2419                                     gettext_noop ("# messages discarded (expired prior to transmission)"), 
2420                                     1, 
2421                                     GNUNET_NO);
2422           disc = GNUNET_YES;
2423           GNUNET_free (pos);
2424         }
2425       else
2426         prev = pos;
2427       pos = next;
2428     }
2429   if (GNUNET_YES == disc)
2430     schedule_peer_messages (n);
2431 }
2432
2433
2434 /**
2435  * Signature of the main function of a task.
2436  *
2437  * @param cls closure
2438  * @param tc context information (why was this task triggered now)
2439  */
2440 static void
2441 retry_plaintext_processing (void *cls,
2442                             const struct GNUNET_SCHEDULER_TaskContext *tc)
2443 {
2444   struct Neighbour *n = cls;
2445
2446   n->retry_plaintext_task = GNUNET_SCHEDULER_NO_TASK;
2447   process_plaintext_neighbour_queue (n);
2448 }
2449
2450
2451 /**
2452  * Send our key (and encrypted PING) to the other peer.
2453  *
2454  * @param n the other peer
2455  */
2456 static void send_key (struct Neighbour *n);
2457
2458 /**
2459  * Task that will retry "send_key" if our previous attempt failed
2460  * to yield a PONG.
2461  */
2462 static void
2463 set_key_retry_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2464 {
2465   struct Neighbour *n = cls;
2466
2467 #if DEBUG_CORE
2468   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2469               "Retrying key transmission to `%4s'\n",
2470               GNUNET_i2s (&n->peer));
2471 #endif
2472   n->retry_set_key_task = GNUNET_SCHEDULER_NO_TASK;
2473   n->set_key_retry_frequency =
2474     GNUNET_TIME_relative_multiply (n->set_key_retry_frequency, 2);
2475   send_key (n);
2476 }
2477
2478
2479 /**
2480  * Check if we have plaintext messages for the specified neighbour
2481  * pending, and if so, consider batching and encrypting them (and
2482  * then trigger processing of the encrypted queue if needed).
2483  *
2484  * @param n neighbour to check.
2485  */
2486 static void
2487 process_plaintext_neighbour_queue (struct Neighbour *n)
2488 {
2489   char pbuf[GNUNET_CONSTANTS_MAX_ENCRYPTED_MESSAGE_SIZE + sizeof (struct EncryptedMessage)];        /* plaintext */
2490   size_t used;
2491   struct EncryptedMessage *em;  /* encrypted message */
2492   struct EncryptedMessage *ph;  /* plaintext header */
2493   struct MessageEntry *me;
2494   unsigned int priority;
2495   struct GNUNET_TIME_Absolute deadline;
2496   struct GNUNET_TIME_Relative retry_time;
2497   struct GNUNET_CRYPTO_AesInitializationVector iv;
2498   struct GNUNET_CRYPTO_AuthKey auth_key;
2499
2500   if (n->retry_plaintext_task != GNUNET_SCHEDULER_NO_TASK)
2501     {
2502       GNUNET_SCHEDULER_cancel (n->retry_plaintext_task);
2503       n->retry_plaintext_task = GNUNET_SCHEDULER_NO_TASK;
2504     }
2505   switch (n->status)
2506     {
2507     case PEER_STATE_DOWN:
2508       send_key (n);
2509 #if DEBUG_CORE
2510       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2511                   "Not yet connected to `%4s', deferring processing of plaintext messages.\n",
2512                   GNUNET_i2s(&n->peer));
2513 #endif
2514       return;
2515     case PEER_STATE_KEY_SENT:
2516       if (n->retry_set_key_task == GNUNET_SCHEDULER_NO_TASK)
2517         n->retry_set_key_task
2518           = GNUNET_SCHEDULER_add_delayed (n->set_key_retry_frequency,
2519                                           &set_key_retry_task, n);    
2520 #if DEBUG_CORE
2521       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2522                   "Not yet connected to `%4s', deferring processing of plaintext messages.\n",
2523                   GNUNET_i2s(&n->peer));
2524 #endif
2525       return;
2526     case PEER_STATE_KEY_RECEIVED:
2527       if (n->retry_set_key_task == GNUNET_SCHEDULER_NO_TASK)        
2528         n->retry_set_key_task
2529           = GNUNET_SCHEDULER_add_delayed (n->set_key_retry_frequency,
2530                                           &set_key_retry_task, n);        
2531 #if DEBUG_CORE
2532       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2533                   "Not yet connected to `%4s', deferring processing of plaintext messages.\n",
2534                   GNUNET_i2s(&n->peer));
2535 #endif
2536       return;
2537     case PEER_STATE_KEY_CONFIRMED:
2538       /* ready to continue */
2539       break;
2540     }
2541   discard_expired_messages (n);
2542   if (n->messages == NULL)
2543     {
2544 #if DEBUG_CORE
2545       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2546                   "Plaintext message queue for `%4s' is empty.\n",
2547                   GNUNET_i2s(&n->peer));
2548 #endif
2549       return;                   /* no pending messages */
2550     }
2551   if (n->encrypted_head != NULL)
2552     {
2553 #if DEBUG_CORE
2554       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2555                   "Encrypted message queue for `%4s' is still full, delaying plaintext processing.\n",
2556                   GNUNET_i2s(&n->peer));
2557 #endif
2558       return;                   /* wait for messages already encrypted to be
2559                                    processed first! */
2560     }
2561   ph = (struct EncryptedMessage *) pbuf;
2562   deadline = GNUNET_TIME_UNIT_FOREVER_ABS;
2563   priority = 0;
2564   used = sizeof (struct EncryptedMessage);
2565   used += batch_message (n,
2566                          &pbuf[used],
2567                          GNUNET_CONSTANTS_MAX_ENCRYPTED_MESSAGE_SIZE,
2568                          &deadline, &retry_time, &priority);
2569   if (used == sizeof (struct EncryptedMessage))
2570     {
2571 #if DEBUG_CORE
2572       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2573                   "No messages selected for transmission to `%4s' at this time, will try again later.\n",
2574                   GNUNET_i2s(&n->peer));
2575 #endif
2576       /* no messages selected for sending, try again later... */
2577       n->retry_plaintext_task =
2578         GNUNET_SCHEDULER_add_delayed (retry_time,
2579                                       &retry_plaintext_processing, n);
2580       return;
2581     }
2582 #if DEBUG_CORE_QUOTA
2583   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2584               "Sending %u b/s as new limit to peer `%4s'\n",
2585               (unsigned int) ntohl (n->bw_in.value__),
2586               GNUNET_i2s (&n->peer));
2587 #endif
2588   ph->iv_seed = htonl (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX));
2589   ph->sequence_number = htonl (++n->last_sequence_number_sent);
2590   ph->inbound_bw_limit = n->bw_in;
2591   ph->timestamp = GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_get ());
2592
2593   /* setup encryption message header */
2594   me = GNUNET_malloc (sizeof (struct MessageEntry) + used);
2595   me->deadline = deadline;
2596   me->priority = priority;
2597   me->size = used;
2598   em = (struct EncryptedMessage *) &me[1];
2599   em->header.size = htons (used);
2600   em->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_ENCRYPTED_MESSAGE);
2601   em->iv_seed = ph->iv_seed;
2602   derive_iv (&iv, &n->encrypt_key, ph->iv_seed, &n->peer);
2603   /* encrypt */
2604 #if DEBUG_HANDSHAKE
2605   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2606               "Encrypting %u bytes of plaintext messages for `%4s' for transmission in %llums.\n",
2607               (unsigned int) used - ENCRYPTED_HEADER_SIZE,
2608               GNUNET_i2s(&n->peer),
2609               (unsigned long long) GNUNET_TIME_absolute_get_remaining (deadline).rel_value);
2610 #endif
2611   GNUNET_assert (GNUNET_OK ==
2612                  do_encrypt (n,
2613                              &iv,
2614                              &ph->sequence_number,
2615                              &em->sequence_number, used - ENCRYPTED_HEADER_SIZE));
2616   derive_auth_key (&auth_key,
2617                    &n->encrypt_key,
2618                    ph->iv_seed,
2619                    n->encrypt_key_created);
2620   GNUNET_CRYPTO_hmac (&auth_key,
2621                       &em->sequence_number,
2622                       used - ENCRYPTED_HEADER_SIZE,
2623                       &em->hmac);
2624 #if DEBUG_HANDSHAKE
2625   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2626               "Authenticated %u bytes of ciphertext %u: `%s'\n",
2627               used - ENCRYPTED_HEADER_SIZE,
2628               GNUNET_CRYPTO_crc32_n (&em->sequence_number,
2629                   used - ENCRYPTED_HEADER_SIZE),
2630               GNUNET_h2s (&em->hmac));
2631 #endif
2632   /* append to transmission list */
2633   GNUNET_CONTAINER_DLL_insert_after (n->encrypted_head,
2634                                      n->encrypted_tail,
2635                                      n->encrypted_tail,
2636                                      me);
2637   process_encrypted_neighbour_queue (n);
2638   schedule_peer_messages (n);
2639 }
2640
2641
2642 /**
2643  * Function that recalculates the bandwidth quota for the
2644  * given neighbour and transmits it to the transport service.
2645  * 
2646  * @param cls neighbour for the quota update
2647  * @param tc context
2648  */
2649 static void
2650 neighbour_quota_update (void *cls,
2651                         const struct GNUNET_SCHEDULER_TaskContext *tc);
2652
2653
2654 /**
2655  * Schedule the task that will recalculate the bandwidth
2656  * quota for this peer (and possibly force a disconnect of
2657  * idle peers by calculating a bandwidth of zero).
2658  */
2659 static void
2660 schedule_quota_update (struct Neighbour *n)
2661 {
2662   GNUNET_assert (n->quota_update_task ==
2663                  GNUNET_SCHEDULER_NO_TASK);
2664   n->quota_update_task
2665     = GNUNET_SCHEDULER_add_delayed (QUOTA_UPDATE_FREQUENCY,
2666                                     &neighbour_quota_update,
2667                                     n);
2668 }
2669
2670
2671 /**
2672  * Initialize a new 'struct Neighbour'.
2673  *
2674  * @param pid ID of the new neighbour
2675  * @return handle for the new neighbour
2676  */
2677 static struct Neighbour *
2678 create_neighbour (const struct GNUNET_PeerIdentity *pid)
2679 {
2680   struct Neighbour *n;
2681   struct GNUNET_TIME_Absolute now;
2682
2683 #if DEBUG_CORE
2684   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2685               "Creating neighbour entry for peer `%4s'\n",
2686               GNUNET_i2s (pid));
2687 #endif
2688   n = GNUNET_malloc (sizeof (struct Neighbour));
2689   n->peer = *pid;
2690   GNUNET_CRYPTO_aes_create_session_key (&n->encrypt_key);
2691   now = GNUNET_TIME_absolute_get ();
2692   n->encrypt_key_created = now;
2693   n->last_activity = now;
2694   n->set_key_retry_frequency = INITIAL_SET_KEY_RETRY_FREQUENCY;
2695   n->bw_in = GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT;
2696   n->bw_out = GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT;
2697   n->bw_out_internal_limit = GNUNET_BANDWIDTH_value_init (UINT32_MAX);
2698   n->bw_out_external_limit = GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT;
2699   n->ping_challenge = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
2700                                                 UINT32_MAX);
2701   GNUNET_assert (GNUNET_OK == 
2702                  GNUNET_CONTAINER_multihashmap_put (neighbours,
2703                                                     &n->peer.hashPubKey,
2704                                                     n,
2705                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
2706   GNUNET_STATISTICS_set (stats, gettext_noop ("# neighbour entries allocated"), 
2707                          GNUNET_CONTAINER_multihashmap_size (neighbours), GNUNET_NO);
2708   neighbour_quota_update (n, NULL);
2709   consider_free_neighbour (n);
2710   return n;
2711 }
2712
2713
2714 /**
2715  * Handle CORE_SEND request.
2716  *
2717  * @param cls unused
2718  * @param client the client issuing the request
2719  * @param message the "struct SendMessage"
2720  */
2721 static void
2722 handle_client_send (void *cls,
2723                     struct GNUNET_SERVER_Client *client,
2724                     const struct GNUNET_MessageHeader *message)
2725 {
2726   const struct SendMessage *sm;
2727   struct Neighbour *n;
2728   struct MessageEntry *prev;
2729   struct MessageEntry *pos;
2730   struct MessageEntry *e; 
2731   struct MessageEntry *min_prio_entry;
2732   struct MessageEntry *min_prio_prev;
2733   unsigned int min_prio;
2734   unsigned int queue_size;
2735   uint16_t msize;
2736
2737   msize = ntohs (message->size);
2738   if (msize <
2739       sizeof (struct SendMessage) + sizeof (struct GNUNET_MessageHeader))
2740     {
2741       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "about to assert fail, msize is %d, should be at least %d\n", msize, sizeof (struct SendMessage) + sizeof (struct GNUNET_MessageHeader));
2742       GNUNET_break (0);
2743       if (client != NULL)
2744         GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2745       return;
2746     }
2747   sm = (const struct SendMessage *) message;
2748   msize -= sizeof (struct SendMessage);
2749   if (0 == memcmp (&sm->peer, &my_identity, sizeof (struct GNUNET_PeerIdentity)))
2750     {
2751       /* loopback */
2752       GNUNET_SERVER_mst_receive (mst,
2753                                  &self,
2754                                  (const char*) &sm[1],
2755                                  msize,
2756                                  GNUNET_YES,
2757                                  GNUNET_NO);
2758       if (client != NULL)
2759         GNUNET_SERVER_receive_done (client, GNUNET_OK);
2760       return;
2761     }
2762   n = find_neighbour (&sm->peer);
2763   if (n == NULL)
2764     n = create_neighbour (&sm->peer);
2765 #if DEBUG_CORE
2766   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2767               "Core received `%s' request, queueing %u bytes of plaintext data for transmission to `%4s'.\n",
2768               "SEND",
2769               (unsigned int) msize, 
2770               GNUNET_i2s (&sm->peer));
2771 #endif
2772   discard_expired_messages (n);
2773   /* bound queue size */
2774   /* NOTE: this entire block to bound the queue size should be
2775      obsolete with the new client-request code and the
2776      'schedule_peer_messages' mechanism; we still have this code in
2777      here for now as a sanity check for the new mechanmism;
2778      ultimately, we should probably simply reject SEND messages that
2779      are not 'approved' (or provide a new core API for very unreliable
2780      delivery that always sends with priority 0).  Food for thought. */
2781   min_prio = UINT32_MAX;
2782   min_prio_entry = NULL;
2783   min_prio_prev = NULL;
2784   queue_size = 0;
2785   prev = NULL;
2786   pos = n->messages;
2787   while (pos != NULL) 
2788     {
2789       if (pos->priority <= min_prio)
2790         {
2791           min_prio_entry = pos;
2792           min_prio_prev = prev;
2793           min_prio = pos->priority;
2794         }
2795       queue_size++;
2796       prev = pos;
2797       pos = pos->next;
2798     }
2799   if (queue_size >= MAX_PEER_QUEUE_SIZE)
2800     {
2801       /* queue full */
2802       if (ntohl(sm->priority) <= min_prio)
2803         {
2804           /* discard new entry; this should no longer happen! */
2805           GNUNET_break (0);
2806 #if DEBUG_CORE
2807           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2808                       "Queue full (%u/%u), discarding new request (%u bytes of type %u)\n",
2809                       queue_size,
2810                       (unsigned int) MAX_PEER_QUEUE_SIZE,
2811                       (unsigned int) msize,
2812                       (unsigned int) ntohs (message->type));
2813 #endif
2814           GNUNET_STATISTICS_update (stats, 
2815                                     gettext_noop ("# discarded CORE_SEND requests"), 
2816                                     1, GNUNET_NO);
2817
2818           if (client != NULL)
2819             GNUNET_SERVER_receive_done (client, GNUNET_OK);
2820           return;
2821         }
2822       GNUNET_assert (min_prio_entry != NULL);
2823       /* discard "min_prio_entry" */
2824 #if DEBUG_CORE
2825       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2826                   "Queue full, discarding existing older request\n");
2827 #endif
2828           GNUNET_STATISTICS_update (stats, gettext_noop ("# discarded lower priority CORE_SEND requests"), 1, GNUNET_NO);
2829       if (min_prio_prev == NULL)
2830         n->messages = min_prio_entry->next;
2831       else
2832         min_prio_prev->next = min_prio_entry->next;      
2833       GNUNET_free (min_prio_entry);     
2834     }
2835
2836 #if DEBUG_CORE
2837   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2838               "Adding transmission request for `%4s' of size %u to queue\n",
2839               GNUNET_i2s (&sm->peer),
2840               (unsigned int) msize);
2841 #endif  
2842   e = GNUNET_malloc (sizeof (struct MessageEntry) + msize);
2843   e->deadline = GNUNET_TIME_absolute_ntoh (sm->deadline);
2844   e->priority = ntohl (sm->priority);
2845   e->size = msize;
2846   memcpy (&e[1], &sm[1], msize);
2847
2848   /* insert, keep list sorted by deadline */
2849   prev = NULL;
2850   pos = n->messages;
2851   while ((pos != NULL) && (pos->deadline.abs_value < e->deadline.abs_value))
2852     {
2853       prev = pos;
2854       pos = pos->next;
2855     }
2856   if (prev == NULL)
2857     n->messages = e;
2858   else
2859     prev->next = e;
2860   e->next = pos;
2861
2862   /* consider scheduling now */
2863   process_plaintext_neighbour_queue (n);
2864   if (client != NULL)
2865     GNUNET_SERVER_receive_done (client, GNUNET_OK);
2866 }
2867
2868
2869 /**
2870  * Function called when the transport service is ready to
2871  * receive a message.  Only resets 'n->th' to NULL.
2872  *
2873  * @param cls neighbour to use message from
2874  * @param size number of bytes we can transmit
2875  * @param buf where to copy the message
2876  * @return number of bytes transmitted
2877  */
2878 static size_t
2879 notify_transport_connect_done (void *cls, size_t size, void *buf)
2880 {
2881   struct Neighbour *n = cls;
2882
2883   n->th = NULL;
2884   if (GNUNET_YES != n->is_connected)
2885     {
2886       /* transport should only call us to transmit a message after
2887        * telling us about a successful connection to the respective peer */
2888 #if DEBUG_CORE
2889       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Timeout on notify connect!\n");
2890 #endif
2891       return 0;
2892     }
2893   if (buf == NULL)
2894     {
2895       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2896                   _("Failed to connect to `%4s': transport failed to connect\n"),
2897                   GNUNET_i2s (&n->peer));
2898       return 0;
2899     }
2900   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2901               _("TRANSPORT connection to peer `%4s' is up, trying to establish CORE connection\n"),
2902               GNUNET_i2s (&n->peer));
2903   if (n->retry_set_key_task != GNUNET_SCHEDULER_NO_TASK)
2904     GNUNET_SCHEDULER_cancel (n->retry_set_key_task);
2905   n->retry_set_key_task = GNUNET_SCHEDULER_add_now (&set_key_retry_task,
2906                                                     n);
2907   return 0;
2908 }
2909
2910
2911 /**
2912  * Handle CORE_REQUEST_CONNECT request.
2913  *
2914  * @param cls unused
2915  * @param client the client issuing the request
2916  * @param message the "struct ConnectMessage"
2917  */
2918 static void
2919 handle_client_request_connect (void *cls,
2920                                struct GNUNET_SERVER_Client *client,
2921                                const struct GNUNET_MessageHeader *message)
2922 {
2923   const struct ConnectMessage *cm = (const struct ConnectMessage*) message;
2924   struct Neighbour *n;
2925   struct GNUNET_TIME_Relative timeout;
2926
2927   if (0 == memcmp (&cm->peer, 
2928                    &my_identity, 
2929                    sizeof (struct GNUNET_PeerIdentity)))
2930     {
2931       GNUNET_break (0);
2932       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2933       return;
2934     }
2935   GNUNET_break (ntohl (cm->reserved) == 0);
2936   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2937   n = find_neighbour (&cm->peer);
2938   if (n == NULL)
2939     n = create_neighbour (&cm->peer);
2940   if ( (GNUNET_YES == n->is_connected) ||
2941        (n->th != NULL) )
2942     {
2943       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2944                  "Core received `%s' request for `%4s', already connected!\n",
2945                  "REQUEST_CONNECT",
2946                  GNUNET_i2s (&cm->peer));
2947       GNUNET_STATISTICS_update (stats, 
2948                                 gettext_noop ("# connection requests ignored (already connected)"), 
2949                                 1,
2950                                 GNUNET_NO);
2951       return; /* already connected, or at least trying */
2952     }
2953   GNUNET_STATISTICS_update (stats, 
2954                             gettext_noop ("# connection requests received"), 
2955                             1,
2956                             GNUNET_NO);
2957
2958   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2959               "Core received `%s' request for `%4s', will try to establish connection\n",
2960               "REQUEST_CONNECT",
2961               GNUNET_i2s (&cm->peer));
2962
2963   timeout = GNUNET_TIME_relative_ntoh (cm->timeout);
2964   /* ask transport to connect to the peer */
2965   n->th = GNUNET_TRANSPORT_notify_transmit_ready (transport,
2966                                                   &cm->peer,
2967                                                   sizeof (struct GNUNET_MessageHeader), 0,
2968                                                   timeout,
2969                                                   &notify_transport_connect_done,
2970                                                   n);
2971   GNUNET_break (NULL != n->th);
2972 }
2973
2974
2975 /**
2976  * PEERINFO is giving us a HELLO for a peer.  Add the public key to
2977  * the neighbour's struct and retry send_key.  Or, if we did not get a
2978  * HELLO, just do nothing.
2979  *
2980  * @param cls the 'struct Neighbour' to retry sending the key for
2981  * @param peer the peer for which this is the HELLO
2982  * @param hello HELLO message of that peer
2983  */
2984 static void
2985 process_hello_retry_send_key (void *cls,
2986                               const struct GNUNET_PeerIdentity *peer,
2987                               const struct GNUNET_HELLO_Message *hello)
2988 {
2989   struct Neighbour *n = cls;
2990
2991   if (peer == NULL)
2992     {
2993 #if DEBUG_CORE
2994       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2995                   "Entered `%s' and `%s' is NULL!\n",
2996                   "process_hello_retry_send_key",
2997                   "peer");
2998 #endif
2999       n->pitr = NULL;
3000       if (n->public_key != NULL)
3001         {
3002           if (n->retry_set_key_task != GNUNET_SCHEDULER_NO_TASK)
3003             {
3004               GNUNET_SCHEDULER_cancel (n->retry_set_key_task);
3005               n->retry_set_key_task = GNUNET_SCHEDULER_NO_TASK;
3006             }      
3007           GNUNET_STATISTICS_update (stats,
3008                                     gettext_noop ("# SET_KEY messages deferred (need public key)"), 
3009                                     -1, 
3010                                     GNUNET_NO);
3011           send_key (n);
3012         }
3013       else
3014         {
3015 #if DEBUG_CORE
3016           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3017                       "Failed to obtain public key for peer `%4s', delaying processing of SET_KEY\n",
3018                       GNUNET_i2s (&n->peer));
3019 #endif
3020           GNUNET_STATISTICS_update (stats,
3021                                     gettext_noop ("# Delayed connecting due to lack of public key"),
3022                                     1,
3023                                     GNUNET_NO);      
3024           if (GNUNET_SCHEDULER_NO_TASK == n->retry_set_key_task)
3025             n->retry_set_key_task
3026               = GNUNET_SCHEDULER_add_delayed (n->set_key_retry_frequency,
3027                                               &set_key_retry_task, n);
3028         }
3029       return;
3030     }
3031
3032 #if DEBUG_CORE
3033   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3034               "Entered `%s' for peer `%4s'\n",
3035               "process_hello_retry_send_key",
3036               GNUNET_i2s (peer));
3037 #endif
3038   if (n->public_key != NULL)
3039     {
3040       /* already have public key, why are we here? */
3041       GNUNET_break (0);
3042       return;
3043     }
3044
3045 #if DEBUG_CORE
3046   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3047               "Received new `%s' message for `%4s', initiating key exchange.\n",
3048               "HELLO",
3049               GNUNET_i2s (peer));
3050 #endif
3051   n->public_key =
3052     GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
3053   if (GNUNET_OK != GNUNET_HELLO_get_key (hello, n->public_key))
3054     {
3055       GNUNET_STATISTICS_update (stats,
3056                                 gettext_noop ("# Error extracting public key from HELLO"),
3057                                 1,
3058                                 GNUNET_NO);      
3059       GNUNET_free (n->public_key);
3060       n->public_key = NULL;
3061 #if DEBUG_CORE
3062   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3063               "GNUNET_HELLO_get_key returned awfully\n");
3064 #endif
3065       return;
3066     }
3067 }
3068
3069
3070 /**
3071  * Send our key (and encrypted PING) to the other peer.
3072  *
3073  * @param n the other peer
3074  */
3075 static void
3076 send_key (struct Neighbour *n)
3077 {
3078   struct MessageEntry *pos;
3079   struct SetKeyMessage *sm;
3080   struct MessageEntry *me;
3081   struct PingMessage pp;
3082   struct PingMessage *pm;
3083   struct GNUNET_CRYPTO_AesInitializationVector iv;
3084
3085   if (n->retry_set_key_task != GNUNET_SCHEDULER_NO_TASK)
3086     {
3087       GNUNET_SCHEDULER_cancel (n->retry_set_key_task);
3088       n->retry_set_key_task = GNUNET_SCHEDULER_NO_TASK;
3089     }        
3090   if (n->pitr != NULL)
3091     {
3092 #if DEBUG_CORE
3093       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3094                   "Key exchange in progress with `%4s'.\n",
3095                   GNUNET_i2s (&n->peer));
3096 #endif
3097       return; /* already in progress */
3098     }
3099   if (GNUNET_YES != n->is_connected)
3100     {
3101 #if DEBUG_CORE
3102       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3103                   "Not yet connected to peer `%4s'!\n",
3104                   GNUNET_i2s (&n->peer));
3105 #endif
3106       if (NULL == n->th)
3107         {
3108           GNUNET_STATISTICS_update (stats, 
3109                                     gettext_noop ("# Asking transport to connect (for SET_KEY)"), 
3110                                     1, 
3111                                     GNUNET_NO);
3112           n->th = GNUNET_TRANSPORT_notify_transmit_ready (transport,
3113                                                           &n->peer,
3114                                                           sizeof (struct SetKeyMessage) + sizeof (struct PingMessage),
3115                                                           0,
3116                                                           GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
3117                                                           &notify_encrypted_transmit_ready,
3118                                                           n);
3119         }
3120       return; 
3121     }
3122 #if DEBUG_CORE
3123   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3124               "Asked to perform key exchange with `%4s'.\n",
3125               GNUNET_i2s (&n->peer));
3126 #endif
3127   if (n->public_key == NULL)
3128     {
3129       /* lookup n's public key, then try again */
3130 #if DEBUG_CORE
3131       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3132                   "Lacking public key for `%4s', trying to obtain one (send_key).\n",
3133                   GNUNET_i2s (&n->peer));
3134 #endif
3135       GNUNET_assert (n->pitr == NULL);
3136       n->pitr = GNUNET_PEERINFO_iterate (peerinfo,
3137                                          &n->peer,
3138                                          GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 20),
3139                                          &process_hello_retry_send_key, n);
3140       return;
3141     }
3142   pos = n->encrypted_head;
3143   while (pos != NULL)
3144     {
3145       if (GNUNET_YES == pos->is_setkey)
3146         {
3147           if (pos->sender_status == n->status)
3148             {
3149 #if DEBUG_CORE
3150               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3151                           "`%s' message for `%4s' queued already\n",
3152                           "SET_KEY",
3153                           GNUNET_i2s (&n->peer));
3154 #endif
3155               goto trigger_processing;
3156             }
3157           GNUNET_CONTAINER_DLL_remove (n->encrypted_head,
3158                                        n->encrypted_tail,
3159                                        pos);
3160           GNUNET_free (pos);
3161 #if DEBUG_CORE
3162           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3163                       "Removing queued `%s' message for `%4s', will create a new one\n",
3164                       "SET_KEY",
3165                       GNUNET_i2s (&n->peer));
3166 #endif
3167           break;
3168         }
3169       pos = pos->next;
3170     }
3171
3172   /* update status */
3173   switch (n->status)
3174     {
3175     case PEER_STATE_DOWN:
3176       n->status = PEER_STATE_KEY_SENT;
3177       break;
3178     case PEER_STATE_KEY_SENT:
3179       break;
3180     case PEER_STATE_KEY_RECEIVED:
3181       break;
3182     case PEER_STATE_KEY_CONFIRMED:
3183       break;
3184     default:
3185       GNUNET_break (0);
3186       break;
3187     }
3188   
3189
3190   /* first, set key message */
3191   me = GNUNET_malloc (sizeof (struct MessageEntry) +
3192                       sizeof (struct SetKeyMessage) +
3193                       sizeof (struct PingMessage));
3194   me->deadline = GNUNET_TIME_relative_to_absolute (MAX_SET_KEY_DELAY);
3195   me->priority = SET_KEY_PRIORITY;
3196   me->size = sizeof (struct SetKeyMessage) + sizeof (struct PingMessage);
3197   me->is_setkey = GNUNET_YES;
3198   me->got_slack = GNUNET_YES; /* do not defer this one! */
3199   me->sender_status = n->status;
3200   GNUNET_CONTAINER_DLL_insert_after (n->encrypted_head,
3201                                      n->encrypted_tail,
3202                                      n->encrypted_tail,
3203                                      me);
3204   sm = (struct SetKeyMessage *) &me[1];
3205   sm->header.size = htons (sizeof (struct SetKeyMessage));
3206   sm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_SET_KEY);
3207   sm->sender_status = htonl ((int32_t) ((n->status == PEER_STATE_DOWN) ?
3208                                         PEER_STATE_KEY_SENT : n->status));
3209   sm->purpose.size =
3210     htonl (sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) +
3211            sizeof (struct GNUNET_TIME_AbsoluteNBO) +
3212            sizeof (struct GNUNET_CRYPTO_RsaEncryptedData) +
3213            sizeof (struct GNUNET_PeerIdentity));
3214   sm->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_SET_KEY);
3215   sm->creation_time = GNUNET_TIME_absolute_hton (n->encrypt_key_created);
3216   sm->target = n->peer;
3217   GNUNET_assert (GNUNET_OK ==
3218                  GNUNET_CRYPTO_rsa_encrypt (&n->encrypt_key,
3219                                             sizeof (struct
3220                                                     GNUNET_CRYPTO_AesSessionKey),
3221                                             n->public_key,
3222                                             &sm->encrypted_key));
3223   GNUNET_assert (GNUNET_OK ==
3224                  GNUNET_CRYPTO_rsa_sign (my_private_key, &sm->purpose,
3225                                          &sm->signature));  
3226   pm = (struct PingMessage *) &sm[1];
3227   pm->header.size = htons (sizeof (struct PingMessage));
3228   pm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_PING);
3229   pm->iv_seed = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
3230   derive_iv (&iv, &n->encrypt_key, pm->iv_seed, &n->peer);
3231   pp.challenge = n->ping_challenge;
3232   pp.target = n->peer;
3233 #if DEBUG_HANDSHAKE
3234   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3235               "Encrypting `%s' and `%s' messages with challenge %u for `%4s' using key %u, IV %u (salt %u).\n",
3236               "SET_KEY", "PING",
3237               (unsigned int) n->ping_challenge,
3238               GNUNET_i2s (&n->peer),
3239               (unsigned int) n->encrypt_key.crc32,
3240               GNUNET_CRYPTO_crc32_n (&iv, sizeof(iv)),
3241               pm->iv_seed);
3242 #endif
3243   do_encrypt (n,
3244               &iv,
3245               &pp.target,
3246               &pm->target,
3247               sizeof (struct PingMessage) -
3248               ((void *) &pm->target - (void *) pm));
3249   GNUNET_STATISTICS_update (stats, 
3250                             gettext_noop ("# SET_KEY and PING messages created"), 
3251                             1, 
3252                             GNUNET_NO);
3253 #if DEBUG_CORE
3254   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3255               "Have %llu ms left for `%s' transmission.\n",
3256               (unsigned long long) GNUNET_TIME_absolute_get_remaining (me->deadline).rel_value,
3257               "SET_KEY");
3258 #endif
3259  trigger_processing:
3260   /* trigger queue processing */
3261   process_encrypted_neighbour_queue (n);
3262   if ( (n->status != PEER_STATE_KEY_CONFIRMED) &&
3263        (GNUNET_SCHEDULER_NO_TASK == n->retry_set_key_task) )
3264     n->retry_set_key_task
3265       = GNUNET_SCHEDULER_add_delayed (n->set_key_retry_frequency,
3266                                       &set_key_retry_task, n);    
3267 }
3268
3269
3270 /**
3271  * We received a SET_KEY message.  Validate and update
3272  * our key material and status.
3273  *
3274  * @param n the neighbour from which we received message m
3275  * @param m the set key message we received
3276  * @param ats performance data
3277  * @param ats_count number of entries in ats (excluding 0-termination)
3278  */
3279 static void
3280 handle_set_key (struct Neighbour *n,
3281                 const struct SetKeyMessage *m,
3282                 const struct GNUNET_TRANSPORT_ATS_Information *ats, 
3283                 uint32_t ats_count);
3284
3285
3286
3287 /**
3288  * PEERINFO is giving us a HELLO for a peer.  Add the public key to
3289  * the neighbour's struct and retry handling the set_key message.  Or,
3290  * if we did not get a HELLO, just free the set key message.
3291  *
3292  * @param cls pointer to the set key message
3293  * @param peer the peer for which this is the HELLO
3294  * @param hello HELLO message of that peer
3295  */
3296 static void
3297 process_hello_retry_handle_set_key (void *cls,
3298                                     const struct GNUNET_PeerIdentity *peer,
3299                                     const struct GNUNET_HELLO_Message *hello)
3300 {
3301   struct Neighbour *n = cls;
3302   struct SetKeyMessage *sm = n->skm;
3303
3304   if (peer == NULL)
3305     {
3306       n->skm = NULL;
3307       n->pitr = NULL;
3308       if (n->public_key != NULL)
3309         {
3310 #if DEBUG_CORE
3311           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3312                       "Received `%s' for `%4s', continuing processing of `%s' message.\n",
3313                       "HELLO",
3314                       GNUNET_i2s (&n->peer),
3315                       "SET_KEY");
3316 #endif
3317           handle_set_key (n, sm, NULL, 0);
3318         }
3319       else
3320         {
3321           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3322                       _("Ignoring `%s' message due to lack of public key for peer `%4s' (failed to obtain one).\n"),
3323                       "SET_KEY",
3324                       GNUNET_i2s (&n->peer));
3325         }
3326       GNUNET_free (sm);
3327       return;
3328     }
3329   if (n->public_key != NULL)
3330     return;                     /* multiple HELLOs match!? */
3331   n->public_key =
3332     GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
3333   if (GNUNET_OK != GNUNET_HELLO_get_key (hello, n->public_key))
3334     {
3335       GNUNET_break_op (0);
3336       GNUNET_free (n->public_key);
3337       n->public_key = NULL;
3338     }
3339 }
3340
3341
3342 /**
3343  * Merge the given performance data with the data we currently
3344  * track for the given neighbour.
3345  *
3346  * @param n neighbour
3347  * @param ats new performance data
3348  * @param ats_count number of records in ats
3349  */
3350 static void
3351 update_neighbour_performance (struct Neighbour *n,
3352                               const struct GNUNET_TRANSPORT_ATS_Information *ats, 
3353                               uint32_t ats_count)
3354 {
3355   uint32_t i;
3356   unsigned int j;
3357
3358   if (ats_count == 0)
3359     return;
3360   for (i = 0; i < ats_count; i++)
3361     {
3362       for (j=0;j < n->ats_count; j++)
3363         {
3364           if (n->ats[j].type == ats[i].type)
3365             {
3366               n->ats[j].value = ats[i].value;
3367               break;
3368             }
3369         }
3370       if (j == n->ats_count)
3371         {
3372           GNUNET_array_append (n->ats,
3373                                n->ats_count,
3374                                ats[i]);
3375         }
3376     }
3377 }
3378
3379
3380 /**
3381  * We received a PING message.  Validate and transmit
3382  * PONG.
3383  *
3384  * @param n sender of the PING
3385  * @param m the encrypted PING message itself
3386  * @param ats performance data
3387  * @param ats_count number of entries in ats (excluding 0-termination)
3388  */
3389 static void
3390 handle_ping (struct Neighbour *n,
3391              const struct PingMessage *m,
3392              const struct GNUNET_TRANSPORT_ATS_Information *ats, 
3393              uint32_t ats_count)
3394 {
3395   struct PingMessage t;
3396   struct PongMessage tx;
3397   struct PongMessage *tp;
3398   struct MessageEntry *me;
3399   struct GNUNET_CRYPTO_AesInitializationVector iv;
3400
3401 #if DEBUG_CORE
3402   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3403               "Core service receives `%s' request from `%4s'.\n",
3404               "PING", GNUNET_i2s (&n->peer));
3405 #endif
3406   derive_iv (&iv, &n->decrypt_key, m->iv_seed, &my_identity);
3407   if (GNUNET_OK !=
3408       do_decrypt (n,
3409                   &iv,
3410                   &m->target,
3411                   &t.target,
3412                   sizeof (struct PingMessage) -
3413                   ((void *) &m->target - (void *) m)))
3414     return;
3415 #if DEBUG_HANDSHAKE
3416   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3417               "Decrypted `%s' to `%4s' with challenge %u decrypted using key %u, IV %u (salt %u)\n",
3418               "PING",
3419               GNUNET_i2s (&t.target),
3420               (unsigned int) t.challenge,
3421               (unsigned int) n->decrypt_key.crc32,
3422               GNUNET_CRYPTO_crc32_n (&iv, sizeof(iv)),
3423               m->iv_seed);
3424 #endif
3425   GNUNET_STATISTICS_update (stats,
3426                             gettext_noop ("# PING messages decrypted"), 
3427                             1,
3428                             GNUNET_NO);
3429   if (0 != memcmp (&t.target,
3430                    &my_identity, sizeof (struct GNUNET_PeerIdentity)))
3431     {
3432       GNUNET_break_op (0);
3433       return;
3434     }
3435   update_neighbour_performance (n, ats, ats_count);
3436   me = GNUNET_malloc (sizeof (struct MessageEntry) +
3437                       sizeof (struct PongMessage));
3438   GNUNET_CONTAINER_DLL_insert_after (n->encrypted_head,
3439                                      n->encrypted_tail,
3440                                      n->encrypted_tail,
3441                                      me);
3442   me->deadline = GNUNET_TIME_relative_to_absolute (MAX_PONG_DELAY);
3443   me->priority = PONG_PRIORITY;
3444   me->size = sizeof (struct PongMessage);
3445   tx.inbound_bw_limit = n->bw_in;
3446   tx.challenge = t.challenge;
3447   tx.target = t.target;
3448   tp = (struct PongMessage *) &me[1];
3449   tp->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_PONG);
3450   tp->header.size = htons (sizeof (struct PongMessage));
3451   tp->iv_seed = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_NONCE, UINT32_MAX);
3452   derive_pong_iv (&iv, &n->encrypt_key, tp->iv_seed, t.challenge, &n->peer);
3453   do_encrypt (n,
3454               &iv,
3455               &tx.challenge,
3456               &tp->challenge,
3457               sizeof (struct PongMessage) -
3458               ((void *) &tp->challenge - (void *) tp));
3459   GNUNET_STATISTICS_update (stats, 
3460                             gettext_noop ("# PONG messages created"), 
3461                             1, 
3462                             GNUNET_NO);
3463 #if DEBUG_HANDSHAKE
3464   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3465               "Encrypting `%s' with challenge %u using key %u, IV %u (salt %u)\n",
3466               "PONG",
3467               (unsigned int) t.challenge,
3468               (unsigned int) n->encrypt_key.crc32,
3469               GNUNET_CRYPTO_crc32_n (&iv, sizeof(iv)),
3470               tp->iv_seed);
3471 #endif
3472   /* trigger queue processing */
3473   process_encrypted_neighbour_queue (n);
3474 }
3475
3476
3477 /**
3478  * We received a PONG message.  Validate and update our status.
3479  *
3480  * @param n sender of the PONG
3481  * @param m the encrypted PONG message itself
3482  * @param ats performance data
3483  * @param ats_count number of entries in ats (excluding 0-termination)
3484  */
3485 static void
3486 handle_pong (struct Neighbour *n, 
3487              const struct PongMessage *m,
3488              const struct GNUNET_TRANSPORT_ATS_Information *ats, 
3489              uint32_t ats_count)
3490 {
3491   struct PongMessage t;
3492   struct ConnectNotifyMessage *cnm;
3493   struct GNUNET_CRYPTO_AesInitializationVector iv;
3494   char buf[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
3495   struct GNUNET_TRANSPORT_ATS_Information *mats;
3496   size_t size;
3497
3498 #if DEBUG_CORE
3499   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3500               "Core service receives `%s' response from `%4s'.\n",
3501               "PONG", GNUNET_i2s (&n->peer));
3502 #endif
3503   /* mark as garbage, just to be sure */
3504   memset (&t, 255, sizeof (t));
3505   derive_pong_iv (&iv, &n->decrypt_key, m->iv_seed, n->ping_challenge,
3506       &my_identity);
3507   if (GNUNET_OK !=
3508       do_decrypt (n,
3509                   &iv,
3510                   &m->challenge,
3511                   &t.challenge,
3512                   sizeof (struct PongMessage) -
3513                   ((void *) &m->challenge - (void *) m)))
3514     {
3515       GNUNET_break_op (0);
3516       return;
3517     }
3518   GNUNET_STATISTICS_update (stats, 
3519                             gettext_noop ("# PONG messages decrypted"), 
3520                             1, 
3521                             GNUNET_NO);
3522 #if DEBUG_HANDSHAKE
3523   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3524               "Decrypted `%s' from `%4s' with challenge %u using key %u, IV %u (salt %u)\n",
3525               "PONG",
3526               GNUNET_i2s (&t.target),
3527               (unsigned int) t.challenge,
3528               (unsigned int) n->decrypt_key.crc32,
3529               GNUNET_CRYPTO_crc32_n (&iv, sizeof(iv)),
3530               m->iv_seed);
3531 #endif
3532   if ((0 != memcmp (&t.target,
3533                     &n->peer,
3534                     sizeof (struct GNUNET_PeerIdentity))) ||
3535       (n->ping_challenge != t.challenge))
3536     {
3537       /* PONG malformed */
3538 #if DEBUG_CORE
3539       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3540                   "Received malformed `%s' wanted sender `%4s' with challenge %u\n",
3541                   "PONG", 
3542                   GNUNET_i2s (&n->peer),
3543                   (unsigned int) n->ping_challenge);
3544       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3545                   "Received malformed `%s' received from `%4s' with challenge %u\n",
3546                   "PONG", GNUNET_i2s (&t.target), 
3547                   (unsigned int) t.challenge);
3548 #endif
3549       GNUNET_break_op (n->ping_challenge != t.challenge);
3550       return;
3551     }
3552   switch (n->status)
3553     {
3554     case PEER_STATE_DOWN:
3555       GNUNET_break (0);         /* should be impossible */
3556       return;
3557     case PEER_STATE_KEY_SENT:
3558       GNUNET_break (0);         /* should be impossible, how did we decrypt? */
3559       return;
3560     case PEER_STATE_KEY_RECEIVED:
3561       GNUNET_STATISTICS_update (stats, 
3562                                 gettext_noop ("# Session keys confirmed via PONG"), 
3563                                 1, 
3564                                 GNUNET_NO);
3565       n->status = PEER_STATE_KEY_CONFIRMED;
3566       if (n->bw_out_external_limit.value__ != t.inbound_bw_limit.value__)
3567         {
3568           n->bw_out_external_limit = t.inbound_bw_limit;
3569           n->bw_out = GNUNET_BANDWIDTH_value_min (n->bw_out_external_limit,
3570                                                   n->bw_out_internal_limit);
3571           GNUNET_BANDWIDTH_tracker_update_quota (&n->available_send_window,
3572                                                  n->bw_out);       
3573           GNUNET_TRANSPORT_set_quota (transport,
3574                                       &n->peer,
3575                                       n->bw_in,
3576                                       n->bw_out,
3577                                       GNUNET_TIME_UNIT_FOREVER_REL,
3578                                       NULL, NULL); 
3579         }
3580 #if DEBUG_CORE
3581       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3582                   "Confirmed key via `%s' message for peer `%4s'\n",
3583                   "PONG", GNUNET_i2s (&n->peer));
3584 #endif      
3585       if (n->retry_set_key_task != GNUNET_SCHEDULER_NO_TASK)
3586         {
3587           GNUNET_SCHEDULER_cancel (n->retry_set_key_task);
3588           n->retry_set_key_task = GNUNET_SCHEDULER_NO_TASK;
3589         }      
3590       update_neighbour_performance (n, ats, ats_count);      
3591       size = sizeof (struct ConnectNotifyMessage) +
3592         (n->ats_count) * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
3593       if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
3594         {
3595           GNUNET_break (0);
3596           /* recovery strategy: throw away performance data */
3597           GNUNET_array_grow (n->ats,
3598                              n->ats_count,
3599                              0);
3600           size = sizeof (struct PeerStatusNotifyMessage) +
3601             n->ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
3602         }
3603       cnm = (struct ConnectNotifyMessage*) buf;
3604       cnm->header.size = htons (size);
3605       cnm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_CONNECT);
3606       cnm->ats_count = htonl (n->ats_count);
3607       cnm->peer = n->peer;
3608       mats = &cnm->ats;
3609       memcpy (mats,
3610               n->ats,
3611               n->ats_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
3612       mats[n->ats_count].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
3613       mats[n->ats_count].value = htonl (0);      
3614       send_to_all_clients (&cnm->header, 
3615                            GNUNET_NO, 
3616                            GNUNET_CORE_OPTION_SEND_CONNECT);
3617       process_encrypted_neighbour_queue (n);
3618       /* fall-through! */
3619     case PEER_STATE_KEY_CONFIRMED:
3620       n->last_activity = GNUNET_TIME_absolute_get ();
3621       if (n->keep_alive_task != GNUNET_SCHEDULER_NO_TASK)
3622         GNUNET_SCHEDULER_cancel (n->keep_alive_task);
3623       n->keep_alive_task 
3624         = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT, 2),
3625                                         &send_keep_alive,
3626                                         n);
3627       handle_peer_status_change (n);
3628       break;
3629     default:
3630       GNUNET_break (0);
3631       break;
3632     }
3633 }
3634
3635
3636 /**
3637  * We received a SET_KEY message.  Validate and update
3638  * our key material and status.
3639  *
3640  * @param n the neighbour from which we received message m
3641  * @param m the set key message we received
3642  * @param ats performance data
3643  * @param ats_count number of entries in ats (excluding 0-termination)
3644  */
3645 static void
3646 handle_set_key (struct Neighbour *n, 
3647                 const struct SetKeyMessage *m,
3648                 const struct GNUNET_TRANSPORT_ATS_Information *ats, 
3649                 uint32_t ats_count)
3650 {
3651   struct SetKeyMessage *m_cpy;
3652   struct GNUNET_TIME_Absolute t;
3653   struct GNUNET_CRYPTO_AesSessionKey k;
3654   struct PingMessage *ping;
3655   struct PongMessage *pong;
3656   enum PeerStateMachine sender_status;
3657
3658 #if DEBUG_CORE
3659   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3660               "Core service receives `%s' request from `%4s'.\n",
3661               "SET_KEY", GNUNET_i2s (&n->peer));
3662 #endif
3663   if (n->public_key == NULL)
3664     {
3665       if (n->pitr != NULL)
3666         {
3667 #if DEBUG_CORE
3668           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3669                       "Ignoring `%s' message due to lack of public key for peer (still trying to obtain one).\n",
3670                       "SET_KEY");
3671 #endif
3672           return;
3673         }
3674 #if DEBUG_CORE
3675       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3676                   "Lacking public key for peer, trying to obtain one (handle_set_key).\n");
3677 #endif
3678       m_cpy = GNUNET_malloc (sizeof (struct SetKeyMessage));
3679       memcpy (m_cpy, m, sizeof (struct SetKeyMessage));
3680       /* lookup n's public key, then try again */
3681       GNUNET_assert (n->skm == NULL);
3682       n->skm = m_cpy;
3683       n->pitr = GNUNET_PEERINFO_iterate (peerinfo,
3684                                          &n->peer,
3685                                          GNUNET_TIME_UNIT_MINUTES,
3686                                          &process_hello_retry_handle_set_key, n);
3687       GNUNET_STATISTICS_update (stats, 
3688                                 gettext_noop ("# SET_KEY messages deferred (need public key)"), 
3689                                 1, 
3690                                 GNUNET_NO);
3691       return;
3692     }
3693   if (0 != memcmp (&m->target,
3694                    &my_identity,
3695                    sizeof (struct GNUNET_PeerIdentity)))
3696     {
3697       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3698                   _("Received `%s' message that was for `%s', not for me.  Ignoring.\n"),
3699                   "SET_KEY",
3700                   GNUNET_i2s (&m->target));
3701       return;
3702     }
3703   if ((ntohl (m->purpose.size) !=
3704        sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) +
3705        sizeof (struct GNUNET_TIME_AbsoluteNBO) +
3706        sizeof (struct GNUNET_CRYPTO_RsaEncryptedData) +
3707        sizeof (struct GNUNET_PeerIdentity)) ||
3708       (GNUNET_OK !=
3709        GNUNET_CRYPTO_rsa_verify (GNUNET_SIGNATURE_PURPOSE_SET_KEY,
3710                                  &m->purpose, &m->signature, n->public_key)))
3711     {
3712       /* invalid signature */
3713       GNUNET_break_op (0);
3714       return;
3715     }
3716   t = GNUNET_TIME_absolute_ntoh (m->creation_time);
3717   if (((n->status == PEER_STATE_KEY_RECEIVED) ||
3718        (n->status == PEER_STATE_KEY_CONFIRMED)) &&
3719       (t.abs_value < n->decrypt_key_created.abs_value))
3720     {
3721       /* this could rarely happen due to massive re-ordering of
3722          messages on the network level, but is most likely either
3723          a bug or some adversary messing with us.  Report. */
3724       GNUNET_break_op (0);
3725       return;
3726     }
3727 #if DEBUG_CORE
3728   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
3729               "Decrypting key material.\n");
3730 #endif  
3731   if ((GNUNET_CRYPTO_rsa_decrypt (my_private_key,
3732                                   &m->encrypted_key,
3733                                   &k,
3734                                   sizeof (struct GNUNET_CRYPTO_AesSessionKey))
3735        != sizeof (struct GNUNET_CRYPTO_AesSessionKey)) ||
3736       (GNUNET_OK != GNUNET_CRYPTO_aes_check_session_key (&k)))
3737     {
3738       /* failed to decrypt !? */
3739       GNUNET_break_op (0);
3740       return;
3741     }
3742   GNUNET_STATISTICS_update (stats, 
3743                             gettext_noop ("# SET_KEY messages decrypted"), 
3744                             1, 
3745                             GNUNET_NO);
3746   n->decrypt_key = k;
3747   if (n->decrypt_key_created.abs_value != t.abs_value)
3748     {
3749       /* fresh key, reset sequence numbers */
3750       n->last_sequence_number_received = 0;
3751       n->last_packets_bitmap = 0;
3752       n->decrypt_key_created = t;
3753     }
3754   update_neighbour_performance (n, ats, ats_count);
3755   sender_status = (enum PeerStateMachine) ntohl (m->sender_status);
3756   switch (n->status)
3757     {
3758     case PEER_STATE_DOWN:
3759       n->status = PEER_STATE_KEY_RECEIVED;
3760 #if DEBUG_CORE
3761       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3762                   "Responding to `%s' with my own key.\n", "SET_KEY");
3763 #endif
3764       send_key (n);
3765       break;
3766     case PEER_STATE_KEY_SENT:
3767     case PEER_STATE_KEY_RECEIVED:
3768       n->status = PEER_STATE_KEY_RECEIVED;
3769       if ((sender_status != PEER_STATE_KEY_RECEIVED) &&
3770           (sender_status != PEER_STATE_KEY_CONFIRMED))
3771         {
3772 #if DEBUG_CORE
3773           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3774                       "Responding to `%s' with my own key (other peer has status %u).\n",
3775                       "SET_KEY",
3776                       (unsigned int) sender_status);
3777 #endif
3778           send_key (n);
3779         }
3780       break;
3781     case PEER_STATE_KEY_CONFIRMED:
3782       if ((sender_status != PEER_STATE_KEY_RECEIVED) &&
3783           (sender_status != PEER_STATE_KEY_CONFIRMED))
3784         {         
3785 #if DEBUG_CORE
3786           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3787                       "Responding to `%s' with my own key (other peer has status %u), I was already fully up.\n",
3788                       "SET_KEY", 
3789                       (unsigned int) sender_status);
3790 #endif
3791           send_key (n);
3792         }
3793       break;
3794     default:
3795       GNUNET_break (0);
3796       break;
3797     }
3798   if (n->pending_ping != NULL)
3799     {
3800       ping = n->pending_ping;
3801       n->pending_ping = NULL;
3802       handle_ping (n, ping, NULL, 0);
3803       GNUNET_free (ping);
3804     }
3805   if (n->pending_pong != NULL)
3806     {
3807       pong = n->pending_pong;
3808       n->pending_pong = NULL;
3809       handle_pong (n, pong, NULL, 0);
3810       GNUNET_free (pong);
3811     }
3812 }
3813
3814
3815 /**
3816  * Send a P2P message to a client.
3817  *
3818  * @param sender who sent us the message?
3819  * @param client who should we give the message to?
3820  * @param m contains the message to transmit
3821  * @param msize number of bytes in buf to transmit
3822  */
3823 static void
3824 send_p2p_message_to_client (struct Neighbour *sender,
3825                             struct Client *client,
3826                             const void *m, size_t msize)
3827 {
3828   size_t size = msize + sizeof (struct NotifyTrafficMessage) +
3829     (sender->ats_count) * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
3830   char buf[size];
3831   struct NotifyTrafficMessage *ntm;
3832   struct GNUNET_TRANSPORT_ATS_Information *ats;
3833
3834   if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
3835     {
3836       GNUNET_break (0);
3837       /* recovery strategy: throw performance data away... */
3838       GNUNET_array_grow (sender->ats,
3839                          sender->ats_count,
3840                          0);
3841       size = msize + sizeof (struct NotifyTrafficMessage) +
3842         (sender->ats_count) * sizeof (struct GNUNET_TRANSPORT_ATS_Information);
3843     }
3844 #if DEBUG_CORE
3845   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3846               "Core service passes message from `%4s' of type %u to client.\n",
3847               GNUNET_i2s(&sender->peer),
3848               (unsigned int) ntohs (((const struct GNUNET_MessageHeader *) m)->type));
3849 #endif
3850   ntm = (struct NotifyTrafficMessage *) buf;
3851   ntm->header.size = htons (size);
3852   ntm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_INBOUND);
3853   ntm->ats_count = htonl (sender->ats_count);
3854   ntm->peer = sender->peer;
3855   ats = &ntm->ats;
3856   memcpy (ats,
3857           sender->ats,
3858           sizeof (struct GNUNET_TRANSPORT_ATS_Information) * sender->ats_count);
3859   ats[sender->ats_count].type = htonl (GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR);
3860   ats[sender->ats_count].value = htonl (0);  
3861   memcpy (&ats[sender->ats_count+1],
3862           m, 
3863           msize);
3864   send_to_client (client, &ntm->header, GNUNET_YES);
3865 }
3866
3867
3868 /**
3869  * Deliver P2P message to interested clients.
3870  *
3871  * @param cls always NULL
3872  * @param client who sent us the message (struct Neighbour)
3873  * @param m the message
3874  */
3875 static void
3876 deliver_message (void *cls,
3877                  void *client,
3878                  const struct GNUNET_MessageHeader *m)
3879 {
3880   struct Neighbour *sender = client;
3881   size_t msize = ntohs (m->size);
3882   char buf[256];
3883   struct Client *cpos;
3884   uint16_t type;
3885   unsigned int tpos;
3886   int deliver_full;
3887   int dropped;
3888
3889   type = ntohs (m->type);
3890 #if DEBUG_CORE
3891   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3892               "Received encapsulated message of type %u and size %u from `%4s'\n",
3893               (unsigned int) type,
3894               ntohs (m->size),
3895               GNUNET_i2s (&sender->peer));
3896 #endif
3897   GNUNET_snprintf (buf,
3898                    sizeof(buf),
3899                    gettext_noop ("# bytes of messages of type %u received"),
3900                    (unsigned int) type);
3901   GNUNET_STATISTICS_set (stats,
3902                          buf,
3903                          msize,
3904                          GNUNET_NO);     
3905   dropped = GNUNET_YES;
3906   cpos = clients;
3907   while (cpos != NULL)
3908     {
3909       deliver_full = GNUNET_NO;
3910       if (0 != (cpos->options & GNUNET_CORE_OPTION_SEND_FULL_INBOUND))
3911         deliver_full = GNUNET_YES;
3912       else
3913         {
3914           for (tpos = 0; tpos < cpos->tcnt; tpos++)
3915             {
3916               if (type != cpos->types[tpos])
3917                 continue;
3918               deliver_full = GNUNET_YES;
3919               break;
3920             }
3921         }
3922       if (GNUNET_YES == deliver_full)
3923         {
3924           send_p2p_message_to_client (sender, cpos, m, msize);
3925           dropped = GNUNET_NO;
3926         }
3927       else if (cpos->options & GNUNET_CORE_OPTION_SEND_HDR_INBOUND)
3928         {
3929           send_p2p_message_to_client (sender, cpos, m,
3930                                       sizeof (struct GNUNET_MessageHeader));
3931         }
3932       cpos = cpos->next;
3933     }
3934   if (dropped == GNUNET_YES)
3935     {
3936 #if DEBUG_CORE
3937       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3938                   "Message of type %u from `%4s' not delivered to any client.\n",
3939                   (unsigned int) type,
3940                   GNUNET_i2s (&sender->peer));
3941 #endif
3942       GNUNET_STATISTICS_update (stats,
3943                                 gettext_noop ("# messages not delivered to any client"), 
3944                                 1, GNUNET_NO);
3945     }
3946 }
3947
3948
3949 /**
3950  * We received an encrypted message.  Decrypt, validate and
3951  * pass on to the appropriate clients.
3952  *
3953  * @param n target of the message
3954  * @param m encrypted message
3955  * @param ats performance data
3956  * @param ats_count number of entries in ats (excluding 0-termination)
3957  */
3958 static void
3959 handle_encrypted_message (struct Neighbour *n,
3960                           const struct EncryptedMessage *m,
3961                           const struct GNUNET_TRANSPORT_ATS_Information *ats, 
3962                           uint32_t ats_count)
3963 {
3964   size_t size = ntohs (m->header.size);
3965   char buf[size];
3966   struct EncryptedMessage *pt;  /* plaintext */
3967   GNUNET_HashCode ph;
3968   uint32_t snum;
3969   struct GNUNET_TIME_Absolute t;
3970   struct GNUNET_CRYPTO_AesInitializationVector iv;
3971   struct GNUNET_CRYPTO_AuthKey auth_key;
3972
3973 #if DEBUG_CORE
3974   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3975               "Core service receives `%s' request from `%4s'.\n",
3976               "ENCRYPTED_MESSAGE", GNUNET_i2s (&n->peer));
3977 #endif  
3978   /* validate hash */
3979   derive_auth_key (&auth_key,
3980                    &n->decrypt_key,
3981                    m->iv_seed,
3982                    n->decrypt_key_created);
3983   GNUNET_CRYPTO_hmac (&auth_key,
3984                       &m->sequence_number,
3985                       size - ENCRYPTED_HEADER_SIZE, &ph);
3986 #if DEBUG_HANDSHAKE
3987   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3988               "Re-Authenticated %u bytes of ciphertext (`%u'): `%s'\n",
3989               (unsigned int) size - ENCRYPTED_HEADER_SIZE,
3990               GNUNET_CRYPTO_crc32_n (&m->sequence_number,
3991                   size - ENCRYPTED_HEADER_SIZE),
3992               GNUNET_h2s (&ph));
3993 #endif
3994
3995   if (0 != memcmp (&ph,
3996                    &m->hmac,
3997                    sizeof (GNUNET_HashCode)))
3998     {
3999       /* checksum failed */
4000       GNUNET_break_op (0);
4001       return;
4002     }
4003   derive_iv (&iv, &n->decrypt_key, m->iv_seed, &my_identity);
4004   /* decrypt */
4005   if (GNUNET_OK !=
4006       do_decrypt (n,
4007                   &iv,
4008                   &m->sequence_number,
4009                   &buf[ENCRYPTED_HEADER_SIZE],
4010                   size - ENCRYPTED_HEADER_SIZE))
4011     return;
4012   pt = (struct EncryptedMessage *) buf;
4013
4014   /* validate sequence number */
4015   snum = ntohl (pt->sequence_number);
4016   if (n->last_sequence_number_received == snum)
4017     {
4018       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4019                   "Received duplicate message, ignoring.\n");
4020       /* duplicate, ignore */
4021       GNUNET_STATISTICS_set (stats,
4022                              gettext_noop ("# bytes dropped (duplicates)"),
4023                              size,
4024                              GNUNET_NO);      
4025       return;
4026     }
4027   if ((n->last_sequence_number_received > snum) &&
4028       (n->last_sequence_number_received - snum > 32))
4029     {
4030       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4031                   "Received ancient out of sequence message, ignoring.\n");
4032       /* ancient out of sequence, ignore */
4033       GNUNET_STATISTICS_set (stats,
4034                              gettext_noop ("# bytes dropped (out of sequence)"),
4035                              size,
4036                              GNUNET_NO);      
4037       return;
4038     }
4039   if (n->last_sequence_number_received > snum)
4040     {
4041       unsigned int rotbit =
4042         1 << (n->last_sequence_number_received - snum - 1);
4043       if ((n->last_packets_bitmap & rotbit) != 0)
4044         {
4045           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4046                       "Received duplicate message, ignoring.\n");
4047           GNUNET_STATISTICS_set (stats,
4048                                  gettext_noop ("# bytes dropped (duplicates)"),
4049                                  size,
4050                                  GNUNET_NO);      
4051           /* duplicate, ignore */
4052           return;
4053         }
4054       n->last_packets_bitmap |= rotbit;
4055     }
4056   if (n->last_sequence_number_received < snum)
4057     {
4058       int shift = (snum - n->last_sequence_number_received);
4059       if (shift >= 8 * sizeof(n->last_packets_bitmap))
4060         n->last_packets_bitmap = 0;
4061       else
4062         n->last_packets_bitmap <<= shift;
4063       n->last_sequence_number_received = snum;
4064     }
4065
4066   /* check timestamp */
4067   t = GNUNET_TIME_absolute_ntoh (pt->timestamp);
4068   if (GNUNET_TIME_absolute_get_duration (t).rel_value > MAX_MESSAGE_AGE.rel_value)
4069     {
4070       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4071                   _
4072                   ("Message received far too old (%llu ms). Content ignored.\n"),
4073                   GNUNET_TIME_absolute_get_duration (t).rel_value);
4074       GNUNET_STATISTICS_set (stats,
4075                              gettext_noop ("# bytes dropped (ancient message)"),
4076                              size,
4077                              GNUNET_NO);      
4078       return;
4079     }
4080
4081   /* process decrypted message(s) */
4082   if (n->bw_out_external_limit.value__ != pt->inbound_bw_limit.value__)
4083     {
4084 #if DEBUG_CORE_SET_QUOTA
4085       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4086                   "Received %u b/s as new inbound limit for peer `%4s'\n",
4087                   (unsigned int) ntohl (pt->inbound_bw_limit.value__),
4088                   GNUNET_i2s (&n->peer));
4089 #endif
4090       n->bw_out_external_limit = pt->inbound_bw_limit;
4091       n->bw_out = GNUNET_BANDWIDTH_value_min (n->bw_out_external_limit,
4092                                               n->bw_out_internal_limit);
4093       GNUNET_BANDWIDTH_tracker_update_quota (&n->available_send_window,
4094                                              n->bw_out);
4095       GNUNET_TRANSPORT_set_quota (transport,
4096                                   &n->peer,
4097                                   n->bw_in,
4098                                   n->bw_out,
4099                                   GNUNET_TIME_UNIT_FOREVER_REL,
4100                                   NULL, NULL); 
4101     }
4102   n->last_activity = GNUNET_TIME_absolute_get ();
4103   if (n->keep_alive_task != GNUNET_SCHEDULER_NO_TASK)
4104     GNUNET_SCHEDULER_cancel (n->keep_alive_task);
4105   n->keep_alive_task 
4106     = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT, 2),
4107                                     &send_keep_alive,
4108                                     n);
4109   GNUNET_STATISTICS_set (stats,
4110                          gettext_noop ("# bytes of payload decrypted"),
4111                          size - sizeof (struct EncryptedMessage),
4112                          GNUNET_NO);
4113   handle_peer_status_change (n);
4114   update_neighbour_performance (n, ats, ats_count);
4115   if (GNUNET_OK != GNUNET_SERVER_mst_receive (mst, 
4116                                               n,
4117                                               &buf[sizeof (struct EncryptedMessage)], 
4118                                               size - sizeof (struct EncryptedMessage),
4119                                               GNUNET_YES, GNUNET_NO))
4120     GNUNET_break_op (0);
4121 }
4122
4123
4124 /**
4125  * Function called by the transport for each received message.
4126  *
4127  * @param cls closure
4128  * @param peer (claimed) identity of the other peer
4129  * @param message the message
4130  * @param ats performance data
4131  * @param ats_count number of entries in ats (excluding 0-termination)
4132  */
4133 static void
4134 handle_transport_receive (void *cls,
4135                           const struct GNUNET_PeerIdentity *peer,
4136                           const struct GNUNET_MessageHeader *message,
4137                           const struct GNUNET_TRANSPORT_ATS_Information *ats, 
4138                           uint32_t ats_count)
4139 {
4140   struct Neighbour *n;
4141   struct GNUNET_TIME_Absolute now;
4142   int up;
4143   uint16_t type;
4144   uint16_t size;
4145   int changed;
4146
4147 #if DEBUG_CORE
4148   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4149               "Received message of type %u from `%4s', demultiplexing.\n",
4150               (unsigned int) ntohs (message->type), 
4151               GNUNET_i2s (peer));
4152 #endif
4153   if (0 == memcmp (peer, &my_identity, sizeof (struct GNUNET_PeerIdentity)))
4154     {
4155       GNUNET_break (0);
4156       return;
4157     }
4158   n = find_neighbour (peer);
4159   if (n == NULL)
4160     n = create_neighbour (peer);
4161   changed = GNUNET_NO;
4162   up = (n->status == PEER_STATE_KEY_CONFIRMED);
4163   type = ntohs (message->type);
4164   size = ntohs (message->size);
4165   switch (type)
4166     {
4167     case GNUNET_MESSAGE_TYPE_CORE_SET_KEY:
4168       if (size != sizeof (struct SetKeyMessage))
4169         {
4170           GNUNET_break_op (0);
4171           return;
4172         }
4173       GNUNET_STATISTICS_update (stats, gettext_noop ("# session keys received"), 1, GNUNET_NO);
4174       handle_set_key (n,
4175                       (const struct SetKeyMessage *) message,
4176                       ats, ats_count);
4177       break;
4178     case GNUNET_MESSAGE_TYPE_CORE_ENCRYPTED_MESSAGE:
4179       if (size < sizeof (struct EncryptedMessage) +
4180           sizeof (struct GNUNET_MessageHeader))
4181         {
4182           GNUNET_break_op (0);
4183           return;
4184         }
4185       if ((n->status != PEER_STATE_KEY_RECEIVED) &&
4186           (n->status != PEER_STATE_KEY_CONFIRMED))
4187         {
4188           GNUNET_break_op (0);
4189           return;
4190         }
4191       handle_encrypted_message (n, 
4192                                 (const struct EncryptedMessage *) message,
4193                                 ats, ats_count);
4194       break;
4195     case GNUNET_MESSAGE_TYPE_CORE_PING:
4196       if (size != sizeof (struct PingMessage))
4197         {
4198           GNUNET_break_op (0);
4199           return;
4200         }
4201       GNUNET_STATISTICS_update (stats, gettext_noop ("# PING messages received"), 1, GNUNET_NO);
4202       if ((n->status != PEER_STATE_KEY_RECEIVED) &&
4203           (n->status != PEER_STATE_KEY_CONFIRMED))
4204         {
4205 #if DEBUG_CORE
4206           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4207                       "Core service receives `%s' request from `%4s' but have not processed key; marking as pending.\n",
4208                       "PING", GNUNET_i2s (&n->peer));
4209 #endif
4210           GNUNET_free_non_null (n->pending_ping);
4211           n->pending_ping = GNUNET_malloc (sizeof (struct PingMessage));
4212           memcpy (n->pending_ping, message, sizeof (struct PingMessage));
4213           return;
4214         }
4215       handle_ping (n, (const struct PingMessage *) message,
4216                    ats, ats_count);
4217       break;
4218     case GNUNET_MESSAGE_TYPE_CORE_PONG:
4219       if (size != sizeof (struct PongMessage))
4220         {
4221           GNUNET_break_op (0);
4222           return;
4223         }
4224       GNUNET_STATISTICS_update (stats, gettext_noop ("# PONG messages received"), 1, GNUNET_NO);
4225       if ( (n->status != PEER_STATE_KEY_RECEIVED) &&
4226            (n->status != PEER_STATE_KEY_CONFIRMED) )
4227         {
4228 #if DEBUG_CORE
4229           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4230                       "Core service receives `%s' request from `%4s' but have not processed key; marking as pending.\n",
4231                       "PONG", GNUNET_i2s (&n->peer));
4232 #endif
4233           GNUNET_free_non_null (n->pending_pong);
4234           n->pending_pong = GNUNET_malloc (sizeof (struct PongMessage));
4235           memcpy (n->pending_pong, message, sizeof (struct PongMessage));
4236           return;
4237         }
4238       handle_pong (n, (const struct PongMessage *) message,
4239                    ats, ats_count);
4240       break;
4241     default:
4242       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4243                   _("Unsupported message of type %u received.\n"),
4244                   (unsigned int) type);
4245       return;
4246     }
4247   if (n->status == PEER_STATE_KEY_CONFIRMED)
4248     {
4249       now = GNUNET_TIME_absolute_get ();
4250       n->last_activity = now;
4251       changed = GNUNET_YES;
4252       if (!up)
4253         {
4254           GNUNET_STATISTICS_update (stats, 
4255                                     gettext_noop ("# established sessions"), 
4256                                     1, 
4257                                     GNUNET_NO);
4258           n->time_established = now;
4259         }
4260       if (n->keep_alive_task != GNUNET_SCHEDULER_NO_TASK)
4261         GNUNET_SCHEDULER_cancel (n->keep_alive_task);
4262       n->keep_alive_task 
4263         = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT, 2),
4264                                         &send_keep_alive,
4265                                         n);
4266     }
4267   if (changed)
4268     handle_peer_status_change (n);
4269 }
4270
4271
4272 /**
4273  * Function that recalculates the bandwidth quota for the
4274  * given neighbour and transmits it to the transport service.
4275  * 
4276  * @param cls neighbour for the quota update
4277  * @param tc context
4278  */
4279 static void
4280 neighbour_quota_update (void *cls,
4281                         const struct GNUNET_SCHEDULER_TaskContext *tc)
4282 {
4283   struct Neighbour *n = cls;
4284   struct GNUNET_BANDWIDTH_Value32NBO q_in;
4285   struct GNUNET_BANDWIDTH_Value32NBO q_out;
4286   struct GNUNET_BANDWIDTH_Value32NBO q_out_min;
4287   double pref_rel;
4288   double share;
4289   unsigned long long distributable;
4290   uint64_t need_per_peer;
4291   uint64_t need_per_second;
4292   unsigned int neighbour_count;
4293
4294 #if DEBUG_CORE
4295   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4296               "Neighbour quota update calculation running for peer `%4s'\n",
4297               GNUNET_i2s (&n->peer));  
4298 #endif
4299   n->quota_update_task = GNUNET_SCHEDULER_NO_TASK;
4300   /* calculate relative preference among all neighbours;
4301      divides by a bit more to avoid division by zero AND to
4302      account for possibility of new neighbours joining any time 
4303      AND to convert to double... */
4304   neighbour_count = GNUNET_CONTAINER_multihashmap_size (neighbours);
4305   if (neighbour_count == 0)
4306     return;
4307   if (preference_sum == 0)
4308     {
4309       pref_rel = 1.0 / (double) neighbour_count;
4310     }
4311   else
4312     {
4313       pref_rel = n->current_preference / preference_sum;
4314     }
4315   need_per_peer = GNUNET_BANDWIDTH_value_get_available_until (MIN_BANDWIDTH_PER_PEER,
4316                                                               GNUNET_TIME_UNIT_SECONDS);  
4317   need_per_second = need_per_peer * neighbour_count;
4318
4319   /* calculate inbound bandwidth per peer */
4320   distributable = 0;
4321   if (bandwidth_target_in_bps > need_per_second)
4322     distributable = bandwidth_target_in_bps - need_per_second;
4323   share = distributable * pref_rel;
4324   if (share + need_per_peer > UINT32_MAX)
4325     q_in = GNUNET_BANDWIDTH_value_init (UINT32_MAX);
4326   else
4327     q_in = GNUNET_BANDWIDTH_value_init (need_per_peer + (uint32_t) share);
4328
4329   /* calculate outbound bandwidth per peer */
4330   distributable = 0;
4331   if (bandwidth_target_out_bps > need_per_second)
4332     distributable = bandwidth_target_out_bps - need_per_second;
4333   share = distributable * pref_rel;
4334   if (share + need_per_peer > UINT32_MAX)
4335     q_out = GNUNET_BANDWIDTH_value_init (UINT32_MAX);
4336   else
4337     q_out = GNUNET_BANDWIDTH_value_init (need_per_peer + (uint32_t) share);
4338   n->bw_out_internal_limit = q_out;
4339
4340   q_out_min = GNUNET_BANDWIDTH_value_min (n->bw_out_external_limit, n->bw_out_internal_limit);
4341   GNUNET_BANDWIDTH_tracker_update_quota (&n->available_send_window, n->bw_out);
4342
4343   /* check if we want to disconnect for good due to inactivity */
4344   if ( (GNUNET_TIME_absolute_get_duration (get_neighbour_timeout (n)).rel_value > 0) &&
4345        (GNUNET_TIME_absolute_get_duration (n->time_established).rel_value > GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value) )
4346     {
4347 #if DEBUG_CORE
4348       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4349                   "Forcing disconnect of `%4s' due to inactivity\n",
4350                   GNUNET_i2s (&n->peer));
4351 #endif
4352       q_in = GNUNET_BANDWIDTH_value_init (0); /* force disconnect */
4353     }
4354 #if DEBUG_CORE_QUOTA
4355   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4356               "Current quota for `%4s' is %u/%llu b/s in (old: %u b/s) / %u out (%u internal)\n",
4357               GNUNET_i2s (&n->peer),
4358               (unsigned int) ntohl (q_in.value__),
4359               bandwidth_target_out_bps,
4360               (unsigned int) ntohl (n->bw_in.value__),
4361               (unsigned int) ntohl (n->bw_out.value__),
4362               (unsigned int) ntohl (n->bw_out_internal_limit.value__));
4363   #endif
4364   if ((n->bw_in.value__ != q_in.value__) || (n->bw_out.value__ != q_out_min.value__))
4365     {
4366           if (n->bw_in.value__ != q_in.value__)
4367                   n->bw_in = q_in;
4368           if (n->bw_out.value__ != q_out_min.value__)
4369                   n->bw_out = q_out_min;
4370       if (GNUNET_YES == n->is_connected)
4371         GNUNET_TRANSPORT_set_quota (transport,
4372                                     &n->peer,
4373                                     n->bw_in,
4374                                     n->bw_out,
4375                                     GNUNET_TIME_UNIT_FOREVER_REL,
4376                                     NULL, NULL);
4377       handle_peer_status_change (n);
4378     }
4379   schedule_quota_update (n);
4380 }
4381
4382
4383 /**
4384  * Function called by transport to notify us that
4385  * a peer connected to us (on the network level).
4386  *
4387  * @param cls closure
4388  * @param peer the peer that connected
4389  * @param ats performance data
4390  * @param ats_count number of entries in ats (excluding 0-termination)
4391  */
4392 static void
4393 handle_transport_notify_connect (void *cls,
4394                                  const struct GNUNET_PeerIdentity *peer,
4395                                  const struct GNUNET_TRANSPORT_ATS_Information *ats,
4396                                  uint32_t ats_count)
4397 {
4398   struct Neighbour *n;
4399
4400   if (0 == memcmp (peer, &my_identity, sizeof (struct GNUNET_PeerIdentity)))
4401     {
4402       GNUNET_break (0);
4403       return;
4404     }
4405   n = find_neighbour (peer);
4406   if (n != NULL)
4407     {
4408       if (GNUNET_YES == n->is_connected)
4409         {
4410           /* duplicate connect notification!? */
4411           GNUNET_break (0);
4412           return;
4413         }
4414     }
4415   else
4416     {
4417       n = create_neighbour (peer);
4418     }
4419   GNUNET_STATISTICS_update (stats, 
4420                             gettext_noop ("# peers connected (transport)"), 
4421                             1, 
4422                             GNUNET_NO);
4423   n->is_connected = GNUNET_YES;      
4424   update_neighbour_performance (n, ats, ats_count);
4425   GNUNET_BANDWIDTH_tracker_init (&n->available_send_window,
4426                                  n->bw_out,
4427                                  MAX_WINDOW_TIME_S);
4428   GNUNET_BANDWIDTH_tracker_init (&n->available_recv_window,
4429                                  n->bw_in,
4430                                  MAX_WINDOW_TIME_S);  
4431 #if DEBUG_CORE
4432   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4433               "Received connection from `%4s'.\n",
4434               GNUNET_i2s (&n->peer));
4435 #endif
4436   GNUNET_TRANSPORT_set_quota (transport,
4437                               &n->peer,
4438                               n->bw_in,
4439                               n->bw_out,
4440                               GNUNET_TIME_UNIT_FOREVER_REL,
4441                               NULL, NULL);
4442   send_key (n); 
4443 }
4444
4445
4446 /**
4447  * Function called by transport telling us that a peer
4448  * disconnected.
4449  *
4450  * @param cls closure
4451  * @param peer the peer that disconnected
4452  */
4453 static void
4454 handle_transport_notify_disconnect (void *cls,
4455                                     const struct GNUNET_PeerIdentity *peer)
4456 {
4457   struct DisconnectNotifyMessage cnm;
4458   struct Neighbour *n;
4459   struct ClientActiveRequest *car;
4460   struct GNUNET_TIME_Relative left;
4461
4462 #if DEBUG_CORE
4463   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4464               "Peer `%4s' disconnected from us; received notification from transport.\n", 
4465               GNUNET_i2s (peer));
4466 #endif
4467   n = find_neighbour (peer);
4468   if (n == NULL)
4469     {
4470       GNUNET_break (0);
4471       return;
4472     }
4473   GNUNET_break (n->is_connected == GNUNET_YES);
4474   if (n->status == PEER_STATE_KEY_CONFIRMED)
4475     {
4476       cnm.header.size = htons (sizeof (struct DisconnectNotifyMessage));
4477       cnm.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_DISCONNECT);
4478       cnm.reserved = htonl (0);
4479       cnm.peer = *peer;
4480       send_to_all_clients (&cnm.header, GNUNET_NO, GNUNET_CORE_OPTION_SEND_DISCONNECT);
4481       GNUNET_STATISTICS_update (stats, 
4482                                 gettext_noop ("# established sessions"), 
4483                                 -1, 
4484                                 GNUNET_NO);
4485     }
4486
4487   /* On transport disconnect transport doesn't cancel requests, so must do so here. */
4488   if (n->th != NULL)
4489     {
4490       GNUNET_TRANSPORT_notify_transmit_ready_cancel (n->th);
4491       n->th = NULL;
4492     }
4493   n->is_connected = GNUNET_NO;
4494   n->status = PEER_STATE_DOWN;
4495   while (NULL != (car = n->active_client_request_head))
4496     {
4497       GNUNET_CONTAINER_DLL_remove (n->active_client_request_head,
4498                                    n->active_client_request_tail,
4499                                    car);
4500       GNUNET_CONTAINER_multihashmap_remove (car->client->requests,
4501                                             &n->peer.hashPubKey,
4502                                             car);
4503       GNUNET_free (car);
4504     }
4505
4506   GNUNET_STATISTICS_update (stats, 
4507                             gettext_noop ("# peers connected (transport)"), 
4508                             -1, 
4509                             GNUNET_NO);
4510   if (n->dead_clean_task != GNUNET_SCHEDULER_NO_TASK)
4511     GNUNET_SCHEDULER_cancel (n->dead_clean_task);
4512   left = GNUNET_TIME_relative_subtract (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
4513                                         GNUNET_CONSTANTS_DISCONNECT_SESSION_TIMEOUT);
4514   n->last_activity = GNUNET_TIME_absolute_subtract (GNUNET_TIME_absolute_get (), 
4515                                                     left);
4516   n->dead_clean_task = GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_DISCONNECT_SESSION_TIMEOUT,
4517                                                      &consider_free_task,
4518                                                      n);
4519 }
4520
4521
4522 /**
4523  * Wrapper around 'free_neighbour'; helper for 'cleaning_task'.
4524  */
4525 static int
4526 free_neighbour_helper (void *cls,
4527                        const GNUNET_HashCode *key,
4528                        void *value)
4529 {
4530   struct Neighbour *n = value;
4531
4532   free_neighbour (n);
4533   return GNUNET_OK;
4534 }
4535
4536
4537 /**
4538  * Last task run during shutdown.  Disconnects us from
4539  * the transport.
4540  */
4541 static void
4542 cleaning_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4543 {
4544   struct Client *c;
4545
4546 #if DEBUG_CORE
4547   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4548               "Core service shutting down.\n");
4549 #endif
4550   GNUNET_CONTAINER_multihashmap_iterate (neighbours,
4551                                          &free_neighbour_helper,
4552                                          NULL);
4553   GNUNET_CONTAINER_multihashmap_destroy (neighbours);
4554   neighbours = NULL;
4555   GNUNET_STATISTICS_set (stats, gettext_noop ("# neighbour entries allocated"), 0, GNUNET_NO);
4556   GNUNET_assert (transport != NULL);
4557   GNUNET_TRANSPORT_disconnect (transport);
4558   transport = NULL;
4559   GNUNET_SERVER_notification_context_destroy (notifier);
4560   notifier = NULL;
4561   while (NULL != (c = clients))
4562     handle_client_disconnect (NULL, c->client_handle);
4563   if (my_private_key != NULL)
4564     GNUNET_CRYPTO_rsa_key_free (my_private_key);
4565   if (stats != NULL)
4566     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
4567   if (peerinfo != NULL)
4568     GNUNET_PEERINFO_disconnect (peerinfo);
4569   if (mst != NULL)
4570     GNUNET_SERVER_mst_destroy (mst);
4571 }
4572
4573
4574 /**
4575  * Initiate core service.
4576  *
4577  * @param cls closure
4578  * @param server the initialized server
4579  * @param c configuration to use
4580  */
4581 static void
4582 run (void *cls,
4583      struct GNUNET_SERVER_Handle *server,
4584      const struct GNUNET_CONFIGURATION_Handle *c)
4585 {
4586   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
4587     {&handle_client_init, NULL,
4588      GNUNET_MESSAGE_TYPE_CORE_INIT, 0},
4589     {&handle_client_iterate_peers, NULL,
4590      GNUNET_MESSAGE_TYPE_CORE_ITERATE_PEERS,
4591      sizeof (struct GNUNET_MessageHeader)},
4592     {&handle_client_request_info, NULL,
4593      GNUNET_MESSAGE_TYPE_CORE_REQUEST_INFO,
4594      sizeof (struct RequestInfoMessage)},
4595     {&handle_client_send_request, NULL,
4596      GNUNET_MESSAGE_TYPE_CORE_SEND_REQUEST,
4597      sizeof (struct SendMessageRequest)},
4598     {&handle_client_send, NULL,
4599      GNUNET_MESSAGE_TYPE_CORE_SEND, 0},
4600     {&handle_client_request_connect, NULL,
4601      GNUNET_MESSAGE_TYPE_CORE_REQUEST_CONNECT,
4602      sizeof (struct ConnectMessage)},
4603     {NULL, NULL, 0, 0}
4604   };
4605   char *keyfile;
4606
4607   cfg = c;    
4608   /* parse configuration */
4609   if (
4610        (GNUNET_OK !=
4611         GNUNET_CONFIGURATION_get_value_number (c,
4612                                                "CORE",
4613                                                "TOTAL_QUOTA_IN",
4614                                                &bandwidth_target_in_bps)) ||
4615        (GNUNET_OK !=
4616         GNUNET_CONFIGURATION_get_value_number (c,
4617                                                "CORE",
4618                                                "TOTAL_QUOTA_OUT",
4619                                                &bandwidth_target_out_bps)) ||
4620        (GNUNET_OK !=
4621         GNUNET_CONFIGURATION_get_value_filename (c,
4622                                                  "GNUNETD",
4623                                                  "HOSTKEY", &keyfile)))
4624     {
4625       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4626                   _
4627                   ("Core service is lacking key configuration settings.  Exiting.\n"));
4628       GNUNET_SCHEDULER_shutdown ();
4629       return;
4630     }
4631   peerinfo = GNUNET_PEERINFO_connect (cfg);
4632   if (NULL == peerinfo)
4633     {
4634       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4635                   _("Could not access PEERINFO service.  Exiting.\n"));
4636       GNUNET_SCHEDULER_shutdown ();
4637       GNUNET_free (keyfile);
4638       return;
4639     }
4640   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
4641   GNUNET_free (keyfile);
4642   if (my_private_key == NULL)
4643     {
4644       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
4645                   _("Core service could not access hostkey.  Exiting.\n"));
4646       GNUNET_PEERINFO_disconnect (peerinfo);
4647       GNUNET_SCHEDULER_shutdown ();
4648       return;
4649     }
4650   neighbours = GNUNET_CONTAINER_multihashmap_create (128);
4651   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
4652   GNUNET_CRYPTO_hash (&my_public_key,
4653                       sizeof (my_public_key), &my_identity.hashPubKey);
4654   self.public_key = &my_public_key;
4655   self.peer = my_identity;
4656   self.last_activity = GNUNET_TIME_UNIT_FOREVER_ABS;
4657   self.status = PEER_STATE_KEY_CONFIRMED;
4658   self.is_connected = GNUNET_YES;
4659   /* setup notification */
4660   notifier = GNUNET_SERVER_notification_context_create (server, 
4661                                                         MAX_NOTIFY_QUEUE);
4662   GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL);
4663   /* setup transport connection */
4664   transport = GNUNET_TRANSPORT_connect (cfg,
4665                                         &my_identity,
4666                                         NULL,
4667                                         &handle_transport_receive,
4668                                         &handle_transport_notify_connect,
4669                                         &handle_transport_notify_disconnect);
4670   GNUNET_assert (NULL != transport);
4671   stats = GNUNET_STATISTICS_create ("core", cfg);
4672
4673   GNUNET_STATISTICS_set (stats, gettext_noop ("# discarded CORE_SEND requests"), 0, GNUNET_NO);
4674   GNUNET_STATISTICS_set (stats, gettext_noop ("# discarded lower priority CORE_SEND requests"), 0, GNUNET_NO);
4675
4676   mst = GNUNET_SERVER_mst_create (&deliver_message,
4677                                   NULL);
4678   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
4679                                 &cleaning_task, NULL);
4680   /* process client requests */
4681   GNUNET_SERVER_add_handlers (server, handlers);
4682   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
4683               _("Core service of `%4s' ready.\n"), GNUNET_i2s (&my_identity));
4684 }
4685
4686
4687
4688 /**
4689  * The main function for the transport service.
4690  *
4691  * @param argc number of arguments from the command line
4692  * @param argv command line arguments
4693  * @return 0 ok, 1 on error
4694  */
4695 int
4696 main (int argc, char *const *argv)
4697 {
4698   return (GNUNET_OK ==
4699           GNUNET_SERVICE_run (argc,
4700                               argv,
4701                               "core",
4702                               GNUNET_SERVICE_OPTION_NONE,
4703                               &run, NULL)) ? 0 : 1;
4704 }
4705
4706 /* end of gnunet-service-core.c */