diff options
author | Linus Lüssing <linus.luessing@c0d3.blue> | 2022-11-27 10:55:37 +0100 |
---|---|---|
committer | Tianling Shen <cnsztl@gmail.com> | 2022-12-03 04:08:51 +0800 |
commit | 865412cd046d22f53573d5cf640d5c14bc6571ea (patch) | |
tree | 9af2adde86fc7269c0259cb8f312c2f53ae6c4b4 /net/bpfcountd/files | |
parent | 8d2d6c46d61dee6e5b909add58859cfc5a5875a1 (diff) |
bpfcountd: add initial package
bpfcountd was created to obtain packet statistics in larger networks
without stressing the cpu resources. bpfcountd will count the amount
of packages and bytes over time (for each defined rule). The rules
are defined using the tcpdump filter syntax (bpf). The collected
data is provided on a unix socket in plaintext.
Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
Diffstat (limited to 'net/bpfcountd/files')
-rw-r--r-- | net/bpfcountd/files/etc/bpfcountd.filters | 2 | ||||
-rw-r--r-- | net/bpfcountd/files/etc/config/bpfcountd | 13 | ||||
-rwxr-xr-x | net/bpfcountd/files/etc/init.d/bpfcountd | 99 |
3 files changed, 114 insertions, 0 deletions
diff --git a/net/bpfcountd/files/etc/bpfcountd.filters b/net/bpfcountd/files/etc/bpfcountd.filters new file mode 100644 index 000000000..8c1029a25 --- /dev/null +++ b/net/bpfcountd/files/etc/bpfcountd.filters @@ -0,0 +1,2 @@ +arp;arp +icmp6;icmp6 diff --git a/net/bpfcountd/files/etc/config/bpfcountd b/net/bpfcountd/files/etc/config/bpfcountd new file mode 100644 index 000000000..790de16ca --- /dev/null +++ b/net/bpfcountd/files/etc/config/bpfcountd @@ -0,0 +1,13 @@ +config bpfcountd 'eth0_in' + option ifname 'eth0' + option prefilter 'inbound' + option filterfile '/etc/bpfcountd.filters' + option buffersize '2097152' + option disabled '1' + +config bpfcountd 'eth0_out' + option ifname 'eth0' + option prefilter 'outbound' + option filterfile '/etc/bpfcountd.filters' + option buffersize '2097152' + option disabled '1' diff --git a/net/bpfcountd/files/etc/init.d/bpfcountd b/net/bpfcountd/files/etc/init.d/bpfcountd new file mode 100755 index 000000000..1639da720 --- /dev/null +++ b/net/bpfcountd/files/etc/init.d/bpfcountd @@ -0,0 +1,99 @@ +#!/bin/sh /etc/rc.common +# SPDX-License-Identifier: MIT +# Copyright (C) 2022 Linus Lüssing <linus.luessing@c0d3.blue> + +USE_PROCD=1 +START=20 +STOP=90 + +UNIXSOCKDIR=/var/run/bpfcountd + +bpfcountd_start() { + local cfg="$1" + local namespace="$2" + local disabled + + local ifname + local prefilter + local filterfile + local buffersize + + config_get_bool disabled "$cfg" disabled 0 + [ "$disabled" -gt 0 ] && return 0 + + mkdir -p "$UNIXSOCKDIR" + + config_get ifname "$cfg" "ifname" + config_get prefilter "$cfg" "prefilter" + config_get filterfile "$cfg" "filterfile" + config_get buffersize "$cfg" "buffersize" + + [ -z "$ifname" ] && { + echo "Error: no ifname specified for $cfg" >&2 + return 0 + } + [ -z "$filterfile" ] && { + echo "Error: no filterfile specified for $cfg" >&2 + return 0 + } + + [ -z "$namespace" ] && namespace="bpfcountd" + + procd_open_instance "$namespace.$cfg" + + procd_set_param command /usr/sbin/bpfcountd + procd_append_param command -i "$ifname" + procd_append_param command -f "$filterfile" + procd_append_param command -u $UNIXSOCKDIR/"$namespace.$cfg".sock + [ -n "$prefilter" ] && procd_append_param command -F "$prefilter" + [ -n "$buffersize" ] && procd_append_param command -b "$buffersize" + + procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5} + + procd_set_param stderr 1 + procd_close_instance +} + +start_service() { + local cfg="$1" + local namespace="$2" + local instance_found=0 + + . /lib/functions/network.sh + + config_cb() { + local type="$1" + local name="$2" + if [ "$type" = "bpfcountd" ]; then + if [ -n "$cfg" -a "$cfg" = "$name" ]; then + instance_found=1 + fi + fi + } + + config_load bpfcountd + + if [ -n "$cfg" ]; then + [ "$instance_found" -gt 0 ] || return + bpfcountd_start "$cfg" "$namespace" + else + config_foreach bpfcountd_start bpfcountd "$namespace" + fi +} + +stop_service() { + local cfg="$1" + local namespace="$2" + + [ -z "$namespace" ] && namespace="bpfcountd" + + if [ -n "$cfg" ]; then + rm $UNIXSOCKDIR/$namespace.$cfg.sock + else + rm $UNIXSOCKDIR/$namespace.*.sock + fi +} + +service_triggers() { + procd_add_reload_trigger bpfcountd +} |