2020-10-09 19:57:52

by YiFei Zhu

[permalink] [raw]
Subject: Re: [PATCH v4 seccomp 3/5] x86: Enable seccomp architecture tracking

On Fri, Oct 9, 2020 at 12:25 PM Andy Lutomirski <[email protected]> wrote:
> Is the idea that any syscall that's out of range for this (e.g. all of
> the x32 syscalls) is unoptimized? I'm okay with this, but I think it
> could use a comment.

Yes, any syscall number that is out of range is unoptimized. Where do
you think I should put a comment? seccomp_cache_check_allow_bitmap
above `if (unlikely(syscall_nr < 0 || syscall_nr >= bitmap_size))`,
with something like "any syscall number out of range is unoptimized"?

YiFei Zhu


2020-10-10 04:15:22

by Andy Lutomirski

[permalink] [raw]
Subject: Re: [PATCH v4 seccomp 3/5] x86: Enable seccomp architecture tracking

On Fri, Oct 9, 2020 at 11:32 AM YiFei Zhu <[email protected]> wrote:
>
> On Fri, Oct 9, 2020 at 12:25 PM Andy Lutomirski <[email protected]> wrote:
> > Is the idea that any syscall that's out of range for this (e.g. all of
> > the x32 syscalls) is unoptimized? I'm okay with this, but I think it
> > could use a comment.
>
> Yes, any syscall number that is out of range is unoptimized. Where do
> you think I should put a comment? seccomp_cache_check_allow_bitmap
> above `if (unlikely(syscall_nr < 0 || syscall_nr >= bitmap_size))`,
> with something like "any syscall number out of range is unoptimized"?
>

I was imagining a comment near the new macros explaining that this is
the range of syscalls that seccomp will optimize, that behavior is
still correct (albeit slower) for out of range syscalls, and that x32
is intentionally not optimized.

This avoids people like future me reading this code, not remembering
the context, and thinking it looks buggy.