-
Notifications
You must be signed in to change notification settings - Fork 25
/
usb_linux.go
310 lines (283 loc) · 7.11 KB
/
usb_linux.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
package hid
import (
"bytes"
"encoding/binary"
"errors"
"io/ioutil"
"os"
"path/filepath"
"regexp"
"strconv"
"syscall"
"time"
"unsafe"
)
type usbDevice struct {
info Info
f *os.File
epIn int
epOut int
inputPacketSize uint16
outputPacketSize uint16
path string
}
func (hid *usbDevice) Open() (err error) {
if hid.f != nil {
return errors.New("device is already opened")
}
if hid.f, err = os.OpenFile(hid.path, os.O_RDWR, 0644); err != nil {
return
} else {
return hid.claim()
}
}
func (hid *usbDevice) Close() {
if hid.f != nil {
hid.release()
hid.f.Close()
hid.f = nil
}
}
func (hid *usbDevice) Info() Info {
return hid.info
}
func (hid *usbDevice) ioctl(n uint32, arg interface{}) (int, error) {
b := new(bytes.Buffer)
if err := binary.Write(b, binary.LittleEndian, arg); err != nil {
return -1, err
}
r, _, err := syscall.Syscall6(syscall.SYS_IOCTL,
uintptr(hid.f.Fd()), uintptr(n),
uintptr(unsafe.Pointer(&(b.Bytes()[0]))), 0, 0, 0)
return int(r), err
}
func (hid *usbDevice) claim() error {
ifno := uint32(hid.info.Interface)
if r, errno := hid.ioctl(USBDEVFS_IOCTL, &usbfsIoctl{
Interface: ifno,
IoctlCode: USBDEVFS_DISCONNECT,
Data: 0,
}); r == -1 {
Logger.Println("driver disconnect failed:", r, errno)
}
if r, errno := hid.ioctl(USBDEVFS_CLAIM, &ifno); r == -1 {
return errno
}
return nil
}
func (hid *usbDevice) release() error {
ifno := uint32(hid.info.Interface)
if r, errno := hid.ioctl(USBDEVFS_RELEASE, &ifno); r == -1 {
return errno
}
if r, errno := hid.ioctl(USBDEVFS_IOCTL, &usbfsIoctl{
Interface: ifno,
IoctlCode: USBDEVFS_CONNECT,
Data: 0,
}); r == -1 {
Logger.Println("driver connect failed:", r, errno)
}
return nil
}
func (hid *usbDevice) Ctrl(rtype, req, val, index int, data []byte, t int) (int, error) {
return hid.ctrl(rtype, req, val, index, data, t)
}
func (hid *usbDevice) ctrl(rtype, req, val, index int, data []byte, t int) (int, error) {
s := usbfsCtrl{
ReqType: uint8(rtype),
Req: uint8(req),
Value: uint16(val),
Index: uint16(index),
Len: uint16(len(data)),
Timeout: uint32(t),
Data: slicePtr(data),
}
if r, err := hid.ioctl(USBDEVFS_CONTROL, &s); r == -1 {
return -1, err
} else {
return r, nil
}
}
func (hid *usbDevice) intr(ep int, data []byte, t int) (int, error) {
if r, err := hid.ioctl(USBDEVFS_BULK, &usbfsBulk{
Endpoint: uint32(ep),
Len: uint32(len(data)),
Timeout: uint32(t),
Data: slicePtr(data),
}); r == -1 {
return -1, err
} else {
return r, nil
}
}
func (hid *usbDevice) Read(size int, timeout time.Duration) ([]byte, error) {
if size < 0 {
size = int(hid.inputPacketSize)
}
data := make([]byte, size, size)
ms := timeout / (1 * time.Millisecond)
n, err := hid.intr(hid.epIn, data, int(ms))
if err == nil {
return data[:n], nil
} else {
return nil, err
}
}
func (hid *usbDevice) Write(data []byte, timeout time.Duration) (int, error) {
if hid.epOut > 0 {
ms := timeout / (1 * time.Millisecond)
return hid.intr(hid.epOut, data, int(ms))
} else {
return hid.ctrl(0x21, 0x09, 2<<8+0, int(hid.info.Interface), data, len(data))
}
}
func (hid *usbDevice) HIDReport() ([]byte, error) {
buf := make([]byte, 256, 256)
// In transfer, recepient interface, GetDescriptor, HidReport type
n, err := hid.ctrl(0x81, 0x06, 0x22<<8+int(hid.info.Interface), 0, buf, 1000)
if err != nil {
return nil, err
} else {
return buf[:n], nil
}
}
func (hid *usbDevice) GetReport(report int) ([]byte, error) {
buf := make([]byte, 256, 256)
// 10100001, GET_REPORT, type*256+id, intf, len, data
n, err := hid.ctrl(0xa1, 0x01, 3<<8+report, int(hid.info.Interface), buf, 1000)
if err != nil {
return nil, err
} else {
return buf[:n], nil
}
}
func (hid *usbDevice) SetReport(report int, data []byte) error {
// 00100001, SET_REPORT, type*256+id, intf, len, data
_, err := hid.ctrl(0x21, 0x09, 3<<8+report, int(hid.info.Interface), data, 1000)
return err
}
//
// Enumeration
//
func cast(b []byte, to interface{}) error {
r := bytes.NewBuffer(b)
return binary.Read(r, binary.LittleEndian, to)
}
// typical /dev bus entry: /dev/bus/usb/006/003
var reDevBusDevice = regexp.MustCompile(`/dev/bus/usb/(\d+)/(\d+)`)
func walker(path string, cb func(Device)) error {
if desc, err := ioutil.ReadFile(path); err != nil {
return err
} else {
r := bytes.NewBuffer(desc)
expected := map[byte]bool{
UsbDescTypeDevice: true,
}
devDesc := deviceDesc{}
var device *usbDevice
for r.Len() > 0 {
if length, err := r.ReadByte(); err != nil {
return err
} else if err := r.UnreadByte(); err != nil {
return err
} else {
body := make([]byte, length, length)
if n, err := r.Read(body); err != nil {
return err
} else if n != int(length) || length < 2 {
return errors.New("short read")
} else {
if !expected[body[1]] {
continue
}
switch body[1] {
case UsbDescTypeDevice:
expected[UsbDescTypeDevice] = false
expected[UsbDescTypeConfig] = true
if err := cast(body, &devDesc); err != nil {
return err
}
//info := Info{
//}
case UsbDescTypeConfig:
expected[UsbDescTypeInterface] = true
expected[UsbDescTypeReport] = false
expected[UsbDescTypeEndpoint] = false
// Device left from the previous config
if device != nil {
cb(device)
device = nil
}
case UsbDescTypeInterface:
if device != nil {
cb(device)
device = nil
}
expected[UsbDescTypeEndpoint] = true
expected[UsbDescTypeReport] = true
i := &interfaceDesc{}
if err := cast(body, i); err != nil {
return err
}
if i.InterfaceClass == UsbHidClass {
matches := reDevBusDevice.FindStringSubmatch(path)
bus := 0
dev := 0
if len(matches) >= 3 {
bus, _ = strconv.Atoi(matches[1])
dev, _ = strconv.Atoi(matches[2])
}
device = &usbDevice{
info: Info{
Vendor: devDesc.Vendor,
Product: devDesc.Product,
Revision: devDesc.Revision,
SubClass: i.InterfaceSubClass,
Protocol: i.InterfaceProtocol,
Interface: i.Number,
Bus: bus,
Device: dev,
},
path: path,
}
}
case UsbDescTypeEndpoint:
if device != nil {
if device.epIn != 0 && device.epOut != 0 {
cb(device)
device.epIn = 0
device.epOut = 0
}
e := &endpointDesc{}
if err := cast(body, e); err != nil {
return err
}
if e.Address > 0x80 && device.epIn == 0 {
device.epIn = int(e.Address)
device.inputPacketSize = e.MaxPacketSize
} else if e.Address < 0x80 && device.epOut == 0 {
device.epOut = int(e.Address)
device.outputPacketSize = e.MaxPacketSize
}
}
}
}
}
}
if device != nil {
cb(device)
}
}
return nil
}
func UsbWalk(cb func(Device)) {
filepath.Walk(DevBusUsb, func(f string, fi os.FileInfo, err error) error {
if err != nil || fi.IsDir() {
return nil
}
if err := walker(f, cb); err != nil {
Logger.Println("UsbWalk: ", err)
}
return nil
})
}