diff options
author | Cy Schubert <cy@FreeBSD.org> | 2020-06-24 01:51:05 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2020-06-24 01:51:05 +0000 |
commit | 767173cec2b2041e1f847bc8896092f9c1481242 (patch) | |
tree | f13382cc9f11300231085767f92ffc15a98f8516 /contrib/ntp/sntp | |
parent | 28e002cd3e8a3c40c34a41f8b1ac624d334e4b9a (diff) | |
parent | 3914721463f70500ecc1f59312b122d8788465cf (diff) |
MFV r362565:
Update 4.2.8p14 --> 4.2.8p15
Summary: Systems that use a CMAC algorithm in ntp.keys will not release
a bit of memory on each packet that uses a CMAC keyid, eventually causing
ntpd to run out of memory and fail. The CMAC cleanup from
https://bugs.ntp.org/3447, part of ntp-4.2.8p11, introduced a bug whereby
the CMAC data structure was no longer completely removed.
MFC after: 3 days
Security: NTP Bug 3661
Notes
Notes:
svn path=/head/; revision=362568
Diffstat (limited to 'contrib/ntp/sntp')
-rwxr-xr-x | contrib/ntp/sntp/configure | 20 | ||||
-rw-r--r-- | contrib/ntp/sntp/crypto.c | 3 | ||||
-rw-r--r-- | contrib/ntp/sntp/include/version.def | 2 | ||||
-rw-r--r-- | contrib/ntp/sntp/include/version.texi | 6 | ||||
-rw-r--r-- | contrib/ntp/sntp/invoke-sntp.texi | 4 | ||||
-rw-r--r-- | contrib/ntp/sntp/m4/version.m4 | 2 | ||||
-rw-r--r-- | contrib/ntp/sntp/sntp-opts.c | 14 | ||||
-rw-r--r-- | contrib/ntp/sntp/sntp-opts.h | 6 | ||||
-rw-r--r-- | contrib/ntp/sntp/sntp.1sntpman | 4 | ||||
-rw-r--r-- | contrib/ntp/sntp/sntp.1sntpmdoc | 4 | ||||
-rw-r--r-- | contrib/ntp/sntp/sntp.html | 4 | ||||
-rw-r--r-- | contrib/ntp/sntp/sntp.man.in | 4 | ||||
-rw-r--r-- | contrib/ntp/sntp/sntp.mdoc.in | 4 | ||||
-rw-r--r-- | contrib/ntp/sntp/version.c | 2 |
14 files changed, 40 insertions, 39 deletions
diff --git a/contrib/ntp/sntp/configure b/contrib/ntp/sntp/configure index b446a654cc87..a2e3d0fba9f7 100755 --- a/contrib/ntp/sntp/configure +++ b/contrib/ntp/sntp/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for sntp 4.2.8p14. +# Generated by GNU Autoconf 2.69 for sntp 4.2.8p15. # # Report bugs to <http://bugs.ntp.org./>. # @@ -590,8 +590,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='sntp' PACKAGE_TARNAME='sntp' -PACKAGE_VERSION='4.2.8p14' -PACKAGE_STRING='sntp 4.2.8p14' +PACKAGE_VERSION='4.2.8p15' +PACKAGE_STRING='sntp 4.2.8p15' PACKAGE_BUGREPORT='http://bugs.ntp.org./' PACKAGE_URL='http://www.ntp.org./' @@ -1486,7 +1486,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures sntp 4.2.8p14 to adapt to many kinds of systems. +\`configure' configures sntp 4.2.8p15 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1556,7 +1556,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of sntp 4.2.8p14:";; + short | recursive ) echo "Configuration of sntp 4.2.8p15:";; esac cat <<\_ACEOF @@ -1707,7 +1707,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -sntp configure 4.2.8p14 +sntp configure 4.2.8p15 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2416,7 +2416,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by sntp $as_me 4.2.8p14, which was +It was created by sntp $as_me 4.2.8p15, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3413,7 +3413,7 @@ fi # Define the identity of the package. PACKAGE='sntp' - VERSION='4.2.8p14' + VERSION='4.2.8p15' cat >>confdefs.h <<_ACEOF @@ -27147,7 +27147,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by sntp $as_me 4.2.8p14, which was +This file was extended by sntp $as_me 4.2.8p15, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -27214,7 +27214,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -sntp config.status 4.2.8p14 +sntp config.status 4.2.8p15 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/contrib/ntp/sntp/crypto.c b/contrib/ntp/sntp/crypto.c index 8ffe006f9912..8a47edef7184 100644 --- a/contrib/ntp/sntp/crypto.c +++ b/contrib/ntp/sntp/crypto.c @@ -70,7 +70,8 @@ compute_mac( } len = (u_int)slen; - CMAC_CTX_cleanup(ctx); + if (ctx) + CMAC_CTX_free(ctx); /* Test our AES-128-CMAC implementation */ } else /* MD5 MAC handling */ diff --git a/contrib/ntp/sntp/include/version.def b/contrib/ntp/sntp/include/version.def index 1bb1853839a0..4f36d06d1971 100644 --- a/contrib/ntp/sntp/include/version.def +++ b/contrib/ntp/sntp/include/version.def @@ -1 +1 @@ -version = '4.2.8p14'; +version = '4.2.8p15'; diff --git a/contrib/ntp/sntp/include/version.texi b/contrib/ntp/sntp/include/version.texi index 70830c33d960..9dfcfd768fbe 100644 --- a/contrib/ntp/sntp/include/version.texi +++ b/contrib/ntp/sntp/include/version.texi @@ -1,3 +1,3 @@ -@set UPDATED 03 March 2020 -@set EDITION 4.2.8p14 -@set VERSION 4.2.8p14 +@set UPDATED 23 June 2020 +@set EDITION 4.2.8p15 +@set VERSION 4.2.8p15 diff --git a/contrib/ntp/sntp/invoke-sntp.texi b/contrib/ntp/sntp/invoke-sntp.texi index 4beaec2ea422..29f097ce6276 100644 --- a/contrib/ntp/sntp/invoke-sntp.texi +++ b/contrib/ntp/sntp/invoke-sntp.texi @@ -6,7 +6,7 @@ # # EDIT THIS FILE WITH CAUTION (invoke-sntp.texi) # -# It has been AutoGen-ed March 3, 2020 at 05:40:02 PM by AutoGen 5.18.5 +# It has been AutoGen-ed June 23, 2020 at 02:19:36 AM by AutoGen 5.18.5 # From the definitions sntp-opts.def # and the template file agtexi-cmd.tpl @end ignore @@ -101,7 +101,7 @@ with a status code of 0. @exampleindent 0 @example -sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p14 +sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p15 Usage: sntp [ -<flag> [<val>] | --<name>[@{=| @}<val>] ]... \ [ hostname-or-IP ...] Flg Arg Option-Name Description diff --git a/contrib/ntp/sntp/m4/version.m4 b/contrib/ntp/sntp/m4/version.m4 index 836702a2efc7..1b44051c8c0e 100644 --- a/contrib/ntp/sntp/m4/version.m4 +++ b/contrib/ntp/sntp/m4/version.m4 @@ -1 +1 @@ -m4_define([VERSION_NUMBER],[4.2.8p14]) +m4_define([VERSION_NUMBER],[4.2.8p15]) diff --git a/contrib/ntp/sntp/sntp-opts.c b/contrib/ntp/sntp/sntp-opts.c index e5857c3fe1d4..66d9811f538a 100644 --- a/contrib/ntp/sntp/sntp-opts.c +++ b/contrib/ntp/sntp/sntp-opts.c @@ -1,7 +1,7 @@ /* * EDIT THIS FILE WITH CAUTION (sntp-opts.c) * - * It has been AutoGen-ed March 3, 2020 at 05:39:59 PM by AutoGen 5.18.5 + * It has been AutoGen-ed June 23, 2020 at 02:19:32 AM by AutoGen 5.18.5 * From the definitions sntp-opts.def * and the template file options * @@ -70,7 +70,7 @@ extern FILE * option_usage_fp; * static const strings for sntp options */ static char const sntp_opt_strs[2566] = -/* 0 */ "sntp 4.2.8p14\n" +/* 0 */ "sntp 4.2.8p15\n" "Copyright (C) 1992-2020 The University of Delaware and Network Time Foundation, all rights reserved.\n" "This is free software. It is licensed for use, modification and\n" "redistribution under the terms of the NTP License, copies of which\n" @@ -156,7 +156,7 @@ static char const sntp_opt_strs[2566] = /* 2313 */ "LOAD_OPTS\0" /* 2323 */ "no-load-opts\0" /* 2336 */ "SNTP\0" -/* 2341 */ "sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p14\n" +/* 2341 */ "sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p15\n" "Usage: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... \\\n" "\t\t[ hostname-or-IP ...]\n\0" /* 2501 */ "$HOME\0" @@ -164,7 +164,7 @@ static char const sntp_opt_strs[2566] = /* 2509 */ ".ntprc\0" /* 2516 */ "http://bugs.ntp.org, bugs@ntp.org\0" /* 2550 */ "\n\0" -/* 2552 */ "sntp 4.2.8p14"; +/* 2552 */ "sntp 4.2.8p15"; /** * ipv4 option description with @@ -1176,7 +1176,7 @@ static void bogus_function(void) { translate option names. */ /* referenced via sntpOptions.pzCopyright */ - puts(_("sntp 4.2.8p14\n\ + puts(_("sntp 4.2.8p15\n\ Copyright (C) 1992-2020 The University of Delaware and Network Time Foundation, all rights reserved.\n\ This is free software. It is licensed for use, modification and\n\ redistribution under the terms of the NTP License, copies of which\n\ @@ -1266,7 +1266,7 @@ implied warranty.\n")); puts(_("load options from a config file")); /* referenced via sntpOptions.pzUsageTitle */ - puts(_("sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p14\n\ + puts(_("sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p15\n\ Usage: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... \\\n\ \t\t[ hostname-or-IP ...]\n")); @@ -1274,7 +1274,7 @@ Usage: %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... \\\n\ puts(_("\n")); /* referenced via sntpOptions.pzFullVersion */ - puts(_("sntp 4.2.8p14")); + puts(_("sntp 4.2.8p15")); /* referenced via sntpOptions.pzFullUsage */ puts(_("<<<NOT-FOUND>>>")); diff --git a/contrib/ntp/sntp/sntp-opts.h b/contrib/ntp/sntp/sntp-opts.h index 1a5f8740fc43..338732e6ddf2 100644 --- a/contrib/ntp/sntp/sntp-opts.h +++ b/contrib/ntp/sntp/sntp-opts.h @@ -1,7 +1,7 @@ /* * EDIT THIS FILE WITH CAUTION (sntp-opts.h) * - * It has been AutoGen-ed March 3, 2020 at 05:39:58 PM by AutoGen 5.18.5 + * It has been AutoGen-ed June 23, 2020 at 02:19:32 AM by AutoGen 5.18.5 * From the definitions sntp-opts.def * and the template file options * @@ -91,9 +91,9 @@ typedef enum { /** count of all options for sntp */ #define OPTION_CT 23 /** sntp version */ -#define SNTP_VERSION "4.2.8p14" +#define SNTP_VERSION "4.2.8p15" /** Full sntp version text */ -#define SNTP_FULL_VERSION "sntp 4.2.8p14" +#define SNTP_FULL_VERSION "sntp 4.2.8p15" /** * Interface defines for all options. Replace "n" with the UPPER_CASED diff --git a/contrib/ntp/sntp/sntp.1sntpman b/contrib/ntp/sntp/sntp.1sntpman index 50ee5774ba87..fd1d906e186a 100644 --- a/contrib/ntp/sntp/sntp.1sntpman +++ b/contrib/ntp/sntp/sntp.1sntpman @@ -10,11 +10,11 @@ .ds B-Font B .ds I-Font I .ds R-Font R -.TH sntp 1sntpman "03 Mar 2020" "4.2.8p14" "User Commands" +.TH sntp 1sntpman "23 Jun 2020" "4.2.8p15" "User Commands" .\" .\" EDIT THIS FILE WITH CAUTION (in-mem file) .\" -.\" It has been AutoGen-ed March 3, 2020 at 05:40:04 PM by AutoGen 5.18.5 +.\" It has been AutoGen-ed June 23, 2020 at 02:19:38 AM by AutoGen 5.18.5 .\" From the definitions sntp-opts.def .\" and the template file agman-cmd.tpl .SH NAME diff --git a/contrib/ntp/sntp/sntp.1sntpmdoc b/contrib/ntp/sntp/sntp.1sntpmdoc index 55068be520ad..0b32150c6dbe 100644 --- a/contrib/ntp/sntp/sntp.1sntpmdoc +++ b/contrib/ntp/sntp/sntp.1sntpmdoc @@ -1,9 +1,9 @@ -.Dd March 3 2020 +.Dd June 23 2020 .Dt SNTP 1sntpmdoc User Commands .Os .\" EDIT THIS FILE WITH CAUTION (sntp-opts.mdoc) .\" -.\" It has been AutoGen-ed March 3, 2020 at 05:40:01 PM by AutoGen 5.18.5 +.\" It has been AutoGen-ed June 23, 2020 at 02:19:35 AM by AutoGen 5.18.5 .\" From the definitions sntp-opts.def .\" and the template file agmdoc-cmd.tpl .Sh NAME diff --git a/contrib/ntp/sntp/sntp.html b/contrib/ntp/sntp/sntp.html index e89319fbc4b5..7a1e582d04ce 100644 --- a/contrib/ntp/sntp/sntp.html +++ b/contrib/ntp/sntp/sntp.html @@ -64,7 +64,7 @@ display the time offset of the system clock relative to the server clock. Run as root, it can correct the system clock to this offset as well. It can be run as an interactive command or from a cron job. </p> -<p>This document applies to version 4.2.8p14 of <code>sntp</code>. +<p>This document applies to version 4.2.8p15 of <code>sntp</code>. </p> <p>The program implements the SNTP protocol as defined by RFC 5905, the NTPv4 IETF specification. @@ -243,7 +243,7 @@ used to select the program, defaulting to <samp>more</samp>. Both will exit with a status code of 0. </p> <div class="example"> -<pre class="example">sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p14 +<pre class="example">sntp - standard Simple Network Time Protocol client program - Ver. 4.2.8p15 Usage: sntp [ -<flag> [<val>] | --<name>[{=| }<val>] ]... \ [ hostname-or-IP ...] Flg Arg Option-Name Description diff --git a/contrib/ntp/sntp/sntp.man.in b/contrib/ntp/sntp/sntp.man.in index 6410619ecd2a..a31c74698ee6 100644 --- a/contrib/ntp/sntp/sntp.man.in +++ b/contrib/ntp/sntp/sntp.man.in @@ -10,11 +10,11 @@ .ds B-Font B .ds I-Font I .ds R-Font R -.TH sntp @SNTP_MS@ "03 Mar 2020" "4.2.8p14" "User Commands" +.TH sntp @SNTP_MS@ "23 Jun 2020" "4.2.8p15" "User Commands" .\" .\" EDIT THIS FILE WITH CAUTION (in-mem file) .\" -.\" It has been AutoGen-ed March 3, 2020 at 05:40:04 PM by AutoGen 5.18.5 +.\" It has been AutoGen-ed June 23, 2020 at 02:19:38 AM by AutoGen 5.18.5 .\" From the definitions sntp-opts.def .\" and the template file agman-cmd.tpl .SH NAME diff --git a/contrib/ntp/sntp/sntp.mdoc.in b/contrib/ntp/sntp/sntp.mdoc.in index 14caa5a762f4..329a6d24af77 100644 --- a/contrib/ntp/sntp/sntp.mdoc.in +++ b/contrib/ntp/sntp/sntp.mdoc.in @@ -1,9 +1,9 @@ -.Dd March 3 2020 +.Dd June 23 2020 .Dt SNTP @SNTP_MS@ User Commands .Os .\" EDIT THIS FILE WITH CAUTION (sntp-opts.mdoc) .\" -.\" It has been AutoGen-ed March 3, 2020 at 05:40:01 PM by AutoGen 5.18.5 +.\" It has been AutoGen-ed June 23, 2020 at 02:19:35 AM by AutoGen 5.18.5 .\" From the definitions sntp-opts.def .\" and the template file agmdoc-cmd.tpl .Sh NAME diff --git a/contrib/ntp/sntp/version.c b/contrib/ntp/sntp/version.c index 0285c3075f6f..9574047d5d4d 100644 --- a/contrib/ntp/sntp/version.c +++ b/contrib/ntp/sntp/version.c @@ -2,4 +2,4 @@ * version file for sntp */ #include <config.h> -const char * Version = "sntp 4.2.8p14@1.3728-o Wed Mar 4 01:42:35 UTC 2020 (8)"; +const char * Version = "sntp 4.2.8p15@1.3728-o Tue Jun 23 09:22:10 UTC 2020 (10)"; |