Module Name: src
Committed By: bouyer
Date: Sun Mar 20 21:33:56 UTC 2011
Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.1
Log Message:
tickets 1567, 1571, 1574
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.15 -r1.1.2.16 src/doc/CHANGES-5.1.1
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.1.1
diff -u src/doc/CHANGES-5.1.1:1.1.2.15 src/doc/CHANGES-5.1.1:1.1.2.16
--- src/doc/CHANGES-5.1.1:1.1.2.15 Tue Mar 8 17:43:34 2011
+++ src/doc/CHANGES-5.1.1 Sun Mar 20 21:33:56 2011
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-5.1.1,v 1.1.2.15 2011/03/08 17:43:34 riz Exp $
+# $NetBSD: CHANGES-5.1.1,v 1.1.2.16 2011/03/20 21:33:56 bouyer Exp $
A complete list of changes from the NetBSD 5.1 release to the NetBSD 5.1.1
release:
@@ -2280,3 +2280,24 @@
Add keys directory for recently updated BIND.
[spz, ticket #1566]
+sys/kern/vfs_syscalls.c 1.415 via patch
+
+ Check for bogus flags to access() up front. Otherwise we end up
+ calling VOP_ACCESS with flags 0 and something asserts deep in the
+ bowels of kauth. PR 44648 from Taylor Campbell. (I moved the check
+ earlier relative to the suggested patch.)
+ [dholland, ticket #1567]
+
+sys/net/bpf_filter.c 1.42 - 1.46 via patch
+
+ Avoid stack memory disclosure by keeping track during filter
+ validation time of initialized memory. Idea taken from linux.
+ Use kmem instead of malloc. Requested by rmind.
+ [spz, ticket #1571]
+
+lib/libc/inet/inet_net_pton.c 1.2
+
+ Check bits on each loop to prevent integer oveflow.
+ Reported by Maksymilian Arciemowicz
+ [spz, ticket #1574]
+