#!/bin/sh ############################################################################### # # # IPFire.org - A linux based firewall # # Copyright (C) 2007-2022 IPFire Team # # Copyright (C) 2024 BPFire # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # ############################################################################### . /etc/sysconfig/rc . $rc_functions eval $(/usr/local/bin/readhash /var/ipfire/xdpdns/settings) domainfile="/var/ipfire/xdpdns/domainfile" load_dnsblock () { /usr/sbin/xdp-loader status green0 | grep -w 'xdp_dns_denylist' if [ $? -ne 0 ]; then xdp-loader load green0 -P 70 -p /sys/fs/bpf/xdp-dns-denylist -n xdp_dns_denylist /usr/lib/bpf/xdp_dns.bpf.o if [ $? -ge 1 ]; then boot_mesg "Native mode not supported, try SKB" xdp-loader load green0 -m skb -P 70 -p /sys/fs/bpf/xdp-dns-denylist -n xdp_dns_denylist /usr/lib/bpf/xdp_dns.bpf.o fi # allow WUI nobody with permission to update map chown -R nobody /sys/fs/bpf/xdp-dns-denylist # add domain to domain_denylist map while IFS= read -r line; do xdp_dns /sys/fs/bpf/xdp-dns-denylist/domain_denylist add $line done < $domainfile fi } unload_dnsblock () { /usr/sbin/xdp-loader status green0 | grep -w 'xdp_dns_denylist' if [ $? -eq 0 ]; then prog_id=$(xdp-loader status green0 | grep 'xdp_dns_denylist' | awk '{print $4}') /usr/sbin/xdp-loader unload -i $prog_id green0 else boot_mesg "Error xdp_dns_denylist not loaded!" fi } is_xdpdns_attached () { /usr/sbin/xdp-loader status green0 | grep -w 'xdp_dns_denylist' >> /dev/null if [ $? -eq 0 ]; then echo "xdp_dns_denylist is attached to green0" else echo "xdp_dns_denylist is not attached to green0" fi } case "$1" in start) boot_mesg -n "Starting xdp-dns-denylist..." if [ "$ENABLE_DNSBLOCK" == "on" ]; then load_dnsblock loadproc -b xdp_dns_log /sys/fs/bpf/xdp-dns-denylist/dns_ringbuf fi ;; stop) boot_mesg "Stopping xdp-dns-denylist..." if [ "$ENABLE_DNSBLOCK" == "off" ]; then unload_dnsblock killproc xdp_dns_log fi ;; status) is_xdpdns_attached ;; restart) $0 stop sleep 1 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac