2019-03-06 00:32:24 +01:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <errno.h>
|
2017-08-19 17:59:31 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdlib.h>
|
2017-08-19 17:59:31 +02:00
|
|
|
#include <sys/socket.h>
|
2017-08-23 23:19:15 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2017-08-19 17:59:31 +02:00
|
|
|
#include <time.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <unistd.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2018-02-12 09:12:31 +01:00
|
|
|
#include <wlr/util/log.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/xwayland.h>
|
2017-08-20 07:59:03 +02:00
|
|
|
#include "sockets.h"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.h"
|
2018-03-03 17:03:19 +01:00
|
|
|
#include "xwayland/xwm.h"
|
2017-08-19 17:59:31 +02:00
|
|
|
|
2017-11-02 16:49:22 +01:00
|
|
|
struct wlr_xwayland_cursor {
|
|
|
|
uint8_t *pixels;
|
|
|
|
uint32_t stride;
|
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
int32_t hotspot_x;
|
|
|
|
int32_t hotspot_y;
|
|
|
|
};
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
static void handle_server_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_xwayland *xwayland =
|
|
|
|
wl_container_of(listener, xwayland, server_destroy);
|
|
|
|
wlr_xwayland_destroy(xwayland);
|
2017-08-19 17:59:31 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
static void handle_server_ready(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_xwayland *xwayland =
|
|
|
|
wl_container_of(listener, xwayland, server_ready);
|
|
|
|
struct wlr_xwayland_server_ready_event *event = data;
|
2017-12-08 01:38:45 +01:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->xwm = xwm_create(xwayland, event->wm_fd);
|
|
|
|
if (!xwayland->xwm) {
|
2018-05-07 00:43:26 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
if (xwayland->seat) {
|
|
|
|
xwm_set_seat(xwayland->xwm, xwayland->seat);
|
2017-11-22 14:23:23 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
if (xwayland->cursor != NULL) {
|
|
|
|
struct wlr_xwayland_cursor *cur = xwayland->cursor;
|
|
|
|
xwm_set_cursor(xwayland->xwm, cur->pixels, cur->stride, cur->width,
|
2017-11-02 16:49:22 +01:00
|
|
|
cur->height, cur->hotspot_x, cur->hotspot_y);
|
|
|
|
free(cur);
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->cursor = NULL;
|
2017-11-02 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
wlr_signal_emit_safe(&xwayland->events.ready, NULL);
|
2018-05-06 20:23:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
void wlr_xwayland_destroy(struct wlr_xwayland *xwayland) {
|
|
|
|
if (!xwayland) {
|
2018-09-08 13:00:56 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
wl_list_remove(&xwayland->server_destroy.link);
|
|
|
|
wl_list_remove(&xwayland->server_ready.link);
|
2021-01-17 12:26:10 +01:00
|
|
|
free(xwayland->cursor);
|
2020-05-05 10:24:08 +02:00
|
|
|
|
|
|
|
wlr_xwayland_set_seat(xwayland, NULL);
|
|
|
|
wlr_xwayland_server_destroy(xwayland->server);
|
|
|
|
free(xwayland);
|
2017-08-20 07:59:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display,
|
2018-05-06 20:23:10 +02:00
|
|
|
struct wlr_compositor *compositor, bool lazy) {
|
2020-05-05 10:24:08 +02:00
|
|
|
struct wlr_xwayland *xwayland = calloc(1, sizeof(struct wlr_xwayland));
|
|
|
|
if (!xwayland) {
|
2018-05-08 22:22:35 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-06 20:23:10 +02:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->wl_display = wl_display;
|
|
|
|
xwayland->compositor = compositor;
|
2018-05-06 20:23:10 +02:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
wl_signal_init(&xwayland->events.new_surface);
|
|
|
|
wl_signal_init(&xwayland->events.ready);
|
2017-12-29 20:50:50 +01:00
|
|
|
|
2020-05-19 17:28:23 +02:00
|
|
|
struct wlr_xwayland_server_options options = {
|
|
|
|
.lazy = lazy,
|
|
|
|
.enable_wm = true,
|
|
|
|
};
|
|
|
|
xwayland->server = wlr_xwayland_server_create(wl_display, &options);
|
2020-05-05 10:24:08 +02:00
|
|
|
if (xwayland->server == NULL) {
|
2020-06-04 16:23:51 +02:00
|
|
|
free(xwayland);
|
2020-05-05 10:24:08 +02:00
|
|
|
return NULL;
|
2018-05-06 20:23:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->display_name = xwayland->server->display_name;
|
2018-05-06 20:23:10 +02:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->server_destroy.notify = handle_server_destroy;
|
|
|
|
wl_signal_add(&xwayland->server->events.destroy, &xwayland->server_destroy);
|
2018-05-06 20:23:10 +02:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->server_ready.notify = handle_server_ready;
|
|
|
|
wl_signal_add(&xwayland->server->events.ready, &xwayland->server_ready);
|
2018-05-06 20:23:10 +02:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
return xwayland;
|
2017-08-20 07:59:03 +02:00
|
|
|
}
|
2017-11-02 16:49:22 +01:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
void wlr_xwayland_set_cursor(struct wlr_xwayland *xwayland,
|
2017-11-02 16:49:22 +01:00
|
|
|
uint8_t *pixels, uint32_t stride, uint32_t width, uint32_t height,
|
|
|
|
int32_t hotspot_x, int32_t hotspot_y) {
|
2020-05-05 10:24:08 +02:00
|
|
|
if (xwayland->xwm != NULL) {
|
|
|
|
xwm_set_cursor(xwayland->xwm, pixels, stride, width, height,
|
2017-11-02 16:49:22 +01:00
|
|
|
hotspot_x, hotspot_y);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
free(xwayland->cursor);
|
2017-11-02 16:49:22 +01:00
|
|
|
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->cursor = calloc(1, sizeof(struct wlr_xwayland_cursor));
|
|
|
|
if (xwayland->cursor == NULL) {
|
2017-11-02 16:49:22 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-05-05 10:24:08 +02:00
|
|
|
xwayland->cursor->pixels = pixels;
|
|
|
|
xwayland->cursor->stride = stride;
|
|
|
|
xwayland->cursor->width = width;
|
|
|
|
xwayland->cursor->height = height;
|
|
|
|
xwayland->cursor->hotspot_x = hotspot_x;
|
|
|
|
xwayland->cursor->hotspot_y = hotspot_y;
|
2017-11-02 16:49:22 +01:00
|
|
|
}
|
2017-11-22 14:10:06 +01:00
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static void xwayland_handle_seat_destroy(struct wl_listener *listener,
|
2017-12-29 17:55:16 +01:00
|
|
|
void *data) {
|
|
|
|
struct wlr_xwayland *xwayland =
|
|
|
|
wl_container_of(listener, xwayland, seat_destroy);
|
|
|
|
|
|
|
|
wlr_xwayland_set_seat(xwayland, NULL);
|
|
|
|
}
|
|
|
|
|
2017-11-22 14:10:06 +01:00
|
|
|
void wlr_xwayland_set_seat(struct wlr_xwayland *xwayland,
|
|
|
|
struct wlr_seat *seat) {
|
2017-12-29 17:55:16 +01:00
|
|
|
if (xwayland->seat) {
|
|
|
|
wl_list_remove(&xwayland->seat_destroy.link);
|
|
|
|
}
|
|
|
|
|
2017-11-22 14:23:23 +01:00
|
|
|
xwayland->seat = seat;
|
|
|
|
|
|
|
|
if (xwayland->xwm) {
|
|
|
|
xwm_set_seat(xwayland->xwm, seat);
|
|
|
|
}
|
2017-12-29 17:55:16 +01:00
|
|
|
|
|
|
|
if (seat == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
xwayland->seat_destroy.notify = xwayland_handle_seat_destroy;
|
2017-12-29 17:55:16 +01:00
|
|
|
wl_signal_add(&seat->events.destroy, &xwayland->seat_destroy);
|
2017-11-22 14:10:06 +01:00
|
|
|
}
|