/Linux-v5.10/Documentation/usb/ |
D | authorization.rst | 21 $ echo 1 > /sys/bus/usb/devices/DEVICE/authorized 25 $ echo 0 > /sys/bus/usb/devices/DEVICE/authorized 36 By default, Wired USB devices are authorized by default to 63 echo 1 > $device_path/authorized 76 echo 1 > authorized # temporarily authorize it 86 echo 0 > authorized 106 $ echo 1 > /sys/bus/usb/devices/INTERFACE/authorized 110 $ echo 0 > /sys/bus/usb/devices/INTERFACE/authorized 124 So all interfaces would authorized per default. 127 If a deauthorized interface will be authorized so the driver probing must [all …]
|
/Linux-v5.10/Documentation/admin-guide/ |
D | thunderbolt.rst | 28 a database of the authorized devices and prompts users for new connections. 37 ACTION=="add", SUBSYSTEM=="thunderbolt", ATTR{authorized}=="0", ATTR{authorized}="1" 86 device must be authorized by the user before PCIe tunnels are created 98 /sys/bus/thunderbolt/devices/0-1/authorized - 0 105 The ``authorized`` attribute reads 0 which means no PCIe tunnels are 108 # echo 1 > /sys/bus/thunderbolt/devices/0-1/authorized 117 /sys/bus/thunderbolt/devices/0-3/authorized - 0 128 to the ``authorized`` attribute and the PCIe tunnels will be created in 136 # echo 1 > /sys/bus/thunderbolt/devices/0-3/authorized 145 # echo 2 > /sys/bus/thunderbolt/devices/0-3/authorized [all …]
|
/Linux-v5.10/Documentation/ABI/testing/ |
D | sysfs-bus-thunderbolt | 21 If a device is authorized automatically during boot its 41 none All devices are automatically authorized 42 user Devices are only authorized based on writing 43 appropriate value to the authorized attribute 53 What: /sys/bus/thunderbolt/devices/.../authorized 59 authorized, no devices such as PCIe and Display port are 63 yet authorized. 68 1 The device will be authorized and connected 76 the device is authorized. 79 authorized. In case of failure errno will be ENOKEY if [all …]
|
D | sysfs-bus-usb | 1 What: /sys/bus/usb/devices/INTERFACE/authorized 7 If a deauthorized interface will be authorized 19 would be authorized by default. 22 What: /sys/bus/usb/device/.../authorized 28 drivers, non-authorized one are not. By default, wired 29 USB devices are authorized. 31 Certified Wireless USB devices are not authorized
|
D | sysfs-wusb_cbaf | 31 has been authorized before and nothing further
|
/Linux-v5.10/Documentation/networking/ |
D | mac80211-auth-assoc-deauth.txt | 65 mac80211->driver: sta_state(AP, authorized) 80 userspace->mac80211: authorized 81 mac80211->driver: sta_state(AP, authorized)
|
/Linux-v5.10/drivers/thunderbolt/ |
D | icm.c | 710 bool authorized = false; in icm_fr_device_connected() local 721 authorized = pkg->link_info & ICM_LINK_INFO_APPROVED; in icm_fr_device_connected() 751 !!sw->authorized == authorized) { in icm_fr_device_connected() 832 sw->authorized = authorized; in icm_fr_device_connected() 1172 bool authorized, boot, dual_lane, speed_gen3; in __icm_tr_device_connected() local 1189 authorized = pkg->link_info & ICM_LINK_INFO_APPROVED; in __icm_tr_device_connected() 1205 if (tb_route(sw) == route && !!sw->authorized == authorized) { in __icm_tr_device_connected() 1242 sw->authorized = authorized; in __icm_tr_device_connected()
|
D | domain.c | 622 if (!parent_sw || !parent_sw->authorized) in tb_domain_approve_switch() 649 if (!parent_sw || !parent_sw->authorized) in tb_domain_approve_switch_key() 686 if (!parent_sw || !parent_sw->authorized) in tb_domain_challenge_switch_key()
|
D | switch.c | 1351 return sprintf(buf, "%u\n", sw->authorized); in authorized_show() 1361 if (sw->authorized) in tb_switch_set_authorized() 1384 sw->authorized = val; in tb_switch_set_authorized() 1415 static DEVICE_ATTR_RW(authorized); 1487 if (sw->authorized) { in key_store() 1962 sw->authorized = true; in tb_switch_alloc()
|
D | tb.h | 168 unsigned int authorized; member
|
D | tb.c | 1272 sw->authorized = 1; in tb_scan_finalize_switch()
|
/Linux-v5.10/drivers/usb/core/ |
D | message.c | 1784 if (intf->authorized) { in usb_deauthorize_interface() 1786 intf->authorized = 0; in usb_deauthorize_interface() 1804 if (!intf->authorized) { in usb_authorize_interface() 1806 intf->authorized = 1; /* authorize interface */ in usb_authorize_interface() 1954 if (dev->authorized == 0 || configuration == -1) in usb_set_configuration() 2061 intf->authorized = !!HCD_INTF_AUTHORIZED(hcd); in usb_set_configuration()
|
D | generic.c | 233 if (udev->authorized == 0) in usb_generic_driver_probe()
|
D | sysfs.c | 750 return snprintf(buf, PAGE_SIZE, "%u\n", usb_dev->authorized); in authorized_show() 774 static DEVICE_ATTR_IGNORE_LOCKDEP(authorized, S_IRUGO | S_IWUSR, 1187 return sprintf(buf, "%u\n", intf->authorized); in interface_authorized_show() 1210 __ATTR(authorized, S_IRUGO | S_IWUSR,
|
D | driver.c | 334 if (udev->authorized == 0) { in usb_probe_interface() 337 } else if (intf->authorized == 0) { in usb_probe_interface() 553 if (!iface->authorized) in usb_driver_claim_interface()
|
D | usb.c | 674 dev->authorized = usb_dev_authorized(dev, usb_hcd); in usb_alloc_dev()
|
D | hub.c | 2610 if (usb_dev->authorized == 0) in usb_deauthorize_device() 2613 usb_dev->authorized = 0; in usb_deauthorize_device() 2627 if (usb_dev->authorized == 1) in usb_authorize_device() 2646 usb_dev->authorized = 1; in usb_authorize_device()
|
/Linux-v5.10/security/selinux/ |
D | Kconfig | 89 via /sys/fs/selinux/checkreqprot if authorized by policy.
|
/Linux-v5.10/LICENSES/dual/ |
D | Apache-2.0 | 27 "Licensor" shall mean the copyright owner or entity authorized by the 66 Entity authorized to submit on behalf of the copyright owner. For the
|
/Linux-v5.10/include/linux/ |
D | usb.h | 255 unsigned authorized:1; /* used for interface authorization */ member 669 unsigned authorized:1; member
|
/Linux-v5.10/net/wireless/ |
D | Kconfig | 150 to be an authorized master, i.e., with radar detection support and DFS
|
/Linux-v5.10/fs/reiserfs/ |
D | README | 9 Reiser, or authorized to be licensed by him, have been in the past,
|
/Linux-v5.10/security/ |
D | Kconfig | 85 designated as unlabelled, and only sockets authorized
|
/Linux-v5.10/Documentation/netlabel/ |
D | draft-ietf-cipso-ipsecurity-01.txt | 450 a CIPSO host is authorized to handle. All datagrams that have a label 468 a CIPSO host is authorized to handle. All datagrams that have a label less
|
/Linux-v5.10/net/mac80211/ |
D | tx.c | 2522 bool wme_sta = false, authorized = false; in ieee80211_build_hdr() local 2554 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED); in ieee80211_build_hdr() 2748 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED); in ieee80211_build_hdr() 2767 !multicast && !authorized && in ieee80211_build_hdr()
|