logind-user.c revision fb6becb4436ae4078337011b2017ce294e7361cf
/*-*- 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 <string.h>
#include <unistd.h>
#include <errno.h>
#include "util.h"
#include "mkdir.h"
#include "cgroup-util.h"
#include "hashmap.h"
#include "strv.h"
#include "fileio.h"
#include "special.h"
#include "unit-name.h"
#include "dbus-common.h"
#include "logind-user.h"
User *u;
assert(m);
if (!u)
return NULL;
if (!u->name)
goto fail;
goto fail;
goto fail;
u->manager = m;
return u;
fail:
free(u->state_file);
free(u);
return NULL;
}
assert(u);
if (u->in_gc_queue)
while (u->sessions)
session_free(u->sessions);
if (u->slice) {
}
if (u->service) {
}
free(u->service_job);
free(u->runtime_path);
free(u->state_file);
free(u);
}
int r;
assert(u);
assert(u->state_file);
if (!u->started)
return 0;
if (r < 0)
goto finish;
if (r < 0)
goto finish;
fprintf(f,
"# This is private data. Do not parse.\n"
"NAME=%s\n"
"STATE=%s\n",
u->name,
if (u->runtime_path)
if (u->service)
if (u->service_job)
if (u->slice)
if (u->slice_job)
if (u->display)
if (dual_timestamp_is_set(&u->timestamp))
fprintf(f,
"REALTIME=%llu\n"
"MONOTONIC=%llu\n",
if (u->sessions) {
Session *i;
bool first;
fputs("SESSIONS=", f);
first = true;
if (first)
first = false;
else
fputc(' ', f);
}
fputs("\nSEATS=", f);
first = true;
if (!i->seat)
continue;
if (first)
first = false;
else
fputc(' ', f);
}
fputs("\nACTIVE_SESSIONS=", f);
first = true;
if (!session_is_active(i))
continue;
if (first)
first = false;
else
fputc(' ', f);
}
fputs("\nONLINE_SESSIONS=", f);
first = true;
if (session_get_state(i) == SESSION_CLOSING)
continue;
if (first)
first = false;
else
fputc(' ', f);
}
fputs("\nACTIVE_SEATS=", f);
first = true;
if (!session_is_active(i) || !i->seat)
continue;
if (first)
first = false;
else
fputc(' ', f);
}
fputs("\nONLINE_SEATS=", f);
first = true;
continue;
if (first)
first = false;
else
fputc(' ', f);
}
fputc('\n', f);
}
fflush(f);
r = -errno;
unlink(u->state_file);
}
if (r < 0)
return r;
}
int r;
assert(u);
"RUNTIME", &u->runtime_path,
"SERVICE", &u->service,
"SERVICE_JOB", &u->service_job,
"SLICE", &u->slice,
"SLICE_JOB", &u->slice_job,
"DISPLAY", &display,
"REALTIME", &realtime,
"MONOTONIC", &monotonic,
NULL);
if (r < 0) {
if (r == -ENOENT)
return 0;
return r;
}
if (display)
u->display = s;
if (realtime) {
unsigned long long l;
}
if (monotonic) {
unsigned long long l;
}
return r;
}
static int user_mkdir_runtime_path(User *u) {
char *p;
int r;
assert(u);
if (r < 0) {
return r;
}
if (!u->runtime_path) {
return log_oom();
} else
p = u->runtime_path;
if (r < 0) {
free(p);
u->runtime_path = NULL;
return r;
}
u->runtime_path = p;
return 0;
}
static int user_start_slice(User *u) {
char *job;
int r;
assert(u);
if (!u->slice) {
if (r < 0)
return r;
if (r < 0)
log_warning("Failed to create mapping between unit and user");
}
if (r < 0) {
}
return 0;
}
static int user_start_service(User *u) {
char *job;
int r;
assert(u);
if (!u->service) {
if (!u->service)
return log_oom();
if (r < 0)
log_warning("Failed to create mapping between service and user");
}
if (r < 0) {
}
free(u->service_job);
u->service_job = job;
return 0;
}
int user_start(User *u) {
int r;
assert(u);
if (u->started)
return 0;
/* Make XDG_RUNTIME_DIR */
r = user_mkdir_runtime_path(u);
if (r < 0)
return r;
/* Create cgroup */
r = user_start_slice(u);
if (r < 0)
return r;
/* Spawn user systemd */
r = user_start_service(u);
if (r < 0)
return r;
if (!dual_timestamp_is_set(&u->timestamp))
dual_timestamp_get(&u->timestamp);
u->started = true;
/* Save new user data */
user_save(u);
user_send_signal(u, true);
return 0;
}
static int user_stop_slice(User *u) {
char *job;
int r;
assert(u);
if (!u->slice)
return 0;
if (r < 0) {
return r;
}
return r;
}
static int user_stop_service(User *u) {
char *job;
int r;
assert(u);
if (!u->service)
return 0;
if (r < 0) {
return r;
}
free(u->service_job);
u->service_job = job;
return r;
}
/* static int user_shall_kill(User *u) { */
/* assert(u); */
/* if (!u->manager->kill_user_processes) */
/* return false; */
/* if (strv_contains(u->manager->kill_exclude_users, u->name)) */
/* return false; */
/* if (strv_isempty(u->manager->kill_only_users)) */
/* return true; */
/* return strv_contains(u->manager->kill_only_users, u->name); */
/* } */
static int user_remove_runtime_path(User *u) {
int r;
assert(u);
if (!u->runtime_path)
return 0;
r = rm_rf(u->runtime_path, false, true, false);
if (r < 0)
free(u->runtime_path);
u->runtime_path = NULL;
return r;
}
Session *s;
int r = 0, k;
assert(u);
if (u->started)
k = session_stop(s);
if (k < 0)
r = k;
}
/* Kill systemd */
k = user_stop_service(u);
if (k < 0)
r = k;
/* Kill cgroup */
k = user_stop_slice(u);
if (k < 0)
r = k;
/* Kill XDG_RUNTIME_DIR */
k = user_remove_runtime_path(u);
if (k < 0)
r = k;
unlink(u->state_file);
if (u->started)
user_send_signal(u, false);
u->started = false;
return r;
}
Session *s;
bool idle_hint = true;
dual_timestamp ts = { 0, 0 };
assert(u);
int ih;
ih = session_get_idle_hint(s, &k);
if (ih < 0)
return ih;
if (!ih) {
if (!idle_hint) {
ts = k;
} else {
idle_hint = false;
ts = k;
}
} else if (idle_hint) {
ts = k;
}
}
if (t)
*t = ts;
return idle_hint;
}
static int user_check_linger_file(User *u) {
char *p;
int r;
return -ENOMEM;
free(p);
return r;
}
assert(u);
if (drop_not_started && !u->started)
return 0;
if (u->sessions)
return 1;
if (user_check_linger_file(u) > 0)
return 1;
return 0;
}
void user_add_to_gc_queue(User *u) {
assert(u);
if (u->in_gc_queue)
return;
u->in_gc_queue = true;
}
Session *i;
bool all_closing = true;
assert(u);
if (u->slice_job || u->service_job)
if (session_is_active(i))
return USER_ACTIVE;
if (session_get_state(i) != SESSION_CLOSING)
all_closing = false;
}
if (u->sessions)
if (user_check_linger_file(u) > 0)
return USER_LINGERING;
return USER_CLOSING;
}
assert(u);
if (!u->slice)
return -ESRCH;
}
static const char* const user_state_table[_USER_STATE_MAX] = {
[USER_OFFLINE] = "offline",
[USER_OPENING] = "opening",
[USER_LINGERING] = "lingering",
[USER_ONLINE] = "online",
[USER_ACTIVE] = "active",
[USER_CLOSING] = "closing"
};