96f2d6faa46234d0f470749fdbc28d5cc20beec4
[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
1624   LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round maliciously.\n");
1625
1626   /* Do malicious actions */
1627   if (1 == mal_type)
1628   { /* Try to maximise representation */
1629     num_pushes = min (min (push_limit,
1630                            num_attacked_peers),
1631                        GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE);
1632
1633     /* Send PUSHes to attacked peers */
1634     for (i = 0 ; i < num_pushes ; i++)
1635     {
1636       if (att_peers_tail == att_peer_index)
1637         att_peer_index = att_peers_head;
1638       else
1639         att_peer_index = att_peer_index->next;
1640
1641       send_push (att_peer_index->peer_id);
1642     }
1643
1644     /* Send PULLs to some peers to learn about additional peers to attack */
1645     tmp_att_peer = att_peer_index;
1646     for (i = 0 ; i < num_pushes * alpha ; i++)
1647     {
1648       if (att_peers_tail == tmp_att_peer)
1649         tmp_att_peer = att_peers_head;
1650       else
1651         att_peer_index = tmp_att_peer->next;
1652
1653       send_pull_request (tmp_att_peer->peer_id);
1654     }
1655
1656   }
1657   else if (2 == mal_type)
1658   { /**
1659      * Try to partition the network
1660      * Send as many pushes to attacked peer as possible
1661      */
1662       send_push (&attacked_peer);
1663   }
1664
1665   /* Schedule next round */
1666   time_next_round = compute_rand_delay (round_interval, 2);
1667
1668   //do_round_task = GNUNET_SCHEDULER_add_delayed (round_interval, &do_mal_round, NULL);
1669   do_round_task = GNUNET_SCHEDULER_add_delayed (time_next_round, &do_mal_round, NULL);
1670   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
1671 }
1672 #endif /* ENABLE_MALICIOUS */
1673
1674
1675 /**
1676  * Send out PUSHes and PULLs, possibly update #gossip_list, samplers.
1677  *
1678  * This is executed regylary.
1679  */
1680 static void
1681 do_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1682 {
1683   LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round.\n");
1684
1685   uint32_t i;
1686   unsigned int *permut;
1687   unsigned int n_peers; /* Number of peers we send pushes/pulls to */
1688   struct GNUNET_PeerIdentity peer;
1689   struct GNUNET_PeerIdentity *tmp_peer;
1690
1691   LOG (GNUNET_ERROR_TYPE_DEBUG,
1692        "Printing gossip list:\n");
1693   for (i = 0 ; i < gossip_list_size ; i++)
1694     LOG (GNUNET_ERROR_TYPE_DEBUG,
1695          "\t%s\n", GNUNET_i2s (&gossip_list[i]));
1696   // TODO log lists, ...
1697
1698   /* Would it make sense to have one shuffeled gossip list and then
1699    * to send PUSHes to first alpha peers, PULL requests to next beta peers and
1700    * use the rest to update sampler?
1701    * in essence get random peers with consumption */
1702
1703   /* Send PUSHes */
1704   if (0 < gossip_list_size)
1705   {
1706     permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG,
1707                                            (unsigned int) gossip_list_size);
1708     n_peers = ceil (alpha * gossip_list_size);
1709     LOG (GNUNET_ERROR_TYPE_DEBUG,
1710          "Going to send pushes to %u ceil (%f * %u) peers.\n",
1711          n_peers, alpha, gossip_list_size);
1712     for (i = 0 ; i < n_peers ; i++)
1713     {
1714       peer = gossip_list[permut[i]];
1715       if (0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, &peer)) // TODO
1716       { // FIXME if this fails schedule/loop this for later
1717         send_push (&peer);
1718       }
1719     }
1720     GNUNET_free (permut);
1721   }
1722
1723
1724   /* Send PULL requests */
1725   //permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG, (unsigned int) sampler_list->size);
1726   n_peers = ceil (beta * gossip_list_size);
1727   LOG (GNUNET_ERROR_TYPE_DEBUG,
1728        "Going to send pulls to %u ceil (%f * %u) peers.\n",
1729        n_peers, beta, gossip_list_size);
1730   for (i = 0 ; i < n_peers ; i++)
1731   {
1732     tmp_peer = get_rand_peer_ignore_list (gossip_list, gossip_list_size,
1733         pending_pull_reply_list, pending_pull_reply_list_size);
1734     if (NULL != tmp_peer)
1735     {
1736       peer = *tmp_peer;
1737       GNUNET_free (tmp_peer);
1738
1739       if (0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, &peer))
1740       {
1741         send_pull_request (&peer);
1742       }
1743     }
1744   }
1745
1746
1747   /* Update gossip list */
1748
1749   if ( push_list_size <= alpha * gossip_list_size &&
1750        push_list_size != 0 &&
1751        pull_list_size != 0 )
1752   {
1753     LOG (GNUNET_ERROR_TYPE_DEBUG, "Update of the gossip list.\n");
1754
1755     uint32_t first_border;
1756     uint32_t second_border;
1757     uint32_t r_index;
1758     uint32_t peers_to_clean_size;
1759     struct GNUNET_PeerIdentity *peers_to_clean;
1760
1761     peers_to_clean = NULL;
1762     peers_to_clean_size = 0;
1763     GNUNET_array_grow (peers_to_clean, peers_to_clean_size, gossip_list_size);
1764     memcpy (peers_to_clean,
1765             gossip_list,
1766             gossip_list_size * sizeof (struct GNUNET_PeerIdentity));
1767
1768     first_border  =                ceil (alpha * sampler_size_est_need);
1769     second_border = first_border + ceil (beta  * sampler_size_est_need);
1770
1771     GNUNET_array_grow (gossip_list, gossip_list_size, second_border);
1772
1773     for (i = 0 ; i < first_border ; i++)
1774     { // TODO use RPS_sampler_get_n_rand_peers
1775       /* Update gossip list with peers received through PUSHes */
1776       r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
1777                                        push_list_size);
1778       gossip_list[i] = push_list[r_index];
1779       // TODO change the peer_flags accordingly
1780     }
1781
1782     for (i = first_border ; i < second_border ; i++)
1783     {
1784       /* Update gossip list with peers received through PULLs */
1785       r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
1786                                        pull_list_size);
1787       gossip_list[i] = pull_list[r_index];
1788       // TODO change the peer_flags accordingly
1789     }
1790
1791     for (i = second_border ; i < sampler_size_est_need ; i++)
1792     {
1793       /* Update gossip list with peers from history */
1794       RPS_sampler_get_n_rand_peers (prot_sampler, hist_update, NULL, 1, GNUNET_NO);
1795       num_hist_update_tasks++;
1796       // TODO change the peer_flags accordingly
1797     }
1798
1799     for (i = 0 ; i < gossip_list_size ; i++)
1800       rem_from_list (&peers_to_clean, &peers_to_clean_size, &gossip_list[i]);
1801
1802     for (i = 0 ; i < peers_to_clean_size ; i++)
1803       peer_clean (&peers_to_clean[i]);
1804
1805     GNUNET_free (peers_to_clean);
1806   }
1807   else
1808   {
1809     LOG (GNUNET_ERROR_TYPE_DEBUG, "No update of the gossip list.\n");
1810   }
1811   // TODO independent of that also get some peers from CADET_get_peers()?
1812
1813
1814   /* Update samplers */
1815   for ( i = 0 ; i < push_list_size ; i++ )
1816   {
1817     LOG (GNUNET_ERROR_TYPE_DEBUG,
1818          "Updating with peer %s from push list\n",
1819          GNUNET_i2s (&push_list[i]));
1820     RPS_sampler_update (prot_sampler,   &push_list[i]);
1821     RPS_sampler_update (client_sampler, &push_list[i]);
1822     // TODO set in_flag?
1823   }
1824
1825   for ( i = 0 ; i < pull_list_size ; i++ )
1826   {
1827     LOG (GNUNET_ERROR_TYPE_DEBUG,
1828          "Updating with peer %s from pull list\n",
1829          GNUNET_i2s (&pull_list[i]));
1830     RPS_sampler_update (prot_sampler,   &pull_list[i]);
1831     RPS_sampler_update (client_sampler, &pull_list[i]);
1832     // TODO set in_flag?
1833   }
1834
1835
1836   /* Empty push/pull lists */
1837   GNUNET_array_grow (push_list, push_list_size, 0);
1838   GNUNET_array_grow (pull_list, pull_list_size, 0);
1839
1840   struct GNUNET_TIME_Relative time_next_round;
1841
1842   time_next_round = compute_rand_delay (round_interval, 2);
1843
1844   /* Schedule next round */
1845   //do_round_task = GNUNET_SCHEDULER_add_delayed (round_interval, &do_round, NULL);
1846   do_round_task = GNUNET_SCHEDULER_add_delayed (time_next_round, &do_round, NULL);
1847   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
1848 }
1849
1850
1851 static void
1852 rps_start (struct GNUNET_SERVER_Handle *server);
1853
1854
1855 /**
1856  * This is called from GNUNET_CADET_get_peers().
1857  *
1858  * It is called on every peer(ID) that cadet somehow has contact with.
1859  * We use those to initialise the sampler.
1860  */
1861 void
1862 init_peer_cb (void *cls,
1863               const struct GNUNET_PeerIdentity *peer,
1864               int tunnel, // "Do we have a tunnel towards this peer?"
1865               unsigned int n_paths, // "Number of known paths towards this peer"
1866               unsigned int best_path) // "How long is the best path?
1867                                       // (0 = unknown, 1 = ourselves, 2 = neighbor)"
1868 {
1869   struct PeerOutstandingOp out_op;
1870   struct PeerContext *peer_ctx;
1871
1872   if (NULL != peer
1873       && 0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, peer))
1874   {
1875     LOG (GNUNET_ERROR_TYPE_DEBUG,
1876         "Got peer %s (at %p) from CADET (gossip_list_size: %u)\n",
1877         GNUNET_i2s (peer), peer, gossip_list_size);
1878
1879     // maybe create a function for that
1880     peer_ctx = get_peer_ctx (peer_map, peer);
1881     if (GNUNET_YES != get_peer_flag (peer_ctx, VALID))
1882     {
1883       if (GNUNET_NO == insert_in_sampler_scheduled (peer_ctx))
1884       {
1885         out_op.op = insert_in_sampler;
1886         out_op.op_cls = NULL;
1887         GNUNET_array_append (peer_ctx->outstanding_ops,
1888                              peer_ctx->num_outstanding_ops,
1889                              out_op);
1890       }
1891
1892       if (GNUNET_NO == insert_in_gossip_list_scheduled (peer_ctx))
1893       {
1894         out_op.op = insert_in_gossip_list;
1895         out_op.op_cls = NULL;
1896         GNUNET_array_append (peer_ctx->outstanding_ops,
1897                              peer_ctx->num_outstanding_ops,
1898                              out_op);
1899       }
1900
1901       /* Trigger livelyness test on peer */
1902       check_peer_live (peer_ctx);
1903     }
1904
1905     // send push/pull to each of those peers?
1906   }
1907 }
1908
1909
1910 /**
1911  * Clean the send channel of a peer
1912  */
1913 void
1914 peer_clean (const struct GNUNET_PeerIdentity *peer)
1915 {
1916   struct PeerContext *peer_ctx;
1917   struct GNUNET_CADET_Channel *channel;
1918
1919   if (GNUNET_YES != in_arr (gossip_list, gossip_list_size, peer)
1920       && GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
1921   {
1922     peer_ctx = get_peer_ctx (peer_map, peer);
1923     if (NULL != peer_ctx->send_channel)
1924     {
1925       channel = peer_ctx->send_channel;
1926       peer_ctx->send_channel = NULL;
1927       GNUNET_CADET_channel_destroy (channel);
1928     }
1929   }
1930 }
1931
1932
1933 /**
1934  * Callback used to remove peers from the multipeermap.
1935  */
1936   int
1937 peer_remove_cb (void *cls, const struct GNUNET_PeerIdentity *key, void *value)
1938 {
1939   struct PeerContext *peer_ctx;
1940   const struct GNUNET_CADET_Channel *channel =
1941     (const struct GNUNET_CADET_Channel *) cls;
1942   struct GNUNET_CADET_Channel *recv;
1943   struct GNUNET_CADET_Channel *send;
1944
1945   if (GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, value))
1946   {
1947     peer_ctx = (struct PeerContext *) value;
1948
1949     if (0 != peer_ctx->num_outstanding_ops)
1950       GNUNET_array_grow (peer_ctx->outstanding_ops,
1951                          peer_ctx->num_outstanding_ops,
1952                          0);
1953
1954     if (NULL != peer_ctx->mq)
1955     {
1956       GNUNET_MQ_destroy (peer_ctx->mq);
1957       peer_ctx->mq = NULL;
1958     }
1959
1960
1961     if (NULL != peer_ctx->is_live_task)
1962     {
1963     LOG (GNUNET_ERROR_TYPE_DEBUG,
1964          "Trying to cancle is_live_task for peer %s\n",
1965          GNUNET_i2s (key));
1966       GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->is_live_task);
1967       peer_ctx->is_live_task = NULL;
1968     }
1969
1970     send = peer_ctx->send_channel;
1971     peer_ctx->send_channel = NULL;
1972     if (NULL != send
1973         && channel != send)
1974     {
1975       GNUNET_CADET_channel_destroy (send);
1976     }
1977
1978     recv = peer_ctx->send_channel;
1979     peer_ctx->recv_channel = NULL;
1980     if (NULL != recv
1981         && channel != recv)
1982     {
1983       GNUNET_CADET_channel_destroy (recv);
1984     }
1985
1986     if (GNUNET_YES != GNUNET_CONTAINER_multipeermap_remove_all (peer_map, key))
1987       LOG (GNUNET_ERROR_TYPE_WARNING, "removing peer from peer_map failed\n");
1988     else
1989       GNUNET_free (peer_ctx);
1990   }
1991
1992   return GNUNET_YES;
1993 }
1994
1995
1996 /**
1997  * Task run during shutdown.
1998  *
1999  * @param cls unused
2000  * @param tc unused
2001  */
2002 static void
2003 shutdown_task (void *cls,
2004                      const struct GNUNET_SCHEDULER_TaskContext *tc)
2005 {
2006   LOG (GNUNET_ERROR_TYPE_DEBUG, "RPS is going down\n");
2007
2008   if (NULL != do_round_task)
2009   {
2010     GNUNET_SCHEDULER_cancel (do_round_task);
2011     do_round_task = NULL;
2012   }
2013
2014
2015   {
2016   if (GNUNET_SYSERR ==
2017         GNUNET_CONTAINER_multipeermap_iterate (peer_map, peer_remove_cb, NULL))
2018     LOG (GNUNET_ERROR_TYPE_WARNING,
2019         "Iterating over peers to disconnect from them was cancelled\n");
2020   }
2021
2022   GNUNET_NSE_disconnect (nse);
2023   GNUNET_CADET_disconnect (cadet_handle);
2024   RPS_sampler_destroy (prot_sampler);
2025   RPS_sampler_destroy (client_sampler);
2026   LOG (GNUNET_ERROR_TYPE_DEBUG,
2027        "Size of the peermap: %u\n",
2028        GNUNET_CONTAINER_multipeermap_size (peer_map));
2029   GNUNET_break (0 == GNUNET_CONTAINER_multipeermap_size (peer_map));
2030   GNUNET_CONTAINER_multipeermap_destroy (peer_map);
2031   GNUNET_array_grow (gossip_list, gossip_list_size, 0);
2032   GNUNET_array_grow (push_list, push_list_size, 0);
2033   GNUNET_array_grow (pull_list, pull_list_size, 0);
2034   #ifdef ENABLE_MALICIOUS
2035   GNUNET_array_grow (mal_peers, num_mal_peers, 0);
2036   // TODO empty attacked_peers DLL
2037   #endif /* ENABLE_MALICIOUS */
2038 }
2039
2040
2041 /**
2042  * A client disconnected.  Remove all of its data structure entries.
2043  *
2044  * @param cls closure, NULL
2045  * @param client identification of the client
2046  */
2047 static void
2048 handle_client_disconnect (void *cls,
2049                           struct GNUNET_SERVER_Client * client)
2050 {
2051 }
2052
2053
2054 /**
2055  * Handle the channel a peer opens to us.
2056  *
2057  * @param cls The closure
2058  * @param channel The channel the peer wants to establish
2059  * @param initiator The peer's peer ID
2060  * @param port The port the channel is being established over
2061  * @param options Further options
2062  */
2063   static void *
2064 handle_inbound_channel (void *cls,
2065                         struct GNUNET_CADET_Channel *channel,
2066                         const struct GNUNET_PeerIdentity *initiator,
2067                         uint32_t port,
2068                         enum GNUNET_CADET_ChannelOption options)
2069 {
2070   struct PeerContext *peer_ctx;
2071   struct GNUNET_PeerIdentity peer;
2072
2073   peer = *initiator;
2074   LOG (GNUNET_ERROR_TYPE_DEBUG,
2075       "New channel was established to us (Peer %s).\n",
2076       GNUNET_i2s (&peer));
2077
2078   GNUNET_assert (NULL != channel);
2079
2080   // we might not even store the recv_channel
2081
2082   peer_ctx = get_peer_ctx (peer_map, &peer);
2083   // FIXME what do we do if a channel is established twice?
2084   //       overwrite? Clean old channel? ...?
2085   //if (NULL != peer_ctx->recv_channel)
2086   //{
2087   //  peer_ctx->recv_channel = channel;
2088   //}
2089   peer_ctx->recv_channel = channel;
2090
2091   (void) GNUNET_CONTAINER_multipeermap_put (peer_map, &peer, peer_ctx,
2092       GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
2093
2094   peer_is_live (peer_ctx);
2095
2096   return NULL; // TODO
2097 }
2098
2099
2100 /**
2101  * This is called when a remote peer destroys a channel.
2102  *
2103  * @param cls The closure
2104  * @param channel The channel being closed
2105  * @param channel_ctx The context associated with this channel
2106  */
2107   static void
2108 cleanup_channel (void *cls,
2109                 const struct GNUNET_CADET_Channel *channel,
2110                 void *channel_ctx)
2111 {
2112   struct GNUNET_PeerIdentity *peer;
2113   struct PeerContext *peer_ctx;
2114
2115   peer = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (
2116       (struct GNUNET_CADET_Channel *) channel, GNUNET_CADET_OPTION_PEER);
2117        // Guess simply casting isn't the nicest way...
2118        // FIXME wait for cadet to change this function
2119
2120   if (GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
2121   {
2122     peer_ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
2123
2124     if (NULL == peer_ctx) /* It could have been removed by shutdown_task */
2125       return;
2126
2127     if (channel == peer_ctx->send_channel)
2128     { /* Peer probably went down */
2129       LOG (GNUNET_ERROR_TYPE_DEBUG,
2130            "Peer %s destroyed send channel - probably went down, cleaning up\n",
2131            GNUNET_i2s (peer));
2132       rem_from_list (&gossip_list, &gossip_list_size, peer);
2133       rem_from_list (&pending_pull_reply_list, &pending_pull_reply_list_size, peer);
2134
2135       peer_ctx->send_channel = NULL;
2136       /* Somwewhat {ab,re}use the iterator function */
2137       /* Cast to void is ok, because it's used as void in peer_remove_cb */
2138       (void) peer_remove_cb ((void *) channel, peer, peer_ctx);
2139     }
2140     else if (channel == peer_ctx->recv_channel)
2141     { /* Other peer doesn't want to send us messages anymore */
2142       LOG (GNUNET_ERROR_TYPE_DEBUG,
2143            "Peer %s destroyed recv channel - cleaning up channel\n",
2144            GNUNET_i2s (peer));
2145       peer_ctx->recv_channel = NULL;
2146     }
2147   }
2148 }
2149
2150
2151 /**
2152  * Actually start the service.
2153  */
2154   static void
2155 rps_start (struct GNUNET_SERVER_Handle *server)
2156 {
2157   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
2158     {&handle_client_request,     NULL, GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST,
2159       sizeof (struct GNUNET_RPS_CS_RequestMessage)},
2160     {&handle_client_seed,        NULL, GNUNET_MESSAGE_TYPE_RPS_CS_SEED, 0},
2161     #ifdef ENABLE_MALICIOUS
2162     {&handle_client_act_malicious, NULL, GNUNET_MESSAGE_TYPE_RPS_ACT_MALICIOUS , 0},
2163     #endif /* ENABLE_MALICIOUS */
2164     {NULL, NULL, 0, 0}
2165   };
2166
2167   GNUNET_SERVER_add_handlers (server, handlers);
2168   GNUNET_SERVER_disconnect_notify (server,
2169                                    &handle_client_disconnect,
2170                                    NULL);
2171   LOG (GNUNET_ERROR_TYPE_DEBUG, "Ready to receive requests from clients\n");
2172
2173
2174   do_round_task = GNUNET_SCHEDULER_add_now (&do_round, NULL);
2175   LOG (GNUNET_ERROR_TYPE_DEBUG, "Scheduled first round\n");
2176
2177   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
2178                                                         &shutdown_task,
2179                                                         NULL);
2180 }
2181
2182
2183 /**
2184  * Process statistics requests.
2185  *
2186  * @param cls closure
2187  * @param server the initialized server
2188  * @param c configuration to use
2189  */
2190   static void
2191 run (void *cls,
2192      struct GNUNET_SERVER_Handle *server,
2193      const struct GNUNET_CONFIGURATION_Handle *c)
2194 {
2195   // TODO check what this does -- copied from gnunet-boss
2196   // - seems to work as expected
2197   GNUNET_log_setup ("rps", GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_DEBUG), NULL);
2198   cfg = c;
2199
2200
2201   /* Get own ID */
2202   GNUNET_CRYPTO_get_peer_identity (cfg, &own_identity); // TODO check return value
2203   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2204               "STARTING SERVICE (rps) for peer [%s]\n",
2205               GNUNET_i2s (&own_identity));
2206   #ifdef ENABLE_MALICIOUS
2207   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2208               "Malicious execution compiled in.\n");
2209   #endif /* ENABLE_MALICIOUS */
2210
2211
2212
2213   /* Get time interval from the configuration */
2214   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_time (cfg, "RPS",
2215                                                         "ROUNDINTERVAL",
2216                                                         &round_interval))
2217   {
2218     LOG (GNUNET_ERROR_TYPE_DEBUG, "Failed to read ROUNDINTERVAL from config\n");
2219     GNUNET_SCHEDULER_shutdown ();
2220     return;
2221   }
2222
2223   /* Get initial size of sampler/gossip list from the configuration */
2224   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (cfg, "RPS",
2225                                                          "INITSIZE",
2226                                                          (long long unsigned int *) &sampler_size_est_need))
2227   {
2228     LOG (GNUNET_ERROR_TYPE_DEBUG, "Failed to read INITSIZE from config\n");
2229     GNUNET_SCHEDULER_shutdown ();
2230     return;
2231   }
2232   LOG (GNUNET_ERROR_TYPE_DEBUG, "INITSIZE is %" PRIu64 "\n", sampler_size_est_need);
2233
2234
2235   gossip_list = NULL;
2236
2237
2238   /* connect to NSE */
2239   nse = GNUNET_NSE_connect (cfg, nse_callback, NULL);
2240   // TODO check whether that was successful
2241   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connected to NSE\n");
2242
2243
2244   alpha = 0.45;
2245   beta  = 0.45;
2246
2247   peer_map = GNUNET_CONTAINER_multipeermap_create (sampler_size_est_need, GNUNET_NO);
2248
2249
2250   /* Initialise cadet */
2251   static const struct GNUNET_CADET_MessageHandler cadet_handlers[] = {
2252     {&handle_peer_push        , GNUNET_MESSAGE_TYPE_RPS_PP_PUSH        ,
2253       sizeof (struct GNUNET_MessageHeader)},
2254     {&handle_peer_pull_request, GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST,
2255       sizeof (struct GNUNET_MessageHeader)},
2256     {&handle_peer_pull_reply  , GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY  , 0},
2257     {NULL, 0, 0}
2258   };
2259
2260   const uint32_t ports[] = {GNUNET_RPS_CADET_PORT, 0}; // _PORT specified in src/rps/rps.h
2261   cadet_handle = GNUNET_CADET_connect (cfg,
2262                                        cls,
2263                                        &handle_inbound_channel,
2264                                        &cleanup_channel,
2265                                        cadet_handlers,
2266                                        ports);
2267   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connected to CADET\n");
2268
2269
2270   /* Initialise sampler */
2271   struct GNUNET_TIME_Relative half_round_interval;
2272   struct GNUNET_TIME_Relative  max_round_interval;
2273
2274   half_round_interval = GNUNET_TIME_relative_multiply (round_interval, .5);
2275   max_round_interval = GNUNET_TIME_relative_add (round_interval, half_round_interval);
2276
2277   prot_sampler =   RPS_sampler_init (sampler_size_est_need, max_round_interval);
2278   client_sampler = RPS_sampler_init (sampler_size_est_need, max_round_interval);
2279
2280   /* Initialise push and pull maps */
2281   push_list = NULL;
2282   push_list_size = 0;
2283   pull_list = NULL;
2284   pull_list_size = 0;
2285   pending_pull_reply_list = NULL;
2286   pending_pull_reply_list_size = 0;
2287
2288
2289   num_hist_update_tasks = 0;
2290
2291
2292   LOG (GNUNET_ERROR_TYPE_DEBUG, "Requesting peers from CADET\n");
2293   GNUNET_CADET_get_peers (cadet_handle, &init_peer_cb, NULL);
2294   // TODO send push/pull to each of those peers?
2295
2296
2297   rps_start (server);
2298 }
2299
2300
2301 /**
2302  * The main function for the rps service.
2303  *
2304  * @param argc number of arguments from the command line
2305  * @param argv command line arguments
2306  * @return 0 ok, 1 on error
2307  */
2308   int
2309 main (int argc, char *const *argv)
2310 {
2311   return (GNUNET_OK ==
2312           GNUNET_SERVICE_run (argc,
2313                               argv,
2314                               "rps",
2315                               GNUNET_SERVICE_OPTION_NONE,
2316                               &run, NULL)) ? 0 : 1;
2317 }
2318
2319 /* end of gnunet-service-rps.c */