]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
random(4): Attempt to persist entropy promptly
authorcem <cem@FreeBSD.org>
Sun, 31 Mar 2019 04:57:50 +0000 (04:57 +0000)
committercem <cem@FreeBSD.org>
Sun, 31 Mar 2019 04:57:50 +0000 (04:57 +0000)
commit942f34746abecee2f17789a135652b18a0612c71
tree0fb3f9402dc971ab653734bfa0ee221a116007c6
parent05de3ee1690369c9b643c2a992c6fb23511b976a
random(4): Attempt to persist entropy promptly

The goal of saving entropy in Fortuna is two-fold: (1) to provide early
availability of the random device (unblocking) on next boot; and (2), to
have known, high-quality entropy available for that initial seed.  We know
it is high quality because it's output taken from Fortuna.

The FS&K paper makes it clear that Fortuna unblocks when enough bits have
been input that the output //may// be safely seeded.  But they emphasize
that the quality of various entropy sources is unknown, and a saved entropy
file is essential for both availability and ensuring initial
unpredictability.

In FreeBSD we persist entropy using two mechanisms:

1. The /etc/rc.d/random shutdown() function, which is used for ordinary
   shutdowns and reboots; and,

2. A cron job that runs every dozen minutes or so to persist new entropy, in
   case the system suffers from power loss or a crash (bypassing the
   ordinary shutdown path).

Filesystems are free to cache dirty data indefinitely, with arbitrary flush
policy.  Fsync must be used to ensure the data is persisted, especially for
the cron job save-entropy, whose entire goal is power loss and crash safe
entropy persistence.

Ordinary shutdown may not need the fsync because unmount should flush out
the dirty entropy file shortly afterwards.  But it is always possible power
loss or crash occurs during the short window after rc.d/random shutdown runs
and before the filesystem is unmounted, so the additional fsync there seems
harmless.

PR: 230876
Reviewed by: delphij, markj, markm
Approved by: secteam (delphij)
Differential Revision: https://reviews.freebsd.org/D19742
libexec/rc/rc.d/random
libexec/save-entropy/save-entropy.sh