[kernel] r6443 - in dists/sid/linux-2.6/debian: . patches patches/series

maximilian attems maks-guest at costa.debian.org
Tue Apr 18 22:38:21 UTC 2006


Author: maks-guest
Date: Tue Apr 18 22:38:20 2006
New Revision: 6443

Added:
   dists/sid/linux-2.6/debian/patches/2.6.16.8
Modified:
   dists/sid/linux-2.6/debian/changelog
   dists/sid/linux-2.6/debian/patches/series/8
Log:
add 2.6.16.8


Modified: dists/sid/linux-2.6/debian/changelog
==============================================================================
--- dists/sid/linux-2.6/debian/changelog	(original)
+++ dists/sid/linux-2.6/debian/changelog	Tue Apr 18 22:38:20 2006
@@ -1,5 +1,6 @@
 linux-2.6 (2.6.16-8) unstable; urgency=low
 
+  [ Bastian Blank ]
   * Fix ABI-breakage introduced in -7. (closes: #363032)
   * Add stable release 2.6.16.6:
     - ext3: Fix missed mutex unlock
@@ -28,7 +29,11 @@
   * Add stable release 2.6.16.7:
     - fix MADV_REMOVE vulnerability (CVE-2006-1524 for real this time)
 
- -- Bastian Blank <waldi at debian.org>  Tue, 18 Apr 2006 16:22:31 +0200
+  [ maximilian attems ]
+  * Add stable release 2.6.16.8:
+    - ip_route_input panic fix (CVE-2006-1525)
+
+ -- maximilian attems <maks at sternwelten.at>  Wed, 19 Apr 2006 00:29:31 +0200
 
 linux-2.6 (2.6.16-7) unstable; urgency=low
 

Added: dists/sid/linux-2.6/debian/patches/2.6.16.8
==============================================================================
--- (empty file)
+++ dists/sid/linux-2.6/debian/patches/2.6.16.8	Tue Apr 18 22:38:20 2006
@@ -0,0 +1,16 @@
+diff --git a/net/ipv4/route.c b/net/ipv4/route.c
+index fca5fe0..a67955e 100644
+--- a/net/ipv4/route.c
++++ b/net/ipv4/route.c
+@@ -2750,7 +2750,10 @@ int inet_rtm_getroute(struct sk_buff *in
+ 	/* Reserve room for dummy headers, this skb can pass
+ 	   through good chunk of routing engine.
+ 	 */
+-	skb->mac.raw = skb->data;
++	skb->mac.raw = skb->nh.raw = skb->data;
++
++	/* Bugfix: need to give ip_route_input enough of an IP header to not gag. */
++	skb->nh.iph->protocol = IPPROTO_ICMP;
+ 	skb_reserve(skb, MAX_HEADER + sizeof(struct iphdr));
+ 
+ 	if (rta[RTA_SRC - 1])

Modified: dists/sid/linux-2.6/debian/patches/series/8
==============================================================================
--- dists/sid/linux-2.6/debian/patches/series/8	(original)
+++ dists/sid/linux-2.6/debian/patches/series/8	Tue Apr 18 22:38:20 2006
@@ -1,3 +1,4 @@
 + include-linux-seccomp-abifix.patch
 + 2.6.16.6
 + 2.6.16.7
++ 2.6.16.8



More information about the Kernel-svn-changes mailing list