remove dead statistic
[oweals/gnunet.git] / src / zonemaster / gnunet-service-zonemaster-monitor.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012, 2013, 2014, 2017, 2018 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file zonemaster/gnunet-service-zonemaster-monitor.c
23  * @brief monitor namestore changes and publish them immediately to GNUnet name system
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_dht_service.h"
29 #include "gnunet_namestore_service.h"
30 #include "gnunet_statistics_service.h"
31
32
33 #define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
34
35
36 /**
37  * How often should we (re)publish each record before
38  * it expires?
39  */
40 #define PUBLISH_OPS_PER_EXPIRATION 4
41
42 /**
43  * How many pending DHT operations do we allow at most?
44  */
45 #define DHT_QUEUE_LIMIT 2000
46
47 /**
48  * How many events may the namestore give us before it has to wait
49  * for us to keep up?
50  */
51 #define NAMESTORE_QUEUE_LIMIT 50
52
53 /**
54  * What replication level do we use for DHT PUT operations?
55  */
56 #define DHT_GNS_REPLICATION_LEVEL 5
57
58
59 /**
60  * Handle for DHT PUT activity triggered from the namestore monitor.
61  */
62 struct DhtPutActivity
63 {
64   /**
65    * Kept in a DLL.
66    */
67   struct DhtPutActivity *next;
68
69   /**
70    * Kept in a DLL.
71    */
72   struct DhtPutActivity *prev;
73
74   /**
75    * Handle for the DHT PUT operation.
76    */
77   struct GNUNET_DHT_PutHandle *ph;
78
79   /**
80    * When was this PUT initiated?
81    */
82   struct GNUNET_TIME_Absolute start_date;
83 };
84
85
86 /**
87  * Handle to the statistics service
88  */
89 static struct GNUNET_STATISTICS_Handle *statistics;
90
91 /**
92  * Our handle to the DHT
93  */
94 static struct GNUNET_DHT_Handle *dht_handle;
95
96 /**
97  * Our handle to the namestore service
98  */
99 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
100
101 /**
102  * Handle to monitor namestore changes to instant propagation.
103  */
104 static struct GNUNET_NAMESTORE_ZoneMonitor *zmon;
105
106 /**
107  * Head of monitor activities; kept in a DLL.
108  */
109 static struct DhtPutActivity *ma_head;
110
111 /**
112  * Tail of monitor activities; kept in a DLL.
113  */
114 static struct DhtPutActivity *ma_tail;
115
116 /**
117  * Number of entries in the DHT queue #ma_head.
118  */
119 static unsigned int ma_queue_length;
120
121 /**
122  * Optimize block insertion by caching map of private keys to
123  * public keys in memory?
124  */
125 static int cache_keys;
126
127
128 /**
129  * Task run during shutdown.
130  *
131  * @param cls unused
132  * @param tc unused
133  */
134 static void
135 shutdown_task (void *cls)
136 {
137   struct DhtPutActivity *ma;
138
139   (void) cls;
140   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
141               "Shutting down!\n");
142   while (NULL != (ma = ma_head))
143   {
144     GNUNET_DHT_put_cancel (ma->ph);
145     ma_queue_length--;
146     GNUNET_CONTAINER_DLL_remove (ma_head,
147                                  ma_tail,
148                                  ma);
149     GNUNET_free (ma);
150   }
151   if (NULL != statistics)
152   {
153     GNUNET_STATISTICS_destroy (statistics,
154                                GNUNET_NO);
155     statistics = NULL;
156   }
157   if (NULL != zmon)
158   {
159     GNUNET_NAMESTORE_zone_monitor_stop (zmon);
160     zmon = NULL;
161   }
162   if (NULL != namestore_handle)
163   {
164     GNUNET_NAMESTORE_disconnect (namestore_handle);
165     namestore_handle = NULL;
166   }
167   if (NULL != dht_handle)
168   {
169     GNUNET_DHT_disconnect (dht_handle);
170     dht_handle = NULL;
171   }
172 }
173
174
175 /**
176  * Continuation called from DHT once the PUT operation triggered
177  * by a monitor is done.
178  *
179  * @param cls a `struct DhtPutActivity`
180  */
181 static void
182 dht_put_monitor_continuation (void *cls)
183 {
184   struct DhtPutActivity *ma = cls;
185
186   GNUNET_NAMESTORE_zone_monitor_next (zmon,
187                                       1);
188   ma_queue_length--;
189   GNUNET_CONTAINER_DLL_remove (ma_head,
190                                ma_tail,
191                                ma);
192   GNUNET_free (ma);
193 }
194
195
196 /**
197  * Convert namestore records from the internal format to that
198  * suitable for publication (removes private records, converts
199  * to absolute expiration time).
200  *
201  * @param rd input records
202  * @param rd_count size of the @a rd and @a rd_public arrays
203  * @param rd_public where to write the converted records
204  * @return number of records written to @a rd_public
205  */
206 static unsigned int
207 convert_records_for_export (const struct GNUNET_GNSRECORD_Data *rd,
208                             unsigned int rd_count,
209                             struct GNUNET_GNSRECORD_Data *rd_public)
210 {
211   struct GNUNET_TIME_Absolute now;
212   unsigned int rd_public_count;
213
214   rd_public_count = 0;
215   now = GNUNET_TIME_absolute_get ();
216   for (unsigned int i=0;i<rd_count;i++)
217     if (0 == (rd[i].flags & GNUNET_GNSRECORD_RF_PRIVATE))
218     {
219       rd_public[rd_public_count] = rd[i];
220       if (rd_public[rd_public_count].expiration_time < now.abs_value_us)
221       {
222         /* record already expired, skip it */
223         continue;
224       }
225       rd_public_count++;
226     }
227   return rd_public_count;
228 }
229
230
231 /**
232  * Store GNS records in the DHT.
233  *
234  * @param key key of the zone
235  * @param label label to store under
236  * @param rd_public public record data
237  * @param rd_public_count number of records in @a rd_public
238  * @param ma handle for the PUT operation
239  * @return DHT PUT handle, NULL on error
240  */
241 static struct GNUNET_DHT_PutHandle *
242 perform_dht_put (const struct GNUNET_CRYPTO_EcdsaPrivateKey *key,
243                  const char *label,
244                  const struct GNUNET_GNSRECORD_Data *rd_public,
245                  unsigned int rd_public_count,
246                  struct DhtPutActivity *ma)
247 {
248   struct GNUNET_GNSRECORD_Block *block;
249   struct GNUNET_HashCode query;
250   struct GNUNET_TIME_Absolute expire;
251   size_t block_size;
252   struct GNUNET_DHT_PutHandle *ret;
253
254   expire = GNUNET_GNSRECORD_record_get_expiration_time (rd_public_count,
255                                                         rd_public);
256   if (cache_keys)
257     block = GNUNET_GNSRECORD_block_create2 (key,
258                                             expire,
259                                             label,
260                                             rd_public,
261                                             rd_public_count);
262   else
263     block = GNUNET_GNSRECORD_block_create (key,
264                                            expire,
265                                            label,
266                                            rd_public,
267                                            rd_public_count);
268   if (NULL == block)
269   {
270     GNUNET_break (0);
271     return NULL; /* whoops */
272   }
273   block_size = ntohl (block->purpose.size)
274     + sizeof (struct GNUNET_CRYPTO_EcdsaSignature)
275     + sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey);
276   GNUNET_GNSRECORD_query_from_private_key (key,
277                                            label,
278                                            &query);
279   GNUNET_STATISTICS_update (statistics,
280                             "DHT put operations initiated",
281                             1,
282                             GNUNET_NO);
283   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
284               "Storing %u record(s) for label `%s' in DHT with expiration `%s' under key %s\n",
285               rd_public_count,
286               label,
287               GNUNET_STRINGS_absolute_time_to_string (expire),
288               GNUNET_h2s (&query));
289   ret = GNUNET_DHT_put (dht_handle,
290                         &query,
291                         DHT_GNS_REPLICATION_LEVEL,
292                         GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
293                         GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
294                         block_size,
295                         block,
296                         expire,
297                         &dht_put_monitor_continuation,
298                         ma);
299   GNUNET_free (block);
300   return ret;
301 }
302
303
304 /**
305  * Process a record that was stored in the namestore
306  * (invoked by the monitor).
307  *
308  * @param cls closure, NULL
309  * @param zone private key of the zone; NULL on disconnect
310  * @param label label of the records; NULL on disconnect
311  * @param rd_count number of entries in @a rd array, 0 if label was deleted
312  * @param rd array of records with data to store
313  */
314 static void
315 handle_monitor_event (void *cls,
316                       const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
317                       const char *label,
318                       unsigned int rd_count,
319                       const struct GNUNET_GNSRECORD_Data *rd)
320 {
321   struct GNUNET_GNSRECORD_Data rd_public[rd_count];
322   unsigned int rd_public_count;
323   struct DhtPutActivity *ma;
324
325   (void) cls;
326   GNUNET_STATISTICS_update (statistics,
327                             "Namestore monitor events received",
328                             1,
329                             GNUNET_NO);
330   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
331               "Received %u records for label `%s' via namestore monitor\n",
332               rd_count,
333               label);
334   /* filter out records that are not public, and convert to
335      absolute expiration time. */
336   rd_public_count = convert_records_for_export (rd,
337                                                 rd_count,
338                                                 rd_public);
339   if (0 == rd_public_count)
340   {
341     GNUNET_NAMESTORE_zone_monitor_next (zmon,
342                                         1);
343     return; /* nothing to do */
344   }
345   ma = GNUNET_new (struct DhtPutActivity);
346   ma->start_date = GNUNET_TIME_absolute_get ();
347   ma->ph = perform_dht_put (zone,
348                             label,
349                             rd,
350                             rd_count,
351                             ma);
352   if (NULL == ma->ph)
353   {
354     /* PUT failed, do not remember operation */
355     GNUNET_free (ma);
356     GNUNET_NAMESTORE_zone_monitor_next (zmon,
357                                         1);
358     return;
359   }
360   GNUNET_CONTAINER_DLL_insert_tail (ma_head,
361                                     ma_tail,
362                                     ma);
363   ma_queue_length++;
364   if (ma_queue_length > DHT_QUEUE_LIMIT)
365   {
366     ma = ma_head;
367     GNUNET_CONTAINER_DLL_remove (ma_head,
368                                  ma_tail,
369                                  ma);
370     GNUNET_DHT_put_cancel (ma->ph);
371     ma_queue_length--;
372     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
373                 "DHT PUT unconfirmed after %s, aborting PUT\n",
374                 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (ma->start_date),
375                                                         GNUNET_YES));
376     GNUNET_free (ma);
377   }
378 }
379
380
381 /**
382  * The zone monitor encountered an IPC error trying to to get in
383  * sync. Restart from the beginning.
384  *
385  * @param cls NULL
386  */
387 static void
388 handle_monitor_error (void *cls)
389 {
390   (void) cls;
391   GNUNET_STATISTICS_update (statistics,
392                             "Namestore monitor errors encountered",
393                             1,
394                             GNUNET_NO);
395 }
396
397
398 /**
399  * Performe zonemaster duties: watch namestore, publish records.
400  *
401  * @param cls closure
402  * @param server the initialized server
403  * @param c configuration to use
404  */
405 static void
406 run (void *cls,
407      const struct GNUNET_CONFIGURATION_Handle *c,
408      struct GNUNET_SERVICE_Handle *service)
409 {
410   unsigned long long max_parallel_bg_queries = 128;
411
412   (void) cls;
413   (void) service;
414   namestore_handle = GNUNET_NAMESTORE_connect (c);
415   if (NULL == namestore_handle)
416   {
417     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
418                 _("Failed to connect to the namestore!\n"));
419     GNUNET_SCHEDULER_shutdown ();
420     return;
421   }
422   cache_keys = GNUNET_CONFIGURATION_get_value_yesno (c,
423                                                      "namestore",
424                                                      "CACHE_KEYS");
425   if (GNUNET_OK ==
426       GNUNET_CONFIGURATION_get_value_number (c,
427                                              "zonemaster",
428                                              "MAX_PARALLEL_BACKGROUND_QUERIES",
429                                              &max_parallel_bg_queries))
430   {
431     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
432                 "Number of allowed parallel background queries: %llu\n",
433                 max_parallel_bg_queries);
434   }
435   if (0 == max_parallel_bg_queries)
436     max_parallel_bg_queries = 1;
437   dht_handle = GNUNET_DHT_connect (c,
438                                    (unsigned int) max_parallel_bg_queries);
439   if (NULL == dht_handle)
440   {
441     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
442                 _("Could not connect to DHT!\n"));
443     GNUNET_SCHEDULER_add_now (&shutdown_task,
444                               NULL);
445     return;
446   }
447
448   /* Schedule periodic put for our records. */
449   statistics = GNUNET_STATISTICS_create ("zonemaster-mon",
450                                          c);
451   zmon = GNUNET_NAMESTORE_zone_monitor_start (c,
452                                               NULL,
453                                               GNUNET_NO,
454                                               &handle_monitor_error,
455                                               NULL,
456                                               &handle_monitor_event,
457                                               NULL,
458                                               NULL /* sync_cb */,
459                                               NULL);
460   GNUNET_NAMESTORE_zone_monitor_next (zmon,
461                                       NAMESTORE_QUEUE_LIMIT - 1);
462   GNUNET_break (NULL != zmon);
463   GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
464                                  NULL);
465 }
466
467
468 /**
469  * Define "main" method using service macro.
470  */
471 GNUNET_SERVICE_MAIN
472 ("zonemaster-monitor",
473  GNUNET_SERVICE_OPTION_NONE,
474  &run,
475  NULL,
476  NULL,
477  NULL,
478  GNUNET_MQ_handler_end());
479
480
481 /* end of gnunet-service-zonemaster-monitor.c */