2016-08-26 22:10:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# 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
|
|
|
|
# Controller for all pihole scripts and functions.
|
|
|
|
#
|
|
|
|
# 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-11-02 17:39:27 +00:00
|
|
|
PI_HOLE_SCRIPT_DIR="/opt/pihole"
|
2016-08-26 22:10:22 +00:00
|
|
|
# Must be root to use this tool
|
|
|
|
if [[ ! $EUID -eq 0 ]];then
|
2016-11-02 16:36:30 +00:00
|
|
|
if [ -x "$(command -v sudo)" ];then
|
|
|
|
exec sudo bash "$0" "$@"
|
|
|
|
exit $?
|
|
|
|
else
|
|
|
|
echo "::: sudo is needed to run pihole commands. Please run this script as root or install sudo."
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-08-26 22:10:22 +00:00
|
|
|
fi
|
|
|
|
|
2016-11-16 20:34:43 +00:00
|
|
|
webpageFunc() {
|
|
|
|
/opt/pihole/webpage.sh "$@"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
whitelistFunc() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/list.sh "$@"
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
blacklistFunc() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/list.sh "$@"
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
debugFunc() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/piholeDebug.sh
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
flushFunc() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/piholeLogFlush.sh
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
updatePiholeFunc() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/update.sh
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
reconfigurePiholeFunc() {
|
2016-11-02 16:36:30 +00:00
|
|
|
/etc/.pihole/automated\ install/basic-install.sh --reconfigure
|
|
|
|
exit 0;
|
2016-10-15 16:07:08 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
updateGravityFunc() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/gravity.sh "$@"
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
setupLCDFunction() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/setupLCD.sh
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-12-06 08:55:17 +00:00
|
|
|
scanList(){
|
2016-12-06 12:18:01 +00:00
|
|
|
domain="${1}"
|
|
|
|
list="${2}"
|
|
|
|
method="${3}"
|
|
|
|
if [[ ${method} == "-exact" ]] ; then
|
2016-12-23 16:02:56 +00:00
|
|
|
grep -i -E "(^|\s)${domain}($|\s)" "${list}"
|
2016-12-06 12:18:01 +00:00
|
|
|
else
|
2016-12-23 16:02:56 +00:00
|
|
|
grep -i "${domain}" "${list}"
|
2016-12-06 12:18:01 +00:00
|
|
|
fi
|
2016-12-06 08:55:17 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
queryFunc() {
|
2016-11-02 16:52:15 +00:00
|
|
|
domain="${2}"
|
2016-12-06 12:18:01 +00:00
|
|
|
method="${3}"
|
2016-12-05 16:12:28 +00:00
|
|
|
lists=( /etc/pihole/list.* /etc/pihole/blacklist.txt)
|
2016-12-05 16:09:49 +00:00
|
|
|
for list in ${lists[@]}; do
|
2016-12-06 12:18:01 +00:00
|
|
|
result=$(scanList ${domain} ${list} ${method})
|
2016-12-06 08:55:17 +00:00
|
|
|
# Remove empty lines before couting number of results
|
|
|
|
count=$(sed '/^\s*$/d' <<< "$result" | wc -l)
|
2016-11-02 16:36:30 +00:00
|
|
|
echo "::: ${list} (${count} results)"
|
|
|
|
if [[ ${count} > 0 ]]; then
|
2016-12-06 12:18:01 +00:00
|
|
|
echo "${result}"
|
2016-11-02 16:36:30 +00:00
|
|
|
fi
|
|
|
|
echo ""
|
|
|
|
done
|
|
|
|
exit 0
|
2016-08-26 08:39:27 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
chronometerFunc() {
|
2016-11-02 16:36:30 +00:00
|
|
|
shift
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/chronometer.sh "$@"
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
uninstallFunc() {
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/uninstall.sh
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
versionFunc() {
|
2016-11-02 16:36:30 +00:00
|
|
|
shift
|
2016-11-02 17:39:27 +00:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/version.sh "$@"
|
2016-11-02 16:36:30 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 12:45:20 +00:00
|
|
|
restartDNS() {
|
|
|
|
dnsmasqPid=$(pidof dnsmasq)
|
|
|
|
if [[ ${dnsmasqPid} ]]; then
|
|
|
|
# service already running - reload config
|
|
|
|
if [ -x "$(command -v systemctl)" ]; then
|
|
|
|
systemctl restart dnsmasq
|
|
|
|
else
|
|
|
|
service dnsmasq restart
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# service not running, start it up
|
|
|
|
if [ -x "$(command -v systemctl)" ]; then
|
|
|
|
systemctl start dnsmasq
|
|
|
|
else
|
|
|
|
service dnsmasq start
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
piholeEnable() {
|
|
|
|
if [[ "${1}" == "0" ]] ; then
|
|
|
|
#Disable Pihole
|
2016-12-14 19:42:20 +00:00
|
|
|
sed -i 's/^addn-hosts=\/etc\/pihole\/gravity.list/#addn-hosts=\/etc\/pihole\/gravity.list/' /etc/dnsmasq.d/01-pihole.conf
|
2016-10-23 18:44:40 +00:00
|
|
|
echo "::: Blocking has been disabled!"
|
2016-11-17 21:58:00 +00:00
|
|
|
if [[ $# > 1 ]] ; then
|
2016-11-17 22:31:11 +00:00
|
|
|
if [[ ${2} == *"s"* ]] ; then
|
|
|
|
tt=${2%"s"}
|
2016-11-18 11:16:10 +00:00
|
|
|
echo "::: Blocking will be re-enabled in ${tt} seconds"
|
2016-11-17 22:31:11 +00:00
|
|
|
nohup bash -c "sleep ${tt}; pihole enable" </dev/null &>/dev/null &
|
|
|
|
elif [[ ${2} == *"m"* ]] ; then
|
|
|
|
tt=${2%"m"}
|
2016-11-18 11:16:10 +00:00
|
|
|
echo "::: Blocking will be re-enabled in ${tt} minutes"
|
2016-11-17 22:31:11 +00:00
|
|
|
tt=$((${tt}*60))
|
|
|
|
nohup bash -c "sleep ${tt}; pihole enable" </dev/null &>/dev/null &
|
2016-11-17 21:58:00 +00:00
|
|
|
else
|
2016-11-17 22:31:11 +00:00
|
|
|
echo "::: Unknown format for delayed reactivation of the blocking!"
|
|
|
|
echo "::: Example:"
|
|
|
|
echo "::: pihole disable 5s - will disable blocking for 5 seconds"
|
|
|
|
echo "::: pihole disable 7m - will disable blocking for 7 minutes"
|
2016-11-17 22:36:53 +00:00
|
|
|
echo "::: Blocking will not automatically be re-enabled!"
|
2016-11-17 21:58:00 +00:00
|
|
|
fi
|
|
|
|
fi
|
2016-10-20 12:45:20 +00:00
|
|
|
else
|
|
|
|
#Enable pihole
|
2016-10-23 18:44:40 +00:00
|
|
|
echo "::: Blocking has been enabled!"
|
2016-10-20 12:45:20 +00:00
|
|
|
sed -i 's/^#addn-hosts/addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
fi
|
|
|
|
restartDNS
|
|
|
|
}
|
|
|
|
|
2016-10-31 22:02:20 +00:00
|
|
|
piholeLogging() {
|
2016-11-02 09:35:48 +00:00
|
|
|
shift
|
|
|
|
|
|
|
|
if [[ "${1}" == "off" ]] ; then
|
|
|
|
#Disable Logging
|
|
|
|
sed -i 's/^log-queries/#log-queries/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
sed -i 's/^QUERY_LOGGING=true/QUERY_LOGGING=false/' /etc/pihole/setupVars.conf
|
|
|
|
pihole -f
|
|
|
|
echo "::: Logging has been disabled!"
|
|
|
|
elif [[ "${1}" == "on" ]] ; then
|
|
|
|
#Enable logging
|
|
|
|
sed -i 's/^#log-queries/log-queries/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
sed -i 's/^QUERY_LOGGING=false/QUERY_LOGGING=true/' /etc/pihole/setupVars.conf
|
|
|
|
echo "::: Logging has been enabled!"
|
|
|
|
else
|
|
|
|
echo "::: Invalid option passed, please pass 'on' or 'off'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
restartDNS
|
2016-10-31 22:02:20 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 12:45:20 +00:00
|
|
|
piholeStatus() {
|
2016-11-02 16:28:00 +00:00
|
|
|
if [[ $(grep -i "^#addn-hosts=/" /etc/dnsmasq.d/01-pihole.conf) ]] ; then
|
2016-10-20 22:40:03 +00:00
|
|
|
#list is commented out
|
2016-10-23 18:33:28 +00:00
|
|
|
if [[ "${1}" == "web" ]] ; then
|
|
|
|
echo 0;
|
|
|
|
else
|
2016-10-23 18:47:31 +00:00
|
|
|
echo "::: Pi-hole blocking is Disabled";
|
2016-10-20 22:40:03 +00:00
|
|
|
fi
|
2016-11-02 16:28:00 +00:00
|
|
|
elif [[ $(grep -i "^addn-hosts=/" /etc/dnsmasq.d/01-pihole.conf) ]] ; then
|
2016-10-20 22:45:27 +00:00
|
|
|
#list set
|
|
|
|
if [[ "${1}" == "web" ]] ; then
|
2016-10-23 18:33:28 +00:00
|
|
|
echo 1;
|
|
|
|
else
|
2016-10-23 18:47:31 +00:00
|
|
|
echo "::: Pi-hole blocking is Enabled";
|
2016-10-20 12:45:20 +00:00
|
|
|
fi
|
2016-10-20 22:40:03 +00:00
|
|
|
else
|
|
|
|
#addn-host not found
|
|
|
|
if [[ "${1}" == "web" ]] ; then
|
2016-10-20 22:45:27 +00:00
|
|
|
echo 99
|
|
|
|
else
|
2016-10-21 01:15:11 +00:00
|
|
|
echo "::: No hosts file linked to dnsmasq, adding it in enabled state"
|
2016-10-20 22:45:27 +00:00
|
|
|
fi
|
|
|
|
#add addn-host= to dnsmasq
|
2016-10-20 22:40:03 +00:00
|
|
|
echo "addn-hosts=/etc/pihole/gravity.list" >> /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
restartDNS
|
2016-10-20 12:45:20 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-12-08 20:15:03 +00:00
|
|
|
tailFunc() {
|
2016-12-08 21:35:50 +00:00
|
|
|
echo "Press Ctrl-C to exit"
|
2016-12-08 20:15:03 +00:00
|
|
|
tail -F /var/log/pihole.log
|
|
|
|
exit 0
|
|
|
|
}
|
2016-10-20 12:45:20 +00:00
|
|
|
|
2016-10-15 16:25:17 +00:00
|
|
|
helpFunc() {
|
2016-10-22 05:53:04 +00:00
|
|
|
cat << EOM
|
|
|
|
::: Control all PiHole specific functions!
|
|
|
|
:::
|
|
|
|
::: Usage: pihole [options]
|
2016-11-20 14:15:27 +00:00
|
|
|
::: Add -h after -w (whitelist), -b (blacklist), -c (chronometer), or -a (admin) for more information on usage
|
2016-10-22 05:53:04 +00:00
|
|
|
:::
|
|
|
|
::: Options:
|
|
|
|
::: -w, whitelist Whitelist domains
|
|
|
|
::: -b, blacklist Blacklist domains
|
|
|
|
::: -d, debug Start a debugging session if having trouble
|
|
|
|
::: -f, flush Flush the pihole.log file
|
2016-12-08 20:15:03 +00:00
|
|
|
::: -t, tail Output the last lines of the pihole.log file. Lines are appended as the file grows
|
2016-10-22 05:53:04 +00:00
|
|
|
::: -up, updatePihole Update Pi-hole
|
2016-12-08 20:47:30 +00:00
|
|
|
::: -r, reconfigure Reconfigure or Repair Pi-hole
|
2016-10-22 05:53:04 +00:00
|
|
|
::: -g, updateGravity Update the list of ad-serving domains
|
|
|
|
::: -s, setupLCD Automatically configures the Pi to use the 2.8 LCD screen to display stats on it
|
|
|
|
::: -c, chronometer Calculates stats and displays to an LCD
|
|
|
|
::: -h, help Show this help dialog
|
|
|
|
::: -v, version Show current versions
|
|
|
|
::: -q, query Query the adlists for a specific domain
|
2016-12-06 12:18:01 +00:00
|
|
|
::: Use pihole -q domain -exact if you want to see exact matches only
|
2016-10-31 22:02:20 +00:00
|
|
|
::: -l, logging Enable or Disable logging (pass 'on' or 'off')
|
2016-11-20 14:15:27 +00:00
|
|
|
::: -a, admin Admin webpage options
|
2016-10-22 05:53:04 +00:00
|
|
|
::: uninstall Uninstall Pi-Hole from your system :(!
|
2016-10-23 18:33:28 +00:00
|
|
|
::: status Is Pi-Hole Enabled or Disabled
|
|
|
|
::: enable Enable Pi-Hole DNS Blocking
|
|
|
|
::: disable Disable Pi-Hole DNS Blocking
|
2016-11-21 10:30:34 +00:00
|
|
|
::: Blocking can also be disabled only temporarily, e.g.,
|
|
|
|
::: pihole disable 5m - will disable blocking for 5 minutes
|
2016-10-23 18:33:28 +00:00
|
|
|
::: restartdns Restart dnsmasq
|
2016-10-22 05:53:04 +00:00
|
|
|
EOM
|
2016-12-01 20:21:08 +00:00
|
|
|
exit 0
|
2016-08-26 22:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if [[ $# = 0 ]]; then
|
2016-11-02 16:36:30 +00:00
|
|
|
helpFunc
|
2016-08-26 22:10:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Handle redirecting to specific functions based on arguments
|
2016-10-22 06:17:14 +00:00
|
|
|
case "${1}" in
|
2016-11-02 16:36:30 +00:00
|
|
|
"-w" | "whitelist" ) whitelistFunc "$@";;
|
|
|
|
"-b" | "blacklist" ) blacklistFunc "$@";;
|
|
|
|
"-d" | "debug" ) debugFunc;;
|
|
|
|
"-f" | "flush" ) flushFunc;;
|
|
|
|
"-up" | "updatePihole" ) updatePiholeFunc;;
|
|
|
|
"-r" | "reconfigure" ) reconfigurePiholeFunc;;
|
|
|
|
"-g" | "updateGravity" ) updateGravityFunc "$@";;
|
|
|
|
"-s" | "setupLCD" ) setupLCDFunction;;
|
|
|
|
"-c" | "chronometer" ) chronometerFunc "$@";;
|
|
|
|
"-h" | "help" ) helpFunc;;
|
|
|
|
"-v" | "version" ) versionFunc "$@";;
|
|
|
|
"-q" | "query" ) queryFunc "$@";;
|
|
|
|
"-l" | "logging" ) piholeLogging "$@";;
|
|
|
|
"uninstall" ) uninstallFunc;;
|
|
|
|
"enable" ) piholeEnable 1;;
|
2016-11-17 21:58:00 +00:00
|
|
|
"disable" ) piholeEnable 0 $2;;
|
2016-11-02 16:36:30 +00:00
|
|
|
"status" ) piholeStatus "$2";;
|
|
|
|
"restartdns" ) restartDNS;;
|
2016-11-20 14:15:27 +00:00
|
|
|
"-a" | "admin" ) webpageFunc "$@";;
|
2016-12-08 20:15:03 +00:00
|
|
|
"-t" | "tail" ) tailFunc;;
|
2016-11-02 16:36:30 +00:00
|
|
|
* ) helpFunc;;
|
2016-10-15 16:25:17 +00:00
|
|
|
esac
|