Subversion Repositories ALCASAR

Rev

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

Rev 1874 Rev 1886
1
#/bin/bash
1
#/bin/bash
2
 
2
 
3
# $Id: alcasar-bl.sh 1874 2016-05-06 14:43:52Z raphael.pion $
3
# $Id: alcasar-bl.sh 1886 2016-05-12 15:36:52Z 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
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
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)
35
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)
36
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
37
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)
38
BL_SERVER="dsi.ut-capitole.fr"
38
BL_SERVER="dsi.ut-capitole.fr"
39
SED="/bin/sed -i"
39
SED="/bin/sed -i"
40
 
40
 
41
# enable/disable the BL & WL categories
41
# enable/disable the BL & WL categories
42
function cat_choice (){
42
function cat_choice (){
43
	# saving ossi category
43
	# saving ossi category
44
	mkdir $DIR_tmp
44
	mkdir $DIR_tmp
45
	cp $DIR_IP_BL/ossi $DIR_tmp
45
	cp $DIR_IP_BL/ossi $DIR_tmp
46
 
46
 
47
	#ip BL ENABLE
47
	#ip BL ENABLE
48
	if [ -d $DIR_IP_BL_ENABLED ]
48
	if [ -d $DIR_IP_BL_ENABLED ]
49
	then
49
	then
50
		for file in `ls -1 $DIR_IP_BL_ENABLED | grep -v "^ossi-*"`
50
		for file in `ls -1 $DIR_IP_BL_ENABLED | grep -v "^ossi-*"`
51
		do
51
		do
52
			rm -f $DIR_IP_BL_ENABLED/$file
52
			rm -f $DIR_IP_BL_ENABLED/$file
53
		done
53
		done
54
	else
54
	else
55
		mkdir $DIR_IP_BL_ENABLED
55
		mkdir $DIR_IP_BL_ENABLED
56
		chown apache $DIR_IP_BL_ENABLED
56
		chown apache $DIR_IP_BL_ENABLED
57
	fi
57
	fi
58
	
58
	
59
	
59
	
60
	#dns BL ENABLED
60
	#dns BL ENABLED
61
	if [ -d $DIR_DNS_BL_ENABLED ]
61
	if [ -d $DIR_DNS_BL_ENABLED ]
62
	then
62
	then
63
		for file in `ls -1 $DIR_DNS_BL_ENABLED | grep -v "^ossi-*"`
63
		for file in `ls -1 $DIR_DNS_BL_ENABLED | grep -v "^ossi-*"`
64
		do
64
		do
65
			rm -f $DIR_DNS_BL_ENABLED/$file
65
			rm -f $DIR_DNS_BL_ENABLED/$file
66
		done
66
		done
67
	else
67
	else
68
		mkdir $DIR_DNS_BL_ENABLED
68
		mkdir $DIR_DNS_BL_ENABLED
69
		chown apache $DIR_DNS_BL_ENABLED
69
		chown apache $DIR_DNS_BL_ENABLED
70
	fi
70
	fi
71
	
71
	
72
	
72
	
73
	#ip WL ENABLE
73
	#ip WL ENABLE
74
	if [ -d $DIR_IP_WL_ENABLED ]
74
	if [ -d $DIR_IP_WL_ENABLED ]
75
	then
75
	then
76
		for file in `ls -1 $DIR_IP_WL_ENABLED | grep -v "^ossi*"`
76
		for file in `ls -1 $DIR_IP_WL_ENABLED | grep -v "^ossi*"`
77
		do
77
		do
78
			rm -f $DIR_IP_WL_ENABLED/$file
78
			rm -f $DIR_IP_WL_ENABLED/$file
79
		done
79
		done
80
	else
80
	else
81
		mkdir $DIR_IP_WL_ENABLED
81
		mkdir $DIR_IP_WL_ENABLED
82
		chown apache $DIR_IP_WL_ENABLED
82
		chown apache $DIR_IP_WL_ENABLED
83
		touch $DIR_IP_WL_ENABLED/ossi
83
		touch $DIR_IP_WL_ENABLED/ossi
84
		chown apache $DIR_IP_WL_ENABLED/ossi
84
		chown apache $DIR_IP_WL_ENABLED/ossi
85
	fi
85
	fi
86
 
86
 
87
	#dns WL ENABLED
87
	#dns WL ENABLED
88
	if [ -d $DIR_DNS_WL_ENABLED ]
88
	if [ -d $DIR_DNS_WL_ENABLED ]
89
	then
89
	then
90
		for file in `ls -1 $DIR_DNS_WL_ENABLED | grep -v "^ossi-*"`
90
		for file in `ls -1 $DIR_DNS_WL_ENABLED | grep -v "^ossi-*"`
91
		do
91
		do
92
			rm -f $DIR_DNS_WL_ENABLED/$file
92
			rm -f $DIR_DNS_WL_ENABLED/$file
93
		done
93
		done
94
	else
94
	else
95
		mkdir $DIR_DNS_WL_ENABLED
95
		mkdir $DIR_DNS_WL_ENABLED
96
		chown apache $DIR_DNS_WL_ENABLED
96
		chown apache $DIR_DNS_WL_ENABLED
97
	fi
97
	fi
98
	
98
	
99
	#dns WL ossi.conf 
99
	#dns WL ossi.conf 
100
	if [ ! -e $DIR_DNS_WL/ossi.conf ]
100
	if [ ! -e $DIR_DNS_WL/ossi.conf ]
101
	then
101
	then
102
		touch $DIR_DNS_WL/ossi.conf
102
		touch $DIR_DNS_WL/ossi.conf
103
		chown apache $DIR_DNS_WL/ossi.conf
103
		chown apache $DIR_DNS_WL/ossi.conf
-
 
104
		if [ ! -e $DIR_DNS_WL_ENABLED/ossi ]
-
 
105
		then
104
		ln -s $DIR_DNS_WL/ossi.conf $DIR_DNS_WL_ENABLED/ossi
106
		ln -s $DIR_DNS_WL/ossi.conf $DIR_DNS_WL_ENABLED/ossi
-
 
107
		fi
105
	fi
108
	fi
106
 
109
 
107
	# update categories with rsync
110
	# update categories with rsync
108
	if [ ! -e $DIR_CONF/update_cat.conf ]
111
	if [ ! -e $DIR_CONF/update_cat.conf ]
109
	then
112
	then
110
		touch $DIR_CONF/update_cat.conf
113
		touch $DIR_CONF/update_cat.conf
111
		chown root:apache $DIR_CONF/update_cat.conf
114
		chown root:apache $DIR_CONF/update_cat.conf
112
		chmod 660 $DIR_CONF/update_cat.conf
115
		chmod 660 $DIR_CONF/update_cat.conf
113
	fi
116
	fi
114
	
117
	
115
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
118
	$SED "/\.Include/d" $DIR_DG/bannedsitelist $DIR_DG/bannedurllist # cleaning for DG
116
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
119
	$SED "s?^[^#]?#&?g" $BL_CATEGORIES $WL_CATEGORIES # cleaning BL & WL categories file (comment all lines)
117
	# process the file $BL_CATEGORIES with the choice of categories 
120
	# process the file $BL_CATEGORIES with the choice of categories 
118
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
121
	for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
119
	do
122
	do
120
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
123
		$SED "/\/$ENABLE_CATEGORIE$/d" $BL_CATEGORIES 
121
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
124
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $BL_CATEGORIES
122
		ln -sf $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
125
		ln -sf $DIR_DNS_BL/$ENABLE_CATEGORIE.conf $DIR_DNS_BL_ENABLED/$ENABLE_CATEGORIE
123
		ln -sf $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
126
		ln -sf $DIR_IP_BL/$ENABLE_CATEGORIE $DIR_IP_BL_ENABLED/$ENABLE_CATEGORIE
124
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
127
		# echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/domains>" >> $DIR_DG/bannedsitelist  # Blacklisted domains are managed by dnsmasq
125
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
128
		echo ".Include<$DIR_DG_BL/$ENABLE_CATEGORIE/urls>" >> $DIR_DG/bannedurllist
126
	done
129
	done
127
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
130
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
128
	mv $FILE_tmp $BL_CATEGORIES
131
	mv $FILE_tmp $BL_CATEGORIES
129
	# process the file $WL_CATEGORIES with the choice of categories 
132
	# process the file $WL_CATEGORIES with the choice of categories 
130
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
133
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
131
	do
134
	do
132
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
135
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
133
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
136
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
134
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
137
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
135
	done
138
	done
136
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
139
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
137
	mv $FILE_tmp $WL_CATEGORIES
140
	mv $FILE_tmp $WL_CATEGORIES
138
	
141
	
139
	# restoring ip files and ossi category BL/WL
142
	# restoring ip files and ossi category BL/WL
140
	mv $DIR_tmp/ossi $DIR_IP_BL
143
	mv $DIR_tmp/ossi $DIR_IP_BL
141
	chown apache $DIR_IP_BL/ossi
144
	chown apache $DIR_IP_BL/ossi
142
	rm -rf $DIR_tmp
145
	rm -rf $DIR_tmp
143
	
146
	
144
}
147
}
145
 
