diff options
| author | Drew DeVault <sir@cmpwn.com> | 2017-05-10 10:37:29 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-10 10:37:29 -0400 | 
| commit | c436e76240ab190a07afcd961ca2dd279af72968 (patch) | |
| tree | aab4f835e5341cd44b5937e0cd0dbb012c2369e8 /session | |
| parent | 1aed98730194aa80b5954ae1d6370162041b56e2 (diff) | |
| parent | 42878b45a1dba582feb5ec75762d66ede51fdc98 (diff) | |
| download | wlroots-c436e76240ab190a07afcd961ca2dd279af72968.tar.xz | |
Merge pull request #2 from ascent12/master
DRM backend + Session interface + EGL
Diffstat (limited to 'session')
| -rw-r--r-- | session/CMakeLists.txt | 25 | ||||
| -rw-r--r-- | session/direct.c | 50 | ||||
| -rw-r--r-- | session/logind.c | 223 | ||||
| -rw-r--r-- | session/session.c | 42 | 
4 files changed, 340 insertions, 0 deletions
| diff --git a/session/CMakeLists.txt b/session/CMakeLists.txt new file mode 100644 index 00000000..bd83068b --- /dev/null +++ b/session/CMakeLists.txt @@ -0,0 +1,25 @@ +include_directories( +	${WAYLAND_INCLUDE_DIR} +) + +set(sources +    session.c +    direct.c +) + +set(libs +    wlr-common +    ${WAYLAND_LIBRARIES} +) + +if (SYSTEMD_FOUND) +    add_definitions(${SYSTEMD_DEFINITIONS}) +    include_directories(${SYSTEMD_INCLUDE_DIRS}) + +    add_definitions(-DHAS_SYSTEMD) +    list(APPEND sources logind.c) +    list(APPEND libs ${SYSTEMD_LIBRARIES}) +endif () + +add_library(wlr-session ${sources}) +target_link_libraries(wlr-session ${libs}) diff --git a/session/direct.c b/session/direct.c new file mode 100644 index 00000000..08a9b617 --- /dev/null +++ b/session/direct.c @@ -0,0 +1,50 @@ +#define _POSIX_C_SOURCE 200809L + +#include <errno.h> +#include <stdlib.h> +#include <string.h> +#include <fcntl.h> +#include <unistd.h> +#include <wayland-server.h> + +#include "session/interface.h" +#include "common/log.h" + +struct direct_session { +	struct wlr_session base; +}; + +static int direct_session_open(struct wlr_session *restrict base, +	const char *restrict path) { +	return open(path, O_RDWR | O_CLOEXEC); +} + +static void direct_session_close(struct wlr_session *base, int fd) { +	close(fd); +} + +static void direct_session_finish(struct wlr_session *base) { +	struct direct_session *session = wl_container_of(base, session, base); + +	free(session); +} + +static struct wlr_session *direct_session_start(void) { +	struct direct_session *session = calloc(1, sizeof(*session)); +	if (!session) { +		wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno)); +		return NULL; +	} + +	wlr_log(L_INFO, "Successfully loaded direct session"); + +	session->base.iface = session_direct_iface; +	return &session->base; +} + +const struct session_interface session_direct_iface = { +	.start = direct_session_start, +	.finish = direct_session_finish, +	.open = direct_session_open, +	.close = direct_session_close, +}; diff --git a/session/logind.c b/session/logind.c new file mode 100644 index 00000000..052c7454 --- /dev/null +++ b/session/logind.c @@ -0,0 +1,223 @@ +#define _POSIX_C_SOURCE 200809L + +#include <stdio.h> +#include <stdbool.h> +#include <stdlib.h> +#include <string.h> +#include <errno.h> +#include <systemd/sd-bus.h> +#include <systemd/sd-login.h> +#include <unistd.h> +#include <sys/sysmacros.h> +#include <sys/stat.h> +#include <fcntl.h> +#include <wayland-server.h> + +#include "session/interface.h" +#include "common/log.h" + +struct logind_session { +	struct wlr_session base; + +	sd_bus *bus; + +	char *id; +	char *path; +	char *seat; +}; + +static int logind_take_device(struct wlr_session *restrict base, +	const char *restrict path) { + +	struct logind_session *session = wl_container_of(base, session, base); + +	int ret; +	int fd = -1; +	sd_bus_message *msg = NULL; +	sd_bus_error error = SD_BUS_ERROR_NULL; + +	struct stat st; +	if (stat(path, &st) < 0) { +		wlr_log(L_ERROR, "Failed to stat '%s'", path); +		return -1; +	} + +	ret = sd_bus_call_method(session->bus, "org.freedesktop.login1", +		session->path, "org.freedesktop.login1.Session", "TakeDevice", +		&error, &msg, "uu", major(st.st_rdev), minor(st.st_rdev)); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to take device '%s': %s", path, error.message); +		goto error; +	} + +	int paused = 0; +	ret = sd_bus_message_read(msg, "hb", &fd, &paused); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to parse DBus response for '%s': %s", +			path, strerror(-ret)); +		goto error; +	} + +	// The original fd seem to be closed when the message is freed +	// so we just clone it. +	fd = fcntl(fd, F_DUPFD_CLOEXEC, 0); +	if (fd == -1) { +		wlr_log(L_ERROR, "Failed to clone file descriptor for '%s': %s", +			path, strerror(errno)); +		goto error; +	} + +error: +	sd_bus_error_free(&error); +	sd_bus_message_unref(msg); +	return fd; +} + +static void logind_release_device(struct wlr_session *base, int fd) { +	struct logind_session *session = wl_container_of(base, session, base); + +	int ret; +	sd_bus_message *msg = NULL; +	sd_bus_error error = SD_BUS_ERROR_NULL; + +	struct stat st; +	if (fstat(fd, &st) < 0) { +		wlr_log(L_ERROR, "Failed to stat device '%d'", fd); +		return; +	} + +	ret = sd_bus_call_method(session->bus, "org.freedesktop.login1", +		session->path, "org.freedesktop.login1.Session", "ReleaseDevice", +		&error, &msg, "uu", major(st.st_rdev), minor(st.st_rdev)); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to release device '%d'", fd); +	} + +	sd_bus_error_free(&error); +	sd_bus_message_unref(msg); +} + +static bool session_activate(struct logind_session *session) { +	int ret; +	sd_bus_message *msg = NULL; +	sd_bus_error error = SD_BUS_ERROR_NULL; + +	ret = sd_bus_call_method(session->bus, "org.freedesktop.login1", +		session->path, "org.freedesktop.login1.Session", "Activate", +		&error, &msg, ""); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to activate session"); +	} + +	sd_bus_error_free(&error); +	sd_bus_message_unref(msg); +	return ret >= 0; +} + +static bool take_control(struct logind_session *session) { +	int ret; +	sd_bus_message *msg = NULL; +	sd_bus_error error = SD_BUS_ERROR_NULL; + +	ret = sd_bus_call_method(session->bus, "org.freedesktop.login1", +		session->path, "org.freedesktop.login1.Session", "TakeControl", +		&error, &msg, "b", false); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to take control of session"); +	} + +	sd_bus_error_free(&error); +	sd_bus_message_unref(msg); +	return ret >= 0; +} + +static void release_control(struct logind_session *session) { +	int ret; +	sd_bus_message *msg = NULL; +	sd_bus_error error = SD_BUS_ERROR_NULL; + +	ret = sd_bus_call_method(session->bus, "org.freedesktop.login1", +		session->path, "org.freedesktop.login1.Session", "ReleaseControl", +		&error, &msg, ""); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to release control of session"); +	} + +	sd_bus_error_free(&error); +	sd_bus_message_unref(msg); +} + +static void logind_session_finish(struct wlr_session *base) { +	struct logind_session *session = wl_container_of(base, session, base); + +	release_control(session); + +	sd_bus_unref(session->bus); +	free(session->id); +	free(session->path); +	free(session->seat); +	free(session); +} + +static struct wlr_session *logind_session_start(void) { +	int ret; +	struct logind_session *session = calloc(1, sizeof(*session)); +	if (!session) { +		wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno)); +		return NULL; +	} + +	ret = sd_pid_get_session(getpid(), &session->id); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to get session id: %s", strerror(-ret)); +		goto error; +	} + +	ret = sd_session_get_seat(session->id, &session->seat); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to get seat id: %s", strerror(-ret)); +		goto error; +	} + +	const char *fmt = "/org/freedesktop/login1/session/%s"; +	int len = snprintf(NULL, 0, fmt, session->id); + +	session->path = malloc(len + 1); +	if (!session->path) +		goto error; + +	sprintf(session->path, fmt, session->id); + +	ret = sd_bus_default_system(&session->bus); +	if (ret < 0) { +		wlr_log(L_ERROR, "Failed to open DBus connection: %s", strerror(-ret)); +		goto error; +	} + +	if (!session_activate(session)) +		goto error_bus; + +	if (!take_control(session)) +		goto error_bus; + +	wlr_log(L_INFO, "Successfully loaded logind session"); + +	session->base.iface = session_logind_iface; +	return &session->base; + +error_bus: +	sd_bus_unref(session->bus); + +error: +	free(session->path); +	free(session->id); +	free(session->seat); +	return NULL; +} + +const struct session_interface session_logind_iface = { +	.start = logind_session_start, +	.finish = logind_session_finish, +	.open = logind_take_device, +	.close = logind_release_device, +}; diff --git a/session/session.c b/session/session.c new file mode 100644 index 00000000..0562dbf7 --- /dev/null +++ b/session/session.c @@ -0,0 +1,42 @@ +#include <stddef.h> + +#include <wlr/session.h> +#include <stdarg.h> +#include "common/log.h" +#include "session/interface.h" + +static const struct session_interface *ifaces[] = { +#ifdef HAS_SYSTEMD +	&session_logind_iface, +#endif +	&session_direct_iface, +	NULL, +}; + +struct wlr_session *wlr_session_start(void) { +	const struct session_interface **iter; + +	for (iter = ifaces; *iter; ++iter) { +		struct wlr_session *session = (*iter)->start(); +		if (session) { +			return session; +		} +	} + +	wlr_log(L_ERROR, "Failed to load session backend"); +	return NULL; +} + +void wlr_session_finish(struct wlr_session *session) { +	session->iface.finish(session); +}; + +int wlr_session_open_file(struct wlr_session *restrict session, +	const char *restrict path) { + +	return session->iface.open(session, path); +} + +void wlr_session_close_file(struct wlr_session *session, int fd) { +	session->iface.close(session, fd); +} | 
