Re: [PATCH 0/4] arm64: Make Aarch32 compatibility enablement optional at boot

From: Andrea della Porta
Date: Thu Oct 19 2023 - 08:34:26 EST


On 13:52 Wed 18 Oct , Mark Rutland wrote:
> On Wed, Oct 18, 2023 at 01:13:18PM +0200, Andrea della Porta wrote:
> > Aarch32 compatibility mode is enabled at compile time through
> > CONFIG_COMPAT Kconfig option. This patchset lets 32-bit support
> > (for both processes and syscalls) be enabled at boot time using
> > a kernel parameter. Also, it provides a mean for distributions
> > to set their own default without sacrificing compatibility support,
> > that is users can override default behaviour through the kernel
> > parameter.
>
> Can you elaborate on *why* people want such a policy?
>

Formerly, the reason was to reduce kernel attack surface by excluding
compat syscall, wherever applicable. Much less important but still a point,
I would also say this could be a good chance to get rid of somewhat old
and stale 32-bit libraries and programs, but this is of course debatable.

> > *** Notes about syscall management ***
> > VBAR_EL1 register, which holds the exception table address,
> > is setup very early in the boot process, before parse_early_param().
> > This means that it's not possible to access boot parameter before
> > setting the register. Also, setting the aforementioned register
> > for secondary cpus is done later in the boot flow.
> > Several ways to work around this has been considered, among which:
> >
> > * resetting VBAR_EL1 to point to one of two vector tables (the
> > former with 32-bit exceptions handler enabled and the latter
> > pointing to unhandled stub, just as if CONFIG_COMPAT is enabled)
> > depending on the proposed boot parameter. This has the disadvantage
> > to produce a somewhat messy patchset involving several lines,
> > has higher cognitive load since there are at least three places
> > where the register is getting changed (not near to each other),
> > and have implications on other code segments (namely kpti, kvm
> > and vdso), requiring special care.
> >
> > * patching the vector table contents once the early param is available.
> > This has most of the implications of the previous option
> > (except maybe not impacting other code segments), plus it sounds
> > a little 'hackish'.
> >
> > The chosen approach involves conditional executing 32-bit syscalls
> > depending on the parameter value.
>
> Why does the compat syscall path need to do anything?

I probably didn't catch your point here, compat syscall does not need to do
anything and they do not (just like they works right now with CONFIG_COMPAT
alone), except for the conditional instruction that excludes them at runtime.
Of course this conditional *is* doing something and somewhat redundant if
compat is disabled, but in this scenario I think it's unavoidable.

>
> On arm64 it's not possible to issue compat syscalls from a native 64-bit task.
> If you prevent the loading of AArch32 binaries, none of the compat syscalls
> will be reachable at all.
>
> That's the proper way to implement this, and we already have logic for that as
> part of the mismatched AArch32 support.
>
> > This of course results in a little performance loss, but has the following
> > advantages:
>
> A performance loss for what relative to what?

of a compat syscall as it is now enabling CONFIG_COMPAT vs the patched
syscall handlers that need a further conditional instruction to check
whether comapt is enabled or not.

>
> How much of a performance loss?

I did not take measurement yet since it was just a qualitative consideration
more than a quantitative one, also considering that chances are that it would
affect just very little population. The conditional instruction time taken
to execute is reasonably near to negligible if compared to any syscall execution.