Subversion Repositories ALCASAR

Rev

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

Rev 1940 Rev 1951
1
#/bin/bash
1
#/bin/bash
2
 
2
 
3
# $Id: alcasar-bl.sh 1940 2016-06-12 22:09:49Z richard $
3
# $Id: alcasar-bl.sh 1951 2016-06-16 22:11:23Z 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 ] #  only on install stage
45
		if [ ! -e $LIST ] #  only on install stage
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
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
74
	sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
75
	mv $FILE_tmp $BL_CATEGORIES
75
	mv $FILE_tmp $BL_CATEGORIES
76
 
76
 
77
# process the file $WL_CATEGORIES with the choice of categories 
77
# process the file $WL_CATEGORIES with the choice of categories 
78
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
78
	for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
79
	do
79
	do
80
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
80
		$SED "/\/$ENABLE_CATEGORIE$/d" $WL_CATEGORIES 
81
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
81
		$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ENABLE_CATEGORIE" $WL_CATEGORIES
82
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
82
		ln -sf $DIR_DNS_WL/$ENABLE_CATEGORIE.conf $DIR_DNS_WL_ENABLED/$ENABLE_CATEGORIE
83
	done
83
	done
84
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
84
	sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
85
	mv $FILE_tmp $WL_CATEGORIES
85
	mv $FILE_tmp $WL_CATEGORIES
86
}
86
}
87
 
87
 
88
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload } | { -update_cat or --update_cat }"
88
usage="Usage: alcasar-bl.sh { -cat_choice or --cat_choice } | { -download or --download } | { -adapt or --adapt } | { -reload or --reload } | { -update_cat or --update_cat }"
89
nb_args=$#
89
nb_args=$#
90
args=$1
90
args=$1
91
if [ $nb_args -eq 0 ]
91
if [ $nb_args -eq 0 ]
92
then
92
then
93
	  args="-h"
93
	  args="-h"
94
fi
94
fi
95
case $args in
95
case $args in
96
	-\? | -h* | --h*)
96
	-\? | -h* | --h*)
97
		echo "$usage"
97
		echo "$usage"
98
		exit 0
98
		exit 0
99
		;;
99
		;;
100
	# Retrieve Toulouse University BL
100
	# Retrieve Toulouse University BL
101
	-download | --download)
101
	-download | --download)
102
		rm -rf /tmp/con_ok.html
102
		rm -rf /tmp/con_ok.html
103
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
103
		`/usr/bin/curl $BL_SERVER -# -o /tmp/con_ok.html`
104
		if [ ! -e /tmp/con_ok.html ]
104
		if [ ! -e /tmp/con_ok.html ]
105
		then
105
		then
106
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
106
			echo "Erreur : le serveur de blacklist ($BL_SERVER) n'est pas joignable"
107
		else 
107
		else 
108
			rm -rf /tmp/con_ok.html $DIR_tmp
108
			rm -rf /tmp/con_ok.html $DIR_tmp
109
			mkdir $DIR_tmp
109
			mkdir $DIR_tmp
110
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
110
			wget -P $DIR_tmp http://$BL_SERVER/blacklists/download/blacklists.tar.gz
111
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
111
			md5sum $DIR_tmp/blacklists.tar.gz | cut -d" " -f1 > $DIR_tmp/md5sum
112
			chown -R apache:apache $DIR_tmp
112
			chown -R apache:apache $DIR_tmp
113
		fi
113
		fi
114
		;;		
114
		;;		
115
	# enable/disable categories (used only during the alcasar install process)
115
	# enable/disable categories (used only during the alcasar install process)
116
	-cat_choice | --cat_choice)
116
	-cat_choice | --cat_choice)
117
		cat_choice
117
		cat_choice
118
		;;
118
		;;
119
	# Adapt Toulouse University BL to ALCASAR architecture (dnsmasq + DG + iptables)
119
	# Adapt Toulouse University BL to ALCASAR architecture (dnsmasq + DG + iptables)
120
	-adapt | --adapt)
120
	-adapt | --adapt)
121
		echo -n "Adaptation process of Toulouse University blackList. Please wait : "
121
		echo -n "Adaptation process of Toulouse University blackList. Please wait : "
122
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
122
		if [ -f $DIR_tmp/blacklists.tar.gz ] # when downloading the last version of the BL
123
		then
123
		then
124
			# keep custom files (ossi) 
124
			# keep custom files (ossi) 
125
			for x in $(ls -1 $DIR_DG_BL | grep "^ossi-*")
125
			for x in $(ls -1 $DIR_DG_BL | grep "^ossi-*")
126
			do
126
			do
127
				mv $DIR_DG_BL/$x $DIR_tmp
127
				mv $DIR_DG_BL/$x $DIR_tmp
128
			done
128
			done
129
			rm -rf $DIR_DG_BL $DIR_IP_BL
129
			rm -rf $DIR_DG_BL $DIR_IP_BL
130
			mkdir $DIR_DG_BL $DIR_IP_BL
130
			mkdir $DIR_DG_BL $DIR_IP_BL
131
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
131
			tar zxf $DIR_tmp/blacklists.tar.gz --directory=$DIR_DG/
132
			chown -R root:apache $DIR_DG
132
			chown -R root:apache $DIR_DG
133
			chmod -R 770 $DIR_DG
133
			chmod -R 770 $DIR_DG
134
			# Add the two local categories (ossi-bl & ossi-wl) to the usage file
134
			# Add the two local categories (ossi-bl & ossi-wl) to the usage file
135
			# Add the custom categories (ossi-tor_nodes) to the usage file
135
			# Add the custom categories (ossi-tor_nodes) to the usage file
136
			cat << EOF >> $DIR_DG_BL/global_usage 
136
			cat << EOF >> $DIR_DG_BL/global_usage 
137
 
137
 
138
NAME: ossi-bl
138
NAME: ossi-bl
139
DEFAULT_TYPE: black
139
DEFAULT_TYPE: black
140
SOURCE: ALCASAR Team
140
SOURCE: ALCASAR Team
141
DESC FR: sites blacklistés ajoutés localement
141
DESC FR: sites blacklistés ajoutés localement
142
DESC EN: blacklisted sites add locally
142
DESC EN: blacklisted sites add locally
143
NAME FR: ossi-bl
143
NAME FR: ossi-bl
144
NAME EN: ossi-bl
144
NAME EN: ossi-bl
145
 
145
 
146
NAME: ossi-wl
146
NAME: ossi-wl
147
DEFAULT_TYPE: white
147
DEFAULT_TYPE: white
148
SOURCE: ALCASAR Team
148
SOURCE: ALCASAR Team
149
DESC FR: sites autorisés ajoutés localement
149
DESC FR: sites autorisés ajoutés localement
150
DESC EN: whitelisted sites add locally
150
DESC EN: whitelisted sites add locally
151
NAME FR: ossi-wl
151
NAME FR: ossi-wl
152
NAME EN: ossi-wl
152
NAME EN: ossi-wl
153
 
153
 
154
NAME: ossi-tor_nodes
154
NAME: ossi-bl-tor_nodes
155
DEFAULT_TYPE: black
155
DEFAULT_TYPE: black
156
SOURCE: ALCASAR Team
156
SOURCE: ALCASAR Team
157
DESC FR: Adresses IP des noeuds (routeurs) d'entrée du réseau TOR
157
DESC FR: Adresses IP des noeuds (routeurs) d'entrée du réseau TOR
158
DESC EN:IP addresses of input TOR nodes (routers)
158
DESC EN: IP addresses of input TOR nodes (routers)
159
NAME FR: Noeuds TOR
159
NAME FR: Noeuds TOR
160
NAME EN: TOR nodes
160
NAME EN: TOR nodes
161
EOF
161
EOF
162
			# Retrieve custom files (ossi)
162
			# Retrieve custom files (ossi)
163
			for x in $(ls -1 $DIR_tmp | grep "^ossi-*")
163
			for x in $(ls -1 $DIR_tmp | grep "^ossi-*")
164
			do
164
			do
165
				mv $DIR_tmp/$x $DIR_DG_BL
165
				mv $DIR_tmp/$x $DIR_DG_BL
