Commit e2bff391 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'core_urgent_for_v5.9_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull syscall tracing fix from Borislav Petkov:
 "Fix the seccomp syscall rewriting so that trace and audit see the
  rewritten syscall number, from Kees Cook"

* tag 'core_urgent_for_v5.9_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  core/entry: Report syscall correctly for trace and audit
parents 1f8ee7e8 b6ec4134
...@@ -60,13 +60,15 @@ static long syscall_trace_enter(struct pt_regs *regs, long syscall, ...@@ -60,13 +60,15 @@ static long syscall_trace_enter(struct pt_regs *regs, long syscall,
return ret; return ret;
} }
/* Either of the above might have changed the syscall number */
syscall = syscall_get_nr(current, regs);
if (unlikely(ti_work & _TIF_SYSCALL_TRACEPOINT)) if (unlikely(ti_work & _TIF_SYSCALL_TRACEPOINT))
trace_sys_enter(regs, syscall); trace_sys_enter(regs, syscall);
syscall_enter_audit(regs, syscall); syscall_enter_audit(regs, syscall);
/* The above might have changed the syscall number */ return ret ? : syscall;
return ret ? : syscall_get_nr(current, regs);
} }
static __always_inline long static __always_inline long
......
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