Re: [patch 00/18] entry: Consolidate and rework syscall entry handling
From: H. Peter Anvin
Date: Thu Aug 27 2026 - 18:27:48 EST
On 2026-07-07 12:05, Thomas Gleixner wrote:
> Sorry for the long CC list, but this is a treewide change.
>
> Michal recently posted a RFC patch to separate the potential syscall number
> modifications in syscall_enter_user_mode_work() from the information
> whether the syscall should be processed and the return value modified:
>
> https://lore.kernel.org/lkml/CE1qW@xxxxxxxxxxxxxx
>
> The existing logic is:
>
> arch_syscall()
> regs->result = -ENOSYS;
>
> syscallnr = syscall_enter_from_user_mode(regs, syscall);
>
> if (syscallnr != -1L)
> regs->result = invoke_syscall(regs, syscall;
>
> syscall_enter_from_user_mode() invokes ptrace, seccomp and
> tracing/BPF/Probes. All of them can modify the syscall number.
>
> ptrace and seccomp explicitly set the syscall number to -1L to indicate
> that the syscall invocation needs to be skipped and the result has not to
> be modified as it might have been modified by ptrace or seccomp. The
> tracer/BPF/Probes mechanism can modify the syscall number as well and
> relies implicitly on the -1L logic.
>
> This can obviously not be differentiated from a syscall invocation where
> userspace provided -1 as syscall number.
>
> The general agreement of the discussion was that the current mechanism,
> while functionally correct is non-intuitive and something like Michals
> proposal would make that code clearer and easier to handle on the
> architecture side:
>
> arch_syscall()
> regs->result = -ENOSYS;
>
> if (syscall_enter_from_user_mode(regs, &syscall))
> regs->result = invoke_syscall(regs, syscall;
>
> That discussion made me look deeper into the related code and as usual
> there were a lot of other things to discover.
>
> 1) Stack randomization
>
> add_random_kstack_offset() can only be invoked after
> enter_from_user_mode() established proper state as it calls into
> instrumentable code.
>
> PowerPC got that wrong and the other architectures either invoke it
> after enter_from_user_mode() or after syscall_enter_from_user_mode().
>
> The latter is suboptimal as the randomization takes place after all
> the user mode entry work. Aside of that add_random_kstack_offset()
> uses get/put_cpu_var(), which makes it usable in preemptible code, but
> when invoked in the interrupt disabled region that's pointless
> overhead.
>
> 2) As discussed in the above thread just changing the function signature
> of syscall_enter_from_user_mode[_work]() so they take a pointer
> argument for the syscall and then return 0 on success is not really
> intuitive either. Aside of that this breaks the implicit assumption of
> the tracer when setting the syscall number to -1.
>
> 3) The x86 entry code has some historically accumulated oddities
>
> The following series addresses this by:
>
> 1) Providing new [syscall_]enter_from_user_mode() variants, which include
> stack randomization and utilize a new add_random_kstack_offset_irqsoff()
> variant, which avoids the get/put_cpu_var() overhead and converting all
> usage sites over
>
> 2) Picking up Jinjie's seccomp patch from:
>
> https://lore.kernel.org/lkml/20260629130616.642022-2-ruanjinjie@xxxxxxxxxx
>
> and addressing the feedback (renaming the seccomp functions)
>
> 3) Making the ptrace and tracer related functions return a boolean value
> to indicate syscall permission
>
> 4) Addressing the x86 oddities
>
> 5) Converting the tree over to the new scheme
>
> With that all architectures using the generic syscall entry code follow the
> same scheme, apply stack randomization at the correct and earliest possible
> place and skip syscall processing depending on the boolean return value of
> syscall_enter_from_user_mode[_work]().
>
> There should be no functional changes, at least there are none intended.
>
> The resulting text size for the syscall entry code on x8664 is slightly
> smaller than before these changes.
>
> Testing syscall heavy workloads and micro benchmarks shows a small
> performance gain for the general rework, but the last patch, which changes
> the logic to be more understandable has no measurable impact in either
> direction.
>
> The series applies on Linus tree and is also available from git:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tglx/devel.git entry-rework-v1
>
Hi,
It looks like I didn't get a personal Cc: on this one and so I missed it (it
happened just before I found out I would be departing Intel, so I can make the
excuse that I was just a bit distracted.)
This series is a great cleanup, but it did make me concerned on one count: it
ends up making it universal that the syscall number is always stored and
fetched from memory. I'm worried that this may have undesirable effects on
future CPUs which incorporate data speculation, which is probably something
that will happen at some point (this is a general statement, not in any way
related to any former employers of mine.)
As such, I was looking at changing that to *always* keep the system call
number in a register, to allow the CPU to consistently maintain a "chain of
custody" of this value.
This isn't a hard thing to solve in any way: replacing the pointer argument
with a two-element structure return would do the trick. As far as I know,
*all* architectures that support Linux support returning structures with two
register-sized values in registers.
However, before digging into this I would like to hear people's opinions.
-hpa