mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
04c8e3b288
Updates #5035. Squashed commit of the following: commit d1c4493ee4e28d05670c20532ebae1aa809d18da Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Oct 25 14:26:52 2022 +0300 aghnet: imp hosts rec equal commit 0a7f40a64a819245fba20d3b481b0fc34e0c60e6 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Oct 24 18:10:09 2022 +0300 aghnet: move arp and hosts to netip.Addr
65 lines
1.1 KiB
Go
65 lines
1.1 KiB
Go
//go:build windows
|
|
|
|
package aghnet
|
|
|
|
import (
|
|
"bufio"
|
|
"net"
|
|
"net/netip"
|
|
"strings"
|
|
"sync"
|
|
)
|
|
|
|
func newARPDB() (arp *cmdARPDB) {
|
|
return &cmdARPDB{
|
|
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(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 := Neighbor{}
|
|
|
|
ip, err := netip.ParseAddr(fields[0])
|
|
if err != nil {
|
|
continue
|
|
} else {
|
|
n.IP = ip
|
|
}
|
|
|
|
mac, err := net.ParseMAC(fields[1])
|
|
if err != nil {
|
|
continue
|
|
} else {
|
|
n.MAC = mac
|
|
}
|
|
|
|
ns = append(ns, n)
|
|
}
|
|
|
|
return ns
|
|
}
|