mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 07:30:42 -05:00
wayland: Add Xwayland grab keyboard support
This protocol is limited to Xwayland only and is not visible/usable by any other client. Mutter uses the following mechanisms to determine if an X11 client should be granted a grab: - is "xwayland-allow-grabs" set? - if set, is the client blacklisted? - otherwise, has the client set the X11 window property _XWAYLAND_MAY_GRAB_KEYBOARD on the window using a client message? - if not, is it a client white-listed either via the default system list or the settings "xwayland-grab-access-rules"? https://bugzilla.gnome.org/show_bug.cgi?id=783342
This commit is contained in:
parent
519a0fd93d
commit
072afa5fa3
2
.gitignore
vendored
2
.gitignore
vendored
@ -90,6 +90,8 @@ src/xdg-foreign-unstable-v*-protocol.c
|
||||
src/xdg-foreign-unstable-v*-server-protocol.h
|
||||
src/xdg-output-unstable-v1-protocol.c
|
||||
src/xdg-output-unstable-v1-server-protocol.h
|
||||
src/xwayland-keyboard-grab-unstable-v1-protocol.c
|
||||
src/xwayland-keyboard-grab-unstable-v1-server-protocol.h
|
||||
src/meta/meta-version.h
|
||||
src/libmutter-*.pc
|
||||
doc/reference/*.args
|
||||
|
@ -84,6 +84,8 @@ mutter_built_sources += \
|
||||
keyboard-shortcuts-inhibit-unstable-v1-server-protocol.h \
|
||||
xdg-output-unstable-v1-protocol.c \
|
||||
xdg-output-unstable-v1-server-protocol.h \
|
||||
xwayland-keyboard-grab-unstable-v1-protocol.c \
|
||||
xwayland-keyboard-grab-unstable-v1-server-protocol.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
@ -449,6 +451,8 @@ libmutter_@LIBMUTTER_API_VERSION@_la_SOURCES += \
|
||||
wayland/meta-wayland-inhibit-shortcuts.h \
|
||||
wayland/meta-wayland-inhibit-shortcuts-dialog.c \
|
||||
wayland/meta-wayland-inhibit-shortcuts-dialog.h \
|
||||
wayland/meta-xwayland-grab-keyboard.c \
|
||||
wayland/meta-xwayland-grab-keyboard.h \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
@ -749,4 +753,7 @@ keyboard-shortcuts-inhibit-unstable-v1-server-protocol.h : $(WAYLAND_PROTOCOLS_D
|
||||
xdg-output-unstable-v1-protocol.c : $(WAYLAND_PROTOCOLS_DATADIR)/unstable/xdg-output/xdg-output-unstable-v1.xml
|
||||
$(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
|
||||
xdg-output-unstable-v1-server-protocol.h : $(WAYLAND_PROTOCOLS_DATADIR)/unstable/xdg-output/xdg-output-unstable-v1.xml
|
||||
xwayland-keyboard-grab-unstable-v1-protocol.c : $(WAYLAND_PROTOCOLS_DATADIR)/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml
|
||||
$(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
|
||||
xwayland-keyboard-grab-unstable-v1-server-protocol.h : $(WAYLAND_PROTOCOLS_DATADIR)/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml
|
||||
$(AM_V_GEN)$(WAYLAND_SCANNER) server-header < $< > $@
|
||||
|
@ -50,5 +50,6 @@
|
||||
#define META_ZWP_LINUX_DMABUF_V1_VERSION 3
|
||||
#define META_ZWP_KEYBOARD_SHORTCUTS_INHIBIT_V1_VERSION 1
|
||||
#define META_ZXDG_OUTPUT_V1_VERSION 1
|
||||
#define META_ZWP_XWAYLAND_KEYBOARD_GRAB_V1_VERSION 1
|
||||
|
||||
#endif
|
||||
|
@ -44,6 +44,7 @@
|
||||
#include "meta-wayland-dma-buf.h"
|
||||
#include "meta-wayland-inhibit-shortcuts.h"
|
||||
#include "meta-wayland-inhibit-shortcuts-dialog.h"
|
||||
#include "meta-xwayland-grab-keyboard.h"
|
||||
|
||||
static MetaWaylandCompositor _meta_wayland_compositor;
|
||||
static char *_display_name_override;
|
||||
@ -322,6 +323,23 @@ meta_wayland_pre_clutter_init (void)
|
||||
clutter_wayland_set_compositor_display (compositor->wayland_display);
|
||||
}
|
||||
|
||||
static bool
|
||||
meta_xwayland_global_filter (const struct wl_client *client,
|
||||
const struct wl_global *global,
|
||||
void *data)
|
||||
{
|
||||
MetaWaylandCompositor *compositor = (MetaWaylandCompositor *) data;
|
||||
MetaXWaylandManager *xwayland_manager = &compositor->xwayland_manager;
|
||||
|
||||
/* Keyboard grabbing protocol is for Xwayland only */
|
||||
if (client != xwayland_manager->client)
|
||||
return (wl_global_get_interface (global) !=
|
||||
&zwp_xwayland_keyboard_grab_manager_v1_interface);
|
||||
|
||||
/* All others are visible to all clients */
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
meta_wayland_override_display_name (char *display_name)
|
||||
{
|
||||
@ -367,6 +385,12 @@ meta_wayland_init (void)
|
||||
meta_wayland_keyboard_shortcuts_inhibit_init (compositor);
|
||||
meta_wayland_surface_inhibit_shortcuts_dialog_init ();
|
||||
|
||||
/* Xwayland specific protocol, needs to be filtered out for all other clients */
|
||||
if (meta_xwayland_grab_keyboard_init (compositor))
|
||||
wl_display_set_global_filter (compositor->wayland_display,
|
||||
meta_xwayland_global_filter,
|
||||
compositor);
|
||||
|
||||
if (!meta_xwayland_start (&compositor->xwayland_manager, compositor->wayland_display))
|
||||
g_error ("Failed to start X Wayland");
|
||||
|
||||
|
327
src/wayland/meta-xwayland-grab-keyboard.c
Normal file
327
src/wayland/meta-xwayland-grab-keyboard.c
Normal file
@ -0,0 +1,327 @@
|
||||
/*
|
||||
* Copyright (C) 2017 Red Hat
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
* 02111-1307, USA.
|
||||
*
|
||||
* Written by:
|
||||
* Olivier Fourdan <ofourdan@redhat.com>
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <wayland-server.h>
|
||||
|
||||
#include "meta/meta-backend.h"
|
||||
#include "backends/meta-settings-private.h"
|
||||
#include "wayland/meta-wayland-private.h"
|
||||
#include "wayland/meta-wayland-versions.h"
|
||||
#include "wayland/meta-wayland-seat.h"
|
||||
#include "wayland/meta-window-wayland.h"
|
||||
#include "wayland/meta-xwayland-grab-keyboard.h"
|
||||
|
||||
struct _MetaXwaylandKeyboardActiveGrab
|
||||
{
|
||||
MetaWaylandSurface *surface;
|
||||
MetaWaylandSeat *seat;
|
||||
MetaWaylandKeyboardGrab keyboard_grab;
|
||||
gulong surface_destroyed_handler;
|
||||
gulong shortcuts_restored_handler;
|
||||
gulong window_associate_handler;
|
||||
struct wl_resource *resource;
|
||||
};
|
||||
|
||||
static gboolean
|
||||
meta_xwayland_keyboard_grab_key (MetaWaylandKeyboardGrab *grab,
|
||||
const ClutterEvent *event)
|
||||
{
|
||||
MetaXwaylandKeyboardActiveGrab *active_grab;
|
||||
MetaWaylandKeyboard *keyboard;
|
||||
|
||||
active_grab = wl_container_of (grab, active_grab, keyboard_grab);
|
||||
keyboard = active_grab->keyboard_grab.keyboard;
|
||||
|
||||
/* Force focus onto the surface who has the active grab on the keyboard */
|
||||
if (active_grab->surface != NULL && keyboard->focus_surface != active_grab->surface)
|
||||
meta_wayland_keyboard_set_focus (keyboard, active_grab->surface);
|
||||
|
||||
/* Chain-up with default keyboard handler */
|
||||
return keyboard->default_grab.interface->key (&keyboard->default_grab, event);
|
||||
}
|
||||
|
||||
static void
|
||||
meta_xwayland_keyboard_grab_modifiers (MetaWaylandKeyboardGrab *grab,
|
||||
ClutterModifierType modifiers)
|
||||
{
|
||||
MetaXwaylandKeyboardActiveGrab *active_grab;
|
||||
MetaWaylandKeyboard *keyboard;
|
||||
|
||||
active_grab = wl_container_of (grab, active_grab, keyboard_grab);
|
||||
keyboard = active_grab->keyboard_grab.keyboard;
|
||||
|
||||
/* Force focus onto the surface who has the active grab on the keyboard */
|
||||
if (active_grab->surface != NULL && keyboard->focus_surface != active_grab->surface)
|
||||
meta_wayland_keyboard_set_focus (keyboard, active_grab->surface);
|
||||
|
||||
/* Chain-up with default keyboard handler */
|
||||
return keyboard->default_grab.interface->modifiers (&keyboard->default_grab,
|
||||
modifiers);
|
||||
}
|
||||
|
||||
static void
|
||||
meta_xwayland_keyboard_grab_end (MetaXwaylandKeyboardActiveGrab *active_grab)
|
||||
{
|
||||
MetaWaylandSeat *seat = active_grab->seat;
|
||||
|
||||
if (!active_grab->surface)
|
||||
return;
|
||||
|
||||
g_signal_handler_disconnect (active_grab->surface,
|
||||
active_grab->surface_destroyed_handler);
|
||||
|
||||
g_signal_handler_disconnect (active_grab->surface,
|
||||
active_grab->shortcuts_restored_handler);
|
||||
|
||||
meta_wayland_surface_restore_shortcuts (active_grab->surface,
|
||||
active_grab->seat);
|
||||
|
||||
if (active_grab->window_associate_handler)
|
||||
{
|
||||
g_signal_handler_disconnect (active_grab->surface->role,
|
||||
active_grab->window_associate_handler);
|
||||
active_grab->window_associate_handler = 0;
|
||||
}
|
||||
|
||||
if (seat->keyboard->grab->interface->key == meta_xwayland_keyboard_grab_key)
|
||||
{
|
||||
meta_wayland_keyboard_end_grab (active_grab->keyboard_grab.keyboard);
|
||||
meta_wayland_keyboard_set_focus (active_grab->keyboard_grab.keyboard, NULL);
|
||||
meta_display_sync_wayland_input_focus (meta_get_display ());
|
||||
}
|
||||
|
||||
active_grab->surface = NULL;
|
||||
}
|
||||
|
||||
static const MetaWaylandKeyboardGrabInterface
|
||||
keyboard_grab_interface = {
|
||||
meta_xwayland_keyboard_grab_key,
|
||||
meta_xwayland_keyboard_grab_modifiers
|
||||
};
|
||||
|
||||
static void
|
||||
zwp_xwayland_keyboard_grab_destructor (struct wl_resource *resource)
|
||||
{
|
||||
MetaXwaylandKeyboardActiveGrab *active_grab;
|
||||
|
||||
active_grab = wl_resource_get_user_data (resource);
|
||||
meta_xwayland_keyboard_grab_end (active_grab);
|
||||
|
||||
g_free (active_grab);
|
||||
}
|
||||
|
||||
static void
|
||||
zwp_xwayland_keyboard_grab_destroy (struct wl_client *client,
|
||||
struct wl_resource *resource)
|
||||
{
|
||||
wl_resource_destroy (resource);
|
||||
}
|
||||
|
||||
static const struct zwp_xwayland_keyboard_grab_v1_interface
|
||||
xwayland_keyboard_grab_interface = {
|
||||
zwp_xwayland_keyboard_grab_destroy,
|
||||
};
|
||||
|
||||
static void
|
||||
surface_destroyed_cb (MetaWaylandSurface *surface,
|
||||
MetaXwaylandKeyboardActiveGrab *active_grab)
|
||||
{
|
||||
active_grab->surface = NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
shortcuts_restored_cb (MetaWaylandSurface *surface,
|
||||
MetaXwaylandKeyboardActiveGrab *active_grab)
|
||||
{
|
||||
meta_xwayland_keyboard_grab_end (active_grab);
|
||||
}
|
||||
|
||||
static void
|
||||
zwp_xwayland_keyboard_grab_manager_destroy (struct wl_client *client,
|
||||
struct wl_resource *resource)
|
||||
{
|
||||
wl_resource_destroy (resource);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
application_is_in_pattern_array (MetaWindow *window,
|
||||
GPtrArray *pattern_array)
|
||||
{
|
||||
guint i;
|
||||
|
||||
for (i = 0; pattern_array && i < pattern_array->len; i++)
|
||||
{
|
||||
GPatternSpec *pattern = (GPatternSpec *) g_ptr_array_index (pattern_array, i);
|
||||
|
||||
if ((window->res_class && g_pattern_match_string (pattern, window->res_class)) ||
|
||||
(window->res_name && g_pattern_match_string (pattern, window->res_name)))
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
meta_xwayland_grab_is_granted (MetaWindow *window)
|
||||
{
|
||||
MetaBackend *backend;
|
||||
MetaSettings *settings;
|
||||
GPtrArray *whitelist;
|
||||
GPtrArray *blacklist;
|
||||
gboolean may_grab;
|
||||
|
||||
backend = meta_get_backend ();
|
||||
settings = meta_backend_get_settings (backend);
|
||||
if (!meta_settings_are_xwayland_grabs_allowed (settings))
|
||||
return FALSE;
|
||||
|
||||
/* Check whether the window is blacklisted */
|
||||
meta_settings_get_xwayland_grab_patterns (settings, &whitelist, &blacklist);
|
||||
|
||||
if (blacklist && application_is_in_pattern_array (window, blacklist))
|
||||
return FALSE;
|
||||
|
||||
/* Check if we are dealing with good citizen Xwayland client whitelisting itself. */
|
||||
g_object_get (G_OBJECT (window), "xwayland-may-grab-keyboard", &may_grab, NULL);
|
||||
if (may_grab)
|
||||
return TRUE;
|
||||
|
||||
/* Last resort, is it white listed. */
|
||||
if (whitelist && application_is_in_pattern_array (window, whitelist))
|
||||
return TRUE;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
meta_xwayland_keyboard_grab_activate (MetaXwaylandKeyboardActiveGrab *active_grab)
|
||||
{
|
||||
MetaWaylandSurface *surface = active_grab->surface;
|
||||
MetaWindow *window = surface->window;
|
||||
MetaWaylandSeat *seat = active_grab->seat;
|
||||
|
||||
if (meta_xwayland_grab_is_granted (window))
|
||||
{
|
||||
meta_verbose ("XWayland window %s has a grab granted", window->desc);
|
||||
meta_wayland_surface_inhibit_shortcuts (surface, seat);
|
||||
/* Use a grab for O-R windows which never receive keyboard focus otherwise */
|
||||
if (window->override_redirect)
|
||||
meta_wayland_keyboard_start_grab (seat->keyboard, &active_grab->keyboard_grab);
|
||||
}
|
||||
if (active_grab->window_associate_handler)
|
||||
{
|
||||
g_signal_handler_disconnect (active_grab->surface->role,
|
||||
active_grab->window_associate_handler);
|
||||
active_grab->window_associate_handler = 0;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
meta_xwayland_keyboard_window_associated (MetaWaylandSurfaceRole *surface_role,
|
||||
MetaXwaylandKeyboardActiveGrab *active_grab)
|
||||
{
|
||||
meta_xwayland_keyboard_grab_activate (active_grab);
|
||||
}
|
||||
|
||||
static void
|
||||
zwp_xwayland_keyboard_grab_manager_grab (struct wl_client *client,
|
||||
struct wl_resource *resource,
|
||||
uint32_t id,
|
||||
struct wl_resource *surface_resource,
|
||||
struct wl_resource *seat_resource)
|
||||
{
|
||||
MetaWaylandSurface *surface = wl_resource_get_user_data (surface_resource);
|
||||
MetaWindow *window = surface->window;
|
||||
MetaWaylandSeat *seat = wl_resource_get_user_data (seat_resource);
|
||||
MetaXwaylandKeyboardActiveGrab *active_grab;
|
||||
struct wl_resource *grab_resource;
|
||||
|
||||
grab_resource = wl_resource_create (client,
|
||||
&zwp_xwayland_keyboard_grab_manager_v1_interface,
|
||||
wl_resource_get_version (resource),
|
||||
id);
|
||||
|
||||
active_grab = g_new0 (MetaXwaylandKeyboardActiveGrab, 1);
|
||||
active_grab->surface = surface;
|
||||
active_grab->resource = grab_resource;
|
||||
active_grab->seat = seat;
|
||||
active_grab->keyboard_grab.interface = &keyboard_grab_interface;
|
||||
active_grab->surface_destroyed_handler =
|
||||
g_signal_connect (surface, "destroy",
|
||||
G_CALLBACK (surface_destroyed_cb),
|
||||
active_grab);
|
||||
active_grab->shortcuts_restored_handler =
|
||||
g_signal_connect (surface, "shortcuts-restored",
|
||||
G_CALLBACK (shortcuts_restored_cb),
|
||||
active_grab);
|
||||
|
||||
if (window)
|
||||
meta_xwayland_keyboard_grab_activate (active_grab);
|
||||
else if (surface->role)
|
||||
active_grab->window_associate_handler =
|
||||
g_signal_connect (surface->role, "window-associated",
|
||||
G_CALLBACK (meta_xwayland_keyboard_window_associated),
|
||||
active_grab);
|
||||
else
|
||||
g_warning ("Cannot grant Xwayland grab to surface %p", surface);
|
||||
|
||||
wl_resource_set_implementation (grab_resource,
|
||||
&xwayland_keyboard_grab_interface,
|
||||
active_grab,
|
||||
zwp_xwayland_keyboard_grab_destructor);
|
||||
}
|
||||
|
||||
static const struct zwp_xwayland_keyboard_grab_manager_v1_interface
|
||||
meta_keyboard_grab_manager_interface = {
|
||||
zwp_xwayland_keyboard_grab_manager_destroy,
|
||||
zwp_xwayland_keyboard_grab_manager_grab,
|
||||
};
|
||||
|
||||
static void
|
||||
bind_keyboard_grab (struct wl_client *client,
|
||||
void *data,
|
||||
uint32_t version,
|
||||
uint32_t id)
|
||||
{
|
||||
struct wl_resource *resource;
|
||||
|
||||
resource = wl_resource_create (client,
|
||||
&zwp_xwayland_keyboard_grab_manager_v1_interface,
|
||||
MIN (META_ZWP_XWAYLAND_KEYBOARD_GRAB_V1_VERSION, version),
|
||||
id);
|
||||
|
||||
wl_resource_set_implementation (resource,
|
||||
&meta_keyboard_grab_manager_interface,
|
||||
NULL, NULL);
|
||||
}
|
||||
|
||||
gboolean
|
||||
meta_xwayland_grab_keyboard_init (MetaWaylandCompositor *compositor)
|
||||
{
|
||||
return (wl_global_create (compositor->wayland_display,
|
||||
&zwp_xwayland_keyboard_grab_manager_v1_interface,
|
||||
META_ZWP_XWAYLAND_KEYBOARD_GRAB_V1_VERSION,
|
||||
NULL,
|
||||
bind_keyboard_grab) != NULL);
|
||||
}
|
40
src/wayland/meta-xwayland-grab-keyboard.h
Normal file
40
src/wayland/meta-xwayland-grab-keyboard.h
Normal file
@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright (C) 2017 Red Hat
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
* 02111-1307, USA.
|
||||
*
|
||||
* Written by:
|
||||
* Olivier Fourdan <ofourdan@redhat.com>
|
||||
*/
|
||||
|
||||
#ifndef META_XWAYLAND_GRAB_KEYBOARD_H
|
||||
#define META_XWAYLAND_GRAB_KEYBOARD_H
|
||||
|
||||
#include <wayland-server.h>
|
||||
|
||||
#include "wayland/meta-wayland-types.h"
|
||||
#include "xwayland-keyboard-grab-unstable-v1-server-protocol.h"
|
||||
#include "meta/window.h"
|
||||
|
||||
#define META_TYPE_XWAYLAND_KEYBOARD_ACTIVE_GRAB (meta_xwayland_keyboard_active_grab_get_type ())
|
||||
G_DECLARE_FINAL_TYPE (MetaXwaylandKeyboardActiveGrab,
|
||||
meta_xwayland_keyboard_active_grab,
|
||||
META, XWAYLAND_KEYBOARD_ACTIVE_GRAB,
|
||||
GObject);
|
||||
|
||||
gboolean meta_xwayland_grab_keyboard_init (MetaWaylandCompositor *compositor);
|
||||
|
||||
#endif /* META_XWAYLAND_GRAB_KEYBOARD_H */
|
Loading…
Reference in New Issue
Block a user