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-04-13 14:51:48 +00:00
#rootcheck
if [ [ $EUID -eq 0 ] ] ; then
echo "::: You are root."
else
echo "::: sudo will be used."
# Check if it is actually installed
# If it isn't, exit because the install cannot complete
if [ [ $( dpkg-query -s sudo) ] ] ; then
export SUDO = "sudo"
else
echo "::: Please install sudo or run this script as root."
exit 1
fi
fi
2016-01-15 14:17:55 +00:00
if [ [ $# = 0 ] ] ; then
2016-04-06 08:32:36 +00:00
helpFunc
2016-01-15 14:17:55 +00:00
fi
#globals
2016-04-04 20:08:56 +00:00
basename = pihole
piholeDir = /etc/$basename
adList = $piholeDir /gravity.list
whitelist = $piholeDir /whitelist.txt
2016-01-15 14:17:55 +00:00
reload = true
addmode = true
2016-01-15 15:54:00 +00:00
force = false
2016-04-08 19:10:10 +00:00
verbose = true
2016-04-04 20:08:56 +00:00
2016-01-15 14:17:55 +00:00
domList = ( )
domToRemoveList = ( )
2015-11-28 00:29:44 +00:00
2016-04-21 15:40:38 +00:00
piholeIPfile = /tmp/piholeIP
2016-01-15 14:17:55 +00:00
piholeIPv6file = /etc/pihole/.useIPv6
2016-04-21 15:40:38 +00:00
if [ [ -f $piholeIPfile ] ] ; then
# If the file exists, it means it was exported from the installation script and we should use that value instead of detecting it in this script
piholeIP = $( cat $piholeIPfile )
#rm $piholeIPfile
else
# 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
IPv4dev = $( ip route get 8.8.8.8 | awk '{for(i=1;i<=NF;i++)if($i~/dev/)print $(i+1)}' )
piholeIPCIDR = $( ip -o -f inet addr show dev " $IPv4dev " | awk '{print $4}' | awk 'END {print}' )
piholeIP = ${ piholeIPCIDR %/* }
fi
2016-01-15 14:17:55 +00:00
modifyHost = false
2016-04-04 20:08:56 +00:00
# After setting defaults, check if there's local overrides
if [ [ -r $piholeDir /pihole.conf ] ] ; then
echo "::: Local calibration requested..."
. $piholeDir /pihole.conf
fi
2016-01-15 14:17:55 +00:00
if [ [ -f $piholeIPv6file ] ] ; then
# If the file exists, then the user previously chose to use IPv6 in the automated installer
piholeIPv6 = $( ip -6 route get 2001:4860:4860::8888 | awk -F " " '{ for(i=1;i<=NF;i++) if ($i == "src") print $(i+1) }' )
2015-10-25 23:53:20 +00:00
fi
2016-04-06 08:32:36 +00:00
function helpFunc( )
{
2016-04-10 20:36:33 +00:00
echo "::: Immediately whitelists one or more domains in the hosts file"
echo ":::"
2016-04-13 14:51:48 +00:00
echo "::: Usage: pihole -w domain1 [domain2 ...]"
2016-04-10 20:36:33 +00:00
echo ":::"
echo "::: Options:"
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"
echo "::: -q, --quiet output is less verbose"
echo "::: -h, --help Show this help dialog"
echo "::: -l, --list Display your whitelisted domains"
exit 1
2016-04-06 08:32:36 +00:00
}
2016-04-17 12:52:06 +00:00
if [ [ $# = 0 ] ] ; then
helpFunc
fi
2016-03-06 05:15:53 +00:00
function HandleOther( ) {
2016-01-15 14:17:55 +00:00
#check validity of domain
2016-03-26 19:16:22 +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-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-01-15 14:17:55 +00:00
domList = ( " ${ domList [@] } " $validDomain )
fi
}
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
function PopWhitelistFile( ) {
#check whitelist file exists, and if not, create it
if [ [ ! -f $whitelist ] ] ; then
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-01-15 14:17:55 +00:00
if $addmode ; then
2016-03-26 19:16:22 +00:00
AddDomain " $dom "
2016-01-15 14:17:55 +00:00
else
2016-03-26 19:16:22 +00:00
RemoveDomain " $dom "
2016-01-15 14:17:55 +00:00
fi
done
}
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
function AddDomain( ) {
#| sed 's/\./\\./g'
bool = false
2016-03-06 05:15:53 +00:00
2016-01-15 14:17:55 +00:00
grep -Ex -q " $1 " $whitelist || bool = true
if $bool ; then
#domain not found in the whitelist file, add it!
2016-04-08 19:10:10 +00:00
if $verbose ; then
2016-04-04 23:03:24 +00:00
echo -n " ::: Adding $1 to $whitelist ... "
2016-01-24 16:51:54 +00:00
fi
2016-03-26 19:16:22 +00:00
echo " $1 " >> $whitelist
2016-01-15 14:17:55 +00:00
modifyHost = true
2016-04-08 19:10:10 +00:00
if $verbose ; then
2016-01-24 16:46:00 +00:00
echo " done!"
fi
2016-01-15 14:17:55 +00:00
else
2016-04-08 19:10:10 +00:00
if $verbose ; then
2016-04-04 23:03:24 +00:00
echo " ::: $1 already exists in $whitelist , 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-06 05:15:53 +00:00
2016-01-15 14:17:55 +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
2016-04-08 19:10:10 +00:00
if $verbose ; then
2016-01-24 16:46:00 +00:00
echo " ::: $1 is NOT whitelisted! No need to remove "
2016-01-15 15:54:00 +00:00
fi
2016-01-15 14:17:55 +00:00
else
#Domain is in the whitelist file, add to a temporary array and remove from whitelist file
2016-04-08 19:10:10 +00:00
#if $verbose; then
2016-01-24 16:51:54 +00:00
#echo "::: Un-whitelisting $dom..."
#fi
2016-01-15 14:17:55 +00:00
domToRemoveList = ( " ${ domToRemoveList [@] } " $1 )
2016-03-06 05:15:53 +00:00
modifyHost = true
fi
2016-01-15 14:17:55 +00:00
}
2016-03-06 05:15:53 +00:00
function ModifyHostFile( ) {
2016-01-15 14:17:55 +00:00
if $addmode ; then
#remove domains in from hosts file
if [ [ -r $whitelist ] ] ; then
# Remove whitelist entries
2016-04-01 17:17:05 +00:00
numberOf = $( cat $whitelist | sed '/^\s*$/d' | wc -l)
2016-01-15 14:17:55 +00:00
plural = ; [ [ " $numberOf " != "1" ] ] && plural = s
2016-01-24 16:51:54 +00:00
echo ":::"
echo -n " ::: Modifying HOSTS file to whitelist $numberOf domain ${ plural } ... "
2016-03-26 19:16:22 +00:00
awk -F':' '{print $1}' $whitelist | while read -r line; do echo " $piholeIP $line " ; done > /etc/pihole/whitelist.tmp
awk -F':' '{print $1}' $whitelist | while read -r line; do echo " $piholeIPv6 $line " ; done >> /etc/pihole/whitelist.tmp
2016-01-24 16:51:54 +00:00
echo "l" >> /etc/pihole/whitelist.tmp
2016-04-04 20:08:56 +00:00
grep -F -x -v -f $piholeDir /whitelist.tmp $adList > $piholeDir /gravity.tmp
rm $adList
mv $piholeDir /gravity.tmp $adList
rm $piholeDir /whitelist.tmp
2016-01-24 16:51:54 +00:00
echo " done!"
2016-03-06 05:15:53 +00:00
2016-01-15 14:17:55 +00:00
fi
else
#we need to add the removed domains to the hosts file
2016-01-24 16:51:54 +00:00
echo ":::"
echo "::: Modifying HOSTS file to un-whitelist domains..."
2016-01-15 14:17:55 +00:00
for rdom in " ${ domToRemoveList [@] } "
2016-03-06 05:15:53 +00:00
do
2016-01-15 14:17:55 +00:00
if [ [ -n $piholeIPv6 ] ] ; then
2016-01-24 16:51:54 +00:00
echo -n " ::: Un-whitelisting $rdom on IPv4 and IPv6... "
2016-03-26 19:16:22 +00:00
echo " $rdom " | awk -v ipv4addr = " $piholeIP " -v ipv6addr = " $piholeIPv6 " '{sub(/\r$/,""); print ipv4addr" "$0"\n"ipv6addr" "$0}' >> $adList
2016-01-24 16:51:54 +00:00
echo " done!"
2016-01-15 14:17:55 +00:00
else
2016-01-24 16:51:54 +00:00
echo -n " ::: Un-whitelisting $rdom on IPv4 "
2016-03-26 19:16:22 +00:00
echo " $rdom " | awk -v ipv4addr = " $piholeIP " '{sub(/\r$/,""); print ipv4addr" "$0}' >>$adList
2016-01-24 16:51:54 +00:00
echo " done!"
fi
2016-04-04 23:03:24 +00:00
echo -n " ::: Removing $rdom from $whitelist ... "
2016-03-26 19:16:22 +00:00
echo " $rdom " | sed 's/\./\\./g' | xargs -I { } perl -i -ne'print unless /' { } '(?!.)/;' $whitelist
2016-01-24 16:51:54 +00:00
echo " done!"
2016-01-15 14:17:55 +00:00
done
2016-03-06 05:15:53 +00:00
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)
2015-10-25 23:53:20 +00:00
2016-01-15 14:17:55 +00:00
if [ [ $dnsmasqPid ] ] ; then
# service already running - reload config
2016-04-16 14:52:38 +00:00
$SUDO killall -s HUP dnsmasq
2016-01-15 14:17:55 +00:00
else
# service not running, start it up
2016-04-13 14:51:48 +00:00
$SUDO service dnsmasq start
2016-01-15 14:17:55 +00:00
fi
2016-01-24 16:51:54 +00:00
echo " done!"
2016-01-15 14:17:55 +00:00
}
2016-04-08 01:52:47 +00:00
function DisplayWlist( ) {
2016-04-08 19:12:30 +00:00
verbose = false
2016-04-08 14:14:17 +00:00
echo -e " Displaying Gravity Resistant Domains \n"
count = 1
while IFS = read -r RD
do
echo " ${ count } : $RD "
count = $(( count+1))
done < " $whitelist "
2016-04-08 01:52:47 +00:00
}
2016-01-15 14:17:55 +00:00
###################################################
for var in " $@ "
do
case " $var " in
2016-03-06 05:15:53 +00:00
"-nr" | "--noreload" ) reload = false; ;
2016-01-15 15:54:00 +00:00
"-d" | "--delmode" ) addmode = false; ;
"-f" | "--force" ) force = true; ;
2016-04-08 19:10:10 +00:00
"-q" | "--quiet" ) verbose = false; ;
2016-04-08 14:14:17 +00:00
"-h" | "--help" ) helpFunc; ;
2016-04-08 01:52:47 +00:00
"-l" | "--list" ) DisplayWlist; ;
2016-03-26 19:16:22 +00:00
* ) 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-01-24 16:51:54 +00:00
ModifyHostFile
2016-01-15 14:17:55 +00:00
else
2016-04-08 19:10:10 +00:00
if $verbose ; then
2016-04-08 22:01:13 +00:00
echo ":::"
2016-04-10 20:17:58 +00:00
echo "::: No changes need to be made"
2016-01-15 15:54:00 +00:00
fi
2016-04-08 22:01:13 +00:00
exit 1
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