Subversion Repositories ALCASAR

Rev

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

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