Add missing #ifdef
[oweals/gnunet.git] / src / rps / gnunet-service-rps_sampler.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C)
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14     
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 /**
20  * @file rps/gnunet-service-rps_sampler.c
21  * @brief sampler implementation
22  * @author Julius Bünger
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26 #include "rps.h"
27
28 #include "gnunet-service-rps_sampler.h"
29 #include "gnunet-service-rps_sampler_elem.h"
30
31 #include <math.h>
32 #include <inttypes.h>
33
34 #include "rps-test_util.h"
35
36 #define LOG(kind, ...) GNUNET_log_from(kind,"rps-sampler",__VA_ARGS__)
37
38
39 // multiple 'clients'?
40
41 // TODO check for overflows
42
43 // TODO align message structs
44
45 // hist_size_init, hist_size_max
46
47 /***********************************************************************
48  * WARNING: This section needs to be reviewed regarding the use of
49  * functions providing (pseudo)randomness!
50 ***********************************************************************/
51
52 // TODO care about invalid input of the caller (size 0 or less...)
53
54 /**
55  * Callback that is called from _get_rand_peer() when the PeerID is ready.
56  *
57  * @param cls the closure given alongside this function.
58  * @param id the PeerID that was returned
59  */
60 typedef void
61 (*RPS_sampler_rand_peer_ready_cont) (void *cls,
62                                      const struct GNUNET_PeerIdentity *id);
63
64
65 /**
66  * Closure for #sampler_mod_get_rand_peer() and #sampler_get_rand_peer
67  */
68 struct GetPeerCls
69 {
70   /**
71    * DLL
72    */
73   struct GetPeerCls *next;
74   struct GetPeerCls *prev;
75
76   /**
77    * The #RPS_SamplerRequestHandle this single request belongs to.
78    */
79   struct RPS_SamplerRequestHandle *req_handle;
80
81   /**
82    * The task for this function.
83    */
84   struct GNUNET_SCHEDULER_Task *get_peer_task;
85
86   /**
87    * The callback
88    */
89   RPS_sampler_rand_peer_ready_cont cont;
90
91   /**
92    * The closure to the callback @e cont
93    */
94   void *cont_cls;
95
96   /**
97    * The address of the id to be stored at
98    */
99   struct GNUNET_PeerIdentity *id;
100 };
101
102
103 /**
104  * Type of function used to differentiate between modified and not modified
105  * Sampler.
106  */
107 typedef void
108 (*RPS_get_peers_type) (void *cls);
109
110 /**
111  * Get one random peer out of the sampled peers.
112  *
113  * We might want to reinitialise this sampler after giving the
114  * corrsponding peer to the client.
115  * Only used internally
116  */
117 static void
118 sampler_get_rand_peer (void *cls);
119
120
121 /**
122  * Get one random peer out of the sampled peers.
123  *
124  * We might want to reinitialise this sampler after giving the
125  * corrsponding peer to the client.
126  */
127 static void
128 sampler_mod_get_rand_peer (void *cls);
129
130
131 /**
132  * Sampler with its own array of SamplerElements
133  */
134 struct RPS_Sampler
135 {
136   /**
137    * Number of sampler elements we hold.
138    */
139   unsigned int sampler_size;
140   //size_t size;
141
142   /**
143    * All sampler elements in one array.
144    */
145   struct RPS_SamplerElement **sampler_elements;
146
147   /**
148    * Maximum time a round takes
149    *
150    * Used in the context of RPS
151    */
152   struct GNUNET_TIME_Relative max_round_interval;
153
154   /**
155    * Stores the function to return peers. Which one it is depends on whether
156    * the Sampler is the modified one or not.
157    */
158   RPS_get_peers_type get_peers;
159
160   /**
161    * Head and tail for the DLL to store the #RPS_SamplerRequestHandle
162    */
163   struct RPS_SamplerRequestHandle *req_handle_head;
164   struct RPS_SamplerRequestHandle *req_handle_tail;
165
166   #ifdef TO_FILE
167   /**
168    * File name to log to
169    */
170   char *file_name;
171   #endif /* TO_FILE */
172 };
173
174 /**
175  * Closure to _get_n_rand_peers_ready_cb()
176  */
177 struct RPS_SamplerRequestHandle
178 {
179   /**
180    * DLL
181    */
182   struct RPS_SamplerRequestHandle *next;
183   struct RPS_SamplerRequestHandle *prev;
184
185   /**
186    * Number of peers we are waiting for.
187    */
188   uint32_t num_peers;
189
190   /**
191    * Number of peers we currently have.
192    */
193   uint32_t cur_num_peers;
194
195   /**
196    * Pointer to the array holding the ids.
197    */
198   struct GNUNET_PeerIdentity *ids;
199
200   /**
201    * Head and tail for the DLL to store the tasks for single requests
202    */
203   struct GetPeerCls *gpc_head;
204   struct GetPeerCls *gpc_tail;
205
206   /**
207    * Sampler.
208    */
209   struct RPS_Sampler *sampler;
210
211   /**
212    * Callback to be called when all ids are available.
213    */
214   RPS_sampler_n_rand_peers_ready_cb callback;
215
216   /**
217    * Closure given to the callback
218    */
219   void *cls;
220 };
221
222 ///**
223 // * Global sampler variable.
224 // */
225 //struct RPS_Sampler *sampler;
226
227
228 /**
229  * The minimal size for the extended sampler elements.
230  */
231 static size_t min_size;
232
233 /**
234  * The maximal size the extended sampler elements should grow to.
235  */
236 static size_t max_size;
237
238 /**
239  * The size the extended sampler elements currently have.
240  */
241 //static size_t extra_size;
242
243 /**
244  * Inedex to the sampler element that is the next to be returned
245  */
246 static uint32_t client_get_index;
247
248
249 /**
250  * Callback to _get_rand_peer() used by _get_n_rand_peers().
251  *
252  * Checks whether all n peers are available. If they are,
253  * give those back.
254  */
255 static void
256 check_n_peers_ready (void *cls,
257                      const struct GNUNET_PeerIdentity *id)
258 {
259   struct RPS_SamplerRequestHandle *req_handle = cls;
260   (void) id;
261
262   req_handle->cur_num_peers++;
263   LOG (GNUNET_ERROR_TYPE_DEBUG,
264       "Got %" PRIX32 ". of %" PRIX32 " peers\n",
265       req_handle->cur_num_peers, req_handle->num_peers);
266
267   if (req_handle->num_peers == req_handle->cur_num_peers)
268   { /* All peers are ready -- return those to the client */
269     GNUNET_assert (NULL != req_handle->callback);
270
271     LOG (GNUNET_ERROR_TYPE_DEBUG,
272         "returning %" PRIX32 " peers to the client\n",
273         req_handle->num_peers);
274     req_handle->callback (req_handle->cls, req_handle->ids, req_handle->num_peers);
275
276     RPS_sampler_request_cancel (req_handle);
277   }
278 }
279
280
281 /**
282  * Get the size of the sampler.
283  *
284  * @param sampler the sampler to return the size of.
285  * @return the size of the sampler
286  */
287 unsigned int
288 RPS_sampler_get_size (struct RPS_Sampler *sampler)
289 {
290   return sampler->sampler_size;
291 }
292
293
294 /**
295  * Grow or shrink the size of the sampler.
296  *
297  * @param sampler the sampler to resize.
298  * @param new_size the new size of the sampler
299  */
300 static void
301 sampler_resize (struct RPS_Sampler *sampler, unsigned int new_size)
302 {
303   unsigned int old_size;
304   uint32_t i;
305
306   // TODO check min and max size
307
308   old_size = sampler->sampler_size;
309
310   if (old_size > new_size)
311   { /* Shrinking */
312
313     LOG (GNUNET_ERROR_TYPE_DEBUG,
314          "Shrinking sampler %d -> %d\n",
315          old_size,
316          new_size);
317
318     to_file (sampler->file_name,
319          "Shrinking sampler %d -> %d",
320          old_size,
321          new_size);
322
323     for (i = new_size ; i < old_size ; i++)
324     {
325       to_file (sampler->file_name,
326                "-%" PRIu32 ": %s",
327                i,
328                sampler->sampler_elements[i]->file_name);
329       RPS_sampler_elem_destroy (sampler->sampler_elements[i]);
330     }
331
332     GNUNET_array_grow (sampler->sampler_elements,
333                        sampler->sampler_size,
334                        new_size);
335     LOG (GNUNET_ERROR_TYPE_DEBUG,
336          "sampler->sampler_elements now points to %p\n",
337          sampler->sampler_elements);
338
339   }
340   else if (old_size < new_size)
341   { /* Growing */
342     LOG (GNUNET_ERROR_TYPE_DEBUG,
343          "Growing sampler %d -> %d\n",
344          old_size,
345          new_size);
346
347     to_file (sampler->file_name,
348          "Growing sampler %d -> %d",
349          old_size,
350          new_size);
351
352     GNUNET_array_grow (sampler->sampler_elements,
353         sampler->sampler_size,
354         new_size);
355
356     for (i = old_size ; i < new_size ; i++)
357     { /* Add new sampler elements */
358       sampler->sampler_elements[i] = RPS_sampler_elem_create ();
359
360       to_file (sampler->file_name,
361                "+%" PRIu32 ": %s",
362                i,
363                sampler->sampler_elements[i]->file_name);
364     }
365   }
366   else
367   {
368     LOG (GNUNET_ERROR_TYPE_DEBUG, "Size remains the same -- nothing to do\n");
369     return;
370   }
371
372   GNUNET_assert (sampler->sampler_size == new_size);
373 }
374
375
376 /**
377  * Grow or shrink the size of the sampler.
378  *
379  * @param sampler the sampler to resize.
380  * @param new_size the new size of the sampler
381  */
382 void
383 RPS_sampler_resize (struct RPS_Sampler *sampler, unsigned int new_size)
384 {
385   GNUNET_assert (0 < new_size);
386   sampler_resize (sampler, new_size);
387 }
388
389
390 /**
391  * Empty the sampler.
392  *
393  * @param sampler the sampler to empty.
394  * @param new_size the new size of the sampler
395  */
396 static void
397 sampler_empty (struct RPS_Sampler *sampler)
398 {
399   sampler_resize (sampler, 0);
400 }
401
402
403 /**
404  * Initialise a tuple of sampler elements.
405  *
406  * @param init_size the size the sampler is initialised with
407  * @param max_round_interval maximum time a round takes
408  * @return a handle to a sampler that consists of sampler elements.
409  */
410 struct RPS_Sampler *
411 RPS_sampler_init (size_t init_size,
412                   struct GNUNET_TIME_Relative max_round_interval)
413 {
414   struct RPS_Sampler *sampler;
415
416   /* Initialise context around extended sampler */
417   min_size = 10; // TODO make input to _samplers_init()
418   max_size = 1000; // TODO make input to _samplers_init()
419
420   sampler = GNUNET_new (struct RPS_Sampler);
421
422   #ifdef TO_FILE
423   sampler->file_name = create_file ("sampler-");
424
425   LOG (GNUNET_ERROR_TYPE_DEBUG,
426        "Initialised sampler %s\n",
427        sampler->file_name);
428   #endif /* TO_FILE */
429
430   sampler->max_round_interval = max_round_interval;
431   sampler->get_peers = sampler_get_rand_peer;
432   //sampler->sampler_elements = GNUNET_new_array(init_size, struct GNUNET_PeerIdentity);
433   //GNUNET_array_grow (sampler->sampler_elements, sampler->sampler_size, min_size);
434   RPS_sampler_resize (sampler, init_size);
435
436   client_get_index = 0;
437
438   //GNUNET_assert (init_size == sampler->sampler_size);
439   return sampler;
440 }
441
442 /**
443  * Initialise a modified tuple of sampler elements.
444  *
445  * @param init_size the size the sampler is initialised with
446  * @param max_round_interval maximum time a round takes
447  * @return a handle to a sampler that consists of sampler elements.
448  */
449 struct RPS_Sampler *
450 RPS_sampler_mod_init (size_t init_size,
451                       struct GNUNET_TIME_Relative max_round_interval)
452 {
453   struct RPS_Sampler *sampler;
454
455   sampler = RPS_sampler_init (init_size, max_round_interval);
456   sampler->get_peers = sampler_mod_get_rand_peer;
457
458 #ifdef TO_FILE
459   LOG (GNUNET_ERROR_TYPE_DEBUG,
460        "Initialised modified sampler %s\n",
461        sampler->file_name);
462   to_file (sampler->file_name,
463            "This is a modified sampler");
464 #endif /* TO_FILE */
465
466   return sampler;
467 }
468
469
470 /**
471  * A fuction to update every sampler in the given list
472  *
473  * @param sampler the sampler to update.
474  * @param id the PeerID that is put in the sampler
475  */
476   void
477 RPS_sampler_update (struct RPS_Sampler *sampler,
478                     const struct GNUNET_PeerIdentity *id)
479 {
480   uint32_t i;
481
482   to_file (sampler->file_name,
483            "Got %s",
484            GNUNET_i2s_full (id));
485
486   for (i = 0 ; i < sampler->sampler_size ; i++)
487   {
488     RPS_sampler_elem_next (sampler->sampler_elements[i],
489                            id);
490   }
491
492 }
493
494
495 /**
496  * Reinitialise all previously initialised sampler elements with the given value.
497  *
498  * Used to get rid of a PeerID.
499  *
500  * @param sampler the sampler to reinitialise a sampler element in.
501  * @param id the id of the sampler elements to update.
502  */
503   void
504 RPS_sampler_reinitialise_by_value (struct RPS_Sampler *sampler,
505                                    const struct GNUNET_PeerIdentity *id)
506 {
507   uint32_t i;
508
509   for (i = 0; i < sampler->sampler_size; i++)
510   {
511     if (0 == GNUNET_CRYPTO_cmp_peer_identity(id,
512           &(sampler->sampler_elements[i]->peer_id)) )
513     {
514       LOG (GNUNET_ERROR_TYPE_DEBUG, "Reinitialising sampler\n");
515       to_file (sampler->sampler_elements[i]->file_name,
516                "--- non-active");
517       RPS_sampler_elem_reinit (sampler->sampler_elements[i]);
518     }
519   }
520 }
521
522
523 /**
524  * Get one random peer out of the sampled peers.
525  *
526  * We might want to reinitialise this sampler after giving the
527  * corrsponding peer to the client.
528  * Only used internally
529  */
530 static void
531 sampler_get_rand_peer (void *cls)
532 {
533   struct GetPeerCls *gpc = cls;
534   uint32_t r_index;
535   struct RPS_Sampler *sampler;
536
537   gpc->get_peer_task = NULL;
538   sampler = gpc->req_handle->sampler;
539
540   /**;
541    * Choose the r_index of the peer we want to return
542    * at random from the interval of the gossip list
543    */
544   r_index = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_STRONG,
545       sampler->sampler_size);
546
547   if (EMPTY == sampler->sampler_elements[r_index]->is_empty)
548   {
549     //LOG (GNUNET_ERROR_TYPE_DEBUG,
550     //     "Not returning randomly selected, empty PeerID. - Rescheduling.\n");
551
552     /* FIXME no active wait - get notified, when new id arrives?
553      * Might also be a freshly emptied one. Others might still contain ids.
554      * Counter?
555      */
556     gpc->get_peer_task =
557       GNUNET_SCHEDULER_add_delayed (
558           GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1),
559           &sampler_get_rand_peer,
560           cls);
561     return;
562   }
563
564   GNUNET_CONTAINER_DLL_remove (gpc->req_handle->gpc_head,
565                                gpc->req_handle->gpc_tail,
566                                gpc);
567   *gpc->id = sampler->sampler_elements[r_index]->peer_id;
568   gpc->cont (gpc->cont_cls, gpc->id);
569
570   GNUNET_free (gpc);
571 }
572
573
574 /**
575  * Get one random peer out of the sampled peers.
576  *
577  * This reinitialises the queried sampler element.
578  */
579 static void
580 sampler_mod_get_rand_peer (void *cls)
581 {
582   struct GetPeerCls *gpc = cls;
583   struct RPS_SamplerElement *s_elem;
584   struct GNUNET_TIME_Relative last_request_diff;
585   struct RPS_Sampler *sampler;
586
587   gpc->get_peer_task = NULL;
588   sampler = gpc->req_handle->sampler;
589
590   LOG (GNUNET_ERROR_TYPE_DEBUG, "Single peer was requested\n");
591
592   /* Cycle the #client_get_index one step further */
593   client_get_index = (client_get_index + 1) % sampler->sampler_size;
594
595   s_elem = sampler->sampler_elements[client_get_index];
596   *gpc->id = s_elem->peer_id;
597   GNUNET_assert (NULL != s_elem);
598
599   if (EMPTY == s_elem->is_empty)
600   {
601     LOG (GNUNET_ERROR_TYPE_DEBUG,
602          "Sampler_mod element empty, rescheduling.\n");
603     GNUNET_assert (NULL == gpc->get_peer_task);
604     gpc->get_peer_task =
605       GNUNET_SCHEDULER_add_delayed (sampler->max_round_interval,
606                                     &sampler_mod_get_rand_peer,
607                                     cls);
608     return;
609   }
610
611   /* Check whether we may use this sampler to give it back to the client */
612   if (GNUNET_TIME_UNIT_FOREVER_ABS.abs_value_us != s_elem->last_client_request.abs_value_us)
613   {
614     last_request_diff =
615       GNUNET_TIME_absolute_get_difference (s_elem->last_client_request,
616                                            GNUNET_TIME_absolute_get ());
617     /* We're not going to give it back now if it was
618      * already requested by a client this round */
619     if (last_request_diff.rel_value_us < sampler->max_round_interval.rel_value_us)
620     {
621       LOG (GNUNET_ERROR_TYPE_DEBUG,
622           "Last client request on this sampler was less than max round interval ago -- scheduling for later\n");
623       ///* How many time remains untile the next round has started? */
624       //inv_last_request_diff =
625       //  GNUNET_TIME_absolute_get_difference (last_request_diff,
626       //                                       sampler->max_round_interval);
627       // add a little delay
628       /* Schedule it one round later */
629       GNUNET_assert (NULL == gpc->get_peer_task);
630       gpc->get_peer_task =
631         GNUNET_SCHEDULER_add_delayed (sampler->max_round_interval,
632                                       &sampler_mod_get_rand_peer,
633                                       cls);
634       return;
635     }
636     // TODO add other reasons to wait here
637   }
638
639   s_elem->last_client_request = GNUNET_TIME_absolute_get ();
640   RPS_sampler_elem_reinit (s_elem);
641
642   GNUNET_CONTAINER_DLL_remove (gpc->req_handle->gpc_head,
643                                gpc->req_handle->gpc_tail,
644                                gpc);
645   gpc->cont (gpc->cont_cls, gpc->id);
646   GNUNET_free (gpc);
647 }
648
649
650 /**
651  * Get n random peers out of the sampled peers.
652  *
653  * We might want to reinitialise this sampler after giving the
654  * corrsponding peer to the client.
655  * Random with or without consumption?
656  *
657  * @param sampler the sampler to get peers from.
658  * @param cb callback that will be called once the ids are ready.
659  * @param cls closure given to @a cb
660  * @param for_client #GNUNET_YES if result is used for client,
661  *                   #GNUNET_NO if used internally
662  * @param num_peers the number of peers requested
663  */
664 struct RPS_SamplerRequestHandle *
665 RPS_sampler_get_n_rand_peers (struct RPS_Sampler *sampler,
666                               RPS_sampler_n_rand_peers_ready_cb cb,
667                               void *cls, uint32_t num_peers)
668 {
669   GNUNET_assert (0 != sampler->sampler_size);
670   if (0 == num_peers)
671     return NULL;
672
673   // TODO check if we have too much (distinct) sampled peers
674   uint32_t i;
675   struct RPS_SamplerRequestHandle *req_handle;
676   struct GetPeerCls *gpc;
677
678   req_handle = GNUNET_new (struct RPS_SamplerRequestHandle);
679   req_handle->num_peers = num_peers;
680   req_handle->cur_num_peers = 0;
681   req_handle->ids = GNUNET_new_array (num_peers, struct GNUNET_PeerIdentity);
682   req_handle->sampler = sampler;
683   req_handle->callback = cb;
684   req_handle->cls = cls;
685   GNUNET_CONTAINER_DLL_insert (sampler->req_handle_head,
686                                sampler->req_handle_tail,
687                                req_handle);
688
689   LOG (GNUNET_ERROR_TYPE_DEBUG,
690       "Scheduling requests for %" PRIu32 " peers\n", num_peers);
691
692   for (i = 0 ; i < num_peers ; i++)
693   {
694     gpc = GNUNET_new (struct GetPeerCls);
695     gpc->req_handle = req_handle;
696     gpc->cont = check_n_peers_ready;
697     gpc->cont_cls = req_handle;
698     gpc->id = &req_handle->ids[i];
699
700     GNUNET_CONTAINER_DLL_insert (req_handle->gpc_head,
701                                  req_handle->gpc_tail,
702                                  gpc);
703     // maybe add a little delay
704     gpc->get_peer_task = GNUNET_SCHEDULER_add_now (sampler->get_peers,
705                                                    gpc);
706   }
707   return req_handle;
708 }
709
710 /**
711  * Cancle a request issued through #RPS_sampler_n_rand_peers_ready_cb.
712  *
713  * @param req_handle the handle to the request
714  */
715 void
716 RPS_sampler_request_cancel (struct RPS_SamplerRequestHandle *req_handle)
717 {
718   struct GetPeerCls *i;
719
720   while (NULL != (i = req_handle->gpc_head) )
721   {
722     GNUNET_CONTAINER_DLL_remove (req_handle->gpc_head,
723                                  req_handle->gpc_tail,
724                                  i);
725     if (NULL != i->get_peer_task)
726     {
727       GNUNET_SCHEDULER_cancel (i->get_peer_task);
728     }
729     GNUNET_free (i);
730   }
731   GNUNET_free (req_handle->ids);
732   GNUNET_CONTAINER_DLL_remove (req_handle->sampler->req_handle_head,
733                                req_handle->sampler->req_handle_tail,
734                                req_handle);
735   GNUNET_free (req_handle);
736 }
737
738
739 /**
740  * Counts how many Samplers currently hold a given PeerID.
741  *
742  * @param sampler the sampler to count ids in.
743  * @param id the PeerID to count.
744  *
745  * @return the number of occurrences of id.
746  */
747   uint32_t
748 RPS_sampler_count_id (struct RPS_Sampler *sampler,
749                       const struct GNUNET_PeerIdentity *id)
750 {
751   uint32_t count;
752   uint32_t i;
753
754   count = 0;
755   for ( i = 0 ; i < sampler->sampler_size ; i++ )
756   {
757     if ( 0 == GNUNET_CRYPTO_cmp_peer_identity (&sampler->sampler_elements[i]->peer_id, id)
758         && EMPTY != sampler->sampler_elements[i]->is_empty)
759       count++;
760   }
761   return count;
762 }
763
764
765 /**
766  * Cleans the sampler.
767  */
768   void
769 RPS_sampler_destroy (struct RPS_Sampler *sampler)
770 {
771   if (NULL != sampler->req_handle_head)
772   {
773     LOG (GNUNET_ERROR_TYPE_WARNING,
774         "There are still pending requests. Going to remove them.\n");
775     while (NULL != sampler->req_handle_head)
776     {
777       RPS_sampler_request_cancel (sampler->req_handle_head);
778     }
779   }
780   sampler_empty (sampler);
781   GNUNET_free (sampler);
782 }
783
784 /* end of gnunet-service-rps.c */