Subversion Repositories ALCASAR

Rev

Rev 1371 | Rev 1383 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 1371 Rev 1377
Line 1... Line 1...
1
#/bin/bash
1
#/bin/bash
2
 
2
 
3
# $Id: alcasar-bl.sh 1371 2014-06-03 22:08:56Z richard $
3
# $Id: alcasar-bl.sh 1377 2014-06-10 22:16:50Z richard $
4
 
4
 
5
# alcasar-bl.sh
5
# alcasar-bl.sh
6
# by Franck BOUIJOUX and Richard REY
6
# by Franck BOUIJOUX and Richard REY
7
# This script is distributed under the Gnu General Public License (GPL)
7
# This script is distributed under the Gnu General Public License (GPL)
8
 
8
 
Line 21... Line 21...
21
DIR_DG_BL="$DIR_DG/blacklists"
21
DIR_DG_BL="$DIR_DG/blacklists"
22
BL_CATEGORIES="$DIR_CONF/alcasar-bl-categories"				# list of names of the 	BL categories
22
BL_CATEGORIES="$DIR_CONF/alcasar-bl-categories"				# list of names of the 	BL categories
23
WL_CATEGORIES="$DIR_CONF/alcasar-wl-categories"				#'	'		WL	'
23
WL_CATEGORIES="$DIR_CONF/alcasar-wl-categories"				#'	'		WL	'
24
BL_CATEGORIES_ENABLED="$DIR_CONF/alcasar-bl-categories-enabled"		#	'	'	BL enabled categories
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
25
WL_CATEGORIES_ENABLED="$DIR_CONF/alcasar-wl-categories-enabled"		#	'	'	WL enabled categories
-
 
26
OSSI_DOMAINS_WL="$DIR_DG/blacklists/ossi/domains_wl"			# Domain names for the ossi category
26
DIR_SHARE="/usr/local/share"
27
DIR_SHARE="/usr/local/share"
27
DIR_DNS_BL="$DIR_SHARE/dnsmasq-bl"					# all the BL in the DNSMASQ format
28
DIR_DNS_BL="$DIR_SHARE/dnsmasq-bl"					# all the BL in the DNSMASQ format
28
DIR_DNS_WL="$DIR_SHARE/dnsmasq-wl"					# all the WL	'	'	'
29
DIR_DNS_WL="$DIR_SHARE/dnsmasq-wl"					# all the WL	'	'	'
29
DIR_IP_BL="$DIR_SHARE/iptables-bl"					# all the IP addresses of the BL 
30
DIR_IP_BL="$DIR_SHARE/iptables-bl"					# all the IP addresses of the BL 
-
 
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
30
DIR_DNS_BL_ENABLED="$DIR_SHARE/dnsmasq-bl-enabled"			# symbolic link to the domains BL (only enabled categories)
33
DIR_DNS_BL_ENABLED="$DIR_SHARE/dnsmasq-bl-enabled"			# symbolic link to the domains BL (only enabled categories)
31
DIR_DNS_WL_ENABLED="$DIR_SHARE/dnsmasq-wl-enabled"			#	'	'	'	WL	'	'	'
34
DIR_DNS_WL_ENABLED="$DIR_SHARE/dnsmasq-wl-enabled"			#	'	'	'	WL	'	'	'
32
DIR_IP_BL_ENABLED="$DIR_SHARE/iptables-bl-enabled"			#	'	'	ip BL (only enabled categories)	
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)
33
DNSMASQ_BL_CONF="/etc/dnsmasq-blacklist.conf"				# conf file of dnsmasq-blacklist
37
DNSMASQ_BL_CONF="/etc/dnsmasq-blacklist.conf"				# conf file of dnsmasq-blacklist
34
DNS1=`grep "DNS1" $CONF_FILE | cut -d '=' -f 2` 			# server DNS1 (for WL domain names)
38
DNS1=`grep "DNS1" $CONF_FILE | cut -d '=' -f 2` 			# server DNS1 (for WL domain names)
35
BL_SERVER="dsi.ut-capitole.fr"
39
BL_SERVER="dsi.ut-capitole.fr"
36
SED="/bin/sed -i"
40
SED="/bin/sed -i"
37
 
41
 
38
# enable/disable the BL & WL categories
42
# enable/disable the BL & WL categories
39
function cat_choice (){
43
function cat_choice (){
40
	# saving ip files and ossi category
44
	# saving ip files and ossi category
41
	mkdir $DIR_tmp
45
	mkdir $DIR_tmp
-
 
46
	cp $DIR_IP_BL_ENABLED/ossi-* $DIR_tmp
42
	cp $DIR_IP_BL/ossi $DIR_tmp
47
	cp $DIR_IP_BL/ossi $DIR_tmp
43
	rm -rf $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED # cleaning for dnsmasq and iptables
48
	rm -rf $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENABLED # cleaning for dnsmasq and iptables
44
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
49
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
45
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
50
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
46
	mkdir $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED 
51
	mkdir $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENABLED
47
	chown apache $DIR_IP_BL_ENABLED
52
	chown apache $DIR_IP_BL_ENABLED $DIR_IP_WL_ENABLED
48
	# process the file $BL_CATEGORIES with the choice of categories 
53
	# process the file $BL_CATEGORIES with the choice of categories 
49
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
54
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
50
	do
55
	do
51
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
56
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
52
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
57
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
Line 61... Line 66...
61
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
66
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
62
	do
67
	do
63
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
68
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
64
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
69
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
65
		ln -s $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
70
		ln -s $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
-
 
71
		ln -s $DIR_IP_WL/$ENABLE_CATEGORIE $DIR_IP_WL_ENABLED/$ENABLE_CATEGORIE
66
	done
72
	done
67
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
73
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
68
	mv $FILE_tmp $WL_CATEGORIES
74
	mv $FILE_tmp $WL_CATEGORIES
69
	# restoring ip files and ossi category
75
	# restoring ip files and ossi category
70
	mv $DIR_tmp/ossi $DIR_IP_BL
76
	mv $DIR_tmp/ossi $DIR_IP_BL
71
	chown apache $DIR_IP_BL/*
77
	chown apache $DIR_IP_BL/ossi
-
 
78
	mv $DIR_tmp/ossi-* $DIR_IP_BL_ENABLED
72
	rm -rf $DIR_tmp
79
	rm -rf $DIR_tmp
73
}
80
}
74
function bl_enable (){
81
function bl_enable (){
75
	$SED "s/^reportinglevel =.*/reportinglevel = 3/g" /etc/dansguardian/dansguardian.conf
82
	$SED "s/^reportinglevel =.*/reportinglevel = 3/g" /etc/dansguardian/dansguardian.conf
76
	if [ "$PARENT_SCRIPT" != "alcasar-conf.sh" ] # don't launch on install stage
83
	if [ "$PARENT_SCRIPT" != "alcasar-conf.sh" ] # don't launch on install stage
77
	then
84
	then
78
		service dansguardian restart
85
		service dansguardian restart
79
		service dnsmasq restart
86
		service dnsmasq restart
-
 
87
		service dnsmasq-blacklist restart
-
 
88
		service dnsmasq-whitelist restart
80
		/usr/local/bin/alcasar-iptables.sh
89
		/usr/local/bin/alcasar-iptables.sh
81
	fi
90
	fi
82
}
91
}
83
function bl_disable (){
92
function bl_disable (){
84
	rm -rf $DIR_DNS_BL_ENABLED/*
93
	rm -rf $DIR_DNS_BL_ENABLED/*
Line 88... Line 97...
88
	$SED "s/^\*ip$/#*ip/g" $DIR_DG/bannedsitelist # remove pureip browsing
97
	$SED "s/^\*ip$/#*ip/g" $DIR_DG/bannedsitelist # remove pureip browsing
89
	if [ "$PARENT_SCRIPT" != "alcasar-conf.sh" ] # don't launch on install stage
98
	if [ "$PARENT_SCRIPT" != "alcasar-conf.sh" ] # don't launch on install stage
90
	then
99
	then
91
		service dansguardian restart
100
		service dansguardian restart
92
		service dnsmasq restart
101
		service dnsmasq restart
-
 
102
		service dnsmasq-blacklist restart
-
 
103
		service dnsmasq-whitelist restart
93
		/usr/local/bin/alcasar-iptables.sh
104
		/usr/local/bin/alcasar-iptables.sh
94
	fi
105
	fi
95
}
106
}
-
 
107
function ip_retrieving (){
-
 
108
	# retrieving IPs of all domain names for the whitelist
-
 
109
	index=0
-
 
110
	if [ ! -d $DIR_IP_WL ]
-
 
111
	then
-
 
112
		mkdir $DIR_IP_WL
-
 
113
	else
-
 
114
		rm -rf $DIR_IP_WL/*
-
 
115
	fi
-
 
116
	echo "Retrieving IPs :"
-
 
117
	cd $DIR_DNS_WL
-
 
118
	for category in `ls | cut -d '.' -f 1`
-
 
119
	do
-
 
120
		echo -n "$category :"
-
 
121
		for domain in `cat $category.conf | cut -d '/' -f 2`
-
 
122
		do
-
 
123
			echo `host $domain | grep -oE '([0-9]{1,3}\.){3}[0-9]{1,3}'` >> $DIR_IP_WL/$category.tmp &
-
 
124
			((index++))
-
 
125
			echo -n "."
-
 
126
			if [ $index -eq 100 ]
-
 
127
			then
-
 
128
				index=0
-
 
129
				sleep 1
-
 
130
			fi
-
 
131
		done
-
 
132
	done
-
 
133
	echo "done"
-
 
134
	sleep 2
-
 
135
	cd $DIR_IP_WL
-
 
136
	for category in `ls`
-
 
137
	do
-
 
138
		# one IP per line
-
 
139
		$SED 's/ /\n/g' $category
-
 
140
		# add SET syntax
-
 
141
		$SED 's/^/add whitelist_ip_allowed /g' $category
-
 
142
		# delete empty lines
-
 
143
		$SED '/^$/d' $category
-
 
144
		# delete false entries
-
 
145
		$SED -r '/([0-9]{1,3}.){3}[0-9]{1,3}/!d' $category
-
 
146
		# delete duplicate lines
-
 
147
		sort -u $category > ${category%%.*}
-
 
148
	done
-
 
149
	rm -f *.tmp
-
 
150
}
-
 
151
function ip_retrieving_ossi (){
-
 
152
	# retrieving IPs of all domain names for the ossi category
-
 
153
	> $OSSI_WL_IP
-
 
154
	for domain in `cat $OSSI_DOMAINS_WL`
-
 
155
	do
-
 
156
		echo `host $domain | grep -oE '([0-9]{1,3}\.){3}[0-9]{1,3}'` >> $OSSI_WL_IP &
-
 
157
	done
-
 
158
	sleep 2
-
 
159
	# one IP per line
-
 
160
	$SED 's/ /\n/g' $OSSI_WL_IP
-
 
161
	# add SET syntax
-
 
162
	$SED 's/^/add whitelist_ip_allowed /g' $OSSI_WL_IP
-
 
163
	# delete empty lines
-
 
164
	$SED '/^$/d' $OSSI_WL_IP
-
 
165
	# delete false entries
-
 
166
	$SED -r '/([0-9]{1,3}.){3}[0-9]{1,3}/!d' $OSSI_WL_IP
-
 
167
}
96
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload }"
168
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 }"
97
nb_args=$#
169
nb_args=$#
98
args=$1
170
args=$1
99
if [ $nb_args -eq 0 ]
171
if [ $nb_args -eq 0 ]
100
then
172
then
101
	  args="-h"
173
	  args="-h"
Line 182... Line 254...
182
					touch $PATH_FILE/urls
254
					touch $PATH_FILE/urls
183
					chown dansguardian:apache $PATH_FILE/urls
255
					chown dansguardian:apache $PATH_FILE/urls
184
				fi
256
				fi
185
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
257
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
186
				
258
				
187
				# retrieve the ip addresses for iptables
259
				# retrieving ip addresses for iptables
188
				# create an set save for the selected category
260
				# create a set save for the selected category
189
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add blacklist_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
261
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add blacklist_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
190
				# for dnsmask, remove IP addesses, accented characters and commented lines.
262
				# for dnsmask, remove IP addesses, accented characters and commented lines.
191
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
263
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
192
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
264
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
193
				$SED "/^#.*/d" $FILE_tmp
265
				$SED "/^#.*/d" $FILE_tmp
Line 227... Line 299...
227
		cp -f $DIR_DG_BL/ossi/domains $DIR_DNS_BL/ossi.conf
299
		cp -f $DIR_DG_BL/ossi/domains $DIR_DNS_BL/ossi.conf
228
		$SED "s?.*?address=/&/$PRIVATE_IP?g" $DIR_DNS_BL/ossi.conf
300
		$SED "s?.*?address=/&/$PRIVATE_IP?g" $DIR_DNS_BL/ossi.conf
229
		cp -f $DIR_DG_BL/ossi/domains_wl $DIR_DNS_WL/ossi.conf
301
		cp -f $DIR_DG_BL/ossi/domains_wl $DIR_DNS_WL/ossi.conf
230
		bl_enable
302
		bl_enable
231
		;;
303
		;;
-
 
304
	# retrieving IPs of all domain names for the whitelist
-
 
305
	-ip_retrieving | --ip_retrieving)	
-
 
306
		ip_retrieving
-
 
307
		;;
-
 
308
	# retrieving IPs of all domain names for the whitelist ossi category
-
 
309
	-ip_retrieving_ossi | --ip_retrieving_ossi)	
-
 
310
		ip_retrieving_ossi
-
 
311
		;;
232
	*)
312
	*)
233
		echo "Argument inconnu :$1";
313
		echo "Argument inconnu :$1";
234
		echo "$usage"
314
		echo "$usage"
235
		exit 1
315
		exit 1
236
		;;
316
		;;