Page MenuHomeFreeBSD

procfs: Restore printing the effective GID in 'status'
ClosedPublic

Authored by olce on Aug 29 2025, 11:02 PM.
Tags
None
Referenced Files
F168192171: D52257.id161223.diff
Wed, Aug 26, 7:37 PM
F168179382: D52257.id161223.diff
Wed, Aug 26, 5:58 PM
F168112348: D52257.id161223.diff
Wed, Aug 26, 10:57 AM
F168106269: D52257.id.diff
Wed, Aug 26, 10:19 AM
Unknown Object (File)
Tue, Aug 25, 4:38 PM
Unknown Object (File)
Mon, Aug 24, 7:10 PM
Unknown Object (File)
Mon, Aug 24, 5:29 AM
Unknown Object (File)
Mon, Aug 24, 4:32 AM
Subscribers

Details

Summary

Fixes: be1f7435ef218b1d ("kern: start tracking cr_gid outside of cr_groups[]")
Sponsored by: The FreeBSD Foundation

Diff Detail

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

Event Timeline

olce requested review of this revision.Aug 29 2025, 11:02 PM
This revision is now accepted and ready to land.Sep 1 2025, 4:01 PM

Does linprocfs have the same issue? I mean compat/linprocfs/linprocfs.c:1136

In D52257#1194563, @kib wrote:

Does linprocfs have the same issue? I mean compat/linprocfs/linprocfs.c:1136

It doesn't as it already has been printing cr_gid separately, and then the content of cr_groups[].

That also means that before it would output the effective GID twice, but after our changes, the latter will disappear from the "Groups" part if not also a supplementary group. This is actually a "free" bugfix, as Linux does not output the effective GID twice.