From: Zbigniew Jędrzejewski-Szmek Date: Fri, 18 Apr 2014 02:12:25 +0000 (-0400) Subject: Make sure that keys are properly removed from hashmap X-Git-Tag: v213~161 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=4e595329a93ed190795c2e24bf132d5028ec6a72;p=elogind.git Make sure that keys are properly removed from hashmap This is a speculative fix for https://bugzilla.redhat.com/show_bug.cgi?id=1088865. Even though I cannot find a code path that where this would be an issue, for consistency, if we assume that cgroup_path might have been set before we got to unit_deserialize, we should make sure that the unit is removed from the hashmap before we free the key. This seems to be the only place where the key could be prematurely freed, leading to hashmap corruption. --- diff --git a/src/core/unit.c b/src/core/unit.c index 6ac359e31..c4ed92337 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2488,10 +2488,18 @@ int unit_deserialize(Unit *u, FILE *f, FDSet *fds) { if (!s) return -ENOMEM; - free(u->cgroup_path); - u->cgroup_path = s; + if (u->cgroup_path) { + void *p; + + p = hashmap_remove(u->manager->cgroup_unit, u->cgroup_path); + log_info("Removing cgroup_path %s from hashmap (%p)", + u->cgroup_path, p); + free(u->cgroup_path); + } + u->cgroup_path = s; assert(hashmap_put(u->manager->cgroup_unit, s, u) == 1); + continue; }