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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019 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"
"github.com/snapcore/snapd/interfaces"
"github.com/snapcore/snapd/interfaces/udev"
)
const u2fDevicesSummary = `allows access to u2f devices`
const u2fDevicesBaseDeclarationSlots = `
u2f-devices:
allow-installation:
slot-snap-type:
- core
deny-auto-connection: true
`
type u2fDevice struct {
Name, VendorIDPattern, ProductIDPattern string
}
// https://github.com/Yubico/libu2f-host/blob/master/70-u2f.rules
var u2fDevices = []u2fDevice{
{
Name: "Yubico YubiKey",
VendorIDPattern: "1050",
ProductIDPattern: "0113|0114|0115|0116|0120|0121|0200|0402|0403|0406|0407|0410",
},
{
Name: "Happlink (formerly Plug-Up) Security KEY",
VendorIDPattern: "2581",
ProductIDPattern: "f1d0",
},
{
Name: "Neowave Keydo and Keydo AES",
VendorIDPattern: "1e0d",
ProductIDPattern: "f1d0|f1ae",
},
{
Name: "HyperSecu HyperFIDO",
VendorIDPattern: "096e|2ccf",
ProductIDPattern: "0880",
},
{
Name: "Feitian ePass FIDO, BioPass FIDO2",
VendorIDPattern: "096e",
ProductIDPattern: "0850|0852|0853|0854|0856|0858|085a|085b|085d",
},
{
Name: "JaCarta U2F",
VendorIDPattern: "24dc",
ProductIDPattern: "0101",
},
{
Name: "U2F Zero",
VendorIDPattern: "10c4",
ProductIDPattern: "8acf",
},
{
Name: "VASCO SeccureClick",
VendorIDPattern: "1a44",
ProductIDPattern: "00bb",
},
{
Name: "Bluink Key",
VendorIDPattern: "2abe",
ProductIDPattern: "1002",
},
{
Name: "Thetis Key",
VendorIDPattern: "1ea8",
ProductIDPattern: "f025",
},
{
Name: "Nitrokey FIDO U2F",
VendorIDPattern: "20a0",
ProductIDPattern: "4287",
},
{
Name: "Google Titan U2F",
VendorIDPattern: "18d1",
ProductIDPattern: "5026",
},
{
Name: "Tomu board + chopstx U2F + SoloKeys",
VendorIDPattern: "0483",
ProductIDPattern: "cdab|a2ca",
},
{
Name: "SoloKeys",
VendorIDPattern: "1209",
ProductIDPattern: "5070|50b0",
},
{
Name: "OnlyKey",
VendorIDPattern: "1d50",
ProductIDPattern: "60fc",
},
{
Name: "MIRKey",
VendorIDPattern: "0483",
ProductIDPattern: "a2ac",
},
{
Name: "Ledger Blue + Nano S + Nano X",
VendorIDPattern: "2c97",
ProductIDPattern: "0000|0001|0004|0005|0015|1005|1015|4005|4015",
},
}
const u2fDevicesConnectedPlugAppArmor = `
# Description: Allow write access to u2f hidraw devices.
# Use a glob rule and rely on device cgroup for mediation.
/dev/hidraw* rw,
# char 234-254 are used for dynamic assignment, which u2f devices are
/run/udev/data/c23[4-9]:* r,
/run/udev/data/c24[0-9]:* r,
/run/udev/data/c25[0-4]:* r,
# misc required accesses
/run/udev/data/+power_supply:hid* r,
/run/udev/data/c14:[0-9]* r,
/sys/devices/**/i2c*/**/report_descriptor r,
/sys/devices/**/usb*/**/report_descriptor r,
`
type u2fDevicesInterface struct {
commonInterface
}
func (iface *u2fDevicesInterface) UDevConnectedPlug(spec *udev.Specification, plug *interfaces.ConnectedPlug, slot *interfaces.ConnectedSlot) error {
for _, d := range u2fDevices {
spec.TagDevice(fmt.Sprintf("# %s\nSUBSYSTEM==\"hidraw\", KERNEL==\"hidraw*\", ATTRS{idVendor}==\"%s\", ATTRS{idProduct}==\"%s\"", d.Name, d.VendorIDPattern, d.ProductIDPattern))
}
return nil
}
func init() {
registerIface(&u2fDevicesInterface{commonInterface{
name: "u2f-devices",
summary: u2fDevicesSummary,
implicitOnCore: true,
implicitOnClassic: true,
baseDeclarationSlots: u2fDevicesBaseDeclarationSlots,
connectedPlugAppArmor: u2fDevicesConnectedPlugAppArmor,
}})
}
|