Subversion Repositories ALCASAR

Rev

Rev 1902 | Rev 1912 | 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 1903 2016-05-19 12:14:00Z raphael.pion $
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
24
WL_CATEGORIES="$DIR_CONF/alcasar-wl-categories"				#'	'		WL	'
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)
1015 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)
1899 raphael.pi 36
tmp_DIR_IP_BL="/tmp/ossi-iptables-bl"					#IP BL tmp directory to keep ossi files during an update
37
tmp_DIR_IP_WL="/tmp/ossi-iptables-wl"					#IP WL tmp directory to keep ossi files during an update
38
tmp_DIR_DNS_BL="/tmp/ossi-dnsmasq-bl"					#DNS BL tmp directory to keep ossi files during an update
39
tmp_DIR_DNS_WL="/tmp/ossi-dnsmasq-wl"					#DNS WL tmp directory to keep ossi files during an update
40
#BL tmp directory to keep ossi files
1365 richard 41
DNSMASQ_BL_CONF="/etc/dnsmasq-blacklist.conf"				# conf file of dnsmasq-blacklist
42
DNS1=`grep "DNS1" $CONF_FILE | cut -d '=' -f 2` 			# server DNS1 (for WL domain names)
878 richard 43
BL_SERVER="dsi.ut-capitole.fr"
1 root 44
SED="/bin/sed -i"
637 richard 45
 
1042 richard 46
# enable/disable the BL & WL categories
308 richard 47
function cat_choice (){
1393 richard 48
	# saving ossi category
1339 richard 49
	mkdir $DIR_tmp
1393 richard 50
	cp $DIR_IP_BL/ossi $DIR_tmp
1855 raphael.pi 51
 
1864 raphael.pi 52
	#ip BL ENABLE
1393 richard 53
	if [ -d $DIR_IP_BL_ENABLED ]
1386 richard 54
	then
1393 richard 55
		for file in `ls -1 $DIR_IP_BL_ENABLED | grep -v "^ossi-*"`
56
		do
57
			rm -f $DIR_IP_BL_ENABLED/$file
58
		done
59
	else
60
		mkdir $DIR_IP_BL_ENABLED
1899 raphael.pi 61
		chown dansguardian:apache $DIR_IP_BL_ENABLED
1903 raphael.pi 62
		chmod g+w $DIR_IP_BL_ENABLED
1386 richard 63
	fi
1852 raphael.pi 64
 
1864 raphael.pi 65
 
66
	#dns BL ENABLED
67
	if [ -d $DIR_DNS_BL_ENABLED ]
68
	then
69
		for file in `ls -1 $DIR_DNS_BL_ENABLED | grep -v "^ossi-*"`
70
		do
71
			rm -f $DIR_DNS_BL_ENABLED/$file
72
		done
73
	else
74
		mkdir $DIR_DNS_BL_ENABLED
1899 raphael.pi 75
		chown dansguardian:apache $DIR_DNS_BL_ENABLED
1903 raphael.pi 76
		chmod g+w $DIR_DNS_BL_ENABLED
1864 raphael.pi 77
	fi
78
 
1899 raphael.pi 79
	#ip WL ENABLE
80
	if [ -d $DIR_IP_WL ]
81
	then
82
		for file in `ls -1 $DIR_IP_WL | grep -v "^ossi*"`
83
		do
84
			rm -f $DIR_IP_WL/$file
85
		done
86
	else
87
		mkdir $DIR_IP_WL
88
		chown dansguardian:apache $DIR_IP_WL
1903 raphael.pi 89
		chmod g+w $DIR_IP_WL
1899 raphael.pi 90
	fi
1864 raphael.pi 91
 
92
	#ip WL ENABLE
1852 raphael.pi 93
	if [ -d $DIR_IP_WL_ENABLED ]
94
	then
1864 raphael.pi 95
		for file in `ls -1 $DIR_IP_WL_ENABLED | grep -v "^ossi*"`
1852 raphael.pi 96
		do
97
			rm -f $DIR_IP_WL_ENABLED/$file
98
		done
99
	else
100
		mkdir $DIR_IP_WL_ENABLED
1899 raphael.pi 101
		chown dansguardian:apache $DIR_IP_WL_ENABLED
1903 raphael.pi 102
		chmod g+w $DIR_IP_WL_ENABLED
1864 raphael.pi 103
		touch $DIR_IP_WL_ENABLED/ossi
1899 raphael.pi 104
		chown dansguardian:apache $DIR_IP_WL_ENABLED/ossi
1903 raphael.pi 105
		chmod g+w $DIR_IP_WL_ENABLED/ossi
1857 raphael.pi 106
	fi
107
 
1864 raphael.pi 108
	#dns WL ENABLED
1852 raphael.pi 109
	if [ -d $DIR_DNS_WL_ENABLED ]
110
	then
111
		for file in `ls -1 $DIR_DNS_WL_ENABLED | grep -v "^ossi-*"`
112
		do
113
			rm -f $DIR_DNS_WL_ENABLED/$file
114
		done
115
	else
116
		mkdir $DIR_DNS_WL_ENABLED
1899 raphael.pi 117
		chown dansguardian:apache $DIR_DNS_WL_ENABLED
1903 raphael.pi 118
		chmod g+w $DIR_DNS_WL_ENABLED
1852 raphael.pi 119
	fi
1864 raphael.pi 120
 
121
	#dns WL ossi.conf 
122
	if [ ! -e $DIR_DNS_WL/ossi.conf ]
123
	then
124
		touch $DIR_DNS_WL/ossi.conf
1899 raphael.pi 125
		chown dansguardian:apache $DIR_DNS_WL/ossi.conf
1903 raphael.pi 126
		chmod g+w $DIR_DNS_WL/ossi.conf
1886 raphael.pi 127
		if [ ! -e $DIR_DNS_WL_ENABLED/ossi ]
128
		then
1864 raphael.pi 129
		ln -s $DIR_DNS_WL/ossi.conf $DIR_DNS_WL_ENABLED/ossi
1886 raphael.pi 130
		fi
1864 raphael.pi 131
	fi
132
 
1870 raphael.pi 133
	# update categories with rsync
134
	if [ ! -e $DIR_CONF/update_cat.conf ]
135
	then
136
		touch $DIR_CONF/update_cat.conf
137
		chown root:apache $DIR_CONF/update_cat.conf
138
		chmod 660 $DIR_CONF/update_cat.conf
139
	fi
1864 raphael.pi 140
 
1015 richard 141
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
1042 richard 142
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
1015 richard 143
	# process the file $BL_CATEGORIES with the choice of categories 
144
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
313 richard 145
	do
1015 richard 146
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
314 richard 147
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
1395 richard 148
		ln -sf $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
149
		ln -sf $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
1293 richard 150
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
648 richard 151
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
313 richard 152
	done
878 richard 153
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
313 richard 154
	mv $FILE_tmp $BL_CATEGORIES
1042 richard 155
	# process the file $WL_CATEGORIES with the choice of categories 
156
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
157
	do
158
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
159
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
1395 richard 160
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
1042 richard 161
	done
162
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
163
	mv $FILE_tmp $WL_CATEGORIES
1852 raphael.pi 164
 
165
	# restoring ip files and ossi category BL/WL
1339 richard 166
	mv $DIR_tmp/ossi $DIR_IP_BL
1377 richard 167
	chown apache $DIR_IP_BL/ossi
1339 richard 168
	rm -rf $DIR_tmp
1852 raphael.pi 169
 
308 richard 170
}
1482 richard 171
 
