2016-08-27 00:10:22 +02: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 18:39:27 +01:00
|
|
|
PI_HOLE_SCRIPT_DIR="/opt/pihole"
|
2016-08-27 00:10:22 +02:00
|
|
|
# Must be root to use this tool
|
|
|
|
if [[ ! $EUID -eq 0 ]];then
|
2016-11-02 17:36:30 +01: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-27 00:10:22 +02:00
|
|
|
fi
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
whitelistFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/list.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
blacklistFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/list.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
debugFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/piholeDebug.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
flushFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/piholeLogFlush.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
updatePiholeFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/update.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
reconfigurePiholeFunc() {
|
2016-11-02 17:36:30 +01:00
|
|
|
/etc/.pihole/automated\ install/basic-install.sh --reconfigure
|
|
|
|
exit 0;
|
2016-10-15 18:07:08 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
updateGravityFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/gravity.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
setupLCDFunction() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/setupLCD.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
queryFunc() {
|
2016-11-02 17:52:15 +01:00
|
|
|
domain="${2}"
|
2016-11-02 17:36:30 +01:00
|
|
|
for list in /etc/pihole/list.*; do
|
|
|
|
count=$(grep ${domain} $list | wc -l)
|
|
|
|
echo "::: ${list} (${count} results)"
|
|
|
|
if [[ ${count} > 0 ]]; then
|
|
|
|
grep ${domain} ${list}
|
|
|
|
fi
|
|
|
|
echo ""
|
|
|
|
done
|
|
|
|
exit 0
|
2016-08-26 10:39:27 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
chronometerFunc() {
|
2016-11-02 17:36:30 +01:00
|
|
|
shift
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/chronometer.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
uninstallFunc() {
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/uninstall.sh
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
versionFunc() {
|
2016-11-02 17:36:30 +01:00
|
|
|
shift
|
2016-11-02 18:39:27 +01:00
|
|
|
"${PI_HOLE_SCRIPT_DIR}"/version.sh "$@"
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-20 14:45:20 +02: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
|
|
|
|
sed -i 's/^addn-hosts/#addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
2016-10-23 20:44:40 +02:00
|
|
|
echo "::: Blocking has been disabled!"
|
2016-11-17 22:58:00 +01:00
|
|
|
if [[ $# > 1 ]] ; then
|
2016-11-17 23:31:11 +01:00
|
|
|
if [[ ${2} == *"s"* ]] ; then
|
|
|
|
tt=${2%"s"}
|
|
|
|
echo "::: Blocking will be reenabled in ${tt} seconds"
|
|
|
|
nohup bash -c "sleep ${tt}; pihole enable" </dev/null &>/dev/null &
|
|
|
|
elif [[ ${2} == *"m"* ]] ; then
|
|
|
|
tt=${2%"m"}
|
|
|
|
echo "::: Blocking will be reenabled in ${tt} minutes"
|
|
|
|
tt=$((${tt}*60))
|
|
|
|
nohup bash -c "sleep ${tt}; pihole enable" </dev/null &>/dev/null &
|
2016-11-17 22:58:00 +01:00
|
|
|
else
|
2016-11-17 23:31:11 +01: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:58:00 +01:00
|
|
|
echo "::: Blocking will not automatically be reenabled!"
|
|
|
|
fi
|
|
|
|
fi
|
2016-10-20 14:45:20 +02:00
|
|
|
else
|
|
|
|
#Enable pihole
|
2016-10-23 20:44:40 +02:00
|
|
|
echo "::: Blocking has been enabled!"
|
2016-10-20 14:45:20 +02:00
|
|
|
sed -i 's/^#addn-hosts/addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
fi
|
|
|
|
restartDNS
|
|
|
|
}
|
|
|
|
|
2016-10-31 23:02:20 +01:00
|
|
|
piholeLogging() {
|
2016-11-02 10:35:48 +01: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 23:02:20 +01:00
|
|
|
}
|
|
|
|
|
2016-10-20 14:45:20 +02:00
|
|
|
piholeStatus() {
|
2016-11-02 17:28:00 +01:00
|
|
|
if [[ $(grep -i "^#addn-hosts=/" /etc/dnsmasq.d/01-pihole.conf) ]] ; then
|
2016-10-21 00:40:03 +02:00
|
|
|
#list is commented out
|
2016-10-23 20:33:28 +02:00
|
|
|
if [[ "${1}" == "web" ]] ; then
|
|
|
|
echo 0;
|
|
|
|
else
|
2016-10-23 20:47:31 +02:00
|
|
|
echo "::: Pi-hole blocking is Disabled";
|
2016-10-21 00:40:03 +02:00
|
|
|
fi
|
2016-11-02 17:28:00 +01:00
|
|
|
elif [[ $(grep -i "^addn-hosts=/" /etc/dnsmasq.d/01-pihole.conf) ]] ; then
|
2016-10-21 00:45:27 +02:00
|
|
|
#list set
|
|
|
|
if [[ "${1}" == "web" ]] ; then
|
2016-10-23 20:33:28 +02:00
|
|
|
echo 1;
|
|
|
|
else
|
2016-10-23 20:47:31 +02:00
|
|
|
echo "::: Pi-hole blocking is Enabled";
|
2016-10-20 14:45:20 +02:00
|
|
|
fi
|
2016-10-21 00:40:03 +02:00
|
|
|
else
|
|
|
|
#addn-host not found
|
|
|
|
if [[ "${1}" == "web" ]] ; then
|
2016-10-21 00:45:27 +02:00
|
|
|
echo 99
|
|
|
|
else
|
2016-10-21 03:15:11 +02:00
|
|
|
echo "::: No hosts file linked to dnsmasq, adding it in enabled state"
|
2016-10-21 00:45:27 +02:00
|
|
|
fi
|
|
|
|
#add addn-host= to dnsmasq
|
2016-10-21 00:40:03 +02:00
|
|
|
echo "addn-hosts=/etc/pihole/gravity.list" >> /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
restartDNS
|
2016-10-20 14:45:20 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
helpFunc() {
|
2016-10-22 07:53:04 +02:00
|
|
|
cat << EOM
|
|
|
|
::: Control all PiHole specific functions!
|
|
|
|
:::
|
|
|
|
::: Usage: pihole [options]
|
|
|
|
::: Add -h after -w (whitelist), -b (blacklist), or -c (chronometer) for more information on usage
|
|
|
|
:::
|
|
|
|
::: 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
|
|
|
|
::: -up, updatePihole Update Pi-hole
|
|
|
|
::: -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-10-31 23:02:20 +01:00
|
|
|
::: -l, logging Enable or Disable logging (pass 'on' or 'off')
|
2016-10-22 07:53:04 +02:00
|
|
|
::: uninstall Uninstall Pi-Hole from your system :(!
|
2016-10-23 20:33:28 +02:00
|
|
|
::: status Is Pi-Hole Enabled or Disabled
|
|
|
|
::: enable Enable Pi-Hole DNS Blocking
|
|
|
|
::: disable Disable Pi-Hole DNS Blocking
|
|
|
|
::: restartdns Restart dnsmasq
|
2016-10-22 07:53:04 +02:00
|
|
|
EOM
|
2016-11-02 17:36:30 +01:00
|
|
|
exit 1
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if [[ $# = 0 ]]; then
|
2016-11-02 17:36:30 +01:00
|
|
|
helpFunc
|
2016-08-27 00:10:22 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Handle redirecting to specific functions based on arguments
|
2016-10-22 08:17:14 +02:00
|
|
|
case "${1}" in
|
2016-11-02 17:36:30 +01: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;;
|
2016-11-17 23:31:11 +01:00
|
|
|
"enable" ) piholeEnable 1;;
|
2016-11-17 22:58:00 +01:00
|
|
|
"disable" ) piholeEnable 0 $2;;
|
2016-11-02 17:36:30 +01:00
|
|
|
"status" ) piholeStatus "$2";;
|
|
|
|
"restartdns" ) restartDNS;;
|
|
|
|
* ) helpFunc;;
|
2016-10-15 18:25:17 +02:00
|
|
|
esac
|