2001-06-16 07:16:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-13 22:14:37 +00:00
|
|
|
# $FreeBSD$
|
2001-06-16 07:16:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: sshd
|
2005-01-16 03:12:03 +00:00
|
|
|
# REQUIRE: LOGIN cleanvar
|
2008-07-16 19:50:29 +00:00
|
|
|
# KEYWORD: shutdown
|
2001-06-16 07:16:14 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="sshd"
|
2002-06-13 22:14:37 +00:00
|
|
|
rcvar=`set_rcvar`
|
2005-10-23 14:06:53 +00:00
|
|
|
command="/usr/sbin/${name}"
|
2002-06-13 22:14:37 +00:00
|
|
|
keygen_cmd="sshd_keygen"
|
|
|
|
start_precmd="sshd_precmd"
|
2001-06-16 07:16:14 +00:00
|
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
extra_commands="keygen reload"
|
|
|
|
|
2004-08-04 08:10:37 +00:00
|
|
|
timeout=300
|
|
|
|
|
|
|
|
user_reseed()
|
|
|
|
{
|
|
|
|
(
|
|
|
|
seeded=`sysctl -n kern.random.sys.seeded 2>/dev/null`
|
2006-04-11 09:08:15 +00:00
|
|
|
if [ "x${seeded}" != "x" ] && [ ${seeded} -eq 0 ] ; then
|
2004-08-04 08:10:37 +00:00
|
|
|
warn "Setting entropy source to blocking mode."
|
|
|
|
echo "===================================================="
|
|
|
|
echo "Type a full screenful of random junk to unblock"
|
|
|
|
echo "it and remember to finish with <enter>. This will"
|
|
|
|
echo "timeout in ${timeout} seconds, but waiting for"
|
|
|
|
echo "the timeout without typing junk may make the"
|
|
|
|
echo "entropy source deliver predictable output."
|
|
|
|
echo ""
|
|
|
|
echo "Just hit <enter> for fast+insecure startup."
|
|
|
|
echo "===================================================="
|
|
|
|
sysctl kern.random.sys.seeded=0 2>/dev/null
|
|
|
|
read -t ${timeout} junk
|
|
|
|
echo "${junk}" `sysctl -a` `date` > /dev/random
|
|
|
|
fi
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2001-06-16 07:16:14 +00:00
|
|
|
sshd_keygen()
|
|
|
|
{
|
2002-06-13 22:14:37 +00:00
|
|
|
(
|
|
|
|
umask 022
|
|
|
|
|
|
|
|
# Can't do anything if ssh is not installed
|
2006-08-22 11:17:29 +00:00
|
|
|
[ -x /usr/bin/ssh-keygen ] || {
|
|
|
|
warn "/usr/bin/ssh-keygen does not exist."
|
2002-06-13 22:14:37 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2006-08-22 11:17:29 +00:00
|
|
|
if [ -f /etc/ssh/ssh_host_key ]; then
|
2002-06-13 22:14:37 +00:00
|
|
|
echo "You already have an RSA host key" \
|
2006-08-22 11:17:29 +00:00
|
|
|
"in /etc/ssh/ssh_host_key"
|
2002-06-13 22:14:37 +00:00
|
|
|
echo "Skipping protocol version 1 RSA Key Generation"
|
|
|
|
else
|
2006-08-22 11:17:29 +00:00
|
|
|
/usr/bin/ssh-keygen -t rsa1 -b 1024 \
|
|
|
|
-f /etc/ssh/ssh_host_key -N ''
|
2002-06-13 22:14:37 +00:00
|
|
|
fi
|
|
|
|
|
2006-08-22 11:17:29 +00:00
|
|
|
if [ -f /etc/ssh/ssh_host_dsa_key ]; then
|
2002-06-13 22:14:37 +00:00
|
|
|
echo "You already have a DSA host key" \
|
2006-08-22 11:17:29 +00:00
|
|
|
"in /etc/ssh/ssh_host_dsa_key"
|
2002-06-13 22:14:37 +00:00
|
|
|
echo "Skipping protocol version 2 DSA Key Generation"
|
2001-06-16 07:16:14 +00:00
|
|
|
else
|
2006-08-22 11:17:29 +00:00
|
|
|
/usr/bin/ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N ''
|
2001-06-16 07:16:14 +00:00
|
|
|
fi
|
|
|
|
|
2006-08-22 11:17:29 +00:00
|
|
|
if [ -f /etc/ssh/ssh_host_rsa_key ]; then
|
2011-05-04 07:34:44 +00:00
|
|
|
echo "You already have an RSA host key" \
|
2006-08-22 11:17:29 +00:00
|
|
|
"in /etc/ssh/ssh_host_rsa_key"
|
2002-06-13 22:14:37 +00:00
|
|
|
echo "Skipping protocol version 2 RSA Key Generation"
|
2001-06-16 07:16:14 +00:00
|
|
|
else
|
2006-08-22 11:17:29 +00:00
|
|
|
/usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
|
2001-06-16 07:16:14 +00:00
|
|
|
fi
|
2011-05-04 07:34:44 +00:00
|
|
|
|
|
|
|
if [ -f /etc/ssh/ssh_host_ecdsa_key ]; then
|
|
|
|
echo "You already have an ECDSA host key" \
|
|
|
|
"in /etc/ssh/ssh_host_ecdsa_key"
|
|
|
|
echo "Skipping protocol version 2 ECDSA Key Generation"
|
|
|
|
else
|
|
|
|
/usr/bin/ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N ''
|
|
|
|
fi
|
2002-06-13 22:14:37 +00:00
|
|
|
)
|
2001-06-16 07:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sshd_precmd()
|
|
|
|
{
|
2006-08-22 11:17:29 +00:00
|
|
|
if [ ! -f /etc/ssh/ssh_host_key -o \
|
|
|
|
! -f /etc/ssh/ssh_host_dsa_key -o \
|
2011-05-04 07:34:44 +00:00
|
|
|
! -f /etc/ssh/ssh_host_ecdsa_key -o \
|
2006-08-22 11:17:29 +00:00
|
|
|
! -f /etc/ssh/ssh_host_rsa_key ]; then
|
2004-08-04 08:10:37 +00:00
|
|
|
user_reseed
|
2002-06-13 22:14:37 +00:00
|
|
|
run_rc_command keygen
|
2001-06-16 07:16:14 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2006-08-22 11:17:29 +00:00
|
|
|
load_rc_config $name
|
2001-06-16 07:16:14 +00:00
|
|
|
run_rc_command "$1"
|