148
 
146
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload } | { -update_cat or --update_cat }"
149
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload } | { -update_cat or --update_cat }"
147
nb_args=$#
150
nb_args=$#
148
args=$1
151
args=$1
149
if [ $nb_args -eq 0 ]
152
if [ $nb_args -eq 0 ]
150
then
153
then
151
	  args="-h"
154
	  args="-h"
152
fi
155
fi
153
case $args in
156
case $args in
154
	-\? | -h* | --h*)
157
	-\? | -h* | --h*)
155
		echo "$usage"
158
		echo "$usage"
156
		exit 0
159
		exit 0
157
		;;
160
		;;
158
	# Retrieve Toulouse University BL
161
	# Retrieve Toulouse University BL
159
	-download | --download)
162
	-download | --download)
160
		rm -rf /tmp/con_ok.html
163
		rm -rf /tmp/con_ok.html
161
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
164
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
162
		if [ ! -e /tmp/con_ok.html ]
165
		if [ ! -e /tmp/con_ok.html ]
163
		then
166
		then
164
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
167
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
165
		else 
168
		else 
166
			rm -rf /tmp/con_ok.html $DIR_tmp
169
			rm -rf /tmp/con_ok.html $DIR_tmp
167
			mkdir $DIR_tmp
170
			mkdir $DIR_tmp
