2016-10-23 21:15:10 +00:00
|
|
|
#!/usr/bin/env bash
|
2016-03-20 01:32:11 +00:00
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
2017-02-22 17:55:20 +00:00
|
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
2016-09-27 01:06:31 +00:00
|
|
|
# Generates pihole_debug.log to be used for troubleshooting.
|
2016-03-20 01:32:11 +00:00
|
|
|
#
|
2017-02-22 17:55:20 +00:00
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
|
|
|
|
|
2016-03-20 01:32:11 +00:00
|
|
|
|
2016-09-28 02:30:37 +00:00
|
|
|
set -o pipefail
|
2016-03-20 01:32:11 +00:00
|
|
|
|
|
|
|
######## GLOBAL VARS ########
|
2016-10-28 21:52:08 +00:00
|
|
|
VARSFILE="/etc/pihole/setupVars.conf"
|
2016-03-20 01:32:11 +00:00
|
|
|
DEBUG_LOG="/var/log/pihole_debug.log"
|
2016-03-24 21:21:29 +00:00
|
|
|
DNSMASQFILE="/etc/dnsmasq.conf"
|
2017-02-10 16:42:37 +00:00
|
|
|
DNSMASQCONFDIR="/etc/dnsmasq.d/*"
|
2016-03-24 21:21:29 +00:00
|
|
|
LIGHTTPDFILE="/etc/lighttpd/lighttpd.conf"
|
2016-04-11 23:35:44 +00:00
|
|
|
LIGHTTPDERRFILE="/var/log/lighttpd/error.log"
|
2016-03-24 21:21:29 +00:00
|
|
|
GRAVITYFILE="/etc/pihole/gravity.list"
|
|
|
|
WHITELISTFILE="/etc/pihole/whitelist.txt"
|
|
|
|
BLACKLISTFILE="/etc/pihole/blacklist.txt"
|
2016-10-28 21:52:08 +00:00
|
|
|
ADLISTFILE="/etc/pihole/adlists.list"
|
2016-03-24 21:21:29 +00:00
|
|
|
PIHOLELOG="/var/log/pihole.log"
|
2017-03-05 15:13:41 +00:00
|
|
|
PIHOLEGITDIR="/etc/.pihole/"
|
|
|
|
ADMINGITDIR="/var/www/html/admin/"
|
2016-03-25 21:42:17 +00:00
|
|
|
WHITELISTMATCHES="/tmp/whitelistmatches.list"
|
2016-03-24 21:21:29 +00:00
|
|
|
|
2016-11-17 19:00:11 +00:00
|
|
|
TIMEOUT=60
|
2016-09-27 01:06:31 +00:00
|
|
|
# Header info and introduction
|
2016-10-20 03:46:37 +00:00
|
|
|
cat << EOM
|
|
|
|
::: Beginning Pi-hole debug at $(date)!
|
2016-10-28 11:42:45 +00:00
|
|
|
:::
|
2016-10-28 21:52:08 +00:00
|
|
|
::: This process collects information from your Pi-hole, and optionally uploads
|
|
|
|
::: it to a unique and random directory on tricorder.pi-hole.net.
|
2016-10-28 11:42:45 +00:00
|
|
|
:::
|
2017-02-10 16:45:20 +00:00
|
|
|
::: NOTE: All log files auto-delete after 48 hours and ONLY the Pi-hole developers
|
2016-10-28 21:52:08 +00:00
|
|
|
::: can access your data via the given token. We have taken these extra steps to
|
|
|
|
::: secure your data and will work to further reduce any personal information gathered.
|
2016-10-23 21:15:10 +00:00
|
|
|
:::
|
2016-10-28 21:52:08 +00:00
|
|
|
::: Please read and note any issues, and follow any directions advised during this process.
|
2016-10-20 03:46:37 +00:00
|
|
|
EOM
|
2016-09-27 01:06:31 +00:00
|
|
|
|
2016-03-20 01:32:11 +00:00
|
|
|
# Ensure the file exists, create if not, clear if exists.
|
2016-10-28 21:52:08 +00:00
|
|
|
truncate --size=0 "${DEBUG_LOG}"
|
|
|
|
chmod 644 ${DEBUG_LOG}
|
|
|
|
chown "$USER":pihole ${DEBUG_LOG}
|
|
|
|
|
|
|
|
source ${VARSFILE}
|
2016-03-20 01:32:11 +00:00
|
|
|
|
2016-03-24 21:21:29 +00:00
|
|
|
### Private functions exist here ###
|
2016-10-20 02:47:45 +00:00
|
|
|
log_write() {
|
2016-10-28 10:45:07 +00:00
|
|
|
echo "${1}" >> "${DEBUG_LOG}"
|
2016-09-28 20:09:38 +00:00
|
|
|
}
|
2016-09-27 01:06:31 +00:00
|
|
|
|
2016-10-26 00:50:14 +00:00
|
|
|
log_echo() {
|
2016-10-28 10:45:07 +00:00
|
|
|
case ${1} in
|
|
|
|
-n)
|
|
|
|
echo -n "::: ${2}"
|
2016-10-28 14:06:05 +00:00
|
|
|
log_write "${2}"
|
2016-10-28 10:45:07 +00:00
|
|
|
;;
|
2016-10-28 21:52:08 +00:00
|
|
|
-r)
|
|
|
|
echo "::: ${2}"
|
|
|
|
log_write "${2}"
|
|
|
|
;;
|
2016-10-28 10:45:07 +00:00
|
|
|
-l)
|
|
|
|
echo "${2}"
|
|
|
|
log_write "${2}"
|
|
|
|
;;
|
|
|
|
*)
|
2016-10-28 21:52:08 +00:00
|
|
|
echo "::: ${1}"
|
2016-10-28 10:45:07 +00:00
|
|
|
log_write "${1}"
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2016-10-28 21:52:08 +00:00
|
|
|
header_write() {
|
|
|
|
log_echo ""
|
|
|
|
log_echo "${1}"
|
|
|
|
log_write ""
|
|
|
|
}
|
|
|
|
|
2016-10-28 10:45:07 +00:00
|
|
|
file_parse() {
|
|
|
|
while read -r line; do
|
|
|
|
if [ ! -z "${line}" ]; then
|
2016-10-28 22:37:45 +00:00
|
|
|
[[ "${line}" =~ ^#.*$ || ! "${line}" ]] && continue
|
2016-10-28 10:45:07 +00:00
|
|
|
log_write "${line}"
|
|
|
|
fi
|
|
|
|
done < "${1}"
|
2016-10-28 21:52:08 +00:00
|
|
|
log_write ""
|
2016-10-28 10:45:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
block_parse() {
|
2016-10-26 00:50:14 +00:00
|
|
|
log_write "${1}"
|
|
|
|
}
|
|
|
|
|
2016-10-28 10:53:53 +00:00
|
|
|
lsof_parse() {
|
|
|
|
local user
|
|
|
|
local process
|
|
|
|
|
|
|
|
user=$(echo ${1} | cut -f 3 -d ' ' | cut -c 2-)
|
|
|
|
process=$(echo ${1} | cut -f 2 -d ' ' | cut -c 2-)
|
2016-10-28 22:37:45 +00:00
|
|
|
[[ ${2} -eq ${process} ]] \
|
|
|
|
&& echo "::: Correctly configured." \
|
|
|
|
|| log_echo "::: Failure: Incorrectly configured daemon."
|
|
|
|
|
2016-10-28 21:52:08 +00:00
|
|
|
log_write "Found user ${user} with process ${process}"
|
2016-10-28 10:53:53 +00:00
|
|
|
}
|
2016-10-28 13:51:30 +00:00
|
|
|
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
version_check() {
|
2016-10-28 21:52:08 +00:00
|
|
|
header_write "Detecting Installed Package Versions:"
|
2016-10-28 17:42:30 +00:00
|
|
|
|
|
|
|
local error_found
|
2017-03-05 15:13:41 +00:00
|
|
|
local pi_hole_ver
|
|
|
|
local pi_hole_branch
|
|
|
|
local pi_hole_commit
|
|
|
|
local admin_ver
|
|
|
|
local admin_branch
|
|
|
|
local admin_commit
|
|
|
|
local light_ver
|
|
|
|
local php_ver
|
|
|
|
local status
|
2016-10-28 17:42:30 +00:00
|
|
|
error_found=0
|
|
|
|
|
2017-03-05 15:13:41 +00:00
|
|
|
cd "${PIHOLEGITDIR}" &> /dev/null || \
|
|
|
|
{ status="Pi-hole git directory not found."; error_found=1; }
|
|
|
|
if git status &> /dev/null; then
|
|
|
|
pi_hole_ver=$(git describe --tags --abbrev=0)
|
|
|
|
pi_hole_branch=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
pi_hole_commit=$(git describe --long --dirty --tags --always)
|
|
|
|
log_echo -r "Pi-hole: ${pi_hole_ver:-Untagged} (${pi_hole_branch:-Detached}:${pi_hole_commit})"
|
|
|
|
else
|
|
|
|
status=${status:-"Pi-hole repository damaged."}
|
|
|
|
error_found=1
|
|
|
|
fi
|
|
|
|
if [[ "${status}" ]]; then
|
|
|
|
log_echo "${status}"
|
|
|
|
unset status
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd "${ADMINGITDIR}" || \
|
|
|
|
{ status="Pi-hole Dashboard git directory not found."; error_found=1; }
|
|
|
|
if git status &> /dev/null; then
|
|
|
|
admin_ver=$(git describe --tags --abbrev=0)
|
|
|
|
admin_branch=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
admin_commit=$(git describe --long --dirty --tags --always)
|
|
|
|
log_echo -r "Pi-hole Dashboard: ${admin_ver:-Untagged} (${admin_branch:-Detached}:${admin_commit})"
|
|
|
|
else
|
|
|
|
status=${status:-"Pi-hole Dashboard repository damaged."}
|
|
|
|
error_found=1
|
|
|
|
fi
|
|
|
|
if [[ "${status}" ]]; then
|
|
|
|
log_echo "${status}"
|
|
|
|
unset status
|
|
|
|
fi
|
|
|
|
|
|
|
|
if light_ver=$(lighttpd -v |& head -n1 | cut -d " " -f1); then
|
|
|
|
log_echo -r "${light_ver}"
|
|
|
|
else
|
|
|
|
log_echo "lighttpd not installed."
|
|
|
|
error_found=1
|
|
|
|
fi
|
|
|
|
if php_ver=$(php -v |& head -n1); then
|
|
|
|
log_echo -r "${php_ver}"
|
|
|
|
else
|
|
|
|
log_echo "PHP not installed."
|
|
|
|
error_found=1
|
|
|
|
fi
|
2017-01-08 10:17:25 +00:00
|
|
|
|
2016-10-28 17:42:30 +00:00
|
|
|
return "${error_found}"
|
2016-04-12 07:47:30 +00:00
|
|
|
}
|
|
|
|
|
2017-02-10 16:42:37 +00:00
|
|
|
dir_check() {
|
|
|
|
header_write "Detecting contents of ${1}:"
|
|
|
|
for file in $1*; do
|
|
|
|
header_write "File ${file} found"
|
|
|
|
echo -n "::: Parsing..."
|
|
|
|
file_parse "${file}"
|
|
|
|
echo "done"
|
|
|
|
done
|
|
|
|
echo ":::"
|
|
|
|
}
|
|
|
|
|
2016-10-23 21:15:10 +00:00
|
|
|
files_check() {
|
2016-10-26 02:53:00 +00:00
|
|
|
#Check non-zero length existence of ${1}
|
2016-10-28 21:52:08 +00:00
|
|
|
header_write "Detecting existence of ${1}:"
|
2016-10-28 10:45:07 +00:00
|
|
|
local search_file="${1}"
|
2016-10-26 04:39:28 +00:00
|
|
|
if [[ -s ${search_file} ]]; then
|
2017-02-10 16:42:37 +00:00
|
|
|
echo -n "::: File exists, parsing..."
|
2016-10-28 13:51:30 +00:00
|
|
|
file_parse "${search_file}"
|
2017-02-10 16:42:37 +00:00
|
|
|
echo "done"
|
2016-10-28 13:51:30 +00:00
|
|
|
return 0
|
2017-02-10 16:42:37 +00:00
|
|
|
else
|
2016-10-28 10:45:07 +00:00
|
|
|
log_echo "${1} not found!"
|
2016-10-28 13:51:30 +00:00
|
|
|
return 1
|
2016-10-26 02:53:00 +00:00
|
|
|
fi
|
|
|
|
echo ":::"
|
2016-10-23 21:15:10 +00:00
|
|
|
}
|
|
|
|
|
2016-10-28 13:51:30 +00:00
|
|
|
source_file() {
|
|
|
|
local file_found=$(files_check "${1}") \
|
2016-10-28 21:52:08 +00:00
|
|
|
&& (source "${1}" &> /dev/null && echo "${file_found} and was successfully sourced") \
|
2016-10-28 13:51:30 +00:00
|
|
|
|| log_echo -l "${file_found} and could not be sourced"
|
|
|
|
}
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
distro_check() {
|
2016-10-28 21:52:08 +00:00
|
|
|
local soft_fail
|
|
|
|
header_write "Detecting installed OS Distribution"
|
|
|
|
soft_fail=0
|
|
|
|
local distro="$(cat /etc/*release)" && block_parse "${distro}" || (log_echo "Distribution details not found." && soft_fail=1)
|
|
|
|
return "${soft_fail}"
|
|
|
|
}
|
2016-09-27 01:06:31 +00:00
|
|
|
|
2016-10-28 21:52:08 +00:00
|
|
|
processor_check() {
|
|
|
|
header_write "Checking processor variety"
|
2016-10-28 22:53:18 +00:00
|
|
|
log_write $(uname -m) && return 0 || return 1
|
2016-09-27 01:06:31 +00:00
|
|
|
}
|
|
|
|
|
2016-10-26 19:22:20 +00:00
|
|
|
ipv6_check() {
|
|
|
|
# Check if system is IPv6 enabled, for use in other functions
|
2017-02-17 00:49:14 +00:00
|
|
|
if [[ $IPV6_ADDRESS ]]; then
|
2017-02-17 02:30:15 +00:00
|
|
|
ls /proc/net/if_inet6 &>/dev/null
|
2016-10-26 19:22:20 +00:00
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
ip_check() {
|
2017-02-17 02:30:15 +00:00
|
|
|
local protocol=${1}
|
2017-02-17 03:45:44 +00:00
|
|
|
local gravity=${2}
|
2017-02-17 02:30:15 +00:00
|
|
|
|
|
|
|
local ip_addr_list="$(ip -${protocol} addr show dev ${PIHOLE_INTERFACE} | awk -F ' ' '{ for(i=1;i<=NF;i++) if ($i ~ '/^inet/') print $(i+1) }')"
|
|
|
|
if [[ -n ${ip_addr_list} ]]; then
|
|
|
|
log_write "IPv${protocol} on ${PIHOLE_INTERFACE}"
|
2017-02-17 03:45:44 +00:00
|
|
|
log_write "Gravity configured for: ${2:-NOT CONFIGURED}"
|
|
|
|
log_write "----"
|
2017-02-17 02:30:15 +00:00
|
|
|
log_write "${ip_addr_list}"
|
|
|
|
echo "::: IPv${protocol} addresses located on ${PIHOLE_INTERFACE}"
|
|
|
|
ip_ping_check ${protocol}
|
|
|
|
return $(( 0 + $? ))
|
|
|
|
else
|
|
|
|
log_echo "No IPv${protocol} found on ${PIHOLE_INTERFACE}"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
2016-10-26 19:22:20 +00:00
|
|
|
|
2017-02-17 02:30:15 +00:00
|
|
|
ip_ping_check() {
|
|
|
|
local protocol=${1}
|
|
|
|
local cmd
|
|
|
|
|
|
|
|
if [[ ${protocol} == "6" ]]; then
|
|
|
|
cmd="ping6"
|
2017-02-17 02:38:05 +00:00
|
|
|
g_addr="2001:4860:4860::8888"
|
2017-02-17 02:30:15 +00:00
|
|
|
else
|
|
|
|
cmd="ping"
|
2017-02-17 02:38:05 +00:00
|
|
|
g_addr="8.8.8.8"
|
2017-02-17 02:30:15 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
local ip_def_gateway=$(ip -${protocol} route | grep default | cut -d ' ' -f 3)
|
|
|
|
if [[ -n ${ip_def_gateway} ]]; then
|
|
|
|
echo -n "::: Pinging default IPv${protocol} gateway: "
|
|
|
|
if ! ping_gateway="$(${cmd} -q -W 3 -c 3 -n ${ip_def_gateway} -I ${PIHOLE_INTERFACE} | tail -n 3)"; then
|
|
|
|
echo "Gateway did not respond."
|
|
|
|
return 1
|
2016-10-26 19:22:20 +00:00
|
|
|
else
|
2017-02-17 02:30:15 +00:00
|
|
|
echo "Gateway responded."
|
|
|
|
log_write "${ping_gateway}"
|
2017-02-17 02:38:05 +00:00
|
|
|
fi
|
|
|
|
echo -n "::: Pinging Internet via IPv${protocol}: "
|
|
|
|
if ! ping_inet="$(${cmd} -q -W 3 -c 3 -n ${g_addr} -I ${PIHOLE_INTERFACE} | tail -n 3)"; then
|
|
|
|
echo "Query did not respond."
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
echo "Query responded."
|
|
|
|
log_write "${ping_inet}"
|
2016-10-26 19:22:20 +00:00
|
|
|
fi
|
2017-02-17 03:45:44 +00:00
|
|
|
else
|
|
|
|
log_echo " No gateway detected."
|
2017-02-17 00:49:14 +00:00
|
|
|
fi
|
2017-02-17 02:38:05 +00:00
|
|
|
return 0
|
2017-02-17 02:30:15 +00:00
|
|
|
}
|
2016-10-28 22:53:18 +00:00
|
|
|
|
2016-10-28 21:52:08 +00:00
|
|
|
port_check() {
|
|
|
|
local lsof_value
|
2016-10-22 07:32:36 +00:00
|
|
|
|
2016-10-28 21:52:08 +00:00
|
|
|
lsof_value=$(lsof -i ${1}:${2} -FcL | tr '\n' ' ') \
|
|
|
|
&& lsof_parse "${lsof_value}" "${3}" \
|
|
|
|
|| log_echo "Failure: IPv${1} Port not in use"
|
2016-10-26 21:33:47 +00:00
|
|
|
}
|
|
|
|
|
2016-10-26 18:38:19 +00:00
|
|
|
daemon_check() {
|
|
|
|
# Check for daemon ${1} on port ${2}
|
2016-10-28 17:42:30 +00:00
|
|
|
header_write "Daemon Process Information"
|
2016-10-26 18:38:19 +00:00
|
|
|
|
2016-10-28 21:52:08 +00:00
|
|
|
echo "::: Checking ${2} port for ${1} listener."
|
2016-10-26 21:33:47 +00:00
|
|
|
|
2016-10-28 21:52:08 +00:00
|
|
|
if [[ ${IPV6_READY} ]]; then
|
|
|
|
port_check 6 "${2}" "${1}"
|
|
|
|
fi
|
2016-10-27 07:30:51 +00:00
|
|
|
lsof_value=$(lsof -i 4:${2} -FcL | tr '\n' ' ') \
|
2016-10-28 21:52:08 +00:00
|
|
|
port_check 4 "${2}" "${1}"
|
2016-09-27 03:39:39 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
testResolver() {
|
2016-10-26 00:19:33 +00:00
|
|
|
header_write "Resolver Functions Check"
|
2016-09-28 17:14:47 +00:00
|
|
|
|
2016-03-25 21:42:17 +00:00
|
|
|
# Find a blocked url that has not been whitelisted.
|
2016-10-22 07:32:36 +00:00
|
|
|
TESTURL="doubleclick.com"
|
|
|
|
if [ -s "${WHITELISTMATCHES}" ]; then
|
2016-03-26 00:04:03 +00:00
|
|
|
while read -r line; do
|
|
|
|
CUTURL=${line#*" "}
|
2016-10-22 07:32:36 +00:00
|
|
|
if [ "${CUTURL}" != "Pi-Hole.IsWorking.OK" ]; then
|
2016-03-26 00:04:03 +00:00
|
|
|
while read -r line2; do
|
|
|
|
CUTURL2=${line2#*" "}
|
2016-10-22 07:32:36 +00:00
|
|
|
if [ "${CUTURL}" != "${CUTURL2}" ]; then
|
|
|
|
TESTURL="${CUTURL}"
|
2016-03-26 00:04:03 +00:00
|
|
|
break 2
|
|
|
|
fi
|
2016-10-22 07:32:36 +00:00
|
|
|
done < "${WHITELISTMATCHES}"
|
2016-03-26 00:04:03 +00:00
|
|
|
fi
|
2016-10-22 07:32:36 +00:00
|
|
|
done < "${GRAVITYFILE}"
|
2016-03-26 00:04:03 +00:00
|
|
|
fi
|
2016-03-25 21:42:17 +00:00
|
|
|
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "Resolution of ${TESTURL} from Pi-hole:"
|
2016-10-22 07:32:36 +00:00
|
|
|
LOCALDIG=$(dig "${TESTURL}" @127.0.0.1)
|
|
|
|
if [[ $? = 0 ]]; then
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "${LOCALDIG}"
|
2016-09-28 17:24:44 +00:00
|
|
|
else
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "Failed to resolve ${TESTURL} on Pi-hole"
|
2016-09-28 17:24:44 +00:00
|
|
|
fi
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write ""
|
2016-09-28 17:24:44 +00:00
|
|
|
|
|
|
|
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "Resolution of ${TESTURL} from 8.8.8.8:"
|
2016-10-22 07:32:36 +00:00
|
|
|
REMOTEDIG=$(dig "${TESTURL}" @8.8.8.8)
|
|
|
|
if [[ $? = 0 ]]; then
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "${REMOTEDIG}"
|
2016-09-28 17:24:44 +00:00
|
|
|
else
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "Failed to resolve ${TESTURL} on 8.8.8.8"
|
2016-09-28 17:25:37 +00:00
|
|
|
fi
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write ""
|
2016-09-28 17:14:47 +00:00
|
|
|
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "Pi-hole dnsmasq specific records lookups"
|
|
|
|
log_write "Cache Size:"
|
2016-10-22 07:32:36 +00:00
|
|
|
dig +short chaos txt cachesize.bind >> ${DEBUG_LOG}
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "Upstream Servers:"
|
2016-10-22 07:32:36 +00:00
|
|
|
dig +short chaos txt servers.bind >> ${DEBUG_LOG}
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write ""
|
2016-03-24 21:21:29 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
checkProcesses() {
|
2016-10-26 00:19:33 +00:00
|
|
|
header_write "Processes Check"
|
|
|
|
|
|
|
|
echo "::: Logging status of lighttpd and dnsmasq..."
|
2016-04-04 05:59:24 +00:00
|
|
|
PROCESSES=( lighttpd dnsmasq )
|
2016-10-22 07:32:36 +00:00
|
|
|
for i in "${PROCESSES[@]}"; do
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write ""
|
2016-10-29 19:04:18 +00:00
|
|
|
log_write "${i}"
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write " processes status:"
|
2016-10-23 21:15:10 +00:00
|
|
|
systemctl -l status "${i}" >> "${DEBUG_LOG}"
|
2016-04-04 05:59:24 +00:00
|
|
|
done
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write ""
|
2016-04-04 05:59:24 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 02:47:45 +00:00
|
|
|
debugLighttpd() {
|
2016-10-28 13:51:30 +00:00
|
|
|
echo "::: Checking for necessary lighttpd files."
|
|
|
|
files_check "${LIGHTTPDFILE}"
|
|
|
|
files_check "${LIGHTTPDERRFILE}"
|
|
|
|
echo ":::"
|
2016-04-11 23:35:44 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 21:27:06 +00:00
|
|
|
countdown() {
|
2017-02-27 19:03:57 +00:00
|
|
|
local tuvix
|
2016-11-18 21:27:06 +00:00
|
|
|
tuvix=${TIMEOUT}
|
2017-02-27 19:03:57 +00:00
|
|
|
printf "::: Logging will automatically teminate in %s seconds\n" "${TIMEOUT}"
|
2016-11-18 21:27:06 +00:00
|
|
|
while [ $tuvix -ge 1 ]
|
|
|
|
do
|
2017-02-27 19:03:57 +00:00
|
|
|
printf ":::\t%s seconds left. " "${tuvix}"
|
|
|
|
if [[ -z "${WEBCALL}" ]]; then
|
|
|
|
printf "\r"
|
|
|
|
else
|
|
|
|
printf "\n"
|
|
|
|
fi
|
2016-11-18 21:27:06 +00:00
|
|
|
sleep 5
|
|
|
|
tuvix=$(( tuvix - 5 ))
|
|
|
|
done
|
|
|
|
}
|
2016-04-04 05:59:24 +00:00
|
|
|
### END FUNCTIONS ###
|
|
|
|
|
2016-10-28 17:42:30 +00:00
|
|
|
# Gather version of required packages / repositories
|
|
|
|
version_check || echo "REQUIRED FILES MISSING"
|
2016-10-28 21:52:08 +00:00
|
|
|
# Check for newer setupVars storage file
|
2016-10-28 13:51:30 +00:00
|
|
|
source_file "/etc/pihole/setupVars.conf"
|
2016-10-28 21:52:08 +00:00
|
|
|
# Gather information about the running distribution
|
|
|
|
distro_check || echo "Distro Check soft fail"
|
|
|
|
# Gather processor type
|
|
|
|
processor_check || echo "Processor Check soft fail"
|
|
|
|
|
2017-02-17 03:45:44 +00:00
|
|
|
ip_check 6 ${IPV6_ADDRESS}
|
|
|
|
ip_check 4 ${IPV4_ADDRESS}
|
2016-10-28 17:42:30 +00:00
|
|
|
|
2016-10-26 18:38:19 +00:00
|
|
|
daemon_check lighttpd http
|
|
|
|
daemon_check dnsmasq domain
|
2016-04-04 05:59:24 +00:00
|
|
|
checkProcesses
|
2016-09-28 17:14:47 +00:00
|
|
|
testResolver
|
2016-04-11 23:35:44 +00:00
|
|
|
debugLighttpd
|
2016-03-25 21:42:17 +00:00
|
|
|
|
2016-10-28 22:25:06 +00:00
|
|
|
files_check "${DNSMASQFILE}"
|
2017-02-10 16:42:37 +00:00
|
|
|
dir_check "${DNSMASQCONFDIR}"
|
2016-10-28 22:25:06 +00:00
|
|
|
files_check "${WHITELISTFILE}"
|
|
|
|
files_check "${BLACKLISTFILE}"
|
|
|
|
files_check "${ADLISTFILE}"
|
2016-03-24 21:21:29 +00:00
|
|
|
|
2016-10-26 00:19:33 +00:00
|
|
|
|
2016-10-28 22:13:04 +00:00
|
|
|
header_write "Analyzing gravity.list"
|
|
|
|
|
2017-01-22 20:38:46 +00:00
|
|
|
gravity_length=$(grep -c ^ "${GRAVITYFILE}") \
|
2016-10-28 22:13:04 +00:00
|
|
|
&& log_write "${GRAVITYFILE} is ${gravity_length} lines long." \
|
|
|
|
|| log_echo "Warning: No gravity.list file found!"
|
2016-03-24 21:21:29 +00:00
|
|
|
|
2017-01-22 20:38:09 +00:00
|
|
|
header_write "Analyzing pihole.log"
|
|
|
|
|
2017-01-22 20:38:46 +00:00
|
|
|
pihole_length=$(grep -c ^ "${PIHOLELOG}") \
|
2017-01-22 20:38:09 +00:00
|
|
|
&& log_write "${PIHOLELOG} is ${pihole_length} lines long." \
|
|
|
|
|| log_echo "Warning: No pihole.log file found!"
|
|
|
|
|
2017-01-22 20:44:07 +00:00
|
|
|
pihole_size=$(du -h "${PIHOLELOG}" | awk '{ print $1 }') \
|
2017-01-22 20:53:30 +00:00
|
|
|
&& log_write "${PIHOLELOG} is ${pihole_size}." \
|
2017-01-22 20:38:09 +00:00
|
|
|
|| log_echo "Warning: No pihole.log file found!"
|
|
|
|
|
|
|
|
|
2016-03-20 01:32:11 +00:00
|
|
|
# Continuously append the pihole.log file to the pihole_debug.log file
|
2016-10-20 02:47:45 +00:00
|
|
|
dumpPiHoleLog() {
|
2016-04-11 23:35:44 +00:00
|
|
|
trap '{ echo -e "\n::: Finishing debug write from interrupt... Quitting!" ; exit 1; }' INT
|
2016-10-29 19:24:22 +00:00
|
|
|
echo "::: "
|
|
|
|
echo "::: --= User Action Required =--"
|
|
|
|
echo -e "::: Try loading a site that you are having trouble with now from a client web browser.. \n:::\t(Press CTRL+C to finish logging.)"
|
2016-10-26 00:19:33 +00:00
|
|
|
header_write "pihole.log"
|
2016-10-22 07:32:36 +00:00
|
|
|
if [ -e "${PIHOLELOG}" ]; then
|
2016-11-17 18:39:51 +00:00
|
|
|
# Dummy process to use for flagging down tail to terminate
|
2016-11-18 21:27:06 +00:00
|
|
|
countdown &
|
2016-11-17 18:58:58 +00:00
|
|
|
tail -n0 -f --pid=$! "${PIHOLELOG}" >> ${DEBUG_LOG}
|
2016-03-20 01:32:11 +00:00
|
|
|
else
|
2016-10-23 21:31:20 +00:00
|
|
|
log_write "No pihole.log file found!"
|
2016-09-27 03:54:05 +00:00
|
|
|
printf ":::\tNo pihole.log file found!\n"
|
2016-03-20 01:32:11 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-03-24 21:21:29 +00:00
|
|
|
# Anything to be done after capturing of pihole.log terminates
|
2016-10-20 02:47:45 +00:00
|
|
|
finalWork() {
|
2016-10-28 11:42:45 +00:00
|
|
|
local tricorder
|
2016-10-22 07:32:36 +00:00
|
|
|
echo "::: Finshed debugging!"
|
2016-10-28 11:42:45 +00:00
|
|
|
echo "::: The debug log can be uploaded to tricorder.pi-hole.net for sharing with developers only."
|
2017-02-27 02:22:06 +00:00
|
|
|
if [[ "${AUTOMATED}" ]]; then
|
2017-02-27 18:27:11 +00:00
|
|
|
echo "::: Debug script running in automated mode, uploading log to tricorder..."
|
2017-02-27 02:22:06 +00:00
|
|
|
tricorder=$(cat /var/log/pihole_debug.log | nc tricorder.pi-hole.net 9999)
|
|
|
|
else
|
|
|
|
read -r -p "::: Would you like to upload the log? [y/N] " response
|
|
|
|
case ${response} in
|
|
|
|
[yY][eE][sS]|[yY])
|
|
|
|
tricorder=$(cat /var/log/pihole_debug.log | nc tricorder.pi-hole.net 9999)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "::: Log will NOT be uploaded to tricorder."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2016-10-28 11:42:45 +00:00
|
|
|
# Check if tricorder.pi-hole.net is reachable and provide token.
|
|
|
|
if [ -n "${tricorder}" ]; then
|
2017-02-27 18:27:11 +00:00
|
|
|
echo "::: ---=== Your debug token is : ${tricorder} Please make a note of it. ===---"
|
|
|
|
echo "::: Contact the Pi-hole team with your token for assistance."
|
2016-10-29 19:04:18 +00:00
|
|
|
echo "::: Thank you."
|
2016-11-15 13:28:18 +00:00
|
|
|
else
|
|
|
|
echo "::: There was an error uploading your debug log."
|
|
|
|
echo "::: Please try again or contact the Pi-hole team for assistance."
|
2016-10-22 07:32:36 +00:00
|
|
|
fi
|
2016-11-15 13:28:18 +00:00
|
|
|
echo "::: A local copy of the Debug log can be found at : /var/log/pihole_debug.log"
|
2016-03-20 01:32:11 +00:00
|
|
|
}
|
2016-08-01 20:43:13 +00:00
|
|
|
|
2016-03-24 21:21:29 +00:00
|
|
|
trap finalWork EXIT
|
2016-03-20 01:32:11 +00:00
|
|
|
|
2016-03-24 21:21:29 +00:00
|
|
|
### Method calls for additional logging ###
|
2016-03-20 01:32:11 +00:00
|
|
|
dumpPiHoleLog
|