Subversion Repositories ALCASAR

Rev

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

Rev 1416 Rev 1482
1
#/bin/bash
1
#/bin/bash
2
 
2
 
3
# $Id: alcasar-bl.sh 1416 2014-07-22 17:12:07Z richard $
3
# $Id: alcasar-bl.sh 1482 2014-11-07 22:11:06Z 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
OSSI_DOMAINS_WL="$DIR_DG/blacklists/ossi/domains_wl"			# Domain names for the ossi category
27
DIR_SHARE="/usr/local/share"
27
DIR_SHARE="/usr/local/share"
28
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
29
DIR_DNS_WL="$DIR_SHARE/dnsmasq-wl"					# all the WL	'	'	'
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 
30
DIR_IP_BL="$DIR_SHARE/iptables-bl"					# all the IP addresses of the BL 
31
DIR_DNS_BL_ENABLED="$DIR_SHARE/dnsmasq-bl-enabled"			# symbolic link to the domains BL (only enabled categories)
31
DIR_DNS_BL_ENABLED="$DIR_SHARE/dnsmasq-bl-enabled"			# symbolic link to the domains BL (only enabled categories)
32
DIR_DNS_WL_ENABLED="$DIR_SHARE/dnsmasq-wl-enabled"			#	'	'	'	WL	'	'	'
32
DIR_DNS_WL_ENABLED="$DIR_SHARE/dnsmasq-wl-enabled"			#	'	'	'	WL	'	'	'
33
DIR_IP_BL_ENABLED="$DIR_SHARE/iptables-bl-enabled"			#	'	'	ip BL (only enabled categories)
33
DIR_IP_BL_ENABLED="$DIR_SHARE/iptables-bl-enabled"			#	'	'	ip BL (only enabled categories)
34
DNSMASQ_BL_CONF="/etc/dnsmasq-blacklist.conf"				# conf file of dnsmasq-blacklist
34
DNSMASQ_BL_CONF="/etc/dnsmasq-blacklist.conf"				# conf file of dnsmasq-blacklist
35
DNS1=`grep "DNS1" $CONF_FILE | cut -d '=' -f 2` 			# server DNS1 (for WL domain names)
35
DNS1=`grep "DNS1" $CONF_FILE | cut -d '=' -f 2` 			# server DNS1 (for WL domain names)
36
BL_SERVER="dsi.ut-capitole.fr"
36
BL_SERVER="dsi.ut-capitole.fr"
37
SED="/bin/sed -i"
37
SED="/bin/sed -i"
38
 
38
 
