Unify legacy data path /etc/xdp-blocker → /etc/xdp-defense

All config/data paths now use /etc/xdp-defense/ consistently,
eliminating the legacy xdp-blocker directory reference.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
kaffa
2026-02-07 16:40:46 +09:00
parent 59cc6da5f9
commit 4ae4440504
9 changed files with 46 additions and 18 deletions

View File

@@ -11,7 +11,7 @@ INSTALL_BIN := /usr/local/bin
SYSTEMD_DIR := /etc/systemd/system SYSTEMD_DIR := /etc/systemd/system
ETC_DIR := /etc/xdp-defense ETC_DIR := /etc/xdp-defense
DATA_DIR := /var/lib/xdp-defense DATA_DIR := /var/lib/xdp-defense
BLOCKER_CFG := /etc/xdp-blocker BLOCKER_CFG := /etc/xdp-defense
CLANG ?= clang CLANG ?= clang
CLANG_FLAGS := -O2 -g -Wall -target bpf \ CLANG_FLAGS := -O2 -g -Wall -target bpf \
@@ -74,7 +74,7 @@ uninstall:
rm -f $(INSTALL_BIN)/xdp-defense-daemon rm -f $(INSTALL_BIN)/xdp-defense-daemon
rm -f $(SYSTEMD_DIR)/xdp-defense.service rm -f $(SYSTEMD_DIR)/xdp-defense.service
systemctl daemon-reload systemctl daemon-reload
@echo "Uninstalled. Config preserved in $(ETC_DIR) and $(BLOCKER_CFG)" @echo "Uninstalled. Config preserved in $(ETC_DIR)"
enable: enable:
systemctl enable xdp-defense systemctl enable xdp-defense

View File

@@ -168,7 +168,7 @@ general:
blocker: blocker:
enabled: true enabled: true
config_dir: /etc/xdp-blocker # 블록리스트/국가/화이트리스트 데이터 config_dir: /etc/xdp-defense # 블록리스트/국가/화이트리스트 데이터
rate_limits: rate_limits:
default_pps: 1000 # 초당 패킷 임계값 default_pps: 1000 # 초당 패킷 임계값
@@ -224,7 +224,7 @@ ai:
└── Makefile └── Makefile
/etc/xdp-defense/config.yaml # 런타임 설정 /etc/xdp-defense/config.yaml # 런타임 설정
/etc/xdp-blocker/ # 블록리스트/국가/화이트리스트 데이터 /etc/xdp-defense/ # 블록리스트/국가/화이트리스트 데이터
/var/lib/xdp-defense/ # PID, AI 모델, 학습 데이터 /var/lib/xdp-defense/ # PID, AI 모델, 학습 데이터
/sys/fs/bpf/xdp-defense/ # 공유 BPF 맵 핀 경로 /sys/fs/bpf/xdp-defense/ # 공유 BPF 맵 핀 경로
``` ```

View File

@@ -9,8 +9,8 @@ PIN_PATH="/sys/fs/bpf/xdp-defense"
CONFIG_FILE="/etc/xdp-defense/config.yaml" CONFIG_FILE="/etc/xdp-defense/config.yaml"
DATA_DIR="/var/lib/xdp-defense" DATA_DIR="/var/lib/xdp-defense"
PID_FILE="$DATA_DIR/daemon.pid" PID_FILE="$DATA_DIR/daemon.pid"
BLOCKLIST_FILE="/etc/xdp-blocker/blocklist.txt" BLOCKLIST_FILE="/etc/xdp-defense/blocklist.txt"
COUNTRY_DIR="/etc/xdp-blocker/countries" COUNTRY_DIR="/etc/xdp-defense/countries"
GEOIP_DB="/usr/share/GeoIP/GeoLite2-Country.mmdb" GEOIP_DB="/usr/share/GeoIP/GeoLite2-Country.mmdb"
CITY_DB="/usr/share/GeoIP/GeoLite2-City.mmdb" CITY_DB="/usr/share/GeoIP/GeoLite2-City.mmdb"
ASN_DB="/usr/share/GeoIP/GeoLite2-ASN.mmdb" ASN_DB="/usr/share/GeoIP/GeoLite2-ASN.mmdb"
@@ -144,8 +144,8 @@ cmd_load() {
fi fi
# Restore whitelists # Restore whitelists
if [ -d "/etc/xdp-blocker/whitelist" ]; then if [ -d "/etc/xdp-defense/whitelist" ]; then
for wl_file in /etc/xdp-blocker/whitelist/*.txt; do for wl_file in /etc/xdp-defense/whitelist/*.txt; do
[ -f "$wl_file" ] || continue [ -f "$wl_file" ] || continue
local name local name
name=$(basename "$wl_file" .txt) name=$(basename "$wl_file" .txt)
@@ -480,7 +480,7 @@ cmd_whitelist_add() {
bpftool map update id "$map_id" key hex $key_hex value hex 01 00 00 00 00 00 00 00 2>/dev/null bpftool map update id "$map_id" key hex $key_hex value hex 01 00 00 00 00 00 00 00 2>/dev/null
# Persist to file for restore on reload # Persist to file for restore on reload
local direct_file="/etc/xdp-blocker/whitelist/direct.txt" local direct_file="/etc/xdp-defense/whitelist/direct.txt"
mkdir -p "$(dirname "$direct_file")" mkdir -p "$(dirname "$direct_file")"
grep -qxF "$name" "$direct_file" 2>/dev/null || echo "$name" >> "$direct_file" grep -qxF "$name" "$direct_file" 2>/dev/null || echo "$name" >> "$direct_file"
@@ -516,7 +516,7 @@ cmd_whitelist_del() {
bpftool map delete id "$map_id" key hex $key_hex 2>/dev/null && log_ok "Removed from whitelist: $name" bpftool map delete id "$map_id" key hex $key_hex 2>/dev/null && log_ok "Removed from whitelist: $name"
# Remove from persistence file # Remove from persistence file
local direct_file="/etc/xdp-blocker/whitelist/direct.txt" local direct_file="/etc/xdp-defense/whitelist/direct.txt"
if [ -f "$direct_file" ]; then if [ -f "$direct_file" ]; then
local tmpfile="${direct_file}.tmp.$$" local tmpfile="${direct_file}.tmp.$$"
{ grep -vxF "$name" "$direct_file" || true; } > "$tmpfile" 2>/dev/null { grep -vxF "$name" "$direct_file" || true; } > "$tmpfile" 2>/dev/null

View File

@@ -11,7 +11,7 @@ general:
blocker: blocker:
enabled: true enabled: true
config_dir: /etc/xdp-blocker # existing data path (blocklist, countries, whitelist) config_dir: /etc/xdp-defense # blocklist, countries, whitelist data
rate_limits: rate_limits:
default_pps: 2000 # packets per second threshold default_pps: 2000 # packets per second threshold

View File

@@ -15,7 +15,7 @@ RestartSec=5
# Security hardening # Security hardening
ProtectSystem=strict ProtectSystem=strict
ReadWritePaths=/var/lib/xdp-defense /etc/xdp-defense /etc/xdp-blocker /sys/fs/bpf /tmp ReadWritePaths=/var/lib/xdp-defense /etc/xdp-defense /sys/fs/bpf /tmp
ProtectHome=true ProtectHome=true
NoNewPrivileges=false NoNewPrivileges=false
CapabilityBoundingSet=CAP_NET_ADMIN CAP_BPF CAP_SYS_ADMIN CAP_PERFMON CapabilityBoundingSet=CAP_NET_ADMIN CAP_BPF CAP_SYS_ADMIN CAP_PERFMON

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
""" """
XDP Defense - Common Utilities XDP Defense - Common Utilities
Merged from xdp-blocker/xdp_common.py and xdp-ddos/xdp_ddos_common.py Merged from xdp-defense common utilities
Provides: map management, CIDR handling, IP encoding, rate config, block/unblock, stats Provides: map management, CIDR handling, IP encoding, rate config, block/unblock, stats
""" """

View File

@@ -11,7 +11,7 @@ from pathlib import Path
from xdp_common import get_map_id, batch_map_operation, classify_cidrs from xdp_common import get_map_id, batch_map_operation, classify_cidrs
COUNTRY_DIR = Path("/etc/xdp-blocker/countries") COUNTRY_DIR = Path("/etc/xdp-defense/countries")
IPDENY_V4_URL = "https://www.ipdeny.com/ipblocks/data/countries/{}.zone" IPDENY_V4_URL = "https://www.ipdeny.com/ipblocks/data/countries/{}.zone"
IPDENY_V6_URL = "https://www.ipdeny.com/ipblocks/data/ipv6/ipv6-country-blocks/{}.zone" IPDENY_V6_URL = "https://www.ipdeny.com/ipblocks/data/ipv6/ipv6-country-blocks/{}.zone"

View File

@@ -854,6 +854,8 @@ class DDoSDaemon:
def _ai_thread(self): def _ai_thread(self):
"""Read traffic features, run AI inference or collect training data.""" """Read traffic features, run AI inference or collect training data."""
prev_features = None prev_features = None
ai_prev_counters = {}
ai_prev_counter_time = 0
self._last_retrain_time = self._get_model_mtime() self._last_retrain_time = self._get_model_mtime()
self._last_log_cleanup = time.time() self._last_log_cleanup = time.time()
@@ -931,15 +933,41 @@ class DDoSDaemon:
"AI ANOMALY detected: score=%.4f deltas=%s", "AI ANOMALY detected: score=%.4f deltas=%s",
score, dict(zip(feature_names, deltas[:len(feature_names)])) score, dict(zip(feature_names, deltas[:len(feature_names)]))
) )
top_ips = dump_rate_counters('rate_counter_v4', top_n=5) top_ips = dump_rate_counters('rate_counter_v4', top_n=10)
now_ts = time.time()
ai_elapsed = now_ts - ai_prev_counter_time if ai_prev_counter_time > 0 else interval
ai_prev_counter_time = now_ts
for ip_str, pkts, bts, _ in top_ips: for ip_str, pkts, bts, _ in top_ips:
# Skip whitelisted IPs prev_pkts = ai_prev_counters.get(ip_str)
ai_prev_counters[ip_str] = pkts
if is_whitelisted(ip_str): if is_whitelisted(ip_str):
log.debug("AI escalation skipped (whitelisted): %s", ip_str) log.debug("AI escalation skipped (whitelisted): %s", ip_str)
continue continue
stats = self.ewma_analyzer.get_stats(ip_str)
baseline = max(stats['baseline'], 1)
ewma = stats['ewma']
if stats['baseline'] > 0:
if ewma <= baseline * 2.0:
log.debug("AI skip (normal EWMA): %s ewma=%.1f baseline=%.1f", ip_str, ewma, baseline)
continue
else:
pps_limit = self.cfg['rate_limit'].get('pps', 2000)
if prev_pkts is not None:
delta = pkts - prev_pkts if pkts >= prev_pkts else pkts
est_pps = delta / max(ai_elapsed, 1)
if est_pps <= pps_limit:
log.debug("AI skip (new IP, low pps): %s est_pps=%.1f", ip_str, est_pps)
continue
else:
log.debug("AI skip (new IP, first seen): %s", ip_str)
continue
level = self.violation_tracker.record_violation(ip_str) level = self.violation_tracker.record_violation(ip_str)
log.warning("AI escalation: %s -> %s", ip_str, level) log.warning("AI escalation: %s ewma=%.1f baseline=%.1f -> %s", ip_str, ewma, baseline, level)
if level == 'temp_block': if level == 'temp_block':
dur = self.cfg['escalation'].get('temp_block_duration', 300) dur = self.cfg['escalation'].get('temp_block_duration', 300)

View File

@@ -11,7 +11,7 @@ from pathlib import Path
from xdp_common import get_map_id, batch_map_operation, classify_cidrs from xdp_common import get_map_id, batch_map_operation, classify_cidrs
WHITELIST_DIR = Path("/etc/xdp-blocker/whitelist") WHITELIST_DIR = Path("/etc/xdp-defense/whitelist")
# Preset URLs for trusted services # Preset URLs for trusted services
PRESETS = { PRESETS = {