forked from rrobinett/Kiwi-watchdog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kiwi-watchdog.sh
322 lines (286 loc) · 11.7 KB
/
kiwi-watchdog.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#!/bin/bash
### kiwi-watchdog: pings Kiwis and powe cycles them if they don't respond
### Copyright (C) 2021 Robert S. Robinett
###
### This program is free software: you can redistribute it and/or modify
### it under the terms of the GNU General Public License as published by
### the Free Software Foundation, either version 3 of the License, or
### (at your option) any later version.
###
### This program is distributed in the hope that it will be useful,
### but WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
### GNU General Public License for more details.
###
### You should have received a copy of the GNU General Public License
### along with this program. If not, see <https://www.gnu.org/licenses/>.
### This program uses a Sain brand ethernet controller to control a bank of 8 mechanical relays
### The Sain controller has a fixed IP address of 192.168.1.4, so the Pi running this program must have a LOCAL path to the that address i.e. IP traffic can't go through a router
### So this program needs to run on a Pi attached to the same LAN as the Sain controller and the Pi must be configured
### with an additional IP addresss on eth0 by executing: 'ip address add 192.168.1.xx/24 dev etho'
shopt -s -o nounset ### bash stops with error if undeclared variable is referenced
declare -r VERSION=0.2
declare VERBOSITY=${VERBOSITY-1} ### default to level 1
declare -r CMD_NAME=${0##*/}
declare -r CMD_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
declare -r CMD_PATH="${CMD_DIR}/${CMD_NAME}"
declare -r CMD_DESCRIPTION="Power Control Watchdog"
declare -r KIWI_POWER_WAIT_SECS=60 ### How long to wait after powering off a Kiwi before checking if it is back online
declare -r KIWI_BASE_IP="10.14.70" ### Append ${KIWI_ID_LIST[x]} to get the IP address of the Kiwi in this list: e.g. KIWI_ID_LIST[0] => ${KIWI_BASE_IP}.${KIWI_ID_LIST[0]} == 10.14.70.75
declare -r KIWI_ID_LIST=( 72 73 74 75 76 77 78 )
declare -r KIWI_POWER_WATCH_DAEMON_PID_FILE=${CMD_DIR}/kiwi-watchdog-daemon.pid
declare -r KIWI_POWER_WATCH_DAEMON_LOG_FILE=${CMD_DIR}/kiwi-watchdog-daemon.log
### Manage
declare -r KIWI_STARTUP_DELAY_SECONDS=60 ### When starting the Pi wait this long before checking the Kiwis which may be powering up at the same time.
declare SYSTEMNCTL_UNIT_FILE_NAME=${0##*/}
declare -r SYSTEMNCTL_SERVICE_NAME=${SYSTEMNCTL_UNIT_FILE_NAME%.*}
SYSTEMNCTL_UNIT_FILE_NAME=${SYSTEMNCTL_SERVICE_NAME}.service
declare -r SYSTEMNCTL_UNIT_DIR=/lib/systemd/system
declare -r SYSTEMNCTL_UNIT_PATH=${SYSTEMNCTL_UNIT_DIR}/${SYSTEMNCTL_UNIT_FILE_NAME}
cat > ${SYSTEMNCTL_UNIT_FILE_NAME} <<EOF
[Unit]
Description= ${CMD_DESCRIPTION}
After=multi-user.target
[Service]
User=$(id -u -n)
Group=$(id -g -n)
WorkingDirectory=${CMD_DIR}
ExecStart=${CMD_PATH} -A
ExecStop=${CMD_PATH} -z
Type=forking
Restart=on-abort
[Install]
WantedBy=multi-user.target
EOF
function setup_systemctl_deamon()
{
if [[ ! -d ${SYSTEMNCTL_UNIT_DIR} ]]; then
echo "WARNING: this server appears to not be configured to use 'systemnctl' needed to start the kiwiwspr daemon at startup"
return
fi
if [[ -f ${SYSTEMNCTL_UNIT_PATH} ]]; then
if diff ${SYSTEMNCTL_UNIT_FILE_NAME} ${SYSTEMNCTL_UNIT_PATH} ; then
echo "This service is already setup"
return 0
else
echo "This service template ${SYSTEMNCTL_UNIT_FILE_NAME} differs from the installed service file ${SYSTEMNCTL_UNIT_PATH}, so reinstall it."
fi
fi
sudo cp ${SYSTEMNCTL_UNIT_FILE_NAME} ${SYSTEMNCTL_UNIT_PATH}
echo "Copied ${SYSTEMNCTL_UNIT_FILE_NAME} to ${SYSTEMNCTL_UNIT_PATH}"
sudo systemctl daemon-reload
echo "Created '${SYSTEMNCTL_UNIT_PATH}'."
}
function start_systemctl_daemon()
{
sudo systemctl start ${SYSTEMNCTL_SERVICE_NAME}
}
function enable_systemctl_deamon()
{
setup_systemctl_deamon
sudo systemctl enable ${SYSTEMNCTL_SERVICE_NAME}
echo "Watchdog daemon will now automatically start after a powerup or reboot of this system"
}
function disable_systemctl_deamon()
{
sudo systemctl stop ${SYSTEMNCTL_SERVICE_NAME}
sudo systemctl disable ${SYSTEMNCTL_SERVICE_NAME}
}
function get_systemctl_deamon_status()
{
setup_systemctl_deamon
sudo systemctl status ${SYSTEMNCTL_UNIT_FILE_NAME}
local ret_code=$?
if [[ ${ret_code} -eq 0 ]]; then
echo "${SYSTEMNCTL_UNIT_FILE_NAME} is enabled"
else
echo "${SYSTEMNCTL_UNIT_FILE_NAME} is disabled"
fi
}
function startup_daemon_control()
{
local action=${1-h}
case ${action} in
h)
echo "usage: -d [a|i|z|s] setup to be run at startup of this server using the systemctl service (a=start, i=install and enable, z=disable and stop, s=show status"
;;
a)
start_systemctl_daemon
;;
i)
enable_systemctl_deamon
;;
z)
disable_systemctl_deamon
;;
s)
get_systemctl_deamon_status
;;
*)
echo "ERROR: action ${action} is invalid"
;;
esac
}
#
# URL commands
# (1) http://admin:[email protected]/relay.cgi?relayon1=on
# The relay 1 is on.
# (2) http://admin:[email protected]/relay.cgi?relayoff1=off
# The relay 1 is off.
# (3) http://admin:[email protected]/relay.cgi?pulse1=pulse
# The relay 1 is pulse.
# (4) http://admin:[email protected]/state.cgi
# Get the state of the device.
#
########################################
function sain_control()
{
local kiwi=$1 ## 72...78, or 100 = netgear
local on_off=$2 ## on or off
local relay=$(( ${kiwi} - 71 ))
local state=0 ## Default to "on"
if [[ "${on_off}" == "off" ]]; then
state=1
fi
echo -n -e "\xfd\x02\x20\x${relay}\x${state}\x5d" | nc -w 0 192.168.1.4 30000
}
function kiwi_watchdog_daemon()
{
local startup_delay=${1-0}
if [[ ${startup_delay} -eq 0 ]]; then
echo "$(date): kiwi_watchdog_daemon() is starting" | tee -a ${KIWI_POWER_WATCH_DAEMON_LOG_FILE}
else
echo "$(date): kiwi_watchdog_daemon() will start after a delay of ${startup_delay} seconds" | tee -a ${KIWI_POWER_WATCH_DAEMON_LOG_FILE}
sleep ${startup_delay}
echo "$(date): kiwi_watchdog_daemon() now starting after a delay of ${startup_delay} seconds" | tee -a ${KIWI_POWER_WATCH_DAEMON_LOG_FILE}
fi
while true; do
[[ ${VERBOSITY} -ge 2 ]] && echo "$(date): Checking that all Kiwis are running" >> ${KIWI_POWER_WATCH_DAEMON_LOG_FILE}
### Make sure the IP interface to the Kiwis is active by successfully pinging the router
local router_ip=${KIWI_BASE_IP}.1
while ! ping -c 1 ${router_ip} > /dev/null ; do
echo "$(date): failed to ping router at ${router_ip}, so assume that ethernet interface on this server is down and can't reach the Kiwis even if they are online. Sleeping 60 seconds and retrying"
sleep 60;
done
local kiwi_id
for kiwi_id in ${KIWI_ID_LIST[@]}; do
local kiwi_ip="${KIWI_BASE_IP}.${kiwi_id}"
##ping -c 1 ${kiwi_ip} > /dev/null
curl --silent ${kiwi_ip}:8073/status > curl_output.txt
local ret_code=$?
if [[ ${ret_code} -eq 0 ]]; then
[[ ${VERBOSITY} -ge 2 ]] && echo "$(date): 'curl --silent ${kiwi_ip}/status => ${ret_code}, so Kiwi ${kiwi_id} is OK" >> ${KIWI_POWER_WATCH_DAEMON_LOG_FILE}
else
echo "$(date): ERROR: 'curl --silent ${kiwi_ip}/status' => ${ret_code}, so power cycling Kiwi${kiwi_id} for 10 seconds" >> ${KIWI_POWER_WATCH_DAEMON_LOG_FILE}
sain_control ${kiwi_id} off
sleep 10
sain_control ${kiwi_id} on
### We won't check this Kiwi again for at least 60 seconds, so no need to wait for it to come alive again
fi
done
sleep ${KIWI_POWER_WAIT_SECS}
done
}
function check_kiwi_status()
{
local router_ip=${KIWI_BASE_IP}.1
if ! ping -c 1 ${router_ip} > /dev/null ; then
echo "$(date): failed to ping router at ${router_ip}, so assume that ethernet interface on this server is down and can't reach the Kiwis even if they are online. Sleeping 60 seconds and retrying"
return 1
fi
local kiwi_id
for kiwi_id in ${KIWI_ID_LIST[@]}; do
local kiwi_ip="${KIWI_BASE_IP}.${kiwi_id}"
if ping -c 1 ${kiwi_ip} > /dev/null; then
echo "'ping -c 1 ${kiwi_ip}' => $?, so Kiwi ${kiwi_id} is OK"
else
echo "ERROR: 'ping -c 1 ${kiwi_ip}' => $?"
fi
done
}
function spawn_kiwi_watchdog_daemon()
{
local startup_delay=$1
if [[ -f ${KIWI_POWER_WATCH_DAEMON_PID_FILE} ]]; then
local daemon_pid=$( < ${KIWI_POWER_WATCH_DAEMON_PID_FILE})
if ps ${daemon_pid} > /dev/null ; then
echo "kiwi_watchdog_daemon is running with pid = ${daemon_pid}"
return 0
else
echo "kiwi_watchdog_daemon pid ${daemon_pid} in ${KIWI_POWER_WATCH_DAEMON_PID_FILE} is not active."
rm ${KIWI_POWER_WATCH_DAEMON_PID_FILE}
fi
fi
kiwi_watchdog_daemon ${startup_delay} &
local daemon_pid=$!
echo ${daemon_pid} > ${KIWI_POWER_WATCH_DAEMON_PID_FILE}
echo "Spawned kiwi_watchdog_daemon which has pid ${daemon_pid}"
}
function kill_kiwi_watchdog_daemon()
{
if [[ -f ${KIWI_POWER_WATCH_DAEMON_PID_FILE} ]]; then
local daemon_pid=$( < ${KIWI_POWER_WATCH_DAEMON_PID_FILE})
if ps ${daemon_pid} > /dev/null ; then
kill ${daemon_pid}
echo "Killed running kiwi_watchdog_daemon which had pid = ${daemon_pid}"
else
echo "Found kiwi_watchdog_daemon pid ${daemon_pid} in ${KIWI_POWER_WATCH_DAEMON_PID_FILE} is not active."
fi
rm ${KIWI_POWER_WATCH_DAEMON_PID_FILE}
else
echo "There is no file ${KIWI_POWER_WATCH_DAEMON_PID_FILE}, so kiwi_watchdog_daemon was not running"
fi
}
function status_of_kiwi_watchdog_daemon()
{
if [[ -f ${KIWI_POWER_WATCH_DAEMON_PID_FILE} ]]; then
local daemon_pid=$( < ${KIWI_POWER_WATCH_DAEMON_PID_FILE})
if ps ${daemon_pid} > /dev/null ; then
echo "kiwi_watchdog_daemon is running with pid = ${daemon_pid}"
else
echo "Found kiwi_watchdog_daemon pid ${daemon_pid} in ${KIWI_POWER_WATCH_DAEMON_PID_FILE} but that pid is not active."
rm ${KIWI_POWER_WATCH_DAEMON_PID_FILE}
fi
else
echo "There is no file ${KIWI_POWER_WATCH_DAEMON_PID_FILE}, so kiwi_watchdog_daemon is not running"
fi
check_kiwi_status
}
function usage()
{
echo "$0 Version ${VERSION}:
-c KIWI STATE KIWI=72...78 STATE=on|off
-a start daemon which pings kiwis and power cycles them if they don't respond
-A start daemon with a delay of ${KIWI_STARTUP_DELAY_SECONDS}
-z kill the daemon
-s show the daemon status
-d [a|i|z|s] setup to be run at startup of this server using the systemctl service (a=start, i=install and enable, z=disable and stop, s=show status"
}
case ${1--h} in
-c)
sain_control $2 $3
;;
-a)
spawn_kiwi_watchdog_daemon ${2-0}
;;
-A)
### If this is installed as a Pi daemon by '-d a', the systemctl system will execute '-A'.
spawn_kiwi_watchdog_daemon ${KIWI_STARTUP_DELAY_SECONDS}
;;
-z)
kill_kiwi_watchdog_daemon
;;
-s)
status_of_kiwi_watchdog_daemon
;;
-d)
startup_daemon_control ${2-h}
;;
-h)
usage
;;
*)
echo "ERROR: flag '$1' is not valid"
;;
esac
exit 0