166
			done
166
			done
167
		fi
167
		fi
168
		rm -f $BL_CATEGORIES $WL_CATEGORIES
168
		rm -f $BL_CATEGORIES $WL_CATEGORIES
169
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
169
		rm -rf $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
170
		rm -rf $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED
170
		rm -rf $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED
171
		touch $BL_CATEGORIES $WL_CATEGORIES
171
		touch $BL_CATEGORIES $WL_CATEGORIES
172
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
172
		mkdir $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
173
		mkdir $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED
173
		mkdir $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED
174
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
174
		find $DIR_DG_BL/ -type f -name domains > $FILE_tmp # retrieve directory name where a domain file exist
175
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
175
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
176
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
176
		for dir_categorie in `cat $FILE_tmp` # create the blacklist and the whitelist files
177
		do
177
		do
178
			categorie=`echo $dir_categorie|cut -d "/" -f6`
178
			categorie=`echo $dir_categorie|cut -d "/" -f6`
179
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
179
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$categorie$ $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
180
			if [ "$categorie_type" == "white" ]
180
			if [ "$categorie_type" == "white" ]
181
			then
181
			then
182
				echo "$dir_categorie" >> $WL_CATEGORIES 
182
				echo "$dir_categorie" >> $WL_CATEGORIES 
183
			else
183
			else
184
				echo "$dir_categorie" >> $BL_CATEGORIES
184
				echo "$dir_categorie" >> $BL_CATEGORIES
185
			fi
185
			fi
186
		done
186
		done
187
		rm -f $FILE_tmp
187
		rm -f $FILE_tmp
188
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
188
		# Verify that the enabled categories are effectively in the BL (need after an update of the BL)
189
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
189
		for ENABLE_CATEGORIE in `cat $BL_CATEGORIES_ENABLED` 
190
		do
190
		do
191
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
191
			ok=`grep /$ENABLE_CATEGORIE$ $BL_CATEGORIES|wc -l`
192
			if [ $ok != "1" ] 
192
			if [ $ok != "1" ] 
193
			then
193
			then
194
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
194
				$SED "/^$ENABLE_CATEGORIE$/d" $BL_CATEGORIES_ENABLED
195
			fi
195
			fi
196
		done
196
		done
197
		# Verify that the enabled categories are effectively in the WL (need after an update of the WL)
197
		# Verify that the enabled categories are effectively in the WL (need after an update of the WL)
198
		for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
198
		for ENABLE_CATEGORIE in `cat $WL_CATEGORIES_ENABLED` 
199
		do
199
		do
200
			ok=`grep /$ENABLE_CATEGORIE$ $WL_CATEGORIES|wc -l`
200
			ok=`grep /$ENABLE_CATEGORIE$ $WL_CATEGORIES|wc -l`
201
			if [ $ok != "1" ] 
201
			if [ $ok != "1" ] 
202
			then
202
			then
203
				$SED "/^$ENABLE_CATEGORIE$/d" $WL_CATEGORIES_ENABLED
203
				$SED "/^$ENABLE_CATEGORIE$/d" $WL_CATEGORIES_ENABLED
204
			fi
204
			fi
205
		done
205
		done
206
		# Creation of DNSMASQ and Iptables BL and WL
206
		# Creation of DNSMASQ and Iptables BL and WL
207
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
207
		for LIST in $BL_CATEGORIES $WL_CATEGORIES	# for each list (bl and wl)
208
		do
208
		do
209
			for PATH_FILE in `cat $LIST` # for each category
209
			for PATH_FILE in `cat $LIST` # for each category
210
			do
210
			do
211
				DOMAIN=`basename $PATH_FILE`
211
				DOMAIN=`basename $PATH_FILE`
212
				echo -n "$DOMAIN, "
212
				echo -n "$DOMAIN, "
213
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
213
		  		if [ ! -f $PATH_FILE/urls ] # create 'urls' file if it doesn't exist
214
				then
214
				then
215
					touch $PATH_FILE/urls
215
					touch $PATH_FILE/urls
216
					chown dansguardian:apache $PATH_FILE/urls
216
					chown dansguardian:apache $PATH_FILE/urls
