]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ARM: 6891/1: prevent heap corruption in OABI semtimedop
authorDan Rosenberg <drosenberg@vsecurity.com>
Fri, 29 Apr 2011 14:48:07 +0000 (15:48 +0100)
committerWilly Tarreau <w@1wt.eu>
Sat, 11 Feb 2012 14:37:17 +0000 (15:37 +0100)
commit 0f22072ab50cac7983f9660d33974b45184da4f9 upstream.

When CONFIG_OABI_COMPAT is set, the wrapper for semtimedop does not
bound the nsops argument.  A sufficiently large value will cause an
integer overflow in allocation size, followed by copying too much data
into the allocated buffer.  Fix this by restricting nsops to SEMOPM.
Untested.

Signed-off-by: Dan Rosenberg <drosenberg@vsecurity.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Willy Tarreau <w@1wt.eu>
arch/arm/kernel/sys_oabi-compat.c

index 96ab5f52949c99d145aea4be30f077e5ea34ef9f..86425e4f2d6430229aabc3d52c00cd211d4e0a46 100644 (file)
@@ -319,7 +319,7 @@ asmlinkage long sys_oabi_semtimedop(int semid,
        long err;
        int i;
 
-       if (nsops < 1)
+       if (nsops < 1 || nsops > SEMOPM)
                return -EINVAL;
        sops = kmalloc(sizeof(*sops) * nsops, GFP_KERNEL);
        if (!sops)