Subversion Repositories ALCASAR

Rev

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

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