From: Serge Hallyn Date: Fri, 6 Sep 2013 17:25:47 +0000 (-0500) Subject: lxc_spawn: don't close pinfd until container is stopped X-Git-Tag: lxc-1.0.0.alpha1~1^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c068da9695bcbfa46e0b3666128e3a533c9ddc7;p=thirdparty%2Flxc.git lxc_spawn: don't close pinfd until container is stopped Otherwise containers may be able to remount -o ro their rootfs at shutdown. Reported-by: Harald Dunkel Signed-off-by: Serge Hallyn Acked-by: Stéphane Graber --- diff --git a/src/lxc/start.c b/src/lxc/start.c index 7ee67ec04..e841bac5a 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -274,6 +274,7 @@ struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf, const char handler->conf = conf; handler->lxcpath = lxcpath; + handler->pinfd = -1; apparmor_handler_init(handler); handler->name = strdup(name); @@ -740,9 +741,6 @@ int lxc_spawn(struct lxc_handler *handler) lxc_sync_fini(handler); - if (handler->pinfd >= 0) - close(handler->pinfd); - return 0; out_delete_net: @@ -751,6 +749,11 @@ out_delete_net: out_abort: lxc_abort(name, handler); lxc_sync_fini(handler); + if (handler->pinfd >= 0) { + close(handler->pinfd); + handler->pinfd = -1; + } + return -1; } @@ -818,6 +821,11 @@ int __lxc_start(const char *name, struct lxc_conf *conf, lxc_rename_phys_nics_on_shutdown(handler->conf); + if (handler->pinfd >= 0) { + close(handler->pinfd); + handler->pinfd = -1; + } + err = lxc_error_set_and_log(handler->pid, status); out_fini: lxc_delete_network(handler);