#!/bin/sh /etc/rc.common # banIP init script - ban incoming and outgoing IPs via named nftables Sets # Copyright (c) 2018-2026 Dirk Brenken (dev@brenken.org) # This is free software, licensed under the GNU General Public License v3. # (s)hellcheck exceptions # shellcheck disable=all START=95 USE_PROCD=1 extra_command "report" "[text|json|mail] Print banIP related Set statistics" extra_command "search" "[|] Check if an element exists in a banIP Set" extra_command "content" "[] [true|false] Listing of all or only elements with hits of a given banIP Set" ban_init="/etc/init.d/banip" ban_service="/usr/bin/banip-service.sh" ban_funlib="/usr/lib/banip-functions.sh" ban_pidfile="/var/run/banip.pid" ban_lock="/var/run/banip.lock" if [ -z "${IPKG_INSTROOT}" ]; then if [ "${action}" = "boot" ] && "${ban_init}" running; then exit 0 elif { [ "${action}" = "stop" ] || [ "${action}" = "report" ] || [ "${action}" = "search" ] || [ "${action}" = "content" ] || [ "${action}" = "lookup" ]; } && ! "${ban_init}" running; then exit 0 fi if [ ! -d "${ban_lock}" ] && { [ "${action}" = "boot" ] || [ "${action}" = "start" ] || [ "${action}" = "restart" ] || [ "${action}" = "reload" ] || [ "${action}" = "lookup" ] || [ "${action}" = "search" ]; }; then mkdir -p "${ban_lock}" elif [ -d "${ban_lock}" ] && { [ "${action}" = "boot" ] || [ "${action}" = "start" ] || [ "${action}" = "restart" ] || [ "${action}" = "reload" ] || [ "${action}" = "lookup" ] || [ "${action}" = "search" ]; }; then exit 1 fi . "${ban_funlib}" fi boot() { : >"${ban_pidfile}" rc_procd start_service boot } start_service() { if "${ban_init}" enabled; then f_rmpid procd_open_instance "banip-service" procd_set_param command "${ban_service}" "${@:-"${action}"}" procd_set_param pidfile "${ban_pidfile}" procd_set_param nice "$(uci_get banip global ban_nicelimit "0")" procd_set_param limits nofile="$(uci_get banip global ban_filelimit "1024")" procd_set_param stdout 0 procd_set_param stderr 1 procd_close_instance else f_log "err" "banIP service autostart is disabled" rm -rf "${ban_lock}" fi } reload_service() { f_rmpid rc_procd start_service reload } stop_service() { "${ban_nftcmd}" delete table inet banIP >/dev/null 2>&1 f_genstatus "stopped" f_rmpid [ "${action}" = "stop" ] && rm -rf "${ban_lock}" } restart() { stop_service rc_procd start_service restart } status() { status_service } status_service() { f_getstatus } report() { f_report "${1:-"text"}" } search() { f_search "${1}" rm -rf "${ban_lock}" } content() { f_content "${1}" "${2:-"false"}" } service_triggers() { local iface trigger delay delay="$(uci_get banip global ban_triggerdelay "20")" trigger="$(uci_get banip global ban_trigger)" PROCD_RELOAD_DELAY="$((delay * 1000))" for iface in ${trigger}; do procd_add_interface_trigger "interface.*.up" "${iface}" "${ban_init}" start done }