wlroots-hyprland/session/direct.c

228 lines
5.4 KiB
C
Raw Normal View History

2017-05-03 09:26:43 +02:00
#define _POSIX_C_SOURCE 200809L
#include <errno.h>
#include <stdlib.h>
2017-05-13 13:56:40 +02:00
#include <stdbool.h>
2017-05-03 09:26:43 +02:00
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
2017-07-03 04:46:20 +02:00
#include <signal.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/sysmacros.h>
#include <sys/capability.h>
#include <linux/kd.h>
#include <linux/major.h>
#include <linux/vt.h>
2017-05-03 09:26:43 +02:00
#include <wayland-server.h>
2017-07-03 04:46:20 +02:00
#include <xf86drm.h>
2017-06-05 01:30:37 +02:00
#include <wlr/session/interface.h>
2017-06-21 18:10:07 +02:00
#include <wlr/util/log.h>
2017-05-03 09:26:43 +02:00
2017-07-03 04:46:20 +02:00
#ifndef KDSKBMUTE
#define KDSKBMUTE 0x4B51
#endif
enum { DRM_MAJOR = 226 };
2017-06-05 01:30:37 +02:00
const struct session_impl session_direct;
2017-05-03 09:26:43 +02:00
struct direct_session {
struct wlr_session base;
2017-07-03 04:46:20 +02:00
int tty_fd;
int drm_fd;
int kb_mode;
struct wl_event_source *vt_source;
2017-05-03 09:26:43 +02:00
};
static int direct_session_open(struct wlr_session *restrict base,
2017-07-03 04:46:20 +02:00
const char *restrict path) {
struct direct_session *session = wl_container_of(base, session, base);
2017-07-03 09:56:14 +02:00
// These are the flags logind uses
2017-07-03 04:46:20 +02:00
int fd = open(path, O_RDWR | O_CLOEXEC | O_NOCTTY | O_NONBLOCK);
if (fd == -1) {
2017-07-03 09:56:14 +02:00
wlr_log_errno(L_ERROR, "Cannot open %s", path);
2017-07-03 04:46:20 +02:00
return -errno;
}
struct stat st;
if (fstat(fd, &st) == 0 && major(st.st_rdev) == DRM_MAJOR) {
2017-07-03 09:56:14 +02:00
if (drmSetMaster(fd)) {
// Save errno, in case close() clobbers it
int e = errno;
wlr_log(L_ERROR, "Cannot become DRM master: %s%s", strerror(e),
e == EINVAL ? "; is another display server running?" : "");
close(fd);
return -e;
}
2017-07-03 04:46:20 +02:00
session->drm_fd = fd;
}
return fd;
2017-05-03 09:26:43 +02:00
}
static void direct_session_close(struct wlr_session *base, int fd) {
2017-07-03 04:46:20 +02:00
struct direct_session *session = wl_container_of(base, session, base);
if (fd == session->drm_fd) {
drmDropMaster(fd);
session->drm_fd = -1;
}
2017-05-03 09:26:43 +02:00
close(fd);
}
2017-05-13 13:56:40 +02:00
static bool direct_change_vt(struct wlr_session *base, int vt) {
2017-07-03 04:46:20 +02:00
struct direct_session *session = wl_container_of(base, session, base);
return ioctl(session->tty_fd, VT_ACTIVATE, vt) == 0;
2017-05-13 13:56:40 +02:00
}
2017-05-03 09:26:43 +02:00
static void direct_session_finish(struct wlr_session *base) {
struct direct_session *session = wl_container_of(base, session, base);
2017-07-03 04:46:20 +02:00
struct vt_mode mode = {
.mode = VT_AUTO,
};
2017-05-03 09:26:43 +02:00
2017-07-03 04:46:20 +02:00
if (ioctl(session->tty_fd, KDSKBMUTE, 0)) {
ioctl(session->tty_fd, KDSKBMODE, session->kb_mode);
}
ioctl(session->tty_fd, KDSETMODE, KD_TEXT);
ioctl(session->tty_fd, VT_SETMODE, &mode);
wl_event_source_remove(session->vt_source);
close(session->tty_fd);
2017-05-03 09:26:43 +02:00
free(session);
}
2017-07-03 04:46:20 +02:00
static int vt_handler(int signo, void *data) {
struct direct_session *session = data;
if (session->base.active) {
session->base.active = false;
wl_signal_emit(&session->base.session_signal, session);
drmDropMaster(session->drm_fd);
ioctl(session->tty_fd, VT_RELDISP, 1);
} else {
ioctl(session->tty_fd, VT_RELDISP, VT_ACKACQ);
drmSetMaster(session->drm_fd);
session->base.active = true;
wl_signal_emit(&session->base.session_signal, session);
}
return 1;
}
static bool setup_tty(struct direct_session *session, struct wl_display *display) {
2017-07-03 09:56:14 +02:00
// TODO: Change this to accept any TTY, instead of just the current one
2017-07-03 04:46:20 +02:00
session->tty_fd = dup(STDIN_FILENO);
struct stat st;
if (fstat(session->tty_fd, &st) == -1 || major(st.st_rdev) != TTY_MAJOR ||
minor(st.st_rdev) == 0) {
wlr_log(L_ERROR, "Not running from a virtual terminal");
goto error;
}
int ret;
int kd_mode;
ret = ioctl(session->tty_fd, KDGETMODE, &kd_mode);
if (ret) {
wlr_log_errno(L_ERROR, "Failed to get tty mode");
goto error;
}
if (kd_mode != KD_TEXT) {
wlr_log(L_ERROR,
"tty already in graphics mode; is another display server running?");
goto error;
}
ioctl(session->tty_fd, VT_ACTIVATE, minor(st.st_rdev));
ioctl(session->tty_fd, VT_WAITACTIVE, minor(st.st_rdev));
if (ioctl(session->tty_fd, KDGKBMODE, &session->kb_mode)) {
wlr_log_errno(L_ERROR, "Failed to read keyboard mode");
goto error;
}
if (ioctl(session->tty_fd, KDSKBMUTE, 1) &&
ioctl(session->tty_fd, KDSKBMODE, K_OFF)) {
wlr_log_errno(L_ERROR, "Failed to set keyboard mode");
goto error;
}
if (ioctl(session->tty_fd, KDSETMODE, KD_GRAPHICS)) {
2017-07-03 09:56:14 +02:00
wlr_log_errno(L_ERROR, "Failed to set graphics mode on tty");
2017-07-03 04:46:20 +02:00
goto error;
}
struct vt_mode mode = {
.mode = VT_PROCESS,
.relsig = SIGUSR1,
.acqsig = SIGUSR1,
};
if (ioctl(session->tty_fd, VT_SETMODE, &mode) < 0) {
wlr_log(L_ERROR, "Failed to take control of tty");
goto error;
}
struct wl_event_loop *loop = wl_display_get_event_loop(display);
session->vt_source = wl_event_loop_add_signal(loop, SIGUSR1,
vt_handler, session);
if (!session->vt_source) {
goto error;
}
return true;
error:
close(session->tty_fd);
return false;
}
2017-05-13 13:56:40 +02:00
static struct wlr_session *direct_session_start(struct wl_display *disp) {
2017-07-03 04:46:20 +02:00
cap_t cap = cap_get_proc();
cap_flag_value_t val;
if (!cap || cap_get_flag(cap, CAP_SYS_ADMIN, CAP_PERMITTED, &val) || val != CAP_SET) {
wlr_log(L_ERROR, "Do not have CAP_SYS_ADMIN; cannot become DRM master");
cap_free(cap);
2017-07-03 09:56:14 +02:00
return NULL;
2017-07-03 04:46:20 +02:00
}
cap_free(cap);
2017-07-03 09:56:14 +02:00
struct direct_session *session = calloc(1, sizeof(*session));
if (!session) {
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
return NULL;
}
2017-07-03 04:46:20 +02:00
if (!setup_tty(session, disp)) {
goto error_session;
}
2017-05-03 09:26:43 +02:00
wlr_log(L_INFO, "Successfully loaded direct session");
2017-06-05 01:30:37 +02:00
session->base.impl = &session_direct;
session->base.active = true;
wl_signal_init(&session->base.session_signal);
2017-05-03 09:26:43 +02:00
return &session->base;
2017-07-03 04:46:20 +02:00
error_session:
free(session);
return NULL;
2017-05-03 09:26:43 +02:00
}
2017-06-05 01:30:37 +02:00
const struct session_impl session_direct = {
2017-05-03 09:26:43 +02:00
.start = direct_session_start,
.finish = direct_session_finish,
.open = direct_session_open,
.close = direct_session_close,
2017-05-13 13:56:40 +02:00
.change_vt = direct_change_vt,
2017-05-03 09:26:43 +02:00
};