All Projects → sriemer → fix-linux-mouse

sriemer / fix-linux-mouse

Licence: other
Hints how to fix USB mouse issues on Linux

Projects that are alternatives of or similar to fix-linux-mouse

Mac Precision Touchpad
Windows Precision Touchpad Driver Implementation for Apple MacBook / Magic Trackpad
Stars: ✭ 5,107 (+14086.11%)
Mutual labels:  driver, bluetooth, usb-hid
Bthidhub
Bluetooth HID hub
Stars: ✭ 65 (+80.56%)
Mutual labels:  bluetooth, mouse, wireless
1000hz
Overclock your old mouse and increase its polling rate
Stars: ✭ 45 (+25%)
Mutual labels:  driver, mouse
keyboard mouse emulate on raspberry
Bluetooth Keyboard Mouse Emulator on Raspberry Pi
Stars: ✭ 230 (+538.89%)
Mutual labels:  bluetooth, mouse
AxisOrange
Sending M5 series IMU sensor data by Bluetooth SPP.
Stars: ✭ 35 (-2.78%)
Mutual labels:  bluetooth, wireless
Wmi Static Spoofer
Spoofing the Windows 10 HDD/diskdrive serialnumber from kernel without hooking
Stars: ✭ 199 (+452.78%)
Mutual labels:  kernel, driver
Pedalino
Smart wireless MIDI foot controller for guitarists and more.
Stars: ✭ 105 (+191.67%)
Mutual labels:  bluetooth, wireless
awesome-webhid
Curated list of resources relating to the WebHID (Human Interface Device) API
Stars: ✭ 126 (+250%)
Mutual labels:  bluetooth, usb-hid
Ioctlbf
Windows Kernel Drivers fuzzer
Stars: ✭ 170 (+372.22%)
Mutual labels:  kernel, driver
rtl8822bu
RTL8822BU Wireless Driver for Linux
Stars: ✭ 59 (+63.89%)
Mutual labels:  driver, wireless
DualSenseWindows UE4
Unreal Engine 4 port of the Windows API for the PS5 DualSense controller created at Ohjurot/DualSense-Windows
Stars: ✭ 25 (-30.56%)
Mutual labels:  bluetooth, usb-hid
rasp vusb
This repo explains how to turn your Raspberry Pi Zero into USB Keyboard and Mouse. Also provides sample code and binaries to control them.
Stars: ✭ 85 (+136.11%)
Mutual labels:  mouse, usb-hid
Vulnerable Kext
A WIP "Vulnerable by Design" kext for iOS/macOS to play & learn *OS kernel exploitation
Stars: ✭ 188 (+422.22%)
Mutual labels:  kernel, driver
Ksocket
KSOCKET provides a very basic example how to make a network connections in the Windows Driver by using WSK
Stars: ✭ 183 (+408.33%)
Mutual labels:  kernel, driver
ESP32 Thing Plus
ESP32 Thing-compatible board using the WROOM module and a QWIIC connector.
Stars: ✭ 18 (-50%)
Mutual labels:  bluetooth, wireless
Garhal csgo
A project that demonstrates how to screw with CSGO from Kernel Space. (CSGO Kernel Cheat/Hack) All cleaned up, and with updated offsets.
Stars: ✭ 179 (+397.22%)
Mutual labels:  kernel, driver
vmwmouse
VMware mouse driver for Windows 3.1
Stars: ✭ 315 (+775%)
Mutual labels:  driver, mouse
BetterJoyForDolphin
Allows the Nintendo Switch Pro Controller and Joycons to be used with the Dolphin Emulator
Stars: ✭ 44 (+22.22%)
Mutual labels:  driver, bluetooth
Awesome Windows Security Development
awesome-windows-security-development
Stars: ✭ 154 (+327.78%)
Mutual labels:  kernel, driver
Pubg Pak Hacker
use windows kernel deriver hidden file and itself to Bypass BE
Stars: ✭ 157 (+336.11%)
Mutual labels:  kernel, driver

fix-linux-mouse howto

Table of Contents

Introduction

Everything in this howto relates to openSUSE Leap 15.3 but is mostly applicable to other Linux distros as well.

License

Author: Sebastian Parschauer

