AdGuardHome/internal/arpdb/arpdb_windows.go
Stanislav Chzhen 0b8bf13453 Pull request 2271: AGDNS-2374-slog-arpdb
Squashed commit of the following:

commit 355136e6e2f3e77b483d97fbc01fbef562c319eb
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date:   Tue Aug 27 18:09:51 2024 +0300

    arpdb: imp docs

commit 2738383303
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date:   Mon Aug 26 19:11:10 2024 +0300

    all: slog arpdb
2024-08-27 20:42:10 +03:00

58 lines
1.1 KiB
Go

//go:build windows
package arpdb
import (
"bufio"
"log/slog"
"strings"
"sync"
"github.com/AdguardTeam/golibs/logutil/slogutil"
)
func newARPDB(logger *slog.Logger) (arp *cmdARPDB) {
return &cmdARPDB{
logger: logger,
parse: parseArpA,
ns: &neighs{
mu: &sync.RWMutex{},
ns: make([]Neighbor, 0),
},
cmd: "arp",
args: []string{"/a"},
}
}
// parseArpA parses the output of the "arp /a" command on Windows. The expected
// input format (the first line is empty):
//
// Interface: 192.168.56.16 --- 0x7
// Internet Address Physical Address Type
// 192.168.56.1 0a-00-27-00-00-00 dynamic
// 192.168.56.255 ff-ff-ff-ff-ff-ff static
func parseArpA(logger *slog.Logger, sc *bufio.Scanner, lenHint int) (ns []Neighbor) {
ns = make([]Neighbor, 0, lenHint)
for sc.Scan() {
ln := sc.Text()
if ln == "" {
continue
}
fields := strings.Fields(ln)
if len(fields) != 3 {
continue
}
n, err := newNeighbor("", fields[0], fields[1])
if err != nil {
logger.Debug("parsing arp output", "line", ln, slogutil.KeyError, err)
continue
}
ns = append(ns, *n)
}
return ns
}