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
# (c) 2015, 2016 by Jacob Salmela
# Network-wide ad blocking via your Raspberry Pi
# http://pi-hole.net
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
#
# 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-09-28 02:30:37 +00:00
set -o pipefail
2016-03-20 01:32:11 +00:00
######## GLOBAL VARS ########
DEBUG_LOG = "/var/log/pihole_debug.log"
2016-03-24 21:21:29 +00:00
DNSMASQFILE = "/etc/dnsmasq.conf"
PIHOLECONFFILE = "/etc/dnsmasq.d/01-pihole.conf"
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"
HOSTSFILE = "/etc/hosts"
WHITELISTFILE = "/etc/pihole/whitelist.txt"
BLACKLISTFILE = "/etc/pihole/blacklist.txt"
ADLISTSFILE = "/etc/pihole/adlists.list"
PIHOLELOG = "/var/log/pihole.log"
2016-03-25 21:42:17 +00:00
WHITELISTMATCHES = "/tmp/whitelistmatches.list"
2016-03-24 21:21:29 +00:00
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) !
::: This debugging process will collect information from your running configuration,
::: and optionally upload the generated log to a unique and random directory on
::: Termbin.com. NOTE: All log files auto-delete after 1 month and you are the only
::: person who is given the unique URL. Please consider where you post this link.
2016-10-23 21:15:10 +00:00
:::
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-22 07:32:36 +00:00
if [ ! -f " ${ DEBUG_LOG } " ] ; then
2016-10-23 21:15:10 +00:00
touch ${ DEBUG_LOG }
chmod 644 ${ DEBUG_LOG }
chown " $USER " :root ${ DEBUG_LOG }
else
2016-08-21 01:12:02 +00:00
truncate -s 0 ${ DEBUG_LOG }
2016-03-20 01:32:11 +00:00
fi
2016-03-24 21:21:29 +00:00
### Private functions exist here ###
2016-10-20 02:47:45 +00:00
log_write( ) {
2016-10-22 07:32:36 +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:19:33 +00:00
header_write( ) {
echo "" >> " ${ DEBUG_LOG } "
echo " ::: ${ 1 } " >> " ${ DEBUG_LOG } "
echo "" >> " ${ DEBUG_LOG } "
}
2016-10-26 00:50:14 +00:00
log_echo( ) {
echo " ::: ${ 1 } "
log_write " ${ 1 } "
}
2016-10-20 02:47:45 +00:00
version_check( ) {
2016-10-26 00:19:33 +00:00
header_write "Installed Package Versions"
echo "::: Detecting Pi-hole installed versions."
2016-09-27 01:06:31 +00:00
2016-10-26 02:53:00 +00:00
local pi_hole_ver = " $( cd /etc/.pihole/ && git describe --tags --abbrev= 0) " \
2016-10-26 00:50:14 +00:00
&& log_echo " Pi-hole: $pi_hole_ver " || log_echo "Pi-hole git repository not detected."
2016-10-26 02:53:00 +00:00
local admin_ver = " $( cd /var/www/html/admin && git describe --tags --abbrev= 0) " \
2016-10-26 00:50:14 +00:00
&& log_echo " WebUI: $admin_ver " || log_echo "Pi-hole Admin Pages git repository not detected."
2016-10-26 02:53:00 +00:00
local light_ver = " $( lighttpd -v | & head -n1 | cut -d " " -f1) " \
2016-10-26 00:50:14 +00:00
&& log_echo " ${ light_ver } " || log_echo "lighttpd not installed."
2016-10-26 02:53:00 +00:00
local php_ver = " $( php -v | & head -n1) " \
2016-10-26 00:50:14 +00:00
&& log_echo " ${ php_ver } " || log_echo "PHP not installed."
echo ":::"
2016-04-12 07:47:30 +00:00
}
2016-10-26 02:53:00 +00:00
source_variable( ) {
# Source file passed in as ${1} and add variable at ${2} to environment
source ${ 1 }
echo $piholeInterface
}
2016-10-23 21:15:10 +00:00
files_check( ) {
2016-10-26 02:53:00 +00:00
header_write "File Check"
#Check non-zero length existence of ${1}
echo " ::: Detecting existence of ${ 1 } ... "
local searchFile = /etc/pihole/" ${ 1 } "
if [ [ -s ${ searchFile } ] ] ; then
log_echo " /etc/pihole/ ${ 1 } exists! "
while read -r line; do
if [ ! -z " ${ line } " ] ; then
[ [ " ${ line } " = ~ ^#.*$ ] ] && continue
2016-10-23 21:15:10 +00:00
log_write " ${ line } "
fi
2016-10-26 02:53:00 +00:00
done < " ${ searchFile } "
else
log_echo " /etc/pihole/ ${ 1 } not found! "
fi
echo ":::"
2016-10-23 21:15:10 +00:00
}
2016-10-20 02:47:45 +00:00
distro_check( ) {
2016-10-26 00:19:33 +00:00
header_write "Installed OS Distribution"
2016-09-27 01:06:31 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Checking installed OS Distribution release."
2016-07-16 05:46:21 +00:00
TMP = $( cat /etc/*release || echo "Failed to find release" )
2016-09-27 01:06:31 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Writing OS Distribution release to logfile."
2016-10-23 21:31:20 +00:00
log_write " ${ TMP } "
log_write ""
2016-09-27 01:06:31 +00:00
}
2016-10-20 02:47:45 +00:00
ip_check( ) {
2016-10-26 00:19:33 +00:00
header_write "IP Address Information"
2016-10-26 04:25:57 +00:00
# Get the current interface for Internet traffic
local IPv6_temp_interface = $( ip -6 r | grep default | cut -d ' ' -f 5)
# If declared in setupVars.conf use it, otherwise defer to default
local IPv6_interface = ${ piholeInterface :- $IPv6_temp_interface }
2016-09-27 01:06:31 +00:00
2016-10-26 03:53:18 +00:00
echo "::: Collecting local IP info."
local IPv4_addr_list = " $( ip a | awk -F " " '{ for(i=1;i<=NF;i++) if ($i == "inet") print $(i+1) }' ) " \
&& ( log_write " ${ IPv4_addr_list } " && echo "::: IPv4 addresses located" ) || log_echo "No IPv4 addresses found."
local IPv6_addr_list = " $( ip a | awk -F " " '{ for(i=1;i<=NF;i++) if ($i == "inet6") print $(i+1) }' ) " \
&& ( log_write " ${ IPv6_addr_list } " && echo "::: IPv6 addresses located" ) || log_echo "No IPv6 addresses found."
2016-10-22 07:32:36 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Locating default gateway and checking connectivity"
2016-10-26 03:53:18 +00:00
local IPv4_def_gateway = $( ip r | grep default | cut -d ' ' -f 3)
2016-10-22 07:32:36 +00:00
if [ [ $? = 0 ] ] ; then
2016-10-26 00:19:33 +00:00
echo "::: Pinging default IPv4 gateway..."
2016-10-26 03:53:18 +00:00
local IPv4_def_gateway_check = " $( ping -q -w 3 -c 3 -n " ${ IPv4_def_gateway } " | tail -n3) " \
&& echo "::: IPv4 Default Gateway Responded." || echo "::: IPv4 Default Gateway did not respond."
log_write " ${ IPv4_def_gateway_check } "
2016-10-22 07:32:36 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Pinging Internet via IPv4..."
2016-10-26 04:25:57 +00:00
local IPv4_inet_check = " $( ping -q -w 5 -c 3 -n 8.8.8.8 | tail -n3) " \
&& echo "::: IPv4 Internet query responded." || echo "::: IPv4 Internet query did not respond."
log_write " ${ IPv4_inet_check } "
2016-10-22 07:32:36 +00:00
fi
2016-10-26 04:25:57 +00:00
local IPv6_def_gateway = $( ip -6 r | grep default | cut -d ' ' -f 3)
2016-10-22 07:32:36 +00:00
if [ [ $? = 0 ] ] ; then
2016-10-26 00:19:33 +00:00
echo "::: Pinging default IPv6 gateway..."
2016-10-26 04:25:57 +00:00
local IPv6_def_gateway_check = " $( ping6 -q -W 3 -c 3 -n " ${ IPv6_def_gateway } " -I " ${ IPv6_interface } " | tail -n3) " \
&& echo "::: IPv6 Default Gateway Responded." || echo "::: IPv6 Default Gateway did not respond."
log_write " ${ IPv6_def_gateway_check } "
2016-10-22 07:32:36 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Pinging Internet via IPv6..."
2016-10-26 04:25:57 +00:00
GATEWAY6_CHECK = $( ping6 -q -W 3 -c 3 -n 2001:4860:4860::8888 -I " ${ IPv6_interface } " | tail -n3)
2016-10-22 07:32:36 +00:00
if [ [ $? = 0 ] ] ; then
2016-10-23 21:31:20 +00:00
log_write "IPv6 Internet check:"
2016-10-22 07:32:36 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "IPv6 Internet check failed:"
2016-10-22 07:32:36 +00:00
fi
else
2016-10-26 03:53:18 +00:00
GATEWAY6_CHECK = "No IPv6 Gateway Detected"
2016-10-22 07:32:36 +00:00
fi
2016-10-26 04:25:57 +00:00
log_write " ${ GATEWAY6_CHECK } "
2016-10-22 07:32:36 +00:00
2016-10-23 21:31:20 +00:00
log_write ""
2016-07-15 20:11:10 +00:00
}
2016-09-27 01:52:12 +00:00
2016-10-20 02:47:45 +00:00
hostnameCheck( ) {
2016-10-26 00:19:33 +00:00
header_write "Hostname Information"
2016-09-27 02:23:30 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Writing locally configured hostnames to logfile"
2016-10-22 07:32:36 +00:00
# Write the hostname output to compare against entries in /etc/hosts, which is logged next
2016-10-23 21:31:20 +00:00
log_write " This Pi-hole is: $( hostname) "
2016-10-22 07:32:36 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Writing hosts file to debug log..."
2016-10-23 21:31:20 +00:00
log_write "### Hosts ###"
2016-10-22 07:32:36 +00:00
if [ -e " ${ HOSTSFILE } " ] ; then
cat " ${ HOSTSFILE } " >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write ""
2016-10-22 07:32:36 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No hosts file found!"
2016-10-22 07:32:36 +00:00
printf ":::\tNo hosts file found!\n"
fi
2016-09-27 01:52:12 +00:00
}
2016-10-20 02:47:45 +00:00
portCheck( ) {
2016-10-26 00:19:33 +00:00
header_write "Open Port Information"
2016-09-27 03:39:39 +00:00
2016-10-26 00:19:33 +00:00
echo "::: Detecting local server port 80 and 53 processes."
2016-09-27 03:39:39 +00:00
2016-10-23 21:15:10 +00:00
lsof -i :80 >> ${ DEBUG_LOG }
lsof -i :53 >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write ""
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 "Insertions count:"
2016-10-22 07:32:36 +00:00
dig +short chaos txt insertions.bind >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write "Evictions count:"
2016-10-22 07:32:36 +00:00
dig +short chaos txt evictions.bind >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write "Misses count:"
2016-10-22 07:32:36 +00:00
dig +short chaos txt misses.bind >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write "Hits count:"
2016-10-22 07:32:36 +00:00
dig +short chaos txt hits.bind >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write "Auth count:"
2016-10-22 07:32:36 +00:00
dig +short chaos txt auth.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 ""
log_write -n " ${ i } "
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-26 00:19:33 +00:00
header_write "lighttpd.conf"
2016-10-22 07:32:36 +00:00
if [ -e " ${ LIGHTTPDFILE } " ] ; then
2016-04-11 23:35:44 +00:00
while read -r line; do
2016-10-22 07:32:36 +00:00
if [ ! -z " ${ line } " ] ; then
[ [ " ${ line } " = ~ ^#.*$ ] ] && continue
2016-10-23 21:31:20 +00:00
log_write " ${ line } "
2016-04-11 23:35:44 +00:00
fi
2016-10-22 07:32:36 +00:00
done < " ${ LIGHTTPDFILE } "
2016-10-23 21:31:20 +00:00
log_write ""
2016-04-11 23:35:44 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No lighttpd.conf file found!"
2016-04-11 23:35:44 +00:00
printf ":::\tNo lighttpd.conf file found\n"
fi
2016-10-23 21:15:10 +00:00
2016-10-22 07:32:36 +00:00
if [ -e " ${ LIGHTTPDERRFILE } " ] ; then
2016-10-26 00:19:33 +00:00
log_write ""
log_write "::: lighttpd error.log"
log_write ""
2016-10-22 07:32:36 +00:00
cat " ${ LIGHTTPDERRFILE } " >> ${ DEBUG_LOG }
2016-04-11 23:35:44 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No lighttpd error.log file found!"
2016-04-11 23:35:44 +00:00
printf ":::\tNo lighttpd error.log file found\n"
fi
2016-10-23 21:31:20 +00:00
log_write ""
2016-04-11 23:35:44 +00:00
}
2016-04-04 05:59:24 +00:00
### END FUNCTIONS ###
2016-09-28 20:09:38 +00:00
version_check
2016-10-26 02:53:00 +00:00
files_check "setupVars.conf"
2016-09-28 20:09:38 +00:00
distro_check
ip_check
2016-09-27 01:52:12 +00:00
hostnameCheck
2016-09-27 03:39:39 +00:00
portCheck
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-03-27 19:44:42 +00:00
echo "::: Writing dnsmasq.conf to debug log..."
2016-10-26 00:19:33 +00:00
header_write "Dnsmasq configuration"
2016-10-22 07:32:36 +00:00
if [ -e " ${ DNSMASQFILE } " ] ; then
2016-03-24 21:21:29 +00:00
#cat $DNSMASQFILE >> $DEBUG_LOG
while read -r line; do
2016-10-22 07:32:36 +00:00
if [ ! -z " ${ line } " ] ; then
[ [ " ${ line } " = ~ ^#.*$ ] ] && continue
2016-10-23 21:31:20 +00:00
log_write " ${ line } "
2016-10-22 07:32:36 +00:00
fi
done < " ${ DNSMASQFILE } "
2016-10-23 21:31:20 +00:00
log_write ""
2016-03-20 01:32:11 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No dnsmasq.conf file found!"
2016-03-27 19:44:42 +00:00
printf ":::\tNo dnsmasq.conf file found!\n"
2016-03-20 01:32:11 +00:00
fi
2016-03-27 19:44:42 +00:00
echo "::: Writing 01-pihole.conf to debug log..."
2016-10-26 00:19:33 +00:00
header_write "01-pihole.conf"
2016-10-22 07:32:36 +00:00
if [ -e " ${ PIHOLECONFFILE } " ] ; then
2016-03-24 21:21:29 +00:00
while read -r line; do
2016-10-22 07:32:36 +00:00
if [ ! -z " ${ line } " ] ; then
[ [ " ${ line } " = ~ ^#.*$ ] ] && continue
2016-10-23 21:31:20 +00:00
log_write " ${ line } "
2016-10-22 07:32:36 +00:00
fi
done < " ${ PIHOLECONFFILE } "
2016-10-23 21:31:20 +00:00
log_write
2016-03-24 21:21:29 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No 01-pihole.conf file found!"
2016-03-28 01:36:31 +00:00
printf ":::\tNo 01-pihole.conf file found\n"
2016-03-24 21:21:29 +00:00
fi
2016-03-27 19:44:42 +00:00
echo "::: Writing size of gravity.list to debug log..."
2016-10-26 00:19:33 +00:00
header_write "gravity.list"
2016-10-22 07:32:36 +00:00
if [ -e " ${ GRAVITYFILE } " ] ; then
wc -l " ${ GRAVITYFILE } " >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write ""
2016-03-24 21:21:29 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No gravity.list file found!"
2016-03-27 19:44:42 +00:00
printf ":::\tNo gravity.list file found\n"
2016-03-24 21:21:29 +00:00
fi
2016-03-20 01:32:11 +00:00
2016-09-27 03:50:03 +00:00
### Pi-hole application specific logging ###
2016-03-27 19:44:42 +00:00
echo "::: Writing whitelist to debug log..."
2016-10-26 00:19:33 +00:00
header_write "Whitelist"
2016-10-22 07:32:36 +00:00
if [ -e " ${ WHITELISTFILE } " ] ; then
cat " ${ WHITELISTFILE } " >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write
2016-03-20 01:32:11 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No whitelist.txt file found!"
2016-03-27 19:44:42 +00:00
printf ":::\tNo whitelist.txt file found!\n"
2016-03-20 01:32:11 +00:00
fi
2016-03-27 19:44:42 +00:00
echo "::: Writing blacklist to debug log..."
2016-10-26 00:19:33 +00:00
header_write "Blacklist"
2016-10-22 07:32:36 +00:00
if [ -e " ${ BLACKLISTFILE } " ] ; then
cat " ${ BLACKLISTFILE } " >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write
2016-03-20 01:32:11 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No blacklist.txt file found!"
2016-03-27 19:44:42 +00:00
printf ":::\tNo blacklist.txt file found!\n"
2016-03-20 01:32:11 +00:00
fi
2016-03-27 19:44:42 +00:00
echo "::: Writing adlists.list to debug log..."
2016-10-26 00:19:33 +00:00
header_write "adlists.list"
2016-10-22 07:32:36 +00:00
if [ -e " ${ ADLISTSFILE } " ] ; then
while read -r line; do
if [ ! -z " ${ line } " ] ; then
[ [ " ${ line } " = ~ ^#.*$ ] ] && continue
2016-10-23 21:31:20 +00:00
log_write " ${ line } "
2016-10-22 07:32:36 +00:00
fi
done < " ${ ADLISTSFILE } "
2016-10-23 21:31:20 +00:00
log_write
2016-03-20 01:32:11 +00:00
else
2016-10-23 21:31:20 +00:00
log_write "No adlists.list file found... using adlists.default!"
2016-03-31 00:49:39 +00:00
printf ":::\tNo adlists.list file found... using adlists.default!\n"
2016-03-20 01:32:11 +00:00
fi
# 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-09-27 03:50:03 +00:00
echo -e "::: Writing current Pi-hole traffic to debug log...\n:::\tTry loading any/all sites that you are having trouble with now... \n:::\t(Press ctrl+C to finish)"
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-03-20 01:32:11 +00:00
while true; do
2016-10-22 07:32:36 +00:00
tail -f " ${ PIHOLELOG } " >> ${ DEBUG_LOG }
2016-10-23 21:31:20 +00:00
log_write ""
2016-03-20 01:32:11 +00:00
done
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-22 07:32:36 +00:00
echo "::: Finshed debugging!"
echo "::: The debug log can be uploaded to Termbin.com for easier sharing."
read -r -p "::: Would you like to upload the log? [y/N] " response
case ${ response } in
[ yY] [ eE] [ sS] | [ yY] )
TERMBIN = $( cat /var/log/pihole_debug.log | nc termbin.com 9999)
; ;
*)
echo "::: Log will NOT be uploaded to Termbin."
; ;
esac
# Check if termbin.com is reachable. When it's not, point to local log instead
if [ -n " ${ TERMBIN } " ] ; then
echo " ::: Debug log can be found at : ${ TERMBIN } "
else
echo "::: Debug log can be found at : /var/log/pihole_debug.log"
fi
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