-
Notifications
You must be signed in to change notification settings - Fork 67
/
local_name_resolution.go
416 lines (336 loc) · 10.7 KB
/
local_name_resolution.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
package main
import (
"context"
"encoding/binary"
"encoding/hex"
"fmt"
"net"
"runtime"
"strings"
"sync"
"unicode"
"golang.org/x/sync/errgroup"
)
const (
netBIOSPort = 137
mDNSMulticastIPv4 = "224.0.0.251"
mDNSMulticastIPv6 = "ff02::fb"
mDNSPort = 5353
llmnrMulticastIPv4 = "224.0.0.252"
llmnrMulticastIPv6 = "ff02::1:3"
llmnrPort = 5355
)
// RunNetBIOSResponder creates a listener for NetBIOS name resolution requests.
func RunNetBIOSResponder(ctx context.Context, logger *Logger, config Config) error {
var wg sync.WaitGroup
addrs, err := config.Interface.Addrs()
if err != nil {
return fmt.Errorf("listing addresses on interface %q: %w", config.Interface.Name, err)
}
activeListenAddresses := map[string]bool{}
for _, addr := range addrs {
ip, ok := addr.(*net.IPNet)
if !ok {
return fmt.Errorf("cannot extract IP address from network")
}
if ip.IP.To4() == nil {
continue
}
listenIP, err := subnetBroadcastListenIP(ip)
if err != nil {
return fmt.Errorf("calculate subnet broadcast IP: %w", err)
}
if activeListenAddresses[listenIP.String()] {
continue
}
listenAddr := &net.UDPAddr{IP: listenIP, Port: netBIOSPort}
conn, err := net.ListenUDP("udp4", listenAddr)
if err != nil {
errStr := err.Error()
if runtime.GOOS == osWindows && strings.Contains(err.Error(), "Only one usage of each socket address") {
errStr += " (try disabling NetBIOS: Interface Status->"
errStr += "Properties->TCP/IPv4->Advanced->WINS->Disable NetBIOS over TCP/IP)"
}
return fmt.Errorf(errStr)
}
activeListenAddresses[listenIP.String()] = true
wg.Add(1)
go func() {
defer wg.Done()
defer conn.Close() //nolint:errcheck
logger.Infof("listening via UDP on %s", listenAddr)
err = RunDNSHandlerOnUDPConnection(ctx, conn, logger, config, HandlerTypeNetBIOS)
if err != nil {
logger.Errorf(err.Error())
}
}()
}
wg.Wait()
return nil
}
// subnetBroadcastListenIP returns the IP to listen on for NetBIOS broadcasts
// which is the highest IP in the subnet for Linux and the regular IP for
// Windows.
func subnetBroadcastListenIP(ip *net.IPNet) (net.IP, error) {
ipv4 := ip.IP.To4()
if ipv4 == nil {
return nil, fmt.Errorf("invalid argument: IPv6 instead of IPv4")
}
if runtime.GOOS == osWindows {
return ipv4, nil
}
rawIP := binary.BigEndian.Uint32(ipv4)
rawMask := binary.BigEndian.Uint32(net.IP(ip.Mask).To4())
broadcastIP := make(net.IP, len(ipv4))
binary.BigEndian.PutUint32(broadcastIP, rawIP|^rawMask)
return broadcastIP, nil
}
func decodeNetBIOSEncoding(netBIOSName string) string {
netBIOSName = normalizedName(netBIOSName, HandlerTypeNetBIOS)
if len(netBIOSName)%2 != 0 {
return netBIOSName
}
decodedName := ""
for i := 0; i < len(netBIOSName); i += 2 {
higher := netBIOSName[i] - 'A'
lower := netBIOSName[i+1] - 'A'
full := higher<<4 | lower //nolint:gomnd
decodedName += string(full)
}
return decodedName
}
func decodeNetBIOSHostname(netBIOSName string) string {
decodedName := decodeNetBIOSEncoding(netBIOSName)
if decodedName == "" {
return ""
}
for {
suffix := decodedName[len(decodedName)-1]
if unicode.IsGraphic(rune(suffix)) {
break
}
decodedName = strings.TrimRight(decodedName, string(suffix))
}
return strings.TrimSpace(decodedName)
}
// The following constants hold the names of the NetBIOS suffixes
// (https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-nbte/
// 6dbf0972-bb15-4f29-afeb-baaae98416ed#Appendix_A_2).
const (
NetBIOSSuffixWorkstationService = "Workstation Name"
NetBIOSSuffixWindowsMessengerService = "Messenger Service"
NetBIOSSuffixRemoteAccessServer = "Remote Access Server"
NetBIOSSuffixNetDDEService = "NetDDE Service"
NetBIOSSuffixFileService = "File Service"
NetBIOSSuffixRemoteAccessServiceClient = "Remote Access Client"
NetBIOSSuffixMSExchangeServerInterchange = "MS Exchange Service Interchange"
NetBIOSSuffixMSExchangeStore = "MS Exchange Store"
NetBIOSSuffixMSExchangeDirectory = "MS Exchange Directory"
NetBIOSSuffixLotusNotesServerService = "Lotus Notes Server"
NetBIOSSuffixLotusNotes = "Lotus Notes"
NetBIOSSuffixModemSharingServerService = "Modem Sharing Server"
NetBIOSSuffixModemSharingClientService = "Modem Sharing Client"
NetBIOSSuffixSMSClientsRemoteControl = "SMS Clients Remote Control"
NetBIOSSuffixSMSAdministratorsRemoteControlTool = "SMS Admin Remote Control Tool"
NetBIOSSuffixSMSClientsRemoteChat = "SMS Clients Remote Chat"
NetBIOSSuffixSMSClientsRemoteTransfer = "SMS Clients Remote Transfer"
NetBIOSSuffixDECPathworksTCPIPService = "DEC Pathworks TCPIP Service"
NetBIOSSuffixMacAfeeAntivirus = "McAfee Antivirus"
NetBIOSSuffixMSExchangeMTA = "MS Exchange MTA"
NetBIOSSuffixMSExchangeIMC = "MS Exchange IMC"
NetBIOSSuffixNetworkMonitorAgent = "Network Monitor Agent"
NetBIOSSuffixNetworkMonitorApplication = "Network Monitor Application"
NetBIOSSuffixDomainMasterBrowser = "Primary DC"
NetBIOSSuffixMasterBrowser = "Master Browser"
NetBIOSSuffixDomainControllers = "Domain Controllers"
NetBIOSSuffixBrowserServiceElections = "Browser Server Elections"
NetBIOSSuffixMSBrowse = "MSBROWSE Master Browser"
)
func decodeNetBIOSSuffix(netBIOSName string) string { //nolint:gocyclo
const decodedBIOSNameSize = 16
decodedName := decodeNetBIOSEncoding(netBIOSName)
if len(decodedName) != decodedBIOSNameSize {
return "No Suffix"
}
//nolint:gomnd
switch suffix := decodedName[decodedBIOSNameSize-1]; suffix {
case 0x00:
return NetBIOSSuffixWorkstationService
case 0x01:
if decodedName[decodedBIOSNameSize-2] == 0x02 {
return NetBIOSSuffixMSBrowse
}
return NetBIOSSuffixWindowsMessengerService
case 0x03:
return NetBIOSSuffixWindowsMessengerService
case 0x06:
return NetBIOSSuffixRemoteAccessServer
case 0x1C:
return NetBIOSSuffixDomainControllers
case 0x1D:
return NetBIOSSuffixMasterBrowser
case 0x1E:
return NetBIOSSuffixBrowserServiceElections
case 0x1F:
return NetBIOSSuffixNetDDEService
case 0x20:
return NetBIOSSuffixFileService
case 0x21:
return NetBIOSSuffixRemoteAccessServiceClient
case 0x22:
return NetBIOSSuffixMSExchangeServerInterchange
case 0x23:
return NetBIOSSuffixMSExchangeStore
case 0x24:
return NetBIOSSuffixMSExchangeDirectory
case 0x2B:
return NetBIOSSuffixLotusNotesServerService
case 0x2F, 0x33:
return NetBIOSSuffixLotusNotes
case 0x30:
return NetBIOSSuffixModemSharingServerService
case 0x31:
return NetBIOSSuffixModemSharingClientService
case 0x1B:
return NetBIOSSuffixDomainMasterBrowser
case 0x42:
return NetBIOSSuffixMacAfeeAntivirus
case 0x43:
return NetBIOSSuffixSMSClientsRemoteControl
case 0x44:
return NetBIOSSuffixSMSAdministratorsRemoteControlTool
case 0x45:
return NetBIOSSuffixSMSClientsRemoteChat
case 0x46:
return NetBIOSSuffixSMSClientsRemoteTransfer
case 0x4C, 0x52:
return NetBIOSSuffixDECPathworksTCPIPService
case 0x87:
return NetBIOSSuffixMSExchangeMTA
case 0x6A:
return NetBIOSSuffixMSExchangeIMC
case 0xBE:
return NetBIOSSuffixNetworkMonitorAgent
case 0xBF:
return NetBIOSSuffixNetworkMonitorApplication
default:
return fmt.Sprintf("Suffix 0x%02x", suffix)
}
}
func encodeNetBIOSLocator(ip net.IP) string {
return "0000" + hex.EncodeToString(ip.To4())
}
// RunMDNSResponder creates a listener for mDNS requests.
func RunMDNSResponder(ctx context.Context, logger *Logger, config Config) error { //nolint:dupl
errGroup, ctx := errgroup.WithContext(ctx)
if hasIPv4Address(config.Interface) {
errGroup.Go(func() error {
listenAddr := &net.UDPAddr{IP: net.ParseIP(mDNSMulticastIPv4), Port: mDNSPort}
conn, err := ListenUDPMulticast(config.Interface, listenAddr)
if err != nil {
return fmt.Errorf("listen: %w", err)
}
defer conn.Close() //nolint:errcheck
logger.Infof("listening via UDP on %s", listenAddr)
err = RunDNSHandlerOnUDPConnection(ctx, conn, logger, config, HandlerTypeMDNS)
if err != nil {
return err
}
return nil
})
}
if hasIPv6Address(config.Interface) && !config.NoIPv6LNR {
errGroup.Go(func() error {
listenAddr := &net.UDPAddr{
IP: net.ParseIP(mDNSMulticastIPv6),
Port: mDNSPort,
Zone: config.Interface.Name,
}
conn, err := ListenUDPMulticast(config.Interface, listenAddr)
if err != nil {
return fmt.Errorf("listen: %w", err)
}
defer conn.Close() //nolint:errcheck
logger.Infof("listening via UDP on %s", listenAddr)
err = RunDNSHandlerOnUDPConnection(ctx, conn, logger, config, HandlerTypeMDNS)
if err != nil {
return err
}
return nil
})
}
return errGroup.Wait()
}
// RunLLMNRResponder creates a listener for LLMNR requests.
func RunLLMNRResponder(ctx context.Context, logger *Logger, config Config) error { //nolint:dupl
errGroup, ctx := errgroup.WithContext(ctx)
if hasIPv4Address(config.Interface) {
errGroup.Go(func() error {
listenAddr := &net.UDPAddr{IP: net.ParseIP(llmnrMulticastIPv4), Port: llmnrPort}
conn, err := ListenUDPMulticast(config.Interface, listenAddr)
if err != nil {
return fmt.Errorf("listen: %w", err)
}
defer conn.Close() //nolint:errcheck
logger.Infof("listening via UDP on %s", listenAddr)
err = RunDNSHandlerOnUDPConnection(ctx, conn, logger, config, HandlerTypeLLMNR)
if err != nil {
return err
}
return nil
})
}
if hasIPv6Address(config.Interface) && !config.NoIPv6LNR {
errGroup.Go(func() error {
listenAddr := &net.UDPAddr{
IP: net.ParseIP(llmnrMulticastIPv6),
Port: llmnrPort,
Zone: config.Interface.Name,
}
conn, err := ListenUDPMulticast(config.Interface, listenAddr)
if err != nil {
return fmt.Errorf("listen: %w", err)
}
defer conn.Close() //nolint:errcheck
logger.Infof("listening via UDP on %s", listenAddr)
err = RunDNSHandlerOnUDPConnection(ctx, conn, logger, config, HandlerTypeLLMNR)
if err != nil {
return err
}
return nil
})
}
return errGroup.Wait()
}
func hasIPv6Address(iface *net.Interface) bool {
addrs, err := iface.Addrs()
if err != nil {
return false
}
for _, addr := range addrs {
ip, ok := addr.(*net.IPNet)
if !ok {
continue
}
if ip.IP.To4() == nil {
return true
}
}
return false
}
func hasIPv4Address(iface *net.Interface) bool {
addrs, err := iface.Addrs()
if err != nil {
return false
}
for _, addr := range addrs {
ip, ok := addr.(*net.IPNet)
if !ok {
continue
}
if ip.IP.To4() != nil {
return true
}
}
return false
}