all: include client IP if ctrld is dnsmasq upstream

So ctrld can record the raw/original client IP instead of looking up
from MAC to IP, which may not the right choice in some network setup
like using wireguard/vpn on Merlin router.
This commit is contained in:
Cuong Manh Le
2023-09-22 18:40:25 +07:00
committed by Cuong Manh Le
parent ee5eb4fc4e
commit 0f3e8c7ada
9 changed files with 152 additions and 25 deletions
+39 -15
View File
@@ -54,8 +54,7 @@ func (p *prog) serveDNS(listenerNum string) error {
domain := canonicalName(q.Name) domain := canonicalName(q.Name)
reqId := requestID() reqId := requestID()
remoteIP, _, _ := net.SplitHostPort(w.RemoteAddr().String()) remoteIP, _, _ := net.SplitHostPort(w.RemoteAddr().String())
mac := macFromMsg(m) ci := p.getClientInfo(remoteIP, m)
ci := p.getClientInfo(remoteIP, mac)
remoteAddr := spoofRemoteAddr(w.RemoteAddr(), ci) remoteAddr := spoofRemoteAddr(w.RemoteAddr(), ci)
fmtSrcToDest := fmtRemoteToLocal(listenerNum, remoteAddr.String(), w.LocalAddr().String()) fmtSrcToDest := fmtRemoteToLocal(listenerNum, remoteAddr.String(), w.LocalAddr().String())
t := time.Now() t := time.Now()
@@ -419,18 +418,24 @@ func needLocalIPv6Listener() bool {
return ctrldnet.SupportsIPv6ListenLocal() && runtime.GOOS == "windows" return ctrldnet.SupportsIPv6ListenLocal() && runtime.GOOS == "windows"
} }
func macFromMsg(msg *dns.Msg) string { // ipAndMacFromMsg extracts IP and MAC information included in a DNS message, if any.
func ipAndMacFromMsg(msg *dns.Msg) (string, string) {
ip, mac := "", ""
if opt := msg.IsEdns0(); opt != nil { if opt := msg.IsEdns0(); opt != nil {
for _, s := range opt.Option { for _, s := range opt.Option {
switch e := s.(type) { switch e := s.(type) {
case *dns.EDNS0_LOCAL: case *dns.EDNS0_LOCAL:
if e.Code == EDNS0_OPTION_MAC { if e.Code == EDNS0_OPTION_MAC {
return net.HardwareAddr(e.Data).String() mac = net.HardwareAddr(e.Data).String()
}
case *dns.EDNS0_SUBNET:
if len(e.Address) > 0 && !e.Address.IsLoopback() {
ip = e.Address.String()
} }
} }
} }
} }
return "" return ip, mac
} }
func spoofRemoteAddr(addr net.Addr, ci *ctrld.ClientInfo) net.Addr { func spoofRemoteAddr(addr net.Addr, ci *ctrld.ClientInfo) net.Addr {
@@ -484,19 +489,38 @@ func runDNSServer(addr, network string, handler dns.Handler) (*dns.Server, <-cha
return s, errCh return s, errCh
} }
func (p *prog) getClientInfo(ip, mac string) *ctrld.ClientInfo { func (p *prog) getClientInfo(remoteIP string, msg *dns.Msg) *ctrld.ClientInfo {
ci := &ctrld.ClientInfo{} ci := &ctrld.ClientInfo{}
if mac != "" { ci.IP, ci.Mac = ipAndMacFromMsg(msg)
ci.Mac = mac switch {
ci.IP = p.ciTable.LookupIP(mac) case ci.IP != "" && ci.Mac != "":
// Nothing to do.
case ci.IP == "" && ci.Mac != "":
// Have MAC, no IP.
ci.IP = p.ciTable.LookupIP(ci.Mac)
case ci.IP == "" && ci.Mac == "":
// Have nothing, use remote IP then lookup MAC.
ci.IP = remoteIP
fallthrough
case ci.IP != "" && ci.Mac == "":
// Have IP, no MAC.
ci.Mac = p.ciTable.LookupMac(ci.IP)
}
// If MAC is still empty here, that mean the requests are made from virtual interface,
// like VPN/Wireguard clients, so we use whatever MAC address associated with remoteIP
// (most likely 127.0.0.1), and ci.IP as hostname, so we can distinguish those clients.
if ci.Mac == "" {
ci.Mac = p.ciTable.LookupMac(remoteIP)
if hostname := p.ciTable.LookupHostname(ci.IP, ""); hostname != "" {
ci.Hostname = hostname
} else {
ci.Hostname = ci.IP
p.ciTable.StoreVPNClient(ci)
}
} else { } else {
ci.IP = ip ci.Hostname = p.ciTable.LookupHostname(ci.IP, ci.Mac)
ci.Mac = p.ciTable.LookupMac(ip)
if ip == "127.0.0.1" || ip == "::1" {
ci.IP = p.ciTable.LookupIP(ci.Mac)
}
} }
ci.Hostname = p.ciTable.LookupHostname(ci.IP, ci.Mac)
return ci return ci
} }
+27 -9
View File
@@ -156,19 +156,27 @@ func TestCache(t *testing.T) {
assert.Equal(t, answer2.Rcode, got2.Rcode) assert.Equal(t, answer2.Rcode, got2.Rcode)
} }
func Test_macFromMsg(t *testing.T) { func Test_ipAndMacFromMsg(t *testing.T) {
tests := []struct { tests := []struct {
name string name string
ip string
wantIp bool
mac string mac string
wantMac bool wantMac bool
}{ }{
{"has mac", "4c:20:b8:ab:87:1b", true}, {"has ip v4 and mac", "1.2.3.4", true, "4c:20:b8:ab:87:1b", true},
{"no mac", "4c:20:b8:ab:87:1b", false}, {"has ip v6 and mac", "2606:1a40:3::1", true, "4c:20:b8:ab:87:1b", true},
{"no ip", "1.2.3.4", false, "4c:20:b8:ab:87:1b", false},
{"no mac", "1.2.3.4", false, "4c:20:b8:ab:87:1b", false},
} }
for _, tc := range tests { for _, tc := range tests {
tc := tc tc := tc
t.Run(tc.name, func(t *testing.T) { t.Run(tc.name, func(t *testing.T) {
t.Parallel() t.Parallel()
ip := net.ParseIP(tc.ip)
if ip == nil {
t.Fatal("missing IP")
}
hw, err := net.ParseMAC(tc.mac) hw, err := net.ParseMAC(tc.mac)
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
@@ -180,13 +188,23 @@ func Test_macFromMsg(t *testing.T) {
ec1 := &dns.EDNS0_LOCAL{Code: EDNS0_OPTION_MAC, Data: hw} ec1 := &dns.EDNS0_LOCAL{Code: EDNS0_OPTION_MAC, Data: hw}
o.Option = append(o.Option, ec1) o.Option = append(o.Option, ec1)
} }
m.Extra = append(m.Extra, o) if tc.wantIp {
got := macFromMsg(m) ec2 := &dns.EDNS0_SUBNET{Address: ip}
if tc.wantMac && got != tc.mac { o.Option = append(o.Option, ec2)
t.Errorf("mismatch, want: %q, got: %q", tc.mac, got)
} }
if !tc.wantMac && got != "" { m.Extra = append(m.Extra, o)
t.Errorf("unexpected mac: %q", got) gotIP, gotMac := ipAndMacFromMsg(m)
if tc.wantMac && gotMac != tc.mac {
t.Errorf("mismatch, want: %q, got: %q", tc.mac, gotMac)
}
if !tc.wantMac && gotMac != "" {
t.Errorf("unexpected mac: %q", gotMac)
}
if tc.wantIp && gotIP != tc.ip {
t.Errorf("mismatch, want: %q, got: %q", tc.ip, gotIP)
}
if !tc.wantIp && gotIP != "" {
t.Errorf("unexpected ip: %q", gotIP)
} }
}) })
} }
+3
View File
@@ -33,6 +33,9 @@ func (a *arpDiscover) String() string {
} }
func (a *arpDiscover) List() []string { func (a *arpDiscover) List() []string {
if a == nil {
return nil
}
var ips []string var ips []string
a.ip.Range(func(key, value any) bool { a.ip.Range(func(key, value any) bool {
ips = append(ips, value.(string)) ips = append(ips, value.(string))
+27 -1
View File
@@ -74,6 +74,7 @@ type Table struct {
ptr *ptrDiscover ptr *ptrDiscover
mdns *mdns mdns *mdns
hf *hostsFile hf *hostsFile
vpn *vpn
cfg *ctrld.Config cfg *ctrld.Config
quitCh chan struct{} quitCh chan struct{}
selfIP string selfIP string
@@ -117,6 +118,7 @@ func (t *Table) Init() {
} }
func (t *Table) init() { func (t *Table) init() {
// Custom client ID presents, use it as the only source.
if _, clientID := controld.ParseRawUID(t.cdUID); clientID != "" { if _, clientID := controld.ParseRawUID(t.cdUID); clientID != "" {
ctrld.ProxyLogger.Load().Debug().Msg("start self discovery") ctrld.ProxyLogger.Load().Debug().Msg("start self discovery")
t.dhcp = &dhcp{selfIP: t.selfIP} t.dhcp = &dhcp{selfIP: t.selfIP}
@@ -126,6 +128,11 @@ func (t *Table) init() {
t.hostnameResolvers = append(t.hostnameResolvers, t.dhcp) t.hostnameResolvers = append(t.hostnameResolvers, t.dhcp)
return return
} }
// Otherwise, process all possible sources in order, that means
// the first result of IP/MAC/Hostname lookup will be used.
//
// Merlin custom clients.
if t.discoverDHCP() || t.discoverARP() { if t.discoverDHCP() || t.discoverARP() {
t.merlin = &merlinDiscover{} t.merlin = &merlinDiscover{}
if err := t.merlin.refresh(); err != nil { if err := t.merlin.refresh(); err != nil {
@@ -135,6 +142,7 @@ func (t *Table) init() {
t.refreshers = append(t.refreshers, t.merlin) t.refreshers = append(t.refreshers, t.merlin)
} }
} }
// Hosts file mapping.
if t.discoverHosts() { if t.discoverHosts() {
t.hf = &hostsFile{} t.hf = &hostsFile{}
ctrld.ProxyLogger.Load().Debug().Msg("start hosts file discovery") ctrld.ProxyLogger.Load().Debug().Msg("start hosts file discovery")
@@ -146,6 +154,7 @@ func (t *Table) init() {
} }
go t.hf.watchChanges() go t.hf.watchChanges()
} }
// DHCP lease files.
if t.discoverDHCP() { if t.discoverDHCP() {
t.dhcp = &dhcp{selfIP: t.selfIP} t.dhcp = &dhcp{selfIP: t.selfIP}
ctrld.ProxyLogger.Load().Debug().Msg("start dhcp discovery") ctrld.ProxyLogger.Load().Debug().Msg("start dhcp discovery")
@@ -158,6 +167,7 @@ func (t *Table) init() {
} }
go t.dhcp.watchChanges() go t.dhcp.watchChanges()
} }
// ARP table.
if t.discoverARP() { if t.discoverARP() {
t.arp = &arpDiscover{} t.arp = &arpDiscover{}
ctrld.ProxyLogger.Load().Debug().Msg("start arp discovery") ctrld.ProxyLogger.Load().Debug().Msg("start arp discovery")
@@ -169,6 +179,7 @@ func (t *Table) init() {
t.refreshers = append(t.refreshers, t.arp) t.refreshers = append(t.refreshers, t.arp)
} }
} }
// PTR lookup.
if t.discoverPTR() { if t.discoverPTR() {
t.ptr = &ptrDiscover{resolver: ctrld.NewPrivateResolver()} t.ptr = &ptrDiscover{resolver: ctrld.NewPrivateResolver()}
ctrld.ProxyLogger.Load().Debug().Msg("start ptr discovery") ctrld.ProxyLogger.Load().Debug().Msg("start ptr discovery")
@@ -179,6 +190,7 @@ func (t *Table) init() {
t.refreshers = append(t.refreshers, t.ptr) t.refreshers = append(t.refreshers, t.ptr)
} }
} }
// mdns.
if t.discoverMDNS() { if t.discoverMDNS() {
t.mdns = &mdns{} t.mdns = &mdns{}
ctrld.ProxyLogger.Load().Debug().Msg("start mdns discovery") ctrld.ProxyLogger.Load().Debug().Msg("start mdns discovery")
@@ -188,6 +200,11 @@ func (t *Table) init() {
t.hostnameResolvers = append(t.hostnameResolvers, t.mdns) t.hostnameResolvers = append(t.hostnameResolvers, t.mdns)
} }
} }
// VPN clients.
if t.discoverDHCP() || t.discoverARP() {
t.vpn = &vpn{}
t.hostnameResolvers = append(t.hostnameResolvers, t.vpn)
}
} }
func (t *Table) LookupIP(mac string) string { func (t *Table) LookupIP(mac string) string {
@@ -271,7 +288,7 @@ func (t *Table) ListClients() []*Client {
_ = r.refresh() _ = r.refresh()
} }
ipMap := make(map[string]*Client) ipMap := make(map[string]*Client)
il := []ipLister{t.dhcp, t.arp, t.ptr, t.mdns} il := []ipLister{t.dhcp, t.arp, t.ptr, t.mdns, t.vpn}
for _, ir := range il { for _, ir := range il {
for _, ip := range ir.List() { for _, ip := range ir.List() {
c, ok := ipMap[ip] c, ok := ipMap[ip]
@@ -312,6 +329,15 @@ func (t *Table) ListClients() []*Client {
return clients return clients
} }
// StoreVPNClient stores client info for VPN clients.
func (t *Table) StoreVPNClient(ci *ctrld.ClientInfo) {
if ci == nil || t.vpn == nil {
return
}
t.vpn.mac.Store(ci.IP, ci.Mac)
t.vpn.ip2name.Store(ci.IP, ci.Hostname)
}
func (t *Table) discoverDHCP() bool { func (t *Table) discoverDHCP() bool {
if t.cfg.Service.DiscoverDHCP == nil { if t.cfg.Service.DiscoverDHCP == nil {
return true return true
+3
View File
@@ -119,6 +119,9 @@ func (d *dhcp) String() string {
} }
func (d *dhcp) List() []string { func (d *dhcp) List() []string {
if d == nil {
return nil
}
var ips []string var ips []string
d.ip.Range(func(key, value any) bool { d.ip.Range(func(key, value any) bool {
ips = append(ips, value.(string)) ips = append(ips, value.(string))
+3
View File
@@ -48,6 +48,9 @@ func (m *mdns) String() string {
} }
func (m *mdns) List() []string { func (m *mdns) List() []string {
if m == nil {
return nil
}
var ips []string var ips []string
m.name.Range(func(key, value any) bool { m.name.Range(func(key, value any) bool {
ips = append(ips, key.(string)) ips = append(ips, key.(string))
+3
View File
@@ -41,6 +41,9 @@ func (p *ptrDiscover) String() string {
} }
func (p *ptrDiscover) List() []string { func (p *ptrDiscover) List() []string {
if p == nil {
return nil
}
var ips []string var ips []string
p.hostname.Range(func(key, value any) bool { p.hostname.Range(func(key, value any) bool {
ips = append(ips, key.(string)) ips = append(ips, key.(string))
+43
View File
@@ -0,0 +1,43 @@
package clientinfo
import (
"sync"
)
// vpn is the manager for VPN clients info.
type vpn struct {
ip2name sync.Map // ip => name
mac sync.Map // ip => mac
}
// LookupHostnameByIP returns hostname of the given VPN client ip.
func (v *vpn) LookupHostnameByIP(ip string) string {
val, ok := v.ip2name.Load(ip)
if !ok {
return ""
}
return val.(string)
}
// LookupHostnameByMac always returns empty string.
func (v *vpn) LookupHostnameByMac(mac string) string {
return ""
}
// String returns the string representation of vpn struct.
func (v *vpn) String() string {
return "vpn"
}
// List lists all known VPN clients IP.
func (v *vpn) List() []string {
if v == nil {
return nil
}
var ips []string
v.mac.Range(func(key, value any) bool {
ips = append(ips, key.(string))
return true
})
return ips
}
+4
View File
@@ -17,6 +17,7 @@ server={{ .IP }}#{{ .Port }}
{{- end}} {{- end}}
{{- if .SendClientInfo}} {{- if .SendClientInfo}}
add-mac add-mac
add-subnet=32,128
{{- end}} {{- end}}
` `
@@ -39,7 +40,10 @@ if [ -n "$pid" ] && [ -f "/proc/${pid}/cmdline" ]; then
pc_append "server={{ .IP }}#{{ .Port }}" "$config_file" pc_append "server={{ .IP }}#{{ .Port }}" "$config_file"
{{- end}} {{- end}}
{{- if .SendClientInfo}} {{- if .SendClientInfo}}
pc_delete "add-mac" "$config_file"
pc_delete "add-subnet" "$config_file"
pc_append "add-mac" "$config_file" # add client mac pc_append "add-mac" "$config_file" # add client mac
pc_append "add-subnet=32,128" "$config_file" # add client ip
{{- end}} {{- end}}
pc_delete "dnssec" "$config_file" # disable DNSSEC pc_delete "dnssec" "$config_file" # disable DNSSEC
pc_delete "trust-anchor=" "$config_file" # disable DNSSEC pc_delete "trust-anchor=" "$config_file" # disable DNSSEC