2019-05-30 19:23:15 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# shellcheck disable=SC1090
|
|
|
|
|
|
|
|
# Pi-hole: A black hole for Internet advertisements
|
|
|
|
# (c) 2019 Pi-hole, LLC (https://pi-hole.net)
|
|
|
|
# Network-wide ad blocking via your own hardware.
|
|
|
|
#
|
|
|
|
# ARP table interaction
|
|
|
|
#
|
|
|
|
# This file is copyright under the latest version of the EUPL.
|
|
|
|
# Please see LICENSE file for your rights under this license.
|
|
|
|
|
|
|
|
coltable="/opt/pihole/COL_TABLE"
|
|
|
|
if [[ -f ${coltable} ]]; then
|
|
|
|
source ${coltable}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Determine database location
|
|
|
|
# Obtain DBFILE=... setting from pihole-FTL.db
|
|
|
|
# Constructed to return nothing when
|
|
|
|
# a) the setting is not present in the config file, or
|
|
|
|
# b) the setting is commented out (e.g. "#DBFILE=...")
|
|
|
|
FTLconf="/etc/pihole/pihole-FTL.conf"
|
|
|
|
if [ -e "$FTLconf" ]; then
|
|
|
|
DBFILE="$(sed -n -e 's/^\s*DBFILE\s*=\s*//p' ${FTLconf})"
|
|
|
|
fi
|
|
|
|
# Test for empty string. Use standard path in this case.
|
|
|
|
if [ -z "$DBFILE" ]; then
|
|
|
|
DBFILE="/etc/pihole/pihole-FTL.db"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
flushARP(){
|
|
|
|
local output
|
2019-05-31 06:42:22 +00:00
|
|
|
if [[ "${args[1]}" != "quiet" ]]; then
|
2019-05-30 19:23:15 +00:00
|
|
|
echo -ne " ${INFO} Flushing network table ..."
|
|
|
|
fi
|
|
|
|
|
2019-06-15 07:15:12 +00:00
|
|
|
# Truncate network_addresses table in pihole-FTL.db
|
|
|
|
# This needs to be done before we can truncate the network table due to
|
2021-01-19 18:33:38 +00:00
|
|
|
# foreign key constraints
|
2022-01-30 09:42:13 +00:00
|
|
|
if ! output=$(pihole-FTL sqlite3 "${DBFILE}" "DELETE FROM network_addresses" 2>&1); then
|
2019-06-15 07:15:12 +00:00
|
|
|
echo -e "${OVER} ${CROSS} Failed to truncate network_addresses table"
|
|
|
|
echo " Database location: ${DBFILE}"
|
|
|
|
echo " Output: ${output}"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2019-05-30 19:32:35 +00:00
|
|
|
# Truncate network table in pihole-FTL.db
|
2022-01-30 09:42:13 +00:00
|
|
|
if ! output=$(pihole-FTL sqlite3 "${DBFILE}" "DELETE FROM network" 2>&1); then
|
2019-05-30 19:23:15 +00:00
|
|
|
echo -e "${OVER} ${CROSS} Failed to truncate network table"
|
|
|
|
echo " Database location: ${DBFILE}"
|
|
|
|
echo " Output: ${output}"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2019-05-31 06:42:22 +00:00
|
|
|
if [[ "${args[1]}" != "quiet" ]]; then
|
2019-05-30 19:23:15 +00:00
|
|
|
echo -e "${OVER} ${TICK} Flushed network table"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
args=("$@")
|
|
|
|
|
|
|
|
case "${args[0]}" in
|
|
|
|
"arpflush" ) flushARP;;
|
|
|
|
esac
|