2015-11-11 09:43:00 +01:00
|
|
|
#!/usr/bin/env bash
|
2017-07-24 13:24:34 +02:00
|
|
|
# shellcheck disable=SC1090
|
|
|
|
|
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.
|
|
|
|
#
|
2017-07-24 13:24:34 +02:00
|
|
|
# Usage: "pihole -g"
|
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.
|
|
|
|
|
2018-02-21 12:33:29 +01:00
|
|
|
export LC_ALL=C
|
|
|
|
|
2017-06-21 13:49:05 +02:00
|
|
|
coltable="/opt/pihole/COL_TABLE"
|
2017-07-27 04:34:35 +02:00
|
|
|
source "${coltable}"
|
2018-06-17 14:26:57 +02:00
|
|
|
regexconverter="/opt/pihole/wildcard_regex_converter.sh"
|
|
|
|
source "${regexconverter}"
|
2016-04-11 12:29:14 +02:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
basename="pihole"
|
|
|
|
PIHOLE_COMMAND="/usr/local/bin/${basename}"
|
2019-02-06 18:57:48 +01:00
|
|
|
PIHOLE_USER="pihole"
|
|
|
|
PIHOLE_GROUP="pihole"
|
2017-06-21 13:49:05 +02:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
piholeDir="/etc/${basename}"
|
|
|
|
|
2019-04-24 19:55:05 +02:00
|
|
|
# Legacy (pre v5.0) list file locations
|
2017-07-24 13:24:34 +02:00
|
|
|
whitelistFile="${piholeDir}/whitelist.txt"
|
|
|
|
blacklistFile="${piholeDir}/blacklist.txt"
|
2018-06-17 14:26:57 +02:00
|
|
|
regexFile="${piholeDir}/regex.list"
|
2019-04-24 19:55:05 +02:00
|
|
|
adListFile="${piholeDir}/adlists.list"
|
2016-01-21 23:14:55 +01:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
localList="${piholeDir}/local.list"
|
2017-09-14 08:39:30 +02:00
|
|
|
VPNList="/etc/openvpn/ipp.txt"
|
2016-01-26 21:26:09 +01:00
|
|
|
|
2019-02-03 13:04:31 +01:00
|
|
|
piholeGitDir="/etc/.pihole"
|
|
|
|
gravityDBfile="${piholeDir}/gravity.db"
|
2019-02-05 19:05:11 +01:00
|
|
|
gravityDBschema="${piholeGitDir}/advanced/Templates/gravity.db.sql"
|
2019-02-03 17:01:38 +01:00
|
|
|
optimize_database=false
|
2019-02-03 13:04:31 +01:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
domainsExtension="domains"
|
|
|
|
matterAndLight="${basename}.0.matterandlight.txt"
|
2017-07-27 04:34:35 +02:00
|
|
|
parsedMatter="${basename}.1.parsedmatter.txt"
|
|
|
|
preEventHorizon="list.preEventHorizon"
|
2017-07-24 13:24:34 +02:00
|
|
|
|
|
|
|
skipDownload="false"
|
|
|
|
|
2018-02-25 09:34:04 +01:00
|
|
|
resolver="pihole-FTL"
|
|
|
|
|
2018-04-30 22:45:03 +02:00
|
|
|
haveSourceUrls=true
|
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
# Source setupVars from install script
|
|
|
|
setupVars="${piholeDir}/setupVars.conf"
|
2017-06-21 13:49:05 +02:00
|
|
|
if [[ -f "${setupVars}" ]];then
|
2017-07-24 13:24:34 +02:00
|
|
|
source "${setupVars}"
|
|
|
|
|
|
|
|
# Remove CIDR mask from IPv4/6 addresses
|
|
|
|
IPV4_ADDRESS="${IPV4_ADDRESS%/*}"
|
|
|
|
IPV6_ADDRESS="${IPV6_ADDRESS%/*}"
|
2017-09-15 14:39:17 +02:00
|
|
|
|
|
|
|
# Determine if IPv4/6 addresses exist
|
|
|
|
if [[ -z "${IPV4_ADDRESS}" ]] && [[ -z "${IPV6_ADDRESS}" ]]; then
|
|
|
|
echo -e " ${COL_LIGHT_RED}No IP addresses found! Please run 'pihole -r' to reconfigure${COL_NC}"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-10-15 21:03:33 +02:00
|
|
|
else
|
2017-07-24 13:24:34 +02:00
|
|
|
echo -e " ${COL_LIGHT_RED}Installation Failure: ${setupVars} does not exist! ${COL_NC}
|
|
|
|
Please run 'pihole -r', and choose the 'reconfigure' option to fix."
|
2017-06-21 13:49:05 +02:00
|
|
|
exit 1
|
2016-10-15 21:03:33 +02:00
|
|
|
fi
|
|
|
|
|
2018-08-12 01:15:42 +02:00
|
|
|
# Source pihole-FTL from install script
|
|
|
|
pihole_FTL="${piholeDir}/pihole-FTL.conf"
|
|
|
|
if [[ -f "${pihole_FTL}" ]]; then
|
|
|
|
source "${pihole_FTL}"
|
2018-09-30 21:00:06 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "${BLOCKINGMODE}" ]] ; then
|
|
|
|
BLOCKINGMODE="NULL"
|
2018-08-12 01:15:42 +02:00
|
|
|
fi
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if superseded pihole.conf exists
|
2017-07-24 13:24:34 +02:00
|
|
|
if [[ -r "${piholeDir}/pihole.conf" ]]; then
|
|
|
|
echo -e " ${COL_LIGHT_RED}Ignoring overrides specified within pihole.conf! ${COL_NC}"
|
2015-11-07 00:03:55 +01:00
|
|
|
fi
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2019-02-03 13:04:31 +01:00
|
|
|
# Generate new sqlite3 file from schema template
|
|
|
|
generate_gravity_database() {
|
|
|
|
sqlite3 "${gravityDBfile}" < "${gravityDBschema}"
|
2019-02-06 18:57:48 +01:00
|
|
|
chown $PIHOLE_USER:$PIHOLE_GROUP "${gravityDBfile}"
|
2019-02-03 13:04:31 +01:00
|
|
|
}
|
|
|
|
|
2019-02-03 13:21:26 +01:00
|
|
|
# Import domains from file and store them in the specified database table
|
2019-04-24 19:55:05 +02:00
|
|
|
database_table_from_file() {
|
2019-02-03 13:21:26 +01:00
|
|
|
# Define locals
|
|
|
|
local table="${1}"
|
|
|
|
local source="${2}"
|
|
|
|
|
|
|
|
# Create database file if not present
|
|
|
|
if [ ! -e "${gravityDBfile}" ]; then
|
2019-04-24 19:55:05 +02:00
|
|
|
echo -e " ${INFO} Creating new gravity database"
|
2019-02-03 13:21:26 +01:00
|
|
|
generate_gravity_database
|
|
|
|
fi
|
|
|
|
|
2019-04-24 19:55:05 +02:00
|
|
|
echo -e " ${INFO} Pi-hole upgrade: Moving content of ${source} into database"
|
|
|
|
|
|
|
|
# Truncate table
|
2019-02-03 13:21:26 +01:00
|
|
|
output=$( { sqlite3 "${gravityDBfile}" <<< "DELETE FROM ${table};"; } 2>&1 )
|
|
|
|
status="$?"
|
|
|
|
|
|
|
|
if [[ "${status}" -ne 0 ]]; then
|
|
|
|
echo -e "\\n ${CROSS} Unable to truncate ${table} database ${gravityDBfile}\\n ${output}"
|
|
|
|
gravity_Cleanup "error"
|
|
|
|
fi
|
|
|
|
|
2019-02-06 19:09:09 +01:00
|
|
|
local tmpFile
|
|
|
|
tmpFile="$(mktemp -p "/tmp" --suffix=".gravity")"
|
2019-02-22 22:46:19 +01:00
|
|
|
local timestamp
|
|
|
|
timestamp="$(date --utc +'%s')"
|
2019-02-22 22:49:02 +01:00
|
|
|
local inputfile
|
2019-04-24 19:55:05 +02:00
|
|
|
if [[ "${table}" == "gravity" ]]; then
|
|
|
|
# No need to modify the input data for the gravity table
|
|
|
|
inputfile="${source}"
|
|
|
|
else
|
|
|
|
# Apply format for white-, blacklist, regex, and adlists tables
|
2019-02-06 19:09:09 +01:00
|
|
|
# Read file line by line
|
|
|
|
grep -v '^ *#' < "${source}" | while IFS= read -r domain
|
|
|
|
do
|
2019-02-22 22:46:19 +01:00
|
|
|
echo "\"${domain}\",1,${timestamp}" >> "${tmpFile}"
|
2019-02-06 18:57:48 +01:00
|
|
|
done
|
|
|
|
inputfile="${tmpFile}"
|
|
|
|
fi
|
2019-04-24 19:55:05 +02:00
|
|
|
# Store domains in database table specified by ${table}
|
2019-02-06 18:57:48 +01:00
|
|
|
# Use printf as .mode and .import need to be on separate lines
|
|
|
|
# see https://unix.stackexchange.com/a/445615/83260
|
2019-02-22 22:49:02 +01:00
|
|
|
output=$( { printf ".mode csv\\n.import \"%s\" %s\\n" "${inputfile}" "${table}" | sqlite3 "${gravityDBfile}"; } 2>&1 )
|
2019-02-03 13:21:26 +01:00
|
|
|
status="$?"
|
|
|
|
|
|
|
|
if [[ "${status}" -ne 0 ]]; then
|
2019-02-06 18:57:48 +01:00
|
|
|
echo -e "\\n ${CROSS} Unable to fill table ${table} in database ${gravityDBfile}\\n ${output}"
|
2019-02-03 13:21:26 +01:00
|
|
|
gravity_Cleanup "error"
|
|
|
|
fi
|
|
|
|
|
2019-02-06 18:57:48 +01:00
|
|
|
# Delete tmpfile
|
2019-04-25 10:18:37 +02:00
|
|
|
rm "${tmpFile}" > /dev/null 2>&1 || \
|
|
|
|
echo -e " ${CROSS} Unable to remove ${tmpFile}"
|
|
|
|
|
|
|
|
# Delete source file
|
|
|
|
rm "${source}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Unable to remove ${source}"
|
2019-02-03 13:21:26 +01:00
|
|
|
}
|
|
|
|
|
2019-04-24 19:55:05 +02:00
|
|
|
migrate_to_database() {
|
|
|
|
ls -lh
|
|
|
|
# Migrate pre-v5.0 list files to database-based Pi-hole versions
|
|
|
|
if [[ -e "${whitelistFile}" ]]; then
|
|
|
|
# Store whitelisted domains in database
|
|
|
|
database_table_from_file "whitelist" "${whitelistFile}"
|
|
|
|
fi
|
|
|
|
if [[ -e "${blacklistFile}" ]]; then
|
|
|
|
# Store blacklisted domains in database
|
|
|
|
database_table_from_file "blacklist" "${blacklistFile}"
|
|
|
|
fi
|
|
|
|
if [[ -e "${regexFile}" ]]; then
|
|
|
|
# Store regex domains in database
|
|
|
|
database_table_from_file "regex" "${regexFile}"
|
|
|
|
fi
|
|
|
|
if [[ -e "${adListFile}" ]]; then
|
|
|
|
# Store adlists domains in database
|
|
|
|
database_table_from_file "adlists" "${adListFile}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if DNS resolution is available before proceeding
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_CheckDNSResolutionAvailable() {
|
2017-12-16 14:55:52 +01:00
|
|
|
local lookupDomain="pi.hole"
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if $localList does not exist
|
|
|
|
if [[ ! -e "${localList}" ]]; then
|
2017-09-14 08:39:30 +02:00
|
|
|
lookupDomain="raw.githubusercontent.com"
|
|
|
|
fi
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if $lookupDomain is resolvable
|
2017-09-21 19:56:53 +02:00
|
|
|
if timeout 1 getent hosts "${lookupDomain}" &> /dev/null; then
|
2017-09-15 14:39:17 +02:00
|
|
|
# Print confirmation of resolvability if it had previously failed
|
|
|
|
if [[ -n "${secs:-}" ]]; then
|
|
|
|
echo -e "${OVER} ${TICK} DNS resolution is now available\\n"
|
2017-07-27 04:34:35 +02:00
|
|
|
fi
|
2017-09-15 14:39:17 +02:00
|
|
|
return 0
|
|
|
|
elif [[ -n "${secs:-}" ]]; then
|
2017-12-08 05:38:47 +01:00
|
|
|
echo -e "${OVER} ${CROSS} DNS resolution is not available"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If the /etc/resolv.conf contains resolvers other than 127.0.0.1 then the local dnsmasq will not be queried and pi.hole is NXDOMAIN.
|
|
|
|
# This means that even though name resolution is working, the getent hosts check fails and the holddown timer keeps ticking and eventualy fails
|
|
|
|
# So we check the output of the last command and if it failed, attempt to use dig +short as a fallback
|
|
|
|
if timeout 1 dig +short "${lookupDomain}" &> /dev/null; then
|
|
|
|
if [[ -n "${secs:-}" ]]; then
|
|
|
|
echo -e "${OVER} ${TICK} DNS resolution is now available\\n"
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
elif [[ -n "${secs:-}" ]]; then
|
2017-09-21 19:56:53 +02:00
|
|
|
echo -e "${OVER} ${CROSS} DNS resolution is not available"
|
2017-09-15 14:39:17 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2017-07-27 04:34:35 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine error output message
|
2018-02-26 17:26:51 +01:00
|
|
|
if pidof ${resolver} &> /dev/null; then
|
2017-09-15 14:39:17 +02:00
|
|
|
echo -e " ${CROSS} DNS resolution is currently unavailable"
|
|
|
|
else
|
|
|
|
echo -e " ${CROSS} DNS service is not running"
|
|
|
|
"${PIHOLE_COMMAND}" restartdns
|
2017-07-27 04:34:35 +02:00
|
|
|
fi
|
2017-09-15 14:39:17 +02:00
|
|
|
|
2017-09-21 19:56:53 +02:00
|
|
|
# Ensure DNS server is given time to be resolvable
|
|
|
|
secs="120"
|
2017-12-16 14:55:52 +01:00
|
|
|
echo -ne " ${INFO} Time until retry: ${secs}"
|
2017-09-21 19:56:53 +02:00
|
|
|
until timeout 1 getent hosts "${lookupDomain}" &> /dev/null; do
|
|
|
|
[[ "${secs:-}" -eq 0 ]] && break
|
2017-12-16 14:55:52 +01:00
|
|
|
echo -ne "${OVER} ${INFO} Time until retry: ${secs}"
|
2017-09-15 14:39:17 +02:00
|
|
|
: $((secs--))
|
2017-09-21 19:56:53 +02:00
|
|
|
sleep 1
|
2017-09-15 14:39:17 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
# Try again
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_CheckDNSResolutionAvailable
|
2017-07-24 13:24:34 +02:00
|
|
|
}
|
2017-03-31 20:16:09 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Retrieve blocklist URLs and parse domains from adlists.list
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_GetBlocklistUrls() {
|
2017-09-15 14:39:17 +02:00
|
|
|
echo -e " ${INFO} ${COL_BOLD}Neutrino emissions detected${COL_NC}..."
|
2017-03-31 20:16:09 +02:00
|
|
|
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ -f "${adListDefault}" ]] && [[ -f "${adListFile}" ]]; then
|
2019-04-24 19:01:31 +02:00
|
|
|
# Remove superseded $adListDefault file
|
2017-07-24 13:24:34 +02:00
|
|
|
rm "${adListDefault}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Unable to remove ${adListDefault}"
|
2017-03-31 20:16:09 +02:00
|
|
|
fi
|
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
# Retrieve source URLs from $adListFile
|
2017-09-20 14:25:33 +02:00
|
|
|
# Logic: Remove comments and empty lines
|
|
|
|
mapfile -t sources <<< "$(grep -v -E "^(#|$)" "${adListFile}" 2> /dev/null)"
|
2017-07-24 13:24:34 +02:00
|
|
|
|
|
|
|
# Parse source domains from $sources
|
2017-09-20 14:25:33 +02:00
|
|
|
mapfile -t sourceDomains <<< "$(
|
2017-09-15 14:39:17 +02:00
|
|
|
# Logic: Split by folder/port
|
2017-07-24 13:24:34 +02:00
|
|
|
awk -F '[/:]' '{
|
2017-09-15 14:39:17 +02:00
|
|
|
# Remove URL protocol & optional username:password@
|
2017-11-21 20:55:47 +01:00
|
|
|
gsub(/(.*:\/\/|.*:.*@)/, "", $0)
|
2017-11-21 18:30:40 +01:00
|
|
|
if(length($1)>0){print $1}
|
|
|
|
else {print "local"}
|
2017-07-24 13:24:34 +02:00
|
|
|
}' <<< "$(printf '%s\n' "${sources[@]}")" 2> /dev/null
|
2017-09-20 14:25:33 +02:00
|
|
|
)"
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2018-04-30 22:45:03 +02:00
|
|
|
local str="Pulling blocklist source list into range"
|
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
if [[ -n "${sources[*]}" ]] && [[ -n "${sourceDomains[*]}" ]]; then
|
2017-07-24 13:24:34 +02:00
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
else
|
|
|
|
echo -e "${OVER} ${CROSS} ${str}"
|
2018-04-30 22:45:03 +02:00
|
|
|
echo -e " ${INFO} No source list found, or it is empty"
|
|
|
|
echo ""
|
|
|
|
haveSourceUrls=false
|
2017-07-24 13:24:34 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Define options for when retrieving blocklists
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_SetDownloadOptions() {
|
2017-07-27 04:34:35 +02:00
|
|
|
local url domain agent cmd_ext str
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Loop through $sources and download each one
|
2017-07-27 04:34:35 +02:00
|
|
|
for ((i = 0; i < "${#sources[@]}"; i++)); do
|
|
|
|
url="${sources[$i]}"
|
|
|
|
domain="${sourceDomains[$i]}"
|
|
|
|
|
|
|
|
# Save the file as list.#.domain
|
|
|
|
saveLocation="${piholeDir}/list.${i}.${domain}.${domainsExtension}"
|
|
|
|
activeDomains[$i]="${saveLocation}"
|
|
|
|
|
2017-08-28 03:36:02 +02:00
|
|
|
# Default user-agent (for Cloudflare's Browser Integrity Check: https://support.cloudflare.com/hc/en-us/articles/200170086-What-does-the-Browser-Integrity-Check-do-)
|
2018-12-06 18:04:17 +01:00
|
|
|
agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36"
|
2017-07-27 04:34:35 +02:00
|
|
|
|
2017-08-28 03:36:02 +02:00
|
|
|
# Provide special commands for blocklists which may need them
|
2017-07-27 04:34:35 +02:00
|
|
|
case "${domain}" in
|
|
|
|
"pgl.yoyo.org") cmd_ext="-d mimetype=plaintext -d hostformat=hosts";;
|
|
|
|
*) cmd_ext="";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ "${skipDownload}" == false ]]; then
|
2017-09-15 14:39:17 +02:00
|
|
|
echo -e " ${INFO} Target: ${domain} (${url##*/})"
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_DownloadBlocklistFromUrl "${url}" "${cmd_ext}" "${agent}"
|
2017-07-27 04:34:35 +02:00
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
done
|
2017-09-23 02:32:56 +02:00
|
|
|
gravity_Blackbody=true
|
2017-07-27 04:34:35 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 12:23:49 +02:00
|
|
|
# Download specified URL and perform checks on HTTP status and file content
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_DownloadBlocklistFromUrl() {
|
2017-09-15 14:39:17 +02:00
|
|
|
local url="${1}" cmd_ext="${2}" agent="${3}" heisenbergCompensator="" patternBuffer str httpCode success=""
|
2017-07-27 04:34:35 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Create temp file to store content on disk instead of RAM
|
|
|
|
patternBuffer=$(mktemp -p "/tmp" --suffix=".phgpb")
|
2017-08-28 03:36:02 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if $saveLocation has read permission
|
2017-11-21 18:35:58 +01:00
|
|
|
if [[ -r "${saveLocation}" && $url != "file"* ]]; then
|
2017-09-15 14:39:17 +02:00
|
|
|
# Have curl determine if a remote file has been modified since last retrieval
|
|
|
|
# Uses "Last-Modified" header, which certain web servers do not provide (e.g: raw github urls)
|
2017-11-21 18:35:58 +01:00
|
|
|
# Note: Don't do this for local files, always download them
|
2017-07-27 04:34:35 +02:00
|
|
|
heisenbergCompensator="-z ${saveLocation}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
str="Status:"
|
|
|
|
echo -ne " ${INFO} ${str} Pending..."
|
2018-08-12 01:15:42 +02:00
|
|
|
blocked=false
|
|
|
|
case $BLOCKINGMODE in
|
|
|
|
"IP-NODATA-AAAA"|"IP")
|
|
|
|
if [[ $(dig "${domain}" +short | grep "${IPV4_ADDRESS}" -c) -ge 1 ]]; then
|
|
|
|
blocked=true
|
|
|
|
fi;;
|
|
|
|
"NXDOMAIN")
|
|
|
|
if [[ $(dig "${domain}" | grep "NXDOMAIN" -c) -ge 1 ]]; then
|
|
|
|
blocked=true
|
|
|
|
fi;;
|
2018-09-30 21:00:06 +02:00
|
|
|
"NULL"|*)
|
2018-08-12 01:15:42 +02:00
|
|
|
if [[ $(dig "${domain}" +short | grep "0.0.0.0" -c) -ge 1 ]]; then
|
|
|
|
blocked=true
|
|
|
|
fi;;
|
|
|
|
esac
|
|
|
|
|
2018-09-30 21:00:06 +02:00
|
|
|
if [[ "${blocked}" == true ]]; then
|
2018-11-13 02:21:34 +01:00
|
|
|
printf -v ip_addr "%s" "${PIHOLE_DNS_1%#*}"
|
2018-11-13 02:15:24 +01:00
|
|
|
if [[ ${PIHOLE_DNS_1} != *"#"* ]]; then
|
|
|
|
port=53
|
|
|
|
else
|
2018-11-13 02:21:34 +01:00
|
|
|
printf -v port "%s" "${PIHOLE_DNS_1#*#}"
|
2018-11-13 02:15:24 +01:00
|
|
|
fi
|
|
|
|
ip=$(dig "@${ip_addr}" -p "${port}" +short "${domain}")
|
2018-08-12 01:15:42 +02:00
|
|
|
if [[ $(echo "${url}" | awk -F '://' '{print $1}') = "https" ]]; then
|
2018-08-11 14:33:33 +02:00
|
|
|
port=443;
|
2018-08-12 01:15:42 +02:00
|
|
|
else port=80
|
2018-08-11 14:33:33 +02:00
|
|
|
fi
|
2018-08-12 01:15:42 +02:00
|
|
|
bad_list=$(pihole -q -adlist hosts-file.net | head -n1 | awk -F 'Match found in ' '{print $2}')
|
2018-09-30 21:00:06 +02:00
|
|
|
echo -e "${OVER} ${CROSS} ${str} ${domain} is blocked by ${bad_list%:}. Using DNS on ${PIHOLE_DNS_1} to download ${url}";
|
2018-08-11 14:33:33 +02:00
|
|
|
echo -ne " ${INFO} ${str} Pending..."
|
|
|
|
cmd_ext="--resolve $domain:$port:$ip $cmd_ext"
|
|
|
|
fi
|
2017-07-27 04:34:35 +02:00
|
|
|
# shellcheck disable=SC2086
|
|
|
|
httpCode=$(curl -s -L ${cmd_ext} ${heisenbergCompensator} -w "%{http_code}" -A "${agent}" "${url}" -o "${patternBuffer}" 2> /dev/null)
|
|
|
|
|
2017-11-21 18:30:40 +01:00
|
|
|
case $url in
|
2018-07-02 11:59:22 +02:00
|
|
|
# Did we "download" a local file?
|
|
|
|
"file"*)
|
|
|
|
if [[ -s "${patternBuffer}" ]]; then
|
|
|
|
echo -e "${OVER} ${TICK} ${str} Retrieval successful"; success=true
|
|
|
|
else
|
|
|
|
echo -e "${OVER} ${CROSS} ${str} Not found / empty list"
|
|
|
|
fi;;
|
2017-11-21 18:30:40 +01:00
|
|
|
# Did we "download" a remote file?
|
2018-07-02 11:59:22 +02:00
|
|
|
*)
|
2017-11-21 18:30:40 +01:00
|
|
|
# Determine "Status:" output based on HTTP response
|
|
|
|
case "${httpCode}" in
|
|
|
|
"200") echo -e "${OVER} ${TICK} ${str} Retrieval successful"; success=true;;
|
|
|
|
"304") echo -e "${OVER} ${TICK} ${str} No changes detected"; success=true;;
|
|
|
|
"000") echo -e "${OVER} ${CROSS} ${str} Connection Refused";;
|
|
|
|
"403") echo -e "${OVER} ${CROSS} ${str} Forbidden";;
|
|
|
|
"404") echo -e "${OVER} ${CROSS} ${str} Not found";;
|
|
|
|
"408") echo -e "${OVER} ${CROSS} ${str} Time-out";;
|
|
|
|
"451") echo -e "${OVER} ${CROSS} ${str} Unavailable For Legal Reasons";;
|
|
|
|
"500") echo -e "${OVER} ${CROSS} ${str} Internal Server Error";;
|
|
|
|
"504") echo -e "${OVER} ${CROSS} ${str} Connection Timed Out (Gateway)";;
|
|
|
|
"521") echo -e "${OVER} ${CROSS} ${str} Web Server Is Down (Cloudflare)";;
|
|
|
|
"522") echo -e "${OVER} ${CROSS} ${str} Connection Timed Out (Cloudflare)";;
|
2018-07-02 11:59:22 +02:00
|
|
|
* ) echo -e "${OVER} ${CROSS} ${str} ${url} (${httpCode})";;
|
2017-11-21 18:30:40 +01:00
|
|
|
esac;;
|
2017-07-27 04:34:35 +02:00
|
|
|
esac
|
|
|
|
|
|
|
|
# Determine if the blocklist was downloaded and saved correctly
|
2017-09-15 14:39:17 +02:00
|
|
|
if [[ "${success}" == true ]]; then
|
2017-07-27 04:34:35 +02:00
|
|
|
if [[ "${httpCode}" == "304" ]]; then
|
2017-09-14 12:23:49 +02:00
|
|
|
: # Do not attempt to re-parse file
|
|
|
|
# Check if $patternbuffer is a non-zero length file
|
2017-07-27 04:34:35 +02:00
|
|
|
elif [[ -s "${patternBuffer}" ]]; then
|
|
|
|
# Determine if blocklist is non-standard and parse as appropriate
|
|
|
|
gravity_ParseFileIntoDomains "${patternBuffer}" "${saveLocation}"
|
|
|
|
else
|
2017-09-14 12:23:49 +02:00
|
|
|
# Fall back to previously cached list if $patternBuffer is empty
|
2017-11-21 18:35:58 +01:00
|
|
|
echo -e " ${INFO} Received empty file: ${COL_LIGHT_GREEN}using previously cached list${COL_NC}"
|
2017-07-27 04:34:35 +02:00
|
|
|
fi
|
|
|
|
else
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if cached list has read permission
|
2017-07-27 04:34:35 +02:00
|
|
|
if [[ -r "${saveLocation}" ]]; then
|
|
|
|
echo -e " ${CROSS} List download failed: ${COL_LIGHT_GREEN}using previously cached list${COL_NC}"
|
|
|
|
else
|
|
|
|
echo -e " ${CROSS} List download failed: ${COL_LIGHT_RED}no cached list available${COL_NC}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Parse source files into domains format
|
2017-07-27 04:34:35 +02:00
|
|
|
gravity_ParseFileIntoDomains() {
|
2017-12-12 13:36:09 +01:00
|
|
|
local source="${1}" destination="${2}" firstLine abpFilter
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if we are parsing a consolidated list
|
2017-07-24 13:24:34 +02:00
|
|
|
if [[ "${source}" == "${piholeDir}/${matterAndLight}" ]]; then
|
2017-12-12 13:36:09 +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
|
2018-06-03 19:33:33 +02: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 right field (the domain) and leave
|
|
|
|
# the left (IP address), otherwise grab the single field.
|
2017-12-12 13:45:25 +01:00
|
|
|
|
2019-02-06 19:09:09 +01:00
|
|
|
< "${source}" awk -F '#' '{print $1}' | \
|
2017-12-12 13:36:09 +01:00
|
|
|
awk -F '/' '{print $1}' | \
|
|
|
|
awk '($1 !~ /^#/) { if (NF>1) {print $2} else {print $1}}' | \
|
2019-02-06 19:09:09 +01:00
|
|
|
sed -nr -e 's/\.{2,}/./g' -e '/\./p' > "${destination}"
|
2017-09-15 14:39:17 +02:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Individual file parsing: Keep comments, while parsing domains from each line
|
|
|
|
# We keep comments to respect the list maintainer's licensing
|
|
|
|
read -r firstLine < "${source}"
|
|
|
|
|
|
|
|
# Determine how to parse individual source file formats
|
|
|
|
if [[ "${firstLine,,}" =~ (adblock|ublock|^!) ]]; then
|
|
|
|
# Compare $firstLine against lower case words found in Adblock lists
|
2017-09-18 09:36:03 +02:00
|
|
|
echo -ne " ${INFO} Format: Adblock"
|
2017-09-15 14:39:17 +02:00
|
|
|
|
|
|
|
# Define symbols used as comments: [!
|
|
|
|
# "||.*^" includes the "Example 2" domains we can extract
|
2017-09-19 20:02:50 +02:00
|
|
|
# https://adblockplus.org/filter-cheatsheet
|
2017-09-15 14:39:17 +02:00
|
|
|
abpFilter="/^(\\[|!)|^(\\|\\|.*\\^)/"
|
|
|
|
|
|
|
|
# Parse Adblock lists by extracting "Example 2" domains
|
|
|
|
# Logic: Ignore lines which do not include comments or domain name anchor
|
|
|
|
awk ''"${abpFilter}"' {
|
|
|
|
# Remove valid adblock type options
|
2017-09-18 09:36:03 +02:00
|
|
|
gsub(/\$?~?(important|third-party|popup|subdocument|websocket),?/, "", $0)
|
|
|
|
# Remove starting domain name anchor "||" and ending seperator "^"
|
|
|
|
gsub(/^(\|\|)|(\^)/, "", $0)
|
|
|
|
# Remove invalid characters (*/,=$)
|
|
|
|
if($0 ~ /[*\/,=\$]/) { $0="" }
|
|
|
|
# Remove lines which are only IPv4 addresses
|
|
|
|
if($0 ~ /^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$/) { $0="" }
|
2017-09-15 14:39:17 +02:00
|
|
|
if($0) { print $0 }
|
2017-09-18 09:36:03 +02:00
|
|
|
}' "${source}" > "${destination}"
|
|
|
|
|
|
|
|
# Determine if there are Adblock exception rules
|
|
|
|
# https://adblockplus.org/filters
|
|
|
|
if grep -q "^@@||" "${source}" &> /dev/null; then
|
|
|
|
# Parse Adblock lists by extracting exception rules
|
|
|
|
# Logic: Ignore lines which do not include exception format "@@||example.com^"
|
|
|
|
awk -F "[|^]" '/^@@\|\|.*\^/ {
|
|
|
|
# Remove valid adblock type options
|
|
|
|
gsub(/\$?~?(third-party)/, "", $0)
|
|
|
|
# Remove invalid characters (*/,=$)
|
|
|
|
if($0 ~ /[*\/,=\$]/) { $0="" }
|
|
|
|
if($3) { print $3 }
|
|
|
|
}' "${source}" > "${destination}.exceptionsFile.tmp"
|
|
|
|
|
|
|
|
# Remove exceptions
|
2018-01-28 01:50:15 +01:00
|
|
|
comm -23 "${destination}" <(sort "${destination}.exceptionsFile.tmp") > "${source}"
|
2017-09-18 09:36:03 +02:00
|
|
|
mv "${source}" "${destination}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -e "${OVER} ${TICK} Format: Adblock"
|
2017-09-15 14:39:17 +02:00
|
|
|
elif grep -q "^address=/" "${source}" &> /dev/null; then
|
2017-09-14 12:23:49 +02:00
|
|
|
# Parse Dnsmasq format lists
|
2017-09-18 09:36:03 +02:00
|
|
|
echo -e " ${CROSS} Format: Dnsmasq (list type not supported)"
|
|
|
|
elif grep -q -E "^https?://" "${source}" &> /dev/null; then
|
|
|
|
# Parse URL list if source file contains "http://" or "https://"
|
2017-09-15 14:39:17 +02:00
|
|
|
# Scanning for "^IPv4$" is too slow with large (1M) lists on low-end hardware
|
2017-09-18 09:36:03 +02:00
|
|
|
echo -ne " ${INFO} Format: URL"
|
2017-09-15 14:39:17 +02:00
|
|
|
|
2018-03-07 06:44:29 +01:00
|
|
|
awk '
|
2018-03-07 06:48:12 +01:00
|
|
|
# Remove URL scheme, optional "username:password@", and ":?/;"
|
|
|
|
# The scheme must be matched carefully to avoid blocking the wrong URL
|
|
|
|
# in cases like:
|
|
|
|
# http://www.evil.com?http://www.good.com
|
|
|
|
# See RFC 3986 section 3.1 for details.
|
|
|
|
/[:?\/;]/ { gsub(/(^[a-zA-Z][a-zA-Z0-9+.-]*:\/\/(.*:.*@)?|[:?\/;].*)/, "", $0) }
|
2018-03-07 06:44:29 +01:00
|
|
|
# Skip lines which are only IPv4 addresses
|
|
|
|
/^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$/ { next }
|
|
|
|
# Print if nonempty
|
2018-03-07 06:48:12 +01:00
|
|
|
length { print }
|
2018-03-07 06:44:29 +01:00
|
|
|
' "${source}" 2> /dev/null > "${destination}"
|
2017-09-18 09:36:03 +02:00
|
|
|
|
|
|
|
echo -e "${OVER} ${TICK} Format: URL"
|
2017-09-15 14:39:17 +02:00
|
|
|
else
|
|
|
|
# Default: Keep hosts/domains file in same format as it was downloaded
|
|
|
|
output=$( { mv "${source}" "${destination}"; } 2>&1 )
|
|
|
|
|
|
|
|
if [[ ! -e "${destination}" ]]; then
|
2017-09-24 03:57:15 +02:00
|
|
|
echo -e "\\n ${CROSS} Unable to move tmp file to ${piholeDir}
|
2017-09-15 14:39:17 +02:00
|
|
|
${output}"
|
|
|
|
gravity_Cleanup "error"
|
2017-03-31 20:16:09 +02:00
|
|
|
fi
|
2017-07-24 13:24:34 +02:00
|
|
|
fi
|
2015-11-23 09:36:01 +01:00
|
|
|
}
|
2015-11-23 08:49:38 +01:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Create (unfiltered) "Matter and Light" consolidated list
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_ConsolidateDownloadedBlocklists() {
|
2017-07-24 13:24:34 +02:00
|
|
|
local str lastLine
|
|
|
|
|
|
|
|
str="Consolidating blocklists"
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ "${haveSourceUrls}" == true ]]; then
|
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
fi
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Empty $matterAndLight if it already exists, otherwise, create it
|
|
|
|
: > "${piholeDir}/${matterAndLight}"
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Loop through each *.domains file
|
2017-06-21 13:49:05 +02:00
|
|
|
for i in "${activeDomains[@]}"; do
|
2017-09-15 14:39:17 +02:00
|
|
|
# Determine if file has read permissions, as download might have failed
|
2017-06-21 13:49:05 +02:00
|
|
|
if [[ -r "${i}" ]]; then
|
2017-09-26 07:25:47 +02:00
|
|
|
# Remove windows CRs from file, convert list to lower case, and append into $matterAndLight
|
2017-09-26 03:53:07 +02:00
|
|
|
tr -d '\r' < "${i}" | tr '[:upper:]' '[:lower:]' >> "${piholeDir}/${matterAndLight}"
|
2018-06-25 01:06:55 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Ensure that the first line of a new list is on a new line
|
2018-06-25 01:06:55 +02:00
|
|
|
lastLine=$(tail -1 "${piholeDir}/${matterAndLight}")
|
2017-09-15 14:39:17 +02:00
|
|
|
if [[ "${#lastLine}" -gt 0 ]]; then
|
|
|
|
echo "" >> "${piholeDir}/${matterAndLight}"
|
|
|
|
fi
|
2017-06-21 13:49:05 +02:00
|
|
|
fi
|
|
|
|
done
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ "${haveSourceUrls}" == true ]]; then
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
fi
|
2015-11-27 00:48:52 +01:00
|
|
|
}
|
2015-05-19 20:31:37 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Parse consolidated list into (filtered, unique) domains-only format
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_SortAndFilterConsolidatedList() {
|
2017-07-27 04:34:35 +02:00
|
|
|
local str num
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
str="Extracting domains from blocklists"
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ "${haveSourceUrls}" == true ]]; then
|
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
fi
|
2017-07-27 04:34:35 +02:00
|
|
|
|
2019-02-03 13:21:26 +01:00
|
|
|
# Parse into file
|
2017-07-27 04:34:35 +02:00
|
|
|
gravity_ParseFileIntoDomains "${piholeDir}/${matterAndLight}" "${piholeDir}/${parsedMatter}"
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Format $parsedMatter line total as currency
|
2017-07-27 04:34:35 +02:00
|
|
|
num=$(printf "%'.0f" "$(wc -l < "${piholeDir}/${parsedMatter}")")
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ "${haveSourceUrls}" == true ]]; then
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
fi
|
|
|
|
echo -e " ${INFO} Number of domains being pulled in by gravity: ${COL_BLUE}${num}${COL_NC}"
|
2017-07-27 04:34:35 +02:00
|
|
|
|
|
|
|
str="Removing duplicate domains"
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ "${haveSourceUrls}" == true ]]; then
|
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
fi
|
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
sort -u "${piholeDir}/${parsedMatter}" > "${piholeDir}/${preEventHorizon}"
|
|
|
|
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ "${haveSourceUrls}" == true ]]; then
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
# Format $preEventHorizon line total as currency
|
|
|
|
num=$(printf "%'.0f" "$(wc -l < "${piholeDir}/${preEventHorizon}")")
|
|
|
|
echo -e " ${INFO} Number of unique domains trapped in the Event Horizon: ${COL_BLUE}${num}${COL_NC}"
|
|
|
|
fi
|
2017-01-29 13:46:27 +01:00
|
|
|
}
|
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Whitelist user-defined domains
|
|
|
|
gravity_Whitelist() {
|
2017-12-16 14:55:52 +01:00
|
|
|
local num str
|
2017-06-21 13:49:05 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
if [[ ! -f "${whitelistFile}" ]]; then
|
2017-06-21 13:49:05 +02:00
|
|
|
echo -e " ${INFO} Nothing to whitelist!"
|
2017-09-15 14:39:17 +02:00
|
|
|
return 0
|
2017-06-21 13:49:05 +02:00
|
|
|
fi
|
2017-09-15 14:39:17 +02:00
|
|
|
|
|
|
|
num=$(wc -l < "${whitelistFile}")
|
2017-12-16 14:55:52 +01:00
|
|
|
str="Number of whitelisted domains: ${num}"
|
2017-09-15 14:39:17 +02:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
|
|
|
|
2017-12-18 21:14:53 +01:00
|
|
|
echo -e "${OVER} ${INFO} ${str}"
|
2015-11-23 10:16:00 +01:00
|
|
|
}
|
|
|
|
|
2018-06-17 14:26:57 +02:00
|
|
|
# Output count of blacklisted domains and regex filters
|
2017-07-27 04:34:35 +02:00
|
|
|
gravity_ShowBlockCount() {
|
2017-12-16 14:55:52 +01:00
|
|
|
local num
|
2017-06-21 13:49:05 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
if [[ -f "${blacklistFile}" ]]; then
|
|
|
|
num=$(printf "%'.0f" "$(wc -l < "${blacklistFile}")")
|
2017-12-16 14:55:52 +01:00
|
|
|
echo -e " ${INFO} Number of blacklisted domains: ${num}"
|
2017-07-27 04:34:35 +02:00
|
|
|
fi
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2018-06-17 14:26:57 +02:00
|
|
|
if [[ -f "${regexFile}" ]]; then
|
2018-08-07 18:36:06 +02:00
|
|
|
num=$(grep -cv "^#" "${regexFile}")
|
2018-06-17 14:26:57 +02:00
|
|
|
echo -e " ${INFO} Number of regex filters: ${num}"
|
2017-07-27 04:34:35 +02:00
|
|
|
fi
|
2019-02-03 15:13:18 +01:00
|
|
|
|
|
|
|
# Store regex files in gravity database
|
2019-04-24 19:55:05 +02:00
|
|
|
database_table_from_file "regex" "${regexFile}"
|
2015-11-23 12:11:16 +01:00
|
|
|
}
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
# Parse list of domains into hosts format
|
|
|
|
gravity_ParseDomainsIntoHosts() {
|
2017-09-15 14:39:17 +02:00
|
|
|
awk -v ipv4="$IPV4_ADDRESS" -v ipv6="$IPV6_ADDRESS" '{
|
|
|
|
# Remove windows CR line endings
|
|
|
|
sub(/\r$/, "")
|
|
|
|
# Parse each line as "ipaddr domain"
|
|
|
|
if(ipv6 && ipv4) {
|
|
|
|
print ipv4" "$0"\n"ipv6" "$0
|
|
|
|
} else if(!ipv6) {
|
|
|
|
print ipv4" "$0
|
|
|
|
} else {
|
|
|
|
print ipv6" "$0
|
|
|
|
}
|
|
|
|
}' >> "${2}" < "${1}"
|
2017-06-17 13:50:10 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 08:39:30 +02:00
|
|
|
# Create "localhost" entries into hosts format
|
2017-07-24 13:24:34 +02:00
|
|
|
gravity_ParseLocalDomains() {
|
2017-07-27 04:34:35 +02:00
|
|
|
local hostname
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
if [[ -s "/etc/hostname" ]]; then
|
2017-07-24 13:24:34 +02:00
|
|
|
hostname=$(< "/etc/hostname")
|
2017-09-14 08:39:30 +02:00
|
|
|
elif command -v hostname &> /dev/null; then
|
2017-06-21 13:49:05 +02:00
|
|
|
hostname=$(hostname -f)
|
|
|
|
else
|
|
|
|
echo -e " ${CROSS} Unable to determine fully qualified domain name of host"
|
2017-09-15 14:39:17 +02:00
|
|
|
return 0
|
2017-06-21 13:49:05 +02:00
|
|
|
fi
|
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
echo -e "${hostname}\\npi.hole" > "${localList}.tmp"
|
2017-09-15 14:39:17 +02:00
|
|
|
|
|
|
|
# Empty $localList if it already exists, otherwise, create it
|
|
|
|
: > "${localList}"
|
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
gravity_ParseDomainsIntoHosts "${localList}.tmp" "${localList}"
|
2017-09-14 08:39:30 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Add additional LAN hosts provided by OpenVPN (if available)
|
2017-09-14 08:39:30 +02:00
|
|
|
if [[ -f "${VPNList}" ]]; then
|
2017-09-30 13:03:49 +02:00
|
|
|
awk -F, '{printf $2"\t"$1".vpn\n"}' "${VPNList}" >> "${localList}"
|
2017-09-14 08:39:30 +02:00
|
|
|
fi
|
2017-06-17 13:57:27 +02:00
|
|
|
}
|
2016-04-02 02:19:47 +02:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
# Create primary blacklist entries
|
|
|
|
gravity_ParseBlacklistDomains() {
|
2017-07-27 04:34:35 +02:00
|
|
|
local output status
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2019-02-03 13:21:26 +01:00
|
|
|
# Store gravity domains in gravity database
|
2019-04-24 19:55:05 +02:00
|
|
|
database_table_from_file "gravity" "${piholeDir}/${preEventHorizon}"
|
2017-06-17 13:57:27 +02:00
|
|
|
}
|
2017-06-17 13:50:10 +02:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
# Create user-added blacklist entries
|
|
|
|
gravity_ParseUserDomains() {
|
2017-09-15 14:39:17 +02:00
|
|
|
if [[ ! -f "${blacklistFile}" ]]; then
|
|
|
|
return 0
|
2017-06-17 14:24:30 +02:00
|
|
|
fi
|
2019-02-03 13:21:26 +01:00
|
|
|
|
|
|
|
# Fill database table
|
2019-04-24 19:55:05 +02:00
|
|
|
database_table_from_file "blacklist" "${blacklistFile}"
|
2015-11-23 12:11:16 +01:00
|
|
|
}
|
2015-11-27 00:48:52 +01:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
# Trap Ctrl-C
|
|
|
|
gravity_Trap() {
|
|
|
|
trap '{ echo -e "\\n\\n ${INFO} ${COL_LIGHT_RED}User-abort detected${COL_NC}"; gravity_Cleanup "error"; }' INT
|
2015-12-26 19:37:51 +01:00
|
|
|
}
|
2015-12-05 04:41:37 +01:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Clean up after Gravity upon exit or cancellation
|
2017-07-24 13:24:34 +02:00
|
|
|
gravity_Cleanup() {
|
|
|
|
local error="${1:-}"
|
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
str="Cleaning up stray matter"
|
2017-07-24 13:24:34 +02:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
2017-06-21 13:49:05 +02:00
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Delete tmp content generated by Gravity
|
2017-07-24 13:24:34 +02:00
|
|
|
rm ${piholeDir}/pihole.*.txt 2> /dev/null
|
|
|
|
rm ${piholeDir}/*.tmp 2> /dev/null
|
2017-09-15 14:39:17 +02:00
|
|
|
rm /tmp/*.phgpb 2> /dev/null
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2018-01-14 21:38:39 +01:00
|
|
|
# Ensure this function only runs when gravity_SetDownloadOptions() has completed
|
2017-09-23 02:32:56 +02:00
|
|
|
if [[ "${gravity_Blackbody:-}" == true ]]; then
|
2017-09-22 06:17:56 +02:00
|
|
|
# Remove any unused .domains files
|
|
|
|
for file in ${piholeDir}/*.${domainsExtension}; do
|
|
|
|
# If list is not in active array, then remove it
|
|
|
|
if [[ ! "${activeDomains[*]}" == *"${file}"* ]]; then
|
|
|
|
rm -f "${file}" 2> /dev/null || \
|
|
|
|
echo -e " ${CROSS} Failed to remove ${file##*/}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2017-06-21 13:49:05 +02:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
|
2019-02-03 16:44:05 +01:00
|
|
|
if ${optimize_database} ; then
|
|
|
|
str="Optimizing domains database"
|
|
|
|
echo -ne " ${INFO} ${str}..."
|
2019-02-05 19:08:08 +01:00
|
|
|
# Run VACUUM command on database to optimize it
|
2019-02-03 16:44:05 +01:00
|
|
|
output=$( { sqlite3 "${gravityDBfile}" <<< "VACUUM;"; } 2>&1 )
|
|
|
|
status="$?"
|
2019-02-03 13:04:31 +01:00
|
|
|
|
2019-02-03 16:44:05 +01:00
|
|
|
if [[ "${status}" -ne 0 ]]; then
|
|
|
|
echo -e "\\n ${CROSS} Unable to optimize gravity database ${gravityDBfile}\\n ${output}"
|
2019-02-03 17:05:00 +01:00
|
|
|
error="error"
|
2019-02-03 16:44:05 +01:00
|
|
|
else
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
|
|
|
fi
|
2019-02-03 13:04:31 +01:00
|
|
|
fi
|
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
# Only restart DNS service if offline
|
2018-02-26 17:26:51 +01:00
|
|
|
if ! pidof ${resolver} &> /dev/null; then
|
2017-07-24 13:24:34 +02:00
|
|
|
"${PIHOLE_COMMAND}" restartdns
|
2017-09-14 12:23:49 +02:00
|
|
|
dnsWasOffline=true
|
2017-07-24 13:24:34 +02:00
|
|
|
fi
|
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Print Pi-hole status if an error occured
|
2017-08-28 03:36:02 +02:00
|
|
|
if [[ -n "${error}" ]]; then
|
2017-07-24 13:24:34 +02:00
|
|
|
"${PIHOLE_COMMAND}" status
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-11-06 03:11:34 +01:00
|
|
|
}
|
2015-08-23 06:44:41 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
helpFunc() {
|
|
|
|
echo "Usage: pihole -g
|
|
|
|
Update domains from blocklists specified in adlists.list
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-f, --force Force the download of all specified blocklists
|
|
|
|
-h, --help Show this help dialog"
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2016-10-22 08:02:45 +02:00
|
|
|
for var in "$@"; do
|
2017-06-21 13:49:05 +02:00
|
|
|
case "${var}" in
|
2017-07-24 13:24:34 +02:00
|
|
|
"-f" | "--force" ) forceDelete=true;;
|
2019-02-03 17:01:38 +01:00
|
|
|
"-o" | "--optimize" ) optimize_database=true;;
|
2017-07-24 13:24:34 +02:00
|
|
|
"-h" | "--help" ) helpFunc;;
|
|
|
|
"-sd" | "--skip-download" ) skipDownload=true;;
|
2019-02-03 17:01:38 +01:00
|
|
|
"-b" | "--blacklist-only" ) listType="blacklist";;
|
|
|
|
"-w" | "--whitelist-only" ) listType="whitelist";;
|
|
|
|
"-wild" | "--wildcard-only" ) listType="wildcard"; dnsRestartType="restart";;
|
2017-06-21 13:49:05 +02:00
|
|
|
esac
|
2016-08-17 20:08:55 +02:00
|
|
|
done
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
# Trap Ctrl-C
|
2017-07-24 13:24:34 +02:00
|
|
|
gravity_Trap
|
|
|
|
|
2019-04-24 19:55:05 +02:00
|
|
|
# Move possibly existing legacy files to the gravity database
|
|
|
|
migrate_to_database
|
|
|
|
|
2017-09-15 14:39:17 +02:00
|
|
|
if [[ "${forceDelete:-}" == true ]]; then
|
2017-09-18 09:36:03 +02:00
|
|
|
str="Deleting existing list cache"
|
2017-06-21 13:49:05 +02:00
|
|
|
echo -ne "${INFO} ${str}..."
|
|
|
|
|
2017-09-18 09:36:03 +02:00
|
|
|
rm /etc/pihole/list.* 2> /dev/null || true
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
2016-08-17 20:08:55 +02:00
|
|
|
fi
|
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Determine which functions to run
|
|
|
|
if [[ "${skipDownload}" == false ]]; then
|
|
|
|
# Gravity needs to download blocklists
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_CheckDNSResolutionAvailable
|
|
|
|
gravity_GetBlocklistUrls
|
2018-04-30 22:45:03 +02:00
|
|
|
if [[ "${haveSourceUrls}" == true ]]; then
|
|
|
|
gravity_SetDownloadOptions
|
|
|
|
fi
|
2018-01-14 21:38:39 +01:00
|
|
|
gravity_ConsolidateDownloadedBlocklists
|
|
|
|
gravity_SortAndFilterConsolidatedList
|
2017-07-27 04:34:35 +02:00
|
|
|
else
|
|
|
|
# Gravity needs to modify Blacklist/Whitelist/Wildcards
|
|
|
|
echo -e " ${INFO} Using cached Event Horizon list..."
|
|
|
|
numberOf=$(printf "%'.0f" "$(wc -l < "${piholeDir}/${preEventHorizon}")")
|
2017-09-20 14:25:33 +02:00
|
|
|
echo -e " ${INFO} ${COL_BLUE}${numberOf}${COL_NC} unique domains trapped in the Event Horizon"
|
2017-07-27 04:34:35 +02:00
|
|
|
fi
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Perform when downloading blocklists, or modifying the whitelist
|
|
|
|
if [[ "${skipDownload}" == false ]] || [[ "${listType}" == "whitelist" ]]; then
|
2017-06-17 13:57:27 +02:00
|
|
|
gravity_Whitelist
|
2016-10-20 00:52:54 +02:00
|
|
|
fi
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2018-06-17 14:26:57 +02:00
|
|
|
convert_wildcard_to_regex
|
2017-07-27 04:34:35 +02:00
|
|
|
gravity_ShowBlockCount
|
2016-10-20 00:15:05 +02:00
|
|
|
|
2017-09-21 18:23:43 +02:00
|
|
|
# Perform when downloading blocklists, or modifying the white/blacklist (not wildcards)
|
|
|
|
if [[ "${skipDownload}" == false ]] || [[ "${listType}" == *"list" ]]; then
|
2019-02-03 13:04:31 +01:00
|
|
|
str="Parsing domains"
|
2017-07-27 04:34:35 +02:00
|
|
|
echo -ne " ${INFO} ${str}..."
|
2017-07-24 13:24:34 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
gravity_ParseUserDomains
|
2017-06-17 13:57:27 +02:00
|
|
|
|
2017-07-27 04:34:35 +02:00
|
|
|
# Perform when downloading blocklists
|
2017-09-15 14:39:17 +02:00
|
|
|
if [[ ! "${listType:-}" == "blacklist" ]]; then
|
2017-07-27 04:34:35 +02:00
|
|
|
gravity_ParseLocalDomains
|
|
|
|
gravity_ParseBlacklistDomains
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -e "${OVER} ${TICK} ${str}"
|
2016-10-20 00:15:05 +02:00
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
gravity_Cleanup
|
2017-06-17 13:57:27 +02:00
|
|
|
fi
|
|
|
|
|
2017-07-24 13:24:34 +02:00
|
|
|
echo ""
|
2017-09-14 12:23:49 +02:00
|
|
|
|
|
|
|
# Determine if DNS has been restarted by this instance of gravity
|
|
|
|
if [[ -z "${dnsWasOffline:-}" ]]; then
|
|
|
|
# Use "force-reload" when restarting dnsmasq for everything but Wildcards
|
2017-09-15 14:39:17 +02:00
|
|
|
"${PIHOLE_COMMAND}" restartdns "${dnsRestartType:-force-reload}"
|
2017-09-14 12:23:49 +02:00
|
|
|
fi
|
2017-03-12 23:15:23 +01:00
|
|
|
"${PIHOLE_COMMAND}" status
|