linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Peter Collingbourne <pcc@google.com>
To: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>,
	Vincenzo Frascino <vincenzo.frascino@arm.com>,
	 Evgenii Stepanov <eugenis@google.com>,
	Linux ARM <linux-arm-kernel@lists.infradead.org>,
	 Szabolcs Nagy <szabolcs.nagy@arm.com>
Subject: Re: [PATCH v5] arm64: mte: allow async MTE to be upgraded to sync on a per-CPU basis
Date: Tue, 22 Jun 2021 11:37:50 -0700	[thread overview]
Message-ID: <CAMn1gO5WRYPYgiv0KP+Qdi6no5HCao0bJ5F6WcPGthpwzgh1cA@mail.gmail.com> (raw)
In-Reply-To: <20210621185036.GD11552@arm.com>

On Mon, Jun 21, 2021 at 11:50 AM Catalin Marinas
<catalin.marinas@arm.com> wrote:
>
> On Mon, Jun 21, 2021 at 06:39:02PM +0100, Will Deacon wrote:
> > On Mon, Jun 21, 2021 at 04:18:59PM +0100, Catalin Marinas wrote:
> > > On Mon, Jun 21, 2021 at 01:39:37PM +0100, Will Deacon wrote:
> > > > On Fri, Jun 18, 2021 at 04:09:55PM +0100, Catalin Marinas wrote:
> > > > > On Thu, Jun 17, 2021 at 10:58:30PM +0100, Will Deacon wrote:
> > > > > > On Tue, Jun 15, 2021 at 01:38:07PM -0700, Peter Collingbourne wrote:
> > > > > > > +Upgrading to stricter tag checking modes
> > > > > > > +----------------------------------------
> > > > > > > +
> > > > > > > +On some CPUs the performance of MTE in stricter tag checking modes
> > > > > > > +is similar to that of less strict tag checking modes. This makes it
> > > > > > > +worthwhile to enable stricter checks on those CPUs when a less strict
> > > > > > > +checking mode is requested, in order to gain the error detection
> > > > > > > +benefits of the stricter checks without the performance downsides. To
> > > > > > > +opt into upgrading to a stricter checking mode on those CPUs, the user
> > > > > > > +can set the ``PR_MTE_DYNAMIC_TCF`` flag bit in the ``flags`` argument
> > > > > > > +to the ``prctl(PR_SET_TAGGED_ADDR_CTRL, flags, 0, 0, 0)`` system call.
> > > > > > > +
> > > > > > > +This feature is currently only supported for upgrading from
> > > > > > > +asynchronous mode. To configure a CPU to upgrade from asynchronous mode
> > > > > > > +to synchronous mode, a privileged user may write the value ``1`` to
> > > > > > > +``/sys/devices/system/cpu/cpu<N>/mte_upgrade_async``, and to disable
> > > > > > > +upgrading they may write the value ``0``. By default the feature is
> > > > > > > +disabled on all CPUs.
> > > > > > > +
> > > > > > >  Initial process state
> > > > > > >  ---------------------
> > > > > > >
> > > > > > > @@ -128,6 +147,7 @@ On ``execve()``, the new process has the following configuration:
> > > > > > >  - ``PR_TAGGED_ADDR_ENABLE`` set to 0 (disabled)
> > > > > > >  - Tag checking mode set to ``PR_MTE_TCF_NONE``
> > > > > > >  - ``PR_MTE_TAG_MASK`` set to 0 (all tags excluded)
> > > > > > > +- ``PR_MTE_DYNAMIC_TCF`` set to 0 (disabled)
> > > > > > >  - ``PSTATE.TCO`` set to 0
> > > > > > >  - ``PROT_MTE`` not set on any of the initial memory maps
> > > > > >
> > > > > > Something about this doesn't sit right with me, as we're mixing a per-task
> > > > > > interface with a per-cpu interface for selecting async/sync MTE and the
> > > > > > priorities are somewhat confusing.
> > > > > >
> > > > > > I think a better interface would be for the sysfs entry for each CPU to
> > > > > > allow selection between:
> > > > > >
> > > > > >       task  : Honour the prctl() (current behaviour)
> > > > > >       async : Force async for tasks using MTE
> > > > > >       sync  : Force sync for tasks using MTE
> > > > > >       none  : MTE disabled
> > > > > >
> > > > > > i.e. the per-cpu setting is an override.
> > > > >
> > > > > As Peter mentioned, forcing it is a potential ABI break, so such feature
> > > > > would need backporting to 5.10. There's also a minor use-case that came
> > > > > up in the early discussions - an app may want to use async mode only for
> > > > > reporting but forcing it to sync would break such application (since
> > > > > sync mode prevents the faulty access from taking place).
> > > >
> > > > Why is it an ABI break? The default will be "task" which behaves exactly as
> > > > things do today. If the policy is explicitly changed by userspace, then you
> > > > get new behaviour. I don't really see why this is different to e.g. writing
> > > > /proc/sys/vm/mmap_min_addr and having some applications fail because they
> > > > rely on the default setting.
> > >
> > > That's slightly different from mmap_min_addr, it depends on the user
> > > expectations. Most applications have no interest in a MAP_FIXED of
> > > address 0, so they wouldn't notice a non-zero setting.
> >
> > Not sure; if I set mmap_min_addr to 1GB then applications start to break
> > (32-bit applications SEGV instantly). So I think it's pretty similar.
>
> You don't expect applications to be tolerant to randomly high
> mmap_min_addr, hence admins don't set this to more than a page. However,
> for the proposed TCF sysfs interface, we do expect applications to cope
> with any forced value, either by documenting that the PR_* settings are
> useless or allowing an application to opt in to being forced. Either
> way, it's a significant difference between mmap_min_addr and the
> proposed MTE control.
>
> If you imply that people shouldn't use the new TCF sysfs controls
> because it may break applications, that's fine as well, we document it
> as a dangerous feature, only to be used if you have control of the
> user-space deployment (Android is an ideal target here).
>
> > > The semantics of MTE TCF none/sync/async are different and an
> > > application may have different expectations. For example, it may not
> > > want any tag checking, just being able to read/write tags. Or it may
> > > want just some lightweight monitoring with a simple restart after an
> > > async signal (sync requires either emulating the access or setting the
> > > PSTATE.TCO bit).
> >
> > I think this is an argument against doing this at all. Realistically,
> > if PR_MTE_DYNAMIC_TCF is the "go fast" mode, then people will set it
> > blindly and applications will just be expected to deal with a combination
> > of sync and async faults; I really don't think the flag changes anything in
> > that regards. It's not a buy-in from the application, given that the visible
> > behaviour is unknown and dynamic.
>
> Most applications won't care about the mode, they just want to crash
> when some incorrect access happens. But not having an opt-in (or
> opt-out, it works either way) a minority of other use-cases are no
> longer possible. Apps can't even rely on having the same TCF for the
> lifetime of a thread.
>
> > > Forcing the TCF via sysfs may be seen as a user problem but that's
> > > pretty much rendering the application choice of the tag check mode
> > > useless since an admin could override it.
> >
> > I think the application choice _is_ useless if we decide to offer a
> > mechanism where it is set on a per-cpu basis instead.
>
> It depends on how we implement this mechanism. Do we want to preserve
> the application choice via an opt-in/out or we remove such option
> entirely? That's a significant ABI change IMO.
>
> Just stating that setting the sysfs to anything other than "task" breaks
> applications looks like discouraging people from using it. Maybe we can
> even add an EXPERT dependency.
>
> > > > > So I'd rather leave it up to the user task to decide whether its choice
> > > > > can be changed. Peter introduced a new PR_MTE_DYNAMIC_TCF for this
> > > > > purpose (or a different name if you have a better suggestion).
> > > >
> > > > I don't see how PR_MTE_DYNAMIC_TCF is useful to userspace, really. It's an
> > > > extra bit of logic to go and set it, but then what? It doesn't know which
> > > > behaviour it's getting, so it just feels like an extra hoop to jump through
> > > > without actually adding anything useful.
> > >
> > > Well, without this additional bit, an application can't rely on the mode
> > > it requested. With an additional forced tagged address enable, we might
> > > as well remove the prctl() altogether (well, that wouldn't be a bad
> > > thing).
> >
> > I think the prctl() is still useful to say whether an application wants MTE
> > or not, but I'm inclined to agree that sync vs async shouldn't be part of
> > the prctl() call.
>
> That means that if the user choice was PR_MTE_TCF_NONE, it won't be
> forced to any of the sync vs async, which makes sense if we go this
> route. The async/sync (and a new asymmetric mode in v8.7) could become
> just a PR_MTE_TCF_CHECKED. However, if glibc upstreamed the MTE support
> already, it will be harder to remove the PR_* controls already defined
> (well, we can still keep the sync/async as a hint)