217
				fi
217
				fi
218
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
218
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correct some syntax errors
219
				# extract ip addresses for iptables
219
				# extract ip addresses for iptables
220
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
220
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
221
				# for dnsmask, remove IP addesses, accented characters and commented lines.
221
				# for dnsmask, remove IP addesses, accented characters and commented lines.
222
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
222
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
223
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
223
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
224
				$SED "/^#.*/d" $FILE_tmp
224
				$SED "/^#.*/d" $FILE_tmp
225
				if [ "$LIST" == "$BL_CATEGORIES" ]
225
				if [ "$LIST" == "$BL_CATEGORIES" ]
226
				then
226
				then
227
					# adapt to the dnsmasq syntax for the blacklist
227
					# adapt to the dnsmasq syntax for the blacklist
228
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
228
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
229
					mv $FILE_tmp $DIR_DNS_BL/$DOMAIN.conf
229
					mv $FILE_tmp $DIR_DNS_BL/$DOMAIN.conf
230
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAIN
230
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAIN
231
				else
231
				else
232
					# adapt to the dnsmasq syntax for the whitelist
232
					# adapt to the dnsmasq syntax for the whitelist
233
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
233
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
234
					mv $FILE_tmp $DIR_DNS_WL/$DOMAIN.conf
234
					mv $FILE_tmp $DIR_DNS_WL/$DOMAIN.conf
235
				fi
235
				fi
236
			done
236
			done
237
		done
237
		done
238
		echo
238
		echo
239
		chown -R root:apache $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENABLED
239
		chown -R root:apache $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENABLED
240
	       	chmod 770 $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
240
	       	chmod 770 $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIR_IP_WL
241
		chmod -f 660 $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL/* $DIR_DNS_WL/* $DIR_IP_BL/* $DIR_IP_WL/*
241
		chmod -f 660 $BL_CATEGORIES $WL_CATEGORIES $BL_CATEGORIES_ENABLED $WL_CATEGORIES_ENABLED $DIR_DNS_BL/* $DIR_DNS_WL/* $DIR_IP_BL/* $DIR_IP_WL/*
242
		rm -f $FILE_tmp $FILE_ip_tmp
242
		rm -f $FILE_tmp $FILE_ip_tmp
243
		rm -rf $DIR_tmp
243
		rm -rf $DIR_tmp
244
		;;
244
		;;
245
	# update the categories which are written in "/usr/local/etc/update_cat.conf" with rsync
245
	# update the categories which are written in "/usr/local/etc/update_cat.conf" with rsync
246
	-update_cat | --update_cat)
246
	-update_cat | --update_cat)
247
		if [ $(cat /usr/local/etc/update_cat.conf | wc -l) -ne 0 ]
247
		if [ $(cat /usr/local/etc/update_cat.conf | wc -l) -ne 0 ]
248
		then
248
		then
249
			echo -n "Updating categories in /usr/local/etc/update_cat.conf ..."
249
			echo -n "Updating categories in /usr/local/etc/update_cat.conf ..."
250
			cat /usr/local/etc/update_cat.conf | while read LIGNE_RSYNC
250
			cat /usr/local/etc/update_cat.conf | while read LIGNE_RSYNC
251
			do
251
			do
252
				CATEGORIE=$(echo $LIGNE_RSYNC | cut -d' ' -f1)
252
				CATEGORIE=$(echo $LIGNE_RSYNC | cut -d' ' -f1)
253
				URL=$(echo $LIGNE_RSYNC | cut -d' ' -f2)
253
				URL=$(echo $LIGNE_RSYNC | cut -d' ' -f2)
254
				PATH_FILE=$(find $DIR_DG_BL/ -type d -name $CATEGORIE) # retrieve directory name of the category
254
				PATH_FILE=$(find $DIR_DG_BL/ -type d -name $CATEGORIE) # retrieve directory name of the category
255
				rsync -rv $URL $(dirname $PATH_FILE ) #rsync inside of the blacklist directory
255
				rsync -rv $URL $(dirname $PATH_FILE ) #rsync inside of the blacklist directory
256
				# Creation of DNSMASQ and Iptables BL and WL
256
				# Creation of DNSMASQ and Iptables BL and WL
257
				DOMAIN=$(basename $PATH_FILE)
257
				DOMAIN=$(basename $PATH_FILE)
258
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correction 'coma' instead of 'dot'
258
				$SED "s/\.\{2,10\}/\./g" $PATH_FILE/domains $PATH_FILE/urls # correction 'coma' instead of 'dot'
259
				$SED "/^$/d" $PATH_FILE/domains $PATH_FILE/urls # remove empty lines
259
				$SED "/^$/d" $PATH_FILE/domains $PATH_FILE/urls # remove empty lines
260
				# extract ip addresses for iptables
260
				# extract ip addresses for iptables
261
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
261
				awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $PATH_FILE/domains > $FILE_ip_tmp
262
				# for dnsmask, remove IP addresses, accentuated characters and commented lines.
262
				# for dnsmask, remove IP addresses, accentuated characters and commented lines.
263
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
263
				egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $PATH_FILE/domains > $FILE_tmp
264
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
264
				$SED "/[äâëêïîöôüû]/d" $FILE_tmp
265
				$SED "/^#.*/d" $FILE_tmp
