Page MenuHomeFreeBSD

tests: Switch sys/kern/sysctl_security_jail_children to execenv=jail
ClosedPublic

Authored by igoro on Mon, Oct 14, 1:43 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Nov 4, 8:49 AM
Unknown Object (File)
Mon, Nov 4, 3:03 AM
Unknown Object (File)
Mon, Nov 4, 2:58 AM
Unknown Object (File)
Wed, Oct 30, 5:17 AM
Unknown Object (File)
Wed, Oct 30, 4:17 AM
Unknown Object (File)
Tue, Oct 22, 10:43 AM
Unknown Object (File)
Sun, Oct 20, 12:59 PM
Subscribers

Details

Summary
Kyua skips tests based on the jail execution environment if a system is
built WITHOUT_JAIL. Thus, the test case does not need to handle it.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 60073
Build 56957: arc lint + arc unit

Event Timeline

igoro requested review of this revision.Mon, Oct 14, 1:43 PM

@olivier , I remember this test was like a stumbling block for you in the past. I hope this patch does not impact your workflow. It's already based on jail usage and it seems logical to make it being jailed to avoid adding another exclusive test and not to do manual check & skip for the jail feature.

More patches like this may appear in the future with migration of jail-based tests to execenv=jail.

Why exactly did this test need to be run in exclusive mode before? Some comments would be more useful.

I wonder if it's possible to select the execenv in the test header, rather than having it in the makefile? Here it seems a bit cleaner if we can keep all of the test metadata in one file.

tests/sys/kern/sysctl_security_jail_children.sh
41

Isn't this check still needed? The test uses jail(8).

Why exactly did this test need to be run in exclusive mode before? Some comments would be more useful.

Thanks for raising this. It seems I made it exclusive due to it counts number of jails and it will easily fail if another test is spawning jails in parallel, because of they share the same "origin" parent jail (the name from this test), which is the prison0 typically. This reasoning is kind of documented, but it's not very explicit and is within the test code, actually it covers another aspect -- that it still can fail if something else spawns jails during the test run. This is really a good idea to make it explicit and provide the comment along with the metadata property itself.

It's expected to be truly isolated if that "origin" parent jail is tests's personal temporary jail, which can be provided by execenv=jail.

I wonder if it's possible to select the execenv in the test header, rather than having it in the makefile? Here it seems a bit cleaner if we can keep all of the test metadata in one file.

Indeed. And it will be inlaid with the explicit explanation why.

tests/sys/kern/sysctl_security_jail_children.sh
41

The execenv=jail feature works such way that a test case will be skipped with the respective message if the OS instance is built WITHOUT_JAIL. Thus, we already have a mechanism for this and a test case based on execenv=jail does not need to handle it manually.

igoro marked an inline comment as done.

Move metadata from Kyuafile to the test itself

Now it looks like it does not require an extra comment, it runs in a jail to isolate from others and that's it. What do you think?

This looks ok to me. Approved.

In the commit log message, please explain why we're removing the test -s jail check, as it's not very obvious.

This revision is now accepted and ready to land.Thu, Oct 17, 3:05 PM
This revision now requires review to proceed.Fri, Oct 18, 7:17 PM
This revision is now accepted and ready to land.Sat, Oct 19, 12:48 PM