From: Christian Brauner Date: Mon, 24 Sep 2018 09:04:04 +0000 (+0200) Subject: cgfsng: ensure no-reuse in cgfsng_monitor_create() X-Git-Tag: lxc-3.1.0~81^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ce03bc048212feae5de5a3f41fe189bb7f9ee58;p=thirdparty%2Flxc.git cgfsng: ensure no-reuse in cgfsng_monitor_create() The same way we need to ensure that no existing cgroups are reused for the payload in cgfsng_payload_create() we need to ensure that no existing cgroups are reused for the monitor. Technially this is less of an issue since there currently is no logic for the monitor to apply limits to its cgroup but it is still the proper way to do it. Signed-off-by: Christian Brauner --- diff --git a/src/lxc/cgroups/cgfsng.c b/src/lxc/cgroups/cgfsng.c index 22a559e12..5d7effcba 100644 --- a/src/lxc/cgroups/cgfsng.c +++ b/src/lxc/cgroups/cgfsng.c @@ -1326,7 +1326,9 @@ static void remove_path_for_hierarchy(struct hierarchy *h, char *cgname, bool mo __cgfsng_ops static inline bool cgfsng_monitor_create(struct cgroup_ops *ops, struct lxc_handler *handler) { - char *monitor_cgroup; + char *monitor_cgroup, *offset, *tmp; + int idx = 0; + size_t len; bool bret = false; struct lxc_conf *conf = handler->conf; @@ -1334,24 +1336,46 @@ __cgfsng_ops static inline bool cgfsng_monitor_create(struct cgroup_ops *ops, return bret; if (conf->cgroup_meta.dir) - monitor_cgroup = lxc_string_join("/", (const char *[]){conf->cgroup_meta.dir, ops->monitor_pattern, handler->name, NULL}, false); + tmp = lxc_string_join("/", + (const char *[]){conf->cgroup_meta.dir, + ops->monitor_pattern, + handler->name, NULL}, + false); else - monitor_cgroup = must_make_path(ops->monitor_pattern, handler->name, NULL); - if (!monitor_cgroup) + tmp = must_make_path(ops->monitor_pattern, handler->name, NULL); + if (!tmp) return bret; - for (int i = 0; ops->hierarchies[i]; i++) { - if (!monitor_create_path_for_hierarchy(ops->hierarchies[i], monitor_cgroup)) { - ERROR("Failed to create cgroup \"%s\"", ops->hierarchies[i]->monitor_full_path); - free(ops->hierarchies[i]->container_full_path); - ops->hierarchies[i]->container_full_path = NULL; - for (int j = 0; j < i; j++) - remove_path_for_hierarchy(ops->hierarchies[j], monitor_cgroup, true); - goto on_error; + len = strlen(tmp) + 5; /* leave room for -NNN\0 */ + monitor_cgroup = must_alloc(len); + (void)strlcpy(monitor_cgroup, tmp, len); + free(tmp); + offset = monitor_cgroup + len - 5; + + do { + if (idx) { + int ret = snprintf(offset, 5, "-%d", idx); + if (ret < 0 || (size_t)ret >= 5) + goto on_error; } - } - bret = true; + for (int i = 0; ops->hierarchies[i]; i++) { + if (!monitor_create_path_for_hierarchy(ops->hierarchies[i], monitor_cgroup)) { + ERROR("Failed to create cgroup \"%s\"", ops->hierarchies[i]->monitor_full_path); + free(ops->hierarchies[i]->container_full_path); + ops->hierarchies[i]->container_full_path = NULL; + + for (int j = 0; j < i; j++) + remove_path_for_hierarchy(ops->hierarchies[j], monitor_cgroup, true); + + idx++; + break; + } + } + } while (idx > 0 && idx < 1000); + + if (idx < 1000) + bret = true; on_error: free(monitor_cgroup);