lkml.org 
[lkml]   [2020]   [Jul]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [RFC PATCH for 5.8 3/4] rseq: Introduce RSEQ_FLAG_RELIABLE_CPU_ID
    ----- On Jul 9, 2020, at 8:49 AM, Christian Brauner christian.brauner@ubuntu.com wrote:

    > On Wed, Jul 08, 2020 at 01:34:48PM -0400, Mathieu Desnoyers wrote:
    >> ----- On Jul 8, 2020, at 12:22 PM, Christian Brauner
    >> christian.brauner@ubuntu.com wrote:
    >> [...]
    >> > I've been following this a little bit. The kernel version itself doesn't
    >> > really mean anything and the kernel version is imho not at all
    >> > interesting to userspace applications. Especially for cross-distro
    >> > programs. We can't go around and ask Red Hat, SUSE, Ubuntu, Archlinux,
    >> > openSUSE and god knows who what other distro what their fixed kernel
    >> > version is. That's not feasible at all and not how must programs do it.
    >> > Sure, a lot of programs name a minimal kernel version they require but
    >> > realistically we can't keep bumping it all the time. So the best
    >> > strategy for userspace imho has been to introduce a re-versioned flag or
    >> > enum that indicates the fixed behavior.
    >> >
    >> > So I would suggest to just introduce
    >> > RSEQ_FLAG_REGISTER_2 = (1 << 2),
    >> > that's how these things are usually done (Netlink etc.). So not
    >> > introducing a fix bit or whatever but simply reversion your flag/enum.
    >> > We already deal with this today.
    >>
    >> Because rseq is effectively a per-thread resource shared across application
    >> and libraries, it is not practical to merge the notion of version with the
    >> registration. Typically __rseq_abi is registered by libc, and can be used
    >> by the application and by many libraries. Early adopter libraries and
    >> applications (e.g. librseq, tcmalloc) can also choose to handle registration
    >> if it's not already done by libc.
    >
    > I'm probably missing the elephant in the room but I was briefly looking
    > at github.com/compudj/librseq and it seems to me that the registration
    > you're talking about is:
    >
    > extern __thread struct rseq __rseq_abi;
    > extern int __rseq_handled;

    Note that __rseq_handled has now vanished, adapting to glibc's ABI. I just
    updated librseq's header accordingly.

    >
    > and it's done in int rseq_register_current_thread(void) afaict and
    > currently registration is done with flags set to 0.

    Correct, however that registration will become a no-op when linked against a
    glibc 2.32+, because the glibc will already have handled the registration
    at thread creation.

    >
    > What is the problem with either adding a - I don't know -
    > RSEG_FLAG_REGISTER/RSEQ_RELIABLE_CPU_FIELD flag that is also recorded in
    > __rseq_abi.flags. If the kernel doesn't support the flag it will fail
    > registration with EINVAL. So the registering program can detect it. If a
    > caller needs to know whether another thread uses the new flag it can
    > query __rseq_abi.flags. Some form of coordination must be possible in
    > userspace otherwise you'll have trouble with any new feature you add. I
    > general, I don't see how this is different from adding a new feature to
    > rseq. It should be the same principle.

    The problem with "extending" struct rseq is that it becomes complex
    because it is shared between libraries and application. Let's suppose
    the library doing the rseq registration does the scheme you describe:
    queries the kernel for features, and stores them in the __rseq_abi.flags.
    We end up with the following upgrade transition headhaches for an
    application using __rseq_abi:

    Kernel | glibc | librseq | __rseq_abi registration owner
    ----------------------------------------------------------------------
    4.18 | 2.31 | no | application (reliable cpu_id = false)
    4.18 | 2.31 | yes | librseq (reliable cpu_id = false)
    5.8 | 2.31 | yes | librseq (reliable cpu_id = true)
    5.8 | 2.32 | yes | glibc (reliable cpu_id = false)
    5.8 | 2.33+ | yes | glibc (reliable cpu_id = true)

    This kind of transition regressing feature-wise when upgrading a glibc
    can be confusing for users.

    One possibility would be to have the kernel store the "reliable cpu_id"
    flag directly into a new __rseq_abi.kernel_flags (because __rseq_abi.flags
    is documented as only read by the kernel). This would remove the registration
    owner from the upgrade scenarios. But what would we gain by exposing this
    flag within struct rseq ? The only real reason for doing so over using an
    explicit system call is typically speed, and querying the kernel for a
    feature does not need to be done often, so this is why I originally favored
    exposing this information through a new system call flag without changing
    the content of struct rseq_cs.

    One additional thing to keep in mind: the application can itself choose
    to define the __rseq_abi TLS, which AFAIU (please let me know if I am
    wrong) would take precedence over glibc's copy. So extending the
    size of struct rseq seems rather tricky because the application may
    provide a smaller __rseq_abi, even if both the kernel and glibc agree
    on a larger size.

    >
    > I also don't understand the "not practical to merge the notion of
    > version with the registration". I'm not sure what that means to be
    > honest. :)

    The notion of "version" here would be to replace the "RELIABLE_CPU_FIELD"
    flag I proposed with a steadily-increasing "fix" version instead.

    For both approaches, we could either pass them as parameters with rseq
    registration, and make rseq registration success conditional on the
    kernel implementing those feature/fix-version, or validate the flag/version
    separately from registration.

    If this is done on registration, it means glibc will eventually have to
    handle this. This prevents user libraries with specific needs to query
    whether their features are available. Doing the feature/version validation
    separately from registration allows each user library to make its own
    queries and take advantage of new kernel features before glibc is
    upgraded to be made aware of them.

    > But just thinking about adding a new feature to rseq. Then you're in the
    > same spot, I think. When you register a bumped rseq - because you added
    > a new flag or whatever - you register a new version one way or the other
    > since a new feature - imho - is always a version bump. In fact, you
    > could think of your "reliable cpu" as a new feature not a bug. ;)

    Indeed.

    > Also, you seem to directly version struct rseq_cs already through the
    > "version" member. So even if you are against the new flag I wouldn't
    > know what would stop you from directly versioning struct rseq itself.

    struct rseq needs to be shared between application and libraries, with
    issues about what to do if size changes when we have an application
    defining a small struct rseq (taking precedence over glibc's), and glibc
    agreeing with the kernel on a larger structure. So there is little hope
    in changing that layout.

    The case of struct rseq_cs is simpler: it is only used as interface between
    a specific library/application user and the kernel, which allows us to
    version the structure and create new layouts as needed.

    >
    > And it's not that we don't version syscalls. We're doing it in multiple
    > ways to be honest, syscalls with a flag argument that reject unknown
    > flags are bumped in their version every time you add a new flag that
    > they accept. We don't spell this out but this is effectively what it is.
    > Think of it as a minor version bump. Extensible syscalls are versioned
    > by size and when their struct grows are bumped in their (minor) version.
    > In fact extensible syscalls with flags argument embedded in the struct
    > can be version bumped in two ways: growing a new flag argument or
    > growing a new struct member.

    The issue with struct rseq extensibility is not so much ABI between kernel
    and user-space, but rather ABI between userspace libraries/application users.

    >
    >>
    >> For instance, it is acceptable for glibc to register rseq for all threads,
    >> even in the presence of the cpu_id field inaccuracy, for use by the
    >> sched_getcpu(3) implementation. However, users of rseq which need to
    >> implement critical sections performing per-cpu data updates may want
    >> to know whether the cpu_id field is reliable to ensure they do not crash
    >> the process due to per-cpu data corruption.
    >>
    >> This led me to consider exposing a feature-specific flag which can be
    >> queried by specific users to know whether rseq has specific set of correct
    >> behaviors implemented.
    >>
    >> > (Also, as a side-note. I see that you're passing struct rseq *rseq with
    >> > a length argument but you are not versioning by size. Is that
    >> > intentional? That basically somewhat locks you to the current struct
    >> > rseq layout and means users might run into problems when you extend
    >> > struct rseq in the future as they can't pass the new struct down to
    >> > older kernels. The way we deal with this is now - rseq might preceed
    >> > this - is copy_struct_from_user() (for example in sched_{get,set}attr(),
    >> > openat2(), bpf(), clone3(), etc.). Maybe you want to switch to that to
    >> > keep rseq extensible? Users can detect the new rseq version by just
    >> > passing a larger struct down to the kernel with the extra bytes set to 0
    >> > and if rseq doesn't complain they know they're dealing with an rseq that
    >> > knows larger struct sizes. Might be worth it if you have any reason to
    >> > belive that struct rseq might need to grow.)
    >>
    >> In the initial iterations of the rseq patch set, we initially had the rseq_len
    >> argument hoping we would eventually be able to extend struct rseq. However,
    >> it was finally decided against making it extensible, so the rseq ABI merged
    >> into the Linux kernel with a fixed-size.
    >>
    >> One of the key reasons for this is explained in
    >> commit 83b0b15bcb0f ("rseq: Remove superfluous rseq_len from task_struct")
    >>
    >> The rseq system call, when invoked with flags of "0" or
    >> "RSEQ_FLAG_UNREGISTER" values, expects the rseq_len parameter to
    >> be equal to sizeof(struct rseq), which is fixed-size and fixed-layout,
    >> specified in uapi linux/rseq.h.
    >>
    >> Expecting a fixed size for rseq_len is a design choice that ensures
    >> multiple libraries and application defining __rseq_abi in the same
    >> process agree on its exact size.
    >>
    >> The issue here is caused by the fact that the __rseq_abi variable is
    >> shared across application/libraries for a given thread. So it's not
    >> enough to agree between kernel and user-space on the extensibility
    >> scheme, but we'd also have to find a way for all users within a process
    >> to agree on the layout.
    >
    > But you're in the same boat if you add any new feature, no? In your
    > model, wouldn't you need all users to agree on the feature set as well?
    > Not just the struct rseq size. If that's the case then rseq would be
    > unextendable (for now).

    As a consequence of this, my current approach to add a "node_id" field to rseq
    (in a prototype patch) is far from ideal: it defines another TLS symbol, e.g.
    __rseq_abi2, with an extended layout, and registers it with new rseq flags.

    I would really like to be able to extend struct rseq, but because of ABI
    compatibility required between user-space libraries/applications, it seems
    rather tricky to do so.

    > But specifically about the size-versioning part. Well, one way to solve
    > this - imho - would be to add a output size parameter to struct rseq and
    > introduce a little more vetting than we have right now.
    > So the kernel is what ultimately registers struct rseq iiuc. If there
    > were a size output parameter the kernel could set the size of the struct
    > it knows about before registering it.
    > So a caller passing down a larger struct with e.g. a new field set to a
    > non-zero value would get an error from the kernel and the size of the
    > supported struct. The caller can then adjust and simply zero out the
    > unsupported field and retry. Other callers in userspace can query the
    > size and find out what size of struct is registered. If it's larger than
    > what they know about they can infer they are on a newer kernel with new
    > features but they can simply ignore the unknown fields. If it's smaller
    > than they know what fields to ignore.

    How would that work in the case of an application defining its own copy of
    struct rseq __rseq_abi TLS with sizeof(struct rseq) == 32, and then upgrading
    its glibc to a new glibc which implements a larger structure, which agrees with
    the kernel on that larger layout ?

    >
    > I hope I'm not derailing this discussion. I'm just trying to show that
    > there's some hope.
    > In short, imho, I think adding a flag indicating the new "reliable cpu"
    > feature is probably the best way to go. Think of it not as the kernel
    > indicating the absence of a bug but as the presence of a feature. :)

    Indeed, the "reliable cpu_id" feature is simpler, because it does not require
    any layout change nor size extension whatsoever. But I think it's good that
    we discuss those extensibility challenges right away, because there are a
    lot of moving pieces involved on the user-space side.

    Thanks,

    Mathieu

    >
    > Thanks!
    > Christian

    --
    Mathieu Desnoyers
    EfficiOS Inc.
    http://www.efficios.com

    \
     
     \ /
      Last update: 2020-07-09 17:17    [W:4.049 / U:0.192 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site