265
				$SED "/^#.*/d" $FILE_tmp
266
				black=`grep black $PATH_FILE/usage |wc -l`
266
				black=`grep black $PATH_FILE/usage |wc -l`
267
				if [ $black == "1" ]
267
				if [ $black == "1" ]
268
				then
268
				then
269
					# adapt to the dnsmasq syntax for the blacklist
269
					# adapt to the dnsmasq syntax for the blacklist
270
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
270
					$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
271
					mv $FILE_tmp $DIR_DNS_BL/$DOMAIN.conf
271
					mv $FILE_tmp $DIR_DNS_BL/$DOMAIN.conf
272
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAIN
272
					mv $FILE_ip_tmp $DIR_IP_BL/$DOMAIN
273
				else
273
				else
274
					# adapt to the dnsmasq syntax for the whitelist
274
					# adapt to the dnsmasq syntax for the whitelist
275
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
275
					$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
276
					mv $FILE_tmp $DIR_DNS_WL/$DOMAIN.conf
276
					mv $FILE_tmp $DIR_DNS_WL/$DOMAIN.conf
277
					mv $FILE_ip_tmp $DIR_IP_WL/$DOMAIN
277
					mv $FILE_ip_tmp $DIR_IP_WL/$DOMAIN
278
				fi
278
				fi
279
				rm -f $FILE_tmp $FILE_ip_tmp
279
				rm -f $FILE_tmp $FILE_ip_tmp
280
			done
280
			done
281
			/usr/bin/systemctl restart dnsmasq-whitelist
281
			/usr/bin/systemctl restart dnsmasq-whitelist
282
			/usr/bin/systemctl restart dnsmasq-blacklist
282
			/usr/bin/systemctl restart dnsmasq-blacklist
283
			/usr/bin/systemctl restart dansguardian
283
			/usr/bin/systemctl restart dansguardian
284
			/usr/local/bin/alcasar-iptables.sh
284
			/usr/local/bin/alcasar-iptables.sh
285
		else
285
		else
286
			  echo -n "/usr/local/etc/update_cat.conf is empty ..."
286
			  echo -n "/usr/local/etc/update_cat.conf is empty ..."
287
		fi
287
		fi
288
		echo 
288
		echo 
289
		;;
289
		;;
290
	# reload when selected categories are changed or when ossi change his custom files
290
	# reload when selected categories are changed or when ossi change his custom files
291
	-reload | --reload)
291
	-reload | --reload)
292
		# for DG
292
		# for DG
293
		cat_choice
293
		cat_choice
294
		#  for dnsmasq (rehabited domain names)
294
		#  for dnsmasq (rehabited domain names)
295
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
295
		if [ `wc -w $DIR_DG/exceptionsitelist|cut -d " " -f1` != "0" ]
296
		then
296
		then
297
			for i in `cat $DIR_DG/exceptionsitelist`
297
			for i in `cat $DIR_DG/exceptionsitelist`