39
# enable/disable the BL & WL categories
39
# enable/disable the BL & WL categories
40
function cat_choice (){
40
function cat_choice (){
41
	# saving ossi category
41
	# saving ossi category
42
	mkdir $DIR_tmp
42
	mkdir $DIR_tmp
43
	cp $DIR_IP_BL/ossi $DIR_tmp
43
	cp $DIR_IP_BL/ossi $DIR_tmp
44
	if [ -d $DIR_IP_BL_ENABLED ]
44
	if [ -d $DIR_IP_BL_ENABLED ]
45
	then
45
	then
46
		for file in `ls -1 $DIR_IP_BL_ENABLED | grep -v "^ossi-*"`
46
		for file in `ls -1 $DIR_IP_BL_ENABLED | grep -v "^ossi-*"`
47
		do
47
		do
48
			rm -f $DIR_IP_BL_ENABLED/$file
48
			rm -f $DIR_IP_BL_ENABLED/$file
49
		done
49
		done
50
	else
50
	else
51
		mkdir $DIR_IP_BL_ENABLED
51
		mkdir $DIR_IP_BL_ENABLED
52
		chown apache $DIR_IP_BL_ENABLED
52
		chown apache $DIR_IP_BL_ENABLED
53
	fi
53
	fi
54
	if [ -d $DIR_DNS_BL_ENABLED ]
54
	if [ -d $DIR_DNS_BL_ENABLED ]
55
	then
55
	then
56
		for file in `ls -1 $DIR_DNS_BL_ENABLED | grep -v "^ossi-*"`
56
		for file in `ls -1 $DIR_DNS_BL_ENABLED | grep -v "^ossi-*"`
57
		do
57
		do
58
			rm -f $DIR_DNS_BL_ENABLED/$file
58
			rm -f $DIR_DNS_BL_ENABLED/$file
59
		done
59
		done
60
	else
60
	else
61
		mkdir $DIR_DNS_BL_ENABLED
61
		mkdir $DIR_DNS_BL_ENABLED
62
		chown apache $DIR_DNS_BL_ENABLED
62
		chown apache $DIR_DNS_BL_ENABLED
63
	fi
63
	fi
64
	rm -rf $DIR_DNS_WL_ENABLED # cleaning for dnsmasq and iptables
64
	rm -rf $DIR_DNS_WL_ENABLED # cleaning for dnsmasq and iptables
65
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
65
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
66
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
66
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
67
	mkdir $DIR_DNS_WL_ENABLED
67
	mkdir $DIR_DNS_WL_ENABLED
68
	# process the file $BL_CATEGORIES with the choice of categories 
68
	# process the file $BL_CATEGORIES with the choice of categories 
69
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
69
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
70
	do
70
	do
71
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
71
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
72
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
72
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
73
		ln -sf $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
73
		ln -sf $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
74
		ln -sf $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
74
		ln -sf $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
75
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
75
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
76
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
76
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
77
	done
77
	done
78
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
78
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
79
	mv $FILE_tmp $BL_CATEGORIES
79
	mv $FILE_tmp $BL_CATEGORIES
80
	# process the file $WL_CATEGORIES with the choice of categories 
80
	# process the file $WL_CATEGORIES with the choice of categories 
81
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
81
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
82
	do
82
	do
83
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
83
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
84
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
84
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
85
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
85
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
86
	done
86
	done
87
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
87
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
88
	mv $FILE_tmp $WL_CATEGORIES
88
	mv $FILE_tmp $WL_CATEGORIES
89
	# restoring ip files and ossi category
89
	# restoring ip files and ossi category
90
	mv $DIR_tmp/ossi $DIR_IP_BL
90
	mv $DIR_tmp/ossi $DIR_IP_BL
91
	chown apache $DIR_IP_BL/ossi
91
	chown apache $DIR_IP_BL/ossi
92
	rm -rf $DIR_tmp
92
	rm -rf $DIR_tmp
93
}
93
}
94
function bl_enable (){
-
 
95
	$SED "s/^reportinglevel =.*/reportinglevel = 3/g" /etc/dansguardian/dansguardian.conf
-
 
96
	if [ "$PARENT_SCRIPT" != "alcasar-conf.sh" ] # don't launch on install stage
-
 
97
	then
-
 
98
		/bin/systemctl restart dansguardian
-
 
99
		/bin/systemctl restart dnsmasq
-
 
100
		/bin/systemctl restart dnsmasq-blacklist
-
 
101
		/bin/systemctl restart dnsmasq-whitelist
-
 
102
		/usr/local/bin/alcasar-iptables.sh
-
 
103
	fi
-
 
104
}
94
 
105
function bl_disable (){
-
 
106
	rm -rf $DIR_DNS_BL_ENABLED/*
-
 
107
	$SED "s/^reportinglevel =.*/reportinglevel = -1/g" /etc/dansguardian/dansguardian.conf
-
 
108
	$SED "/google/d" $DNSMASQ_BL_CONF # remove nosslsearch server
-
 
109
	$SED "s?^[^#]?#&?g" $DIR_DG/urlregexplist  # remove safe searching
-
 
110
	$SED "s/^\*ip$/#*ip/g" $DIR_DG/bannedsitelist # remove pureip browsing
-
 
111
	if [ "$PARENT_SCRIPT" != "alcasar-conf.sh" ] # don't launch on install stage
-
 
112
	then
-
 
113
		/bin/systemctl restart dansguardian
-
 
114
		/bin/systemctl restart dnsmasq
-
 
115
		/bin/systemctl restart dnsmasq-blacklist
-
 
116
		/bin/systemctl restart dnsmasq-whitelist
-
 
117
		/usr/local/bin/alcasar-iptables.sh
-
 
118
	fi
-
 
119
}
-
 
120
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload }"
95
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload }"
121
nb_args=$#
96
nb_args=$#
122
args=$1
97
args=$1
123
if [ $nb_args -eq 0 ]
98
if [ $nb_args -eq 0 ]
124
then
99
then
125
	  args="-h"
100
	  args="-h"
126
fi
101
fi
127
case $args in
102
case $args in
128
	-\? | -h* | --h*)
103
	-\? | -h* | --h*)
129
		echo "$usage"
104
		echo "$usage"
130
		exit 0
105
		exit 0
131
		;;
106
		;;
132
	# Retrieve Toulouse BL
107
	# Retrieve Toulouse BL
133
	-cat_choice | --cat_choice)
108
	-cat_choice | --cat_choice)
134
		cat_choice
109
		cat_choice
135
		;;
110
		;;
136
	-download | --download)
111
	-download | --download)