For Android I think we will always want there to be a way to select
the "minimum" mode. This is because sync mode provides slightly more
security than async, as well as being relied on for deterministic
error reporting. If we just have PR_MTE_TCF_CHECKED and sync/async is
taken as a hint, it means that we can't rely on the processor to be in
sync mode when it takes a tag check fault, so we won't necessarily see
the error report or detect the fault early enough.

> > > Given that there are no real users of MTE yet, we have some choice of
> > > tweaking the ABI, backporting to 5.10. The question: is the expectation
> > > that the sysfs forcing of TCF is limited to deployments where the user
> > > space is tightly controlled (e.g. Android with most apps starting from
> > > zygote) or we allow it to become more of a general hint of what's the
> > > fastest check on a CPU? If the former, I'm fine with forcing without any
> > > additional bit, though I'd still prefer the opt-in. For the latter, I'd
> > > like some wider discussion with non-Android folk on what they expect
> > > from the TCF setting. Otherwise simply using PROT_MTE would may lead to
> > > tag check faults.
> >
> > I don't think there's anything Android-specific here. The problem being
> > solved concerns big/little SoCs with MTE, and I think it's up to the
> > distribution how the sysfs stuff is used.
>
> But distros don't control what applications are running, so most likely
> they would disable the sysfs control entirely. At that point, the
> feature becomes primarily an Android play.
>
> Anyway, I'm not dead against forcing of the TCF mode regardless of the
> user choice but I'd like to ensure that we don't miss other use-cases or
> that we don't make the sysfs control an expert-only feature.
>
> Adding Szabolcs to get a view from the glibc perspective.

Given these diverging opinions my view is that we should choose
whichever option leaves our options open for the future. For example,
imagine that we make the ABI change now such that upgrades may happen
for all applications and we don't have PR_MTE_DYNAMIC_TCF. This means
that applications no longer have a guarantee of their TCF mode which
may preclude some use cases (if we add an opt out later, applications
will be affected when running on the kernel versions between when we
changed the ABI and when we added the opt out). On the other hand, if
we introduce PR_MTE_DYNAMIC_TCF, we can always make the ABI change
later and start ignoring the PR_MTE_DYNAMIC_TCF flag at that point.

Maybe the best compromise would be to change the ABI and at the same
time add the opt out, but I don't have a strong opinion.

Peter

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2021-06-22 18:39 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-15 20:38 [PATCH v5] arm64: mte: allow async MTE to be upgraded to sync on a per-CPU basis Peter Collingbourne
2021-06-17 21:58 ` Will Deacon
2021-06-17 22:13   ` Peter Collingbourne
2021-06-18 15:09   ` Catalin Marinas
2021-06-19  0:45     ` Peter Collingbourne
2021-06-21 12:39     ` Will Deacon
2021-06-21 15:18       ` Catalin Marinas
2021-06-21 17:39         ` Will Deacon
2021-06-21 18:50           ` Catalin Marinas
2021-06-22 18:37             ` Peter Collingbourne [this message]
2021-06-23  8:55               ` Szabolcs Nagy
2021-06-23 17:15                 ` Peter Collingbourne
2021-06-24 16:52                 ` Catalin Marinas
2021-06-25  9:22                   ` Szabolcs Nagy
2021-06-25 12:01                     ` Catalin Marinas
2021-06-25 12:39                       ` Will Deacon
2021-06-25 13:53                         ` Catalin Marinas
2021-06-28 10:14                           ` Will Deacon
2021-06-28 15:20                             ` Catalin Marinas
2021-06-29 10:46                               ` Will Deacon
2021-06-29 13:58                                 ` Szabolcs Nagy
2021-06-29 14:31                                   ` Tejas Belagod
2021-06-29 15:54                                     ` Catalin Marinas
2021-06-29 19:11                                 ` Peter Collingbourne
2021-06-30 15:19                                   ` Catalin Marinas
2021-06-30 23:39                                     ` Peter Collingbourne
2021-07-07 10:30                                       ` Will Deacon
2021-07-07 12:55                                         ` Catalin Marinas
2021-07-07 14:11                                           ` Will Deacon
2021-06-25 14:14                         ` Szabolcs Nagy
2021-06-25 16:21                           ` Tejas Belagod
2021-06-28 10:17                           ` Will Deacon
2021-06-28 17:21                             ` Szabolcs Nagy
2021-06-25 16:52                       ` Peter Collingbourne

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=CAMn1gO5WRYPYgiv0KP+Qdi6no5HCao0bJ5F6WcPGthpwzgh1cA@mail.gmail.com \
    --to=pcc@google.com \
    --cc=catalin.marinas@arm.com \
    --cc=eugenis@google.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=szabolcs.nagy@arm.com \
    --cc=vincenzo.frascino@arm.com \
    --cc=will@kernel.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;
as well as URLs for NNTP newsgroup(s).