2013-12-21 14:51:11 -06:00
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-04 16:52:19 -06:00
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-14 15:22:04 +00:00
|
|
|
|
2011-11-26 13:21:54 -05:00
|
|
|
: ${urandom_seed:=${URANDOM_SEED:-/var/lib/misc/random-seed}}
|
2007-07-10 19:09:41 +00:00
|
|
|
description="Initializes the random number generator."
|
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
depend()
|
|
|
|
{
|
2017-03-16 10:16:39 -05:00
|
|
|
after clock
|
2007-04-05 11:18:42 +00:00
|
|
|
need localmount
|
2016-07-31 13:01:17 -05:00
|
|
|
keyword -docker -jail -lxc -openvz -prefix -systemd-nspawn
|
2007-04-05 11:18:42 +00:00
|
|
|
}
|
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
save_seed()
|
|
|
|
{
|
|
|
|
local psz=1
|
2007-05-11 10:33:49 +00:00
|
|
|
|
2007-11-28 15:45:03 +00:00
|
|
|
if [ -e /proc/sys/kernel/random/poolsize ]; then
|
2011-11-10 21:46:08 -05:00
|
|
|
: $(( psz = $(cat /proc/sys/kernel/random/poolsize) / 4096 ))
|
2007-05-11 10:33:49 +00:00
|
|
|
fi
|
|
|
|
|
2007-06-22 02:57:40 +00:00
|
|
|
( # sub shell to prevent umask pollution
|
|
|
|
umask 077
|
2009-04-27 07:51:18 +00:00
|
|
|
dd if=/dev/urandom of="$urandom_seed" count=${psz} 2>/dev/null
|
2007-06-22 02:57:40 +00:00
|
|
|
)
|
2007-05-11 10:33:49 +00:00
|
|
|
}
|
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
start()
|
|
|
|
{
|
2007-04-05 11:18:42 +00:00
|
|
|
[ -c /dev/urandom ] || return
|
2009-04-27 07:51:18 +00:00
|
|
|
if [ -f "$urandom_seed" ]; then
|
2007-11-23 12:04:11 +00:00
|
|
|
ebegin "Initializing random number generator"
|
2009-04-27 07:51:18 +00:00
|
|
|
cat "$urandom_seed" > /dev/urandom
|
2007-11-23 12:04:11 +00:00
|
|
|
eend $? "Error initializing random number generator"
|
2007-04-05 11:18:42 +00:00
|
|
|
fi
|
2009-04-27 07:51:18 +00:00
|
|
|
rm -f "$urandom_seed" && save_seed
|
2007-11-23 12:04:11 +00:00
|
|
|
return 0
|
2007-04-05 11:18:42 +00:00
|
|
|
}
|
|
|
|
|
2008-01-11 12:13:46 +00:00
|
|
|
stop()
|
|
|
|
{
|
2007-04-05 11:18:42 +00:00
|
|
|
ebegin "Saving random seed"
|
2007-05-11 10:33:49 +00:00
|
|
|
save_seed
|
2007-04-05 11:18:42 +00:00
|
|
|
eend $? "Failed to save random seed"
|
|
|
|
}
|