-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddressresolver.go
196 lines (173 loc) · 5.33 KB
/
addressresolver.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
// CGo binding for Avahi
//
// Copyright (C) 2024 and up by Alexander Pevzner ([email protected])
// See LICENSE for license terms and conditions
//
// Address resolver
//
//go:build linux || freebsd
package avahi
import (
"context"
"net/netip"
"runtime/cgo"
"sync/atomic"
"unsafe"
)
// #include <stdlib.h>
// #include <avahi-client/lookup.h>
//
// void addressResolverCallback (
// AvahiAddressResolver *r,
// AvahiIfIndex interface,
// AvahiProtocol proto,
// AvahiResolverEvent event,
// AvahiAddress *a,
// char *host_name,
// AvahiLookupResultFlags flags,
// void *userdata);
import "C"
// AddressResolver resolves hostname by IP address.
type AddressResolver struct {
clnt *Client // Owning Client
handle cgo.Handle // Handle to self
avahiResolver *C.AvahiAddressResolver // Underlying object
queue eventqueue[*AddressResolverEvent] // Event queue
closed atomic.Bool // Resolver is closed
}
// AddressResolverEvent represents events, generated by the
// [AddressResolver].
type AddressResolverEvent struct {
Event ResolverEvent // Event code
IfIdx IfIndex // Network interface index
Proto Protocol // Network protocol
Err ErrCode // In a case of ResolverFailure
Flags LookupResultFlags // Lookup flags
Addr netip.Addr // IP address (mirrored)
Hostname string // Hostname (resolved)
}
// NewAddressResolver creates a new [AddressResolver].
//
// AddressResolver resolves hostname by provided IP address.
// Roughly speaking, it does the work similar to gethostbyaddr
// using MDNS. Resolved information is reported via channel
// returned by the [AddressResolver.Chan].
//
// Function parameters:
// - clnt is the pointer to [Client]
// - ifidx is the network interface index. Use [IfIndexUnspec]
// to specify all interfaces.
// - proto is the IP4/IP6 protocol, used as transport for queries. If
// set to [ProtocolUnspec], both protocols will be used.
// - addr is the IP address for which hostname discovery is performed.
// - flags provide some lookup options. See [LookupFlags] for details.
//
// AddressResolver must be closed after use with the [AddressResolver.Close]
// function call.
func NewAddressResolver(
clnt *Client,
ifidx IfIndex,
proto Protocol,
addr netip.Addr,
flags LookupFlags) (*AddressResolver, error) {
// Initialize AddressResolver structure
resolver := &AddressResolver{clnt: clnt}
resolver.handle = cgo.NewHandle(resolver)
resolver.queue.init()
// Convert address to AvahiAddress
caddr, err := makeAvahiAddress(addr)
if err != nil {
return nil, ErrInvalidAddress
}
// Create AvahiAddressResolver
avahiClient := clnt.begin()
defer clnt.end()
resolver.avahiResolver = C.avahi_address_resolver_new(
avahiClient,
C.AvahiIfIndex(ifidx),
C.AvahiProtocol(proto),
&caddr,
C.AvahiLookupFlags(flags),
C.AvahiAddressResolverCallback(C.addressResolverCallback),
unsafe.Pointer(&resolver.handle),
)
if resolver.avahiResolver == nil {
resolver.queue.Close()
resolver.handle.Delete()
return nil, clnt.errno()
}
// Register self to be closed if Client is closed
resolver.clnt.addCloser(resolver)
return resolver, nil
}
// Chan returns channel where [AddressResolverEvent]s are sent.
func (resolver *AddressResolver) Chan() <-chan *AddressResolverEvent {
return resolver.queue.Chan()
}
// Get waits for the next [AddressResolverEvent].
//
// It returns:
// - event, nil - if event available
// - nil, error - if context is canceled
// - nil, nil - if AddressResolver was closed
func (resolver *AddressResolver) Get(ctx context.Context) (
*AddressResolverEvent, error) {
select {
case <-ctx.Done():
return nil, ctx.Err()
case evnt := <-resolver.Chan():
return evnt, nil
}
}
// Close closes the [AddressResolver] and releases allocated resources.
// It closes the event channel, effectively unblocking pending readers.
//
// Note, double close is safe.
func (resolver *AddressResolver) Close() {
if !resolver.closed.Swap(true) {
resolver.clnt.begin()
resolver.clnt.delCloser(resolver)
C.avahi_address_resolver_free(resolver.avahiResolver)
resolver.avahiResolver = nil
resolver.clnt.end()
resolver.queue.Close()
resolver.handle.Delete()
}
}
// addressResolverCallback called by AvahiAddressResolver to
// report resolved hostnames.
//
//export addressResolverCallback
func addressResolverCallback(
r *C.AvahiAddressResolver,
ifidx C.AvahiIfIndex,
proto C.AvahiProtocol,
event C.AvahiResolverEvent,
caddr *C.AvahiAddress,
hostname *C.char,
flags C.AvahiLookupResultFlags,
p unsafe.Pointer) {
resolver := (*cgo.Handle)(p).Value().(*AddressResolver)
clnt := resolver.clnt
// Generate an event
ip := decodeAvahiAddress(IfIndex(ifidx), caddr)
evnt := &AddressResolverEvent{
Event: ResolverEvent(event),
IfIdx: IfIndex(ifidx),
Proto: Protocol(proto),
Flags: LookupResultFlags(flags),
Hostname: C.GoString(hostname),
Addr: ip,
}
// If host is connected to the internet, Avahi erroneously
// uses a real host name and domain instead of localhost.localdomain.
//
// Fix it here.
if clnt.hasFlags(ClientLoopbackWorkarounds) && ip.IsLoopback() {
evnt.Hostname = "localhost.localdomain"
}
if evnt.Event == ResolverFailure {
evnt.Err = clnt.errno()
}
resolver.queue.Push(evnt)
}