diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2014-01-14 01:33:09 +0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-01-14 07:38:19 +0400 |
commit | 06bdadd7634551cfe8ce071fe44d0311b3033d9e (patch) | |
tree | cf93c868f34f5ea2c7d99d833e3d41af276c8dd3 /include | |
parent | 1ce319f11ccc5ee5ed1bc1e020f1ac6e6d689c74 (diff) | |
download | linux-06bdadd7634551cfe8ce071fe44d0311b3033d9e.tar.xz |
audit: correct a type mismatch in audit_syscall_exit()
audit_syscall_exit() saves a result of regs_return_value() in intermediate
"int" variable and passes it to __audit_syscall_exit(), which expects its
second argument as a "long" value. This will result in truncating the
value returned by a system call and making a wrong audit record.
I don't know why gcc compiler doesn't complain about this, but anyway it
causes a problem at runtime on arm64 (and probably most 64-bit archs).
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Eric Paris <eparis@redhat.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/audit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/audit.h b/include/linux/audit.h index 697621975b8d..98fe8a26a601 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h @@ -137,7 +137,7 @@ static inline void audit_syscall_exit(void *pt_regs) { if (unlikely(current->audit_context)) { int success = is_syscall_success(pt_regs); - int return_code = regs_return_value(pt_regs); + long return_code = regs_return_value(pt_regs); __audit_syscall_exit(success, return_code); } |