2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# 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 20:52:04 +05:30
|
|
|
|
2011-11-26 23:51:54 +05:30
|
|
|
: ${urandom_seed:=${URANDOM_SEED:-/var/lib/misc/random-seed}}
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Initializes the random number generator."
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2017-03-16 20:46:39 +05:30
|
|
|
after clock
|
2007-04-05 16:48:42 +05:30
|
|
|
need localmount
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -jail -lxc -openvz -prefix -systemd-nspawn
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
save_seed()
|
|
|
|
{
|
|
|
|
local psz=1
|
2007-05-11 16:03:49 +05:30
|
|
|
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ -e /proc/sys/kernel/random/poolsize ]; then
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( psz = $(cat /proc/sys/kernel/random/poolsize) / 4096 ))
|
2007-05-11 16:03:49 +05:30
|
|
|
fi
|
|
|
|
|
2007-06-22 08:27:40 +05:30
|
|
|
( # sub shell to prevent umask pollution
|
|
|
|
umask 077
|
2009-04-27 13:21:18 +05:30
|
|
|
dd if=/dev/urandom of="$urandom_seed" count=${psz} 2>/dev/null
|
2007-06-22 08:27:40 +05:30
|
|
|
)
|
2007-05-11 16:03:49 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
[ -c /dev/urandom ] || return
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ -f "$urandom_seed" ]; then
|
2007-11-23 17:34:11 +05:30
|
|
|
ebegin "Initializing random number generator"
|
2009-04-27 13:21:18 +05:30
|
|
|
cat "$urandom_seed" > /dev/urandom
|
2007-11-23 17:34:11 +05:30
|
|
|
eend $? "Error initializing random number generator"
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2009-04-27 13:21:18 +05:30
|
|
|
rm -f "$urandom_seed" && save_seed
|
2007-11-23 17:34:11 +05:30
|
|
|
return 0
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
stop()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
ebegin "Saving random seed"
|
2007-05-11 16:03:49 +05:30
|
|
|
save_seed
|
2007-04-05 16:48:42 +05:30
|
|
|
eend $? "Failed to save random seed"
|
|
|
|
}
|