dropbear: add ForceCommand uci option
[openwrt/staging/ldir.git] / package / network / services / dropbear / files / dropbear.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006-2010 OpenWrt.org
3 # Copyright (C) 2006 Carlos Sobrinho
4
5 START=19
6 STOP=50
7
8 USE_PROCD=1
9 PROG=/usr/sbin/dropbear
10 NAME=dropbear
11 PIDCOUNT=0
12
13 extra_command "killclients" "Kill ${NAME} processes except servers and yourself"
14
15 _dropbearkey()
16 {
17 /usr/bin/dropbearkey "$@" 0<&- 1>&- 2>&-
18 }
19
20 # $1 - host key file name
21 hk_verify()
22 {
23 [ -f "$1" ] || return 1
24 [ -s "$1" ] || return 2
25 _dropbearkey -y -f "$1" || return 3
26 return 0
27 }
28
29 # $1 - hk_verify() return code
30 hk_errmsg()
31 {
32 case "$1" in
33 0) ;;
34 1) echo "file does not exist" ;;
35 2) echo "file has zero length" ;;
36 3) echo "file is not valid host key or not supported" ;;
37 *) echo "unknown error" ;;
38 esac
39 }
40
41 # $1 - config option
42 # $2 - host key file name
43 hk_config()
44 {
45 local x m
46 hk_verify "$2"; x=$?
47 case "$x" in
48 0) procd_append_param command -r "$2"
49 ;;
50 *) m=$(hk_errmsg "$x")
51 logger -t "${NAME}" -p daemon.warn \
52 "option '$1', value '$2': $m, skipping"
53 ;;
54 esac
55 }
56
57 # $1 - host key file name
58 hk_config__keyfile()
59 {
60 hk_config 'keyfile' "$1"
61 }
62
63 hk_generate_as_needed()
64 {
65 local kdir kgen ktype tdir kcount tfile
66 kdir='/etc/dropbear'
67
68 kgen=''
69 for ktype in ed25519 ecdsa rsa; do
70 hk_verify "${kdir}/dropbear_${ktype}_host_key" && continue
71
72 kgen="${kgen} ${ktype}"
73 done
74
75 [ -z "${kgen}" ] && return
76
77 tdir=$(mktemp -d); chmod 0700 "${tdir}"
78
79 kcount=0
80 for ktype in ${kgen}; do
81 tfile="${tdir}/dropbear_${ktype}_host_key"
82
83 if ! _dropbearkey -t ${ktype} -f "${tfile}"; then
84 # unsupported key type
85 rm -f "${tfile}"
86 continue
87 fi
88
89 kcount=$((kcount+1))
90 done
91
92 if [ ${kcount} -ne 0 ]; then
93 mkdir -p "${kdir}"; chmod 0700 "${kdir}"; chown root "${kdir}"
94 mv -f "${tdir}/"* "${kdir}/"
95 fi
96
97 rm -rf "${tdir}"
98 }
99
100 append_ports()
101 {
102 local ipaddrs="$1"
103 local port="$2"
104
105 [ -z "$ipaddrs" ] && {
106 procd_append_param command -p "$port"
107 return
108 }
109
110 for addr in $ipaddrs; do
111 procd_append_param command -p "$addr:$port"
112 done
113 }
114
115 validate_section_dropbear()
116 {
117 uci_load_validate dropbear dropbear "$1" "$2" \
118 'PasswordAuth:bool:1' \
119 'enable:bool:1' \
120 'Interface:string' \
121 'GatewayPorts:bool:0' \
122 'ForceCommand:string' \
123 'RootPasswordAuth:bool:1' \
124 'RootLogin:bool:1' \
125 'rsakeyfile:file' \
126 'keyfile:list(file)' \
127 'BannerFile:file' \
128 'Port:port:22' \
129 'SSHKeepAlive:uinteger:300' \
130 'IdleTimeout:uinteger:0' \
131 'MaxAuthTries:uinteger:3' \
132 'RecvWindowSize:uinteger:0' \
133 'mdns:bool:1'
134 }
135
136 dropbear_instance()
137 {
138 local ipaddrs
139
140 [ "$2" = 0 ] || {
141 echo "validation failed"
142 return 1
143 }
144
145 [ -n "${Interface}" ] && {
146 [ -n "${BOOT}" ] && return 0
147
148 network_get_ipaddrs_all ipaddrs "${Interface}" || {
149 echo "interface ${Interface} has no physdev or physdev has no suitable ip"
150 return 1
151 }
152 }
153
154 [ "${enable}" = "0" ] && return 1
155 PIDCOUNT="$(( ${PIDCOUNT} + 1))"
156 local pid_file="/var/run/${NAME}.${PIDCOUNT}.pid"
157
158 procd_open_instance
159 procd_set_param command "$PROG" -F -P "$pid_file"
160 [ "${PasswordAuth}" -eq 0 ] && procd_append_param command -s
161 [ "${GatewayPorts}" -eq 1 ] && procd_append_param command -a
162 [ -n "${ForceCommand}" ] && procd_append_param command -c "${ForceCommand}"
163 [ "${RootPasswordAuth}" -eq 0 ] && procd_append_param command -g
164 [ "${RootLogin}" -eq 0 ] && procd_append_param command -w
165 if [ -n "${rsakeyfile}" ]; then
166 logger -t ${NAME} -p daemon.warn \
167 "option 'rsakeyfile' is considered to be deprecated and" \
168 "will be removed in future releases, use 'keyfile' instead"
169 hk_config 'rsakeyfile' "${rsakeyfile}"
170 fi
171 config_list_foreach "$1" "keyfile" hk_config__keyfile
172 [ -n "${BannerFile}" ] && procd_append_param command -b "${BannerFile}"
173 append_ports "${ipaddrs}" "${Port}"
174 [ "${IdleTimeout}" -ne 0 ] && procd_append_param command -I "${IdleTimeout}"
175 [ "${SSHKeepAlive}" -ne 0 ] && procd_append_param command -K "${SSHKeepAlive}"
176 [ "${MaxAuthTries}" -ne 0 ] && procd_append_param command -T "${MaxAuthTries}"
177 [ "${RecvWindowSize}" -gt 0 -a "${RecvWindowSize}" -le 1048576 ] && \
178 procd_append_param command -W "${RecvWindowSize}"
179 [ "${mdns}" -ne 0 ] && procd_add_mdns "ssh" "tcp" "$Port" "daemon=dropbear"
180 procd_set_param respawn
181 procd_close_instance
182 }
183
184 load_interfaces()
185 {
186 config_get interface "$1" Interface
187 config_get enable "$1" enable 1
188
189 [ "${enable}" = "1" ] && interfaces=" ${interface} ${interfaces}"
190 }
191
192 boot()
193 {
194 BOOT=1
195 start "$@"
196 }
197
198 start_service()
199 {
200 hk_generate_as_needed
201
202 . /lib/functions.sh
203 . /lib/functions/network.sh
204
205 config_load "${NAME}"
206 config_foreach validate_section_dropbear dropbear dropbear_instance
207 }
208
209 service_triggers()
210 {
211 local interfaces
212
213 procd_add_config_trigger "config.change" "dropbear" /etc/init.d/dropbear reload
214
215 config_load "${NAME}"
216 config_foreach load_interfaces dropbear
217
218 [ -n "${interfaces}" ] && {
219 for n in $interfaces ; do
220 procd_add_interface_trigger "interface.*" $n /etc/init.d/dropbear reload
221 done
222 }
223
224 procd_add_validation validate_section_dropbear
225 }
226
227 shutdown() {
228 # close all open connections
229 killall dropbear
230 }
231
232 killclients()
233 {
234 local ignore=''
235 local server
236 local pid
237
238 # if this script is run from inside a client session, then ignore that session
239 pid="$$"
240 while [ "${pid}" -ne 0 ]
241 do
242 # get parent process id
243 pid=$(cut -d ' ' -f 4 "/proc/${pid}/stat")
244 [ "${pid}" -eq 0 ] && break
245
246 # check if client connection
247 grep -F -q -e "${PROG}" "/proc/${pid}/cmdline" && {
248 append ignore "${pid}"
249 break
250 }
251 done
252
253 # get all server pids that should be ignored
254 for server in $(cat /var/run/${NAME}.*.pid)
255 do
256 append ignore "${server}"
257 done
258
259 # get all running pids and kill client connections
260 local skip
261 for pid in $(pidof "${NAME}")
262 do
263 # check if correct program, otherwise process next pid
264 grep -F -q -e "${PROG}" "/proc/${pid}/cmdline" || {
265 continue
266 }
267
268 # check if pid should be ignored (servers, ourself)
269 skip=0
270 for server in ${ignore}
271 do
272 if [ "${pid}" = "${server}" ]
273 then
274 skip=1
275 break
276 fi
277 done
278 [ "${skip}" -ne 0 ] && continue
279
280 # kill process
281 echo "${initscript}: Killing ${pid}..."
282 kill -KILL ${pid}
283 done
284 }