]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.0-stable patches
authorGreg Kroah-Hartman <gregkh@suse.de>
Tue, 10 Jan 2012 19:24:18 +0000 (11:24 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 10 Jan 2012 19:24:18 +0000 (11:24 -0800)
added patches:
xfs-fix-acl-count-validation-in-xfs_acl_from_disk.patch

queue-3.0/series
queue-3.0/xfs-fix-acl-count-validation-in-xfs_acl_from_disk.patch [new file with mode: 0644]

index 3eb3874983e57320262ea6e7ac87ae44860bdd92..39bb8c3cd7e6724409d25adcb840ada2e3f210d0 100644 (file)
@@ -37,3 +37,4 @@ bonding-fix-error-handling-if-slave-is-busy-v2.patch
 pm-sleep-fix-race-between-cpu-hotplug-and-freezer.patch
 scsi-mpt2sas-added-missing-mpt2sas_base_detach-call-from-scsih_remove-context.patch
 usb-cdc-acm-fix-acm_tty_hangup-vs.-acm_tty_close-race.patch
+xfs-fix-acl-count-validation-in-xfs_acl_from_disk.patch
diff --git a/queue-3.0/xfs-fix-acl-count-validation-in-xfs_acl_from_disk.patch b/queue-3.0/xfs-fix-acl-count-validation-in-xfs_acl_from_disk.patch
new file mode 100644 (file)
index 0000000..9767598
--- /dev/null
@@ -0,0 +1,32 @@
+From 093019cf1b18dd31b2c3b77acce4e000e2cbc9ce Mon Sep 17 00:00:00 2001
+From: Xi Wang <xi.wang@gmail.com>
+Date: Mon, 12 Dec 2011 21:55:52 +0000
+Subject: xfs: fix acl count validation in xfs_acl_from_disk()
+
+From: Xi Wang <xi.wang@gmail.com>
+
+commit 093019cf1b18dd31b2c3b77acce4e000e2cbc9ce upstream.
+
+Commit fa8b18ed didn't prevent the integer overflow and possible
+memory corruption.  "count" can go negative and bypass the check.
+
+Signed-off-by: Xi Wang <xi.wang@gmail.com>
+Reviewed-by: Christoph Hellwig <hch@lst.de>
+Signed-off-by: Ben Myers <bpm@sgi.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ fs/xfs/linux-2.6/xfs_acl.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/fs/xfs/linux-2.6/xfs_acl.c
++++ b/fs/xfs/linux-2.6/xfs_acl.c
+@@ -39,7 +39,7 @@ xfs_acl_from_disk(struct xfs_acl *aclp)
+       struct posix_acl_entry *acl_e;
+       struct posix_acl *acl;
+       struct xfs_acl_entry *ace;
+-      int count, i;
++      unsigned int count, i;
+       count = be32_to_cpu(aclp->acl_cnt);
+       if (count > XFS_ACL_MAX_ENTRIES)