vm: enable session keyrings in both guest kernels - #36
Open
zbarsky-openai wants to merge 1 commit into
Open
zbarsky-openai wants to merge 1 commit into
zbarsky-openai wants to merge 1 commit into
Conversation
A sandbox test executed inside actiond starts its bundled minijail binary, but the guest kernel does not implement the key management system calls: ```text libminijail[10]: keyctl(KEYCTL_JOIN_SESSION_KEYRING) failed: Function not implemented libminijail[9]: child process 10 received signal 6 ``` Enable Linux key retention support in both guest kernel configurations. Minijail's existing `-w` option can then create its isolated anonymous session keyring without requiring any additional runtime packages. The exact failure was reproduced by a real remote execution of `//project/oai_sandbox:pytest -k test_seccomp_default_action`, after enabling Landlock and providing the consumer's source-built `libcap.so.2`. Both independent fragments were resolved through the repository's actual Linux 6.18.2 Kconfig parser in `allnoconfig` mode, verifying `CONFIG_KEYS=y` and its automatically selected `CONFIG_ASSOCIATIVE_ARRAY=y` on ARM64 and x86_64.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A sandbox test executed inside actiond starts its bundled minijail binary,
but the guest kernel does not implement the key management system calls:
Enable Linux key retention support in both guest kernel configurations.
Minijail's existing
-woption can then create its isolated anonymous sessionkeyring without requiring any additional runtime packages.
The exact failure was reproduced by a real remote execution of
//project/oai_sandbox:pytest -k test_seccomp_default_action, after enablingLandlock and providing the consumer's source-built
libcap.so.2.Both independent fragments were resolved through the repository's actual Linux
6.18.2 Kconfig parser in
allnoconfigmode, verifyingCONFIG_KEYS=yand itsautomatically selected
CONFIG_ASSOCIATIVE_ARRAY=yon ARM64 and x86_64.