[Midnightbsd-cvs] src [6531] trunk/libexec/save-entropy/save-entropy.sh: update entropy from freebsd 9.2 version
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sun Dec 22 16:55:56 EST 2013
Revision: 6531
http://svnweb.midnightbsd.org/src/?rev=6531
Author: laffer1
Date: 2013-12-22 16:55:56 -0500 (Sun, 22 Dec 2013)
Log Message:
-----------
update entropy from freebsd 9.2 version
Modified Paths:
--------------
trunk/libexec/save-entropy/save-entropy.sh
Property Changed:
----------------
trunk/libexec/save-entropy/save-entropy.sh
Modified: trunk/libexec/save-entropy/save-entropy.sh
===================================================================
--- trunk/libexec/save-entropy/save-entropy.sh 2013-12-22 21:52:45 UTC (rev 6530)
+++ trunk/libexec/save-entropy/save-entropy.sh 2013-12-22 21:55:56 UTC (rev 6531)
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# Copyright (c) 2001-2006 Douglas Barton, DougB at FreeBSD.org
+# Copyright (c) 2001-2006,2012 Douglas Barton, dougb at FreeBSD.org
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -30,7 +30,7 @@
# This script is called by cron to store bits of randomness which are
# then used to seed /dev/random on boot.
-# Originally developed by Doug Barton, DougB at FreeBSD.org
+# Originally developed by Doug Barton, dougb at FreeBSD.org
PATH=/bin:/usr/bin
@@ -56,38 +56,36 @@
entropy_save_num=${entropy_save_num:-8}
if [ ! -d "${entropy_dir}" ]; then
- umask 077
- mkdir "${entropy_dir}" || {
- logger -is -t "$0" The entropy directory "${entropy_dir}" does not \
-exist, and cannot be created. Therefore no entropy can be saved. ;
- exit 1;}
- /usr/sbin/chown operator:operator "${entropy_dir}"
- chmod 0700 "${entropy_dir}"
+ install -d -o operator -g operator -m 0700 "${entropy_dir}" || {
+ logger -is -t "$0" The entropy directory "${entropy_dir}" does \
+ not exist, and cannot be created. Therefore no entropy can \
+ be saved.; exit 1; }
fi
+cd "${entropy_dir}" || {
+ logger -is -t "$0" Cannot cd to the entropy directory: "${entropy_dir}". \
+ Entropy file rotation is aborted.; exit 1; }
+
+for f in saved-entropy.*; do
+ case "${f}" in saved-entropy.\*) continue ;; esac # No files match
+ [ ${f#saved-entropy\.} -ge ${entropy_save_num} ] && unlink ${f}
+done
+
umask 377
-esn_m1=$(( ${entropy_save_num} - 1 ))
-for file_num in `jot $esn_m1 $esn_m1 1`; do
- if [ -e "${entropy_dir}/saved-entropy.${file_num}" ]; then
- if [ -f "${entropy_dir}/saved-entropy.${file_num}" ]; then
- new_file=saved-entropy.$(( $file_num + 1 ))
- if [ -e "${entropy_dir}/${new_file}" ]; then
- unlink ${entropy_dir}/${new_file}
- fi
- mv "${entropy_dir}/saved-entropy.${file_num}" \
- "${entropy_dir}/${new_file}"
- else
- logger -is -t "$0" \
-"${entropy_dir}/saved-entropy.${file_num} is not a regular file, and therefore \
-it will not be rotated. Entropy file harvesting is aborted."
- exit 1
- fi
+n=$(( ${entropy_save_num} - 1 ))
+while [ ${n} -ge 1 ]; do
+ if [ -f "saved-entropy.${n}" ]; then
+ mv "saved-entropy.${n}" "saved-entropy.$(( ${n} + 1 ))"
+ elif [ -e "saved-entropy.${n}" -o -L "saved-entropy.${n}" ]; then
+ logger -is -t "$0" \
+ "${entropy_dir}/saved-entropy.${n}" is not a regular file, and so \
+ it will not be rotated. Entropy file rotation is aborted.
+ exit 1
fi
+ n=$(( ${n} - 1 ))
done
-dd if=/dev/random of="${entropy_dir}/saved-entropy.1" \
- bs="$entropy_save_sz" count=1 2> /dev/null
+dd if=/dev/random of=saved-entropy.1 bs=${entropy_save_sz} count=1 2>/dev/null
exit 0
-
Property changes on: trunk/libexec/save-entropy/save-entropy.sh
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list