1870 raphael.pi 172
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 173
nb_args=$#
174
args=$1
175
if [ $nb_args -eq 0 ]
176
then
1369 richard 177
	  args="-h"
1 root 178
fi
179
case $args in
180
	-\? | -h* | --h*)
181
		echo "$usage"
182
		exit 0
183
		;;
1873 richard 184
	# Retrieve Toulouse University BL
386 franck 185
	-download | --download)
1 root 186
		rm -rf /tmp/con_ok.html
187
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
188
		if [ ! -e /tmp/con_ok.html ]
189
		then
190
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
191
		else 
878 richard 192
			rm -rf /tmp/con_ok.html $DIR_tmp
193
			mkdir $DIR_tmp
885 richard 194
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
878 richard 195
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
885 richard 196
			chown -R apache:apache $DIR_tmp
878 richard 197
		fi
198
		;;		
1488 richard 199
	# enable/disable categories (used only during the alcasar install process)
200
	-cat_choice | --cat_choice)
201
		cat_choice
202
		;;
1873 richard 203
	# Adapt Toulouse University BL to ALCASAR architecture (dnsmasq + DG + iptables)
878 richard 204
	-adapt | --adapt)
1873 richard 205
		echo -n "Adaptation process of Toulouse University blackList. Please wait : "
1864 raphael.pi 206
 
1899 raphael.pi 207
		#to keep ossi files
1902 raphael.pi 208
		if [ -d $DIR_IP_BL -a -d $DIR_IP_WL -a -d $DIR_DNS_BL -a -d $DIR_DNS_WL ]
1900 raphael.pi 209
		then
210
			mkdir $tmp_DIR_IP_BL $tmp_DIR_IP_WL $tmp_DIR_DNS_BL $tmp_DIR_DNS_WL