168
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
171
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
169
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
172
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
170
			chown -R apache:apache $DIR_tmp
173
			chown -R apache:apache $DIR_tmp
171
		fi
174
		fi
172
		;;		
175
		;;		
173
	# enable/disable categories (used only during the alcasar install process)
176
	# enable/disable categories (used only during the alcasar install process)
174
	-cat_choice | --cat_choice)
177
	-cat_choice | --cat_choice)
175
		cat_choice
178
		cat_choice
176
		;;
179
		;;
177
	# Adapt Toulouse University BL to ALCASAR architecture (dnsmasq + DG + iptables)
180
	# Adapt Toulouse University BL to ALCASAR architecture (dnsmasq + DG + iptables)
178
	-adapt | --adapt)
181
	-adapt | --adapt)
179
		echo -n "Adaptation process of Toulouse University blackList. Please wait : "
182
		echo -n "Adaptation process of Toulouse University blackList. Please wait : "
180
	
183
	
181
	
184
	
182
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
185
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
183
		then
186
		then
184
			[ -d $DIR_DG_BL/ossi ] && mv $DIR_DG_BL/ossi $DIR_tmp
187
			[ -d $DIR_DG_BL/ossi ] && mv $DIR_DG_BL/ossi $DIR_tmp
185
			[ -e $DIR_IP_BL/ossi ] && mv $DIR_IP_BL/ossi $DIR_tmp/ossi-ip-bl
188
			[ -e $DIR_IP_BL/ossi ] && mv $DIR_IP_BL/ossi $DIR_tmp/ossi-ip-bl
186
			rm -rf $DIR_DG_BL $DIR_IP_BL
189
			rm -rf $DIR_DG_BL $DIR_IP_BL
187
			mkdir $DIR_DG_BL $DIR_IP_BL
190
			mkdir $DIR_DG_BL $DIR_IP_BL
188
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
191
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
189
			[ -d $DIR_tmp/ossi ] && mv -f $DIR_tmp/ossi $DIR_DG_BL/
192
			[ -d $DIR_tmp/ossi ] && mv -f $DIR_tmp/ossi $DIR_DG_BL/
190
		fi
193
		fi
191
		rm -f $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
194
		rm -f $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
192
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
195
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
193
		touch $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
196
		touch $BL_CATEGORIES $WL_CATEGORIES $WL_CATEGORIES_ENABLED
194
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
197
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL
195
		chown -R dansguardian:apache $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
198
		chown -R dansguardian:apache $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
196
		chmod -R g+w $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
199
		chmod -R g+w $DIR_DG $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED
197
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
200
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
198
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
201
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
199
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
202
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
200
		do
203
		do
201
			categorie=`echo $dir_categorie|cut -d "/" -f6`
204
			categorie=`echo $dir_categorie|cut -d "/" -f6`
202
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
205
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
203
			if [ "$categorie_type" == "white" ]
206
			if [ "$categorie_type" == "white" ]
204
			then
207
			then
205
				echo "$dir_categorie" >> $WL_CATEGORIES 
208
				echo "$dir_categorie" >> $WL_CATEGORIES 
206
				echo `basename $dir_categorie` >> $WL_CATEGORIES_ENABLED  # by default all WL are enabled 
209
				echo `basename $dir_categorie` >> $WL_CATEGORIES_ENABLED  # by default all WL are enabled 
207
			fi
210
			fi
208
			echo "$dir_categorie" >> $BL_CATEGORIES # By default all categories are in BL
211
			echo "$dir_categorie" >> $BL_CATEGORIES # By default all categories are in BL
209
		done
212
		done
210
		rm -f $FILE_tmp
213
		rm -f $FILE_tmp
211
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
214
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
212
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
215
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
213
		do
216
		do
214
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
217
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
215
			if [ $ok != "1" ] 
218
			if [ $ok != "1" ] 
216
			then
219
			then
217
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
220
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
218
			fi
221
			fi
219
		done
222
		done
220
		# Creation of DNSMASQ and Iptables BL and WL
223
		# Creation of DNSMASQ and Iptables BL and WL
221
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
224
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
222
		do
225
		do
223
			for PATH_FILE in `cat $LIST` # for each category
226
			for PATH_FILE in `cat $LIST` # for each category
224
			do
227
			do
225
				DOMAINE=`basename $PATH_FILE`
228
				DOMAINE=`basename $PATH_FILE`
226
				echo -n "$DOMAINE, "
229
				echo -n "$DOMAINE, "
227
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
230
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
228
				then
231
				then
229
					touch $PATH_FILE/urls
232
					touch $PATH_FILE/urls
230
					chown dansguardian:apache $PATH_FILE/urls
233
					chown dansguardian:apache $PATH_FILE/urls
231
				fi
234
				fi
232
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
235
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
233
				# extract ip addresses for iptables
236
				# extract ip addresses for iptables
234
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
237
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
235
				# for dnsmask, remove IP addesses, accented characters and commented lines.
238
				# for dnsmask, remove IP addesses, accented characters and commented lines.
236
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
239
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
237
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
240
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
238
				$SED "/^#.*/d" $FILE_tmp
241
				$SED "/^#.*/d" $FILE_tmp
239
				if [ "$LIST" == "$BL_CATEGORIES" ]
242
				if [ "$LIST" == "$BL_CATEGORIES" ]
240
				then
243
				then
241
					# adapt to the dnsmasq syntax for the blacklist
244
					# adapt to the dnsmasq syntax for the blacklist
242
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
245
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
243
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
246
					mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
244
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
247
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
245
				else
248
				else
