2015-11-11 09:43:00 +01:00
|
|
|
#!/usr/bin/env bash
|
2015-11-23 11:52:12 +01:00
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
2017-02-22 18:55:20 +01:00
|
|
|
# (c) 2017 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
2015-11-07 00:03:55 +01:00
|
|
|
# Compiles a list of ad-serving domains by downloading them from multiple sources
|
2015-12-06 14:55:50 +01:00
|
|
|
#
|
2017-02-22 18:55:20 +01:00
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
|
|
|
|
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2016-01-21 23:14:55 +01:00
|
|
|
# Run this script as root or under sudo
|
2016-01-24 17:47:38 +01:00
|
|
|
echo ":::"
|
2016-04-11 12:29:14 +02:00
|
|
|
|
2016-10-20 04:47:45 +02:00
|
|
|
helpFunc() {
|
2016-10-20 05:46:37 +02:00
|
|
|
cat << EOM
|
|
|
|
::: Pull in domains from adlists
|
|
|
|
:::
|
|
|
|
::: Usage: pihole -g
|
|
|
|
:::
|
|
|
|
::: Options:
|
|
|
|
::: -f, --force Force lists to be downloaded, even if they don't need updating.
|
|
|
|
::: -h, --help Show this help dialog
|
|
|
|
EOM
|
2016-12-01 21:21:08 +01:00
|
|
|
exit 0
|
2016-08-17 19:59:00 +02:00
|
|
|
}
|
|
|
|
|
2017-03-12 23:15:23 +01:00
|
|
|
PIHOLE_COMMAND="/usr/local/bin/pihole"
|
2016-01-21 23:14:55 +01:00
|
|
|
|
2016-01-26 21:26:09 +01:00
|
|
|
adListFile=/etc/pihole/adlists.list
|
|
|
|
adListDefault=/etc/pihole/adlists.default
|
2017-03-31 20:00:04 +02:00
|
|
|
adListCustom=/etc/pihole/adlists.custom
|
2017-03-12 23:15:23 +01:00
|
|
|
whitelistScript="${PIHOLE_COMMAND} -w"
|
2016-10-20 00:15:05 +02:00
|
|
|
whitelistFile=/etc/pihole/whitelist.txt
|
|
|
|
blacklistFile=/etc/pihole/blacklist.txt
|
2017-01-29 13:46:27 +01:00
|
|
|
readonly wildcardlist="/etc/dnsmasq.d/03-pihole-wildcard.conf"
|
2016-01-26 21:26:09 +01:00
|
|
|
|
2016-09-17 00:05:08 +02:00
|
|
|
#Source the setupVars from install script for the IP
|
2016-10-15 21:03:33 +02:00
|
|
|
setupVars=/etc/pihole/setupVars.conf
|
|
|
|
if [[ -f ${setupVars} ]];then
|
2016-10-22 08:02:45 +02:00
|
|
|
. /etc/pihole/setupVars.conf
|
2016-10-15 21:03:33 +02:00
|
|
|
else
|
2016-10-22 08:02:45 +02:00
|
|
|
echo "::: WARNING: /etc/pihole/setupVars.conf missing. Possible installation failure."
|
|
|
|
echo "::: Please run 'pihole -r', and choose the 'reconfigure' option to reconfigure."
|
|
|
|
exit 1
|
2016-10-15 21:03:33 +02:00
|
|
|
fi
|
|
|
|
|
2016-09-17 00:05:08 +02:00
|
|
|
#Remove the /* from the end of the IPv4addr.
|
2016-11-01 10:47:31 +01:00
|
|
|
IPV4_ADDRESS=${IPV4_ADDRESS%/*}
|
2016-12-14 20:26:55 +01:00
|
|
|
IPV6_ADDRESS=${IPV6_ADDRESS}
|
2016-01-01 15:11:46 +01:00
|
|
|
|
2015-05-19 20:31:37 +02:00
|
|
|
# Variables for various stages of downloading and formatting the list
|
2015-11-23 08:49:38 +01:00
|
|
|
basename=pihole
|
2016-08-19 23:51:09 +02:00
|
|
|
piholeDir=/etc/${basename}
|
|
|
|
adList=${piholeDir}/gravity.list
|
2016-12-14 20:26:55 +01:00
|
|
|
localList=${piholeDir}/local.list
|
2015-11-23 08:49:38 +01:00
|
|
|
justDomainsExtension=domains
|
2016-09-17 00:05:08 +02:00
|
|
|
matterAndLight=${basename}.0.matterandlight.txt
|
2016-08-19 23:51:09 +02:00
|
|
|
supernova=${basename}.1.supernova.txt
|
2016-10-20 00:52:54 +02:00
|
|
|
preEventHorizon=list.preEventHorizon
|
|
|
|
eventHorizon=${basename}.2.supernova.txt
|
2016-08-19 23:51:09 +02:00
|
|
|
accretionDisc=${basename}.3.accretionDisc.txt
|
2014-06-08 17:03:56 +02:00
|
|
|
|
2016-10-19 23:06:19 +02:00
|
|
|
skipDownload=false
|
|
|
|
|
2016-10-15 21:09:38 +02:00
|
|
|
# Warn users still using pihole.conf that it no longer has any effect (I imagine about 2 people use it)
|
2016-10-22 08:02:45 +02:00
|
|
|
if [[ -r ${piholeDir}/pihole.conf ]]; then
|
|
|
|
echo "::: pihole.conf file no longer supported. Over-rides in this file are ignored."
|
2015-11-07 00:03:55 +01:00
|
|
|
fi
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2015-11-23 10:47:24 +01:00
|
|
|
###########################
|
|
|
|
# collapse - begin formation of pihole
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_collapse() {
|
2016-01-26 21:26:09 +01:00
|
|
|
echo "::: Neutrino emissions detected..."
|
|
|
|
echo ":::"
|
|
|
|
#Decide if we're using a custom ad block list, or defaults.
|
2016-08-19 23:51:09 +02:00
|
|
|
if [ -f ${adListFile} ]; then
|
2017-03-31 20:00:04 +02:00
|
|
|
#User has disabled one or more default lists
|
|
|
|
echo -n "::: Changes to default list detected. Reading adlists.list..."
|
2016-01-26 21:26:09 +01:00
|
|
|
sources=()
|
2017-01-13 11:02:51 +01:00
|
|
|
while IFS= read -r line || [[ -n "$line" ]]; do
|
2016-02-21 18:45:25 +01:00
|
|
|
#Do not read commented out or blank lines
|
2016-08-19 23:51:09 +02:00
|
|
|
if [[ ${line} = \#* ]] || [[ ! ${line} ]]; then
|
2016-02-21 18:45:25 +01:00
|
|
|
echo "" > /dev/null
|
|
|
|
else
|
2016-08-19 23:51:09 +02:00
|
|
|
sources+=(${line})
|
2016-02-21 18:45:25 +01:00
|
|
|
fi
|
2016-08-19 23:51:09 +02:00
|
|
|
done < ${adListFile}
|
2016-03-06 06:13:43 +01:00
|
|
|
echo " done!"
|
2016-01-26 21:26:09 +01:00
|
|
|
else
|
2017-03-31 20:00:04 +02:00
|
|
|
#
|
|
|
|
echo -n "::: No changes to default list detected. Reading adlists.default..."
|
2016-04-02 02:19:47 +02:00
|
|
|
sources=()
|
2017-01-13 11:02:51 +01:00
|
|
|
while IFS= read -r line || [[ -n "$line" ]]; do
|
2016-02-21 18:45:25 +01:00
|
|
|
#Do not read commented out or blank lines
|
2016-08-19 23:51:09 +02:00
|
|
|
if [[ ${line} = \#* ]] || [[ ! ${line} ]]; then
|
2016-02-21 18:45:25 +01:00
|
|
|
echo "" > /dev/null
|
|
|
|
else
|
2016-08-19 23:51:09 +02:00
|
|
|
sources+=(${line})
|
2016-02-21 18:45:25 +01:00
|
|
|
fi
|
2016-08-19 23:51:09 +02:00
|
|
|
done < ${adListDefault}
|
2016-03-06 06:13:43 +01:00
|
|
|
echo " done!"
|
|
|
|
fi
|
2017-03-31 20:00:04 +02:00
|
|
|
|
|
|
|
if [ -f ${adListCustom} ]; then
|
|
|
|
echo -n "Custom additional lists detected. Reading adlists.custom..."
|
|
|
|
while IFS= read -r line || [[ -n "$line" ]]; do
|
|
|
|
#Do not read commented out or blank lines
|
|
|
|
if [[ ${line} = \#* ]] || [[ ! ${line} ]]; then
|
|
|
|
echo "" > /dev/null
|
|
|
|
else
|
|
|
|
sources+=(${line})
|
|
|
|
fi
|
|
|
|
done < ${adListCustom}
|
|
|
|
echo " done!"
|
|
|
|
fi
|
2015-11-23 09:36:01 +01:00
|
|
|
}
|
2015-11-23 08:49:38 +01:00
|
|
|
|
2015-11-27 00:56:37 +01:00
|
|
|
# patternCheck - check to see if curl downloaded any new files.
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_patternCheck() {
|
2015-11-27 00:48:52 +01:00
|
|
|
patternBuffer=$1
|
2016-12-17 23:32:50 +01:00
|
|
|
success=$2
|
2016-12-17 23:46:28 +01:00
|
|
|
error=$3
|
2016-12-17 23:32:50 +01:00
|
|
|
if [ $success = true ]; then
|
2016-12-17 23:46:28 +01:00
|
|
|
# check if download was successful but list has not been modified
|
|
|
|
if [ "${error}" == "304" ]; then
|
|
|
|
echo "::: No changes detected, transport skipped!"
|
|
|
|
# check if the patternbuffer is a non-zero length file
|
|
|
|
elif [[ -s "${patternBuffer}" ]]; then
|
2016-12-17 23:32:50 +01:00
|
|
|
# Some of the blocklists are copyright, they need to be downloaded
|
|
|
|
# and stored as is. They can be processed for content after they
|
|
|
|
# have been saved.
|
|
|
|
mv "${patternBuffer}" "${saveLocation}"
|
|
|
|
echo "::: List updated, transport successful!"
|
|
|
|
else
|
|
|
|
# Empty file -> use previously downloaded list
|
|
|
|
echo "::: Received empty file, using cached one (list not updated!)"
|
|
|
|
fi
|
2015-11-27 00:48:52 +01:00
|
|
|
else
|
2016-12-17 23:32:50 +01:00
|
|
|
# check if cached list exists
|
|
|
|
if [[ -r "${saveLocation}" ]]; then
|
|
|
|
echo "::: List download failed, using cached list (list not updated!)"
|
|
|
|
else
|
|
|
|
echo "::: Download failed and no cached list available (list will not be considered)"
|
|
|
|
fi
|
2015-11-27 00:48:52 +01:00
|
|
|
fi
|
2015-11-23 11:52:12 +01:00
|
|
|
}
|
|
|
|
|
2015-11-27 00:56:37 +01:00
|
|
|
# transport - curl the specified url with any needed command extentions
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_transport() {
|
2015-11-27 00:48:52 +01:00
|
|
|
url=$1
|
|
|
|
cmd_ext=$2
|
|
|
|
agent=$3
|
2015-12-05 04:41:37 +01:00
|
|
|
|
2015-11-27 00:48:52 +01:00
|
|
|
# tmp file, so we don't have to store the (long!) lists in RAM
|
|
|
|
patternBuffer=$(mktemp)
|
|
|
|
heisenbergCompensator=""
|
2016-08-19 23:51:09 +02:00
|
|
|
if [[ -r ${saveLocation} ]]; then
|
2015-11-27 00:48:52 +01:00
|
|
|
# if domain has been saved, add file for date check to only download newer
|
2016-10-22 08:11:17 +02:00
|
|
|
heisenbergCompensator="-z ${saveLocation}"
|
2015-11-27 00:48:52 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Silently curl url
|
2016-12-17 23:32:50 +01:00
|
|
|
err=$(curl -s -L ${cmd_ext} ${heisenbergCompensator} -w %{http_code} -A "${agent}" ${url} -o ${patternBuffer})
|
|
|
|
|
|
|
|
echo " done"
|
|
|
|
# Analyze http response
|
|
|
|
echo -n "::: Status: "
|
|
|
|
case "$err" in
|
2016-12-17 23:46:28 +01:00
|
|
|
"200" ) echo "Success (OK)"; success=true;;
|
|
|
|
"304" ) echo "Not modified"; success=true;;
|
|
|
|
"403" ) echo "Forbidden"; success=false;;
|
|
|
|
"404" ) echo "Not found"; success=false;;
|
|
|
|
"408" ) echo "Time-out"; success=false;;
|
|
|
|
"451" ) echo "Unavailable For Legal Reasons"; success=false;;
|
|
|
|
"521" ) echo "Web Server Is Down (Cloudflare)"; success=false;;
|
|
|
|
"522" ) echo "Connection Timed Out (Cloudflare)"; success=false;;
|
|
|
|
"500" ) echo "Internal Server Error"; success=false;;
|
|
|
|
* ) echo "Status $err"; success=false;;
|
2016-12-17 23:32:50 +01:00
|
|
|
esac
|
|
|
|
|
|
|
|
# Process result
|
2016-12-17 23:46:28 +01:00
|
|
|
gravity_patternCheck "${patternBuffer}" ${success} "${err}"
|
2016-12-17 23:32:50 +01:00
|
|
|
|
2015-11-23 11:52:12 +01:00
|
|
|
}
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2015-11-23 10:47:24 +01:00
|
|
|
# spinup - main gravity function
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_spinup() {
|
2016-04-04 07:59:24 +02:00
|
|
|
echo ":::"
|
2015-11-27 00:56:37 +01:00
|
|
|
# Loop through domain list. Download each one and remove commented lines (lines beginning with '# 'or '/') and # blank lines
|
2016-10-22 08:02:45 +02:00
|
|
|
for ((i = 0; i < "${#sources[@]}"; i++)); do
|
|
|
|
url=${sources[$i]}
|
|
|
|
# Get just the domain from the URL
|
2016-10-22 08:11:17 +02:00
|
|
|
domain=$(echo "${url}" | cut -d'/' -f3)
|
2015-11-23 11:52:12 +01:00
|
|
|
|
2016-10-22 08:02:45 +02:00
|
|
|
# Save the file as list.#.domain
|
|
|
|
saveLocation=${piholeDir}/list.${i}.${domain}.${justDomainsExtension}
|
|
|
|
activeDomains[$i]=${saveLocation}
|
2016-10-19 23:06:19 +02:00
|
|
|
|
2016-10-22 08:02:45 +02:00
|
|
|
agent="Mozilla/10.0"
|
2015-11-23 11:52:12 +01:00
|
|
|
|
2016-10-22 08:02:45 +02:00
|
|
|
# Use a case statement to download lists that need special cURL commands
|
|
|
|
# to complete properly and reset the user agent when required
|
2016-10-22 08:11:17 +02:00
|
|
|
case "${domain}" in
|
2016-10-22 08:02:45 +02:00
|
|
|
"adblock.mahakala.is")
|
|
|
|
agent='Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'
|
|
|
|
cmd_ext="-e http://forum.xda-developers.com/"
|
|
|
|
;;
|
2015-11-23 11:52:12 +01:00
|
|
|
|
2016-10-22 08:02:45 +02:00
|
|
|
"pgl.yoyo.org")
|
|
|
|
cmd_ext="-d mimetype=plaintext -d hostformat=hosts"
|
|
|
|
;;
|
2015-11-23 11:52:12 +01:00
|
|
|
|
2016-04-02 02:19:47 +02:00
|
|
|
# Default is a simple request
|
|
|
|
*) cmd_ext=""
|
2015-11-23 11:52:12 +01:00
|
|
|
esac
|
2016-10-19 23:06:19 +02:00
|
|
|
if [[ "${skipDownload}" == false ]]; then
|
|
|
|
echo -n "::: Getting $domain list..."
|
|
|
|
gravity_transport "$url" "$cmd_ext" "$agent"
|
|
|
|
fi
|
2015-11-27 00:56:37 +01:00
|
|
|
done
|
2015-11-23 11:52:12 +01:00
|
|
|
}
|
2014-06-08 17:03:56 +02:00
|
|
|
|
2015-11-23 12:26:10 +01:00
|
|
|
# Schwarzchild - aggregate domains to one list and add blacklisted domains
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_Schwarzchild() {
|
2016-04-02 02:19:47 +02:00
|
|
|
echo "::: "
|
2015-11-27 00:48:52 +01:00
|
|
|
# Find all active domains and compile them into one file and remove CRs
|
2016-01-24 16:25:24 +01:00
|
|
|
echo -n "::: Aggregating list of domains..."
|
2016-09-17 00:05:08 +02:00
|
|
|
truncate -s 0 ${piholeDir}/${matterAndLight}
|
2016-10-22 08:02:45 +02:00
|
|
|
for i in "${activeDomains[@]}"; do
|
2016-12-17 23:32:50 +01:00
|
|
|
# Only assimilate list if it is available (download might have faild permanently)
|
|
|
|
if [[ -r "${i}" ]]; then
|
|
|
|
cat "${i}" | tr -d '\r' >> ${piholeDir}/${matterAndLight}
|
|
|
|
fi
|
2015-11-27 00:48:52 +01:00
|
|
|
done
|
2016-01-24 16:25:24 +01:00
|
|
|
echo " done!"
|
2015-11-27 00:48:52 +01:00
|
|
|
}
|
2015-05-19 20:31:37 +02:00
|
|
|
|
2016-10-20 04:47:45 +02:00
|
|
|
gravity_Blacklist() {
|
2016-10-27 12:09:24 +02:00
|
|
|
# Append blacklist entries to eventHorizon if they exist
|
2016-10-25 23:27:35 +02:00
|
|
|
if [[ -f "${blacklistFile}" ]]; then
|
|
|
|
numBlacklisted=$(wc -l < "${blacklistFile}")
|
|
|
|
plural=; [[ "$numBlacklisted" != "1" ]] && plural=s
|
2016-11-19 20:00:56 +01:00
|
|
|
echo -n "::: Blacklisting $numBlacklisted domain${plural}..."
|
2016-10-25 23:27:35 +02:00
|
|
|
cat ${blacklistFile} >> ${piholeDir}/${eventHorizon}
|
|
|
|
echo " done!"
|
|
|
|
else
|
|
|
|
echo "::: Nothing to blacklist!"
|
|
|
|
fi
|
2016-10-20 00:15:05 +02:00
|
|
|
|
2016-01-15 15:49:16 +01:00
|
|
|
}
|
2015-11-07 00:03:55 +01:00
|
|
|
|
2017-01-29 13:46:27 +01:00
|
|
|
gravity_Wildcard() {
|
|
|
|
# Return number of wildcards in output - don't actually handle wildcards
|
|
|
|
if [[ -f "${wildcardlist}" ]]; then
|
2017-02-01 00:07:47 +01:00
|
|
|
numWildcards=$(grep -c ^ "${wildcardlist}")
|
2017-01-29 13:46:27 +01:00
|
|
|
if [[ -n "${IPV4_ADDRESS}" && -n "${IPV6_ADDRESS}" ]];then
|
2017-02-01 00:07:47 +01:00
|
|
|
let numWildcards/=2
|
2017-01-29 13:46:27 +01:00
|
|
|
fi
|
2017-02-01 19:55:33 +01:00
|
|
|
plural=; [[ "$numWildcards" != "1" ]] && plural=s
|
2017-02-01 00:07:47 +01:00
|
|
|
echo "::: Wildcard blocked domain${plural}: $numWildcards"
|
2017-01-29 13:46:27 +01:00
|
|
|
else
|
|
|
|
echo "::: No wildcards used!"
|
|
|
|
fi
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_Whitelist() {
|
2016-10-20 00:15:05 +02:00
|
|
|
#${piholeDir}/${eventHorizon})
|
2016-04-02 02:19:47 +02:00
|
|
|
echo ":::"
|
2015-11-27 00:48:52 +01:00
|
|
|
# Prevent our sources from being pulled into the hole
|
2016-01-15 15:49:16 +01:00
|
|
|
plural=; [[ "${sources[@]}" != "1" ]] && plural=s
|
2016-10-20 00:15:05 +02:00
|
|
|
echo -n "::: Adding adlist source${plural} to the whitelist..."
|
2016-03-06 06:13:43 +01:00
|
|
|
|
2016-01-15 15:49:16 +01:00
|
|
|
urls=()
|
2016-10-22 08:02:45 +02:00
|
|
|
for url in "${sources[@]}"; do
|
2016-10-22 08:11:17 +02:00
|
|
|
tmp=$(echo "${url}" | awk -F '/' '{print $3}')
|
2016-10-22 08:02:45 +02:00
|
|
|
urls=("${urls[@]}" ${tmp})
|
2016-01-24 23:30:12 +01:00
|
|
|
done
|
2016-01-24 16:25:24 +01:00
|
|
|
echo " done!"
|
2016-03-06 06:13:43 +01:00
|
|
|
|
2016-10-25 23:27:35 +02:00
|
|
|
# Ensure adlist domains are in whitelist.txt
|
2016-10-20 00:15:05 +02:00
|
|
|
${whitelistScript} -nr -q "${urls[@]}" > /dev/null
|
|
|
|
|
2016-10-27 12:09:24 +02:00
|
|
|
# Check whitelist.txt exists.
|
2016-10-25 23:27:35 +02:00
|
|
|
if [[ -f "${whitelistFile}" ]]; then
|
|
|
|
# Remove anything in whitelist.txt from the Event Horizon
|
|
|
|
numWhitelisted=$(wc -l < "${whitelistFile}")
|
|
|
|
plural=; [[ "$numWhitelisted" != "1" ]] && plural=s
|
|
|
|
echo -n "::: Whitelisting $numWhitelisted domain${plural}..."
|
2016-10-27 12:09:24 +02:00
|
|
|
#print everything from preEventHorizon into eventHorizon EXCEPT domains in whitelist.txt
|
2016-10-25 23:27:35 +02:00
|
|
|
grep -F -x -v -f ${whitelistFile} ${piholeDir}/${preEventHorizon} > ${piholeDir}/${eventHorizon}
|
|
|
|
echo " done!"
|
|
|
|
else
|
|
|
|
echo "::: Nothing to whitelist!"
|
|
|
|
fi
|
2015-11-23 10:16:00 +01:00
|
|
|
}
|
|
|
|
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_unique() {
|
2015-11-27 00:56:37 +01:00
|
|
|
# Sort and remove duplicates
|
2016-01-24 16:25:24 +01:00
|
|
|
echo -n "::: Removing duplicate domains...."
|
2016-10-20 00:52:54 +02:00
|
|
|
sort -u ${piholeDir}/${supernova} > ${piholeDir}/${preEventHorizon}
|
2016-01-24 16:25:24 +01:00
|
|
|
echo " done!"
|
2016-10-20 00:52:54 +02:00
|
|
|
numberOf=$(wc -l < ${piholeDir}/${preEventHorizon})
|
2016-01-24 16:25:24 +01:00
|
|
|
echo "::: $numberOf unique domains trapped in the event horizon."
|
2015-11-23 12:11:16 +01:00
|
|
|
}
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_hostFormat() {
|
2016-04-02 02:19:47 +02:00
|
|
|
# Format domain list as "192.168.x.x domain.com"
|
2016-11-18 17:39:34 +01:00
|
|
|
echo -n "::: Formatting domains into a HOSTS file..."
|
2016-12-14 20:31:57 +01:00
|
|
|
|
2016-12-14 20:26:55 +01:00
|
|
|
if [[ -f /etc/hostname ]]; then
|
|
|
|
hostname=$(</etc/hostname)
|
|
|
|
elif [ -x "$(command -v hostname)" ]; then
|
|
|
|
hostname=$(hostname -f)
|
|
|
|
else
|
|
|
|
echo "::: Error: Unable to determine fully qualified domain name of host"
|
|
|
|
fi
|
|
|
|
# Check vars from setupVars.conf to see if we're using IPv4, IPv6, Or both.
|
|
|
|
if [[ -n "${IPV4_ADDRESS}" && -n "${IPV6_ADDRESS}" ]];then
|
2016-10-19 20:50:21 +02:00
|
|
|
|
2016-12-14 20:26:55 +01:00
|
|
|
echo -e "${IPV4_ADDRESS} ${hostname}\n${IPV6_ADDRESS} ${hostname}\n${IPV4_ADDRESS} pi.hole\n${IPV6_ADDRESS} pi.hole" > ${localList}
|
|
|
|
# Both IPv4 and IPv6
|
|
|
|
cat ${piholeDir}/${eventHorizon} | awk -v ipv4addr="$IPV4_ADDRESS" -v ipv6addr="$IPV6_ADDRESS" '{sub(/\r$/,""); print ipv4addr" "$0"\n"ipv6addr" "$0}' >> ${piholeDir}/${accretionDisc}
|
2016-10-19 20:50:21 +02:00
|
|
|
|
2016-12-14 20:26:55 +01:00
|
|
|
elif [[ -n "${IPV4_ADDRESS}" && -z "${IPV6_ADDRESS}" ]];then
|
2016-10-19 20:50:21 +02:00
|
|
|
|
2016-12-14 20:26:55 +01:00
|
|
|
echo -e "${IPV4_ADDRESS} ${hostname}\n${IPV4_ADDRESS} pi.hole" > ${localList}
|
|
|
|
# Only IPv4
|
|
|
|
cat ${piholeDir}/${eventHorizon} | awk -v ipv4addr="$IPV4_ADDRESS" '{sub(/\r$/,""); print ipv4addr" "$0}' >> ${piholeDir}/${accretionDisc}
|
2016-10-19 20:50:21 +02:00
|
|
|
|
2016-12-14 20:26:55 +01:00
|
|
|
elif [[ -z "${IPV4_ADDRESS}" && -n "${IPV6_ADDRESS}" ]];then
|
2016-10-19 20:50:21 +02:00
|
|
|
|
2016-12-14 20:26:55 +01:00
|
|
|
echo -e "${IPV6_ADDRESS} ${hostname}\n${IPV6_ADDRESS} pi.hole" > ${localList}
|
|
|
|
# Only IPv6
|
|
|
|
cat ${piholeDir}/${eventHorizon} | awk -v ipv6addr="$IPV6_ADDRESS" '{sub(/\r$/,""); print ipv6addr" "$0}' >> ${piholeDir}/${accretionDisc}
|
2016-10-19 20:50:21 +02:00
|
|
|
|
2016-12-14 20:26:55 +01:00
|
|
|
elif [[ -z "${IPV4_ADDRESS}" && -z "${IPV6_ADDRESS}" ]];then
|
|
|
|
echo "::: No IP Values found! Please run 'pihole -r' and choose reconfigure to restore values"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-04-02 02:19:47 +02:00
|
|
|
|
2015-11-27 00:56:37 +01:00
|
|
|
# Copy the file over as /etc/pihole/gravity.list so dnsmasq can use it
|
2016-08-19 23:51:09 +02:00
|
|
|
cp ${piholeDir}/${accretionDisc} ${adList}
|
2016-11-18 17:33:46 +01:00
|
|
|
echo " done!"
|
2015-11-23 12:11:16 +01:00
|
|
|
}
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2015-11-27 00:56:37 +01:00
|
|
|
# blackbody - remove any remnant files from script processes
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_blackbody() {
|
2015-12-05 04:41:37 +01:00
|
|
|
# Loop through list files
|
2016-10-22 08:02:45 +02:00
|
|
|
for file in ${piholeDir}/*.${justDomainsExtension}; do
|
2015-11-27 00:56:37 +01:00
|
|
|
# If list is in active array then leave it (noop) else rm the list
|
2016-03-26 20:16:22 +01:00
|
|
|
if [[ " ${activeDomains[@]} " =~ ${file} ]]; then
|
2015-11-27 00:48:52 +01:00
|
|
|
:
|
|
|
|
else
|
2016-10-22 08:11:17 +02:00
|
|
|
rm -f "${file}"
|
2015-11-27 00:48:52 +01:00
|
|
|
fi
|
|
|
|
done
|
2015-11-26 04:51:07 +01:00
|
|
|
}
|
2015-11-23 08:49:38 +01:00
|
|
|
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_advanced() {
|
2015-11-27 00:56:37 +01:00
|
|
|
# Remove comments and print only the domain name
|
|
|
|
# Most of the lists downloaded are already in hosts file format but the spacing/formating is not contigious
|
|
|
|
# This helps with that and makes it easier to read
|
|
|
|
# It also helps with debugging so each stage of the script can be researched more in depth
|
2016-01-24 16:25:24 +01:00
|
|
|
echo -n "::: Formatting list of domains to remove comments...."
|
2016-09-26 12:58:07 +02:00
|
|
|
#awk '($1 !~ /^#/) { if (NF>1) {print $2} else {print $1}}' ${piholeDir}/${matterAndLight} | sed -nr -e 's/\.{2,}/./g' -e '/\./p' > ${piholeDir}/${supernova}
|
|
|
|
#Above line does not correctly grab domains where comment is on the same line (e.g 'addomain.com #comment')
|
2016-12-01 22:53:40 +01:00
|
|
|
#Awk -F splits on given IFS, we grab the right hand side (chops trailing #coments and /'s to grab the domain only.
|
|
|
|
#Last awk command takes non-commented lines and if they have 2 fields, take the left field (the domain) and leave
|
2016-12-01 22:59:58 +01:00
|
|
|
#+ the right (IP address), otherwise grab the single field.
|
2016-12-01 22:53:40 +01:00
|
|
|
cat ${piholeDir}/${matterAndLight} | \
|
|
|
|
awk -F '#' '{print $1}' | \
|
|
|
|
awk -F '/' '{print $1}' | \
|
|
|
|
awk '($1 !~ /^#/) { if (NF>1) {print $2} else {print $1}}' | \
|
|
|
|
sed -nr -e 's/\.{2,}/./g' -e '/\./p' > ${piholeDir}/${supernova}
|
2016-04-02 02:19:47 +02:00
|
|
|
echo " done!"
|
2016-03-06 06:13:43 +01:00
|
|
|
|
2016-08-19 23:51:09 +02:00
|
|
|
numberOf=$(wc -l < ${piholeDir}/${supernova})
|
2016-10-22 08:11:17 +02:00
|
|
|
echo "::: ${numberOf} domains being pulled in by gravity..."
|
2016-03-06 06:13:43 +01:00
|
|
|
|
2015-11-27 00:56:37 +01:00
|
|
|
gravity_unique
|
2015-12-26 19:37:51 +01:00
|
|
|
}
|
2015-12-05 04:41:37 +01:00
|
|
|
|
2016-10-15 21:02:57 +02:00
|
|
|
gravity_reload() {
|
2016-02-21 21:45:56 +01:00
|
|
|
#Clear no longer needed files...
|
|
|
|
echo ":::"
|
|
|
|
echo -n "::: Cleaning up un-needed files..."
|
2016-10-15 19:42:53 +02:00
|
|
|
rm ${piholeDir}/pihole.*.txt
|
2016-02-21 21:45:56 +01:00
|
|
|
echo " done!"
|
2016-03-06 06:13:43 +01:00
|
|
|
|
2015-12-26 19:37:51 +01:00
|
|
|
# Reload hosts file
|
2016-01-24 16:25:24 +01:00
|
|
|
echo ":::"
|
2016-11-20 17:31:27 +01:00
|
|
|
echo -n "::: Refresh lists in dnsmasq..."
|
2016-10-19 23:06:19 +02:00
|
|
|
|
2016-04-05 00:38:46 +02:00
|
|
|
#ensure /etc/dnsmasq.d/01-pihole.conf is pointing at the correct list!
|
|
|
|
#First escape forward slashes in the path:
|
|
|
|
adList=${adList//\//\\\/}
|
|
|
|
#Now replace the line in dnsmasq file
|
2016-10-20 14:45:20 +02:00
|
|
|
# sed -i "s/^addn-hosts.*/addn-hosts=$adList/" /etc/dnsmasq.d/01-pihole.conf
|
2016-01-02 01:34:33 +01:00
|
|
|
|
2017-03-12 23:15:23 +01:00
|
|
|
"${PIHOLE_COMMAND}" restartdns
|
2016-11-20 17:40:22 +01:00
|
|
|
echo " done!"
|
2015-11-06 03:11:34 +01:00
|
|
|
}
|
2015-08-23 06:44:41 +02:00
|
|
|
|
2016-10-22 08:02:45 +02:00
|
|
|
for var in "$@"; do
|
2016-10-22 08:11:17 +02:00
|
|
|
case "${var}" in
|
2016-10-22 08:02:45 +02:00
|
|
|
"-f" | "--force" ) forceGrav=true;;
|
|
|
|
"-h" | "--help" ) helpFunc;;
|
2016-10-23 20:33:28 +02:00
|
|
|
"-sd" | "--skip-download" ) skipDownload=true;;
|
2016-10-22 08:02:45 +02:00
|
|
|
esac
|
2016-08-17 20:08:55 +02:00
|
|
|
done
|
|
|
|
|
2016-10-19 23:06:19 +02:00
|
|
|
if [[ "${forceGrav}" == true ]]; then
|
2016-08-17 20:08:55 +02:00
|
|
|
echo -n "::: Deleting exising list cache..."
|
2016-10-15 19:42:53 +02:00
|
|
|
rm /etc/pihole/list.*
|
2016-08-17 20:08:55 +02:00
|
|
|
echo " done!"
|
|
|
|
fi
|
|
|
|
|
2016-09-17 00:05:08 +02:00
|
|
|
#Overwrite adlists.default from /etc/.pihole in case any changes have been made. Changes should be saved in /etc/adlists.list
|
2017-01-17 20:48:20 +01:00
|
|
|
cp /etc/.pihole/adlists.default /etc/pihole/adlists.default
|
2015-11-23 21:39:47 +01:00
|
|
|
gravity_collapse
|
2015-11-23 09:36:01 +01:00
|
|
|
gravity_spinup
|
2016-10-20 00:52:54 +02:00
|
|
|
if [[ "${skipDownload}" == false ]]; then
|
|
|
|
gravity_Schwarzchild
|
|
|
|
gravity_advanced
|
|
|
|
else
|
|
|
|
echo "::: Using cached Event Horizon list..."
|
|
|
|
numberOf=$(wc -l < ${piholeDir}/${preEventHorizon})
|
|
|
|
echo "::: $numberOf unique domains trapped in the event horizon."
|
|
|
|
fi
|
2016-01-15 15:49:16 +01:00
|
|
|
gravity_Whitelist
|
|
|
|
gravity_Blacklist
|
2017-01-29 13:46:27 +01:00
|
|
|
gravity_Wildcard
|
2016-10-20 00:15:05 +02:00
|
|
|
|
|
|
|
gravity_hostFormat
|
|
|
|
gravity_blackbody
|
|
|
|
|
2015-12-26 19:37:51 +01:00
|
|
|
gravity_reload
|
2017-03-12 23:15:23 +01:00
|
|
|
"${PIHOLE_COMMAND}" status
|