211
			for x in $(ls -1 $DIR_IP_BL | grep "^ossi*")
212
			do
213
				mv $DIR_IP_BL/$x $tmp_DIR_IP_BL
214
			done
215
			for x in $(ls -1 $DIR_IP_WL | grep "^ossi*")
216
			do
217
				mv $DIR_IP_WL/$x $tmp_DIR_IP_WL
218
			done
219
			for x in $(ls -1 $DIR_DNS_BL | grep "^ossi*")
220
			do
221
				mv $DIR_DNS_BL/$x $tmp_DIR_DNS_BL
222
			done
223
			for x in $(ls -1 $DIR_DNS_WL | grep "^ossi*")
224
			do
225
				mv $DIR_DNS_WL/$x $tmp_DIR_DNS_WL
226
			done
227
		fi
1899 raphael.pi 228
 
1371 richard 229
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
878 richard 230
		then
1366 richard 231
			[ -d $DIR_DG_BL/ossi ] && mv $DIR_DG_BL/ossi $DIR_tmp
1369 richard 232
			[ -e $DIR_IP_BL/ossi ] && mv $DIR_IP_BL/ossi $DIR_tmp/ossi-ip-bl
233
			rm -rf $DIR_DG_BL $DIR_IP_BL
234
			mkdir $DIR_DG_BL $DIR_IP_BL
878 richard 235
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
236
			[ -d $DIR_tmp/ossi ] && mv -f $DIR_tmp/ossi $DIR_DG_BL/
685 richard 237
		fi
1042 richard 238
		rm -f $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
1899 raphael.pi 239
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
1042 richard 240
		touch $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
1899 raphael.pi 241
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
242
		chown -R dansguardian:apache $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
243
		chmod -R g+w $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
1015 richard 244
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
245
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
1042 richard 246
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
878 richard 247
		do
1015 richard 248
			categorie=`echo $dir_categorie|cut -d "/" -f6`
249
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
250
			if [ "$categorie_type" == "white" ]
878 richard 251
			then
1015 richard 252
				echo "$dir_categorie" >> $WL_CATEGORIES 
1042 richard 253
				echo `basename $dir_categorie` >> $WL_CATEGORIES_ENABLED  # by default all WL are enabled 
878 richard 254
			fi
1811 richard 255
			echo "$dir_categorie" >> $BL_CATEGORIES # By default all categories are in BL
878 richard 256
		done
257
		rm -f $FILE_tmp
1057 richard 258
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
259
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
260
		do
261
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
262
			if [ $ok != "1" ] 
263
			then
264
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
265
			fi
266
		done
1293 richard 267
		# Creation of DNSMASQ and Iptables BL and WL
1015 richard 268
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
854 richard 269
		do
1015 richard 270
			for PATH_FILE in `cat $LIST` # for each category
271
			do
272
				DOMAINE=`basename $PATH_FILE`
273
				echo -n "$DOMAINE, "
274
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
275
				then
276
					touch $PATH_FILE/urls
277
					chown dansguardian:apache $PATH_FILE/urls
278
				fi
279
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
1383 richard 280
				# extract ip addresses for iptables
1867 raphael.pi 281
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
1015 richard 282
				# for dnsmask, remove IP addesses, accented characters and commented lines.
1293 richard 283
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
1015 richard 284
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
285
				$SED "/^#.*/d" $FILE_tmp
286
				if [ "$LIST" == "$BL_CATEGORIES" ]
287
				then
1365 richard 288
					# adapt to the dnsmasq syntax for the blacklist
289
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
1015 richard 290
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
291
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
292
				else
1365 richard 293
					# adapt to the dnsmasq syntax for the whitelist
294
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
1015 richard 295
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
296
				fi
297
			done
854 richard 298
		done
1015 richard 299
		rm -f $FILE_tmp $FILE_ip_tmp
1383 richard 300
		# Restoring ossi file of BL IP
1369 richard 301
		[ -e $DIR_tmp/ossi-ip-bl ] && mv $DIR_tmp/ossi-ip-bl $DIR_IP_BL/ossi
1339 richard 302
		rm -rf $DIR_tmp
1899 raphael.pi 303
 
1902 raphael.pi 304
		if [ -d $tmp_DIR_IP_BL -a -d $tmp_DIR_IP_WL -a -d $tmp_DIR_DNS_BL -a -d $tmp_DIR_DNS_WL ]
1900 raphael.pi 305
		then
306
			for x in $(ls -1 $tmp_DIR_IP_BL | grep "^ossi*")
307
			do
308
				mv $tmp_DIR_IP_BL/$x $DIR_IP_BL
309
			done
310
			for x in $(ls -1 $tmp_DIR_IP_WL | grep "^ossi*")
