mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
xwayland/selection: use one target window per selection
Previously, the clipboard and primary selections shared the same window.
This was racey, and could have led to pasting failures.
On xfixes selection owner change notification, the logic for requesting
the supported mimetypes of the new owner's selection looks like:
xcb_convert_selection(
xwm->xcb_conn,
selection->window,
selection->atom,
xwm->atoms[TARGETS],
xwm->atoms[WL_SELECTION],
selection->timestamp
);
This means ask the selection owner to write its TARGETS for the
`selection->atom` selection (one of PRIMARY, CLIPBOARD, DND_SELECTION)
to `selection->window`'s WL_SELECTION atom.
However, `selection->window` is shared for both PRIMARY and CLIPBOARD
selections, and WL_SELECTION is used as the target atom in both cases.
So, there's a race when both selections change at the same time.
The CLIPBOARD selection might support mimetypes {A, B, C}, and the
PRIMARY only {A, B}. If the ConvertSelection requests/responses "cross
on the wire", so to speak, wlroots can end up believing that the PRIMARY
selection also supports C.
A Wayland client may then ask for the PRIMARY selection in C format,
which will fail with "convert selection failed".
This commit fixes this by using a separate window for PRIMARY and
CLIPBOARD target requests, so that WL_SELECTION can be used as the
target atom in both cases.
This commit is contained in:
parent
7964a313e8
commit
2fa257313a
4 changed files with 67 additions and 72 deletions
|
|
@ -174,12 +174,65 @@ int xwm_handle_selection_event(struct wlr_xwm *xwm,
|
|||
|
||||
void xwm_selection_init(struct wlr_xwm_selection *selection,
|
||||
struct wlr_xwm *xwm, xcb_atom_t atom) {
|
||||
selection->xwm = xwm;
|
||||
selection->atom = atom;
|
||||
selection->window = xwm->selection_window;
|
||||
wl_list_init(&selection->incoming);
|
||||
wl_list_init(&selection->outgoing);
|
||||
|
||||
selection->xwm = xwm;
|
||||
selection->atom = atom;
|
||||
selection->window = xcb_generate_id(xwm->xcb_conn);
|
||||
|
||||
if (atom == xwm->atoms[DND_SELECTION]) {
|
||||
xcb_create_window(
|
||||
xwm->xcb_conn,
|
||||
XCB_COPY_FROM_PARENT,
|
||||
selection->window,
|
||||
xwm->screen->root,
|
||||
0, 0,
|
||||
8192, 8192,
|
||||
0,
|
||||
XCB_WINDOW_CLASS_INPUT_ONLY,
|
||||
xwm->screen->root_visual,
|
||||
XCB_CW_EVENT_MASK,
|
||||
(uint32_t[]){
|
||||
XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | XCB_EVENT_MASK_PROPERTY_CHANGE
|
||||
}
|
||||
);
|
||||
|
||||
xcb_change_property(
|
||||
xwm->xcb_conn,
|
||||
XCB_PROP_MODE_REPLACE,
|
||||
selection->window,
|
||||
xwm->atoms[DND_AWARE],
|
||||
XCB_ATOM_ATOM,
|
||||
32, // format
|
||||
1,
|
||||
&(uint32_t){XDND_VERSION}
|
||||
);
|
||||
} else {
|
||||
xcb_create_window(
|
||||
xwm->xcb_conn,
|
||||
XCB_COPY_FROM_PARENT,
|
||||
selection->window,
|
||||
xwm->screen->root,
|
||||
0, 0,
|
||||
10, 10,
|
||||
0,
|
||||
XCB_WINDOW_CLASS_INPUT_OUTPUT,
|
||||
xwm->screen->root_visual,
|
||||
XCB_CW_EVENT_MASK,
|
||||
(uint32_t[]){
|
||||
XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | XCB_EVENT_MASK_PROPERTY_CHANGE
|
||||
}
|
||||
);
|
||||
|
||||
if (atom == xwm->atoms[CLIPBOARD]) {
|
||||
xcb_set_selection_owner(xwm->xcb_conn, selection->window,
|
||||
xwm->atoms[CLIPBOARD_MANAGER], XCB_TIME_CURRENT_TIME);
|
||||
} else {
|
||||
assert(atom == xwm->atoms[PRIMARY]);
|
||||
}
|
||||
}
|
||||
|
||||
uint32_t mask =
|
||||
XCB_XFIXES_SELECTION_EVENT_MASK_SET_SELECTION_OWNER |
|
||||
XCB_XFIXES_SELECTION_EVENT_MASK_SELECTION_WINDOW_DESTROY |
|
||||
|
|
@ -203,6 +256,8 @@ void xwm_selection_finish(struct wlr_xwm_selection *selection) {
|
|||
wl_list_for_each_safe(incoming, tmp, &selection->incoming, link) {
|
||||
xwm_selection_transfer_destroy(incoming);
|
||||
}
|
||||
|
||||
xcb_destroy_window(selection->xwm->xcb_conn, selection->window);
|
||||
}
|
||||
|
||||
static void xwm_selection_set_owner(struct wlr_xwm_selection *selection,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue