Author: dannf
Date: Tue Aug 28 04:23:17 2007
New Revision: 9385

Log:
* bugfix/ipv4-fib_props-out-of-bounds.patch
  [SECURITY] Fix a typo which caused fib_props[] to be of the wrong size
  and check for out of bounds condition in index provided by userspace
  See CVE-2007-2172

Added:
   
dists/etch-security/linux-2.6/debian/patches/bugfix/ipv4-fib_props-out-of-bounds.patch
   dists/etch-security/linux-2.6/debian/patches/series/13etch2
Modified:
   dists/etch-security/linux-2.6/debian/changelog

Modified: dists/etch-security/linux-2.6/debian/changelog
==============================================================================
--- dists/etch-security/linux-2.6/debian/changelog      (original)
+++ dists/etch-security/linux-2.6/debian/changelog      Tue Aug 28 04:23:17 2007
@@ -1,3 +1,12 @@
+linux-2.6 (2.6.18.dfsg.1-13etch2) UNRELEASED; urgency=low
+
+  * bugfix/ipv4-fib_props-out-of-bounds.patch
+    [SECURITY] Fix a typo which caused fib_props[] to be of the wrong size
+    and check for out of bounds condition in index provided by userspace
+    See CVE-2007-2172
+
+ -- dann frazier <[EMAIL PROTECTED]>  Mon, 27 Aug 2007 22:16:19 -0600
+
 linux-2.6 (2.6.18.dfsg.1-13etch1) stable-security; urgency=high
 
   * Update abi reference files for ABI 5

Added: 
dists/etch-security/linux-2.6/debian/patches/bugfix/ipv4-fib_props-out-of-bounds.patch
==============================================================================
--- (empty file)
+++ 
dists/etch-security/linux-2.6/debian/patches/bugfix/ipv4-fib_props-out-of-bounds.patch
      Tue Aug 28 04:23:17 2007
@@ -0,0 +1,42 @@
+From: Thomas Graf <[EMAIL PROTECTED]>
+Date: Sun, 25 Mar 2007 03:32:54 +0000 (-0700)
+Subject: [IPv4] fib: Fix out of bound access of fib_props[]
+X-Git-Tag: v2.6.21~241^2~12
+X-Git-Url: 
http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=a0ee18b9b7d3847976c6fb315c06a34fb296de0e
+
+[IPv4] fib: Fix out of bound access of fib_props[]
+
+Fixes a typo which caused fib_props[] to have the wrong size
+and makes sure the value used to index the array which is
+provided by userspace via netlink is checked to avoid out of
+bound access.
+
+Signed-off-by: Thomas Graf <[EMAIL PROTECTED]>
+Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
+---
+
+Backported to Debian's 2.6.18 by dann frazier <[EMAIL PROTECTED]>, heavily
+based upon Tim Gardner's backport for Ubuntu:
+  
http://kernel.ubuntu.com/git?p=ubuntu/ubuntu-edgy.git;a=commitdiff;h=6e87288e83ac08e7154980795622efdafd49c9c8
+
+--- linux-source-2.6.18.orig/net/ipv4/fib_semantics.c  2006-09-19 
21:42:06.000000000 -0600
++++ linux-source-2.6.18/net/ipv4/fib_semantics.c       2007-08-27 
22:15:04.678316443 -0600
+@@ -88,7 +88,7 @@ static const struct 
+ {
+       int     error;
+       u8      scope;
+-} fib_props[RTA_MAX + 1] = {
++} fib_props[RTN_MAX + 1] = {
+         {
+               .error  = 0,
+               .scope  = RT_SCOPE_NOWHERE,
+@@ -662,6 +662,9 @@ fib_create_info(const struct rtmsg *r, s
+       u32 mp_alg = IP_MP_ALG_NONE;
+ #endif
+ 
++      if (r->rtm_type > RTN_MAX)
++              goto err_inval;
++
+       /* Fast check to catch the most weird cases */
+       if (fib_props[r->rtm_type].scope > r->rtm_scope)
+               goto err_inval;

Added: dists/etch-security/linux-2.6/debian/patches/series/13etch2
==============================================================================
--- (empty file)
+++ dists/etch-security/linux-2.6/debian/patches/series/13etch2 Tue Aug 28 
04:23:17 2007
@@ -0,0 +1 @@
++ bugfix/ipv4-fib_props-out-of-bounds.patch

_______________________________________________
Kernel-svn-changes mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/kernel-svn-changes

Reply via email to