Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

seccomp: Allow specification of syscalls as numbers #1102

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Apr 10, 2021

  1. seccomp: Allow specification of syscalls as numbers

    The motivation here is the same as moby/moby#41671, which was closed
    as requiring a spec change (hence this PR). In short, certain applications use high syscall numbers
    (e.g. 1000+) for private communication with an associated ptracer. Since these are not real syscalls,
    there is no corresponding string mapping for them in the runtime. Currently users simply run such
    applications in privileged containers, which is of course the absolute worst option. I would like to be
    able to provide these users a seccomp profile that works, but without being able to specify these
    pseudo-syscalls by number, this is not possible.
    Keno authored Apr 10, 2021
    Configuration menu
    Copy the full SHA
    a19e92e View commit details
    Browse the repository at this point in the history