diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-05-23 21:19:04 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-05-24 23:10:48 +0200 |
commit | fe07577181e178381a4aaf526da3a7c3fb4d8f6c (patch) | |
tree | 86833238aa306510a0ab4bd6d35653b7f2625c71 /package/procps-ng/0001-proc-sig-fix-build-for-sparc.patch | |
parent | c11ed3a4d961ed67e2b5845569cbbe214abdaa8d (diff) | |
download | buildroot-fe07577181e178381a4aaf526da3a7c3fb4d8f6c.tar.gz buildroot-fe07577181e178381a4aaf526da3a7c3fb4d8f6c.zip |
procps-ng: security bump to version 3.3.15
Drop upstream patch.
This release fixes the issues listed below.
CVE-2018-1122: Local privilege escalation in top
CVE-2018-1123: Denial of service in ps
CVE-2018-1124: Local privilege escalation in libprocps
CVE-2018-1125: Stack buffer overflow in pgrep
CVE-2018-1126: Integer overflow in proc/alloc
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/procps-ng/0001-proc-sig-fix-build-for-sparc.patch')
-rw-r--r-- | package/procps-ng/0001-proc-sig-fix-build-for-sparc.patch | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/package/procps-ng/0001-proc-sig-fix-build-for-sparc.patch b/package/procps-ng/0001-proc-sig-fix-build-for-sparc.patch deleted file mode 100644 index 74f822aea3..0000000000 --- a/package/procps-ng/0001-proc-sig-fix-build-for-sparc.patch +++ /dev/null @@ -1,43 +0,0 @@ -From 070feb7c5ebd0f2ca721ca5d75bdd3fd8cffe961 Mon Sep 17 00:00:00 2001 -From: Baruch Siach <baruch@tkos.co.il> -Date: Fri, 27 Apr 2018 07:34:57 +0300 -Subject: [PATCH] proc/sig: fix build for sparc - -The code undefines SIGLOST which breaks references to SIGPWR. - -Taken from a patch suggested in upstream bug report #93. - -Signed-off-by: Baruch Siach <baruch@tkos.co.il> ---- -Upstream status: https://gitlab.com/procps-ng/procps/issues/93 ---- - proc/sig.c | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -diff --git a/proc/sig.c b/proc/sig.c -index b883185fc28a..6ca9512cc70c 100644 ---- a/proc/sig.c -+++ b/proc/sig.c -@@ -52,10 +52,6 @@ - # undef SIGSTKFLT - #endif - --#if !defined(__GNU__) && defined(SIGLOST) --# undef SIGLOST --#endif -- - #ifndef SIGRTMIN - # warning Standards require that <signal.h> define SIGRTMIN; assuming 32 - # define SIGRTMIN 32 -@@ -87,7 +83,7 @@ static const mapstruct sigtable[] = { - {"ILL", SIGILL}, - {"INT", SIGINT}, - {"KILL", SIGKILL}, --#ifdef SIGLOST -+#if defined(__GNU__) - {"LOST", SIGLOST}, /* Hurd-specific */ - #endif - {"PIPE", SIGPIPE}, --- -2.17.0 - |