246
					# adapt to the dnsmasq syntax for the whitelist
249
					# adapt to the dnsmasq syntax for the whitelist
247
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
250
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
248
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
251
					mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
249
				fi
252
				fi
250
			done
253
			done
251
		done
254
		done
252
		rm -f $FILE_tmp $FILE_ip_tmp
255
		rm -f $FILE_tmp $FILE_ip_tmp
253
		# Restoring ossi file of BL IP
256
		# Restoring ossi file of BL IP
254
		[ -e $DIR_tmp/ossi-ip-bl ] && mv $DIR_tmp/ossi-ip-bl $DIR_IP_BL/ossi
257
		[ -e $DIR_tmp/ossi-ip-bl ] && mv $DIR_tmp/ossi-ip-bl $DIR_IP_BL/ossi
255
		rm -rf $DIR_tmp
258
		rm -rf $DIR_tmp
256
		echo
259
		echo
257
		;;
260
		;;
258
		#mise a jour d'une categorie avec rsync
261
		#mise a jour d'une categorie avec rsync
259
		-update_cat | --update_cat)
262
		-update_cat | --update_cat)
260
		
263
		
261
		if [ $(cat /usr/local/etc/update_cat.conf | wc -l) -ne 0 ]
264
		if [ $(cat /usr/local/etc/update_cat.conf | wc -l) -ne 0 ]
262
		then
265
		then
263
		echo -n "Updating categories in /usr/local/etc/update_cat.conf ..."
266
		echo -n "Updating categories in /usr/local/etc/update_cat.conf ..."
264
 
267
 
265
		cat /usr/local/etc/update_cat.conf | while read LIGNE_RSYNC
268
		cat /usr/local/etc/update_cat.conf | while read LIGNE_RSYNC
266
		do
269
		do
267
		CATEGORIE=$(echo $LIGNE_RSYNC | cut -d' ' -f1)
270
		CATEGORIE=$(echo $LIGNE_RSYNC | cut -d' ' -f1)
268
		URL=$(echo $LIGNE_RSYNC | cut -d' ' -f2)
271
		URL=$(echo $LIGNE_RSYNC | cut -d' ' -f2)
269
			
272
			
270
		PATH_FILE=$(find $DIR_DG_BL/ -type d -name $CATEGORIE) # retrieve directory name of the category
273
		PATH_FILE=$(find $DIR_DG_BL/ -type d -name $CATEGORIE) # retrieve directory name of the category
271
		rsync -rv $URL $(dirname $PATH_FILE ) #rsync inside of the blacklist directory
274
		rsync -rv $URL $(dirname $PATH_FILE ) #rsync inside of the blacklist directory
272
		
275
		
273
		# Creation of DNSMASQ and Iptables BL and WL
276
		# Creation of DNSMASQ and Iptables BL and WL
274
		DOMAINE=$(basename $PATH_FILE)
277
		DOMAINE=$(basename $PATH_FILE)
275
 
278
 
276
		#correct some synthaxes
279
		#correct some synthaxes
277
		$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls
280
		$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls
278
		# extract ip addresses for iptables
281
		# extract ip addresses for iptables
279
		awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
282
		awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
280
		# for dnsmask, remove IP addesses, accented characters and commented lines.
283
		# for dnsmask, remove IP addesses, accented characters and commented lines.
281
		egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
284
		egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
282
		$SED "/[äâëêïîöôüû]/d" $FILE_tmp
285
		$SED "/[äâëêïîöôüû]/d" $FILE_tmp
283
		$SED "/^#.*/d" $FILE_tmp
286
		$SED "/^#.*/d" $FILE_tmp
284
		
287
		
285
		black=`grep black $PATH_FILE/usage |wc -l`
288
		black=`grep black $PATH_FILE/usage |wc -l`
286
		if [ $black == "1" ]
289
		if [ $black == "1" ]
287
		then
290
		then
288
			# adapt to the dnsmasq syntax for the blacklist
291
			# adapt to the dnsmasq syntax for the blacklist
289
			$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
292
			$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
290
			mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
