diff options
author | Baruch Siach <baruch@tkos.co.il> | 2019-03-12 13:56:27 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2019-03-25 17:36:23 +0100 |
commit | c19f815add28c5dbd6bbf944c42236679da4593f (patch) | |
tree | e98fe6ae4c1ff18d532df512e6fe9b9cdbf6c1b5 /package/ntp/0004-fix-work-fork-without-droproot.patch | |
parent | 85c408fcc02834b1830e63928aaca995db390fff (diff) | |
download | buildroot-c19f815add28c5dbd6bbf944c42236679da4593f.tar.gz buildroot-c19f815add28c5dbd6bbf944c42236679da4593f.zip |
ntp: security bump to version 4.2.8p13
Fixes CVE-2019-8936: Crafted null dereference attack in authenticated
mode 6 packet.
Drop upstream patches.
Update COPYRIGHT file hash; text formatting (line width) changes.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 7ffdc08f04a87b0dd6f2bba250627389ce79a776)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ntp/0004-fix-work-fork-without-droproot.patch')
-rw-r--r-- | package/ntp/0004-fix-work-fork-without-droproot.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/ntp/0004-fix-work-fork-without-droproot.patch b/package/ntp/0004-fix-work-fork-without-droproot.patch deleted file mode 100644 index cb6fec0125..0000000000 --- a/package/ntp/0004-fix-work-fork-without-droproot.patch +++ /dev/null @@ -1,26 +0,0 @@ -Fix work_fork build when droproot is disabled - -The set_user_group_ids() depends on HAVE_DROPROOT. When HAVE_DROPROOT is not -enabled, work_fork.c code causes a link failure: - -../libntp/libntp.a(work_fork.o): In function `send_blocking_req_internal': -work_fork.c:(.text+0x498): undefined reference to `set_user_group_ids' - -Make the set_user_group_ids() call depend on HAVE_DROPROOT. - -Signed-off-by: Baruch Siach <baruch@tkos.co.il> ---- -Upstream status: http://bugs.ntp.org/show_bug.cgi?id=3539 - ---- ntp-4.2.8p12.orig/libntp/work_fork.c 2018-08-14 14:51:06.000000000 +0300 -+++ ntp-4.2.8p12/libntp/work_fork.c 2018-10-15 21:10:54.580917962 +0300 -@@ -594,7 +594,9 @@ - init_logging("ntp_intres", 0, FALSE); - setup_logfile(NULL); - -+#if defined(HAVE_DROPROOT) - (void) set_user_group_ids(); -+#endif - - /* - * And now back to the portable code |