From c4654261976200551d2c576051d264ce99ca97c3 Mon Sep 17 00:00:00 2001 From: maximilian attems Date: Fri, 7 Jul 2006 13:29:48 +0000 Subject: [PATCH] add 2.6.17.4 svn path=/dists/trunk/linux-2.6/; revision=6959 --- debian/changelog | 4 +++- debian/patches/2.6.17.4 | 13 +++++++++++++ debian/patches/series/3 | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 debian/patches/2.6.17.4 diff --git a/debian/changelog b/debian/changelog index ea5896fa2..f9212d7f3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -37,11 +37,13 @@ linux-2.6 (2.6.17-3) UNRELEASED; urgency=low Set deadline as default iosched and CONFIG_NR_CPUS=32. (closes: 295680) * Set CONFIG_SERIAL_8250_RN_UARTS=16 for all archs beside mips/m68k unless explicitly set on a specific value. (closes: 377151) + * Add stable release 2.6.17.4: + - fix prctl privilege escalation and suid_dumpable (CVE-2006-2451) [ Sven Luther ] * Re-enabled fs-asfs patch. - -- maximilian attems Fri, 7 Jul 2006 12:37:43 +0200 + -- maximilian attems Fri, 7 Jul 2006 15:23:43 +0200 linux-2.6 (2.6.17-2) unstable; urgency=low diff --git a/debian/patches/2.6.17.4 b/debian/patches/2.6.17.4 new file mode 100644 index 000000000..44dfd171c --- /dev/null +++ b/debian/patches/2.6.17.4 @@ -0,0 +1,13 @@ +diff --git a/kernel/sys.c b/kernel/sys.c +index 0b6ec0e..59273f7 100644 +--- a/kernel/sys.c ++++ b/kernel/sys.c +@@ -1991,7 +1991,7 @@ asmlinkage long sys_prctl(int option, un + error = current->mm->dumpable; + break; + case PR_SET_DUMPABLE: +- if (arg2 < 0 || arg2 > 2) { ++ if (arg2 < 0 || arg2 > 1) { + error = -EINVAL; + break; + } diff --git a/debian/patches/series/3 b/debian/patches/series/3 index bdd90d5b8..1b7d8a1a4 100644 --- a/debian/patches/series/3 +++ b/debian/patches/series/3 @@ -2,4 +2,4 @@ + 2.6.17.2 + 2.6.17.3 + fs-asfs.patch - ++ 2.6.17.4