74dae52d6fd04dac78704ee62f3c56bc1c1308e0
[collectd.git] / src / chrony.c
1 /* chrony plugin for collectd (monitoring of chrony time server daemon)
2  **********************************************************************
3  * Copyright (C) Claudius M Zingerli, ZSeng, 2015-2016
4  *
5  * Internals roughly based on the ntpd plugin
6  * Some functions copied from chronyd/web (as marked)
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of version 2 of the GNU General Public License as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20  *
21  * TODO:
22  *      - More robust udp parsing (using offsets instead of structs?)
23  *        -> Currently chrony parses its data the same way as we do (using
24  *structs)
25  *      - Plausibility checks on values received
26  *        -> Done at higher levels
27  */
28
29 #include "collectd.h"
30
31 #include "common.h" /* auxiliary functions */
32 #include "plugin.h" /* plugin_register_*, plugin_dispatch_values */
33
34 #if HAVE_NETDB_H
35 #include <netdb.h> /* struct addrinfo */
36 #endif
37 #if HAVE_ARPA_INET_H
38 #include <arpa/inet.h> /* ntohs/ntohl */
39 #endif
40
41 #define CONFIG_KEY_HOST "Host"
42 #define CONFIG_KEY_PORT "Port"
43 #define CONFIG_KEY_TIMEOUT "Timeout"
44
45 #define URAND_DEVICE_PATH                                                      \
46   "/dev/urandom" /* Used to initialize seq nr generator */
47 #define RAND_DEVICE_PATH                                                       \
48   "/dev/random" /* Used to initialize seq nr generator (fall back) */
49
50 static const char *g_config_keys[] = {CONFIG_KEY_HOST, CONFIG_KEY_PORT,
51                                       CONFIG_KEY_TIMEOUT};
52
53 static int g_config_keys_num = STATIC_ARRAY_SIZE(g_config_keys);
54 static int g_chrony_is_connected;
55 static int g_chrony_socket = -1;
56 static time_t g_chrony_timeout = -1;
57 static char *g_chrony_plugin_instance;
58 static char *g_chrony_host;
59 static char *g_chrony_port;
60 static uint32_t g_chrony_rand = 1;
61 static uint32_t g_chrony_seq_is_initialized;
62
63 #define PLUGIN_NAME_SHORT "chrony"
64 #define PLUGIN_NAME PLUGIN_NAME_SHORT " plugin"
65 #define DAEMON_NAME PLUGIN_NAME_SHORT
66 #define CHRONY_DEFAULT_HOST "localhost"
67 #define CHRONY_DEFAULT_PORT "323"
68 #define CHRONY_DEFAULT_TIMEOUT 2
69
70 /* Return codes (collectd expects non-zero on errors) */
71 #define CHRONY_RC_OK 0
72 #define CHRONY_RC_FAIL 1
73
74 /* Chronyd command packet variables adapted from chrony/candm.h (GPL2) */
75 #define PROTO_VERSION_NUMBER 6
76 #define IPADDR_UNSPEC 0
77 #define IPADDR_INET4 1
78 #define IPADDR_INET6 2
79 #define IPV6_STR_MAX_SIZE (8 * 4 + 7 + 1)
80 #define MODE_REFCLOCK 2
81
82 typedef enum { PKT_TYPE_CMD_REQUEST = 1, PKT_TYPE_CMD_REPLY = 2 } ePacketType;
83
84 typedef enum {
85   REQ_N_SOURCES = 14,
86   REQ_SOURCE_DATA = 15,
87   REQ_TRACKING = 33,
88   REQ_SOURCE_STATS = 34
89 } eDaemonRequests;
90
91 typedef enum {
92   RPY_NULL = 1,
93   RPY_N_SOURCES = 2,
94   RPY_SOURCE_DATA = 3,
95   RPY_MANUAL_TIMESTAMP = 4,
96   RPY_TRACKING = 5,
97   RPY_SOURCE_STATS = 6,
98   RPY_RTC = 7
99 } eDaemonReplies;
100
101 #if defined(__GNUC__) || defined(__SUNPRO_C) || defined(lint)
102 #/* extension to enforce struct packing. */
103 #define ATTRIB_PACKED __attribute__((packed))
104 #else
105 #error Not defining packed attribute (unknown compiler)
106 #define ATTRIB_PACKED
107 #endif
108
109 typedef struct ATTRIB_PACKED { int32_t value; } tFloat;
110
111 typedef struct ATTRIB_PACKED {
112   uint32_t tv_sec_high;
113   uint32_t tv_sec_low;
114   uint32_t tv_nsec;
115 } tTimeval;
116
117 typedef enum {
118   STT_SUCCESS = 0,
119   STT_FAILED = 1,
120   STT_UNAUTH = 2,
121   STT_INVALID = 3,
122   STT_NOSUCHSOURCE = 4,
123   STT_INVALIDTS = 5,
124   STT_NOTENABLED = 6,
125   STT_BADSUBNET = 7,
126   STT_ACCESSALLOWED = 8,
127   STT_ACCESSDENIED = 9,
128   STT_NOHOSTACCESS = 10,
129   STT_SOURCEALREADYKNOWN = 11,
130   STT_TOOMANYSOURCES = 12,
131   STT_NORTC = 13,
132   STT_BADRTCFILE = 14,
133   STT_INACTIVE = 15,
134   STT_BADSAMPLE = 16,
135   STT_INVALIDAF = 17,
136   STT_BADPKTVERSION = 18,
137   STT_BADPKTLENGTH = 19
138 } eChrony_Status;
139
140 /* Chrony client request packets */
141 typedef struct ATTRIB_PACKED {
142   uint8_t f_dummy0[80]; /* Chrony expects 80bytes dummy data (Avoiding UDP
143                            Amplification) */
144 } tChrony_Req_Tracking;
145
146 typedef struct ATTRIB_PACKED { uint32_t f_n_sources; } tChrony_Req_N_Sources;
147
148 typedef struct ATTRIB_PACKED {
149   int32_t f_index;
150   uint8_t f_dummy0[44];
151 } tChrony_Req_Source_data;
152
153 typedef struct ATTRIB_PACKED {
154   int32_t f_index;
155   uint8_t f_dummy0[56];
156 } tChrony_Req_Source_stats;
157
158 typedef struct ATTRIB_PACKED {
159   struct {
160     uint8_t f_version;
161     uint8_t f_type;
162     uint8_t f_dummy0;
163     uint8_t f_dummy1;
164     uint16_t f_cmd;
165     uint16_t f_cmd_try;
166     uint32_t f_seq;
167
168     uint32_t f_dummy2;
169     uint32_t f_dummy3;
170   } header; /* Packed: 20Bytes */
171   union {
172     tChrony_Req_N_Sources n_sources;
173     tChrony_Req_Source_data source_data;
174     tChrony_Req_Source_stats source_stats;
175     tChrony_Req_Tracking tracking;
176   } body;
177   uint8_t padding[4 + 16]; /* Padding to match minimal response size */
178 } tChrony_Request;
179
180 /* Chrony daemon response packets */
181 typedef struct ATTRIB_PACKED { uint32_t f_n_sources; } tChrony_Resp_N_Sources;
182
183 typedef struct ATTRIB_PACKED {
184   union {
185     uint32_t ip4;
186     uint8_t ip6[16];
187   } addr;
188   uint16_t f_family;
189   uint16_t padding;
190 } tChrony_IPAddr;
191
192 typedef struct ATTRIB_PACKED {
193   tChrony_IPAddr addr;
194   int16_t f_poll;     /* 2^f_poll = Time between polls (s) */
195   uint16_t f_stratum; /* Remote clock stratum */
196   uint16_t f_state;   /* 0 = RPY_SD_ST_SYNC,    1 = RPY_SD_ST_UNREACH,   2 =
197                          RPY_SD_ST_FALSETICKER */
198   /* 3 = RPY_SD_ST_JITTERY, 4 = RPY_SD_ST_CANDIDATE, 5 = RPY_SD_ST_OUTLIER */
199   uint16_t f_mode;  /* 0 = RPY_SD_MD_CLIENT,  1 = RPY_SD_MD_PEER,      2 =
200                        RPY_SD_MD_REF         */
201   uint16_t f_flags; /* unused */
202   uint16_t
203       f_reachability; /* Bit mask of successfull tries to reach the source */
204
205   uint32_t f_since_sample;     /* Time since last sample (s) */
206   tFloat f_origin_latest_meas; /*  */
207   tFloat f_latest_meas;        /*  */
208   tFloat f_latest_meas_err;    /*  */
209 } tChrony_Resp_Source_data;
210
211 typedef struct ATTRIB_PACKED {
212   uint32_t f_ref_id;
213   tChrony_IPAddr addr;
214   uint32_t f_n_samples;       /* Number of measurements done   */
215   uint32_t f_n_runs;          /* How many measurements to come */
216   uint32_t f_span_seconds;    /* For how long we're measuring  */
217   tFloat f_rtc_seconds_fast;  /* ??? */
218   tFloat f_rtc_gain_rate_ppm; /* Estimated relative frequency error */
219   tFloat f_skew_ppm;       /* Clock skew (ppm) (worst case freq est error (skew:
220                               peak2peak)) */
221   tFloat f_est_offset;     /* Estimated offset of source */
222   tFloat f_est_offset_err; /* Error of estimation        */
223 } tChrony_Resp_Source_stats;
224
225 typedef struct ATTRIB_PACKED {
226   uint32_t f_ref_id;
227   tChrony_IPAddr addr;
228   uint16_t f_stratum;
229   uint16_t f_leap_status;
230   tTimeval f_ref_time;
231   tFloat f_current_correction;
232   tFloat f_last_offset;
233   tFloat f_rms_offset;
234   tFloat f_freq_ppm;
235   tFloat f_resid_freq_ppm;
236   tFloat f_skew_ppm;
237   tFloat f_root_delay;
238   tFloat f_root_dispersion;
239   tFloat f_last_update_interval;
240 } tChrony_Resp_Tracking;
241
242 typedef struct ATTRIB_PACKED {
243   struct {
244     uint8_t f_version;
245     uint8_t f_type;
246     uint8_t f_dummy0;
247     uint8_t f_dummy1;
248     uint16_t f_cmd;
249     uint16_t f_reply;
250     uint16_t f_status;
251     uint16_t f_dummy2;
252     uint16_t f_dummy3;
253     uint16_t f_dummy4;
254     uint32_t f_seq;
255     uint32_t f_dummy5;
256     uint32_t f_dummy6;
257   } header; /* Packed: 28 Bytes */
258
259   union {
260     tChrony_Resp_N_Sources n_sources;
261     tChrony_Resp_Source_data source_data;
262     tChrony_Resp_Source_stats source_stats;
263     tChrony_Resp_Tracking tracking;
264   } body;
265
266   uint8_t padding[1024];
267 } tChrony_Response;
268
269 /*****************************************************************************/
270 /* Internal functions */
271 /*****************************************************************************/
272
273 /* connect_client code adapted from:
274  * http://long.ccaba.upc.edu/long/045Guidelines/eva/ipv6.html#daytimeClient6 */
275 /* License granted by Eva M Castro via e-mail on 2016-02-18 under the terms of
276  * GPLv3 */
277 static int connect_client(const char *p_hostname, const char *p_service,
278                           int p_family, int p_socktype) {
279   struct addrinfo *res, *ressave;
280   int n, sockfd;
281
282   struct addrinfo ai_hints = {.ai_family = p_family, .ai_socktype = p_socktype};
283
284   n = getaddrinfo(p_hostname, p_service, &ai_hints, &res);
285
286   if (n < 0) {
287     ERROR(PLUGIN_NAME ": getaddrinfo error:: [%s]", gai_strerror(n));
288     return -1;
289   }
290
291   ressave = res;
292
293   sockfd = -1;
294   while (res) {
295     sockfd = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
296
297     if (!(sockfd < 0)) {
298       if (connect(sockfd, res->ai_addr, res->ai_addrlen) == 0) {
299         /* Success */
300         break;
301       }
302
303       close(sockfd);
304       sockfd = -1;
305     }
306     res = res->ai_next;
307   }
308
309   freeaddrinfo(ressave);
310   return sockfd;
311 }
312
313 /* niptoha code originally from:
314  * git://git.tuxfamily.org/gitroot/chrony/chrony.git:util.c */
315 /* Original code licensed as GPLv2, by Richard P. Purnow, Miroslav Lichvar */
316 /* Original name: char * UTI_IPToString(IPAddr *addr)*/
317 static char *niptoha(const tChrony_IPAddr *addr, char *p_buf,
318                      size_t p_buf_size) {
319   int rc = 1;
320   unsigned long a, b, c, d, ip;
321
322   switch (ntohs(addr->f_family)) {
323   case IPADDR_UNSPEC:
324     rc = snprintf(p_buf, p_buf_size, "[UNSPEC]");
325     break;
326   case IPADDR_INET4:
327     ip = ntohl(addr->addr.ip4);
328     a = (ip >> 24) & 0xff;
329     b = (ip >> 16) & 0xff;
330     c = (ip >> 8) & 0xff;
331     d = (ip >> 0) & 0xff;
332     rc = snprintf(p_buf, p_buf_size, "%ld.%ld.%ld.%ld", a, b, c, d);
333     break;
334   case IPADDR_INET6: {
335     const char *rp = inet_ntop(AF_INET6, addr->addr.ip6, p_buf, p_buf_size);
336     if (rp == NULL) {
337       ERROR(PLUGIN_NAME ": Error converting ipv6 address to string. Errno = %d",
338             errno);
339       rc = snprintf(p_buf, p_buf_size, "[UNKNOWN]");
340     }
341     break;
342   }
343   default:
344     rc = snprintf(p_buf, p_buf_size, "[UNKNOWN]");
345   }
346   assert(rc > 0);
347   return p_buf;
348 }
349
350 static void nreftostr(uint32_t nrefid, char *p_buf, size_t p_buf_size) {
351   int i, c;
352   size_t j = 0;
353
354   for (i = 0; i < 4; i++) {
355     c = ntohl(nrefid) << i * 8 >> 24;
356     if (!isalnum(c) || j + 1 >= p_buf_size)
357       continue;
358     p_buf[j++] = c;
359   }
360   if (j < p_buf_size)
361     p_buf[j] = '\0';
362 }
363
364 static int chrony_set_timeout(void) {
365   /* Set the socket's  timeout to g_chrony_timeout; a value of 0 signals
366    * infinite timeout */
367   /* Returns 0 on success, !0 on error (check errno) */
368
369   struct timeval tv;
370   tv.tv_sec = g_chrony_timeout;
371   tv.tv_usec = 0;
372
373   assert(g_chrony_socket >= 0);
374   if (setsockopt(g_chrony_socket, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv,
375                  sizeof(struct timeval)) < 0) {
376     return CHRONY_RC_FAIL;
377   }
378   return CHRONY_RC_OK;
379 }
380
381 static int chrony_connect(void) {
382   /* Connects to the chrony daemon */
383   /* Returns 0 on success, !0 on error (check errno) */
384   int socket;
385
386   if (g_chrony_host == NULL) {
387     g_chrony_host = strdup(CHRONY_DEFAULT_HOST);
388     if (g_chrony_host == NULL) {
389       ERROR(PLUGIN_NAME ": Error duplicating chrony host name");
390       return CHRONY_RC_FAIL;
391     }
392   }
393   if (g_chrony_port == NULL) {
394     g_chrony_port = strdup(CHRONY_DEFAULT_PORT);
395     if (g_chrony_port == NULL) {
396       ERROR(PLUGIN_NAME ": Error duplicating chrony port string");
397       return CHRONY_RC_FAIL;
398     }
399   }
400   if (g_chrony_timeout < 0) {
401     g_chrony_timeout = CHRONY_DEFAULT_TIMEOUT;
402     assert(g_chrony_timeout >= 0);
403   }
404
405   DEBUG(PLUGIN_NAME ": Connecting to %s:%s", g_chrony_host, g_chrony_port);
406   socket = connect_client(g_chrony_host, g_chrony_port, AF_UNSPEC, SOCK_DGRAM);
407   if (socket < 0) {
408     ERROR(PLUGIN_NAME ": Error connecting to daemon. Errno = %d", errno);
409     return CHRONY_RC_FAIL;
410   }
411   DEBUG(PLUGIN_NAME ": Connected");
412   g_chrony_socket = socket;
413
414   if (chrony_set_timeout()) {
415     ERROR(PLUGIN_NAME ": Error setting timeout to %llds. Errno = %d",
416           (long long)g_chrony_timeout, errno);
417     return CHRONY_RC_FAIL;
418   }
419   return CHRONY_RC_OK;
420 }
421
422 static int chrony_send_request(const tChrony_Request *p_req,
423                                size_t p_req_size) {
424   if (send(g_chrony_socket, p_req, p_req_size, 0) < 0) {
425     ERROR(PLUGIN_NAME ": Error sending packet. Errno = %d", errno);
426     return CHRONY_RC_FAIL;
427   }
428   return CHRONY_RC_OK;
429 }
430
431 static int chrony_recv_response(tChrony_Response *p_resp,
432                                 size_t p_resp_max_size, size_t *p_resp_size) {
433   ssize_t rc = recv(g_chrony_socket, p_resp, p_resp_max_size, 0);
434   if (rc <= 0) {
435     ERROR(PLUGIN_NAME ": Error receiving packet: %s (%d)", strerror(errno),
436           errno);
437     return CHRONY_RC_FAIL;
438   } else {
439     *p_resp_size = rc;
440     return CHRONY_RC_OK;
441   }
442 }
443
444 static int chrony_query(const int p_command, tChrony_Request *p_req,
445                         tChrony_Response *p_resp, size_t *p_resp_size) {
446   /* Check connection. We simply perform one try as collectd already handles
447    * retries */
448   assert(p_req);
449   assert(p_resp);
450   assert(p_resp_size);
451
452   if (g_chrony_is_connected == 0) {
453     if (chrony_connect() == CHRONY_RC_OK) {
454       g_chrony_is_connected = 1;
455     } else {
456       ERROR(PLUGIN_NAME ": Unable to connect. Errno = %d", errno);
457       return CHRONY_RC_FAIL;
458     }
459   }
460
461   do {
462     int valid_command = 0;
463     size_t req_size = sizeof(p_req->header) + sizeof(p_req->padding);
464     size_t resp_size = sizeof(p_resp->header);
465     uint16_t resp_code = RPY_NULL;
466     switch (p_command) {
467     case REQ_TRACKING:
468       req_size += sizeof(p_req->body.tracking);
469       resp_size += sizeof(p_resp->body.tracking);
470       resp_code = RPY_TRACKING;
471       valid_command = 1;
472       break;
473     case REQ_N_SOURCES:
474       req_size += sizeof(p_req->body.n_sources);
475       resp_size += sizeof(p_resp->body.n_sources);
476       resp_code = RPY_N_SOURCES;
477       valid_command = 1;
478       break;
479     case REQ_SOURCE_DATA:
480       req_size += sizeof(p_req->body.source_data);
481       resp_size += sizeof(p_resp->body.source_data);
482       resp_code = RPY_SOURCE_DATA;
483       valid_command = 1;
484       break;
485     case REQ_SOURCE_STATS:
486       req_size += sizeof(p_req->body.source_stats);
487       resp_size += sizeof(p_resp->body.source_stats);
488       resp_code = RPY_SOURCE_STATS;
489       valid_command = 1;
490       break;
491     default:
492       ERROR(PLUGIN_NAME ": Unknown request command (Was: %d)", p_command);
493       break;
494     }
495
496     if (valid_command == 0)
497       break;
498
499     uint32_t seq_nr = rand_r(&g_chrony_rand);
500     p_req->header.f_cmd = htons(p_command);
501     p_req->header.f_cmd_try = 0;
502     p_req->header.f_seq = seq_nr;
503
504     DEBUG(PLUGIN_NAME ": Sending request (.cmd = %d, .seq = %d)", p_command,
505           seq_nr);
506     if (chrony_send_request(p_req, req_size) != 0)
507       break;
508
509     DEBUG(PLUGIN_NAME ": Waiting for response");
510     if (chrony_recv_response(p_resp, resp_size, p_resp_size) != 0)
511       break;
512
513     DEBUG(PLUGIN_NAME ": Received response: .version = %u, .type = %u, .cmd = "
514                       "%u, .reply = %u, .status = %u, .seq = %u",
515           p_resp->header.f_version, p_resp->header.f_type,
516           ntohs(p_resp->header.f_cmd), ntohs(p_resp->header.f_reply),
517           ntohs(p_resp->header.f_status), p_resp->header.f_seq);
518
519     if (p_resp->header.f_version != p_req->header.f_version) {
520       ERROR(PLUGIN_NAME ": Wrong protocol version (Was: %d, expected: %d)",
521             p_resp->header.f_version, p_req->header.f_version);
522       return CHRONY_RC_FAIL;
523     }
524     if (p_resp->header.f_type != PKT_TYPE_CMD_REPLY) {
525       ERROR(PLUGIN_NAME ": Wrong packet type (Was: %d, expected: %d)",
526             p_resp->header.f_type, PKT_TYPE_CMD_REPLY);
527       return CHRONY_RC_FAIL;
528     }
529     if (p_resp->header.f_seq != seq_nr) {
530       /* FIXME: Implement sequence number handling */
531       ERROR(PLUGIN_NAME ": Unexpected sequence number (Was: %d, expected: %d)",
532             p_resp->header.f_seq, p_req->header.f_seq);
533       return CHRONY_RC_FAIL;
534     }
535     if (p_resp->header.f_cmd != p_req->header.f_cmd) {
536       ERROR(PLUGIN_NAME ": Wrong reply command (Was: %d, expected: %d)",
537             p_resp->header.f_cmd, p_req->header.f_cmd);
538       return CHRONY_RC_FAIL;
539     }
540
541     if (ntohs(p_resp->header.f_reply) != resp_code) {
542       ERROR(PLUGIN_NAME ": Wrong reply code (Was: %d, expected: %d)",
543             ntohs(p_resp->header.f_reply), resp_code);
544       return CHRONY_RC_FAIL;
545     }
546
547     switch (p_resp->header.f_status) {
548     case STT_SUCCESS:
549       DEBUG(PLUGIN_NAME ": Reply packet status STT_SUCCESS");
550       break;
551     default:
552       ERROR(PLUGIN_NAME
553             ": Reply packet contains error status: %d (expected: %d)",
554             p_resp->header.f_status, STT_SUCCESS);
555       return CHRONY_RC_FAIL;
556     }
557
558     /* Good result */
559     return CHRONY_RC_OK;
560   } while (0);
561
562   /* Some error occured */
563   return CHRONY_RC_FAIL;
564 }
565
566 static void chrony_init_req(tChrony_Request *p_req) {
567   memset(p_req, 0, sizeof(*p_req));
568   p_req->header.f_version = PROTO_VERSION_NUMBER;
569   p_req->header.f_type = PKT_TYPE_CMD_REQUEST;
570   p_req->header.f_dummy0 = 0;
571   p_req->header.f_dummy1 = 0;
572   p_req->header.f_dummy2 = 0;
573   p_req->header.f_dummy3 = 0;
574 }
575
576 /* ntohf code originally from:
577  * git://git.tuxfamily.org/gitroot/chrony/chrony.git:util.c */
578 /* Original code licensed as GPLv2, by Richard P. Purnow, Miroslav Lichvar */
579 /* Original name: double UTI_tFloatNetworkToHost(tFloat f) */
580 static double ntohf(tFloat p_float) {
581 /* Convert tFloat in Network-bit-order to double in host-bit-order */
582
583 #define FLOAT_EXP_BITS 7
584 #define FLOAT_EXP_MIN (-(1 << (FLOAT_EXP_BITS - 1)))
585 #define FLOAT_EXP_MAX (-FLOAT_EXP_MIN - 1)
586 #define FLOAT_COEF_BITS ((int)sizeof(int32_t) * 8 - FLOAT_EXP_BITS)
587 #define FLOAT_COEF_MIN (-(1 << (FLOAT_COEF_BITS - 1)))
588 #define FLOAT_COEF_MAX (-FLOAT_COEF_MIN - 1)
589
590   int32_t exp, coef;
591   uint32_t uval;
592
593   uval = ntohl(p_float.value);
594   exp = (uval >> FLOAT_COEF_BITS);
595   if (exp >= 1 << (FLOAT_EXP_BITS - 1))
596     exp -= 1 << FLOAT_EXP_BITS;
597   exp -= FLOAT_COEF_BITS;
598
599   /* coef = (x << FLOAT_EXP_BITS) >> FLOAT_EXP_BITS; */
600   coef = uval % (1U << FLOAT_COEF_BITS);
601   if (coef >= 1 << (FLOAT_COEF_BITS - 1))
602     coef -= 1 << FLOAT_COEF_BITS;
603
604   return coef * pow(2.0, exp);
605 }
606
607 static void chrony_push_data(const char *p_type, const char *p_type_inst,
608                              double p_value) {
609   value_list_t vl = VALUE_LIST_INIT;
610
611   vl.values = &(value_t){.gauge = p_value};
612   vl.values_len = 1;
613
614   /* XXX: Shall g_chrony_host/g_chrony_port be reflected in the plugin's output?
615    */
616   sstrncpy(vl.plugin, PLUGIN_NAME_SHORT, sizeof(vl.plugin));
617   if (g_chrony_plugin_instance != NULL) {
618     sstrncpy(vl.plugin_instance, g_chrony_plugin_instance,
619              sizeof(vl.plugin_instance));
620   }
621   if (p_type != NULL)
622     sstrncpy(vl.type, p_type, sizeof(vl.type));
623
624   if (p_type_inst != NULL)
625     sstrncpy(vl.type_instance, p_type_inst, sizeof(vl.type_instance));
626
627   plugin_dispatch_values(&vl);
628 }
629
630 static void chrony_push_data_valid(const char *p_type, const char *p_type_inst,
631                                    const int p_is_valid, double p_value) {
632   /* Push real value if p_is_valid is true, push NAN if p_is_valid is not true
633    * (idea from ntp plugin) */
634   if (p_is_valid == 0)
635     p_value = NAN;
636
637   chrony_push_data(p_type, p_type_inst, p_value);
638 }
639
640 static int chrony_init_seq(void) {
641   /* Initialize the sequence number generator from /dev/urandom */
642   /* Fallbacks: /dev/random and time(NULL) */
643
644   int fh;
645
646   /* Try urandom */
647   fh = open(URAND_DEVICE_PATH, O_RDONLY);
648   if (fh >= 0) {
649     ssize_t rc = read(fh, &g_chrony_rand, sizeof(g_chrony_rand));
650     if (rc != sizeof(g_chrony_rand)) {
651       ERROR(PLUGIN_NAME ": Reading from random source \'%s\'failed: %s (%d)",
652             URAND_DEVICE_PATH, strerror(errno), errno);
653       close(fh);
654       return CHRONY_RC_FAIL;
655     }
656     close(fh);
657     DEBUG(PLUGIN_NAME ": Seeding RNG from " URAND_DEVICE_PATH);
658   } else {
659     if (errno == ENOENT) {
660       /* URAND_DEVICE_PATH device not found. Try RAND_DEVICE_PATH as fall-back
661        */
662       fh = open(RAND_DEVICE_PATH, O_RDONLY);
663       if (fh >= 0) {
664         ssize_t rc = read(fh, &g_chrony_rand, sizeof(g_chrony_rand));
665         if (rc != sizeof(g_chrony_rand)) {
666           ERROR(PLUGIN_NAME
667                 ": Reading from random source \'%s\'failed: %s (%d)",
668                 RAND_DEVICE_PATH, strerror(errno), errno);
669           close(fh);
670           return CHRONY_RC_FAIL;
671         }
672         close(fh);
673         DEBUG(PLUGIN_NAME ": Seeding RNG from " RAND_DEVICE_PATH);
674       } else {
675         /* Error opening RAND_DEVICE_PATH. Try time(NULL) as fall-back */
676         DEBUG(PLUGIN_NAME ": Seeding RNG from time(NULL)");
677         g_chrony_rand = time(NULL) ^ getpid();
678       }
679     } else {
680       ERROR(PLUGIN_NAME ": Opening random source \'%s\' failed: %s (%d)",
681             URAND_DEVICE_PATH, strerror(errno), errno);
682       return CHRONY_RC_FAIL;
683     }
684   }
685
686   return CHRONY_RC_OK;
687 }
688
689 /*****************************************************************************/
690 /* Exported functions */
691 /*****************************************************************************/
692 static int chrony_config(const char *p_key, const char *p_value) {
693   assert(p_key);
694   assert(p_value);
695
696   /* Parse config variables */
697   if (strcasecmp(p_key, CONFIG_KEY_HOST) == 0) {
698     if (g_chrony_host != NULL)
699       free(g_chrony_host);
700
701     if ((g_chrony_host = strdup(p_value)) == NULL) {
702       ERROR(PLUGIN_NAME ": Error duplicating host name");
703       return CHRONY_RC_FAIL;
704     }
705   } else {
706     if (strcasecmp(p_key, CONFIG_KEY_PORT) == 0) {
707       if (g_chrony_port != NULL)
708         free(g_chrony_port);
709
710       if ((g_chrony_port = strdup(p_value)) == NULL) {
711         ERROR(PLUGIN_NAME ": Error duplicating port name");
712         return CHRONY_RC_FAIL;
713       }
714     } else {
715       if (strcasecmp(p_key, CONFIG_KEY_TIMEOUT) == 0) {
716         time_t tosec = strtol(p_value, NULL, 0);
717         g_chrony_timeout = tosec;
718       } else {
719         WARNING(PLUGIN_NAME ": Unknown configuration variable: %s %s", p_key,
720                 p_value);
721         return CHRONY_RC_FAIL;
722       }
723     }
724   }
725   /* XXX: We could set g_chrony_plugin_instance here to
726    * "g_chrony_host-g_chrony_port", but as multiple instances aren't yet
727    * supported, we skip this for now */
728
729   return CHRONY_RC_OK;
730 }
731
732 static int chrony_request_daemon_stats(void) {
733   /* Perform Tracking request */
734   int rc;
735   size_t chrony_resp_size;
736   tChrony_Request chrony_req;
737   tChrony_Response chrony_resp;
738
739   chrony_init_req(&chrony_req);
740   rc = chrony_query(REQ_TRACKING, &chrony_req, &chrony_resp, &chrony_resp_size);
741   if (rc != 0) {
742     ERROR(PLUGIN_NAME ": chrony_query (REQ_TRACKING) failed with status %i",
743           rc);
744     return rc;
745   }
746 #if COLLECT_DEBUG
747   {
748     char src_addr[IPV6_STR_MAX_SIZE] = {0};
749     niptoha(&chrony_resp.body.tracking.addr, src_addr, sizeof(src_addr));
750     DEBUG(PLUGIN_NAME
751           ": Daemon stat: .addr = %s, .ref_id= %u, .stratum = %u, .leap_status "
752           "= %u, .ref_time = %u:%u:%u, .current_correction = %f, .last_offset "
753           "= %f, .rms_offset = %f, .freq_ppm = %f, .skew_ppm = %f, .root_delay "
754           "= %f, .root_dispersion = %f, .last_update_interval = %f",
755           src_addr, ntohs(chrony_resp.body.tracking.f_ref_id),
756           ntohs(chrony_resp.body.tracking.f_stratum),
757           ntohs(chrony_resp.body.tracking.f_leap_status),
758           ntohl(chrony_resp.body.tracking.f_ref_time.tv_sec_high),
759           ntohl(chrony_resp.body.tracking.f_ref_time.tv_sec_low),
760           ntohl(chrony_resp.body.tracking.f_ref_time.tv_nsec),
761           ntohf(chrony_resp.body.tracking.f_current_correction),
762           ntohf(chrony_resp.body.tracking.f_last_offset),
763           ntohf(chrony_resp.body.tracking.f_rms_offset),
764           ntohf(chrony_resp.body.tracking.f_freq_ppm),
765           ntohf(chrony_resp.body.tracking.f_skew_ppm),
766           ntohf(chrony_resp.body.tracking.f_root_delay),
767           ntohf(chrony_resp.body.tracking.f_root_dispersion),
768           ntohf(chrony_resp.body.tracking.f_last_update_interval));
769   }
770 #endif
771
772   double time_ref = ntohl(chrony_resp.body.tracking.f_ref_time.tv_nsec);
773   time_ref /= 1000000000.0;
774   time_ref += ntohl(chrony_resp.body.tracking.f_ref_time.tv_sec_low);
775   if (chrony_resp.body.tracking.f_ref_time.tv_sec_high) {
776     double secs_high = ntohl(chrony_resp.body.tracking.f_ref_time.tv_sec_high);
777     secs_high *= 4294967296.0;
778     time_ref += secs_high;
779   }
780
781   /* Forward results to collectd-daemon */
782   /* Type_instance is always 'chrony' to tag daemon-wide data */
783   /*                Type                Type_instan  Value */
784   chrony_push_data("clock_stratum", DAEMON_NAME,
785                    ntohs(chrony_resp.body.tracking.f_stratum));
786   chrony_push_data("time_ref", DAEMON_NAME, time_ref); /* unit: s */
787   chrony_push_data(
788       "time_offset_ntp", DAEMON_NAME,
789       ntohf(chrony_resp.body.tracking.f_current_correction)); /* Offset between
790                                                                  system time and
791                                                                  NTP, unit: s */
792   chrony_push_data(
793       "time_offset", DAEMON_NAME,
794       ntohf(
795           chrony_resp.body.tracking
796               .f_last_offset)); /* Estimated Offset of the NTP time, unit: s */
797   chrony_push_data(
798       "time_offset_rms", DAEMON_NAME,
799       ntohf(chrony_resp.body.tracking
800                 .f_rms_offset)); /* averaged value of the above, unit: s */
801   chrony_push_data(
802       "frequency_error", DAEMON_NAME,
803       ntohf(chrony_resp.body.tracking
804                 .f_freq_ppm)); /* Frequency error of the local osc, unit: ppm */
805   chrony_push_data("clock_skew_ppm", DAEMON_NAME,
806                    ntohf(chrony_resp.body.tracking.f_skew_ppm));
807   chrony_push_data(
808       "root_delay", DAEMON_NAME,
809       ntohf(chrony_resp.body.tracking.f_root_delay)); /* Network latency between
810                                                          local daemon and the
811                                                          current source */
812   chrony_push_data("root_dispersion", DAEMON_NAME,
813                    ntohf(chrony_resp.body.tracking.f_root_dispersion));
814   chrony_push_data("clock_last_update", DAEMON_NAME,
815                    ntohf(chrony_resp.body.tracking.f_last_update_interval));
816
817   return CHRONY_RC_OK;
818 }
819
820 static int chrony_request_sources_count(unsigned int *p_count) {
821   /* Requests the number of time sources from the chrony daemon */
822   int rc;
823   size_t chrony_resp_size;
824   tChrony_Request chrony_req;
825   tChrony_Response chrony_resp;
826
827   DEBUG(PLUGIN_NAME ": Requesting data");
828   chrony_init_req(&chrony_req);
829   rc =
830       chrony_query(REQ_N_SOURCES, &chrony_req, &chrony_resp, &chrony_resp_size);
831   if (rc != 0) {
832     ERROR(PLUGIN_NAME ": chrony_query (REQ_N_SOURCES) failed with status %i",
833           rc);
834     return rc;
835   }
836
837   *p_count = ntohl(chrony_resp.body.n_sources.f_n_sources);
838   DEBUG(PLUGIN_NAME ": Getting data of %d clock sources", *p_count);
839
840   return CHRONY_RC_OK;
841 }
842
843 static int chrony_request_source_data(int p_src_idx, char *src_addr,
844                                       size_t addr_size, int *p_is_reachable) {
845   /* Perform Source data request for source #p_src_idx */
846   int rc;
847   size_t chrony_resp_size;
848   tChrony_Request chrony_req;
849   tChrony_Response chrony_resp;
850
851   chrony_init_req(&chrony_req);
852   chrony_req.body.source_data.f_index = htonl(p_src_idx);
853   rc = chrony_query(REQ_SOURCE_DATA, &chrony_req, &chrony_resp,
854                     &chrony_resp_size);
855   if (rc != 0) {
856     ERROR(PLUGIN_NAME ": chrony_query (REQ_SOURCE_DATA) failed with status %i",
857           rc);
858     return rc;
859   }
860
861   if (ntohs(chrony_resp.body.source_data.f_mode) == MODE_REFCLOCK)
862     nreftostr(chrony_resp.body.source_data.addr.addr.ip4, src_addr, addr_size);
863   else
864     niptoha(&chrony_resp.body.source_data.addr, src_addr, addr_size);
865
866   DEBUG(PLUGIN_NAME ": Source[%d] data: .addr = %s, .poll = %u, .stratum = %u, "
867                     ".state = %u, .mode = %u, .flags = %u, .reach = %u, "
868                     ".latest_meas_ago = %u, .orig_latest_meas = %f, "
869                     ".latest_meas = %f, .latest_meas_err = %f",
870         p_src_idx, src_addr, ntohs(chrony_resp.body.source_data.f_poll),
871         ntohs(chrony_resp.body.source_data.f_stratum),
872         ntohs(chrony_resp.body.source_data.f_state),
873         ntohs(chrony_resp.body.source_data.f_mode),
874         ntohs(chrony_resp.body.source_data.f_flags),
875         ntohs(chrony_resp.body.source_data.f_reachability),
876         ntohl(chrony_resp.body.source_data.f_since_sample),
877         ntohf(chrony_resp.body.source_data.f_origin_latest_meas),
878         ntohf(chrony_resp.body.source_data.f_latest_meas),
879         ntohf(chrony_resp.body.source_data.f_latest_meas_err));
880
881   /* Push NaN if source is currently not reachable */
882   int is_reachable = ntohs(chrony_resp.body.source_data.f_reachability) & 0x01;
883   *p_is_reachable = is_reachable;
884
885   /* Forward results to collectd-daemon */
886   chrony_push_data_valid("clock_stratum", src_addr, is_reachable,
887                          ntohs(chrony_resp.body.source_data.f_stratum));
888   chrony_push_data_valid("clock_state", src_addr, is_reachable,
889                          ntohs(chrony_resp.body.source_data.f_state));
890   chrony_push_data_valid("clock_mode", src_addr, is_reachable,
891                          ntohs(chrony_resp.body.source_data.f_mode));
892   chrony_push_data_valid("clock_reachability", src_addr, is_reachable,
893                          ntohs(chrony_resp.body.source_data.f_reachability));
894   chrony_push_data_valid("clock_last_meas", src_addr, is_reachable,
895                          ntohl(chrony_resp.body.source_data.f_since_sample));
896   chrony_push_data_valid(
897       "time_offset", src_addr, is_reachable,
898       ntohf(chrony_resp.body.source_data.f_origin_latest_meas));
899
900   return CHRONY_RC_OK;
901 }
902
903 static int chrony_request_source_stats(int p_src_idx, const char *src_addr,
904                                        const int *p_is_reachable) {
905   /* Perform Source stats request for source #p_src_idx */
906   int rc;
907   size_t chrony_resp_size;
908   tChrony_Request chrony_req;
909   tChrony_Response chrony_resp;
910   double skew_ppm, frequency_error;
911
912   if (*p_is_reachable == 0) {
913     skew_ppm = 0;
914     frequency_error = 0;
915   } else {
916     chrony_init_req(&chrony_req);
917     chrony_req.body.source_stats.f_index = htonl(p_src_idx);
918     rc = chrony_query(REQ_SOURCE_STATS, &chrony_req, &chrony_resp,
919                       &chrony_resp_size);
920     if (rc != 0) {
921       ERROR(PLUGIN_NAME
922             ": chrony_query (REQ_SOURCE_STATS) failed with status %i",
923             rc);
924       return rc;
925     }
926
927     skew_ppm = ntohf(chrony_resp.body.source_stats.f_skew_ppm);
928     frequency_error = ntohf(chrony_resp.body.source_stats.f_rtc_gain_rate_ppm);
929
930     DEBUG(PLUGIN_NAME
931           ": Source[%d] stat: .addr = %s, .ref_id= %u, .n_samples = %u, "
932           ".n_runs = %u, .span_seconds = %u, .rtc_seconds_fast = %f, "
933           ".rtc_gain_rate_ppm = %f, .skew_ppm= %f, .est_offset = %f, "
934           ".est_offset_err = %f",
935           p_src_idx, src_addr, ntohl(chrony_resp.body.source_stats.f_ref_id),
936           ntohl(chrony_resp.body.source_stats.f_n_samples),
937           ntohl(chrony_resp.body.source_stats.f_n_runs),
938           ntohl(chrony_resp.body.source_stats.f_span_seconds),
939           ntohf(chrony_resp.body.source_stats.f_rtc_seconds_fast),
940           frequency_error, skew_ppm,
941           ntohf(chrony_resp.body.source_stats.f_est_offset),
942           ntohf(chrony_resp.body.source_stats.f_est_offset_err));
943
944   } /* if (*is_reachable) */
945
946   /* Forward results to collectd-daemon */
947   chrony_push_data_valid("clock_skew_ppm", src_addr, *p_is_reachable, skew_ppm);
948   chrony_push_data_valid("frequency_error", src_addr, *p_is_reachable,
949                          frequency_error); /* unit: ppm */
950
951   return CHRONY_RC_OK;
952 }
953
954 static int chrony_read(void) {
955   /* collectd read callback: Perform data acquisition */
956   int rc;
957   unsigned int n_sources;
958
959   if (g_chrony_seq_is_initialized == 0) {
960     /* Seed RNG for sequence number generation */
961     rc = chrony_init_seq();
962     if (rc != CHRONY_RC_OK)
963       return rc;
964
965     g_chrony_seq_is_initialized = 1;
966   }
967
968   /* Get daemon stats */
969   rc = chrony_request_daemon_stats();
970   if (rc != CHRONY_RC_OK)
971     return rc;
972
973   /* Get number of time sources, then check every source for status */
974   rc = chrony_request_sources_count(&n_sources);
975   if (rc != CHRONY_RC_OK)
976     return rc;
977
978   for (unsigned int now_src = 0; now_src < n_sources; ++now_src) {
979     char src_addr[IPV6_STR_MAX_SIZE] = {0};
980     int is_reachable;
981     rc = chrony_request_source_data(now_src, src_addr, sizeof(src_addr),
982                                     &is_reachable);
983     if (rc != CHRONY_RC_OK)
984       return rc;
985
986     rc = chrony_request_source_stats(now_src, src_addr, &is_reachable);
987     if (rc != CHRONY_RC_OK)
988       return rc;
989   }
990   return CHRONY_RC_OK;
991 }
992
993 static int chrony_shutdown(void) {
994   /* Collectd shutdown callback: Free mem */
995   if (g_chrony_is_connected != 0) {
996     close(g_chrony_socket);
997     g_chrony_is_connected = 0;
998   }
999   if (g_chrony_host != NULL)
1000     sfree(g_chrony_host);
1001
1002   if (g_chrony_port != NULL)
1003     sfree(g_chrony_port);
1004
1005   if (g_chrony_plugin_instance != NULL)
1006     sfree(g_chrony_plugin_instance);
1007
1008   return CHRONY_RC_OK;
1009 }
1010
1011 void module_register(void) {
1012   plugin_register_config(PLUGIN_NAME_SHORT, chrony_config, g_config_keys,
1013                          g_config_keys_num);
1014   plugin_register_read(PLUGIN_NAME_SHORT, chrony_read);
1015   plugin_register_shutdown(PLUGIN_NAME_SHORT, chrony_shutdown);
1016 }