Subversion Repositories ALCASAR

Rev

Rev 2692 | Rev 2841 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
872 richard 1
#!/bin/sh
2234 richard 2
#
3
# $Id: alcasar-conup.sh 2712 2019-03-10 23:28:36Z tom.houdayer $
4
#
872 richard 5
# alcasar-conup.sh
6
# by Rexy
7
# This script is distributed under the Gnu General Public License (GPL)
8
 
2184 richard 9
# This script is launched by coova after each successfull login
10
# Ce script est lancé par coova à chaque connexion d'usager (authentification réussi)
872 richard 11
 
2501 tom.houday 12
PASSWD_FILE="/root/ALCASAR-passwords.txt"
13
 
2234 richard 14
if [ -z $FRAMED_IP_ADDRESS ]; then
15
	exit 1
2184 richard 16
fi
2069 richard 17
 
2501 tom.houday 18
# Add user to his IPSET
2006 raphael.pi 19
 
2712 tom.houday 20
db_query_additionalGroups=''
21
[ -n "$FILTER_ID" ] && db_query_additionalGroups="( SELECT attribute, value FROM radgroupreply WHERE groupname = '$FILTER_ID' AND (attribute IN ('Alcasar-Filter', 'Alcasar-Protocols-Filter', 'Alcasar-Status-Page-Must-Stay-Open')) ) UNION "
22
db_query="SELECT attribute, value FROM ( \
23
	( SELECT attribute, value FROM radreply      WHERE username  = '$USER_NAME' AND (attribute IN ('Alcasar-Filter', 'Alcasar-Protocols-Filter', 'Alcasar-Status-Page-Must-Stay-Open')) ) UNION \
24
	( SELECT attribute, value FROM radgroupreply gr LEFT JOIN radusergroup ug ON gr.groupname = ug.groupname WHERE username = '$USER_NAME' AND (attribute IN ('Alcasar-Filter', 'Alcasar-Protocols-Filter', 'Alcasar-Status-Page-Must-Stay-Open')) ORDER BY ug.priority ) UNION \
25
	$db_query_additionalGroups \
26
	( SELECT attribute, value FROM radgroupreply WHERE groupname = 'default'    AND (attribute IN ('Alcasar-Filter', 'Alcasar-Protocols-Filter', 'Alcasar-Status-Page-Must-Stay-Open')) ) \
27
) attrs GROUP BY attribute;"
2501 tom.houday 28
db_res=$(mysql -u root -p$(cat $PASSWD_FILE | grep ^db_root= | cut -d'=' -f2-) -D radius -e "$db_query" -Ns)
2006 raphael.pi 29
 
2692 tom.houday 30
filter=$(echo "$db_res"             | awk '$1 == "Alcasar-Filter"                     { print $2 }')
31
filterProto=$(echo "$db_res"        | awk '$1 == "Alcasar-Protocols-Filter"           { print $2 }')
2505 tom.houday 32
statusOpenRequired=$(echo "$db_res" | awk '$1 == "Alcasar-Status-Page-Must-Stay-Open" { print $2 }')
2501 tom.houday 33
 
34
if [ "$filter" == '4' ]; then	# HAVP_WL
2249 tom.houday 35
	set_filter="havp_wl"
2501 tom.houday 36
elif [ "$filter" == '3' ]; then	# HAVP_BL
2234 richard 37
	set_filter="havp_bl"
2501 tom.houday 38
elif [ "$filter" == '2' ]; then	# HAVP
2249 tom.houday 39
	set_filter="havp"
2501 tom.houday 40
else				# NOT_FILTERED
2234 richard 41
	set_filter="not_filtered"
2006 raphael.pi 42
fi
43
 
2501 tom.houday 44
if [ "$filterProto" == '4' ]; then	# PROFILE 3 (Custom)
45
	set_filterProto="proto_3";
46
elif [ "$filterProto" == '3' ]; then	# PROFILE 2 (WEB + Mail + Remote access)
47
	set_filterProto="proto_2";
48
elif [ "$filterProto" == '2' ]; then	# PROFILE 1 (WEB)
49
	set_filterProto="proto_1";
2234 richard 50
else					# PROFILE 0 (Not filtered)
2501 tom.houday 51
	set_filterProto="proto_0";
2006 raphael.pi 52
fi
53
 
2501 tom.houday 54
ipset add $set_filter      $FRAMED_IP_ADDRESS
55
ipset add $set_filterProto $FRAMED_IP_ADDRESS
2184 richard 56
 
2394 tom.houday 57
# Add user IP permanently to current_users.txt if no status_open_required
58
current_users_file="/var/tmp/havp/current_users.txt"
59
[ ! -e $current_users_file ] && touch $current_users_file && chown apache:apache $current_users_file
2501 tom.houday 60
if [ "$statusOpenRequired" == '2' ]; then	# no status_open_required
2394 tom.houday 61
	echo "$FRAMED_IP_ADDRESS:PERM" >> $current_users_file
62
fi
63
 
2501 tom.houday 64
# Debug : show all the coova parse variables (+ $set_filter + $set_filterProto).
2184 richard 65
# see "/src/chilli.c" for the complete list of parse variables
66
#echo "-----------------------------------------------" >> /tmp/debug-conup.txt
67
#echo `date` >> /tmp/debug-conup.txt
68
#for i in LAYER3 DEV NET MASK ADDR USER_NAME NAS_IP_ADDRESS SERVICE_TYPE FRAMED_IP_ADDRESS FILTER_ID STATE CLASS CUI SESSION_TIMEOUT IDLE_TIMEOUT CALLING_STATION_ID CALLED_STATION_ID NAS_ID NAS_PORT_TYPE ACCT_SESSION_ID ACCT_INTERIM_INTERVAL WISPR_LOCATION_ID WISPR_LOCATION_NAME WISPR_BANDWIDTH_MAX_UP WISPR_BANDWIDTH_MAX_DOWN WISPR-SESSION_TERMINATE_TIME CHILLISPOT_MAX_INPUT_OCTETS CHILLISPOT_MAX_OUTPUT_OCTETS CHILLISPOT_MAX_TOTAL_OCTETS INPUT_OCTETS OUTPUT_OCTETS SESSION_TIME IDLE_TIME LOCATION OLD_LOCATION TERMINATE_CAUSE
69
#do
70
#	echo "$i : ${!i}" >> /tmp/debug-conup.txt
71
#done
2234 richard 72
#echo "set_filter : $set_filter" >> /tmp/debug-conup.txt
2501 tom.houday 73
#echo "set_filterProto : $set_filterProto" >> /tmp/debug-conup.txt
2184 richard 74