-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrfkill.go
260 lines (225 loc) · 4.67 KB
/
rfkill.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
//nolint:wsl,gomnd,gocognit
package rfkill
import (
"context"
"fmt"
"io/ioutil"
"os"
"strconv"
"strings"
"syscall"
"time"
)
// List returns an accurate list of currently existing radio devices.
//nolint:funlen
func List(ctx context.Context) ([]*Device, error) {
fd, err := openEventDev()
if err != nil {
return nil, err
}
defer syscall.Close(fd)
devs := []*Device{}
var raw [rfkillEventSize]byte
for {
select {
case <-ctx.Done():
return nil, ctx.Err()
default:
}
if _, err = syscall.Read(fd, raw[:]); err != nil {
if err != syscall.EAGAIN {
return nil, err
}
return devs, nil
}
ev := rfkillEvent{}
ev.unmarshall(raw)
switch op := EventOp(ev.Op); op {
case AddOp:
name, err := getDevName(ev.ID)
if err != nil {
return nil, err
}
dev := &Device{
ID: ev.ID,
Type: RadioType(ev.Type),
Name: name,
}
updateDevState(dev, &ev)
devs = append(devs, dev)
case DelOp:
for i, dev := range devs {
if dev.ID == ev.ID {
devs = append(devs[0:i], devs[i+1:]...)
}
}
case ChangeOp:
for _, dev := range devs {
if dev.ID == ev.ID {
updateDevState(dev, &ev)
}
}
case ChangeAllOp:
for _, dev := range devs {
if RadioType(ev.Type) == AllRadio || RadioType(ev.Type) == dev.Type {
updateDevState(dev, &ev)
}
}
default:
return nil, fmt.Errorf("unknown rfkill event %d", ev.Op)
}
}
}
// Block blocks device(s) according to the given block option.
func Block(option BlockOption) error {
return block(1, option)
}
// Unblock unblocks device(s) according to the given block option.
func Unblock(option BlockOption) error {
return block(0, option)
}
// Events reports rfkill events until context is cancelled.
func Events(ctx context.Context, pollInterval time.Duration, callback func(ev *Event)) error {
fd, err := openEventDev()
if err != nil {
return err
}
defer syscall.Close(fd)
var raw [rfkillEventSize]byte
for {
select {
case <-ctx.Done():
return ctx.Err()
default:
}
if _, err = syscall.Read(fd, raw[:]); err != nil {
if err != syscall.EAGAIN {
return err
}
select {
case <-ctx.Done():
return ctx.Err()
case <-time.After(pollInterval):
continue
}
}
ev := rfkillEvent{}
ev.unmarshall(raw)
callback(&Event{
ID: ev.ID,
Op: EventOp(ev.Op),
Type: RadioType(ev.Type),
HardBlock: ev.Hard > 0,
SoftBlock: ev.Soft > 0,
})
}
}
func openEventDev() (int, error) {
// device doesn't return EOF
return syscall.Open("/dev/rfkill", syscall.O_RDONLY|syscall.O_CLOEXEC|syscall.O_NONBLOCK, 0)
}
func getDevName(id uint32) (string, error) {
name, err := ioutil.ReadFile("/sys/class/rfkill/rfkill" +
strconv.FormatUint(uint64(id), 10) + "/name")
if err != nil {
return "", err
}
return strings.TrimSuffix(string(name), "\n"), nil
}
func block(soft uint8, option BlockOption) error {
ev := rfkillEvent{
Soft: soft,
}
option(&ev)
f, err := os.OpenFile("/dev/rfkill", os.O_WRONLY, 0)
if err != nil {
return err
}
defer f.Close()
m := ev.marshall()
_, err = f.Write(m[:])
return err
}
func updateDevState(dev *Device, ev *rfkillEvent) {
dev.HardBlock = ev.Hard > 0
dev.SoftBlock = ev.Soft > 0
}
// Device describes radio device.
type Device struct {
ID uint32
Type RadioType
HardBlock bool
SoftBlock bool
Name string
}
// Event describes rfkill event.
type Event struct {
ID uint32
Op EventOp
Type RadioType
HardBlock bool
SoftBlock bool
}
// RadioType is type for radio types.
type RadioType uint8
const (
AllRadio RadioType = iota
WLANRadio
BluetoothRadio
UWBRadio
WIMAXRadio
WWANRadio
GPSRadio
FMRadio
NFCRadio
)
// EventOp is type for event operations.
type EventOp uint8
const (
AddOp EventOp = iota
DelOp
ChangeOp
ChangeAllOp
)
// BlockOption is type for block option.
type BlockOption func(ev *rfkillEvent)
// WithID option sets device to block or unblock by ID
func WithID(id uint) BlockOption {
return func(ev *rfkillEvent) {
ev.Op = uint8(ChangeOp)
ev.ID = uint32(id)
}
}
// WithType option sets devices to block or unblock by type
func WithType(typ RadioType) BlockOption {
return func(ev *rfkillEvent) {
ev.Op = uint8(ChangeAllOp)
ev.Type = uint8(typ)
}
}
type rfkillEvent struct {
ID uint32
Type uint8
Op uint8
Soft uint8
Hard uint8
}
const rfkillEventSize = 8
func (ev *rfkillEvent) marshall() [rfkillEventSize]byte {
bs := [8]byte{
0x00, 0x00, 0x00, 0x00,
ev.Type,
ev.Op,
ev.Soft,
ev.Hard,
}
endianess.PutUint32(bs[:], ev.ID)
return bs
}
func (ev *rfkillEvent) unmarshall(bs [rfkillEventSize]byte) {
ev.ID = endianess.Uint32(bs[:])
ev.Type = bs[4]
ev.Op = bs[5]
ev.Soft = bs[6]
ev.Hard = bs[7]
}