]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
regset: Return -EFAULT, not -EIO, on host-side memory fault
authorH. Peter Anvin <hpa@zytor.com>
Fri, 2 Mar 2012 18:43:49 +0000 (10:43 -0800)
committerWilly Tarreau <w@1wt.eu>
Sat, 17 Mar 2012 10:14:51 +0000 (11:14 +0100)
commit 5189fa19a4b2b4c3bec37c3a019d446148827717 upstream.

There is only one error code to return for a bad user-space buffer
pointer passed to a system call in the same address space as the
system call is executed, and that is EFAULT.  Furthermore, the
low-level access routines, which catch most of the faults, return
EFAULT already.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Reviewed-by: Oleg Nesterov <oleg@redhat.com>
Acked-by: Roland McGrath <roland@hack.frob.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
include/linux/regset.h

index 5150fd16ef93cbb38a840fb6667b56b937697f51..686f37327a4949f50ad3d02b888f8f445f291ece 100644 (file)
@@ -339,7 +339,7 @@ static inline int copy_regset_to_user(struct task_struct *target,
                return -EOPNOTSUPP;
 
        if (!access_ok(VERIFY_WRITE, data, size))
-               return -EIO;
+               return -EFAULT;
 
        return regset->get(target, regset, offset, size, NULL, data);
 }
@@ -365,7 +365,7 @@ static inline int copy_regset_from_user(struct task_struct *target,
                return -EOPNOTSUPP;
 
        if (!access_ok(VERIFY_READ, data, size))
-               return -EIO;
+               return -EFAULT;
 
        return regset->set(target, regset, offset, size, NULL, data);
 }