293
			mv $FILE_tmp $DIR_DNS_BL/$DOMAINE.conf
291
			mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
294
			mv $FILE_ip_tmp $DIR_IP_BL/$DOMAINE
292
		else
295
		else
293
			# adapt to the dnsmasq syntax for the whitelist
296
			# adapt to the dnsmasq syntax for the whitelist
294
			$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
297
			$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
295
			mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
298
			mv $FILE_tmp $DIR_DNS_WL/$DOMAINE.conf
296
		fi
299
		fi
297
		rm -f $FILE_tmp $FILE_ip_tmp
300
		rm -f $FILE_tmp $FILE_ip_tmp
298
 
301
 
299
		done
302
		done
300
		
303
		
301
		/usr/bin/systemctl restart dnsmasq-whitelist
304
		/usr/bin/systemctl restart dnsmasq-whitelist
302
		/usr/bin/systemctl restart dnsmasq-blacklist
305
		/usr/bin/systemctl restart dnsmasq-blacklist
303
		/usr/bin/systemctl restart dansguardian
306
		/usr/bin/systemctl restart dansguardian
304
		/usr/local/bin/alcasar-iptables.sh
307
		/usr/local/bin/alcasar-iptables.sh
305
		else
308
		else
306
		echo -n "/usr/local/etc/update_cat.conf is empty ..."
309
		echo -n "/usr/local/etc/update_cat.conf is empty ..."
307
		fi
310
		fi
308
		
311
		
309
	
312
	
310
		echo 
313
		echo 
311
		;;
314
		;;
312
	# reload when categories are changed 
315
	# reload when categories are changed 
313
	-reload | --reload)
316
	-reload | --reload)
314
		# for DG
317
		# for DG
315
		chown -R dansguardian:apache $DIR_DG_BL/ossi
318
		chown -R dansguardian:apache $DIR_DG_BL/ossi
316
		chmod -R g+w $DIR_DG_BL/ossi
319
		chmod -R g+w $DIR_DG_BL/ossi
317
		cat_choice
320
		cat_choice
318
		#  for dnsmasq (rehabited domain names)
321
		#  for dnsmasq (rehabited domain names)
319
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
322
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
320
		then
323
		then
321
			for i in `cat $DIR_DG/exceptionsitelist`
324
			for i in `cat $DIR_DG/exceptionsitelist`
322
			do
325
			do
323
				$SED "/$i/d" $DIR_DNS_BL/*
326
				$SED "/$i/d" $DIR_DNS_BL/*
324
			done
327
			done
325
		fi
328
		fi
326
		cp -f $DIR_DG_BL/ossi/domains $DIR_DNS_BL/ossi.conf
329
		cp -f $DIR_DG_BL/ossi/domains $DIR_DNS_BL/ossi.conf
327
		$SED "s?.*?address=/&/$PRIVATE_IP?g" $DIR_DNS_BL/ossi.conf
330
		$SED "s?.*?address=/&/$PRIVATE_IP?g" $DIR_DNS_BL/ossi.conf
328
		$SED "s?.*?server=/&/$DNS1?g" $DIR_DNS_WL/ossi.conf
331
		$SED "s?.*?server=/&/$DNS1?g" $DIR_DNS_WL/ossi.conf
329
		
332
		
330
		/usr/bin/systemctl restart dnsmasq-blacklist
333
		/usr/bin/systemctl restart dnsmasq-blacklist
331
		/usr/bin/systemctl restart dnsmasq-whitelist
334
		/usr/bin/systemctl restart dnsmasq-whitelist
332
		/usr/local/bin/alcasar-iptables.sh
335
		/usr/local/bin/alcasar-iptables.sh
333
		;;
336
		;;
334
	*)
337
	*)
335
		echo "Argument inconnu :$1";
338
		echo "Argument inconnu :$1";
336
		echo "$usage"
339
		echo "$usage"
337
		exit 1
340
		exit 1
338
		;;
341
		;;
339
esac
342
esac
340
 
343
 
341
 
344
 
342
 
345
 
343
 
346
 
344
 
347