Module Name: src
Committed By: bouyer
Date: Tue Aug 31 10:56:34 UTC 2010
Modified Files:
src/doc [netbsd-5-0]: CHANGES-5.0.3
Log Message:
Ticket 1444
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.16 -r1.1.2.17 src/doc/CHANGES-5.0.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/doc/CHANGES-5.0.3
diff -u src/doc/CHANGES-5.0.3:1.1.2.16 src/doc/CHANGES-5.0.3:1.1.2.17
--- src/doc/CHANGES-5.0.3:1.1.2.16 Wed Aug 25 04:16:32 2010
+++ src/doc/CHANGES-5.0.3 Tue Aug 31 10:56:34 2010
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.0.3,v 1.1.2.16 2010/08/25 04:16:32 snj Exp $
+# $NetBSD: CHANGES-5.0.3,v 1.1.2.17 2010/08/31 10:56:34 bouyer Exp $
A complete list of changes from the NetBSD 5.0.2 release to the NetBSD 5.0.3
release:
@@ -295,3 +295,14 @@
Correct incomplete size checks for the coda ioctls.
[christos, ticket #1431]
+sys/kern/exec_subr.c 1.65
+sys/kern/kern_pax.c 1.24
+
+ Fix issues with stack allocation and pax aslr:
+ - since the size is unsigned, don't check just that it is > 0,
+ but limit it to the MAXSSIZ
+ - if the stack size is reduced because of aslr, make sure we reduce
+ the actual allocation by the same size so that the size does not
+ wrap around.
+ [christos, ticket #1444]
+