diff options
author | Will Deacon <will.deacon@arm.com> | 2014-08-22 14:20:24 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2014-08-28 20:01:42 +0100 |
commit | 85487edd252fa04718dcd735bc0f41213bbb9546 (patch) | |
tree | b59a5d4c9ee42f7f60c2f1f0284112fc677429e8 /arch/arm64 | |
parent | 27d7ff273c2aad37b28f6ff0cab2cfa35b51e648 (diff) | |
download | talos-op-linux-85487edd252fa04718dcd735bc0f41213bbb9546.tar.gz talos-op-linux-85487edd252fa04718dcd735bc0f41213bbb9546.zip |
arm64: ptrace: fix compat reg getter/setter return values
copy_{to,from}_user return the number of bytes remaining on failure, not
an error code.
This patch returns -EFAULT when the copy operation didn't complete,
rather than expose the number of bytes not copied directly to userspace.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/kernel/ptrace.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/arm64/kernel/ptrace.c b/arch/arm64/kernel/ptrace.c index 2ac998878001..fe63ac5e9bf5 100644 --- a/arch/arm64/kernel/ptrace.c +++ b/arch/arm64/kernel/ptrace.c @@ -663,8 +663,10 @@ static int compat_gpr_get(struct task_struct *target, kbuf += sizeof(reg); } else { ret = copy_to_user(ubuf, ®, sizeof(reg)); - if (ret) + if (ret) { + ret = -EFAULT; break; + } ubuf += sizeof(reg); } @@ -702,8 +704,10 @@ static int compat_gpr_set(struct task_struct *target, kbuf += sizeof(reg); } else { ret = copy_from_user(®, ubuf, sizeof(reg)); - if (ret) - return ret; + if (ret) { + ret = -EFAULT; + break; + } ubuf += sizeof(reg); } |