Subversion Repositories ALCASAR

Rev

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

Rev Author Line No. Line
2223 tom.houday 1
#!/bin/bash
64 franck 2
# $Id: alcasar-conf.sh 3195 2024-04-23 22:39:48Z rexy $
672 richard 3
 
4
# alcasar-conf.sh
865 richard 5
# by REXY
672 richard 6
# This script is distributed under the Gnu General Public License (GPL)
7
 
2744 rexy 8
# Ce script permet la mise à jour d'un ALCASAR
9
#	- (alcasar-conf.sh -create) : création de l'archive des fichiers de configuration (/var/tmp/alcasar-conf.tar.gz)
10
#	- (alcasar-conf.sh -load) : chargement de l'archive des fichiers de configuration. Le cas échéant, c'est ici qu'on met à jour les fichiers entre versions
11
#	- (alcasar-conf.sh -apply) : application des directives du fichier de conf central "/usr/local/etc/alcasar.conf". Peut aussi être exploité à chaud après avoir changé des valeurs du fichier de conf.
2570 rexy 12
# This script allows ALCASAR update
2744 rexy 13
#	- (alcasar-conf.sh -create) : create the configuration files backup (/var/tmp/alcasar-conf.tar.gz)
14
#	- (alcasar-conf.sh -load) : load the backup of configuration files. If needed, it's here we update files between versions
15
#	- (alcasar-conf.sh -load) : apply ALCASAR central configuration file "/usr/local/etc/alcasar.conf". Can be use after changes of conf file values.
672 richard 16
 
2585 tom.houday 17
DIR_UPDATE="/var/tmp/conf"				# répertoire de stockage des fichier de conf pour une mise à jour
2247 tom.houday 18
DIR_WEB="/var/www/html"					# répertoire du centre de gestion
19
DIR_BIN="/usr/local/bin"				# scripts directory
20
DIR_ETC="/usr/local/etc"				# conf directory
2688 lucas.echa 21
DIR_E2G="/etc/e2guardian/lists"			# Toulouse BL directory
22
DIR_BLACKLIST="$DIR_E2G/blacklists"		# Toulouse BL directory
2878 rexy 23
CONF_FILE="$DIR_ETC/alcasar.conf"		# main alcasar conf file
24
PASSWD_FILE="/root/ALCASAR-passwords.txt"
25
DB_USER=$(grep '^db_user=' $PASSWD_FILE | cut -d'=' -f 2-)
26
DB_PASS=$(grep '^db_password=' $PASSWD_FILE | cut -d'=' -f 2-)
2247 tom.houday 27
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`		# EXTernal InterFace
28
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`		# INTernal InterFace
29
MTU=`grep ^PUBLIC_MTU= $CONF_FILE|cut -d"=" -f2`
1890 franck 30
DHCP_mode=`grep ^DHCP= $CONF_FILE|cut -d"=" -f2`
31
INT_DNS_mode=`grep ^INT_DNS_ACTIVE= $CONF_FILE|cut -d"=" -f2`
2247 tom.houday 32
HOSTNAME=`grep ^HOSTNAME= $CONF_FILE|cut -d"=" -f2`
33
DOMAIN=`grep ^DOMAIN= $CONF_FILE|cut -d"=" -f2`
2899 rexy 34
DOMAIN=${DOMAIN:=localdomain}
35
DNS1=`grep ^DNS1= $CONF_FILE | cut -d'=' -f2` 		# To configure WL domain names
36
HTTPS_LOGIN=`grep ^HTTPS_LOGIN= $CONF_FILE | cut -d'=' -f2`
384 richard 37
SED="/bin/sed -i"
2247 tom.houday 38
 
