Merge branch 'collectd-5.6' into collectd-5.7
[collectd.git] / src / ntpd.c
1 /**
2  * collectd - src/ntpd.c
3  * Copyright (C) 2006-2012  Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  **/
26
27 #define _DEFAULT_SOURCE
28 #define _BSD_SOURCE /* For NI_MAXHOST */
29
30 #include "collectd.h"
31
32 #include "common.h"
33 #include "plugin.h"
34
35 #if HAVE_STDINT_H
36 #include <stdint.h>
37 #endif
38 #if HAVE_NETDB_H
39 #include <netdb.h>
40 #endif
41 #if HAVE_NETINET_IN_H
42 #include <netinet/in.h>
43 #endif
44 #if HAVE_ARPA_INET_H
45 #include <arpa/inet.h> /* inet_ntoa */
46 #endif
47 #if HAVE_NETINET_TCP_H
48 #include <netinet/tcp.h>
49 #endif
50 #if HAVE_POLL_H
51 #include <poll.h>
52 #endif
53
54 #ifndef STA_NANO
55 #define STA_NANO 0x2000
56 #endif
57
58 static const char *config_keys[] = {"Host", "Port", "ReverseLookups",
59                                     "IncludeUnitID"};
60 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
61
62 static _Bool do_reverse_lookups = 1;
63
64 /* This option only exists for backward compatibility. If it is false and two
65  * ntpd peers use the same refclock driver, the plugin will try to write
66  * simultaneous measurements from both to the same type instance. */
67 static _Bool include_unit_id = 0;
68
69 #define NTPD_DEFAULT_HOST "localhost"
70 #define NTPD_DEFAULT_PORT "123"
71 static int sock_descr = -1;
72 static char *ntpd_host = NULL;
73 static char ntpd_port[16];
74
75 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
76  * The following definitions were copied from the NTPd distribution  *
77  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
78 #define MAXFILENAME 128
79 #define MAXSEQ 127
80 #define MODE_PRIVATE 7
81 #define NTP_OLDVERSION ((uint8_t)1) /* oldest credible version */
82 #define IMPL_XNTPD 3
83 #define FP_FRAC 65536.0
84
85 #define REFCLOCK_ADDR 0x7f7f0000 /* 127.127.0.0 */
86 #define REFCLOCK_MASK 0xffff0000 /* 255.255.0.0 */
87
88 /* This structure is missing the message authentication code, since collectd
89  * doesn't use it. */
90 struct req_pkt {
91   uint8_t rm_vn_mode;
92   uint8_t auth_seq;
93   uint8_t implementation;      /* implementation number */
94   uint8_t request;             /* request number */
95   uint16_t err_nitems;         /* error code/number of data items */
96   uint16_t mbz_itemsize;       /* item size */
97   char data[MAXFILENAME + 48]; /* data area [32 prev](176 byte max) */
98                                /* struct conf_peer must fit */
99 };
100 #define REQ_LEN_NOMAC (sizeof(struct req_pkt))
101
102 /*
103  * A response packet.  The length here is variable, this is a
104  * maximally sized one.  Note that this implementation doesn't
105  * authenticate responses.
106  */
107 #define RESP_HEADER_SIZE (8)
108 #define RESP_DATA_SIZE (500)
109
110 struct resp_pkt {
111   uint8_t rm_vn_mode;        /* response, more, version, mode */
112   uint8_t auth_seq;          /* key, sequence number */
113   uint8_t implementation;    /* implementation number */
114   uint8_t request;           /* request number */
115   uint16_t err_nitems;       /* error code/number of data items */
116   uint16_t mbz_itemsize;     /* item size */
117   char data[RESP_DATA_SIZE]; /* data area */
118 };
119
120 /*
121  * Bit setting macros for multifield items.
122  */
123 #define RESP_BIT 0x80
124 #define MORE_BIT 0x40
125
126 #define ISRESPONSE(rm_vn_mode) (((rm_vn_mode)&RESP_BIT) != 0)
127 #define ISMORE(rm_vn_mode) (((rm_vn_mode)&MORE_BIT) != 0)
128 #define INFO_VERSION(rm_vn_mode) ((uint8_t)(((rm_vn_mode) >> 3) & 0x7))
129 #define INFO_MODE(rm_vn_mode) ((rm_vn_mode)&0x7)
130
131 #define RM_VN_MODE(resp, more, version)                                        \
132   ((uint8_t)(((resp) ? RESP_BIT : 0) | ((more) ? MORE_BIT : 0) |               \
133              ((version ? version : (NTP_OLDVERSION + 1)) << 3) |               \
134              (MODE_PRIVATE)))
135
136 #define INFO_IS_AUTH(auth_seq) (((auth_seq)&0x80) != 0)
137 #define INFO_SEQ(auth_seq) ((auth_seq)&0x7f)
138 #define AUTH_SEQ(auth, seq)                                                    \
139   ((uint8_t)((((auth) != 0) ? 0x80 : 0) | ((seq)&0x7f)))
140
141 #define INFO_ERR(err_nitems) ((uint16_t)((ntohs(err_nitems) >> 12) & 0xf))
142 #define INFO_NITEMS(err_nitems) ((uint16_t)(ntohs(err_nitems) & 0xfff))
143 #define ERR_NITEMS(err, nitems)                                                \
144   (htons((uint16_t)((((uint16_t)(err) << 12) & 0xf000) |                       \
145                     ((uint16_t)(nitems)&0xfff))))
146
147 #define INFO_MBZ(mbz_itemsize) ((ntohs(mbz_itemsize) >> 12) & 0xf)
148 #define INFO_ITEMSIZE(mbz_itemsize) ((uint16_t)(ntohs(mbz_itemsize) & 0xfff))
149 #define MBZ_ITEMSIZE(itemsize) (htons((uint16_t)(itemsize)))
150
151 /* negate a long float type */
152 #define M_NEG(v_i, v_f)                                                        \
153   do {                                                                         \
154     if ((v_f) == 0)                                                            \
155       (v_i) = -((uint32_t)(v_i));                                              \
156     else {                                                                     \
157       (v_f) = -((uint32_t)(v_f));                                              \
158       (v_i) = ~(v_i);                                                          \
159     }                                                                          \
160   } while (0)
161 /* l_fp to double */
162 #define M_LFPTOD(r_i, r_uf, d)                                                 \
163   do {                                                                         \
164     register int32_t ri;                                                       \
165     register uint32_t rf;                                                      \
166                                                                                \
167     ri = (r_i);                                                                \
168     rf = (r_uf);                                                               \
169     if (ri < 0) {                                                              \
170       M_NEG(ri, rf);                                                           \
171       (d) = -((double)ri + ((double)rf) / 4294967296.0);                       \
172     } else {                                                                   \
173       (d) = (double)ri + ((double)rf) / 4294967296.0;                          \
174     }                                                                          \
175   } while (0)
176
177 #define REQ_PEER_LIST_SUM 1
178 struct info_peer_summary {
179   uint32_t dstadr;         /* local address (zero for undetermined) */
180   uint32_t srcadr;         /* source address */
181   uint16_t srcport;        /* source port */
182   uint8_t stratum;         /* stratum of peer */
183   int8_t hpoll;            /* host polling interval */
184   int8_t ppoll;            /* peer polling interval */
185   uint8_t reach;           /* reachability register */
186   uint8_t flags;           /* flags, from above */
187   uint8_t hmode;           /* peer mode */
188   int32_t delay;           /* peer.estdelay; s_fp */
189   int32_t offset_int;      /* peer.estoffset; integral part */
190   int32_t offset_frc;      /* peer.estoffset; fractional part */
191   uint32_t dispersion;     /* peer.estdisp; u_fp */
192   uint32_t v6_flag;        /* is this v6 or not */
193   uint32_t unused1;        /* (unused) padding for dstadr6 */
194   struct in6_addr dstadr6; /* local address (v6) */
195   struct in6_addr srcadr6; /* source address (v6) */
196 };
197
198 #define REQ_SYS_INFO 4
199 struct info_sys {
200   uint32_t peer;           /* system peer address (v4) */
201   uint8_t peer_mode;       /* mode we are syncing to peer in */
202   uint8_t leap;            /* system leap bits */
203   uint8_t stratum;         /* our stratum */
204   int8_t precision;        /* local clock precision */
205   int32_t rootdelay;       /* distance from sync source */
206   uint32_t rootdispersion; /* dispersion from sync source */
207   uint32_t refid;          /* reference ID of sync source */
208   uint64_t reftime;        /* system reference time */
209   uint32_t poll;           /* system poll interval */
210   uint8_t flags;           /* system flags */
211   uint8_t unused1;         /* unused */
212   uint8_t unused2;         /* unused */
213   uint8_t unused3;         /* unused */
214   int32_t bdelay;          /* default broadcast offset */
215   int32_t frequency;       /* frequency residual (scaled ppm)  */
216   uint64_t authdelay;      /* default authentication delay */
217   uint32_t stability;      /* clock stability (scaled ppm) */
218   int32_t v6_flag;         /* is this v6 or not */
219   int32_t unused4;         /* unused, padding for peer6 */
220   struct in6_addr peer6;   /* system peer address (v6) */
221 };
222
223 #define REQ_GET_KERNEL 38
224 struct info_kernel {
225   int32_t offset;
226   int32_t freq;
227   int32_t maxerror;
228   int32_t esterror;
229   uint16_t status;
230   uint16_t shift;
231   int32_t constant;
232   int32_t precision;
233   int32_t tolerance;
234   /* pps stuff */
235   int32_t ppsfreq;
236   int32_t jitter;
237   int32_t stabil;
238   int32_t jitcnt;
239   int32_t calcnt;
240   int32_t errcnt;
241   int32_t stbcnt;
242 };
243
244 /* List of reference clock names */
245 static const char *refclock_names[] = {
246     "UNKNOWN",    "LOCAL",        "GPS_TRAK",   "WWV_PST",     /*  0- 3 */
247     "SPECTRACOM", "TRUETIME",     "IRIG_AUDIO", "CHU_AUDIO",   /*  4- 7 */
248     "GENERIC",    "GPS_MX4200",   "GPS_AS2201", "GPS_ARBITER", /*  8-11 */
249     "IRIG_TPRO",  "ATOM_LEITCH",  "MSF_EES",    "GPSTM_TRUE",  /* 12-15 */
250     "GPS_BANC",   "GPS_DATUM",    "ACTS_NIST",  "WWV_HEATH",   /* 16-19 */
251     "GPS_NMEA",   "GPS_VME",      "PPS",        "ACTS_PTB",    /* 20-23 */
252     "ACTS_USNO",  "TRUETIME",     "GPS_HP",     "MSF_ARCRON",  /* 24-27 */
253     "SHM",        "GPS_PALISADE", "GPS_ONCORE", "GPS_JUPITER", /* 28-31 */
254     "CHRONOLOG",  "DUMBCLOCK",    "ULINK_M320", "PCF",         /* 32-35 */
255     "WWV_AUDIO",  "GPS_FG",       "HOPF_S",     "HOPF_P",      /* 36-39 */
256     "JJY",        "TT_IRIG",      "GPS_ZYFER",  "GPS_RIPENCC", /* 40-43 */
257     "NEOCLK4X"                                                 /* 44    */
258 };
259 static size_t refclock_names_num = STATIC_ARRAY_SIZE(refclock_names);
260 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
261  * End of the copied stuff..                                         *
262  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
263
264 static int ntpd_config(const char *key, const char *value) {
265   if (strcasecmp(key, "Host") == 0) {
266     if (ntpd_host != NULL)
267       free(ntpd_host);
268     if ((ntpd_host = strdup(value)) == NULL)
269       return (1);
270   } else if (strcasecmp(key, "Port") == 0) {
271     int port = (int)(atof(value));
272     if ((port > 0) && (port <= 65535))
273       ssnprintf(ntpd_port, sizeof(ntpd_port), "%i", port);
274     else
275       sstrncpy(ntpd_port, value, sizeof(ntpd_port));
276   } else if (strcasecmp(key, "ReverseLookups") == 0) {
277     if (IS_TRUE(value))
278       do_reverse_lookups = 1;
279     else
280       do_reverse_lookups = 0;
281   } else if (strcasecmp(key, "IncludeUnitID") == 0) {
282     if (IS_TRUE(value))
283       include_unit_id = 1;
284     else
285       include_unit_id = 0;
286   } else {
287     return (-1);
288   }
289
290   return (0);
291 }
292
293 static void ntpd_submit(const char *type, const char *type_inst,
294                         gauge_t value) {
295   value_list_t vl = VALUE_LIST_INIT;
296
297   vl.values = &(value_t){.gauge = value};
298   vl.values_len = 1;
299   sstrncpy(vl.plugin, "ntpd", sizeof(vl.plugin));
300   sstrncpy(vl.type, type, sizeof(vl.type));
301   sstrncpy(vl.type_instance, type_inst, sizeof(vl.type_instance));
302
303   plugin_dispatch_values(&vl);
304 }
305
306 /* Each time a peer is polled, ntpd shifts the reach register to the left and
307  * sets the LSB based on whether the peer was reachable. If the LSB is zero,
308  * the values are out of date. */
309 static void ntpd_submit_reach(const char *type, const char *type_inst,
310                               uint8_t reach, gauge_t value) {
311   if (!(reach & 1))
312     value = NAN;
313
314   ntpd_submit(type, type_inst, value);
315 }
316
317 static int ntpd_connect(void) {
318   const char *host;
319   const char *port;
320
321   struct addrinfo *ai_list;
322   int status;
323
324   if (sock_descr >= 0)
325     return (sock_descr);
326
327   DEBUG("Opening a new socket");
328
329   host = ntpd_host;
330   if (host == NULL)
331     host = NTPD_DEFAULT_HOST;
332
333   port = ntpd_port;
334   if (strlen(port) == 0)
335     port = NTPD_DEFAULT_PORT;
336
337   struct addrinfo ai_hints = {.ai_family = AF_UNSPEC,
338                               .ai_flags = AI_ADDRCONFIG,
339                               .ai_protocol = IPPROTO_UDP,
340                               .ai_socktype = SOCK_DGRAM};
341
342   if ((status = getaddrinfo(host, port, &ai_hints, &ai_list)) != 0) {
343     char errbuf[1024];
344     ERROR("ntpd plugin: getaddrinfo (%s, %s): %s", host, port,
345           (status == EAI_SYSTEM) ? sstrerror(errno, errbuf, sizeof(errbuf))
346                                  : gai_strerror(status));
347     return (-1);
348   }
349
350   for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL;
351        ai_ptr = ai_ptr->ai_next) {
352     /* create our socket descriptor */
353     if ((sock_descr = socket(ai_ptr->ai_family, ai_ptr->ai_socktype,
354                              ai_ptr->ai_protocol)) < 0)
355       continue;
356
357     /* connect to the ntpd */
358     if (connect(sock_descr, ai_ptr->ai_addr, ai_ptr->ai_addrlen)) {
359       close(sock_descr);
360       sock_descr = -1;
361       continue;
362     }
363
364     break;
365   }
366
367   freeaddrinfo(ai_list);
368
369   if (sock_descr < 0) {
370     ERROR("ntpd plugin: Unable to connect to server.");
371   }
372
373   return (sock_descr);
374 }
375
376 /* For a description of the arguments see `ntpd_do_query' below. */
377 static int ntpd_receive_response(int *res_items, int *res_size, char **res_data,
378                                  int res_item_size) {
379   int sd;
380   struct pollfd poll_s;
381   struct resp_pkt res;
382   int status;
383   int done;
384
385   char *items;
386   size_t items_num;
387
388   struct timeval time_end;
389   struct timeval time_now;
390   int timeout;
391
392   int pkt_item_num; /* items in this packet */
393   int pkt_item_len; /* size of the items in this packet */
394   int pkt_sequence;
395   char pkt_recvd[MAXSEQ + 1] = {
396       0};              /* sequence numbers that have been received */
397   int pkt_recvd_num;   /* number of packets that have been received */
398   int pkt_lastseq;     /* the last sequence number */
399   ssize_t pkt_padding; /* Padding in this packet */
400
401   if ((sd = ntpd_connect()) < 0)
402     return (-1);
403
404   items = NULL;
405   items_num = 0;
406
407   pkt_recvd_num = 0;
408   pkt_lastseq = -1;
409
410   *res_items = 0;
411   *res_size = 0;
412   *res_data = NULL;
413
414   if (gettimeofday(&time_end, NULL) < 0) {
415     char errbuf[1024];
416     ERROR("ntpd plugin: gettimeofday failed: %s",
417           sstrerror(errno, errbuf, sizeof(errbuf)));
418     return (-1);
419   }
420   time_end.tv_sec++; /* wait for a most one second */
421
422   done = 0;
423   while (done == 0) {
424     struct timeval time_left;
425
426     if (gettimeofday(&time_now, NULL) < 0) {
427       char errbuf[1024];
428       ERROR("ntpd plugin: gettimeofday failed: %s",
429             sstrerror(errno, errbuf, sizeof(errbuf)));
430       return (-1);
431     }
432
433     if (timeval_cmp(time_end, time_now, &time_left) <= 0)
434       timeout = 0;
435     else
436       timeout = 1000 * time_left.tv_sec + ((time_left.tv_usec + 500) / 1000);
437
438     /* timeout reached */
439     if (timeout <= 0)
440       break;
441
442     poll_s.fd = sd;
443     poll_s.events = POLLIN | POLLPRI;
444     poll_s.revents = 0;
445
446     DEBUG("Polling for %ims", timeout);
447     status = poll(&poll_s, 1, timeout);
448
449     if ((status < 0) && ((errno == EAGAIN) || (errno == EINTR)))
450       continue;
451
452     if (status < 0) {
453       char errbuf[1024];
454       ERROR("ntpd plugin: poll failed: %s",
455             sstrerror(errno, errbuf, sizeof(errbuf)));
456       return (-1);
457     }
458
459     if (status == 0) /* timeout */
460     {
461       DEBUG("timeout reached.");
462       break;
463     }
464
465     memset(&res, '\0', sizeof(res));
466     status = recv(sd, (void *)&res, sizeof(res), 0 /* no flags */);
467
468     if ((status < 0) && ((errno == EAGAIN) || (errno == EINTR)))
469       continue;
470
471     if (status < 0) {
472       char errbuf[1024];
473       INFO("recv(2) failed: %s", sstrerror(errno, errbuf, sizeof(errbuf)));
474       DEBUG("Closing socket #%i", sd);
475       close(sd);
476       sock_descr = sd = -1;
477       return (-1);
478     }
479
480     DEBUG("recv'd %i bytes", status);
481
482     /*
483      * Do some sanity checks first
484      */
485     if (status < RESP_HEADER_SIZE) {
486       WARNING("ntpd plugin: Short (%i bytes) packet received", (int)status);
487       continue;
488     }
489     if (INFO_MODE(res.rm_vn_mode) != MODE_PRIVATE) {
490       NOTICE("ntpd plugin: Packet received with mode %i",
491              INFO_MODE(res.rm_vn_mode));
492       continue;
493     }
494     if (INFO_IS_AUTH(res.auth_seq)) {
495       NOTICE("ntpd plugin: Encrypted packet received");
496       continue;
497     }
498     if (!ISRESPONSE(res.rm_vn_mode)) {
499       NOTICE("ntpd plugin: Received request packet, "
500              "wanted response");
501       continue;
502     }
503     if (INFO_MBZ(res.mbz_itemsize)) {
504       WARNING("ntpd plugin: Received packet with nonzero "
505               "MBZ field!");
506       continue;
507     }
508     if (res.implementation != IMPL_XNTPD) {
509       WARNING("ntpd plugin: Asked for request of type %i, "
510               "got %i",
511               (int)IMPL_XNTPD, (int)res.implementation);
512       continue;
513     }
514
515     /* Check for error code */
516     if (INFO_ERR(res.err_nitems) != 0) {
517       ERROR("ntpd plugin: Received error code %i",
518             (int)INFO_ERR(res.err_nitems));
519       return ((int)INFO_ERR(res.err_nitems));
520     }
521
522     /* extract number of items in this packet and the size of these items */
523     pkt_item_num = INFO_NITEMS(res.err_nitems);
524     pkt_item_len = INFO_ITEMSIZE(res.mbz_itemsize);
525     DEBUG("pkt_item_num = %i; pkt_item_len = %i;", pkt_item_num, pkt_item_len);
526
527     /* Check if the reported items fit in the packet */
528     if ((pkt_item_num * pkt_item_len) > (status - RESP_HEADER_SIZE)) {
529       ERROR("ntpd plugin: %i items * %i bytes > "
530             "%i bytes - %i bytes header",
531             (int)pkt_item_num, (int)pkt_item_len, (int)status,
532             (int)RESP_HEADER_SIZE);
533       continue;
534     }
535
536     if (pkt_item_len > res_item_size) {
537       ERROR("ntpd plugin: (pkt_item_len = %i) "
538             ">= (res_item_size = %i)",
539             pkt_item_len, res_item_size);
540       continue;
541     }
542
543     /* If this is the first packet (time wise, not sequence wise),
544      * set `res_size'. If it's not the first packet check if the
545      * items have the same size. Discard invalid packets. */
546     if (items_num == 0) /* first packet */
547     {
548       DEBUG("*res_size = %i", pkt_item_len);
549       *res_size = pkt_item_len;
550     } else if (*res_size != pkt_item_len) {
551       DEBUG("Error: *res_size = %i; pkt_item_len = %i;", *res_size,
552             pkt_item_len);
553       ERROR("Item sizes differ.");
554       continue;
555     }
556
557     /*
558      * Because the items in the packet may be smaller than the
559      * items requested, the following holds true:
560      */
561     assert((*res_size == pkt_item_len) && (pkt_item_len <= res_item_size));
562
563     /* Calculate the padding. No idea why there might be any padding.. */
564     pkt_padding = 0;
565     if (pkt_item_len < res_item_size)
566       pkt_padding = res_item_size - pkt_item_len;
567     DEBUG("res_item_size = %i; pkt_padding = %zi;", res_item_size, pkt_padding);
568
569     /* Extract the sequence number */
570     pkt_sequence = INFO_SEQ(res.auth_seq);
571     if ((pkt_sequence < 0) || (pkt_sequence > MAXSEQ)) {
572       ERROR("ntpd plugin: Received packet with sequence %i", pkt_sequence);
573       continue;
574     }
575
576     /* Check if this sequence has been received before. If so, discard it. */
577     if (pkt_recvd[pkt_sequence] != '\0') {
578       NOTICE("ntpd plugin: Sequence %i received twice", pkt_sequence);
579       continue;
580     }
581
582     /* If `pkt_lastseq != -1' another packet without `more bit' has
583      * been received. */
584     if (!ISMORE(res.rm_vn_mode)) {
585       if (pkt_lastseq != -1) {
586         ERROR("ntpd plugin: Two packets which both "
587               "claim to be the last one in the "
588               "sequence have been received.");
589         continue;
590       }
591       pkt_lastseq = pkt_sequence;
592       DEBUG("Last sequence = %i;", pkt_lastseq);
593     }
594
595     /*
596      * Enough with the checks. Copy the data now.
597      * We start by allocating some more memory.
598      */
599     DEBUG("realloc (%p, %zu)", (void *)*res_data,
600           (items_num + pkt_item_num) * res_item_size);
601     items = realloc(*res_data, (items_num + pkt_item_num) * res_item_size);
602     if (items == NULL) {
603       ERROR("ntpd plugin: realloc failed.");
604       continue;
605     }
606     items_num += pkt_item_num;
607     *res_data = items;
608
609     for (int i = 0; i < pkt_item_num; i++) {
610       /* dst: There are already `*res_items' items with
611        *      res_item_size bytes each in in `*res_data'. Set
612        *      dst to the first byte after that. */
613       void *dst = (void *)(*res_data + ((*res_items) * res_item_size));
614       /* src: We use `pkt_item_len' to calculate the offset
615        *      from the beginning of the packet, because the
616        *      items in the packet may be smaller than the
617        *      items that were requested. We skip `i' such
618        *      items. */
619       void *src = (void *)(((char *)res.data) + (i * pkt_item_len));
620
621       /* Set the padding to zeros */
622       if (pkt_padding != 0)
623         memset(dst, '\0', res_item_size);
624       memcpy(dst, src, (size_t)pkt_item_len);
625
626       /* Increment `*res_items' by one, so `dst' will end up
627        * one further in the next round. */
628       (*res_items)++;
629     } /* for (pkt_item_num) */
630
631     pkt_recvd[pkt_sequence] = (char)1;
632     pkt_recvd_num++;
633
634     if ((pkt_recvd_num - 1) == pkt_lastseq)
635       done = 1;
636   } /* while (done == 0) */
637
638   return (0);
639 } /* int ntpd_receive_response */
640
641 /* For a description of the arguments see `ntpd_do_query' below. */
642 static int ntpd_send_request(int req_code, int req_items, int req_size,
643                              char *req_data) {
644   int sd;
645   struct req_pkt req = {0};
646   size_t req_data_len;
647   int status;
648
649   assert(req_items >= 0);
650   assert(req_size >= 0);
651
652   if ((sd = ntpd_connect()) < 0)
653     return (-1);
654
655   req.rm_vn_mode = RM_VN_MODE(0, 0, 0);
656   req.auth_seq = AUTH_SEQ(0, 0);
657   req.implementation = IMPL_XNTPD;
658   req.request = (unsigned char)req_code;
659
660   req_data_len = (size_t)(req_items * req_size);
661
662   assert(((req_data != NULL) && (req_data_len > 0)) ||
663          ((req_data == NULL) && (req_items == 0) && (req_size == 0)));
664
665   req.err_nitems = ERR_NITEMS(0, req_items);
666   req.mbz_itemsize = MBZ_ITEMSIZE(req_size);
667
668   if (req_data != NULL)
669     memcpy((void *)req.data, (const void *)req_data, req_data_len);
670
671   DEBUG("req_items = %i; req_size = %i; req_data = %p;", req_items, req_size,
672         (void *)req_data);
673
674   status = swrite(sd, (const char *)&req, REQ_LEN_NOMAC);
675   if (status < 0) {
676     DEBUG("`swrite' failed. Closing socket #%i", sd);
677     close(sd);
678     sock_descr = sd = -1;
679     return (status);
680   }
681
682   return (0);
683 }
684
685 /*
686  * ntpd_do_query:
687  *
688  * req_code:      Type of request packet
689  * req_items:     Numver of items in the request
690  * req_size:      Size of one item in the request
691  * req_data:      Data of the request packet
692  * res_items:     Pointer to where the number returned items will be stored.
693  * res_size:      Pointer to where the size of one returned item will be stored.
694  * res_data:      This is where a pointer to the (allocated) data will be
695  * stored.
696  * res_item_size: Size of one returned item. (used to calculate padding)
697  *
698  * returns:       zero upon success, non-zero otherwise.
699  */
700 static int ntpd_do_query(int req_code, int req_items, int req_size,
701                          char *req_data, int *res_items, int *res_size,
702                          char **res_data, int res_item_size) {
703   int status;
704
705   status = ntpd_send_request(req_code, req_items, req_size, req_data);
706   if (status != 0)
707     return (status);
708
709   status = ntpd_receive_response(res_items, res_size, res_data, res_item_size);
710   return (status);
711 }
712
713 static double ntpd_read_fp(int32_t val_int) {
714   double val_double;
715
716   val_int = ntohl(val_int);
717   val_double = ((double)val_int) / FP_FRAC;
718
719   return (val_double);
720 }
721
722 static uint32_t
723 ntpd_get_refclock_id(struct info_peer_summary const *peer_info) {
724   uint32_t addr = ntohl(peer_info->srcadr);
725   uint32_t refclock_id = (addr >> 8) & 0x00FF;
726
727   return (refclock_id);
728 }
729
730 static int ntpd_get_name_from_address(char *buffer, size_t buffer_size,
731                                       struct info_peer_summary const *peer_info,
732                                       _Bool do_reverse_lookup) {
733   struct sockaddr_storage sa = {0};
734   socklen_t sa_len;
735   int flags = 0;
736   int status;
737
738   if (peer_info->v6_flag) {
739     struct sockaddr_in6 sa6 = {0};
740
741     assert(sizeof(sa) >= sizeof(sa6));
742
743     sa6.sin6_family = AF_INET6;
744     sa6.sin6_port = htons(123);
745     memcpy(&sa6.sin6_addr, &peer_info->srcadr6, sizeof(struct in6_addr));
746     sa_len = sizeof(sa6);
747
748     memcpy(&sa, &sa6, sizeof(sa6));
749   } else {
750     struct sockaddr_in sa4 = {0};
751
752     assert(sizeof(sa) >= sizeof(sa4));
753
754     sa4.sin_family = AF_INET;
755     sa4.sin_port = htons(123);
756     memcpy(&sa4.sin_addr, &peer_info->srcadr, sizeof(struct in_addr));
757     sa_len = sizeof(sa4);
758
759     memcpy(&sa, &sa4, sizeof(sa4));
760   }
761
762   if (!do_reverse_lookup)
763     flags |= NI_NUMERICHOST;
764
765   status = getnameinfo((struct sockaddr const *)&sa, sa_len, buffer,
766                        buffer_size, NULL, 0, /* No port name */
767                        flags);
768   if (status != 0) {
769     char errbuf[1024];
770     ERROR("ntpd plugin: getnameinfo failed: %s",
771           (status == EAI_SYSTEM) ? sstrerror(errno, errbuf, sizeof(errbuf))
772                                  : gai_strerror(status));
773     return (-1);
774   }
775
776   return (0);
777 } /* ntpd_get_name_from_address */
778
779 static int ntpd_get_name_refclock(char *buffer, size_t buffer_size,
780                                   struct info_peer_summary const *peer_info) {
781   uint32_t refclock_id = ntpd_get_refclock_id(peer_info);
782   uint32_t unit_id = ntohl(peer_info->srcadr) & 0x00FF;
783
784   if (((size_t)refclock_id) >= refclock_names_num)
785     return (ntpd_get_name_from_address(buffer, buffer_size, peer_info,
786                                        /* do_reverse_lookup = */ 0));
787
788   if (include_unit_id)
789     ssnprintf(buffer, buffer_size, "%s-%" PRIu32, refclock_names[refclock_id],
790               unit_id);
791   else
792     sstrncpy(buffer, refclock_names[refclock_id], buffer_size);
793
794   return (0);
795 } /* int ntpd_get_name_refclock */
796
797 static int ntpd_get_name(char *buffer, size_t buffer_size,
798                          struct info_peer_summary const *peer_info) {
799   uint32_t addr = ntohl(peer_info->srcadr);
800
801   if (!peer_info->v6_flag && ((addr & REFCLOCK_MASK) == REFCLOCK_ADDR))
802     return (ntpd_get_name_refclock(buffer, buffer_size, peer_info));
803   else
804     return (ntpd_get_name_from_address(buffer, buffer_size, peer_info,
805                                        do_reverse_lookups));
806 } /* int ntpd_addr_to_name */
807
808 static int ntpd_read(void) {
809   struct info_kernel *ik;
810   int ik_num;
811   int ik_size;
812
813   struct info_peer_summary *ps;
814   int ps_num;
815   int ps_size;
816
817   gauge_t offset_loop;
818   gauge_t freq_loop;
819   gauge_t offset_error;
820
821   int status;
822
823   /* On Linux, if the STA_NANO bit is set in ik->status, then ik->offset
824    * is is nanoseconds, otherwise it's microseconds. */
825   double scale_loop = 1e-6;
826   double scale_error = 1e-6;
827
828   ik = NULL;
829   ik_num = 0;
830   ik_size = 0;
831
832   status = ntpd_do_query(REQ_GET_KERNEL, 0, 0, NULL, /* request data */
833                          &ik_num, &ik_size,
834                          (char **)((void *)&ik), /* response data */
835                          sizeof(struct info_kernel));
836   if (status != 0) {
837     ERROR("ntpd plugin: ntpd_do_query (REQ_GET_KERNEL) failed with status %i",
838           status);
839     return (status);
840   } else if ((ik == NULL) || (ik_num == 0) || (ik_size == 0)) {
841     ERROR("ntpd plugin: ntpd_do_query returned unexpected data. "
842           "(ik = %p; ik_num = %i; ik_size = %i)",
843           (void *)ik, ik_num, ik_size);
844     return (-1);
845   }
846
847   if (ntohs(ik->status) & STA_NANO) {
848     scale_loop = 1e-9;
849     scale_error = 1e-9;
850   }
851
852   /* kerninfo -> estimated error */
853   offset_loop = scale_loop * ((gauge_t)ntohl(ik->offset));
854   freq_loop = ntpd_read_fp(ik->freq);
855   offset_error = scale_error * ((gauge_t)ntohl(ik->esterror));
856
857   DEBUG("info_kernel:\n"
858         "  pll offset    = %.8g\n"
859         "  pll frequency = %.8g\n" /* drift compensation */
860         "  est error     = %.8g\n",
861         offset_loop, freq_loop, offset_error);
862
863   ntpd_submit("frequency_offset", "loop", freq_loop);
864   ntpd_submit("time_offset", "loop", offset_loop);
865   ntpd_submit("time_offset", "error", offset_error);
866
867   free(ik);
868   ik = NULL;
869
870   status = ntpd_do_query(REQ_PEER_LIST_SUM, 0, 0, NULL, /* request data */
871                          &ps_num, &ps_size,
872                          (char **)((void *)&ps), /* response data */
873                          sizeof(struct info_peer_summary));
874   if (status != 0) {
875     ERROR(
876         "ntpd plugin: ntpd_do_query (REQ_PEER_LIST_SUM) failed with status %i",
877         status);
878     return (status);
879   } else if ((ps == NULL) || (ps_num == 0) || (ps_size == 0)) {
880     ERROR("ntpd plugin: ntpd_do_query returned unexpected data. "
881           "(ps = %p; ps_num = %i; ps_size = %i)",
882           (void *)ps, ps_num, ps_size);
883     return (-1);
884   }
885
886   for (int i = 0; i < ps_num; i++) {
887     struct info_peer_summary *ptr;
888     double offset;
889
890     char peername[NI_MAXHOST];
891     uint32_t refclock_id;
892
893     ptr = ps + i;
894
895     status = ntpd_get_name(peername, sizeof(peername), ptr);
896     if (status != 0) {
897       ERROR("ntpd plugin: Determining name of peer failed.");
898       continue;
899     }
900
901     refclock_id = ntpd_get_refclock_id(ptr);
902
903     /* Convert the `long floating point' offset value to double */
904     M_LFPTOD(ntohl(ptr->offset_int), ntohl(ptr->offset_frc), offset);
905
906     DEBUG("peer %i:\n"
907           "  peername   = %s\n"
908           "  srcadr     = 0x%08x\n"
909           "  reach      = 0%03o\n"
910           "  delay      = %f\n"
911           "  offset_int = %i\n"
912           "  offset_frc = %i\n"
913           "  offset     = %f\n"
914           "  dispersion = %f\n",
915           i, peername, ntohl(ptr->srcadr), ptr->reach, ntpd_read_fp(ptr->delay),
916           ntohl(ptr->offset_int), ntohl(ptr->offset_frc), offset,
917           ntpd_read_fp(ptr->dispersion));
918
919     if (refclock_id !=
920         1) /* not the system clock (offset will always be zero.. */
921       ntpd_submit_reach("time_offset", peername, ptr->reach, offset);
922     ntpd_submit_reach("time_dispersion", peername, ptr->reach,
923                       ntpd_read_fp(ptr->dispersion));
924     if (refclock_id == 0) /* not a reference clock */
925       ntpd_submit_reach("delay", peername, ptr->reach,
926                         ntpd_read_fp(ptr->delay));
927   }
928
929   free(ps);
930   ps = NULL;
931
932   return (0);
933 } /* int ntpd_read */
934
935 void module_register(void) {
936   plugin_register_config("ntpd", ntpd_config, config_keys, config_keys_num);
937   plugin_register_read("ntpd", ntpd_read);
938 } /* void module_register */