Subversion Repositories ALCASAR

Rev

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