137
		rm -rf /tmp/con_ok.html
112
		rm -rf /tmp/con_ok.html
138
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
113
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
139
		if [ ! -e /tmp/con_ok.html ]
114
		if [ ! -e /tmp/con_ok.html ]
140
		then
115
		then
141
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
116
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
142
		else 
117
		else 
143
			rm -rf /tmp/con_ok.html $DIR_tmp
118
			rm -rf /tmp/con_ok.html $DIR_tmp
144
			mkdir $DIR_tmp
119
			mkdir $DIR_tmp
145
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
120
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
146
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
121
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
147
			chown -R apache:apache $DIR_tmp
122
			chown -R apache:apache $DIR_tmp
148
		fi
123
		fi
149
		;;		
124
		;;		
150
	# Adapt Toulouse BL to ALCASAR architecture (dnsmasq + DG + iptables)
125
	# Adapt Toulouse BL to ALCASAR architecture (dnsmasq + DG + iptables)
151
	-adapt | --adapt)
126
	-adapt | --adapt)
152
		echo -n "Toulouse BlackList migration process. Please wait : "
127
		echo -n "Toulouse BlackList migration process. Please wait : "
153
		if [ ! -e $DIR_SHARE/ossi-ip-wl ]
128
		if [ ! -e $DIR_SHARE/ossi-ip-wl ]
154
		then
129
		then
155
			touch $DIR_SHARE/ossi-ip-wl
130
			touch $DIR_SHARE/ossi-ip-wl
156
			chown apache $DIR_SHARE/ossi-ip-wl
131
			chown apache $DIR_SHARE/ossi-ip-wl
157
		fi
132
		fi
158
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
133
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
159
		then
134
		then
160
			[ -d $DIR_DG_BL/ossi ] && mv $DIR_DG_BL/ossi $DIR_tmp
135
			[ -d $DIR_DG_BL/ossi ] && mv $DIR_DG_BL/ossi $DIR_tmp
161
			[ -e $DIR_IP_BL/ossi ] && mv $DIR_IP_BL/ossi $DIR_tmp/ossi-ip-bl
136
			[ -e $DIR_IP_BL/ossi ] && mv $DIR_IP_BL/ossi $DIR_tmp/ossi-ip-bl
162
			rm -rf $DIR_DG_BL $DIR_IP_BL
137
			rm -rf $DIR_DG_BL $DIR_IP_BL
163
			mkdir $DIR_DG_BL $DIR_IP_BL
138
			mkdir $DIR_DG_BL $DIR_IP_BL
164
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
139
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
165
			[ -d $DIR_tmp/ossi ] && mv -f $DIR_tmp/ossi $DIR_DG_BL/
140
			[ -d $DIR_tmp/ossi ] && mv -f $DIR_tmp/ossi $DIR_DG_BL/
166
		fi
141
		fi
167
		rm -f $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
142
		rm -f $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
168
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
143
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
169
		touch $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
144
		touch $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
170
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
145
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
171
		chown -R dansguardian:apache $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
146
		chown -R dansguardian:apache $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
172
		chmod -R g+w $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
147
		chmod -R g+w $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
173
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
148
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
174
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
149
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
175
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
150
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
176
		do
151
		do
177
			categorie=`echo $dir_categorie|cut -d "/" -f6`
152
			categorie=`echo $dir_categorie|cut -d "/" -f6`
178
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
153
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
179
			if [ "$categorie_type" == "white" ]
154
			if [ "$categorie_type" == "white" ]
180
			then
155
			then
181
				echo "$dir_categorie" >> $WL_CATEGORIES 
156
				echo "$dir_categorie" >> $WL_CATEGORIES 
182
				echo `basename $dir_categorie` >> $WL_CATEGORIES_ENABLED  # by default all WL are enabled 
157
				echo `basename $dir_categorie` >> $WL_CATEGORIES_ENABLED  # by default all WL are enabled 
183
			else
158
			else
184
				echo "$dir_categorie" >> $BL_CATEGORIES
159
				echo "$dir_categorie" >> $BL_CATEGORIES
185
			fi
160
			fi
186
		done
161
		done
187
		rm -f $FILE_tmp
162
		rm -f $FILE_tmp
188
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
163
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
189
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
164
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
190
		do
165
		do
191
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
166
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
192
			if [ $ok != "1" ] 
167
			if [ $ok != "1" ] 
193
			then
168
			then
194
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
169
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
195
			fi
170
			fi
196
		done
171
		done
197
		# Creation of DNSMASQ and Iptables BL and WL
172
		# Creation of DNSMASQ and Iptables BL and WL
