-fix push receive
[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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, 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_peerinfo_service.h"
30 #include "gnunet_nse_service.h"
31 #include "rps.h"
32 #include "rps-test_util.h"
33
34 #include "gnunet-service-rps_sampler.h"
35
36 #include <math.h>
37 #include <inttypes.h>
38
39 #define LOG(kind, ...) GNUNET_log(kind, __VA_ARGS__)
40
41 // TODO modify @brief in every file
42
43 // TODO check for overflows
44
45 // TODO align message structs
46
47 // TODO connect to friends
48
49 // TODO store peers somewhere persistent
50
51 // TODO blacklist? (-> mal peer detection on top of brahms)
52
53 // TODO API request_cancel
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 ClientContext
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    * We set this bit when we are going to destroy the channel to this peer.
105    * When cleanup_channel is called, we know that we wanted to destroy it.
106    * Otherwise the channel to the other peer was destroyed.
107    */
108   TO_DESTROY           = 0x20,
109 };
110
111
112 /**
113  * Functions of this type can be used to be stored at a peer for later execution.
114  */
115 typedef void (* PeerOp) (void *cls, const struct GNUNET_PeerIdentity *peer);
116
117 /**
118  * Outstanding operation on peer consisting of callback and closure
119  */
120 struct PeerOutstandingOp
121 {
122   /**
123    * Callback
124    */
125   PeerOp op;
126
127   /**
128    * Closure
129    */
130   void *op_cls;
131 };
132
133
134 /**
135  * Struct used to keep track of other peer's status
136  *
137  * This is stored in a multipeermap.
138  */
139 struct PeerContext
140 {
141   /**
142    * Message queue open to client
143    */
144   struct GNUNET_MQ_Handle *mq;
145
146   /**
147    * Channel open to client.
148    */
149   struct GNUNET_CADET_Channel *send_channel;
150
151   /**
152    * Channel open from client.
153    */
154   struct GNUNET_CADET_Channel *recv_channel; // unneeded?
155
156   /**
157    * Array of outstanding operations on this peer.
158    */
159   struct PeerOutstandingOp *outstanding_ops;
160
161   /**
162    * Handle to the callback given to cadet_ntfy_tmt_rdy()
163    *
164    * To be canceled on shutdown.
165    */
166   struct GNUNET_CADET_TransmitHandle *transmit_handle;
167
168   /**
169    * Number of outstanding operations.
170    */
171   unsigned int num_outstanding_ops;
172
173   /**
174    * Identity of the peer
175    */
176   struct GNUNET_PeerIdentity peer_id;
177   
178   /**
179    * Flags indicating status of peer
180    */
181   uint32_t peer_flags;
182
183   /**
184    * This is pobably followed by 'statistical' data (when we first saw
185    * him, how did we get his ID, how many pushes (in a timeinterval),
186    * ...)
187    */
188 };
189
190 /***********************************************************************
191  * /Housekeeping with peers
192 ***********************************************************************/
193
194
195
196
197
198 /***********************************************************************
199  * Globals
200 ***********************************************************************/
201
202 /**
203  * Sampler used for the Brahms protocol itself.
204  */
205 static struct RPS_Sampler *prot_sampler;
206
207 /**
208  * Sampler used for the clients.
209  */
210 static struct RPS_Sampler *client_sampler;
211
212 /**
213  * Set of all peers to keep track of them.
214  */
215 static struct GNUNET_CONTAINER_MultiPeerMap *peer_map;
216
217
218 /**
219  * Name to log view to
220  */
221 static char *file_name_view_log;
222
223 /**
224  * The "local view" containing peers we learned from gossip and history
225  */
226 static struct GNUNET_CONTAINER_MultiPeerMap *view;
227
228 /**
229  * An array containing the peers of the local view.
230  *
231  * This is created every time we send a pull reply if it has changed since the
232  * last pull reply we sent.
233  */
234 static struct GNUNET_PeerIdentity *view_array;
235
236
237 /**
238  * The size of sampler we need to be able to satisfy the client's need of
239  * random peers.
240  */
241 static unsigned int sampler_size_client_need;
242
243 /**
244  * The size of sampler we need to be able to satisfy the Brahms protocol's
245  * need of random peers.
246  *
247  * This is one minimum size the sampler grows to.
248  */
249 static unsigned int sampler_size_est_need;
250
251
252 /**
253  * Percentage of total peer number in the view
254  * to send random PUSHes to
255  */
256 static float alpha;
257
258 /**
259  * Percentage of total peer number in the view
260  * to send random PULLs to
261  */
262 static float beta;
263
264 /**
265  * The percentage gamma of history updates.
266  * Simply 1 - alpha - beta
267  */
268
269
270 /**
271  * Identifier for the main task that runs periodically.
272  */
273 static struct GNUNET_SCHEDULER_Task *do_round_task;
274
275 /**
276  * Time inverval the do_round task runs in.
277  */
278 static struct GNUNET_TIME_Relative round_interval;
279
280
281
282 /**
283  * List to store peers received through pushes temporary.
284  *
285  * TODO -> multipeermap
286  */
287 static struct GNUNET_PeerIdentity *push_list;
288
289 /**
290  * Size of the push_list;
291  */
292 static unsigned int push_list_size;
293 //size_t push_list_size;
294
295 /**
296  * List to store peers received through pulls temporary.
297  *
298  * TODO -> multipeermap
299  */
300 static struct GNUNET_PeerIdentity *pull_list;
301
302 /**
303  * Size of the pull_list;
304  */
305 static unsigned int pull_list_size;
306 //size_t pull_list_size;
307
308
309 /**
310  * Handler to NSE.
311  */
312 static struct GNUNET_NSE_Handle *nse;
313
314 /**
315  * Handler to CADET.
316  */
317 static struct GNUNET_CADET_Handle *cadet_handle;
318
319 /**
320  * Handler to PEERINFO.
321  */
322 static struct GNUNET_PEERINFO_Handle *peerinfo_handle;
323
324 /**
325  * Handle for cancellation of iteration over peers.
326  */
327 struct GNUNET_PEERINFO_NotifyContext *peerinfo_notify_handle;
328
329
330 /**
331  * Request counter.
332  *
333  * Only needed in the beginning to check how many of the 64 deltas
334  * we already have
335  */
336 static unsigned int req_counter;
337
338 /**
339  * Time of the last request we received.
340  *
341  * Used to compute the expected request rate.
342  */
343 static struct GNUNET_TIME_Absolute last_request;
344
345 /**
346  * Size of #request_deltas.
347  */
348 #define REQUEST_DELTAS_SIZE 64
349 static unsigned int request_deltas_size = REQUEST_DELTAS_SIZE;
350
351 /**
352  * Last 64 deltas between requests
353  */
354 static struct GNUNET_TIME_Relative request_deltas[REQUEST_DELTAS_SIZE];
355
356 /**
357  * The prediction of the rate of requests
358  */
359 static struct GNUNET_TIME_Relative  request_rate;
360
361
362 /**
363  * Number of history update tasks.
364  */
365 uint32_t num_hist_update_tasks;
366
367
368 /**
369  * Closure used to pass the client and the id to the callback
370  * that replies to a client's request
371  */
372 struct ReplyCls
373 {
374   /**
375    * The identifier of the request
376    */
377   uint32_t id;
378
379   /**
380    * The client handle to send the reply to
381    */
382   struct GNUNET_SERVER_Client *client;
383 };
384
385
386 #ifdef ENABLE_MALICIOUS
387 /**
388  * Type of malicious peer
389  *
390  * 0 Don't act malicious at all - Default
391  * 1 Try to maximise representation
392  * 2 Try to partition the network
393  * 3 Combined attack
394  */
395 uint32_t mal_type = 0;
396
397 /**
398  * Other malicious peers
399  */
400 static struct GNUNET_PeerIdentity *mal_peers = NULL;
401
402 /**
403  * Hashmap of malicious peers used as set.
404  * Used to more efficiently check whether we know that peer.
405  */
406 static struct GNUNET_CONTAINER_MultiPeerMap *mal_peer_set = NULL;
407
408 /**
409  * Number of other malicious peers
410  */
411 static uint32_t num_mal_peers;
412
413
414 /**
415  * If type is 2 This struct is used to store the attacked peers in a DLL
416  */
417 struct AttackedPeer
418 {
419   /**
420    * DLL
421    */
422   struct AttackedPeer *next;
423   struct AttackedPeer *prev;
424
425   /**
426    * PeerID
427    */
428   struct GNUNET_PeerIdentity peer_id;
429 };
430
431 /**
432  * If type is 2 this is the DLL of attacked peers
433  */
434 static struct AttackedPeer *att_peers_head = NULL;
435 static struct AttackedPeer *att_peers_tail = NULL;
436
437 /**
438  * This index is used to point to an attacked peer to
439  * implement the round-robin-ish way to select attacked peers.
440  */
441 static struct AttackedPeer *att_peer_index = NULL;
442
443 /**
444  * Hashmap of attacked peers used as set.
445  * Used to more efficiently check whether we know that peer.
446  */
447 static struct GNUNET_CONTAINER_MultiPeerMap *att_peer_set = NULL;
448
449 /**
450  * Number of attacked peers
451  */
452 static uint32_t num_attacked_peers = 0;
453
454
455 /**
456  * If type is 1 this is the attacked peer
457  */
458 static struct GNUNET_PeerIdentity attacked_peer;
459
460 /**
461  * The limit of PUSHes we can send in one round.
462  * This is an assumption of the Brahms protocol and either implemented
463  * via proof of work
464  * or
465  * assumend to be the bandwidth limitation.
466  */
467 static uint32_t push_limit = 10000;
468 #endif /* ENABLE_MALICIOUS */
469
470
471 /***********************************************************************
472  * /Globals
473 ***********************************************************************/
474
475
476
477
478
479
480 /***********************************************************************
481  * Util functions
482 ***********************************************************************/
483
484 /**
485  * Set a peer flag of given peer context.
486  */
487 #define set_peer_flag(peer_ctx, mask) (peer_ctx->peer_flags |= mask)
488
489 /**
490  * Get peer flag of given peer context.
491  */
492 #define get_peer_flag(peer_ctx, mask) (peer_ctx->peer_flags & mask ? GNUNET_YES : GNUNET_NO)
493
494 /**
495  * Unset flag of given peer context.
496  */
497 #define unset_peer_flag(peer_ctx, mask) (peer_ctx->peer_flags &= (~mask))
498
499 /**
500  * Clean the send channel of a peer
501  */
502 void
503 peer_clean (const struct GNUNET_PeerIdentity *peer);
504
505
506 /**
507  * Check if peer is already in peer array.
508  */
509   int
510 in_arr (const struct GNUNET_PeerIdentity *array,
511         unsigned int arr_size,
512         const struct GNUNET_PeerIdentity *peer)
513 {
514   GNUNET_assert (NULL != peer);
515
516   if (0 == arr_size)
517     return GNUNET_NO;
518
519   GNUNET_assert (NULL != array);
520
521   unsigned int i;
522
523   for (i = 0; i < arr_size ; i++)
524     if (0 == GNUNET_CRYPTO_cmp_peer_identity (&array[i], peer))
525       return GNUNET_YES;
526   return GNUNET_NO;
527 }
528
529
530 /**
531  * Print peerlist to log.
532  */
533 void
534 print_peer_list (struct GNUNET_PeerIdentity *list, unsigned int len)
535 {
536   unsigned int i;
537
538   LOG (GNUNET_ERROR_TYPE_DEBUG,
539        "Printing peer list of length %u at %p:\n",
540        len,
541        list);
542   for (i = 0 ; i < len ; i++)
543   {
544     LOG (GNUNET_ERROR_TYPE_DEBUG,
545          "%u. peer: %s\n",
546          i, GNUNET_i2s (&list[i]));
547   }
548 }
549
550
551 /**
552  * Remove peer from list.
553  */
554   void
555 rem_from_list (struct GNUNET_PeerIdentity **peer_list,
556                unsigned int *list_size,
557                const struct GNUNET_PeerIdentity *peer)
558 {
559   unsigned int i;
560   struct GNUNET_PeerIdentity *tmp;
561
562   tmp = *peer_list;
563
564   LOG (GNUNET_ERROR_TYPE_DEBUG,
565        "Removing peer %s from list at %p\n",
566        GNUNET_i2s (peer),
567        tmp);
568
569   for ( i = 0 ; i < *list_size ; i++ )
570   {
571     if (0 == GNUNET_CRYPTO_cmp_peer_identity (&tmp[i], peer))
572     {
573       if (i < *list_size -1)
574       { /* Not at the last entry -- shift peers left */
575         memcpy (&tmp[i], &tmp[i +1],
576                 ((*list_size) - i -1) * sizeof (struct GNUNET_PeerIdentity));
577       }
578       /* Remove last entry (should be now useless PeerID) */
579       GNUNET_array_grow (tmp, *list_size, (*list_size) -1);
580     }
581   }
582   *peer_list = tmp;
583 }
584
585 /**
586  * Get random peer from the given list but don't return one from the @a ignore_list.
587  */
588   struct GNUNET_PeerIdentity *
589 get_rand_peer_ignore_list (const struct GNUNET_PeerIdentity *peer_list,
590                            uint32_t list_size,
591                            const struct GNUNET_PeerIdentity *ignore_list,
592                            uint32_t ignore_size)
593 {
594   uint32_t r_index;
595   uint32_t tmp_size;
596   struct GNUNET_PeerIdentity *tmp_peer_list;
597   struct GNUNET_PeerIdentity *peer;
598
599   GNUNET_assert (NULL != peer_list);
600   if (0 == list_size)
601     return NULL;
602
603   tmp_size = 0;
604   tmp_peer_list = NULL;
605   GNUNET_array_grow (tmp_peer_list, tmp_size, list_size);
606   memcpy (tmp_peer_list,
607           peer_list,
608           list_size * sizeof (struct GNUNET_PeerIdentity));
609   peer = GNUNET_new (struct GNUNET_PeerIdentity);
610
611   /**;
612    * Choose the r_index of the peer we want to return
613    * at random from the interval of the view
614    */
615   r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
616                                       tmp_size);
617   *peer = tmp_peer_list[r_index];
618
619   while (in_arr (ignore_list, ignore_size, peer))
620   {
621     rem_from_list (&tmp_peer_list, &tmp_size, peer);
622
623     print_peer_list (tmp_peer_list, tmp_size);
624
625     if (0 == tmp_size)
626     {
627       GNUNET_free (peer);
628       return NULL;
629     }
630
631     /**;
632      * Choose the r_index of the peer we want to return
633      * at random from the interval of the view
634      */
635     r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
636                                         tmp_size);
637     *peer = tmp_peer_list[r_index];
638   }
639
640
641   GNUNET_array_grow (tmp_peer_list, tmp_size, 0);
642
643   return peer;
644 }
645
646
647 /**
648  * Get the context of a peer. If not existing, create.
649  */
650   struct PeerContext *
651 get_peer_ctx (const struct GNUNET_PeerIdentity *peer)
652 {
653   struct PeerContext *ctx;
654   int ret;
655
656   ret = GNUNET_CONTAINER_multipeermap_contains (peer_map, peer);
657   GNUNET_assert (GNUNET_YES == ret);
658   ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
659   GNUNET_assert (NULL != ctx);
660   return ctx;
661 }
662
663 /**
664  * Create a new peer context and insert it into the peer map
665  */
666 struct PeerContext *
667 create_peer_ctx (const struct GNUNET_PeerIdentity *peer)
668 {
669   struct PeerContext *ctx;
670   int ret;
671
672   ctx = GNUNET_new (struct PeerContext);
673   ctx->peer_id = *peer;
674   ret = GNUNET_CONTAINER_multipeermap_put (peer_map, peer, ctx,
675                                            GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
676   GNUNET_assert (GNUNET_OK == ret);
677   return ctx;
678 }
679
680
681 /**
682  * Put random peer from sampler into the view as history update.
683  */
684   void
685 hist_update (void *cls, struct GNUNET_PeerIdentity *ids, uint32_t num_peers)
686 {
687   unsigned int i;
688
689   for (i = 0; i < GNUNET_MIN (
690        sampler_size_est_need - GNUNET_CONTAINER_multipeermap_size (view),
691        num_peers); i++)
692   {
693     /* Make sure there is a context associated with the id in the peermap */
694     if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (peer_map, &ids[i]))
695       (void) create_peer_ctx (&ids[i]);
696
697     if (GNUNET_OK != GNUNET_CONTAINER_multipeermap_put (view,
698           &ids[i],
699           NULL,
700           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
701         {
702           LOG (GNUNET_ERROR_TYPE_WARNING,
703                "Failed to put peer in peermap. (hist_update)\n");
704         }
705
706     /* Might want to check that we really updated the view */
707     if (NULL != view_array)
708     {
709       GNUNET_free (view_array);
710       view_array = NULL;
711     }
712
713     to_file (file_name_view_log,
714              "+%s\t(hist)",
715              GNUNET_i2s_full (ids));
716   }
717
718   if (0 < num_hist_update_tasks)
719     num_hist_update_tasks--;
720 }
721
722
723 /**
724  * Set the peer flag to living and call the outstanding operations on this peer.
725  */
726 static size_t
727 peer_is_live (struct PeerContext *peer_ctx)
728 {
729   struct GNUNET_PeerIdentity *peer;
730
731   /* Cancle transmit_handle if still scheduled */
732   if (NULL != peer_ctx->transmit_handle)
733   {
734     GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->transmit_handle);
735     peer_ctx->transmit_handle = NULL;
736   }
737
738   peer = &peer_ctx->peer_id;
739   set_peer_flag (peer_ctx, VALID);
740
741   LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer %s is live\n", GNUNET_i2s (peer));
742
743   if (0 < peer_ctx->num_outstanding_ops)
744   { /* Call outstanding operations */
745     unsigned int i;
746
747     for (i = 0 ; i < peer_ctx->num_outstanding_ops ; i++)
748       peer_ctx->outstanding_ops[i].op (peer_ctx->outstanding_ops[i].op_cls, peer);
749     GNUNET_array_grow (peer_ctx->outstanding_ops, peer_ctx->num_outstanding_ops, 0);
750   }
751
752   return 0;
753 }
754
755
756 /**
757  * Callback that is called when a channel was effectively established.
758  * This is given to ntfy_tmt_rdy and called when the channel was
759  * successfully established.
760  */
761 static size_t
762 cadet_ntfy_tmt_rdy_cb (void *cls, size_t size, void *buf)
763 {
764   struct PeerContext *peer_ctx = (struct PeerContext *) cls;
765
766   peer_ctx->transmit_handle = NULL;
767   LOG (GNUNET_ERROR_TYPE_DEBUG,
768        "Set ->transmit_handle = NULL for peer %s\n",
769        GNUNET_i2s (&peer_ctx->peer_id));
770
771   if (NULL != buf
772       && 0 != size)
773   {
774     peer_is_live (peer_ctx);
775   }
776   else
777   {
778     LOG (GNUNET_ERROR_TYPE_WARNING,
779          "Problems establishing a connection to peer %s in order to check liveliness\n",
780          GNUNET_i2s (&peer_ctx->peer_id));
781     // TODO reschedule? cleanup?
782   }
783
784   //if (NULL != peer_ctx->transmit_handle)
785   //{
786   //  LOG (GNUNET_ERROR_TYPE_DEBUG,
787   //       "Trying to cancle transmit_handle for peer %s\n",
788   //       GNUNET_i2s (&peer_ctx->peer_id));
789   //  GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->transmit_handle);
790   //  peer_ctx->transmit_handle = NULL;
791   //}
792
793   return 0;
794 }
795
796
797 /**
798  * Get the channel of a peer. If not existing, create.
799  */
800   struct GNUNET_CADET_Channel *
801 get_channel (const struct GNUNET_PeerIdentity *peer)
802 {
803   struct PeerContext *peer_ctx;
804
805   peer_ctx = get_peer_ctx (peer);
806   if (NULL == peer_ctx->send_channel)
807   {
808     LOG (GNUNET_ERROR_TYPE_DEBUG,
809          "Trying to establish channel to peer %s\n",
810          GNUNET_i2s (peer));
811
812     peer_ctx->send_channel =
813       GNUNET_CADET_channel_create (cadet_handle,
814                                    NULL,
815                                    peer,
816                                    GNUNET_RPS_CADET_PORT,
817                                    GNUNET_CADET_OPTION_RELIABLE);
818
819   }
820   return peer_ctx->send_channel;
821 }
822
823
824 /**
825  * Get the message queue of a specific peer.
826  *
827  * If we already have a message queue open to this client,
828  * simply return it, otherways create one.
829  */
830   struct GNUNET_MQ_Handle *
831 get_mq (const struct GNUNET_PeerIdentity *peer_id)
832 {
833   struct PeerContext *peer_ctx;
834
835   peer_ctx = get_peer_ctx (peer_id);
836
837   GNUNET_assert (NULL == peer_ctx->transmit_handle);
838
839   if (NULL == peer_ctx->mq)
840   {
841     (void) get_channel (peer_id);
842     peer_ctx->mq = GNUNET_CADET_mq_create (peer_ctx->send_channel);
843     //do I have to explicitly put it in the peer_map?
844     (void) GNUNET_CONTAINER_multipeermap_put (peer_map, peer_id, peer_ctx,
845                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
846   }
847   return peer_ctx->mq;
848 }
849
850
851 /**
852  * Issue check whether peer is live
853  *
854  * @param peer_ctx the context of the peer
855  */
856 void
857 check_peer_live (struct PeerContext *peer_ctx)
858 {
859   LOG (GNUNET_ERROR_TYPE_DEBUG,
860        "Get informed about peer %s getting live\n",
861        GNUNET_i2s (&peer_ctx->peer_id));
862
863   if (NULL == peer_ctx->transmit_handle &&
864       NULL == peer_ctx->send_channel)
865   {
866     (void) get_channel (&peer_ctx->peer_id);
867     peer_ctx->transmit_handle =
868         GNUNET_CADET_notify_transmit_ready (peer_ctx->send_channel,
869                                             GNUNET_NO,
870                                             GNUNET_TIME_UNIT_FOREVER_REL,
871                                             sizeof (struct GNUNET_MessageHeader),
872                                             cadet_ntfy_tmt_rdy_cb,
873                                             peer_ctx);
874   }
875   else if (NULL != peer_ctx->transmit_handle)
876     LOG (GNUNET_ERROR_TYPE_DEBUG,
877          "Already waiting for notification\n");
878   else if (NULL != peer_ctx->send_channel)
879     LOG (GNUNET_ERROR_TYPE_DEBUG,
880          "Already have established channel to peer\n");
881 }
882
883
884 /**
885  * Sum all time relatives of an array.
886   */
887   struct GNUNET_TIME_Relative
888 T_relative_sum (const struct GNUNET_TIME_Relative *rel_array, uint32_t arr_size)
889 {
890   struct GNUNET_TIME_Relative sum;
891   uint32_t i;
892
893   sum = GNUNET_TIME_UNIT_ZERO;
894   for ( i = 0 ; i < arr_size ; i++ )
895   {
896     sum = GNUNET_TIME_relative_add (sum, rel_array[i]);
897   }
898   return sum;
899 }
900
901
902 /**
903  * Compute the average of given time relatives.
904  */
905   struct GNUNET_TIME_Relative
906 T_relative_avg (const struct GNUNET_TIME_Relative *rel_array, uint32_t arr_size)
907 {
908   return GNUNET_TIME_relative_divide (T_relative_sum (rel_array, arr_size), arr_size);
909 }
910
911
912 /**
913  * Insert PeerID in #pull_list
914  *
915  * Called once we know a peer is live.
916  */
917   void
918 insert_in_pull_list (void *cls, const struct GNUNET_PeerIdentity *peer)
919 {
920   if (GNUNET_NO == in_arr (pull_list, pull_list_size, peer))
921     GNUNET_array_append (pull_list, pull_list_size, *peer);
922 }
923
924 /**
925  * Check whether #insert_in_pull_list was already scheduled
926  */
927   int
928 insert_in_pull_list_scheduled (const struct PeerContext *peer_ctx)
929 {
930   unsigned int i;
931
932   for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
933     if (insert_in_pull_list == peer_ctx->outstanding_ops[i].op)
934       return GNUNET_YES;
935   return GNUNET_NO;
936 }
937
938
939 /**
940  * Insert PeerID in #view
941  *
942  * Called once we know a peer is live.
943  */
944   void
945 insert_in_view (void *cls, const struct GNUNET_PeerIdentity *peer)
946 {
947   if (GNUNET_YES != GNUNET_CONTAINER_multipeermap_put (view,
948         peer,
949         NULL,
950         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
951   {
952     LOG (GNUNET_ERROR_TYPE_WARNING,
953         "Failed to put peer into view. (insert_in_view)\n");
954   }
955
956   /* Might want to check whether we really modified the view */
957   if (NULL != view_array)
958   {
959     GNUNET_free (view_array);
960     view_array = NULL;
961   }
962
963   (void) get_channel (peer);
964 }
965
966 /**
967  * Check whether #insert_in_view was already scheduled
968  */
969   int
970 insert_in_view_scheduled (const struct PeerContext *peer_ctx)
971 {
972   unsigned int i;
973
974   for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
975     if (insert_in_view == peer_ctx->outstanding_ops[i].op)
976       return GNUNET_YES;
977   return GNUNET_NO;
978 }
979
980
981 /**
982  * Update sampler with given PeerID.
983  */
984   void
985 insert_in_sampler (void *cls, const struct GNUNET_PeerIdentity *peer)
986 {
987   LOG (GNUNET_ERROR_TYPE_DEBUG,
988        "Updating samplers with peer %s from insert_in_sampler()\n",
989        GNUNET_i2s (peer));
990   RPS_sampler_update (prot_sampler,   peer);
991   RPS_sampler_update (client_sampler, peer);
992 }
993
994
995 /**
996  * Check whether #insert_in_sampler was already scheduled
997  */
998 static int
999 insert_in_sampler_scheduled (const struct PeerContext *peer_ctx)
1000 {
1001   unsigned int i;
1002
1003   for (i = 0 ; i < peer_ctx->num_outstanding_ops ; i++)
1004     if (insert_in_sampler== peer_ctx->outstanding_ops[i].op)
1005       return GNUNET_YES;
1006   return GNUNET_NO;
1007 }
1008
1009
1010 /**
1011  * Wrapper around #RPS_sampler_resize()
1012  *
1013  * If we do not have enough sampler elements, double current sampler size
1014  * If we have more than enough sampler elements, halv current sampler size
1015  */
1016 static void
1017 resize_wrapper (struct RPS_Sampler *sampler, uint32_t new_size)
1018 {
1019   unsigned int sampler_size;
1020
1021   // TODO statistics
1022   // TODO respect the min, max
1023   sampler_size = RPS_sampler_get_size (sampler);
1024   if (sampler_size > new_size * 4)
1025   { /* Shrinking */
1026     RPS_sampler_resize (sampler, sampler_size / 2);
1027   }
1028   else if (sampler_size < new_size)
1029   { /* Growing */
1030     RPS_sampler_resize (sampler, sampler_size * 2);
1031   }
1032   LOG (GNUNET_ERROR_TYPE_DEBUG, "sampler_size is now %u\n", sampler_size);
1033 }
1034
1035
1036 /**
1037  * Wrapper around #RPS_sampler_resize() resizing the client sampler
1038  */
1039 static void
1040 client_resize_wrapper ()
1041 {
1042   uint32_t bigger_size;
1043
1044   // TODO statistics
1045
1046   bigger_size = GNUNET_MAX (sampler_size_est_need, sampler_size_client_need);
1047
1048   // TODO respect the min, max
1049   resize_wrapper (client_sampler, bigger_size);
1050   LOG (GNUNET_ERROR_TYPE_DEBUG, "sampler_size_client is now %" PRIu32 "\n",
1051       bigger_size);
1052 }
1053
1054
1055 /**
1056  * Estimate request rate
1057  *
1058  * Called every time we receive a request from the client.
1059  */
1060   void
1061 est_request_rate()
1062 {
1063   struct GNUNET_TIME_Relative max_round_duration;
1064
1065   if (request_deltas_size > req_counter)
1066     req_counter++;
1067   if ( 1 < req_counter)
1068   {
1069     /* Shift last request deltas to the right */
1070     memcpy (&request_deltas[1],
1071         request_deltas,
1072         (req_counter - 1) * sizeof (struct GNUNET_TIME_Relative));
1073
1074     /* Add current delta to beginning */
1075     request_deltas[0] =
1076         GNUNET_TIME_absolute_get_difference (last_request,
1077                                              GNUNET_TIME_absolute_get ());
1078     request_rate = T_relative_avg (request_deltas, req_counter);
1079
1080     /* Compute the duration a round will maximally take */
1081     max_round_duration =
1082         GNUNET_TIME_relative_add (round_interval,
1083                                   GNUNET_TIME_relative_divide (round_interval, 2));
1084
1085     /* Set the estimated size the sampler has to have to
1086      * satisfy the current client request rate */
1087     sampler_size_client_need =
1088         max_round_duration.rel_value_us / request_rate.rel_value_us;
1089
1090     /* Resize the sampler */
1091     client_resize_wrapper ();
1092   }
1093   last_request = GNUNET_TIME_absolute_get ();
1094 }
1095
1096
1097 /**
1098  * Add all peers in @a peer_array to @a peer_map used as set.
1099  *
1100  * @param peer_array array containing the peers
1101  * @param num_peers number of peers in @peer_array
1102  * @param peer_map the peermap to use as set
1103  */
1104 static void
1105 add_peer_array_to_set (const struct GNUNET_PeerIdentity *peer_array,
1106                        unsigned int num_peers,
1107                        struct GNUNET_CONTAINER_MultiPeerMap *peer_map)
1108 {
1109   unsigned int i;
1110   if (NULL == peer_map)
1111   {
1112     LOG (GNUNET_ERROR_TYPE_WARNING,
1113          "Trying to add peers to an empty peermap.\n");
1114     return;
1115   }
1116
1117   for (i = 0; i < num_peers; i++)
1118   {
1119     GNUNET_CONTAINER_multipeermap_put (peer_map,
1120                                        &peer_array[i],
1121                                        NULL,
1122                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1123   }
1124 }
1125
1126
1127 /**
1128  * Send a PULL REPLY to @a peer_id
1129  *
1130  * @param peer_id the peer to send the reply to.
1131  * @param peer_ids the peers to send to @a peer_id
1132  * @param num_peer_ids the number of peers to send to @a peer_id
1133  */
1134 static void
1135 send_pull_reply (const struct GNUNET_PeerIdentity *peer_id,
1136                  const struct GNUNET_PeerIdentity *peer_ids,
1137                  unsigned int num_peer_ids)
1138 {
1139   uint32_t send_size;
1140   struct GNUNET_MQ_Handle *mq;
1141   struct GNUNET_MQ_Envelope *ev;
1142   struct GNUNET_RPS_P2P_PullReplyMessage *out_msg;
1143
1144   /* Compute actual size */
1145   send_size = sizeof (struct GNUNET_RPS_P2P_PullReplyMessage) +
1146               num_peer_ids * sizeof (struct GNUNET_PeerIdentity);
1147
1148   if (GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE < send_size)
1149     /* Compute number of peers to send
1150      * If too long, simply truncate */
1151     // TODO select random ones via permutation
1152     //      or even better: do good protocol design
1153     send_size =
1154       (GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE -
1155        sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) /
1156        sizeof (struct GNUNET_PeerIdentity);
1157   else
1158     send_size = num_peer_ids;
1159
1160   LOG (GNUNET_ERROR_TYPE_DEBUG,
1161       "PULL REQUEST from peer %s received, going to send %u peers\n",
1162       GNUNET_i2s (peer_id), send_size);
1163
1164   mq = get_mq (peer_id);
1165
1166   ev = GNUNET_MQ_msg_extra (out_msg,
1167                             send_size * sizeof (struct GNUNET_PeerIdentity),
1168                             GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY);
1169   out_msg->num_peers = htonl (send_size);
1170   memcpy (&out_msg[1], peer_ids,
1171          send_size * sizeof (struct GNUNET_PeerIdentity));
1172
1173   GNUNET_MQ_send (mq, ev);
1174 }
1175
1176
1177 /**
1178  * This function is called on new peer_ids from 'external' sources
1179  * (client seed, cadet get_peers(), ...)
1180  *
1181  * @param peer_id the new peer_id
1182  */
1183 static void
1184 new_peer_id (const struct GNUNET_PeerIdentity *peer_id)
1185 {
1186   struct PeerOutstandingOp out_op;
1187   struct PeerContext *peer_ctx;
1188
1189   if ((NULL == peer_id) ||
1190       (0 == GNUNET_CRYPTO_cmp_peer_identity (&own_identity, peer_id)))
1191     return;
1192   LOG (GNUNET_ERROR_TYPE_DEBUG,
1193        "Got peer_id %s (at %p, view size: %u)\n",
1194        GNUNET_i2s (peer_id),
1195        peer_id,
1196        GNUNET_CONTAINER_multipeermap_size (view));
1197
1198   /* if the seed peer is already know, skip context creation */
1199   if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer_id))
1200     peer_ctx = create_peer_ctx (peer_id);
1201   else
1202     peer_ctx = get_peer_ctx (peer_id);
1203
1204   if (GNUNET_NO == get_peer_flag (peer_ctx, VALID))
1205   {
1206     if (GNUNET_NO == insert_in_sampler_scheduled (peer_ctx))
1207     {
1208       out_op.op = insert_in_sampler;
1209       out_op.op_cls = NULL;
1210       GNUNET_array_append (peer_ctx->outstanding_ops,
1211                            peer_ctx->num_outstanding_ops,
1212                            out_op);
1213     }
1214
1215     if (GNUNET_NO == insert_in_view_scheduled (peer_ctx))
1216     {
1217       out_op.op = insert_in_view;
1218       out_op.op_cls = NULL;
1219       GNUNET_array_append (peer_ctx->outstanding_ops,
1220                            peer_ctx->num_outstanding_ops,
1221                            out_op);
1222     }
1223
1224     /* Trigger livelyness test on peer */
1225     check_peer_live (peer_ctx);
1226   }
1227   // else...?
1228
1229   // send push/pull to each of those peers?
1230 }
1231
1232
1233 /***********************************************************************
1234  * /Util functions
1235 ***********************************************************************/
1236
1237
1238
1239
1240
1241 /**
1242  * Function called by NSE.
1243  *
1244  * Updates sizes of sampler list and view and adapt those lists
1245  * accordingly.
1246  */
1247   void
1248 nse_callback (void *cls, struct GNUNET_TIME_Absolute timestamp,
1249               double logestimate, double std_dev)
1250 {
1251   double estimate;
1252   //double scale; // TODO this might go gloabal/config
1253
1254   LOG (GNUNET_ERROR_TYPE_DEBUG,
1255        "Received a ns estimate - logest: %f, std_dev: %f (old_size: %u)\n",
1256        logestimate, std_dev, RPS_sampler_get_size (prot_sampler));
1257   //scale = .01;
1258   estimate = GNUNET_NSE_log_estimate_to_n (logestimate);
1259   // GNUNET_NSE_log_estimate_to_n (logestimate);
1260   estimate = pow (estimate, 1.0 / 3);
1261   // TODO add if std_dev is a number
1262   // estimate += (std_dev * scale);
1263   if (2 < ceil (estimate))
1264   {
1265     LOG (GNUNET_ERROR_TYPE_DEBUG, "Changing estimate to %f\n", estimate);
1266     sampler_size_est_need = estimate;
1267   } else
1268     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not using estimate %f\n", estimate);
1269
1270   /* If the NSE has changed adapt the lists accordingly */
1271   resize_wrapper (prot_sampler, sampler_size_est_need);
1272   client_resize_wrapper ();
1273 }
1274
1275
1276 /**
1277  * Callback called once the requested PeerIDs are ready.
1278  *
1279  * Sends those to the requesting client.
1280  */
1281 void client_respond (void *cls,
1282     struct GNUNET_PeerIdentity *peer_ids, uint32_t num_peers)
1283 {
1284   uint32_t i;
1285   struct GNUNET_MQ_Envelope *ev;
1286   struct GNUNET_RPS_CS_ReplyMessage *out_msg;
1287   struct ReplyCls *reply_cls = (struct ReplyCls *) cls;
1288   uint32_t size_needed;
1289   struct ClientContext *cli_ctx;
1290
1291   GNUNET_assert (NULL != reply_cls);
1292   LOG (GNUNET_ERROR_TYPE_DEBUG,
1293        "sampler returned %" PRIu32 " peers:\n",
1294        num_peers);
1295   for (i = 0; i < num_peers; i++)
1296   {
1297     LOG (GNUNET_ERROR_TYPE_DEBUG,
1298          "  %lu: %s\n",
1299          i,
1300          GNUNET_i2s (&peer_ids[i]));
1301   }
1302
1303   size_needed = sizeof (struct GNUNET_RPS_CS_ReplyMessage) +
1304                 num_peers * sizeof (struct GNUNET_PeerIdentity);
1305
1306   GNUNET_assert (GNUNET_SERVER_MAX_MESSAGE_SIZE >= size_needed);
1307
1308   ev = GNUNET_MQ_msg_extra (out_msg,
1309                             num_peers * sizeof (struct GNUNET_PeerIdentity),
1310                             GNUNET_MESSAGE_TYPE_RPS_CS_REPLY);
1311   out_msg->num_peers = htonl (num_peers);
1312   out_msg->id = htonl (reply_cls->id);
1313
1314   memcpy (&out_msg[1],
1315           peer_ids,
1316           num_peers * sizeof (struct GNUNET_PeerIdentity));
1317   GNUNET_free (peer_ids);
1318
1319   cli_ctx = GNUNET_SERVER_client_get_user_context (reply_cls->client, struct ClientContext);
1320   if (NULL == cli_ctx) {
1321     cli_ctx = GNUNET_new (struct ClientContext);
1322     cli_ctx->mq = GNUNET_MQ_queue_for_server_client (reply_cls->client);
1323     GNUNET_SERVER_client_set_user_context (reply_cls->client, cli_ctx);
1324   }
1325
1326   GNUNET_free (reply_cls);
1327
1328   GNUNET_MQ_send (cli_ctx->mq, ev);
1329 }
1330
1331
1332 /**
1333  * Handle RPS request from the client.
1334  *
1335  * @param cls closure
1336  * @param client identification of the client
1337  * @param message the actual message
1338  */
1339 static void
1340 handle_client_request (void *cls,
1341                        struct GNUNET_SERVER_Client *client,
1342                        const struct GNUNET_MessageHeader *message)
1343 {
1344   struct GNUNET_RPS_CS_RequestMessage *msg;
1345   uint32_t num_peers;
1346   uint32_t size_needed;
1347   struct ReplyCls *reply_cls;
1348   uint32_t i;
1349
1350   msg = (struct GNUNET_RPS_CS_RequestMessage *) message;
1351
1352   num_peers = ntohl (msg->num_peers);
1353   size_needed = sizeof (struct GNUNET_RPS_CS_RequestMessage) +
1354                 num_peers * sizeof (struct GNUNET_PeerIdentity);
1355
1356   if (GNUNET_SERVER_MAX_MESSAGE_SIZE < size_needed)
1357   {
1358     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1359     return;
1360   }
1361
1362   for (i = 0 ; i < num_peers ; i++)
1363     est_request_rate();
1364
1365   LOG (GNUNET_ERROR_TYPE_DEBUG,
1366        "Client requested %" PRIu32 " random peer(s).\n",
1367        num_peers);
1368
1369   reply_cls = GNUNET_new (struct ReplyCls);
1370   reply_cls->id = ntohl (msg->id);
1371   reply_cls->client = client;
1372
1373   RPS_sampler_get_n_rand_peers (client_sampler,
1374                                 client_respond,
1375                                 reply_cls,
1376                                 num_peers);
1377
1378   GNUNET_SERVER_receive_done (client,
1379                               GNUNET_OK);
1380 }
1381
1382
1383 /**
1384  * Handle seed from the client.
1385  *
1386  * @param cls closure
1387  * @param client identification of the client
1388  * @param message the actual message
1389  */
1390   static void
1391 handle_client_seed (void *cls,
1392                     struct GNUNET_SERVER_Client *client,
1393                     const struct GNUNET_MessageHeader *message)
1394 {
1395   struct GNUNET_RPS_CS_SeedMessage *in_msg;
1396   struct GNUNET_PeerIdentity *peers;
1397   uint32_t num_peers;
1398   uint32_t i;
1399
1400   if (sizeof (struct GNUNET_RPS_CS_SeedMessage) > ntohs (message->size))
1401   {
1402     GNUNET_break_op (0);
1403     GNUNET_SERVER_receive_done (client,
1404                                 GNUNET_SYSERR);
1405   }
1406
1407   in_msg = (struct GNUNET_RPS_CS_SeedMessage *) message;
1408   num_peers = ntohl (in_msg->num_peers);
1409   peers = (struct GNUNET_PeerIdentity *) &in_msg[1];
1410   //peers = GNUNET_new_array (num_peers, struct GNUNET_PeerIdentity);
1411   //memcpy (peers, &in_msg[1], num_peers * sizeof (struct GNUNET_PeerIdentity));
1412
1413   if ((ntohs (message->size) - sizeof (struct GNUNET_RPS_CS_SeedMessage)) /
1414       sizeof (struct GNUNET_PeerIdentity) != num_peers)
1415   {
1416     GNUNET_break_op (0);
1417     GNUNET_SERVER_receive_done (client,
1418                                 GNUNET_SYSERR);
1419     return;
1420   }
1421
1422   LOG (GNUNET_ERROR_TYPE_DEBUG,
1423        "Client seeded peers:\n");
1424   print_peer_list (peers, num_peers);
1425
1426   for (i = 0 ; i < num_peers ; i++)
1427   {
1428     LOG (GNUNET_ERROR_TYPE_DEBUG,
1429          "Updating samplers with seed %" PRIu32 ": %s\n",
1430          i,
1431          GNUNET_i2s (&peers[i]));
1432
1433     new_peer_id (&peers[i]);
1434
1435     //RPS_sampler_update (prot_sampler,   &peers[i]);
1436     //RPS_sampler_update (client_sampler, &peers[i]);
1437   }
1438
1439   ////GNUNET_free (peers);
1440
1441   GNUNET_SERVER_receive_done (client,
1442                                                 GNUNET_OK);
1443 }
1444
1445
1446 /**
1447  * Handle a PUSH message from another peer.
1448  *
1449  * Check the proof of work and store the PeerID
1450  * in the temporary list for pushed PeerIDs.
1451  *
1452  * @param cls Closure
1453  * @param channel The channel the PUSH was received over
1454  * @param channel_ctx The context associated with this channel
1455  * @param msg The message header
1456  */
1457 static int
1458 handle_peer_push (void *cls,
1459     struct GNUNET_CADET_Channel *channel,
1460     void **channel_ctx,
1461     const struct GNUNET_MessageHeader *msg)
1462 {
1463   const struct GNUNET_PeerIdentity *peer;
1464
1465   // (check the proof of work)
1466
1467   peer = (const struct GNUNET_PeerIdentity *)
1468     GNUNET_CADET_channel_get_info (channel, GNUNET_CADET_OPTION_PEER);
1469   // FIXME wait for cadet to change this function
1470
1471   LOG (GNUNET_ERROR_TYPE_DEBUG, "PUSH received (%s)\n", GNUNET_i2s (peer));
1472
1473   #ifdef ENABLE_MALICIOUS
1474   struct AttackedPeer *tmp_att_peer;
1475
1476   tmp_att_peer = GNUNET_new (struct AttackedPeer);
1477   memcpy (&tmp_att_peer->peer_id, peer, sizeof (struct GNUNET_PeerIdentity));
1478   if (1 == mal_type
1479       || 3 == mal_type)
1480   { /* Try to maximise representation */
1481     if (NULL == att_peer_set)
1482       att_peer_set = GNUNET_CONTAINER_multipeermap_create (1, GNUNET_NO);
1483     if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (att_peer_set,
1484                                                              peer))
1485     {
1486       GNUNET_CONTAINER_DLL_insert (att_peers_head,
1487                                    att_peers_tail,
1488                                    tmp_att_peer);
1489       add_peer_array_to_set (peer, 1, att_peer_set);
1490     }
1491     return GNUNET_OK;
1492   }
1493
1494
1495   else if (2 == mal_type)
1496   { /* We attack one single well-known peer - simply ignore */
1497     return GNUNET_OK;
1498   }
1499   else
1500   {
1501     GNUNET_free (tmp_att_peer);
1502   }
1503
1504   #endif /* ENABLE_MALICIOUS */
1505
1506   /* Add the sending peer to the push_list */
1507   if (GNUNET_NO == in_arr (push_list, push_list_size, peer))
1508   {
1509     if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
1510       (void) create_peer_ctx (peer);
1511     GNUNET_array_append (push_list, push_list_size, *peer);
1512   }
1513
1514   GNUNET_CADET_receive_done (channel);
1515   return GNUNET_OK;
1516 }
1517
1518
1519 /**
1520  * Iterator over hash map entries.
1521  * Called from #generate_view_array and writes every peer id into #view_array.
1522  *
1523  * @param cls closure - the pointer to the counter
1524  * @param key current public key
1525  * @param value value in the hash map
1526  * @return #GNUNET_YES if we should continue to
1527  * iterate,
1528  * #GNUNET_NO if not.
1529  */
1530 static int
1531 dump_id_to_view_array (void *cls,
1532                        const struct GNUNET_PeerIdentity *key,
1533                        void *value)
1534 {
1535   unsigned int *i = (unsigned int *) cls;
1536
1537   view_array[(*i)++] = *key;
1538   return GNUNET_YES;
1539 }
1540
1541
1542 /**
1543  * Makes sure the view_array is filled with the peer ids currently in #view.
1544  * Called from within #do_round before sending pushes and pulls and from
1545  * #handle_peer_pull_request when a reply is sent.
1546  */
1547 static void
1548 generate_view_array (unsigned int view_size)
1549 {
1550   unsigned int *i;
1551   int ret;
1552
1553   if (NULL == view_array)
1554   {
1555     view_array = GNUNET_new_array (view_size,
1556                                    struct GNUNET_PeerIdentity);
1557     i = GNUNET_new (unsigned int);
1558     *i = 0;
1559
1560     ret = GNUNET_CONTAINER_multipeermap_iterate (view,
1561                                                  dump_id_to_view_array,
1562                                                  i);
1563     GNUNET_assert (view_size == ret);
1564     GNUNET_assert (view_size == *i);
1565
1566     GNUNET_free (i);
1567   }
1568 }
1569
1570
1571 /**
1572  * Handle PULL REQUEST request message from another peer.
1573  *
1574  * Reply with the view of PeerIDs.
1575  *
1576  * @param cls Closure
1577  * @param channel The channel the PULL REQUEST was received over
1578  * @param channel_ctx The context associated with this channel
1579  * @param msg The message header
1580  */
1581 static int
1582 handle_peer_pull_request (void *cls,
1583     struct GNUNET_CADET_Channel *channel,
1584     void **channel_ctx,
1585     const struct GNUNET_MessageHeader *msg)
1586 {
1587   struct GNUNET_PeerIdentity *peer;
1588   unsigned int view_size;
1589
1590   peer = (struct GNUNET_PeerIdentity *)
1591     GNUNET_CADET_channel_get_info (channel,
1592                                    GNUNET_CADET_OPTION_PEER);
1593   // FIXME wait for cadet to change this function
1594
1595   LOG (GNUNET_ERROR_TYPE_DEBUG, "PULL REQUEST received (%s)\n", GNUNET_i2s (peer));
1596
1597   #ifdef ENABLE_MALICIOUS
1598   if (1 == mal_type
1599       || 3 == mal_type)
1600   { /* Try to maximise representation */
1601     send_pull_reply (peer, mal_peers, num_mal_peers);
1602     return GNUNET_OK;
1603   }
1604
1605   else if (2 == mal_type)
1606   { /* Try to partition network */
1607     if (0 == GNUNET_CRYPTO_cmp_peer_identity (&attacked_peer, peer))
1608     {
1609       send_pull_reply (peer, mal_peers, num_mal_peers);
1610     }
1611     return GNUNET_OK;
1612   }
1613   #endif /* ENABLE_MALICIOUS */
1614
1615   view_size = GNUNET_CONTAINER_multipeermap_size (view);
1616   generate_view_array (view_size);
1617
1618   send_pull_reply (peer, view_array, view_size);
1619
1620   GNUNET_CADET_receive_done (channel);
1621   return GNUNET_OK;
1622 }
1623
1624
1625 /**
1626  * Handle PULL REPLY message from another peer.
1627  *
1628  * Check whether we sent a corresponding request and
1629  * whether this reply is the first one.
1630  *
1631  * @param cls Closure
1632  * @param channel The channel the PUSH was received over
1633  * @param channel_ctx The context associated with this channel
1634  * @param msg The message header
1635  */
1636   static int
1637 handle_peer_pull_reply (void *cls,
1638                         struct GNUNET_CADET_Channel *channel,
1639                         void **channel_ctx,
1640                         const struct GNUNET_MessageHeader *msg)
1641 {
1642   struct GNUNET_RPS_P2P_PullReplyMessage *in_msg;
1643   struct GNUNET_PeerIdentity *peers;
1644   struct PeerContext *peer_ctx;
1645   struct GNUNET_PeerIdentity *sender;
1646   struct PeerContext *sender_ctx;
1647   struct PeerOutstandingOp out_op;
1648   uint32_t i;
1649 #ifdef ENABLE_MALICIOUS
1650   struct AttackedPeer *tmp_att_peer;
1651 #endif /* ENABLE_MALICIOUS */
1652
1653   /* Check for protocol violation */
1654   if (sizeof (struct GNUNET_RPS_P2P_PullReplyMessage) > ntohs (msg->size))
1655   {
1656     GNUNET_break_op (0);
1657     return GNUNET_SYSERR;
1658   }
1659
1660   in_msg = (struct GNUNET_RPS_P2P_PullReplyMessage *) msg;
1661   if ((ntohs (msg->size) - sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) /
1662       sizeof (struct GNUNET_PeerIdentity) != ntohl (in_msg->num_peers))
1663   {
1664     LOG (GNUNET_ERROR_TYPE_ERROR,
1665         "message says it sends %" PRIu32 " peers, have space for %i peers\n",
1666         ntohl (in_msg->num_peers),
1667         (ntohs (msg->size) - sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) /
1668             sizeof (struct GNUNET_PeerIdentity));
1669     GNUNET_break_op (0);
1670     return GNUNET_SYSERR;
1671   }
1672
1673   // Guess simply casting isn't the nicest way...
1674   // FIXME wait for cadet to change this function
1675   sender = (struct GNUNET_PeerIdentity *)
1676       GNUNET_CADET_channel_get_info (channel, GNUNET_CADET_OPTION_PEER);
1677   sender_ctx = get_peer_ctx (sender);
1678
1679   LOG (GNUNET_ERROR_TYPE_DEBUG, "PULL REPLY received (%s)\n", GNUNET_i2s (sender));
1680
1681   if (GNUNET_YES != get_peer_flag (sender_ctx, PULL_REPLY_PENDING))
1682   {
1683     LOG (GNUNET_ERROR_TYPE_WARNING,
1684         "Received a pull reply from a peer we didn't request one from!\n");
1685     GNUNET_break_op (0);
1686     return GNUNET_OK;
1687   }
1688
1689
1690   #ifdef ENABLE_MALICIOUS
1691   // We shouldn't even receive pull replies as we're not sending
1692   if (2 == mal_type)
1693     return GNUNET_OK;
1694   #endif /* ENABLE_MALICIOUS */
1695
1696   /* Do actual logic */
1697   peers = (struct GNUNET_PeerIdentity *) &in_msg[1];
1698
1699   LOG (GNUNET_ERROR_TYPE_DEBUG,
1700        "PULL REPLY received, got following %u peers:\n",
1701        ntohl (in_msg->num_peers));
1702
1703   for (i = 0 ; i < ntohl (in_msg->num_peers) ; i++)
1704   {
1705     LOG (GNUNET_ERROR_TYPE_DEBUG,
1706          "%u. %s\n",
1707          i,
1708          GNUNET_i2s (&peers[i]));
1709
1710     #ifdef ENABLE_MALICIOUS
1711     if (1 == mal_type
1712         || 3 == mal_type)
1713     { /* Add attacked peer to local list */
1714       // TODO check if we sent a request and this was the first reply
1715       if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (att_peer_set,
1716                                                                &peers[i])
1717           && GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (mal_peer_set,
1718                                                                   &peers[i])
1719           && 0 != GNUNET_CRYPTO_cmp_peer_identity (&peers[i],
1720                                                    &own_identity))
1721       {
1722         tmp_att_peer = GNUNET_new (struct AttackedPeer);
1723         tmp_att_peer->peer_id = peers[i];
1724         GNUNET_CONTAINER_DLL_insert (att_peers_head,
1725                                      att_peers_tail,
1726                                      tmp_att_peer);
1727         add_peer_array_to_set (&peers[i], 1, att_peer_set);
1728       }
1729       continue;
1730     }
1731     #endif /* ENABLE_MALICIOUS */
1732     if (0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity,
1733                                               &peers[i]))
1734     {
1735       if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (peer_map,
1736             &peers[i]))
1737         peer_ctx = create_peer_ctx (&peers[i]);
1738       else
1739         peer_ctx = get_peer_ctx (&peers[i]);
1740
1741       if (GNUNET_YES == get_peer_flag (peer_ctx, VALID))
1742       {
1743         if (GNUNET_NO == in_arr (pull_list, pull_list_size, &peers[i]))
1744           GNUNET_array_append (pull_list, pull_list_size, peers[i]);
1745       }
1746       else if (GNUNET_NO == insert_in_pull_list_scheduled (peer_ctx))
1747       {
1748         out_op.op = insert_in_pull_list;
1749         out_op.op_cls = NULL;
1750         GNUNET_array_append (peer_ctx->outstanding_ops,
1751                              peer_ctx->num_outstanding_ops,
1752                              out_op);
1753         check_peer_live (peer_ctx);
1754       }
1755     }
1756   }
1757
1758   unset_peer_flag (sender_ctx, PULL_REPLY_PENDING);
1759
1760   peer_clean (sender);
1761
1762   GNUNET_CADET_receive_done (channel);
1763   return GNUNET_OK;
1764 }
1765
1766
1767 /**
1768  * Compute a random delay.
1769  * A uniformly distributed value between mean + spread and mean - spread.
1770  *
1771  * For example for mean 4 min and spread 2 the minimum is (4 min - (1/2 * 4 min))
1772  * It would return a random value between 2 and 6 min.
1773  *
1774  * @param mean the mean
1775  * @param spread the inverse amount of deviation from the mean
1776  */
1777 static struct GNUNET_TIME_Relative
1778 compute_rand_delay (struct GNUNET_TIME_Relative mean, unsigned int spread)
1779 {
1780   struct GNUNET_TIME_Relative half_interval;
1781   struct GNUNET_TIME_Relative ret;
1782   unsigned int rand_delay;
1783   unsigned int max_rand_delay;
1784
1785   if (0 == spread)
1786   {
1787     LOG (GNUNET_ERROR_TYPE_WARNING,
1788          "Not accepting spread of 0\n");
1789     GNUNET_break (0);
1790   }
1791
1792   /* Compute random time value between spread * mean and spread * mean */
1793   half_interval = GNUNET_TIME_relative_divide (mean, spread);
1794
1795   max_rand_delay = GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us / mean.rel_value_us * (2/spread);
1796   /**
1797    * Compute random value between (0 and 1) * round_interval
1798    * via multiplying round_interval with a 'fraction' (0 to value)/value
1799    */
1800   rand_delay = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, max_rand_delay);
1801   ret = GNUNET_TIME_relative_multiply (mean,  rand_delay);
1802   ret = GNUNET_TIME_relative_divide   (ret, max_rand_delay);
1803   ret = GNUNET_TIME_relative_add      (ret, half_interval);
1804
1805   if (GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us == ret.rel_value_us)
1806     LOG (GNUNET_ERROR_TYPE_WARNING,
1807          "Returning FOREVER_REL\n");
1808
1809   return ret;
1810 }
1811
1812
1813 /**
1814  * Send single pull request
1815  *
1816  * @param peer_id the peer to send the pull request to.
1817  */
1818 static void
1819 send_pull_request (struct GNUNET_PeerIdentity *peer_id)
1820 {
1821   struct GNUNET_MQ_Envelope *ev;
1822   struct GNUNET_MQ_Handle *mq;
1823   struct PeerContext *peer_ctx;
1824
1825   peer_ctx = get_peer_ctx (peer_id);
1826   GNUNET_assert (GNUNET_NO == get_peer_flag (peer_ctx, PULL_REPLY_PENDING));
1827   set_peer_flag (peer_ctx, PULL_REPLY_PENDING);
1828
1829   LOG (GNUNET_ERROR_TYPE_DEBUG,
1830        "Sending PULL request to peer %s of view.\n",
1831        GNUNET_i2s (peer_id));
1832
1833   ev = GNUNET_MQ_msg_header (GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST);
1834   mq = get_mq (peer_id);
1835   GNUNET_MQ_send (mq, ev);
1836 }
1837
1838
1839 /**
1840  * Send single push
1841  *
1842  * @param peer_id the peer to send the push to.
1843  */
1844 static void
1845 send_push (struct GNUNET_PeerIdentity *peer_id)
1846 {
1847   struct GNUNET_MQ_Envelope *ev;
1848   struct GNUNET_MQ_Handle *mq;
1849
1850   LOG (GNUNET_ERROR_TYPE_DEBUG,
1851        "Sending PUSH to peer %s of view.\n",
1852        GNUNET_i2s (peer_id));
1853
1854   ev = GNUNET_MQ_msg_header (GNUNET_MESSAGE_TYPE_RPS_PP_PUSH);
1855   mq = get_mq (peer_id);
1856   GNUNET_MQ_send (mq, ev);
1857 }
1858
1859
1860 static void
1861 do_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1862
1863 static void
1864 do_mal_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1865
1866
1867 #ifdef ENABLE_MALICIOUS
1868 /**
1869  * Turn RPS service to act malicious.
1870  *
1871  * @param cls Closure
1872  * @param client The client that sent the message
1873  * @param msg The message header
1874  */
1875   static void
1876 handle_client_act_malicious (void *cls,
1877                              struct GNUNET_SERVER_Client *client,
1878                              const struct GNUNET_MessageHeader *msg)
1879 {
1880   struct GNUNET_RPS_CS_ActMaliciousMessage *in_msg;
1881   struct GNUNET_PeerIdentity *peers;
1882   uint32_t num_mal_peers_sent;
1883   uint32_t num_mal_peers_old;
1884
1885   /* Check for protocol violation */
1886   if (sizeof (struct GNUNET_RPS_CS_ActMaliciousMessage) > ntohs (msg->size))
1887   {
1888     GNUNET_break_op (0);
1889   }
1890
1891   in_msg = (struct GNUNET_RPS_CS_ActMaliciousMessage *) msg;
1892   if ((ntohs (msg->size) - sizeof (struct GNUNET_RPS_CS_ActMaliciousMessage)) /
1893       sizeof (struct GNUNET_PeerIdentity) != ntohl (in_msg->num_peers))
1894   {
1895     LOG (GNUNET_ERROR_TYPE_ERROR,
1896         "message says it sends %" PRIu64 " peers, have space for %i peers\n",
1897         ntohl (in_msg->num_peers),
1898         (ntohs (msg->size) - sizeof (struct GNUNET_RPS_CS_ActMaliciousMessage)) /
1899             sizeof (struct GNUNET_PeerIdentity));
1900     GNUNET_break_op (0);
1901   }
1902
1903
1904   /* Do actual logic */
1905   peers = (struct GNUNET_PeerIdentity *) &msg[1];
1906   mal_type = ntohl (in_msg->type);
1907
1908   LOG (GNUNET_ERROR_TYPE_DEBUG,
1909        "Now acting malicious type %" PRIu32 ", got %" PRIu32 " peers.\n",
1910        mal_type,
1911        ntohl (in_msg->num_peers));
1912
1913   if (1 == mal_type)
1914   { /* Try to maximise representation */
1915     /* Add other malicious peers to those we already know */
1916
1917     num_mal_peers_sent = ntohl (in_msg->num_peers);
1918     num_mal_peers_old = num_mal_peers;
1919     GNUNET_array_grow (mal_peers,
1920                        num_mal_peers,
1921                        num_mal_peers + num_mal_peers_sent);
1922     memcpy (&mal_peers[num_mal_peers_old],
1923             peers,
1924             num_mal_peers_sent * sizeof (struct GNUNET_PeerIdentity));
1925
1926     /* Add all mal peers to mal_peer_set */
1927     add_peer_array_to_set (&mal_peers[num_mal_peers_old],
1928                            num_mal_peers_sent,
1929                            mal_peer_set);
1930
1931     /* Substitute do_round () with do_mal_round () */
1932     GNUNET_SCHEDULER_cancel (do_round_task);
1933     do_round_task = GNUNET_SCHEDULER_add_now (&do_mal_round, NULL);
1934   }
1935
1936   else if (2 == mal_type
1937            || 3 == mal_type)
1938   { /* Try to partition the network */
1939     /* Add other malicious peers to those we already know */
1940     struct PeerContext *att_ctx;
1941
1942     num_mal_peers_sent = ntohl (in_msg->num_peers) - 1;
1943     num_mal_peers_old = num_mal_peers;
1944     GNUNET_array_grow (mal_peers,
1945                        num_mal_peers,
1946                        num_mal_peers + num_mal_peers_sent);
1947     if (NULL != mal_peers &&
1948         0 != num_mal_peers)
1949     {
1950       memcpy (&mal_peers[num_mal_peers_old],
1951               peers,
1952               num_mal_peers_sent * sizeof (struct GNUNET_PeerIdentity));
1953
1954       /* Add all mal peers to mal_peer_set */
1955       add_peer_array_to_set (&mal_peers[num_mal_peers_old],
1956                              num_mal_peers_sent,
1957                              mal_peer_set);
1958     }
1959
1960     /* Store the one attacked peer */
1961     memcpy (&attacked_peer,
1962             &in_msg->attacked_peer,
1963             sizeof (struct GNUNET_PeerIdentity));
1964     /* Set the flag of the attacked peer to valid to avoid problems */
1965     if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (peer_map,
1966           &attacked_peer))
1967     {
1968       att_ctx = create_peer_ctx (&attacked_peer);
1969       check_peer_live (att_ctx);
1970     }
1971
1972     LOG (GNUNET_ERROR_TYPE_DEBUG,
1973          "Attacked peer is %s\n",
1974          GNUNET_i2s (&attacked_peer));
1975
1976     /* Substitute do_round () with do_mal_round () */
1977     GNUNET_SCHEDULER_cancel (do_round_task);
1978     do_round_task = GNUNET_SCHEDULER_add_now (&do_mal_round, NULL);
1979   }
1980   else if (0 == mal_type)
1981   { /* Stop acting malicious */
1982     GNUNET_array_grow (mal_peers, num_mal_peers, 0);
1983
1984     /* Substitute do_mal_round () with do_round () */
1985     GNUNET_SCHEDULER_cancel (do_round_task);
1986     do_round_task = GNUNET_SCHEDULER_add_now (&do_round, NULL);
1987   }
1988   else
1989   {
1990     GNUNET_break (0);
1991   }
1992
1993   GNUNET_SERVER_receive_done (client,   GNUNET_OK);
1994 }
1995
1996
1997 /**
1998  * Send out PUSHes and PULLs maliciously.
1999  *
2000  * This is executed regylary.
2001  */
2002 static void
2003 do_mal_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2004 {
2005   uint32_t num_pushes;
2006   uint32_t i;
2007   struct GNUNET_TIME_Relative time_next_round;
2008   struct AttackedPeer *tmp_att_peer;
2009   struct PeerContext *peer_ctx;
2010
2011   LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round maliciously type %" PRIu32 ".\n",
2012       mal_type);
2013
2014   GNUNET_assert (mal_type <= 3);
2015   /* Do malicious actions */
2016   if (1 == mal_type)
2017   { /* Try to maximise representation */
2018
2019     /* The maximum of pushes we're going to send this round */
2020     num_pushes = GNUNET_MIN (GNUNET_MIN (push_limit,
2021                                          num_attacked_peers),
2022                              GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE);
2023
2024     LOG (GNUNET_ERROR_TYPE_DEBUG,
2025          "Going to send %" PRIu32 " pushes\n",
2026          num_pushes);
2027
2028     /* Send PUSHes to attacked peers */
2029     for (i = 0 ; i < num_pushes ; i++)
2030     {
2031       if (att_peers_tail == att_peer_index)
2032         att_peer_index = att_peers_head;
2033       else
2034         att_peer_index = att_peer_index->next;
2035
2036       send_push (&att_peer_index->peer_id);
2037     }
2038
2039     /* Send PULLs to some peers to learn about additional peers to attack */
2040     tmp_att_peer = att_peer_index;
2041     for (i = 0 ; i < num_pushes * alpha ; i++)
2042     {
2043       if (att_peers_tail == tmp_att_peer)
2044         tmp_att_peer = att_peers_head;
2045       else
2046         att_peer_index = tmp_att_peer->next;
2047
2048       send_pull_request (&tmp_att_peer->peer_id);
2049     }
2050   }
2051
2052
2053   else if (2 == mal_type)
2054   { /**
2055      * Try to partition the network
2056      * Send as many pushes to the attacked peer as possible
2057      * That is one push per round as it will ignore more.
2058      */
2059     peer_ctx = get_peer_ctx (&attacked_peer);
2060     if (GNUNET_YES == get_peer_flag (peer_ctx, VALID))
2061       send_push (&attacked_peer);
2062   }
2063
2064
2065   if (3 == mal_type)
2066   { /* Combined attack */
2067
2068     /* Send PUSH to attacked peers */
2069     peer_ctx = get_peer_ctx (&attacked_peer);
2070     if (GNUNET_YES == get_peer_flag (peer_ctx, VALID))
2071     {
2072       LOG (GNUNET_ERROR_TYPE_DEBUG,
2073           "Goding to send push to attacked peer (%s)\n",
2074           GNUNET_i2s (&attacked_peer));
2075       send_push (&attacked_peer);
2076     }
2077     else
2078       check_peer_live (peer_ctx);
2079
2080     /* The maximum of pushes we're going to send this round */
2081     num_pushes = GNUNET_MIN (GNUNET_MIN (push_limit - 1,
2082                                          num_attacked_peers),
2083                              GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE);
2084
2085     LOG (GNUNET_ERROR_TYPE_DEBUG,
2086          "Going to send %" PRIu32 " pushes\n",
2087          num_pushes);
2088
2089     for (i = 0 ; i < num_pushes ; i++)
2090     {
2091       if (att_peers_tail == att_peer_index)
2092         att_peer_index = att_peers_head;
2093       else
2094         att_peer_index = att_peer_index->next;
2095
2096       send_push (&att_peer_index->peer_id);
2097     }
2098
2099     /* Send PULLs to some peers to learn about additional peers to attack */
2100     tmp_att_peer = att_peer_index;
2101     for (i = 0 ; i < num_pushes * alpha ; i++)
2102     {
2103       if (att_peers_tail == tmp_att_peer)
2104         tmp_att_peer = att_peers_head;
2105       else
2106         att_peer_index = tmp_att_peer->next;
2107
2108       send_pull_request (&tmp_att_peer->peer_id);
2109     }
2110   }
2111
2112   /* Schedule next round */
2113   time_next_round = compute_rand_delay (round_interval, 2);
2114
2115   //do_round_task = GNUNET_SCHEDULER_add_delayed (round_interval, &do_mal_round, NULL);
2116   do_round_task = GNUNET_SCHEDULER_add_delayed (time_next_round, &do_mal_round, NULL);
2117   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
2118 }
2119 #endif /* ENABLE_MALICIOUS */
2120
2121
2122 /**
2123  * Send out PUSHes and PULLs, possibly update #view, samplers.
2124  *
2125  * This is executed regylary.
2126  */
2127 static void
2128 do_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
2129 {
2130   LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round.\n");
2131
2132   uint32_t i;
2133   unsigned int view_size;
2134   unsigned int *permut;
2135   unsigned int a_peers; /* Number of peers we send pushes to */
2136   unsigned int b_peers; /* Number of peers we send pull requests to */
2137   uint32_t first_border;
2138   uint32_t second_border;
2139   struct GNUNET_PeerIdentity peer;
2140   struct PeerContext *peer_ctx;
2141
2142   LOG (GNUNET_ERROR_TYPE_DEBUG,
2143        "Printing view:\n");
2144   to_file (file_name_view_log,
2145            "___ new round ___");
2146   view_size = GNUNET_CONTAINER_multipeermap_size (view);
2147   generate_view_array (view_size);
2148   for (i = 0 ; i < view_size ; i++)
2149   {
2150     LOG (GNUNET_ERROR_TYPE_DEBUG,
2151          "\t%s\n", GNUNET_i2s (&view_array[i]));
2152     to_file (file_name_view_log,
2153              "=%s\t(do round)",
2154              GNUNET_i2s_full (&view_array[i]));
2155   }
2156
2157
2158   /* Send pushes and pull requests */
2159   if (0 < view_size)
2160   {
2161     permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG,
2162                                            (unsigned int) view_size);
2163
2164     /* Send PUSHes */
2165     a_peers = ceil (alpha * view_size);
2166
2167     LOG (GNUNET_ERROR_TYPE_DEBUG,
2168          "Going to send pushes to %u (ceil (%f * %u)) peers.\n",
2169          a_peers, alpha, view_size);
2170     for (i = 0; i < a_peers; i++)
2171     {
2172       peer = view_array[permut[i]];
2173       if (0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, &peer)) // TODO
2174       { // FIXME if this fails schedule/loop this for later
2175         send_push (&peer);
2176       }
2177     }
2178
2179     /* Send PULL requests */
2180     b_peers = ceil (beta * view_size);
2181     first_border = a_peers;
2182     second_border = a_peers + b_peers;
2183     if (second_border > view_size)
2184     {
2185       first_border = view_size - b_peers;
2186       second_border = view_size;
2187     }
2188     LOG (GNUNET_ERROR_TYPE_DEBUG,
2189         "Going to send pulls to %u (ceil (%f * %u)) peers.\n",
2190         b_peers, beta, view_size);
2191     for (i = first_border; i < second_border; i++)
2192     {
2193       peer = view_array[permut[i]];
2194       peer_ctx = get_peer_ctx (&peer);
2195       if (0 != GNUNET_CRYPTO_cmp_peer_identity (&own_identity, &peer) &&
2196           GNUNET_NO == get_peer_flag (peer_ctx, PULL_REPLY_PENDING)) // TODO
2197       { // FIXME if this fails schedule/loop this for later
2198         send_pull_request (&peer);
2199       }
2200     }
2201
2202     GNUNET_free (permut);
2203     permut = NULL;
2204   }
2205
2206
2207   /* Update view */
2208   /* TODO see how many peers are in push-/pull- list! */
2209
2210   if (push_list_size <= alpha * view_size &&
2211       0 < push_list_size &&
2212       0 < pull_list_size)
2213   {
2214     LOG (GNUNET_ERROR_TYPE_DEBUG, "Update of the view.\n");
2215
2216     uint32_t final_size;
2217     uint32_t peers_to_clean_size;
2218     struct GNUNET_PeerIdentity *peers_to_clean;
2219
2220     peers_to_clean = NULL;
2221     peers_to_clean_size = 0;
2222     GNUNET_array_grow (peers_to_clean, peers_to_clean_size, view_size);
2223     memcpy (peers_to_clean,
2224             view_array,
2225             view_size * sizeof (struct GNUNET_PeerIdentity));
2226
2227     /* Seems like recreating is the easiest way of emptying the peermap */
2228     GNUNET_CONTAINER_multipeermap_destroy (view);
2229     view = GNUNET_CONTAINER_multipeermap_create (view_size, GNUNET_NO);
2230     to_file (file_name_view_log,
2231              "--- emptied ---");
2232
2233     first_border  = GNUNET_MIN (ceil (alpha * sampler_size_est_need),
2234                                 push_list_size);
2235     second_border = first_border +
2236                     GNUNET_MIN (floor (beta  * sampler_size_est_need),
2237                                 pull_list_size);
2238     final_size    = second_border +
2239       ceil ((1 - (alpha + beta)) * sampler_size_est_need);
2240
2241     GNUNET_array_grow (view_array, view_size, second_border);
2242
2243     /* Update view with peers received through PUSHes */
2244     permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG,
2245                                            push_list_size);
2246     for (i = 0; i < first_border; i++)
2247     {
2248       view_array[i] = push_list[permut[i]];
2249       GNUNET_CONTAINER_multipeermap_put (view, &push_list[permut[i]], NULL,
2250           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
2251
2252       to_file (file_name_view_log,
2253                "+%s\t(push list)",
2254                GNUNET_i2s_full (&view_array[i]));
2255       // TODO change the peer_flags accordingly
2256     }
2257     GNUNET_free (permut);
2258     permut = NULL;
2259
2260     /* Update view with peers received through PULLs */
2261     permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG,
2262                                            pull_list_size);
2263     for (i = first_border; i < second_border; i++)
2264     {
2265       view_array[i] = pull_list[permut[i - first_border]];
2266       GNUNET_CONTAINER_multipeermap_put (view,
2267           &pull_list[permut[i - first_border]],
2268           NULL,
2269           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
2270
2271       to_file (file_name_view_log,
2272                "+%s\t(pull list)",
2273                GNUNET_i2s_full (&view_array[i]));
2274       // TODO change the peer_flags accordingly
2275     }
2276     GNUNET_free (permut);
2277     permut = NULL;
2278
2279     /* Update view with peers from history */
2280     RPS_sampler_get_n_rand_peers (prot_sampler,
2281                                   hist_update,
2282                                   NULL,
2283                                   final_size - second_border);
2284     num_hist_update_tasks = final_size - second_border;
2285     // TODO change the peer_flags accordingly
2286
2287     for (i = 0; i < view_size; i++)
2288       rem_from_list (&peers_to_clean, &peers_to_clean_size, &view_array[i]);
2289
2290     /* Clean peers that were removed from the view */
2291     for (i = 0; i < peers_to_clean_size; i++)
2292     {
2293       to_file (file_name_view_log,
2294                "-%s",
2295                GNUNET_i2s_full (&peers_to_clean[i]));
2296       peer_clean (&peers_to_clean[i]);
2297     }
2298
2299     GNUNET_array_grow (peers_to_clean, peers_to_clean_size, 0);
2300     peers_to_clean = NULL;
2301   }
2302   else
2303   {
2304     LOG (GNUNET_ERROR_TYPE_DEBUG, "No update of the view.\n");
2305   }
2306   // TODO independent of that also get some peers from CADET_get_peers()?
2307
2308   LOG (GNUNET_ERROR_TYPE_DEBUG,
2309        "Received %u pushes and %u pulls last round (alpha (%.2f) * view_size (%u) = %.2f)\n",
2310        push_list_size,
2311        pull_list_size,
2312        alpha,
2313        view_size,
2314        alpha * view_size);
2315
2316   /* Update samplers */
2317   for (i = 0; i < push_list_size; i++)
2318   {
2319     LOG (GNUNET_ERROR_TYPE_DEBUG,
2320          "Updating with peer %s from push list\n",
2321          GNUNET_i2s (&push_list[i]));
2322     RPS_sampler_update (prot_sampler,   &push_list[i]);
2323     RPS_sampler_update (client_sampler, &push_list[i]);
2324     peer_clean (&push_list[i]); /* This cleans only if it is not in the view */
2325   }
2326
2327   for (i = 0; i < pull_list_size; i++)
2328   {
2329     LOG (GNUNET_ERROR_TYPE_DEBUG,
2330          "Updating with peer %s from pull list\n",
2331          GNUNET_i2s (&pull_list[i]));
2332     RPS_sampler_update (prot_sampler,   &pull_list[i]);
2333     RPS_sampler_update (client_sampler, &pull_list[i]);
2334     peer_clean (&pull_list[i]); /* This cleans only if it is not in the view */
2335   }
2336
2337
2338   /* Empty push/pull lists */
2339   GNUNET_array_grow (push_list, push_list_size, 0);
2340   GNUNET_array_grow (pull_list, pull_list_size, 0);
2341
2342   struct GNUNET_TIME_Relative time_next_round;
2343
2344   time_next_round = compute_rand_delay (round_interval, 2);
2345
2346   /* Schedule next round */
2347   do_round_task = GNUNET_SCHEDULER_add_delayed (time_next_round, &do_round, NULL);
2348   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
2349 }
2350
2351
2352 static void
2353 rps_start (struct GNUNET_SERVER_Handle *server);
2354
2355
2356 /**
2357  * This is called from GNUNET_CADET_get_peers().
2358  *
2359  * It is called on every peer(ID) that cadet somehow has contact with.
2360  * We use those to initialise the sampler.
2361  */
2362 void
2363 init_peer_cb (void *cls,
2364               const struct GNUNET_PeerIdentity *peer,
2365               int tunnel, // "Do we have a tunnel towards this peer?"
2366               unsigned int n_paths, // "Number of known paths towards this peer"
2367               unsigned int best_path) // "How long is the best path?
2368                                       // (0 = unknown, 1 = ourselves, 2 = neighbor)"
2369 {
2370   if (NULL != peer)
2371   {
2372     LOG (GNUNET_ERROR_TYPE_DEBUG,
2373          "Got peer_id %s from cadet\n",
2374          GNUNET_i2s (peer));
2375     new_peer_id (peer);
2376   }
2377 }
2378
2379
2380 /**
2381  * Iterator over peers from peerinfo.
2382  *
2383  * @param cls closure
2384  * @param peer id of the peer, NULL for last call
2385  * @param hello hello message for the peer (can be NULL)
2386  * @param error message
2387  */
2388 void
2389 process_peerinfo_peers (void *cls,
2390                         const struct GNUNET_PeerIdentity *peer,
2391                         const struct GNUNET_HELLO_Message *hello,
2392                         const char *err_msg)
2393 {
2394   if (NULL != peer)
2395   {
2396     LOG (GNUNET_ERROR_TYPE_DEBUG,
2397          "Got peer_id %s from peerinfo\n",
2398          GNUNET_i2s (peer));
2399     new_peer_id (peer);
2400   }
2401 }
2402
2403
2404 /**
2405  * Callback used to remove peers from the multipeermap.
2406  */
2407   int
2408 peer_remove_cb (void *cls, const struct GNUNET_PeerIdentity *key, void *value)
2409 {
2410   struct PeerContext *peer_ctx;
2411   const struct GNUNET_CADET_Channel *channel =
2412     (const struct GNUNET_CADET_Channel *) cls;
2413
2414   peer_ctx = (struct PeerContext *) value;
2415   set_peer_flag (peer_ctx, TO_DESTROY);
2416
2417   LOG (GNUNET_ERROR_TYPE_DEBUG,
2418        "Going to remove peer %s\n",
2419        GNUNET_i2s (&peer_ctx->peer_id));
2420
2421   /* If operations are still scheduled for this peer cancel those */
2422   if (0 != peer_ctx->num_outstanding_ops)
2423   {
2424     GNUNET_array_grow (peer_ctx->outstanding_ops,
2425                        peer_ctx->num_outstanding_ops,
2426                        0);
2427   }
2428
2429   /* If we are still waiting for notification whether this peer is live
2430    * cancel the according task */
2431   if (NULL != peer_ctx->transmit_handle)
2432   {
2433     LOG (GNUNET_ERROR_TYPE_DEBUG,
2434          "Trying to cancle transmit_handle for peer %s\n",
2435          GNUNET_i2s (key));
2436     GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->transmit_handle);
2437     peer_ctx->transmit_handle = NULL;
2438   }
2439
2440   unset_peer_flag (peer_ctx, PULL_REPLY_PENDING);
2441
2442   /* Remove peer from view */
2443   if (GNUNET_CONTAINER_multipeermap_contains (view, key))
2444   {
2445     to_file (file_name_view_log,
2446         "-%s\t(cleanup channel, other peer)",
2447         GNUNET_i2s_full (key));
2448     GNUNET_CONTAINER_multipeermap_remove_all (view, key);
2449     if (NULL != view_array)
2450     {
2451       GNUNET_free (view_array);
2452       view_array = NULL;
2453     }
2454   }
2455
2456   /* If there is still a mq destroy it */
2457   if (NULL != peer_ctx->mq)
2458   {
2459     GNUNET_MQ_destroy (peer_ctx->mq);
2460     peer_ctx->mq = NULL;
2461   }
2462
2463
2464   /* Remove the send_channel
2465    * This function should be called again from #cleanup_channel (callback
2466    * called on the destruction of channels) and clean up the rest. */
2467   if (NULL != peer_ctx->send_channel &&
2468       channel != peer_ctx->send_channel)
2469   {
2470     GNUNET_CADET_channel_destroy (peer_ctx->send_channel);
2471     peer_ctx->send_channel = NULL;
2472   }
2473
2474   /* Remove the recv_channel
2475    * This function should be called again from #cleanup_channel (callback
2476    * called on the destruction of channels) and clean up the rest. */
2477   if (NULL != peer_ctx->recv_channel &&
2478       channel != peer_ctx->recv_channel)
2479   {
2480     GNUNET_CADET_channel_destroy (peer_ctx->recv_channel);
2481     peer_ctx->recv_channel = NULL;
2482   }
2483
2484   /* If there is no channel we have to remove the context now */
2485   if (GNUNET_YES != GNUNET_CONTAINER_multipeermap_remove_all (peer_map, key))
2486     LOG (GNUNET_ERROR_TYPE_WARNING, "removing peer from peer_map failed\n");
2487
2488   GNUNET_free (peer_ctx);
2489
2490   return GNUNET_YES;
2491 }
2492
2493
2494 /**
2495  * Clean the send channel of a peer
2496  * If there is also no channel to receive messages from that peer, remove it
2497  * from the peermap.
2498  */
2499 void
2500 peer_clean (const struct GNUNET_PeerIdentity *peer)
2501 {
2502   struct PeerContext *peer_ctx;
2503   /* struct GNUNET_CADET_Channel *channel; */
2504
2505   if ( (GNUNET_NO  == GNUNET_CONTAINER_multipeermap_contains (view, peer)) &&
2506        (GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer)) &&
2507        (GNUNET_NO  == in_arr (push_list, push_list_size, peer)) &&
2508        (GNUNET_NO  == in_arr (pull_list, pull_list_size, peer)) )
2509   {
2510     peer_ctx = get_peer_ctx (peer);
2511
2512     if ( (NULL == peer_ctx->recv_channel) &&
2513          (GNUNET_NO == get_peer_flag (peer_ctx, PULL_REPLY_PENDING)) )
2514     {
2515       peer_remove_cb (NULL, peer, peer_ctx);
2516     }
2517   }
2518 }
2519
2520
2521 /**
2522  * Task run during shutdown.
2523  *
2524  * @param cls unused
2525  * @param tc unused
2526  */
2527 static void
2528 shutdown_task (void *cls,
2529                      const struct GNUNET_SCHEDULER_TaskContext *tc)
2530 {
2531
2532   LOG (GNUNET_ERROR_TYPE_DEBUG, "RPS is going down\n");
2533
2534   GNUNET_PEERINFO_notify_cancel (peerinfo_notify_handle);
2535   GNUNET_PEERINFO_disconnect (peerinfo_handle);
2536
2537   if (NULL != do_round_task)
2538   {
2539     GNUNET_SCHEDULER_cancel (do_round_task);
2540     do_round_task = NULL;
2541   }
2542
2543   {
2544   if (GNUNET_SYSERR ==
2545         GNUNET_CONTAINER_multipeermap_iterate (peer_map, peer_remove_cb, NULL))
2546     LOG (GNUNET_ERROR_TYPE_WARNING,
2547         "Iterating over peers to disconnect from them was cancelled\n");
2548   }
2549
2550   GNUNET_NSE_disconnect (nse);
2551   RPS_sampler_destroy (prot_sampler);
2552   RPS_sampler_destroy (client_sampler);
2553   LOG (GNUNET_ERROR_TYPE_DEBUG,
2554        "Size of the peermap: %u\n",
2555        GNUNET_CONTAINER_multipeermap_size (peer_map));
2556   GNUNET_break (0 == GNUNET_CONTAINER_multipeermap_size (peer_map));
2557   GNUNET_CADET_disconnect (cadet_handle);
2558   GNUNET_CONTAINER_multipeermap_destroy (peer_map);
2559   GNUNET_CONTAINER_multipeermap_destroy (view);
2560   view = NULL;
2561   GNUNET_array_grow (push_list, push_list_size, 0);
2562   GNUNET_array_grow (pull_list, pull_list_size, 0);
2563   #ifdef ENABLE_MALICIOUS
2564   struct AttackedPeer *tmp_att_peer;
2565   GNUNET_array_grow (mal_peers, num_mal_peers, 0);
2566   if (NULL != mal_peer_set)
2567     GNUNET_CONTAINER_multipeermap_destroy (mal_peer_set);
2568   if (NULL != att_peer_set)
2569     GNUNET_CONTAINER_multipeermap_destroy (att_peer_set);
2570   while (NULL != att_peers_head)
2571   {
2572     tmp_att_peer = att_peers_head;
2573     GNUNET_CONTAINER_DLL_remove (att_peers_head, att_peers_tail, tmp_att_peer);
2574   }
2575   #endif /* ENABLE_MALICIOUS */
2576 }
2577
2578
2579 /**
2580  * A client disconnected.  Remove all of its data structure entries.
2581  *
2582  * @param cls closure, NULL
2583  * @param client identification of the client
2584  */
2585 static void
2586 handle_client_disconnect (void *cls,
2587                           struct GNUNET_SERVER_Client * client)
2588 {
2589 }
2590
2591
2592 /**
2593  * Handle the channel a peer opens to us.
2594  *
2595  * @param cls The closure
2596  * @param channel The channel the peer wants to establish
2597  * @param initiator The peer's peer ID
2598  * @param port The port the channel is being established over
2599  * @param options Further options
2600  */
2601   static void *
2602 handle_inbound_channel (void *cls,
2603                         struct GNUNET_CADET_Channel *channel,
2604                         const struct GNUNET_PeerIdentity *initiator,
2605                         uint32_t port,
2606                         enum GNUNET_CADET_ChannelOption options)
2607 {
2608   struct PeerContext *peer_ctx;
2609
2610   LOG (GNUNET_ERROR_TYPE_DEBUG,
2611       "New channel was established to us (Peer %s).\n",
2612       GNUNET_i2s (initiator));
2613   GNUNET_assert (NULL != channel); /* according to cadet API */
2614   if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (peer_map, initiator))
2615     peer_ctx = create_peer_ctx (initiator);
2616   else
2617     peer_ctx = get_peer_ctx (initiator);
2618   /* We only accept one incoming channel from peers */
2619   if (NULL != peer_ctx->recv_channel)
2620   {
2621     GNUNET_CADET_channel_destroy (channel);
2622     return NULL;
2623   }
2624   peer_ctx->recv_channel = channel;
2625   peer_is_live (peer_ctx);
2626   return NULL;
2627 }
2628
2629
2630 /**
2631  * This is called when a channel is destroyed.
2632  *
2633  * @param cls The closure
2634  * @param channel The channel being closed
2635  * @param channel_ctx The context associated with this channel
2636  */
2637   static void
2638 cleanup_channel (void *cls,
2639                 const struct GNUNET_CADET_Channel *channel,
2640                 void *channel_ctx)
2641 {
2642   struct GNUNET_PeerIdentity *peer;
2643   struct PeerContext *peer_ctx;
2644
2645   peer = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (
2646       (struct GNUNET_CADET_Channel *) channel, GNUNET_CADET_OPTION_PEER);
2647        // Guess simply casting isn't the nicest way...
2648        // FIXME wait for cadet to change this function
2649
2650   if (GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
2651   {/* We don't want to implicitly create a context that we're about to kill */
2652     peer_ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
2653     if (NULL == peer_ctx) /* It could have been removed by shutdown_task */
2654       return;
2655
2656     if (get_peer_flag (peer_ctx, TO_DESTROY))
2657     {/* We initiatad the destruction of this particular peer */
2658       if (channel == peer_ctx->send_channel)
2659         peer_ctx->send_channel = NULL;
2660       else if (channel == peer_ctx->recv_channel)
2661         peer_ctx->recv_channel = NULL;
2662
2663       to_file (file_name_view_log,
2664                "-%s\t(cleanup channel, ourself)",
2665                GNUNET_i2s_full (peer));
2666     }
2667
2668     else
2669     { /* We did not initiate the destruction of this peer */
2670       if (channel == peer_ctx->send_channel)
2671       { /* Something (but us) killd the channel - clean up peer */
2672         LOG (GNUNET_ERROR_TYPE_DEBUG,
2673             "send channel (%s) was destroyed - cleaning up\n",
2674             GNUNET_i2s (peer));
2675         peer_ctx->send_channel = NULL;
2676         /* Somwewhat {ab,re}use the iterator function */
2677         /* Cast to void is ok, because it's used as void in peer_remove_cb */
2678         (void) peer_remove_cb ((void *) channel, peer, peer_ctx);
2679       }
2680       else if (channel == peer_ctx->recv_channel)
2681       { /* Other peer doesn't want to send us messages anymore */
2682         LOG (GNUNET_ERROR_TYPE_DEBUG,
2683              "Peer %s destroyed recv channel - cleaning up channel\n",
2684              GNUNET_i2s (peer));
2685         peer_ctx->recv_channel = NULL;
2686       }
2687       else
2688       {
2689         LOG (GNUNET_ERROR_TYPE_WARNING,
2690              "unknown channel (%s) was destroyed\n",
2691              GNUNET_i2s (peer));
2692       }
2693     }
2694   }
2695
2696   else
2697   { /* We don't know a context to that peer */
2698     LOG (GNUNET_ERROR_TYPE_DEBUG,
2699          "channel (%s) without associated context was destroyed\n",
2700          GNUNET_i2s (peer));
2701   }
2702 }
2703
2704
2705 /**
2706  * Actually start the service.
2707  */
2708   static void
2709 rps_start (struct GNUNET_SERVER_Handle *server)
2710 {
2711   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
2712     {&handle_client_request,     NULL, GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST,
2713       sizeof (struct GNUNET_RPS_CS_RequestMessage)},
2714     {&handle_client_seed,        NULL, GNUNET_MESSAGE_TYPE_RPS_CS_SEED, 0},
2715     #ifdef ENABLE_MALICIOUS
2716     {&handle_client_act_malicious, NULL, GNUNET_MESSAGE_TYPE_RPS_ACT_MALICIOUS , 0},
2717     #endif /* ENABLE_MALICIOUS */
2718     {NULL, NULL, 0, 0}
2719   };
2720
2721   GNUNET_SERVER_add_handlers (server, handlers);
2722   GNUNET_SERVER_disconnect_notify (server,
2723                                    &handle_client_disconnect,
2724                                    NULL);
2725   LOG (GNUNET_ERROR_TYPE_INFO, "Ready to receive requests from clients\n");
2726
2727
2728   do_round_task = GNUNET_SCHEDULER_add_now (&do_round, NULL);
2729   LOG (GNUNET_ERROR_TYPE_DEBUG, "Scheduled first round\n");
2730
2731   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
2732                                                         &shutdown_task,
2733                                                         NULL);
2734 }
2735
2736
2737 /**
2738  * Process statistics requests.
2739  *
2740  * @param cls closure
2741  * @param server the initialized server
2742  * @param c configuration to use
2743  */
2744   static void
2745 run (void *cls,
2746      struct GNUNET_SERVER_Handle *server,
2747      const struct GNUNET_CONFIGURATION_Handle *c)
2748 {
2749   int size;
2750   int out_size;
2751
2752   // TODO check what this does -- copied from gnunet-boss
2753   // - seems to work as expected
2754   GNUNET_log_setup ("rps", GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_DEBUG), NULL);
2755   cfg = c;
2756
2757
2758   /* Get own ID */
2759   GNUNET_CRYPTO_get_peer_identity (cfg, &own_identity); // TODO check return value
2760   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2761               "STARTING SERVICE (rps) for peer [%s]\n",
2762               GNUNET_i2s (&own_identity));
2763   #ifdef ENABLE_MALICIOUS
2764   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2765               "Malicious execution compiled in.\n");
2766   #endif /* ENABLE_MALICIOUS */
2767
2768
2769
2770   /* Get time interval from the configuration */
2771   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_time (cfg, "RPS",
2772                                                         "ROUNDINTERVAL",
2773                                                         &round_interval))
2774   {
2775     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
2776                                "RPS", "ROUNDINTERVAL");
2777     GNUNET_SCHEDULER_shutdown ();
2778     return;
2779   }
2780
2781   /* Get initial size of sampler/view from the configuration */
2782   if (GNUNET_OK !=
2783       GNUNET_CONFIGURATION_get_value_number (cfg, "RPS", "INITSIZE",
2784         (long long unsigned int *) &sampler_size_est_need))
2785   {
2786     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
2787                                "RPS", "INITSIZE");
2788     GNUNET_SCHEDULER_shutdown ();
2789     return;
2790   }
2791   LOG (GNUNET_ERROR_TYPE_DEBUG, "INITSIZE is %" PRIu64 "\n", sampler_size_est_need);
2792
2793
2794   view = GNUNET_CONTAINER_multipeermap_create (4, GNUNET_NO);
2795
2796   /* file_name_view_log */
2797   if (GNUNET_OK != GNUNET_DISK_directory_create ("/tmp/rps/"))
2798   {
2799     LOG (GNUNET_ERROR_TYPE_WARNING,
2800          "Failed to create directory /tmp/rps/\n");
2801   }
2802
2803   size = (14 + strlen (GNUNET_i2s_full (&own_identity)) + 1) * sizeof (char);
2804   file_name_view_log = GNUNET_malloc (size);
2805   out_size = GNUNET_snprintf (file_name_view_log,
2806                               size,
2807                               "/tmp/rps/view-%s",
2808                               GNUNET_i2s_full (&own_identity));
2809   if (size < out_size ||
2810       0 > out_size)
2811   {
2812     LOG (GNUNET_ERROR_TYPE_WARNING,
2813          "Failed to write string to buffer (size: %i, out_size: %i)\n",
2814          size,
2815          out_size);
2816   }
2817
2818
2819   /* connect to NSE */
2820   nse = GNUNET_NSE_connect (cfg, nse_callback, NULL);
2821
2822
2823   alpha = 0.45;
2824   beta  = 0.45;
2825
2826   peer_map = GNUNET_CONTAINER_multipeermap_create (sampler_size_est_need, GNUNET_NO);
2827
2828
2829   /* Initialise cadet */
2830   static const struct GNUNET_CADET_MessageHandler cadet_handlers[] = {
2831     {&handle_peer_push        , GNUNET_MESSAGE_TYPE_RPS_PP_PUSH        ,
2832       sizeof (struct GNUNET_MessageHeader)},
2833     {&handle_peer_pull_request, GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST,
2834       sizeof (struct GNUNET_MessageHeader)},
2835     {&handle_peer_pull_reply  , GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY  , 0},
2836     {NULL, 0, 0}
2837   };
2838
2839   const uint32_t ports[] = {GNUNET_RPS_CADET_PORT, 0}; // _PORT specified in src/rps/rps.h
2840   cadet_handle = GNUNET_CADET_connect (cfg,
2841                                        cls,
2842                                        &handle_inbound_channel,
2843                                        &cleanup_channel,
2844                                        cadet_handlers,
2845                                        ports);
2846
2847   peerinfo_handle = GNUNET_PEERINFO_connect (cfg);
2848
2849   /* Initialise sampler */
2850   struct GNUNET_TIME_Relative half_round_interval;
2851   struct GNUNET_TIME_Relative  max_round_interval;
2852
2853   half_round_interval = GNUNET_TIME_relative_multiply (round_interval, .5);
2854   max_round_interval = GNUNET_TIME_relative_add (round_interval, half_round_interval);
2855
2856   prot_sampler =   RPS_sampler_init     (sampler_size_est_need, max_round_interval);
2857   client_sampler = RPS_sampler_mod_init (sampler_size_est_need, max_round_interval);
2858
2859   /* Initialise push and pull maps */
2860   push_list = NULL;
2861   push_list_size = 0;
2862   pull_list = NULL;
2863   pull_list_size = 0;
2864
2865
2866   num_hist_update_tasks = 0;
2867
2868
2869   LOG (GNUNET_ERROR_TYPE_DEBUG, "Requesting peers from CADET\n");
2870   GNUNET_CADET_get_peers (cadet_handle, &init_peer_cb, NULL);
2871   // TODO send push/pull to each of those peers?
2872
2873   peerinfo_notify_handle = GNUNET_PEERINFO_notify (cfg,
2874                                                    GNUNET_NO,
2875                                                    process_peerinfo_peers,
2876                                                    NULL);
2877
2878   rps_start (server);
2879 }
2880
2881
2882 /**
2883  * The main function for the rps service.
2884  *
2885  * @param argc number of arguments from the command line
2886  * @param argv command line arguments
2887  * @return 0 ok, 1 on error
2888  */
2889   int
2890 main (int argc, char *const *argv)
2891 {
2892   return (GNUNET_OK ==
2893           GNUNET_SERVICE_run (argc,
2894                               argv,
2895                               "rps",
2896                               GNUNET_SERVICE_OPTION_NONE,
2897                               &run, NULL)) ? 0 : 1;
2898 }
2899
2900 /* end of gnunet-service-rps.c */