Subversion Repositories ALCASAR

Rev

Rev 3008 | Details | Compare with Previous | Last modification | View Log

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