198
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
173
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
199
		do
174
		do
200
			for PATH_FILE in `cat $LIST` # for each category
175
			for PATH_FILE in `cat $LIST` # for each category
201
			do
176
			do
202
				DOMAINE=`basename $PATH_FILE`
177
				DOMAINE=`basename $PATH_FILE`
203
				echo -n "$DOMAINE, "
178
				echo -n "$DOMAINE, "
204
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
179
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
205
				then
180
				then
206
					touch $PATH_FILE/urls
181
					touch $PATH_FILE/urls
207
					chown dansguardian:apache $PATH_FILE/urls
182
					chown dansguardian:apache $PATH_FILE/urls
208
				fi
183
				fi
209
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
184
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
210
				# extract ip addresses for iptables
185
				# extract ip addresses for iptables
211
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add blacklist_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
186
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add blacklist_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
212
				# for dnsmask, remove IP addesses, accented characters and commented lines.
187
				# for dnsmask, remove IP addesses, accented characters and commented lines.
213
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
188
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
214
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
189
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
215
				$SED "/^#.*/d" $FILE_tmp
190
				$SED "/^#.*/d" $FILE_tmp
216
				if [ "$LIST" == "$BL_CATEGORIES" ]
191
				if [ "$LIST" == "$BL_CATEGORIES" ]
217
				then
192
				then
218
					# adapt to the dnsmasq syntax for the blacklist
193
					# adapt to the dnsmasq syntax for the blacklist
219
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
194
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
220
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
195
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
221
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
196
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
222
				else
197
				else
223
					# adapt to the dnsmasq syntax for the whitelist
198
					# adapt to the dnsmasq syntax for the whitelist
224
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
199
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
225
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
200
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
226
				fi
201
				fi
227
			done
202
			done
228
		done
203
		done
229
		rm -f $FILE_tmp $FILE_ip_tmp
204
		rm -f $FILE_tmp $FILE_ip_tmp
230
		# Restoring ossi file of BL IP
205
		# Restoring ossi file of BL IP
231
		[ -e $DIR_tmp/ossi-ip-bl ] && mv $DIR_tmp/ossi-ip-bl $DIR_IP_BL/ossi
206
		[ -e $DIR_tmp/ossi-ip-bl ] && mv $DIR_tmp/ossi-ip-bl $DIR_IP_BL/ossi
232
		rm -rf $DIR_tmp
207
		rm -rf $DIR_tmp
233
		echo
208
		echo
234
		;;
209
		;;
235
	# reload when categories are changed 
210
	# reload when categories are changed 
236
	-reload | --reload)
211
	-reload | --reload)
237
		# for DG
212
		# for DG
238
		chown -R dansguardian:apache $DIR_DG_BL/ossi
213
		chown -R dansguardian:apache $DIR_DG_BL/ossi
239
		chmod -R g+w $DIR_DG_BL/ossi
214
		chmod -R g+w $DIR_DG_BL/ossi
240
		cat_choice
215
		cat_choice
241
		#  for dnsmasq (rehabited domain names)
216
		#  for dnsmasq (rehabited domain names)
242
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
217
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
243
		then
218
		then
244
			for i in `cat $DIR_DG/exceptionsitelist`
219
			for i in `cat $DIR_DG/exceptionsitelist`
245
			do
220
			do
246
				$SED "/$i/d" $DIR_DNS_BL/*
221
				$SED "/$i/d" $DIR_DNS_BL/*
247
			done
222
			done
248
		fi
223
		fi
249
		cp -f $DIR_DG_BL/ossi/domains $DIR_DNS_BL/ossi.conf
224
		cp -f $DIR_DG_BL/ossi/domains $DIR_DNS_BL/ossi.conf
250
		$SED "s?.*?address=/&/$PRIVATE_IP?g" $DIR_DNS_BL/ossi.conf
225
		$SED "s?.*?address=/&/$PRIVATE_IP?g" $DIR_DNS_BL/ossi.conf
251
		cp -f $DIR_DG_BL/ossi/domains_wl $DIR_DNS_WL/ossi.conf
226
		cp -f $DIR_DG_BL/ossi/domains_wl $DIR_DNS_WL/ossi.conf
252
		bl_enable
227
		bl_enable
253
		;;
228
		;;
254
	*)
229
	*)
255
		echo "Argument inconnu :$1";
230
		echo "Argument inconnu :$1";
256
		echo "$usage"
231
		echo "$usage"
257
		exit 1
232
		exit 1
258
		;;
233
		;;
259
esac
234
esac
260
 
235
 
261
 
236