Subversion Repositories ALCASAR

Rev

Rev 1371 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 1371 Rev 1377
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
 
9
# Gestion de la BL pour le filtrage de domaine (via dnsmasq) et d'URL (via Dansguardian)
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)
10
# Manage the BL for DnsBlackHole (dnsmasq) and URL filtering (Dansguardian)
11
 
11
 
12
DIR_CONF="/usr/local/etc"
12
DIR_CONF="/usr/local/etc"
13
CONF_FILE="$DIR_CONF/alcasar.conf"
13
CONF_FILE="$DIR_CONF/alcasar.conf"
14
private_ip_mask=`grep PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
14
private_ip_mask=`grep PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
15
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
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
16
PRIVATE_IP=`echo $private_ip_mask | cut -d"/" -f1`			# ALCASAR LAN IP address
17
DIR_tmp="/tmp/blacklists"
17
DIR_tmp="/tmp/blacklists"
18
FILE_tmp="/tmp/filesfilter.txt"
18
FILE_tmp="/tmp/filesfilter.txt"
19
FILE_ip_tmp="/tmp/filesipfilter.txt"
19
FILE_ip_tmp="/tmp/filesipfilter.txt"
20
DIR_DG="/etc/dansguardian/lists"
20
DIR_DG="/etc/dansguardian/lists"
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
53
		ln -s $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
58
		ln -s $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
54
		ln -s $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
59
		ln -s $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
55
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
60
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
56
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
61
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
57
	done
62
	done
58
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
63
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
59
	mv $FILE_tmp $BL_CATEGORIES
64
	mv $FILE_tmp $BL_CATEGORIES
60
	# process the file $WL_CATEGORIES with the choice of categories 
65
	# process the file $WL_CATEGORIES with the choice of categories 
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/*
85
	$SED "s/^reportinglevel =.*/reportinglevel = -1/g" /etc/dansguardian/dansguardian.conf
94
	$SED "s/^reportinglevel =.*/reportinglevel = -1/g" /etc/dansguardian/dansguardian.conf
86
	$SED "/google/d" $DNSMASQ_BL_CONF # remove nosslsearch server
95
	$SED "/google/d" $DNSMASQ_BL_CONF # remove nosslsearch server
87
	$SED "s?^[^#]?#&?g" $DIR_DG/urlregexplist  # remove safe searching
96
	$SED "s?^[^#]?#&?g" $DIR_DG/urlregexplist  # remove safe searching
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"
102
fi
174
fi
103
case $args in
175
case $args in
104
	-\? | -h* | --h*)
176
	-\? | -h* | --h*)
105
		echo "$usage"
177
		echo "$usage"
106
		exit 0
178
		exit 0
107
		;;
179
		;;
108
	# Retrieve Toulouse BL
180
	# Retrieve Toulouse BL
109
	-cat_choice | --cat_choice)
181
	-cat_choice | --cat_choice)
110
		cat_choice
182
		cat_choice
111
		;;
183
		;;
112
	-download | --download)
184
	-download | --download)
113
		rm -rf /tmp/con_ok.html
185
		rm -rf /tmp/con_ok.html
114
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
186
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
115
		if [ ! -e /tmp/con_ok.html ]
187
		if [ ! -e /tmp/con_ok.html ]
116
		then
188
		then
117
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
189
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
118
		else 
190
		else 
119
			rm -rf /tmp/con_ok.html $DIR_tmp
191
			rm -rf /tmp/con_ok.html $DIR_tmp
120
			mkdir $DIR_tmp
192
			mkdir $DIR_tmp
121
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
193
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
122
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
194
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
123
			chown -R apache:apache $DIR_tmp
195
			chown -R apache:apache $DIR_tmp
124
		fi
196
		fi
125
		;;		
197
		;;		
126
	# Adapt Toulouse BL to ALCASAR architecture (dnsmasq + DG + iptables)
198
	# Adapt Toulouse BL to ALCASAR architecture (dnsmasq + DG + iptables)
127
	-adapt | --adapt)
199
	-adapt | --adapt)
128
		echo -n "Toulouse BlackList migration process. Please wait : "
200
		echo -n "Toulouse BlackList migration process. Please wait : "
129
		if [ ! -e $DIR_SHARE/ossi-ip-wl ]
201
		if [ ! -e $DIR_SHARE/ossi-ip-wl ]
130
		then
202
		then
131
			touch $DIR_SHARE/ossi-ip-wl
203
			touch $DIR_SHARE/ossi-ip-wl
132
			chown apache $DIR_SHARE/ossi-ip-wl
204
			chown apache $DIR_SHARE/ossi-ip-wl
133
		fi
205
		fi
134
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
206
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
135
		then
207
		then
136
			[ -d $DIR_DG_BL/ossi ] && mv $DIR_DG_BL/ossi $DIR_tmp
208
			[ -d $DIR_DG_BL/ossi ] && mv $DIR_DG_BL/ossi $DIR_tmp
137
			[ -e $DIR_IP_BL/ossi ] && mv $DIR_IP_BL/ossi $DIR_tmp/ossi-ip-bl
209
			[ -e $DIR_IP_BL/ossi ] && mv $DIR_IP_BL/ossi $DIR_tmp/ossi-ip-bl
138
			rm -rf $DIR_DG_BL $DIR_IP_BL
210
			rm -rf $DIR_DG_BL $DIR_IP_BL
139
			mkdir $DIR_DG_BL $DIR_IP_BL
211
			mkdir $DIR_DG_BL $DIR_IP_BL
140
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
212
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
141
			[ -d $DIR_tmp/ossi ] && mv -f $DIR_tmp/ossi $DIR_DG_BL/
213
			[ -d $DIR_tmp/ossi ] && mv -f $DIR_tmp/ossi $DIR_DG_BL/
142
		fi
214
		fi
143
		rm -f $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
215
		rm -f $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
144
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
216
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
145
		touch $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
217
		touch $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
146
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
218
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
147
		chown -R dansguardian:apache $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
219
		chown -R dansguardian:apache $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
148
		chmod -R g+w $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
220
		chmod -R g+w $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
149
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
221
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
150
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
222
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
151
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
223
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
152
		do
224
		do
153
			categorie=`echo $dir_categorie|cut -d "/" -f6`
225
			categorie=`echo $dir_categorie|cut -d "/" -f6`
154
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
226
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
155
			if [ "$categorie_type" == "white" ]
227
			if [ "$categorie_type" == "white" ]
156
			then
228
			then
157
				echo "$dir_categorie" >> $WL_CATEGORIES 
229
				echo "$dir_categorie" >> $WL_CATEGORIES 
158
				echo `basename $dir_categorie` >> $WL_CATEGORIES_ENABLED  # by default all WL are enabled 
230
				echo `basename $dir_categorie` >> $WL_CATEGORIES_ENABLED  # by default all WL are enabled 
159
			else
231
			else
160
				echo "$dir_categorie" >> $BL_CATEGORIES
232
				echo "$dir_categorie" >> $BL_CATEGORIES
161
			fi
233
			fi
162
		done
234
		done
163
		rm -f $FILE_tmp
235
		rm -f $FILE_tmp
164
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
236
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
165
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
237
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
166
		do
238
		do
167
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
239
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
168
			if [ $ok != "1" ] 
240
			if [ $ok != "1" ] 
169
			then
241
			then
170
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
242
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
171
			fi
243
			fi
172
		done
244
		done
173
		# Creation of DNSMASQ and Iptables BL and WL
245
		# Creation of DNSMASQ and Iptables BL and WL
174
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
246
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
175
		do
247
		do
176
			for PATH_FILE in `cat $LIST` # for each category
248
			for PATH_FILE in `cat $LIST` # for each category
177
			do
249
			do
178
				DOMAINE=`basename $PATH_FILE`
250
				DOMAINE=`basename $PATH_FILE`
179
				echo -n "$DOMAINE, "
251
				echo -n "$DOMAINE, "
180
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
252
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
181
				then
253
				then
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
194
				if [ "$LIST" == "$BL_CATEGORIES" ]
266
				if [ "$LIST" == "$BL_CATEGORIES" ]
195
				then
267
				then
196
					# adapt to the dnsmasq syntax for the blacklist
268
					# adapt to the dnsmasq syntax for the blacklist
197
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
269
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
198
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
270
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
199
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
271
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
200
				else
272
				else
201
					# adapt to the dnsmasq syntax for the whitelist
273
					# adapt to the dnsmasq syntax for the whitelist
202
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
274
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
203
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
275
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
204
				fi
276
				fi
205
			done
277
			done
206
		done
278
		done
207
		rm -f $FILE_tmp $FILE_ip_tmp
279
		rm -f $FILE_tmp $FILE_ip_tmp
208
		# Restoring ossi files
280
		# Restoring ossi files
209
		[ -e $DIR_tmp/ossi-ip-bl ] && mv $DIR_tmp/ossi-ip-bl $DIR_IP_BL/ossi
281
		[ -e $DIR_tmp/ossi-ip-bl ] && mv $DIR_tmp/ossi-ip-bl $DIR_IP_BL/ossi
210
		rm -rf $DIR_tmp
282
		rm -rf $DIR_tmp
211
		echo
283
		echo
212
		;;
284
		;;
213
	# reload when categories are changed 
285
	# reload when categories are changed 
214
	-reload | --reload)
286
	-reload | --reload)
215
		# for DG
287
		# for DG
216
		chown -R dansguardian:apache $DIR_DG_BL/ossi
288
		chown -R dansguardian:apache $DIR_DG_BL/ossi
217
		chmod -R g+w $DIR_DG_BL/ossi
289
		chmod -R g+w $DIR_DG_BL/ossi
218
		cat_choice
290
		cat_choice
219
		#  for dnsmasq (rehabited domain names)
291
		#  for dnsmasq (rehabited domain names)
220
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
292
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
221
		then
293
		then
222
			for i in `cat $DIR_DG/exceptionsitelist`
294
			for i in `cat $DIR_DG/exceptionsitelist`
223
			do
295
			do
224
				$SED "/$i/d" $DIR_DNS_BL/*
296
				$SED "/$i/d" $DIR_DNS_BL/*
225
			done
297
			done
226
		fi
298
		fi
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
		;;
237
esac
317
esac
238
 
318
 
239
 
319