Re: [PATCH] x86/entry/ia32: Ensure s32 is sign extended to s64

From: Arnd Bergmann
Date: Mon Sep 27 2021 - 14:22:44 EST


On Mon, Sep 27, 2021 at 6:21 PM Richard Palethorpe <rpalethorpe@xxxxxxxx> wrote:
>
> Presently ia32 registers stored in ptregs are unconditionally cast to
> unsigned int by the ia32 stub. They are then cast to long when passed
> to __se_sys*, but will not be sign extended.
>
> This takes the sign of the syscall argument into account in the ia32
> stub. It still casts to unsigned int to avoid implementation specific
> behavior. However then casts to int or unsigned int as necessary. So
> that the following cast to long sign extends the value.
>
> This fixes the io_pgetevents02 LTP test when compiled with
> -m32. Presently the systemcall io_pgetevents_time64 unexpectedly
> accepts -1 for the maximum number of events. It doesn't appear other
> systemcalls with signed arguments are effected because they all have
> compat variants defined and wired up. A less general solution is to
> wire up the systemcall:
> https://lore.kernel.org/ltp/20210921130127.24131-1-rpalethorpe@xxxxxxxx/
>
> Fixes: ebeb8c82ffaf ("syscalls/x86: Use 'struct pt_regs' based syscall calling for IA32_EMULATION and x32")
> Signed-off-by: Richard Palethorpe <rpalethorpe@xxxxxxxx>
> Suggested-by: Arnd Bergmann <arnd@xxxxxxxx>

Looks good to me, thanks for following through with this part, and for
checking the other syscalls!

Reviewed-by: Arnd Bergmann <arnd@xxxxxxxx>

I've added this to my randconfig build tree as well, to see if
it causes any unexpected compile-time issues, though I
don't expect any problems here.

There are a few things that I think we should do as a follow-up:

- do the same thing in the generic syscall wrapper, to ensure the
other architectures also do the sign-extension.

- Fix the big-endian architectures (ppc64be, mips64be, sparc, s390
parisc) so they pass the correct signal mask, either using your original
approach, or by reworking the syscall to detect compat syscalls
at runtime, killing off the separate entry point

- Go through the compat syscalls to see if any of them can be
removed once all architectures do sign-extension correctly.

Are you motivated to help out with one or more of these as well?

Arnd