Commit 16add411 authored by Dmitry V. Levin's avatar Dmitry V. Levin Committed by Paul Moore

syscall_get_arch: add "struct task_struct *" argument

This argument is required to extend the generic ptrace API with
PTRACE_GET_SYSCALL_INFO request: syscall_get_arch() is going
to be called from ptrace_request() along with syscall_get_nr(),
syscall_get_arguments(), syscall_get_error(), and
syscall_get_return_value() functions with a tracee as their argument.

The primary intent is that the triple (audit_arch, syscall_nr, arg1..arg6)
should describe what system call is being called and what its arguments
are.

Reverts: 5e937a9a ("syscall_get_arch: remove useless function arguments")
Reverts: 1002d94d ("syscall.h: fix doc text for syscall_get_arch()")
Reviewed-by: Andy Lutomirski <luto@kernel.org> # for x86
Reviewed-by: default avatarPalmer Dabbelt <palmer@sifive.com>
Acked-by: default avatarPaul Moore <paul@paul-moore.com>
Acked-by: Paul Burton <paul.burton@mips.com> # MIPS parts
Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
Acked-by: Kees Cook <keescook@chromium.org> # seccomp parts
Acked-by: Mark Salter <msalter@redhat.com> # for the c6x bit
Cc: Elvira Khabirova <lineprinter@altlinux.org>
Cc: Eugene Syromyatnikov <esyr@redhat.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: x86@kernel.org
Cc: linux-alpha@vger.kernel.org
Cc: linux-snps-arc@lists.infradead.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-c6x-dev@linux-c6x.org
Cc: uclinux-h8-devel@lists.sourceforge.jp
Cc: linux-hexagon@vger.kernel.org
Cc: linux-ia64@vger.kernel.org
Cc: linux-m68k@lists.linux-m68k.org
Cc: linux-mips@vger.kernel.org
Cc: nios2-dev@lists.rocketboards.org
Cc: openrisc@lists.librecores.org
Cc: linux-parisc@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-riscv@lists.infradead.org
Cc: linux-s390@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Cc: sparclinux@vger.kernel.org
Cc: linux-um@lists.infradead.org
Cc: linux-xtensa@linux-xtensa.org
Cc: linux-arch@vger.kernel.org
Cc: linux-audit@redhat.com
Signed-off-by: default avatarDmitry V. Levin <ldv@altlinux.org>
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent b15fe94a
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include <uapi/linux/audit.h> #include <uapi/linux/audit.h>
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_ALPHA; return AUDIT_ARCH_ALPHA;
} }
......
...@@ -70,7 +70,7 @@ syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, ...@@ -70,7 +70,7 @@ syscall_get_arguments(struct task_struct *task, struct pt_regs *regs,
} }
static inline int static inline int
syscall_get_arch(void) syscall_get_arch(struct task_struct *task)
{ {
return IS_ENABLED(CONFIG_ISA_ARCOMPACT) return IS_ENABLED(CONFIG_ISA_ARCOMPACT)
? (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) ? (IS_ENABLED(CONFIG_CPU_BIG_ENDIAN)
......
...@@ -104,7 +104,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -104,7 +104,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
memcpy(&regs->ARM_r0 + i, args, n * sizeof(args[0])); memcpy(&regs->ARM_r0 + i, args, n * sizeof(args[0]));
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
/* ARM tasks don't change audit architectures on the fly. */ /* ARM tasks don't change audit architectures on the fly. */
return AUDIT_ARCH_ARM; return AUDIT_ARCH_ARM;
......
...@@ -117,9 +117,9 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -117,9 +117,9 @@ static inline void syscall_set_arguments(struct task_struct *task,
* We don't care about endianness (__AUDIT_ARCH_LE bit) here because * We don't care about endianness (__AUDIT_ARCH_LE bit) here because
* AArch64 has the same system calls both on little- and big- endian. * AArch64 has the same system calls both on little- and big- endian.
*/ */
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
if (is_compat_task()) if (is_compat_thread(task_thread_info(task)))
return AUDIT_ARCH_ARM; return AUDIT_ARCH_ARM;
return AUDIT_ARCH_AARCH64; return AUDIT_ARCH_AARCH64;
......
...@@ -121,7 +121,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -121,7 +121,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
} }
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) return IS_ENABLED(CONFIG_CPU_BIG_ENDIAN)
? AUDIT_ARCH_C6XBE : AUDIT_ARCH_C6X; ? AUDIT_ARCH_C6XBE : AUDIT_ARCH_C6X;
......
...@@ -70,7 +70,7 @@ syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, ...@@ -70,7 +70,7 @@ syscall_set_arguments(struct task_struct *task, struct pt_regs *regs,
} }
static inline int static inline int
syscall_get_arch(void) syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_CSKY; return AUDIT_ARCH_CSKY;
} }
......
...@@ -49,7 +49,7 @@ syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, ...@@ -49,7 +49,7 @@ syscall_get_arguments(struct task_struct *task, struct pt_regs *regs,
} }
static inline int static inline int
syscall_get_arch(void) syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_H8300; return AUDIT_ARCH_H8300;
} }
......
...@@ -46,7 +46,7 @@ static inline void syscall_get_arguments(struct task_struct *task, ...@@ -46,7 +46,7 @@ static inline void syscall_get_arguments(struct task_struct *task,
memcpy(args, &(&regs->r00)[i], n * sizeof(args[0])); memcpy(args, &(&regs->r00)[i], n * sizeof(args[0]));
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_HEXAGON; return AUDIT_ARCH_HEXAGON;
} }
......
...@@ -81,7 +81,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -81,7 +81,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
ia64_syscall_get_set_arguments(task, regs, i, n, args, 1); ia64_syscall_get_set_arguments(task, regs, i, n, args, 1);
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_IA64; return AUDIT_ARCH_IA64;
} }
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include <uapi/linux/audit.h> #include <uapi/linux/audit.h>
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_M68K; return AUDIT_ARCH_M68K;
} }
......
...@@ -101,7 +101,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -101,7 +101,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
asmlinkage unsigned long do_syscall_trace_enter(struct pt_regs *regs); asmlinkage unsigned long do_syscall_trace_enter(struct pt_regs *regs);
asmlinkage void do_syscall_trace_leave(struct pt_regs *regs); asmlinkage void do_syscall_trace_leave(struct pt_regs *regs);
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_MICROBLAZE; return AUDIT_ARCH_MICROBLAZE;
} }
......
...@@ -140,14 +140,14 @@ extern const unsigned long sys_call_table[]; ...@@ -140,14 +140,14 @@ extern const unsigned long sys_call_table[];
extern const unsigned long sys32_call_table[]; extern const unsigned long sys32_call_table[];
extern const unsigned long sysn32_call_table[]; extern const unsigned long sysn32_call_table[];
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
int arch = AUDIT_ARCH_MIPS; int arch = AUDIT_ARCH_MIPS;
#ifdef CONFIG_64BIT #ifdef CONFIG_64BIT
if (!test_thread_flag(TIF_32BIT_REGS)) { if (!test_tsk_thread_flag(task, TIF_32BIT_REGS)) {
arch |= __AUDIT_ARCH_64BIT; arch |= __AUDIT_ARCH_64BIT;
/* N32 sets only TIF_32BIT_ADDR */ /* N32 sets only TIF_32BIT_ADDR */
if (test_thread_flag(TIF_32BIT_ADDR)) if (test_tsk_thread_flag(task, TIF_32BIT_ADDR))
arch |= __AUDIT_ARCH_CONVENTION_MIPS64_N32; arch |= __AUDIT_ARCH_CONVENTION_MIPS64_N32;
} }
#endif #endif
......
...@@ -1418,7 +1418,7 @@ asmlinkage long syscall_trace_enter(struct pt_regs *regs, long syscall) ...@@ -1418,7 +1418,7 @@ asmlinkage long syscall_trace_enter(struct pt_regs *regs, long syscall)
unsigned long args[6]; unsigned long args[6];
sd.nr = syscall; sd.nr = syscall;
sd.arch = syscall_get_arch(); sd.arch = syscall_get_arch(current);
syscall_get_arguments(current, regs, 0, 6, args); syscall_get_arguments(current, regs, 0, 6, args);
for (i = 0; i < 6; i++) for (i = 0; i < 6; i++)
sd.args[i] = args[i]; sd.args[i] = args[i];
......
...@@ -188,7 +188,7 @@ void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, ...@@ -188,7 +188,7 @@ void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs,
} }
static inline int static inline int
syscall_get_arch(void) syscall_get_arch(struct task_struct *task)
{ {
return IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) return IS_ENABLED(CONFIG_CPU_BIG_ENDIAN)
? AUDIT_ARCH_NDS32BE : AUDIT_ARCH_NDS32; ? AUDIT_ARCH_NDS32BE : AUDIT_ARCH_NDS32;
......
...@@ -136,7 +136,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -136,7 +136,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
} }
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_NIOS2; return AUDIT_ARCH_NIOS2;
} }
......
...@@ -72,7 +72,7 @@ syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, ...@@ -72,7 +72,7 @@ syscall_set_arguments(struct task_struct *task, struct pt_regs *regs,
memcpy(&regs->gpr[3 + i], args, n * sizeof(args[0])); memcpy(&regs->gpr[3 + i], args, n * sizeof(args[0]));
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_OPENRISC; return AUDIT_ARCH_OPENRISC;
} }
......
...@@ -62,11 +62,11 @@ static inline void syscall_rollback(struct task_struct *task, ...@@ -62,11 +62,11 @@ static inline void syscall_rollback(struct task_struct *task,
/* do nothing */ /* do nothing */
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
int arch = AUDIT_ARCH_PARISC; int arch = AUDIT_ARCH_PARISC;
#ifdef CONFIG_64BIT #ifdef CONFIG_64BIT
if (!is_compat_task()) if (!__is_compat_task(task))
arch = AUDIT_ARCH_PARISC64; arch = AUDIT_ARCH_PARISC64;
#endif #endif
return arch; return arch;
......
...@@ -99,9 +99,15 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -99,9 +99,15 @@ static inline void syscall_set_arguments(struct task_struct *task,
regs->orig_gpr3 = args[0]; regs->orig_gpr3 = args[0];
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
int arch = is_32bit_task() ? AUDIT_ARCH_PPC : AUDIT_ARCH_PPC64; int arch;
if (IS_ENABLED(CONFIG_PPC64) && !test_tsk_thread_flag(task, TIF_32BIT))
arch = AUDIT_ARCH_PPC64;
else
arch = AUDIT_ARCH_PPC;
#ifdef __LITTLE_ENDIAN__ #ifdef __LITTLE_ENDIAN__
arch |= __AUDIT_ARCH_LE; arch |= __AUDIT_ARCH_LE;
#endif #endif
......
...@@ -100,7 +100,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -100,7 +100,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
memcpy(&regs->a1 + i * sizeof(regs->a1), args, n * sizeof(regs->a0)); memcpy(&regs->a1 + i * sizeof(regs->a1), args, n * sizeof(regs->a0));
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
#ifdef CONFIG_64BIT #ifdef CONFIG_64BIT
return AUDIT_ARCH_RISCV64; return AUDIT_ARCH_RISCV64;
......
...@@ -92,10 +92,10 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -92,10 +92,10 @@ static inline void syscall_set_arguments(struct task_struct *task,
regs->orig_gpr2 = args[0]; regs->orig_gpr2 = args[0];
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
#ifdef CONFIG_COMPAT #ifdef CONFIG_COMPAT
if (test_tsk_thread_flag(current, TIF_31BIT)) if (test_tsk_thread_flag(task, TIF_31BIT))
return AUDIT_ARCH_S390; return AUDIT_ARCH_S390;
#endif #endif
return AUDIT_ARCH_S390X; return AUDIT_ARCH_S390X;
......
...@@ -95,7 +95,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -95,7 +95,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
} }
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
int arch = AUDIT_ARCH_SH; int arch = AUDIT_ARCH_SH;
......
...@@ -63,7 +63,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -63,7 +63,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
memcpy(&regs->regs[2 + i], args, n * sizeof(args[0])); memcpy(&regs->regs[2 + i], args, n * sizeof(args[0]));
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
int arch = AUDIT_ARCH_SH; int arch = AUDIT_ARCH_SH;
......
...@@ -128,10 +128,11 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -128,10 +128,11 @@ static inline void syscall_set_arguments(struct task_struct *task,
regs->u_regs[UREG_I0 + i + j] = args[j]; regs->u_regs[UREG_I0 + i + j] = args[j];
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
#if defined(CONFIG_SPARC64) && defined(CONFIG_COMPAT) #if defined(CONFIG_SPARC64) && defined(CONFIG_COMPAT)
return in_compat_syscall() ? AUDIT_ARCH_SPARC : AUDIT_ARCH_SPARC64; return test_tsk_thread_flag(task, TIF_32BIT)
? AUDIT_ARCH_SPARC : AUDIT_ARCH_SPARC64;
#elif defined(CONFIG_SPARC64) #elif defined(CONFIG_SPARC64)
return AUDIT_ARCH_SPARC64; return AUDIT_ARCH_SPARC64;
#else #else
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include <uapi/linux/audit.h> #include <uapi/linux/audit.h>
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_UNICORE; return AUDIT_ARCH_UNICORE;
} }
......
...@@ -107,7 +107,7 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -107,7 +107,7 @@ static inline void syscall_set_arguments(struct task_struct *task,
memcpy(&regs->bx + i, args, n * sizeof(args[0])); memcpy(&regs->bx + i, args, n * sizeof(args[0]));
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_I386; return AUDIT_ARCH_I386;
} }
...@@ -236,10 +236,12 @@ static inline void syscall_set_arguments(struct task_struct *task, ...@@ -236,10 +236,12 @@ static inline void syscall_set_arguments(struct task_struct *task,
} }
} }
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
/* x32 tasks should be considered AUDIT_ARCH_X86_64. */ /* x32 tasks should be considered AUDIT_ARCH_X86_64. */
return in_ia32_syscall() ? AUDIT_ARCH_I386 : AUDIT_ARCH_X86_64; return (IS_ENABLED(CONFIG_IA32_EMULATION) &&
task->thread_info.status & TS_COMPAT)
? AUDIT_ARCH_I386 : AUDIT_ARCH_X86_64;
} }
#endif /* CONFIG_X86_32 */ #endif /* CONFIG_X86_32 */
......
...@@ -9,7 +9,7 @@ typedef asmlinkage long (*sys_call_ptr_t)(unsigned long, unsigned long, ...@@ -9,7 +9,7 @@ typedef asmlinkage long (*sys_call_ptr_t)(unsigned long, unsigned long,
unsigned long, unsigned long, unsigned long, unsigned long,
unsigned long, unsigned long); unsigned long, unsigned long);
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
#ifdef CONFIG_X86_32 #ifdef CONFIG_X86_32
return AUDIT_ARCH_I386; return AUDIT_ARCH_I386;
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include <asm/ptrace.h> #include <asm/ptrace.h>
#include <uapi/linux/audit.h> #include <uapi/linux/audit.h>
static inline int syscall_get_arch(void) static inline int syscall_get_arch(struct task_struct *task)
{ {
return AUDIT_ARCH_XTENSA; return AUDIT_ARCH_XTENSA;
} }
......
...@@ -144,14 +144,15 @@ void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, ...@@ -144,14 +144,15 @@ void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs,
/** /**
* syscall_get_arch - return the AUDIT_ARCH for the current system call * syscall_get_arch - return the AUDIT_ARCH for the current system call
* @task: task of interest, must be blocked
* *
* Returns the AUDIT_ARCH_* based on the system call convention in use. * Returns the AUDIT_ARCH_* based on the system call convention in use.
* *
* It's only valid to call this when current is stopped on entry to a system * It's only valid to call this when @task is stopped on entry to a system
* call, due to %TIF_SYSCALL_TRACE, %TIF_SYSCALL_AUDIT, or %TIF_SECCOMP. * call, due to %TIF_SYSCALL_TRACE, %TIF_SYSCALL_AUDIT, or %TIF_SECCOMP.
* *
* Architectures which permit CONFIG_HAVE_ARCH_SECCOMP_FILTER must * Architectures which permit CONFIG_HAVE_ARCH_SECCOMP_FILTER must
* provide an implementation of this. * provide an implementation of this.
*/ */
int syscall_get_arch(void); int syscall_get_arch(struct task_struct *task);
#endif /* _ASM_SYSCALL_H */ #endif /* _ASM_SYSCALL_H */
...@@ -1636,7 +1636,7 @@ void __audit_syscall_entry(int major, unsigned long a1, unsigned long a2, ...@@ -1636,7 +1636,7 @@ void __audit_syscall_entry(int major, unsigned long a1, unsigned long a2,
return; return;
} }
context->arch = syscall_get_arch(); context->arch = syscall_get_arch(current);
context->major = major; context->major = major;
context->argv[0] = a1; context->argv[0] = a1;
context->argv[1] = a2; context->argv[1] = a2;
...@@ -2590,7 +2590,7 @@ void audit_seccomp(unsigned long syscall, long signr, int code) ...@@ -2590,7 +2590,7 @@ void audit_seccomp(unsigned long syscall, long signr, int code)
return; return;
audit_log_task(ab); audit_log_task(ab);
audit_log_format(ab, " sig=%ld arch=%x syscall=%ld compat=%d ip=0x%lx code=0x%x", audit_log_format(ab, " sig=%ld arch=%x syscall=%ld compat=%d ip=0x%lx code=0x%x",
signr, syscall_get_arch(), syscall, signr, syscall_get_arch(current), syscall,
in_compat_syscall(), KSTK_EIP(current), code); in_compat_syscall(), KSTK_EIP(current), code);
audit_log_end(ab); audit_log_end(ab);
} }
......
...@@ -148,7 +148,7 @@ static void populate_seccomp_data(struct seccomp_data *sd) ...@@ -148,7 +148,7 @@ static void populate_seccomp_data(struct seccomp_data *sd)
unsigned long args[6]; unsigned long args[6];
sd->nr = syscall_get_nr(task, regs); sd->nr = syscall_get_nr(task, regs);
sd->arch = syscall_get_arch(); sd->arch = syscall_get_arch(task);
syscall_get_arguments(task, regs, 0, 6, args); syscall_get_arguments(task, regs, 0, 6, args);
sd->args[0] = args[0]; sd->args[0] = args[0];
sd->args[1] = args[1]; sd->args[1] = args[1];
...@@ -591,7 +591,7 @@ static void seccomp_init_siginfo(kernel_siginfo_t *info, int syscall, int reason ...@@ -591,7 +591,7 @@ static void seccomp_init_siginfo(kernel_siginfo_t *info, int syscall, int reason
info->si_code = SYS_SECCOMP; info->si_code = SYS_SECCOMP;
info->si_call_addr = (void __user *)KSTK_EIP(current); info->si_call_addr = (void __user *)KSTK_EIP(current);
info->si_errno = reason; info->si_errno = reason;
info->si_arch = syscall_get_arch(); info->si_arch = syscall_get_arch(current);
info->si_syscall = syscall; info->si_syscall = syscall;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment