logind: after deserializatio readd systemd units to unit-to-object hashmap correctly

This commit is contained in:
Lennart Poettering 2013-07-02 17:17:35 +02:00
parent 8b6fe8243d
commit d0af76e68a
3 changed files with 74 additions and 62 deletions

View file

@ -455,9 +455,7 @@ done:
}
static int session_start_scope(Session *s) {
_cleanup_free_ char *description = NULL;
DBusError error;
char *job;
int r;
assert(s);
@ -467,25 +465,31 @@ static int session_start_scope(Session *s) {
dbus_error_init(&error);
if (!s->scope) {
s->scope = strjoin("session-", s->id, ".scope", NULL);
if (!s->scope)
_cleanup_free_ char *description = NULL;
char *scope, *job;
scope = strjoin("session-", s->id, ".scope", NULL);
if (!scope)
return log_oom();
r = hashmap_put(s->manager->session_units, s->scope, s);
if (r < 0)
log_warning("Failed to create mapping between unit and session");
description = strjoin("Session ", s->id, " of user ", s->user->name, NULL);
r = manager_start_scope(s->manager, scope, s->leader, s->user->slice, description, &error, &job);
if (r < 0) {
log_error("Failed to start session scope: %s %s", bus_error(&error, r), error.name);
dbus_error_free(&error);
free(scope);
} else {
s->scope = scope;
free(s->scope_job);
s->scope_job = job;
}
}
description = strjoin("Session ", s->id, " of user ", s->user->name, NULL);
r = manager_start_scope(s->manager, s->scope, s->leader, s->user->slice, description, &error, &job);
if (r < 0) {
log_error("Failed to start session scope: %s %s", bus_error(&error, r), error.name);
dbus_error_free(&error);
} else {
free(s->scope_job);
s->scope_job = job;
}
if (s->scope)
hashmap_put(s->manager->session_units, s->scope, s);
return 0;
}

View file

@ -338,26 +338,29 @@ static int user_start_slice(User *u) {
dbus_error_init(&error);
if (!u->slice) {
char lu[DECIMAL_STR_MAX(unsigned long) + 1];
char lu[DECIMAL_STR_MAX(unsigned long) + 1], *slice;
sprintf(lu, "%lu", (unsigned long) u->uid);
r = build_subslice(SPECIAL_USER_SLICE, lu, &u->slice);
r = build_subslice(SPECIAL_USER_SLICE, lu, &slice);
if (r < 0)
return r;
r = hashmap_put(u->manager->user_units, u->slice, u);
if (r < 0)
log_warning("Failed to create mapping between unit and user");
r = manager_start_unit(u->manager, slice, &error, &job);
if (r < 0) {
log_error("Failed to start user slice: %s", bus_error(&error, r));
dbus_error_free(&error);
free(slice);
} else {
u->slice = slice;
free(u->slice_job);
u->slice_job = job;
}
}
r = manager_start_unit(u->manager, u->slice, &error, &job);
if (r < 0) {
log_error("Failed to start user slice: %s", bus_error(&error, r));
dbus_error_free(&error);
} else {
free(u->slice_job);
u->slice_job = job;
}
if (u->slice)
hashmap_put(u->manager->user_units, u->slice, u);
return 0;
}
@ -372,26 +375,29 @@ static int user_start_service(User *u) {
dbus_error_init(&error);
if (!u->service) {
char lu[DECIMAL_STR_MAX(unsigned long) + 1];
char lu[DECIMAL_STR_MAX(unsigned long) + 1], *service;
sprintf(lu, "%lu", (unsigned long) u->uid);
u->service = unit_name_build("user", lu, ".service");
if (!u->service)
service = unit_name_build("user", lu, ".service");
if (!service)
return log_oom();
r = hashmap_put(u->manager->user_units, u->service, u);
if (r < 0)
log_warning("Failed to create mapping between service and user");
r = manager_start_unit(u->manager, service, &error, &job);
if (r < 0) {
log_error("Failed to start user service: %s", bus_error(&error, r));
dbus_error_free(&error);
free(service);
} else {
u->service = service;
free(u->service_job);
u->service_job = job;
}
}
r = manager_start_unit(u->manager, u->service, &error, &job);
if (r < 0) {
log_error("Failed to start user service: %s", bus_error(&error, r));
dbus_error_free(&error);
} else {
free(u->service_job);
u->service_job = job;
}
if (u->service)
hashmap_put(u->manager->user_units, u->service, u);
return 0;
}

View file

@ -228,33 +228,35 @@ static int machine_start_scope(Machine *m) {
dbus_error_init(&error);
if (!m->scope) {
char *escaped = NULL;
_cleanup_free_ char *escaped = NULL;
char *scope;
escaped = unit_name_escape(m->name);
if (!escaped)
return log_oom();
m->scope = strjoin("machine-", escaped, ".scope", NULL);
free(escaped);
if (!m->scope)
scope = strjoin("machine-", escaped, ".scope", NULL);
if (scope)
return log_oom();
r = hashmap_put(m->manager->machine_units, m->scope, m);
if (r < 0)
log_warning("Failed to create mapping between unit and machine");
description = strappend(m->class == MACHINE_VM ? "Virtual Machine " : "Container ", m->name);
r = manager_start_scope(m->manager, m->scope, m->leader, SPECIAL_MACHINE_SLICE, description, &error, &job);
if (r < 0) {
log_error("Failed to start machine scope: %s", bus_error(&error, r));
dbus_error_free(&error);
free(scope);
} else {
m->scope = scope;
free(m->scope_job);
m->scope_job = job;
}
}
description = strappend(m->class == MACHINE_VM ? "Virtual Machine " : "Container ", m->name);
r = manager_start_scope(m->manager, m->scope, m->leader, SPECIAL_MACHINE_SLICE, description, &error, &job);
if (r < 0) {
log_error("Failed to start machine scope: %s", bus_error(&error, r));
dbus_error_free(&error);
} else {
free(m->scope_job);
m->scope_job = job;
}
if (m->scope)
hashmap_put(m->manager->machine_units, m->scope, m);
return r;
}