setgid should be called before setuid

If you setuid to a non-zero value first(meaning you're no longer root),
then call setgroups, the effective uid of the process
is now no longer root, meaning that the internal setgid call fails

This also removes the duplicated if loop

Closes-Bug: #1628360
Change-Id: I5d66fccd9ffb07df0c2e4435ec3da767b3b61117
This commit is contained in:
Max Lamprecht 2023-02-13 10:45:19 +01:00
parent c2b6df05e0
commit 33fec1971b
3 changed files with 12 additions and 3 deletions

View File

@ -414,13 +414,11 @@ class Daemon(object):
msg = _('Failed to remove supplemental groups')
LOG.critical(msg)
raise FailedToDropPrivileges(msg)
setgid(self.group)
if self.user is not None:
setuid(self.user)
if self.group is not None:
setgid(self.group)
finally:
capabilities.set_keepcaps(False)

View File

@ -166,6 +166,11 @@ class DaemonTest(base.BaseTestCase):
channel = mock.NonCallableMock()
context = get_fake_context()
manager = mock.Mock()
manager.attach_mock(mock_setuid, "setuid")
manager.attach_mock(mock_setgid, "setgid")
expected_calls = [mock.call.setgid(84), mock.call.setuid(42)]
d = daemon.Daemon(channel, context)
d._drop_privs()
@ -173,6 +178,8 @@ class DaemonTest(base.BaseTestCase):
mock_setgid.assert_called_once_with(84)
mock_setgroups.assert_called_once_with([])
assert manager.mock_calls == expected_calls
self.assertCountEqual(
[mock.call(True), mock.call(False)],
mock_keepcaps.mock_calls)

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Fixed the failing setgid call when overriding both uid and gid to non root