From: Celeste Liu <coelacanthushex@gmail.com>
To: linux-riscv@lists.infradead.org,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Oleg Nesterov <oleg@redhat.com>,
"Dmitry V. Levin" <ldv@strace.io>
Cc: Andrea Bolognani <abologna@redhat.com>,
WANG Xuerui <git@xen0n.name>,
Jiaxun Yang <jiaxun.yang@flygoat.com>,
Huacai Chen <chenhuacai@kernel.org>,
Felix Yan <felixonmars@archlinux.org>,
Ruizhe Pan <c141028@gmail.com>,
Shiqi Zhang <shiqi@isrc.iscas.ac.cn>, Guo Ren <guoren@kernel.org>,
Yao Zi <ziyao@disroot.org>, Yangyu Chen <cyy@cyyself.name>,
Han Gao <gaohan@iscas.ac.cn>,
linux-kernel@vger.kernel.org, rsworktech@outlook.com
Subject: Re: [RFC] riscv/entry: issue about a0/orig_a0 register and ENOSYS
Date: Tue, 17 Sep 2024 13:59:23 +0800 [thread overview]
Message-ID: <84ae492a-1995-4fa1-9d3c-78c5bbf9ff71@gmail.com> (raw)
In-Reply-To: <59505464-c84a-403d-972f-d4b2055eeaac@gmail.com>
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/
>
next prev parent reply other threads:[~2024-09-17 5:59 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-17 4:09 [RFC] riscv/entry: issue about a0/orig_a0 register and ENOSYS Celeste Liu
2024-09-17 5:59 ` Celeste Liu [this message]
2024-09-17 12:51 ` Eugene Syromiatnikov
2024-10-16 12:00 ` Alexandre Ghiti
2024-10-16 12:23 ` Celeste Liu
2024-10-16 12:56 ` Alexandre Ghiti
2024-10-16 13:07 ` Celeste Liu
2024-10-16 17:56 ` Celeste Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=84ae492a-1995-4fa1-9d3c-78c5bbf9ff71@gmail.com \
--to=coelacanthushex@gmail.com \
--cc=abologna@redhat.com \
--cc=aou@eecs.berkeley.edu \
--cc=c141028@gmail.com \
--cc=chenhuacai@kernel.org \
--cc=cyy@cyyself.name \
--cc=felixonmars@archlinux.org \
--cc=gaohan@iscas.ac.cn \
--cc=git@xen0n.name \
--cc=guoren@kernel.org \
--cc=jiaxun.yang@flygoat.com \
--cc=ldv@strace.io \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=oleg@redhat.com \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=rsworktech@outlook.com \
--cc=shiqi@isrc.iscas.ac.cn \
--cc=ziyao@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox