util: Drop any supplementary group before dropping privileges
Commit a951e0b9ef
("conf: Add --runas option, changing to given UID
and GID if started as root") dropped the call to initgroups() that
used to add supplementary groups corresponding to the user we'll
eventually run as -- we don't need those.
However, if the original user belongs to supplementary groups
(usually not the case, if started as root), we don't drop those,
now, and rpmlint says:
passt.x86_64: E: missing-call-to-setgroups-before-setuid /usr/bin/passt
passt.x86_64: E: missing-call-to-setgroups-before-setuid /usr/bin/passt.avx2
Add a call to setgroups() with an empty set, to drop any
supplementary group we might currently have, before changing GID
and UID.
Reported-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
60ffc5b6cb
commit
9672ab8dd0
1 changed files with 1 additions and 1 deletions
2
util.c
2
util.c
|
@ -525,7 +525,7 @@ void check_root(struct ctx *c)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!setgid(c->gid) && !setuid(c->uid))
|
if (!setgroups(0, NULL) && !setgid(c->gid) && !setuid(c->uid))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
fprintf(stderr, "Can't change user/group, exiting");
|
fprintf(stderr, "Can't change user/group, exiting");
|
||||||
|
|
Loading…
Reference in a new issue