rpms/kernel/F-11 x86-increase-min_gap-to-include-randomized-stack.patch, NONE, 1.1 kernel.spec, 1.1750, 1.1751

Chuck Ebbert cebbert at fedoraproject.org
Mon Oct 5 03:45:36 UTC 2009


Author: cebbert

Update of /cvs/pkgs/rpms/kernel/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11826

Modified Files:
	kernel.spec 
Added Files:
	x86-increase-min_gap-to-include-randomized-stack.patch 
Log Message:
Copy stack randomization fix from 2.6.31.2 (F10#526882)

x86-increase-min_gap-to-include-randomized-stack.patch:
 include/asm/elf.h |    2 ++
 mm/mmap.c         |   17 +++++++++++++++--
 2 files changed, 17 insertions(+), 2 deletions(-)

--- NEW FILE x86-increase-min_gap-to-include-randomized-stack.patch ---
>From 80938332d8cf652f6b16e0788cf0ca136befe0b5 Mon Sep 17 00:00:00 2001
From: Michal Hocko <mhocko at suse.cz>
Date: Tue, 8 Sep 2009 11:01:55 +0200
Subject: x86: Increase MIN_GAP to include randomized stack

From: Michal Hocko <mhocko at suse.cz>

commit 80938332d8cf652f6b16e0788cf0ca136befe0b5 upstream.

Currently we are not including randomized stack size when calculating
mmap_base address in arch_pick_mmap_layout for topdown case. This might
cause that mmap_base starts in the stack reserved area because stack is
randomized by 1GB for 64b (8MB for 32b) and the minimum gap is 128MB.

If the stack really grows down to mmap_base then we can get silent mmap
region overwrite by the stack values.

Let's include maximum stack randomization size into MIN_GAP which is
used as the low bound for the gap in mmap.

Signed-off-by: Michal Hocko <mhocko at suse.cz>
LKML-Reference: <1252400515-6866-1-git-send-email-mhocko at suse.cz>
Acked-by: Jiri Kosina <jkosina at suse.cz>
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh at suse.de>

---
 arch/x86/include/asm/elf.h |    2 ++
 arch/x86/mm/mmap.c         |   17 +++++++++++++++--
 2 files changed, 17 insertions(+), 2 deletions(-)

--- a/arch/x86/include/asm/elf.h
+++ b/arch/x86/include/asm/elf.h
@@ -299,6 +299,8 @@ do {									\
 
 #ifdef CONFIG_X86_32
 
+#define STACK_RND_MASK (0x7ff)
+
 #define VDSO_HIGH_BASE		(__fix_to_virt(FIX_VDSO))
 
 #define ARCH_DLINFO		ARCH_DLINFO_IA32(vdso_enabled)
--- a/arch/x86/mm/mmap.c
+++ b/arch/x86/mm/mmap.c
@@ -29,13 +29,26 @@
 #include <linux/random.h>
 #include <linux/limits.h>
 #include <linux/sched.h>
+#include <asm/elf.h>
+
+static unsigned int stack_maxrandom_size(void)
+{
+	unsigned int max = 0;
+	if ((current->flags & PF_RANDOMIZE) &&
+		!(current->personality & ADDR_NO_RANDOMIZE)) {
+		max = ((-1U) & STACK_RND_MASK) << PAGE_SHIFT;
+	}
+
+	return max;
+}
+
 
 /*
  * Top of mmap area (just below the process stack).
  *
- * Leave an at least ~128 MB hole.
+ * Leave an at least ~128 MB hole with possible stack randomization.
  */
-#define MIN_GAP (128*1024*1024)
+#define MIN_GAP (128*1024*1024UL + stack_maxrandom_size())
 #define MAX_GAP (TASK_SIZE/6*5)
 
 /*


Index: kernel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-11/kernel.spec,v
retrieving revision 1.1750
retrieving revision 1.1751
diff -u -p -r1.1750 -r1.1751
--- kernel.spec	5 Oct 2009 02:55:37 -0000	1.1750
+++ kernel.spec	5 Oct 2009 03:45:35 -0000	1.1751
@@ -761,6 +761,9 @@ Patch14300: linux-2.6-cfq-choose-new-nex
 # appletalk: fix skb leak (CVE-2009-2903)
 Patch15200: appletalk-fix-skb-leak-when-ipddp-interface-is-not-loaded.patch
 
+# fix stack randomization (F10#526882)
+Patch15300: x86-increase-min_gap-to-include-randomized-stack.patch
+
 %endif
 
 BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root
@@ -1418,6 +1421,9 @@ ApplyPatch linux-2.6-cfq-choose-new-next
 # appletalk: fix skb leak (CVE-2009-2903)
 ApplyPatch appletalk-fix-skb-leak-when-ipddp-interface-is-not-loaded.patch
 
+# copy stack randomization fix from 2.6.31.2
+ApplyPatch x86-increase-min_gap-to-include-randomized-stack.patch
+
 # END OF PATCH APPLICATIONS
 
 %endif
@@ -2006,6 +2012,9 @@ fi
 # and build.
 
 %changelog
+* Sun Oct 04 2009  Chuck Ebbert <cebbert at redhat.com>  2.6.30.9-72.rc3
+- Copy stack randomization fix from 2.6.31.2 (F10#526882)
+
 * Sun Oct 04 2009  Chuck Ebbert <cebbert at redhat.com>  2.6.30.9-71.rc3
 - Linux 2.6.30.9-rc3
 - Drop merged upstream patches:




More information about the scm-commits mailing list