2011-01-14 14:45:42 -05:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2010 Intel Corporation
|
2013-11-10 17:55:40 +01:00
|
|
|
* Copyright © 2013 Jonas Ådahl
|
2017-09-04 10:40:04 +10:00
|
|
|
* Copyright © 2013-2017 Red Hat, Inc.
|
|
|
|
|
* Copyright © 2017 James Ye <jye836@gmail.com>
|
2011-01-14 14:45:42 -05:00
|
|
|
*
|
2015-06-11 12:09:18 +10:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2011-01-14 14:45:42 -05:00
|
|
|
*
|
2015-06-11 12:09:18 +10:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2011-01-14 14:45:42 -05:00
|
|
|
*/
|
|
|
|
|
|
2013-05-22 18:03:19 +03:00
|
|
|
#include "config.h"
|
|
|
|
|
|
2013-10-15 14:29:56 +02:00
|
|
|
#include <errno.h>
|
2014-09-03 15:50:28 +10:00
|
|
|
#include <stdbool.h>
|
2011-01-14 14:45:42 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2015-06-23 11:31:56 +02:00
|
|
|
#include <sys/stat.h>
|
2014-06-03 07:51:37 +10:00
|
|
|
#include "linux/input.h"
|
2011-01-14 14:45:42 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <fcntl.h>
|
2013-12-06 13:09:18 +10:00
|
|
|
#include <mtdev-plumbing.h>
|
2013-09-24 12:09:03 +01:00
|
|
|
#include <assert.h>
|
2014-05-18 19:20:39 +02:00
|
|
|
#include <math.h>
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
#include "libinput.h"
|
2011-12-19 01:14:03 +02:00
|
|
|
#include "evdev.h"
|
2014-05-18 19:20:39 +02:00
|
|
|
#include "filter.h"
|
2013-11-10 17:55:40 +01:00
|
|
|
#include "libinput-private.h"
|
2018-05-24 11:56:24 +10:00
|
|
|
#include "quirks.h"
|
2019-11-23 17:23:56 -08:00
|
|
|
#include "util-input-event.h"
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2016-02-10 12:29:55 +10:00
|
|
|
#if HAVE_LIBWACOM
|
|
|
|
|
#include <libwacom/libwacom.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-01-09 17:03:45 +10:00
|
|
|
#define DEFAULT_WHEEL_CLICK_ANGLE 15
|
2019-05-02 10:53:54 +10:00
|
|
|
#define DEFAULT_BUTTON_SCROLL_TIMEOUT ms2us(200)
|
2014-07-13 00:25:36 +02:00
|
|
|
|
2015-02-02 13:37:14 -05:00
|
|
|
enum evdev_device_udev_tags {
|
2019-02-06 15:29:23 +10:00
|
|
|
EVDEV_UDEV_TAG_INPUT = bit(0),
|
|
|
|
|
EVDEV_UDEV_TAG_KEYBOARD = bit(1),
|
|
|
|
|
EVDEV_UDEV_TAG_MOUSE = bit(2),
|
|
|
|
|
EVDEV_UDEV_TAG_TOUCHPAD = bit(3),
|
|
|
|
|
EVDEV_UDEV_TAG_TOUCHSCREEN = bit(4),
|
|
|
|
|
EVDEV_UDEV_TAG_TABLET = bit(5),
|
|
|
|
|
EVDEV_UDEV_TAG_JOYSTICK = bit(6),
|
|
|
|
|
EVDEV_UDEV_TAG_ACCELEROMETER = bit(7),
|
|
|
|
|
EVDEV_UDEV_TAG_TABLET_PAD = bit(8),
|
|
|
|
|
EVDEV_UDEV_TAG_POINTINGSTICK = bit(9),
|
|
|
|
|
EVDEV_UDEV_TAG_TRACKBALL = bit(10),
|
|
|
|
|
EVDEV_UDEV_TAG_SWITCH = bit(11),
|
2015-02-02 13:37:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct evdev_udev_tag_match {
|
|
|
|
|
const char *name;
|
|
|
|
|
enum evdev_device_udev_tags tag;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct evdev_udev_tag_match evdev_udev_tag_matches[] = {
|
|
|
|
|
{"ID_INPUT", EVDEV_UDEV_TAG_INPUT},
|
|
|
|
|
{"ID_INPUT_KEYBOARD", EVDEV_UDEV_TAG_KEYBOARD},
|
|
|
|
|
{"ID_INPUT_KEY", EVDEV_UDEV_TAG_KEYBOARD},
|
|
|
|
|
{"ID_INPUT_MOUSE", EVDEV_UDEV_TAG_MOUSE},
|
|
|
|
|
{"ID_INPUT_TOUCHPAD", EVDEV_UDEV_TAG_TOUCHPAD},
|
|
|
|
|
{"ID_INPUT_TOUCHSCREEN", EVDEV_UDEV_TAG_TOUCHSCREEN},
|
|
|
|
|
{"ID_INPUT_TABLET", EVDEV_UDEV_TAG_TABLET},
|
2016-02-05 15:16:38 +10:00
|
|
|
{"ID_INPUT_TABLET_PAD", EVDEV_UDEV_TAG_TABLET_PAD},
|
2015-02-02 13:37:14 -05:00
|
|
|
{"ID_INPUT_JOYSTICK", EVDEV_UDEV_TAG_JOYSTICK},
|
|
|
|
|
{"ID_INPUT_ACCELEROMETER", EVDEV_UDEV_TAG_ACCELEROMETER},
|
2015-05-29 11:11:56 +10:00
|
|
|
{"ID_INPUT_POINTINGSTICK", EVDEV_UDEV_TAG_POINTINGSTICK},
|
2016-08-04 07:48:19 +10:00
|
|
|
{"ID_INPUT_TRACKBALL", EVDEV_UDEV_TAG_TRACKBALL},
|
2017-01-20 16:54:14 +11:00
|
|
|
{"ID_INPUT_SWITCH", EVDEV_UDEV_TAG_SWITCH},
|
2015-02-02 13:37:14 -05:00
|
|
|
};
|
|
|
|
|
|
2022-03-01 20:08:11 +01:00
|
|
|
static const unsigned int well_known_keyboard_keys[] = {
|
|
|
|
|
KEY_LEFTCTRL,
|
|
|
|
|
KEY_CAPSLOCK,
|
|
|
|
|
KEY_NUMLOCK,
|
|
|
|
|
KEY_INSERT,
|
|
|
|
|
KEY_MUTE,
|
|
|
|
|
KEY_CALC,
|
|
|
|
|
KEY_FILE,
|
|
|
|
|
KEY_MAIL,
|
|
|
|
|
KEY_PLAYPAUSE,
|
|
|
|
|
KEY_BRIGHTNESSDOWN,
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-28 10:17:03 +10:00
|
|
|
static inline bool
|
|
|
|
|
parse_udev_flag(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device,
|
|
|
|
|
const char *property)
|
|
|
|
|
{
|
|
|
|
|
const char *val;
|
2021-09-12 17:09:20 +02:00
|
|
|
bool b;
|
2016-11-28 10:17:03 +10:00
|
|
|
|
|
|
|
|
val = udev_device_get_property_value(udev_device, property);
|
|
|
|
|
if (!val)
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-09-12 17:09:20 +02:00
|
|
|
if (!parse_boolean_property(val, &b)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_error(device,
|
|
|
|
|
"property %s has invalid value '%s'\n",
|
|
|
|
|
property,
|
|
|
|
|
val);
|
2021-09-12 17:09:20 +02:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return b;
|
2016-11-28 10:17:03 +10:00
|
|
|
}
|
|
|
|
|
|
2017-09-19 13:57:50 +10:00
|
|
|
int
|
|
|
|
|
evdev_update_key_down_count(struct evdev_device *device,
|
|
|
|
|
int code,
|
|
|
|
|
int pressed)
|
2014-07-27 15:54:49 +02:00
|
|
|
{
|
|
|
|
|
int key_count;
|
|
|
|
|
assert(code >= 0 && code < KEY_CNT);
|
|
|
|
|
|
|
|
|
|
if (pressed) {
|
|
|
|
|
key_count = ++device->key_count[code];
|
|
|
|
|
} else {
|
|
|
|
|
assert(device->key_count[code] > 0);
|
|
|
|
|
key_count = --device->key_count[code];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (key_count > 32) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"key count for %s reached abnormal values\n",
|
|
|
|
|
libevdev_event_code_get_name(EV_KEY, code));
|
2014-07-27 15:54:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return key_count;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-01 17:30:08 +10:00
|
|
|
enum libinput_switch_state
|
|
|
|
|
evdev_device_switch_get_state(struct evdev_device *device,
|
|
|
|
|
enum libinput_switch sw)
|
|
|
|
|
{
|
2017-09-19 13:45:22 +10:00
|
|
|
struct evdev_dispatch *dispatch = device->dispatch;
|
|
|
|
|
|
|
|
|
|
assert(dispatch->interface->get_switch_state);
|
|
|
|
|
|
|
|
|
|
return dispatch->interface->get_switch_state(dispatch, sw);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-13 14:47:26 +10:00
|
|
|
void
|
|
|
|
|
evdev_pointer_notify_physical_button(struct evdev_device *device,
|
2015-07-27 11:52:44 +08:00
|
|
|
uint64_t time,
|
2015-04-13 14:47:26 +10:00
|
|
|
int button,
|
|
|
|
|
enum libinput_button_state state)
|
|
|
|
|
{
|
2015-04-13 16:38:44 +10:00
|
|
|
if (evdev_middlebutton_filter_button(device,
|
|
|
|
|
time,
|
|
|
|
|
button,
|
|
|
|
|
state))
|
|
|
|
|
return;
|
|
|
|
|
|
2016-04-11 10:06:36 +10:00
|
|
|
evdev_pointer_notify_button(device,
|
|
|
|
|
time,
|
|
|
|
|
(unsigned int)button,
|
|
|
|
|
state);
|
2015-04-13 14:47:26 +10:00
|
|
|
}
|
|
|
|
|
|
2016-04-11 10:06:36 +10:00
|
|
|
static void
|
|
|
|
|
evdev_pointer_post_button(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
unsigned int button,
|
|
|
|
|
enum libinput_button_state state)
|
2014-07-27 15:54:49 +02:00
|
|
|
{
|
|
|
|
|
int down_count;
|
|
|
|
|
|
2017-09-19 13:57:50 +10:00
|
|
|
down_count = evdev_update_key_down_count(device, button, state);
|
2014-07-27 15:54:49 +02:00
|
|
|
|
|
|
|
|
if ((state == LIBINPUT_BUTTON_STATE_PRESSED && down_count == 1) ||
|
2014-09-23 13:48:06 +10:00
|
|
|
(state == LIBINPUT_BUTTON_STATE_RELEASED && down_count == 0)) {
|
2014-07-27 15:54:49 +02:00
|
|
|
pointer_notify_button(&device->base, time, button, state);
|
2014-09-23 13:48:06 +10:00
|
|
|
|
2015-04-14 12:26:01 +10:00
|
|
|
if (state == LIBINPUT_BUTTON_STATE_RELEASED) {
|
|
|
|
|
if (device->left_handed.change_to_enabled)
|
|
|
|
|
device->left_handed.change_to_enabled(device);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
2015-04-14 12:26:01 +10:00
|
|
|
if (device->scroll.change_scroll_method)
|
|
|
|
|
device->scroll.change_scroll_method(device);
|
|
|
|
|
}
|
2014-09-23 13:48:06 +10:00
|
|
|
}
|
|
|
|
|
|
2014-07-27 15:54:49 +02:00
|
|
|
}
|
2012-10-03 22:56:58 +02:00
|
|
|
|
2016-04-11 10:06:36 +10:00
|
|
|
static void
|
|
|
|
|
evdev_button_scroll_timeout(uint64_t time, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *device = data;
|
|
|
|
|
|
2017-02-20 13:32:07 +10:00
|
|
|
device->scroll.button_scroll_state = BUTTONSCROLL_READY;
|
2016-04-11 10:06:36 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
evdev_button_scroll_button(struct evdev_device *device,
|
|
|
|
|
uint64_t time, int is_press)
|
|
|
|
|
{
|
2019-03-20 10:56:51 +10:00
|
|
|
/* Where the button lock is enabled, we wrap the buttons into
|
|
|
|
|
their own little state machine and filter out the events.
|
|
|
|
|
*/
|
|
|
|
|
switch (device->scroll.lock_state) {
|
|
|
|
|
case BUTTONSCROLL_LOCK_DISABLED:
|
|
|
|
|
break;
|
|
|
|
|
case BUTTONSCROLL_LOCK_IDLE:
|
|
|
|
|
assert(is_press);
|
|
|
|
|
device->scroll.lock_state = BUTTONSCROLL_LOCK_FIRSTDOWN;
|
|
|
|
|
evdev_log_debug(device, "scroll lock: first down\n");
|
|
|
|
|
break; /* handle event */
|
|
|
|
|
case BUTTONSCROLL_LOCK_FIRSTDOWN:
|
|
|
|
|
assert(!is_press);
|
|
|
|
|
device->scroll.lock_state = BUTTONSCROLL_LOCK_FIRSTUP;
|
|
|
|
|
evdev_log_debug(device, "scroll lock: first up\n");
|
|
|
|
|
return; /* filter release event */
|
|
|
|
|
case BUTTONSCROLL_LOCK_FIRSTUP:
|
|
|
|
|
assert(is_press);
|
|
|
|
|
device->scroll.lock_state = BUTTONSCROLL_LOCK_SECONDDOWN;
|
|
|
|
|
evdev_log_debug(device, "scroll lock: second down\n");
|
|
|
|
|
return; /* filter press event */
|
|
|
|
|
case BUTTONSCROLL_LOCK_SECONDDOWN:
|
|
|
|
|
assert(!is_press);
|
|
|
|
|
device->scroll.lock_state = BUTTONSCROLL_LOCK_IDLE;
|
|
|
|
|
evdev_log_debug(device, "scroll lock: idle\n");
|
|
|
|
|
break; /* handle event */
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-11 10:06:36 +10:00
|
|
|
if (is_press) {
|
2021-10-11 17:29:12 -03:00
|
|
|
if (device->scroll.button < BTN_MOUSE + 5) {
|
2021-10-10 23:32:36 +00:00
|
|
|
/* For mouse buttons 1-5 (0x110 to 0x114) we apply a timeout before scrolling
|
|
|
|
|
* since the button could also be used for regular clicking. */
|
|
|
|
|
enum timer_flags flags = TIMER_FLAG_NONE;
|
|
|
|
|
|
|
|
|
|
device->scroll.button_scroll_state = BUTTONSCROLL_BUTTON_DOWN;
|
|
|
|
|
|
|
|
|
|
/* Special case: if middle button emulation is enabled and
|
|
|
|
|
* our scroll button is the left or right button, we only
|
|
|
|
|
* get here *after* the middle button timeout has expired
|
|
|
|
|
* for that button press. The time passed is the button-down
|
|
|
|
|
* time though (which is in the past), so we have to allow
|
|
|
|
|
* for a negative timer to be set.
|
|
|
|
|
*/
|
|
|
|
|
if (device->middlebutton.enabled &&
|
|
|
|
|
(device->scroll.button == BTN_LEFT ||
|
|
|
|
|
device->scroll.button == BTN_RIGHT)) {
|
|
|
|
|
flags = TIMER_FLAG_ALLOW_NEGATIVE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libinput_timer_set_flags(&device->scroll.timer,
|
|
|
|
|
time + DEFAULT_BUTTON_SCROLL_TIMEOUT,
|
|
|
|
|
flags);
|
|
|
|
|
} else {
|
|
|
|
|
/* For extra mouse buttons numbered 6 or more (0x115+) we assume it is
|
|
|
|
|
* dedicated exclusively to scrolling, so we don't apply the timeout
|
|
|
|
|
* in order to provide immediate scrolling responsiveness. */
|
|
|
|
|
device->scroll.button_scroll_state = BUTTONSCROLL_READY;
|
2017-02-20 09:14:42 +10:00
|
|
|
}
|
2016-04-11 10:06:36 +10:00
|
|
|
device->scroll.button_down_time = time;
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_debug(device, "btnscroll: down\n");
|
2016-04-11 10:06:36 +10:00
|
|
|
} else {
|
|
|
|
|
libinput_timer_cancel(&device->scroll.timer);
|
2017-02-20 13:31:23 +10:00
|
|
|
switch(device->scroll.button_scroll_state) {
|
|
|
|
|
case BUTTONSCROLL_IDLE:
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"invalid state IDLE for button up\n");
|
2017-02-20 13:31:23 +10:00
|
|
|
break;
|
|
|
|
|
case BUTTONSCROLL_BUTTON_DOWN:
|
2017-02-20 13:32:07 +10:00
|
|
|
case BUTTONSCROLL_READY:
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_debug(device, "btnscroll: cancel\n");
|
2017-02-20 13:32:07 +10:00
|
|
|
|
|
|
|
|
/* If the button is released quickly enough or
|
|
|
|
|
* without scroll events, emit the
|
2016-04-11 10:06:36 +10:00
|
|
|
* button press/release events. */
|
|
|
|
|
evdev_pointer_post_button(device,
|
|
|
|
|
device->scroll.button_down_time,
|
|
|
|
|
device->scroll.button,
|
|
|
|
|
LIBINPUT_BUTTON_STATE_PRESSED);
|
|
|
|
|
evdev_pointer_post_button(device, time,
|
|
|
|
|
device->scroll.button,
|
|
|
|
|
LIBINPUT_BUTTON_STATE_RELEASED);
|
2017-02-20 13:31:23 +10:00
|
|
|
break;
|
|
|
|
|
case BUTTONSCROLL_SCROLLING:
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_debug(device, "btnscroll: up\n");
|
2017-02-20 13:31:23 +10:00
|
|
|
evdev_stop_scroll(device, time,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SOURCE_CONTINUOUS);
|
|
|
|
|
break;
|
2016-04-11 10:06:36 +10:00
|
|
|
}
|
2017-02-20 13:31:23 +10:00
|
|
|
|
|
|
|
|
device->scroll.button_scroll_state = BUTTONSCROLL_IDLE;
|
2016-04-11 10:06:36 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_pointer_notify_button(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
unsigned int button,
|
|
|
|
|
enum libinput_button_state state)
|
|
|
|
|
{
|
|
|
|
|
if (device->scroll.method == LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN &&
|
|
|
|
|
button == device->scroll.button) {
|
|
|
|
|
evdev_button_scroll_button(device, time, state);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
evdev_pointer_post_button(device, time, button, state);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-03 14:39:05 +03:00
|
|
|
void
|
2013-11-10 17:55:40 +01:00
|
|
|
evdev_device_led_update(struct evdev_device *device, enum libinput_led leds)
|
2012-05-30 16:31:49 +01:00
|
|
|
{
|
|
|
|
|
static const struct {
|
2016-12-15 07:27:45 +10:00
|
|
|
enum libinput_led libinput;
|
2012-05-30 16:31:49 +01:00
|
|
|
int evdev;
|
|
|
|
|
} map[] = {
|
2013-11-10 17:55:40 +01:00
|
|
|
{ LIBINPUT_LED_NUM_LOCK, LED_NUML },
|
|
|
|
|
{ LIBINPUT_LED_CAPS_LOCK, LED_CAPSL },
|
|
|
|
|
{ LIBINPUT_LED_SCROLL_LOCK, LED_SCROLLL },
|
2012-05-30 16:31:49 +01:00
|
|
|
};
|
2013-08-09 16:32:17 +02:00
|
|
|
struct input_event ev[ARRAY_LENGTH(map) + 1];
|
2012-05-30 16:31:49 +01:00
|
|
|
unsigned int i;
|
|
|
|
|
|
2013-12-16 15:07:59 -08:00
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_KEYBOARD))
|
2012-08-06 14:57:07 +03:00
|
|
|
return;
|
|
|
|
|
|
2012-05-30 16:31:49 +01:00
|
|
|
memset(ev, 0, sizeof(ev));
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(map); i++) {
|
|
|
|
|
ev[i].type = EV_LED;
|
|
|
|
|
ev[i].code = map[i].evdev;
|
2016-12-15 07:27:45 +10:00
|
|
|
ev[i].value = !!(leds & map[i].libinput);
|
2012-05-30 16:31:49 +01:00
|
|
|
}
|
2013-08-09 16:32:17 +02:00
|
|
|
ev[i].type = EV_SYN;
|
|
|
|
|
ev[i].code = SYN_REPORT;
|
2012-05-30 16:31:49 +01:00
|
|
|
|
2012-08-06 14:57:07 +03:00
|
|
|
i = write(device->fd, ev, sizeof ev);
|
|
|
|
|
(void)i; /* no, we really don't care about the return value */
|
2012-05-30 16:31:49 +01:00
|
|
|
}
|
|
|
|
|
|
2015-12-01 15:46:44 +10:00
|
|
|
void
|
|
|
|
|
evdev_transform_absolute(struct evdev_device *device,
|
|
|
|
|
struct device_coords *point)
|
2013-09-24 12:09:03 +01:00
|
|
|
{
|
2014-08-20 18:23:43 +10:00
|
|
|
if (!device->abs.apply_calibration)
|
2013-11-10 17:55:40 +01:00
|
|
|
return;
|
|
|
|
|
|
2015-03-11 08:35:38 +10:00
|
|
|
matrix_mult_vec(&device->abs.calibration, &point->x, &point->y);
|
2013-09-24 12:09:03 +01:00
|
|
|
}
|
|
|
|
|
|
2016-01-06 15:26:49 +10:00
|
|
|
void
|
|
|
|
|
evdev_transform_relative(struct evdev_device *device,
|
|
|
|
|
struct device_coords *point)
|
|
|
|
|
{
|
|
|
|
|
struct matrix rel_matrix;
|
|
|
|
|
|
|
|
|
|
if (!device->abs.apply_calibration)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
matrix_to_relative(&rel_matrix, &device->abs.calibration);
|
|
|
|
|
matrix_mult_vec(&rel_matrix, &point->x, &point->y);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-19 11:11:36 +10:00
|
|
|
static inline double
|
|
|
|
|
scale_axis(const struct input_absinfo *absinfo, double val, double to_range)
|
|
|
|
|
{
|
|
|
|
|
return (val - absinfo->minimum) * to_range /
|
|
|
|
|
(absinfo->maximum - absinfo->minimum + 1);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-02 23:09:27 +02:00
|
|
|
double
|
2014-01-25 11:53:53 +01:00
|
|
|
evdev_device_transform_x(struct evdev_device *device,
|
2014-06-02 23:09:27 +02:00
|
|
|
double x,
|
2014-01-25 11:53:53 +01:00
|
|
|
uint32_t width)
|
|
|
|
|
{
|
2017-09-19 13:57:50 +10:00
|
|
|
return scale_axis(device->abs.absinfo_x, x, width);
|
|
|
|
|
}
|
2017-04-21 17:52:37 +10:00
|
|
|
|
2017-09-19 13:57:50 +10:00
|
|
|
double
|
|
|
|
|
evdev_device_transform_y(struct evdev_device *device,
|
|
|
|
|
double y,
|
|
|
|
|
uint32_t height)
|
|
|
|
|
{
|
|
|
|
|
return scale_axis(device->abs.absinfo_y, y, height);
|
2017-09-04 10:40:04 +10:00
|
|
|
}
|
|
|
|
|
|
2015-08-11 12:40:45 +10:00
|
|
|
void
|
2018-11-22 10:24:54 +10:00
|
|
|
evdev_notify_axis_legacy_wheel(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
uint32_t axes,
|
|
|
|
|
const struct normalized_coords *delta_in,
|
|
|
|
|
const struct discrete_coords *discrete_in)
|
2014-11-18 11:38:38 +10:00
|
|
|
{
|
2015-03-11 10:36:44 +10:00
|
|
|
struct normalized_coords delta = *delta_in;
|
2015-03-11 11:30:02 +10:00
|
|
|
struct discrete_coords discrete = *discrete_in;
|
2015-03-11 10:36:44 +10:00
|
|
|
|
2019-09-30 23:34:45 +00:00
|
|
|
if (device->scroll.invert_horizontal_scrolling) {
|
|
|
|
|
delta.x *= -1;
|
|
|
|
|
discrete.x *= -1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:15:02 +10:00
|
|
|
if (device->scroll.natural_scrolling_enabled) {
|
2015-03-11 10:36:44 +10:00
|
|
|
delta.x *= -1;
|
|
|
|
|
delta.y *= -1;
|
2015-03-11 11:30:02 +10:00
|
|
|
discrete.x *= -1;
|
|
|
|
|
discrete.y *= -1;
|
2015-01-13 15:15:02 +10:00
|
|
|
}
|
2014-11-18 11:38:38 +10:00
|
|
|
|
2018-11-22 10:24:54 +10:00
|
|
|
pointer_notify_axis_legacy_wheel(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
axes,
|
|
|
|
|
&delta,
|
|
|
|
|
&discrete);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_notify_axis_wheel(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
uint32_t axes,
|
|
|
|
|
const struct normalized_coords *delta_in,
|
|
|
|
|
const struct wheel_v120 *v120_in)
|
|
|
|
|
{
|
|
|
|
|
struct normalized_coords delta = *delta_in;
|
|
|
|
|
struct wheel_v120 v120 = *v120_in;
|
|
|
|
|
|
2021-09-21 19:21:03 +02:00
|
|
|
if (device->scroll.invert_horizontal_scrolling) {
|
|
|
|
|
delta.x *= -1;
|
|
|
|
|
v120.x *= -1;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-22 10:24:54 +10:00
|
|
|
if (device->scroll.natural_scrolling_enabled) {
|
|
|
|
|
delta.x *= -1;
|
|
|
|
|
delta.y *= -1;
|
|
|
|
|
v120.x *= -1;
|
|
|
|
|
v120.y *= -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pointer_notify_axis_wheel(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
axes,
|
|
|
|
|
&delta,
|
|
|
|
|
&v120);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_notify_axis_finger(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
uint32_t axes,
|
|
|
|
|
const struct normalized_coords *delta_in)
|
|
|
|
|
{
|
|
|
|
|
struct normalized_coords delta = *delta_in;
|
|
|
|
|
|
|
|
|
|
if (device->scroll.natural_scrolling_enabled) {
|
|
|
|
|
delta.x *= -1;
|
|
|
|
|
delta.y *= -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pointer_notify_axis_finger(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
axes,
|
|
|
|
|
&delta);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_notify_axis_continous(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
uint32_t axes,
|
|
|
|
|
const struct normalized_coords *delta_in)
|
|
|
|
|
{
|
|
|
|
|
struct normalized_coords delta = *delta_in;
|
|
|
|
|
|
|
|
|
|
if (device->scroll.natural_scrolling_enabled) {
|
|
|
|
|
delta.x *= -1;
|
|
|
|
|
delta.y *= -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pointer_notify_axis_continuous(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
axes,
|
|
|
|
|
&delta);
|
2014-11-18 11:38:38 +10:00
|
|
|
}
|
|
|
|
|
|
2014-09-03 15:50:28 +10:00
|
|
|
static void
|
|
|
|
|
evdev_tag_external_mouse(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
|
|
|
|
int bustype;
|
|
|
|
|
|
|
|
|
|
bustype = libevdev_get_id_bustype(device->evdev);
|
2015-06-02 17:22:41 -04:00
|
|
|
if (bustype == BUS_USB || bustype == BUS_BLUETOOTH)
|
|
|
|
|
device->tags |= EVDEV_TAG_EXTERNAL_MOUSE;
|
2014-09-03 15:50:28 +10:00
|
|
|
}
|
|
|
|
|
|
2014-09-16 16:22:38 +02:00
|
|
|
static void
|
|
|
|
|
evdev_tag_trackpoint(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
2019-05-28 09:54:27 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
|
|
|
|
char *prop;
|
|
|
|
|
|
|
|
|
|
if (!libevdev_has_property(device->evdev,
|
|
|
|
|
INPUT_PROP_POINTING_STICK) &&
|
|
|
|
|
!parse_udev_flag(device, udev_device, "ID_INPUT_POINTINGSTICK"))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
device->tags |= EVDEV_TAG_TRACKPOINT;
|
|
|
|
|
|
|
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
if (q && quirks_get_string(q, QUIRK_ATTR_TRACKPOINT_INTEGRATION, &prop)) {
|
|
|
|
|
if (streq(prop, "internal")) {
|
|
|
|
|
/* noop, this is the default anyway */
|
|
|
|
|
} else if (streq(prop, "external")) {
|
|
|
|
|
device->tags |= EVDEV_TAG_EXTERNAL_MOUSE;
|
|
|
|
|
evdev_log_info(device,
|
|
|
|
|
"is an external pointing stick\n");
|
|
|
|
|
} else {
|
|
|
|
|
evdev_log_info(device,
|
|
|
|
|
"tagged with unknown value %s\n",
|
|
|
|
|
prop);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quirks_unref(q);
|
2014-09-16 16:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-22 13:34:10 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_tag_keyboard_internal(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
device->tags |= EVDEV_TAG_INTERNAL_KEYBOARD;
|
|
|
|
|
device->tags &= ~EVDEV_TAG_EXTERNAL_KEYBOARD;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
evdev_tag_keyboard_external(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
device->tags |= EVDEV_TAG_EXTERNAL_KEYBOARD;
|
|
|
|
|
device->tags &= ~EVDEV_TAG_INTERNAL_KEYBOARD;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-22 15:51:18 +10:00
|
|
|
static void
|
|
|
|
|
evdev_tag_keyboard(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
2018-05-24 11:56:24 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
|
|
|
|
char *prop;
|
2015-05-22 15:51:18 +10:00
|
|
|
int code;
|
|
|
|
|
|
|
|
|
|
if (!libevdev_has_event_type(device->evdev, EV_KEY))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (code = KEY_Q; code <= KEY_P; code++) {
|
|
|
|
|
if (!libevdev_has_event_code(device->evdev,
|
|
|
|
|
EV_KEY,
|
|
|
|
|
code))
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
if (q && quirks_get_string(q, QUIRK_ATTR_KEYBOARD_INTEGRATION, &prop)) {
|
2017-05-22 13:34:10 +10:00
|
|
|
if (streq(prop, "internal")) {
|
|
|
|
|
evdev_tag_keyboard_internal(device);
|
|
|
|
|
} else if (streq(prop, "external")) {
|
|
|
|
|
evdev_tag_keyboard_external(device);
|
|
|
|
|
} else {
|
|
|
|
|
evdev_log_info(device,
|
|
|
|
|
"tagged with unknown value %s\n",
|
|
|
|
|
prop);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks_unref(q);
|
|
|
|
|
|
2015-05-22 15:51:18 +10:00
|
|
|
device->tags |= EVDEV_TAG_KEYBOARD;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-09 12:17:38 +10:00
|
|
|
static void
|
|
|
|
|
evdev_tag_tablet_touchpad(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
device->tags |= EVDEV_TAG_TABLET_TOUCHPAD;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-26 11:41:19 +10:00
|
|
|
static int
|
|
|
|
|
evdev_calibration_has_matrix(struct libinput_device *libinput_device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2014-08-26 11:41:19 +10:00
|
|
|
|
|
|
|
|
return device->abs.absinfo_x && device->abs.absinfo_y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_calibration_set_matrix(struct libinput_device *libinput_device,
|
|
|
|
|
const float matrix[6])
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2014-08-26 11:41:19 +10:00
|
|
|
|
|
|
|
|
evdev_device_calibrate(device, matrix);
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_calibration_get_matrix(struct libinput_device *libinput_device,
|
|
|
|
|
float matrix[6])
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2014-08-26 11:41:19 +10:00
|
|
|
|
|
|
|
|
matrix_to_farray6(&device->abs.usermatrix, matrix);
|
|
|
|
|
|
|
|
|
|
return !matrix_is_identity(&device->abs.usermatrix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_calibration_get_default_matrix(struct libinput_device *libinput_device,
|
|
|
|
|
float matrix[6])
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2014-08-26 11:41:19 +10:00
|
|
|
|
2014-08-26 13:44:03 +10:00
|
|
|
matrix_to_farray6(&device->abs.default_calibration, matrix);
|
2014-08-26 11:41:19 +10:00
|
|
|
|
2014-08-26 13:44:03 +10:00
|
|
|
return !matrix_is_identity(&device->abs.default_calibration);
|
2014-08-26 11:41:19 +10:00
|
|
|
}
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
static uint32_t
|
|
|
|
|
evdev_sendevents_get_modes(struct libinput_device *device)
|
|
|
|
|
{
|
2014-10-30 15:36:52 +10:00
|
|
|
return LIBINPUT_CONFIG_SEND_EVENTS_DISABLED;
|
2014-08-22 13:40:40 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_sendevents_set_mode(struct libinput_device *device,
|
|
|
|
|
enum libinput_config_send_events_mode mode)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-08-22 13:40:40 +10:00
|
|
|
struct evdev_dispatch *dispatch = evdev->dispatch;
|
|
|
|
|
|
|
|
|
|
if (mode == dispatch->sendevents.current_mode)
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
|
|
switch(mode) {
|
|
|
|
|
case LIBINPUT_CONFIG_SEND_EVENTS_ENABLED:
|
|
|
|
|
evdev_device_resume(evdev);
|
|
|
|
|
break;
|
|
|
|
|
case LIBINPUT_CONFIG_SEND_EVENTS_DISABLED:
|
|
|
|
|
evdev_device_suspend(evdev);
|
|
|
|
|
break;
|
2014-10-30 15:36:52 +10:00
|
|
|
default: /* no support for combined modes yet */
|
2014-08-22 13:40:40 +10:00
|
|
|
return LIBINPUT_CONFIG_STATUS_UNSUPPORTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dispatch->sendevents.current_mode = mode;
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_send_events_mode
|
|
|
|
|
evdev_sendevents_get_mode(struct libinput_device *device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-08-22 13:40:40 +10:00
|
|
|
struct evdev_dispatch *dispatch = evdev->dispatch;
|
|
|
|
|
|
|
|
|
|
return dispatch->sendevents.current_mode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_send_events_mode
|
|
|
|
|
evdev_sendevents_get_default_mode(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return LIBINPUT_CONFIG_SEND_EVENTS_ENABLED;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-23 13:48:06 +10:00
|
|
|
static int
|
|
|
|
|
evdev_left_handed_has(struct libinput_device *device)
|
2012-05-17 12:18:16 +02:00
|
|
|
{
|
2014-09-23 13:48:06 +10:00
|
|
|
/* This is only hooked up when we have left-handed configuration, so we
|
|
|
|
|
* can hardcode 1 here */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2012-05-17 12:18:16 +02:00
|
|
|
|
2014-09-23 13:48:06 +10:00
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_left_handed_set(struct libinput_device *device, int left_handed)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-09-23 13:48:06 +10:00
|
|
|
|
2017-01-30 19:48:33 +10:00
|
|
|
evdev->left_handed.want_enabled = left_handed ? true : false;
|
2014-09-23 13:48:06 +10:00
|
|
|
|
2017-01-30 19:48:33 +10:00
|
|
|
evdev->left_handed.change_to_enabled(evdev);
|
2014-09-23 13:48:06 +10:00
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_left_handed_get(struct libinput_device *device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-09-23 13:48:06 +10:00
|
|
|
|
|
|
|
|
/* return the wanted configuration, even if it hasn't taken
|
|
|
|
|
* effect yet! */
|
2017-01-30 19:48:33 +10:00
|
|
|
return evdev->left_handed.want_enabled;
|
2014-09-23 13:48:06 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_left_handed_get_default(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-13 07:55:13 +10:00
|
|
|
void
|
2014-09-23 13:48:06 +10:00
|
|
|
evdev_init_left_handed(struct evdev_device *device,
|
|
|
|
|
void (*change_to_left_handed)(struct evdev_device *))
|
|
|
|
|
{
|
2015-01-06 21:20:22 -05:00
|
|
|
device->left_handed.config.has = evdev_left_handed_has;
|
|
|
|
|
device->left_handed.config.set = evdev_left_handed_set;
|
|
|
|
|
device->left_handed.config.get = evdev_left_handed_get;
|
|
|
|
|
device->left_handed.config.get_default = evdev_left_handed_get_default;
|
|
|
|
|
device->base.config.left_handed = &device->left_handed.config;
|
|
|
|
|
device->left_handed.enabled = false;
|
|
|
|
|
device->left_handed.want_enabled = false;
|
|
|
|
|
device->left_handed.change_to_enabled = change_to_left_handed;
|
2014-09-23 13:48:06 +10:00
|
|
|
}
|
|
|
|
|
|
2014-11-06 13:39:51 +01:00
|
|
|
static uint32_t
|
2014-11-19 12:16:28 +10:00
|
|
|
evdev_scroll_get_methods(struct libinput_device *device)
|
2014-11-06 13:39:51 +01:00
|
|
|
{
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
2014-11-19 12:16:28 +10:00
|
|
|
evdev_scroll_set_method(struct libinput_device *device,
|
|
|
|
|
enum libinput_config_scroll_method method)
|
2014-11-06 13:39:51 +01:00
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
2014-11-19 12:16:28 +10:00
|
|
|
evdev->scroll.want_method = method;
|
|
|
|
|
evdev->scroll.change_scroll_method(evdev);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-19 12:16:28 +10:00
|
|
|
static enum libinput_config_scroll_method
|
|
|
|
|
evdev_scroll_get_method(struct libinput_device *device)
|
2014-11-06 13:39:51 +01:00
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
|
|
|
|
/* return the wanted configuration, even if it hasn't taken
|
|
|
|
|
* effect yet! */
|
2014-11-19 12:16:28 +10:00
|
|
|
return evdev->scroll.want_method;
|
2014-11-06 13:39:51 +01:00
|
|
|
}
|
|
|
|
|
|
2014-11-19 12:16:28 +10:00
|
|
|
static enum libinput_config_scroll_method
|
|
|
|
|
evdev_scroll_get_default_method(struct libinput_device *device)
|
2014-11-06 13:39:51 +01:00
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
2015-06-02 17:22:42 -04:00
|
|
|
if (evdev->tags & EVDEV_TAG_TRACKPOINT)
|
2014-11-06 13:39:51 +01:00
|
|
|
return LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN;
|
2015-04-28 16:45:35 +10:00
|
|
|
|
|
|
|
|
/* Mice without a scroll wheel but with middle button have on-button
|
|
|
|
|
* scrolling by default */
|
|
|
|
|
if (!libevdev_has_event_code(evdev->evdev, EV_REL, REL_WHEEL) &&
|
|
|
|
|
!libevdev_has_event_code(evdev->evdev, EV_REL, REL_HWHEEL) &&
|
|
|
|
|
libevdev_has_event_code(evdev->evdev, EV_KEY, BTN_MIDDLE))
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_ON_BUTTON_DOWN;
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_NO_SCROLL;
|
2014-11-06 13:39:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_scroll_set_button(struct libinput_device *device,
|
|
|
|
|
uint32_t button)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
|
|
|
|
evdev->scroll.want_button = button;
|
2014-11-19 12:16:28 +10:00
|
|
|
evdev->scroll.change_scroll_method(evdev);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
evdev_scroll_get_button(struct libinput_device *device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2014-11-06 13:39:51 +01:00
|
|
|
|
|
|
|
|
/* return the wanted configuration, even if it hasn't taken
|
|
|
|
|
* effect yet! */
|
|
|
|
|
return evdev->scroll.want_button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
evdev_scroll_get_default_button(struct libinput_device *device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
2017-02-27 11:20:14 +10:00
|
|
|
unsigned int code;
|
2014-11-06 13:39:51 +01:00
|
|
|
|
2016-12-05 14:21:34 +10:00
|
|
|
if (libevdev_has_event_code(evdev->evdev, EV_KEY, BTN_MIDDLE))
|
2015-04-28 16:45:35 +10:00
|
|
|
return BTN_MIDDLE;
|
|
|
|
|
|
2017-02-27 11:20:14 +10:00
|
|
|
for (code = BTN_SIDE; code <= BTN_TASK; code++) {
|
|
|
|
|
if (libevdev_has_event_code(evdev->evdev, EV_KEY, code))
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (libevdev_has_event_code(evdev->evdev, EV_KEY, BTN_RIGHT))
|
|
|
|
|
return BTN_RIGHT;
|
|
|
|
|
|
2015-04-28 16:45:35 +10:00
|
|
|
return 0;
|
2014-11-06 13:39:51 +01:00
|
|
|
}
|
2012-05-17 12:18:16 +02:00
|
|
|
|
2019-03-20 10:56:51 +10:00
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_scroll_set_button_lock(struct libinput_device *device,
|
|
|
|
|
enum libinput_config_scroll_button_lock_state state)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
|
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
|
case LIBINPUT_CONFIG_SCROLL_BUTTON_LOCK_DISABLED:
|
|
|
|
|
evdev->scroll.want_lock_enabled = false;
|
|
|
|
|
break;
|
|
|
|
|
case LIBINPUT_CONFIG_SCROLL_BUTTON_LOCK_ENABLED:
|
|
|
|
|
evdev->scroll.want_lock_enabled = true;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_INVALID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
evdev->scroll.change_scroll_method(evdev);
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_scroll_button_lock_state
|
|
|
|
|
evdev_scroll_get_button_lock(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_device *evdev = evdev_device(device);
|
|
|
|
|
|
|
|
|
|
if (evdev->scroll.lock_state == BUTTONSCROLL_LOCK_DISABLED)
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_BUTTON_LOCK_DISABLED;
|
2020-08-27 01:17:24 -07:00
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_BUTTON_LOCK_ENABLED;
|
2019-03-20 10:56:51 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_scroll_button_lock_state
|
|
|
|
|
evdev_scroll_get_default_button_lock(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return LIBINPUT_CONFIG_SCROLL_BUTTON_LOCK_DISABLED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_set_button_scroll_lock_enabled(struct evdev_device *device,
|
|
|
|
|
bool enabled)
|
|
|
|
|
{
|
|
|
|
|
if (enabled)
|
|
|
|
|
device->scroll.lock_state = BUTTONSCROLL_LOCK_IDLE;
|
|
|
|
|
else
|
|
|
|
|
device->scroll.lock_state = BUTTONSCROLL_LOCK_DISABLED;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-19 13:57:50 +10:00
|
|
|
void
|
2014-11-06 13:39:51 +01:00
|
|
|
evdev_init_button_scroll(struct evdev_device *device,
|
2014-11-19 12:16:28 +10:00
|
|
|
void (*change_scroll_method)(struct evdev_device *))
|
2014-11-06 13:39:51 +01:00
|
|
|
{
|
2017-07-03 11:28:18 +10:00
|
|
|
char timer_name[64];
|
|
|
|
|
|
|
|
|
|
snprintf(timer_name,
|
|
|
|
|
sizeof(timer_name),
|
|
|
|
|
"%s btnscroll",
|
|
|
|
|
evdev_device_get_sysname(device));
|
2016-06-09 08:54:00 +10:00
|
|
|
libinput_timer_init(&device->scroll.timer,
|
|
|
|
|
evdev_libinput_context(device),
|
2017-07-03 11:28:18 +10:00
|
|
|
timer_name,
|
2014-11-06 13:39:51 +01:00
|
|
|
evdev_button_scroll_timeout, device);
|
2014-11-19 12:16:28 +10:00
|
|
|
device->scroll.config.get_methods = evdev_scroll_get_methods;
|
|
|
|
|
device->scroll.config.set_method = evdev_scroll_set_method;
|
|
|
|
|
device->scroll.config.get_method = evdev_scroll_get_method;
|
|
|
|
|
device->scroll.config.get_default_method = evdev_scroll_get_default_method;
|
2014-11-06 13:39:51 +01:00
|
|
|
device->scroll.config.set_button = evdev_scroll_set_button;
|
|
|
|
|
device->scroll.config.get_button = evdev_scroll_get_button;
|
|
|
|
|
device->scroll.config.get_default_button = evdev_scroll_get_default_button;
|
2019-03-20 10:56:51 +10:00
|
|
|
device->scroll.config.set_button_lock = evdev_scroll_set_button_lock;
|
|
|
|
|
device->scroll.config.get_button_lock = evdev_scroll_get_button_lock;
|
|
|
|
|
device->scroll.config.get_default_button_lock = evdev_scroll_get_default_button_lock;
|
2014-11-19 12:16:28 +10:00
|
|
|
device->base.config.scroll_method = &device->scroll.config;
|
|
|
|
|
device->scroll.method = evdev_scroll_get_default_method((struct libinput_device *)device);
|
|
|
|
|
device->scroll.want_method = device->scroll.method;
|
2014-11-06 13:39:51 +01:00
|
|
|
device->scroll.button = evdev_scroll_get_default_button((struct libinput_device *)device);
|
|
|
|
|
device->scroll.want_button = device->scroll.button;
|
2014-11-19 12:16:28 +10:00
|
|
|
device->scroll.change_scroll_method = change_scroll_method;
|
2014-11-06 13:39:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-12-01 14:05:16 +10:00
|
|
|
void
|
2014-11-18 10:49:47 +10:00
|
|
|
evdev_init_calibration(struct evdev_device *device,
|
2016-07-04 14:34:56 +10:00
|
|
|
struct libinput_device_config_calibration *calibration)
|
2014-11-18 10:49:47 +10:00
|
|
|
{
|
2016-07-04 14:34:56 +10:00
|
|
|
device->base.config.calibration = calibration;
|
2014-08-26 11:41:19 +10:00
|
|
|
|
2016-07-04 14:34:56 +10:00
|
|
|
calibration->has_matrix = evdev_calibration_has_matrix;
|
|
|
|
|
calibration->set_matrix = evdev_calibration_set_matrix;
|
|
|
|
|
calibration->get_matrix = evdev_calibration_get_matrix;
|
|
|
|
|
calibration->get_default_matrix = evdev_calibration_get_default_matrix;
|
2014-11-18 10:49:47 +10:00
|
|
|
}
|
2012-05-17 12:18:16 +02:00
|
|
|
|
2017-01-25 14:31:05 +10:00
|
|
|
void
|
2014-11-18 10:49:47 +10:00
|
|
|
evdev_init_sendevents(struct evdev_device *device,
|
|
|
|
|
struct evdev_dispatch *dispatch)
|
|
|
|
|
{
|
|
|
|
|
device->base.config.sendevents = &dispatch->sendevents.config;
|
2014-08-22 13:40:40 +10:00
|
|
|
|
|
|
|
|
dispatch->sendevents.current_mode = LIBINPUT_CONFIG_SEND_EVENTS_ENABLED;
|
|
|
|
|
dispatch->sendevents.config.get_modes = evdev_sendevents_get_modes;
|
|
|
|
|
dispatch->sendevents.config.set_mode = evdev_sendevents_set_mode;
|
|
|
|
|
dispatch->sendevents.config.get_mode = evdev_sendevents_get_mode;
|
|
|
|
|
dispatch->sendevents.config.get_default_mode = evdev_sendevents_get_default_mode;
|
2014-11-18 10:49:47 +10:00
|
|
|
}
|
|
|
|
|
|
2014-11-18 11:01:10 +10:00
|
|
|
static int
|
|
|
|
|
evdev_scroll_config_natural_has(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_scroll_config_natural_set(struct libinput_device *device,
|
|
|
|
|
int enabled)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *dev = evdev_device(device);
|
2014-11-18 11:01:10 +10:00
|
|
|
|
|
|
|
|
dev->scroll.natural_scrolling_enabled = enabled ? true : false;
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_scroll_config_natural_get(struct libinput_device *device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *dev = evdev_device(device);
|
2014-11-18 11:01:10 +10:00
|
|
|
|
|
|
|
|
return dev->scroll.natural_scrolling_enabled ? 1 : 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
evdev_scroll_config_natural_get_default(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
/* could enable this on Apple touchpads. could do that, could
|
|
|
|
|
* very well do that... */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_init_natural_scroll(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
device->scroll.config_natural.has = evdev_scroll_config_natural_has;
|
|
|
|
|
device->scroll.config_natural.set_enabled = evdev_scroll_config_natural_set;
|
|
|
|
|
device->scroll.config_natural.get_enabled = evdev_scroll_config_natural_get;
|
|
|
|
|
device->scroll.config_natural.get_default_enabled = evdev_scroll_config_natural_get_default;
|
|
|
|
|
device->scroll.natural_scrolling_enabled = false;
|
|
|
|
|
device->base.config.natural_scroll = &device->scroll.config_natural;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-19 13:57:50 +10:00
|
|
|
int
|
2016-07-04 12:54:51 +10:00
|
|
|
evdev_need_mtdev(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
|
|
|
|
|
|
|
|
|
return (libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) &&
|
|
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y) &&
|
|
|
|
|
!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_SLOT));
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-04 13:07:33 +10:00
|
|
|
/* Fake MT devices have the ABS_MT_SLOT bit set because of
|
|
|
|
|
the limited ABS_* range - they aren't MT devices, they
|
|
|
|
|
just have too many ABS_ axes */
|
2017-09-19 13:57:50 +10:00
|
|
|
bool
|
2016-07-04 13:07:33 +10:00
|
|
|
evdev_is_fake_mt_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
|
|
|
|
|
|
|
|
|
return libevdev_has_event_code(evdev, EV_ABS, ABS_MT_SLOT) &&
|
|
|
|
|
libevdev_get_num_slots(evdev) == -1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-19 13:57:50 +10:00
|
|
|
enum switch_reliability
|
2017-09-04 10:40:04 +10:00
|
|
|
evdev_read_switch_reliability_prop(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
enum switch_reliability r;
|
2018-05-24 11:56:24 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
|
|
|
|
char *prop;
|
2017-09-04 10:40:04 +10:00
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
if (!q || !quirks_get_string(q, QUIRK_ATTR_LID_SWITCH_RELIABILITY, &prop)) {
|
2022-04-26 01:55:22 +00:00
|
|
|
r = RELIABILITY_RELIABLE;
|
2018-05-24 11:56:24 +10:00
|
|
|
} else if (!parse_switch_reliability_property(prop, &r)) {
|
2017-09-04 10:40:04 +10:00
|
|
|
evdev_log_error(device,
|
|
|
|
|
"%s: switch reliability set to unknown value '%s'\n",
|
|
|
|
|
device->devname,
|
|
|
|
|
prop);
|
2022-04-26 01:55:22 +00:00
|
|
|
r = RELIABILITY_RELIABLE;
|
2017-09-04 10:40:04 +10:00
|
|
|
} else if (r == RELIABILITY_WRITE_OPEN) {
|
2017-09-12 10:09:51 +10:00
|
|
|
evdev_log_info(device, "will write switch open events\n");
|
2017-09-04 10:40:04 +10:00
|
|
|
}
|
|
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks_unref(q);
|
|
|
|
|
|
2017-09-04 10:40:04 +10:00
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-12 21:09:15 +10:00
|
|
|
LIBINPUT_UNUSED
|
2013-12-06 13:09:18 +10:00
|
|
|
static inline void
|
2017-11-08 14:18:06 +10:00
|
|
|
evdev_print_event(struct evdev_device *device,
|
|
|
|
|
const struct input_event *e)
|
2011-01-14 14:45:42 -05:00
|
|
|
{
|
2017-11-08 14:18:06 +10:00
|
|
|
static uint32_t offset = 0;
|
|
|
|
|
static uint32_t last_time = 0;
|
2019-11-23 17:23:56 -08:00
|
|
|
uint32_t time = us2ms(input_event_time(e));
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2017-11-08 14:18:06 +10:00
|
|
|
if (offset == 0) {
|
|
|
|
|
offset = time;
|
|
|
|
|
last_time = time - offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
time -= offset;
|
|
|
|
|
|
|
|
|
|
if (libevdev_event_is_code(e, EV_SYN, SYN_REPORT)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_debug(device,
|
2017-11-08 14:18:06 +10:00
|
|
|
"%u.%03u -------------- EV_SYN ------------ +%ums\n",
|
|
|
|
|
time / 1000,
|
|
|
|
|
time % 1000,
|
|
|
|
|
time - last_time);
|
|
|
|
|
|
|
|
|
|
last_time = time;
|
|
|
|
|
} else {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_debug(device,
|
2017-11-08 14:18:06 +10:00
|
|
|
"%u.%03u %-16s %-20s %4d\n",
|
|
|
|
|
time / 1000,
|
|
|
|
|
time % 1000,
|
2015-04-15 10:09:34 +10:00
|
|
|
libevdev_event_type_get_name(e->type),
|
|
|
|
|
libevdev_event_code_get_name(e->type, e->code),
|
|
|
|
|
e->value);
|
2017-11-08 14:18:06 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
evdev_process_event(struct evdev_device *device, struct input_event *e)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_dispatch *dispatch = device->dispatch;
|
2019-11-23 17:23:56 -08:00
|
|
|
uint64_t time = input_event_time(e);
|
2017-11-08 14:18:06 +10:00
|
|
|
|
2018-02-23 10:46:36 +10:00
|
|
|
#if 0
|
2017-11-08 14:18:06 +10:00
|
|
|
evdev_print_event(device, e);
|
2015-04-15 10:09:34 +10:00
|
|
|
#endif
|
2017-11-08 14:18:06 +10:00
|
|
|
|
2017-09-19 15:51:09 +10:00
|
|
|
libinput_timer_flush(evdev_libinput_context(device), time);
|
2015-04-15 10:09:34 +10:00
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
dispatch->interface->process(dispatch, device, e, time);
|
|
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_device_dispatch_one(struct evdev_device *device,
|
|
|
|
|
struct input_event *ev)
|
|
|
|
|
{
|
|
|
|
|
if (!device->mtdev) {
|
|
|
|
|
evdev_process_event(device, ev);
|
|
|
|
|
} else {
|
|
|
|
|
mtdev_put_event(device->mtdev, ev);
|
|
|
|
|
if (libevdev_event_is_code(ev, EV_SYN, SYN_REPORT)) {
|
|
|
|
|
while (!mtdev_empty(device->mtdev)) {
|
|
|
|
|
struct input_event e;
|
|
|
|
|
mtdev_get_event(device->mtdev, &e);
|
|
|
|
|
evdev_process_event(device, &e);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
}
|
2012-03-20 19:52:57 -04:00
|
|
|
}
|
|
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
static int
|
|
|
|
|
evdev_sync_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct input_event ev;
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
rc = libevdev_next_event(device->evdev,
|
|
|
|
|
LIBEVDEV_READ_FLAG_SYNC, &ev);
|
|
|
|
|
if (rc < 0)
|
|
|
|
|
break;
|
|
|
|
|
evdev_device_dispatch_one(device, &ev);
|
|
|
|
|
} while (rc == LIBEVDEV_READ_STATUS_SYNC);
|
|
|
|
|
|
|
|
|
|
return rc == -EAGAIN ? 0 : rc;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-13 15:12:43 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_note_time_delay(struct evdev_device *device,
|
|
|
|
|
const struct input_event *ev)
|
|
|
|
|
{
|
|
|
|
|
struct libinput *libinput = evdev_libinput_context(device);
|
|
|
|
|
uint32_t tdelta;
|
2021-04-09 10:12:45 +10:00
|
|
|
uint64_t eventtime = input_event_time(ev);
|
2020-04-13 15:12:43 +10:00
|
|
|
|
|
|
|
|
/* if we have a current libinput_dispatch() snapshot, compare our
|
|
|
|
|
* event time with the one from the snapshot. If we have more than
|
|
|
|
|
* 10ms delay, complain about it. This catches delays in processing
|
|
|
|
|
* where there is no steady event flow and thus SYN_DROPPED may not
|
|
|
|
|
* get hit by the kernel despite us being too slow.
|
|
|
|
|
*/
|
2021-03-22 13:55:34 +10:00
|
|
|
if (libinput->dispatch_time == 0 ||
|
|
|
|
|
eventtime > libinput->dispatch_time)
|
2020-04-13 15:12:43 +10:00
|
|
|
return;
|
|
|
|
|
|
2021-03-22 13:55:34 +10:00
|
|
|
tdelta = us2ms(libinput->dispatch_time - eventtime);
|
2021-12-07 11:18:07 +10:00
|
|
|
if (tdelta > 20) {
|
2020-04-13 15:12:43 +10:00
|
|
|
evdev_log_bug_client_ratelimit(device,
|
|
|
|
|
&device->delay_warning_limit,
|
|
|
|
|
"event processing lagging behind by %dms, your system is too slow\n",
|
|
|
|
|
tdelta);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-17 11:19:50 +01:00
|
|
|
static void
|
|
|
|
|
evdev_device_dispatch(void *data)
|
2012-03-20 19:52:57 -04:00
|
|
|
{
|
2013-11-17 11:19:50 +01:00
|
|
|
struct evdev_device *device = data;
|
2016-06-09 08:54:00 +10:00
|
|
|
struct libinput *libinput = evdev_libinput_context(device);
|
2013-12-06 13:09:18 +10:00
|
|
|
struct input_event ev;
|
|
|
|
|
int rc;
|
2020-04-13 15:12:43 +10:00
|
|
|
bool once = false;
|
2012-03-20 19:52:57 -04:00
|
|
|
|
|
|
|
|
/* If the compositor is repainting, this function is called only once
|
|
|
|
|
* per frame and we have to process all the events available on the
|
|
|
|
|
* fd, otherwise there will be input lag. */
|
|
|
|
|
do {
|
2013-12-06 13:09:18 +10:00
|
|
|
rc = libevdev_next_event(device->evdev,
|
|
|
|
|
LIBEVDEV_READ_FLAG_NORMAL, &ev);
|
|
|
|
|
if (rc == LIBEVDEV_READ_STATUS_SYNC) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info_ratelimit(device,
|
|
|
|
|
&device->syn_drop_limit,
|
|
|
|
|
"SYN_DROPPED event - some input events have been lost.\n");
|
2014-10-29 09:56:27 -05:00
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
/* send one more sync event so we handle all
|
|
|
|
|
currently pending events before we sync up
|
|
|
|
|
to the current state */
|
|
|
|
|
ev.code = SYN_REPORT;
|
|
|
|
|
evdev_device_dispatch_one(device, &ev);
|
|
|
|
|
|
|
|
|
|
rc = evdev_sync_device(device);
|
|
|
|
|
if (rc == 0)
|
|
|
|
|
rc = LIBEVDEV_READ_STATUS_SUCCESS;
|
|
|
|
|
} else if (rc == LIBEVDEV_READ_STATUS_SUCCESS) {
|
2020-04-13 15:12:43 +10:00
|
|
|
if (!once) {
|
|
|
|
|
evdev_note_time_delay(device, &ev);
|
|
|
|
|
once = true;
|
|
|
|
|
}
|
2013-12-06 13:09:18 +10:00
|
|
|
evdev_device_dispatch_one(device, &ev);
|
2021-06-21 00:34:37 +02:00
|
|
|
} else if (rc == -ENODEV) {
|
|
|
|
|
evdev_device_remove(device);
|
|
|
|
|
return;
|
2012-03-20 19:52:57 -04:00
|
|
|
}
|
2013-12-06 13:09:18 +10:00
|
|
|
} while (rc == LIBEVDEV_READ_STATUS_SUCCESS);
|
2012-03-20 19:52:57 -04:00
|
|
|
|
2013-12-06 13:09:18 +10:00
|
|
|
if (rc != -EAGAIN && rc != -EINTR) {
|
|
|
|
|
libinput_remove_source(libinput, device->source);
|
|
|
|
|
device->source = NULL;
|
|
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
static inline bool
|
2015-08-27 13:13:47 +10:00
|
|
|
evdev_init_accel(struct evdev_device *device,
|
|
|
|
|
enum libinput_config_accel_profile which)
|
|
|
|
|
{
|
|
|
|
|
struct motion_filter *filter;
|
|
|
|
|
|
2018-05-21 12:09:42 +10:00
|
|
|
if (which == LIBINPUT_CONFIG_ACCEL_PROFILE_FLAT)
|
2015-08-27 13:13:47 +10:00
|
|
|
filter = create_pointer_accelerator_filter_flat(device->dpi);
|
|
|
|
|
else if (device->tags & EVDEV_TAG_TRACKPOINT)
|
2018-08-17 15:12:58 +02:00
|
|
|
filter = create_pointer_accelerator_filter_trackpoint(device->trackpoint_multiplier,
|
|
|
|
|
device->use_velocity_averaging);
|
2015-08-27 13:13:47 +10:00
|
|
|
else if (device->dpi < DEFAULT_MOUSE_DPI)
|
2018-08-17 15:12:58 +02:00
|
|
|
filter = create_pointer_accelerator_filter_linear_low_dpi(device->dpi,
|
|
|
|
|
device->use_velocity_averaging);
|
2015-08-27 13:13:47 +10:00
|
|
|
else
|
2018-08-17 15:12:58 +02:00
|
|
|
filter = create_pointer_accelerator_filter_linear(device->dpi,
|
|
|
|
|
device->use_velocity_averaging);
|
2015-08-27 13:13:47 +10:00
|
|
|
|
|
|
|
|
if (!filter)
|
2016-07-12 11:03:03 +10:00
|
|
|
return false;
|
2015-08-27 13:13:47 +10:00
|
|
|
|
2016-07-13 07:55:13 +10:00
|
|
|
evdev_device_init_pointer_acceleration(device, filter);
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-08-27 13:13:47 +10:00
|
|
|
}
|
|
|
|
|
|
2014-05-18 19:20:39 +02:00
|
|
|
static int
|
2014-09-19 15:09:31 +10:00
|
|
|
evdev_accel_config_available(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
/* this function is only called if we set up ptraccel, so we can
|
|
|
|
|
reply with a resounding "Yes" */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_accel_config_set_speed(struct libinput_device *device, double speed)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *dev = evdev_device(device);
|
2014-09-19 15:09:31 +10:00
|
|
|
|
|
|
|
|
if (!filter_set_speed(dev->pointer.filter, speed))
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_INVALID;
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static double
|
|
|
|
|
evdev_accel_config_get_speed(struct libinput_device *device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *dev = evdev_device(device);
|
2014-09-19 15:09:31 +10:00
|
|
|
|
|
|
|
|
return filter_get_speed(dev->pointer.filter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static double
|
|
|
|
|
evdev_accel_config_get_default_speed(struct libinput_device *device)
|
|
|
|
|
{
|
|
|
|
|
return 0.0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-27 13:13:47 +10:00
|
|
|
static uint32_t
|
|
|
|
|
evdev_accel_config_get_profiles(struct libinput_device *libinput_device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2015-08-27 13:13:47 +10:00
|
|
|
|
|
|
|
|
if (!device->pointer.filter)
|
|
|
|
|
return LIBINPUT_CONFIG_ACCEL_PROFILE_NONE;
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_ACCEL_PROFILE_ADAPTIVE |
|
2018-05-21 12:09:42 +10:00
|
|
|
LIBINPUT_CONFIG_ACCEL_PROFILE_FLAT;
|
2015-08-27 13:13:47 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_status
|
|
|
|
|
evdev_accel_config_set_profile(struct libinput_device *libinput_device,
|
|
|
|
|
enum libinput_config_accel_profile profile)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2015-08-27 13:13:47 +10:00
|
|
|
struct motion_filter *filter;
|
|
|
|
|
double speed;
|
|
|
|
|
|
|
|
|
|
filter = device->pointer.filter;
|
|
|
|
|
if (filter_get_type(filter) == profile)
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
|
|
speed = filter_get_speed(filter);
|
|
|
|
|
device->pointer.filter = NULL;
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
if (evdev_init_accel(device, profile)) {
|
2015-08-27 13:13:47 +10:00
|
|
|
evdev_accel_config_set_speed(libinput_device, speed);
|
|
|
|
|
filter_destroy(filter);
|
|
|
|
|
} else {
|
|
|
|
|
device->pointer.filter = filter;
|
2018-04-12 10:56:32 +10:00
|
|
|
return LIBINPUT_CONFIG_STATUS_UNSUPPORTED;
|
2015-08-27 13:13:47 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return LIBINPUT_CONFIG_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_accel_profile
|
|
|
|
|
evdev_accel_config_get_profile(struct libinput_device *libinput_device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2015-08-27 13:13:47 +10:00
|
|
|
|
|
|
|
|
return filter_get_type(device->pointer.filter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static enum libinput_config_accel_profile
|
|
|
|
|
evdev_accel_config_get_default_profile(struct libinput_device *libinput_device)
|
|
|
|
|
{
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *device = evdev_device(libinput_device);
|
2015-08-27 13:13:47 +10:00
|
|
|
|
|
|
|
|
if (!device->pointer.filter)
|
|
|
|
|
return LIBINPUT_CONFIG_ACCEL_PROFILE_NONE;
|
|
|
|
|
|
|
|
|
|
/* No device has a flat profile as default */
|
|
|
|
|
return LIBINPUT_CONFIG_ACCEL_PROFILE_ADAPTIVE;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-13 07:55:13 +10:00
|
|
|
void
|
2015-03-13 13:56:14 +10:00
|
|
|
evdev_device_init_pointer_acceleration(struct evdev_device *device,
|
2015-07-28 15:06:13 +10:00
|
|
|
struct motion_filter *filter)
|
2014-05-18 19:20:39 +02:00
|
|
|
{
|
2015-07-28 15:06:13 +10:00
|
|
|
device->pointer.filter = filter;
|
2014-05-18 19:20:39 +02:00
|
|
|
|
2015-08-27 13:13:47 +10:00
|
|
|
if (device->base.config.accel == NULL) {
|
2018-04-12 11:10:26 +10:00
|
|
|
double default_speed;
|
|
|
|
|
|
2015-08-27 13:13:47 +10:00
|
|
|
device->pointer.config.available = evdev_accel_config_available;
|
|
|
|
|
device->pointer.config.set_speed = evdev_accel_config_set_speed;
|
|
|
|
|
device->pointer.config.get_speed = evdev_accel_config_get_speed;
|
|
|
|
|
device->pointer.config.get_default_speed = evdev_accel_config_get_default_speed;
|
|
|
|
|
device->pointer.config.get_profiles = evdev_accel_config_get_profiles;
|
|
|
|
|
device->pointer.config.set_profile = evdev_accel_config_set_profile;
|
|
|
|
|
device->pointer.config.get_profile = evdev_accel_config_get_profile;
|
|
|
|
|
device->pointer.config.get_default_profile = evdev_accel_config_get_default_profile;
|
|
|
|
|
device->base.config.accel = &device->pointer.config;
|
|
|
|
|
|
2018-04-12 11:10:26 +10:00
|
|
|
default_speed = evdev_accel_config_get_default_speed(&device->base);
|
|
|
|
|
evdev_accel_config_set_speed(&device->base, default_speed);
|
2015-08-27 13:13:47 +10:00
|
|
|
}
|
2014-05-18 19:20:39 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-16 14:48:47 +10:00
|
|
|
static inline bool
|
|
|
|
|
evdev_read_wheel_click_prop(struct evdev_device *device,
|
|
|
|
|
const char *prop,
|
2016-10-28 15:08:32 +10:00
|
|
|
double *angle)
|
2015-01-12 08:39:47 +10:00
|
|
|
{
|
2016-08-16 14:48:47 +10:00
|
|
|
int val;
|
|
|
|
|
|
|
|
|
|
*angle = DEFAULT_WHEEL_CLICK_ANGLE;
|
|
|
|
|
prop = udev_device_get_property_value(device->udev_device, prop);
|
|
|
|
|
if (!prop)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
val = parse_mouse_wheel_click_angle_property(prop);
|
2016-09-01 09:55:32 +10:00
|
|
|
if (val) {
|
2016-08-16 14:48:47 +10:00
|
|
|
*angle = val;
|
|
|
|
|
return true;
|
2015-01-12 08:39:47 +10:00
|
|
|
}
|
|
|
|
|
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_error(device,
|
|
|
|
|
"mouse wheel click angle is present but invalid, "
|
2016-08-16 14:48:47 +10:00
|
|
|
"using %d degrees instead\n",
|
|
|
|
|
DEFAULT_WHEEL_CLICK_ANGLE);
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-28 15:08:32 +10:00
|
|
|
static inline bool
|
|
|
|
|
evdev_read_wheel_click_count_prop(struct evdev_device *device,
|
|
|
|
|
const char *prop,
|
|
|
|
|
double *angle)
|
|
|
|
|
{
|
|
|
|
|
int val;
|
|
|
|
|
|
|
|
|
|
prop = udev_device_get_property_value(device->udev_device, prop);
|
|
|
|
|
if (!prop)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
val = parse_mouse_wheel_click_angle_property(prop);
|
|
|
|
|
if (val) {
|
|
|
|
|
*angle = 360.0/val;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_error(device,
|
|
|
|
|
"mouse wheel click count is present but invalid, "
|
2016-10-28 15:08:32 +10:00
|
|
|
"using %d degrees for angle instead instead\n",
|
|
|
|
|
DEFAULT_WHEEL_CLICK_ANGLE);
|
|
|
|
|
*angle = DEFAULT_WHEEL_CLICK_ANGLE;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-16 14:48:47 +10:00
|
|
|
static inline struct wheel_angle
|
|
|
|
|
evdev_read_wheel_click_props(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct wheel_angle angles;
|
2018-10-29 13:42:19 +10:00
|
|
|
const char *wheel_count = "MOUSE_WHEEL_CLICK_COUNT";
|
|
|
|
|
const char *wheel_angle = "MOUSE_WHEEL_CLICK_ANGLE";
|
|
|
|
|
const char *hwheel_count = "MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL";
|
|
|
|
|
const char *hwheel_angle = "MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL";
|
2016-08-16 14:48:47 +10:00
|
|
|
|
2016-10-28 15:08:32 +10:00
|
|
|
/* CLICK_COUNT overrides CLICK_ANGLE */
|
2018-10-29 13:42:19 +10:00
|
|
|
if (evdev_read_wheel_click_count_prop(device, wheel_count, &angles.y) ||
|
|
|
|
|
evdev_read_wheel_click_prop(device, wheel_angle, &angles.y)) {
|
|
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"wheel: vert click angle: %.2f\n", angles.y);
|
|
|
|
|
}
|
|
|
|
|
if (evdev_read_wheel_click_count_prop(device, hwheel_count, &angles.x) ||
|
|
|
|
|
evdev_read_wheel_click_prop(device, hwheel_angle, &angles.x)) {
|
|
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"wheel: horizontal click angle: %.2f\n", angles.y);
|
|
|
|
|
} else {
|
|
|
|
|
angles.x = angles.y;
|
2016-10-28 15:08:32 +10:00
|
|
|
}
|
2016-08-16 14:48:47 +10:00
|
|
|
|
|
|
|
|
return angles;
|
2015-01-12 08:39:47 +10:00
|
|
|
}
|
2015-04-01 11:03:19 +02:00
|
|
|
|
2018-07-09 16:04:50 +10:00
|
|
|
static inline double
|
|
|
|
|
evdev_get_trackpoint_multiplier(struct evdev_device *device)
|
2015-04-01 11:03:19 +02:00
|
|
|
{
|
2018-05-24 11:56:24 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
2018-07-09 16:04:50 +10:00
|
|
|
double multiplier = 1.0;
|
2015-04-01 11:03:19 +02:00
|
|
|
|
2017-05-16 13:01:32 +10:00
|
|
|
if (!(device->tags & EVDEV_TAG_TRACKPOINT))
|
2018-07-09 16:04:50 +10:00
|
|
|
return 1.0;
|
2017-05-16 13:01:32 +10:00
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
2018-07-09 16:04:50 +10:00
|
|
|
if (q) {
|
|
|
|
|
quirks_get_double(q, QUIRK_ATTR_TRACKPOINT_MULTIPLIER, &multiplier);
|
|
|
|
|
quirks_unref(q);
|
2017-05-16 13:10:07 +10:00
|
|
|
}
|
|
|
|
|
|
2018-07-09 16:04:50 +10:00
|
|
|
if (multiplier <= 0.0) {
|
|
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"trackpoint multiplier %.2f is invalid\n",
|
|
|
|
|
multiplier);
|
|
|
|
|
multiplier = 1.0;
|
2015-04-01 11:03:19 +02:00
|
|
|
}
|
|
|
|
|
|
2018-07-09 16:04:50 +10:00
|
|
|
if (multiplier != 1.0)
|
|
|
|
|
evdev_log_info(device,
|
2018-07-17 10:51:35 +10:00
|
|
|
"trackpoint multiplier is %.2f\n",
|
2018-07-09 16:04:50 +10:00
|
|
|
multiplier);
|
2018-06-01 12:47:42 +10:00
|
|
|
|
2018-07-09 16:04:50 +10:00
|
|
|
return multiplier;
|
2015-04-01 11:03:19 +02:00
|
|
|
}
|
|
|
|
|
|
2018-08-17 15:12:58 +02:00
|
|
|
static inline bool
|
|
|
|
|
evdev_need_velocity_averaging(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
|
|
|
|
bool use_velocity_averaging = false; /* default off unless we have quirk */
|
|
|
|
|
|
|
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
if (q) {
|
|
|
|
|
quirks_get_bool(q,
|
|
|
|
|
QUIRK_ATTR_USE_VELOCITY_AVERAGING,
|
|
|
|
|
&use_velocity_averaging);
|
|
|
|
|
quirks_unref(q);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (use_velocity_averaging)
|
|
|
|
|
evdev_log_info(device,
|
|
|
|
|
"velocity averaging is turned on\n");
|
|
|
|
|
|
|
|
|
|
return use_velocity_averaging;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-25 11:46:42 -06:00
|
|
|
static inline int
|
|
|
|
|
evdev_read_dpi_prop(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
const char *mouse_dpi;
|
|
|
|
|
int dpi = DEFAULT_MOUSE_DPI;
|
|
|
|
|
|
2015-06-02 17:22:42 -04:00
|
|
|
if (device->tags & EVDEV_TAG_TRACKPOINT)
|
2017-05-16 13:01:32 +10:00
|
|
|
return DEFAULT_MOUSE_DPI;
|
2015-04-01 11:03:19 +02:00
|
|
|
|
2014-11-25 11:46:42 -06:00
|
|
|
mouse_dpi = udev_device_get_property_value(device->udev_device,
|
|
|
|
|
"MOUSE_DPI");
|
|
|
|
|
if (mouse_dpi) {
|
|
|
|
|
dpi = parse_mouse_dpi_property(mouse_dpi);
|
|
|
|
|
if (!dpi) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_error(device,
|
|
|
|
|
"mouse DPI property is present but invalid, "
|
|
|
|
|
"using %d DPI instead\n",
|
|
|
|
|
DEFAULT_MOUSE_DPI);
|
2014-11-25 11:46:42 -06:00
|
|
|
dpi = DEFAULT_MOUSE_DPI;
|
|
|
|
|
}
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device,
|
|
|
|
|
"device set to %d DPI\n",
|
|
|
|
|
dpi);
|
2014-11-25 11:46:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dpi;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-16 15:59:01 +10:00
|
|
|
static inline uint32_t
|
|
|
|
|
evdev_read_model_flags(struct evdev_device *device)
|
2015-04-20 14:29:44 -04:00
|
|
|
{
|
|
|
|
|
const struct model_map {
|
2018-05-24 11:56:24 +10:00
|
|
|
enum quirk quirk;
|
2015-04-20 14:29:44 -04:00
|
|
|
enum evdev_device_model model;
|
|
|
|
|
} model_map[] = {
|
2018-05-24 11:56:24 +10:00
|
|
|
#define MODEL(name) { QUIRK_MODEL_##name, EVDEV_MODEL_##name }
|
2016-05-03 15:48:12 +10:00
|
|
|
MODEL(WACOM_TOUCHPAD),
|
|
|
|
|
MODEL(SYNAPTICS_SERIAL_TOUCHPAD),
|
2020-02-27 14:48:28 +10:00
|
|
|
MODEL(ALPS_SERIAL_TOUCHPAD),
|
2016-05-03 15:48:12 +10:00
|
|
|
MODEL(LENOVO_T450_TOUCHPAD),
|
2016-05-03 15:03:40 +10:00
|
|
|
MODEL(TRACKBALL),
|
2017-01-10 09:22:16 +10:00
|
|
|
MODEL(APPLE_TOUCHPAD_ONEBUTTON),
|
2018-04-24 19:30:55 +02:00
|
|
|
MODEL(LENOVO_SCROLLPOINT),
|
2016-05-03 15:48:12 +10:00
|
|
|
#undef MODEL
|
2018-05-24 11:56:24 +10:00
|
|
|
{ 0, 0 },
|
2015-04-20 14:29:44 -04:00
|
|
|
};
|
|
|
|
|
const struct model_map *m = model_map;
|
2015-07-16 15:59:01 +10:00
|
|
|
uint32_t model_flags = 0;
|
2018-04-13 09:05:02 +10:00
|
|
|
uint32_t all_model_flags = 0;
|
2018-05-24 11:56:24 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
|
|
|
|
|
|
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
|
|
|
|
|
while (q && m->quirk) {
|
|
|
|
|
bool is_set;
|
2015-04-20 14:29:44 -04:00
|
|
|
|
2018-04-13 09:05:02 +10:00
|
|
|
/* Check for flag re-use */
|
2018-05-24 11:56:24 +10:00
|
|
|
assert((all_model_flags & m->model) == 0);
|
|
|
|
|
all_model_flags |= m->model;
|
|
|
|
|
|
|
|
|
|
if (quirks_get_bool(q, m->quirk, &is_set)) {
|
|
|
|
|
if (is_set) {
|
|
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"tagged as %s\n",
|
|
|
|
|
quirk_get_name(m->quirk));
|
|
|
|
|
model_flags |= m->model;
|
|
|
|
|
} else {
|
|
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"untagged as %s\n",
|
|
|
|
|
quirk_get_name(m->quirk));
|
|
|
|
|
model_flags &= ~m->model;
|
|
|
|
|
}
|
2018-04-13 09:05:02 +10:00
|
|
|
}
|
|
|
|
|
|
2015-04-20 14:29:44 -04:00
|
|
|
m++;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks_unref(q);
|
|
|
|
|
|
|
|
|
|
if (parse_udev_flag(device,
|
|
|
|
|
device->udev_device,
|
|
|
|
|
"ID_INPUT_TRACKBALL")) {
|
|
|
|
|
evdev_log_debug(device, "tagged as trackball\n");
|
|
|
|
|
model_flags |= EVDEV_MODEL_TRACKBALL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Device is 6 years old at the time of writing this and this was
|
|
|
|
|
* one of the few udev properties that wasn't reserved for private
|
|
|
|
|
* usage, so we need to keep this for backwards compat.
|
|
|
|
|
*/
|
|
|
|
|
if (parse_udev_flag(device,
|
|
|
|
|
device->udev_device,
|
|
|
|
|
"LIBINPUT_MODEL_LENOVO_X220_TOUCHPAD_FW81")) {
|
|
|
|
|
evdev_log_debug(device, "tagged as trackball\n");
|
|
|
|
|
model_flags |= EVDEV_MODEL_LENOVO_X220_TOUCHPAD_FW81;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-27 12:35:27 +10:00
|
|
|
if (parse_udev_flag(device, device->udev_device,
|
|
|
|
|
"LIBINPUT_TEST_DEVICE")) {
|
|
|
|
|
evdev_log_debug(device, "is a test device\n");
|
|
|
|
|
model_flags |= EVDEV_MODEL_TEST_DEVICE;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-16 15:59:01 +10:00
|
|
|
return model_flags;
|
2015-04-20 14:29:44 -04:00
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
static inline bool
|
2015-07-10 13:59:06 +10:00
|
|
|
evdev_read_attr_res_prop(struct evdev_device *device,
|
|
|
|
|
size_t *xres,
|
|
|
|
|
size_t *yres)
|
|
|
|
|
{
|
2018-05-24 11:56:24 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
|
|
|
|
struct quirk_dimensions dim;
|
|
|
|
|
bool rc = false;
|
2015-07-10 13:59:06 +10:00
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
if (!q)
|
2015-07-10 13:59:06 +10:00
|
|
|
return false;
|
|
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
rc = quirks_get_dimensions(q, QUIRK_ATTR_RESOLUTION_HINT, &dim);
|
|
|
|
|
if (rc) {
|
|
|
|
|
*xres = dim.x;
|
|
|
|
|
*yres = dim.y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quirks_unref(q);
|
|
|
|
|
|
|
|
|
|
return rc;
|
2015-04-20 14:29:44 -04:00
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
static inline bool
|
2015-06-30 12:15:12 +10:00
|
|
|
evdev_read_attr_size_prop(struct evdev_device *device,
|
|
|
|
|
size_t *size_x,
|
|
|
|
|
size_t *size_y)
|
|
|
|
|
{
|
2018-05-24 11:56:24 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
|
|
|
|
struct quirk_dimensions dim;
|
|
|
|
|
bool rc = false;
|
2015-06-30 12:15:12 +10:00
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
if (!q)
|
2015-06-30 12:15:12 +10:00
|
|
|
return false;
|
|
|
|
|
|
2018-05-24 11:56:24 +10:00
|
|
|
rc = quirks_get_dimensions(q, QUIRK_ATTR_SIZE_HINT, &dim);
|
|
|
|
|
if (rc) {
|
|
|
|
|
*size_x = dim.x;
|
|
|
|
|
*size_y = dim.y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quirks_unref(q);
|
|
|
|
|
|
|
|
|
|
return rc;
|
2015-06-30 12:15:12 +10:00
|
|
|
}
|
|
|
|
|
|
2015-06-30 12:07:16 +10:00
|
|
|
/* Return 1 if the device is set to the fake resolution or 0 otherwise */
|
2015-06-30 12:03:28 +10:00
|
|
|
static inline int
|
2015-03-17 10:07:00 +10:00
|
|
|
evdev_fix_abs_resolution(struct evdev_device *device,
|
|
|
|
|
unsigned int xcode,
|
2015-06-30 12:07:16 +10:00
|
|
|
unsigned int ycode)
|
2014-11-05 10:51:31 +10:00
|
|
|
{
|
2015-03-17 10:07:00 +10:00
|
|
|
struct libevdev *evdev = device->evdev;
|
|
|
|
|
const struct input_absinfo *absx, *absy;
|
2015-06-30 12:15:12 +10:00
|
|
|
size_t widthmm = 0, heightmm = 0;
|
2015-07-10 13:59:06 +10:00
|
|
|
size_t xres = EVDEV_FAKE_RESOLUTION,
|
|
|
|
|
yres = EVDEV_FAKE_RESOLUTION;
|
2015-03-17 10:07:00 +10:00
|
|
|
|
|
|
|
|
if (!(xcode == ABS_X && ycode == ABS_Y) &&
|
|
|
|
|
!(xcode == ABS_MT_POSITION_X && ycode == ABS_MT_POSITION_Y)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"invalid x/y code combination %d/%d\n",
|
|
|
|
|
xcode,
|
|
|
|
|
ycode);
|
2015-03-17 10:07:00 +10:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
absx = libevdev_get_abs_info(evdev, xcode);
|
|
|
|
|
absy = libevdev_get_abs_info(evdev, ycode);
|
2014-09-03 15:50:28 +10:00
|
|
|
|
2015-06-30 12:15:12 +10:00
|
|
|
if (absx->resolution != 0 || absy->resolution != 0)
|
2015-03-17 10:07:00 +10:00
|
|
|
return 0;
|
|
|
|
|
|
2015-06-30 12:15:12 +10:00
|
|
|
/* Note: we *do not* override resolutions if provided by the kernel.
|
|
|
|
|
* If a device needs this, add it to 60-evdev.hwdb. The libinput
|
|
|
|
|
* property is only for general size hints where we can make
|
|
|
|
|
* educated guesses but don't know better.
|
|
|
|
|
*/
|
2015-07-10 13:59:06 +10:00
|
|
|
if (!evdev_read_attr_res_prop(device, &xres, &yres) &&
|
|
|
|
|
evdev_read_attr_size_prop(device, &widthmm, &heightmm)) {
|
2015-06-30 12:15:12 +10:00
|
|
|
xres = (absx->maximum - absx->minimum)/widthmm;
|
|
|
|
|
yres = (absy->maximum - absy->minimum)/heightmm;
|
2015-03-17 10:07:00 +10:00
|
|
|
}
|
|
|
|
|
|
2015-06-30 12:07:16 +10:00
|
|
|
/* libevdev_set_abs_resolution() changes the absinfo we already
|
|
|
|
|
have a pointer to, no need to fetch it again */
|
|
|
|
|
libevdev_set_abs_resolution(evdev, xcode, xres);
|
|
|
|
|
libevdev_set_abs_resolution(evdev, ycode, yres);
|
2015-03-17 10:07:00 +10:00
|
|
|
|
2015-06-30 12:15:12 +10:00
|
|
|
return xres == EVDEV_FAKE_RESOLUTION;
|
2014-09-03 15:50:28 +10:00
|
|
|
}
|
|
|
|
|
|
2015-02-02 13:37:14 -05:00
|
|
|
static enum evdev_device_udev_tags
|
|
|
|
|
evdev_device_get_udev_tags(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
|
|
|
|
enum evdev_device_udev_tags tags = 0;
|
2015-02-13 11:40:19 +10:00
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 2 && udev_device; i++) {
|
2017-05-10 13:06:32 +10:00
|
|
|
unsigned j;
|
|
|
|
|
for (j = 0; j < ARRAY_LENGTH(evdev_udev_tag_matches); j++) {
|
|
|
|
|
const struct evdev_udev_tag_match match = evdev_udev_tag_matches[j];
|
2016-11-28 10:17:03 +10:00
|
|
|
if (parse_udev_flag(device,
|
|
|
|
|
udev_device,
|
2017-05-10 13:06:32 +10:00
|
|
|
match.name))
|
|
|
|
|
tags |= match.tag;
|
2015-02-13 11:40:19 +10:00
|
|
|
}
|
|
|
|
|
udev_device = udev_device_get_parent(udev_device);
|
2015-02-02 13:37:14 -05:00
|
|
|
}
|
2015-02-13 11:40:19 +10:00
|
|
|
|
2015-02-02 13:37:14 -05:00
|
|
|
return tags;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-17 12:31:37 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_fix_android_mt(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
|
|
|
|
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_ABS, ABS_X) ||
|
|
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_Y))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) ||
|
2015-04-08 09:54:30 +10:00
|
|
|
!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y) ||
|
|
|
|
|
evdev_is_fake_mt_device(device))
|
2015-03-17 12:31:37 +10:00
|
|
|
return;
|
|
|
|
|
|
2015-04-08 09:54:29 +10:00
|
|
|
libevdev_enable_event_code(evdev, EV_ABS, ABS_X,
|
2015-03-17 12:31:37 +10:00
|
|
|
libevdev_get_abs_info(evdev, ABS_MT_POSITION_X));
|
2015-04-08 09:54:29 +10:00
|
|
|
libevdev_enable_event_code(evdev, EV_ABS, ABS_Y,
|
2015-03-17 12:31:37 +10:00
|
|
|
libevdev_get_abs_info(evdev, ABS_MT_POSITION_Y));
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
static inline bool
|
2015-03-23 12:08:14 +10:00
|
|
|
evdev_check_min_max(struct evdev_device *device, unsigned int code)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
|
|
|
|
const struct input_absinfo *absinfo;
|
|
|
|
|
|
|
|
|
|
if (!libevdev_has_event_code(evdev, EV_ABS, code))
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-03-23 12:08:14 +10:00
|
|
|
|
|
|
|
|
absinfo = libevdev_get_abs_info(evdev, code);
|
|
|
|
|
if (absinfo->minimum == absinfo->maximum) {
|
2015-04-17 15:59:36 +10:00
|
|
|
/* Some devices have a sort-of legitimate min/max of 0 for
|
|
|
|
|
* ABS_MISC and above (e.g. Roccat Kone XTD). Don't ignore
|
|
|
|
|
* them, simply disable the axes so we won't get events,
|
|
|
|
|
* we don't know what to do with them anyway.
|
|
|
|
|
*/
|
|
|
|
|
if (absinfo->minimum == 0 &&
|
|
|
|
|
code >= ABS_MISC && code < ABS_MT_SLOT) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device,
|
|
|
|
|
"disabling EV_ABS %#x on device (min == max == 0)\n",
|
|
|
|
|
code);
|
2015-04-17 15:59:36 +10:00
|
|
|
libevdev_disable_event_code(device->evdev,
|
|
|
|
|
EV_ABS,
|
|
|
|
|
code);
|
|
|
|
|
} else {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_bug_kernel(device,
|
|
|
|
|
"device has min == max on %s\n",
|
|
|
|
|
libevdev_event_code_get_name(EV_ABS, code));
|
2016-07-12 11:03:03 +10:00
|
|
|
return false;
|
2015-04-17 15:59:36 +10:00
|
|
|
}
|
2015-03-23 12:08:14 +10:00
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-03-23 12:08:14 +10:00
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
static bool
|
2015-03-17 12:41:13 +10:00
|
|
|
evdev_reject_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
2015-03-23 12:08:14 +10:00
|
|
|
unsigned int code;
|
2015-04-09 07:51:51 +10:00
|
|
|
const struct input_absinfo *absx, *absy;
|
2015-03-17 12:41:13 +10:00
|
|
|
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_ABS, ABS_X) ^
|
|
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_Y))
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-03-17 12:41:13 +10:00
|
|
|
|
2015-04-24 15:01:55 +10:00
|
|
|
if (libevdev_has_event_code(evdev, EV_REL, REL_X) ^
|
|
|
|
|
libevdev_has_event_code(evdev, EV_REL, REL_Y))
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-04-24 15:01:55 +10:00
|
|
|
|
2015-12-23 15:15:29 +10:00
|
|
|
if (!evdev_is_fake_mt_device(device) &&
|
|
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) ^
|
2015-03-17 12:41:13 +10:00
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y))
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-03-17 12:41:13 +10:00
|
|
|
|
2015-04-09 07:51:51 +10:00
|
|
|
if (libevdev_has_event_code(evdev, EV_ABS, ABS_X)) {
|
|
|
|
|
absx = libevdev_get_abs_info(evdev, ABS_X);
|
|
|
|
|
absy = libevdev_get_abs_info(evdev, ABS_Y);
|
|
|
|
|
if ((absx->resolution == 0 && absy->resolution != 0) ||
|
|
|
|
|
(absx->resolution != 0 && absy->resolution == 0)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_bug_kernel(device,
|
|
|
|
|
"kernel has only x or y resolution, not both.\n");
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-04-09 07:51:51 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!evdev_is_fake_mt_device(device) &&
|
|
|
|
|
libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X)) {
|
|
|
|
|
absx = libevdev_get_abs_info(evdev, ABS_MT_POSITION_X);
|
|
|
|
|
absy = libevdev_get_abs_info(evdev, ABS_MT_POSITION_Y);
|
|
|
|
|
if ((absx->resolution == 0 && absy->resolution != 0) ||
|
|
|
|
|
(absx->resolution != 0 && absy->resolution == 0)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_bug_kernel(device,
|
|
|
|
|
"kernel has only x or y MT resolution, not both.\n");
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-04-09 07:51:51 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-23 12:08:14 +10:00
|
|
|
for (code = 0; code < ABS_CNT; code++) {
|
|
|
|
|
switch (code) {
|
|
|
|
|
case ABS_MISC:
|
|
|
|
|
case ABS_MT_SLOT:
|
|
|
|
|
case ABS_MT_TOOL_TYPE:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2016-07-12 11:03:03 +10:00
|
|
|
if (!evdev_check_min_max(device, code))
|
|
|
|
|
return true;
|
2015-03-23 12:08:14 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
return false;
|
2015-03-17 12:41:13 +10:00
|
|
|
}
|
|
|
|
|
|
2016-07-04 12:59:01 +10:00
|
|
|
static void
|
2019-06-26 13:55:36 +10:00
|
|
|
evdev_extract_abs_axes(struct evdev_device *device,
|
|
|
|
|
enum evdev_device_udev_tags udev_tags)
|
2011-08-19 15:06:20 +03:00
|
|
|
{
|
2014-03-24 23:12:36 +01:00
|
|
|
struct libevdev *evdev = device->evdev;
|
2018-03-05 13:17:43 +10:00
|
|
|
int fuzz;
|
2015-03-17 12:15:22 +10:00
|
|
|
|
2016-07-04 12:59:01 +10:00
|
|
|
if (!libevdev_has_event_code(evdev, EV_ABS, ABS_X) ||
|
|
|
|
|
!libevdev_has_event_code(evdev, EV_ABS, ABS_Y))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (evdev_fix_abs_resolution(device, ABS_X, ABS_Y))
|
2016-07-04 15:41:37 +10:00
|
|
|
device->abs.is_fake_resolution = true;
|
2018-03-05 13:17:43 +10:00
|
|
|
|
2019-06-26 13:55:36 +10:00
|
|
|
if (udev_tags & (EVDEV_UDEV_TAG_TOUCHPAD|EVDEV_UDEV_TAG_TOUCHSCREEN)) {
|
2019-06-26 08:55:07 +10:00
|
|
|
fuzz = evdev_read_fuzz_prop(device, ABS_X);
|
|
|
|
|
libevdev_set_abs_fuzz(evdev, ABS_X, fuzz);
|
|
|
|
|
fuzz = evdev_read_fuzz_prop(device, ABS_Y);
|
|
|
|
|
libevdev_set_abs_fuzz(evdev, ABS_Y, fuzz);
|
2019-06-26 13:55:36 +10:00
|
|
|
}
|
2018-03-05 13:17:43 +10:00
|
|
|
|
2016-07-04 12:59:01 +10:00
|
|
|
device->abs.absinfo_x = libevdev_get_abs_info(evdev, ABS_X);
|
|
|
|
|
device->abs.absinfo_y = libevdev_get_abs_info(evdev, ABS_Y);
|
|
|
|
|
device->abs.dimensions.x = abs(device->abs.absinfo_x->maximum -
|
|
|
|
|
device->abs.absinfo_x->minimum);
|
|
|
|
|
device->abs.dimensions.y = abs(device->abs.absinfo_y->maximum -
|
|
|
|
|
device->abs.absinfo_y->minimum);
|
|
|
|
|
|
|
|
|
|
if (evdev_is_fake_mt_device(device) ||
|
|
|
|
|
!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) ||
|
2015-03-17 12:15:22 +10:00
|
|
|
!libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y))
|
2016-07-04 12:59:01 +10:00
|
|
|
return;
|
2015-03-17 12:15:22 +10:00
|
|
|
|
|
|
|
|
if (evdev_fix_abs_resolution(device,
|
|
|
|
|
ABS_MT_POSITION_X,
|
2015-06-30 12:07:16 +10:00
|
|
|
ABS_MT_POSITION_Y))
|
2016-07-04 15:41:37 +10:00
|
|
|
device->abs.is_fake_resolution = true;
|
2015-03-17 12:15:22 +10:00
|
|
|
|
2018-03-05 13:17:43 +10:00
|
|
|
if ((fuzz = evdev_read_fuzz_prop(device, ABS_MT_POSITION_X)))
|
|
|
|
|
libevdev_set_abs_fuzz(evdev, ABS_MT_POSITION_X, fuzz);
|
|
|
|
|
if ((fuzz = evdev_read_fuzz_prop(device, ABS_MT_POSITION_Y)))
|
|
|
|
|
libevdev_set_abs_fuzz(evdev, ABS_MT_POSITION_Y, fuzz);
|
|
|
|
|
|
2015-03-17 12:15:22 +10:00
|
|
|
device->abs.absinfo_x = libevdev_get_abs_info(evdev, ABS_MT_POSITION_X);
|
|
|
|
|
device->abs.absinfo_y = libevdev_get_abs_info(evdev, ABS_MT_POSITION_Y);
|
2015-06-25 14:10:38 +10:00
|
|
|
device->abs.dimensions.x = abs(device->abs.absinfo_x->maximum -
|
|
|
|
|
device->abs.absinfo_x->minimum);
|
|
|
|
|
device->abs.dimensions.y = abs(device->abs.absinfo_y->maximum -
|
|
|
|
|
device->abs.absinfo_y->minimum);
|
2015-03-17 12:15:22 +10:00
|
|
|
device->is_mt = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-18 05:32:02 +10:00
|
|
|
static void
|
|
|
|
|
evdev_disable_accelerometer_axes(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
|
|
|
|
|
|
|
|
|
libevdev_disable_event_code(evdev, EV_ABS, ABS_X);
|
|
|
|
|
libevdev_disable_event_code(evdev, EV_ABS, ABS_Y);
|
|
|
|
|
libevdev_disable_event_code(evdev, EV_ABS, ABS_Z);
|
|
|
|
|
|
|
|
|
|
libevdev_disable_event_code(evdev, EV_ABS, REL_X);
|
|
|
|
|
libevdev_disable_event_code(evdev, EV_ABS, REL_Y);
|
|
|
|
|
libevdev_disable_event_code(evdev, EV_ABS, REL_Z);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-23 18:07:27 +01:00
|
|
|
static bool
|
|
|
|
|
evdev_device_is_joystick_or_gamepad(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
enum evdev_device_udev_tags udev_tags;
|
2021-11-23 18:07:53 +01:00
|
|
|
bool has_joystick_tags;
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
2022-03-02 08:35:23 +01:00
|
|
|
unsigned int code;
|
2021-11-23 18:07:53 +01:00
|
|
|
|
|
|
|
|
/* The EVDEV_UDEV_TAG_JOYSTICK is set when a joystick or gamepad button
|
|
|
|
|
* is found. However, it can not be used to identify joysticks or
|
|
|
|
|
* gamepads because there are keyboards that also have it. Even worse,
|
|
|
|
|
* many joysticks also map KEY_* and thus are tagged as keyboards.
|
|
|
|
|
*
|
|
|
|
|
* In order to be able to detect joysticks and gamepads and
|
|
|
|
|
* differentiate them from keyboards, apply the following rules:
|
|
|
|
|
*
|
|
|
|
|
* 1. The device is tagged as joystick but not as tablet
|
2022-03-01 20:08:11 +01:00
|
|
|
* 2. The device doesn't have 4 well-known keyboard keys
|
|
|
|
|
* 3. It has at least 2 joystick buttons
|
|
|
|
|
* 4. It doesn't have 10 keyboard keys */
|
2021-11-23 18:07:27 +01:00
|
|
|
|
|
|
|
|
udev_tags = evdev_device_get_udev_tags(device, device->udev_device);
|
2021-11-23 18:07:53 +01:00
|
|
|
has_joystick_tags = (udev_tags & EVDEV_UDEV_TAG_JOYSTICK) &&
|
|
|
|
|
!(udev_tags & EVDEV_UDEV_TAG_TABLET) &&
|
|
|
|
|
!(udev_tags & EVDEV_UDEV_TAG_TABLET_PAD);
|
2021-11-23 18:07:27 +01:00
|
|
|
|
2021-11-23 18:07:53 +01:00
|
|
|
if (!has_joystick_tags)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
2022-03-01 20:08:11 +01:00
|
|
|
unsigned int num_well_known_keys = 0;
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < ARRAY_LENGTH(well_known_keyboard_keys); i++) {
|
|
|
|
|
code = well_known_keyboard_keys[i];
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, code))
|
|
|
|
|
num_well_known_keys++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (num_well_known_keys >= 4) /* should not have 4 well-known keys */
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-03-02 08:35:23 +01:00
|
|
|
unsigned int num_joystick_btns = 0;
|
|
|
|
|
|
2021-11-23 18:07:53 +01:00
|
|
|
for (code = BTN_JOYSTICK; code < BTN_DIGI; code++) {
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, code))
|
|
|
|
|
num_joystick_btns++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (code = BTN_TRIGGER_HAPPY; code <= BTN_TRIGGER_HAPPY40; code++) {
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, code))
|
|
|
|
|
num_joystick_btns++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (num_joystick_btns < 2) /* require at least 2 joystick buttons */
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-03-02 08:35:23 +01:00
|
|
|
unsigned int num_keys = 0;
|
2021-11-23 18:07:53 +01:00
|
|
|
|
|
|
|
|
for (code = KEY_ESC; code <= KEY_MICMUTE; code++) {
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, code) )
|
|
|
|
|
num_keys++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (code = KEY_OK; code <= KEY_LIGHTS_TOGGLE; code++) {
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, code) )
|
|
|
|
|
num_keys++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (code = KEY_ALS_TOGGLE; code < BTN_TRIGGER_HAPPY; code++) {
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_KEY, code) )
|
|
|
|
|
num_keys++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (num_keys >= 10) /* should not have 10 keyboard keys */
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
2021-11-23 18:07:27 +01:00
|
|
|
}
|
|
|
|
|
|
2016-07-04 12:37:36 +10:00
|
|
|
static struct evdev_dispatch *
|
2015-03-17 12:15:22 +10:00
|
|
|
evdev_configure_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libevdev *evdev = device->evdev;
|
2015-02-02 13:37:14 -05:00
|
|
|
enum evdev_device_udev_tags udev_tags;
|
2015-03-27 15:34:54 -07:00
|
|
|
unsigned int tablet_tags;
|
2016-07-04 12:37:36 +10:00
|
|
|
struct evdev_dispatch *dispatch;
|
2011-08-19 17:07:40 +03:00
|
|
|
|
2015-02-02 13:37:14 -05:00
|
|
|
udev_tags = evdev_device_get_udev_tags(device, device->udev_device);
|
2015-01-21 12:04:48 +01:00
|
|
|
|
2015-02-03 12:21:19 +10:00
|
|
|
if ((udev_tags & EVDEV_UDEV_TAG_INPUT) == 0 ||
|
|
|
|
|
(udev_tags & ~EVDEV_UDEV_TAG_INPUT) == 0) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device,
|
|
|
|
|
"not tagged as supported input device\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return NULL;
|
2015-02-03 12:21:19 +10:00
|
|
|
}
|
2015-01-21 12:04:48 +01:00
|
|
|
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device,
|
|
|
|
|
"is tagged by udev as:%s%s%s%s%s%s%s%s%s%s%s\n",
|
2015-02-03 12:21:19 +10:00
|
|
|
udev_tags & EVDEV_UDEV_TAG_KEYBOARD ? " Keyboard" : "",
|
|
|
|
|
udev_tags & EVDEV_UDEV_TAG_MOUSE ? " Mouse" : "",
|
|
|
|
|
udev_tags & EVDEV_UDEV_TAG_TOUCHPAD ? " Touchpad" : "",
|
|
|
|
|
udev_tags & EVDEV_UDEV_TAG_TOUCHSCREEN ? " Touchscreen" : "",
|
|
|
|
|
udev_tags & EVDEV_UDEV_TAG_TABLET ? " Tablet" : "",
|
2015-05-29 11:11:56 +10:00
|
|
|
udev_tags & EVDEV_UDEV_TAG_POINTINGSTICK ? " Pointingstick" : "",
|
2015-02-03 12:21:19 +10:00
|
|
|
udev_tags & EVDEV_UDEV_TAG_JOYSTICK ? " Joystick" : "",
|
2015-02-26 15:52:41 +10:00
|
|
|
udev_tags & EVDEV_UDEV_TAG_ACCELEROMETER ? " Accelerometer" : "",
|
2016-08-04 07:48:19 +10:00
|
|
|
udev_tags & EVDEV_UDEV_TAG_TABLET_PAD ? " TabletPad" : "",
|
2017-01-20 16:54:14 +11:00
|
|
|
udev_tags & EVDEV_UDEV_TAG_TRACKBALL ? " Trackball" : "",
|
|
|
|
|
udev_tags & EVDEV_UDEV_TAG_SWITCH ? " Switch" : "");
|
2015-02-03 12:21:19 +10:00
|
|
|
|
2017-08-18 05:32:02 +10:00
|
|
|
/* Ignore pure accelerometers, but accept devices that are
|
|
|
|
|
* accelerometers with other axes */
|
|
|
|
|
if (udev_tags == (EVDEV_UDEV_TAG_INPUT|EVDEV_UDEV_TAG_ACCELEROMETER)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device,
|
|
|
|
|
"device is an accelerometer, ignoring\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return NULL;
|
2020-08-27 01:17:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_ACCELEROMETER) {
|
2017-08-18 05:32:02 +10:00
|
|
|
evdev_disable_accelerometer_axes(device);
|
2015-09-01 08:11:58 +10:00
|
|
|
}
|
|
|
|
|
|
2021-11-23 18:07:27 +01:00
|
|
|
if (evdev_device_is_joystick_or_gamepad(device)) {
|
2020-08-13 09:40:03 +10:00
|
|
|
evdev_log_info(device,
|
2021-11-23 18:07:27 +01:00
|
|
|
"device is a joystick or a gamepad, ignoring\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return NULL;
|
2015-01-21 12:04:48 +01:00
|
|
|
}
|
2014-11-25 02:33:53 +01:00
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
if (evdev_reject_device(device)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device, "was rejected\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return NULL;
|
2015-03-17 12:41:13 +10:00
|
|
|
}
|
2013-08-13 14:55:39 -07:00
|
|
|
|
2015-04-08 09:54:30 +10:00
|
|
|
if (!evdev_is_fake_mt_device(device))
|
2015-03-17 12:31:37 +10:00
|
|
|
evdev_fix_android_mt(device);
|
2013-08-13 14:55:39 -07:00
|
|
|
|
2015-04-08 09:54:30 +10:00
|
|
|
if (libevdev_has_event_code(evdev, EV_ABS, ABS_X)) {
|
2019-06-26 13:55:36 +10:00
|
|
|
evdev_extract_abs_axes(device, udev_tags);
|
2016-07-04 12:59:01 +10:00
|
|
|
|
|
|
|
|
if (evdev_is_fake_mt_device(device))
|
2015-02-03 12:21:19 +10:00
|
|
|
udev_tags &= ~EVDEV_UDEV_TAG_TOUCHSCREEN;
|
2011-08-19 15:06:20 +03:00
|
|
|
}
|
2014-09-16 16:22:36 +02:00
|
|
|
|
2018-09-14 14:03:09 +10:00
|
|
|
if (evdev_device_has_model_quirk(device,
|
|
|
|
|
QUIRK_MODEL_DELL_CANVAS_TOTEM)) {
|
|
|
|
|
dispatch = evdev_totem_create(device);
|
|
|
|
|
device->seat_caps |= EVDEV_DEVICE_TABLET;
|
|
|
|
|
evdev_log_info(device, "device is a totem\n");
|
|
|
|
|
return dispatch;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-27 15:34:54 -07:00
|
|
|
/* libwacom assigns touchpad (or touchscreen) _and_ tablet to the
|
|
|
|
|
tablet touch bits, so make sure we don't initialize the tablet
|
|
|
|
|
interface for the touch device */
|
|
|
|
|
tablet_tags = EVDEV_UDEV_TAG_TABLET |
|
|
|
|
|
EVDEV_UDEV_TAG_TOUCHPAD |
|
|
|
|
|
EVDEV_UDEV_TAG_TOUCHSCREEN;
|
2016-02-05 15:16:38 +10:00
|
|
|
|
|
|
|
|
/* libwacom assigns tablet _and_ tablet_pad to the pad devices */
|
|
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_TABLET_PAD) {
|
2016-07-04 12:37:36 +10:00
|
|
|
dispatch = evdev_tablet_pad_create(device);
|
2016-02-05 15:16:38 +10:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_TABLET_PAD;
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device, "device is a tablet pad\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return dispatch;
|
2016-02-05 15:16:38 +10:00
|
|
|
|
2020-08-27 01:17:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((udev_tags & tablet_tags) == EVDEV_UDEV_TAG_TABLET) {
|
2016-07-04 12:37:36 +10:00
|
|
|
dispatch = evdev_tablet_create(device);
|
2015-02-10 15:23:38 +10:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_TABLET;
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device, "device is a tablet\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return dispatch;
|
2015-02-10 15:23:38 +10:00
|
|
|
}
|
2014-07-13 00:25:36 +02:00
|
|
|
|
2015-02-03 12:21:19 +10:00
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_TOUCHPAD) {
|
2018-02-09 12:17:38 +10:00
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_TABLET)
|
|
|
|
|
evdev_tag_tablet_touchpad(device);
|
2018-08-17 15:12:58 +02:00
|
|
|
/* whether velocity should be averaged, false by default */
|
|
|
|
|
device->use_velocity_averaging = evdev_need_velocity_averaging(device);
|
2016-07-04 12:37:36 +10:00
|
|
|
dispatch = evdev_mt_touchpad_create(device);
|
2017-03-28 13:13:46 +10:00
|
|
|
evdev_log_info(device, "device is a touchpad\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return dispatch;
|
2011-08-19 15:06:20 +03:00
|
|
|
}
|
2011-08-19 17:07:40 +03:00
|
|
|
|
2015-05-29 11:11:56 +10:00
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_MOUSE ||
|
|
|
|
|
udev_tags & EVDEV_UDEV_TAG_POINTINGSTICK) {
|
2015-07-21 09:33:47 +10:00
|
|
|
evdev_tag_external_mouse(device, device->udev_device);
|
|
|
|
|
evdev_tag_trackpoint(device, device->udev_device);
|
|
|
|
|
device->dpi = evdev_read_dpi_prop(device);
|
2018-07-09 16:04:50 +10:00
|
|
|
device->trackpoint_multiplier = evdev_get_trackpoint_multiplier(device);
|
2018-08-17 15:12:58 +02:00
|
|
|
/* whether velocity should be averaged, false by default */
|
|
|
|
|
device->use_velocity_averaging = evdev_need_velocity_averaging(device);
|
2015-07-21 09:33:47 +10:00
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_POINTER;
|
2014-05-18 19:20:39 +02:00
|
|
|
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device, "device is a pointer\n");
|
2014-09-23 13:48:06 +10:00
|
|
|
|
|
|
|
|
/* want left-handed config option */
|
2015-01-06 21:20:22 -05:00
|
|
|
device->left_handed.want_enabled = true;
|
2014-11-18 11:38:38 +10:00
|
|
|
/* want natural-scroll config option */
|
|
|
|
|
device->scroll.natural_scrolling_enabled = true;
|
2014-11-06 13:39:51 +01:00
|
|
|
/* want button scrolling config option */
|
2017-02-20 16:29:02 +10:00
|
|
|
if (libevdev_has_event_code(evdev, EV_REL, REL_X) ||
|
|
|
|
|
libevdev_has_event_code(evdev, EV_REL, REL_Y))
|
|
|
|
|
device->scroll.want_button = 1;
|
2014-04-11 16:27:01 -07:00
|
|
|
}
|
2014-11-06 13:39:51 +01:00
|
|
|
|
2015-02-03 12:21:19 +10:00
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_KEYBOARD) {
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_KEYBOARD;
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device, "device is a keyboard\n");
|
2015-04-08 09:54:32 +10:00
|
|
|
|
|
|
|
|
/* want natural-scroll config option */
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_REL, REL_WHEEL) ||
|
2015-04-13 10:23:45 +10:00
|
|
|
libevdev_has_event_code(evdev, EV_REL, REL_HWHEEL)) {
|
2015-04-08 09:54:32 +10:00
|
|
|
device->scroll.natural_scrolling_enabled = true;
|
2015-04-13 10:23:45 +10:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_POINTER;
|
|
|
|
|
}
|
2015-06-02 17:22:41 -04:00
|
|
|
|
|
|
|
|
evdev_tag_keyboard(device, device->udev_device);
|
2014-04-11 16:27:01 -07:00
|
|
|
}
|
2015-02-03 12:21:19 +10:00
|
|
|
|
|
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_TOUCHSCREEN) {
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_TOUCH;
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device, "device is a touch device\n");
|
2014-04-11 16:27:01 -07:00
|
|
|
}
|
2013-12-16 11:01:56 -08:00
|
|
|
|
2017-04-21 17:52:37 +10:00
|
|
|
if (udev_tags & EVDEV_UDEV_TAG_SWITCH) {
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_SW, SW_LID)) {
|
|
|
|
|
device->seat_caps |= EVDEV_DEVICE_SWITCH;
|
|
|
|
|
device->tags |= EVDEV_TAG_LID_SWITCH;
|
|
|
|
|
evdev_log_info(device, "device is a switch device\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (libevdev_has_event_code(evdev, EV_SW, SW_TABLET_MODE)) {
|
2019-01-16 10:05:59 +10:00
|
|
|
if (evdev_device_has_model_quirk(device,
|
2020-05-28 14:13:43 +10:00
|
|
|
QUIRK_MODEL_TABLET_MODE_SWITCH_UNRELIABLE)) {
|
2019-01-16 10:05:59 +10:00
|
|
|
evdev_log_info(device,
|
2020-05-28 14:13:43 +10:00
|
|
|
"device is an unreliable tablet mode switch, filtering events.\n");
|
|
|
|
|
libevdev_disable_event_code(device->evdev,
|
|
|
|
|
EV_SW,
|
|
|
|
|
SW_TABLET_MODE);
|
|
|
|
|
} else {
|
2019-01-16 10:05:59 +10:00
|
|
|
device->tags |= EVDEV_TAG_TABLET_MODE_SWITCH;
|
2020-05-28 14:13:43 +10:00
|
|
|
device->seat_caps |= EVDEV_DEVICE_SWITCH;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-16 10:05:59 +10:00
|
|
|
|
2020-05-28 14:13:43 +10:00
|
|
|
if (device->seat_caps & EVDEV_DEVICE_SWITCH)
|
2019-01-16 10:05:59 +10:00
|
|
|
evdev_log_info(device, "device is a switch device\n");
|
2017-01-20 16:54:14 +11:00
|
|
|
}
|
|
|
|
|
|
2015-10-28 09:13:24 +10:00
|
|
|
if (device->seat_caps & EVDEV_DEVICE_POINTER &&
|
|
|
|
|
libevdev_has_event_code(evdev, EV_REL, REL_X) &&
|
|
|
|
|
libevdev_has_event_code(evdev, EV_REL, REL_Y) &&
|
2016-07-12 11:03:03 +10:00
|
|
|
!evdev_init_accel(device, LIBINPUT_CONFIG_ACCEL_PROFILE_ADAPTIVE)) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_error(device,
|
|
|
|
|
"failed to initialize pointer acceleration\n");
|
2016-07-04 12:37:36 +10:00
|
|
|
return NULL;
|
2015-10-28 09:13:24 +10:00
|
|
|
}
|
|
|
|
|
|
2019-09-30 23:34:45 +00:00
|
|
|
if (evdev_device_has_model_quirk(device, QUIRK_MODEL_INVERT_HORIZONTAL_SCROLLING)) {
|
|
|
|
|
device->scroll.invert_horizontal_scrolling = true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-04 12:37:36 +10:00
|
|
|
return fallback_dispatch_create(&device->base);
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
}
|
|
|
|
|
|
2014-09-03 14:34:52 +10:00
|
|
|
static void
|
|
|
|
|
evdev_notify_added_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput_device *dev;
|
|
|
|
|
|
|
|
|
|
list_for_each(dev, &device->base.seat->devices_list, link) {
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *d = evdev_device(dev);
|
2014-09-03 14:34:52 +10:00
|
|
|
if (dev == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
2016-07-01 20:42:23 +10:00
|
|
|
/* Notify existing device d about addition of device */
|
2014-09-03 14:34:52 +10:00
|
|
|
if (d->dispatch->interface->device_added)
|
|
|
|
|
d->dispatch->interface->device_added(d, device);
|
|
|
|
|
|
2016-07-01 20:42:23 +10:00
|
|
|
/* Notify new device about existing device d */
|
2014-09-03 14:34:52 +10:00
|
|
|
if (device->dispatch->interface->device_added)
|
|
|
|
|
device->dispatch->interface->device_added(device, d);
|
2014-09-16 16:22:37 +02:00
|
|
|
|
2016-07-01 20:42:23 +10:00
|
|
|
/* Notify new device if existing device d is suspended */
|
2016-07-04 15:41:37 +10:00
|
|
|
if (d->is_suspended &&
|
|
|
|
|
device->dispatch->interface->device_suspended)
|
2014-09-16 16:22:37 +02:00
|
|
|
device->dispatch->interface->device_suspended(device, d);
|
2014-09-03 14:34:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
notify_added_device(&device->base);
|
2015-02-26 13:55:08 +10:00
|
|
|
|
|
|
|
|
if (device->dispatch->interface->post_added)
|
|
|
|
|
device->dispatch->interface->post_added(device,
|
|
|
|
|
device->dispatch);
|
2014-09-03 14:34:52 +10:00
|
|
|
}
|
|
|
|
|
|
2015-05-26 08:49:04 +10:00
|
|
|
static bool
|
|
|
|
|
evdev_device_have_same_syspath(struct udev_device *udev_device, int fd)
|
2014-11-21 16:18:57 +10:00
|
|
|
{
|
|
|
|
|
struct udev *udev = udev_device_get_udev(udev_device);
|
2014-11-25 11:53:23 -06:00
|
|
|
struct udev_device *udev_device_new = NULL;
|
2014-11-21 16:18:57 +10:00
|
|
|
struct stat st;
|
2015-05-26 08:49:04 +10:00
|
|
|
bool rc = false;
|
2014-11-21 16:18:57 +10:00
|
|
|
|
|
|
|
|
if (fstat(fd, &st) < 0)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
udev_device_new = udev_device_new_from_devnum(udev, 'c', st.st_rdev);
|
|
|
|
|
if (!udev_device_new)
|
|
|
|
|
goto out;
|
|
|
|
|
|
2015-05-26 08:49:04 +10:00
|
|
|
rc = streq(udev_device_get_syspath(udev_device_new),
|
|
|
|
|
udev_device_get_syspath(udev_device));
|
2014-11-21 16:18:57 +10:00
|
|
|
out:
|
|
|
|
|
if (udev_device_new)
|
|
|
|
|
udev_device_unref(udev_device_new);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
static bool
|
2015-02-09 18:45:45 -05:00
|
|
|
evdev_set_device_group(struct evdev_device *device,
|
|
|
|
|
struct udev_device *udev_device)
|
|
|
|
|
{
|
2016-06-09 08:54:00 +10:00
|
|
|
struct libinput *libinput = evdev_libinput_context(device);
|
2015-02-09 18:45:45 -05:00
|
|
|
struct libinput_device_group *group = NULL;
|
|
|
|
|
const char *udev_group;
|
|
|
|
|
|
|
|
|
|
udev_group = udev_device_get_property_value(udev_device,
|
|
|
|
|
"LIBINPUT_DEVICE_GROUP");
|
2015-09-04 12:56:41 +10:00
|
|
|
if (udev_group)
|
|
|
|
|
group = libinput_device_group_find_group(libinput, udev_group);
|
2015-02-09 18:45:45 -05:00
|
|
|
|
|
|
|
|
if (!group) {
|
2015-09-04 12:56:41 +10:00
|
|
|
group = libinput_device_group_create(libinput, udev_group);
|
2015-02-09 18:45:45 -05:00
|
|
|
if (!group)
|
2016-07-12 11:03:03 +10:00
|
|
|
return false;
|
2015-02-09 18:45:45 -05:00
|
|
|
libinput_device_set_device_group(&device->base, group);
|
|
|
|
|
libinput_device_group_unref(group);
|
|
|
|
|
} else {
|
|
|
|
|
libinput_device_set_device_group(&device->base, group);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
return true;
|
2015-02-09 18:45:45 -05:00
|
|
|
}
|
|
|
|
|
|
2015-12-16 10:48:39 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_drain_fd(int fd)
|
|
|
|
|
{
|
|
|
|
|
struct input_event ev[24];
|
|
|
|
|
size_t sz = sizeof ev;
|
|
|
|
|
|
|
|
|
|
while (read(fd, &ev, sz) == (int)sz) {
|
|
|
|
|
/* discard all pending events */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-29 10:09:13 +10:00
|
|
|
static inline void
|
|
|
|
|
evdev_pre_configure_model_quirks(struct evdev_device *device)
|
|
|
|
|
{
|
touchpad: add timestamp-based jump detection
On Dell i2c touchpads, the controller appears to go to sleep after about 1s of
inactivity on the touchpad. The wakeup takes a while so on the next touch, we
may see a pointer jump, specifially on the third event (i.e. touch down,
event, event+jump). The MSC_TIMESTAMP value carries a hint for what's
happening here, the event sequence for a touchpad with scanout intervals
7300µs is:
...
MSC_TIMESTAMP 0
SYN_REPORT
...
MSC_TIMESTAMP 7300
SYN_REPORT +2ms
...
MSC_TIMESTAMP 123456
SYN_REPORT +7ms
...
MSC_TIMESTAMP 123456+7300
SYN_REPORT +8ms
Note how the SYN_REPORT timestamps don't reflect the MSC_TIMESTAMPS.
This patch adds a quirk activate MSC_TIMESTAMP watching. When we do so, we
monitor for a 0 MSC_TIMESTAMP. Let's assume that the first event after that is
the interval, then check the third event. If that third event's timestamp is too
large rewrite the touches' motion history to reflect the correct timestamps,
i.e. instead of the SYN_REPORT timestamps the motion history now uses
"third-event SYN_REPORT timestamps minus MSC_TIMESTAMP values".
The pointer accel filter code uses absolute timestamps (#123) so we have to
restart the pointer acceleration filter when we detect this jump. This allows
us to reset the 0 time for the filter to the previous event's MSC_TIMESTAMP
time, so that our new large delta has the correct time delta too. This
calculates the acceleration correctly for that window.
The result is that the pointer is still delayed by the wake-up window (not
fixable in libinput) but at least it ends up where it should've.
There are a few side-effects: thumb, gesture, and hysteresis all still use the
unmodified SYN_REPORT time. There is a potential for false detection of either
of these now, but we'll have to fix those as they come up.
Fixes #36
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-08-21 15:43:38 +10:00
|
|
|
struct quirks_context *quirks;
|
|
|
|
|
struct quirks *q;
|
2018-10-19 12:17:03 +10:00
|
|
|
const struct quirk_tuples *t;
|
2020-10-23 10:38:14 +10:00
|
|
|
const uint32_t *props = NULL;
|
|
|
|
|
size_t nprops = 0;
|
touchpad: add timestamp-based jump detection
On Dell i2c touchpads, the controller appears to go to sleep after about 1s of
inactivity on the touchpad. The wakeup takes a while so on the next touch, we
may see a pointer jump, specifially on the third event (i.e. touch down,
event, event+jump). The MSC_TIMESTAMP value carries a hint for what's
happening here, the event sequence for a touchpad with scanout intervals
7300µs is:
...
MSC_TIMESTAMP 0
SYN_REPORT
...
MSC_TIMESTAMP 7300
SYN_REPORT +2ms
...
MSC_TIMESTAMP 123456
SYN_REPORT +7ms
...
MSC_TIMESTAMP 123456+7300
SYN_REPORT +8ms
Note how the SYN_REPORT timestamps don't reflect the MSC_TIMESTAMPS.
This patch adds a quirk activate MSC_TIMESTAMP watching. When we do so, we
monitor for a 0 MSC_TIMESTAMP. Let's assume that the first event after that is
the interval, then check the third event. If that third event's timestamp is too
large rewrite the touches' motion history to reflect the correct timestamps,
i.e. instead of the SYN_REPORT timestamps the motion history now uses
"third-event SYN_REPORT timestamps minus MSC_TIMESTAMP values".
The pointer accel filter code uses absolute timestamps (#123) so we have to
restart the pointer acceleration filter when we detect this jump. This allows
us to reset the 0 time for the filter to the previous event's MSC_TIMESTAMP
time, so that our new large delta has the correct time delta too. This
calculates the acceleration correctly for that window.
The result is that the pointer is still delayed by the wake-up window (not
fixable in libinput) but at least it ends up where it should've.
There are a few side-effects: thumb, gesture, and hysteresis all still use the
unmodified SYN_REPORT time. There is a potential for false detection of either
of these now, but we'll have to fix those as they come up.
Fixes #36
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-08-21 15:43:38 +10:00
|
|
|
char *prop;
|
|
|
|
|
|
2016-10-13 19:05:00 +10:00
|
|
|
/* Touchpad claims to have 4 slots but only ever sends 2
|
|
|
|
|
* https://bugs.freedesktop.org/show_bug.cgi?id=98100 */
|
2018-09-20 10:01:49 +10:00
|
|
|
if (evdev_device_has_model_quirk(device, QUIRK_MODEL_HP_ZBOOK_STUDIO_G3))
|
2016-10-13 19:05:00 +10:00
|
|
|
libevdev_set_abs_maximum(device->evdev, ABS_MT_SLOT, 1);
|
2017-02-17 08:39:51 +10:00
|
|
|
|
touchpad: add timestamp-based jump detection
On Dell i2c touchpads, the controller appears to go to sleep after about 1s of
inactivity on the touchpad. The wakeup takes a while so on the next touch, we
may see a pointer jump, specifially on the third event (i.e. touch down,
event, event+jump). The MSC_TIMESTAMP value carries a hint for what's
happening here, the event sequence for a touchpad with scanout intervals
7300µs is:
...
MSC_TIMESTAMP 0
SYN_REPORT
...
MSC_TIMESTAMP 7300
SYN_REPORT +2ms
...
MSC_TIMESTAMP 123456
SYN_REPORT +7ms
...
MSC_TIMESTAMP 123456+7300
SYN_REPORT +8ms
Note how the SYN_REPORT timestamps don't reflect the MSC_TIMESTAMPS.
This patch adds a quirk activate MSC_TIMESTAMP watching. When we do so, we
monitor for a 0 MSC_TIMESTAMP. Let's assume that the first event after that is
the interval, then check the third event. If that third event's timestamp is too
large rewrite the touches' motion history to reflect the correct timestamps,
i.e. instead of the SYN_REPORT timestamps the motion history now uses
"third-event SYN_REPORT timestamps minus MSC_TIMESTAMP values".
The pointer accel filter code uses absolute timestamps (#123) so we have to
restart the pointer acceleration filter when we detect this jump. This allows
us to reset the 0 time for the filter to the previous event's MSC_TIMESTAMP
time, so that our new large delta has the correct time delta too. This
calculates the acceleration correctly for that window.
The result is that the pointer is still delayed by the wake-up window (not
fixable in libinput) but at least it ends up where it should've.
There are a few side-effects: thumb, gesture, and hysteresis all still use the
unmodified SYN_REPORT time. There is a potential for false detection of either
of these now, but we'll have to fix those as they come up.
Fixes #36
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-08-21 15:43:38 +10:00
|
|
|
/* Generally we don't care about MSC_TIMESTAMP and it can cause
|
|
|
|
|
* unnecessary wakeups but on some devices we need to watch it for
|
|
|
|
|
* pointer jumps */
|
|
|
|
|
quirks = evdev_libinput_context(device)->quirks;
|
|
|
|
|
q = quirks_fetch_for_device(quirks, device->udev_device);
|
|
|
|
|
if (!q ||
|
|
|
|
|
!quirks_get_string(q, QUIRK_ATTR_MSC_TIMESTAMP, &prop) ||
|
|
|
|
|
!streq(prop, "watch")) {
|
|
|
|
|
libevdev_disable_event_code(device->evdev, EV_MSC, MSC_TIMESTAMP);
|
|
|
|
|
}
|
2018-10-19 12:17:03 +10:00
|
|
|
|
2020-10-23 09:14:33 +10:00
|
|
|
if (quirks_get_tuples(q, QUIRK_ATTR_EVENT_CODE_ENABLE, &t)) {
|
|
|
|
|
for (size_t i = 0; i < t->ntuples; i++) {
|
|
|
|
|
const struct input_absinfo absinfo = {
|
|
|
|
|
.minimum = 0,
|
|
|
|
|
.maximum = 1,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int type = t->tuples[i].first;
|
|
|
|
|
int code = t->tuples[i].second;
|
|
|
|
|
|
|
|
|
|
if (code == EVENT_CODE_UNDEFINED)
|
|
|
|
|
libevdev_enable_event_type(device->evdev, type);
|
|
|
|
|
else
|
|
|
|
|
libevdev_enable_event_code(device->evdev,
|
|
|
|
|
type,
|
|
|
|
|
code,
|
|
|
|
|
type == EV_ABS ? &absinfo : NULL);
|
|
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"quirks: enabling %s %s (%#x %#x)\n",
|
|
|
|
|
libevdev_event_type_get_name(type),
|
|
|
|
|
libevdev_event_code_get_name(type, code),
|
|
|
|
|
type,
|
|
|
|
|
code);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 12:53:35 +10:00
|
|
|
if (quirks_get_tuples(q, QUIRK_ATTR_EVENT_CODE_DISABLE, &t)) {
|
2018-10-19 12:17:03 +10:00
|
|
|
for (size_t i = 0; i < t->ntuples; i++) {
|
2020-10-23 12:54:54 +10:00
|
|
|
int type = t->tuples[i].first;
|
|
|
|
|
int code = t->tuples[i].second;
|
2018-10-19 12:17:03 +10:00
|
|
|
|
|
|
|
|
if (code == EVENT_CODE_UNDEFINED)
|
|
|
|
|
libevdev_disable_event_type(device->evdev,
|
|
|
|
|
type);
|
|
|
|
|
else
|
|
|
|
|
libevdev_disable_event_code(device->evdev,
|
|
|
|
|
type,
|
|
|
|
|
code);
|
2018-10-19 15:27:20 +10:00
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"quirks: disabling %s %s (%#x %#x)\n",
|
|
|
|
|
libevdev_event_type_get_name(type),
|
|
|
|
|
libevdev_event_code_get_name(type, code),
|
|
|
|
|
type,
|
|
|
|
|
code);
|
2018-10-19 12:17:03 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-23 10:38:14 +10:00
|
|
|
if (quirks_get_uint32_array(q,
|
|
|
|
|
QUIRK_ATTR_INPUT_PROP_ENABLE,
|
|
|
|
|
&props,
|
|
|
|
|
&nprops)) {
|
|
|
|
|
for (size_t idx = 0; idx < nprops; idx++) {
|
|
|
|
|
unsigned int p = props[idx];
|
|
|
|
|
libevdev_enable_property(device->evdev, p);
|
|
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"quirks: enabling %s (%#x)\n",
|
|
|
|
|
libevdev_property_get_name(p),
|
|
|
|
|
p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (quirks_get_uint32_array(q,
|
|
|
|
|
QUIRK_ATTR_INPUT_PROP_DISABLE,
|
|
|
|
|
&props,
|
|
|
|
|
&nprops)) {
|
|
|
|
|
#if HAVE_LIBEVDEV_DISABLE_PROPERTY
|
|
|
|
|
for (size_t idx = 0; idx < nprops; idx++) {
|
|
|
|
|
unsigned int p = props[idx];
|
|
|
|
|
libevdev_disable_property(device->evdev, p);
|
|
|
|
|
evdev_log_debug(device,
|
|
|
|
|
"quirks: disabling %s (%#x)\n",
|
|
|
|
|
libevdev_property_get_name(p),
|
|
|
|
|
p);
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
evdev_log_error(device,
|
|
|
|
|
"quirks: a quirk for this device requires newer libevdev than installed\n");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
touchpad: add timestamp-based jump detection
On Dell i2c touchpads, the controller appears to go to sleep after about 1s of
inactivity on the touchpad. The wakeup takes a while so on the next touch, we
may see a pointer jump, specifially on the third event (i.e. touch down,
event, event+jump). The MSC_TIMESTAMP value carries a hint for what's
happening here, the event sequence for a touchpad with scanout intervals
7300µs is:
...
MSC_TIMESTAMP 0
SYN_REPORT
...
MSC_TIMESTAMP 7300
SYN_REPORT +2ms
...
MSC_TIMESTAMP 123456
SYN_REPORT +7ms
...
MSC_TIMESTAMP 123456+7300
SYN_REPORT +8ms
Note how the SYN_REPORT timestamps don't reflect the MSC_TIMESTAMPS.
This patch adds a quirk activate MSC_TIMESTAMP watching. When we do so, we
monitor for a 0 MSC_TIMESTAMP. Let's assume that the first event after that is
the interval, then check the third event. If that third event's timestamp is too
large rewrite the touches' motion history to reflect the correct timestamps,
i.e. instead of the SYN_REPORT timestamps the motion history now uses
"third-event SYN_REPORT timestamps minus MSC_TIMESTAMP values".
The pointer accel filter code uses absolute timestamps (#123) so we have to
restart the pointer acceleration filter when we detect this jump. This allows
us to reset the 0 time for the filter to the previous event's MSC_TIMESTAMP
time, so that our new large delta has the correct time delta too. This
calculates the acceleration correctly for that window.
The result is that the pointer is still delayed by the wake-up window (not
fixable in libinput) but at least it ends up where it should've.
There are a few side-effects: thumb, gesture, and hysteresis all still use the
unmodified SYN_REPORT time. There is a potential for false detection of either
of these now, but we'll have to fix those as they come up.
Fixes #36
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2018-08-21 15:43:38 +10:00
|
|
|
quirks_unref(q);
|
2016-01-29 10:09:13 +10:00
|
|
|
}
|
|
|
|
|
|
2017-06-01 15:26:51 +10:00
|
|
|
static void
|
|
|
|
|
libevdev_log_func(const struct libevdev *evdev,
|
|
|
|
|
enum libevdev_log_priority priority,
|
|
|
|
|
void *data,
|
|
|
|
|
const char *file,
|
|
|
|
|
int line,
|
|
|
|
|
const char *func,
|
|
|
|
|
const char *format,
|
|
|
|
|
va_list args)
|
|
|
|
|
{
|
|
|
|
|
struct libinput *libinput = data;
|
2019-02-07 14:58:59 +10:00
|
|
|
enum libinput_log_priority pri = LIBINPUT_LOG_PRIORITY_ERROR;
|
2017-06-01 15:26:51 +10:00
|
|
|
const char prefix[] = "libevdev: ";
|
|
|
|
|
char fmt[strlen(format) + strlen(prefix) + 1];
|
|
|
|
|
|
|
|
|
|
switch (priority) {
|
|
|
|
|
case LIBEVDEV_LOG_ERROR:
|
|
|
|
|
pri = LIBINPUT_LOG_PRIORITY_ERROR;
|
|
|
|
|
break;
|
|
|
|
|
case LIBEVDEV_LOG_INFO:
|
|
|
|
|
pri = LIBINPUT_LOG_PRIORITY_INFO;
|
|
|
|
|
break;
|
|
|
|
|
case LIBEVDEV_LOG_DEBUG:
|
|
|
|
|
pri = LIBINPUT_LOG_PRIORITY_DEBUG;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
snprintf(fmt, sizeof(fmt), "%s%s", prefix, format);
|
|
|
|
|
|
2021-07-22 15:11:32 +10:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
|
2017-06-01 15:26:51 +10:00
|
|
|
log_msg_va(libinput, pri, fmt, args);
|
2021-07-22 15:11:32 +10:00
|
|
|
#pragma GCC diagnostic pop
|
2017-06-01 15:26:51 +10:00
|
|
|
}
|
|
|
|
|
|
2017-08-17 01:25:24 +02:00
|
|
|
static bool
|
|
|
|
|
udev_device_should_be_ignored(struct udev_device *udev_device)
|
|
|
|
|
{
|
|
|
|
|
const char *value;
|
|
|
|
|
|
|
|
|
|
value = udev_device_get_property_value(udev_device,
|
|
|
|
|
"LIBINPUT_IGNORE_DEVICE");
|
|
|
|
|
|
|
|
|
|
return value && !streq(value, "0");
|
|
|
|
|
}
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
struct evdev_device *
|
|
|
|
|
evdev_device_create(struct libinput_seat *seat,
|
2014-11-20 13:55:48 +10:00
|
|
|
struct udev_device *udev_device)
|
2011-01-14 14:45:42 -05:00
|
|
|
{
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
struct libinput *libinput = seat->libinput;
|
2014-11-21 16:20:42 +10:00
|
|
|
struct evdev_device *device = NULL;
|
2013-12-06 12:01:47 +10:00
|
|
|
int rc;
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
int fd = -1;
|
2014-02-10 15:40:49 +10:00
|
|
|
int unhandled_device = 0;
|
2014-11-20 13:55:48 +10:00
|
|
|
const char *devnode = udev_device_get_devnode(udev_device);
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
char *sysname = str_sanitize(udev_device_get_sysname(udev_device));
|
2014-01-30 14:54:31 +10:00
|
|
|
|
2018-02-09 19:24:15 +10:00
|
|
|
if (!devnode) {
|
|
|
|
|
log_info(libinput, "%s: no device node associated\n", sysname);
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
goto err;
|
2018-02-09 19:24:15 +10:00
|
|
|
}
|
|
|
|
|
|
2017-08-17 01:25:24 +02:00
|
|
|
if (udev_device_should_be_ignored(udev_device)) {
|
|
|
|
|
log_debug(libinput, "%s: device is ignored\n", sysname);
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
goto err;
|
2017-08-17 01:25:24 +02:00
|
|
|
}
|
|
|
|
|
|
2014-01-30 14:54:31 +10:00
|
|
|
/* Use non-blocking mode so that we can loop on read on
|
|
|
|
|
* evdev_device_data() until all events on the fd are
|
|
|
|
|
* read. mtdev_get() also expects this. */
|
2015-04-30 11:43:28 -05:00
|
|
|
fd = open_restricted(libinput, devnode,
|
|
|
|
|
O_RDWR | O_NONBLOCK | O_CLOEXEC);
|
2014-01-30 14:54:31 +10:00
|
|
|
if (fd < 0) {
|
2014-06-18 19:51:19 +10:00
|
|
|
log_info(libinput,
|
2017-02-13 14:17:52 +10:00
|
|
|
"%s: opening input device '%s' failed (%s).\n",
|
|
|
|
|
sysname,
|
|
|
|
|
devnode,
|
|
|
|
|
strerror(-fd));
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
goto err;
|
2014-01-30 14:54:31 +10:00
|
|
|
}
|
2011-01-14 14:45:42 -05:00
|
|
|
|
2015-05-26 08:49:04 +10:00
|
|
|
if (!evdev_device_have_same_syspath(udev_device, fd))
|
2014-11-21 16:18:57 +10:00
|
|
|
goto err;
|
|
|
|
|
|
2013-08-08 11:57:05 +10:00
|
|
|
device = zalloc(sizeof *device);
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
device->sysname = sysname;
|
|
|
|
|
sysname = NULL;
|
2011-01-14 14:45:42 -05:00
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
libinput_device_init(&device->base, seat);
|
2014-08-22 14:48:42 +10:00
|
|
|
libinput_seat_ref(seat);
|
2011-09-01 13:25:50 -04:00
|
|
|
|
2015-12-16 10:48:39 +10:00
|
|
|
evdev_drain_fd(fd);
|
|
|
|
|
|
2013-12-06 12:01:47 +10:00
|
|
|
rc = libevdev_new_from_fd(fd, &device->evdev);
|
|
|
|
|
if (rc != 0)
|
2014-08-22 14:48:42 +10:00
|
|
|
goto err;
|
2013-12-06 12:01:47 +10:00
|
|
|
|
2014-02-19 08:45:57 +10:00
|
|
|
libevdev_set_clock_id(device->evdev, CLOCK_MONOTONIC);
|
2017-06-01 15:26:51 +10:00
|
|
|
libevdev_set_device_log_function(device->evdev,
|
|
|
|
|
libevdev_log_func,
|
|
|
|
|
LIBEVDEV_LOG_ERROR,
|
|
|
|
|
libinput);
|
2013-10-17 23:04:05 +02:00
|
|
|
device->seat_caps = 0;
|
2011-12-21 19:34:09 +02:00
|
|
|
device->is_mt = 0;
|
2012-03-16 17:33:03 -03:00
|
|
|
device->mtdev = NULL;
|
2014-11-20 13:55:48 +10:00
|
|
|
device->udev_device = udev_device_ref(udev_device);
|
2012-05-17 12:18:16 +02:00
|
|
|
device->dispatch = NULL;
|
2013-11-10 17:55:40 +01:00
|
|
|
device->fd = fd;
|
2013-12-06 12:01:47 +10:00
|
|
|
device->devname = libevdev_get_name(device->evdev);
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
/* the log_prefix_name is used as part of a printf format string and
|
|
|
|
|
* must not contain % directives, see evdev_log_msg */
|
|
|
|
|
device->log_prefix_name = str_sanitize(device->devname);
|
2014-09-16 16:22:35 +02:00
|
|
|
device->scroll.threshold = 5.0; /* Default may be overridden */
|
2015-08-05 10:55:39 +10:00
|
|
|
device->scroll.direction_lock_threshold = 5.0; /* Default may be overridden */
|
2014-09-16 16:22:35 +02:00
|
|
|
device->scroll.direction = 0;
|
2015-01-12 08:39:47 +10:00
|
|
|
device->scroll.wheel_click_angle =
|
2016-08-16 14:48:47 +10:00
|
|
|
evdev_read_wheel_click_props(device);
|
2015-07-16 15:59:01 +10:00
|
|
|
device->model_flags = evdev_read_model_flags(device);
|
2015-07-21 09:33:47 +10:00
|
|
|
device->dpi = DEFAULT_MOUSE_DPI;
|
2015-06-19 16:01:34 +10:00
|
|
|
|
2014-11-05 13:32:17 +01:00
|
|
|
/* at most 5 SYN_DROPPED log-messages per 30s */
|
2015-07-27 17:51:52 +08:00
|
|
|
ratelimit_init(&device->syn_drop_limit, s2us(30), 5);
|
2020-10-22 14:59:03 +10:00
|
|
|
/* at most 5 "delayed processing" log messages per hour */
|
|
|
|
|
ratelimit_init(&device->delay_warning_limit, s2us(60 * 60), 5);
|
2015-08-18 13:00:15 +10:00
|
|
|
/* at most 5 log-messages per 5s */
|
|
|
|
|
ratelimit_init(&device->nonpointer_rel_limit, s2us(5), 5);
|
2012-08-03 14:39:07 +03:00
|
|
|
|
2014-08-26 10:34:05 +10:00
|
|
|
matrix_init_identity(&device->abs.calibration);
|
2014-08-26 11:41:19 +10:00
|
|
|
matrix_init_identity(&device->abs.usermatrix);
|
2014-08-26 13:44:03 +10:00
|
|
|
matrix_init_identity(&device->abs.default_calibration);
|
2014-01-22 23:48:39 +01:00
|
|
|
|
2016-01-29 10:09:13 +10:00
|
|
|
evdev_pre_configure_model_quirks(device);
|
|
|
|
|
|
2016-07-04 12:37:36 +10:00
|
|
|
device->dispatch = evdev_configure_device(device);
|
2020-05-28 16:41:09 +10:00
|
|
|
if (device->dispatch == NULL || device->seat_caps == 0)
|
2014-01-22 23:43:45 +01:00
|
|
|
goto err;
|
2013-02-16 14:29:24 -05:00
|
|
|
|
2013-11-17 11:19:50 +01:00
|
|
|
device->source =
|
|
|
|
|
libinput_add_fd(libinput, fd, evdev_device_dispatch, device);
|
|
|
|
|
if (!device->source)
|
|
|
|
|
goto err;
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
if (!evdev_set_device_group(device, udev_device))
|
2015-02-05 13:39:04 +10:00
|
|
|
goto err;
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
list_insert(seat->devices_list.prev, &device->base.link);
|
2014-09-03 15:50:28 +10:00
|
|
|
|
2014-09-03 14:34:52 +10:00
|
|
|
evdev_notify_added_device(device);
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
|
|
|
|
|
return device;
|
2011-10-28 13:15:25 -04:00
|
|
|
|
2013-08-07 11:04:48 +10:00
|
|
|
err:
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
if (fd >= 0) {
|
|
|
|
|
close_restricted(libinput, fd);
|
|
|
|
|
if (device) {
|
|
|
|
|
unhandled_device = device->seat_caps == 0;
|
|
|
|
|
evdev_device_destroy(device);
|
|
|
|
|
}
|
2020-05-28 16:41:09 +10:00
|
|
|
}
|
2014-02-10 15:40:49 +10:00
|
|
|
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
free(sysname);
|
|
|
|
|
|
2014-02-10 15:40:49 +10:00
|
|
|
return unhandled_device ? EVDEV_UNHANDLED_DEVICE : NULL;
|
2011-01-14 14:45:42 -05:00
|
|
|
}
|
|
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
const char *
|
|
|
|
|
evdev_device_get_output(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return device->output_name;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 17:50:04 +01:00
|
|
|
const char *
|
|
|
|
|
evdev_device_get_sysname(struct evdev_device *device)
|
|
|
|
|
{
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
return device->sysname;
|
2013-12-15 17:50:04 +01:00
|
|
|
}
|
|
|
|
|
|
2014-06-27 12:55:29 +10:00
|
|
|
const char *
|
|
|
|
|
evdev_device_get_name(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return device->devname;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
|
evdev_device_get_id_product(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return libevdev_get_id_product(device->evdev);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
|
evdev_device_get_id_vendor(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return libevdev_get_id_vendor(device->evdev);
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-31 10:53:53 +10:00
|
|
|
struct udev_device *
|
|
|
|
|
evdev_device_get_udev_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
return udev_device_ref(device->udev_device);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
void
|
2014-08-26 13:44:03 +10:00
|
|
|
evdev_device_set_default_calibration(struct evdev_device *device,
|
|
|
|
|
const float calibration[6])
|
2013-11-10 17:55:40 +01:00
|
|
|
{
|
2014-08-26 13:44:03 +10:00
|
|
|
matrix_from_farray6(&device->abs.default_calibration, calibration);
|
|
|
|
|
evdev_device_calibrate(device, calibration);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
void
|
2014-08-26 12:57:41 +10:00
|
|
|
evdev_device_calibrate(struct evdev_device *device,
|
|
|
|
|
const float calibration[6])
|
2013-11-10 17:55:40 +01:00
|
|
|
{
|
2014-08-26 10:34:05 +10:00
|
|
|
struct matrix scale,
|
|
|
|
|
translate,
|
|
|
|
|
transform;
|
|
|
|
|
double sx, sy;
|
|
|
|
|
|
|
|
|
|
matrix_from_farray6(&transform, calibration);
|
|
|
|
|
device->abs.apply_calibration = !matrix_is_identity(&transform);
|
|
|
|
|
|
2019-08-04 11:48:28 -04:00
|
|
|
/* back up the user matrix so we can return it on request */
|
|
|
|
|
matrix_from_farray6(&device->abs.usermatrix, calibration);
|
|
|
|
|
|
2014-08-26 10:34:05 +10:00
|
|
|
if (!device->abs.apply_calibration) {
|
|
|
|
|
matrix_init_identity(&device->abs.calibration);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sx = device->abs.absinfo_x->maximum - device->abs.absinfo_x->minimum + 1;
|
|
|
|
|
sy = device->abs.absinfo_y->maximum - device->abs.absinfo_y->minimum + 1;
|
|
|
|
|
|
|
|
|
|
/* The transformation matrix is in the form:
|
|
|
|
|
* [ a b c ]
|
|
|
|
|
* [ d e f ]
|
|
|
|
|
* [ 0 0 1 ]
|
|
|
|
|
* Where a, e are the scale components, a, b, d, e are the rotation
|
|
|
|
|
* component (combined with scale) and c and f are the translation
|
|
|
|
|
* component. The translation component in the input matrix must be
|
|
|
|
|
* normalized to multiples of the device width and height,
|
|
|
|
|
* respectively. e.g. c == 1 shifts one device-width to the right.
|
|
|
|
|
*
|
|
|
|
|
* We pre-calculate a single matrix to apply to event coordinates:
|
|
|
|
|
* M = Un-Normalize * Calibration * Normalize
|
|
|
|
|
*
|
|
|
|
|
* Normalize: scales the device coordinates to [0,1]
|
|
|
|
|
* Calibration: user-supplied matrix
|
|
|
|
|
* Un-Normalize: scales back up to device coordinates
|
|
|
|
|
* Matrix maths requires the normalize/un-normalize in reverse
|
|
|
|
|
* order.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Un-Normalize */
|
|
|
|
|
matrix_init_translate(&translate,
|
|
|
|
|
device->abs.absinfo_x->minimum,
|
|
|
|
|
device->abs.absinfo_y->minimum);
|
|
|
|
|
matrix_init_scale(&scale, sx, sy);
|
|
|
|
|
matrix_mult(&scale, &translate, &scale);
|
|
|
|
|
|
|
|
|
|
/* Calibration */
|
|
|
|
|
matrix_mult(&transform, &scale, &transform);
|
|
|
|
|
|
|
|
|
|
/* Normalize */
|
|
|
|
|
matrix_init_translate(&translate,
|
|
|
|
|
-device->abs.absinfo_x->minimum/sx,
|
|
|
|
|
-device->abs.absinfo_y->minimum/sy);
|
|
|
|
|
matrix_init_scale(&scale, 1.0/sx, 1.0/sy);
|
|
|
|
|
matrix_mult(&scale, &translate, &scale);
|
|
|
|
|
|
|
|
|
|
/* store final matrix in device */
|
|
|
|
|
matrix_mult(&device->abs.calibration, &transform, &scale);
|
2013-11-10 17:55:40 +01:00
|
|
|
}
|
|
|
|
|
|
2016-11-25 13:54:35 +10:00
|
|
|
void
|
|
|
|
|
evdev_read_calibration_prop(struct evdev_device *device)
|
|
|
|
|
{
|
2017-02-09 10:25:50 +10:00
|
|
|
const char *prop;
|
2016-11-25 13:54:35 +10:00
|
|
|
float calibration[6];
|
|
|
|
|
|
2017-02-09 10:25:50 +10:00
|
|
|
prop = udev_device_get_property_value(device->udev_device,
|
|
|
|
|
"LIBINPUT_CALIBRATION_MATRIX");
|
2016-11-25 13:54:35 +10:00
|
|
|
|
2017-02-09 10:25:50 +10:00
|
|
|
if (prop == NULL)
|
2016-11-25 13:54:35 +10:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!device->abs.absinfo_x || !device->abs.absinfo_y)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-02-09 10:25:50 +10:00
|
|
|
if (!parse_calibration_property(prop, calibration))
|
2016-11-25 13:54:35 +10:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
evdev_device_set_default_calibration(device, calibration);
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device,
|
|
|
|
|
"applying calibration: %f %f %f %f %f %f\n",
|
|
|
|
|
calibration[0],
|
|
|
|
|
calibration[1],
|
|
|
|
|
calibration[2],
|
|
|
|
|
calibration[3],
|
|
|
|
|
calibration[4],
|
|
|
|
|
calibration[5]);
|
2016-11-25 13:54:35 +10:00
|
|
|
}
|
|
|
|
|
|
2018-03-05 13:17:43 +10:00
|
|
|
int
|
|
|
|
|
evdev_read_fuzz_prop(struct evdev_device *device, unsigned int code)
|
|
|
|
|
{
|
|
|
|
|
const char *prop;
|
|
|
|
|
char name[32];
|
|
|
|
|
int rc;
|
|
|
|
|
int fuzz = 0;
|
2019-06-26 08:55:07 +10:00
|
|
|
const struct input_absinfo *abs;
|
2018-03-05 13:17:43 +10:00
|
|
|
|
|
|
|
|
rc = snprintf(name, sizeof(name), "LIBINPUT_FUZZ_%02x", code);
|
|
|
|
|
if (rc == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
prop = udev_device_get_property_value(device->udev_device, name);
|
2019-06-26 08:55:07 +10:00
|
|
|
if (prop && (safe_atoi(prop, &fuzz) == false || fuzz < 0)) {
|
2018-03-05 13:17:43 +10:00
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"invalid LIBINPUT_FUZZ property value: %s\n",
|
|
|
|
|
prop);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-26 08:55:07 +10:00
|
|
|
/* The udev callout should have set the kernel fuzz to zero.
|
|
|
|
|
* If the kernel fuzz is nonzero, something has gone wrong there, so
|
|
|
|
|
* let's complain but still use a fuzz of zero for our view of the
|
|
|
|
|
* device. Otherwise, the kernel will use the nonzero fuzz, we then
|
|
|
|
|
* use the same fuzz on top of the pre-fuzzed data and that leads to
|
|
|
|
|
* unresponsive behaviur.
|
|
|
|
|
*/
|
|
|
|
|
abs = libevdev_get_abs_info(device->evdev, code);
|
|
|
|
|
if (!abs || abs->fuzz == 0)
|
|
|
|
|
return fuzz;
|
|
|
|
|
|
|
|
|
|
if (prop) {
|
|
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"kernel fuzz of %d even with LIBINPUT_FUZZ_%02x present\n",
|
|
|
|
|
abs->fuzz,
|
|
|
|
|
code);
|
|
|
|
|
} else {
|
|
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"kernel fuzz of %d but LIBINPUT_FUZZ_%02x is missing\n",
|
|
|
|
|
abs->fuzz,
|
|
|
|
|
code);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
2018-03-05 13:17:43 +10:00
|
|
|
}
|
|
|
|
|
|
2016-07-12 11:03:03 +10:00
|
|
|
bool
|
2013-12-15 17:45:02 +01:00
|
|
|
evdev_device_has_capability(struct evdev_device *device,
|
|
|
|
|
enum libinput_device_capability capability)
|
|
|
|
|
{
|
|
|
|
|
switch (capability) {
|
|
|
|
|
case LIBINPUT_DEVICE_CAP_POINTER:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_POINTER);
|
|
|
|
|
case LIBINPUT_DEVICE_CAP_KEYBOARD:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_KEYBOARD);
|
|
|
|
|
case LIBINPUT_DEVICE_CAP_TOUCH:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_TOUCH);
|
2015-01-22 16:41:50 +01:00
|
|
|
case LIBINPUT_DEVICE_CAP_GESTURE:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_GESTURE);
|
2015-11-16 16:26:56 +10:00
|
|
|
case LIBINPUT_DEVICE_CAP_TABLET_TOOL:
|
2014-04-21 19:11:17 +02:00
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_TABLET);
|
2016-02-05 15:16:38 +10:00
|
|
|
case LIBINPUT_DEVICE_CAP_TABLET_PAD:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_TABLET_PAD);
|
2017-01-20 16:54:14 +11:00
|
|
|
case LIBINPUT_DEVICE_CAP_SWITCH:
|
|
|
|
|
return !!(device->seat_caps & EVDEV_DEVICE_SWITCH);
|
2013-12-15 17:45:02 +01:00
|
|
|
default:
|
2016-07-12 11:03:03 +10:00
|
|
|
return false;
|
2013-12-15 17:45:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-17 15:45:07 +10:00
|
|
|
int
|
2016-07-15 11:13:06 +10:00
|
|
|
evdev_device_get_size(const struct evdev_device *device,
|
2014-06-17 15:45:07 +10:00
|
|
|
double *width,
|
|
|
|
|
double *height)
|
|
|
|
|
{
|
|
|
|
|
const struct input_absinfo *x, *y;
|
|
|
|
|
|
|
|
|
|
x = libevdev_get_abs_info(device->evdev, ABS_X);
|
|
|
|
|
y = libevdev_get_abs_info(device->evdev, ABS_Y);
|
|
|
|
|
|
2016-07-04 15:41:37 +10:00
|
|
|
if (!x || !y || device->abs.is_fake_resolution ||
|
2014-07-24 16:15:43 +10:00
|
|
|
!x->resolution || !y->resolution)
|
2014-06-17 15:45:07 +10:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
*width = evdev_convert_to_mm(x, x->maximum);
|
|
|
|
|
*height = evdev_convert_to_mm(y, y->maximum);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-06 12:27:35 +01:00
|
|
|
int
|
|
|
|
|
evdev_device_has_button(struct evdev_device *device, uint32_t code)
|
|
|
|
|
{
|
|
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_POINTER))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
return libevdev_has_event_code(device->evdev, EV_KEY, code);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-22 14:36:25 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_has_key(struct evdev_device *device, uint32_t code)
|
|
|
|
|
{
|
|
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_KEYBOARD))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
return libevdev_has_event_code(device->evdev, EV_KEY, code);
|
2014-11-06 12:27:35 +01:00
|
|
|
}
|
|
|
|
|
|
2018-01-31 16:04:09 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_get_touch_count(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
int ntouches;
|
|
|
|
|
|
|
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_TOUCH))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
ntouches = libevdev_get_num_slots(device->evdev);
|
|
|
|
|
if (ntouches == -1) {
|
|
|
|
|
/* mtdev devices have multitouch but we don't know
|
|
|
|
|
* how many. Otherwise, any touch device with num_slots of
|
|
|
|
|
* -1 is a single-touch device */
|
|
|
|
|
if (device->mtdev)
|
|
|
|
|
ntouches = 0;
|
|
|
|
|
else
|
|
|
|
|
ntouches = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ntouches;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-21 16:57:39 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_has_switch(struct evdev_device *device,
|
|
|
|
|
enum libinput_switch sw)
|
|
|
|
|
{
|
|
|
|
|
unsigned int code;
|
|
|
|
|
|
|
|
|
|
if (!(device->seat_caps & EVDEV_DEVICE_SWITCH))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
switch (sw) {
|
|
|
|
|
case LIBINPUT_SWITCH_LID:
|
|
|
|
|
code = SW_LID;
|
|
|
|
|
break;
|
2017-04-21 17:52:37 +10:00
|
|
|
case LIBINPUT_SWITCH_TABLET_MODE:
|
|
|
|
|
code = SW_TABLET_MODE;
|
|
|
|
|
break;
|
2017-04-21 16:57:39 +10:00
|
|
|
default:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return libevdev_has_event_code(device->evdev, EV_SW, code);
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-10 08:39:58 +10:00
|
|
|
static inline bool
|
|
|
|
|
evdev_is_scrolling(const struct evdev_device *device,
|
|
|
|
|
enum libinput_pointer_axis axis)
|
|
|
|
|
{
|
|
|
|
|
assert(axis == LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL ||
|
|
|
|
|
axis == LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
|
|
|
|
|
2019-02-07 14:15:38 +10:00
|
|
|
return (device->scroll.direction & bit(axis)) != 0;
|
2014-11-10 08:39:58 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
evdev_start_scrolling(struct evdev_device *device,
|
|
|
|
|
enum libinput_pointer_axis axis)
|
|
|
|
|
{
|
|
|
|
|
assert(axis == LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL ||
|
|
|
|
|
axis == LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
|
|
|
|
|
2019-02-07 14:15:38 +10:00
|
|
|
device->scroll.direction |= bit(axis);
|
2014-11-10 08:39:58 +10:00
|
|
|
}
|
|
|
|
|
|
2012-08-03 14:39:05 +03:00
|
|
|
void
|
2014-09-16 16:22:35 +02:00
|
|
|
evdev_post_scroll(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
Add pointer axis sources to the API
For a caller to implement/provide kinetic scrolling ("inertial scrolling",
"fling scrolling"), it needs to know how the scrolling motion was implemented,
and what to expect in the future. Add this information to the pointer axis
event.
The three scroll sources we have are:
* wheels: scrolling is in discreet steps, you don't know when it ends, the
wheel will just stop sending events
* fingers: scrolling is continuous coordinate space, we know when it stops and
we can tell the caller
* continuous: scrolling is in continuous coordinate space but we may or may not
know when it stops. if scroll lock is used, the device may never technically
get out of scroll mode even if it doesn't send events at any given moment
Use case: trackpoint/trackball scroll emulation on button press
The stop event is now codified in the API documentation, so callers can use
that for kinetic scrolling. libinput does not implement kinetic scrolling
itself.
Not covered by this patch:
* The wheel event is currently defined as "typical mouse wheel step", this is
different to Qt where the step value is 1/8 of a degree. Some better
definition here may help.
* It is unclear how an absolute device would map into relative motion if the
device itself is not controlling absolute motion.
* For diagonal scrolling, the vertical/horizontal terminator events would come
in separately. The caller would have to deal with that somehow.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Original patch, before the rebase onto today's master:
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
2014-11-05 16:22:07 +10:00
|
|
|
enum libinput_pointer_axis_source source,
|
2015-03-11 10:36:44 +10:00
|
|
|
const struct normalized_coords *delta)
|
2012-08-03 14:38:57 +03:00
|
|
|
{
|
2015-03-11 10:36:44 +10:00
|
|
|
const struct normalized_coords *trigger;
|
|
|
|
|
struct normalized_coords event;
|
2014-11-07 16:08:34 +10:00
|
|
|
|
|
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL))
|
2015-03-11 10:36:44 +10:00
|
|
|
device->scroll.buildup.y += delta->y;
|
2014-11-07 16:08:34 +10:00
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL))
|
2015-03-11 10:36:44 +10:00
|
|
|
device->scroll.buildup.x += delta->x;
|
2014-11-07 16:08:34 +10:00
|
|
|
|
2015-03-11 10:36:44 +10:00
|
|
|
trigger = &device->scroll.buildup;
|
2014-11-07 16:08:34 +10:00
|
|
|
|
|
|
|
|
/* If we're not scrolling yet, use a distance trigger: moving
|
|
|
|
|
past a certain distance starts scrolling */
|
|
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL) &&
|
|
|
|
|
!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL)) {
|
2015-03-11 10:36:44 +10:00
|
|
|
if (fabs(trigger->y) >= device->scroll.threshold)
|
2014-11-07 16:08:34 +10:00
|
|
|
evdev_start_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
2015-03-11 10:36:44 +10:00
|
|
|
if (fabs(trigger->x) >= device->scroll.threshold)
|
2014-11-07 16:08:34 +10:00
|
|
|
evdev_start_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL);
|
|
|
|
|
/* We're already scrolling in one direction. Require some
|
|
|
|
|
trigger speed to start scrolling in the other direction */
|
|
|
|
|
} else if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL)) {
|
2015-08-05 10:55:39 +10:00
|
|
|
if (fabs(delta->y) >= device->scroll.direction_lock_threshold)
|
2014-11-07 16:08:34 +10:00
|
|
|
evdev_start_scrolling(device,
|
2014-11-10 08:39:58 +10:00
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
2014-11-07 16:08:34 +10:00
|
|
|
} else if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL)) {
|
2015-08-05 10:55:39 +10:00
|
|
|
if (fabs(delta->x) >= device->scroll.direction_lock_threshold)
|
2014-11-07 16:08:34 +10:00
|
|
|
evdev_start_scrolling(device,
|
2014-11-10 08:39:58 +10:00
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL);
|
2014-11-07 16:08:34 +10:00
|
|
|
}
|
2014-09-16 16:22:35 +02:00
|
|
|
|
2015-03-11 10:36:44 +10:00
|
|
|
event = *delta;
|
|
|
|
|
|
2014-11-07 16:08:34 +10:00
|
|
|
/* We use the trigger to enable, but the delta from this event for
|
|
|
|
|
* the actual scroll movement. Otherwise we get a jump once
|
|
|
|
|
* scrolling engages */
|
2014-12-24 11:10:04 +10:00
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL))
|
2015-03-11 10:36:44 +10:00
|
|
|
event.y = 0.0;
|
|
|
|
|
|
2014-12-24 11:10:04 +10:00
|
|
|
if (!evdev_is_scrolling(device,
|
|
|
|
|
LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL))
|
2015-03-11 10:36:44 +10:00
|
|
|
event.x = 0.0;
|
2014-09-16 16:22:35 +02:00
|
|
|
|
2015-03-24 16:33:29 +01:00
|
|
|
if (!normalized_is_zero(event)) {
|
2015-12-04 15:52:17 +10:00
|
|
|
uint32_t axes = device->scroll.direction;
|
|
|
|
|
|
|
|
|
|
if (event.y == 0.0)
|
2019-02-07 14:15:38 +10:00
|
|
|
axes &= ~bit(LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL);
|
2015-12-04 15:52:17 +10:00
|
|
|
if (event.x == 0.0)
|
2019-02-07 14:15:38 +10:00
|
|
|
axes &= ~bit(LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL);
|
2015-12-04 15:52:17 +10:00
|
|
|
|
2018-11-22 10:24:54 +10:00
|
|
|
switch (source) {
|
|
|
|
|
case LIBINPUT_POINTER_AXIS_SOURCE_FINGER:
|
|
|
|
|
evdev_notify_axis_finger(device, time, axes, &event);
|
|
|
|
|
break;
|
|
|
|
|
case LIBINPUT_POINTER_AXIS_SOURCE_CONTINUOUS:
|
|
|
|
|
evdev_notify_axis_continous(device, time, axes, &event);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"Posting invalid scroll source %d\n",
|
|
|
|
|
source);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-03-11 11:30:02 +10:00
|
|
|
}
|
2014-09-16 16:22:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
Add pointer axis sources to the API
For a caller to implement/provide kinetic scrolling ("inertial scrolling",
"fling scrolling"), it needs to know how the scrolling motion was implemented,
and what to expect in the future. Add this information to the pointer axis
event.
The three scroll sources we have are:
* wheels: scrolling is in discreet steps, you don't know when it ends, the
wheel will just stop sending events
* fingers: scrolling is continuous coordinate space, we know when it stops and
we can tell the caller
* continuous: scrolling is in continuous coordinate space but we may or may not
know when it stops. if scroll lock is used, the device may never technically
get out of scroll mode even if it doesn't send events at any given moment
Use case: trackpoint/trackball scroll emulation on button press
The stop event is now codified in the API documentation, so callers can use
that for kinetic scrolling. libinput does not implement kinetic scrolling
itself.
Not covered by this patch:
* The wheel event is currently defined as "typical mouse wheel step", this is
different to Qt where the step value is 1/8 of a degree. Some better
definition here may help.
* It is unclear how an absolute device would map into relative motion if the
device itself is not controlling absolute motion.
* For diagonal scrolling, the vertical/horizontal terminator events would come
in separately. The caller would have to deal with that somehow.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Original patch, before the rebase onto today's master:
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
2014-11-05 16:22:07 +10:00
|
|
|
evdev_stop_scroll(struct evdev_device *device,
|
|
|
|
|
uint64_t time,
|
|
|
|
|
enum libinput_pointer_axis_source source)
|
2014-09-16 16:22:35 +02:00
|
|
|
{
|
2015-03-11 10:36:44 +10:00
|
|
|
const struct normalized_coords zero = { 0.0, 0.0 };
|
|
|
|
|
|
2014-09-16 16:22:35 +02:00
|
|
|
/* terminate scrolling with a zero scroll event */
|
2018-11-22 10:24:54 +10:00
|
|
|
if (device->scroll.direction != 0) {
|
|
|
|
|
switch (source) {
|
|
|
|
|
case LIBINPUT_POINTER_AXIS_SOURCE_FINGER:
|
|
|
|
|
pointer_notify_axis_finger(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
device->scroll.direction,
|
|
|
|
|
&zero);
|
|
|
|
|
break;
|
|
|
|
|
case LIBINPUT_POINTER_AXIS_SOURCE_CONTINUOUS:
|
|
|
|
|
pointer_notify_axis_continuous(&device->base,
|
|
|
|
|
time,
|
|
|
|
|
device->scroll.direction,
|
|
|
|
|
&zero);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
evdev_log_bug_libinput(device,
|
|
|
|
|
"Stopping invalid scroll source %d\n",
|
|
|
|
|
source);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-16 16:22:35 +02:00
|
|
|
|
2015-03-11 10:36:44 +10:00
|
|
|
device->scroll.buildup.x = 0;
|
|
|
|
|
device->scroll.buildup.y = 0;
|
2014-09-16 16:22:35 +02:00
|
|
|
device->scroll.direction = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 16:22:37 +02:00
|
|
|
void
|
|
|
|
|
evdev_notify_suspended_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput_device *it;
|
|
|
|
|
|
2016-07-04 15:41:37 +10:00
|
|
|
if (device->is_suspended)
|
2014-09-16 16:22:37 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
list_for_each(it, &device->base.seat->devices_list, link) {
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *d = evdev_device(it);
|
2014-09-16 16:22:37 +02:00
|
|
|
if (it == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (d->dispatch->interface->device_suspended)
|
|
|
|
|
d->dispatch->interface->device_suspended(d, device);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-04 15:41:37 +10:00
|
|
|
device->is_suspended = true;
|
2014-09-16 16:22:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_notify_resumed_device(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct libinput_device *it;
|
|
|
|
|
|
2016-07-04 15:41:37 +10:00
|
|
|
if (!device->is_suspended)
|
2014-09-16 16:22:37 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
list_for_each(it, &device->base.seat->devices_list, link) {
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *d = evdev_device(it);
|
2014-09-16 16:22:37 +02:00
|
|
|
if (it == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (d->dispatch->interface->device_resumed)
|
|
|
|
|
d->dispatch->interface->device_resumed(d, device);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-04 15:41:37 +10:00
|
|
|
device->is_suspended = false;
|
2014-09-16 16:22:37 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-13 07:39:59 +10:00
|
|
|
void
|
2014-01-30 15:34:00 +10:00
|
|
|
evdev_device_suspend(struct evdev_device *device)
|
2012-08-03 14:38:57 +03:00
|
|
|
{
|
2016-06-09 08:54:00 +10:00
|
|
|
struct libinput *libinput = evdev_libinput_context(device);
|
|
|
|
|
|
2014-09-16 16:22:37 +02:00
|
|
|
evdev_notify_suspended_device(device);
|
|
|
|
|
|
2015-05-19 15:57:11 +10:00
|
|
|
if (device->dispatch->interface->suspend)
|
|
|
|
|
device->dispatch->interface->suspend(device->dispatch,
|
|
|
|
|
device);
|
|
|
|
|
|
2014-01-30 15:55:37 +10:00
|
|
|
if (device->source) {
|
2016-06-09 08:54:00 +10:00
|
|
|
libinput_remove_source(libinput, device->source);
|
2014-01-30 15:55:37 +10:00
|
|
|
device->source = NULL;
|
|
|
|
|
}
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
|
2014-01-30 15:55:37 +10:00
|
|
|
if (device->mtdev) {
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
mtdev_close_delete(device->mtdev);
|
2014-01-30 15:55:37 +10:00
|
|
|
device->mtdev = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (device->fd != -1) {
|
2016-06-09 08:54:00 +10:00
|
|
|
close_restricted(libinput, device->fd);
|
2014-01-30 15:55:37 +10:00
|
|
|
device->fd = -1;
|
|
|
|
|
}
|
2014-01-30 15:34:00 +10:00
|
|
|
}
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
int
|
|
|
|
|
evdev_device_resume(struct evdev_device *device)
|
|
|
|
|
{
|
2016-06-09 08:54:00 +10:00
|
|
|
struct libinput *libinput = evdev_libinput_context(device);
|
2014-08-22 13:40:40 +10:00
|
|
|
int fd;
|
2014-11-20 13:55:48 +10:00
|
|
|
const char *devnode;
|
2014-12-09 15:55:32 +01:00
|
|
|
struct input_event ev;
|
|
|
|
|
enum libevdev_read_status status;
|
2014-08-22 13:40:40 +10:00
|
|
|
|
|
|
|
|
if (device->fd != -1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2014-11-20 13:55:48 +10:00
|
|
|
if (device->was_removed)
|
2014-01-30 16:33:24 +10:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
2014-11-20 13:55:48 +10:00
|
|
|
devnode = udev_device_get_devnode(device->udev_device);
|
2018-02-09 19:24:15 +10:00
|
|
|
if (!devnode)
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
2015-04-30 11:43:28 -05:00
|
|
|
fd = open_restricted(libinput, devnode,
|
|
|
|
|
O_RDWR | O_NONBLOCK | O_CLOEXEC);
|
2014-08-22 13:40:40 +10:00
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
|
return -errno;
|
|
|
|
|
|
2015-05-26 08:49:04 +10:00
|
|
|
if (!evdev_device_have_same_syspath(device->udev_device, fd)) {
|
2014-01-30 16:33:24 +10:00
|
|
|
close_restricted(libinput, fd);
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-16 10:48:39 +10:00
|
|
|
evdev_drain_fd(fd);
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
device->fd = fd;
|
|
|
|
|
|
|
|
|
|
if (evdev_need_mtdev(device)) {
|
|
|
|
|
device->mtdev = mtdev_new_open(device->fd);
|
|
|
|
|
if (!device->mtdev)
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-09 15:55:32 +01:00
|
|
|
libevdev_change_fd(device->evdev, fd);
|
|
|
|
|
libevdev_set_clock_id(device->evdev, CLOCK_MONOTONIC);
|
|
|
|
|
|
|
|
|
|
/* re-sync libevdev's view of the device, but discard the actual
|
|
|
|
|
events. Our device is in a neutral state already */
|
|
|
|
|
libevdev_next_event(device->evdev,
|
|
|
|
|
LIBEVDEV_READ_FLAG_FORCE_SYNC,
|
|
|
|
|
&ev);
|
|
|
|
|
do {
|
|
|
|
|
status = libevdev_next_event(device->evdev,
|
|
|
|
|
LIBEVDEV_READ_FLAG_SYNC,
|
|
|
|
|
&ev);
|
|
|
|
|
} while (status == LIBEVDEV_READ_STATUS_SYNC);
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
device->source =
|
|
|
|
|
libinput_add_fd(libinput, fd, evdev_device_dispatch, device);
|
|
|
|
|
if (!device->source) {
|
|
|
|
|
mtdev_close_delete(device->mtdev);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 16:22:37 +02:00
|
|
|
evdev_notify_resumed_device(device);
|
|
|
|
|
|
2014-08-22 13:40:40 +10:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 15:34:00 +10:00
|
|
|
void
|
|
|
|
|
evdev_device_remove(struct evdev_device *device)
|
|
|
|
|
{
|
2014-09-03 14:34:52 +10:00
|
|
|
struct libinput_device *dev;
|
|
|
|
|
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device, "device removed\n");
|
2017-02-13 15:11:58 +10:00
|
|
|
|
2019-01-30 12:00:47 +10:00
|
|
|
libinput_timer_cancel(&device->scroll.timer);
|
2019-01-31 09:02:58 +10:00
|
|
|
libinput_timer_cancel(&device->middlebutton.timer);
|
2019-01-30 12:00:47 +10:00
|
|
|
|
2014-09-03 14:34:52 +10:00
|
|
|
list_for_each(dev, &device->base.seat->devices_list, link) {
|
2017-01-30 19:48:33 +10:00
|
|
|
struct evdev_device *d = evdev_device(dev);
|
2014-09-03 14:34:52 +10:00
|
|
|
if (dev == &device->base)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (d->dispatch->interface->device_removed)
|
|
|
|
|
d->dispatch->interface->device_removed(d, device);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 15:34:00 +10:00
|
|
|
evdev_device_suspend(device);
|
|
|
|
|
|
2014-12-05 12:39:16 +01:00
|
|
|
if (device->dispatch->interface->remove)
|
|
|
|
|
device->dispatch->interface->remove(device->dispatch);
|
|
|
|
|
|
2014-11-20 13:55:48 +10:00
|
|
|
/* A device may be removed while suspended, mark it to
|
2014-01-30 16:33:24 +10:00
|
|
|
* skip re-opening a different device with the same node */
|
2014-11-20 13:55:48 +10:00
|
|
|
device->was_removed = true;
|
2014-01-30 16:33:24 +10:00
|
|
|
|
Port udev-seat to be used in libinput
This patch ports udev-seat from weston to libinput, including adapting
libinput internals and API to provide seat and device discovery.
The public API is extended with device discovery, object reference, a
seat object. As libinput takes care of creating and destroying its
objects user data getter/setter is added in order to make it possible
for the client to directly associate an object application side with an
object library side.
Device discovery API is made up of the 'seat added', 'seat removed',
'device added' and 'device removed' events. The seat added/removed
events contains a pointer to a libinput_seat struct, while the device
added/removed events contains a pointer to a libinput_device event.
The objects are reference counted with libinput holding one reference by
default. The application can increase the reference count with
libinput_seat_ref() and libinput_device_ref() and decrease the reference
count with libinput_seat_unref() and libinput_device_unref().
The basic event struct is changed to have a 'target' union parameter
that can be either a libinput, libinput_seat or libinput_device struct
pointer.
There is one known problem with the current API that is the potentially
racy initialization.
The problem is when a device is both discovered and lost during initial
dispatchig, causing libinput to first queue a 'added' message, creating
the device with default reference count 1, then before going back to the
application queuing a 'removed' message, while at same time decreasing
reference count of the device to 0, causing it o be destroyed. The queue
will at this state contain two messages with pointers to free:ed memory.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2013-11-23 13:04:32 +01:00
|
|
|
list_remove(&device->base.link);
|
|
|
|
|
|
|
|
|
|
notify_removed_device(&device->base);
|
|
|
|
|
libinput_device_unref(&device->base);
|
2013-11-17 16:59:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
evdev_device_destroy(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
struct evdev_dispatch *dispatch;
|
2013-10-17 23:04:05 +02:00
|
|
|
|
2012-08-03 14:38:57 +03:00
|
|
|
dispatch = device->dispatch;
|
|
|
|
|
if (dispatch)
|
|
|
|
|
dispatch->interface->destroy(dispatch);
|
|
|
|
|
|
2015-02-05 13:39:04 +10:00
|
|
|
if (device->base.group)
|
|
|
|
|
libinput_device_group_unref(device->base.group);
|
|
|
|
|
|
evdev: strip the device name of format directives
This fixes a format string vulnerabilty.
evdev_log_message() composes a format string consisting of a fixed
prefix (including the rendered device name) and the passed-in format
buffer. This format string is then passed with the arguments to the
actual log handler, which usually and eventually ends up being printf.
If the device name contains a printf-style format directive, these ended
up in the format string and thus get interpreted correctly, e.g. for a
device "Foo%sBar" the log message vs printf invocation ends up being:
evdev_log_message(device, "some message %s", "some argument");
printf("event9 - Foo%sBar: some message %s", "some argument");
This can enable an attacker to execute malicious code with the
privileges of the process using libinput.
To exploit this, an attacker needs to be able to create a kernel device
with a malicious name, e.g. through /dev/uinput or a Bluetooth device.
To fix this, convert any potential format directives in the device name
by duplicating percentages.
Pre-rendering the device to avoid the issue altogether would be nicer
but the current log level hooks do not easily allow for this. The device
name is the only user-controlled part of the format string.
A second potential issue is the sysname of the device which is also
sanitized.
This issue was found by Albin Eldstål-Ahrens and Benjamin Svensson from
Assured AB, and independently by Lukas Lamster.
Fixes #752
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-03-30 09:25:22 +10:00
|
|
|
free(device->log_prefix_name);
|
|
|
|
|
free(device->sysname);
|
2017-02-09 11:53:44 +10:00
|
|
|
free(device->output_name);
|
2014-07-04 09:39:05 +10:00
|
|
|
filter_destroy(device->pointer.filter);
|
2017-07-03 11:28:18 +10:00
|
|
|
libinput_timer_destroy(&device->scroll.timer);
|
|
|
|
|
libinput_timer_destroy(&device->middlebutton.timer);
|
2014-01-22 23:48:39 +01:00
|
|
|
libinput_seat_unref(device->base.seat);
|
2013-12-06 12:01:47 +10:00
|
|
|
libevdev_free(device->evdev);
|
2014-11-20 13:55:48 +10:00
|
|
|
udev_device_unref(device->udev_device);
|
2012-08-03 14:38:57 +03:00
|
|
|
free(device);
|
|
|
|
|
}
|
2016-02-10 12:29:55 +10:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
evdev_tablet_has_left_handed(struct evdev_device *device)
|
|
|
|
|
{
|
|
|
|
|
bool has_left_handed = false;
|
|
|
|
|
#if HAVE_LIBWACOM
|
2019-05-27 18:21:09 +10:00
|
|
|
struct libinput *li = evdev_libinput_context(device);
|
|
|
|
|
WacomDeviceDatabase *db = NULL;
|
2016-02-10 12:29:55 +10:00
|
|
|
WacomDevice *d = NULL;
|
|
|
|
|
WacomError *error;
|
|
|
|
|
const char *devnode;
|
|
|
|
|
|
2019-05-27 18:21:09 +10:00
|
|
|
db = libinput_libwacom_ref(li);
|
|
|
|
|
if (!db)
|
2016-02-10 12:29:55 +10:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
error = libwacom_error_new();
|
|
|
|
|
devnode = udev_device_get_devnode(device->udev_device);
|
|
|
|
|
|
|
|
|
|
d = libwacom_new_from_path(db,
|
|
|
|
|
devnode,
|
|
|
|
|
WFALLBACK_NONE,
|
|
|
|
|
error);
|
|
|
|
|
|
|
|
|
|
if (d) {
|
|
|
|
|
if (libwacom_is_reversible(d))
|
|
|
|
|
has_left_handed = true;
|
|
|
|
|
} else if (libwacom_error_get_code(error) == WERROR_UNKNOWN_MODEL) {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_info(device,
|
|
|
|
|
"tablet '%s' unknown to libwacom\n",
|
|
|
|
|
device->devname);
|
2016-02-10 12:29:55 +10:00
|
|
|
} else {
|
2017-02-13 14:17:52 +10:00
|
|
|
evdev_log_error(device,
|
|
|
|
|
"libwacom error: %s\n",
|
|
|
|
|
libwacom_error_get_message(error));
|
2016-02-10 12:29:55 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
|
libwacom_error_free(&error);
|
|
|
|
|
if (d)
|
|
|
|
|
libwacom_destroy(d);
|
2019-05-27 18:21:09 +10:00
|
|
|
if (db)
|
|
|
|
|
libinput_libwacom_unref(li);
|
2016-02-10 12:29:55 +10:00
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
#endif
|
|
|
|
|
return has_left_handed;
|
|
|
|
|
}
|