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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016-2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package builtin
import (
"fmt"
"path/filepath"
"regexp"
"strconv"
"strings"
"github.com/snapcore/snapd/interfaces"
"github.com/snapcore/snapd/interfaces/apparmor"
"github.com/snapcore/snapd/interfaces/hotplug"
"github.com/snapcore/snapd/interfaces/udev"
"github.com/snapcore/snapd/snap"
)
const serialPortSummary = `allows accessing a specific serial port`
const serialPortBaseDeclarationSlots = `
serial-port:
allow-installation:
slot-snap-type:
- core
- gadget
deny-auto-connection: true
`
// serialPortInterface is the type for serial port interfaces.
type serialPortInterface struct{}
// Name of the serial-port interface.
func (iface *serialPortInterface) Name() string {
return "serial-port"
}
func (iface *serialPortInterface) StaticInfo() interfaces.StaticInfo {
return interfaces.StaticInfo{
Summary: serialPortSummary,
BaseDeclarationSlots: serialPortBaseDeclarationSlots,
}
}
func (iface *serialPortInterface) String() string {
return iface.Name()
}
// Pattern to match allowed serial device nodes, path attributes will be
// compared to this for validity when not using udev identification
// Known device node patterns we need to support
// - ttyUSBX (UART over USB devices)
// - ttyACMX (ACM modem devices )
// - ttyXRUSBx (Exar Corp. USB UART devices)
// - ttySX (UART serial ports)
// - ttyOX (UART serial ports on ARM)
// - ttymxcX (serial ports on i.mx6UL)
// - ttySCX (NXP SC16IS7xx serial devices)
var serialDeviceNodePattern = regexp.MustCompile("^/dev/tty(mxc|USB|ACM|AMA|XRUSB|S|O|SC)[0-9]+$")
// Pattern that is considered valid for the udev symlink to the serial device,
// path attributes will be compared to this for validity when usb vid and pid
// are also specified
var serialUDevSymlinkPattern = regexp.MustCompile("^/dev/serial-port-[a-z0-9]+$")
// BeforePrepareSlot checks validity of the defined slot
func (iface *serialPortInterface) BeforePrepareSlot(slot *snap.SlotInfo) error {
// Check slot has a path attribute identify serial device
path, ok := slot.Attrs["path"].(string)
if !ok || path == "" {
return fmt.Errorf("serial-port slot must have a path attribute")
}
// XXX: this interface feeds the cleaned path into the regex and is
// left unchanged here for historical reasons. New interfaces (eg,
// like raw-volume) should instead use verifySlotPathAttribute() which
// performs additional verification.
path = filepath.Clean(path)
if iface.hasUsbAttrs(slot) {
// Must be path attribute where symlink will be placed and usb vendor and product identifiers
// Check the path attribute is in the allowable pattern
if !serialUDevSymlinkPattern.MatchString(path) {
return fmt.Errorf("serial-port path attribute specifies invalid symlink location")
}
usbVendor, vOk := slot.Attrs["usb-vendor"].(int64)
if !vOk {
return fmt.Errorf("serial-port slot failed to find usb-vendor attribute")
}
if (usbVendor < 0x1) || (usbVendor > 0xFFFF) {
return fmt.Errorf("serial-port usb-vendor attribute not valid: %d", usbVendor)
}
usbProduct, pOk := slot.Attrs["usb-product"].(int64)
if !pOk {
return fmt.Errorf("serial-port slot failed to find usb-product attribute")
}
if (usbProduct < 0x0) || (usbProduct > 0xFFFF) {
return fmt.Errorf("serial-port usb-product attribute not valid: %d", usbProduct)
}
usbInterfaceNumber, ok := slot.Attrs["usb-interface-number"].(int64)
if ok && (usbInterfaceNumber < 0 || usbInterfaceNumber >= UsbMaxInterfaces) {
return fmt.Errorf("serial-port usb-interface-number attribute cannot be negative or larger than %d", UsbMaxInterfaces-1)
}
} else {
// Just a path attribute - must be a valid usb device node
// Check the path attribute is in the allowable pattern
if !serialDeviceNodePattern.MatchString(path) {
return fmt.Errorf("serial-port path attribute must be a valid device node")
}
}
return nil
}
func (iface *serialPortInterface) UDevPermanentSlot(spec *udev.Specification, slot *snap.SlotInfo) error {
var usbVendor, usbProduct, usbInterfaceNumber int64
var path string
if err := slot.Attr("usb-vendor", &usbVendor); err != nil {
return nil
}
if err := slot.Attr("usb-product", &usbProduct); err != nil {
return nil
}
if err := slot.Attr("path", &path); err != nil || path == "" {
return nil
}
if err := slot.Attr("usb-interface-number", &usbInterfaceNumber); err == nil {
spec.AddSnippet(fmt.Sprintf(`# serial-port
IMPORT{builtin}="usb_id"
SUBSYSTEM=="tty", SUBSYSTEMS=="usb", ATTRS{idVendor}=="%04x", ATTRS{idProduct}=="%04x", ENV{ID_USB_INTERFACE_NUM}=="%02x", SYMLINK+="%s"`, usbVendor, usbProduct, usbInterfaceNumber, strings.TrimPrefix(path, "/dev/")))
} else {
spec.AddSnippet(fmt.Sprintf(`# serial-port
IMPORT{builtin}="usb_id"
SUBSYSTEM=="tty", SUBSYSTEMS=="usb", ATTRS{idVendor}=="%04x", ATTRS{idProduct}=="%04x", SYMLINK+="%s"`, usbVendor, usbProduct, strings.TrimPrefix(path, "/dev/")))
}
return nil
}
func (iface *serialPortInterface) AppArmorConnectedPlug(spec *apparmor.Specification, plug *interfaces.ConnectedPlug, slot *interfaces.ConnectedSlot) error {
if iface.hasUsbAttrs(slot) {
// This apparmor rule is an approximation of serialDeviceNodePattern
// (AARE is different than regex, so we must approximate).
// UDev tagging and device cgroups will restrict down to the specific device
spec.AddSnippet("/dev/tty[A-Z]*[0-9] rwk,")
return nil
}
// Path to fixed device node
var path string
if err := slot.Attr("path", &path); err != nil {
return nil
}
cleanedPath := filepath.Clean(path)
spec.AddSnippet(fmt.Sprintf("%s rwk,", cleanedPath))
return nil
}
func (iface *serialPortInterface) UDevConnectedPlug(spec *udev.Specification, plug *interfaces.ConnectedPlug, slot *interfaces.ConnectedSlot) error {
// For connected plugs, we use vendor and product ids if available,
// otherwise add the kernel device
hasOnlyPath := !iface.hasUsbAttrs(slot)
var usbVendor, usbProduct int64
var path string
if err := slot.Attr("usb-vendor", &usbVendor); err != nil && !hasOnlyPath {
return nil
}
if err := slot.Attr("usb-product", &usbProduct); err != nil && !hasOnlyPath {
return nil
}
if err := slot.Attr("path", &path); err != nil && hasOnlyPath {
return nil
}
if hasOnlyPath {
spec.TagDevice(fmt.Sprintf(`SUBSYSTEM=="tty", KERNEL=="%s"`, strings.TrimPrefix(path, "/dev/")))
} else {
var usbInterfaceNumber int64
if err := slot.Attr("usb-interface-number", &usbInterfaceNumber); err == nil {
spec.TagDevice(fmt.Sprintf(`IMPORT{builtin}="usb_id"
SUBSYSTEM=="tty", SUBSYSTEMS=="usb", ATTRS{idVendor}=="%04x", ATTRS{idProduct}=="%04x", ENV{ID_USB_INTERFACE_NUM}=="%02x"`, usbVendor, usbProduct, usbInterfaceNumber))
} else {
spec.TagDevice(fmt.Sprintf(`IMPORT{builtin}="usb_id"
SUBSYSTEM=="tty", SUBSYSTEMS=="usb", ATTRS{idVendor}=="%04x", ATTRS{idProduct}=="%04x"`, usbVendor, usbProduct))
}
}
return nil
}
func (iface *serialPortInterface) AutoConnect(*snap.PlugInfo, *snap.SlotInfo) bool {
// allow what declarations allowed
return true
}
func (iface *serialPortInterface) HotplugDeviceDetected(di *hotplug.HotplugDeviceInfo) (*hotplug.ProposedSlot, error) {
bus, _ := di.Attribute("ID_BUS")
if di.Subsystem() != "tty" || bus != "usb" || !serialDeviceNodePattern.MatchString(di.DeviceName()) {
return nil, nil
}
slot := hotplug.ProposedSlot{
Attrs: map[string]interface{}{
"path": di.DeviceName(),
},
}
if vendor, ok := di.Attribute("ID_VENDOR_ID"); ok {
slot.Attrs["usb-vendor"] = vendor
}
if product, ok := di.Attribute("ID_MODEL_ID"); ok {
slot.Attrs["usb-product"] = product
}
return &slot, nil
}
func slotDeviceAttrEqual(di *hotplug.HotplugDeviceInfo, devinfoAttribute string, slotAttributeValue int64) bool {
var attr string
var ok bool
if attr, ok = di.Attribute(devinfoAttribute); !ok {
return false
}
val, err := strconv.ParseInt(attr, 16, 64)
return err == nil && val == slotAttributeValue
}
func (iface *serialPortInterface) HandledByGadget(di *hotplug.HotplugDeviceInfo, slot *snap.SlotInfo) bool {
// if the slot has vendor, product and interface number set, check if they match
var usbVendor, usbProduct, usbInterfaceNumber int64
if err := slot.Attr("usb-vendor", &usbVendor); err == nil {
if !slotDeviceAttrEqual(di, "ID_VENDOR_ID", usbVendor) {
return false
}
if err := slot.Attr("usb-product", &usbProduct); err != nil {
return false
}
if !slotDeviceAttrEqual(di, "ID_MODEL_ID", usbProduct) {
return false
}
if err := slot.Attr("usb-interface-number", &usbInterfaceNumber); err == nil {
if !slotDeviceAttrEqual(di, "ID_USB_INTERFACE_NUM", usbInterfaceNumber) {
return false
}
}
return true
}
var path string
if err := slot.Attr("path", &path); err != nil {
return false
}
return di.DeviceName() == path
}
func (iface *serialPortInterface) hasUsbAttrs(attrs interfaces.Attrer) bool {
var v int64
if err := attrs.Attr("usb-vendor", &v); err == nil {
return true
}
if err := attrs.Attr("usb-product", &v); err == nil {
return true
}
if err := attrs.Attr("usb-interface-number", &v); err == nil {
return true
}
return false
}
func init() {
registerIface(&serialPortInterface{})
}
|