2 This file is part of GNUnet
3 Copyright (C) 2018 GNUnet e.V.
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.
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.
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.
21 * @file src/gns/gnunet-gns-benchmark.c
22 * @brief issue many queries to GNS and compute performance statistics
23 * @author Christian Grothoff
26 #include <gnunet_util_lib.h>
27 #include <gnunet_gnsrecord_lib.h>
28 #include <gnunet_gns_service.h>
32 * How long do we wait at least between requests by default?
34 #define DEF_REQUEST_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 1)
37 * How long do we wait until we consider a request failed by default?
39 #define DEF_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
43 * We distinguish between different categories of
44 * requests, for which we track statistics separately.
45 * However, this process does not change how it acts
46 * based on the category.
53 * Must be last and match number of categories.
60 * Request we should make. We keep this struct in memory per request,
61 * thus optimizing it is crucial for the overall memory consumption of
68 * Active requests are kept in a DLL.
73 * Active requests are kept in a DLL.
78 * Socket used to make the request, NULL if not active.
80 struct GNUNET_GNS_LookupWithTldRequest *lr;
83 * Hostname we are resolving, allocated at the end of
84 * this struct (optimizing memory consumption by reducing
85 * total number of allocations).
90 * While we are fetching the record, the value is set to the
91 * starting time of the GNS operation.
93 struct GNUNET_TIME_Absolute op_start_time;
96 * Observed latency, set once we got a reply.
98 struct GNUNET_TIME_Relative latency;
101 * Category of the request.
103 enum RequestCategory cat;
111 static struct GNUNET_GNS_Handle *gns;
114 * Number of lookups we performed overall per category.
116 static unsigned int lookups[RC_MAX];
119 * Number of replies we got per category.
121 static unsigned int replies[RC_MAX];
124 * Number of replies we got per category.
126 static unsigned int failures[RC_MAX];
129 * Sum of the observed latencies of successful queries,
132 static struct GNUNET_TIME_Relative latency_sum[RC_MAX];
135 * Active requests are kept in a DLL.
137 static struct Request *act_head;
140 * Active requests are kept in a DLL.
142 static struct Request *act_tail;
145 * Completed successful requests are kept in a DLL.
147 static struct Request *succ_head;
150 * Completed successful requests are kept in a DLL.
152 static struct Request *succ_tail;
155 * Yet to be started requests are kept in a DLL.
157 static struct Request *todo_head;
160 * Yet to be started requests are kept in a DLL.
162 static struct Request *todo_tail;
167 static struct GNUNET_SCHEDULER_Task *t;
170 * Delay between requests.
172 static struct GNUNET_TIME_Relative request_delay;
175 * Timeout for requests.
177 static struct GNUNET_TIME_Relative timeout;
180 * Number of requests we have concurrently active.
182 static unsigned int active_cnt;
186 * Free @a req and data structures reachable from it.
188 * @param req request to free
191 free_request (struct Request *req)
194 GNUNET_GNS_lookup_with_tld_cancel (req->lr);
200 * Function called with the result of a GNS resolution.
202 * @param cls closure with the `struct Request`
203 * @param gns_tld #GNUNET_YES if GNS lookup was attempted
204 * @param rd_count number of records in @a rd
205 * @param rd the records in reply
208 process_result (void *cls,
211 const struct GNUNET_GNSRECORD_Data *rd)
213 struct Request *req = cls;
220 req->latency = GNUNET_TIME_absolute_get_duration (req->op_start_time);
221 GNUNET_CONTAINER_DLL_remove (act_head,
224 GNUNET_CONTAINER_DLL_insert (succ_head,
228 latency_sum[req->cat]
229 = GNUNET_TIME_relative_add (latency_sum[req->cat],
235 * Process request from the queue.
240 process_queue (void *cls)
243 struct GNUNET_TIME_Relative duration;
247 /* check for expired requests */
248 while (NULL != (req = act_head))
250 duration = GNUNET_TIME_absolute_get_duration (req->op_start_time);
251 if (duration.rel_value_us < timeout.rel_value_us)
253 GNUNET_CONTAINER_DLL_remove (act_head,
256 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
257 "Failing request `%s' due to timeout\n",
259 failures[req->cat]++;
263 if (NULL == (req = todo_head))
265 struct GNUNET_TIME_Absolute at;
267 if (NULL == (req = act_head))
269 GNUNET_SCHEDULER_shutdown ();
272 at = GNUNET_TIME_absolute_add (req->op_start_time,
274 t = GNUNET_SCHEDULER_add_at (at,
279 GNUNET_CONTAINER_DLL_remove (todo_head,
282 GNUNET_CONTAINER_DLL_insert_tail (act_head,
287 req->op_start_time = GNUNET_TIME_absolute_get ();
288 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
289 "Starting request `%s' (%u in parallel)\n",
292 req->lr = GNUNET_GNS_lookup_with_tld (gns,
294 GNUNET_GNSRECORD_TYPE_ANY,
295 GNUNET_GNS_LO_DEFAULT,
298 t = GNUNET_SCHEDULER_add_delayed (request_delay,
305 * Compare two requests by latency for qsort().
307 * @param c1 pointer to `struct Request *`
308 * @param c2 pointer to `struct Request *`
309 * @return -1 if c1<c2, 1 if c1>c2, 0 if c1==c2.
312 compare_req (const void *c1,
315 const struct Request *r1 = *(void **) c1;
316 const struct Request *r2 = *(void **) c2;
318 if (r1->latency.rel_value_us < r2->latency.rel_value_us)
320 if (r1->latency.rel_value_us > r2->latency.rel_value_us)
327 * Output statistics, then clean up and terminate the process.
332 do_shutdown (void *cls)
335 struct Request **ra[RC_MAX];
336 unsigned int rp[RC_MAX];
339 for (enum RequestCategory rc = 0;rc < RC_MAX;rc++)
341 ra[rc] = GNUNET_new_array (replies[rc],
345 for (req = succ_head;NULL != req; req = req->next)
347 GNUNET_assert (rp[req->cat] < replies[req->cat]);
348 ra[req->cat][rp[req->cat]++] = req;
350 for (enum RequestCategory rc = 0;rc < RC_MAX;rc++)
358 "\tlookups: %u replies: %u failures: %u\n",
366 sizeof (struct Request *),
368 latency_sum[rc] = GNUNET_TIME_relative_divide (latency_sum[rc],
372 GNUNET_STRINGS_relative_time_to_string (latency_sum[rc],
374 off = rp[rc] * 50 / 100;
376 "\tmedian(50): %s\n",
377 GNUNET_STRINGS_relative_time_to_string (ra[rc][off]->latency,
379 off = rp[rc] * 75 / 100;
381 "\tquantile(75): %s\n",
382 GNUNET_STRINGS_relative_time_to_string (ra[rc][off]->latency,
384 off = rp[rc] * 90 / 100;
386 "\tquantile(90): %s\n",
387 GNUNET_STRINGS_relative_time_to_string (ra[rc][off]->latency,
389 off = rp[rc] * 99 / 100;
391 "\tquantile(99): %s\n",
392 GNUNET_STRINGS_relative_time_to_string (ra[rc][off]->latency,
394 GNUNET_free (ra[rc]);
398 GNUNET_SCHEDULER_cancel (t);
401 while (NULL != (req = act_head))
403 GNUNET_CONTAINER_DLL_remove (act_head,
408 while (NULL != (req = succ_head))
410 GNUNET_CONTAINER_DLL_remove (succ_head,
415 while (NULL != (req = todo_head))
417 GNUNET_CONTAINER_DLL_remove (todo_head,
424 GNUNET_GNS_disconnect (gns);
431 * Add @a hostname to the list of requests to be made.
433 * @param hostname name to resolve
434 * @param cat category of the @a hostname
437 queue (const char *hostname,
438 enum RequestCategory cat)
444 dot = strchr (hostname,
445 (unsigned char) '.');
448 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
449 "Refusing invalid hostname `%s' (lacks '.')\n",
453 hlen = strlen (hostname) + 1;
454 req = GNUNET_malloc (sizeof (struct Request) + hlen);
456 req->hostname = (char *) &req[1];
457 GNUNET_memcpy (req->hostname,
460 GNUNET_CONTAINER_DLL_insert (todo_head,
467 * Begin processing hostnames from stdin.
472 process_stdin (void *cls)
474 static struct GNUNET_TIME_Absolute last;
475 static uint64_t idot;
488 hn[strlen(in)-1] = '\0'; /* eat newline */
489 if ( (2 != sscanf (in,
496 "Malformed input line `%s', skipping\n",
501 last = GNUNET_TIME_absolute_get ();
503 if (0 == idot % 100000)
505 struct GNUNET_TIME_Relative delta;
507 delta = GNUNET_TIME_absolute_get_duration (last);
508 last = GNUNET_TIME_absolute_get ();
510 "Read 100000 domain names in %s\n",
511 GNUNET_STRINGS_relative_time_to_string (delta,
515 (enum RequestCategory) cat);
518 "Done reading %llu domain names\n",
519 (unsigned long long) idot);
520 t = GNUNET_SCHEDULER_add_now (&process_queue,
526 * Process requests from the queue, then if the queue is
527 * not empty, try again.
530 * @param args remaining command-line arguments
531 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
532 * @param cfg configuration
538 const struct GNUNET_CONFIGURATION_Handle *cfg)
543 GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
545 gns = GNUNET_GNS_connect (cfg);
549 GNUNET_SCHEDULER_shutdown ();
552 t = GNUNET_SCHEDULER_add_now (&process_stdin,
558 * Call with list of names with numeric category to query.
562 * @return 0 on success
569 struct GNUNET_GETOPT_CommandLineOption options[] = {
570 GNUNET_GETOPT_option_relative_time ('d',
573 gettext_noop ("how long to wait between queries"),
575 GNUNET_GETOPT_option_relative_time ('t',
578 gettext_noop ("how long to wait for an answer"),
580 GNUNET_GETOPT_OPTION_END
584 GNUNET_STRINGS_get_utf8_args (argc, argv,
587 timeout = DEF_TIMEOUT;
588 request_delay = DEF_REQUEST_DELAY;
590 GNUNET_PROGRAM_run (argc,
592 "gnunet-gns-benchmark",
593 "resolve GNS names and measure performance",
598 GNUNET_free ((void*) argv);
602 /* end of gnunet-gns-benchmark.c */