298
			do
298
			do
299
				$SED "/$i/d" $DIR_DNS_BL/*
299
				$SED "/$i/d" $DIR_DNS_BL/*
300
			done
300
			done
301
		fi
301
		fi
302
		# adapt OSSI BL & WL custom files
302
		# adapt OSSI BL & WL custom files
303
		for dir in $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIr_IP_WL
303
		for dir in $DIR_DNS_BL_ENABLED $DIR_DNS_WL_ENABLED $DIR_IP_BL_ENABLED $DIR_IP_WL_ENBALED $DIR_DNS_BL $DIR_DNS_WL $DIR_IP_BL $DIr_IP_WL
304
		do
304
		do
305
			rm -f $dir/ossi*
305
			rm -f $dir/ossi*
306
		done
306
		done
307
		find $DIR_DG_BL/ -type f -name domains | grep ossi > $FILE_tmp # retrieve ossi directories name where a domain file exist
307
		find $DIR_DG_BL/ -type f -name domains | grep ossi > $FILE_tmp # retrieve ossi directories name where a domain file exist
308
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
308
		$SED "s?\/domains??g" $FILE_tmp # remove "/domains" suffix
309
		for ossi_custom_dir in `cat $FILE_tmp` # create the blacklist and the whitelist files
309
		for ossi_custom_dir in `cat $FILE_tmp` # create the blacklist and the whitelist files
310
		do
310
		do
311
			ossi_categorie=`echo $ossi_custom_dir|cut -d "/" -f6`
311
			ossi_categorie=`echo $ossi_custom_dir|cut -d "/" -f6`
312
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$ossi_categorie $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
312
			categorie_type=`grep -A1 ^NAME:[$' '$'\t']*$ossi_categorie$ $DIR_DG_BL/global_usage | grep ^DEFAULT_TYPE | cut -d":" -f2 | tr -d " \t"`
313
			$SED "s/\.\{2,10\}/\./g" $ossi_custom_dir/domains $ossi_custom_dir/urls # correction 'coma" instead of 'dot'
313
			$SED "s/\.\{2,10\}/\./g" $ossi_custom_dir/domains $ossi_custom_dir/urls # correction 'coma" instead of 'dot'
314
			$SED "/^$/d" $ossi_custom_dir/domains $ossi_custom_dir/urls # remove empty lines
314
			$SED "/^$/d" $ossi_custom_dir/domains $ossi_custom_dir/urls # remove empty lines
315
			# extract ip addresses for iptables
315
			# extract ip addresses for iptables
316
			awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $ossi_custom_dir/domains > $FILE_ip_tmp
316
			awk '/^([0-9]{1,3}\.){3}[0-9]{1,3}$/{print "add bl_ip_blocked " $0}' $ossi_custom_dir/domains > $FILE_ip_tmp
317
			# for dnsmask, remove IP addesses, accented characters and commented lines.
317
			# for dnsmask, remove IP addesses, accented characters and commented lines.
318
			egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $ossi_custom_dir/domains > $FILE_tmp
318
			egrep  -v "^([0-9]{1,3}\.){3}[0-9]{1,3}$" $ossi_custom_dir/domains > $FILE_tmp
319
			$SED "/[äâëêïîöôüû]/d" $FILE_tmp
319
			$SED "/[äâëêïîöôüû]/d" $FILE_tmp
320
			$SED "/^#.*/d" $FILE_tmp
320
			$SED "/^#.*/d" $FILE_tmp
321
			if [ "$categorie_type" == "white" ]
321
			if [ $categorie_type == "white" ]
322
			then
322
			then
323
			# adapt to the dnsmasq syntax for the whitelist
323
			# adapt the file to the dnsmasq syntax and enable it if needed
324
				echo "$ossi_categorie : WL"
324
			# for the WL
325
				$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
325
				$SED "s?.*?server=/&/$DNS1?g" $FILE_tmp 
326
				mv $FILE_tmp $DIR_DNS_WL/$ossi_categorie.conf
326
				mv $FILE_tmp $DIR_DNS_WL/$ossi_categorie.conf
327
				ln -sf $DIR_DNS_WL/$ossi_categorie.conf $DIR_DNS_WL_ENABLED/$ossi_categorie
-
 
328
				mv $FILE_ip_tmp $DIR_IP_WL/$ossi_categorie
327
				mv $FILE_ip_tmp $DIR_IP_WL/$ossi_categorie
-
 
328
				enabled=`grep ^$ossi_categorie$ $WL_CATEGORIES_ENABLED | wc -l`
-
 
329
				if [ $enabled == "1" ]
-
 
330
				then
-
 
331
					echo "wl - $ossi_categorie - $categorie_type"
-
 
332
					$SED "/\/$ossi_categorie$/d" $WL_CATEGORIES 
-
 
333
					$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ossi_categorie" $WL_CATEGORIES
-
 
334
					ln -sf $DIR_DNS_WL/$ossi_categorie.conf $DIR_DNS_WL_ENABLED/$ossi_categorie
329
				ln -sf $DIR_IP_WL/$ossi_categorie $DIR_IP_WL_ENABLED/$ossi_categorie
335
					ln -sf $DIR_IP_WL/$ossi_categorie $DIR_IP_WL_ENABLED/$ossi_categorie
-
 
336
				fi
330
			else
337
			else
331
			# adapt to the dnsmasq syntax for the blacklist
-
 
332
				echo "$ossi_categorie : BL"
338
			# for the BL
333
				$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
339
				$SED "s?.*?address=/&/$PRIVATE_IP?g" $FILE_tmp 
334
				mv $FILE_tmp $DIR_DNS_BL/$ossi_categorie.conf
340
				mv $FILE_tmp $DIR_DNS_BL/$ossi_categorie.conf
335
				ln -sf $DIR_DNS_BL/$ossi_categorie.conf $DIR_DNS_BL_ENABLED/$ossi_categorie
-
 
336
				mv $FILE_ip_tmp $DIR_IP_BL/$ossi_categorie
341
				mv $FILE_ip_tmp $DIR_IP_BL/$ossi_categorie
-
 
342
				enabled=`grep ^$ossi_categorie$ $BL_CATEGORIES_ENABLED | wc -l`
-
 
343
				if [ $enabled == "1" ]
-
 
344
				then
-
 
345
					echo "bl - $ossi_categorie - $categorie_type"
-
 
346
					$SED "/\/$ossi_categorie$/d" $BL_CATEGORIES 
-
 
347
					$SED "1i\/etc\/dansguardian\/lists\/blacklists\/$ossi_categorie" $BL_CATEGORIES
-
 
348
					ln -sf $DIR_DNS_BL/$ossi_categorie.conf $DIR_DNS_BL_ENABLED/$ossi_categorie
337
				ln -sf $DIR_IP_BL/$ossi_categorie $DIR_IP_BL_ENABLED/$ossi_categorie
349
					ln -sf $DIR_IP_BL/$ossi_categorie $DIR_IP_BL_ENABLED/$ossi_categorie
-
 
350
				fi
338
			fi
351
			fi
339
		done
352
		done
-
 
353
		sort +0.0 -0.2 $BL_CATEGORIES -o $FILE_tmp
-
 
354
		mv $FILE_tmp $BL_CATEGORIES
-
 
355
		sort +0.0 -0.2 $WL_CATEGORIES -o $FILE_tmp
-
 
356
		mv $FILE_tmp $WL_CATEGORIES
340
		/usr/bin/systemctl restart dnsmasq-blacklist
357
		/usr/bin/systemctl restart dnsmasq-blacklist
341
		/usr/bin/systemctl restart dnsmasq-whitelist
358
		/usr/bin/systemctl restart dnsmasq-whitelist
342
		/usr/local/bin/alcasar-iptables.sh
359
		/usr/local/bin/alcasar-iptables.sh
343
		;;
360
		;;
344
	*)
361
	*)
345
		echo "Argument inconnu :$1";
362
		echo "Argument inconnu :$1";
346
		echo "$usage"
363
		echo "$usage"
347
		exit 1
364
		exit 1
348
		;;
365
		;;
349
esac
366
esac
350
 
367
 
351
 
368