-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrygroup.go
455 lines (374 loc) · 10.3 KB
/
entrygroup.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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
// CGo binding for Avahi
//
// Copyright (C) 2024 and up by Alexander Pevzner ([email protected])
// See LICENSE for license terms and conditions
//
// Avahi Entry Group (the publishing API)
//
//go:build linux || freebsd
package avahi
import (
"context"
"math"
"net/netip"
"runtime/cgo"
"sync/atomic"
"time"
"unsafe"
)
// #include <stdlib.h>
// #include <avahi-client/client.h>
// #include <avahi-client/publish.h>
//
// void entryGroupCallback (
// AvahiEntryGroup *g,
// AvahiClientState s,
// void *userdata);
import "C"
// EntryGroup represents a group of RR records published via avahi-daemon.
//
// All entries in the group are published or updated atomically.
type EntryGroup struct {
clnt *Client // Owning Client
handle cgo.Handle // Handle to self
avahiEntryGroup *C.AvahiEntryGroup // Avahi object
queue eventqueue[*EntryGroupEvent] // Event queue
empty atomic.Bool // The group is empty
closed atomic.Bool // EventGroup is closed
}
// EntryGroupEvent represents an [EntryGroup] state change event.
type EntryGroupEvent struct {
State EntryGroupState // Entry group state
Err ErrCode // In a case of EntryGroupStateFailure
}
// EntryGroupServiceIdent contains common set of parameters
// that identify a service in EntryGroup.
//
// Please notice, services are identified by the DNS record name, which
// is EntryGroupServiceIdent.InstanceName, but all other parameters
// must match. In another words, you can't have two distinct entries
// in the EntryGroup with the same InstanceName and difference in other
// parameters (in particular, you can't define per-interface or
// per-protocol distinct entries).
type EntryGroupServiceIdent struct {
IfIdx IfIndex // Network interface index
Proto Protocol // Publishing network protocol
InstanceName string // Service instance name
SvcType string // Service type
Domain string // Service domain (use "" for default)
}
// EntryGroupService represents a service registration.
type EntryGroupService struct {
IfIdx IfIndex // Network interface index
Proto Protocol // Publishing network protocol
InstanceName string // Service instance name
SvcType string // Service type
Domain string // Service domain (use "" for default)
Hostname string // Host name (use "" for default)
Port int // IP port
Txt []string // TXT record ("key=value"...)
}
// EntryGroupAddress represents a host address registration.
type EntryGroupAddress struct {
IfIdx IfIndex // Network interface index
Proto Protocol // Publishing network protocol
Hostname string // Host name (use "" for default)
Addr netip.Addr // IP address
}
// EntryGroupRecord represents a raw DNS record that can be added
// to the EntryGroup.
type EntryGroupRecord struct {
IfIdx IfIndex // Network interface index
Proto Protocol // Publishing network protocol
Name string // Record name
RClass DNSClass // Record DNS class
RType DNSType // Record DNS type
TTL time.Duration // DNS TTL, rounded to seconds and must fit int32
RData []byte // Record data
}
// NewEntryGroup creates a new [EntryGroup].
func NewEntryGroup(clnt *Client) (*EntryGroup, error) {
// Initialize EntryGroup structure
egrp := &EntryGroup{clnt: clnt}
egrp.handle = cgo.NewHandle(egrp)
egrp.queue.init()
egrp.empty.Store(true)
// Create AvahiEntryGroup
avahiClient := clnt.begin()
defer clnt.end()
egrp.avahiEntryGroup = C.avahi_entry_group_new(
avahiClient,
C.AvahiEntryGroupCallback(C.entryGroupCallback),
unsafe.Pointer(&egrp.handle),
)
if egrp.avahiEntryGroup == nil {
egrp.queue.Close()
egrp.handle.Delete()
return nil, clnt.errno()
}
// Register self to be closed if Client is closed
egrp.clnt.addCloser(egrp)
return egrp, nil
}
// Chan returns channel where [EntryGroupEvent]s are sent.
func (egrp *EntryGroup) Chan() <-chan *EntryGroupEvent {
return egrp.queue.Chan()
}
// Get waits for the next [EntryGroupEvent].
//
// It returns:
// - event, nil - if event available
// - nil, error - if context is canceled
// - nil, nil - if EntryGroup was closed
func (egrp *EntryGroup) Get(ctx context.Context) (*EntryGroupEvent, error) {
select {
case <-ctx.Done():
return nil, ctx.Err()
case evnt := <-egrp.Chan():
return evnt, nil
}
}
// Close closed the [EntryGroup].
//
// Note, double close is safe
func (egrp *EntryGroup) Close() {
if !egrp.closed.Swap(true) {
egrp.clnt.begin()
egrp.clnt.delCloser(egrp)
C.avahi_entry_group_free(egrp.avahiEntryGroup)
egrp.avahiEntryGroup = nil
egrp.clnt.end()
egrp.queue.Close()
egrp.handle.Delete()
}
}
// Commit changes to the EntryGroup.
func (egrp *EntryGroup) Commit() error {
egrp.clnt.begin()
defer egrp.clnt.end()
rc := C.avahi_entry_group_commit(egrp.avahiEntryGroup)
if rc < 0 {
return ErrCode(rc)
}
return nil
}
// Reset (purge) the EntryGroup. This takes effect immediately
// (without commit).
func (egrp *EntryGroup) Reset() error {
egrp.clnt.begin()
defer egrp.clnt.end()
rc := C.avahi_entry_group_reset(egrp.avahiEntryGroup)
if rc < 0 {
return ErrCode(rc)
}
egrp.empty.Store(true)
return nil
}
// IsEmpty reports if EntryGroup is empty.
func (egrp *EntryGroup) IsEmpty() bool {
return egrp.empty.Load()
}
// AddService adds a service registration
func (egrp *EntryGroup) AddService(
svc *EntryGroupService,
flags PublishFlags) error {
// Convert strings from Go to C
cinstancename := C.CString(svc.InstanceName)
defer C.free(unsafe.Pointer(cinstancename))
ctype := C.CString(svc.SvcType)
defer C.free(unsafe.Pointer(ctype))
var cdomain *C.char
if svc.Domain != "" {
cdomain = C.CString(svc.Domain)
defer C.free(unsafe.Pointer(cdomain))
}
var chostname *C.char
if svc.Hostname != "" {
chostname = C.CString(svc.Hostname)
defer C.free(unsafe.Pointer(chostname))
}
// Convert TXT from Go to C
ctxt, err := makeAvahiStringList(svc.Txt)
if err != nil {
return err
}
defer C.avahi_string_list_free(ctxt)
// Call Avahi
egrp.clnt.begin()
defer egrp.clnt.end()
rc := C.avahi_entry_group_add_service_strlst(
egrp.avahiEntryGroup,
C.AvahiIfIndex(svc.IfIdx),
C.AvahiProtocol(svc.Proto),
C.AvahiPublishFlags(flags),
cinstancename,
ctype,
cdomain,
chostname,
C.uint16_t(svc.Port),
ctxt,
)
if rc < 0 {
return ErrCode(rc)
}
egrp.empty.Store(false)
return nil
}
// AddServiceSubtype adds subtype for the existent service.
func (egrp *EntryGroup) AddServiceSubtype(
svcid *EntryGroupServiceIdent,
subtype string,
flags PublishFlags) error {
// Convert strings from Go to C
cinstancename := C.CString(svcid.InstanceName)
defer C.free(unsafe.Pointer(cinstancename))
ctype := C.CString(svcid.SvcType)
defer C.free(unsafe.Pointer(ctype))
var cdomain *C.char
if svcid.Domain != "" {
cdomain = C.CString(svcid.Domain)
defer C.free(unsafe.Pointer(cdomain))
}
csubtype := C.CString(subtype)
defer C.free(unsafe.Pointer(csubtype))
// Call Avahi
egrp.clnt.begin()
defer egrp.clnt.end()
rc := C.avahi_entry_group_add_service_subtype(
egrp.avahiEntryGroup,
C.AvahiIfIndex(svcid.IfIdx),
C.AvahiProtocol(svcid.Proto),
C.AvahiPublishFlags(flags),
cinstancename,
ctype,
cdomain,
csubtype,
)
if rc < 0 {
return ErrCode(rc)
}
egrp.empty.Store(false)
return nil
}
// UpdateServiceTxt updates TXT record for the existent service.
func (egrp *EntryGroup) UpdateServiceTxt(
svcid *EntryGroupServiceIdent,
txt []string,
flags PublishFlags) error {
// Convert strings from Go to C
cinstancename := C.CString(svcid.InstanceName)
defer C.free(unsafe.Pointer(cinstancename))
ctype := C.CString(svcid.SvcType)
defer C.free(unsafe.Pointer(ctype))
var cdomain *C.char
if svcid.Domain != "" {
cdomain = C.CString(svcid.Domain)
defer C.free(unsafe.Pointer(cdomain))
}
// Convert TXT from Go to C
ctxt, err := makeAvahiStringList(txt)
if err != nil {
return err
}
defer C.avahi_string_list_free(ctxt)
// Call Avahi
egrp.clnt.begin()
defer egrp.clnt.end()
rc := C.avahi_entry_group_update_service_txt_strlst(
egrp.avahiEntryGroup,
C.AvahiIfIndex(svcid.IfIdx),
C.AvahiProtocol(svcid.Proto),
C.AvahiPublishFlags(flags),
cinstancename,
ctype,
cdomain,
ctxt,
)
if rc < 0 {
return ErrCode(rc)
}
egrp.empty.Store(false)
return nil
}
// AddAddress adds host/address pair.
func (egrp *EntryGroup) AddAddress(
rec *EntryGroupAddress,
flags PublishFlags) error {
// Convert address from Go to C
caddr, err := makeAvahiAddress(rec.Addr)
if err != nil {
return err
}
// Convert strings from Go to C
chostname := C.CString(rec.Hostname)
defer C.free(unsafe.Pointer(chostname))
// Call Avahi
egrp.clnt.begin()
defer egrp.clnt.end()
rc := C.avahi_entry_group_add_address(
egrp.avahiEntryGroup,
C.AvahiIfIndex(rec.IfIdx),
C.AvahiProtocol(rec.Proto),
C.AvahiPublishFlags(flags),
chostname,
&caddr,
)
if rc < 0 {
return ErrCode(rc)
}
egrp.empty.Store(false)
return nil
}
// AddRecord adds a raw DNS record
func (egrp *EntryGroup) AddRecord(
rec *EntryGroupRecord,
flags PublishFlags) error {
// Convert TTL from Go to C
if rec.TTL < 0 || rec.TTL > time.Second*math.MaxInt32 {
return ErrInvalidTTL
}
cttl := C.uint32_t((rec.TTL + time.Second/2) / time.Second)
// Convert strings from Go to C
cname := C.CString(rec.Name)
defer C.free(unsafe.Pointer(cname))
// Convert record data from Go to C
csize := C.size_t(len(rec.RData))
cdata := C.CBytes(rec.RData)
defer C.free(cdata)
// Call Avahi
egrp.clnt.begin()
defer egrp.clnt.end()
rc := C.avahi_entry_group_add_record(
egrp.avahiEntryGroup,
C.AvahiIfIndex(rec.IfIdx),
C.AvahiProtocol(rec.Proto),
C.AvahiPublishFlags(flags),
cname,
C.uint16_t(rec.RClass),
C.uint16_t(rec.RType),
cttl,
cdata,
csize,
)
if rc < 0 {
return ErrCode(rc)
}
egrp.empty.Store(false)
return nil
}
// entryGroupCallback called by AvahiClient to report client state change
//
//export entryGroupCallback
func entryGroupCallback(
g *C.AvahiEntryGroup,
s C.AvahiClientState,
p unsafe.Pointer) {
clntHandle := *(*cgo.Handle)(p)
egrp := clntHandle.Value().(*EntryGroup)
state := EntryGroupState(s)
evnt := &EntryGroupEvent{State: state}
if state == EntryGroupStateFailure {
evnt.Err = egrp.clnt.errno()
}
egrp.queue.Push(evnt)
}