diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-05-23 22:00:22 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-06-17 09:48:28 +0200 |
commit | 9a797ddc41a59905990c045bc2f6a17f411c1bbb (patch) | |
tree | 22878464f5f869b5028d859d1e5a815c35ec2044 /sysusers.d | |
parent | Merge pull request #19948 from keszybz/set-driver-refactoring (diff) | |
download | systemd-9a797ddc41a59905990c045bc2f6a17f411c1bbb.tar.xz systemd-9a797ddc41a59905990c045bc2f6a17f411c1bbb.zip |
meson: allow "soft-static" allocations for uids and gids in the initrd
The general idea with users and groups created through sysusers is that an
appropriate number is picked when the allocation is made. The number that is
selected will be different on each system based on the order of creation of
users, installed packages, etc. Since system users and groups are not shared
between installations, this generally is not an issue. But it becomes a problem
for initrd: some file systems are shared between the initrd and the host (/run
and /dev are probably the only ones that matter). If the allocations are
different in the host and the initrd, and files survive switch-root, they will
have wrong ownership.
This makes the gids build-time-configurable for all groups and users where
state may survive the switch from initrd to the host.
In particular, all "hardware access" groups are like this: files in /dev will
be owned by them. Eventually the new udev would change ownership, but there
would be a momemnt where the files were owned by the wrong group. The
allocations are "soft-static" in the language of Fedora packaging guidelines:
the uid/gid will be used if possible, but we'll fall back to a different
one. TTY_GID is the exception, because the number is used directly.
Similarly, the possibility to configure "soft-static" uids is added for daemons
which may usefully run in the initramfs: systemd-network (lease information and
interface state is serialized to /run), systemd-resolve (stub files and
interface state), systemd-timesync (/run/systemd/timesync).
Journal files are owned by the group systemd-journal, and acls are granted
for wheel and adm.
systemd-oom and systemd-coredump are excluded from this patch: I assume that
oomd is not useful in the initrd, and coredump leaves no state (it only creates
a pipe in /run?).
The defaults are not changed: if nothing is configured, dynamic allocation will
be used. I looked at a Debian system, and the numbers are all different than
on Fedora.
For Fedora, see the list of uids and gids at https://pagure.io/setup/blob/master/f/uidgid.
In particular, systemd-network and systemd-resolve got soft-static numbers to
make it easy to transition from a non-host-specific initrd to a host system
already a few years back (https://bugzilla.redhat.com/show_bug.cgi?id=1102002).
I also requested static allocations for sgx, input, render in
https://pagure.io/packaging-committee/issue/1078,
https://pagure.io/setup/pull-request/27.
Diffstat (limited to 'sysusers.d')
-rw-r--r-- | sysusers.d/basic.conf.in | 38 | ||||
-rw-r--r-- | sysusers.d/systemd.conf.in | 8 |
2 files changed, 23 insertions, 23 deletions
diff --git a/sysusers.d/basic.conf.in b/sysusers.d/basic.conf.in index 9da0251421..8cc1a7cad2 100644 --- a/sysusers.d/basic.conf.in +++ b/sysusers.d/basic.conf.in @@ -12,28 +12,28 @@ u root 0 "Super User" /root u {{NOBODY_USER_NAME}} 65534 "Nobody" - # Administrator group: can *see* more than normal users -g adm - - - +g adm {{ADM_GID }} - - # Administrator group: can *do* more than normal users -g wheel - - - +g wheel {{WHEEL_GID }} - - -# Access to certain kernel and userspace facilities -g kmem - - - -g tty {{TTY_GID}} - - -g utmp - - - +# Access to shared database of users on the system +g utmp {{UTMP_GID }} - - -# Hardware access groups -g audio - - - -g cdrom - - - -g dialout - - - -g disk - - - -g input - - - -g kvm - - - -g lp - - - -g render - - - -g sgx - - - -g tape - - - -g video - - - +# Physical and virtual hardware access groups +g audio {{AUDIO_GID }} - - +g cdrom {{CDROM_GID }} - - +g dialout {{DIALOUT_GID}} - - +g disk {{DISK_GID }} - - +g input {{INPUT_GID }} - - +g kmem {{KMEM_GID }} - - +g kvm {{KVM_GID }} - - +g lp {{LP_GID }} - - +g render {{RENDER_GID }} - - +g sgx {{SGX_GID }} - - +g tape {{TAPE_GID }} - - +g tty {{TTY_GID }} - - +g video {{VIDEO_GID }} - - # Default group for normal users -g users {{USERS_GID}} - - +g users {{USERS_GID }} - - diff --git a/sysusers.d/systemd.conf.in b/sysusers.d/systemd.conf.in index 9905eb596c..9941ef8ef4 100644 --- a/sysusers.d/systemd.conf.in +++ b/sysusers.d/systemd.conf.in @@ -5,18 +5,18 @@ # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. -g systemd-journal - - +g systemd-journal {{SYSTEMD_JOURNAL_GID}} - {% if ENABLE_NETWORKD %} -u systemd-network - "systemd Network Management" +u systemd-network {{SYSTEMD_NETWORK_UID}} "systemd Network Management" {% endif %} {% if ENABLE_OOMD %} u systemd-oom - "systemd Userspace OOM Killer" {% endif %} {% if ENABLE_RESOLVE %} -u systemd-resolve - "systemd Resolver" +u systemd-resolve {{SYSTEMD_RESOLVE_UID}} "systemd Resolver" {% endif %} {% if ENABLE_TIMESYNCD %} -u systemd-timesync - "systemd Time Synchronization" +u systemd-timesync {{SYSTEMD_TIMESYNC_UID}} "systemd Time Synchronization" {% endif %} {% if ENABLE_COREDUMP %} u systemd-coredump - "systemd Core Dumper" |