wok annotate xorg-xf86-input-evdev/stuff/40-evdev.conf @ rev 25496

Up expat (2.5.0), CVE-2022-43680. Again.
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 02 10:26:08 2022 +0000 (19 months ago)
parents cf7fea36eaf8
children
rev   line source
gokhlayeh@5767 1 # Catchall classes for input devices
gokhlayeh@5767 2 # We don't simply match on any device since that also adds accelerometers
gokhlayeh@5767 3 # and other devices that we don't really want to use. The list below
gokhlayeh@5767 4 # matches everything.
gokhlayeh@5767 5
gokhlayeh@5767 6 Section "InputClass"
al@13555 7 Identifier "evdev pointer catchall"
al@13555 8 MatchIsPointer "on"
al@13555 9 MatchDevicePath "/dev/input/event*"
al@13555 10 Driver "evdev"
gokhlayeh@5767 11 EndSection
gokhlayeh@5767 12
gokhlayeh@5767 13 Section "InputClass"
al@13555 14 Identifier "evdev keyboard catchall"
al@13555 15 MatchIsKeyboard "on"
al@13555 16 MatchDevicePath "/dev/input/event*"
al@13555 17 Driver "evdev"
gokhlayeh@5767 18 EndSection
gokhlayeh@5767 19
gokhlayeh@5767 20 Section "InputClass"
al@13555 21 Identifier "evdev touchpad catchall"
al@13555 22 MatchIsTouchpad "on"
al@13555 23 MatchDevicePath "/dev/input/event*"
al@13555 24 Driver "evdev"
gokhlayeh@5767 25 EndSection
gokhlayeh@5767 26
gokhlayeh@5767 27 Section "InputClass"
al@13555 28 Identifier "evdev tablet catchall"
al@13555 29 MatchIsTablet "on"
al@13555 30 MatchDevicePath "/dev/input/event*"
al@13555 31 Driver "evdev"
gokhlayeh@5767 32 EndSection
gokhlayeh@5767 33
gokhlayeh@5767 34 Section "InputClass"
al@13555 35 Identifier "evdev touchscreen catchall"
al@13555 36 MatchIsTouchscreen "on"
al@13555 37 MatchDevicePath "/dev/input/event*"
al@13555 38 Driver "evdev"
gokhlayeh@5767 39 EndSection
gokhlayeh@5767 40
gokhlayeh@5767 41 Section "InputClass"
al@13555 42 Identifier "evdev joystick catchall"
al@13555 43 MatchIsJoystick "on"
al@13555 44 MatchDevicePath "/dev/input/event*"
al@13555 45 Driver "evdev"
gokhlayeh@5767 46 EndSection
gokhlayeh@5767 47
gokhlayeh@5767 48 # Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
gokhlayeh@5767 49 # http://bugs.freedesktop.org/show_bug.cgi?id=22442
gokhlayeh@5767 50 Section "InputClass"
al@13555 51 Identifier "ThinkPad HDAPS accelerometer blacklist"
al@13555 52 MatchProduct "ThinkPad HDAPS accelerometer data"
al@13555 53 Option "Ignore" "on"
gokhlayeh@5767 54 EndSection