Subversion Repositories ALCASAR

Rev

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