-refined mal peer type 1
[oweals/gnunet.git] / src / rps / gnunet-service-rps.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C)
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 rps/gnunet-service-rps.c
23  * @brief rps service implementation
24  * @author Julius Bünger
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_cadet_service.h"
29 #include "gnunet_nse_service.h"
30 #include "rps.h"
31
32 #include "gnunet-service-rps_sampler.h"
33
34 #include <math.h>
35 #include <inttypes.h>
36
37 #define LOG(kind, ...) GNUNET_log(kind, __VA_ARGS__)
38
39 // TODO modify @brief in every file
40
41 // TODO check for overflows
42
43 // TODO align message structs
44
45 // (TODO api -- possibility of getting weak random peer immideately)
46
47 // TODO malicious peer
48
49 // TODO connect to friends
50
51 // TODO store peers somewhere
52
53 // TODO ignore list?
54
55 // hist_size_init, hist_size_max
56
57 /**
58  * Our configuration.
59  */
60 static const struct GNUNET_CONFIGURATION_Handle *cfg;
61
62 /**
63  * Our own identity.
64  */
65 static struct GNUNET_PeerIdentity own_identity;
66
67
68   struct GNUNET_PeerIdentity *
69 get_rand_peer_ignore_list (const struct GNUNET_PeerIdentity *peer_list, unsigned int size,
70                            const struct GNUNET_PeerIdentity *ignore_list, unsigned int ignore_size);
71
72
73 /***********************************************************************
74  * Housekeeping with peers
75 ***********************************************************************/
76
77 /**
78  * Struct used to store the context of a connected client.
79  */
80 struct client_ctx
81 {
82   /**
83    * The message queue to communicate with the client.
84    */
85   struct GNUNET_MQ_Handle *mq;
86 };
87
88 /**
89  * Used to keep track in what lists single peerIDs are.
90  */
91 enum PeerFlags
92 {
93   PULL_REPLY_PENDING   = 0x01,
94   IN_OTHER_GOSSIP_LIST = 0x02, // unneeded?
95   IN_OWN_SAMPLER_LIST  = 0x04, // unneeded?
96   IN_OWN_GOSSIP_LIST   = 0x08, // unneeded?
97
98   /**
99    * We set this bit when we can be sure the other peer is/was live.
100    */
101   VALID                = 0x10
102 };
103
104
105 /**
106  * Functions of this type can be used to be stored at a peer for later execution.
107  */
108 typedef void (* PeerOp) (void *cls, const struct GNUNET_PeerIdentity *peer);
109
110 /**
111  * Outstanding operation on peer consisting of callback and closure
112  */
113 struct PeerOutstandingOp
114 {
115   /**
116    * Callback
117    */
118   PeerOp op;
119
120   /**
121    * Closure
122    */
123   void *op_cls;
124 };
125
126
127 /**
128  * Struct used to keep track of other peer's status
129  *
130  * This is stored in a multipeermap.
131  */
132 struct PeerContext
133 {
134   /**
135    * In own gossip/sampler list, in other's gossip/sampler list
136    */
137   uint32_t peer_flags;
138
139   /**
140    * Message queue open to client
141    */
142   struct GNUNET_MQ_Handle *mq;
143
144   /**
145    * Channel open to client.
146    */
147   struct GNUNET_CADET_Channel *send_channel;
148
149   /**
150    * Channel open from client.
151    */
152   struct GNUNET_CADET_Channel *recv_channel; // unneeded?
153
154   /**
155    * Array of outstanding operations on this peer.
156    */
157   struct PeerOutstandingOp *outstanding_ops;
158
159   /**
160    * Number of outstanding operations.
161    */
162   unsigned int num_outstanding_ops;
163   //size_t num_outstanding_ops;
164
165   /**
166    * Handle to the callback given to cadet_ntfy_tmt_rdy()
167    *
168    * To be canceled on shutdown.
169    */
170   struct GNUNET_CADET_TransmitHandle *is_live_task;
171
172   /**
173    * Identity of the peer
174    */
175   struct GNUNET_PeerIdentity peer_id;
176
177   /**
178    * This is pobably followed by 'statistical' data (when we first saw
179    * him, how did we get his ID, how many pushes (in a timeinterval),
180    * ...)
181    */
182 };
183
184 /***********************************************************************
185  * /Housekeeping with peers
186 ***********************************************************************/
187
188
189
190
191
192 /***********************************************************************
193  * Globals
194 ***********************************************************************/
195
196 /**
197  * Sampler used for the Brahms protocol itself.
198  */
199 static struct RPS_Sampler *prot_sampler;
200
201 /**
202  * Sampler used for the clients.
203  */
204 static struct RPS_Sampler *client_sampler;
205
206 /**
207  * Set of all peers to keep track of them.
208  */
209 static struct GNUNET_CONTAINER_MultiPeerMap *peer_map;
210
211
212 /**
213  * The gossiped list of peers.
214  */
215 static struct GNUNET_PeerIdentity *gossip_list;
216
217 /**
218  * Size of the gossiped list
219  */
220 //static unsigned int gossip_list_size;
221 static uint32_t gossip_list_size;
222
223
224 /**
225  * The size of sampler we need to be able to satisfy the client's need of
226  * random peers.
227  */
228 static unsigned int sampler_size_client_need;
229
230 /**
231  * The size of sampler we need to be able to satisfy the Brahms protocol's
232  * need of random peers.
233  *
234  * This is directly taken as the #gossip_list_size on update of the
235  * #gossip_list
236  *
237  * This is one minimum size the sampler grows to.
238  */
239 static unsigned int sampler_size_est_need;
240
241
242 /**
243  * Percentage of total peer number in the gossip list
244  * to send random PUSHes to
245  */
246 static float alpha;
247
248 /**
249  * Percentage of total peer number in the gossip list
250  * to send random PULLs to
251  */
252 static float beta;
253
254 /**
255  * The percentage gamma of history updates.
256  * Simply 1 - alpha - beta
257  */
258
259
260 /**
261  * Identifier for the main task that runs periodically.
262  */
263 static struct GNUNET_SCHEDULER_Task *do_round_task;
264
265 /**
266  * Time inverval the do_round task runs in.
267  */
268 static struct GNUNET_TIME_Relative round_interval;
269
270
271
272 /**
273  * List to store peers received through pushes temporary.
274  *
275  * TODO -> multipeermap
276  */
277 static struct GNUNET_PeerIdentity *push_list;
278
279 /**
280  * Size of the push_list;
281  */
282 static unsigned int push_list_size;
283 //size_t push_list_size;
284
285 /**
286  * List to store peers received through pulls temporary.
287  *
288  * TODO -> multipeermap
289  */
290 static struct GNUNET_PeerIdentity *pull_list;
291
292 /**
293  * Size of the pull_list;
294  */
295 static unsigned int pull_list_size;
296 //size_t pull_list_size;
297
298
299 /**
300  * Handler to NSE.
301  */
302 static struct GNUNET_NSE_Handle *nse;
303
304 /**
305  * Handler to CADET.
306  */
307 static struct GNUNET_CADET_Handle *cadet_handle;
308
309
310 /**
311  * Request counter.
312  *
313  * Only needed in the beginning to check how many of the 64 deltas
314  * we already have
315  */
316 static unsigned int req_counter;
317
318 /**
319  * Time of the last request we received.
320  *
321  * Used to compute the expected request rate.
322  */
323 static struct GNUNET_TIME_Absolute last_request;
324
325 /**
326  * Size of #request_deltas.
327  */
328 #define REQUEST_DELTAS_SIZE 64
329 static unsigned int request_deltas_size = REQUEST_DELTAS_SIZE;
330
331 /**
332  * Last 64 deltas between requests
333  */
334 static struct GNUNET_TIME_Relative request_deltas[REQUEST_DELTAS_SIZE];
335
336 /**
337  * The prediction of the rate of requests
338  */
339 static struct GNUNET_TIME_Relative  request_rate;
340
341
342 /**
343  * List with the peers we sent requests to.
344  */
345 struct GNUNET_PeerIdentity *pending_pull_reply_list;
346
347 /**
348  * Size of #pending_pull_reply_list.
349  */
350 uint32_t pending_pull_reply_list_size;
351
352
353 /**
354  * Number of history update tasks.
355  */
356 uint32_t num_hist_update_tasks;
357
358
359 #ifdef ENABLE_MALICIOUS
360 /**
361  * Type of malicious peer
362  *
363  * 0 Don't act malicious at all - Default
364  * 1 Try to maximise representation
365  * 2 Try to partition the network
366  */
367 uint32_t mal_type = 0;
368
369 /**
370  * Other malicious peers
371  */
372 static struct GNUNET_PeerIdentity *mal_peers = NULL;
373
374 /**
375  * Number of other malicious peers
376  */
377 static uint32_t num_mal_peers = 0;
378
379
380 /**
381  * If type is 2 This struct is used to store the attacked peers in a DLL
382  */
383 struct AttackedPeer
384 {
385   /**
386    * DLL
387    */
388   struct AttackedPeer *next;
389   struct AttackedPeer *prev;
390
391   /**
392    * PeerID
393    */
394   struct GNUNET_PeerIdentity *peer_id;
395 };
396
397 /**
398  * If type is 2 this is the DLL of attacked peers
399  */
400 static struct AttackedPeer *att_peers_head = NULL;
401 static struct AttackedPeer *att_peers_tail = NULL;
402
403 /**
404  * This index is used to point to an attacked peer to
405  * implement the round-robin-ish way to select attacked peers.
406  */
407 static struct AttackedPeer *att_peer_index = NULL;
408
409 /**
410  * Number of attacked peers
411  */
412 static uint32_t num_attacked_peers = 0;
413
414
415 /**
416  * If type is 1 this is the attacked peer
417  */
418 static struct GNUNET_PeerIdentity attacked_peer;
419
420 /**
421  * The limit of PUSHes we can send in one round.
422  * This is an assumption of the Brahms protocol and either implemented
423  * via proof of work
424  * or
425  * assumend to be the bandwidth limitation.
426  */
427 static uint32_t push_limit = 10000;
428 #endif /* ENABLE_MALICIOUS */
429
430
431 /***********************************************************************
432  * /Globals
433 ***********************************************************************/
434
435
436
437
438
439
440 /***********************************************************************
441  * Util functions
442 ***********************************************************************/
443
444 /**
445  * Set a peer flag of given peer context.
446  */
447 #define set_peer_flag(peer_ctx, mask) (peer_ctx->peer_flags |= mask)
448
449 /**
450  * Get peer flag of given peer context.
451  */
452 #define get_peer_flag(peer_ctx, mask) (peer_ctx->peer_flags & mask ? GNUNET_YES : GNUNET_NO)
453
454 /**
455  * Unset flag of given peer context.
456  */
457 #define unset_peer_flag(peer_ctx, mask) (peer_ctx->peer_flags &= (~mask))
458
459 /**
460  * Compute the minimum of two ints
461  */
462 #define min(x, y) ((x < y) ? x : y)
463
464 /**
465  * Clean the send channel of a peer
466  */
467 void
468 peer_clean (const struct GNUNET_PeerIdentity *peer);
469
470
471 /**
472  * Check if peer is already in peer array.
473  */
474   int
475 in_arr (const struct GNUNET_PeerIdentity *array,
476         unsigned int arr_size,
477         const struct GNUNET_PeerIdentity *peer)
478 {
479   GNUNET_assert (NULL != peer);
480
481   if (0 == arr_size)
482     return GNUNET_NO;
483
484   GNUNET_assert (NULL != array);
485
486   unsigned int i;
487
488   for (i = 0; i < arr_size ; i++)
489     if (0 == GNUNET_CRYPTO_cmp_peer_identity (&array[i], peer))
490       return GNUNET_YES;
491   return GNUNET_NO;
492 }
493
494
495 /**
496  * Print peerlist to log.
497  */
498 void
499 print_peer_list (struct GNUNET_PeerIdentity *list, unsigned int len)
500 {
501   unsigned int i;
502
503   LOG (GNUNET_ERROR_TYPE_DEBUG,
504        "Printing peer list of length %u at %p:\n",
505        len,
506        list);
507   for (i = 0 ; i < len ; i++)
508   {
509     LOG (GNUNET_ERROR_TYPE_DEBUG,
510          "%u. peer: %s\n",
511          i, GNUNET_i2s (&list[i]));
512   }
513 }
514
515
516 /**
517  * Remove peer from list.
518  */
519   void
520 rem_from_list (struct GNUNET_PeerIdentity **peer_list,
521                unsigned int *list_size,
522                const struct GNUNET_PeerIdentity *peer)
523 {
524   unsigned int i;
525   struct GNUNET_PeerIdentity *tmp;
526
527   tmp = *peer_list;
528
529   LOG (GNUNET_ERROR_TYPE_DEBUG,
530        "Removing peer %s from list at %p\n",
531        GNUNET_i2s (peer),
532        tmp);
533
534   for ( i = 0 ; i < *list_size ; i++ )
535   {
536     if (0 == GNUNET_CRYPTO_cmp_peer_identity (&tmp[i], peer))
537     {
538       if (i < *list_size -1)
539       { /* Not at the last entry -- shift peers left */
540         memcpy (&tmp[i], &tmp[i +1],
541                 ((*list_size) - i -1) * sizeof (struct GNUNET_PeerIdentity));
542       }
543       /* Remove last entry (should be now useless PeerID) */
544       GNUNET_array_grow (tmp, *list_size, (*list_size) -1);
545     }
546   }
547   *peer_list = tmp;
548 }
549
550 /**
551  * Get random peer from the given list but don't return one from the @a ignore_list.
552  */
553   struct GNUNET_PeerIdentity *
554 get_rand_peer_ignore_list (const struct GNUNET_PeerIdentity *peer_list,
555                            uint32_t list_size,
556                            const struct GNUNET_PeerIdentity *ignore_list,
557                            uint32_t ignore_size)
558 {
559   uint32_t r_index;
560   uint32_t tmp_size;
561   struct GNUNET_PeerIdentity *tmp_peer_list;
562   struct GNUNET_PeerIdentity *peer;
563
564   GNUNET_assert (NULL != peer_list);
565   if (0 == list_size)
566     return NULL;
567
568   tmp_size = 0;
569   tmp_peer_list = NULL;
570   GNUNET_array_grow (tmp_peer_list, tmp_size, list_size);
571   memcpy (tmp_peer_list,
572           peer_list,
573           list_size * sizeof (struct GNUNET_PeerIdentity));
574   peer = GNUNET_new (struct GNUNET_PeerIdentity);
575
576   /**;
577    * Choose the r_index of the peer we want to return
578    * at random from the interval of the gossip list
579    */
580   r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
581                                       tmp_size);
582   *peer = tmp_peer_list[r_index];
583
584   while (in_arr (ignore_list, ignore_size, peer))
585   {
586     rem_from_list (&tmp_peer_list, &tmp_size, peer);
587
588     print_peer_list (tmp_peer_list, tmp_size);
589
590     if (0 == tmp_size)
591     {
592       GNUNET_free (peer);
593       return NULL;
594     }
595
596     /**;
597      * Choose the r_index of the peer we want to return
598      * at random from the interval of the gossip list
599      */
600     r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
601                                         tmp_size);
602     *peer = tmp_peer_list[r_index];
603   }
604
605
606   GNUNET_array_grow (tmp_peer_list, tmp_size, 0);
607
608   return peer;
609 }
610
611
612 /**
613  * Get the context of a peer. If not existing, create.
614  */
615   struct PeerContext *
616 get_peer_ctx (struct GNUNET_CONTAINER_MultiPeerMap *peer_map,
617               const struct GNUNET_PeerIdentity *peer)
618 {
619   struct PeerContext *ctx;
620
621   if ( GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
622   {
623     ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
624   }
625   else
626   {
627     ctx = GNUNET_new (struct PeerContext);
628     ctx->peer_flags = 0;
629     ctx->mq = NULL;
630     ctx->send_channel = NULL;
631     ctx->recv_channel = NULL;
632     ctx->outstanding_ops = NULL;
633     ctx->num_outstanding_ops = 0;
634     ctx->is_live_task = NULL;
635     ctx->peer_id = *peer;
636     (void) GNUNET_CONTAINER_multipeermap_put (peer_map, peer, ctx,
637                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
638   }
639   return ctx;
640 }
641
642
643 /**
644  * Put random peer from sampler into the gossip list as history update.
645  */
646   void
647 hist_update (void *cls, struct GNUNET_PeerIdentity *ids, uint32_t num_peers)
648 {
649   GNUNET_assert (1 == num_peers);
650
651   if (gossip_list_size < sampler_size_est_need)
652     GNUNET_array_append (gossip_list, gossip_list_size, *ids);
653
654   if (0 < num_hist_update_tasks)
655     num_hist_update_tasks--;
656 }
657
658
659 /**
660  * Set the peer flag to living and call the outstanding operations on this peer.
661  */
662 static size_t
663 peer_is_live (struct PeerContext *peer_ctx)
664 {
665   struct GNUNET_PeerIdentity *peer;
666
667   /* Cancle is_live_task if still scheduled */
668   if (NULL != peer_ctx->is_live_task)
669   {
670     GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->is_live_task);
671     peer_ctx->is_live_task = NULL;
672   }
673
674   peer = &peer_ctx->peer_id;
675   set_peer_flag (peer_ctx, VALID);
676
677   LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer %s is live\n", GNUNET_i2s (peer));
678
679   if (0 < peer_ctx->num_outstanding_ops)
680   { /* Call outstanding operations */
681     unsigned int i;
682
683     for (i = 0 ; i < peer_ctx->num_outstanding_ops ; i++)
684       peer_ctx->outstanding_ops[i].op (peer_ctx->outstanding_ops[i].op_cls, peer);
685     GNUNET_array_grow (peer_ctx->outstanding_ops, peer_ctx->num_outstanding_ops, 0);
686   }
687
688   return 0;
689 }
690
691
692 /**
693  * Callback that is called when a channel was effectively established.
694  * This is given to ntfy_tmt_rdy and called when the channel was
695  * successfully established.
696  */
697 static size_t
698 cadet_ntfy_tmt_rdy_cb (void *cls, size_t size, void *buf)
699 {
700   struct PeerContext *peer_ctx = (struct PeerContext *) cls;
701
702   peer_ctx->is_live_task = NULL;
703   LOG (GNUNET_ERROR_TYPE_DEBUG,
704        "Set ->is_live_task = NULL for peer %s\n",
705        GNUNET_i2s (&peer_ctx->peer_id));
706
707   if (NULL != buf
708       && 0 != size)
709   {
710     peer_is_live (peer_ctx);
711   }
712   else
713   {
714     LOG (GNUNET_ERROR_TYPE_WARNING,
715          "Problems establishing a connection to peer %s in order to check liveliness\n",
716          GNUNET_i2s (&peer_ctx->peer_id));
717     // TODO reschedule? cleanup?
718   }
719
720   //if (NULL != peer_ctx->is_live_task)
721   //{
722   //  LOG (GNUNET_ERROR_TYPE_DEBUG,
723   //       "Trying to cancle is_live_task for peer %s\n",
724   //       GNUNET_i2s (&peer_ctx->peer_id));
725   //  GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->is_live_task);
726   //  peer_ctx->is_live_task = NULL;
727   //}
728
729   return 0;
730 }
731
732
733 /**
734  * Get the channel of a peer. If not existing, create.
735  */
736   struct GNUNET_CADET_Channel *
737 get_channel (struct GNUNET_CONTAINER_MultiPeerMap *peer_map,
738              const struct GNUNET_PeerIdentity *peer)
739 {
740   struct PeerContext *peer_ctx;
741
742   peer_ctx = get_peer_ctx (peer_map, peer);
743
744   GNUNET_assert (NULL == peer_ctx->is_live_task);
745
746   if (NULL == peer_ctx->send_channel)
747   {
748     LOG (GNUNET_ERROR_TYPE_DEBUG,
749          "Trying to establish channel to peer %s\n",
750          GNUNET_i2s (peer));
751
752     peer_ctx->send_channel =
753       GNUNET_CADET_channel_create (cadet_handle,
754                                    NULL,
755                                    peer,
756                                    GNUNET_RPS_CADET_PORT,
757                                    GNUNET_CADET_OPTION_RELIABLE);
758
759     // do I have to explicitly put it in the peer_map?
760     (void) GNUNET_CONTAINER_multipeermap_put
761       (peer_map,
762        peer,
763        peer_ctx,
764        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
765   }
766   return peer_ctx->send_channel;
767 }
768
769
770 /**
771  * Get the message queue of a specific peer.
772  *
773  * If we already have a message queue open to this client,
774  * simply return it, otherways create one.
775  */
776   struct GNUNET_MQ_Handle *
777 get_mq (struct GNUNET_CONTAINER_MultiPeerMap *peer_map,
778         const struct GNUNET_PeerIdentity *peer_id)
779 {
780   struct PeerContext *peer_ctx;
781
782   peer_ctx = get_peer_ctx (peer_map, peer_id);
783
784   GNUNET_assert (NULL == peer_ctx->is_live_task);
785
786   if (NULL == peer_ctx->mq)
787   {
788     (void) get_channel (peer_map, peer_id);
789     peer_ctx->mq = GNUNET_CADET_mq_create (peer_ctx->send_channel);
790     //do I have to explicitly put it in the peer_map?
791     (void) GNUNET_CONTAINER_multipeermap_put (peer_map, peer_id, peer_ctx,
792                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
793   }
794   return peer_ctx->mq;
795 }
796
797
798 /**
799  * Issue check whether peer is live
800  *
801  * @param peer_ctx the context of the peer
802  */
803 void
804 check_peer_live (struct PeerContext *peer_ctx)
805 {
806   (void) get_channel (peer_map, &peer_ctx->peer_id);
807   LOG (GNUNET_ERROR_TYPE_DEBUG,
808        "Get informed about peer %s getting live\n",
809        GNUNET_i2s (&peer_ctx->peer_id));
810   if (NULL == peer_ctx->is_live_task)
811   {
812     peer_ctx->is_live_task =
813         GNUNET_CADET_notify_transmit_ready (peer_ctx->send_channel,
814                                             GNUNET_NO,
815                                             GNUNET_TIME_UNIT_FOREVER_REL,
816                                             sizeof (struct GNUNET_MessageHeader),
817                                             cadet_ntfy_tmt_rdy_cb,
818                                             peer_ctx);
819   }
820   else
821   {
822     LOG (GNUNET_ERROR_TYPE_DEBUG,
823          "Already waiting for notification\n");
824   }
825 }
826
827
828 /**
829  * Sum all time relatives of an array.
830   */
831   struct GNUNET_TIME_Relative
832 T_relative_sum (const struct GNUNET_TIME_Relative *rel_array, uint32_t arr_size)
833 {
834   struct GNUNET_TIME_Relative sum;
835   uint32_t i;
836
837   sum = GNUNET_TIME_UNIT_ZERO;
838   for ( i = 0 ; i < arr_size ; i++ )
839   {
840     sum = GNUNET_TIME_relative_add (sum, rel_array[i]);
841   }
842   return sum;
843 }
844
845
846 /**
847  * Compute the average of given time relatives.
848  */
849   struct GNUNET_TIME_Relative
850 T_relative_avg (const struct GNUNET_TIME_Relative *rel_array, uint32_t arr_size)
851 {
852   return GNUNET_TIME_relative_divide (T_relative_sum (rel_array, arr_size), arr_size);
853 }
854
855
856 /**
857  * Insert PeerID in #pull_list
858  *
859  * Called once we know a peer is live.
860  */
861   void
862 insert_in_pull_list (void *cls, const struct GNUNET_PeerIdentity *peer)
863 {
864   if (GNUNET_NO == in_arr (pull_list, pull_list_size, peer))
865     GNUNET_array_append (pull_list, pull_list_size, *peer);
866
867   peer_clean (peer);
868 }
869
870 /**
871  * Check whether #insert_in_pull_list was already scheduled
872  */
873   int
874 insert_in_pull_list_scheduled (const struct PeerContext *peer_ctx)
875 {
876   unsigned int i;
877
878   for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
879     if (insert_in_pull_list == peer_ctx->outstanding_ops[i].op)
880       return GNUNET_YES;
881   return GNUNET_NO;
882 }
883
884
885 /**
886  * Insert PeerID in #gossip_list
887  *
888  * Called once we know a peer is live.
889  */
890   void
891 insert_in_gossip_list (void *cls, const struct GNUNET_PeerIdentity *peer)
892 {
893   if (GNUNET_NO == in_arr (gossip_list, gossip_list_size, peer))
894     GNUNET_array_append (gossip_list, gossip_list_size, *peer);
895
896   (void) get_channel (peer_map, peer);
897 }
898
899 /**
900  * Check whether #insert_in_gossip_list was already scheduled
901  */
902   int
903 insert_in_gossip_list_scheduled (const struct PeerContext *peer_ctx)
904 {
905   unsigned int i;
906
907   for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
908     if (insert_in_gossip_list == peer_ctx->outstanding_ops[i].op)
909       return GNUNET_YES;
910   return GNUNET_NO;
911 }
912
913
914 /**
915  * Update sampler with given PeerID.
916  */
917   void
918 insert_in_sampler (void *cls, const struct GNUNET_PeerIdentity *peer)
919 {
920   LOG (GNUNET_ERROR_TYPE_DEBUG,
921        "Updating samplers with peer %s from insert_in_sampler()\n",
922        GNUNET_i2s (peer));
923   RPS_sampler_update (prot_sampler,   peer);
924   RPS_sampler_update (client_sampler, peer);
925 }
926
927
928 /**
929  * Check whether #insert_in_sampler was already scheduled
930  */
931 static int
932 insert_in_sampler_scheduled (const struct PeerContext *peer_ctx)
933 {
934   unsigned int i;
935
936   for (i = 0 ; i < peer_ctx->num_outstanding_ops ; i++)
937     if (insert_in_sampler== peer_ctx->outstanding_ops[i].op)
938       return GNUNET_YES;
939   return GNUNET_NO;
940 }
941
942
943 /**
944  * Wrapper around #RPS_sampler_resize()
945  *
946  * If we do not have enough sampler elements, double current sampler size
947  * If we have more than enough sampler elements, halv current sampler size
948  */
949 static void
950 resize_wrapper (struct RPS_Sampler *sampler, uint32_t new_size)
951 {
952   unsigned int sampler_size;
953
954   // TODO statistics
955   // TODO respect the min, max
956   sampler_size = RPS_sampler_get_size (sampler);
957   if (sampler_size > new_size * 4)
958   { /* Shrinking */
959     RPS_sampler_resize (sampler, sampler_size / 2);
960   }
961   else if (sampler_size < new_size)
962   { /* Growing */
963     RPS_sampler_resize (sampler, sampler_size * 2);
964   }
965   LOG (GNUNET_ERROR_TYPE_DEBUG, "sampler_size is now %u\n", sampler_size);
966 }
967
968
969 /**
970  * Wrapper around #RPS_sampler_resize() resizing the client sampler
971  */
972 static void
973 client_resize_wrapper ()
974 {
975   uint32_t bigger_size;
976   unsigned int sampler_size;
977
978   // TODO statistics
979
980   sampler_size = RPS_sampler_get_size (client_sampler);
981
982   if (sampler_size_est_need > sampler_size_client_need)
983     bigger_size = sampler_size_est_need;
984   else
985     bigger_size = sampler_size_client_need;
986
987   // TODO respect the min, max
988   resize_wrapper (client_sampler, bigger_size);
989   LOG (GNUNET_ERROR_TYPE_DEBUG, "sampler_size is now %u\n", sampler_size);
990 }
991
992
993 /**
994  * Estimate request rate
995  *
996  * Called every time we receive a request from the client.
997  */
998   void
999 est_request_rate()
1000 {
1001   struct GNUNET_TIME_Relative max_round_duration;
1002
1003   if (request_deltas_size > req_counter)
1004     req_counter++;
1005   if ( 1 < req_counter)
1006   {
1007     /* Shift last request deltas to the right */
1008     memcpy (&request_deltas[1],
1009         request_deltas,
1010         (req_counter - 1) * sizeof (struct GNUNET_TIME_Relative));
1011
1012     /* Add current delta to beginning */
1013     request_deltas[0] =
1014         GNUNET_TIME_absolute_get_difference (last_request,
1015                                              GNUNET_TIME_absolute_get ());
1016     request_rate = T_relative_avg (request_deltas, req_counter);
1017
1018     /* Compute the duration a round will maximally take */
1019     max_round_duration =
1020         GNUNET_TIME_relative_add (round_interval,
1021                                   GNUNET_TIME_relative_divide (round_interval, 2));
1022
1023     /* Set the estimated size the sampler has to have to
1024      * satisfy the current client request rate */
1025     sampler_size_client_need =
1026         max_round_duration.rel_value_us / request_rate.rel_value_us;
1027
1028     /* Resize the sampler */
1029     client_resize_wrapper ();
1030   }
1031   last_request = GNUNET_TIME_absolute_get ();
1032 }
1033
1034
1035 /***********************************************************************
1036  * /Util functions
1037 ***********************************************************************/
1038
1039
1040
1041
1042
1043 /**
1044  * Function called by NSE.
1045  *
1046  * Updates sizes of sampler list and gossip list and adapt those lists
1047  * accordingly.
1048  */
1049   void
1050 nse_callback (void *cls, struct GNUNET_TIME_Absolute timestamp,
1051               double logestimate, double std_dev)
1052 {
1053   double estimate;
1054   //double scale; // TODO this might go gloabal/config
1055
1056   LOG (GNUNET_ERROR_TYPE_DEBUG,
1057        "Received a ns estimate - logest: %f, std_dev: %f (old_size: %u)\n",
1058        logestimate, std_dev, RPS_sampler_get_size (prot_sampler));
1059   //scale = .01;
1060   estimate = GNUNET_NSE_log_estimate_to_n (logestimate);
1061   // GNUNET_NSE_log_estimate_to_n (logestimate);
1062   estimate = pow (estimate, 1.0 / 3);
1063   // TODO add if std_dev is a number
1064   // estimate += (std_dev * scale);
1065   if (2 < ceil (estimate))
1066   {
1067     LOG (GNUNET_ERROR_TYPE_DEBUG, "Changing estimate to %f\n", estimate);
1068     sampler_size_est_need = estimate;
1069   } else
1070     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not using estimate %f\n", estimate);
1071
1072   /* If the NSE has changed adapt the lists accordingly */
1073   resize_wrapper (prot_sampler, sampler_size_est_need);
1074   client_resize_wrapper ();
1075 }
1076
1077
1078 /**
1079  * Callback called once the requested PeerIDs are ready.
1080  *
1081  * Sends those to the requesting client.
1082  */
1083 void client_respond (void *cls,
1084     struct GNUNET_PeerIdentity *ids, uint32_t num_peers)
1085 {
1086   LOG (GNUNET_ERROR_TYPE_DEBUG, "sampler returned %" PRIX32 " peers\n", num_peers);
1087   struct GNUNET_MQ_Envelope *ev;
1088   struct GNUNET_RPS_CS_ReplyMessage *out_msg;
1089   struct GNUNET_SERVER_Client *client;
1090   uint32_t size_needed;
1091   struct client_ctx *cli_ctx;
1092
1093   client = (struct GNUNET_SERVER_Client *) cls;
1094
1095   size_needed = sizeof (struct GNUNET_RPS_CS_ReplyMessage) +
1096                 num_peers * sizeof (struct GNUNET_PeerIdentity);
1097
1098   GNUNET_assert (GNUNET_SERVER_MAX_MESSAGE_SIZE >= size_needed);
1099
1100   ev = GNUNET_MQ_msg_extra (out_msg,
1101                             num_peers * sizeof (struct GNUNET_PeerIdentity),
1102                             GNUNET_MESSAGE_TYPE_RPS_CS_REPLY);
1103   out_msg->num_peers = htonl (num_peers);
1104
1105   memcpy (&out_msg[1],
1106       ids,
1107       num_peers * sizeof (struct GNUNET_PeerIdentity));
1108   GNUNET_free (ids);
1109
1110   cli_ctx = GNUNET_SERVER_client_get_user_context (client, struct client_ctx);
1111   if (NULL == cli_ctx) {
1112     cli_ctx = GNUNET_new (struct client_ctx);
1113     cli_ctx->mq = GNUNET_MQ_queue_for_server_client (client);
1114     GNUNET_SERVER_client_set_user_context (client, cli_ctx);
1115   }
1116
1117   GNUNET_MQ_send (cli_ctx->mq, ev);
1118 }
1119
1120
1121 /**
1122  * Handle RPS request from the client.
1123  *
1124  * @param cls closure
1125  * @param client identification of the client
1126  * @param message the actual message
1127  */
1128 static void
1129 handle_client_request (void *cls,
1130             struct GNUNET_SERVER_Client *client,
1131             const struct GNUNET_MessageHeader *message)
1132 {
1133   struct GNUNET_RPS_CS_RequestMessage *msg;
1134   uint32_t num_peers;
1135   uint32_t size_needed;
1136   uint32_t i;
1137
1138   msg = (struct GNUNET_RPS_CS_RequestMessage *) message;
1139
1140   num_peers = ntohl (msg->num_peers);
1141   size_needed = sizeof (struct GNUNET_RPS_CS_RequestMessage) +
1142                 num_peers * sizeof (struct GNUNET_PeerIdentity);
1143
1144   if (GNUNET_SERVER_MAX_MESSAGE_SIZE < size_needed)
1145   {
1146     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1147     return;
1148   }
1149
1150   for (i = 0 ; i < num_peers ; i++)
1151     est_request_rate();
1152
1153   LOG (GNUNET_ERROR_TYPE_DEBUG, "Client requested %" PRIX32 " random peer(s).\n", num_peers);
1154
1155   RPS_sampler_get_n_rand_peers (client_sampler, client_respond,
1156                                 client, num_peers, GNUNET_YES);
1157
1158   GNUNET_SERVER_receive_done (client,
1159                               GNUNET_OK);
1160 }
1161
1162
1163 /**
1164  * Handle seed from the client.
1165  *
1166  * @param cls closure
1167  * @param client identification of the client
1168  * @param message the actual message
1169  */
1170   static void
1171 handle_client_seed (void *cls,
1172                     struct GNUNET_SERVER_Client *client,
1173                     const struct GNUNET_MessageHeader *message)
1174 {
1175   struct GNUNET_RPS_CS_SeedMessage *in_msg;
1176   struct GNUNET_PeerIdentity *peers;
1177   uint32_t num_peers;
1178   uint32_t i;
1179
1180   if (sizeof (struct GNUNET_RPS_CS_SeedMessage) > ntohs (message->size))
1181   {
1182     GNUNET_break_op (0);
1183     GNUNET_SERVER_receive_done (client,
1184                                 GNUNET_SYSERR);
1185   }
1186
1187   in_msg = (struct GNUNET_RPS_CS_SeedMessage *) message;
1188   num_peers = ntohl (in_msg->num_peers);
1189   peers = (struct GNUNET_PeerIdentity *) &in_msg[1];
1190   //peers = GNUNET_new_array (num_peers, struct GNUNET_PeerIdentity);
1191   //memcpy (peers, &in_msg[1], num_peers * sizeof (struct GNUNET_PeerIdentity));
1192
1193   if ((ntohs (message->size) - sizeof (struct GNUNET_RPS_CS_SeedMessage)) /
1194       sizeof (struct GNUNET_PeerIdentity) != num_peers)
1195   {
1196     GNUNET_break_op (0);
1197     GNUNET_SERVER_receive_done (client,
1198                                 GNUNET_SYSERR);
1199   }
1200
1201   LOG (GNUNET_ERROR_TYPE_DEBUG,
1202        "Client seeded peers:\n");
1203   print_peer_list (peers, num_peers);
1204
1205   // TODO check for validity of ids
1206
1207   for (i = 0 ; i < num_peers ; i++)
1208   {
1209     LOG (GNUNET_ERROR_TYPE_DEBUG,
1210          "Updating samplers with seed %" PRIX32 ": %s\n",
1211          i,
1212          GNUNET_i2s (&peers[i]));
1213
1214     RPS_sampler_update (prot_sampler,   &peers[i]);
1215     RPS_sampler_update (client_sampler, &peers[i]);
1216   }
1217
1218   //GNUNET_free (peers);
1219
1220   GNUNET_SERVER_receive_done (client,
1221                                                 GNUNET_OK);
1222 }
1223
1224
1225 /**
1226  * Handle a PUSH message from another peer.
1227  *
1228  * Check the proof of work and store the PeerID
1229  * in the temporary list for pushed PeerIDs.
1230  *
1231  * @param cls Closure
1232  * @param channel The channel the PUSH was received over
1233  * @param channel_ctx The context associated with this channel
1234  * @param msg The message header
1235  */
1236 static int
1237 handle_peer_push (void *cls,
1238     struct GNUNET_CADET_Channel *channel,
1239     void **channel_ctx,
1240     const struct GNUNET_MessageHeader *msg)
1241 {
1242   const struct GNUNET_PeerIdentity *peer;
1243
1244   // (check the proof of work)
1245
1246   peer = (const struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (channel, GNUNET_CADET_OPTION_PEER);
1247   // FIXME wait for cadet to change this function
1248   LOG (GNUNET_ERROR_TYPE_DEBUG, "PUSH received (%s)\n", GNUNET_i2s (peer));
1249
1250   /* Add the sending peer to the push_list */
1251   if (GNUNET_NO == in_arr (push_list, push_list_size, peer))
1252     GNUNET_array_append (push_list, push_list_size, *peer);
1253
1254   return GNUNET_OK;
1255 }
1256
1257 /**
1258  * Handle PULL REQUEST request message from another peer.
1259  *
1260  * Reply with the gossip list of PeerIDs.
1261  *
1262  * @param cls Closure
1263  * @param channel The channel the PUSH was received over
1264  * @param channel_ctx The context associated with this channel
1265  * @param msg The message header
1266  */
1267 static int
1268 handle_peer_pull_request (void *cls,
1269     struct GNUNET_CADET_Channel *channel,
1270     void **channel_ctx,
1271     const struct GNUNET_MessageHeader *msg)
1272 {
1273   struct GNUNET_PeerIdentity *peer;
1274   uint32_t send_size;
1275   struct GNUNET_MQ_Handle *mq;
1276   struct GNUNET_MQ_Envelope *ev;
1277   struct GNUNET_RPS_P2P_PullReplyMessage *out_msg;
1278
1279
1280   peer = (struct GNUNET_PeerIdentity *)
1281     GNUNET_CADET_channel_get_info (channel,
1282                                    GNUNET_CADET_OPTION_PEER);
1283   // FIXME wait for cadet to change this function
1284
1285   /* Compute actual size */
1286   send_size = sizeof (struct GNUNET_RPS_P2P_PullReplyMessage) +
1287               gossip_list_size * sizeof (struct GNUNET_PeerIdentity);
1288
1289   if (GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE < send_size)
1290     /* Compute number of peers to send
1291      * If too long, simply truncate */
1292   // TODO select random ones via permutation
1293     send_size =
1294       (GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE -
1295        sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) /
1296        sizeof (struct GNUNET_PeerIdentity);
1297   else
1298     send_size = gossip_list_size;
1299
1300   LOG (GNUNET_ERROR_TYPE_DEBUG,
1301       "PULL REQUEST from peer %s received, going to send %u peers\n",
1302       GNUNET_i2s (peer), send_size);
1303
1304   mq = get_mq (peer_map, peer);
1305
1306   ev = GNUNET_MQ_msg_extra (out_msg,
1307                            send_size * sizeof (struct GNUNET_PeerIdentity),
1308                            GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY);
1309   //out_msg->num_peers = htonl (gossip_list_size);
1310   out_msg->num_peers = htonl (send_size);
1311   memcpy (&out_msg[1], gossip_list,
1312          send_size * sizeof (struct GNUNET_PeerIdentity));
1313
1314   GNUNET_MQ_send (mq, ev);
1315
1316   return GNUNET_OK;
1317 }
1318
1319
1320 /**
1321  * Handle PULL REPLY message from another peer.
1322  *
1323  * Check whether we sent a corresponding request and
1324  * whether this reply is the first one.
1325  *
1326  * @param cls Closure
1327  * @param channel The channel the PUSH was received over
1328  * @param channel_ctx The context associated with this channel
1329  * @param msg The message header
1330  */
1331   static int
1332 handle_peer_pull_reply (void *cls,
1333                         struct GNUNET_CADET_Channel *channel,
1334                         void **channel_ctx,
1335                         const struct GNUNET_MessageHeader *msg)
1336 {
1337   LOG (GNUNET_ERROR_TYPE_DEBUG, "PULL REPLY received\n");
1338
1339   struct GNUNET_RPS_P2P_PullReplyMessage *in_msg;
1340   struct GNUNET_PeerIdentity *peers;
1341   struct PeerContext *peer_ctx;
1342   struct GNUNET_PeerIdentity *sender;
1343   struct PeerContext *sender_ctx;
1344   struct PeerOutstandingOp out_op;
1345   uint32_t i;
1346
1347   /* Check for protocol violation */
1348   if (sizeof (struct GNUNET_RPS_P2P_PullReplyMessage) > ntohs (msg->size))
1349   {
1350     GNUNET_break_op (0);
1351     return GNUNET_SYSERR;
1352   }
1353
1354   in_msg = (struct GNUNET_RPS_P2P_PullReplyMessage *) msg;
1355   if ((ntohs (msg->size) - sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) /
1356       sizeof (struct GNUNET_PeerIdentity) != ntohl (in_msg->num_peers))
1357   {
1358     LOG (GNUNET_ERROR_TYPE_ERROR,
1359         "message says it sends %" PRIu64 " peers, have space for %i peers\n",
1360         ntohl (in_msg->num_peers),
1361         (ntohs (msg->size) - sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) /
1362             sizeof (struct GNUNET_PeerIdentity));
1363     GNUNET_break_op (0);
1364     return GNUNET_SYSERR;
1365   }
1366
1367   sender = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (
1368       (struct GNUNET_CADET_Channel *) channel, GNUNET_CADET_OPTION_PEER);
1369        // Guess simply casting isn't the nicest way...
1370        // FIXME wait for cadet to change this function
1371   sender_ctx = get_peer_ctx (peer_map, sender);
1372
1373   if (GNUNET_YES == get_peer_flag (sender_ctx, PULL_REPLY_PENDING))
1374   {
1375     GNUNET_break_op (0);
1376     return GNUNET_OK;
1377   }
1378
1379
1380   /* Do actual logic */
1381   peers = (struct GNUNET_PeerIdentity *) &msg[1];
1382   for (i = 0 ; i < ntohl (in_msg->num_peers) ; i++)
1383   {
1384     peer_ctx = get_peer_ctx (peer_map, &peers[i]);
1385     if (GNUNET_YES == get_peer_flag (peer_ctx, VALID)
1386         || NULL != peer_ctx->send_channel
1387         || NULL != peer_ctx->recv_channel)
1388     {
1389       if (GNUNET_NO == in_arr (pull_list, pull_list_size, &peers[i])
1390           && 0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, &peers[i]))
1391         GNUNET_array_append (pull_list, pull_list_size, peers[i]);
1392     }
1393     else if (GNUNET_NO == insert_in_pull_list_scheduled (peer_ctx))
1394     {
1395       out_op.op = insert_in_pull_list;
1396       out_op.op_cls = NULL;
1397       GNUNET_array_append (peer_ctx->outstanding_ops,
1398                            peer_ctx->num_outstanding_ops,
1399                            out_op);
1400       check_peer_live (peer_ctx);
1401     }
1402   }
1403
1404   unset_peer_flag (sender_ctx, PULL_REPLY_PENDING);
1405   rem_from_list (&pending_pull_reply_list, &pending_pull_reply_list_size, sender);
1406
1407   return GNUNET_OK;
1408 }
1409
1410
1411 /**
1412  * Compute a random delay.
1413  * A uniformly distributed value between mean + spread and mean - spread.
1414  *
1415  * For example for mean 4 min and spread 2 the minimum is (4 min - (1/2 * 4 min))
1416  * It would return a random value between 2 and 6 min.
1417  *
1418  * @param mean the mean
1419  * @param spread the inverse amount of deviation from the mean
1420  */
1421 static struct GNUNET_TIME_Relative
1422 compute_rand_delay (struct GNUNET_TIME_Relative mean, unsigned int spread)
1423 {
1424   struct GNUNET_TIME_Relative half_interval;
1425   struct GNUNET_TIME_Relative ret;
1426   unsigned int rand_delay;
1427   unsigned int max_rand_delay;
1428
1429   if (0 == spread)
1430   {
1431     LOG (GNUNET_ERROR_TYPE_WARNING,
1432          "Not accepting spread of 0\n");
1433     GNUNET_break (0);
1434   }
1435
1436   /* Compute random time value between spread * mean and spread * mean */
1437   half_interval = GNUNET_TIME_relative_divide (mean, spread);
1438
1439   max_rand_delay = GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us / mean.rel_value_us * (2/spread);
1440   /**
1441    * Compute random value between (0 and 1) * round_interval
1442    * via multiplying round_interval with a 'fraction' (0 to value)/value
1443    */
1444   rand_delay = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, max_rand_delay);
1445   ret = GNUNET_TIME_relative_multiply (mean,  rand_delay);
1446   ret = GNUNET_TIME_relative_divide   (ret, max_rand_delay);
1447   ret = GNUNET_TIME_relative_add      (ret, half_interval);
1448
1449   if (GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us == ret.rel_value_us)
1450     LOG (GNUNET_ERROR_TYPE_WARNING,
1451          "Returning FOREVER_REL\n");
1452
1453   return ret;
1454 }
1455
1456
1457 /**
1458  * Send single pull request
1459  *
1460  * @param peer_id the peer to send the pull request to.
1461  */
1462 static void
1463 send_pull_request (struct GNUNET_PeerIdentity *peer_id)
1464 {
1465   struct GNUNET_MQ_Envelope *ev;
1466   struct GNUNET_MQ_Handle *mq;
1467
1468   LOG (GNUNET_ERROR_TYPE_DEBUG,
1469        "Sending PULL request to peer %s of gossiped list.\n",
1470        GNUNET_i2s (peer_id));
1471
1472   GNUNET_array_append (pending_pull_reply_list, pending_pull_reply_list_size, *peer_id);
1473
1474   ev = GNUNET_MQ_msg_header (GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST);
1475   mq = get_mq (peer_map, peer_id);
1476   GNUNET_MQ_send (mq, ev);
1477 }
1478
1479
1480 /**
1481  * Send single push
1482  *
1483  * @param peer_id the peer to send the push to.
1484  */
1485 static void
1486 send_push (struct GNUNET_PeerIdentity *peer_id)
1487 {
1488   struct GNUNET_MQ_Envelope *ev;
1489   struct GNUNET_MQ_Handle *mq;
1490
1491   LOG (GNUNET_ERROR_TYPE_DEBUG,
1492        "Sending PUSH to peer %s of gossiped list.\n",
1493        GNUNET_i2s (peer_id));
1494
1495   ev = GNUNET_MQ_msg_header (GNUNET_MESSAGE_TYPE_RPS_PP_PUSH);
1496   mq = get_mq (peer_map, peer_id);
1497   GNUNET_MQ_send (mq, ev);
1498 }
1499
1500
1501 static void
1502 do_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1503
1504 static void
1505 do_mal_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1506
1507
1508 #ifdef ENABLE_MALICIOUS
1509 /**
1510  * Turn RPS service to act malicious.
1511  *
1512  * @param cls Closure
1513  * @param channel The channel the PUSH was received over
1514  * @param channel_ctx The context associated with this channel
1515  * @param msg The message header
1516  */
1517   static void
1518 handle_client_act_malicious (void *cls,
1519                              struct GNUNET_SERVER_Client *client,
1520                              const struct GNUNET_MessageHeader *msg)
1521 {
1522   struct GNUNET_RPS_CS_ActMaliciousMessage *in_msg;
1523   struct GNUNET_PeerIdentity *peers;
1524   uint32_t num_mal_peers_sent;
1525   uint32_t num_mal_peers_old;
1526
1527   /* Check for protocol violation */
1528   if (sizeof (struct GNUNET_RPS_CS_ActMaliciousMessage) > ntohs (msg->size))
1529   {
1530     GNUNET_break_op (0);
1531   }
1532
1533   in_msg = (struct GNUNET_RPS_CS_ActMaliciousMessage *) msg;
1534   if ((ntohs (msg->size) - sizeof (struct GNUNET_RPS_CS_ActMaliciousMessage)) /
1535       sizeof (struct GNUNET_PeerIdentity) != ntohl (in_msg->num_peers))
1536   {
1537     LOG (GNUNET_ERROR_TYPE_ERROR,
1538         "message says it sends %" PRIu64 " peers, have space for %i peers\n",
1539         ntohl (in_msg->num_peers),
1540         (ntohs (msg->size) - sizeof (struct GNUNET_RPS_CS_ActMaliciousMessage)) /
1541             sizeof (struct GNUNET_PeerIdentity));
1542     GNUNET_break_op (0);
1543   }
1544
1545
1546   /* Do actual logic */
1547   peers = (struct GNUNET_PeerIdentity *) &msg[1];
1548   mal_type = ntohl (in_msg->type);
1549
1550   LOG (GNUNET_ERROR_TYPE_DEBUG,
1551        "Now acting malicious type %" PRIu32 "\n",
1552        mal_type);
1553
1554   if (1 == mal_type)
1555   { /* Try to maximise representation */
1556     /* Add other malicious peers to those we already know */
1557     num_mal_peers_sent = ntohl (in_msg->num_peers);
1558     num_mal_peers_old = num_mal_peers;
1559     GNUNET_array_grow (mal_peers,
1560                        num_mal_peers,
1561                        num_mal_peers + num_mal_peers_sent);
1562     memcpy (&mal_peers[num_mal_peers_old],
1563             peers,
1564             num_mal_peers_sent * sizeof (struct GNUNET_PeerIdentity));
1565
1566     /* Substitute do_round () with do_mal_round () */
1567     GNUNET_SCHEDULER_cancel (do_round_task);
1568     do_round_task = GNUNET_SCHEDULER_add_now (&do_mal_round, NULL);
1569   }
1570   else if (2 == mal_type)
1571   { /* Try to partition the network */
1572     /* Add other malicious peers to those we already know */
1573     num_mal_peers_sent = ntohl (in_msg->num_peers) - 1;
1574     num_mal_peers_old = num_mal_peers;
1575     GNUNET_array_grow (mal_peers,
1576                        num_mal_peers,
1577                        num_mal_peers + num_mal_peers_sent);
1578     memcpy (&mal_peers[num_mal_peers_old],
1579             peers,
1580             num_mal_peers_sent * sizeof (struct GNUNET_PeerIdentity));
1581
1582     /* Store the one attacked peer */
1583     memcpy (&attacked_peer,
1584             &peers[num_mal_peers_sent],
1585             sizeof (struct GNUNET_PeerIdentity));
1586
1587     LOG (GNUNET_ERROR_TYPE_DEBUG,
1588          "Attacked peer is %s\n",
1589          GNUNET_i2s (&attacked_peer));
1590
1591     /* Substitute do_round () with do_mal_round () */
1592     GNUNET_SCHEDULER_cancel (do_round_task);
1593     do_round_task = GNUNET_SCHEDULER_add_now (&do_mal_round, NULL);
1594   }
1595   else if (0 == mal_type)
1596   { /* Stop acting malicious */
1597     num_mal_peers = 0;
1598     GNUNET_free (mal_peers);
1599
1600     /* Substitute do_mal_round () with do_round () */
1601     GNUNET_SCHEDULER_cancel (do_round_task);
1602     do_round_task = GNUNET_SCHEDULER_add_now (&do_round, NULL);
1603   }
1604   else
1605   {
1606     GNUNET_break (0);
1607   }
1608 }
1609
1610
1611 /**
1612  * Send out PUSHes and PULLs maliciously.
1613  *
1614  * This is executed regylary.
1615  */
1616 static void
1617 do_mal_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1618 {
1619   uint32_t num_pushes;
1620   uint32_t i;
1621   struct GNUNET_TIME_Relative time_next_round;
1622   struct AttackedPeer *tmp_att_peer;
1623   struct AttackedPeer *att_stop_peer;
1624
1625   LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round maliciously.\n");
1626
1627   /* Do malicious actions */
1628   if (1 == mal_type)
1629   { /* Try to maximise representation */
1630
1631     /* The maximum of pushes we're going to send this round */
1632     num_pushes = min (min (push_limit,
1633                            num_attacked_peers),
1634                        GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE);
1635
1636
1637     /* Send PUSHes to attacked peers */
1638
1639     /* If we see this peer again while iterating over peers
1640      * we can stop iterating, as peers will ignore multiple
1641      * pushes from one peer in one round */
1642     if (att_peers_head == att_peer_index)
1643       att_stop_peer = att_peers_tail;
1644     else
1645       att_peers_tail = att_peer_index->prev;
1646
1647     for (i = 0 ; i < num_pushes ; i++)
1648     {
1649       if (att_peers_tail == att_peer_index)
1650         att_peer_index = att_peers_head;
1651       else if (att_stop_peer == att_peer_index)
1652         break;
1653       else
1654         att_peer_index = att_peer_index->next;
1655
1656       send_push (att_peer_index->peer_id);
1657     }
1658
1659
1660     /* Send PULLs to some peers to learn about additional peers to attack */
1661
1662     /* If we see this peer again while iterating over peers
1663      * we can stop iterating, as peers will ignore multiple
1664      * pushes from one peer in one round */
1665     tmp_att_peer = att_peer_index;
1666     if (att_peers_head == att_peer_index)
1667       att_stop_peer = att_peers_tail;
1668     else
1669       att_peers_tail = att_peer_index->prev;
1670
1671     for (i = 0 ; i < num_pushes * alpha ; i++)
1672     {
1673       if (att_peers_tail == tmp_att_peer)
1674         tmp_att_peer = att_peers_head;
1675       else if (att_stop_peer == att_peer_index)
1676         break;
1677       else
1678         att_peer_index = tmp_att_peer->next;
1679
1680       send_pull_request (tmp_att_peer->peer_id);
1681     }
1682   }
1683
1684
1685   else if (2 == mal_type)
1686   { /**
1687      * Try to partition the network
1688      * Send as many pushes to the attacked peer as possible
1689      * That is one push per round as it will ignore more.
1690      */
1691       send_push (&attacked_peer);
1692   }
1693
1694
1695   /* Schedule next round */
1696   time_next_round = compute_rand_delay (round_interval, 2);
1697
1698   //do_round_task = GNUNET_SCHEDULER_add_delayed (round_interval, &do_mal_round, NULL);
1699   do_round_task = GNUNET_SCHEDULER_add_delayed (time_next_round, &do_mal_round, NULL);
1700   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
1701 }
1702 #endif /* ENABLE_MALICIOUS */
1703
1704
1705 /**
1706  * Send out PUSHes and PULLs, possibly update #gossip_list, samplers.
1707  *
1708  * This is executed regylary.
1709  */
1710 static void
1711 do_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1712 {
1713   LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round.\n");
1714
1715   uint32_t i;
1716   unsigned int *permut;
1717   unsigned int n_peers; /* Number of peers we send pushes/pulls to */
1718   struct GNUNET_PeerIdentity peer;
1719   struct GNUNET_PeerIdentity *tmp_peer;
1720
1721   LOG (GNUNET_ERROR_TYPE_DEBUG,
1722        "Printing gossip list:\n");
1723   for (i = 0 ; i < gossip_list_size ; i++)
1724     LOG (GNUNET_ERROR_TYPE_DEBUG,
1725          "\t%s\n", GNUNET_i2s (&gossip_list[i]));
1726   // TODO log lists, ...
1727
1728   /* Would it make sense to have one shuffeled gossip list and then
1729    * to send PUSHes to first alpha peers, PULL requests to next beta peers and
1730    * use the rest to update sampler?
1731    * in essence get random peers with consumption */
1732
1733   /* Send PUSHes */
1734   if (0 < gossip_list_size)
1735   {
1736     permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG,
1737                                            (unsigned int) gossip_list_size);
1738     n_peers = ceil (alpha * gossip_list_size);
1739     LOG (GNUNET_ERROR_TYPE_DEBUG,
1740          "Going to send pushes to %u ceil (%f * %u) peers.\n",
1741          n_peers, alpha, gossip_list_size);
1742     for (i = 0 ; i < n_peers ; i++)
1743     {
1744       peer = gossip_list[permut[i]];
1745       if (0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, &peer)) // TODO
1746       { // FIXME if this fails schedule/loop this for later
1747         send_push (&peer);
1748       }
1749     }
1750     GNUNET_free (permut);
1751   }
1752
1753
1754   /* Send PULL requests */
1755   //permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG, (unsigned int) sampler_list->size);
1756   n_peers = ceil (beta * gossip_list_size);
1757   LOG (GNUNET_ERROR_TYPE_DEBUG,
1758        "Going to send pulls to %u ceil (%f * %u) peers.\n",
1759        n_peers, beta, gossip_list_size);
1760   for (i = 0 ; i < n_peers ; i++)
1761   {
1762     tmp_peer = get_rand_peer_ignore_list (gossip_list, gossip_list_size,
1763         pending_pull_reply_list, pending_pull_reply_list_size);
1764     if (NULL != tmp_peer)
1765     {
1766       peer = *tmp_peer;
1767       GNUNET_free (tmp_peer);
1768
1769       if (0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, &peer))
1770       {
1771         send_pull_request (&peer);
1772       }
1773     }
1774   }
1775
1776
1777   /* Update gossip list */
1778
1779   if ( push_list_size <= alpha * gossip_list_size &&
1780        push_list_size != 0 &&
1781        pull_list_size != 0 )
1782   {
1783     LOG (GNUNET_ERROR_TYPE_DEBUG, "Update of the gossip list.\n");
1784
1785     uint32_t first_border;
1786     uint32_t second_border;
1787     uint32_t r_index;
1788     uint32_t peers_to_clean_size;
1789     struct GNUNET_PeerIdentity *peers_to_clean;
1790
1791     peers_to_clean = NULL;
1792     peers_to_clean_size = 0;
1793     GNUNET_array_grow (peers_to_clean, peers_to_clean_size, gossip_list_size);
1794     memcpy (peers_to_clean,
1795             gossip_list,
1796             gossip_list_size * sizeof (struct GNUNET_PeerIdentity));
1797
1798     first_border  =                ceil (alpha * sampler_size_est_need);
1799     second_border = first_border + ceil (beta  * sampler_size_est_need);
1800
1801     GNUNET_array_grow (gossip_list, gossip_list_size, second_border);
1802
1803     for (i = 0 ; i < first_border ; i++)
1804     { // TODO use RPS_sampler_get_n_rand_peers
1805       /* Update gossip list with peers received through PUSHes */
1806       r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
1807                                        push_list_size);
1808       gossip_list[i] = push_list[r_index];
1809       // TODO change the peer_flags accordingly
1810     }
1811
1812     for (i = first_border ; i < second_border ; i++)
1813     {
1814       /* Update gossip list with peers received through PULLs */
1815       r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
1816                                        pull_list_size);
1817       gossip_list[i] = pull_list[r_index];
1818       // TODO change the peer_flags accordingly
1819     }
1820
1821     for (i = second_border ; i < sampler_size_est_need ; i++)
1822     {
1823       /* Update gossip list with peers from history */
1824       RPS_sampler_get_n_rand_peers (prot_sampler, hist_update, NULL, 1, GNUNET_NO);
1825       num_hist_update_tasks++;
1826       // TODO change the peer_flags accordingly
1827     }
1828
1829     for (i = 0 ; i < gossip_list_size ; i++)
1830       rem_from_list (&peers_to_clean, &peers_to_clean_size, &gossip_list[i]);
1831
1832     for (i = 0 ; i < peers_to_clean_size ; i++)
1833       peer_clean (&peers_to_clean[i]);
1834
1835     GNUNET_free (peers_to_clean);
1836   }
1837   else
1838   {
1839     LOG (GNUNET_ERROR_TYPE_DEBUG, "No update of the gossip list.\n");
1840   }
1841   // TODO independent of that also get some peers from CADET_get_peers()?
1842
1843
1844   /* Update samplers */
1845   for ( i = 0 ; i < push_list_size ; i++ )
1846   {
1847     LOG (GNUNET_ERROR_TYPE_DEBUG,
1848          "Updating with peer %s from push list\n",
1849          GNUNET_i2s (&push_list[i]));
1850     RPS_sampler_update (prot_sampler,   &push_list[i]);
1851     RPS_sampler_update (client_sampler, &push_list[i]);
1852     // TODO set in_flag?
1853   }
1854
1855   for ( i = 0 ; i < pull_list_size ; i++ )
1856   {
1857     LOG (GNUNET_ERROR_TYPE_DEBUG,
1858          "Updating with peer %s from pull list\n",
1859          GNUNET_i2s (&pull_list[i]));
1860     RPS_sampler_update (prot_sampler,   &pull_list[i]);
1861     RPS_sampler_update (client_sampler, &pull_list[i]);
1862     // TODO set in_flag?
1863   }
1864
1865
1866   /* Empty push/pull lists */
1867   GNUNET_array_grow (push_list, push_list_size, 0);
1868   GNUNET_array_grow (pull_list, pull_list_size, 0);
1869
1870   struct GNUNET_TIME_Relative time_next_round;
1871
1872   time_next_round = compute_rand_delay (round_interval, 2);
1873
1874   /* Schedule next round */
1875   //do_round_task = GNUNET_SCHEDULER_add_delayed (round_interval, &do_round, NULL);
1876   do_round_task = GNUNET_SCHEDULER_add_delayed (time_next_round, &do_round, NULL);
1877   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
1878 }
1879
1880
1881 static void
1882 rps_start (struct GNUNET_SERVER_Handle *server);
1883
1884
1885 /**
1886  * This is called from GNUNET_CADET_get_peers().
1887  *
1888  * It is called on every peer(ID) that cadet somehow has contact with.
1889  * We use those to initialise the sampler.
1890  */
1891 void
1892 init_peer_cb (void *cls,
1893               const struct GNUNET_PeerIdentity *peer,
1894               int tunnel, // "Do we have a tunnel towards this peer?"
1895               unsigned int n_paths, // "Number of known paths towards this peer"
1896               unsigned int best_path) // "How long is the best path?
1897                                       // (0 = unknown, 1 = ourselves, 2 = neighbor)"
1898 {
1899   struct PeerOutstandingOp out_op;
1900   struct PeerContext *peer_ctx;
1901
1902   if (NULL != peer
1903       && 0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, peer))
1904   {
1905     LOG (GNUNET_ERROR_TYPE_DEBUG,
1906         "Got peer %s (at %p) from CADET (gossip_list_size: %u)\n",
1907         GNUNET_i2s (peer), peer, gossip_list_size);
1908
1909     // maybe create a function for that
1910     peer_ctx = get_peer_ctx (peer_map, peer);
1911     if (GNUNET_YES != get_peer_flag (peer_ctx, VALID))
1912     {
1913       if (GNUNET_NO == insert_in_sampler_scheduled (peer_ctx))
1914       {
1915         out_op.op = insert_in_sampler;
1916         out_op.op_cls = NULL;
1917         GNUNET_array_append (peer_ctx->outstanding_ops,
1918                              peer_ctx->num_outstanding_ops,
1919                              out_op);
1920       }
1921
1922       if (GNUNET_NO == insert_in_gossip_list_scheduled (peer_ctx))
1923       {
1924         out_op.op = insert_in_gossip_list;
1925         out_op.op_cls = NULL;
1926         GNUNET_array_append (peer_ctx->outstanding_ops,
1927                              peer_ctx->num_outstanding_ops,
1928                              out_op);
1929       }
1930
1931       /* Trigger livelyness test on peer */
1932       check_peer_live (peer_ctx);
1933     }
1934
1935     // send push/pull to each of those peers?
1936   }
1937 }
1938
1939
1940 /**
1941  * Clean the send channel of a peer
1942  */
1943 void
1944 peer_clean (const struct GNUNET_PeerIdentity *peer)
1945 {
1946   struct PeerContext *peer_ctx;
1947   struct GNUNET_CADET_Channel *channel;
1948
1949   if (GNUNET_YES != in_arr (gossip_list, gossip_list_size, peer)
1950       && GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
1951   {
1952     peer_ctx = get_peer_ctx (peer_map, peer);
1953     if (NULL != peer_ctx->send_channel)
1954     {
1955       channel = peer_ctx->send_channel;
1956       peer_ctx->send_channel = NULL;
1957       GNUNET_CADET_channel_destroy (channel);
1958     }
1959   }
1960 }
1961
1962
1963 /**
1964  * Callback used to remove peers from the multipeermap.
1965  */
1966   int
1967 peer_remove_cb (void *cls, const struct GNUNET_PeerIdentity *key, void *value)
1968 {
1969   struct PeerContext *peer_ctx;
1970   const struct GNUNET_CADET_Channel *channel =
1971     (const struct GNUNET_CADET_Channel *) cls;
1972   struct GNUNET_CADET_Channel *recv;
1973   struct GNUNET_CADET_Channel *send;
1974
1975   if (GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, value))
1976   {
1977     peer_ctx = (struct PeerContext *) value;
1978
1979     if (0 != peer_ctx->num_outstanding_ops)
1980       GNUNET_array_grow (peer_ctx->outstanding_ops,
1981                          peer_ctx->num_outstanding_ops,
1982                          0);
1983
1984     if (NULL != peer_ctx->mq)
1985     {
1986       GNUNET_MQ_destroy (peer_ctx->mq);
1987       peer_ctx->mq = NULL;
1988     }
1989
1990
1991     if (NULL != peer_ctx->is_live_task)
1992     {
1993     LOG (GNUNET_ERROR_TYPE_DEBUG,
1994          "Trying to cancle is_live_task for peer %s\n",
1995          GNUNET_i2s (key));
1996       GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->is_live_task);
1997       peer_ctx->is_live_task = NULL;
1998     }
1999
2000     send = peer_ctx->send_channel;
2001     peer_ctx->send_channel = NULL;
2002     if (NULL != send
2003         && channel != send)
2004     {
2005       GNUNET_CADET_channel_destroy (send);
2006     }
2007
2008     recv = peer_ctx->send_channel;
2009     peer_ctx->recv_channel = NULL;
2010     if (NULL != recv
2011         && channel != recv)
2012     {
2013       GNUNET_CADET_channel_destroy (recv);
2014     }
2015
2016     if (GNUNET_YES != GNUNET_CONTAINER_multipeermap_remove_all (peer_map, key))
2017       LOG (GNUNET_ERROR_TYPE_WARNING, "removing peer from peer_map failed\n");
2018     else
2019       GNUNET_free (peer_ctx);
2020   }
2021
2022   return GNUNET_YES;
2023 }
2024
2025
2026 /**
2027  * Task run during shutdown.
2028  *
2029  * @param cls unused
2030  * @param tc unused
2031  */
2032 static void
2033 shutdown_task (void *cls,
2034                      const struct GNUNET_SCHEDULER_TaskContext *tc)
2035 {
2036   LOG (GNUNET_ERROR_TYPE_DEBUG, "RPS is going down\n");
2037
2038   if (NULL != do_round_task)
2039   {
2040     GNUNET_SCHEDULER_cancel (do_round_task);
2041     do_round_task = NULL;
2042   }
2043
2044
2045   {
2046   if (GNUNET_SYSERR ==
2047         GNUNET_CONTAINER_multipeermap_iterate (peer_map, peer_remove_cb, NULL))
2048     LOG (GNUNET_ERROR_TYPE_WARNING,
2049         "Iterating over peers to disconnect from them was cancelled\n");
2050   }
2051
2052   GNUNET_NSE_disconnect (nse);
2053   GNUNET_CADET_disconnect (cadet_handle);
2054   RPS_sampler_destroy (prot_sampler);
2055   RPS_sampler_destroy (client_sampler);
2056   LOG (GNUNET_ERROR_TYPE_DEBUG,
2057        "Size of the peermap: %u\n",
2058        GNUNET_CONTAINER_multipeermap_size (peer_map));
2059   GNUNET_break (0 == GNUNET_CONTAINER_multipeermap_size (peer_map));
2060   GNUNET_CONTAINER_multipeermap_destroy (peer_map);
2061   GNUNET_array_grow (gossip_list, gossip_list_size, 0);
2062   GNUNET_array_grow (push_list, push_list_size, 0);
2063   GNUNET_array_grow (pull_list, pull_list_size, 0);
2064   #ifdef ENABLE_MALICIOUS
2065   GNUNET_array_grow (mal_peers, num_mal_peers, 0);
2066   // TODO empty attacked_peers DLL
2067   #endif /* ENABLE_MALICIOUS */
2068 }
2069
2070
2071 /**
2072  * A client disconnected.  Remove all of its data structure entries.
2073  *
2074  * @param cls closure, NULL
2075  * @param client identification of the client
2076  */
2077 static void
2078 handle_client_disconnect (void *cls,
2079                           struct GNUNET_SERVER_Client * client)
2080 {
2081 }
2082
2083
2084 /**
2085  * Handle the channel a peer opens to us.
2086  *
2087  * @param cls The closure
2088  * @param channel The channel the peer wants to establish
2089  * @param initiator The peer's peer ID
2090  * @param port The port the channel is being established over
2091  * @param options Further options
2092  */
2093   static void *
2094 handle_inbound_channel (void *cls,
2095                         struct GNUNET_CADET_Channel *channel,
2096                         const struct GNUNET_PeerIdentity *initiator,
2097                         uint32_t port,
2098                         enum GNUNET_CADET_ChannelOption options)
2099 {
2100   struct PeerContext *peer_ctx;
2101   struct GNUNET_PeerIdentity peer;
2102
2103   peer = *initiator;
2104   LOG (GNUNET_ERROR_TYPE_DEBUG,
2105       "New channel was established to us (Peer %s).\n",
2106       GNUNET_i2s (&peer));
2107
2108   GNUNET_assert (NULL != channel);
2109
2110   // we might not even store the recv_channel
2111
2112   peer_ctx = get_peer_ctx (peer_map, &peer);
2113   // FIXME what do we do if a channel is established twice?
2114   //       overwrite? Clean old channel? ...?
2115   //if (NULL != peer_ctx->recv_channel)
2116   //{
2117   //  peer_ctx->recv_channel = channel;
2118   //}
2119   peer_ctx->recv_channel = channel;
2120
2121   (void) GNUNET_CONTAINER_multipeermap_put (peer_map, &peer, peer_ctx,
2122       GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
2123
2124   peer_is_live (peer_ctx);
2125
2126   return NULL; // TODO
2127 }
2128
2129
2130 /**
2131  * This is called when a remote peer destroys a channel.
2132  *
2133  * @param cls The closure
2134  * @param channel The channel being closed
2135  * @param channel_ctx The context associated with this channel
2136  */
2137   static void
2138 cleanup_channel (void *cls,
2139                 const struct GNUNET_CADET_Channel *channel,
2140                 void *channel_ctx)
2141 {
2142   struct GNUNET_PeerIdentity *peer;
2143   struct PeerContext *peer_ctx;
2144
2145   peer = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (
2146       (struct GNUNET_CADET_Channel *) channel, GNUNET_CADET_OPTION_PEER);
2147        // Guess simply casting isn't the nicest way...
2148        // FIXME wait for cadet to change this function
2149
2150   if (GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
2151   {
2152     peer_ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
2153
2154     if (NULL == peer_ctx) /* It could have been removed by shutdown_task */
2155       return;
2156
2157     if (channel == peer_ctx->send_channel)
2158     { /* Peer probably went down */
2159       LOG (GNUNET_ERROR_TYPE_DEBUG,
2160            "Peer %s destroyed send channel - probably went down, cleaning up\n",
2161            GNUNET_i2s (peer));
2162       rem_from_list (&gossip_list, &gossip_list_size, peer);
2163       rem_from_list (&pending_pull_reply_list, &pending_pull_reply_list_size, peer);
2164
2165       peer_ctx->send_channel = NULL;
2166       /* Somwewhat {ab,re}use the iterator function */
2167       /* Cast to void is ok, because it's used as void in peer_remove_cb */
2168       (void) peer_remove_cb ((void *) channel, peer, peer_ctx);
2169     }
2170     else if (channel == peer_ctx->recv_channel)
2171     { /* Other peer doesn't want to send us messages anymore */
2172       LOG (GNUNET_ERROR_TYPE_DEBUG,
2173            "Peer %s destroyed recv channel - cleaning up channel\n",
2174            GNUNET_i2s (peer));
2175       peer_ctx->recv_channel = NULL;
2176     }
2177   }
2178 }
2179
2180
2181 /**
2182  * Actually start the service.
2183  */
2184   static void
2185 rps_start (struct GNUNET_SERVER_Handle *server)
2186 {
2187   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
2188     {&handle_client_request,     NULL, GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST,
2189       sizeof (struct GNUNET_RPS_CS_RequestMessage)},
2190     {&handle_client_seed,        NULL, GNUNET_MESSAGE_TYPE_RPS_CS_SEED, 0},
2191     #ifdef ENABLE_MALICIOUS
2192     {&handle_client_act_malicious, NULL, GNUNET_MESSAGE_TYPE_RPS_ACT_MALICIOUS , 0},
2193     #endif /* ENABLE_MALICIOUS */
2194     {NULL, NULL, 0, 0}
2195   };
2196
2197   GNUNET_SERVER_add_handlers (server, handlers);
2198   GNUNET_SERVER_disconnect_notify (server,
2199                                    &handle_client_disconnect,
2200                                    NULL);
2201   LOG (GNUNET_ERROR_TYPE_DEBUG, "Ready to receive requests from clients\n");
2202
2203
2204   do_round_task = GNUNET_SCHEDULER_add_now (&do_round, NULL);
2205   LOG (GNUNET_ERROR_TYPE_DEBUG, "Scheduled first round\n");
2206
2207   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
2208                                                         &shutdown_task,
2209                                                         NULL);
2210 }
2211
2212
2213 /**
2214  * Process statistics requests.
2215  *
2216  * @param cls closure
2217  * @param server the initialized server
2218  * @param c configuration to use
2219  */
2220   static void
2221 run (void *cls,
2222      struct GNUNET_SERVER_Handle *server,
2223      const struct GNUNET_CONFIGURATION_Handle *c)
2224 {
2225   // TODO check what this does -- copied from gnunet-boss
2226   // - seems to work as expected
2227   GNUNET_log_setup ("rps", GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_DEBUG), NULL);
2228   cfg = c;
2229
2230
2231   /* Get own ID */
2232   GNUNET_CRYPTO_get_peer_identity (cfg, &own_identity); // TODO check return value
2233   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2234               "STARTING SERVICE (rps) for peer [%s]\n",
2235               GNUNET_i2s (&own_identity));
2236   #ifdef ENABLE_MALICIOUS
2237   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2238               "Malicious execution compiled in.\n");
2239   #endif /* ENABLE_MALICIOUS */
2240
2241
2242
2243   /* Get time interval from the configuration */
2244   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_time (cfg, "RPS",
2245                                                         "ROUNDINTERVAL",
2246                                                         &round_interval))
2247   {
2248     LOG (GNUNET_ERROR_TYPE_DEBUG, "Failed to read ROUNDINTERVAL from config\n");
2249     GNUNET_SCHEDULER_shutdown ();
2250     return;
2251   }
2252
2253   /* Get initial size of sampler/gossip list from the configuration */
2254   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (cfg, "RPS",
2255                                                          "INITSIZE",
2256                                                          (long long unsigned int *) &sampler_size_est_need))
2257   {
2258     LOG (GNUNET_ERROR_TYPE_DEBUG, "Failed to read INITSIZE from config\n");
2259     GNUNET_SCHEDULER_shutdown ();
2260     return;
2261   }
2262   LOG (GNUNET_ERROR_TYPE_DEBUG, "INITSIZE is %" PRIu64 "\n", sampler_size_est_need);
2263
2264
2265   gossip_list = NULL;
2266
2267
2268   /* connect to NSE */
2269   nse = GNUNET_NSE_connect (cfg, nse_callback, NULL);
2270   // TODO check whether that was successful
2271   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connected to NSE\n");
2272
2273
2274   alpha = 0.45;
2275   beta  = 0.45;
2276
2277   peer_map = GNUNET_CONTAINER_multipeermap_create (sampler_size_est_need, GNUNET_NO);
2278
2279
2280   /* Initialise cadet */
2281   static const struct GNUNET_CADET_MessageHandler cadet_handlers[] = {
2282     {&handle_peer_push        , GNUNET_MESSAGE_TYPE_RPS_PP_PUSH        ,
2283       sizeof (struct GNUNET_MessageHeader)},
2284     {&handle_peer_pull_request, GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST,
2285       sizeof (struct GNUNET_MessageHeader)},
2286     {&handle_peer_pull_reply  , GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY  , 0},
2287     {NULL, 0, 0}
2288   };
2289
2290   const uint32_t ports[] = {GNUNET_RPS_CADET_PORT, 0}; // _PORT specified in src/rps/rps.h
2291   cadet_handle = GNUNET_CADET_connect (cfg,
2292                                        cls,
2293                                        &handle_inbound_channel,
2294                                        &cleanup_channel,
2295                                        cadet_handlers,
2296                                        ports);
2297   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connected to CADET\n");
2298
2299
2300   /* Initialise sampler */
2301   struct GNUNET_TIME_Relative half_round_interval;
2302   struct GNUNET_TIME_Relative  max_round_interval;
2303
2304   half_round_interval = GNUNET_TIME_relative_multiply (round_interval, .5);
2305   max_round_interval = GNUNET_TIME_relative_add (round_interval, half_round_interval);
2306
2307   prot_sampler =   RPS_sampler_init (sampler_size_est_need, max_round_interval);
2308   client_sampler = RPS_sampler_init (sampler_size_est_need, max_round_interval);
2309
2310   /* Initialise push and pull maps */
2311   push_list = NULL;
2312   push_list_size = 0;
2313   pull_list = NULL;
2314   pull_list_size = 0;
2315   pending_pull_reply_list = NULL;
2316   pending_pull_reply_list_size = 0;
2317
2318
2319   num_hist_update_tasks = 0;
2320
2321
2322   LOG (GNUNET_ERROR_TYPE_DEBUG, "Requesting peers from CADET\n");
2323   GNUNET_CADET_get_peers (cadet_handle, &init_peer_cb, NULL);
2324   // TODO send push/pull to each of those peers?
2325
2326
2327   rps_start (server);
2328 }
2329
2330
2331 /**
2332  * The main function for the rps service.
2333  *
2334  * @param argc number of arguments from the command line
2335  * @param argv command line arguments
2336  * @return 0 ok, 1 on error
2337  */
2338   int
2339 main (int argc, char *const *argv)
2340 {
2341   return (GNUNET_OK ==
2342           GNUNET_SERVICE_run (argc,
2343                               argv,
2344                               "rps",
2345                               GNUNET_SERVICE_OPTION_NONE,
2346                               &run, NULL)) ? 0 : 1;
2347 }
2348
2349 /* end of gnunet-service-rps.c */