| 1535 |
richard |
1 |
#!/bin/bash
|
| 64 |
franck |
2 |
# $Id: alcasar-watchdog.sh 2883 2020-11-15 21:14:52Z rexy $
|
| 672 |
richard |
3 |
|
|
|
4 |
# alcasar-watchdog.sh
|
| 790 |
richard |
5 |
# by Rexy
|
| 672 |
richard |
6 |
# This script is distributed under the Gnu General Public License (GPL)
|
| 2108 |
richard |
7 |
# - Ce script prévient les usagers de l'indisponibilité de l'accès Internet
|
|
|
8 |
# - Il déconnecte les usagers dont les équipements réseau ne répondent plus (leur onglet 'status.php' a été fermé)
|
|
|
9 |
# - Il deconnecte les usagers dont les adresses MAC sont usurpées
|
|
|
10 |
#
|
|
|
11 |
# - This script tells users that Internet access is down
|
|
|
12 |
# - It logs out users whose PCs are quiet (their status tab is closed)
|
|
|
13 |
# - It logs out users whose MAC address is used by other systems (usurped)
|
| 672 |
richard |
14 |
|
| 1469 |
richard |
15 |
CONF_FILE="/usr/local/etc/alcasar.conf"
|
|
|
16 |
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2` # EXTernal InterFace
|
|
|
17 |
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2` # INTernal InterFace
|
| 2474 |
tom.houday |
18 |
private_ip_mask=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
|
| 786 |
richard |
19 |
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
|
| 2864 |
rexy |
20 |
PRIVATE_IP="192.168.182.1"
|
|
|
21 |
PRIVATE_IP="192.168.182.1"
|
| 2841 |
rexy |
22 |
current_users_file="/tmp/current_users.txt" # file containing active users with their "status.php" tab open
|
| 316 |
richard |
23 |
DIR_WEB="/var/www/html"
|
| 360 |
richard |
24 |
Index_Page="$DIR_WEB/index.php"
|
| 1472 |
richard |
25 |
IPTABLES="/sbin/iptables"
|
| 2250 |
tom.houday |
26 |
TUNIF="tun0" # listen device for chilli daemon
|
| 597 |
richard |
27 |
OLDIFS=$IFS
|
| 1 |
root |
28 |
IFS=$'\n'
|
| 308 |
richard |
29 |
|
| 783 |
richard |
30 |
function lan_down_alert ()
|
| 1157 |
stephane |
31 |
# users are redirected on ALCASAR IP address if a LAN problem is detected
|
| 308 |
richard |
32 |
{
|
| 783 |
richard |
33 |
case $LAN_DOWN in
|
| 308 |
richard |
34 |
"1")
|
| 2537 |
tom.houday |
35 |
logger -t alcasar-watchdog "$EXTIF (WAN card) link down"
|
| 1474 |
richard |
36 |
echo "$EXTIF (WAN card) link down"
|
| 1469 |
richard |
37 |
/bin/sed -i "s?diagnostic =.*?diagnostic = \"$EXTIF (WAN card) link down\";?g" $Index_Page
|
| 308 |
richard |
38 |
;;
|
|
|
39 |
"2")
|
| 2539 |
tom.houday |
40 |
logger -t alcasar-watchdog "can't contact the default router"
|
| 987 |
richard |
41 |
echo "can't contact the default router"
|
| 363 |
richard |
42 |
/bin/sed -i "s?diagnostic =.*?diagnostic = \"can't contact the default router\";?g" $Index_Page
|
| 308 |
richard |
43 |
;;
|
| 2864 |
rexy |
44 |
"3")
|
|
|
45 |
logger -t alcasar-watchdog "can't resolv DNS queries"
|
|
|
46 |
echo "can't resolv DNS queries"
|
|
|
47 |
/bin/sed -i "s?diagnostic =.*?diagnostic = \"can't resolv DNS queries\";?g" $Index_Page
|
|
|
48 |
;;
|
| 308 |
richard |
49 |
esac
|
| 2250 |
tom.houday |
50 |
net_pb=`grep "network_pb = true;" $Index_Page|wc -l`
|
| 2454 |
tom.houday |
51 |
if [ $net_pb = "0" ] # user alert (only the first time)
|
| 308 |
richard |
52 |
then
|
| 2250 |
tom.houday |
53 |
/bin/sed -i "s?^\$network_pb.*?\$network_pb = true;?g" $Index_Page
|
| 1472 |
richard |
54 |
$IPTABLES -I PREROUTING -t nat -i $TUNIF -p udp --dport domain -j REDIRECT --to-port 56
|
| 308 |
richard |
55 |
fi
|
|
|
56 |
}
|
|
|
57 |
|
| 783 |
richard |
58 |
function lan_test ()
|
|
|
59 |
# LAN connectiivity testing
|
|
|
60 |
{
|
| 784 |
richard |
61 |
watchdog_process=`ps -C alcasar-watchdog.sh|wc -l`
|
|
|
62 |
if [[ $(expr $watchdog_process) -gt 3 ]]
|
|
|
63 |
then
|
|
|
64 |
echo "ALCASAR watchdog is already running"
|
|
|
65 |
exit 0
|
|
|
66 |
fi
|
| 783 |
richard |
67 |
# EXTIF testing
|
|
|
68 |
LAN_DOWN="0"
|
| 1472 |
richard |
69 |
if [ `/sbin/ip link | grep $EXTIF|grep "NO-CARRIER" | wc -l` -eq "1" ]
|
| 783 |
richard |
70 |
then
|
|
|
71 |
LAN_DOWN="1"
|
| 308 |
richard |
72 |
fi
|
| 783 |
richard |
73 |
# Default GW testing
|
|
|
74 |
if [ $LAN_DOWN -eq "0" ]
|
| 308 |
richard |
75 |
then
|
| 2830 |
rexy |
76 |
GW_EXIST=`/sbin/ip route list|grep ^default|wc -l`
|
|
|
77 |
if [ $GW_EXIST -eq "0" ] # no GW defined !
|
| 2376 |
tom.houday |
78 |
then
|
| 2830 |
rexy |
79 |
systemctl restart network
|
|
|
80 |
else
|
|
|
81 |
IP_GW=`/sbin/ip route list|grep ^default|cut -d" " -f3`
|
|
|
82 |
arp_reply=`/usr/sbin/arping -I$EXTIF -c1 $IP_GW|grep response|cut -d" " -f2`
|
|
|
83 |
if [ $arp_reply -eq "0" ]
|
|
|
84 |
then
|
|
|
85 |
LAN_DOWN="2"
|
|
|
86 |
fi
|
| 783 |
richard |
87 |
fi
|
| 308 |
richard |
88 |
fi
|
| 2871 |
rexy |
89 |
# DNS request testing (twice)
|
| 2864 |
rexy |
90 |
if [ $LAN_DOWN -eq "0" ]
|
|
|
91 |
then
|
| 2871 |
rexy |
92 |
dns_reply=`/usr/bin/host -W1 www.free.fr|grep SERVFAIL|wc -l`
|
| 2864 |
rexy |
93 |
if [ $dns_reply -eq "1" ]
|
|
|
94 |
then
|
| 2871 |
rexy |
95 |
dns_reply=`/usr/bin/host -W1 www.startpage.com|grep SERVFAIL|wc -l`
|
|
|
96 |
if [ $dns_reply -eq "1" ]
|
|
|
97 |
then LAN_DOWN="3"
|
|
|
98 |
fi
|
| 2864 |
rexy |
99 |
fi
|
|
|
100 |
fi
|
| 783 |
richard |
101 |
# if LAN pb detected, users are warned
|
|
|
102 |
if [ $LAN_DOWN != "0" ]
|
|
|
103 |
then
|
|
|
104 |
lan_down_alert
|
|
|
105 |
# else switch in normal mode
|
|
|
106 |
else
|
| 987 |
richard |
107 |
echo "Internet access is OK for now"
|
| 2250 |
tom.houday |
108 |
net_pb=`grep "network_pb = true;" $Index_Page|wc -l`
|
| 783 |
richard |
109 |
if [ $net_pb != "0" ]
|
|
|
110 |
then
|
| 2250 |
tom.houday |
111 |
/bin/sed -i "s?^\$network_pb.*?\$network_pb = false;?g" $Index_Page
|
| 1472 |
richard |
112 |
$IPTABLES -D PREROUTING -t nat -i $TUNIF -p udp --dport domain -j REDIRECT --to-port 56
|
| 783 |
richard |
113 |
fi
|
|
|
114 |
fi
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
usage="Usage: alcasar-watchdog.sh {-lt --lan_test}"
|
|
|
118 |
case $1 in
|
|
|
119 |
-\? | -h* | --h*)
|
|
|
120 |
echo "$usage"
|
|
|
121 |
exit 0
|
|
|
122 |
;;
|
|
|
123 |
-lt | --lan_test)
|
|
|
124 |
lan_test
|
|
|
125 |
exit 0
|
|
|
126 |
;;
|
|
|
127 |
*)
|
|
|
128 |
lan_test
|
| 2108 |
richard |
129 |
# We disconnect inactive users (its means that their 'status.php' tab has been closed --> their ip address isn't in $current_users_file)
|
|
|
130 |
# process each equipment known by chilli to check if IP address is usurped (with arping)
|
| 2394 |
tom.houday |
131 |
for system in `/usr/sbin/chilli_query list | grep -v "0\.0\.0\.0"`
|
| 783 |
richard |
132 |
do
|
|
|
133 |
active_ip=`echo $system |cut -d" " -f2`
|
|
|
134 |
active_session=`echo $system |cut -d" " -f5`
|
|
|
135 |
active_mac=`echo $system | cut -d" " -f1`
|
| 840 |
richard |
136 |
active_user=`echo $system |cut -d" " -f6`
|
| 2394 |
tom.houday |
137 |
# We disconnect inactive user here :
|
| 2516 |
rexy |
138 |
# We check if the user isn't an auth @MAC and if he is still connected
|
| 2108 |
richard |
139 |
if [ "$active_user" != "$active_mac" ] && [ $(expr $active_session) -eq 1 ]; then
|
| 2107 |
raphael.pi |
140 |
if [ -e $current_users_file ]; then
|
|
|
141 |
# We check if user @IP is in 'current_users.txt'
|
| 2394 |
tom.houday |
142 |
cmp_user_ok=$(cat $current_users_file | awk -F':' "\$1 == \"$active_ip\" {print \$2}")
|
| 2108 |
richard |
143 |
# If not we disconnect this user.
|
| 2394 |
tom.houday |
144 |
if [ -z "$cmp_user_ok" ]; then
|
| 2883 |
rexy |
145 |
logger -t alcasar-watchdog "$active_ip ($active_mac) doesn't contact ALCASAR any more. We disconnects the user ($active_user)."
|
| 2107 |
raphael.pi |
146 |
/usr/sbin/chilli_query logout $active_mac
|
| 2394 |
tom.houday |
147 |
elif [ "$cmp_user_ok" == "TEMP" ]; then
|
| 2883 |
rexy |
148 |
# Remove the user's IP from 'current_users.txt'. Every user status page need to insert their @IP everytime to prove their connectivity.
|
|
|
149 |
# We don't disconnect when $cmp_user_ok == "PERM" (status page not needed)
|
| 2394 |
tom.houday |
150 |
sed -i "/^$active_ip:$cmp_user_ok\$/d" $current_users_file
|
| 2107 |
raphael.pi |
151 |
fi
|
| 2278 |
richard |
152 |
else # "current_user.txt" does not exists. We disconnect every users.
|
| 2841 |
rexy |
153 |
logger -t alcasar-watchdog "The file /tmp/current_users.txt doesn't' exist. We disconnects the user $active_user"
|
| 2107 |
raphael.pi |
154 |
/usr/sbin/chilli_query logout $active_mac
|
|
|
155 |
fi
|
|
|
156 |
fi
|
| 2108 |
richard |
157 |
# IP usurpation test : process only equipment with an authenticated user
|
| 783 |
richard |
158 |
if [[ $(expr $active_session) -eq 1 ]]
|
| 1157 |
stephane |
159 |
then
|
| 2278 |
richard |
160 |
arp_reply=`/usr/sbin/arping -b -I$INTIF -s$PRIVATE_IP -c1 -w4 $active_ip|grep -c "Unicast reply"`
|
|
|
161 |
# disconnect users whose equipement is usurped. For example, if there are 2 same @MAC it will make 2 lines in output.
|
|
|
162 |
if [[ $(expr $arp_reply) -gt 1 ]]
|
| 2376 |
tom.houday |
163 |
then
|
| 2455 |
tom.houday |
164 |
echo "[$(date +"%Y-%m-%d %H:%M:%S")] : alcasar-watchdog : $active_ip is usurped ($active_mac). Alcasar disconnect the user ($active_user)." >> /var/Save/security/watchdog.log
|
| 2537 |
tom.houday |
165 |
logger -t alcasar-watchdog "$active_ip is usurped ($active_mac). Alcasar disconnect the user ($active_user)."
|
| 783 |
richard |
166 |
/usr/sbin/chilli_query logout $active_mac
|
| 1500 |
richard |
167 |
chmod 644 /var/Save/security/watchdog.log
|
| 783 |
richard |
168 |
fi
|
|
|
169 |
fi
|
|
|
170 |
done
|
|
|
171 |
;;
|
| 2454 |
tom.houday |
172 |
esac
|
| 597 |
richard |
173 |
IFS=$OLDIFS
|