summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--plugins/check_ntp_peer.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index cb68df6..ab597d4 100644
--- a/NEWS
+++ b/NEWS
@@ -11,7 +11,8 @@ This file documents the major additions and syntax changes between releases.
11 check_icmp now supports packet size modification 11 check_icmp now supports packet size modification
12 check_http -e now accepts a comma-delimited list of expected status codes 12 check_http -e now accepts a comma-delimited list of expected status codes
13 libtap now included with this distribution for easier testing. Run ./configure with --enable-libtap 13 libtap now included with this distribution for easier testing. Run ./configure with --enable-libtap
14 check_ntp_peer/check_ntp_time used to show port in --help but ignored the argument - now implemented. 14 check_ntp_peer/check_ntp_time used to show port in --help but ignored the argument - now implemented
15 Fix possible segfault in check_ntp_peer with deliberately invalid packets
15 16
161.4.12 27th May 2008 171.4.12 27th May 2008
17 Added ./check_nt -v INSTANCES to count number of instances (Alessandro Ren) 18 Added ./check_nt -v INSTANCES to count number of instances (Alessandro Ren)
diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c
index 72cec63..6a4401c 100644
--- a/plugins/check_ntp_peer.c
+++ b/plugins/check_ntp_peer.c
@@ -299,6 +299,9 @@ int ntp_request(const char *host, double *offset, int *offset_result, double *ji
299 if(read(conn, &req, SIZEOF_NTPCM(req)) == -1) 299 if(read(conn, &req, SIZEOF_NTPCM(req)) == -1)
300 die(STATE_CRITICAL, "NTP CRITICAL: No response from NTP server\n"); 300 die(STATE_CRITICAL, "NTP CRITICAL: No response from NTP server\n");
301 DBG(print_ntp_control_message(&req)); 301 DBG(print_ntp_control_message(&req));
302 /* discard obviously invalid packets */
303 if (ntohs(req.count) > MAX_CM_SIZE)
304 die(STATE_CRITICAL, "NTP CRITICAL: Invalid paclet received from NTP server\n");
302 if (LI(req.flags) == LI_ALARM) li_alarm = 1; 305 if (LI(req.flags) == LI_ALARM) li_alarm = 1;
303 /* Each peer identifier is 4 bytes in the data section, which 306 /* Each peer identifier is 4 bytes in the data section, which
304 * we represent as a ntp_assoc_status_pair datatype. 307 * we represent as a ntp_assoc_status_pair datatype.