x11: Ignore _NET_ACTIVE_WINDOW client messages while grabbed

When a X11 application is started, typically what happens is:

- A startup notification token is created, with a _TIME%d suffix
- The application being spawned receives it through the environment
- (dbus piping, maybe)
- The application replies the startup notification token, and
  fetches the timestamp from it
- The application makes a _NET_ACTIVE_WINDOW client message request
  with this timestamp
- Mutter handles this client request and activates/focuses the window

Prevent this last step if windows are not interactable (e.g. there is
a compositor grab) and ignore the focus request. This specifically
applies to X11 clients requesting focus themselves, and unlike previous
approaches, doesn't try to prevent focus changes that do come through
interaction with Mutter/GNOME Shell.

This should only break if applications do not observe _NET_ACTIVE_WINDOW
and perform XSetInputFocus on themselves, but in that case the X11
keyboard focus is stolen from our hands already.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2878>
This commit is contained in:
Carlos Garnacho 2023-02-28 22:02:05 +01:00 committed by Marge Bot
parent 92792d6850
commit 608d3019b6

View File

@ -3420,7 +3420,8 @@ meta_window_x11_client_message (MetaWindow *window,
event->xclient.data.l[4]); /* height */
}
else if (event->xclient.message_type ==
x11_display->atom__NET_ACTIVE_WINDOW)
x11_display->atom__NET_ACTIVE_WINDOW &&
meta_display_windows_are_interactable (window->display))
{
MetaClientType source_indication;
guint32 timestamp;