SEEDRNG(8) System Manager's Manual SEEDRNG(8)

seedrngseed the Linux kernel random number generator from seed files

seedrng

seedrng is a simple program for seeding the Linux kernel random number generator from seed files. The program takes no arguments, must be run as root, and always attempts to do something useful.

This program is useful in light of the fact that the Linux kernel RNG cannot be initialized from shell scripts, and new seeds cannot be safely generated from boot time shell scripts either.

It should be run once at init time and once at shutdown time. It can be run at other times without detriment as well. Whenever it us run, it writes existing seed files into the RNG pool, and then creates a new seed file. If the RNG is initialized at the time of creating a new seed file, then that new seed file is marked as "creditable", which means it can be used to initialized the RNG. Otherwise, it is marked as "non-creditable", in which case it is still used to seed the RNG's pool, but will not initialize the RNG.

In order to ensure that entropy only ever stays the same or increases from one seed file to the next, old seed values are hashed together with new seed values when writing new seed files:

  new_seed =    new_seed[:-32]
             || HASH(   fixed_prefix
                     || real_time
                     || boot_time
                     || old_seed_len
                     || old_seed
                     || new_seed_len
                     || new_seed
                     )

The following environment variables affect the execution of seedrng:

If the environment variable SEEDRNG_SKIP_CREDIT is set to ‘1’, “true”, “yes”, or ‘y’, then seeds never credit the RNG, even if the seed file is creditable.

/var/lib/seedrng
Directory where seed files are stored.
/var/lib/seedrng/seed.credit
“Creditable” seed file.
/var/lib/seedrng/seed.no-credit
“Non-creditable” seed file.

seedrng was written by Jason A. Donenfeld <Jason@zx2c4.com>.

This manual page was written by
Alexandr Savca <alexandr.savca89@gmail.com>.

August 19, 2023 Zeppe-Lin