123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- 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
- })
- }
|