2022-03-15 20:57:46 +03:00
|
|
|
//go:build openbsd
|
|
|
|
|
2023-08-24 13:42:17 +03:00
|
|
|
package arpdb
|
2022-03-15 20:57:46 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
2024-08-27 20:42:10 +03:00
|
|
|
"log/slog"
|
2022-03-15 20:57:46 +03:00
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
|
2024-08-27 20:42:10 +03:00
|
|
|
"github.com/AdguardTeam/golibs/logutil/slogutil"
|
2022-03-15 20:57:46 +03:00
|
|
|
)
|
|
|
|
|
2024-08-27 20:42:10 +03:00
|
|
|
func newARPDB(logger *slog.Logger) (arp *cmdARPDB) {
|
2022-03-15 20:57:46 +03:00
|
|
|
return &cmdARPDB{
|
2024-08-27 20:42:10 +03:00
|
|
|
logger: logger,
|
|
|
|
parse: parseArpA,
|
2022-03-15 20:57:46 +03:00
|
|
|
ns: &neighs{
|
|
|
|
mu: &sync.RWMutex{},
|
|
|
|
ns: make([]Neighbor, 0),
|
|
|
|
},
|
2022-04-19 15:01:49 +03:00
|
|
|
cmd: "arp",
|
|
|
|
// Use -n flag to avoid resolving the hostnames of the neighbors. By
|
|
|
|
// default ARP attempts to resolve the hostnames via DNS. See man 8
|
|
|
|
// arp.
|
|
|
|
//
|
|
|
|
// See also https://github.com/AdguardTeam/AdGuardHome/issues/3157.
|
|
|
|
args: []string{"-a", "-n"},
|
2022-03-15 20:57:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-19 15:01:49 +03:00
|
|
|
// parseArpA parses the output of the "arp -a -n" command on OpenBSD. The
|
|
|
|
// expected input format:
|
2022-03-15 20:57:46 +03:00
|
|
|
//
|
2022-08-31 18:57:02 +03:00
|
|
|
// Host Ethernet Address Netif Expire Flags
|
|
|
|
// 192.168.1.1 ab:cd:ef:ab:cd:ef em0 19m59s
|
2024-08-27 20:42:10 +03:00
|
|
|
func parseArpA(logger *slog.Logger, sc *bufio.Scanner, lenHint int) (ns []Neighbor) {
|
2022-03-15 20:57:46 +03:00
|
|
|
// Skip the header.
|
|
|
|
if !sc.Scan() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ns = make([]Neighbor, 0, lenHint)
|
|
|
|
for sc.Scan() {
|
|
|
|
ln := sc.Text()
|
|
|
|
|
|
|
|
fields := strings.Fields(ln)
|
|
|
|
if len(fields) < 2 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-08-27 20:42:10 +03:00
|
|
|
n, err := newNeighbor("", fields[0], fields[1])
|
2022-10-25 15:08:12 +03:00
|
|
|
if err != nil {
|
2024-08-27 20:42:10 +03:00
|
|
|
logger.Debug("parsing arp output", "line", ln, slogutil.KeyError, err)
|
2022-03-15 20:57:46 +03:00
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-08-27 20:42:10 +03:00
|
|
|
ns = append(ns, *n)
|
2022-03-15 20:57:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return ns
|
|
|
|
}
|