This file is indexed.

/lib/udev/rules.d/92-libacsccid1.rules is in libacsccid1 1.0.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# udev rules to set the access rights of ACS CCID smart card readers
# so they can be used by pcscd

# If not adding the device, go away
ACTION!="add", GOTO="pcscd_acsccid_rules_end"
SUBSYSTEM!="usb", GOTO="pcscd_acsccid_rules_end"
ENV{DEVTYPE}!="usb_device", GOTO="pcscd_acsccid_rules_end"

# generic CCID device (bInterfaceClass = 0x0b)
ENV{ID_USB_INTERFACES}=="*:0b0000:*", GROUP="pcscd"

# non CCID generic (InterfaceClass: 0x00)
# ACS ACR83U
ATTRS{idVendor}=="072f", ATTRS{idProduct}=="90d2", GROUP="pcscd"
# ACS ACR88U
ATTRS{idVendor}=="072f", ATTRS{idProduct}=="2011", GROUP="pcscd"
# ACS ACR128U
ATTRS{idVendor}=="072f", ATTRS{idProduct}=="2100", GROUP="pcscd"
# ACS APG8201
ATTRS{idVendor}=="072f", ATTRS{idProduct}=="8201", GROUP="pcscd"

# All done
LABEL="pcscd_acsccid_rules_end"