Subversion Repositories ALCASAR

Rev

Rev 2187 | Rev 2193 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
672 richard 1
#/bin/bash
1015 richard 2
 
63 franck 3
# $Id: alcasar-bl.sh 2192 2017-05-01 19:52:53Z richard $
4
 
672 richard 5
# alcasar-bl.sh
6
# by Franck BOUIJOUX and Richard REY
7
# This script is distributed under the Gnu General Public License (GPL)
1 root 8
 
672 richard 9
# Gestion de la BL pour le filtrage de domaine (via dnsmasq) et d'URL (via Dansguardian)
10
# Manage the BL for DnsBlackHole (dnsmasq) and URL filtering (Dansguardian)
11
 
878 richard 12
DIR_CONF="/usr/local/etc"
13
CONF_FILE="$DIR_CONF/alcasar.conf"
854 richard 14
private_ip_mask=`grep PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
15
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
16
PRIVATE_IP=`echo $private_ip_mask | cut -d"/" -f1`			# ALCASAR LAN IP address
308 richard 17
DIR_tmp="/tmp/blacklists"
1852 raphael.pi 18
DIR_WL_tmp="/tmp/whitelists"
1015 richard 19
FILE_tmp="/tmp/filesfilter.txt"
20
FILE_ip_tmp="/tmp/filesipfilter.txt"
316 richard 21
DIR_DG="/etc/dansguardian/lists"
22
DIR_DG_BL="$DIR_DG/blacklists"
1015 richard 23
BL_CATEGORIES="$DIR_CONF/alcasar-bl-categories"				# list of names of the 	BL categories
1926 richard 24
WL_CATEGORIES="$DIR_CONF/alcasar-wl-categories"				#	'	'	WL categories
1015 richard 25
BL_CATEGORIES_ENABLED="$DIR_CONF/alcasar-bl-categories-enabled"		#	'	'	BL enabled categories
26
WL_CATEGORIES_ENABLED="$DIR_CONF/alcasar-wl-categories-enabled"		#	'	'	WL enabled categories
27
DIR_SHARE="/usr/local/share"
28
DIR_DNS_BL="$DIR_SHARE/dnsmasq-bl"					# all the BL in the DNSMASQ format
29
DIR_DNS_WL="$DIR_SHARE/dnsmasq-wl"					# all the WL	'	'	'
30
DIR_IP_BL="$DIR_SHARE/iptables-bl"					# all the IP addresses of the BL 
1899 raphael.pi 31
DIR_IP_WL="$DIR_SHARE/iptables-wl"					# IP ossi disabled WL 
1366 richard 32
DIR_DNS_BL_ENABLED="$DIR_SHARE/dnsmasq-bl-enabled"			# symbolic link to the domains BL (only enabled categories)
1931 richard 33
DIR_DNS_WL_ENABLED="$DIR_SHARE/dnsmasq-wl-enabled"			#	'	'	'	WL	'	'
1377 richard 34
DIR_IP_BL_ENABLED="$DIR_SHARE/iptables-bl-enabled"			#	'	'	ip BL (only enabled categories)
1852 raphael.pi 35
DIR_IP_WL_ENABLED="$DIR_SHARE/iptables-wl-enabled"			#	'	'	ip WL (ossi and ossi-* imported from ACC)
1365 richard 36
DNS1=`grep "DNS1" $CONF_FILE | cut -d '=' -f 2` 			# server DNS1 (for WL domain names)
878 richard 37
BL_SERVER="dsi.ut-capitole.fr"
1 root 38
SED="/bin/sed -i"
637 richard 39
 
1042 richard 40
# enable/disable the BL & WL categories
308 richard 41
function cat_choice (){
1931 richard 42
	mkdir -p $DIR_tmp
43
	for LIST in $DIR_IP_BL_ENABLED $DIR_DNS_BL_ENABLED $DIR_IP_WL_ENABLED $DIR_DNS_WL_ENABLED
1930 richard 44
	do
1938 richard 45
		if [ ! -e $LIST ] #  only on install stage
1933 richard 46
		then
47
			mkdir $LIST
48
		else
49
			rm -rf $LIST/*
50
		fi
51
		chown root:apache $LIST
52
		chmod 770 $LIST
1930 richard 53
	done
1870 raphael.pi 54
	# update categories with rsync
55
	if [ ! -e $DIR_CONF/update_cat.conf ]
56
	then
57
		touch $DIR_CONF/update_cat.conf
58
		chown root:apache $DIR_CONF/update_cat.conf
59
		chmod 660 $DIR_CONF/update_cat.conf
60
	fi
1015 richard 61
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
1042 richard 62
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
1912 richard 63
 
1015 richard 64
	# process the file $BL_CATEGORIES with the choice of categories 
65
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
313 richard 66
	do
1015 richard 67
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
314 richard 68
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
1395 richard 69
		ln -sf $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
70
		ln -sf $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
1293 richard 71
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
648 richard 72
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
313 richard 73
	done
878 richard 74
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
313 richard 75
	mv $FILE_tmp $BL_CATEGORIES
1954 richard 76
	chown root:apache $BL_CATEGORIES
1955 richard 77
	chmod 660 $BL_CATEGORIES
1912 richard 78
 
1938 richard 79
# process the file $WL_CATEGORIES with the choice of categories 
1042 richard 80
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
81
	do
82
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
83
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
1395 richard 84
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
1042 richard 85
	done
86
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
87
	mv $FILE_tmp $WL_CATEGORIES
1954 richard 88
	chown root:apache $WL_CATEGORIES
1955 richard 89
	chmod 660 $WL_CATEGORIES
308 richard 90
}
1482 richard 91
 
2192 richard 92
# cleaning file and split it ("domains" in $FILE_tmp & "IP" in $FILE_ip_tmp)
93
function clean_split (){
94
	$SED '/^#.*/d' $FILE_tmp # remove commented lines
95
	$SED '/^\s*$/d' $FILE_tmp # remove empty lines
96
	$SED '/[äâëêïîöôüû@,]/d' $FILE_tmp # remove line with "chelou" characters
97
	# extract ip addresses for iptables.
98
	awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $FILE_tmp > $FILE_ip_tmp
99
	# extract domain names for dnsmasq.
100
	$SED -n '/^\([0-9]\{1,3\}\.\)\{3\}[0-9]\{1,3\}/!p' $FILE_tmp
101
	# Retrieve max Top Level Domain for domain name synthax
102
	#MAX_TLD=$(curl http://data.iana.org/TLD/tlds-alpha-by-domain.txt | grep -v '-' | grep -v '#' | wc -L)
103
	#if [ $(echo $MAX_TLD | wc -c) -eq 0 ];then
104
	#	MAX_TLD=18
105
	#fi
106
	# search for correction	egrep "([a-zA-Z0-9_-.]+\.){1,2}[a-zA-Z]{2,$MAX_TLD}" $ossi_custom_dir/domains > $FILE_tmp
107
}
108
 
1870 raphael.pi 109
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload } | { -update_cat or --update_cat }"
1 root 110
nb_args=$#
111
args=$1
112
if [ $nb_args -eq 0 ]
113
then
1369 richard 114
	  args="-h"
1 root 115
fi
116
case $args in
117
	-\? | -h* | --h*)
118
		echo "$usage"
119
		exit 0
120
		;;
1873 richard 121
	# Retrieve Toulouse University BL
386 franck 122
	-download | --download)
1 root 123
		rm -rf /tmp/con_ok.html
124
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
125
		if [ ! -e /tmp/con_ok.html ]
126
		then
127
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
128
		else 
878 richard 129
			rm -rf /tmp/con_ok.html $DIR_tmp
130
			mkdir $DIR_tmp
885 richard 131
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
878 richard 132
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
885 richard 133
			chown -R apache:apache $DIR_tmp
878 richard 134
		fi
135
		;;		
1488 richard 136
	# enable/disable categories (used only during the alcasar install process)
137
	-cat_choice | --cat_choice)
138
		cat_choice
139
		;;
1873 richard 140
	# Adapt Toulouse University BL to ALCASAR architecture (dnsmasq + DG + iptables)
878 richard 141
	-adapt | --adapt)
1873 richard 142
		echo -n "Adaptation process of Toulouse University blackList. Please wait : "
1371 richard 143
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
878 richard 144
		then
1930 richard 145
			# keep custom files (ossi) 
146
			for x in $(ls -1 $DIR_DG_BL | grep "^ossi-*")
147
			do
148
				mv $DIR_DG_BL/$x $DIR_tmp
149
			done
1369 richard 150
			rm -rf $DIR_DG_BL $DIR_IP_BL
151
			mkdir $DIR_DG_BL $DIR_IP_BL
878 richard 152
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
2192 richard 153
			chown -R dansguardian:apache $DIR_DG
1940 richard 154
			chmod -R 770 $DIR_DG
1930 richard 155
			# Add the two local categories (ossi-bl & ossi-wl) to the usage file
1936 richard 156
			# Add the custom categories (ossi-tor_nodes) to the usage file
1930 richard 157
			cat << EOF >> $DIR_DG_BL/global_usage 
1927 richard 158
 
159
NAME: ossi-bl
160
DEFAULT_TYPE: black
161
SOURCE: ALCASAR Team
162
DESC FR: sites blacklistés ajoutés localement
1936 richard 163
DESC EN: blacklisted sites add locally
1927 richard 164
NAME FR: ossi-bl
1936 richard 165
NAME EN: ossi-bl
1927 richard 166
 
167
NAME: ossi-wl
168
DEFAULT_TYPE: white
169
SOURCE: ALCASAR Team
170
DESC FR: sites autorisés ajoutés localement
1936 richard 171
DESC EN: whitelisted sites add locally
1927 richard 172
NAME FR: ossi-wl
1936 richard 173
NAME EN: ossi-wl
174
 
1951 richard 175
NAME: ossi-bl-tor_nodes
1936 richard 176
DEFAULT_TYPE: black
177
SOURCE: ALCASAR Team
178
DESC FR: Adresses IP des noeuds (routeurs) d'entrée du réseau TOR
1951 richard 179
DESC EN: IP addresses of input TOR nodes (routers)
1936 richard 180
NAME FR: Noeuds TOR
181
NAME EN: TOR nodes
1927 richard 182
EOF
1930 richard 183
			# Retrieve custom files (ossi)
184
			for x in $(ls -1 $DIR_tmp | grep "^ossi-*")
185
			do
186
				mv $DIR_tmp/$x $DIR_DG_BL
187
			done
188
		fi
189
		rm -f $BL_CATEGORIES $WL_CATEGORIES
190
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
1938 richard 191
		rm -rf $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED
1930 richard 192
		touch $BL_CATEGORIES $WL_CATEGORIES
193
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
1938 richard 194
		mkdir $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED
1930 richard 195
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
196
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
1042 richard 197
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
878 richard 198
		do
1015 richard 199
			categorie=`echo $dir_categorie|cut -d "/" -f6`
1951 richard 200
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie$ $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
1015 richard 201
			if [ "$categorie_type" == "white" ]
878 richard 202
			then
1015 richard 203
				echo "$dir_categorie" >> $WL_CATEGORIES 
1930 richard 204
			else
205
				echo "$dir_categorie" >> $BL_CATEGORIES
878 richard 206
			fi
207
		done
208
		rm -f $FILE_tmp
1057 richard 209
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
210
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
211
		do
212
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
213
			if [ $ok != "1" ] 
214
			then
215
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
216
			fi
217
		done
1926 richard 218
		# Verify that the enabled categories are effectively in the WL (need after an update of the WL)
219
		for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
220
		do
221
			ok=`grep /$ENABLE_CATEGORIE$ $WL_CATEGORIES|wc -l`
222
			if [ $ok != "1" ] 
223
			then
224
				$SED "/^$ENABLE_CATEGORIE$/d" $WL_CATEGORIES_ENABLED
225
			fi
226
		done
1293 richard 227
		# Creation of DNSMASQ and Iptables BL and WL
1015 richard 228
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
854 richard 229
		do
1015 richard 230
			for PATH_FILE in `cat $LIST` # for each category
231
			do
1938 richard 232
				DOMAIN=`basename $PATH_FILE`
233
				echo -n "$DOMAIN, "
1015 richard 234
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
235
				then
236
					touch $PATH_FILE/urls
237
					chown dansguardian:apache $PATH_FILE/urls
238
				fi
2192 richard 239
				cp $PATH_FILE/domains  $FILE_tmp
240
				clean_split # clean ossi custom files & split them for dnsmasq and for iptables
1015 richard 241
				if [ "$LIST" == "$BL_CATEGORIES" ]
242
				then
1365 richard 243
					# adapt to the dnsmasq syntax for the blacklist
244
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
1938 richard 245
					mv $FILE_tmp $DIR_DNS_BL/$DOMAIN.conf
246
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAIN
1015 richard 247
				else
1365 richard 248
					# adapt to the dnsmasq syntax for the whitelist
249
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
1938 richard 250
					mv $FILE_tmp $DIR_DNS_WL/$DOMAIN.conf
1015 richard 251
				fi
252
			done
854 richard 253
		done
1940 richard 254
		echo
1953 richard 255
		chown -R root:apache $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
1940 richard 256
	       	chmod 770 $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
257
		chmod -f 660 $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL/* $DIR_DNS_WL/* $DIR_IP_BL/* $DIR_IP_WL/*
1015 richard 258
		rm -f $FILE_tmp $FILE_ip_tmp
1339 richard 259
		rm -rf $DIR_tmp
654 richard 260
		;;
2192 richard 261
	# Rsync the categories which are listed in "/usr/local/etc/update_cat.conf". Cron run this function every 12h
1898 richard 262
	-update_cat | --update_cat)
1874 raphael.pi 263
		if [ $(cat /usr/local/etc/update_cat.conf | wc -l) -ne 0 ]
264
		then
1898 richard 265
			echo -n "Updating categories in /usr/local/etc/update_cat.conf ..."
266
			cat /usr/local/etc/update_cat.conf | while read LIGNE_RSYNC
267
			do
268
				CATEGORIE=$(echo $LIGNE_RSYNC | cut -d' ' -f1)
269
				URL=$(echo $LIGNE_RSYNC | cut -d' ' -f2)
270
				PATH_FILE=$(find $DIR_DG_BL/ -type d -name $CATEGORIE) # retrieve directory name of the category
271
				rsync -rv $URL $(dirname $PATH_FILE ) #rsync inside of the blacklist directory
272
				# Creation of DNSMASQ and Iptables BL and WL
1938 richard 273
				DOMAIN=$(basename $PATH_FILE)
2192 richard 274
				cp $PATH_FILE/domains $FILE_tmp
275
				clean_split  # clean ossi custom files & split them for dnsmasq and for iptables
1898 richard 276
				black=`grep black $PATH_FILE/usage |wc -l`
277
				if [ $black == "1" ]
278
				then
279
					# adapt to the dnsmasq syntax for the blacklist
280
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
1938 richard 281
					mv $FILE_tmp $DIR_DNS_BL/$DOMAIN.conf
282
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAIN
1898 richard 283
				else
284
					# adapt to the dnsmasq syntax for the whitelist
285
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
1938 richard 286
					mv $FILE_tmp $DIR_DNS_WL/$DOMAIN.conf
287
					mv $FILE_ip_tmp $DIR_IP_WL/$DOMAIN
1898 richard 288
				fi
289
				rm -f $FILE_tmp $FILE_ip_tmp
290
			done
291
			/usr/bin/systemctl restart dnsmasq-whitelist
292
			/usr/bin/systemctl restart dnsmasq-blacklist
293
			/usr/bin/systemctl restart dansguardian
294
			/usr/local/bin/alcasar-iptables.sh
1867 raphael.pi 295
		else
1898 richard 296
			  echo -n "/usr/local/etc/update_cat.conf is empty ..."
1867 raphael.pi 297
		fi
1874 raphael.pi 298
		echo 
1867 raphael.pi 299
		;;
1938 richard 300
	# reload when selected categories are changed or when ossi change his custom files
386 franck 301
	-reload | --reload)
1015 richard 302
		# for DG
311 richard 303
		cat_choice
1042 richard 304
		#  for dnsmasq (rehabited domain names)
316 richard 305
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
311 richard 306
		then
316 richard 307
			for i in `cat $DIR_DG/exceptionsitelist`
311 richard 308
			do
1015 richard 309
				$SED "/$i/d" $DIR_DNS_BL/*
311 richard 310
			done
311
		fi
1938 richard 312
		# adapt OSSI BL & WL custom files
313
		for dir in $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIr_IP_WL
314
		do
315
			rm -f $dir/ossi*
316
		done
1954 richard 317
		find $DIR_DG_BL/ -type f -name domains | grep ossi- > $FILE_tmp # retrieve ossi directories name where a domain file exist
1938 richard 318
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
319
		for ossi_custom_dir in `cat $FILE_tmp` # create the blacklist and the whitelist files
320
		do
2192 richard 321
			chown -R root:apache $ossi_custom_dir
322
			chmod 770 $ossi_custom_dir
1938 richard 323
			ossi_categorie=`echo $ossi_custom_dir|cut -d "/" -f6`
1954 richard 324
			short_categorie=`echo "$ossi_categorie" | cut -d"-" -f2`
325
			if [ $short_categorie == "bl" ]
326
			then
327
				categorie_type="black"
328
			else
329
				categorie_type="white"
330
			fi
2192 richard 331
			$SED "s/\r//" $ossi_custom_dir/domains $ossi_custom_dir/urls # remove Windows <CR> from custom file
332
			cp $ossi_custom_dir/domains $FILE_tmp
333
			clean_split # clean ossi custom files & split them for dnsmasq and for iptables
1951 richard 334
			if [ $categorie_type == "white" ]
1938 richard 335
			then
1951 richard 336
			# adapt the file to the dnsmasq syntax and enable it if needed
337
			# for the WL
1938 richard 338
				$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
339
				mv $FILE_tmp $DIR_DNS_WL/$ossi_categorie.conf
340
				mv $FILE_ip_tmp $DIR_IP_WL/$ossi_categorie
1951 richard 341
				enabled=`grep ^$ossi_categorie$ $WL_CATEGORIES_ENABLED | wc -l`
342
				if [ $enabled == "1" ]
343
				then
344
					$SED "/\/$ossi_categorie$/d" $WL_CATEGORIES 
345
					$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ossi_categorie" $WL_CATEGORIES
346
					ln -sf $DIR_DNS_WL/$ossi_categorie.conf $DIR_DNS_WL_ENABLED/$ossi_categorie
347
					ln -sf $DIR_IP_WL/$ossi_categorie $DIR_IP_WL_ENABLED/$ossi_categorie
348
				fi
1938 richard 349
			else
1951 richard 350
			# for the BL
1938 richard 351
				$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
352
				mv $FILE_tmp $DIR_DNS_BL/$ossi_categorie.conf
353
				mv $FILE_ip_tmp $DIR_IP_BL/$ossi_categorie
1951 richard 354
				enabled=`grep ^$ossi_categorie$ $BL_CATEGORIES_ENABLED | wc -l`
355
				if [ $enabled == "1" ]
356
				then
357
					$SED "/\/$ossi_categorie$/d" $BL_CATEGORIES 
358
					$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ossi_categorie" $BL_CATEGORIES
359
					ln -sf $DIR_DNS_BL/$ossi_categorie.conf $DIR_DNS_BL_ENABLED/$ossi_categorie
360
					ln -sf $DIR_IP_BL/$ossi_categorie $DIR_IP_BL_ENABLED/$ossi_categorie
361
				fi
1938 richard 362
			fi
363
		done
1958 richard 364
		for file in $BL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES $WL_CATEGORIES_ENABLED
365
		do
366
			sort +0.0 -0.2 $file -o $FILE_tmp
367
			mv $FILE_tmp $file
368
			chown root:apache $file
369
			chmod 660 $file
370
		done
1969 richard 371
		chown -R root:apache $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
372
		chmod 660 $DIR_DNS_BL/* $DIR_DNS_WL/* $DIR_IP_BL/* $DIR_IP_WL/*
1957 richard 373
		if [ "$PARENT_SCRIPT" != "alcasar-conf.sh" ] # don't launch on install stage
374
		then
375
			/usr/bin/systemctl restart dnsmasq-blacklist
376
			/usr/bin/systemctl restart dnsmasq-whitelist
377
			/usr/local/bin/alcasar-iptables.sh
378
		fi
503 richard 379
		;;
1 root 380
	*)
381
		echo "Argument inconnu :$1";
382
		echo "$usage"
383
		exit 1
384
		;;
385
esac
386