Subversion Repositories ALCASAR

Rev

Rev 3286 | 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 3294 2025-07-20 22:26:38Z 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
3268 rexy 15
#	- (alcasar-conf.sh -apply) : 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`
3238 rexy 34
DOMAIN=${DOMAIN:=lan}
2899 rexy 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)
3269 rexy 74
		$DIR_BIN/alcasar-mariadb.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
3243 rexy 80
		for i in urlregexplist exceptionsitelist bannedurllist exceptionsiteiplist
2541 rexy 81
		do
3195 rexy 82
			cp $DIR_E2G/group1/$i $DIR_UPDATE/custom_bl/
2541 rexy 83
		done
3195 rexy 84
		cp -rf $DIR_BLACKLIST/ossi-* $DIR_UPDATE/custom_bl/ 2>/dev/null
2824 rexy 85
# backup conf files (main conf file, filtering, digest, etc.)
8 franck 86
		mkdir $DIR_UPDATE/etc/
346 richard 87
		cp -rf $DIR_ETC/* $DIR_UPDATE/etc/
2825 rexy 88
		cp -f /etc/hosts $DIR_UPDATE/etc/
1758 richard 89
# backup of the security certificates (server & CA)
2561 rexy 90
		cp -f /etc/pki/tls/certs/alcasar.crt* $DIR_UPDATE
91
		cp -f /etc/pki/tls/private/alcasar.key* $DIR_UPDATE
2570 rexy 92
		[ -e /etc/pki/tls/private/alcasar.pem ] && cp -f /etc/pki/tls/private/alcasar.pem $DIR_UPDATE # since V3.3
1564 richard 93
		cp -f /etc/pki/CA/alcasar-ca.crt $DIR_UPDATE
94
		cp -f /etc/pki/CA/private/alcasar-ca.key $DIR_UPDATE
2813 rexy 95
		if [ -e /etc/pki/tls/certs/server-chain.pem ]; then
96
			cp -f /etc/pki/tls/certs/server-chain.pem $DIR_UPDATE # autosigned and official if exist
510 richard 97
		else
2813 rexy 98
			cp -f /etc/pki/tls/certs/alcasar.crt $DIR_UPDATE/server-chain.pem
510 richard 99
		fi
2875 rexy 100
# backup gammu conf file (if necessary)
101
		SMS=`grep ^SMS= $CONF_FILE|cut -d"=" -f2`
102
		if [ "$SMS" == "on" ]
103
			then
104
			cp -f /etc/gammurc $DIR_UPDATE
105
			cp -f /etc/gammu_smsd_conf $DIR_UPDATE
106
		fi
1758 richard 107
# archive file creation
2688 lucas.echa 108
		cd /var/tmp || { echo "Unable to find /var/tmp directory"; }
8 franck 109
		tar -cf alcasar-conf.tar conf/
110
		gzip -f alcasar-conf.tar
2835 rexy 111
		cp alcasar-conf.tar.gz /var/www/html/acc/backup/alcasar-conf.tar.gz
112
		chown apache:apache /var/www/html/acc/backup/alcasar-conf.tar.gz
8 franck 113
		rm -rf $DIR_UPDATE
114
		;;
2560 rexy 115
 
2874 rexy 116
###################################################
117
##           Load an archive conf file           ##
118
###################################################
389 franck 119
	--load|-load)
3163 rexy 120
		if [ ! -f /var/tmp/alcasar-conf.tar.gz ]; then
121
			echo "Conf file not found (/var/tmp/alcasar-conf.tar.gz) !"
122
			return 1
123
		fi
3018 rexy 124
		CURRENT_DIR=`pwd`  # install folder
3163 rexy 125
		cd /var/tmp
2834 rexy 126
		tar -xf alcasar-conf.tar.gz
2956 rexy 127
# update alcasar.conf parameters
2561 rexy 128
		PREVIOUS_VERSION=`grep ^VERSION= $DIR_UPDATE/etc/alcasar.conf|cut -d"=" -f2`
129
		MAJ_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f1`
130
		MIN_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f2`
131
		UPD_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f3|cut -c1`
2875 rexy 132
		for line in `cat $DIR_UPDATE/etc/alcasar.conf | grep "=" | grep -Ev "^#| |VERSION|INSTALL_DATE|PUBLIC|GW|EXTIF|INTIF"`
2824 rexy 133
		do
134
			key=`echo $line | cut -d"=" -f1`
135
			key=$key=
136
			value=`echo $line|cut -d"=" -f2-`
137
			if [ "$value" != "" ]
138
				then
139
				sed -i "s?^$key.*?$key$value?g" /usr/local/etc/alcasar.conf
140
			fi
141
		done
2874 rexy 142
# lighttpd need a .pem certificate (aggregation with private key & server crt)
2665 tom.houday 143
		[ ! -f $DIR_UPDATE/alcasar.pem ] && (cat $DIR_UPDATE/alcasar.key; echo; cat $DIR_UPDATE/alcasar.crt) > $DIR_UPDATE/alcasar.pem
2824 rexy 144
# Retrieve organism logo
510 richard 145
		[ -e $DIR_UPDATE/organisme.png ] && cp -f $DIR_UPDATE/organisme.png $DIR_WEB/images/
8 franck 146
		chown apache:apache $DIR_WEB/images/organisme.png $DIR_WEB/intercept.php
1060 richard 147
# Retrieve the security certificates (CA and server)
2571 rexy 148
		cp -f $DIR_UPDATE/alcasar-ca.crt /etc/pki/CA/
149
		cp -f $DIR_UPDATE/alcasar-ca.key /etc/pki/CA/private/
1758 richard 150
		cp -f $DIR_UPDATE/alcasar.crt /etc/pki/tls/certs/
151
		cp -f $DIR_UPDATE/alcasar.key /etc/pki/tls/private/
2688 lucas.echa 152
		cp -f $DIR_UPDATE/alcasar.pem /etc/pki/tls/private/
3238 rexy 153
		[ -e $DIR_UPDATE/server-chain.pem ] && cp -f $DIR_UPDATE/server-chain.pem /etc/pki/tls/certs/
2825 rexy 154
		chmod 755 /etc/pki/
2811 rexy 155
		chown root:apache /etc/pki/CA; chmod 750 /etc/pki/CA
2825 rexy 156
		chown root:apache /etc/pki/CA/alcasar-ca.crt; chmod 640 /etc/pki/CA/alcasar-ca.crt
2811 rexy 157
		chown root:root /etc/pki/CA/private; chmod 700 /etc/pki/CA/private
158
		chmod 600 /etc/pki/CA/private/*
159
		chown -R root:apache /etc/pki/tls/private; chmod 750 /etc/pki/tls/private
160
		chmod 640 /etc/pki/tls/private/*
3170 rexy 161
		chmod 644 /etc/pki/tls/certs/*
1060 richard 162
# Import of the users database
3269 rexy 163
		$DIR_BIN/alcasar-mariadb.sh --import "$(ls $DIR_UPDATE/alcasar-users-database*)"
1914 richard 164
# Retrieve local parameters
2825 rexy 165
		[ -d $DIR_UPDATE/etc/digest ] && cp -rf $DIR_UPDATE/etc/digest $DIR_ETC/  # ACC accounts
166
		[ -e $DIR_UPDATE/etc/alcasar-iptables-local.sh ] && cp -f $DIR_UPDATE/etc/alcasar-iptables-local.sh $DIR_ETC/   # local FW rules
167
		[ -e $DIR_UPDATE/etc/alcasar-iptables-local-mac-filtered ] && cp -f $DIR_UPDATE/etc/alcasar-iptables-local-mac-filtered $DIR_ETC/   # blocked MAC addresses
3245 rexy 168
		[ -e $DIR_UPDATE/etc/alcasar-custom-allowed-ports ] && cp -f $DIR_UPDATE/etc/alcasar-custom-allowed-ports $DIR_ETC/ # protocols filtering for users (profil 3 : customized with ACC)
2825 rexy 169
		[ -e $DIR_UPDATE/etc/alcasar-uamdomain ] && cp -f $DIR_UPDATE/etc/alcasar-uamdomain $DIR_ETC/ # exception domain names
170
		[ -e $DIR_UPDATE/etc/alcasar-uamallowed ] && cp -f $DIR_UPDATE/etc/alcasar-uamallowed $DIR_ETC/ # exception IP_addresses or network_IP_addresses
171
		[ -e $DIR_UPDATE/etc/alcasar-ethers ] && cp -f $DIR_UPDATE/etc/alcasar-ethers $DIR_ETC/ # DHCP static hosts
172
		[ -e $DIR_UPDATE/etc/alcasar-ethers-info ] && cp -f $DIR_UPDATE/etc/alcasar-ethers-info $DIR_ETC/ # DHCP static hosts information
2833 rexy 173
		[ -e $DIR_UPDATE/etc/hosts ] && cp -f $DIR_UPDATE/etc/hosts /etc/  # local host name resolution
2874 rexy 174
		[ -e $DIR_UPDATE/etc/alcasar-letsencrypt ] && cp -f $DIR_UPDATE/etc/alcasar-letsencrypt $DIR_ETC/ # Letsencrypt local conf
175
		[ -d $DIR_UPDATE/etc/letsencrypt ] && cp -rf $DIR_UPDATE/etc/letsencrypt $DIR_ETC/  # Letsencrypt local conf files
2875 rexy 176
		[ -e $DIR_UPDATE/gammurc ] && cp -f $DIR_UPDATE/gammurc /etc/ # Gammu conf file
177
		[ -e $DIR_UPDATE/gammu_smsd_conf ] && cp -f $DIR_UPDATE/gammu_smsd_conf /etc/ # Gammu_smsd conf file
1914 richard 178
# Retrieve BL/WL custom files
3243 rexy 179
		for i in urlregexplist exceptionsitelist bannedurllist exceptionsiteiplist
180
		do
3247 rexy 181
			[ -e $DIR_UPDATE/custom_bl/$i ] && cp -f $DIR_UPDATE/custom_bl/$i $DIR_E2G/group1/
3243 rexy 182
		done
1961 richard 183
		cp -rf $DIR_UPDATE/custom_bl/ossi-* $DIR_BLACKLIST/ 2>/dev/null
2688 lucas.echa 184
		chown -R e2guardian:apache $DIR_E2G
185
		chmod -R g+rw $DIR_E2G
1060 richard 186
# Adapt DNS/URL filtering
187
		PARENT_SCRIPT=`basename $0`
637 richard 188
		export PARENT_SCRIPT
1946 richard 189
		$DIR_BIN/alcasar-bl.sh -cat_choice
1827 raphael.pi 190
		$DIR_BIN/alcasar-bl.sh -reload
1060 richard 191
# admin profile update (admin + manager + backup)
1827 raphael.pi 192
		$DIR_BIN/alcasar-profil.sh --list
3018 rexy 193
# Apply changes between versions
3238 rexy 194
## V3.5 --> V3.6
3103 rexy 195
		## remove dnsmasq service
3099 rexy 196
		[ -e /etc/dnsmasq-whitelist.conf ] && rm -f /etc/dnsmasq*
197
		[ -e /etc/systemd/system/dnsmasq-whitelist.service ] && rm -f /etc/systemd/system/dnsmasq* && urpme dnsmasq
3238 rexy 198
## V3.6 --> V3.7
199
		## if domain name is .localdomain, change it with .lan (see RFC 6762) and adapt certificates.
200
		DOMAIN=`grep ^DOMAIN= $CONF_FILE|cut -d"=" -f2`
201
		if [[ $DOMAIN == "localdomain" ]] then
202
			$SED "s/^DOMAIN=.*/DOMAIN=lan/g" $CONF_FILE
3254 rexy 203
			$SED "s/^LDAP_BASE=.*/LDAP_BASE=cn=Users;dc=serverad;dc=lan/g" $CONF_FILE
3238 rexy 204
			$DIR_BIN/alcasar-CA.sh
205
			chown root:apache /etc/pki/CA; chmod 750 /etc/pki/CA
206
			chown root:apache /etc/pki/CA/alcasar-ca.crt; chmod 640 /etc/pki/CA/alcasar-ca.crt
207
			chown root:root /etc/pki/CA/private; chmod 700 /etc/pki/CA/private
208
			chmod 600 /etc/pki/CA/private/*
209
			chown -R root:apache /etc/pki/tls/private; chmod 750 /etc/pki/tls/private
210
			chmod 640 /etc/pki/tls/private/*
211
			chmod 644 /etc/pki/tls/certs/*
3247 rexy 212
		fi
213
		## alcasar-services become alcasar-custom-allowed-ports
214
		[ -e $DIR_ETC/alcasar-services ] && mv $DIR_ETC/alcasar-services $DIR_ETC/alcasar-custom-allowed-ports
3294 rexy 215
## V3.7 --> V3.8
216
		## Add Federation entries in conf file
217
		if [ `grep -E '^REPLICATION=' $CONF_FILE |wc -l` -eq "0" ]; then echo "REPLICATION=off" >> $CONF_FILE; fi
218
		if [ `grep -E '^REPLICATION_TO=' $CONF_FILE |wc -l` -eq "0" ]; then echo "REPLICATION_TO=off" >> $CONF_FILE; fi
1060 richard 219
# Remove the update folder
8 franck 220
		rm -rf $DIR_UPDATE
221
		;;
2560 rexy 222
 
2874 rexy 223
####################################################
224
##   Configure ALCASAR according to alcasar.conf  ##
225
####################################################
628 richard 226
	--apply|-apply)
3201 rexy 227
		PTN='^\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\)/[012]\?[[:digit:]]$'
2474 tom.houday 228
		PRIVATE_IP_MASK=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
3201 rexy 229
		if [[ $(expr "$PRIVATE_IP_MASK" : $PTN) -eq 0 ]]
2688 lucas.echa 230
		then
628 richard 231
			echo "Syntax error for PRIVATE_IP_MASK ($PRIVATE_IP_MASK)"
232
			exit 0
233
		fi
2474 tom.houday 234
		PUBLIC_IP_MASK=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`
1585 richard 235
		if [[ "$PUBLIC_IP_MASK" == "dhcp" ]]
236
		then
237
			PUBLIC_GATEWAY="dhcp"
2947 rexy 238
			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 ';'`
239
			DNS1=`echo $DHCP_DNS_servers | cut -d"," -f1`
240
			DNS2=`echo $DHCP_DNS_servers | cut -d"," -f2`
1585 richard 241
		else
3201 rexy 242
			if [[ $(expr "$PUBLIC_IP_MASK" : $PTN) -eq 0 ]]
2688 lucas.echa 243
			then
1585 richard 244
				echo "Syntax error for PUBLIC_IP_MASK ($PUBLIC_IP_MASK)"
245
				exit 0
246
			fi
1590 richard 247
			PUBLIC_IP=`echo $PUBLIC_IP_MASK | cut -d"/" -f1`
248
			PUBLIC_NETMASK=`/bin/ipcalc -m $PUBLIC_IP_MASK | cut -d"=" -f2`
2474 tom.houday 249
			PUBLIC_GATEWAY=`grep ^GW= $CONF_FILE|cut -d"=" -f2`
3201 rexy 250
			PTN='^\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\)$'
251
			if [[ $(expr "$PUBLIC_GATEWAY" : $PTN) -eq 0 ]]
2688 lucas.echa 252
			then
1585 richard 253
				echo "Syntax error for the Gateway IP ($PUBLIC_GATEWAY)"
254
				exit 0
255
			fi
2947 rexy 256
			DNS1=`grep ^DNS1= $CONF_FILE|cut -d"=" -f2`
3201 rexy 257
			if [[ $(expr "$DNS1" : $PTN) -eq 0 ]]
2947 rexy 258
			then
259
				echo "Syntax error for the IP address of the first DNS server ($DNS1)"
260
				exit 0
261
			fi
262
			DNS2=`grep ^DNS2= $CONF_FILE|cut -d"=" -f2`
3201 rexy 263
			if [[ $(expr "$DNS2" : $PTN) -eq 0 ]]
2947 rexy 264
			then
265
				echo "Syntax error for the IP address of the second DNS server ($DNS2)"
266
				exit 0
267
			fi
628 richard 268
		fi
631 richard 269
		PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1`
632 richard 270
		PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2`
628 richard 271
		private_network_calc
2474 tom.houday 272
		INSTALL_DATE=`grep ^INSTALL_DATE= $CONF_FILE|cut -d"=" -f2`
273
		ORGANISME=`grep ^ORGANISM= $CONF_FILE|cut -d"=" -f2-`
2688 lucas.echa 274
		BL_SAFESEARCH=`grep ^BL_SAFESEARCH= $CONF_FILE|cut -d"=" -f2`
275
		WL_SAFESEARCH=`grep ^WL_SAFESEARCH= $CONF_FILE|cut -d"=" -f2`
276
		BL_PUREIP=`grep ^BL_PUREIP= $CONF_FILE|cut -d"=" -f2`
2474 tom.houday 277
		DHCP_mode=`grep ^DHCP= $CONF_FILE|cut -d"=" -f2`
1060 richard 278
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
933 franck 279
		then
2688 lucas.echa 280
			if [ "$DHCP_mode" = "off" ] || [ "$DHCP_mode" = "Off" ] || [ "$DHCP_mode" = "OFF" ]
1060 richard 281
			then
1827 raphael.pi 282
				$DIR_BIN/alcasar-dhcp.sh --off
1890 franck 283
			else
2569 lucas.echa 284
				$DIR_BIN/alcasar-dhcp.sh --on
1060 richard 285
			fi
2568 rexy 286
# Set the local DNS (or not)
2688 lucas.echa 287
			if [ "$INT_DNS_mode" = "on" ] || [ "$INT_DNS_mode" = "On" ] || [ "$INT_DNS_mode" = "ON" ]
1890 franck 288
			then
2947 rexy 289
				$DIR_BIN/alcasar-dns-local.sh --on-without-restart
1890 franck 290
			else
2947 rexy 291
				$DIR_BIN/alcasar-dns-local.sh --off-without-restart
1890 franck 292
			fi
2688 lucas.echa 293
# Set the pure ip option (or not)
294
			if [ "$BL_PUREIP" = "off" ] || [ "$BL_PUREIP" = "Off" ] || [ "$BL_PUREIP" = "OFF" ]
295
			then
296
				bl_filter_param+="--pureip_off"
297
			else
298
				bl_filter_param+="--pureip_on"
299
			fi
300
# Set the safesearch options (or not)
301
			bl_filter_param=""
302
			if [ "$BL_SAFESEARCH" = "on" ] || [ "$BL_SAFESEARCH" = "On" ] || [ "$BL_SAFESEARCH" = "ON" ]
303
			then
304
				bl_filter_param+="--safesearch_on "
305
			else
306
				bl_filter_param+="--safesearch_off "
307
			fi
308
			$DIR_BIN/alcasar-url_filter_bl.sh $bl_filter_param
309
			if [ "$WL_SAFESEARCH" = "on" ] || [ "$WL_SAFESEARCH" = "On" ] || [ "$WL_SAFESEARCH" = "ON" ]
310
			then
311
				$DIR_BIN/alcasar-url_filter_wl.sh --safesearch_on
312
			else
313
				$DIR_BIN/alcasar-url_filter_wl.sh --safesearch_off
314
			fi
315
# Reload the local dns configuration
316
			$DIR_BIN/alcasar-dns-local.sh --reload
1585 richard 317
# Logout everybody
2688 lucas.echa 318
			$DIR_BIN/alcasar-logout.sh all
1585 richard 319
# Services stop
1521 richard 320
			echo -n "Stop services : "
3230 rexy 321
			for i in ntpd e2guardian unbound unbound-whitelist unbound-blacklist unbound-blackhole chilli network httpd
1060 richard 322
			do
1574 richard 323
				/usr/bin/systemctl stop $i && echo -n "$i, "
1060 richard 324
			done
1521 richard 325
			echo
3247 rexy 326
# set network configuration 
2974 rexy 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
3286 rexy 346
		$SED "/$PRIVATE_IP/d" /tmp/hosts
2838 rexy 347
		while read -r line
348
		do
349
				if ! echo $line | grep -E -q "^([0-9\.\t ]+alcasar( |$)|127\.0\.0)"
350
				then
351
					echo $line >> /etc/hosts
352
				fi
353
		done < /tmp/hosts
2861 rexy 354
		rm -f /tmp/hosts
2603 tom.houday 355
# MOTD
356
		$SED "s@'https://\(.\+\)/acc'@'https://$HOSTNAME.$DOMAIN/acc'@" /etc/mageia-release
3230 rexy 357
# httpd
3285 rexy 358
		$SED "s?^ServerName.*?ServerName $HOSTNAME.$DOMAIN?g" /etc/httpd/conf/httpd.conf
359
		$SED "s?^.*ErrorDocument.*?        ErrorDocument 404 https://$HOSTNAME.$DOMAIN?g" /etc/httpd/conf/webapps.d/alcasar.conf
360
		$SED "s?^.*AuthDigestDomain.*?        AuthDigestDomain $HOSTNAME.$DOMAIN?g" /etc/httpd/conf/webapps.d/alcasar.conf
361
		$SED "s?^    ServerName.*?    ServerName $HOSTNAME.$DOMAIN?g" /etc/httpd/conf/vhosts.d/00_default_vhosts.conf /etc/httpd/conf/vhosts.d/00_default_ssl_vhost.conf
3230 rexy 362
		$SED "s?^Listen.*?Listen $PRIVATE_IP:80?g" /etc/httpd/conf/httpd.conf
363
		FIC_MOD_SSL=`find /etc/httpd/conf/ -type f -name ssl.conf`
364
		$SED "s?^Listen.*?Listen $PRIVATE_IP:443?g" $FIC_MOD_SSL
3283 rexy 365
		$SED "/Allow from/d"  /etc/httpd/conf/webapps.d/alcasar.conf
3285 rexy 366
		$SED "/Deny from all/a\ \tAllow from 127.0.0.1\n\tAllow from $PRIVATE_NETWORK_MASK" /etc/httpd/conf/webapps.d/alcasar.conf
3283 rexy 367
		if [ $(grep -c "^managerIPs=" $DIR_ETC/alcasar-iptables-local.sh) -eq 1 ] ;then
368
			grep "^managerIPs=" $DIR_ETC/alcasar-iptables-local.sh | cut -d "'" -f2 | sed "s/,/\n/g" | while read -r managerIP
369
			do
370
	    			$SED "/Deny from all/a\ \tAllow from $managerIP" /etc/httpd/conf/webapps.d/alcasar.conf
371
			done
372
		fi
2744 rexy 373
# FreeRADIUS
634 richard 374
		$SED "s?^nas1_name:.*?nas1_name: alcasar-$ORGANISME?g" /etc/freeradius-web/naslist.conf
375
		$SED "s?^nas1_ip:.*?nas1_ip: $PRIVATE_IP?g" /etc/freeradius-web/naslist.conf
2707 tom.houday 376
# CoovaChilli
3285 rexy 377
		$SED "s?^uamallowed.*?uamallowed\t$HOSTNAME,$HOSTNAME.$DOMAIN?g" /etc/chilli.conf
378
		$SED "s?^locationname.*?locationname\t$HOSTNAME.$DOMAIN?g" /etc/chilli.conf
379
		$SED "s?^domain.*?domain\t\t$DOMAIN?g" /etc/chilli.conf
2688 lucas.echa 380
		[ "`grep ^HTTPS_LOGIN= $CONF_FILE | cut -d'=' -f2`" == "on" ] && chilli_login_protocol="https" || chilli_login_protocol="http"
3285 rexy 381
		$SED "s?^uamserver.*?uamserver\t$chilli_login_protocol:\/\/$HOSTNAME.$DOMAIN\/intercept.php?" /etc/chilli.conf
382
		$SED "s?^radiusnasid.*?radiusnasid\t$HOSTNAME.$DOMAIN?g" /etc/chilli.conf
634 richard 383
		$SED "s?^net.*?net\t\t$PRIVATE_NETWORK_MASK?g" /etc/chilli.conf
384
		$SED "s?^dns1.*?dns1\t\t$PRIVATE_IP?g" /etc/chilli.conf
385
		$SED "s?^dns2.*?dns2\t\t$PRIVATE_IP?g" /etc/chilli.conf
386
		$SED "s?^uamlisten.*?uamlisten\t$PRIVATE_IP?g" /etc/chilli.conf
3124 rexy 387
		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)")
388
		$SED "s?^dhcpopt.*?dhcpopt\t\t2a04$PRIVATE_IP_HEXA?g" /etc/chilli.conf
1581 richard 389
		# modify the DHCP static ip file. Reserve the second IP address for INTIF (the first one is for tun0). Keep previous entries
2274 richard 390
		$SED "s?^$PRIVATE_MAC.*?$PRIVATE_MAC $PRIVATE_SECOND_IP?" $DIR_ETC/alcasar-ethers $DIR_ETC/alcasar-ethers-info
2688 lucas.echa 391
# unbound
392
		# removing unbound configuration files
393
		rm -f /etc/unbound/conf.d/{forward,blacklist,whitelist,blackhole}/iface.*
394
		rm -f /etc/unbound/conf.d/common/forward-zone.conf
395
		# Configuration file for the dns servers forward-zone
396
		cat << EOF > /etc/unbound/conf.d/common/forward-zone.conf
397
forward-zone:
398
	name: "."
399
	forward-addr: $DNS1
400
	forward-addr: $DNS2
401
EOF
2813 rexy 402
		# Configuration file for lo of forward
2688 lucas.echa 403
		cat << EOF > /etc/unbound/conf.d/forward/iface.lo.conf
404
server:
405
	interface: 127.0.0.1@53
406
	access-control-view: 127.0.0.1/8 lo
407
view:
408
	name: "lo"
2864 rexy 409
	local-data: "$HOSTNAME A 127.0.0.1"
2831 rexy 410
	local-data: "$HOSTNAME.$DOMAIN A 127.0.0.1"
2864 rexy 411
	local-data-ptr: "127.0.0.1 $HOSTNAME.$DOMAIN"
2688 lucas.echa 412
	view-first: yes
413
EOF
2813 rexy 414
		# Configuration file for $INTIF of forward
2688 lucas.echa 415
		cat << EOF > /etc/unbound/conf.d/forward/iface.${INTIF}.conf
416
server:
417
	interface: ${PRIVATE_IP}@53
418
	access-control-view: $PRIVATE_NETWORK_MASK $INTIF
419
view:
420
	name: "$INTIF"
421
	view-first: yes
422
EOF
2813 rexy 423
		# Configuration file for $INTIF of blacklist
2688 lucas.echa 424
		cat << EOF > /etc/unbound/conf.d/blacklist/iface.${INTIF}.conf
425
server:
426
	interface: ${PRIVATE_IP}@54
427
	access-control: $PRIVATE_IP_MASK allow
428
	access-control-tag: $PRIVATE_IP_MASK "blacklist"
429
	access-control-tag-action: $PRIVATE_IP_MASK "blacklist" redirect
430
	access-control-tag-data: $PRIVATE_IP_MASK "blacklist" "A $PRIVATE_IP"
431
EOF
2813 rexy 432
		# Configuration file for $INTIF of whitelist
2688 lucas.echa 433
		cat << EOF > /etc/unbound/conf.d/whitelist/iface.${INTIF}.conf
434
server:
435
	interface: ${PRIVATE_IP}@55
436
	access-control: $PRIVATE_IP_MASK allow
437
	access-control-tag: $PRIVATE_IP_MASK "whitelist"
438
	access-control-tag-action: $PRIVATE_IP_MASK "whitelist" redirect
439
	access-control-tag-data: $PRIVATE_IP_MASK "whitelist" "A $PRIVATE_IP"
440
EOF
2871 rexy 441
        # Configuration file for $INTIF of blackhole unbound
442
        cat << EOF > /etc/unbound/conf.d/blackhole/iface.${INTIF}.conf
443
server:
444
	interface: ${PRIVATE_IP}@56
445
	access-control-view: $PRIVATE_NETWORK_MASK $INTIF
446
view:
447
	name: "$INTIF"
448
	local-zone: "." redirect
449
	local-data: ". A $PRIVATE_IP"
450
EOF
451
 
2688 lucas.echa 452
# dhcpd
453
		cat <<EOF > /etc/dhcpd.conf
454
ddns-update-style none;
455
subnet $PRIVATE_NETWORK netmask $PRIVATE_NETMASK {
456
	option routers $PRIVATE_IP;
457
	option subnet-mask $PRIVATE_NETMASK;
458
	option domain-name-servers $PRIVATE_IP;
459
	range dynamic-bootp $PRIVATE_SECOND_IP $PRIVATE_LAST_IP;
460
	default-lease-time 21600;
461
	max-lease-time 43200;
462
}
463
EOF
2838 rexy 464
$DIR_BIN/alcasar-dns-local.sh -hosts_to_unbound # add local name resolution to unbound (forward & blackhole)
2867 rexy 465
# E2guardian
2521 armand.ito 466
		$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" /etc/e2guardian/e2guardian.conf
2867 rexy 467
		$SED "s?\/\/[a-z.]*\/?\/\/$HOSTNAME.$DOMAIN\/?g" /usr/share/e2guardian/languages/french/alcasar-e2g.html
468
		$SED "s?\/\/[a-z.]*\/?\/\/$HOSTNAME.$DOMAIN\/?g" /usr/share/e2guardian/languages/ukenglish/alcasar-e2g.html
634 richard 469
# Prompts
470
		$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
471
# sudoers
472
		$SED "s?^Host_Alias.*?Host_Alias	LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost		#réseau de l'organisme?g" /etc/sudoers
2878 rexy 473
# gammu-smsd
474
		$SED "s?^user =.*?user = $DB_USER?g" /etc/gammu_smsd_conf
475
		$SED "s?^password =.*?password = $DB_PASS?g" /etc/gammu_smsd_conf
2899 rexy 476
# HTTPS login (Y/n)
477
        if [ "$HTTPS_LOGIN" = "on" ] || [ "$HTTPS_LOGIN" = "On" ] || [ "$HTTPS_LOGIN" = "ON" ]
478
        then
479
			$SED "s?^HTTPS_LOGIN=.*?HTTPS_LOGIN=on?" $CONF_FILE
480
			$SED "s?^HTTPS_CHILLI=.*?HTTPS_CHILLI=on?" $CONF_FILE
481
			$SED "s?^uamserver.*?uamserver\thttps://$HOSTNAME.$DOMAIN/intercept.php?" /etc/chilli.conf
482
			$SED "s?^#redirssl.*?redirssl?" /etc/chilli.conf
483
			$SED "s?^#uamuissl.*?uamuissl?" /etc/chilli.conf
484
		else
485
			$SED "s?^HTTPS_LOGIN=.*?HTTPS_LOGIN=off?" $CONF_FILE
486
			$SED "s?^HTTPS_CHILLI=.*?HTTPS_CHILLI=off?" $CONF_FILE
487
			$SED "s?^uamserver.*?uamserver\thttp://$HOSTNAME.$DOMAIN/intercept.php?" /etc/chilli.conf
488
			$SED "s?^redirssl.*?#&?" /etc/chilli.conf
489
			$SED "s?^uamuissl.*?#&?" /etc/chilli.conf
490
		fi
2878 rexy 491
# Services start
1060 richard 492
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
493
		then
1574 richard 494
			/usr/bin/systemctl start network && echo -n "Start service : network" && sleep 1
2309 tom.houday 495
			$DIR_BIN/alcasar-dhcp.sh -$DHCP_mode && echo -n ", chilli" # apply DHCP mode and start CoovaChilli
2840 rexy 496
			for i in unbound unbound-blackhole ntpd
2309 tom.houday 497
			do
498
				sleep 1
499
				/usr/bin/systemctl start $i && echo -n ", $i"
500
			done
3099 rexy 501
			$DIR_BIN/alcasar-bl.sh -reload && echo -n ", unbound-blacklist, unbound-whitelist, e2guardian, iptables"
3230 rexy 502
			/usr/bin/systemctl restart httpd && echo -n ", httpd"
1060 richard 503
		fi
3018 rexy 504
# Email user registration
3286 rexy 505
		$SED "s?^smtpd_banner =.*?smtpd_banner = $HOSTNAME.$DOMAIN ESMTP?g" /etc/postfix/main.cf
506
		$SED "s?^myhostname =.*?myhostname = $HOSTNAME.$DOMAIN?g" /etc/postfix/main.cf
3247 rexy 507
		export PARENT_SCRIPT # if "alcasar.sh" then avoid some process
3018 rexy 508
		$DIR_BIN/alcasar-mail-install.sh
2568 rexy 509
# Start / Stop LDAP authentification
2875 rexy 510
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
2568 rexy 511
		then
2875 rexy 512
			LDAP_mode=`grep ^LDAP= $CONF_FILE|cut -d"=" -f2`
513
			if [ $LDAP_mode = "on" ]
514
			then
515
				$DIR_BIN/alcasar-ldap.sh --on
516
			else
517
				$DIR_BIN/alcasar-ldap.sh --off
518
			fi
2568 rexy 519
		fi
2875 rexy 520
# Start / Stop Gammu-smsd (SMS)
521
		if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
522
		then
523
			SMS_mode=`grep ^SMS= $CONF_FILE|cut -d"=" -f2`
524
			if [ $SMS_mode = "on" ]
525
			then
526
				$DIR_BIN/alcasar-sms.sh --start
527
			fi
528
		fi
2568 rexy 529
		echo
628 richard 530
		;;
8 franck 531
	*)
2688 lucas.echa 532
		echo "Argument inconnu : $1";
8 franck 533
		echo "$usage"
534
		exit 1
535
		;;
536
esac