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.
|
|
|
|
|
|
|
|
# Must be root to use this tool
|
|
|
|
if [[ ! $EUID -eq 0 ]];then
|
2016-10-15 18:54:04 +02: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-08-27 00:10:22 +02:00
|
|
|
shift
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/whitelist.sh "$@"
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
blacklistFunc() {
|
2016-08-27 00:10:22 +02:00
|
|
|
shift
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/blacklist.sh "$@"
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
debugFunc() {
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/piholeDebug.sh
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
flushFunc() {
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/piholeLogFlush.sh
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-18 13:05:48 +02:00
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
updatePiholeFunc() {
|
2016-10-18 15:19:44 +02:00
|
|
|
/opt/pihole/update.sh
|
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
reconfigurePiholeFunc() {
|
2016-10-15 21:43:03 +02:00
|
|
|
/etc/.pihole/automated\ install/basic-install.sh --reconfigure
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0;
|
2016-10-15 18:07:08 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
updateGravityFunc() {
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/gravity.sh "$@"
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
setupLCDFunction() {
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/setupLCD.sh
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
queryFunc() {
|
2016-08-26 11:09:39 +02:00
|
|
|
domain=$2
|
2016-09-06 20:16:04 +02:00
|
|
|
for list in /etc/pihole/list.*
|
|
|
|
do
|
|
|
|
count=$(grep ${domain} $list | wc -l)
|
2016-09-06 20:21:56 +02:00
|
|
|
echo "::: ${list} (${count} results)"
|
2016-09-06 20:16:04 +02:00
|
|
|
if [[ ${count} > 0 ]]; then
|
|
|
|
grep ${domain} ${list}
|
|
|
|
fi
|
2016-09-06 20:21:56 +02:00
|
|
|
echo ""
|
2016-09-06 20:16:04 +02:00
|
|
|
done
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-26 10:39:27 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
chronometerFunc() {
|
2016-08-27 00:10:22 +02:00
|
|
|
shift
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/chronometer.sh "$@"
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
uninstallFunc() {
|
2016-10-15 18:15:59 +02:00
|
|
|
/opt/pihole/uninstall.sh
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
versionFunc() {
|
2016-10-18 13:07:42 +02:00
|
|
|
shift
|
|
|
|
/opt/pihole/version.sh "$@"
|
2016-10-15 18:16:44 +02: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
|
|
|
|
else
|
|
|
|
#Enable pihole
|
|
|
|
sed -i 's/^#addn-hosts/addn-hosts/' /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
fi
|
|
|
|
restartDNS
|
|
|
|
}
|
|
|
|
|
|
|
|
piholeStatus() {
|
|
|
|
if [[ $(cat /etc/dnsmasq.d/01-pihole.conf | grep "#addn-hosts=") ]] ; then
|
2016-10-20 17:05:49 +02:00
|
|
|
if [[ "${1}" == "web" ]] ; then echo 0; else echo "::: pihole is Disabled"; fi
|
2016-10-20 14:45:20 +02:00
|
|
|
else
|
2016-10-20 17:24:34 +02:00
|
|
|
if [[ "${1}" == "web" ]] ; then echo 1; else
|
|
|
|
if [[ $(cat /etc/dnsmasq.d/01-pihole.conf | grep "addn-hosts=") ]] ; then
|
|
|
|
echo "::: pihole is Enabled";
|
|
|
|
else
|
2016-10-20 14:58:36 +02:00
|
|
|
echo "::: no hosts file linked to dnsmasq, adding it in enabled state"
|
|
|
|
echo "addn-hosts=/etc/pihole/gravity.list" >> /etc/dnsmasq.d/01-pihole.conf
|
|
|
|
restartDNS
|
|
|
|
fi
|
2016-10-20 14:45:20 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-15 18:25:17 +02:00
|
|
|
helpFunc() {
|
2016-08-27 00:10:22 +02:00
|
|
|
echo "::: Control all PiHole specific functions!"
|
|
|
|
echo ":::"
|
|
|
|
echo "::: Usage: pihole [options]"
|
2016-10-18 15:19:44 +02:00
|
|
|
echo "::: Add -h after -w (whitelist), -b (blacklist), or -c (chronometer) for more information on usage"
|
2016-08-27 00:10:22 +02:00
|
|
|
echo ":::"
|
|
|
|
echo "::: Options:"
|
|
|
|
echo "::: -w, whitelist Whitelist domains"
|
|
|
|
echo "::: -b, blacklist Blacklist domains"
|
|
|
|
echo "::: -d, debug Start a debugging session if having trouble"
|
|
|
|
echo "::: -f, flush Flush the pihole.log file"
|
2016-09-12 20:08:33 +02:00
|
|
|
echo "::: -up, updatePihole Update Pi-hole"
|
2016-08-27 00:10:22 +02:00
|
|
|
echo "::: -g, updateGravity Update the list of ad-serving domains"
|
|
|
|
echo "::: -s, setupLCD Automatically configures the Pi to use the 2.8 LCD screen to display stats on it"
|
|
|
|
echo "::: -c, chronometer Calculates stats and displays to an LCD"
|
|
|
|
echo "::: -h, help Show this help dialog"
|
|
|
|
echo "::: -v, version Show current versions"
|
2016-08-26 10:39:27 +02:00
|
|
|
echo "::: -q, query Query the adlists for a specific domain"
|
2016-08-27 00:10:22 +02:00
|
|
|
echo "::: uninstall Uninstall Pi-Hole from your system :(!"
|
2016-10-20 17:05:49 +02:00
|
|
|
echo "::: status Is Pi-Hole Enabled or Disabled"
|
|
|
|
echo "::: enable Enable Pi-Hole DNS Blocking"
|
|
|
|
echo "::: disable Disable Pi-Hole DNS Blocking"
|
|
|
|
echo "::: restartdns Restart dnsmasq"
|
2016-10-15 18:16:44 +02:00
|
|
|
exit 0
|
2016-08-27 00:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if [[ $# = 0 ]]; then
|
|
|
|
helpFunc
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Handle redirecting to specific functions based on arguments
|
|
|
|
case "$1" in
|
|
|
|
"-w" | "whitelist" ) whitelistFunc "$@";;
|
|
|
|
"-b" | "blacklist" ) blacklistFunc "$@";;
|
|
|
|
"-d" | "debug" ) debugFunc;;
|
|
|
|
"-f" | "flush" ) flushFunc;;
|
|
|
|
"-up" | "updatePihole" ) updatePiholeFunc;;
|
2016-10-15 18:07:08 +02:00
|
|
|
"-r" | "reconfigure" ) reconfigurePiholeFunc;;
|
2016-08-27 00:10:22 +02:00
|
|
|
"-g" | "updateGravity" ) updateGravityFunc "$@";;
|
|
|
|
"-s" | "setupLCD" ) setupLCDFunction;;
|
|
|
|
"-c" | "chronometer" ) chronometerFunc "$@";;
|
|
|
|
"-h" | "help" ) helpFunc;;
|
2016-10-18 13:07:42 +02:00
|
|
|
"-v" | "version" ) versionFunc "$@";;
|
2016-08-26 11:09:39 +02:00
|
|
|
"-q" | "query" ) queryFunc "$@";;
|
2016-08-27 00:10:22 +02:00
|
|
|
"uninstall" ) uninstallFunc;;
|
2016-10-20 14:45:20 +02:00
|
|
|
"enable" ) piholeEnable 1;;
|
|
|
|
"disable" ) piholeEnable 0;;
|
2016-10-20 14:58:36 +02:00
|
|
|
"status" ) piholeStatus "$2";;
|
2016-10-20 15:40:45 +02:00
|
|
|
"restartdns" ) restartDNS;;
|
2016-10-20 14:45:20 +02:00
|
|
|
|
2016-08-27 00:10:22 +02:00
|
|
|
* ) helpFunc;;
|
2016-10-15 18:25:17 +02:00
|
|
|
esac
|