Merge pull request #1205 from sghctoma/fix-freebsd-direct-session
Add drmSetMaster and drmDropMaster calls to FreeBSD direct session
This commit is contained in:
commit
7ba50469e0
|
@ -15,6 +15,7 @@
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
#include <wlr/backend/session/interface.h>
|
#include <wlr/backend/session/interface.h>
|
||||||
#include <wlr/util/log.h>
|
#include <wlr/util/log.h>
|
||||||
|
#include <xf86drm.h>
|
||||||
#include "backend/session/direct-ipc.h"
|
#include "backend/session/direct-ipc.h"
|
||||||
#include "util/signal.h"
|
#include "util/signal.h"
|
||||||
|
|
||||||
|
@ -23,6 +24,7 @@ const struct session_impl session_direct;
|
||||||
struct direct_session {
|
struct direct_session {
|
||||||
struct wlr_session base;
|
struct wlr_session base;
|
||||||
int tty_fd;
|
int tty_fd;
|
||||||
|
int old_tty;
|
||||||
int old_kbmode;
|
int old_kbmode;
|
||||||
int sock;
|
int sock;
|
||||||
pid_t child;
|
pid_t child;
|
||||||
|
@ -40,23 +42,18 @@ static int direct_session_open(struct wlr_session *base, const char *path) {
|
||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct stat st;
|
|
||||||
if (fstat(fd, &st) < 0) {
|
|
||||||
close(fd);
|
|
||||||
return -errno;
|
|
||||||
}
|
|
||||||
|
|
||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void direct_session_close(struct wlr_session *base, int fd) {
|
static void direct_session_close(struct wlr_session *base, int fd) {
|
||||||
struct direct_session *session = wl_container_of(base, session, base);
|
struct direct_session *session = wl_container_of(base, session, base);
|
||||||
|
|
||||||
struct stat st;
|
int ev;
|
||||||
if (fstat(fd, &st) < 0) {
|
struct drm_version dv = {0};
|
||||||
wlr_log_errno(WLR_ERROR, "Stat failed");
|
if (ioctl(fd, DRM_IOCTL_VERSION, &dv) == 0) {
|
||||||
close(fd);
|
direct_ipc_dropmaster(session->sock, fd);
|
||||||
return;
|
} else if (ioctl(fd, EVIOCGVERSION, &ev) == 0) {
|
||||||
|
ioctl(fd, EVIOCREVOKE, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
close(fd);
|
close(fd);
|
||||||
|
@ -79,6 +76,8 @@ static void direct_session_destroy(struct wlr_session *base) {
|
||||||
ioctl(session->tty_fd, KDSETMODE, KD_TEXT);
|
ioctl(session->tty_fd, KDSETMODE, KD_TEXT);
|
||||||
ioctl(session->tty_fd, VT_SETMODE, &mode);
|
ioctl(session->tty_fd, VT_SETMODE, &mode);
|
||||||
|
|
||||||
|
ioctl(session->tty_fd, VT_ACTIVATE, session->old_tty);
|
||||||
|
|
||||||
if (errno) {
|
if (errno) {
|
||||||
wlr_log(WLR_ERROR, "Failed to restore tty");
|
wlr_log(WLR_ERROR, "Failed to restore tty");
|
||||||
}
|
}
|
||||||
|
@ -93,13 +92,29 @@ static void direct_session_destroy(struct wlr_session *base) {
|
||||||
|
|
||||||
static int vt_handler(int signo, void *data) {
|
static int vt_handler(int signo, void *data) {
|
||||||
struct direct_session *session = data;
|
struct direct_session *session = data;
|
||||||
|
struct drm_version dv = {0};
|
||||||
|
struct wlr_device *dev;
|
||||||
|
|
||||||
if (session->base.active) {
|
if (session->base.active) {
|
||||||
session->base.active = false;
|
session->base.active = false;
|
||||||
wlr_signal_emit_safe(&session->base.session_signal, session);
|
wlr_signal_emit_safe(&session->base.session_signal, session);
|
||||||
|
|
||||||
|
wl_list_for_each(dev, &session->base.devices, link) {
|
||||||
|
if (ioctl(dev->fd, DRM_IOCTL_VERSION, &dv) == 0) {
|
||||||
|
direct_ipc_dropmaster(session->sock, dev->fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ioctl(session->tty_fd, VT_RELDISP, 1);
|
ioctl(session->tty_fd, VT_RELDISP, 1);
|
||||||
} else {
|
} else {
|
||||||
ioctl(session->tty_fd, VT_RELDISP, VT_ACKACQ);
|
ioctl(session->tty_fd, VT_RELDISP, VT_ACKACQ);
|
||||||
|
|
||||||
|
wl_list_for_each(dev, &session->base.devices, link) {
|
||||||
|
if (ioctl(dev->fd, DRM_IOCTL_VERSION, &dv) == 0) {
|
||||||
|
direct_ipc_setmaster(session->sock, dev->fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
session->base.active = true;
|
session->base.active = true;
|
||||||
wlr_signal_emit_safe(&session->base.session_signal, session);
|
wlr_signal_emit_safe(&session->base.session_signal, session);
|
||||||
}
|
}
|
||||||
|
@ -108,11 +123,15 @@ static int vt_handler(int signo, void *data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool setup_tty(struct direct_session *session, struct wl_display *display) {
|
static bool setup_tty(struct direct_session *session, struct wl_display *display) {
|
||||||
int fd = -1, tty = -1, tty0_fd = -1;
|
int fd = -1, tty = -1, tty0_fd = -1, old_tty = 1;
|
||||||
if ((tty0_fd = open("/dev/ttyv0", O_RDWR | O_CLOEXEC)) < 0) {
|
if ((tty0_fd = open("/dev/ttyv0", O_RDWR | O_CLOEXEC)) < 0) {
|
||||||
wlr_log_errno(WLR_ERROR, "Could not open /dev/ttyv0 to find a free vt");
|
wlr_log_errno(WLR_ERROR, "Could not open /dev/ttyv0 to find a free vt");
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
if (ioctl(tty0_fd, VT_GETACTIVE, &old_tty) != 0) {
|
||||||
|
wlr_log_errno(WLR_ERROR, "Could not get active vt");
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
if (ioctl(tty0_fd, VT_OPENQRY, &tty) != 0) {
|
if (ioctl(tty0_fd, VT_OPENQRY, &tty) != 0) {
|
||||||
wlr_log_errno(WLR_ERROR, "Could not find a free vt");
|
wlr_log_errno(WLR_ERROR, "Could not find a free vt");
|
||||||
goto error;
|
goto error;
|
||||||
|
@ -168,13 +187,16 @@ static bool setup_tty(struct direct_session *session, struct wl_display *display
|
||||||
|
|
||||||
session->base.vtnr = tty;
|
session->base.vtnr = tty;
|
||||||
session->tty_fd = fd;
|
session->tty_fd = fd;
|
||||||
|
session->old_tty = old_tty;
|
||||||
session->old_kbmode = old_kbmode;
|
session->old_kbmode = old_kbmode;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
// Drop back to tty 1, better than hanging in a useless blank console
|
// In case we could not get the last active one, drop back to tty 1,
|
||||||
ioctl(fd, VT_ACTIVATE, 1);
|
// better than hanging in a useless blank console. Otherwise activate the
|
||||||
|
// last active.
|
||||||
|
ioctl(fd, VT_ACTIVATE, old_tty);
|
||||||
close(fd);
|
close(fd);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#define _POSIX_C_SOURCE 200809L
|
#define _POSIX_C_SOURCE 200809L
|
||||||
#ifdef __FreeBSD__
|
#ifdef __FreeBSD__
|
||||||
#define __BSD_VISIBLE 1
|
#define __BSD_VISIBLE 1
|
||||||
#define INPUT_MAJOR 0
|
#include <dev/evdev/input.h>
|
||||||
#endif
|
#endif
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -142,6 +142,7 @@ static void communicate(int sock) {
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __FreeBSD__
|
||||||
struct stat st;
|
struct stat st;
|
||||||
if (fstat(fd, &st) < 0) {
|
if (fstat(fd, &st) < 0) {
|
||||||
ret = errno;
|
ret = errno;
|
||||||
|
@ -157,6 +158,20 @@ static void communicate(int sock) {
|
||||||
if (maj == DRM_MAJOR && drmSetMaster(fd)) {
|
if (maj == DRM_MAJOR && drmSetMaster(fd)) {
|
||||||
ret = errno;
|
ret = errno;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
int ev;
|
||||||
|
struct drm_version dv = {0};
|
||||||
|
if (ioctl(fd, EVIOCGVERSION, &ev) == -1 &&
|
||||||
|
ioctl(fd, DRM_IOCTL_VERSION, &dv) == -1) {
|
||||||
|
ret = ENOTSUP;
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dv.version_major != 0 && drmSetMaster(fd)) {
|
||||||
|
ret = errno;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
error:
|
error:
|
||||||
send_msg(sock, ret ? -1 : fd, &ret, sizeof(ret));
|
send_msg(sock, ret ? -1 : fd, &ret, sizeof(ret));
|
||||||
if (fd >= 0) {
|
if (fd >= 0) {
|
||||||
|
@ -193,8 +208,11 @@ int direct_ipc_open(int sock, const char *path) {
|
||||||
|
|
||||||
send_msg(sock, -1, &msg, sizeof(msg));
|
send_msg(sock, -1, &msg, sizeof(msg));
|
||||||
|
|
||||||
int fd, err;
|
int fd, err, ret;
|
||||||
recv_msg(sock, &fd, &err, sizeof(err));
|
int retry = 0;
|
||||||
|
do {
|
||||||
|
ret = recv_msg(sock, &fd, &err, sizeof(err));
|
||||||
|
} while (ret == 0 && retry++ < 3);
|
||||||
|
|
||||||
return err ? -err : fd;
|
return err ? -err : fd;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue