2015-12-06 13:55:50 +00:00
#!/usr/bin/env bash
2016-01-30 20:12:40 +00:00
# Pi-hole: A black hole for Internet advertisements
# (c) 2015, 2016 by Jacob Salmela
# Network-wide ad blocking via your Raspberry Pi
# http://pi-hole.net
# Whitelists domains
2015-12-06 13:55:50 +00:00
#
# Pi-hole is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
2016-03-15 01:04:09 +00:00
source /etc/pihole/Functions/pihole.var
2016-03-14 01:34:22 +00:00
source /etc/pihole/Functions/pihole.funcs
2016-01-15 14:17:55 +00:00
if [ [ $# = 0 ] ] ; then
echo "Immediately whitelists one or more domains in the hosts file"
2016-01-15 15:54:00 +00:00
echo " "
2016-01-15 14:17:55 +00:00
echo "Usage: whitelist.sh domain1 [domain2 ...]"
2016-01-15 15:54:00 +00:00
echo " "
2016-01-15 14:48:07 +00:00
echo "Options:"
2016-01-15 15:54:00 +00:00
echo " -d, --delmode Remove domains from the whitelist"
echo " -nr, --noreload Update Whitelist without refreshing dnsmasq"
echo " -f, --force Force updating of the hosts files, even if there are no changes"
2016-01-16 00:47:45 +00:00
echo " -q, --quiet output is less verbose"
2016-01-15 14:17:55 +00:00
exit 1
fi
#globals
reload = true
addmode = true
2016-01-15 15:54:00 +00:00
force = false
versbose = true
2016-01-15 14:17:55 +00:00
domList = ( )
domToRemoveList = ( )
2016-03-14 01:34:22 +00:00
IPv6 = false
2016-01-15 14:17:55 +00:00
# Otherwise, the IP address can be taken directly from the machine, which will happen when the script is run by the user and not the installation script
2016-03-14 01:34:22 +00:00
piholeIP = ${ IPv4addr %/* }
2016-01-15 14:17:55 +00:00
modifyHost = false
2016-03-14 01:34:22 +00:00
if [ [ -f piholeIPv6file ] ] ; then
2016-01-15 14:17:55 +00:00
# If the file exists, then the user previously chose to use IPv6 in the automated installer
2016-03-14 01:34:22 +00:00
IPv6 = true
2015-10-25 23:53:20 +00:00
fi
2016-03-06 05:15:53 +00:00
function HandleOther( ) {
2016-03-14 01:34:22 +00:00
# Check validity of domain
2016-01-15 14:17:55 +00:00
validDomain = $( echo $1 | perl -ne'print if /\b((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}\b/' )
2016-03-14 01:34:22 +00:00
2016-01-15 14:17:55 +00:00
if [ -z " $validDomain " ] ; then
2016-01-24 16:46:00 +00:00
echo " ::: $1 is not a valid argument or domain name "
2016-03-06 05:15:53 +00:00
else
2016-03-14 01:34:22 +00:00
domList = ( " ${ domList [@] } " $validDomain )
2016-01-15 14:17:55 +00:00
fi
}
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
function PopWhitelistFile( ) {
2016-03-14 01:34:22 +00:00
# Check whitelist file exists, and if not, create it
2016-01-15 14:17:55 +00:00
if [ [ ! -f $whitelist ] ] ; then
2016-03-14 01:34:22 +00:00
touch $whitelist
2016-03-06 05:15:53 +00:00
fi
2016-01-15 14:17:55 +00:00
for dom in " ${ domList [@] } "
2016-03-06 05:15:53 +00:00
do
2016-03-14 01:34:22 +00:00
if $addmode ; then
AddDomain $dom
else
RemoveDomain $dom
fi
2016-01-15 14:17:55 +00:00
done
}
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
function AddDomain( ) {
2016-03-14 01:34:22 +00:00
#| sed 's/\./\\./g'
2016-01-15 14:17:55 +00:00
bool = false
2016-03-14 01:34:22 +00:00
2016-01-15 14:17:55 +00:00
grep -Ex -q " $1 " $whitelist || bool = true
if $bool ; then
2016-03-14 01:34:22 +00:00
# Domain not found in the whitelist file, add it!
if $versbose ; then
echo -n " ::: Adding $1 to whitelist.txt... "
fi
echo $1 >> $whitelist
2016-01-15 14:17:55 +00:00
modifyHost = true
2016-01-24 16:46:00 +00:00
if $versbose ; then
2016-03-14 01:34:22 +00:00
echo " done!"
fi
else
2016-01-15 15:54:00 +00:00
if $versbose ; then
2016-01-24 16:51:54 +00:00
echo " ::: $1 already exists in whitelist.txt, no need to add! "
2016-01-15 15:54:00 +00:00
fi
2016-01-15 14:17:55 +00:00
fi
}
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
function RemoveDomain( ) {
2016-03-14 01:34:22 +00:00
bool = false
grep -Ex -q " $1 " $whitelist || bool = true
if $bool ; then
# Domain is not in the whitelist file, no need to Remove
if $versbose ; then
echo " ::: $1 is NOT whitelisted! No need to remove "
fi
else
# Domain is in the whitelist file, add to a temporary array and remove from whitelist file
if $versbose ; then
echo " ::: Un-whitelisting $dom ... "
fi
domToRemoveList = ( " ${ domToRemoveList [@] } " $1 )
modifyHost = true
fi
2016-01-15 14:17:55 +00:00
}
2016-03-06 05:15:53 +00:00
function ModifyHostFile( ) {
2016-03-14 01:34:22 +00:00
if $addmode ; then
# Remove domains in from hosts file
if [ [ -r $whitelist ] ] ; then
# Remove whitelist entries
numberOf = $( cat $whitelist | sed '/^\s*$/d' | wc -l)
plural = ; [ [ " $numberOf " != "1" ] ] && plural = s
echo ":::"
echo -n " ::: Modifying HOSTS file to whitelist $numberOf domain ${ plural } ... "
awk -F':' '{print $1}' $whitelist | while read line; do echo " $piholeIP $line " ; done > /etc/pihole/whitelist.tmp
awk -F':' '{print $1}' $whitelist | while read line; do echo " $piholeIPv6 $line " ; done >> /etc/pihole/whitelist.tmp
echo "l" >> /etc/pihole/whitelist.tmp
grep -F -x -v -f /etc/pihole/whitelist.tmp /etc/pihole/gravity.list > /etc/pihole/gravity.tmp
rm /etc/pihole/gravity.list
mv /etc/pihole/gravity.tmp /etc/pihole/gravity.list
rm /etc/pihole/whitelist.tmp
echo " done!"
fi
else
# We need to add the removed domains to the hosts file
echo ":::"
echo "::: Modifying HOSTS file to un-whitelist domains..."
for rdom in " ${ domToRemoveList [@] } "
do
if [ [ IPv6 ] ] ; then
echo -n " ::: Un-whitelisting $rdom on IPv4 and IPv6... "
echo $rdom | awk -v ipv4addr = " $piholeIP " -v ipv6addr = " $piholeIPv6 " '{sub(/\r$/,""); print ipv4addr" "$0"\n"ipv6addr" "$0}' >> $adList
echo " done!"
else
echo -n " ::: Un-whitelisting $rdom on IPv4 "
echo $rdom | awk -v ipv4addr = " $piholeIP " '{sub(/\r$/,""); print ipv4addr" "$0}' >>$adList
echo " done!"
fi
echo -n " ::: Removing $rdom from whitelist.txt... "
echo $rdom | sed 's/\./\\./g' | xargs -I { } perl -i -ne'print unless /' { } '(?!.)/;' $whitelist
echo " done!"
done
fi
2016-01-15 14:17:55 +00:00
}
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
function Reload( ) {
# Reload hosts file
2016-01-24 16:51:54 +00:00
echo ":::"
echo -n "::: Refresh lists in dnsmasq..."
2016-01-15 14:17:55 +00:00
dnsmasqPid = $( pidof dnsmasq)
2016-03-14 01:34:22 +00:00
2016-01-15 14:17:55 +00:00
if [ [ $dnsmasqPid ] ] ; then
# service already running - reload config
sudo kill -HUP $dnsmasqPid
else
# service not running, start it up
sudo service dnsmasq start
fi
2016-01-24 16:51:54 +00:00
echo " done!"
2016-01-15 14:17:55 +00:00
}
###################################################
for var in " $@ "
do
2016-03-14 01:34:22 +00:00
case " $var " in
"-nr" | "--noreload" ) reload = false; ;
"-d" | "--delmode" ) addmode = false; ;
"-f" | "--force" ) force = true; ;
"-q" | "--quiet" ) versbose = false; ;
* ) HandleOther $var ; ;
2016-01-15 14:17:55 +00:00
esac
done
PopWhitelistFile
2016-01-15 15:54:00 +00:00
if $modifyHost || $force ; then
2016-03-14 01:34:22 +00:00
ModifyHostFile
2016-01-15 14:17:55 +00:00
else
2016-03-14 01:34:22 +00:00
if $versbose ; then
echo ":::"
echo "::: No changes need to be made"
exit 1
2016-01-15 15:54:00 +00:00
fi
2016-01-15 14:17:55 +00:00
fi
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
if $reload ; then
Reload
2015-10-25 23:53:20 +00:00
fi