628 richard 39
private_network_calc ()
40
{
1060 richard 41
	PRIVATE_PREFIX=`/bin/ipcalc -p $PRIVATE_IP $PRIVATE_NETMASK |cut -d"=" -f2`				# prefixe du réseau (ex. 24)
2561 rexy 42
	PRIVATE_NETWORK=`/bin/ipcalc -n $PRIVATE_IP $PRIVATE_NETMASK| cut -d"=" -f2`			# @ réseau de consultation (ex.: 192.168.182.0)
43
	PRIVATE_NETWORK_MASK=$PRIVATE_NETWORK/$PRIVATE_PREFIX									# @ + masque du réseau de consult (192.168.182.0/24)
2688 lucas.echa 44
	classe=$((PRIVATE_PREFIX/8)); classe_sup=`expr $classe + 1`;							# classes de réseau (ex.: 2=classe B, 3=classe C)
1060 richard 45
	PRIVATE_NETWORK_SHORT=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`.					# @ compatible hosts.allow et hosts.deny (ex.: 192.168.182.)
46
	PRIVATE_BROADCAST=`/bin/ipcalc -b $PRIVATE_NETWORK_MASK | cut -d"=" -f2`				# private network broadcast (ie.: 192.168.182.255)
2561 rexy 47
	private_broadcast_ending=`echo $PRIVATE_BROADCAST | cut -d"." -f$classe_sup`			# last octet of LAN broadcast
48
	private_ip_ending=`echo $PRIVATE_IP | cut -d"." -f4`									# last octet of LAN address
49
	PRIVATE_SECOND_IP=`echo $PRIVATE_IP | cut -d"." -f1-3`"."`expr $private_ip_ending + 1`	# second network address (ex.: 192.168.182.2)
1060 richard 50
	PRIVATE_LAST_IP=`echo $PRIVATE_BROADCAST | cut -d"." -f1-3`"."`expr $private_broadcast_ending - 1`	# last network address (ex.: 192.168.182.254)
1581 richard 51
	PRIVATE_MAC=`/sbin/ip link show $INTIF | grep ether | cut -d" " -f6| sed 's/:/-/g'| awk '{print toupper($0)}'`	# MAC address of INTIF
628 richard 52
}
8 franck 53
 
933 franck 54
usage="Usage: alcasar-conf.sh {--create or -create} | {--load or -load} | {--apply or -apply}"
8 franck 55
nb_args=$#
56
args=$1
57
if [ $nb_args -eq 0 ]
58
then
2430 tom.houday 59
	nb_args=1
8 franck 60
	args="-h"
61
fi
62
case $args in
63
	-\? | -h* | --h*)
64
		echo "$usage"
65
		exit 0
66
		;;
2874 rexy 67
###################################################
68
##           Create an archive conf file         ##
69
###################################################
70
--create|-create)
8 franck 71
		[ -d $DIR_UPDATE ] && rm -rf $DIR_UPDATE
72
		mkdir $DIR_UPDATE
1916 franck 73
# backup the users database  (test to delete in future version)
2664 tom.houday 74
		$DIR_BIN/alcasar-mysql.sh --dump
2688 lucas.echa 75
		cp /var/Save/base/"$(ls -1t /var/Save/base|head -1)" $DIR_UPDATE
2824 rexy 76
# backup organism logo
8 franck 77
		cp -f $DIR_WEB/images/organisme.png $DIR_UPDATE
3195 rexy 78
# backup E2D BL/WL custom files
1914 richard 79
		mkdir $DIR_UPDATE/custom_bl
3195 rexy 80
		for i in urlregexplist exceptionsitelist bannedurllist
2541 rexy 81
		do
3195 rexy 82
			cp $DIR_E2G/group1/$i $DIR_UPDATE/custom_bl/
2541 rexy 83
		done
3195 rexy 84
		cp $DIR_E2G/common/exceptioniplist $DIR_UPDATE/custom_bl/
85
		cp -rf $DIR_BLACKLIST/ossi-* $DIR_UPDATE/custom_bl/ 2>/dev/null
2824 rexy 86
# backup conf files (main conf file, filtering, digest, etc.)
8 franck 87
		mkdir $DIR_UPDATE/etc/
346 richard 88
		cp -rf $DIR_ETC/* $DIR_UPDATE/etc/
2825 rexy 89
		cp -f /etc/hosts $DIR_UPDATE/etc/
1758 richard 90
# backup of the security certificates (server & CA)
2561 rexy 91
		cp -f /etc/pki/tls/certs/alcasar.crt* $DIR_UPDATE
92
		cp -f /etc/pki/tls/private/alcasar.key* $DIR_UPDATE
2570 rexy 93
		[ -e /etc/pki/tls/private/alcasar.pem ] && cp -f /etc/pki/tls/private/alcasar.pem $DIR_UPDATE # since V3.3
1564 richard 94
		cp -f /etc/pki/CA/alcasar-ca.crt $DIR_UPDATE
95
		cp -f /etc/pki/CA/private/alcasar-ca.key $DIR_UPDATE
2813 rexy 96
		if [ -e /etc/pki/tls/certs/server-chain.pem ]; then
97
			cp -f /etc/pki/tls/certs/server-chain.pem $DIR_UPDATE # autosigned and official if exist
510 richard 98
		else
2813 rexy 99
			cp -f /etc/pki/tls/certs/alcasar.crt $DIR_UPDATE/server-chain.pem
510 richard 100
		fi
2875 rexy 101
# backup gammu conf file (if necessary)
102
		SMS=`grep ^SMS= $CONF_FILE|cut -d"=" -f2`
103
		if [ "$SMS" == "on" ]
104
			then
105
			cp -f /etc/gammurc $DIR_UPDATE
106
			cp -f /etc/gammu_smsd_conf $DIR_UPDATE
107
		fi
1758 richard 108
# archive file creation
2688 lucas.echa 109
		cd /var/tmp || { echo "Unable to find /var/tmp directory"; }
8 franck 110
		tar -cf alcasar-conf.tar conf/
111
		gzip -f alcasar-conf.tar
2835 rexy 112
		cp alcasar-conf.tar.gz /var/www/html/acc/backup/alcasar-conf.tar.gz
113
		chown apache:apache /var/www/html/acc/backup/alcasar-conf.tar.gz
8 franck 114
		rm -rf $DIR_UPDATE
115
		;;
2560 rexy 116
 
2874 rexy 117
###################################################
118
##           Load an archive conf file           ##
119
###################################################
389 franck 120
	--load|-load)
3163 rexy 121
		if [ ! -f /var/tmp/alcasar-conf.tar.gz ]; then
122
			echo "Conf file not found (/var/tmp/alcasar-conf.tar.gz) !"
123
			return 1
124
		fi
3018 rexy 125
		CURRENT_DIR=`pwd`  # install folder
3163 rexy 126
		cd /var/tmp
2834 rexy 127
		tar -xf alcasar-conf.tar.gz
2956 rexy 128
# update alcasar.conf parameters
2561 rexy 129
		PREVIOUS_VERSION=`grep ^VERSION= $DIR_UPDATE/etc/alcasar.conf|cut -d"=" -f2`
130
		MAJ_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f1`
131
		MIN_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f2`
132
		UPD_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f3|cut -c1`
2875 rexy 133
		for line in `cat $DIR_UPDATE/etc/alcasar.conf | grep "=" | grep -Ev "^#| |VERSION|INSTALL_DATE|PUBLIC|GW|EXTIF|INTIF"`
2824 rexy 134
		do
135
			key=`echo $line | cut -d"=" -f1`
136
			key=$key=
137
			value=`echo $line|cut -d"=" -f2-`
138
			if [ "$value" != "" ]
139
				then
140
				sed -i "s?^$key.*?$key$value?g" /usr/local/etc/alcasar.conf
141
			fi
142
		done
2874 rexy 143
# lighttpd need a .pem certificate (aggregation with private key & server crt)
2665 tom.houday 144
		[ ! -f $DIR_UPDATE/alcasar.pem ] && (cat $DIR_UPDATE/alcasar.key; echo; cat $DIR_UPDATE/alcasar.crt) > $DIR_UPDATE/alcasar.pem
2824 rexy 145
# Retrieve organism logo
510 richard 146
		[ -e $DIR_UPDATE/organisme.png ] && cp -f $DIR_UPDATE/organisme.png $DIR_WEB/images/
8 franck 147
		chown apache:apache $DIR_WEB/images/organisme.png $DIR_WEB/intercept.php
1060 richard 148
# Retrieve the security certificates (CA and server)
2571 rexy 149
		cp -f $DIR_UPDATE/alcasar-ca.crt /etc/pki/CA/
150
		cp -f $DIR_UPDATE/alcasar-ca.key /etc/pki/CA/private/
1758 richard 151
		cp -f $DIR_UPDATE/alcasar.crt /etc/pki/tls/certs/
152
		cp -f $DIR_UPDATE/alcasar.key /etc/pki/tls/private/
2688 lucas.echa 153
		cp -f $DIR_UPDATE/alcasar.pem /etc/pki/tls/private/
2813 rexy 154
		[ -e $DIR_UPDATE/server-chain.pem ] && cp -f $DIR_UPDATE/server-chain.pem /etc/pki/tls/certs/ # autosigned and official if exist
2825 rexy 155
		chmod 755 /etc/pki/
2811 rexy 156
		chown root:apache /etc/pki/CA; chmod 750 /etc/pki/CA
2825 rexy 157
		chown root:apache /etc/pki/CA/alcasar-ca.crt; chmod 640 /etc/pki/CA/alcasar-ca.crt
2811 rexy 158
		chown root:root /etc/pki/CA/private; chmod 700 /etc/pki/CA/private
159
		chmod 600 /etc/pki/CA/private/*
160
		chown -R root:apache /etc/pki/tls/private; chmod 750 /etc/pki/tls/private
161
		chmod 640 /etc/pki/tls/private/*
3170 rexy 162
		chmod 644 /etc/pki/tls/certs/*
1060 richard 163
# Import of the users database
2688 lucas.echa 164
		$DIR_BIN/alcasar-mysql.sh --import "$(ls $DIR_UPDATE/alcasar-users-database*)"
1914 richard 165
# Retrieve local parameters
2825 rexy 166
		[ -d $DIR_UPDATE/etc/digest ] && cp -rf $DIR_UPDATE/etc/digest $DIR_ETC/  # ACC accounts
167
		[ -e $DIR_UPDATE/etc/alcasar-iptables-local.sh ] && cp -f $DIR_UPDATE/etc/alcasar-iptables-local.sh $DIR_ETC/   # local FW rules
168
		[ -e $DIR_UPDATE/etc/alcasar-iptables-local-mac-filtered ] && cp -f $DIR_UPDATE/etc/alcasar-iptables-local-mac-filtered $DIR_ETC/   # blocked MAC addresses
3152 rexy 169
		[ -e $DIR_UPDATE/etc/alcasar-services ] && cp -f $DIR_UPDATE/etc/alcasar-services $DIR_ETC/ # protocols filtering for users (profil 3 : customized with ACC)
2825 rexy 170
		[ -e $DIR_UPDATE/etc/alcasar-uamdomain ] && cp -f $DIR_UPDATE/etc/alcasar-uamdomain $DIR_ETC/ # exception domain names
171
		[ -e $DIR_UPDATE/etc/alcasar-uamallowed ] && cp -f $DIR_UPDATE/etc/alcasar-uamallowed $DIR_ETC/ # exception IP_addresses or network_IP_addresses
172
		[ -e $DIR_UPDATE/etc/alcasar-ethers ] && cp -f $DIR_UPDATE/etc/alcasar-ethers $DIR_ETC/ # DHCP static hosts
173
		[ -e $DIR_UPDATE/etc/alcasar-ethers-info ] && cp -f $DIR_UPDATE/etc/alcasar-ethers-info $DIR_ETC/ # DHCP static hosts information
2833 rexy 174
		[ -e $DIR_UPDATE/etc/hosts ] && cp -f $DIR_UPDATE/etc/hosts /etc/  # local host name resolution
2874 rexy 175
		[ -e $DIR_UPDATE/etc/alcasar-letsencrypt ] && cp -f $DIR_UPDATE/etc/alcasar-letsencrypt $DIR_ETC/ # Letsencrypt local conf
176
		[ -d $DIR_UPDATE/etc/letsencrypt ] && cp -rf $DIR_UPDATE/etc/letsencrypt $DIR_ETC/  # Letsencrypt local conf files
2875 rexy 177
		[ -e $DIR_UPDATE/gammurc ] && cp -f $DIR_UPDATE/gammurc /etc/ # Gammu conf file
178
		[ -e $DIR_UPDATE/gammu_smsd_conf ] && cp -f $DIR_UPDATE/gammu_smsd_conf /etc/ # Gammu_smsd conf file
1914 richard 179
# Retrieve BL/WL custom files
3195 rexy 180
		cp -f $DIR_UPDATE/custom_bl/exceptioniplist $DIR_E2G/common/ 
181
		cp -f $DIR_UPDATE/custom_bl/exceptionsitelist $DIR_E2G/group1/
2688 lucas.echa 182
		cp -f $DIR_UPDATE/custom_bl/urlregexplist $DIR_E2G/
3195 rexy 183
		cp -f $DIR_UPDATE/custom_bl/bannedurllist $DIR_E2G/group1/
1961 richard 184
		cp -rf $DIR_UPDATE/custom_bl/ossi-* $DIR_BLACKLIST/ 2>/dev/null
2688 lucas.echa 185
		chown -R e2guardian:apache $DIR_E2G
186
		chmod -R g+rw $DIR_E2G
1060 richard 187
# Adapt DNS/URL filtering
188
		PARENT_SCRIPT=`basename $0`
637 richard 189
		export PARENT_SCRIPT
1946 richard 190
		$DIR_BIN/alcasar-bl.sh -cat_choice
1827 raphael.pi 191
		$DIR_BIN/alcasar-bl.sh -reload
1060 richard 192
# admin profile update (admin + manager + backup)
1827 raphael.pi 193
		$DIR_BIN/alcasar-profil.sh --list
3018 rexy 194
# Apply changes between versions
3103 rexy 195
##   V5.5 --> V6.0
196
		## remove dnsmasq service
3099 rexy 197
		[ -e /etc/dnsmasq-whitelist.conf ] && rm -f /etc/dnsmasq*
198
		[ -e /etc/systemd/system/dnsmasq-whitelist.service ] && rm -f /etc/systemd/system/dnsmasq* && urpme dnsmasq
1060 richard 199
# Remove the update folder
8 franck 200
		rm -rf $DIR_UPDATE
201
		;;
2560 rexy 202
 
2874 rexy 203
####################################################
204
##   Configure ALCASAR according to alcasar.conf  ##
205
####################################################
628 richard 206
	--apply|-apply)
994 franck 207
		PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\/([012]?[0-9]|3[0-2])\b"
2474 tom.houday 208
		PRIVATE_IP_MASK=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
3190 rexy 209
		if ! echo $PRIVATE_IP_MASK | grep -q -E $PTN
2688 lucas.echa 210
		then
628 richard 211
			echo "Syntax error for PRIVATE_IP_MASK ($PRIVATE_IP_MASK)"
212
			exit 0
213
		fi
2474 tom.houday 214
		PUBLIC_IP_MASK=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`
1590 richard 215
		PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b"
1585 richard 216
		if [[ "$PUBLIC_IP_MASK" == "dhcp" ]]
217
		then
218
			PUBLIC_GATEWAY="dhcp"
2947 rexy 219
			DHCP_DNS_servers=`cat /var/lib/dhclient/dhclient--$EXTIF.lease |grep domain-name-servers|sed -n "1 p"| rev|cut -d" " -f1|rev|tr -d ';'`
220
			DNS1=`echo $DHCP_DNS_servers | cut -d"," -f1`
221
			DNS2=`echo $DHCP_DNS_servers | cut -d"," -f2`
1585 richard 222
		else
3190 rexy 223
			if ! echo $PUBLIC_IP_MASK | grep -q -E $PTN
2688 lucas.echa 224
			then
1585 richard 225
				echo "Syntax error for PUBLIC_IP_MASK ($PUBLIC_IP_MASK)"
226
				exit 0
227
			fi
1590 richard 228
			PUBLIC_IP=`echo $PUBLIC_IP_MASK | cut -d"/" -f1`
229
			PUBLIC_NETMASK=`/bin/ipcalc -m $PUBLIC_IP_MASK | cut -d"=" -f2`
2474 tom.houday 230
			PUBLIC_GATEWAY=`grep ^GW= $CONF_FILE|cut -d"=" -f2`
3190 rexy 231
			if ! echo $PUBLIC_GATEWAY | grep -q -E $PTN
2688 lucas.echa 232
			then
1585 richard 233
				echo "Syntax error for the Gateway IP ($PUBLIC_GATEWAY)"
234
				exit 0
235
			fi
2947 rexy 236
			DNS1=`grep ^DNS1= $CONF_FILE|cut -d"=" -f2`
3190 rexy 237
			if ! echo $DNS1 | grep -q -E $PTN
2947 rexy 238
			then
239
				echo "Syntax error for the IP address of the first DNS server ($DNS1)"
240
				exit 0
241
			fi
242
			DNS2=`grep ^DNS2= $CONF_FILE|cut -d"=" -f2`
3190 rexy 243
			if ! echo $DNS2 | grep -q -E $PTN
2947 rexy 244
			then
245
				echo "Syntax error for the IP address of the second DNS server ($DNS2)"
246
				exit 0
247
			fi
628 richard 248
		fi
631 richard 249
		PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1`
632 richard 250
		PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2`
628 richard 251
		private_network_calc
2474 tom.houday 252
		INSTALL_DATE=`grep ^INSTALL_DATE= $CONF_FILE|cut -d"=" -f2`
253
		ORGANISME=`grep ^ORGANISM= $CONF_FILE|cut -d"=" -f2-`
2688 lucas.echa 254
		BL_SAFESEARCH=`grep ^BL_SAFESEARCH= $CONF_FILE|cut -d"=" -f2`
255
		WL_SAFESEARCH=`grep ^WL_SAFESEARCH= $CONF_FILE|cut -d"=" -f2`
256
		BL_PUREIP=`grep ^BL_PUREIP= $CONF_FILE|cut -d"=" -f2`
2474 tom.houday 257
		DHCP_mode=`grep ^DHCP= $CONF_FILE|cut -d"=" -f2`
1060 richard 258
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
933 franck 259
		then
2688 lucas.echa 260
			if [ "$DHCP_mode" = "off" ] || [ "$DHCP_mode" = "Off" ] || [ "$DHCP_mode" = "OFF" ]
1060 richard 261
			then
1827 raphael.pi 262
				$DIR_BIN/alcasar-dhcp.sh --off
1890 franck 263
			else
2569 lucas.echa 264
				$DIR_BIN/alcasar-dhcp.sh --on
1060 richard 265
			fi
2568 rexy 266
# Set the local DNS (or not)
2688 lucas.echa 267
			if [ "$INT_DNS_mode" = "on" ] || [ "$INT_DNS_mode" = "On" ] || [ "$INT_DNS_mode" = "ON" ]
1890 franck 268
			then
2947 rexy 269
				$DIR_BIN/alcasar-dns-local.sh --on-without-restart
1890 franck 270
			else
2947 rexy 271
				$DIR_BIN/alcasar-dns-local.sh --off-without-restart
1890 franck 272
			fi
2688 lucas.echa 273
# Set the pure ip option (or not)
274
			if [ "$BL_PUREIP" = "off" ] || [ "$BL_PUREIP" = "Off" ] || [ "$BL_PUREIP" = "OFF" ]
275
			then
276
				bl_filter_param+="--pureip_off"
277
			else
278
				bl_filter_param+="--pureip_on"
279
			fi
280
# Set the safesearch options (or not)
281
			bl_filter_param=""
282
			if [ "$BL_SAFESEARCH" = "on" ] || [ "$BL_SAFESEARCH" = "On" ] || [ "$BL_SAFESEARCH" = "ON" ]
283
			then
284
				bl_filter_param+="--safesearch_on "
285
			else
286
				bl_filter_param+="--safesearch_off "
287
			fi
288
			$DIR_BIN/alcasar-url_filter_bl.sh $bl_filter_param
289
			if [ "$WL_SAFESEARCH" = "on" ] || [ "$WL_SAFESEARCH" = "On" ] || [ "$WL_SAFESEARCH" = "ON" ]
290
			then
291
				$DIR_BIN/alcasar-url_filter_wl.sh --safesearch_on
292
			else
293
				$DIR_BIN/alcasar-url_filter_wl.sh --safesearch_off
294
			fi
295
# Reload the local dns configuration
296
			$DIR_BIN/alcasar-dns-local.sh --reload
1585 richard 297
# Logout everybody
2688 lucas.echa 298
			$DIR_BIN/alcasar-logout.sh all
1585 richard 299
# Services stop
1521 richard 300
			echo -n "Stop services : "
3099 rexy 301
			for i in ntpd e2guardian unbound unbound-whitelist unbound-blacklist unbound-blackhole chilli network lighttpd
1060 richard 302
			do
1574 richard 303
				/usr/bin/systemctl stop $i && echo -n "$i, "
1060 richard 304
			done
1521 richard 305
			echo
1060 richard 306
		fi
1518 richard 307
# EXTIF config
1585 richard 308
		if [ $PUBLIC_IP_MASK == "dhcp" ]
309
		then
310
			cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
311
DEVICE=$EXTIF
312
BOOTPROTO=dhcp
2870 rexy 313
DNS1=127.0.0.1
1585 richard 314
PEERDNS=no
315
RESOLV_MODS=yes
316
ONBOOT=yes
317
METRIC=10
318
MII_NOT_SUPPORTED=yes
319
IPV6INIT=no
320
IPV6TO4INIT=no
321
ACCOUNTING=no
322
USERCTL=no
323
MTU=$MTU
1850 franck 324
NOZEROCONF=yes
1585 richard 325
EOF
2974 rexy 326
		else # set the static configuration for EXTIF in multi-gw mode
327
			$DIR_BIN/alcasar-network.sh --apply
1585 richard 328
		fi
1518 richard 329
# INTIF config (for bypass mode only)
1554 richard 330
		$SED "s?^IPADDR=.*?IPADDR=$PRIVATE_IP?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
331
		$SED "s?^NETMASK=.*?NETMASK=$PRIVATE_NETMASK?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
628 richard 332
# NTP server
632 richard 333
		$SED "/127.0.0.1/!s?^restrict.*?restrict $PRIVATE_NETWORK mask $PRIVATE_NETMASK nomodify notrap?g" /etc/ntp.conf
2688 lucas.echa 334
# host.allow
628 richard 335
		cat <<EOF > /etc/hosts.allow
336
ALL: LOCAL, 127.0.0.1, localhost, $PRIVATE_IP
337
sshd: ALL
338
ntpd: $PRIVATE_NETWORK_SHORT
339
EOF
2309 tom.houday 340
# Set hostname
341
		hostnamectl set-hostname $HOSTNAME.$DOMAIN
2838 rexy 342
# /etc/hosts (retriving local hostnames)
343
		cp /etc/hosts /tmp/hosts
344
		echo "127.0.0.1	localhost" > /etc/hosts
345
		echo "$PRIVATE_IP	$HOSTNAME $HOSTNAME.$DOMAIN" >> /etc/hosts
346
		while read -r line
347
		do
348
				if ! echo $line | grep -E -q "^([0-9\.\t ]+alcasar( |$)|127\.0\.0)"
349
				then
350
					echo $line >> /etc/hosts
351
				fi
352
		done < /tmp/hosts
2861 rexy 353
		rm -f /tmp/hosts
2603 tom.houday 354
# MOTD
355
		$SED "s@'https://\(.\+\)/acc'@'https://$HOSTNAME.$DOMAIN/acc'@" /etc/mageia-release
2568 rexy 356
# Lighttpd
2688 lucas.echa 357
		$SED "s?^server\.bind.*?server\.bind = \"$PRIVATE_IP\"?g" /etc/lighttpd/lighttpd.conf
2964 rexy 358
		$SED 's/^$SERVER\["socket"\] == ".*:443.*/$SERVER\["socket"\] == "'"$PRIVATE_IP"':443" {/g' /etc/lighttpd/vhosts.d/alcasar-with-ssl.conf /etc/lighttpd/vhosts.d/alcasar-without-ssl.conf
359
		$SED "s/^\([\t ]*\)var.server_name.*/\1var.server_name = \"$PRIVATE_IP\"/g" /etc/lighttpd/vhosts.d/alcasar-with-ssl.conf /etc/lighttpd/vhosts.d/alcasar-without-ssl.conf
2744 rexy 360
# FreeRADIUS
634 richard 361
		$SED "s?^nas1_name:.*?nas1_name: alcasar-$ORGANISME?g" /etc/freeradius-web/naslist.conf
362
		$SED "s?^nas1_ip:.*?nas1_ip: $PRIVATE_IP?g" /etc/freeradius-web/naslist.conf
2707 tom.houday 363
# CoovaChilli
2568 rexy 364
		$SED "s/^uamallowed.*/uamallowed\t$HOSTNAME,$HOSTNAME.$DOMAIN/g" /etc/chilli.conf
365
		$SED "s/^locationname.*/locationname\t$HOSTNAME.$DOMAIN/g" /etc/chilli.conf
2707 tom.houday 366
		$SED "s/^domain.*/domain\t\t$DOMAIN/g" /etc/chilli.conf
2688 lucas.echa 367
		[ "`grep ^HTTPS_LOGIN= $CONF_FILE | cut -d'=' -f2`" == "on" ] && chilli_login_protocol="https" || chilli_login_protocol="http"
2568 rexy 368
		$SED "s/^uamserver.*/uamserver\t$chilli_login_protocol:\/\/$HOSTNAME.$DOMAIN\/intercept.php/" /etc/chilli.conf
369
		$SED "s/^radiusnasid.*/radiusnasid\t$HOSTNAME.$DOMAIN/g" /etc/chilli.conf
634 richard 370
		$SED "s?^net.*?net\t\t$PRIVATE_NETWORK_MASK?g" /etc/chilli.conf
371
		$SED "s?^dns1.*?dns1\t\t$PRIVATE_IP?g" /etc/chilli.conf
372
		$SED "s?^dns2.*?dns2\t\t$PRIVATE_IP?g" /etc/chilli.conf
373
		$SED "s?^uamlisten.*?uamlisten\t$PRIVATE_IP?g" /etc/chilli.conf
3124 rexy 374
		PRIVATE_IP_HEXA=$(printf "%02x\n" "$(echo $PRIVATE_IP | cut -d'.' -f1)")$(printf "%02x\n" "$(echo $PRIVATE_IP | cut -d'.' -f2)")$(printf "%02x\n" "$(echo $PRIVATE_IP | cut -d'.' -f3)")$(printf "%02x\n" "$(echo $PRIVATE_IP | cut -d'.' -f4)")
375
		$SED "s?^dhcpopt.*?dhcpopt\t\t2a04$PRIVATE_IP_HEXA?g" /etc/chilli.conf
1581 richard 376
		# modify the DHCP static ip file. Reserve the second IP address for INTIF (the first one is for tun0). Keep previous entries
2274 richard 377
		$SED "s?^$PRIVATE_MAC.*?$PRIVATE_MAC $PRIVATE_SECOND_IP?" $DIR_ETC/alcasar-ethers $DIR_ETC/alcasar-ethers-info
2688 lucas.echa 378
# unbound
379
		# removing unbound configuration files
380
		rm -f /etc/unbound/conf.d/{forward,blacklist,whitelist,blackhole}/iface.*
381
		rm -f /etc/unbound/conf.d/common/forward-zone.conf
382
		# Configuration file for the dns servers forward-zone
383
		cat << EOF > /etc/unbound/conf.d/common/forward-zone.conf
384
forward-zone:
385
	name: "."
386
	forward-addr: $DNS1
387
	forward-addr: $DNS2
388
EOF
2813 rexy 389
		# Configuration file for lo of forward
2688 lucas.echa 390
		cat << EOF > /etc/unbound/conf.d/forward/iface.lo.conf
391
server:
392
	interface: 127.0.0.1@53
393
	access-control-view: 127.0.0.1/8 lo
394
view:
395
	name: "lo"
2864 rexy 396
	local-data: "$HOSTNAME A 127.0.0.1"
2831 rexy 397
	local-data: "$HOSTNAME.$DOMAIN A 127.0.0.1"
2864 rexy 398
	local-data-ptr: "127.0.0.1 $HOSTNAME.$DOMAIN"
2688 lucas.echa 399
	view-first: yes
400
EOF
2813 rexy 401
		# Configuration file for $INTIF of forward
2688 lucas.echa 402
		cat << EOF > /etc/unbound/conf.d/forward/iface.${INTIF}.conf
403
server:
404
	interface: ${PRIVATE_IP}@53
405
	access-control-view: $PRIVATE_NETWORK_MASK $INTIF
406
view:
407
	name: "$INTIF"
408
	view-first: yes
409
EOF
2813 rexy 410
		# Configuration file for $INTIF of blacklist
2688 lucas.echa 411
		cat << EOF > /etc/unbound/conf.d/blacklist/iface.${INTIF}.conf
412
server:
413
	interface: ${PRIVATE_IP}@54
414
	access-control: $PRIVATE_IP_MASK allow
415
	access-control-tag: $PRIVATE_IP_MASK "blacklist"
416
	access-control-tag-action: $PRIVATE_IP_MASK "blacklist" redirect
417
	access-control-tag-data: $PRIVATE_IP_MASK "blacklist" "A $PRIVATE_IP"
418
EOF
2813 rexy 419
		# Configuration file for $INTIF of whitelist
2688 lucas.echa 420
		cat << EOF > /etc/unbound/conf.d/whitelist/iface.${INTIF}.conf
421
server:
422
	interface: ${PRIVATE_IP}@55
423
	access-control: $PRIVATE_IP_MASK allow
424
	access-control-tag: $PRIVATE_IP_MASK "whitelist"
425
	access-control-tag-action: $PRIVATE_IP_MASK "whitelist" redirect
426
	access-control-tag-data: $PRIVATE_IP_MASK "whitelist" "A $PRIVATE_IP"
427
EOF
2871 rexy 428
        # Configuration file for $INTIF of blackhole unbound
429
        cat << EOF > /etc/unbound/conf.d/blackhole/iface.${INTIF}.conf
430
server:
431
	interface: ${PRIVATE_IP}@56
432
	access-control-view: $PRIVATE_NETWORK_MASK $INTIF
433
view:
434
	name: "$INTIF"
435
	local-zone: "." redirect
436
	local-data: ". A $PRIVATE_IP"
437
EOF
438
 
2688 lucas.echa 439
# dhcpd
440
		cat <<EOF > /etc/dhcpd.conf
441
ddns-update-style none;
442
subnet $PRIVATE_NETWORK netmask $PRIVATE_NETMASK {
443
	option routers $PRIVATE_IP;
444
	option subnet-mask $PRIVATE_NETMASK;
445
	option domain-name-servers $PRIVATE_IP;
446
	range dynamic-bootp $PRIVATE_SECOND_IP $PRIVATE_LAST_IP;
447
	default-lease-time 21600;
448
	max-lease-time 43200;
449
}
450
EOF
2838 rexy 451
$DIR_BIN/alcasar-dns-local.sh -hosts_to_unbound # add local name resolution to unbound (forward & blackhole)
2867 rexy 452
# E2guardian
2521 armand.ito 453
		$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" /etc/e2guardian/e2guardian.conf
2867 rexy 454
		$SED "s?\/\/[a-z.]*\/?\/\/$HOSTNAME.$DOMAIN\/?g" /usr/share/e2guardian/languages/french/alcasar-e2g.html
455
		$SED "s?\/\/[a-z.]*\/?\/\/$HOSTNAME.$DOMAIN\/?g" /usr/share/e2guardian/languages/ukenglish/alcasar-e2g.html
634 richard 456
# Prompts
457
		$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
458
# sudoers
459
		$SED "s?^Host_Alias.*?Host_Alias	LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost		#réseau de l'organisme?g" /etc/sudoers
2878 rexy 460
# gammu-smsd
461
		$SED "s?^user =.*?user = $DB_USER?g" /etc/gammu_smsd_conf
462
		$SED "s?^password =.*?password = $DB_PASS?g" /etc/gammu_smsd_conf
2899 rexy 463
# HTTPS login (Y/n)
464
        if [ "$HTTPS_LOGIN" = "on" ] || [ "$HTTPS_LOGIN" = "On" ] || [ "$HTTPS_LOGIN" = "ON" ]
465
        then
466
			$SED "s?^HTTPS_LOGIN=.*?HTTPS_LOGIN=on?" $CONF_FILE
467
			$SED "s?^HTTPS_CHILLI=.*?HTTPS_CHILLI=on?" $CONF_FILE
468
			$SED "s?^uamserver.*?uamserver\thttps://$HOSTNAME.$DOMAIN/intercept.php?" /etc/chilli.conf
469
			$SED "s?^#redirssl.*?redirssl?" /etc/chilli.conf
470
			$SED "s?^#uamuissl.*?uamuissl?" /etc/chilli.conf
471
			rm -f /etc/lighttpd/vhosts.d/alcasar.conf
472
			ln -s /etc/lighttpd/vhosts.d/alcasar-with-ssl.conf /etc/lighttpd/vhosts.d/alcasar.conf
473
		else
474
			$SED "s?^HTTPS_LOGIN=.*?HTTPS_LOGIN=off?" $CONF_FILE
475
			$SED "s?^HTTPS_CHILLI=.*?HTTPS_CHILLI=off?" $CONF_FILE
476
			$SED "s?^uamserver.*?uamserver\thttp://$HOSTNAME.$DOMAIN/intercept.php?" /etc/chilli.conf
477
			$SED "s?^redirssl.*?#&?" /etc/chilli.conf
478
			$SED "s?^uamuissl.*?#&?" /etc/chilli.conf
479
			rm -f /etc/lighttpd/vhosts.d/alcasar.conf
480
			ln -s /etc/lighttpd/vhosts.d/alcasar-without-ssl.conf /etc/lighttpd/vhosts.d/alcasar.conf
481
		fi
2878 rexy 482
# Services start
1060 richard 483
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
484
		then
1574 richard 485
			/usr/bin/systemctl start network && echo -n "Start service : network" && sleep 1
2309 tom.houday 486
			$DIR_BIN/alcasar-dhcp.sh -$DHCP_mode && echo -n ", chilli" # apply DHCP mode and start CoovaChilli
2840 rexy 487
			for i in unbound unbound-blackhole ntpd
2309 tom.houday 488
			do
489
				sleep 1
490
				/usr/bin/systemctl start $i && echo -n ", $i"
491
			done
3099 rexy 492
			$DIR_BIN/alcasar-bl.sh -reload && echo -n ", unbound-blacklist, unbound-whitelist, e2guardian, iptables"
2488 lucas.echa 493
			/usr/bin/systemctl restart lighttpd && echo -n ", lighttpd"
1060 richard 494
		fi
3018 rexy 495
# Email user registration
496
		$DIR_BIN/alcasar-mail-install.sh
2568 rexy 497
# Start / Stop LDAP authentification
2875 rexy 498
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
2568 rexy 499
		then
2875 rexy 500
			LDAP_mode=`grep ^LDAP= $CONF_FILE|cut -d"=" -f2`
501
			if [ $LDAP_mode = "on" ]
502
			then
503
				$DIR_BIN/alcasar-ldap.sh --on
504
			else
505
				$DIR_BIN/alcasar-ldap.sh --off
506
			fi
2568 rexy 507
		fi
2875 rexy 508
# Start / Stop Gammu-smsd (SMS)
509
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
510
		then
511
			SMS_mode=`grep ^SMS= $CONF_FILE|cut -d"=" -f2`
512
			if [ $SMS_mode = "on" ]
513
			then
514
				$DIR_BIN/alcasar-sms.sh --start
515
			fi
516
		fi
2568 rexy 517
		echo
628 richard 518
		;;
8 franck 519
	*)
2688 lucas.echa 520
		echo "Argument inconnu : $1";
8 franck 521
		echo "$usage"
522
		exit 1
523
		;;
524
esac