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