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