logind-user.c revision 2138e96918c7ed6fbf31f5df509f337a1973dfdd
/*-*- 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 "logind-user.h"
#include "util.h"
#include "mkdir.h"
#include "cgroup-util.h"
#include "hashmap.h"
#include "strv.h"
User *u;
assert(m);
if (!u)
return NULL;
if (!u->name) {
free(u);
return NULL;
}
free(u);
return NULL;
}
free(u->state_file);
free(u);
return NULL;
}
u->manager = m;
return u;
}
assert(u);
if (u->in_gc_queue)
while (u->sessions)
session_free(u->sessions);
if (u->cgroup_path)
free(u->cgroup_path);
free(u->runtime_path);
free(u->state_file);
free(u);
}
FILE *f;
int r;
char *temp_path;
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->cgroup_path)
fprintf(f,
"CGROUP=%s\n",
u->cgroup_path);
if (u->runtime_path)
fprintf(f,
"RUNTIME=%s\n",
u->runtime_path);
if (u->service)
fprintf(f,
"SERVICE=%s\n",
u->service);
if (u->display)
fprintf(f,
"DISPLAY=%s\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("\nACTIVE_SEATS=", f);
first = true;
if (!session_is_active(i) || !i->seat)
continue;
if (first)
first = false;
else
}
fputc('\n', f);
}
fflush(f);
r = -errno;
unlink(u->state_file);
}
fclose(f);
if (r < 0)
return r;
}
int r;
assert(u);
"CGROUP", &u->cgroup_path,
"RUNTIME", &u->runtime_path,
"SERVICE", &u->service,
"DISPLAY", &display,
NULL);
if (r < 0) {
if (r == -ENOENT)
return 0;
return r;
}
if (display) {
}
u->display = s;
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) {
log_error("Out of memory");
return -ENOMEM;
}
} 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_create_cgroup(User *u) {
char **k;
char *p;
int r;
assert(u);
if (!u->cgroup_path) {
log_error("Out of memory");
return -ENOMEM;
}
} else
p = u->cgroup_path;
r = cg_create(SYSTEMD_CGROUP_CONTROLLER, p);
if (r < 0) {
free(p);
u->cgroup_path = NULL;
return r;
}
u->cgroup_path = p;
continue;
r = cg_create(*k, p);
if (r < 0)
}
return 0;
}
static int user_start_service(User *u) {
assert(u);
/* FIXME: Fill me in later ... */
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_create_cgroup(u);
if (r < 0)
return r;
/* Spawn user systemd */
r = user_start_service(u);
if (r < 0)
return r;
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_service(User *u) {
assert(u);
if (!u->service)
return 0;
return 0;
}
static int user_shall_kill(User *u) {
assert(u);
if (!u->manager->kill_user_processes)
return false;
return false;
return true;
}
static int user_terminate_cgroup(User *u) {
int r;
char **k;
assert(u);
if (!u->cgroup_path)
return 0;
if (user_shall_kill(u)) {
if (r < 0)
} else {
if (r < 0)
else if (r > 0) {
if (r < 0)
} else
r = -EBUSY;
}
cg_trim(*k, u->cgroup_path, true);
free(u->cgroup_path);
u->cgroup_path = NULL;
return r;
}
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_terminate_cgroup(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;
}
int 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;
if (u->cgroup_path) {
if (r < 0)
return r;
if (r <= 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;
assert(u);
if (session_is_active(i))
return USER_ACTIVE;
if (u->sessions)
return USER_ONLINE;
if (user_check_linger_file(u) > 0)
return USER_LINGERING;
return USER_CLOSING;
}
int r = 0, q;
assert(u);
if (!u->cgroup_path)
return -ESRCH;
if (!pid_set)
return -ENOMEM;
q = cg_kill_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, signo, false, true, false, pid_set);
if (q < 0)
r = q;
if (pid_set)
return r;
}
static const char* const user_state_table[_USER_STATE_MAX] = {
[USER_OFFLINE] = "offline",
[USER_LINGERING] = "lingering",
[USER_ONLINE] = "online",
[USER_ACTIVE] = "active",
[USER_CLOSING] = "closing"
};