Got rid of SList
[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 <math.h>
33 #include <inttypes.h>
34
35 #define LOG(kind, ...) GNUNET_log(kind, __VA_ARGS__)
36
37 // TODO modify @brief in every file
38
39 // TODO take care that messages are not longer than 64k
40
41 // TODO check for overflows
42
43 // TODO align message structs
44
45 // TODO multipeerlist indep of gossiped list
46
47 // (TODO api -- possibility of getting weak random peer immideately)
48
49 // TODO malicious peer
50
51 // TODO switch Slist -> DLL
52
53 /**
54  * Our configuration.
55  */
56 static const struct GNUNET_CONFIGURATION_Handle *cfg;
57
58 /**
59  * Our own identity.
60  */
61 struct GNUNET_PeerIdentity *own_identity;
62
63 /**
64  * Compare two peer identities. Taken from secretsharing.
65  *
66  * @param p1 Some peer identity.
67  * @param p2 Some peer identity.
68  * @return 1 if p1 > p2, -1 if p1 < p2 and 0 if p1 == p2.
69  */
70 static int
71 peer_id_cmp (const void *p1, const void *p2)
72 {
73   return memcmp (p1, p2, sizeof (struct GNUNET_PeerIdentity));
74 }
75
76 /***********************************************************************
77  * Sampler
78  *
79  * WARNING: This section needs to be reviewed regarding the use of
80  * functions providing (pseudo)randomness!
81 ***********************************************************************/
82
83 // TODO care about invalid input of the caller (size 0 or less...)
84
85 /**
86  * A sampler sampling PeerIDs.
87  */
88 struct Sampler
89 {
90   /**
91    * Min-wise linear permutation used by this sampler.
92    *
93    * This is an key later used by a hmac.
94    */
95   struct GNUNET_CRYPTO_AuthKey auth_key;
96
97   /**
98    * The PeerID this sampler currently samples.
99    */
100   struct GNUNET_PeerIdentity *peer_id;
101
102   /**
103    * The according hash value of this PeerID.
104    */
105   struct GNUNET_HashCode peer_id_hash;
106
107   /**
108    * Samplers are kept in a linked list.
109    */
110   struct Sampler *next;
111
112   /**
113    * Samplers are kept in a linked list.
114    */
115   struct Sampler *prev;
116
117 };
118
119 /**
120  * A n-tuple of samplers.
121  */
122 struct Samplers
123 {
124   /**
125    * Number of samplers we hold.
126    */
127   size_t size;
128   
129   /**
130    * All PeerIDs in one array.
131    */
132   struct GNUNET_PeerIdentity peer_ids[];
133
134   /**
135    * The head of the DLL.
136    */
137   struct Sampler *head;
138
139   /**
140    * The tail of the DLL.
141    */
142   struct Sampler *tail;
143
144 };
145
146
147 typedef void (* SAMPLER_deleteCB) (void *cls, const struct GNUNET_PeerIdentity *id, struct GNUNET_HashCode hash);
148
149 /**
150  * (Re)Initialise given Sampler with random min-wise independent function.
151  *
152  * In this implementation this means choosing an auth_key for later use in
153  * a hmac at random.
154  *
155  * @param id pointer to the place where this sampler will store the PeerID.
156  *           This will be overwritten.
157  */
158   struct Sampler *
159 SAMPLER_init(struct GNUNET_PeerIdentity *id)
160 {
161   struct Sampler *s;
162   
163   s = GNUNET_new(struct Sampler);
164
165   // I guess I don't need to call GNUNET_CRYPTO_hmac_derive_key()...
166   GNUNET_CRYPTO_random_block(GNUNET_CRYPTO_QUALITY_STRONG,
167                              &(s->auth_key.key),
168                              GNUNET_CRYPTO_HASH_LENGTH);
169
170   //s->peer_id = GNUNET_new( struct GNUNET_PeerIdentity );
171   GNUENT_assert(NULL != id);
172   s->peer_id = id;
173   memcpy(s->peer_id, own_identity, sizeof(struct GNUNET_PeerIdentity));
174   //s->peer_id = own_identity; // Maybe set to own PeerID. So we always have
175                      // a valid PeerID in the sampler.
176                      // Maybe take a PeerID as second argument.
177   LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: initialised with PeerID %s (at %p) \n", GNUNET_i2s(s->peer_id), s->peer_id);
178
179   GNUNET_CRYPTO_hmac(&s->auth_key, s->peer_id,
180                      sizeof(struct GNUNET_PeerIdentity),
181                      &s->peer_id_hash);
182
183   s->prev = NULL;
184   s->next = NULL;
185
186   return s;
187 }
188
189 /**
190  * Compare two hashes.
191  *
192  * Returns if the first one is smaller then the second.
193  * Used by SAMPLER_next() to compare hashes.
194  */
195   int
196 hash_cmp(struct GNUNET_HashCode hash1, struct GNUNET_HashCode hash2)
197 {
198   return memcmp( (const void *) &hash1, (const void *) & hash2, sizeof(struct GNUNET_HashCode));
199 }
200
201 /**
202  * Input an PeerID into the given sampler.
203  */
204   static void
205 SAMPLER_next(struct Sampler *s, const struct GNUNET_PeerIdentity *id, SAMPLER_deleteCB del_cb, void *cb_cls)
206   // TODO set id in peer_ids
207 {
208   struct GNUNET_HashCode other_hash;
209
210   if ( id == s->peer_id )
211   {
212     LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER:          Got PeerID %s\n",
213         GNUNET_i2s(id));
214     LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Have already PeerID %s\n",
215         GNUNET_i2s(s->peer_id));
216   }
217   else
218   {
219     GNUNET_CRYPTO_hmac(&s->auth_key,
220         id,
221         sizeof(struct GNUNET_PeerIdentity),
222         &other_hash);
223
224     if ( NULL == s->peer_id )
225     { // Or whatever is a valid way to say
226       // "we have no PeerID at the moment"
227       LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Got PeerID %s; Simply accepting (got NULL previously).\n",
228           GNUNET_i2s(id));
229       memcpy(s->peer_id, id, sizeof(struct GNUNET_PeerIdentity));
230       //s->peer_id = id;
231       s->peer_id_hash = other_hash;
232     }
233     else if ( 0 > hash_cmp(other_hash, s->peer_id_hash) )
234     {
235       LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER:            Got PeerID %s\n",
236           GNUNET_i2s(id));
237       LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Discarding old PeerID %s\n",
238           GNUNET_i2s(s->peer_id));
239
240       if ( NULL != del_cb )
241       {
242         LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Removing old PeerID %s with the delete callback.\n",
243             GNUNET_i2s(s->peer_id));
244         del_cb(cb_cls, s->peer_id, s->peer_id_hash);
245       }
246
247       memcpy(s->peer_id, id, sizeof(struct GNUNET_PeerIdentity));
248       //s->peer_id = id;
249       s->peer_id_hash = other_hash;
250     }
251     else
252     {
253       LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER:         Got PeerID %s\n",
254           GNUNET_i2s(id), id);
255       LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER: Keeping old PeerID %s\n",
256           GNUNET_i2s(s->peer_id), s->peer_id);
257     }
258   }
259 }
260
261
262 /**
263  * Initialise a tuple of samplers.
264  */
265 struct Samplers *
266 SAMPLER_samplers_init(size_t init_size)
267 {
268   struct Samplers *samplers;
269   struct Sampler *s;
270   uint64_t i;
271
272   samplers = GNUNET_new(struct Samplers);
273   samplers->size = init_size;
274   samplers->head = samplers->tail = NULL;
275   samplers->peer_ids = GNUNET_new_array(init_size, struct GNUNET_PeerIdentity);
276
277   for ( i = 0 ; i < init_size ; i++ )
278   {
279     GNUNET_array_append(samplers->peer_ids,
280         sizeof(struct GNUNET_PeerIdentity),
281         own_identity);
282     s = SAMPLER_init(&samplers->peer_ids[i]);
283     GNUNET_CONTAINER_DLL_insert_tail(samplers->head,
284         samplers->tail,
285         );
286   }
287   return sammplers;
288 }
289
290
291 /**
292  * A fuction to update every sampler in the given list
293  */
294   static void
295 SAMPLER_update_list(struct Samplers *samplers, const struct GNUNET_PeerIdentity *id,
296                     SAMPLER_deleteCB del_cb, void *cb_cls)
297 {
298   struct Sampler *sampler;
299
300   sampler = samplers->head;
301   while ( NULL != sampler->next )
302   {
303     SAMPLER_next(sampler, id, del_cb, cb_cls);
304   }
305   
306 }
307
308 /**
309  * Get one random peer out of the sampled peers.
310  *
311  * We might want to reinitialise this sampler after giving the
312  * corrsponding peer to the client.
313  */
314   const struct GNUNET_PeerIdentity* 
315 SAMPLER_get_rand_peer (struct Samplers *samplers)
316 {
317   LOG(GNUNET_ERROR_TYPE_DEBUG, "SAMPLER_get_rand_peer:\n");
318
319   if ( 0 == samplers->size )
320   {
321     LOG(GNUNET_ERROR_TYPE_DEBUG, "Sgrp: List empty - Returning own PeerID %s\n", GNUNET_i2s(own_identity));
322     return own_identity;
323   }
324   else
325   {
326     uint64_t index;
327     struct Sampler *iter;
328     uint64_t i;
329     size_t s;
330     const struct GNUNET_PeerIdentity *peer;
331
332     /**
333      * Choose the index of the peer we want to give back
334      * at random from the interval of the sampler list
335      */
336     index = GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
337                                      list_size);
338                                      // TODO check that it does not overflow
339     LOG(GNUNET_ERROR_TYPE_DEBUG, "Sgrp: Length of Slist: %" PRIu64 ", index: %" PRIu64 "\n", list_size, index);
340
341     s = sizeof( struct Sampler );
342     iter = samplers->head;
343     for ( i = 0 ; i < index ; i++ )
344     {
345       if ( NULL == iter->next )
346       { // Maybe unneeded
347         iter = samplers->head;
348       }
349     }
350     
351     // TODO something missing?
352
353     peer = iter->peer_id;
354     LOG(GNUNET_ERROR_TYPE_DEBUG, "Sgrp: Returning PeerID %s\n", GNUNET_i2s(peer));
355     LOG(GNUNET_ERROR_TYPE_DEBUG, "Sgrp: (own ID: %s)\n", GNUNET_i2s(own_identity));
356
357     return peer;
358   }
359 }
360
361 /**
362  * Get n random peers out of the sampled peers.
363  *
364  * We might want to reinitialise this sampler after giving the
365  * corrsponding peer to the client.
366  * Random with or without consumption?
367  */
368   const struct GNUNET_PeerIdentity*  // TODO give back simple array
369 SAMPLER_get_n_rand_peers (struct Samplers *samplers, uint64_t n)
370 {
371   // TODO check if we have too much (distinct) sampled peers
372   // If we are not ready yet maybe schedule for later
373   const struct GNUNET_PeerIdentity *peers;
374   uint64_t i;
375   
376   peers = GNUNET_malloc(n * sizeof(struct GNUNET_PeerIdentity));
377
378   for ( i = 0 ; i < n ; i++ ) {
379     peers[i] = SAMPLER_get_rand_peer(samplers);
380   }
381
382   // TODO something else missing?
383   return peers;
384 }
385
386 /**
387  * Counts how many Samplers currently hold a given PeerID.
388  */
389   uint64_t
390 SAMPLER_count_id ( struct Samplers *samplers, struct GNUNET_PeerIdentity *id )
391 {
392   struct Sampler *iter;
393   uint64_t count;
394
395   iter = samplers->head;
396   count = 0;
397   while ( NULL != iter )
398   {
399     if ( peer_id_cmp( iter->peer_id, id) )
400       count++;
401     iter = iter->next;
402   }
403   return count;
404 }
405
406 /**
407  * Gow the size of the tuple of samplers.
408  */
409   void
410 SAMPLER_samplers_grow (struct Samplers * samplers, size_t new_size)
411 {
412   uint64_t i;
413   struct Sampler;
414
415   if ( new_size > samplers->size )
416   {
417     GNUNET_array_grow(samplers->peer_ids, samplers->size, new_size);
418     for ( i = 0 ; i < new_size - samplers-size ; i++ )
419     {
420       sampler = SAMPLER_init(&samplers->peer_ids[samplers->size + i]);
421       GNUNET_CONTAINER_DLL_insert_tail(samplers->head, samplers->tail, sampler);
422     }
423   }
424   else if ( new_size < samplers->size )
425   {
426     for ( i = 0 ; i < samplers->size - new_size ; i++)
427     {
428       // TODO call delCB on elem?
429       GNUNET_CONTAINER_DLL_remove(samplers->head, samplers->tail, samplers->tail);
430     }
431     GNUNET_array_grow(samplers->peer_ids, samplers->size, new_size);
432   }
433
434   samplers->size = new_size;
435 }
436
437 /***********************************************************************
438  * /Sampler
439 ***********************************************************************/
440
441
442
443 /***********************************************************************
444  * Housekeeping with peers
445 ***********************************************************************/
446
447 /**
448  * Struct used to store the context of a connected client.
449  */
450 struct client_ctx
451 {
452   /**
453    * The message queue to communicate with the client.
454    */
455   struct GNUNET_MQ_Handle *mq;
456 };
457
458 /**
459  * Used to keep track in what lists single peerIDs are.
460  */
461 enum in_list_flag // probably unneeded
462 {
463   in_other_sampler_list = 0x1,
464   in_other_gossip_list  = 0x2, // unneeded?
465   in_own_sampler_list   = 0x4,
466   in_own_gossip_list    = 0x8 // unneeded?
467 };
468
469 /**
470  * Struct used to keep track of other peer's status
471  *
472  * This is stored in a multipeermap.
473  */
474 struct peer_context
475 {
476   /**
477    * In own gossip/sampler list, in other's gossip/sampler list
478    */
479   uint32_t in_flags; // unneeded?
480
481   /**
482    * Message queue open to client
483    */
484   struct GNUNET_MQ_Handle *mq;
485
486   /**
487    * Channel open to client.
488    */
489   struct GNUNET_CADET_Channel *to_channel;
490
491   /**
492    * Channel open from client.
493    */
494   struct GNUNET_CADET_Channel *from_channel; // unneeded
495
496   /**
497    * This is pobably followed by 'statistical' data (when we first saw
498    * him, how did we get his ID, how many pushes (in a timeinterval),
499    * ...)
500    */
501 };
502
503 /***********************************************************************
504  * /Housekeeping with peers
505 ***********************************************************************/
506
507 /**
508  * Set of all peers to keep track of them.
509  */
510 static struct GNUNET_CONTAINER_MultiPeerMap *peer_map;
511
512
513 // -- gossip list length --
514 // Depends on the (estimated) size of the
515 // network. - Initial size might be the
516 // number of peers cadet provides.
517 // TODO other events to grow/shrink size?
518
519 /**
520  * List of samplers // TODO get rid of that
521  */
522 struct GNUNET_CONTAINER_SList *sampler_list;
523
524 /**
525  * List of samplers.
526  */
527 struct Samplers *samplers; // TODO rename to sampler_list
528
529 /**
530  * Sampler list size // TODO get rid of that
531  *
532  * Adapts to the nse. Size should be in BigTheta(network_size)^(1/3).
533  */
534 size_t sampler_list_size;
535
536
537 /**
538  * The gossiped list of peers.
539  */
540 struct GNUNET_PeerIdentity *gossip_list;
541
542 /**
543  * Size of the gossiped list
544  */
545 unsigned int gossip_list_size;
546
547 /**
548  * Min size of the gossip list
549  */
550 uint64_t gossip_list_min_size;
551
552 ///**
553 // * Max size of the gossip list
554 // * 
555 // * This will probably be left to be set by the client.
556 // */
557 //uint64_t gossip_list_max_size;
558
559
560 /**
561  * The estimated size of the network.
562  *
563  * Influenced by the stdev.
564  */
565 size_t est_size;
566
567
568
569 /**
570  * Percentage of total peer number in the gossip list
571  * to send random PUSHes to
572  */
573 float alpha;
574
575 /**
576  * Percentage of total peer number in the gossip list
577  * to send random PULLs to
578  */
579 float beta;
580
581 /**
582  * The percentage gamma of history updates.
583  * Simply 1 - alpha - beta
584  */
585
586
587
588
589 /**
590  * Identifier for the main task that runs periodically.
591  */
592 GNUNET_SCHEDULER_TaskIdentifier do_round_task;
593
594 /**
595  * Time inverval the do_round task runs in.
596  */
597 struct GNUNET_TIME_Relative round_interval;
598
599
600
601 /**
602  * List to store peers received through pushes temporary.
603  */
604 struct GNUNET_PeerIdentity *push_list;
605
606 /**
607  * Size of the push_list;
608  */
609 size_t push_list_size;
610
611 /**
612  * List to store peers received through pulls temporary.
613  */
614 struct GNUNET_PeerIdentity *pull_list;
615
616 /**
617  * Size of the pull_list;
618  */
619 size_t pull_list_size;
620
621
622 /**
623  * Handler to NSE.
624  */
625 struct GNUNET_NSE_Handle *nse;
626
627 /**
628  * Handler to CADET.
629  */
630 struct GNUNET_CADET_Handle *cadet_handle;
631
632
633 /***********************************************************************
634  * Util functions
635 ***********************************************************************/
636
637 /**
638  * Get random peer from the gossip list.
639  */
640   struct GNUNET_PeerIdentity *
641 get_rand_gossip_peer()
642 {
643   uint64_t index;
644   struct GNUNET_PeerIdentity *peer;
645
646   // TODO find a better solution.
647   // FIXME if we have only own ID in gossip list this will block
648   // but then we might have a problem nevertheless ?
649
650   do {
651
652     /**;
653      * Choose the index of the peer we want to return
654      * at random from the interval of the gossip list
655      */
656     index = GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
657                                      gossip_list_size);
658
659     peer = &(gossip_list[index]);
660   } while ( own_identity == peer || NULL == peer );
661
662   return peer;
663 }
664
665 /**
666  * Get the message queue of a specific peer.
667  *
668  * If we already have a message queue open to this client,
669  * simply return it, otherways create one.
670  */
671   struct GNUNET_MQ_Handle *
672 get_mq (struct GNUNET_CONTAINER_MultiPeerMap *peer_map, struct GNUNET_PeerIdentity *peer_id)
673 {
674   struct peer_context *ctx;
675   struct GNUNET_MQ_Handle * mq;
676   struct GNUNET_CADET_Channel *channel;
677
678   if ( GNUNET_OK != GNUNET_CONTAINER_multipeermap_contains( peer_map, peer_id ) ) {
679
680     channel = GNUNET_CADET_channel_create(cadet_handle, NULL, peer_id,
681                                   GNUNET_RPS_CADET_PORT,
682                                   GNUNET_CADET_OPTION_RELIABLE);
683     mq = GNUNET_CADET_mq_create(channel);
684
685     ctx = GNUNET_malloc(sizeof(struct peer_context));
686     ctx->in_flags = 0;
687     ctx->to_channel = channel;
688     ctx->mq = mq;
689
690     GNUNET_CONTAINER_multipeermap_put(peer_map, peer_id, ctx,
691                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
692   } else {
693     ctx = GNUNET_CONTAINER_multipeermap_get(peer_map, peer_id);
694     if ( NULL == ctx->mq ) {
695       if ( NULL == ctx->to_channel ) {
696         channel = GNUNET_CADET_channel_create(cadet_handle, NULL, peer_id,
697                                       GNUNET_RPS_CADET_PORT,
698                                       GNUNET_CADET_OPTION_RELIABLE);
699         ctx->to_channel = channel;
700       }
701
702       mq = GNUNET_CADET_mq_create(ctx->to_channel);
703       ctx->mq = mq;
704     }
705   }
706
707   return ctx->mq;
708 }
709
710
711 /***********************************************************************
712  * /Util functions
713 ***********************************************************************/
714
715 /**
716  * Function called by NSE.
717  *
718  * Updates sizes of sampler list and gossip list and adapt those lists
719  * accordingly.
720  */
721   void
722 nse_callback(void *cls, struct GNUNET_TIME_Absolute timestamp, double logestimate, double std_dev)
723 {
724   double estimate;
725   //double scale; // TODO this might go gloabal/config
726
727   LOG(GNUNET_ERROR_TYPE_DEBUG, "Received a ns estimate - logest: %f, std_dev: %f\n", logestimate, std_dev);
728   //scale = .01;
729   estimate = 1 << (uint64_t) round(logestimate);
730   // GNUNET_NSE_log_estimate_to_n (logestimate);
731   estimate = pow(estimate, 1./3);// * (std_dev * scale); // TODO add
732   if ( 0 < estimate ) {
733     LOG(GNUNET_ERROR_TYPE_DEBUG, "Changing estimate to %f\n", estimate);
734     est_size = estimate;
735   } else {
736     LOG(GNUNET_ERROR_TYPE_DEBUG, "Not using estimate %f\n", estimate);
737   }
738 }
739
740 /**
741  * Handle RPS request from the client.
742  *
743  * @param cls closure
744  * @param client identification of the client
745  * @param message the actual message
746  */
747 static void
748 // TODO rename
749 handle_cs_request (void *cls,
750             struct GNUNET_SERVER_Client *client,
751             const struct GNUNET_MessageHeader *message)
752 {
753   LOG(GNUNET_ERROR_TYPE_DEBUG, "Client requested (a) random peer(s).\n");
754
755   struct GNUNET_RPS_CS_RequestMessage *msg;
756   //unsigned int n_arr[sampler_list_size];// =
757     //GNUNET_CRYPTO_random_permute(GNUNET_CRYPTO_QUALITY_STRONG, (unsigned int) sampler_list_size);
758   //struct GNUNET_MQ_Handle *mq;
759   struct client_ctx *cli_ctx;
760   struct GNUNET_MQ_Envelope *ev;
761   struct GNUNET_RPS_CS_ReplyMessage *out_msg;
762   uint64_t num_peers;
763   uint64_t i;
764
765   // TODO
766   msg = (struct GNUNET_RPS_CS_RequestMessage *) message;
767   // Does not work because the compiler seems not to find it.
768   cli_ctx = GNUNET_SERVER_client_get_user_context(client, struct client_ctx);
769   if ( NULL == cli_ctx ) {
770     cli_ctx = GNUNET_new(struct client_ctx);
771     cli_ctx->mq = GNUNET_MQ_queue_for_server_client(client);
772     GNUNET_SERVER_client_set_user_context(client, cli_ctx);
773   }
774   
775   //mq = GNUNET_MQ_queue_for_server_client(client);
776     
777   // TODO How many peers do we give back?
778   // Wait until we have enough random peers?
779
780   ev = GNUNET_MQ_msg_extra(out_msg,
781                            GNUNET_ntohll(msg->num_peers) * sizeof(struct GNUNET_PeerIdentity),
782                            GNUNET_MESSAGE_TYPE_RPS_CS_REPLY);
783   out_msg->num_peers = GNUNET_ntohll(msg->num_peers);
784
785   num_peers = GNUNET_ntohll(msg->num_peers);
786   //&out_msg[1] = SAMPLER_get_n_rand_peers(sampler_list, num_peers);
787   for ( i = 0 ; i < num_peers ; i++ ) {
788     memcpy(&out_msg[1] + i * sizeof(struct GNUNET_PeerIdentity),
789            SAMPLER_get_rand_peer(sampler_list),
790            sizeof(struct GNUNET_PeerIdentity));
791   }
792   
793   GNUNET_MQ_send(cli_ctx->mq, ev);
794   //GNUNET_MQ_send(mq, ev);
795   //GNUNET_MQ_destroy(mq);
796
797   GNUNET_SERVER_receive_done (client,
798                               GNUNET_OK);
799 }
800
801 /**
802  * Handle a PUSH message from another peer.
803  *
804  * Check the proof of work and store the PeerID
805  * in the temporary list for pushed PeerIDs.
806  *
807  * @param cls Closure
808  * @param channel The channel the PUSH was received over
809  * @param channel_ctx The context associated with this channel
810  * @param msg The message header
811  */
812 static int
813 handle_peer_push (void *cls,
814     struct GNUNET_CADET_Channel *channel,
815     void **channel_ctx,
816     const struct GNUNET_MessageHeader *msg)
817 {
818   LOG(GNUNET_ERROR_TYPE_DEBUG, "PUSH received\n");
819
820   struct GNUNET_PeerIdentity *peer;
821
822   // TODO check the proof of work
823   // and check limit for PUSHes
824   // IF we count per peer PUSHes
825   // maybe remove from gossip/sampler list
826   
827   peer = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info( channel, GNUNET_CADET_OPTION_PEER );
828   
829   /* Add the sending peer to the push_list */
830   GNUNET_array_append(push_list, push_list_size, *peer);
831   push_list_size ++;
832
833   return GNUNET_OK;
834 }
835
836 /**
837  * Handle PULL REQUEST request message from another peer.
838  *
839  * Reply with the gossip list of PeerIDs.
840  *
841  * @param cls Closure
842  * @param channel The channel the PUSH was received over
843  * @param channel_ctx The context associated with this channel
844  * @param msg The message header
845  */
846 static int
847 handle_peer_pull_request (void *cls,
848     struct GNUNET_CADET_Channel *channel,
849     void **channel_ctx,
850     const struct GNUNET_MessageHeader *msg)
851 {
852
853   struct GNUNET_PeerIdentity *peer;
854   struct GNUNET_MQ_Handle *mq;
855   //struct GNUNET_RPS_P2P_PullRequestMessage *in_msg;
856   struct GNUNET_MQ_Envelope *ev;
857   struct GNUNET_RPS_P2P_PullReplyMessage *out_msg;
858
859   // TODO find some way to keep one peer from spamming with pull requests
860   // allow only one request per time interval ?
861   // otherwise remove from peerlist?
862
863   peer = (struct GNUNET_PeerIdentity *) GNUNET_CADET_channel_get_info(channel, GNUNET_CADET_OPTION_PEER);
864   LOG(GNUNET_ERROR_TYPE_DEBUG, "PULL REQUEST from peer %s received\n", GNUNET_i2s(peer));
865
866   mq = GNUNET_CADET_mq_create(channel); // TODO without mq?
867   //mq = get_mq(peer_map, peer);
868
869   //in_msg = (struct GNUNET_RPS_P2P_PullRequestMessage *) msg;
870   // TODO how many peers do we actually send?
871   // GNUNET_ntohll(in_msg->num_peers)
872   ev = GNUNET_MQ_msg_extra(out_msg,
873                            gossip_list_size * sizeof(struct GNUNET_PeerIdentity),
874                            GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY);
875   out_msg->num_peers = GNUNET_htonll(gossip_list_size);
876   memcpy(&out_msg[1], gossip_list,
877          gossip_list_size * sizeof(struct GNUNET_PeerIdentity));
878
879   GNUNET_MQ_send(mq, ev);
880
881   GNUNET_MQ_destroy(mq);
882
883
884   return GNUNET_OK;
885 }
886
887 /**
888  * Handle PULL REPLY message from another peer.
889  *
890  * Check whether we sent a corresponding request and
891  * whether this reply is the first one.
892  *
893  * @param cls Closure
894  * @param channel The channel the PUSH was received over
895  * @param channel_ctx The context associated with this channel
896  * @param msg The message header
897  */
898 static int
899 handle_peer_pull_reply (void *cls,
900     struct GNUNET_CADET_Channel *channel,
901     void **channel_ctx,
902     const struct GNUNET_MessageHeader *msg)
903 {
904   LOG(GNUNET_ERROR_TYPE_DEBUG, "PULL REPLY received\n");
905
906   struct GNUNET_RPS_P2P_PullReplyMessage *in_msg;
907   uint64_t i;
908
909   // TODO check that we sent a request and that it is the first reply
910
911   in_msg = (struct GNUNET_RPS_P2P_PullReplyMessage *) msg;
912   for ( i = 0 ; i < GNUNET_ntohll(in_msg->num_peers) ; i++ ) {
913     GNUNET_array_append(pull_list, pull_list_size, in_msg[i]);
914     pull_list_size++;
915   }
916
917   // TODO maybe a disconnect happens here
918   
919   return GNUNET_OK;
920 }
921
922
923 /**
924  * Callback called when a Sampler is updated.
925  */
926   void
927 delete_cb (void *cls, struct GNUNET_PeerIdentity *id, struct GNUNET_HashCode hash)
928 {
929   size_t s;
930
931   //s = SAMPLER_count_id(samplers, id); // TODO
932   s = SAMPLER_count_id(sampler_list, id);
933   if ( 1 >= s ) {
934     // TODO cleanup peer
935     GNUNET_CONTAINER_multipeermap_remove_all( peer_map, id);
936   }
937 }
938
939
940 /**
941  * Send out PUSHes and PULLs.
942  *
943  * This is executed regylary.
944  */
945 static void
946 do_round(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
947 {
948   LOG(GNUNET_ERROR_TYPE_DEBUG, "Going to execute next round\n");
949
950   uint64_t i;
951   struct Sampler *s;
952   struct GNUNET_CONTAINER_SList_Iterator *iter;
953   //unsigned int *n_arr;
954   struct GNUNET_RPS_P2P_PushMessage        *push_msg;
955   struct GNUNET_RPS_P2P_PullRequestMessage *pull_msg; // FIXME Send empty message
956   struct GNUNET_MQ_Envelope *ev;
957   struct GNUNET_PeerIdentity *peer;
958
959   // TODO print lists, ...
960   // TODO cleanup peer_map
961
962   iter = GNUNET_new(struct GNUNET_CONTAINER_SList_Iterator);
963
964
965   /* If the NSE has changed adapt the lists accordingly */
966   // TODO check nse == 0!
967   LOG(GNUNET_ERROR_TYPE_DEBUG, "Checking size estimate.\n");
968   SAMPLER_samplers_grow(samplers, est_size);
969
970   GNUNET_array_grow(gossip_list, gossip_list_size, est_size); // FIXME Do conversion correct or change type
971
972   gossip_list_size = sampler_list_size = est_size;
973
974  
975
976
977   /* Would it make sense to have one shuffeled gossip list and then
978    * to send PUSHes to first alpha peers, PULL requests to next beta peers and
979    * use the rest to update sampler? */
980
981   /* Send PUSHes */
982   //n_arr = GNUNET_CRYPTO_random_permute(GNUNET_CRYPTO_QUALITY_STRONG, (unsigned int) gossip_list_size);
983   LOG(GNUNET_ERROR_TYPE_DEBUG, "Going to send pushes to %f (%f * %" PRIu64 ") peers.\n",
984       alpha * gossip_list_size, alpha, gossip_list_size);
985   for ( i = 0 ; i < alpha * gossip_list_size ; i++ ) { // TODO compute length
986     peer = get_rand_gossip_peer();
987     // TODO check NULL == peer
988     LOG(GNUNET_ERROR_TYPE_DEBUG, "Sending PUSH to peer %s of gossiped list.\n", GNUNET_i2s(peer));
989
990     ev = GNUNET_MQ_msg(push_msg, GNUNET_MESSAGE_TYPE_RPS_PP_PUSH);
991     //ev = GNUNET_MQ_msg_extra();
992     /* TODO Compute proof of work here
993     push_msg; */
994     push_msg->placeholder = 0;
995     GNUNET_MQ_send( get_mq(peer_map, peer), ev );
996
997     // TODO modify in_flags of respective peer?
998   }
999
1000
1001   /* Send PULL requests */
1002   // TODO
1003   //n_arr = GNUNET_CRYPTO_random_permute(GNUNET_CRYPTO_QUALITY_STRONG, (unsigned int) sampler_list_size);
1004   LOG(GNUNET_ERROR_TYPE_DEBUG, "Going to send pulls to %f (%f * %" PRIu64 ") peers.\n",
1005       beta * gossip_list_size, beta, gossip_list_size);
1006   for ( i = 0 ; i < beta * gossip_list_size ; i++ ){ // TODO compute length
1007     peer = get_rand_gossip_peer();
1008     // TODO check NULL == peer
1009     LOG(GNUNET_ERROR_TYPE_DEBUG, "Sending PULL request to peer %s of gossiped list.\n", GNUNET_i2s(peer));
1010
1011     ev = GNUNET_MQ_msg(pull_msg, GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST);
1012     //ev = GNUNET_MQ_msg_extra();
1013     pull_msg->placeholder = 0;
1014     GNUNET_MQ_send( get_mq(peer_map, peer), ev );
1015     // TODO modify in_flags of respective peer?
1016   }
1017
1018
1019
1020
1021   /* Update gossip list */
1022   uint64_t tmp_index;
1023   uint64_t index;
1024
1025   if ( push_list_size <= alpha * gossip_list_size &&
1026        push_list_size != 0 &&
1027        pull_list_size != 0 ) {
1028     LOG(GNUNET_ERROR_TYPE_DEBUG, "Update of the gossip list. ()\n");
1029
1030     for ( i = 0 ; i < alpha * gossip_list_size ; i++ ) { // TODO use SAMPLER_get_n_rand_peers
1031       /* Update gossip list with peers received through PUSHes */
1032       index = GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
1033                                        push_list_size);
1034       gossip_list[i] = push_list[index];
1035       // TODO change the in_flags accordingly
1036     }
1037
1038     for ( i = 0 ; i < beta * gossip_list_size ; i++ ) {
1039       /* Update gossip list with peers received through PULLs */
1040       tmp_index = i + round(alpha * gossip_list_size);
1041       index = GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
1042                                        pull_list_size);
1043       gossip_list[tmp_index] = pull_list[index];
1044       // TODO change the in_flags accordingly
1045     }
1046
1047     for ( i = 0 ; i < (1 - (alpha + beta)) * gossip_list_size ; i++ ) {
1048       /* Update gossip list with peers from history */
1049       tmp_index = i + round((alpha + beta) * gossip_list_size);
1050       index = GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG,
1051                                        samplers->size);
1052       gossip_list[tmp_index] = samplers->peer_ids[index];
1053       // TODO change the in_flags accordingly
1054     }
1055
1056   } else {
1057     LOG(GNUNET_ERROR_TYPE_DEBUG, "No update of the gossip list. ()\n");
1058   }
1059   // TODO independent of that also get some peers from CADET_get_peers()?
1060
1061
1062
1063   /* Update samplers */
1064   size_t size;
1065   uint64_t i;
1066
1067   for ( i = 0 ; i < push_list_size ; i++ )
1068   {
1069     SAMPLER_update_list(samplers, push_list[i]);
1070     // TODO set in_flag?
1071   }
1072
1073   for ( i = 0 ; i < pull_list_size ; i++ )
1074   {
1075     SAMPLER_update_list(samplers, pull_list[i]);
1076     // TODO set in_flag?
1077   }
1078
1079
1080   // TODO go over whole peer_map and do cleanups
1081   // delete unneeded peers, set in_flags, check channel/mq
1082
1083
1084   /* Empty push/pull lists */
1085   GNUNET_array_grow(push_list, push_list_size, 0);
1086   push_list_size = 0;
1087   GNUNET_array_grow(pull_list, pull_list_size, 0);
1088   pull_list_size = 0;
1089
1090
1091   /* Schedule next round */
1092   // TODO
1093   do_round_task = GNUNET_SCHEDULER_add_delayed( round_interval, &do_round, NULL );
1094   LOG(GNUNET_ERROR_TYPE_DEBUG, "Finished round\n");
1095 }
1096
1097 static void
1098 rps_start (struct GNUNET_SERVER_Handle *server);
1099
1100 /**
1101  * This is called from GNUNET_CADET_get_peers().
1102  *
1103  * It is called on every peer(ID) that cadet somehow has contact with.
1104  * We use those to initialise the sampler.
1105  */
1106 void
1107 init_peer_cb (void *cls,
1108               const struct GNUNET_PeerIdentity *peer,
1109               int tunnel, // "Do we have a tunnel towards this peer?"
1110               unsigned int n_paths, // "Number of known paths towards this peer"
1111               unsigned int best_path) // "How long is the best path?
1112                                       // (0 = unknown, 1 = ourselves, 2 = neighbor)"
1113 {
1114   // FIXME use the magic 0000 PeerID
1115   if ( NULL != peer ) {
1116     LOG(GNUNET_ERROR_TYPE_DEBUG, "Got peer %s (at %p) from CADET\n", GNUNET_i2s(peer), peer);
1117     SAMPLER_update_list(sampler_list, peer, NULL, NULL);
1118     if ( GNUNET_YES == GNUNET_CONTAINER_multipeermap_contains( peer_map, peer ) ) {
1119     } else {
1120       struct peer_context *ctx;
1121
1122       ctx = GNUNET_malloc(sizeof(struct peer_context));
1123       ctx->in_flags = 0;
1124       ctx->mq = NULL;
1125       ctx->to_channel = NULL;
1126       ctx->from_channel = NULL;
1127       GNUNET_CONTAINER_multipeermap_put( peer_map, peer, ctx, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1128     }
1129
1130     uint64_t i;
1131     i = GNUNET_CRYPTO_random_u64(GNUNET_CRYPTO_QUALITY_STRONG, gossip_list_size);
1132     gossip_list[i] = *peer;
1133     // TODO send push/pull to each of those peers?
1134   } else {
1135     rps_start( (struct GNUNET_SERVER_Handle *) cls);
1136   }
1137 }
1138
1139
1140
1141
1142 /**
1143  * Task run during shutdown.
1144  *
1145  * @param cls unused
1146  * @param tc unused
1147  */
1148 static void
1149 shutdown_task (void *cls,
1150                const struct GNUNET_SCHEDULER_TaskContext *tc)
1151 {
1152   LOG(GNUNET_ERROR_TYPE_DEBUG, "RPS is going down\n");
1153
1154   if ( GNUNET_SCHEDULER_NO_TASK != do_round_task )
1155   {
1156     GNUNET_SCHEDULER_cancel (do_round_task);
1157     do_round_task = GNUNET_SCHEDULER_NO_TASK;
1158   }
1159
1160   GNUNET_NSE_disconnect(nse);
1161   GNUNET_CADET_disconnect(cadet_handle);
1162   GNUNET_free(own_identity);
1163   //GNUNET_free(round_interval);
1164   //GNUNET_free(est_size);
1165   //GNUNET_free(gossip_list_size);
1166   //GNUNET_free(sampler_list_size);
1167   GNUNET_free(gossip_list);
1168   // TODO for i in sampler_list free sampler
1169   // TODO destroy sampler_list
1170   // TODO destroy push/pull_list
1171   // TODO delete global data
1172 }
1173
1174
1175 /**
1176  * A client disconnected.  Remove all of its data structure entries.
1177  *
1178  * @param cls closure, NULL
1179  * @param client identification of the client
1180  */
1181 static void
1182 handle_client_disconnect (void *cls,
1183                           struct GNUNET_SERVER_Client * client)
1184 {
1185   // TODO reinitialise that sampler
1186 }
1187
1188 /**
1189  * Handle the channel a peer opens to us.
1190  *
1191  * @param cls The closure
1192  * @param channel The channel the peer wants to establish
1193  * @param initiator The peer's peer ID
1194  * @param port The port the channel is being established over
1195  * @param options Further options
1196  */
1197   static void *
1198 handle_inbound_channel (void *cls,
1199                         struct GNUNET_CADET_Channel *channel,
1200                         const struct GNUNET_PeerIdentity *initiator,
1201                         uint32_t port,
1202                         enum GNUNET_CADET_ChannelOption options)
1203 {
1204   LOG(GNUNET_ERROR_TYPE_DEBUG, "New channel was established to us.\n");
1205
1206   GNUNET_assert( NULL != channel );
1207
1208   // TODO we might even not store the from_channel
1209
1210   if ( GNUNET_CONTAINER_multipeermap_contains( peer_map, initiator ) ) {
1211     ((struct peer_context *) GNUNET_CONTAINER_multipeermap_get( peer_map, initiator ))->from_channel = channel;
1212     // FIXME there might already be an established channel
1213   } else {
1214     struct peer_context *ctx;
1215
1216     ctx = GNUNET_malloc( sizeof(struct peer_context));
1217     ctx->in_flags = in_other_gossip_list;
1218     ctx->mq = NULL; // TODO create mq?
1219     ctx->from_channel = channel;
1220
1221     GNUNET_CONTAINER_multipeermap_put( peer_map, initiator, ctx, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1222   }
1223   return NULL; // TODO
1224 }
1225
1226 /**
1227  * This is called when a remote peer destroys a channel.
1228  *
1229  * @param cls The closure
1230  * @param channel The channel being closed
1231  * @param channel_ctx The context associated with this channel
1232  */
1233 static void
1234 cleanup_channel(void *cls,
1235                 const struct GNUNET_CADET_Channel *channel,
1236                 void *channel_ctx)
1237 {
1238   LOG(GNUNET_ERROR_TYPE_DEBUG, "Channel was destroyed by remote peer.\n");
1239 }
1240
1241 /**
1242  * Actually start the service.
1243  */
1244 static void
1245 rps_start (struct GNUNET_SERVER_Handle *server)
1246 {
1247   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1248     {&handle_cs_request, NULL, GNUNET_MESSAGE_TYPE_RPS_CS_REQUEST, 0},
1249     {NULL, NULL, 0, 0}
1250   };
1251
1252   GNUNET_SERVER_add_handlers (server, handlers);
1253   GNUNET_SERVER_disconnect_notify (server,
1254                                    &handle_client_disconnect,
1255                                    NULL);
1256   LOG(GNUNET_ERROR_TYPE_DEBUG, "Ready to receive requests from clients\n");
1257
1258
1259
1260   do_round_task = GNUNET_SCHEDULER_add_delayed( round_interval, &do_round, NULL);
1261   LOG(GNUNET_ERROR_TYPE_DEBUG, "Scheduled first round\n");
1262
1263   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1264                                 &shutdown_task,
1265                                 NULL);
1266 }
1267
1268
1269
1270 /**
1271  * Process statistics requests.
1272  *
1273  * @param cls closure
1274  * @param server the initialized server
1275  * @param c configuration to use
1276  */
1277 static void
1278 run (void *cls,
1279      struct GNUNET_SERVER_Handle *server,
1280      const struct GNUNET_CONFIGURATION_Handle *c)
1281 {
1282   // TODO check what this does -- copied from gnunet-boss
1283   // - seems to work as expected
1284   GNUNET_log_setup("rps", GNUNET_error_type_to_string(GNUNET_ERROR_TYPE_DEBUG), NULL);
1285
1286   LOG(GNUNET_ERROR_TYPE_DEBUG, "RPS started\n");
1287
1288   uint32_t i;
1289
1290   cfg = c;
1291
1292
1293   own_identity = GNUNET_new(struct GNUNET_PeerIdentity);
1294
1295   GNUNET_CRYPTO_get_peer_identity(cfg, own_identity); // TODO check return value
1296
1297   LOG(GNUNET_ERROR_TYPE_DEBUG, "Own identity is %s (at %p).\n", GNUNET_i2s(own_identity), own_identity);
1298
1299
1300
1301   /* Get time interval from the configuration */
1302   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_time (cfg, "RPS",
1303                                                         "ROUNDINTERVAL",
1304                                                         &round_interval))
1305   {
1306     LOG(GNUNET_ERROR_TYPE_DEBUG, "Failed to read ROUNDINTERVAL from config\n");
1307     GNUNET_SCHEDULER_shutdown();
1308     return;
1309   }
1310
1311   /* Get initial size of sampler/gossip list from the configuration */
1312   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (cfg, "RPS",
1313                                                          "INITSIZE",
1314                                                          (long long unsigned int *) &est_size))
1315   {
1316     LOG(GNUNET_ERROR_TYPE_DEBUG, "Failed to read INITSIZE from config\n");
1317     GNUNET_SCHEDULER_shutdown();
1318     return;
1319   }
1320   LOG(GNUNET_ERROR_TYPE_DEBUG, "INITSIZE is %" PRIu64 "\n", est_size);
1321
1322   gossip_list_size = sampler_list_size = est_size; // TODO rename est_size
1323
1324
1325   gossip_list = NULL;
1326
1327   static unsigned int tmp = 0;
1328
1329   GNUNET_array_grow(gossip_list, tmp, gossip_list_size);
1330
1331
1332
1333   /* connect to NSE */
1334   nse = GNUNET_NSE_connect(cfg, nse_callback, NULL);
1335   // TODO check whether that was successful
1336   // TODO disconnect on shutdown
1337   LOG(GNUNET_ERROR_TYPE_DEBUG, "Connected to NSE\n");
1338
1339
1340   alpha = 0.45;
1341   beta  = 0.45;
1342   // TODO initialise thresholds - ?
1343
1344   ///* Get alpha from the configuration */
1345   //if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_float (cfg, "RPS",
1346   //                                                       "ALPHA",
1347   //                                                       &alpha))
1348   //{
1349   //  LOG(GNUNET_ERROR_TYPE_DEBUG, "No ALPHA specified in the config\n");
1350   //}
1351   //LOG(GNUNET_ERROR_TYPE_DEBUG, "ALPHA is %f\n", alpha);
1352  
1353   ///* Get beta from the configuration */
1354   //if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_float (cfg, "RPS",
1355   //                                                       "BETA",
1356   //                                                       &beta))
1357   //{
1358   //  LOG(GNUNET_ERROR_TYPE_DEBUG, "No BETA specified in the config\n");
1359   //}
1360   //LOG(GNUNET_ERROR_TYPE_DEBUG, "BETA is %f\n", beta);
1361
1362
1363
1364
1365   peer_map = GNUNET_CONTAINER_multipeermap_create(est_size, GNUNET_NO);
1366
1367
1368   /* Initialise sampler and gossip list */
1369   struct Sampler *s;
1370
1371   samplers = SAMPLER_samplers_init(est_size);
1372
1373   push_list = NULL;
1374   push_list_size = 0;
1375   pull_list = NULL;
1376   pull_list_size = 0;
1377
1378   static const struct GNUNET_CADET_MessageHandler cadet_handlers[] = {
1379     {&handle_peer_push        , GNUNET_MESSAGE_TYPE_RPS_PP_PUSH        , 0},
1380     {&handle_peer_pull_request, GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REQUEST, 0},
1381     {&handle_peer_pull_reply  , GNUNET_MESSAGE_TYPE_RPS_PP_PULL_REPLY  , 0},
1382     {NULL, 0, 0}
1383   };
1384
1385   const uint32_t ports[] = {GNUNET_RPS_CADET_PORT, 0}; // _PORT specified in src/rps/rps.h
1386   cadet_handle = GNUNET_CADET_connect(cfg,
1387                                     cls,
1388                                     &handle_inbound_channel,
1389                                     &cleanup_channel,
1390                                     cadet_handlers,
1391                                     ports);
1392   LOG(GNUNET_ERROR_TYPE_DEBUG, "Connected to CADET\n");
1393
1394
1395   LOG(GNUNET_ERROR_TYPE_DEBUG, "Requesting peers from CADET\n");
1396   GNUNET_CADET_get_peers(cadet_handle, &init_peer_cb, server);
1397   // FIXME use magic 0000 PeerID to _start_ the service
1398
1399   // TODO send push/pull to each of those peers?
1400 }
1401
1402
1403 /**
1404  * The main function for the rps service.
1405  *
1406  * @param argc number of arguments from the command line
1407  * @param argv command line arguments
1408  * @return 0 ok, 1 on error
1409  */
1410 int
1411 main (int argc, char *const *argv)
1412 {
1413   return (GNUNET_OK ==
1414           GNUNET_SERVICE_run (argc,
1415                               argv,
1416                               "rps",
1417                               GNUNET_SERVICE_OPTION_NONE,
1418                               &run, NULL)) ? 0 : 1;
1419 }
1420
1421 /* end of gnunet-service-rps.c */