311
			do
312
				mv $tmp_DIR_IP_WL/$x $DIR_IP_WL
313
			done
314
			for x in $(ls -1 $tmp_DIR_DNS_BL | grep "^ossi*")
315
			do
316
				mv $tmp_DIR_DNS_BL/$x $DIR_DNS_BL
317
			done
318
			for x in $(ls -1 $tmp_DIR_DNS_WL | grep "^ossi*")
319
			do
320
				mv $tmp_DIR_DNS_WL/$x $DIR_DNS_WL
321
			done
1899 raphael.pi 322
 
1900 raphael.pi 323
			rm -rf $tmp_DIR_IP_BL $tmp_DIR_IP_WL $tmp_DIR_DNS_BL $tmp_DIR_DNS_WL
324
		fi
1899 raphael.pi 325
 
854 richard 326
		echo
654 richard 327
		;;
1898 richard 328
	# update the categories which are written in "/usr/local/etc/update_cat.conf" with rsync
329
	-update_cat | --update_cat)
1874 raphael.pi 330
		if [ $(cat /usr/local/etc/update_cat.conf | wc -l) -ne 0 ]
331
		then
1898 richard 332
			echo -n "Updating categories in /usr/local/etc/update_cat.conf ..."
333
			cat /usr/local/etc/update_cat.conf | while read LIGNE_RSYNC
334
			do
335
				CATEGORIE=$(echo $LIGNE_RSYNC | cut -d' ' -f1)
336
				URL=$(echo $LIGNE_RSYNC | cut -d' ' -f2)
337
				PATH_FILE=$(find $DIR_DG_BL/ -type d -name $CATEGORIE) # retrieve directory name of the category
338
				rsync -rv $URL $(dirname $PATH_FILE ) #rsync inside of the blacklist directory
339
				# Creation of DNSMASQ and Iptables BL and WL
340
				DOMAINE=$(basename $PATH_FILE)
341
				# correct some synthaxes
342
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls
343
				# extract ip addresses for iptables
344
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
345
				# for dnsmask, remove IP addresses, accentuated characters and commented lines.
346
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
347
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
348
				$SED "/^#.*/d" $FILE_tmp
349
				black=`grep black $PATH_FILE/usage |wc -l`
350
				if [ $black == "1" ]
351
				then
352
					# adapt to the dnsmasq syntax for the blacklist
353
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
354
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
355
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
356
				else
357
					# adapt to the dnsmasq syntax for the whitelist
358
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
359
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
360
				fi
361
				rm -f $FILE_tmp $FILE_ip_tmp
362
			done
363
			/usr/bin/systemctl restart dnsmasq-whitelist
364
			/usr/bin/systemctl restart dnsmasq-blacklist
365
			/usr/bin/systemctl restart dansguardian
366
			/usr/local/bin/alcasar-iptables.sh
1867 raphael.pi 367
		else
1898 richard 368
			  echo -n "/usr/local/etc/update_cat.conf is empty ..."
1867 raphael.pi 369
		fi
1874 raphael.pi 370
		echo 
1867 raphael.pi 371
		;;
1015 richard 372
	# reload when categories are changed 
386 franck 373
	-reload | --reload)
1015 richard 374
		# for DG
316 richard 375
		chown -R dansguardian:apache $DIR_DG_BL/ossi
376
		chmod -R g+w $DIR_DG_BL/ossi
311 richard 377
		cat_choice
1042 richard 378
		#  for dnsmasq (rehabited domain names)
316 richard 379
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
311 richard 380
		then
316 richard 381
			for i in `cat $DIR_DG/exceptionsitelist`
311 richard 382
			do
1015 richard 383
				$SED "/$i/d" $DIR_DNS_BL/*
311 richard 384
			done
385
		fi
1015 richard 386
		cp -f $DIR_DG_BL/ossi/domains $DIR_DNS_BL/ossi.conf
387
		$SED "s?.*?address=/&/$PRIVATE_IP?g" $DIR_DNS_BL/ossi.conf
1810 raphael.pi 388
		$SED "s?.*?server=/&/$DNS1?g" $DIR_DNS_WL/ossi.conf
389
 
1574 richard 390
		/usr/bin/systemctl restart dnsmasq-blacklist
391
		/usr/bin/systemctl restart dnsmasq-whitelist
1488 richard 392
		/usr/local/bin/alcasar-iptables.sh
503 richard 393
		;;
1 root 394
	*)
395
		echo "Argument inconnu :$1";
396
		echo "$usage"
397
		exit 1
398
		;;
399
esac
400
 
1857 raphael.pi 401
 
1867 raphael.pi 402
 
1874 raphael.pi 403