pi-hole/advanced/Scripts/blacklist.sh

184 lines
4.6 KiB
Bash
Raw Normal View History

2016-01-17 14:09:06 +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
# Blacklists domains
2016-01-17 14:09:06 +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-17 14:09:06 +00:00
if [[ $# = 0 ]]; then
echo "Immediately blacklists one or more domains in the hosts file"
echo " "
echo "Usage: blacklist.sh domain1 [domain2 ...]"
echo " "
echo "Options:"
echo " -d, --delmode Remove domains from the blacklist"
echo " -nr, --noreload Update blacklist 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"
exit 1
fi
#globals
reload=true
addmode=true
force=false
versbose=true
domList=()
domToRemoveList=()
2016-03-14 01:34:22 +00:00
IPv6=false
2016-01-17 14:09:06 +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-17 14:09:06 +00:00
modifyHost=false
2016-03-14 01:34:22 +00:00
if [[ -f piholeIPv6file ]];then
2016-01-17 14:09:06 +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
2016-01-17 14:09:06 +00:00
fi
function HandleOther(){
2016-03-14 01:34:22 +00:00
# Check validity of domain
2016-01-17 14:09:06 +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-17 14:09:06 +00:00
if [ -z "$validDomain" ]; then
echo $1 is not a valid argument or domain name
else
2016-03-14 01:34:22 +00:00
domList=("${domList[@]}" $validDomain)
2016-01-17 14:09:06 +00:00
fi
}
function PopBlacklistFile(){
2016-03-14 01:34:22 +00:00
# Check blacklist file exists, and if not, create it
2016-01-17 14:09:06 +00:00
if [[ ! -f $blacklist ]];then
2016-03-14 01:34:22 +00:00
touch $blacklist
fi
2016-01-17 14:09:06 +00:00
for dom in "${domList[@]}"
do
2016-03-14 01:34:22 +00:00
if $addmode; then
AddDomain $dom
else
RemoveDomain $dom
fi
2016-01-17 14:09:06 +00:00
done
}
function AddDomain(){
2016-03-14 01:34:22 +00:00
#| sed 's/\./\\./g'
2016-01-17 14:09:06 +00:00
bool=false
grep -Ex -q "$1" $blacklist || bool=true
if $bool; then
2016-03-14 01:34:22 +00:00
# Domain not found in the blacklist file, add it!
if $versbose; then
echo -n "::: Adding $1 to blacklist file..."
fi
2016-01-17 14:09:06 +00:00
echo $1 >> $blacklist
modifyHost=true
2016-01-24 17:18:37 +00:00
echo " done!"
2016-01-17 14:09:06 +00:00
else
2016-03-14 01:34:22 +00:00
if $versbose; then
echo "::: $1 already exists in blacklist.txt! No need to add"
2016-01-17 14:09:06 +00:00
fi
fi
}
function RemoveDomain(){
2016-03-14 01:34:22 +00:00
bool=false
grep -Ex -q "$1" $blacklist || bool=true
if $bool; then
# Domain is not in the blacklist file, no need to Remove
if $versbose; then
echo "::: $1 is NOT blacklisted! No need to remove"
fi
else
# Domain is in the blacklist file, add to a temporary array
if $versbose; then
echo "::: Un-blacklisting $dom..."
fi
domToRemoveList=("${domToRemoveList[@]}" $1)
modifyHost=true
fi
2016-01-17 14:09:06 +00:00
}
function ModifyHostFile(){
2016-03-14 01:34:22 +00:00
if $addmode; then
# Add domains to the hosts file
if [[ -r $blacklist ]];then
numberOf=$(cat $blacklist | sed '/^\s*$/d' | wc -l)
plural=; [[ "$numberOf" != "1" ]] && plural=s
echo ":::"
echo -n "::: Modifying HOSTS file to blacklist $numberOf domain${plural}..."
if [[ IPv6 ]];then
cat $blacklist | awk -v ipv4addr="$piholeIP" -v ipv6addr="$piholeIPv6" '{sub(/\r$/,""); print ipv4addr" "$0"\n"ipv6addr" "$0}' >> $adList
else
cat $blacklist | awk -v ipv4addr="$piholeIP" '{sub(/\r$/,""); print ipv4addr" "$0}' >>$adList
fi
fi
else
2016-01-24 17:18:37 +00:00
echo ":::"
2016-03-14 01:34:22 +00:00
for dom in "${domToRemoveList[@]}"
do
2016-03-14 01:34:22 +00:00
# We need to remove the domains from the blacklist file and the host file
echo "::: $dom"
echo -n "::: removing from HOSTS file..."
echo $dom | sed 's/\./\\./g' | xargs -I {} perl -i -ne'print unless /[^.]'{}'(?!.)/;' $adList
echo " done!"
echo -n "::: removing from blackist.txt..."
echo $dom | sed 's/\./\\./g' | xargs -I {} perl -i -ne'print unless /'{}'(?!.)/;' $blacklist
echo " done!"
done
2016-03-14 01:34:22 +00:00
fi
2016-01-17 14:09:06 +00:00
}
function Reload() {
# Reload hosts file
2016-01-24 17:18:37 +00:00
echo ":::"
echo -n "::: Refresh lists in dnsmasq..."
2016-03-14 01:34:22 +00:00
2016-01-17 14:09:06 +00:00
dnsmasqPid=$(pidof dnsmasq)
2016-03-14 01:34:22 +00:00
2016-01-17 14:09:06 +00:00
if [[ $dnsmasqPid ]]; then
2016-03-14 01:34:22 +00:00
# Service already running - reload config
2016-01-17 14:09:06 +00:00
sudo kill -HUP $dnsmasqPid
else
2016-03-14 01:34:22 +00:00
# Service not running, start it up
2016-01-17 14:09:06 +00:00
sudo service dnsmasq start
fi
2016-01-24 17:18:37 +00:00
echo " done!"
2016-01-17 14:09:06 +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;;
esac
2016-01-17 14:09:06 +00:00
done
PopBlacklistFile
if $modifyHost || $force; then
2016-01-17 14:09:06 +00:00
ModifyHostFile
else
2016-03-14 01:34:22 +00:00
if $versbose; then
echo "::: No changes need to be made"
2016-01-17 14:09:06 +00:00
fi
exit 1
fi
if $reload; then
Reload
fi