2006-10-05 04:05:48 +08:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-02-08 05:45:02 +08:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2011-11-08 06:58:39 +08:00
|
|
|
|
2007-05-10 18:38:53 +08:00
|
|
|
START=50
|
2013-07-12 01:00:26 +08:00
|
|
|
USE_PROCD=1
|
|
|
|
PROG=/usr/sbin/telnetd
|
|
|
|
NAME=telnetd
|
2006-06-27 08:36:13 +08:00
|
|
|
|
2010-07-19 02:36:12 +08:00
|
|
|
has_root_pwd() {
|
|
|
|
local pwd=$([ -f "$1" ] && cat "$1")
|
|
|
|
pwd="${pwd#*root:}"
|
|
|
|
pwd="${pwd%%:*}"
|
|
|
|
|
2011-11-16 21:17:35 +08:00
|
|
|
test -n "${pwd#[\!x]}"
|
2010-07-19 02:36:12 +08:00
|
|
|
}
|
|
|
|
|
2011-02-08 09:01:17 +08:00
|
|
|
get_root_home() {
|
|
|
|
local homedir=$([ -f "$1" ] && cat "$1")
|
|
|
|
homedir="${homedir#*:*:0:0:*:}"
|
|
|
|
|
|
|
|
echo "${homedir%%:*}"
|
|
|
|
}
|
|
|
|
|
2011-02-03 02:50:50 +08:00
|
|
|
has_ssh_pubkey() {
|
2011-02-08 05:45:02 +08:00
|
|
|
( /etc/init.d/dropbear enabled 2> /dev/null && grep -qs "^ssh-" /etc/dropbear/authorized_keys ) || \
|
2011-02-08 09:01:17 +08:00
|
|
|
( /etc/init.d/sshd enabled 2> /dev/null && grep -qs "^ssh-" "$(get_root_home /etc/passwd)"/.ssh/authorized_keys )
|
2011-02-03 02:50:50 +08:00
|
|
|
}
|
|
|
|
|
2013-07-12 01:00:26 +08:00
|
|
|
start_service() {
|
2011-02-03 02:50:50 +08:00
|
|
|
if ( ! has_ssh_pubkey && \
|
|
|
|
! has_root_pwd /etc/passwd && ! has_root_pwd /etc/shadow ) || \
|
2011-02-08 05:45:02 +08:00
|
|
|
( ! /etc/init.d/dropbear enabled 2> /dev/null && ! /etc/init.d/sshd enabled 2> /dev/null );
|
2010-07-19 02:36:12 +08:00
|
|
|
then
|
2013-07-12 01:00:26 +08:00
|
|
|
procd_open_instance
|
|
|
|
procd_set_param command "$PROG" -F -l /bin/login.sh
|
|
|
|
procd_close_instance
|
2007-01-09 05:31:29 +08:00
|
|
|
fi
|
2006-10-05 04:05:48 +08:00
|
|
|
}
|