Subversion Repositories ALCASAR

Rev

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

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