mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
User-friendly queryFunc() output (#1483)
* User-friendly queryFunc() output * Silence grep errors * Provide 'pihole -q -h' help output * Rewrite option handling * Loop through grep stdout to make query output user friendly * Add -adlist option to show block list URL instead of internal file name * Limit general searches to 10 matches per block list * Add -all option to override 10 match limit * Fixed 'pihole -h' wording * Further query optimisations * Optimised scanList() output by switching folder * Re-added processWildcards() function * Added "-bp" exact matching option for use with block page * Standardised query output * Separated wildcard search from blacklist/whitelist search * Optimised sorting by sorting glob output and not scanList() output * Fixed result skipping * Add text for wildcard result on exact query * Fix wildcard result output * Multiple wildcard matches on exact query could cause unexpected output * Remove unnecessary replacement * Make grep only output matching text * HOSTS format lists will also output the IP address * That substitution was necessary * Remove IP address from HOSTS format lists * Filter unwanted content * Add /dev/null to grep, to always print file name (even when searching only one block list) * Use three seds to remove unwanted content from block lists * Merge with development * Simplify queryFunc code
This commit is contained in:
parent
3631d1349e
commit
3a50b91722
1 changed files with 206 additions and 38 deletions
238
pihole
238
pihole
|
@ -87,10 +87,14 @@ scanList(){
|
||||||
domain="${1}"
|
domain="${1}"
|
||||||
list="${2}"
|
list="${2}"
|
||||||
method="${3}"
|
method="${3}"
|
||||||
if [[ ${method} == "-exact" ]] ; then
|
|
||||||
grep -i -E "(^|\s)${domain}($|\s)" "${list}"
|
# Switch folder, preventing grep from printing file path
|
||||||
|
cd "/etc/pihole" || return 1
|
||||||
|
|
||||||
|
if [[ -n "${method}" ]]; then
|
||||||
|
grep -i -E -l "(^|\s|\/)${domain}($|\s|\/)" ${list} /dev/null 2> /dev/null
|
||||||
else
|
else
|
||||||
grep -i "${domain}" "${list}"
|
grep -i "${domain}" ${list} /dev/null 2> /dev/null
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,46 +114,210 @@ processWildcards() {
|
||||||
}
|
}
|
||||||
|
|
||||||
queryFunc() {
|
queryFunc() {
|
||||||
domain="${2}"
|
options="$*"
|
||||||
|
options="${options/-q /}"
|
||||||
|
|
||||||
if [[ -z "${domain}" ]]; then
|
if [[ "${options}" == "-h" ]] || [[ "${options}" == "--help" ]]; then
|
||||||
echo -e " ${COL_LIGHT_RED}Invalid option${COL_NC}
|
echo "Usage: pihole -q [option] <domain>
|
||||||
Try 'pihole query --help' for more information."
|
Example: 'pihole -q -exact domain.com'
|
||||||
|
Query the adlists for a specified domain
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-adlist Print the name of the block list URL
|
||||||
|
-exact Search the block lists for exact domain matches
|
||||||
|
-all Return all query matches within a block list
|
||||||
|
-h, --help Show this help dialog"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "${options}" == *"-exact"* ]]; then
|
||||||
|
method="exact"
|
||||||
|
exact=true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "${options}" == *"-adlist"* ]]; then
|
||||||
|
adlist=true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "${options}" == *"-bp"* ]]; then
|
||||||
|
method="exact"
|
||||||
|
blockpage=true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "${options}" == *"-all"* ]]; then
|
||||||
|
all=true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Strip valid options, leaving only the domain and invalid options
|
||||||
|
options=$(sed 's/ \?-\(exact\|adlist\|bp\|all\) \?//g' <<< "$options")
|
||||||
|
|
||||||
|
# Handle errors
|
||||||
|
if [[ "${options}" == *" "* ]]; then
|
||||||
|
error=true
|
||||||
|
str="Unknown option specified"
|
||||||
|
elif [[ "${options}" == "-q" ]]; then
|
||||||
|
error=true
|
||||||
|
str="No domain specified"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${error}" ]]; then
|
||||||
|
echo -e " ${COL_LIGHT_RED}${str}${COL_NC}
|
||||||
|
Try 'pihole -q --help' for more information."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
method="${3}"
|
# If domain contains non ASCII characters, convert domain to punycode if python is available
|
||||||
lists=( /etc/pihole/list.* /etc/pihole/blacklist.txt)
|
# Cr: https://serverfault.com/a/335079
|
||||||
for list in ${lists[@]}; do
|
if [[ "$options" = *[![:ascii:]]* ]]; then
|
||||||
if [ -e "${list}" ]; then
|
if command -v python &> /dev/null; then
|
||||||
result=$(scanList ${domain} ${list} ${method})
|
query=$(python -c 'import sys;print sys.argv[1].decode("utf-8").encode("idna")' "${options}")
|
||||||
# Remove empty lines before couting number of results
|
|
||||||
count=$(sed '/^\s*$/d' <<< "$result" | wc -l)
|
|
||||||
echo "${list} (${count} results)"
|
|
||||||
if [[ ${count} > 0 ]]; then
|
|
||||||
echo "${result}"
|
|
||||||
fi
|
|
||||||
echo ""
|
|
||||||
else
|
|
||||||
echo -e " ${CROSS} List does not exist"
|
|
||||||
echo ""
|
|
||||||
fi
|
fi
|
||||||
done
|
else
|
||||||
|
query="${options}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Scan for possible wildcard matches
|
# Scan Whitelist and Blacklist
|
||||||
if [ -e "${wildcardlist}" ]; then
|
lists="whitelist.txt blacklist.txt"
|
||||||
local wildcards=($(processWildcards "${domain}"))
|
results=($(scanList "${query}" "${lists}" "${method}"))
|
||||||
for domain in ${wildcards[@]}; do
|
|
||||||
result=$(scanList "\/${domain}\/" ${wildcardlist})
|
if [[ -n "${results[*]}" ]]; then
|
||||||
# Remove empty lines before couting number of results
|
# Loop through each scanList line to print appropriate title
|
||||||
count=$(sed '/^\s*$/d' <<< "$result" | wc -l)
|
for result in "${results[@]}"; do
|
||||||
if [[ ${count} > 0 ]]; then
|
filename="${result/:*/}"
|
||||||
echo -e " ${TICK} Wildcard blocking ${domain} (${count} results)"
|
if [[ -n "$exact" ]]; then
|
||||||
echo "${result}"
|
printf " Exact result in %s\n" "${filename}"
|
||||||
echo ""
|
elif [[ -n "$blockpage" ]]; then
|
||||||
|
printf " [i] %s\n" "${filename}"
|
||||||
|
else
|
||||||
|
domain="${result/*:/}"
|
||||||
|
if [[ ! "${filename}" == "${filename_prev:-}" ]]; then
|
||||||
|
printf " Result from %s\n" "${filename}"
|
||||||
|
fi
|
||||||
|
printf " %s\n" "${domain}"
|
||||||
|
filename_prev="${filename}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Scan Wildcards
|
||||||
|
if [[ -e "${wildcardlist}" ]]; then
|
||||||
|
wildcards=($(processWildcards "${query}"))
|
||||||
|
|
||||||
|
for match in "${wildcards[@]}"; do
|
||||||
|
results=($(scanList "\/${match}\/" ${wildcardlist}))
|
||||||
|
|
||||||
|
if [[ -n "${results[*]}" ]]; then
|
||||||
|
# Remove empty lines before couting number of results
|
||||||
|
count=$(sed '/^\s*$/d' <<< "${results[@]}" | wc -l)
|
||||||
|
if [[ "${count}" -ge 0 ]]; then
|
||||||
|
blResult=true
|
||||||
|
if [[ -z "${blockpage}" ]]; then
|
||||||
|
printf " Wildcard result in %s\n" "${wildcardlist/*dnsmasq.d\/}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${blockpage}" ]]; then
|
||||||
|
echo " ${INFO} ${match}"
|
||||||
|
else
|
||||||
|
echo " *.${match}"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
[[ -n "${blResult}" ]] && [[ -n "${blockpage}" ]] && exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Glob *.domains file names, remove file paths and sort by list number
|
||||||
|
lists_raw=(/etc/pihole/*.domains)
|
||||||
|
IFS_OLD=$IFS
|
||||||
|
IFS=$'\n'
|
||||||
|
lists=$(sort -t . -k 2 -g <<< "${lists_raw[*]//\/etc\/pihole\//}")
|
||||||
|
|
||||||
|
# Scan Domains files
|
||||||
|
results=($(scanList "${query}" "${lists}" "${method}"))
|
||||||
|
|
||||||
|
# Handle notices
|
||||||
|
if [[ -z "${blResult}" ]] && [[ -z "${results[*]}" ]]; then
|
||||||
|
notice=true
|
||||||
|
str="No ${method/t/t }results found for ${query} found within block lists"
|
||||||
|
elif [[ -z "${all}" ]] && [[ "${#results[*]}" -ge 16000 ]]; then
|
||||||
|
# 16000 chars is 15 chars X 1000 lines worth of results
|
||||||
|
notice=true
|
||||||
|
str="Hundreds of ${method/t/t }results found for ${query}
|
||||||
|
This can be overriden using the -all option"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${notice}" ]]; then
|
||||||
|
echo -e " ${INFO} ${str}"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove unwanted content from results
|
||||||
|
if [[ -z "${method}" ]]; then
|
||||||
|
results=($(sed "/:#/d" <<< "${results[*]}")) # Lines starting with comments
|
||||||
|
results=($(sed "s/[ \t]#.*//g" <<< "${results[*]}")) # Comments after domain
|
||||||
|
results=($(sed "s/:.*[ \t]/:/g" <<< "${results[*]}")) # IP address
|
||||||
|
fi
|
||||||
|
IFS=$IFS_OLD
|
||||||
|
|
||||||
|
# Get adlist content as array
|
||||||
|
if [[ -n "${adlist}" ]] || [[ -n "${blockpage}" ]]; then
|
||||||
|
if [[ -f "/etc/pihole/adlists.list" ]]; then
|
||||||
|
for url in $(< /etc/pihole/adlists.list); do
|
||||||
|
if [[ "${url:0:4}" == "http" ]] || [[ "${url:0:3}" == "www" ]]; then
|
||||||
|
adlists+=("$url")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
else
|
||||||
|
echo -e " ${COL_LIGHT_RED}The file '/etc/pihole/adlists.list' was not found${COL_NC}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${results[*]}" ]]; then
|
||||||
|
if [[ -n "${exact}" ]]; then
|
||||||
|
echo " Exact result(s) for ${query} found in:"
|
||||||
|
fi
|
||||||
|
|
||||||
|
for result in "${results[@]}"; do
|
||||||
|
filename="${result/:*/}"
|
||||||
|
|
||||||
|
# Convert file name to URL name for -adlist or -bp options
|
||||||
|
if [[ -n "${adlist}" ]] || [[ -n "${blockpage}" ]]; then
|
||||||
|
filenum=("${filename/list./}")
|
||||||
|
filenum=("${filenum/.*/}")
|
||||||
|
filename="${adlists[$filenum]}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "${exact}" ]]; then
|
||||||
|
printf " %s\n" "${filename}"
|
||||||
|
elif [[ -n "${blockpage}" ]]; then
|
||||||
|
printf " [%s] %s\n" "${filenum}" "${filename}"
|
||||||
|
else # Standard query output
|
||||||
|
|
||||||
|
# Print filename heading once per file, not for every match
|
||||||
|
if [[ ! "${filename}" == "${filename_prev:-}" ]]; then
|
||||||
|
unset count
|
||||||
|
printf " Result from %s\n" "${filename}"
|
||||||
|
else
|
||||||
|
let count++
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Print matching domain if $max_count has not been reached
|
||||||
|
[[ -z "${all}" ]] && max_count="20"
|
||||||
|
if [[ -z "${all}" ]] && [[ "${count}" -eq "${max_count}" ]]; then
|
||||||
|
echo " Over $count results found, skipping rest of file"
|
||||||
|
elif [[ -z "${all}" ]] && [[ "${count}" -gt "${max_count}" ]]; then
|
||||||
|
continue
|
||||||
|
else
|
||||||
|
domain="${result/*:/}"
|
||||||
|
printf " %s\n" "${domain}"
|
||||||
|
fi
|
||||||
|
filename_prev="${filename}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -438,7 +606,7 @@ Options:
|
||||||
-l, logging Specify whether the Pi-hole log should be used
|
-l, logging Specify whether the Pi-hole log should be used
|
||||||
Add '-h' for more info on logging usage
|
Add '-h' for more info on logging usage
|
||||||
-q, query Query the adlists for a specified domain
|
-q, query Query the adlists for a specified domain
|
||||||
Add '-exact' AFTER a specified domain for exact match
|
Add '-h' for more info on query usage
|
||||||
-up, updatePihole Update Pi-hole subsystems
|
-up, updatePihole Update Pi-hole subsystems
|
||||||
-v, version Show installed versions of Pi-hole, Admin Console & FTL
|
-v, version Show installed versions of Pi-hole, Admin Console & FTL
|
||||||
Add '-h' for more info on version usage
|
Add '-h' for more info on version usage
|
||||||
|
|
Loading…
Reference in a new issue