This document has been created with the help of colleagues when I worked at SUSE. But opinions are my own. Furthermore, this work is subject to continuous improvements. All contributions are welcome. Please just open issues on GitHub to start the discussion.

Creative Commons License This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

USB mice on Linux

USB optical mice are usually based on a single chip from PixArt Imaging. An example is the PAN3511 identifying itself with USB IDs 093a:2510.

Many USB mice support using them as PS/2 mouse as well (e.g. with an adapter). They also support a PS/2 legacy data report protocol. This is important for using them on the text consoles/virtual terminals (VT) as well. Currently there is support for the general USB report protocol only on the display servers on Linux. See section 5 "USB Interface" in the PAN3511 datasheet for hardware details.

Linux kernel driver usbhid

Almost all wired USB mice use the usbhid driver but an additional user-space driver is required. usbhid devices usually use the USB interrupt transfer. So the default behavior of the driver is to wait for interrupts. But this can cause buffers in some devices to overflow. So the usbhid quirk fix HID_QUIRK_ALWAYS_POLL is often required for USB mice to work properly without a user-space driver running.

The problem is that it can only use the USB vendor ID and product ID to identify if a quirk fix is required. And with more modern chips than the PAN3511, the USB IDs can be modified. So often quirk fixes for mice with the same chips but different IDs are missing.

The quirks table hid_quirks is located in drivers/hid/hid-quirks.c and the usbhid vendor/product IDs are located in drivers/hid/hid-ids.h of the Linux kernel source. Another important kernel source file is include/linux/hid.h containing the quirk defines. It shows that HID_QUIRK_ALWAYS_POLL has the value 0x00000400 (BIT(10)).

A usbhid quirk can also be set by the kernel boot option usbhid.quirks. E.g. usbhid.quirks=0x413c:0x301a:0x00000400 sets HID_QUIRK_ALWAYS_POLL for the Dell MS116 mouse with idVendor 0x413c and idProduct 0x301a. Usually up to four usbhid quirks can be provided in a comma-separated list. With HID_QUIRK_IGNORE (0x00000004) it is also possible to exclude a device. The USB IDs can be displayed with lsusb -vvv.

If you find out that a quirk fix is required for your device, then please open a GitHub issue here for discussion. The relevant mailing list is linux-input on vger.kernel.org to get it fixed in the upstream kernel.

In hid-quirks.c there is also a list hid_have_special_driver to specify which devices come with a special driver. This usually includes gaming mice like the ones from Roccat.

Recent changes:

On Wayland

Wayland compositors use libinput. In GNOME Wayland sessions, the gnome-shell processes are the ones loading it. It is the user-space driver for all input devices.

Documentation: libinput

List available input devices:

zypper install libinput-tools
libinput list-devices

Test the mouse events:

zypper install evtest
evtest --grab /dev/input/event23

Use the event device which you have found for your mouse. My Dell MS116 mouse is at /dev/input/event23 here. Typical events are BTN_LEFT, BTN_RIGHT, BTN_MIDDLE, REL_X, REL_Y, and REL_WHEEL.

On X Window System

Modern Linux systems use libinput with the xf86-input-libinput package for the X server as well. This way it integrates nicely if the X server is running on top of Wayland to provide compatibility.

Mouse support on the X Window System usually works fine on all Linux distros with almost all USB mice.

Documentation:

Alternatives are the packages xf86-input-mouse and xf86-input-evdev.

Use the following command to check which input driver is running:

xpid=$(pidof -s Xorg); if [ -z "$xpid" ]; then xpid=$(pidof -s X); fi; \
sudo cat /proc/$xpid/maps | grep input

The package xf86-input-mouse is usually only used on non-Linux systems.

Documentation:

  • man mousedrv
  • less /usr/share/doc/packages/xf86-input-mouse/README

In contrast to that, the package xf86-input-evdev provides another generic Linux input driver.

Documentation:

  • man evdev
  • less /usr/share/doc/packages/xf86-input-evdev/README

On text console/virtual terminal

If you want to use your PS/2 capable USB mouse on a VT as well, then you need GPM (General Purpose Mouse) from package gpm. It provides a "gpm" systemd service which is usually disabled by default. Its config is located at /etc/sysconfig/mouse.

Default config:

