Page MenuHomeFreeBSD

libjail: fix fetching mac.label for multiple jails
ClosedPublic

Authored by kevans on May 27 2026, 6:50 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Sep 9, 9:23 PM
Unknown Object (File)
Tue, Sep 8, 10:54 AM
Unknown Object (File)
Tue, Sep 8, 5:36 AM
Unknown Object (File)
Sun, Sep 6, 11:15 AM
Unknown Object (File)
Sat, Sep 5, 10:00 PM
Unknown Object (File)
Sat, Sep 5, 1:20 PM
Unknown Object (File)
Sat, Sep 5, 11:12 AM
Unknown Object (File)
Sat, Sep 5, 8:55 AM
Subscribers

Details

Summary

When doing a basic jls -n, jls(8) will jailparam_get() the mac.label
for every jail on the system using the same set of jailparams, and thus
the same jp_value. We only init the mac_t the first time, so the first
jail would populate it with ? from /etc/mac.conf and the resulting
jail_get(2) would clobber it with the empty string, then a second jail
would try to pass the empty string to the kernel and fail because it
must have a non-zero length.

Fix it by invoking jps_get() every time. Drop some comments to note
that jps_get() will be invoked with zero || garbage from previous call,
and be sure that we don't leak our previous mac_t. There aren't any
other jps_get implementations at this time, so this shouldn't cause any
unexpected problems.

Reported by: ivy

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jamie added a subscriber: jamie.

The key point is "there aren't any other jps_get implementations." So it's all yours :-)

This revision was not accepted when it landed; it landed in state Needs Review.Wed, Sep 9, 9:25 PM
This revision was automatically updated to reflect the committed changes.