logind-session.c revision 374ec6abf31ada6ca554cc8ea99b282373fac010
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2011 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <systemd/sd-id128.h>
#include <systemd/sd-messages.h>
#include "strv.h"
#include "util.h"
#include "mkdir.h"
#include "path-util.h"
#include "cgroup-util.h"
#include "fileio.h"
#include "dbus-common.h"
#include "logind-session.h"
Session *s;
assert(m);
if (!s)
return NULL;
if (!s->state_file) {
free(s);
return NULL;
}
free(s->state_file);
free(s);
return NULL;
}
s->manager = m;
s->fifo_fd = -1;
return s;
}
void session_free(Session *s) {
assert(s);
if (s->in_gc_queue)
if (s->user) {
}
if (s->seat) {
}
if (s->scope) {
}
if (s->create_message)
free(s->remote_host);
free(s->remote_user);
free(s->state_file);
free(s);
}
assert(s);
s->user = u;
}
int session_save(Session *s) {
int r = 0;
assert(s);
if (!s->user)
return -ESTALE;
if (!s->started)
return 0;
if (r < 0)
goto finish;
if (r < 0)
goto finish;
fprintf(f,
"# This is private data. Do not parse.\n"
"UID=%lu\n"
"USER=%s\n"
"ACTIVE=%i\n"
"STATE=%s\n"
"REMOTE=%i\n",
s->remote);
if (s->type >= 0)
if (s->class >= 0)
if (s->scope)
if (s->scope_job)
if (s->fifo_path)
if (s->seat)
if (s->tty)
if (s->display)
if (s->remote_host)
if (s->remote_user)
if (s->service)
if (s->leader > 0)
if (s->audit_id > 0)
if (dual_timestamp_is_set(&s->timestamp))
fprintf(f,
"REALTIME=%llu\n"
"MONOTONIC=%llu\n",
fflush(f);
r = -errno;
unlink(s->state_file);
}
if (r < 0)
return r;
}
int session_load(Session *s) {
int k, r;
assert(s);
"REMOTE", &remote,
"SCOPE", &s->scope,
"SCOPE_JOB", &s->scope_job,
"FIFO", &s->fifo_path,
"SEAT", &seat,
"TTY", &s->tty,
"DISPLAY", &s->display,
"REMOTE_HOST", &s->remote_host,
"REMOTE_USER", &s->remote_user,
"SERVICE", &s->service,
"VTNR", &vtnr,
"LEADER", &leader,
"TYPE", &type,
"CLASS", &class,
"UID", &uid,
"REALTIME", &realtime,
"MONOTONIC", &monotonic,
NULL);
if (r < 0) {
return r;
}
if (!s->user) {
uid_t u;
if (!uid) {
return -ENOENT;
}
if (r < 0) {
return r;
}
if (!user) {
return -ENOENT;
}
session_set_user(s, user);
}
if (remote) {
k = parse_boolean(remote);
if (k >= 0)
s->remote = k;
}
Seat *o;
if (o)
seat_attach_session(o, s);
}
int v;
if (k >= 0 && v >= 1)
s->vtnr = v;
}
if (leader) {
if (k >= 0)
}
if (type) {
SessionType t;
t = session_type_from_string(type);
if (t >= 0)
s->type = t;
}
if (class) {
SessionClass c;
if (c >= 0)
s->class = c;
}
if (s->fifo_path) {
int fd;
/* If we open an unopened pipe for reading we will not
get an EOF. to trigger an EOF we hence open it for
reading, but close it right-away which then will
trigger the EOF. */
fd = session_create_fifo(s);
if (fd >= 0)
}
if (realtime) {
unsigned long long l;
}
if (monotonic) {
unsigned long long l;
}
return r;
}
int session_activate(Session *s) {
int r;
assert(s);
if (s->vtnr < 0)
return -ENOTSUP;
if (!s->seat)
return -ENOTSUP;
return 0;
if (r < 0)
return r;
return seat_set_active(s->seat, s);
}
static int session_link_x11_socket(Session *s) {
char *t, *f, *c;
size_t k;
assert(s);
return 0;
return 0;
f = new(char, sizeof("/tmp/.X11-unix/X") + k);
if (!f)
return log_oom();
c = stpcpy(f, "/tmp/.X11-unix/X");
c[k] = 0;
free(f);
return -ENOENT;
}
/* Note that this cannot be in a subdir to avoid
* vulnerabilities since we are privileged but the runtime
* path is owned by the user */
if (!t) {
free(f);
return log_oom();
}
if (link(f, t) < 0) {
unlink(t);
if (link(f, t) >= 0)
goto done;
}
if (symlink(f, t) < 0) {
unlink(t);
if (symlink(f, t) >= 0)
goto done;
}
log_error("Failed to link %s to %s: %m", f, t);
free(f);
free(t);
return -errno;
}
}
done:
log_info("Linked %s to %s.", f, t);
free(f);
free(t);
return 0;
}
static int session_start_scope(Session *s) {
char *job;
int r;
assert(s);
if (!s->scope) {
if (!s->scope)
return log_oom();
if (r < 0)
log_warning("Failed to create mapping between unit and session");
}
r = manager_start_scope(s->manager, s->scope, s->leader, s->user->slice, description, &error, &job);
if (r < 0) {
} else {
}
return 0;
}
int session_start(Session *s) {
int r;
assert(s);
if (!s->user)
return -ESTALE;
if (s->started)
return 0;
r = user_start(s->user);
if (r < 0)
return r;
/* Create cgroup */
r = session_start_scope(s);
if (r < 0)
return r;
"SESSION_ID=%s", s->id,
"LEADER=%lu", (unsigned long) s->leader,
NULL);
/* Create X11 symlink */
if (!dual_timestamp_is_set(&s->timestamp))
dual_timestamp_get(&s->timestamp);
if (s->seat)
seat_read_active_vt(s->seat);
s->started = true;
/* Save session data */
session_save(s);
session_send_signal(s, true);
if (s->seat) {
else
}
return 0;
}
/* static bool session_shall_kill(Session *s) { */
/* assert(s); */
/* if (!s->kill_processes) */
/* return false; */
/* if (strv_contains(s->manager->kill_exclude_users, s->user->name)) */
/* return false; */
/* if (strv_isempty(s->manager->kill_only_users)) */
/* return true; */
/* return strv_contains(s->manager->kill_only_users, s->user->name); */
/* } */
static int session_stop_scope(Session *s) {
char *job;
int r;
assert(s);
if (!s->scope)
return 0;
if (r < 0) {
return r;
}
return 0;
}
static int session_unlink_x11_socket(Session *s) {
char *t;
int r;
assert(s);
return 0;
if (!t)
return log_oom();
r = unlink(t);
free(t);
return r < 0 ? -errno : 0;
}
int session_stop(Session *s) {
int r = 0, k;
assert(s);
if (!s->user)
return -ESTALE;
if (s->started)
"SESSION_ID=%s", s->id,
"LEADER=%lu", (unsigned long) s->leader,
"MESSAGE=Removed session %s.", s->id,
NULL);
/* Kill cgroup */
k = session_stop_scope(s);
if (k < 0)
r = k;
/* Remove X11 symlink */
unlink(s->state_file);
user_add_to_gc_queue(s->user);
if (s->started)
session_send_signal(s, false);
s->started = false;
if (s->seat) {
}
return r;
}
bool session_is_active(Session *s) {
assert(s);
if (!s->seat)
return true;
}
_cleanup_free_ char *p = NULL;
if (!path_is_absolute(tty)) {
if (!p)
return -ENOMEM;
tty = p;
return -ENOENT;
return -errno;
return 0;
}
_cleanup_free_ char *p = NULL;
int r;
if (r < 0)
return r;
return get_tty_atime(p, atime);
}
int r;
assert(s);
/* Explicit idle hint is set */
if (s->idle_hint) {
if (t)
*t = s->idle_hint_timestamp;
return s->idle_hint;
}
/* Graphical sessions should really implement a real
* idle hint logic */
if (s->display)
goto dont_know;
/* For sessions with an explicitly configured tty, let's check
* its atime */
if (s->tty) {
if (r >= 0)
goto found_atime;
}
/* For sessions with a leader but no explicitly configured
* tty, let's check the controlling tty of the leader */
if (s->leader > 0) {
if (r >= 0)
goto found_atime;
}
if (t)
*t = s->idle_hint_timestamp;
return 0;
if (t)
n = now(CLOCK_REALTIME);
if (s->manager->idle_action_usec <= 0)
return 0;
}
void session_set_idle_hint(Session *s, bool b) {
assert(s);
if (s->idle_hint == b)
return;
s->idle_hint = b;
"IdleHint\0"
"IdleSinceHint\0"
"IdleSinceHintMonotonic\0");
if (s->seat)
"IdleHint\0"
"IdleSinceHint\0"
"IdleSinceHintMonotonic\0");
"IdleHint\0"
"IdleSinceHint\0"
"IdleSinceHintMonotonic\0");
"IdleHint\0"
"IdleSinceHint\0"
"IdleSinceHintMonotonic\0");
}
int session_create_fifo(Session *s) {
int r;
assert(s);
/* Create FIFO */
if (!s->fifo_path) {
if (r < 0)
return r;
return -ENOMEM;
return -errno;
}
/* Open reading side */
if (s->fifo_fd < 0) {
struct epoll_event ev = {};
if (s->fifo_fd < 0)
return -errno;
if (r < 0)
return r;
return -errno;
}
/* Open writing side */
if (r < 0)
return -errno;
return r;
}
void session_remove_fifo(Session *s) {
assert(s);
if (s->fifo_fd >= 0) {
s->fifo_fd = -1;
session_save(s);
}
if (s->fifo_path) {
}
}
int r;
assert(s);
if (drop_not_started && !s->started)
return 0;
if (!s->user)
return 0;
if (s->fifo_fd >= 0) {
if (r < 0)
return r;
if (r == 0)
return 1;
}
if (s->scope_job)
return 1;
if (s->scope)
return 0;
}
void session_add_to_gc_queue(Session *s) {
assert(s);
if (s->in_gc_queue)
return;
s->in_gc_queue = true;
}
assert(s);
if (s->scope_job)
if (s->fifo_fd < 0)
return SESSION_CLOSING;
if (session_is_active(s))
return SESSION_ACTIVE;
return SESSION_ONLINE;
}
assert(s);
if (!s->scope)
return -ESRCH;
}
static const char* const session_state_table[_SESSION_STATE_MAX] = {
[SESSION_OPENING] = "opening",
[SESSION_ONLINE] = "online",
[SESSION_ACTIVE] = "active",
[SESSION_CLOSING] = "closing"
};
static const char* const session_type_table[_SESSION_TYPE_MAX] = {
[SESSION_TTY] = "tty",
[SESSION_X11] = "x11",
[SESSION_UNSPECIFIED] = "unspecified"
};
static const char* const session_class_table[_SESSION_CLASS_MAX] = {
[SESSION_USER] = "user",
[SESSION_GREETER] = "greeter",
[SESSION_LOCK_SCREEN] = "lock-screen",
[SESSION_BACKGROUND] = "background"
};
static const char* const kill_who_table[_KILL_WHO_MAX] = {
[KILL_LEADER] = "leader",
[KILL_ALL] = "all"
};