r3784 - in trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian: . patches patches/series

Simon Horman horms at costa.debian.org
Tue Aug 9 09:39:16 UTC 2005


Author: horms
Date: 2005-08-09 09:39:15 +0000 (Tue, 09 Aug 2005)
New Revision: 3784

Added:
   trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/fs_ext2_ext3_xattr-sharing.dpatch
Modified:
   trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/changelog
   trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/series/2.6.8-17
Log:
[Security] Xattr sharing bug

Modified: trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/changelog
===================================================================
--- trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/changelog	2005-08-09 09:39:13 UTC (rev 3783)
+++ trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/changelog	2005-08-09 09:39:15 UTC (rev 3784)
@@ -137,11 +137,11 @@
     in putting in gcc-4.0 fixes, but at the same time,
     there is some value in being able to use it with unstable.
 
+  [ dann frazier ]
   * Merge in applicable fixes from 2.6.12.3
      - ppc32-time_offset-misuse.dpatch
      - v4l-cx88-hue-offset-fix.dpatch
      - tty_ldisc_ref-return-null-check.dpatch
-    (dann frazier)
 
   * Merge in applicable fixes from 2.6.12.4
      - netfilter-NAT-memory-corruption.dpatch
@@ -151,10 +151,14 @@
      - sys_get_thread_area-leak.dpatch
      - rocket_c-fix-ldisc-ref-count.dpatch
      - early-vlan-fix.dpatch
-    (dann frazier)
 
- -- dann frazier <dannf at debian.org>  Tue,  2 Aug 2005 01:33:54 -0600
+  [ Simon Horman ]
+  * fs_ext2_ext3_xattr-sharing.dpatch
+     [Security] Xattr sharing bug
+     See http://lists.debian.org/debian-kernel/2005/08/msg00238.html
 
+ -- Simon Horman <horms at debian.org>  Tue,  9 Aug 2005 18:37:23 +0900
+
 kernel-source-2.6.8 (2.6.8-16) unstable; urgency=low
 
   * smbfs-overrun.dpatch:

Added: trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/fs_ext2_ext3_xattr-sharing.dpatch
===================================================================
--- trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/fs_ext2_ext3_xattr-sharing.dpatch	2005-08-09 09:39:13 UTC (rev 3783)
+++ trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/fs_ext2_ext3_xattr-sharing.dpatch	2005-08-09 09:39:15 UTC (rev 3784)
@@ -0,0 +1,20 @@
+--- fs/ext2/xattr.c.orig	2005-08-09 17:59:44.000000000 +0900
++++ fs/ext2/xattr.c	2005-08-09 17:59:46.000000000 +0900
+@@ -977,6 +977,7 @@
+ 		if (IS_LAST_ENTRY(entry2))
+ 			return 1;
+ 		if (entry1->e_hash != entry2->e_hash ||
++		    entry1->e_name_index != entry2->e_name_index ||
+ 		    entry1->e_name_len != entry2->e_name_len ||
+ 		    entry1->e_value_size != entry2->e_value_size ||
+ 		    memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len))
+--- fs/ext3/xattr.c.orig	2005-08-09 17:58:31.000000000 +0900
++++ fs/ext3/xattr.c	2005-08-09 17:58:50.000000000 +0900
+@@ -1025,6 +1025,7 @@
+ 		if (IS_LAST_ENTRY(entry2))
+ 			return 1;
+ 		if (entry1->e_hash != entry2->e_hash ||
++		    entry1->e_name_index != entry2->e_name_index ||
+ 		    entry1->e_name_len != entry2->e_name_len ||
+ 		    entry1->e_value_size != entry2->e_value_size ||
+ 		    memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len))

Modified: trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/series/2.6.8-17
===================================================================
--- trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/series/2.6.8-17	2005-08-09 09:39:13 UTC (rev 3783)
+++ trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/series/2.6.8-17	2005-08-09 09:39:15 UTC (rev 3784)
@@ -41,3 +41,4 @@
 + sys_get_thread_area-leak.dpatch
 + rocket_c-fix-ldisc-ref-count.dpatch
 + early-vlan-fix.dpatch
++ fs_ext2_ext3_xattr-sharing.dpatch




More information about the Kernel-svn-changes mailing list