]> git.ipfire.org Git - thirdparty/systemd.git/commit
random-seed: rework systemd-random-seed.service substantially
authorLennart Poettering <lennart@poettering.net>
Mon, 22 Jul 2019 11:51:30 +0000 (13:51 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 25 Jul 2019 16:30:06 +0000 (18:30 +0200)
commit26ded55709947d936634f1de0f43dcf88f594621
treed476ee135365743a17ab14b24d0261fed376dd60
parentc6127c39965aa7f13ee8b311e3f89f6f3c54a730
random-seed: rework systemd-random-seed.service substantially

This makes two major changes to the way systemd-random-seed operates:

1. We now optionally credit entropy if this is configured (via an env
var). Previously we never would do that, with this change we still don't
by default, but it's possible to enable this if people acknowledge that
they shouldn't replicate an image with a contained random seed to
multiple systems. Note that in this patch crediting entropy is a boolean
thing (unlike in previous attempts such as #1062), where only a relative
amount of bits was credited. The simpler scheme implemented here should
be OK though as the random seeds saved to disk are now written only with
data from the kernel's entropy pool retrieved after the pool is fully
initialized. Specifically:

2. This makes systemd-random-seed.service a synchronization point for
kernel entropy pool initialization. It was already used like this, for
example by systemd-cryptsetup-generator's /dev/urandom passphrase
handling, with this change it explicitly operates like that (at least
systems which provide getrandom(), where we can support this). This
means services that rely on an initialized random pool should now place
After=systemd-random-seed.service and everything should be fine. Note
that with this change sysinit.target (and thus early boot) is NOT
systematically delayed until the entropy pool is initialized, i.e.
regular services need to add explicit ordering deps on this service if
they require an initialized random pool.

Fixes: #4271
Replaces: #10621 #4513
src/random-seed/random-seed.c
units/systemd-random-seed.service.in