58c9862474a00572c742a413e268a49a78c3bda7
[oweals/gnunet.git] / src / rps / gnunet-service-rps.c
1 /*
2      This file is part of GNUnet.
3      (C)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file rps/gnunet-service-rps.c
23  * @brief rps service implementation
24  * @author Julius Bünger
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_cadet_service.h"
29 #include "gnunet_nse_service.h"
30 #include "rps.h"
31
32 #include "gnunet-service-rps_sampler.h"
33
34 #include <math.h>
35 #include <inttypes.h>
36
37 #define LOG(kind, ...) GNUNET_log(kind, __VA_ARGS__)
38
39 // TODO modify @brief in every file
40
41 // TODO take care that messages are not longer than 64k
42
43 // TODO check for overflows
44
45 // TODO align message structs
46
47 // (TODO api -- possibility of getting weak random peer immideately)
48
49 // TODO malicious peer
50
51 // TODO connect to friends
52
53 // TODO store peers somewhere
54
55 // TODO ignore list?
56
57 // hist_size_init, hist_size_max
58
59 /**
60  * Our configuration.
61  */
62 static const struct GNUNET_CONFIGURATION_Handle *cfg;
63
64 /**
65  * Our own identity.
66  */
67 static struct GNUNET_PeerIdentity *own_identity;
68
69
70   struct GNUNET_PeerIdentity *
71 get_rand_peer_ignore_list (const struct GNUNET_PeerIdentity *peer_list, unsigned int size,
72                            const struct GNUNET_PeerIdentity *ignore_list, unsigned int ignore_size);
73
74
75 /***********************************************************************
76  * Housekeeping with peers
77 ***********************************************************************/
78
79 /**
80  * Struct used to store the context of a connected client.
81  */
82 struct client_ctx
83 {
84   /**
85    * The message queue to communicate with the client.
86    */
87   struct GNUNET_MQ_Handle *mq;
88 };
89
90 /**
91  * Used to keep track in what lists single peerIDs are.
92  */
93 enum PeerFlags
94 {
95   PULL_REPLY_PENDING   = 0x01,
96   IN_OTHER_GOSSIP_LIST = 0x02, // unneeded?
97   IN_OWN_SAMPLER_LIST  = 0x04, // unneeded?
98   IN_OWN_GOSSIP_LIST   = 0x08, // unneeded?
99
100   /**
101    * We set this bit when we can be sure the other peer is/was live.
102    */
103   LIVING               = 0x10
104 };
105
106
107 /**
108  * Functions of this type can be used to be stored at a peer for later execution.
109  */
110 typedef void (* PeerOp) (void *cls, const struct GNUNET_PeerIdentity *peer);
111
112 /**
113  * Outstanding operation on peer consisting of callback and closure
114  */
115 struct PeerOutstandingOp
116 {
117   /**
118    * Callback
119    */
120   PeerOp op;
121
122   /**
123    * Closure
124    */
125   void *op_cls;
126 };
127
128
129 /**
130  * Struct used to keep track of other peer's status
131  *
132  * This is stored in a multipeermap.
133  */
134 struct PeerContext
135 {
136   /**
137    * In own gossip/sampler list, in other's gossip/sampler list
138    */
139   uint32_t peer_flags;
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    * Number of outstanding operations.
163    */
164   unsigned int num_outstanding_ops;
165   //size_t num_outstanding_ops;
166
167   /**
168    * Handle to the callback given to cadet_ntfy_tmt_rdy()
169    *
170    * To be canceled on shutdown.
171    */
172   struct GNUNET_CADET_TransmitHandle *is_live_task;
173
174   /**
175    * This is pobably followed by 'statistical' data (when we first saw
176    * him, how did we get his ID, how many pushes (in a timeinterval),
177    * ...)
178    */
179 };
180
181 /***********************************************************************
182  * /Housekeeping with peers
183 ***********************************************************************/
184
185 /***********************************************************************
186  * Globals
187 ***********************************************************************/
188
189 /**
190  * Set of all peers to keep track of them.
191  */
192 static struct GNUNET_CONTAINER_MultiPeerMap *peer_map;
193
194
195 /**
196  * The gossiped list of peers.
197  */
198 static struct GNUNET_PeerIdentity *gossip_list;
199
200 /**
201  * Size of the gossiped list
202  */
203 //static unsigned int gossip_list_size;
204 static uint32_t gossip_list_size;
205
206
207 /**
208  * The actual size of the sampler
209  */
210 static unsigned int sampler_size;
211 //size_t sampler_size;
212
213 /**
214  * The size of sampler we need to be able to satisfy the client's need of
215  * random peers.
216  */
217 static unsigned int sampler_size_client_need;
218
219 /**
220  * The size of sampler we need to be able to satisfy the Brahms protocol's
221  * need of random peers.
222  *
223  * This is directly taken as the #gossip_list_size on update of the
224  * #gossip_list
225  *
226  * This is one minimum size the sampler grows to.
227  */
228 static unsigned int sampler_size_est_need;
229
230
231 /**
232  * Percentage of total peer number in the gossip list
233  * to send random PUSHes to
234  */
235 static float alpha;
236
237 /**
238  * Percentage of total peer number in the gossip list
239  * to send random PULLs to
240  */
241 static float beta;
242
243 /**
244  * The percentage gamma of history updates.
245  * Simply 1 - alpha - beta
246  */
247
248
249 /**
250  * Identifier for the main task that runs periodically.
251  */
252 static struct GNUNET_SCHEDULER_Task *do_round_task;
253
254 /**
255  * Time inverval the do_round task runs in.
256  */
257 static struct GNUNET_TIME_Relative round_interval;
258
259
260
261 /**
262  * List to store peers received through pushes temporary.
263  *
264  * TODO -> multipeermap
265  */
266 static struct GNUNET_PeerIdentity *push_list;
267
268 /**
269  * Size of the push_list;
270  */
271 static unsigned int push_list_size;
272 //size_t push_list_size;
273
274 /**
275  * List to store peers received through pulls temporary.
276  *
277  * TODO -> multipeermap
278  */
279 static struct GNUNET_PeerIdentity *pull_list;
280
281 /**
282  * Size of the pull_list;
283  */
284 static unsigned int pull_list_size;
285 //size_t pull_list_size;
286
287
288 /**
289  * Handler to NSE.
290  */
291 static struct GNUNET_NSE_Handle *nse;
292
293 /**
294  * Handler to CADET.
295  */
296 static struct GNUNET_CADET_Handle *cadet_handle;
297
298
299 /**
300  * Request counter.
301  *
302  * Only needed in the beginning to check how many of the 64 deltas
303  * we already have
304  */
305 static unsigned int req_counter;
306
307 /**
308  * Time of the last request we received.
309  *
310  * Used to compute the expected request rate.
311  */
312 static struct GNUNET_TIME_Absolute last_request;
313
314 /**
315  * Size of #request_deltas.
316  */
317 #define REQUEST_DELTAS_SIZE 64
318 static unsigned int request_deltas_size = REQUEST_DELTAS_SIZE;
319
320 /**
321  * Last 64 deltas between requests
322  */
323 static struct GNUNET_TIME_Relative request_deltas[REQUEST_DELTAS_SIZE];
324
325 /**
326  * The prediction of the rate of requests
327  */
328 static struct GNUNET_TIME_Relative  request_rate;
329
330
331 /**
332  * List with the peers we sent requests to.
333  */
334 struct GNUNET_PeerIdentity *pending_pull_reply_list;
335
336 /**
337  * Size of #pending_pull_reply_list.
338  */
339 uint32_t pending_pull_reply_list_size;
340
341
342 /**
343  * Number of history update tasks.
344  */
345 uint32_t num_hist_update_tasks;
346
347
348 /***********************************************************************
349  * /Globals
350 ***********************************************************************/
351
352
353 /***********************************************************************
354  * Util functions
355 ***********************************************************************/
356
357 /**
358  * Check if peer is already in peer array.
359  */
360   int
361 in_arr (const struct GNUNET_PeerIdentity *array,
362         unsigned int arr_size,
363         const struct GNUNET_PeerIdentity *peer)
364 {
365   GNUNET_assert (NULL != peer);
366
367   if (0 == arr_size)
368     return GNUNET_NO;
369
370   GNUNET_assert (NULL != array);
371
372   unsigned int i;
373
374   i = 0;
375   while (0 != GNUNET_CRYPTO_cmp_peer_identity (&array[i], peer) &&
376          i < arr_size)
377     i++;
378
379   if (i == arr_size)
380     return GNUNET_NO;
381   else
382     return GNUNET_YES;
383 }
384
385 /**
386  * Remove peer from list.
387  */
388   void
389 rem_from_list (struct GNUNET_PeerIdentity *peer_list,
390                unsigned int *list_size,
391                const struct GNUNET_PeerIdentity *peer)
392 {
393   unsigned int i;
394
395   for ( i = 0 ; i < *list_size ; i++ )
396   {
397     if (0 == GNUNET_CRYPTO_cmp_peer_identity (&peer_list[i], peer))
398     {
399       if (i < *list_size -1)
400       { /* Not at the last entry -- shift peers left */
401         memcpy (&peer_list[i], &peer_list[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 (peer_list, *list_size, *list_size -1);
406     }
407   }
408 }
409
410 /**
411  * Get random peer from the given list but don't return one from the @a ignore_list.
412  */
413   struct GNUNET_PeerIdentity *
414 get_rand_peer_ignore_list (const struct GNUNET_PeerIdentity *peer_list,
415                            uint32_t list_size,
416                            const struct GNUNET_PeerIdentity *ignore_list,
417                            uint32_t ignore_size)
418 {
419   uint32_t r_index;
420   uint32_t tmp_size;
421   struct GNUNET_PeerIdentity *tmp_peer_list;
422   struct GNUNET_PeerIdentity *peer;
423
424   tmp_size = 0;
425   tmp_peer_list = NULL;
426   GNUNET_array_grow (tmp_peer_list, tmp_size, list_size);
427   memcpy (tmp_peer_list, peer_list, list_size * sizeof (struct GNUNET_PeerIdentity));
428   peer = GNUNET_new (struct GNUNET_PeerIdentity);
429   // FIXME if we have only NULL in gossip list this will block
430   // but then we might have a problem nevertheless
431
432   do
433   {
434     /**;
435      * Choose the r_index of the peer we want to return
436      * at random from the interval of the gossip list
437      */
438     r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
439                                         tmp_size);
440
441     *peer = tmp_peer_list[r_index];
442     if (in_arr (tmp_peer_list, list_size, peer))
443     {
444       rem_from_list (tmp_peer_list, &tmp_size, peer);
445       if (0 == tmp_size)
446         return NULL;
447       continue;
448     }
449
450   } while (NULL == peer);
451
452   GNUNET_free (tmp_peer_list);
453
454   return peer;
455 }
456
457
458 /**
459  * Get the context of a peer. If not existing, create.
460  */
461   struct PeerContext *
462 get_peer_ctx (struct GNUNET_CONTAINER_MultiPeerMap *peer_map,
463               const struct GNUNET_PeerIdentity *peer)
464 {
465   struct PeerContext *ctx;
466
467   if ( GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, peer))
468   {
469     ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
470   }
471   else
472   {
473     ctx = GNUNET_new (struct PeerContext);
474     ctx->peer_flags = 0;
475     ctx->mq = NULL;
476     ctx->send_channel = NULL;
477     ctx->recv_channel = NULL;
478     ctx->outstanding_ops = NULL;
479     ctx->num_outstanding_ops = 0;
480     (void) GNUNET_CONTAINER_multipeermap_put (peer_map, peer, ctx,
481                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
482   }
483   return ctx;
484 }
485
486
487 /**
488  * Put random peer from sampler into the gossip list as history update.
489  */
490   void
491 hist_update (void *cls, struct GNUNET_PeerIdentity *ids, uint32_t num_peers)
492 {
493   GNUNET_assert (1 == num_peers);
494
495   if (gossip_list_size < sampler_size_est_need)
496     GNUNET_array_append (gossip_list, gossip_list_size, *ids);
497
498   if (0 < num_hist_update_tasks)
499     num_hist_update_tasks--;
500 }
501
502
503 /**
504  * Callback that is called when a channel was effectively established.
505  * This is given to ntfy_tmt_rdy and called when the channel was
506  * successfully established.
507  */
508   size_t
509 peer_is_live (void *cls, size_t size, void *buf)
510 {
511   struct GNUNET_PeerIdentity *peer;
512   struct PeerContext *peer_ctx;
513
514   peer = (struct GNUNET_PeerIdentity *) cls;
515   peer_ctx = get_peer_ctx (peer_map, peer);
516   peer_ctx->peer_flags |= LIVING;
517
518   LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer %s is live\n", GNUNET_i2s (peer));
519
520   if (0 != peer_ctx->num_outstanding_ops)
521   { /* Call outstanding operations */
522     unsigned int i;
523
524     for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
525       peer_ctx->outstanding_ops[i].op (peer_ctx->outstanding_ops[i].op_cls, peer);
526     GNUNET_array_grow (peer_ctx->outstanding_ops, peer_ctx->num_outstanding_ops, 0);
527   }
528
529   GNUNET_free (peer);
530
531   buf = NULL;
532   return 0;
533 }
534
535
536 /**
537  * Get the channel of a peer. If not existing, create.
538  */
539   struct GNUNET_CADET_Channel *
540 get_channel (struct GNUNET_CONTAINER_MultiPeerMap *peer_map,
541              const struct GNUNET_PeerIdentity *peer)
542 {
543   struct PeerContext *ctx;
544   struct GNUNET_PeerIdentity *tmp_peer;
545
546   ctx = get_peer_ctx (peer_map, peer);
547   if (NULL == ctx->send_channel)
548   {
549     ctx->send_channel = GNUNET_CADET_channel_create (cadet_handle, NULL, peer,
550                                                      GNUNET_RPS_CADET_PORT,
551                                                      GNUNET_CADET_OPTION_RELIABLE);
552
553     if (NULL == ctx->recv_channel)
554     {
555       tmp_peer = GNUNET_new (struct GNUNET_PeerIdentity);
556       *tmp_peer = *peer;
557       ctx->is_live_task = GNUNET_CADET_notify_transmit_ready (ctx->send_channel, GNUNET_NO,
558                                                               GNUNET_TIME_UNIT_FOREVER_REL,
559                                                               0, peer_is_live, tmp_peer);
560     }
561
562     // do I have to explicitly put it in the peer_map?
563     (void) GNUNET_CONTAINER_multipeermap_put (peer_map, peer, ctx,
564                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
565   }
566   return ctx->send_channel;
567 }
568
569
570 /**
571  * Get the message queue of a specific peer.
572  *
573  * If we already have a message queue open to this client,
574  * simply return it, otherways create one.
575  */
576   struct GNUNET_MQ_Handle *
577 get_mq (struct GNUNET_CONTAINER_MultiPeerMap *peer_map,
578         const struct GNUNET_PeerIdentity *peer_id)
579 {
580   struct PeerContext *ctx;
581
582   ctx = get_peer_ctx (peer_map, peer_id);
583   if (NULL == ctx->mq)
584   {
585     (void) get_channel (peer_map, peer_id);
586     ctx->mq = GNUNET_CADET_mq_create (ctx->send_channel);
587     //do I have to explicitly put it in the peer_map?
588     (void) GNUNET_CONTAINER_multipeermap_put (peer_map, peer_id, ctx,
589                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
590   }
591   return ctx->mq;
592 }
593
594
595 /**
596  * Sum all time relatives of an array.
597   */
598   struct GNUNET_TIME_Relative
599 T_relative_sum (const struct GNUNET_TIME_Relative *rel_array, uint32_t arr_size)
600 {
601   struct GNUNET_TIME_Relative sum;
602   uint32_t i;
603
604   sum = GNUNET_TIME_UNIT_ZERO;
605   for ( i = 0 ; i < arr_size ; i++ )
606   {
607     sum = GNUNET_TIME_relative_add (sum, rel_array[i]);
608   }
609   return sum;
610 }
611
612
613 /**
614  * Compute the average of given time relatives.
615  */
616   struct GNUNET_TIME_Relative
617 T_relative_avg (const struct GNUNET_TIME_Relative *rel_array, uint32_t arr_size)
618 {
619   return GNUNET_TIME_relative_divide (T_relative_sum (rel_array, arr_size), arr_size);
620 }
621
622
623 /**
624  * Insert PeerID in #pull_list
625  *
626  * Called once we know a peer is live.
627  */
628   void
629 insert_in_pull_list (void *cls, const struct GNUNET_PeerIdentity *peer)
630 {
631   if (GNUNET_NO == in_arr (pull_list, pull_list_size, peer))
632     GNUNET_array_append (pull_list, pull_list_size, *peer);
633 }
634
635 /**
636  * Check whether #insert_in_pull_list was already scheduled
637  */
638   int
639 insert_in_pull_list_scheduled (const struct PeerContext *peer_ctx)
640 {
641   unsigned int i;
642
643   for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
644     if (insert_in_pull_list == peer_ctx->outstanding_ops[i].op)
645       return GNUNET_YES;
646   return GNUNET_NO;
647 }
648
649
650 /**
651  * Insert PeerID in #gossip_list
652  *
653  * Called once we know a peer is live.
654  */
655   void
656 insert_in_gossip_list (void *cls, const struct GNUNET_PeerIdentity *peer)
657 {
658   if (GNUNET_NO == in_arr (gossip_list, gossip_list_size, peer))
659     GNUNET_array_append (gossip_list, gossip_list_size, *peer);
660 }
661
662 /**
663  * Check whether #insert_in_pull_list was already scheduled
664  */
665   int
666 insert_in_gossip_list_scheduled (const struct PeerContext *peer_ctx)
667 {
668   unsigned int i;
669
670   for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
671     if (insert_in_gossip_list == peer_ctx->outstanding_ops[i].op)
672       return GNUNET_YES;
673   return GNUNET_NO;
674 }
675
676
677 /**
678  * Update sampler with given PeerID.
679  */
680   void
681 insert_in_sampler (void *cls, const struct GNUNET_PeerIdentity *peer)
682 {
683   RPS_sampler_update_list (peer);
684 }
685
686 /**
687  * Check whether #insert_in_sampler was already scheduled
688  */
689   int
690 insert_in_sampler_scheduled (const struct PeerContext *peer_ctx)
691 {
692   unsigned int i;
693
694   for ( i = 0 ; i < peer_ctx->num_outstanding_ops ; i++ )
695     if (insert_in_sampler== peer_ctx->outstanding_ops[i].op)
696       return GNUNET_YES;
697   return GNUNET_NO;
698 }
699
700
701 /**
702  * Wrapper around #RPS_sampler_resize()
703  */
704   void
705 resize_wrapper ()
706 {
707   uint32_t bigger_size;
708
709   // TODO statistics
710
711   if (sampler_size_est_need > sampler_size_client_need)
712     bigger_size = sampler_size_client_need;
713   else
714     bigger_size = sampler_size_est_need;
715
716   // TODO respect the request rate, min, max
717   if (sampler_size > bigger_size*4)
718   { /* Shrinking */
719     RPS_sampler_resize (sampler_size/2);
720   }
721   else if (sampler_size < bigger_size)
722   { /* Growing */
723     RPS_sampler_resize (sampler_size*2);
724   }
725 }
726
727
728 /***********************************************************************
729  * /Util functions
730 ***********************************************************************/
731
732 /**
733  * Function called by NSE.
734  *
735  * Updates sizes of sampler list and gossip list and adapt those lists
736  * accordingly.
737  */
738   void
739 nse_callback (void *cls, struct GNUNET_TIME_Absolute timestamp, double logestimate, double std_dev)
740 {
741   double estimate;
742   //double scale; // TODO this might go gloabal/config
743
744   LOG (GNUNET_ERROR_TYPE_DEBUG,
745       "Received a ns estimate - logest: %f, std_dev: %f (old_size: %f)\n",
746       logestimate, std_dev, sampler_size);
747   //scale = .01;
748   estimate = GNUNET_NSE_log_estimate_to_n (logestimate);
749   // GNUNET_NSE_log_estimate_to_n (logestimate);
750   estimate = pow (estimate, 1./3);
751   // TODO add if std_dev is a number
752   // estimate += (std_dev * scale);
753   if ( 0 < estimate ) {
754     LOG (GNUNET_ERROR_TYPE_DEBUG, "Changing estimate to %f\n", estimate);
755     sampler_size_est_need = estimate;
756   } else
757     LOG (GNUNET_ERROR_TYPE_DEBUG, "Not using estimate %f\n", estimate);
758
759   /* If the NSE has changed adapt the lists accordingly */
760   resize_wrapper ();
761 }
762
763
764 /**
765  * Callback called once the requested PeerIDs are ready.
766  *
767  * Sends those to the requesting client.
768  */
769 void client_respond (void *cls,
770     struct GNUNET_PeerIdentity *ids, uint32_t num_peers)
771 {
772   LOG (GNUNET_ERROR_TYPE_DEBUG, "sampler returned %" PRIX32 " peers\n", num_peers);
773   struct GNUNET_MQ_Envelope *ev;
774   struct GNUNET_RPS_CS_ReplyMessage *out_msg;
775   struct GNUNET_SERVER_Client *client;
776   struct client_ctx *cli_ctx;
777
778   client = (struct GNUNET_SERVER_Client *) cls;
779
780   ev = GNUNET_MQ_msg_extra (out_msg,
781                             num_peers * sizeof (struct GNUNET_PeerIdentity),
782                             GNUNET_MESSAGE_TYPE_RPS_CS_REPLY);
783   out_msg->num_peers = htonl (num_peers);
784
785   memcpy (&out_msg[1],
786       ids,
787       num_peers * sizeof (struct GNUNET_PeerIdentity));
788   GNUNET_free (ids);
789   
790   cli_ctx = GNUNET_SERVER_client_get_user_context (client, struct client_ctx);
791   if ( NULL == cli_ctx ) {
792     cli_ctx = GNUNET_new (struct client_ctx);
793     cli_ctx->mq = GNUNET_MQ_queue_for_server_client (client);
794     GNUNET_SERVER_client_set_user_context (client, cli_ctx);
795   }
796   
797   GNUNET_MQ_send (cli_ctx->mq, ev);
798 }
799
800
801 /**
802  * Handle RPS request from the client.
803  *
804  * @param cls closure
805  * @param client identification of the client
806  * @param message the actual message
807  */
808 static void
809 handle_client_request (void *cls,
810             struct GNUNET_SERVER_Client *client,
811             const struct GNUNET_MessageHeader *message)
812 {
813   struct GNUNET_RPS_CS_RequestMessage *msg;
814   uint32_t num_peers;
815   struct GNUNET_TIME_Relative max_round_duration;
816
817
818   /* Estimate request rate */
819   if (request_deltas_size > req_counter)
820     req_counter++;
821   if ( 1 < req_counter)
822   {
823     /* Shift last request deltas to the right */
824     memcpy (&request_deltas[1],
825         request_deltas,
826         (req_counter - 1) * sizeof (struct GNUNET_TIME_Relative));
827     /* Add current delta to beginning */
828     request_deltas[0] = GNUNET_TIME_absolute_get_difference (last_request,
829         GNUNET_TIME_absolute_get ());
830     request_rate = T_relative_avg (request_deltas, req_counter);
831
832     max_round_duration = GNUNET_TIME_relative_add (round_interval,
833         GNUNET_TIME_relative_divide (round_interval, 2));
834     sampler_size_client_need = max_round_duration.rel_value_us / request_rate.rel_value_us;
835
836     resize_wrapper ();
837   }
838   last_request = GNUNET_TIME_absolute_get ();
839
840
841   // TODO check message size
842   msg = (struct GNUNET_RPS_CS_RequestMessage *) message;
843
844   num_peers = ntohl (msg->num_peers);
845
846   LOG (GNUNET_ERROR_TYPE_DEBUG, "Client requested %" PRIX32 " random peer(s).\n", num_peers);
847
848   RPS_sampler_get_n_rand_peers (client_respond, client, num_peers, GNUNET_YES);
849
850   GNUNET_SERVER_receive_done (client,
851                               GNUNET_OK);
852 }
853
854
855 /**
856  * Handle seed from the client.
857  *
858  * @param cls closure
859  * @param client identification of the client
860  * @param message the actual message
861  */
862   static void
863 handle_client_seed (void *cls,
864             struct GNUNET_SERVER_Client *client,
865             const struct GNUNET_MessageHeader *message)
866 {
867   struct GNUNET_RPS_CS_SeedMessage *in_msg;
868   struct GNUNET_PeerIdentity *peers;
869   uint32_t i;
870
871   if (sizeof (struct GNUNET_RPS_CS_SeedMessage) < ntohs (message->size))
872   {
873     GNUNET_break_op (0);
874     GNUNET_SERVER_receive_done (client,
875               GNUNET_SYSERR);
876   }
877   in_msg = (struct GNUNET_RPS_CS_SeedMessage *) message;
878   if ((ntohs (message->size) - sizeof (struct GNUNET_RPS_CS_SeedMessage)) /
879       sizeof (struct GNUNET_PeerIdentity) != ntohl (in_msg->num_peers))
880   {
881     GNUNET_break_op (0);
882     GNUNET_SERVER_receive_done (client,
883               GNUNET_SYSERR);
884   }
885
886   in_msg = (struct GNUNET_RPS_CS_SeedMessage *) message;
887   peers = (struct GNUNET_PeerIdentity *) &message[1];
888
889   for ( i = 0 ; i < ntohl (in_msg->num_peers) ; i++ )
890     RPS_sampler_update_list (&peers[i]);
891
892   GNUNET_SERVER_receive_done (client,
893                               GNUNET_OK);
894 }
895
896
897 /**
898  * Handle a PUSH message from another peer.
899  *
900  * Check the proof of work and store the PeerID
901  * in the temporary list for pushed PeerIDs.
902  *
903  * @param cls Closure
904  * @param channel The channel the PUSH was received over
905  * @param channel_ctx The context associated with this channel
906  * @param msg The message header
907  */
908 static int
909 handle_peer_push (void *cls,
910     struct GNUNET_CADET_Channel *channel,
911     void **channel_ctx,
912     const struct GNUNET_MessageHeader *msg)
913 {
914   const struct GNUNET_PeerIdentity *peer;
915
916   // (check the proof of work) 
917   
918   peer = (const struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (channel, GNUNET_CADET_OPTION_PEER);
919   // FIXME wait for cadet to change this function
920   LOG (GNUNET_ERROR_TYPE_DEBUG, "PUSH received (%s)\n", GNUNET_i2s (peer));
921   
922   /* Add the sending peer to the push_list */
923   if (GNUNET_NO == in_arr (push_list, pull_list_size, peer))
924     GNUNET_array_append (push_list, push_list_size, *peer);
925
926   return GNUNET_OK;
927 }
928
929 /**
930  * Handle PULL REQUEST request message from another peer.
931  *
932  * Reply with the gossip list of PeerIDs.
933  *
934  * @param cls Closure
935  * @param channel The channel the PUSH was received over
936  * @param channel_ctx The context associated with this channel
937  * @param msg The message header
938  */
939 static int
940 handle_peer_pull_request (void *cls,
941     struct GNUNET_CADET_Channel *channel,
942     void **channel_ctx,
943     const struct GNUNET_MessageHeader *msg)
944 {
945   struct GNUNET_PeerIdentity *peer;
946   struct GNUNET_MQ_Handle *mq;
947   struct GNUNET_MQ_Envelope *ev;
948   struct GNUNET_RPS_P2P_PullReplyMessage *out_msg;
949
950
951   peer = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (channel,
952                                                                        GNUNET_CADET_OPTION_PEER);
953   // FIXME wait for cadet to change this function
954   LOG (GNUNET_ERROR_TYPE_DEBUG,
955       "PULL REQUEST from peer %s received, going to send %u peers\n",
956       GNUNET_i2s (peer), gossip_list_size);
957
958   mq = get_mq (peer_map, peer);
959
960   ev = GNUNET_MQ_msg_extra (out_msg,
961                            gossip_list_size * sizeof (struct GNUNET_PeerIdentity),
962                            GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY);
963   //out_msg->num_peers = htonl (gossip_list_size);
964   out_msg->num_peers = htonl (gossip_list_size);
965   memcpy (&out_msg[1], gossip_list,
966          gossip_list_size * sizeof (struct GNUNET_PeerIdentity));
967
968   GNUNET_MQ_send (mq, ev);
969
970   return GNUNET_OK;
971 }
972
973 /**
974  * Handle PULL REPLY message from another peer.
975  *
976  * Check whether we sent a corresponding request and
977  * whether this reply is the first one.
978  *
979  * @param cls Closure
980  * @param channel The channel the PUSH was received over
981  * @param channel_ctx The context associated with this channel
982  * @param msg The message header
983  */
984   static int
985 handle_peer_pull_reply (void *cls,
986     struct GNUNET_CADET_Channel *channel,
987     void **channel_ctx,
988     const struct GNUNET_MessageHeader *msg)
989 {
990   LOG (GNUNET_ERROR_TYPE_DEBUG, "PULL REPLY received\n");
991
992   struct GNUNET_RPS_P2P_PullReplyMessage *in_msg;
993   struct GNUNET_PeerIdentity *peers;
994   struct PeerContext *peer_ctx;
995   struct GNUNET_PeerIdentity *sender;
996   struct PeerContext *sender_ctx;
997   struct PeerOutstandingOp out_op;
998   uint32_t i;
999
1000   if (sizeof (struct GNUNET_RPS_P2P_PullReplyMessage) > ntohs (msg->size))
1001   {
1002     GNUNET_break_op (0); // At the moment our own implementation seems to break that.
1003     return GNUNET_SYSERR;
1004   }
1005   in_msg = (struct GNUNET_RPS_P2P_PullReplyMessage *) msg;
1006   if ((ntohs (msg->size) - sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) / sizeof (struct GNUNET_PeerIdentity) != ntohl (in_msg->num_peers))
1007   {
1008     LOG (GNUNET_ERROR_TYPE_ERROR, "message says it sends %" PRIu64 " peers, have space for %i peers\n",
1009         ntohl (in_msg->num_peers),
1010         (ntohs (msg->size) - sizeof (struct GNUNET_RPS_P2P_PullReplyMessage)) / sizeof (struct GNUNET_PeerIdentity));
1011     GNUNET_break_op (0);
1012     return GNUNET_SYSERR;
1013   }
1014
1015   sender = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (
1016       (struct GNUNET_CADET_Channel *) channel, GNUNET_CADET_OPTION_PEER);
1017        // Guess simply casting isn't the nicest way...
1018        // FIXME wait for cadet to change this function
1019   sender_ctx = get_peer_ctx (peer_map, sender);
1020
1021   if (0 == (peer_ctx->peer_flags || PULL_REPLY_PENDING))
1022   {
1023     GNUNET_break_op (0);
1024     return GNUNET_OK;
1025   }
1026
1027   peers = (struct GNUNET_PeerIdentity *) &msg[1];
1028   for ( i = 0 ; i < ntohl (in_msg->num_peers) ; i++ )
1029   {
1030     peer_ctx = get_peer_ctx (peer_map, &peers[i]);
1031     if ((0 != (peer_ctx->peer_flags && LIVING)) ||
1032         NULL != peer_ctx->recv_channel)
1033     {
1034       if (GNUNET_NO == in_arr (pull_list, pull_list_size, &peers[i]))
1035         GNUNET_array_append (pull_list, pull_list_size, peers[i]);
1036     }
1037     else if (GNUNET_NO == insert_in_pull_list_scheduled (peer_ctx))
1038     {
1039       out_op.op = insert_in_pull_list;
1040       GNUNET_array_append (peer_ctx->outstanding_ops, peer_ctx->num_outstanding_ops, out_op);
1041     }
1042   }
1043
1044   sender_ctx->peer_flags &= (~PULL_REPLY_PENDING);
1045   rem_from_list (pending_pull_reply_list, &pending_pull_reply_list_size, sender);
1046
1047   return GNUNET_OK;
1048 }
1049
1050
1051 /**
1052  * Send out PUSHes and PULLs.
1053  *
1054  * This is executed regylary.
1055  */
1056 static void
1057 do_round (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1058 {
1059   LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round\n");
1060
1061   uint32_t i;
1062   unsigned int *permut;
1063   unsigned int n_peers; /* Number of peers we send pushes/pulls to */
1064   struct GNUNET_MQ_Envelope *ev;
1065   const struct GNUNET_PeerIdentity *peer;
1066   struct GNUNET_MQ_Handle *mq;
1067
1068   // TODO log lists, ...
1069
1070
1071   /* Would it make sense to have one shuffeled gossip list and then
1072    * to send PUSHes to first alpha peers, PULL requests to next beta peers and
1073    * use the rest to update sampler?
1074    * in essence get random peers with consumption */
1075
1076   /* Send PUSHes */
1077   if (0 < gossip_list_size)
1078   {
1079     permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG,
1080                                            (unsigned int) gossip_list_size);
1081     if (0 != gossip_list_size)
1082     {
1083       n_peers = round (alpha * gossip_list_size);
1084       if (0 == n_peers)
1085         n_peers = 1;
1086       LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to send pushes to %u (%f * %u) peers.\n",
1087           n_peers, alpha, gossip_list_size);
1088       for ( i = 0 ; i < n_peers ; i++ )
1089       {
1090         // TODO
1091         //peer = get_rand_peer_ignore_list (gossip_list, gossip_list_size,
1092         //                                  NULL, 0);
1093         peer = &gossip_list[permut[i]];
1094         if (own_identity != peer) // TODO
1095         { // FIXME if this fails schedule/loop this for later
1096           LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending PUSH to peer %s of gossiped list.\n", GNUNET_i2s (peer));
1097
1098           ev = GNUNET_MQ_msg_header (GNUNET_MESSAGE_TYPE_RPS_PP_PUSH);
1099           // FIXME sometimes it returns a pointer to a freed mq
1100           mq = get_mq (peer_map, peer);
1101           GNUNET_MQ_send (mq, ev);
1102         }
1103       }
1104     }
1105   }
1106
1107
1108   /* Send PULL requests */
1109   //permut = GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_STRONG, (unsigned int) sampler_list->size);
1110   if (0 != gossip_list_size)
1111   {
1112     n_peers = round (beta * gossip_list_size);
1113     if (0 == n_peers)
1114       n_peers = 1;
1115     LOG (GNUNET_ERROR_TYPE_DEBUG, "Going to send pulls to %u (%f * %u) peers.\n",
1116         n_peers, beta, gossip_list_size);
1117     for ( i = 0 ; i < n_peers ; i++ )
1118     {
1119       peer = get_rand_peer_ignore_list (gossip_list, gossip_list_size,
1120                                         pending_pull_reply_list, pending_pull_reply_list_size);
1121       if (NULL != peer)
1122       {
1123         GNUNET_array_append (pending_pull_reply_list, pending_pull_reply_list_size, *peer);
1124
1125         if (own_identity != peer)
1126         { // FIXME if this fails schedule/loop this for later
1127           LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending PULL request to peer %s of gossiped list.\n", GNUNET_i2s (peer));
1128
1129           ev = GNUNET_MQ_msg_header (GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST);
1130           //pull_msg = NULL;
1131           mq = get_mq (peer_map, peer);
1132           GNUNET_MQ_send (mq, ev);
1133         }
1134       }
1135     }
1136   }
1137
1138
1139   /* Update gossip list */
1140   uint32_t r_index;
1141
1142   if ( push_list_size <= alpha * gossip_list_size &&
1143        push_list_size != 0 &&
1144        pull_list_size != 0 )
1145   {
1146     LOG (GNUNET_ERROR_TYPE_DEBUG, "Update of the gossip list.\n");
1147
1148     uint32_t first_border;
1149     uint32_t second_border;
1150     
1151     first_border = round (alpha * sampler_size_est_need);
1152     second_border = first_border + round (beta * sampler_size_est_need);
1153
1154     GNUNET_array_grow (gossip_list, gossip_list_size, second_border);
1155
1156     for ( i = 0 ; i < first_border ; i++ )
1157     { // TODO use RPS_sampler_get_n_rand_peers
1158       /* Update gossip list with peers received through PUSHes */
1159       r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
1160                                        push_list_size);
1161       gossip_list[i] = push_list[r_index];
1162       // TODO change the peer_flags accordingly
1163     }
1164
1165     for ( i = first_border ; i < second_border ; i++ )
1166     {
1167       /* Update gossip list with peers received through PULLs */
1168       r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
1169                                        pull_list_size);
1170       gossip_list[i] = pull_list[r_index];
1171       // TODO change the peer_flags accordingly
1172     }
1173
1174     for ( i = second_border ; i < gossip_list_size ; i++ )
1175     {
1176       /* Update gossip list with peers from history */
1177       RPS_sampler_get_n_rand_peers (hist_update, NULL, 1, GNUNET_NO);
1178       num_hist_update_tasks++;
1179       // TODO change the peer_flags accordingly
1180     }
1181
1182   }
1183   else
1184   {
1185     LOG (GNUNET_ERROR_TYPE_DEBUG, "No update of the gossip list. ()\n");
1186   }
1187   // TODO independent of that also get some peers from CADET_get_peers()?
1188
1189
1190   /* Update samplers */
1191
1192   for ( i = 0 ; i < push_list_size ; i++ )
1193   {
1194     RPS_sampler_update_list (&push_list[i]);
1195     // TODO set in_flag?
1196   }
1197
1198   for ( i = 0 ; i < pull_list_size ; i++ )
1199   {
1200     RPS_sampler_update_list (&pull_list[i]);
1201     // TODO set in_flag?
1202   }
1203
1204
1205   /* Empty push/pull lists */
1206   GNUNET_array_grow (push_list, push_list_size, 0);
1207   GNUNET_array_grow (pull_list, pull_list_size, 0);
1208
1209   struct GNUNET_TIME_Relative time_next_round;
1210   struct GNUNET_TIME_Relative half_round_interval;
1211   unsigned int rand_delay;
1212
1213   /* Compute random time value between .5 * round_interval and 1.5 *round_interval */
1214   half_round_interval = GNUNET_TIME_relative_divide (round_interval, 2);
1215   do
1216   {
1217   /*
1218    * Compute random value between (0 and 1) * round_interval
1219    * via multiplying round_interval with a 'fraction' (0 to value)/value
1220    */
1221   rand_delay = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, UINT_MAX/10);
1222   time_next_round = GNUNET_TIME_relative_multiply (round_interval,  rand_delay);
1223   time_next_round = GNUNET_TIME_relative_divide   (time_next_round, UINT_MAX/10);
1224   time_next_round = GNUNET_TIME_relative_add      (time_next_round, half_round_interval);
1225   } while (GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us == time_next_round.rel_value_us);
1226
1227   /* Schedule next round */
1228   do_round_task = GNUNET_SCHEDULER_add_delayed (round_interval, &do_round, NULL);
1229   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
1230 }
1231
1232
1233 /**
1234  * Open a connection to given peer and store channel and mq.
1235  */
1236   void
1237 insertCB (void *cls, const struct GNUNET_PeerIdentity *id)
1238 {
1239   // We open a channel to be notified when this peer goes down.
1240   (void) get_channel (peer_map, id);
1241 }
1242
1243
1244 /**
1245  * Close the connection to given peer and delete channel and mq.
1246  */
1247   void
1248 removeCB (void *cls, const struct GNUNET_PeerIdentity *id)
1249 {
1250   size_t s;
1251   struct PeerContext *ctx;
1252
1253   s = RPS_sampler_count_id (id);
1254   if ( 1 >= s )
1255   {
1256     if (GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains (peer_map, id))
1257     {
1258       ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, id);
1259       if (NULL != ctx->send_channel)
1260       {
1261         if (NULL != ctx->mq)
1262         {
1263           GNUNET_MQ_destroy (ctx->mq);
1264         }
1265         // may already be freed at shutdown of cadet
1266         //GNUNET_CADET_channel_destroy (ctx->send_channel);
1267       }
1268       // TODO cleanup peer
1269       (void) GNUNET_CONTAINER_multipeermap_remove_all (peer_map, id);
1270     }
1271   }
1272 }
1273
1274 static void
1275 rps_start (struct GNUNET_SERVER_Handle *server);
1276
1277 /**
1278  * This is called from GNUNET_CADET_get_peers().
1279  *
1280  * It is called on every peer(ID) that cadet somehow has contact with.
1281  * We use those to initialise the sampler.
1282  */
1283 void
1284 init_peer_cb (void *cls,
1285               const struct GNUNET_PeerIdentity *peer,
1286               int tunnel, // "Do we have a tunnel towards this peer?"
1287               unsigned int n_paths, // "Number of known paths towards this peer"
1288               unsigned int best_path) // "How long is the best path?
1289                                       // (0 = unknown, 1 = ourselves, 2 = neighbor)"
1290 {
1291   struct GNUNET_SERVER_Handle *server;
1292   struct PeerOutstandingOp out_op;
1293   struct PeerContext *peer_ctx;
1294
1295   server = (struct GNUNET_SERVER_Handle *) cls;
1296   if ( NULL != peer )
1297   {
1298     LOG (GNUNET_ERROR_TYPE_DEBUG,
1299         "Got peer %s (at %p) from CADET (gossip_list_size: %u)\n",
1300         GNUNET_i2s (peer), peer, gossip_list_size);
1301
1302     // maybe create a function for that
1303     peer_ctx = get_peer_ctx (peer_map, peer);
1304     if (GNUNET_NO == insert_in_sampler_scheduled (peer_ctx))
1305     {
1306       out_op.op = insert_in_sampler;
1307       GNUNET_array_append (peer_ctx->outstanding_ops, peer_ctx->num_outstanding_ops, out_op);
1308     }
1309
1310     if (GNUNET_NO == insert_in_gossip_list_scheduled (peer_ctx))
1311     {
1312       out_op.op = insert_in_gossip_list;
1313       GNUNET_array_append (peer_ctx->outstanding_ops, peer_ctx->num_outstanding_ops, out_op);
1314     }
1315
1316     /* Issue livelyness test on peer */
1317     (void) get_channel (peer_map, peer);
1318
1319     // send push/pull to each of those peers?
1320   }
1321   else
1322     rps_start (server);
1323 }
1324
1325
1326 /**
1327  * Callback used to clean the multipeermap.
1328  */
1329   int
1330 peer_remove_cb (void *cls, const struct GNUNET_PeerIdentity *key, void *value)
1331 {
1332   struct PeerContext *peer_ctx;
1333
1334   peer_ctx = (struct PeerContext *) value;
1335
1336   if ( NULL != peer_ctx->mq)
1337     GNUNET_MQ_destroy (peer_ctx->mq);
1338
1339   if ( NULL != peer_ctx->is_live_task)
1340     GNUNET_CADET_notify_transmit_ready_cancel (peer_ctx->is_live_task);
1341
1342   if ( NULL != peer_ctx->send_channel)
1343     GNUNET_CADET_channel_destroy (peer_ctx->send_channel);
1344   
1345   if ( NULL != peer_ctx->recv_channel)
1346     GNUNET_CADET_channel_destroy (peer_ctx->recv_channel);
1347
1348   if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_remove_all (peer_map, key))
1349     LOG (GNUNET_ERROR_TYPE_WARNING, "removing peer from peer_map failed\n");
1350   
1351   return GNUNET_YES;
1352 }
1353
1354
1355 /**
1356  * Task run during shutdown.
1357  *
1358  * @param cls unused
1359  * @param tc unused
1360  */
1361 static void
1362 shutdown_task (void *cls,
1363                const struct GNUNET_SCHEDULER_TaskContext *tc)
1364 {
1365   LOG (GNUNET_ERROR_TYPE_DEBUG, "RPS is going down\n");
1366
1367   if ( NULL != do_round_task )
1368   {
1369     GNUNET_SCHEDULER_cancel (do_round_task);
1370     do_round_task = NULL;
1371   }
1372
1373   
1374   if (GNUNET_SYSERR == GNUNET_CONTAINER_multipeermap_iterate (peer_map, peer_remove_cb, NULL))
1375     LOG (GNUNET_ERROR_TYPE_WARNING,
1376         "Iterating over peers to disconnect from them was cancelled\n");
1377
1378   GNUNET_CONTAINER_multipeermap_destroy (peer_map);
1379
1380   GNUNET_NSE_disconnect (nse);
1381   GNUNET_CADET_disconnect (cadet_handle);
1382   GNUNET_free (own_identity);
1383   RPS_sampler_destroy ();
1384   GNUNET_array_grow (request_deltas, request_deltas_size, 0);
1385   GNUNET_array_grow (gossip_list, gossip_list_size, 0);
1386   GNUNET_array_grow (push_list, push_list_size, 0);
1387   GNUNET_array_grow (pull_list, pull_list_size, 0);
1388 }
1389
1390
1391 /**
1392  * A client disconnected.  Remove all of its data structure entries.
1393  *
1394  * @param cls closure, NULL
1395  * @param client identification of the client
1396  */
1397 static void
1398 handle_client_disconnect (void *cls,
1399                           struct GNUNET_SERVER_Client * client)
1400 {
1401 }
1402
1403 /**
1404  * Handle the channel a peer opens to us.
1405  *
1406  * @param cls The closure
1407  * @param channel The channel the peer wants to establish
1408  * @param initiator The peer's peer ID
1409  * @param port The port the channel is being established over
1410  * @param options Further options
1411  */
1412   static void *
1413 handle_inbound_channel (void *cls,
1414                         struct GNUNET_CADET_Channel *channel,
1415                         const struct GNUNET_PeerIdentity *initiator,
1416                         uint32_t port,
1417                         enum GNUNET_CADET_ChannelOption options)
1418 {
1419   struct PeerContext *ctx;
1420
1421   LOG (GNUNET_ERROR_TYPE_DEBUG,
1422       "New channel was established to us (Peer %s).\n",
1423       GNUNET_i2s (initiator));
1424
1425   GNUNET_assert (NULL != channel);
1426
1427   // we might not even store the recv_channel
1428
1429   ctx = get_peer_ctx (peer_map, initiator);
1430   if (NULL != ctx->recv_channel)
1431   {
1432     ctx->recv_channel = channel;
1433   }
1434
1435   // FIXME there might already be an established channel
1436
1437   //ctx->peer_flags = IN_OTHER_GOSSIP_LIST;
1438   ctx->mq = NULL; // TODO create mq?
1439
1440   (void) GNUNET_CONTAINER_multipeermap_put (peer_map, initiator, ctx,
1441       GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
1442   return NULL; // TODO
1443 }
1444
1445 /**
1446  * This is called when a remote peer destroys a channel.
1447  *
1448  * @param cls The closure
1449  * @param channel The channel being closed
1450  * @param channel_ctx The context associated with this channel
1451  */
1452   static void
1453 cleanup_channel (void *cls,
1454                 const struct GNUNET_CADET_Channel *channel,
1455                 void *channel_ctx)
1456 {
1457   struct GNUNET_PeerIdentity *peer;
1458   struct PeerContext *peer_ctx;
1459
1460   LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel to remote peer was destroyed.\n");
1461
1462   peer = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info (
1463       (struct GNUNET_CADET_Channel *) channel, GNUNET_CADET_OPTION_PEER);
1464        // Guess simply casting isn't the nicest way...
1465        // FIXME wait for cadet to change this function
1466   RPS_sampler_reinitialise_by_value (peer);
1467
1468   peer_ctx = GNUNET_CONTAINER_multipeermap_get (peer_map, peer);
1469   /* Somwewhat {ab,re}use the iterator function */
1470   (void) peer_remove_cb (peer, peer, peer_ctx);
1471 }
1472
1473
1474 /**
1475  * Actually start the service.
1476  */
1477   static void
1478 rps_start (struct GNUNET_SERVER_Handle *server)
1479 {
1480   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1481     {&handle_client_request, NULL, GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST,
1482       sizeof (struct GNUNET_RPS_CS_RequestMessage)},
1483     {&handle_client_seed,    NULL, GNUNET_MESSAGE_TYPE_RPS_CS_SEED, 0},
1484     {NULL, NULL, 0, 0}
1485   };
1486
1487   GNUNET_SERVER_add_handlers (server, handlers);
1488   GNUNET_SERVER_disconnect_notify (server,
1489                                    &handle_client_disconnect,
1490                                    NULL);
1491   LOG (GNUNET_ERROR_TYPE_DEBUG, "Ready to receive requests from clients\n");
1492
1493
1494   num_hist_update_tasks = 0;
1495
1496   do_round_task = GNUNET_SCHEDULER_add_now (&do_round, NULL);
1497   LOG (GNUNET_ERROR_TYPE_DEBUG, "Scheduled first round\n");
1498
1499   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1500                                 &shutdown_task,
1501                                 NULL);
1502 }
1503
1504
1505 /**
1506  * Process statistics requests.
1507  *
1508  * @param cls closure
1509  * @param server the initialized server
1510  * @param c configuration to use
1511  */
1512   static void
1513 run (void *cls,
1514      struct GNUNET_SERVER_Handle *server,
1515      const struct GNUNET_CONFIGURATION_Handle *c)
1516 {
1517   // TODO check what this does -- copied from gnunet-boss
1518   // - seems to work as expected
1519   GNUNET_log_setup ("rps", GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_DEBUG), NULL);
1520
1521   LOG (GNUNET_ERROR_TYPE_DEBUG, "RPS started\n");
1522
1523
1524   cfg = c;
1525
1526
1527   /* Get own ID */
1528   own_identity = GNUNET_new (struct GNUNET_PeerIdentity);
1529   GNUNET_CRYPTO_get_peer_identity (cfg, own_identity); // TODO check return value
1530   GNUNET_assert (NULL != own_identity);
1531   LOG (GNUNET_ERROR_TYPE_DEBUG, "Own identity is %s (at %p).\n", GNUNET_i2s (own_identity), own_identity);
1532
1533
1534   /* Get time interval from the configuration */
1535   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_time (cfg, "RPS",
1536                                                         "ROUNDINTERVAL",
1537                                                         &round_interval))
1538   {
1539     LOG (GNUNET_ERROR_TYPE_DEBUG, "Failed to read ROUNDINTERVAL from config\n");
1540     GNUNET_SCHEDULER_shutdown ();
1541     return;
1542   }
1543
1544   /* Get initial size of sampler/gossip list from the configuration */
1545   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (cfg, "RPS",
1546                                                          "INITSIZE",
1547                                                          (long long unsigned int *) &sampler_size_est_need))
1548   {
1549     LOG (GNUNET_ERROR_TYPE_DEBUG, "Failed to read INITSIZE from config\n");
1550     GNUNET_SCHEDULER_shutdown ();
1551     return;
1552   }
1553   LOG (GNUNET_ERROR_TYPE_DEBUG, "INITSIZE is %" PRIu64 "\n", sampler_size_est_need);
1554
1555
1556   gossip_list = NULL;
1557
1558
1559   /* connect to NSE */
1560   nse = GNUNET_NSE_connect (cfg, nse_callback, NULL);
1561   // TODO check whether that was successful
1562   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connected to NSE\n");
1563
1564
1565   alpha = 0.45;
1566   beta  = 0.45;
1567
1568   peer_map = GNUNET_CONTAINER_multipeermap_create (sampler_size_est_need, GNUNET_NO);
1569
1570
1571   /* Initialise cadet */
1572   static const struct GNUNET_CADET_MessageHandler cadet_handlers[] = {
1573     {&handle_peer_push        , GNUNET_MESSAGE_TYPE_RPS_PP_PUSH        ,
1574       sizeof (struct GNUNET_MessageHeader)},
1575     {&handle_peer_pull_request, GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST,
1576       sizeof (struct GNUNET_MessageHeader)},
1577     {&handle_peer_pull_reply  , GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY  , 0},
1578     {NULL, 0, 0}
1579   };
1580
1581   const uint32_t ports[] = {GNUNET_RPS_CADET_PORT, 0}; // _PORT specified in src/rps/rps.h
1582   cadet_handle = GNUNET_CADET_connect (cfg,
1583                                        cls,
1584                                        &handle_inbound_channel,
1585                                        &cleanup_channel,
1586                                        cadet_handlers,
1587                                        ports);
1588   LOG (GNUNET_ERROR_TYPE_DEBUG, "Connected to CADET\n");
1589
1590
1591   /* Initialise sampler */
1592   struct GNUNET_TIME_Relative half_round_interval;
1593   struct GNUNET_TIME_Relative  max_round_interval;
1594
1595   half_round_interval = GNUNET_TIME_relative_multiply (round_interval, .5);
1596   max_round_interval = GNUNET_TIME_relative_add (round_interval, half_round_interval);
1597
1598   RPS_sampler_init (sampler_size_est_need, max_round_interval,
1599       insertCB, NULL, removeCB, NULL);
1600   sampler_size = sampler_size_est_need;
1601
1602   /* Initialise push and pull maps */
1603   push_list = NULL;
1604   push_list_size = 0;
1605   pull_list = NULL;
1606   pull_list_size = 0;
1607   pending_pull_reply_list = NULL;
1608   pending_pull_reply_list_size = 0;
1609
1610
1611   LOG (GNUNET_ERROR_TYPE_DEBUG, "Requesting peers from CADET\n");
1612   GNUNET_CADET_get_peers (cadet_handle, &init_peer_cb, server);
1613
1614   // TODO send push/pull to each of those peers?
1615 }
1616
1617
1618 /**
1619  * The main function for the rps service.
1620  *
1621  * @param argc number of arguments from the command line
1622  * @param argv command line arguments
1623  * @return 0 ok, 1 on error
1624  */
1625   int
1626 main (int argc, char *const *argv)
1627 {
1628   return (GNUNET_OK ==
1629           GNUNET_SERVICE_run (argc,
1630                               argv,
1631                               "rps",
1632                               GNUNET_SERVICE_OPTION_NONE,
1633                               &run, NULL)) ? 0 : 1;
1634 }
1635
1636 /* end of gnunet-service-rps.c */