[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <84ae492a-1995-4fa1-9d3c-78c5bbf9ff71@gmail.com>
Date: Tue, 17 Sep 2024 13:59:23 +0800
From: Celeste Liu <coelacanthushex@...il.com>
To: linux-riscv@...ts.infradead.org, Paul Walmsley
<paul.walmsley@...ive.com>, Palmer Dabbelt <palmer@...belt.com>,
Albert Ou <aou@...s.berkeley.edu>, Oleg Nesterov <oleg@...hat.com>,
"Dmitry V. Levin" <ldv@...ace.io>
Cc: Andrea Bolognani <abologna@...hat.com>, WANG Xuerui <git@...0n.name>,
Jiaxun Yang <jiaxun.yang@...goat.com>, Huacai Chen <chenhuacai@...nel.org>,
Felix Yan <felixonmars@...hlinux.org>, Ruizhe Pan <c141028@...il.com>,
Shiqi Zhang <shiqi@...c.iscas.ac.cn>, Guo Ren <guoren@...nel.org>,
Yao Zi <ziyao@...root.org>, Yangyu Chen <cyy@...self.name>,
Han Gao <gaohan@...as.ac.cn>, linux-kernel@...r.kernel.org,
rsworktech@...look.com
Subject: Re: [RFC] riscv/entry: issue about a0/orig_a0 register and ENOSYS
On 2024-09-17 12:09, Celeste Liu wrote:
> Before PTRACE_GET_SYSCALL_INFO was implemented in v5.3, the only way to
> get syscall arguments was to get user_regs_struct via PTRACE_GETREGSET.
> On some architectures where a register is used as both the first
> argument and the return value and thus will be changed at some stage of
> the syscall process, something like orig_a0 is provided to save the
> original argument register value. But RISC-V doesn't export orig_a0 in
> user_regs_struct (This ABI was designed at e2c0cdfba7f6 ("RISC-V:
> User-facing API").) so userspace application like strace will get the
> right or wrong result depends on the operation order in do_trap_ecall_u()
> function.
>
> This requires we put the ENOSYS process after syscall_enter_from_user_mode()
> or syscall_handler()[1]. Unfortunately, the generic entry API
> syscall_enter_from_user_mode() requires we
>
> * process ENOSYS before syscall_enter_from_user_mode()
> * or only set a0 to ENOSYS when the return value of
> syscall_enter_from_user_mode() != -1
>
> Again, if we choose the latter way to avoid conflict with the first
> issue, we will meet the third problem: strace depends on that kernel
> will return ENOSYS when syscall nr is -1 to implement their syscall
> tampering feature[2].
>
> Actually, we tried the both ways in 52449c17bdd1 ("riscv: entry: set
> a0 = -ENOSYS only when syscall != -1") and 61119394631f ("riscv: entry:
> always initialize regs->a0 to -ENOSYS") before.
It's also impossible to save original syscall number before
syscall_enter_from_user_mode() to use later because some API like ptrace() can
change syscall number in syscall_enter_from_user_mode().
>
> Naturally, there is a solution:
>
> 1. Just add orig_a0 in user_regs_struct and let strace use it as
> loongarch does. So only two problems, which can be resolved without
> conflict, are left here.
>
> The conflicts are the direct result of the limitation of generic entry
> API, so we have another two solutions:
>
> 2. Give up the generic entry API, and switch back to the
> architecture-specific standardalone implementation.
> 3. Redesign the generic entry API: the problem was caused by
> syscall_enter_from_user_mode() using the value -1 (which is unused
> normally) of syscall nr to inform syscall was reject by seccomp/bpf.
The issue of generic entry API is that -1 is invalid syscall number, but it
still contains some information. It's similar to situation of Python's
PyLong_As* API: all bits of return value are used to contains some information.
Since there is no elegant way to implement sum type in C, we can split to into
two value: the return value is just success or reject, and an argument to pass
syscall out.
But from another angle, syscall number is in a7 register, so we can call the
get_syscall_nr() after calling the syscall_enter_from_user_mode() to bypass the
information lost of the return value of the syscall_enter_from_user_mode(). But
in this way, the syscall number in the syscall_enter_from_user_mode() return
value is useless, and we can remove it directly.
>
> In theory, the Solution 1 is best:
>
> * a0 was used for two purposes in ABI, so using two variables to store
> it is natural.
> * Userspace can implement features without depending on the internal
> behavior of the kernel.
>
> Unfortunately, it's difficult to implement based on the current code.
> The RISC-V defined struct pt_regs as below:
>
> struct pt_regs {
> unsigned long epc;
> ...
> unsigned long t6;
> /* Supervisor/Machine CSRs */
> unsigned long status;
> unsigned long badaddr;
> unsigned long cause;
> /* a0 value before the syscall */
> unsigned long orig_a0;
> };
>
> And user_regs_struct needs to be a prefix of struct pt_regs, so if we
> want to include orig_a0 in user_regs_struct, we will need to include
> Supervisor/Machine CSRs as well. It's not a big problem. Since
> struct pt_regs is the internal ABI of the kernel, we can reorder it.
> Unfortunately, struct user_regs_struct is defined as below:
>
> struct user_regs_struct {
> unsigned long pc;
> ...
> unsigned long t6;
> };
>
> It doesn't contain something like reserved[] as padding to leave the
> space to add more registers from struct pt_regs!
> The loongarch do the right thing as below:
>
> struct user_pt_regs {
> /* Main processor registers. */
> unsigned long regs[32];
> ...
> unsigned long reserved[10];
> } __attribute__((aligned(8)));
>
> RISC-V can't include orig_a0 in user_regs_struct without breaking UABI.
>
> Need a discussion to decide to use which solution, or is there any
> other better solution?
>
> [1]: https://github.com/strace/strace/issues/315
> [2]: https://lore.kernel.org/linux-riscv/20240627071422.GA2626@altlinux.org/
>
Powered by blists - more mailing lists