MOUSEDEVICE="/dev/input/mice"
MOUSETYPE="imps2"
GPM_PARAM=""
GPM_REPEAT=""

This config is exactly what we need. Just enable and start the gpm service in your services manager (e.g. with YaST2) and your PS/2 capable USB mouse should work on your VTs.

Note: In some cases a reboot might be required after enabling and starting gpm.

The supported mouse protocols/types can be displayed with the following command executed as root:

gpm -m /dev/input/mice -t help | less

For imps2 it shows:

* imps2    Microsoft Intellimouse (ps2)-autodetect 2/3 buttons,wheel unused

USB auto-suspend on Linux

Mice often don't work well with USB auto-suspend. It is safest to disable it completely by the kernel boot option usbcore.autosuspend=-1 to check if the mouse is affected.

It is also possible to blacklist certain devices. It depends if they are controlled by tlp, the laptop-mode-tools, or the kernel directly. There are enough howtos on the web for this.

openSUSE USB power management

USB mouse disconnects/reconnects every minute on Linux

Let's look at a Dell MS116 optical USB mouse. This is a PixArt OEM mouse. It really annoyed me that it spammed the virtual terminal and the kernel log with USB disconnect messages every minute without a user-space driver running:

[12334.243124] usb 3-14: USB disconnect, device number 12
[12335.748073] usb 3-14: new low-speed USB device number 13 using xhci_hcd
[12335.879685] usb 3-14: New USB device found, idVendor=413c, idProduct=301a
[12335.879689] usb 3-14: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[12335.879691] usb 3-14: Product: Dell MS116 USB Optical Mouse
[12335.879696] usb 3-14: Manufacturer: PixArt
[12335.881821] input: PixArt Dell MS116 USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-14/3-14:1.0/0003:413C:301A.000A/input/input19
[12335.882034] hid-generic 0003:413C:301A.000A: input,hidraw1: USB HID v1.11 Mouse [PixArt Dell MS116 USB Optical Mouse] on usb-0000:00:14.0-14/input0

Disconnecting it physically everytime you use the VT is no good option. Its buffer overflows if it is not always polled. This can be fixed by activating the gpm service and a reboot, or even better by the kernel boot option usbhid.quirks=0x413c:0x301a:0x00000400 as this is a usbhid bug.

The bit mask 0x00000400 activates HID_QUIRK_ALWAYS_POLL.

For details see: Linux kernel driver usbhid


Fixing the Upstream Kernel

Of cause I've sent a patch for this to the linux-usb mailing list (before v4.16) which got accepted. As I've sent it to the linux stable mailing list as well, this is fixed for all Linux distributions now.

PixArt mice with this HW issue are known from vendors Alienware, Chicony, Dell, HP, Lenovo, Microsoft, PixArt, and Primax.
Further suspects are Acer Lite-On, Dynex, and Jesis (see #22).
Please let me know if your mouse is affected as issues often persist for years.

There is a strong indication that PixArt chips use Logitech firmware with that bug. Before integration, the sensor chips were usually coupled with a Logitech USB mouse controller IC and PixArt ICs with that bug can be found in Logitech mice as well. E.g. the Dell MS111-L is a Logitech PixArt mouse requiring the quirk fix as well (IDs 046d:c077, see #19).

USB mouse in virtual machines

It is most common in virtual machines that the mouse cursor is not located where it should be. Windows VMs require absolute mouse movement and Linux VMs require relative mouse movement. Make sure that this is properly set e.g. in virt-manager.

With very old Linux distributions which still use GNOME 2 like e.g. SLES11, the QEMU EvTouch USB Graphics Tablet emulation does not work properly. Remove it and add a Generic USB Mouse instead.

Wireless and Bluetooth mice

Do yourself and people around you a favor and avoid using those due to harmful pulsed microwave radiation at 2.4 GHz. The related topic is electrosmog. It can be measured e.g. with the EMFields Acousticom 2.

See e.g.: https://swissharmony.com/what-is-electrosmog/
German: https://www.elektrosmog.com/forschungsergebnisse-zu-biologischen-wirkungen-von-mikrowellen

Especially Logitech/Unifying based devices are often found to be not optimized in this regard and can cause wrist pain as the most obvious effect.

With the long range those can also be a major security issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].