wlroots-hyprland/include/backend/libinput.h

140 lines
5.1 KiB
C
Raw Permalink Normal View History

#ifndef BACKEND_LIBINPUT_H
#define BACKEND_LIBINPUT_H
2018-02-12 21:29:23 +01:00
2017-06-09 17:28:10 +02:00
#include <libinput.h>
#include <wayland-server-core.h>
2017-06-21 18:10:07 +02:00
#include <wlr/backend/interface.h>
2018-09-17 21:53:03 +02:00
#include <wlr/backend/libinput.h>
2022-02-24 21:53:54 +01:00
#include <wlr/types/wlr_keyboard.h>
#include <wlr/types/wlr_pointer.h>
#include <wlr/types/wlr_switch.h>
#include <wlr/types/wlr_tablet_pad.h>
#include <wlr/types/wlr_tablet_tool.h>
#include <wlr/types/wlr_touch.h>
2017-06-09 17:28:10 +02:00
#include "config.h"
struct wlr_libinput_backend {
struct wlr_backend backend;
2017-06-09 17:28:10 +02:00
struct wlr_session *session;
struct libinput *libinput_context;
2017-06-09 17:28:10 +02:00
struct wl_event_source *input_event;
backend/drm, backend/libinput: listen to session destroy This fixes a heap-use-after-free when the session is destroyed before the backend during wl_display_destroy: ==1085==ERROR: AddressSanitizer: heap-use-after-free on address 0x614000000180 at pc 0x7f88e3590c2d bp 0x7ffdc4e33f90 sp 0x7ffdc4e33f80 READ of size 8 at 0x614000000180 thread T0 #0 0x7f88e3590c2c in find_device ../subprojects/wlroots/backend/session/session.c:192 #1 0x7f88e3590e85 in wlr_session_close_file ../subprojects/wlroots/backend/session/session.c:204 #2 0x7f88e357b80c in libinput_close_restricted ../subprojects/wlroots/backend/libinput/backend.c:24 #3 0x7f88e21af274 (/lib64/libinput.so.10+0x28274) #4 0x7f88e21aff1d (/lib64/libinput.so.10+0x28f1d) #5 0x7f88e219ddac (/lib64/libinput.so.10+0x16dac) #6 0x7f88e21b415d in libinput_unref (/lib64/libinput.so.10+0x2d15d) #7 0x7f88e357c9d6 in backend_destroy ../subprojects/wlroots/backend/libinput/backend.c:130 #8 0x7f88e3545a09 in wlr_backend_destroy ../subprojects/wlroots/backend/backend.c:50 #9 0x7f88e358981a in multi_backend_destroy ../subprojects/wlroots/backend/multi/backend.c:54 #10 0x7f88e358a059 in handle_display_destroy ../subprojects/wlroots/backend/multi/backend.c:107 #11 0x7f88e314acde (/lib64/libwayland-server.so.0+0x8cde) #12 0x7f88e314b466 in wl_display_destroy (/lib64/libwayland-server.so.0+0x9466) #13 0x559fefb52385 in main ../main.c:67 #14 0x7f88e2639152 in __libc_start_main (/lib64/libc.so.6+0x27152) #15 0x559fefb4297d in _start (/home/simon/src/glider/build/glider+0x2297d) 0x614000000180 is located 320 bytes inside of 416-byte region [0x614000000040,0x6140000001e0) freed by thread T0 here: #0 0x7f88e3d0a6b0 in __interceptor_free /build/gcc/src/gcc/libsanitizer/asan/asan_malloc_linux.cc:122 #1 0x7f88e35b51fb in logind_session_destroy ../subprojects/wlroots/backend/session/logind.c:270 #2 0x7f88e35905a4 in wlr_session_destroy ../subprojects/wlroots/backend/session/session.c:156 #3 0x7f88e358f440 in handle_display_destroy ../subprojects/wlroots/backend/session/session.c:65 #4 0x7f88e314acde (/lib64/libwayland-server.so.0+0x8cde) previously allocated by thread T0 here: #0 0x7f88e3d0acd8 in __interceptor_calloc /build/gcc/src/gcc/libsanitizer/asan/asan_malloc_linux.cc:153 #1 0x7f88e35b911c in logind_session_create ../subprojects/wlroots/backend/session/logind.c:746 #2 0x7f88e358f6b4 in wlr_session_create ../subprojects/wlroots/backend/session/session.c:91 #3 0x559fefb51ea6 in main ../main.c:20 #4 0x7f88e2639152 in __libc_start_main (/lib64/libc.so.6+0x27152)
2019-11-30 11:57:37 +01:00
struct wl_listener session_destroy;
2017-06-21 03:31:29 +02:00
struct wl_listener session_signal;
struct wl_list devices; // wlr_libinput_device.link
2017-06-09 17:28:10 +02:00
};
2017-08-14 14:54:53 +02:00
struct wlr_libinput_input_device {
2017-06-10 18:21:54 +02:00
struct libinput_device *handle;
struct wlr_keyboard keyboard;
struct wlr_pointer pointer;
struct wlr_switch switch_device;
struct wlr_touch touch;
struct wlr_tablet tablet;
struct wl_list tablet_tools; // see backend/libinput/tablet_tool.c
struct wlr_tablet_pad tablet_pad;
struct wl_list link;
2017-06-10 18:21:54 +02:00
};
2018-04-03 18:50:05 +02:00
uint32_t usec_to_msec(uint64_t usec);
void handle_libinput_event(struct wlr_libinput_backend *state,
struct libinput_event *event);
void destroy_libinput_input_device(struct wlr_libinput_input_device *dev);
const char *get_libinput_device_name(struct libinput_device *device);
extern const struct wlr_keyboard_impl libinput_keyboard_impl;
extern const struct wlr_pointer_impl libinput_pointer_impl;
extern const struct wlr_switch_impl libinput_switch_impl;
extern const struct wlr_tablet_impl libinput_tablet_impl;
extern const struct wlr_tablet_pad_impl libinput_tablet_pad_impl;
extern const struct wlr_touch_impl libinput_touch_impl;
void init_device_keyboard(struct wlr_libinput_input_device *dev);
struct wlr_libinput_input_device *device_from_keyboard(struct wlr_keyboard *kb);
void handle_keyboard_key(struct libinput_event *event, struct wlr_keyboard *kb);
2017-06-13 16:27:15 +02:00
void init_device_pointer(struct wlr_libinput_input_device *dev);
struct wlr_libinput_input_device *device_from_pointer(struct wlr_pointer *kb);
2017-06-13 16:27:15 +02:00
void handle_pointer_motion(struct libinput_event *event,
struct wlr_pointer *pointer);
2017-06-13 16:27:15 +02:00
void handle_pointer_motion_abs(struct libinput_event *event,
struct wlr_pointer *pointer);
2017-06-13 16:27:15 +02:00
void handle_pointer_button(struct libinput_event *event,
struct wlr_pointer *pointer);
2017-06-13 16:27:15 +02:00
void handle_pointer_axis(struct libinput_event *event,
struct wlr_pointer *pointer);
#if HAVE_LIBINPUT_SCROLL_VALUE120
void handle_pointer_axis_value120(struct libinput_event *event,
struct wlr_pointer *pointer, enum wl_pointer_axis_source source);
#endif
void handle_pointer_swipe_begin(struct libinput_event *event,
struct wlr_pointer *pointer);
void handle_pointer_swipe_update(struct libinput_event *event,
struct wlr_pointer *pointer);
void handle_pointer_swipe_end(struct libinput_event *event,
struct wlr_pointer *pointer);
void handle_pointer_pinch_begin(struct libinput_event *event,
struct wlr_pointer *pointer);
void handle_pointer_pinch_update(struct libinput_event *event,
struct wlr_pointer *pointer);
void handle_pointer_pinch_end(struct libinput_event *event,
struct wlr_pointer *pointer);
void handle_pointer_hold_begin(struct libinput_event *event,
struct wlr_pointer *pointer);
void handle_pointer_hold_end(struct libinput_event *event,
struct wlr_pointer *pointer);
void init_device_switch(struct wlr_libinput_input_device *dev);
struct wlr_libinput_input_device *device_from_switch(
struct wlr_switch *switch_device);
void handle_switch_toggle(struct libinput_event *event,
struct wlr_switch *switch_device);
void init_device_touch(struct wlr_libinput_input_device *dev);
struct wlr_libinput_input_device *device_from_touch(
struct wlr_touch *touch);
2017-06-14 17:40:03 +02:00
void handle_touch_down(struct libinput_event *event,
struct wlr_touch *touch);
2017-06-14 17:40:03 +02:00
void handle_touch_up(struct libinput_event *event,
struct wlr_touch *touch);
2017-06-14 17:40:03 +02:00
void handle_touch_motion(struct libinput_event *event,
struct wlr_touch *touch);
2017-06-14 17:40:03 +02:00
void handle_touch_cancel(struct libinput_event *event,
struct wlr_touch *touch);
void handle_touch_frame(struct libinput_event *event,
struct wlr_touch *touch);
2017-06-14 17:40:03 +02:00
void init_device_tablet(struct wlr_libinput_input_device *dev);
void finish_device_tablet(struct wlr_libinput_input_device *dev);
struct wlr_libinput_input_device *device_from_tablet(
struct wlr_tablet *tablet);
2017-06-15 20:32:28 +02:00
void handle_tablet_tool_axis(struct libinput_event *event,
struct wlr_tablet *tablet);
2017-06-15 20:32:28 +02:00
void handle_tablet_tool_proximity(struct libinput_event *event,
struct wlr_tablet *tablet);
2017-06-15 20:32:28 +02:00
void handle_tablet_tool_tip(struct libinput_event *event,
struct wlr_tablet *tablet);
2017-06-15 20:32:28 +02:00
void handle_tablet_tool_button(struct libinput_event *event,
struct wlr_tablet *tablet);
2017-06-15 20:32:28 +02:00
void init_device_tablet_pad(struct wlr_libinput_input_device *dev);
void finish_device_tablet_pad(struct wlr_libinput_input_device *dev);
struct wlr_libinput_input_device *device_from_tablet_pad(
struct wlr_tablet_pad *tablet_pad);
2017-06-19 20:49:07 +02:00
void handle_tablet_pad_button(struct libinput_event *event,
struct wlr_tablet_pad *tablet_pad);
2017-06-19 20:49:07 +02:00
void handle_tablet_pad_ring(struct libinput_event *event,
struct wlr_tablet_pad *tablet_pad);
2017-06-19 20:49:07 +02:00
void handle_tablet_pad_strip(struct libinput_event *event,
struct wlr_tablet_pad *tablet_pad);
2017-06-19 20:49:07 +02:00
2017-06-09 17:28:10 +02:00
#endif