Subversion Repositories ALCASAR

Rev

Rev 1933 | Rev 1938 | 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 1936 2016-06-11 16:32:37Z 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
1933 richard 45
		if [ ! -e $LIST ] # installation of ALCASAR
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
1931 richard 74
	# add ossi categories 
75
	for OSSI_CATEGORIE in `ls $DIR_DNS_BL | grep ossi`
76
	do
77
		ln -sf $DIR_DNS_BL/$OSSI_CATEGORIE $DIR_DNS_BL_ENABLED/$OSSI_CATEGORIE
78
	done
79
	for OSSI_CATEGORIE in `ls $DIR_IP_BL | grep ossi`
80
	do
81
		ln -sf $DIR_IP_BL/$OSSI_CATEGORIE $DIR_IP_BL_ENABLED/$OSSI_CATEGORIE
82
	done
83
 
878 richard 84
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
313 richard 85
	mv $FILE_tmp $BL_CATEGORIES
1912 richard 86
 
1042 richard 87
	# process the file $WL_CATEGORIES with the choice of categories 
88
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
89
	do
90
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
91
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
1395 richard 92
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
1042 richard 93
	done
1931 richard 94
	# add ossi categories 
95
	for OSSI_CATEGORIE in `ls $DIR_DNS_WL | grep ossi`
96
	do
97
		ln -sf $DIR_DNS_WL/$OSSI_CATEGORIE $DIR_DNS_WL_ENABLED/$OSSI_CATEGORIE
98
	done
99
	for OSSI_CATEGORIE in `ls $DIR_IP_WL | grep ossi`
100
	do
101
		ln -sf $DIR_IP_WL/$OSSI_CATEGORIE $DIR_IP_WL_ENABLED/$OSSI_CATEGORIE
102
	done
1042 richard 103
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
104
	mv $FILE_tmp $WL_CATEGORIES
308 richard 105
}
1482 richard 106
 
1870 raphael.pi 107
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 108
nb_args=$#
109
args=$1
110
if [ $nb_args -eq 0 ]
111
then
1369 richard 112
	  args="-h"
1 root 113
fi
114
case $args in
115
	-\? | -h* | --h*)
116
		echo "$usage"
117
		exit 0
118
		;;
1873 richard 119
	# Retrieve Toulouse University BL
386 franck 120
	-download | --download)
1 root 121
		rm -rf /tmp/con_ok.html
122
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
123
		if [ ! -e /tmp/con_ok.html ]
124
		then
125
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
126
		else 
878 richard 127
			rm -rf /tmp/con_ok.html $DIR_tmp
128
			mkdir $DIR_tmp
885 richard 129
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
878 richard 130
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
885 richard 131
			chown -R apache:apache $DIR_tmp
878 richard 132
		fi
133
		;;		
1488 richard 134
	# enable/disable categories (used only during the alcasar install process)
135
	-cat_choice | --cat_choice)
136
		cat_choice
137
		;;
1873 richard 138
	# Adapt Toulouse University BL to ALCASAR architecture (dnsmasq + DG + iptables)
878 richard 139
	-adapt | --adapt)
1873 richard 140
		echo -n "Adaptation process of Toulouse University blackList. Please wait : "
1371 richard 141
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
878 richard 142
		then
1930 richard 143
			# keep custom files (ossi) 
144
			for x in $(ls -1 $DIR_DG_BL | grep "^ossi-*")
145
			do
146
				mv $DIR_DG_BL/$x $DIR_tmp
147
			done
1369 richard 148
			rm -rf $DIR_DG_BL $DIR_IP_BL
149
			mkdir $DIR_DG_BL $DIR_IP_BL
878 richard 150
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
1930 richard 151
			# Add the two local categories (ossi-bl & ossi-wl) to the usage file
1936 richard 152
			# Add the custom categories (ossi-tor_nodes) to the usage file
1930 richard 153
			cat << EOF >> $DIR_DG_BL/global_usage 
1927 richard 154
 
155
NAME: ossi-bl
156
DEFAULT_TYPE: black
157
SOURCE: ALCASAR Team
158
DESC FR: sites blacklistés ajoutés localement
1936 richard 159
DESC EN: blacklisted sites add locally
1927 richard 160
NAME FR: ossi-bl
1936 richard 161
NAME EN: ossi-bl
1927 richard 162
 
163
NAME: ossi-wl
164
DEFAULT_TYPE: white
165
SOURCE: ALCASAR Team
166
DESC FR: sites autorisés ajoutés localement
1936 richard 167
DESC EN: whitelisted sites add locally
1927 richard 168
NAME FR: ossi-wl
1936 richard 169
NAME EN: ossi-wl
170
 
171
NAME: ossi-tor_nodes
172
DEFAULT_TYPE: black
173
SOURCE: ALCASAR Team
174
DESC FR: Adresses IP des noeuds (routeurs) d'entrée du réseau TOR
175
DESC EN:IP addresses of input TOR nodes (routers)
176
NAME FR: Noeuds TOR
177
NAME EN: TOR nodes
1927 richard 178
EOF
1930 richard 179
			# Retrieve custom files (ossi)
180
			for x in $(ls -1 $DIR_tmp | grep "^ossi-*")
181
			do
182
				mv $DIR_tmp/$x $DIR_DG_BL
183
			done
184
		fi
185
		rm -f $BL_CATEGORIES $WL_CATEGORIES
186
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
187
		touch $BL_CATEGORIES $WL_CATEGORIES
188
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
1933 richard 189
		chown -R root: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
1930 richard 190
		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
191
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
192
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
1042 richard 193
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
878 richard 194
		do
1015 richard 195
			categorie=`echo $dir_categorie|cut -d "/" -f6`
196
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
197
			if [ "$categorie_type" == "white" ]
878 richard 198
			then
1015 richard 199
				echo "$dir_categorie" >> $WL_CATEGORIES 
1930 richard 200
			else
201
				echo "$dir_categorie" >> $BL_CATEGORIES
878 richard 202
			fi
203
		done
204
		rm -f $FILE_tmp
1057 richard 205
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
206
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
207
		do
208
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
209
			if [ $ok != "1" ] 
210
			then
211
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
212
			fi
213
		done
1926 richard 214
		# Verify that the enabled categories are effectively in the WL (need after an update of the WL)
215
		for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
216
		do
217
			ok=`grep /$ENABLE_CATEGORIE$ $WL_CATEGORIES|wc -l`
218
			if [ $ok != "1" ] 
219
			then
220
				$SED "/^$ENABLE_CATEGORIE$/d" $WL_CATEGORIES_ENABLED
221
			fi
222
		done
1293 richard 223
		# Creation of DNSMASQ and Iptables BL and WL
1015 richard 224
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
854 richard 225
		do
1015 richard 226
			for PATH_FILE in `cat $LIST` # for each category
227
			do
228
				DOMAINE=`basename $PATH_FILE`
229
				echo -n "$DOMAINE, "
230
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
231
				then
232
					touch $PATH_FILE/urls
233
					chown dansguardian:apache $PATH_FILE/urls
234
				fi
235
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
1383 richard 236
				# extract ip addresses for iptables
1867 raphael.pi 237
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
1015 richard 238
				# for dnsmask, remove IP addesses, accented characters and commented lines.
1293 richard 239
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
1015 richard 240
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
241
				$SED "/^#.*/d" $FILE_tmp
242
				if [ "$LIST" == "$BL_CATEGORIES" ]
243
				then
1365 richard 244
					# adapt to the dnsmasq syntax for the blacklist
245
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
1015 richard 246
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
247
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
248
				else
1365 richard 249
					# adapt to the dnsmasq syntax for the whitelist
250
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
1015 richard 251
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
252
				fi
253
			done
854 richard 254
		done
1015 richard 255
		rm -f $FILE_tmp $FILE_ip_tmp
1339 richard 256
		rm -rf $DIR_tmp
654 richard 257
		;;
1898 richard 258
	# update the categories which are written in "/usr/local/etc/update_cat.conf" with rsync
259
	-update_cat | --update_cat)
1874 raphael.pi 260
		if [ $(cat /usr/local/etc/update_cat.conf | wc -l) -ne 0 ]
261
		then
1898 richard 262
			echo -n "Updating categories in /usr/local/etc/update_cat.conf ..."
263
			cat /usr/local/etc/update_cat.conf | while read LIGNE_RSYNC
264
			do
265
				CATEGORIE=$(echo $LIGNE_RSYNC | cut -d' ' -f1)
266
				URL=$(echo $LIGNE_RSYNC | cut -d' ' -f2)
267
				PATH_FILE=$(find $DIR_DG_BL/ -type d -name $CATEGORIE) # retrieve directory name of the category
268
				rsync -rv $URL $(dirname $PATH_FILE ) #rsync inside of the blacklist directory
269
				# Creation of DNSMASQ and Iptables BL and WL
270
				DOMAINE=$(basename $PATH_FILE)
271
				# correct some synthaxes
272
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls
273
				# extract ip addresses for iptables
274
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
275
				# for dnsmask, remove IP addresses, accentuated characters and commented lines.
276
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
277
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
278
				$SED "/^#.*/d" $FILE_tmp
279
				black=`grep black $PATH_FILE/usage |wc -l`
280
				if [ $black == "1" ]
281
				then
282
					# adapt to the dnsmasq syntax for the blacklist
283
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
284
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
285
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
286
				else
287
					# adapt to the dnsmasq syntax for the whitelist
288
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
289
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
290
				fi
291
				rm -f $FILE_tmp $FILE_ip_tmp
292
			done
293
			/usr/bin/systemctl restart dnsmasq-whitelist
294
			/usr/bin/systemctl restart dnsmasq-blacklist
295
			/usr/bin/systemctl restart dansguardian
296
			/usr/local/bin/alcasar-iptables.sh
1867 raphael.pi 297
		else
1898 richard 298
			  echo -n "/usr/local/etc/update_cat.conf is empty ..."
1867 raphael.pi 299
		fi
1874 raphael.pi 300
		echo 
1867 raphael.pi 301
		;;
1015 richard 302
	# reload when categories are changed 
386 franck 303
	-reload | --reload)
1015 richard 304
		# for DG
311 richard 305
		cat_choice
1042 richard 306
		#  for dnsmasq (rehabited domain names)
316 richard 307
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
311 richard 308
		then
316 richard 309
			for i in `cat $DIR_DG/exceptionsitelist`
311 richard 310
			do
1015 richard 311
				$SED "/$i/d" $DIR_DNS_BL/*
311 richard 312
			done
313
		fi
1574 richard 314
		/usr/bin/systemctl restart dnsmasq-blacklist
315
		/usr/bin/systemctl restart dnsmasq-whitelist
1488 richard 316
		/usr/local/bin/alcasar-iptables.sh
503 richard 317
		;;
1 root 318
	*)
319
		echo "Argument inconnu :$1";
320
		echo "$usage"
321
		exit 1
322
		;;
323
esac
324
 
1857 raphael.pi 325
 
1867 raphael.pi 326
 
1874 raphael.pi 327