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