Commit 88a66d01 by Serge Hallyn Committed by GitHub

Merge pull request #1255 from brauner/2016-10-27/cleanup_netdevs_lxd#2439_lxc#1253

remove veth device from host
parents 122aaf50 a052913d
...@@ -220,9 +220,8 @@ static void lxc_proc_put_context_info(struct lxc_proc_context_info *ctx) ...@@ -220,9 +220,8 @@ static void lxc_proc_put_context_info(struct lxc_proc_context_info *ctx)
static int lxc_attach_to_ns(pid_t pid, int which) static int lxc_attach_to_ns(pid_t pid, int which)
{ {
char path[MAXPATHLEN];
/* according to <http://article.gmane.org/gmane.linux.kernel.containers.lxc.devel/1429>, /* according to <http://article.gmane.org/gmane.linux.kernel.containers.lxc.devel/1429>,
* the file for user namepsaces in /proc/$pid/ns will be called * the file for user namespaces in /proc/$pid/ns will be called
* 'user' once the kernel supports it * 'user' once the kernel supports it
*/ */
static char *ns[] = { "user", "mnt", "pid", "uts", "ipc", "net", "cgroup" }; static char *ns[] = { "user", "mnt", "pid", "uts", "ipc", "net", "cgroup" };
...@@ -235,8 +234,7 @@ static int lxc_attach_to_ns(pid_t pid, int which) ...@@ -235,8 +234,7 @@ static int lxc_attach_to_ns(pid_t pid, int which)
int i, j, saved_errno; int i, j, saved_errno;
snprintf(path, MAXPATHLEN, "/proc/%d/ns", pid); if (access("/proc/self/ns", X_OK)) {
if (access(path, X_OK)) {
ERROR("Does this kernel version support 'attach' ?"); ERROR("Does this kernel version support 'attach' ?");
return -1; return -1;
} }
...@@ -250,8 +248,7 @@ static int lxc_attach_to_ns(pid_t pid, int which) ...@@ -250,8 +248,7 @@ static int lxc_attach_to_ns(pid_t pid, int which)
continue; continue;
} }
snprintf(path, MAXPATHLEN, "/proc/%d/ns/%s", pid, ns[i]); fd[i] = lxc_preserve_ns(pid, ns[i]);
fd[i] = open(path, O_RDONLY | O_CLOEXEC);
if (fd[i] < 0) { if (fd[i] < 0) {
saved_errno = errno; saved_errno = errno;
...@@ -262,7 +259,7 @@ static int lxc_attach_to_ns(pid_t pid, int which) ...@@ -262,7 +259,7 @@ static int lxc_attach_to_ns(pid_t pid, int which)
close(fd[j]); close(fd[j]);
errno = saved_errno; errno = saved_errno;
SYSERROR("failed to open '%s'", path); SYSERROR("failed to open namespace: '%s'.", ns[i]);
return -1; return -1;
} }
} }
......
...@@ -2399,24 +2399,20 @@ static int setup_network(struct lxc_list *network) ...@@ -2399,24 +2399,20 @@ static int setup_network(struct lxc_list *network)
/* try to move physical nics to the init netns */ /* try to move physical nics to the init netns */
void lxc_restore_phys_nics_to_netns(int netnsfd, struct lxc_conf *conf) void lxc_restore_phys_nics_to_netns(int netnsfd, struct lxc_conf *conf)
{ {
int i, ret, oldfd; int i, oldfd;
char path[MAXPATHLEN];
char ifname[IFNAMSIZ]; char ifname[IFNAMSIZ];
if (netnsfd < 0 || conf->num_savednics == 0) if (netnsfd < 0 || conf->num_savednics == 0)
return; return;
INFO("running to reset %d nic names", conf->num_savednics); INFO("Running to reset %d nic names.", conf->num_savednics);
ret = snprintf(path, MAXPATHLEN, "/proc/self/ns/net"); oldfd = lxc_preserve_ns(getpid(), "net");
if (ret < 0 || ret >= MAXPATHLEN) { if (oldfd < 0) {
WARN("Failed to open monitor netns fd"); SYSERROR("Failed to open monitor netns fd.");
return;
}
if ((oldfd = open(path, O_RDONLY)) < 0) {
SYSERROR("Failed to open monitor netns fd");
return; return;
} }
if (setns(netnsfd, 0) != 0) { if (setns(netnsfd, 0) != 0) {
SYSERROR("Failed to enter container netns to reset nics"); SYSERROR("Failed to enter container netns to reset nics");
close(oldfd); close(oldfd);
...@@ -2591,6 +2587,7 @@ static int instantiate_veth(struct lxc_handler *handler, struct lxc_netdev *netd ...@@ -2591,6 +2587,7 @@ static int instantiate_veth(struct lxc_handler *handler, struct lxc_netdev *netd
veth1, netdev->link, strerror(-err)); veth1, netdev->link, strerror(-err));
goto out_delete; goto out_delete;
} }
INFO("Attached '%s': to the bridge '%s': ", veth1, netdev->link);
} }
err = lxc_netdev_up(veth1); err = lxc_netdev_up(veth1);
...@@ -2883,36 +2880,83 @@ int lxc_create_network(struct lxc_handler *handler) ...@@ -2883,36 +2880,83 @@ int lxc_create_network(struct lxc_handler *handler)
return 0; return 0;
} }
void lxc_delete_network(struct lxc_handler *handler) bool lxc_delete_network(struct lxc_handler *handler)
{ {
int ret;
struct lxc_list *network = &handler->conf->network; struct lxc_list *network = &handler->conf->network;
struct lxc_list *iterator; struct lxc_list *iterator;
struct lxc_netdev *netdev; struct lxc_netdev *netdev;
bool deleted_all = true;
lxc_list_for_each(iterator, network) { lxc_list_for_each(iterator, network) {
netdev = iterator->elem; netdev = iterator->elem;
if (netdev->ifindex != 0 && netdev->type == LXC_NET_PHYS) { if (netdev->ifindex != 0 && netdev->type == LXC_NET_PHYS) {
if (lxc_netdev_rename_by_index(netdev->ifindex, netdev->link)) if (lxc_netdev_rename_by_index(netdev->ifindex, netdev->link))
WARN("failed to rename to the initial name the " \ WARN("Failed to rename interface with index %d "
"netdev '%s'", netdev->link); "to its initial name \"%s\".",
netdev->ifindex, netdev->link);
continue; continue;
} }
if (netdev_deconf[netdev->type](handler, netdev)) { if (netdev_deconf[netdev->type](handler, netdev)) {
WARN("failed to destroy netdev"); WARN("Failed to destroy netdev");
} }
/* Recent kernel remove the virtual interfaces when the network /* Recent kernel remove the virtual interfaces when the network
* namespace is destroyed but in case we did not moved the * namespace is destroyed but in case we did not moved the
* interface to the network namespace, we have to destroy it * interface to the network namespace, we have to destroy it
*/ */
if (netdev->ifindex != 0 && if (netdev->ifindex != 0) {
lxc_netdev_delete_by_index(netdev->ifindex)) ret = lxc_netdev_delete_by_index(netdev->ifindex);
WARN("failed to remove interface %d '%s'", if (-ret == ENODEV) {
netdev->ifindex, INFO("Interface \"%s\" with index %d already "
netdev->name ? netdev->name : "(null)"); "deleted or existing in different network "
"namespace.",
netdev->name ? netdev->name : "(null)",
netdev->ifindex);
} else if (ret < 0) {
deleted_all = false;
WARN("Failed to remove interface \"%s\" with "
"index %d: %s.",
netdev->name ? netdev->name : "(null)",
netdev->ifindex, strerror(-ret));
} else {
INFO("Removed interface \"%s\" with index %d.",
netdev->name ? netdev->name : "(null)",
netdev->ifindex);
}
}
/* Explicitly delete host veth device to prevent lingering
* devices. We had issues in LXD around this.
*/
if (netdev->type == LXC_NET_VETH) {
char *hostveth;
if (netdev->priv.veth_attr.pair) {
hostveth = netdev->priv.veth_attr.pair;
ret = lxc_netdev_delete_by_name(hostveth);
if (ret < 0) {
WARN("Failed to remove interface \"%s\" from host: %s.", hostveth, strerror(-ret));
} else {
INFO("Removed interface \"%s\" from host.", hostveth);
free(netdev->priv.veth_attr.pair);
netdev->priv.veth_attr.pair = NULL;
}
} else if (strlen(netdev->priv.veth_attr.veth1) > 0) {
hostveth = netdev->priv.veth_attr.veth1;
ret = lxc_netdev_delete_by_name(hostveth);
if (ret < 0) {
WARN("Failed to remove \"%s\" from host: %s.", hostveth, strerror(-ret));
} else {
INFO("Removed interface \"%s\" from host.", hostveth);
memset((void *)&netdev->priv.veth_attr.veth1, 0, sizeof(netdev->priv.veth_attr.veth1));
}
} }
}
}
return deleted_all;
} }
#define LXC_USERNIC_PATH LIBEXECDIR "/lxc/lxc-user-nic" #define LXC_USERNIC_PATH LIBEXECDIR "/lxc/lxc-user-nic"
...@@ -3050,7 +3094,7 @@ int lxc_assign_network(const char *lxcpath, char *lxcname, ...@@ -3050,7 +3094,7 @@ int lxc_assign_network(const char *lxcpath, char *lxcname,
return -1; return -1;
} }
DEBUG("move '%s' to '%d'", netdev->name, pid); DEBUG("move '%s'/'%s' to '%d': .", ifname, netdev->name, pid);
} }
return 0; return 0;
......
...@@ -408,7 +408,7 @@ extern int pin_rootfs(const char *rootfs); ...@@ -408,7 +408,7 @@ extern int pin_rootfs(const char *rootfs);
extern int lxc_requests_empty_network(struct lxc_handler *handler); extern int lxc_requests_empty_network(struct lxc_handler *handler);
extern int lxc_create_network(struct lxc_handler *handler); extern int lxc_create_network(struct lxc_handler *handler);
extern void lxc_delete_network(struct lxc_handler *handler); extern bool lxc_delete_network(struct lxc_handler *handler);
extern int lxc_assign_network(const char *lxcpath, char *lxcname, extern int lxc_assign_network(const char *lxcpath, char *lxcname,
struct lxc_list *networks, pid_t pid); struct lxc_list *networks, pid_t pid);
extern int lxc_map_ids(struct lxc_list *idmap, pid_t pid); extern int lxc_map_ids(struct lxc_list *idmap, pid_t pid);
......
...@@ -46,13 +46,12 @@ extern int lxc_error_set_and_log(int pid, int status) ...@@ -46,13 +46,12 @@ extern int lxc_error_set_and_log(int pid, int status)
if (WIFEXITED(status)) { if (WIFEXITED(status)) {
ret = WEXITSTATUS(status); ret = WEXITSTATUS(status);
if (ret) if (ret)
INFO("child <%d> ended on error (%d)", pid, ret); INFO("Child <%d> ended on error (%d).", pid, ret);
} }
if (WIFSIGNALED(status)) { if (WIFSIGNALED(status)) {
int signal = WTERMSIG(status); int signal = WTERMSIG(status);
INFO("Child <%d> ended on signal (%d).", pid, signal);
INFO("child <%d> ended on signal (%d)", pid, signal);
} }
return ret; return ret;
......
...@@ -673,25 +673,21 @@ again: ...@@ -673,25 +673,21 @@ again:
static int rename_in_ns(int pid, char *oldname, char **newnamep) static int rename_in_ns(int pid, char *oldname, char **newnamep)
{ {
char nspath[MAXPATHLEN];
int fd = -1, ofd = -1, ret, ifindex = -1; int fd = -1, ofd = -1, ret, ifindex = -1;
bool grab_newname = false; bool grab_newname = false;
ret = snprintf(nspath, MAXPATHLEN, "/proc/%d/ns/net", getpid()); ofd = lxc_preserve_ns(getpid(), "net");
if (ret < 0 || ret >= MAXPATHLEN) if (ofd < 0) {
return -1; fprintf(stderr, "Failed opening network namespace path for '%d'.", getpid());
if ((ofd = open(nspath, O_RDONLY)) < 0) {
fprintf(stderr, "Opening %s\n", nspath);
return -1; return -1;
} }
ret = snprintf(nspath, MAXPATHLEN, "/proc/%d/ns/net", pid);
if (ret < 0 || ret >= MAXPATHLEN)
goto out_err;
if ((fd = open(nspath, O_RDONLY)) < 0) { fd = lxc_preserve_ns(pid, "net");
fprintf(stderr, "Opening %s\n", nspath); if (fd < 0) {
goto out_err; fprintf(stderr, "Failed opening network namespace path for '%d'.", pid);
return -1;
} }
if (setns(fd, 0) < 0) { if (setns(fd, 0) < 0) {
fprintf(stderr, "setns to container network namespace\n"); fprintf(stderr, "setns to container network namespace\n");
goto out_err; goto out_err;
......
...@@ -64,29 +64,29 @@ pid_t lxc_clone(int (*fn)(void *), void *arg, int flags) ...@@ -64,29 +64,29 @@ pid_t lxc_clone(int (*fn)(void *), void *arg, int flags)
ret = clone(do_clone, stack + stack_size, flags | SIGCHLD, &clone_arg); ret = clone(do_clone, stack + stack_size, flags | SIGCHLD, &clone_arg);
#endif #endif
if (ret < 0) if (ret < 0)
ERROR("failed to clone (%#x): %s", flags, strerror(errno)); ERROR("Failed to clone (%#x): %s.", flags, strerror(errno));
return ret; return ret;
} }
static const char * const namespaces_list[] = { const struct ns_info ns_info[LXC_NS_MAX] = {
"MOUNT", "PID", "UTSNAME", "IPC", [LXC_NS_MNT] = {"mnt", CLONE_NEWNS, "CLONE_NEWNS"},
"USER", "NETWORK" [LXC_NS_PID] = {"pid", CLONE_NEWPID, "CLONE_NEWPID"},
}; [LXC_NS_UTS] = {"uts", CLONE_NEWUTS, "CLONE_NEWUTS"},
static const int cloneflags_list[] = { [LXC_NS_IPC] = {"ipc", CLONE_NEWIPC, "CLONE_NEWIPC"},
CLONE_NEWNS, CLONE_NEWPID, CLONE_NEWUTS, CLONE_NEWIPC, [LXC_NS_USER] = {"user", CLONE_NEWUSER, "CLONE_NEWUSER"},
CLONE_NEWUSER, CLONE_NEWNET [LXC_NS_NET] = {"net", CLONE_NEWNET, "CLONE_NEWNET"},
[LXC_NS_CGROUP] = {"cgroup", CLONE_NEWCGROUP, "CLONE_NEWCGROUP"}
}; };
int lxc_namespace_2_cloneflag(char *namespace) int lxc_namespace_2_cloneflag(char *namespace)
{ {
int i, len; int i;
len = sizeof(namespaces_list)/sizeof(namespaces_list[0]); for (i = 0; i < LXC_NS_MAX; i++)
for (i = 0; i < len; i++) if (!strcasecmp(ns_info[i].proc_name, namespace))
if (!strcmp(namespaces_list[i], namespace)) return ns_info[i].clone_flag;
return cloneflags_list[i];
ERROR("invalid namespace name %s", namespace); ERROR("Invalid namespace name: %s.", namespace);
return -1; return -1;
} }
...@@ -96,7 +96,7 @@ int lxc_fill_namespace_flags(char *flaglist, int *flags) ...@@ -96,7 +96,7 @@ int lxc_fill_namespace_flags(char *flaglist, int *flags)
int aflag; int aflag;
if (!flaglist) { if (!flaglist) {
ERROR("need at least one namespace to unshare"); ERROR("At least one namespace is needed.");
return -1; return -1;
} }
......
...@@ -53,6 +53,23 @@ ...@@ -53,6 +53,23 @@
# define CLONE_NEWNET 0x40000000 # define CLONE_NEWNET 0x40000000
#endif #endif
enum {
LXC_NS_MNT,
LXC_NS_PID,
LXC_NS_UTS,
LXC_NS_IPC,
LXC_NS_USER,
LXC_NS_NET,
LXC_NS_CGROUP,
LXC_NS_MAX
};
extern const struct ns_info {
const char *proc_name;
int clone_flag;
const char *flag_name;
} ns_info[LXC_NS_MAX];
#if defined(__ia64__) #if defined(__ia64__)
int __clone2(int (*__fn) (void *__arg), void *__child_stack_base, int __clone2(int (*__fn) (void *__arg), void *__child_stack_base,
size_t __child_stack_size, int __flags, void *__arg, ...); size_t __child_stack_size, int __flags, void *__arg, ...);
...@@ -62,7 +79,6 @@ int clone(int (*fn)(void *), void *child_stack, ...@@ -62,7 +79,6 @@ int clone(int (*fn)(void *), void *child_stack,
/* pid_t *ptid, struct user_desc *tls, pid_t *ctid */ ); /* pid_t *ptid, struct user_desc *tls, pid_t *ctid */ );
#endif #endif
extern pid_t lxc_clone(int (*fn)(void *), void *arg, int flags); extern pid_t lxc_clone(int (*fn)(void *), void *arg, int flags);
extern int lxc_namespace_2_cloneflag(char *namespace); extern int lxc_namespace_2_cloneflag(char *namespace);
......
...@@ -84,16 +84,6 @@ ...@@ -84,16 +84,6 @@
lxc_log_define(lxc_start, lxc); lxc_log_define(lxc_start, lxc);
const struct ns_info ns_info[LXC_NS_MAX] = {
[LXC_NS_MNT] = {"mnt", CLONE_NEWNS},
[LXC_NS_PID] = {"pid", CLONE_NEWPID},
[LXC_NS_UTS] = {"uts", CLONE_NEWUTS},
[LXC_NS_IPC] = {"ipc", CLONE_NEWIPC},
[LXC_NS_USER] = {"user", CLONE_NEWUSER},
[LXC_NS_NET] = {"net", CLONE_NEWNET},
[LXC_NS_CGROUP] = {"cgroup", CLONE_NEWCGROUP}
};
extern void mod_all_rdeps(struct lxc_container *c, bool inc); extern void mod_all_rdeps(struct lxc_container *c, bool inc);
static bool do_destroy_container(struct lxc_conf *conf); static bool do_destroy_container(struct lxc_conf *conf);
static int lxc_rmdir_onedev_wrapper(void *data); static int lxc_rmdir_onedev_wrapper(void *data);
...@@ -116,16 +106,17 @@ static void print_top_failing_dir(const char *path) ...@@ -116,16 +106,17 @@ static void print_top_failing_dir(const char *path)
saved = *p; saved = *p;
*p = '\0'; *p = '\0';
if (access(copy, X_OK)) { if (access(copy, X_OK)) {
SYSERROR("could not access %s. Please grant it 'x' " \ SYSERROR("Could not access %s. Please grant it x "
"access, or add an ACL for the container root.", "access, or add an ACL for the container "
copy); "root.", copy);
return; return;
} }
*p = saved; *p = saved;
} }
} }
static void close_ns(int ns_fd[LXC_NS_MAX]) { static void close_ns(int ns_fd[LXC_NS_MAX])
{
int i; int i;
for (i = 0; i < LXC_NS_MAX; i++) { for (i = 0; i < LXC_NS_MAX; i++) {
...@@ -136,34 +127,29 @@ static void close_ns(int ns_fd[LXC_NS_MAX]) { ...@@ -136,34 +127,29 @@ static void close_ns(int ns_fd[LXC_NS_MAX]) {
} }
} }
/* /* preserve_ns: open /proc/@pid/ns/@ns for each namespace specified
* preserve_ns: open /proc/@pid/ns/@ns for each namespace specified
* in clone_flags. * in clone_flags.
* Return true on success, false on failure. On failure, leave an error * Return true on success, false on failure.
* message in *errmsg, which caller must free.
*/ */
static bool preserve_ns(int ns_fd[LXC_NS_MAX], int clone_flags, pid_t pid, static bool preserve_ns(int ns_fd[LXC_NS_MAX], int clone_flags, pid_t pid)
char **errmsg)
{ {
int i, ret; int i, ret;
char path[MAXPATHLEN];
for (i = 0; i < LXC_NS_MAX; i++) for (i = 0; i < LXC_NS_MAX; i++)
ns_fd[i] = -1; ns_fd[i] = -1;
snprintf(path, MAXPATHLEN, "/proc/%d/ns", pid); ret = lxc_preserve_ns(pid, "");
if (access(path, X_OK)) { if (ret < 0) {
if (asprintf(errmsg, "Kernel does not support setns.") == -1) SYSERROR("Kernel does not support attaching to namespaces.");
*errmsg = NULL;
return false; return false;
} else {
close(ret);
} }
for (i = 0; i < LXC_NS_MAX; i++) { for (i = 0; i < LXC_NS_MAX; i++) {
if ((clone_flags & ns_info[i].clone_flag) == 0) if ((clone_flags & ns_info[i].clone_flag) == 0)
continue; continue;
snprintf(path, MAXPATHLEN, "/proc/%d/ns/%s", pid, ns_fd[i] = lxc_preserve_ns(pid, ns_info[i].proc_name);
ns_info[i].proc_name);
ns_fd[i] = open(path, O_RDONLY | O_CLOEXEC);
if (ns_fd[i] < 0) if (ns_fd[i] < 0)
goto error; goto error;
} }
...@@ -171,15 +157,10 @@ static bool preserve_ns(int ns_fd[LXC_NS_MAX], int clone_flags, pid_t pid, ...@@ -171,15 +157,10 @@ static bool preserve_ns(int ns_fd[LXC_NS_MAX], int clone_flags, pid_t pid,
return true; return true;
error: error:
if (errno == ENOENT) { if (errno == ENOENT)
ret = asprintf(errmsg, "Kernel does not support setns for %s", SYSERROR("Kernel does not support attaching to %s namespaces.", ns_info[i].proc_name);
ns_info[i].proc_name); else
} else { SYSERROR("Failed to open file descriptor for %s namespace: %s.", ns_info[i].proc_name, strerror(errno));
ret = asprintf(errmsg, "Failed to open %s: %s",
path, strerror(errno));
}
if (ret == -1)
*errmsg = NULL;
close_ns(ns_fd); close_ns(ns_fd);
return false; return false;
} }
...@@ -197,7 +178,7 @@ static int attach_ns(const int ns_fd[LXC_NS_MAX]) { ...@@ -197,7 +178,7 @@ static int attach_ns(const int ns_fd[LXC_NS_MAX]) {
return 0; return 0;
error: error:
SYSERROR("failed to set namespace '%s'", ns_info[i].proc_name); SYSERROR("Failed to attach %s namespace.", ns_info[i].proc_name);
return -1; return -1;
} }
...@@ -206,14 +187,13 @@ static int match_fd(int fd) ...@@ -206,14 +187,13 @@ static int match_fd(int fd)
return (fd == 0 || fd == 1 || fd == 2); return (fd == 0 || fd == 1 || fd == 2);
} }
/* /* Check for any fds we need to close.
* Check for any fds we need to close * - If fd_to_ignore != -1, then if we find that fd open we will ignore it.
* * if fd_to_ignore != -1, then if we find that fd open we will ignore it. * - By default we warn about open fds we find.
* * By default we warn about open fds we find. * - If closeall is true, we will close open fds.
* * If closeall is true, we will close open fds. * - If lxc-start was passed "-C", then conf->close_all_fds will be true, in
* * If lxc-start was passed "-C", then conf->close_all_fds will be true, * which case we also close all open fds.
* in which case we also close all open fds. * - A daemonized container will always pass closeall=true.
* * A daemonized container will always pass closeall=true.
*/ */
int lxc_check_inherited(struct lxc_conf *conf, bool closeall, int fd_to_ignore) int lxc_check_inherited(struct lxc_conf *conf, bool closeall, int fd_to_ignore)
{ {
...@@ -227,7 +207,7 @@ int lxc_check_inherited(struct lxc_conf *conf, bool closeall, int fd_to_ignore) ...@@ -227,7 +207,7 @@ int lxc_check_inherited(struct lxc_conf *conf, bool closeall, int fd_to_ignore)
restart: restart:
dir = opendir("/proc/self/fd"); dir = opendir("/proc/self/fd");
if (!dir) { if (!dir) {
WARN("failed to open directory: %m"); WARN("Failed to open directory: %m.");
return -1; return -1;
} }
...@@ -257,14 +237,13 @@ restart: ...@@ -257,14 +237,13 @@ restart:
if (closeall) { if (closeall) {
close(fd); close(fd);
closedir(dir); closedir(dir);
INFO("closed inherited fd %d", fd); INFO("Closed inherited fd: %d.", fd);
goto restart; goto restart;
} }
WARN("inherited fd %d", fd); WARN("Inherited fd: %d.", fd);
} }
/* /* Only enable syslog at this point to avoid the above logging function
* only enable syslog at this point to avoid the above logging function
* to open a new fd and make the check_inherited function enter an * to open a new fd and make the check_inherited function enter an
* infinite loop. * infinite loop.
*/ */
...@@ -279,30 +258,30 @@ static int setup_signal_fd(sigset_t *oldmask) ...@@ -279,30 +258,30 @@ static int setup_signal_fd(sigset_t *oldmask)
sigset_t mask; sigset_t mask;
int fd; int fd;
/* Block everything except serious error signals */ /* Block everything except serious error signals. */
if (sigfillset(&mask) || if (sigfillset(&mask) ||
sigdelset(&mask, SIGILL) || sigdelset(&mask, SIGILL) ||
sigdelset(&mask, SIGSEGV) || sigdelset(&mask, SIGSEGV) ||
sigdelset(&mask, SIGBUS) || sigdelset(&mask, SIGBUS) ||
sigdelset(&mask, SIGWINCH) || sigdelset(&mask, SIGWINCH) ||
sigprocmask(SIG_BLOCK, &mask, oldmask)) { sigprocmask(SIG_BLOCK, &mask, oldmask)) {
SYSERROR("failed to set signal mask"); SYSERROR("Failed to set signal mask.");
return -1; return -1;
} }
fd = signalfd(-1, &mask, 0); fd = signalfd(-1, &mask, 0);
if (fd < 0) { if (fd < 0) {
SYSERROR("failed to create the signal fd"); SYSERROR("Failed to create signal file descriptor.");
return -1; return -1;
} }
if (fcntl(fd, F_SETFD, FD_CLOEXEC)) { if (fcntl(fd, F_SETFD, FD_CLOEXEC)) {
SYSERROR("failed to set sigfd to close-on-exec"); SYSERROR("Failed to set FD_CLOEXEC on the signal file descriptor: %d.", fd);
close(fd); close(fd);
return -1; return -1;
} }
DEBUG("sigchild handler set"); DEBUG("Set SIGCHLD handler with file descriptor: %d.", fd);
return fd; return fd;
} }
...@@ -318,43 +297,44 @@ static int signal_handler(int fd, uint32_t events, void *data, ...@@ -318,43 +297,44 @@ static int signal_handler(int fd, uint32_t events, void *data,
ret = read(fd, &siginfo, sizeof(siginfo)); ret = read(fd, &siginfo, sizeof(siginfo));
if (ret < 0) { if (ret < 0) {
ERROR("failed to read signal info"); ERROR("Failed to read signal info from signal file descriptor: %d.", fd);
return -1; return -1;
} }
if (ret != sizeof(siginfo)) { if (ret != sizeof(siginfo)) {
ERROR("unexpected siginfo size"); ERROR("Unexpected size for siginfo struct.");
return -1; return -1;
} }
// check whether init is running /* Check whether init is running. */
info.si_pid = 0; info.si_pid = 0;
ret = waitid(P_PID, *pid, &info, WEXITED | WNOWAIT | WNOHANG); ret = waitid(P_PID, *pid, &info, WEXITED | WNOWAIT | WNOHANG);
if (ret == 0 && info.si_pid == *pid) { if (ret == 0 && info.si_pid == *pid)
init_died = true; init_died = true;
}
if (siginfo.ssi_signo != SIGCHLD) { if (siginfo.ssi_signo != SIGCHLD) {
kill(*pid, siginfo.ssi_signo); kill(*pid, siginfo.ssi_signo);
INFO("forwarded signal %d to pid %d", siginfo.ssi_signo, *pid); INFO("Forwarded signal %d to pid %d.", siginfo.ssi_signo, *pid);
return init_died ? 1 : 0; return init_died ? 1 : 0;
} }
if (siginfo.ssi_code == CLD_STOPPED || if (siginfo.ssi_code == CLD_STOPPED) {
siginfo.ssi_code == CLD_CONTINUED) { INFO("Container init process was stopped.");
INFO("container init process was stopped/continued"); return init_died ? 1 : 0;
} else if (siginfo.ssi_code == CLD_CONTINUED) {
INFO("Container init process was continued.");
return init_died ? 1 : 0; return init_died ? 1 : 0;
} }
/* more robustness, protect ourself from a SIGCHLD sent /* More robustness, protect ourself from a SIGCHLD sent
* by a process different from the container init * by a process different from the container init.
*/ */
if (siginfo.ssi_pid != *pid) { if (siginfo.ssi_pid != *pid) {
WARN("invalid pid for SIGCHLD"); WARN("Invalid pid for SIGCHLD. Received pid %d, expected pid %d.", siginfo.ssi_pid, *pid);
return init_died ? 1 : 0; return init_died ? 1 : 0;
} }
DEBUG("container init process exited"); DEBUG("Container init process %d exited.", *pid);
return 1; return 1;
} }
...@@ -372,33 +352,33 @@ int lxc_poll(const char *name, struct lxc_handler *handler) ...@@ -372,33 +352,33 @@ int lxc_poll(const char *name, struct lxc_handler *handler)
struct lxc_epoll_descr descr; struct lxc_epoll_descr descr;
if (lxc_mainloop_open(&descr)) { if (lxc_mainloop_open(&descr)) {
ERROR("failed to create mainloop"); ERROR("Failed to create LXC mainloop.");
goto out_sigfd; goto out_sigfd;
} }
if (lxc_mainloop_add_handler(&descr, sigfd, signal_handler, &pid)) { if (lxc_mainloop_add_handler(&descr, sigfd, signal_handler, &pid)) {
ERROR("failed to add handler for the signal"); ERROR("Failed to add signal handler with file descriptor %d to LXC mainloop.", sigfd);
goto out_mainloop_open; goto out_mainloop_open;
} }
if (lxc_console_mainloop_add(&descr, handler->conf)) { if (lxc_console_mainloop_add(&descr, handler->conf)) {
ERROR("failed to add console handler to mainloop"); ERROR("Failed to add console handler to LXC mainloop.");
goto out_mainloop_open; goto out_mainloop_open;
} }
if (lxc_cmd_mainloop_add(name, &descr, handler)) { if (lxc_cmd_mainloop_add(name, &descr, handler)) {
ERROR("failed to add command handler to mainloop"); ERROR("Failed to add command handler to LXC mainloop.");
goto out_mainloop_open; goto out_mainloop_open;
} }
if (handler->conf->need_utmp_watch) { if (handler->conf->need_utmp_watch) {
#if HAVE_SYS_CAPABILITY_H #if HAVE_SYS_CAPABILITY_H
if (lxc_utmp_mainloop_add(&descr, handler)) { if (lxc_utmp_mainloop_add(&descr, handler)) {
ERROR("failed to add utmp handler to mainloop"); ERROR("Failed to add utmp handler to LXC mainloop.");
goto out_mainloop_open; goto out_mainloop_open;
} }
#else #else
DEBUG("not starting utmp handler as cap_sys_boot cannot be dropped without capabilities support"); DEBUG("Not starting utmp handler as CAP_SYS_BOOT cannot be dropped without capabilities support.");
#endif #endif
} }
...@@ -406,8 +386,10 @@ int lxc_poll(const char *name, struct lxc_handler *handler) ...@@ -406,8 +386,10 @@ int lxc_poll(const char *name, struct lxc_handler *handler)
out_mainloop_open: out_mainloop_open:
lxc_mainloop_close(&descr); lxc_mainloop_close(&descr);
out_sigfd: out_sigfd:
close(sigfd); close(sigfd);
return -1; return -1;
} }
...@@ -434,7 +416,7 @@ struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf, const char ...@@ -434,7 +416,7 @@ struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf, const char
handler->name = strdup(name); handler->name = strdup(name);
if (!handler->name) { if (!handler->name) {
ERROR("failed to allocate memory"); ERROR("Failed to allocate memory.");
goto out_free; goto out_free;
} }
...@@ -442,66 +424,66 @@ struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf, const char ...@@ -442,66 +424,66 @@ struct lxc_handler *lxc_init(const char *name, struct lxc_conf *conf, const char
goto out_free_name; goto out_free_name;
if (lxc_read_seccomp_config(conf) != 0) { if (lxc_read_seccomp_config(conf) != 0) {
ERROR("failed loading seccomp policy"); ERROR("Failed loading seccomp policy.");
goto out_close_maincmd_fd; goto out_close_maincmd_fd;
} }
/* Begin by setting the state to STARTING */ /* Begin by setting the state to STARTING. */
if (lxc_set_state(name, handler, STARTING)) { if (lxc_set_state(name, handler, STARTING)) {
ERROR("failed to set state '%s'", lxc_state2str(STARTING)); ERROR("Failed to set state for container \"%s\" to \"%s\".", name, lxc_state2str(STARTING));
goto out_close_maincmd_fd; goto out_close_maincmd_fd;
} }
/* Start of environment variable setup for hooks */ /* Start of environment variable setup for hooks. */
if (name && setenv("LXC_NAME", name, 1)) { if (name && setenv("LXC_NAME", name, 1))
SYSERROR("failed to set environment variable for container name"); SYSERROR("Failed to set environment variable: LXC_NAME=%s.", name);
}
if (conf->rcfile && setenv("LXC_CONFIG_FILE", conf->rcfile, 1)) { if (conf->rcfile && setenv("LXC_CONFIG_FILE", conf->rcfile, 1))
SYSERROR("failed to set environment variable for config path"); SYSERROR("Failed to set environment variable: LXC_CONFIG_FILE=%s.", conf->rcfile);
}
if (conf->rootfs.mount && setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1)) { if (conf->rootfs.mount && setenv("LXC_ROOTFS_MOUNT", conf->rootfs.mount, 1))
SYSERROR("failed to set environment variable for rootfs mount"); SYSERROR("Failed to set environment variable: LXC_ROOTFS_MOUNT=%s.", conf->rootfs.mount);
}
if (conf->rootfs.path && setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1)) { if (conf->rootfs.path && setenv("LXC_ROOTFS_PATH", conf->rootfs.path, 1))
SYSERROR("failed to set environment variable for rootfs mount"); SYSERROR("Failed to set environment variable: LXC_ROOTFS_PATH=%s.", conf->rootfs.path);
}
if (conf->console.path && setenv("LXC_CONSOLE", conf->console.path, 1)) { if (conf->console.path && setenv("LXC_CONSOLE", conf->console.path, 1))
SYSERROR("failed to set environment variable for console path"); SYSERROR("Failed to set environment variable: LXC_CONSOLE=%s.", conf->console.path);
}
if (conf->console.log_path && setenv("LXC_CONSOLE_LOGPATH", conf->console.log_path, 1)) { if (conf->console.log_path && setenv("LXC_CONSOLE_LOGPATH", conf->console.log_path, 1))
SYSERROR("failed to set environment variable for console log"); SYSERROR("Failed to set environment variable: LXC_CONSOLE_LOGPATH=%s.", conf->console.log_path);
}
if (setenv("LXC_CGNS_AWARE", "1", 1)) { if (setenv("LXC_CGNS_AWARE", "1", 1))
SYSERROR("failed to set LXC_CGNS_AWARE environment variable"); SYSERROR("Failed to set environment variable LXC_CGNS_AWARE=1.");
} /* End of environment variable setup for hooks. */
/* End of environment variable setup for hooks */
if (run_lxc_hooks(name, "pre-start", conf, handler->lxcpath, NULL)) { if (run_lxc_hooks(name, "pre-start", conf, handler->lxcpath, NULL)) {
ERROR("failed to run pre-start hooks for container '%s'.", name); ERROR("Failed to run lxc.hook.pre-start for container \"%s\".", name);
goto out_aborting; goto out_aborting;
} }
/* the signal fd has to be created before forking otherwise /* The signal fd has to be created before forking otherwise if the child
* if the child process exits before we setup the signal fd, * process exits before we setup the signal fd, the event will be lost
* the event will be lost and the command will be stuck */ * and the command will be stuck.
*/
handler->sigfd = setup_signal_fd(&handler->oldmask); handler->sigfd = setup_signal_fd(&handler->oldmask);
if (handler->sigfd < 0) { if (handler->sigfd < 0) {
ERROR("failed to set sigchild fd handler"); ERROR("Failed to setup SIGCHLD fd handler.");
goto out_delete_tty; goto out_delete_tty;
} }
/* do this after setting up signals since it might unblock SIGWINCH */ /* Do this after setting up signals since it might unblock SIGWINCH. */
if (lxc_console_create(conf)) { if (lxc_console_create(conf)) {
ERROR("failed to create console"); ERROR("Failed to create console for container \"%s\".", name);
goto out_restore_sigmask; goto out_restore_sigmask;
} }
if (ttys_shift_ids(conf) < 0) { if (ttys_shift_ids(conf) < 0) {
ERROR("Failed to shift tty into container"); ERROR("Failed to shift tty into container.");
goto out_restore_sigmask; goto out_restore_sigmask;
} }
INFO("'%s' is initialized", name); INFO("Container \"%s\" is initialized.", name);
return handler; return handler;
out_restore_sigmask: out_restore_sigmask:
...@@ -528,8 +510,8 @@ void lxc_fini(const char *name, struct lxc_handler *handler) ...@@ -528,8 +510,8 @@ void lxc_fini(const char *name, struct lxc_handler *handler)
char *namespaces[LXC_NS_MAX+1]; char *namespaces[LXC_NS_MAX+1];
size_t namespace_count = 0; size_t namespace_count = 0;
/* The STOPPING state is there for future cleanup code /* The STOPPING state is there for future cleanup code which can take
* which can take awhile * awhile.
*/ */
lxc_set_state(name, handler, STOPPING); lxc_set_state(name, handler, STOPPING);
...@@ -538,7 +520,7 @@ void lxc_fini(const char *name, struct lxc_handler *handler) ...@@ -538,7 +520,7 @@ void lxc_fini(const char *name, struct lxc_handler *handler)
rc = asprintf(&namespaces[namespace_count], "%s:/proc/%d/fd/%d", rc = asprintf(&namespaces[namespace_count], "%s:/proc/%d/fd/%d",
ns_info[i].proc_name, self, handler->nsfd[i]); ns_info[i].proc_name, self, handler->nsfd[i]);
if (rc == -1) { if (rc == -1) {
SYSERROR("failed to allocate memory"); SYSERROR("Failed to allocate memory.");
break; break;
} }
++namespace_count; ++namespace_count;
...@@ -546,15 +528,14 @@ void lxc_fini(const char *name, struct lxc_handler *handler) ...@@ -546,15 +528,14 @@ void lxc_fini(const char *name, struct lxc_handler *handler)
} }
namespaces[namespace_count] = NULL; namespaces[namespace_count] = NULL;
if (handler->conf->reboot && setenv("LXC_TARGET", "reboot", 1)) { if (handler->conf->reboot && setenv("LXC_TARGET", "reboot", 1))
SYSERROR("failed to set environment variable for stop target"); SYSERROR("Failed to set environment variable: LXC_TARGET=reboot.");
}
if (!handler->conf->reboot && setenv("LXC_TARGET", "stop", 1)) { if (!handler->conf->reboot && setenv("LXC_TARGET", "stop", 1))
SYSERROR("failed to set environment variable for stop target"); SYSERROR("Failed to set environment variable: LXC_TARGET=stop.");
}
if (run_lxc_hooks(name, "stop", handler->conf, handler->lxcpath, namespaces)) if (run_lxc_hooks(name, "stop", handler->conf, handler->lxcpath, namespaces))
ERROR("failed to run stop hooks for container '%s'.", name); ERROR("Failed to run lxc.hook.stop for container \"%s\".", name);
while (namespace_count--) while (namespace_count--)
free(namespaces[namespace_count]); free(namespaces[namespace_count]);
...@@ -564,20 +545,27 @@ void lxc_fini(const char *name, struct lxc_handler *handler) ...@@ -564,20 +545,27 @@ void lxc_fini(const char *name, struct lxc_handler *handler)
handler->nsfd[i] = -1; handler->nsfd[i] = -1;
} }
} }
if (handler->netnsfd >= 0) {
close(handler->netnsfd);
handler->netnsfd = -1;
}
lxc_set_state(name, handler, STOPPED); lxc_set_state(name, handler, STOPPED);
if (run_lxc_hooks(name, "post-stop", handler->conf, handler->lxcpath, NULL)) { if (run_lxc_hooks(name, "post-stop", handler->conf, handler->lxcpath, NULL)) {
ERROR("failed to run post-stop hooks for container '%s'.", name); ERROR("Failed to run lxc.hook.post-stop for container \"%s\".", name);
if (handler->conf->reboot) { if (handler->conf->reboot) {
WARN("Container will be stopped instead of rebooted."); WARN("Container will be stopped instead of rebooted.");
handler->conf->reboot = 0; handler->conf->reboot = 0;
setenv("LXC_TARGET", "stop", 1); if (setenv("LXC_TARGET", "stop", 1))
WARN("Failed to set environment variable: LXC_TARGET=stop.");
} }
} }
/* reset mask set by setup_signal_fd */ /* Reset mask set by setup_signal_fd. */
if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL))
WARN("failed to restore sigprocmask"); WARN("Failed to restore signal mask.");
lxc_console_delete(&handler->conf->console); lxc_console_delete(&handler->conf->console);
lxc_delete_tty(&handler->conf->tty_info); lxc_delete_tty(&handler->conf->tty_info);
...@@ -603,16 +591,17 @@ void lxc_abort(const char *name, struct lxc_handler *handler) ...@@ -603,16 +591,17 @@ void lxc_abort(const char *name, struct lxc_handler *handler)
lxc_set_state(name, handler, ABORTING); lxc_set_state(name, handler, ABORTING);
if (handler->pid > 0) if (handler->pid > 0)
kill(handler->pid, SIGKILL); kill(handler->pid, SIGKILL);
while ((ret = waitpid(-1, &status, 0)) > 0) ; while ((ret = waitpid(-1, &status, 0)) > 0) {
;
}
} }
#include <sys/reboot.h> #include <sys/reboot.h>
#include <linux/reboot.h> #include <linux/reboot.h>
/* /* reboot(LINUX_REBOOT_CMD_CAD_ON) will return -EINVAL in a child pid namespace
* reboot(LINUX_REBOOT_CMD_CAD_ON) will return -EINVAL * if container reboot support exists. Otherwise, it will either succeed or
* in a child pid namespace if container reboot support exists. * return -EPERM.
* Otherwise, it will either succeed or return -EPERM.
*/ */
static int container_reboot_supported(void *arg) static int container_reboot_supported(void *arg)
{ {
...@@ -643,7 +632,7 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf) ...@@ -643,7 +632,7 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf)
ret = fscanf(f, "%d", &v); ret = fscanf(f, "%d", &v);
fclose(f); fclose(f);
if (ret != 1) { if (ret != 1) {
DEBUG("Failed to read /proc/sys/kernel/ctrl-alt-del"); DEBUG("Failed to read /proc/sys/kernel/ctrl-alt-del.");
return 1; return 1;
} }
cmd = v ? LINUX_REBOOT_CMD_CAD_ON : LINUX_REBOOT_CMD_CAD_OFF; cmd = v ? LINUX_REBOOT_CMD_CAD_ON : LINUX_REBOOT_CMD_CAD_OFF;
...@@ -660,13 +649,13 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf) ...@@ -660,13 +649,13 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf)
#endif #endif
if (pid < 0) { if (pid < 0) {
if (flags & CLONE_NEWUSER) if (flags & CLONE_NEWUSER)
ERROR("failed to clone (%#x): %s (includes CLONE_NEWUSER)", flags, strerror(errno)); ERROR("Failed to clone (%#x): %s (includes CLONE_NEWUSER).", flags, strerror(errno));
else else
ERROR("failed to clone (%#x): %s", flags, strerror(errno)); ERROR("Failed to clone (%#x): %s.", flags, strerror(errno));
return -1; return -1;
} }
if (wait(&status) < 0) { if (wait(&status) < 0) {
SYSERROR("unexpected wait error: %m"); SYSERROR("Unexpected wait error: %m.");
return -1; return -1;
} }
...@@ -676,9 +665,8 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf) ...@@ -676,9 +665,8 @@ static int must_drop_cap_sys_boot(struct lxc_conf *conf)
return 0; return 0;
} }
/* /* netpipe is used in the unprivileged case to transfer the ifindexes from
* netpipe is used in the unprivileged case to transfer the ifindexes * parent to child
* from parent to child
*/ */
static int netpipe = -1; static int netpipe = -1;
...@@ -709,7 +697,7 @@ static int read_unpriv_netifindex(struct lxc_list *network) ...@@ -709,7 +697,7 @@ static int read_unpriv_netifindex(struct lxc_list *network)
if (netdev->type != LXC_NET_VETH) if (netdev->type != LXC_NET_VETH)
continue; continue;
if (!(netdev->name = malloc(IFNAMSIZ))) { if (!(netdev->name = malloc(IFNAMSIZ))) {
ERROR("Out of memory"); ERROR("Out of memory.");
close(netpipe); close(netpipe);
return -1; return -1;
} }
...@@ -730,24 +718,24 @@ static int do_start(void *data) ...@@ -730,24 +718,24 @@ static int do_start(void *data)
char path[PATH_MAX]; char path[PATH_MAX];
if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) { if (sigprocmask(SIG_SETMASK, &handler->oldmask, NULL)) {
SYSERROR("failed to set sigprocmask"); SYSERROR("Failed to set signal mask.");
return -1; return -1;
} }
/* This prctl must be before the synchro, so if the parent /* This prctl must be before the synchro, so if the parent dies before
* dies before we set the parent death signal, we will detect * we set the parent death signal, we will detect its death with the
* its death with the synchro right after, otherwise we have * synchro right after, otherwise we have a window where the parent can
* a window where the parent can exit before we set the pdeath * exit before we set the pdeath signal leading to a unsupervized
* signal leading to a unsupervized container. * container.
*/ */
if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0)) { if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0)) {
SYSERROR("failed to set pdeath signal"); SYSERROR("Failed to set PR_SET_PDEATHSIG to SIGKILL.");
return -1; return -1;
} }
lxc_sync_fini_parent(handler); lxc_sync_fini_parent(handler);
/* don't leak the pinfd to the container */ /* Don't leak the pinfd to the container. */
if (handler->pinfd >= 0) { if (handler->pinfd >= 0) {
close(handler->pinfd); close(handler->pinfd);
} }
...@@ -755,19 +743,21 @@ static int do_start(void *data) ...@@ -755,19 +743,21 @@ static int do_start(void *data)
if (lxc_sync_wait_parent(handler, LXC_SYNC_STARTUP)) if (lxc_sync_wait_parent(handler, LXC_SYNC_STARTUP))
return -1; return -1;
/* Unshare CLONE_NEWNET after CLONE_NEWUSER - see /* Unshare CLONE_NEWNET after CLONE_NEWUSER. See
https://github.com/lxc/lxd/issues/1978 */ * https://github.com/lxc/lxd/issues/1978.
*/
if ((handler->clone_flags & (CLONE_NEWNET | CLONE_NEWUSER)) == if ((handler->clone_flags & (CLONE_NEWNET | CLONE_NEWUSER)) ==
(CLONE_NEWNET | CLONE_NEWUSER)) { (CLONE_NEWNET | CLONE_NEWUSER)) {
ret = unshare(CLONE_NEWNET); ret = unshare(CLONE_NEWNET);
if (ret < 0) { if (ret < 0) {
SYSERROR("Error unsharing network namespace"); SYSERROR("Failed to unshare CLONE_NEWNET.");
goto out_warn_father; goto out_warn_father;
} }
INFO("Unshared CLONE_NEWNET.");
} }
/* Tell the parent task it can begin to configure the /* Tell the parent task it can begin to configure the container and wait
* container and wait for it to finish * for it to finish.
*/ */
if (lxc_sync_barrier_parent(handler, LXC_SYNC_CONFIGURE)) if (lxc_sync_barrier_parent(handler, LXC_SYNC_CONFIGURE))
return -1; return -1;
...@@ -775,11 +765,10 @@ static int do_start(void *data) ...@@ -775,11 +765,10 @@ static int do_start(void *data)
if (read_unpriv_netifindex(&handler->conf->network) < 0) if (read_unpriv_netifindex(&handler->conf->network) < 0)
goto out_warn_father; goto out_warn_father;
/* /* If we are in a new user namespace, become root there to have
* if we are in a new user namespace, become root there to have * privilege over our namespace. When using lxc-execute we default to
* privilege over our namespace. When using lxc-execute we default to root, * root, but this can be overriden using the lxc.init_uid and
* but this can be overriden using the lxc.init_uid and lxc.init_gid * lxc.init_gid configuration options.
* configuration options.
*/ */
if (!lxc_list_empty(&handler->conf->id_map)) { if (!lxc_list_empty(&handler->conf->id_map)) {
gid_t new_gid = 0; gid_t new_gid = 0;
...@@ -790,17 +779,17 @@ static int do_start(void *data) ...@@ -790,17 +779,17 @@ static int do_start(void *data)
if (handler->conf->is_execute && handler->conf->init_uid) if (handler->conf->is_execute && handler->conf->init_uid)
new_uid = handler->conf->init_uid; new_uid = handler->conf->init_uid;
NOTICE("switching to gid/uid %d/%d in new user namespace", new_gid, new_uid); NOTICE("Switching to uid=%d and gid=%d in new user namespace.", new_uid, new_gid);
if (setgid(new_gid)) { if (setgid(new_gid)) {
SYSERROR("setgid"); SYSERROR("Failed to setgid().");
goto out_warn_father; goto out_warn_father;
} }
if (setuid(new_uid)) { if (setuid(new_uid)) {
SYSERROR("setuid"); SYSERROR("Failed to setuid().");
goto out_warn_father; goto out_warn_father;
} }
if (setgroups(0, NULL)) { if (setgroups(0, NULL)) {
SYSERROR("setgroups"); SYSERROR("Failed to setgroups().");
goto out_warn_father; goto out_warn_father;
} }
} }
...@@ -813,18 +802,16 @@ static int do_start(void *data) ...@@ -813,18 +802,16 @@ static int do_start(void *data)
#if HAVE_SYS_CAPABILITY_H #if HAVE_SYS_CAPABILITY_H
if (handler->conf->need_utmp_watch) { if (handler->conf->need_utmp_watch) {
if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) { if (prctl(PR_CAPBSET_DROP, CAP_SYS_BOOT, 0, 0, 0)) {
SYSERROR("failed to remove CAP_SYS_BOOT capability"); SYSERROR("Failed to remove the CAP_SYS_BOOT capability.");
goto out_warn_father; goto out_warn_father;
} }
DEBUG("Dropped cap_sys_boot"); DEBUG("Dropped the CAP_SYS_BOOT capability.");
} }
#endif #endif
ret = snprintf(path, sizeof(path), "%s/dev/null", handler->conf->rootfs.mount); ret = snprintf(path, sizeof(path), "%s/dev/null", handler->conf->rootfs.mount);
if (ret < 0 || ret >= sizeof(path)) { if (ret < 0 || ret >= sizeof(path))
SYSERROR("sprintf'd too many chars");
goto out_warn_father; goto out_warn_father;
}
/* In order to checkpoint restore, we need to have everything in the /* In order to checkpoint restore, we need to have everything in the
* same mount namespace. However, some containers may not have a * same mount namespace. However, some containers may not have a
...@@ -841,16 +828,17 @@ static int do_start(void *data) ...@@ -841,16 +828,17 @@ static int do_start(void *data)
if (devnull_fd < 0) if (devnull_fd < 0)
goto out_warn_father; goto out_warn_father;
WARN("using host's /dev/null for container init's std fds, migraiton won't work"); WARN("Using /dev/null from the host for container init's "
"standard file descriptors. Migration will not work.");
} }
/* Setup the container, ip, names, utsname, ... */ /* Setup the container, ip, names, utsname, ... */
if (lxc_setup(handler)) { if (lxc_setup(handler)) {
ERROR("failed to setup the container"); ERROR("Failed to setup container \"%s\".", handler->name);
goto out_warn_father; goto out_warn_father;
} }
/* ask father to setup cgroups and wait for him to finish */ /* Ask father to setup cgroups and wait for him to finish. */
if (lxc_sync_barrier_parent(handler, LXC_SYNC_CGROUP)) if (lxc_sync_barrier_parent(handler, LXC_SYNC_CGROUP))
goto out_error; goto out_error;
...@@ -874,12 +862,13 @@ static int do_start(void *data) ...@@ -874,12 +862,13 @@ static int do_start(void *data)
INFO("Unshared CLONE_NEWCGROUP."); INFO("Unshared CLONE_NEWCGROUP.");
} }
/* Set the label to change to when we exec(2) the container's init */ /* Set the label to change to when we exec(2) the container's init. */
if (lsm_process_label_set(NULL, handler->conf, 1, 1) < 0) if (lsm_process_label_set(NULL, handler->conf, 1, 1) < 0)
goto out_warn_father; goto out_warn_father;
/* Set PR_SET_NO_NEW_PRIVS after we changed the lsm label. If we do it /* Set PR_SET_NO_NEW_PRIVS after we changed the lsm label. If we do it
* before we aren't allowed anymore. */ * before we aren't allowed anymore.
*/
if (handler->conf->no_new_privs) { if (handler->conf->no_new_privs) {
if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) { if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) {
SYSERROR("Could not set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges."); SYSERROR("Could not set PR_SET_NO_NEW_PRIVS to block execve() gainable privileges.");
...@@ -891,48 +880,48 @@ static int do_start(void *data) ...@@ -891,48 +880,48 @@ static int do_start(void *data)
/* Some init's such as busybox will set sane tty settings on stdin, /* Some init's such as busybox will set sane tty settings on stdin,
* stdout, stderr which it thinks is the console. We already set them * stdout, stderr which it thinks is the console. We already set them
* the way we wanted on the real terminal, and we want init to do its * the way we wanted on the real terminal, and we want init to do its
* setup on its console ie. the pty allocated in lxc_console_create() * setup on its console ie. the pty allocated in lxc_console_create() so
* so make sure that that pty is stdin,stdout,stderr. * make sure that that pty is stdin,stdout,stderr.
*/ */
if (lxc_console_set_stdfds(handler->conf->console.slave) < 0) if (lxc_console_set_stdfds(handler->conf->console.slave) < 0)
goto out_warn_father; goto out_warn_father;
/* If we mounted a temporary proc, then unmount it now */ /* If we mounted a temporary proc, then unmount it now. */
tmp_proc_unmount(handler->conf); tmp_proc_unmount(handler->conf);
if (lxc_seccomp_load(handler->conf) != 0) if (lxc_seccomp_load(handler->conf) != 0)
goto out_warn_father; goto out_warn_father;
if (run_lxc_hooks(handler->name, "start", handler->conf, handler->lxcpath, NULL)) { if (run_lxc_hooks(handler->name, "start", handler->conf, handler->lxcpath, NULL)) {
ERROR("failed to run start hooks for container '%s'.", handler->name); ERROR("Failed to run lxc.hook.start for container \"%s\".", handler->name);
goto out_warn_father; goto out_warn_father;
} }
/* The clearenv() and putenv() calls have been moved here /* The clearenv() and putenv() calls have been moved here to allow us to
* to allow us to use environment variables passed to the various * use environment variables passed to the various hooks, such as the
* hooks, such as the start hook above. Not all of the * start hook above. Not all of the variables like CONFIG_PATH or ROOTFS
* variables like CONFIG_PATH or ROOTFS are valid in this * are valid in this context but others are.
* context but others are. */ */
if (clearenv()) { if (clearenv()) {
SYSERROR("failed to clear environment"); SYSERROR("Failed to clear environment.");
/* don't error out though */ /* Don't error out though. */
} }
lxc_list_for_each(iterator, &handler->conf->environment) { lxc_list_for_each(iterator, &handler->conf->environment) {
if (putenv((char *)iterator->elem)) { if (putenv((char *)iterator->elem)) {
SYSERROR("failed to set environment variable '%s'", (char *)iterator->elem); SYSERROR("Failed to set environment variable: %s.", (char *)iterator->elem);
goto out_warn_father; goto out_warn_father;
} }
} }
if (putenv("container=lxc")) { if (putenv("container=lxc")) {
SYSERROR("failed to set environment variable 'container=lxc'"); SYSERROR("Failed to set environment variable: container=lxc.");
goto out_warn_father; goto out_warn_father;
} }
if (handler->conf->pty_names) { if (handler->conf->pty_names) {
if (putenv(handler->conf->pty_names)) { if (putenv(handler->conf->pty_names)) {
SYSERROR("failed to set environment variable for container ptys"); SYSERROR("Failed to set environment variable for container ptys.");
goto out_warn_father; goto out_warn_father;
} }
} }
...@@ -956,13 +945,15 @@ static int do_start(void *data) ...@@ -956,13 +945,15 @@ static int do_start(void *data)
setsid(); setsid();
/* after this call, we are in error because this /* After this call, we are in error because this ops should not return
* ops should not return as it execs */ * as it execs.
*/
handler->ops->start(handler, handler->data); handler->ops->start(handler, handler->data);
out_warn_father: out_warn_father:
/* we want the parent to know something went wrong, so we return a special /* We want the parent to know something went wrong, so we return a
* error code. */ * special error code.
*/
lxc_sync_wake_parent(handler, LXC_SYNC_ERROR); lxc_sync_wake_parent(handler, LXC_SYNC_ERROR);
out_error: out_error:
...@@ -987,17 +978,13 @@ static int save_phys_nics(struct lxc_conf *conf) ...@@ -987,17 +978,13 @@ static int save_phys_nics(struct lxc_conf *conf)
continue; continue;
conf->saved_nics = realloc(conf->saved_nics, conf->saved_nics = realloc(conf->saved_nics,
(conf->num_savednics+1)*sizeof(struct saved_nic)); (conf->num_savednics+1)*sizeof(struct saved_nic));
if (!conf->saved_nics) { if (!conf->saved_nics)
SYSERROR("failed to allocate memory");
return -1; return -1;
}
conf->saved_nics[conf->num_savednics].ifindex = netdev->ifindex; conf->saved_nics[conf->num_savednics].ifindex = netdev->ifindex;
conf->saved_nics[conf->num_savednics].orig_name = strdup(netdev->link); conf->saved_nics[conf->num_savednics].orig_name = strdup(netdev->link);
if (!conf->saved_nics[conf->num_savednics].orig_name) { if (!conf->saved_nics[conf->num_savednics].orig_name)
SYSERROR("failed to allocate memory");
return -1; return -1;
} INFO("Stored saved_nic #%d idx %d name %s.", conf->num_savednics,
INFO("stored saved_nic #%d idx %d name %s", conf->num_savednics,
conf->saved_nics[conf->num_savednics].ifindex, conf->saved_nics[conf->num_savednics].ifindex,
conf->saved_nics[conf->num_savednics].orig_name); conf->saved_nics[conf->num_savednics].orig_name);
conf->num_savednics++; conf->num_savednics++;
...@@ -1009,7 +996,7 @@ static int save_phys_nics(struct lxc_conf *conf) ...@@ -1009,7 +996,7 @@ static int save_phys_nics(struct lxc_conf *conf)
static int recv_fd(int sock, int *fd) static int recv_fd(int sock, int *fd)
{ {
if (lxc_abstract_unix_recv_fd(sock, fd, NULL, 0) < 0) { if (lxc_abstract_unix_recv_fd(sock, fd, NULL, 0) < 0) {
SYSERROR("Error receiving tty fd from child"); SYSERROR("Error receiving tty file descriptor from child process.");
return -1; return -1;
} }
if (*fd == -1) if (*fd == -1)
...@@ -1026,18 +1013,16 @@ static int recv_ttys_from_child(struct lxc_handler *handler) ...@@ -1026,18 +1013,16 @@ static int recv_ttys_from_child(struct lxc_handler *handler)
if (!conf->tty) if (!conf->tty)
return 0; return 0;
tty_info->pty_info = malloc(sizeof(*tty_info->pty_info)*conf->tty); tty_info->pty_info = malloc(sizeof(*tty_info->pty_info) * conf->tty);
if (!tty_info->pty_info) { if (!tty_info->pty_info)
SYSERROR("failed to allocate pty_info");
return -1; return -1;
}
for (i = 0; i < conf->tty; i++) { for (i = 0; i < conf->tty; i++) {
struct lxc_pty_info *pty_info = &tty_info->pty_info[i]; struct lxc_pty_info *pty_info = &tty_info->pty_info[i];
pty_info->busy = 0; pty_info->busy = 0;
if (recv_fd(sock, &pty_info->slave) < 0 || if (recv_fd(sock, &pty_info->slave) < 0 ||
recv_fd(sock, &pty_info->master) < 0) { recv_fd(sock, &pty_info->master) < 0) {
ERROR("Error receiving tty info from child"); ERROR("Error receiving tty info from child process.");
return -1; return -1;
} }
} }
...@@ -1050,36 +1035,31 @@ void resolve_clone_flags(struct lxc_handler *handler) ...@@ -1050,36 +1035,31 @@ void resolve_clone_flags(struct lxc_handler *handler)
{ {
handler->clone_flags = CLONE_NEWPID | CLONE_NEWNS; handler->clone_flags = CLONE_NEWPID | CLONE_NEWNS;
if (!lxc_list_empty(&handler->conf->id_map)) { if (!lxc_list_empty(&handler->conf->id_map))
INFO("Cloning a new user namespace");
handler->clone_flags |= CLONE_NEWUSER; handler->clone_flags |= CLONE_NEWUSER;
}
if (handler->conf->inherit_ns_fd[LXC_NS_NET] == -1) { if (handler->conf->inherit_ns_fd[LXC_NS_NET] == -1) {
if (!lxc_requests_empty_network(handler)) if (!lxc_requests_empty_network(handler))
handler->clone_flags |= CLONE_NEWNET; handler->clone_flags |= CLONE_NEWNET;
} else { } else {
INFO("Inheriting a net namespace"); INFO("Inheriting a NET namespace.");
} }
if (handler->conf->inherit_ns_fd[LXC_NS_IPC] == -1) { if (handler->conf->inherit_ns_fd[LXC_NS_IPC] == -1)
handler->clone_flags |= CLONE_NEWIPC; handler->clone_flags |= CLONE_NEWIPC;
} else { else
INFO("Inheriting an IPC namespace"); INFO("Inheriting an IPC namespace.");
}
if (handler->conf->inherit_ns_fd[LXC_NS_UTS] == -1) { if (handler->conf->inherit_ns_fd[LXC_NS_UTS] == -1)
handler->clone_flags |= CLONE_NEWUTS; handler->clone_flags |= CLONE_NEWUTS;
} else { else
INFO("Inheriting a UTS namespace"); INFO("Inheriting a UTS namespace.");
}
} }
static int lxc_spawn(struct lxc_handler *handler) static int lxc_spawn(struct lxc_handler *handler)
{ {
int failed_before_rename = 0; int failed_before_rename = 0;
const char *name = handler->name; const char *name = handler->name;
char *errmsg = NULL;
bool cgroups_connected = false; bool cgroups_connected = false;
int saved_ns_fd[LXC_NS_MAX]; int saved_ns_fd[LXC_NS_MAX];
int preserve_mask = 0, i, flags; int preserve_mask = 0, i, flags;
...@@ -1107,99 +1087,102 @@ static int lxc_spawn(struct lxc_handler *handler) ...@@ -1107,99 +1087,102 @@ static int lxc_spawn(struct lxc_handler *handler)
/* Find gateway addresses from the link device, which is /* Find gateway addresses from the link device, which is
* no longer accessible inside the container. Do this * no longer accessible inside the container. Do this
* before creating network interfaces, since goto * before creating network interfaces, since goto
* out_delete_net does not work before lxc_clone. */ * out_delete_net does not work before lxc_clone.
*/
if (lxc_find_gateway_addresses(handler)) { if (lxc_find_gateway_addresses(handler)) {
ERROR("failed to find gateway addresses"); ERROR("Failed to find gateway addresses.");
lxc_sync_fini(handler); lxc_sync_fini(handler);
return -1; return -1;
} }
/* that should be done before the clone because we will /* That should be done before the clone because we will
* fill the netdev index and use them in the child * fill the netdev index and use them in the child.
*/ */
if (lxc_create_network(handler)) { if (lxc_create_network(handler)) {
ERROR("failed to create the network"); ERROR("Failed to create the network.");
lxc_sync_fini(handler); lxc_sync_fini(handler);
return -1; return -1;
} }
} }
if (save_phys_nics(handler->conf)) { if (save_phys_nics(handler->conf)) {
ERROR("failed to save physical nic info"); ERROR("Failed to save physical nic info.");
goto out_abort; goto out_abort;
} }
} }
if (!cgroup_init(handler)) { if (!cgroup_init(handler)) {
ERROR("failed initializing cgroup support"); ERROR("Failed initializing cgroup support.");
goto out_delete_net; goto out_delete_net;
} }
cgroups_connected = true; cgroups_connected = true;
if (!cgroup_create(handler)) { if (!cgroup_create(handler)) {
ERROR("failed creating cgroups"); ERROR("Failed creating cgroups.");
goto out_delete_net; goto out_delete_net;
} }
/* /* If the rootfs is not a blockdev, prevent the container from marking
* if the rootfs is not a blockdev, prevent the container from * it readonly.
* marking it readonly. * If the container is unprivileged then skip rootfs pinning.
*
* if the container is unprivileged then skip rootfs pinning
*/ */
if (lxc_list_empty(&handler->conf->id_map)) { if (lxc_list_empty(&handler->conf->id_map)) {
handler->pinfd = pin_rootfs(handler->conf->rootfs.path); handler->pinfd = pin_rootfs(handler->conf->rootfs.path);
if (handler->pinfd == -1) if (handler->pinfd == -1)
INFO("failed to pin the container's rootfs"); INFO("Failed to pin the rootfs for container \"%s\".", handler->name);
} }
if (!preserve_ns(saved_ns_fd, preserve_mask, getpid(), &errmsg)) { if (!preserve_ns(saved_ns_fd, preserve_mask, getpid()))
SYSERROR("Failed to preserve requested namespaces: %s",
errmsg ? errmsg : "(Out of memory)");
free(errmsg);
goto out_delete_net; goto out_delete_net;
}
if (attach_ns(handler->conf->inherit_ns_fd) < 0) if (attach_ns(handler->conf->inherit_ns_fd) < 0)
goto out_delete_net; goto out_delete_net;
if (am_unpriv() && (nveths = count_veths(&handler->conf->network))) { if (am_unpriv() && (nveths = count_veths(&handler->conf->network))) {
if (pipe(netpipepair) < 0) { if (pipe(netpipepair) < 0) {
SYSERROR("Error creating pipe"); SYSERROR("Failed to create pipe.");
goto out_delete_net; goto out_delete_net;
} }
/* store netpipe in the global var for do_start's use */ /* Store netpipe in the global var for do_start's use. */
netpipe = netpipepair[0]; netpipe = netpipepair[0];
} }
/* Create a process in a new set of namespaces */ /* Create a process in a new set of namespaces. */
flags = handler->clone_flags; flags = handler->clone_flags;
if (handler->clone_flags & CLONE_NEWUSER) if (handler->clone_flags & CLONE_NEWUSER) {
/* If CLONE_NEWUSER and CLONE_NEWNET was requested, we need to
* clone a new user namespace first and only later unshare our
* network namespace to ensure that network devices ownership is
* set up correctly.
*/
flags &= ~CLONE_NEWNET; flags &= ~CLONE_NEWNET;
}
handler->pid = lxc_clone(do_start, handler, flags); handler->pid = lxc_clone(do_start, handler, flags);
if (handler->pid < 0) { if (handler->pid < 0) {
SYSERROR("failed to fork into a new namespace"); SYSERROR("Failed to clone a new set of namespaces.");
goto out_delete_net; goto out_delete_net;
} }
for (i = 0; i < LXC_NS_MAX; i++)
if (flags & ns_info[i].clone_flag)
INFO("Cloned %s.", ns_info[i].flag_name);
if (!preserve_ns(handler->nsfd, handler->clone_flags | preserve_mask, handler->pid, &errmsg)) { if (!preserve_ns(handler->nsfd, handler->clone_flags | preserve_mask, handler->pid))
INFO("Failed to store namespace references for stop hook: %s", INFO("Failed to preserve namespace for lxc.hook.stop.");
errmsg ? errmsg : "(Out of memory)");
free(errmsg);
}
if (attach_ns(saved_ns_fd)) if (attach_ns(saved_ns_fd))
WARN("failed to restore saved namespaces"); WARN("Failed to restore saved namespaces.");
lxc_sync_fini_child(handler); lxc_sync_fini_child(handler);
/* map the container uids - the container became an invalid /* Map the container uids. The container became an invalid userid the
* userid the moment it was cloned with CLONE_NEWUSER - this * moment it was cloned with CLONE_NEWUSER. This call doesn't change
* call doesn't change anything immediately, but allows the * anything immediately, but allows the container to setuid(0) (0 being
* container to setuid(0) (0 being mapped to something else on * mapped to something else on the host.) later to become a valid uid
* the host) later to become a valid uid again */ * again.
*/
if (lxc_map_ids(&handler->conf->id_map, handler->pid)) { if (lxc_map_ids(&handler->conf->id_map, handler->pid)) {
ERROR("failed to set up id mapping"); ERROR("Failed to set up id mapping.");
goto out_delete_net; goto out_delete_net;
} }
...@@ -1214,11 +1197,11 @@ static int lxc_spawn(struct lxc_handler *handler) ...@@ -1214,11 +1197,11 @@ static int lxc_spawn(struct lxc_handler *handler)
} }
if (!cgroup_create_legacy(handler)) { if (!cgroup_create_legacy(handler)) {
ERROR("failed to setup the legacy cgroups for %s", name); ERROR("Failed to setup legacy cgroups for container \"%s\".", name);
goto out_delete_net; goto out_delete_net;
} }
if (!cgroup_setup_limits(handler, false)) { if (!cgroup_setup_limits(handler, false)) {
ERROR("failed to setup the cgroup limits for '%s'", name); ERROR("Failed to setup cgroup limits for container \"%s\".", name);
goto out_delete_net; goto out_delete_net;
} }
...@@ -1231,11 +1214,11 @@ static int lxc_spawn(struct lxc_handler *handler) ...@@ -1231,11 +1214,11 @@ static int lxc_spawn(struct lxc_handler *handler)
if (failed_before_rename) if (failed_before_rename)
goto out_delete_net; goto out_delete_net;
/* Create the network configuration */ /* Create the network configuration. */
if (handler->clone_flags & CLONE_NEWNET) { if (handler->clone_flags & CLONE_NEWNET) {
if (lxc_assign_network(handler->lxcpath, handler->name, if (lxc_assign_network(handler->lxcpath, handler->name,
&handler->conf->network, handler->pid)) { &handler->conf->network, handler->pid)) {
ERROR("failed to create the configured network"); ERROR("Failed to create the configured network.");
goto out_delete_net; goto out_delete_net;
} }
} }
...@@ -1250,39 +1233,38 @@ static int lxc_spawn(struct lxc_handler *handler) ...@@ -1250,39 +1233,38 @@ static int lxc_spawn(struct lxc_handler *handler)
if (netdev->type != LXC_NET_VETH) if (netdev->type != LXC_NET_VETH)
continue; continue;
if (write(netpipepair[1], netdev->name, IFNAMSIZ) != IFNAMSIZ) { if (write(netpipepair[1], netdev->name, IFNAMSIZ) != IFNAMSIZ) {
ERROR("Error writing veth name to container"); ERROR("Error writing veth name to container.");
goto out_delete_net; goto out_delete_net;
} }
} }
close(netpipepair[1]); close(netpipepair[1]);
} }
/* Tell the child to continue its initialization. we'll get /* Tell the child to continue its initialization. We'll get
* LXC_SYNC_CGROUP when it is ready for us to setup cgroups * LXC_SYNC_CGROUP when it is ready for us to setup cgroups.
*/ */
if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CONFIGURE)) if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CONFIGURE))
goto out_delete_net; goto out_delete_net;
if (!cgroup_setup_limits(handler, true)) { if (!cgroup_setup_limits(handler, true)) {
ERROR("failed to setup the devices cgroup for '%s'", name); ERROR("Failed to setup the devices cgroup for container \"%s\".", name);
goto out_delete_net; goto out_delete_net;
} }
cgroup_disconnect(); cgroup_disconnect();
cgroups_connected = false; cgroups_connected = false;
/* read tty fds allocated by child */ /* Read tty fds allocated by child. */
if (recv_ttys_from_child(handler) < 0) { if (recv_ttys_from_child(handler) < 0) {
ERROR("failed to receive tty info from child"); ERROR("Failed to receive tty info from child process.");
goto out_delete_net; goto out_delete_net;
} }
/* Tell the child to complete its initialization and wait for /* Tell the child to complete its initialization and wait for it to exec
* it to exec or return an error. (the child will never * or return an error. (The child will never return
* return LXC_SYNC_POST_CGROUP+1. It will either close the * LXC_SYNC_POST_CGROUP+1. It will either close the sync pipe, causing
* sync pipe, causing lxc_sync_barrier_child to return * lxc_sync_barrier_child to return success, or return a different
* success, or return a different value, causing us to error * value, causing us to error out).
* out).
*/ */
if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CGROUP)) if (lxc_sync_barrier_child(handler, LXC_SYNC_POST_CGROUP))
return -1; return -1;
...@@ -1294,12 +1276,13 @@ static int lxc_spawn(struct lxc_handler *handler) ...@@ -1294,12 +1276,13 @@ static int lxc_spawn(struct lxc_handler *handler)
goto out_abort; goto out_abort;
if (lxc_set_state(name, handler, RUNNING)) { if (lxc_set_state(name, handler, RUNNING)) {
ERROR("failed to set state to %s", ERROR("Failed to set state for container \"%s\" to \"%s\".", name,
lxc_state2str(RUNNING)); lxc_state2str(RUNNING));
goto out_abort; goto out_abort;
} }
lxc_sync_fini(handler); lxc_sync_fini(handler);
handler->netnsfd = lxc_preserve_ns(handler->pid, "net");
return 0; return 0;
...@@ -1319,26 +1302,6 @@ out_abort: ...@@ -1319,26 +1302,6 @@ out_abort:
return -1; return -1;
} }
int get_netns_fd(int pid)
{
char path[MAXPATHLEN];
int ret, fd;
ret = snprintf(path, MAXPATHLEN, "/proc/%d/ns/net", pid);
if (ret < 0 || ret >= MAXPATHLEN) {
WARN("Failed to pin netns file for pid %d", pid);
return -1;
}
fd = open(path, O_RDONLY);
if (fd < 0) {
WARN("Failed to pin netns file %s for pid %d: %s",
path, pid, strerror(errno));
return -1;
}
return fd;
}
int __lxc_start(const char *name, struct lxc_conf *conf, int __lxc_start(const char *name, struct lxc_conf *conf,
struct lxc_operations* ops, void *data, const char *lxcpath, struct lxc_operations* ops, void *data, const char *lxcpath,
bool backgrounded) bool backgrounded)
...@@ -1346,102 +1309,100 @@ int __lxc_start(const char *name, struct lxc_conf *conf, ...@@ -1346,102 +1309,100 @@ int __lxc_start(const char *name, struct lxc_conf *conf,
struct lxc_handler *handler; struct lxc_handler *handler;
int err = -1; int err = -1;
int status; int status;
int netnsfd = -1; bool removed_all_netdevs = true;
handler = lxc_init(name, conf, lxcpath); handler = lxc_init(name, conf, lxcpath);
if (!handler) { if (!handler) {
ERROR("failed to initialize the container"); ERROR("Failed to initialize container \"%s\".", name);
return -1; return -1;
} }
handler->ops = ops; handler->ops = ops;
handler->data = data; handler->data = data;
handler->backgrounded = backgrounded; handler->backgrounded = backgrounded;
handler->netnsfd = -1;
if (must_drop_cap_sys_boot(handler->conf)) { if (must_drop_cap_sys_boot(handler->conf)) {
#if HAVE_SYS_CAPABILITY_H #if HAVE_SYS_CAPABILITY_H
DEBUG("Dropping cap_sys_boot"); DEBUG("Dropping CAP_SYS_BOOT capability.");
#else #else
DEBUG("Can't drop cap_sys_boot as capabilities aren't supported"); DEBUG("Not dropping CAP_SYS_BOOT capability as capabilities aren't supported.");
#endif #endif
} else { } else {
DEBUG("Not dropping cap_sys_boot or watching utmp"); DEBUG("Not dropping CAP_SYS_BOOT or watching utmp.");
handler->conf->need_utmp_watch = 0; handler->conf->need_utmp_watch = 0;
} }
if (!attach_block_device(handler->conf)) { if (!attach_block_device(handler->conf)) {
ERROR("Failure attaching block device"); ERROR("Failed to attach block device.");
goto out_fini_nonet; goto out_fini_nonet;
} }
if (geteuid() == 0 && !lxc_list_empty(&conf->id_map)) { if (geteuid() == 0 && !lxc_list_empty(&conf->id_map)) {
/* if the backing store is a device, mount it here and now */ /* If the backing store is a device, mount it here and now. */
if (rootfs_is_blockdev(conf)) { if (rootfs_is_blockdev(conf)) {
if (unshare(CLONE_NEWNS) < 0) { if (unshare(CLONE_NEWNS) < 0) {
ERROR("Error unsharing mounts"); ERROR("Failed to unshare CLONE_NEWNS.");
goto out_fini_nonet; goto out_fini_nonet;
} }
INFO("Unshared CLONE_NEWNS.");
remount_all_slave(); remount_all_slave();
if (do_rootfs_setup(conf, name, lxcpath) < 0) { if (do_rootfs_setup(conf, name, lxcpath) < 0) {
ERROR("Error setting up rootfs mount as root before spawn"); ERROR("Error setting up rootfs mount as root before spawn.");
goto out_fini_nonet; goto out_fini_nonet;
} }
INFO("Set up container rootfs as host root"); INFO("Set up container rootfs as host root.");
} }
} }
err = lxc_spawn(handler); err = lxc_spawn(handler);
if (err) { if (err) {
ERROR("failed to spawn '%s'", name); ERROR("Failed to spawn container \"%s\".", name);
goto out_detach_blockdev; goto out_detach_blockdev;
} }
handler->conf->reboot = 0; handler->conf->reboot = 0;
netnsfd = get_netns_fd(handler->pid);
err = lxc_poll(name, handler); err = lxc_poll(name, handler);
if (err) { if (err) {
ERROR("mainloop exited with an error"); ERROR("LXC mainloop exited with error: %d.", err);
if (netnsfd >= 0) if (handler->netnsfd >= 0) {
close(netnsfd); close(handler->netnsfd);
handler->netnsfd = -1;
}
goto out_abort; goto out_abort;
} }
while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR) while (waitpid(handler->pid, &status, 0) < 0 && errno == EINTR)
continue; continue;
/* /* If the child process exited but was not signaled, it didn't call
* If the child process exited but was not signaled, * reboot. This should mean it was an lxc-execute which simply exited.
* it didn't call reboot. This should mean it was an * In any case, treat it as a 'halt'.
* lxc-execute which simply exited. In any case, treat
* it as a 'halt'
*/ */
if (WIFSIGNALED(status)) { if (WIFSIGNALED(status)) {
switch(WTERMSIG(status)) { switch(WTERMSIG(status)) {
case SIGINT: /* halt */ case SIGINT: /* halt */
DEBUG("Container halting"); DEBUG("Container \"%s\" is halting.", name);
break; break;
case SIGHUP: /* reboot */ case SIGHUP: /* reboot */
DEBUG("Container rebooting"); DEBUG("Container \"%s\" is rebooting.", name);
handler->conf->reboot = 1; handler->conf->reboot = 1;
break; break;
case SIGSYS: /* seccomp */ case SIGSYS: /* seccomp */
DEBUG("Container violated its seccomp policy"); DEBUG("Container \"%s\" violated its seccomp policy.", name);
break; break;
default: default:
DEBUG("unknown exit status for init: %d", WTERMSIG(status)); DEBUG("Unknown exit status for container \"%s\" init %d.", name, WTERMSIG(status));
break; break;
} }
} }
DEBUG("Pushing physical nics back to host namespace"); DEBUG("Pushing physical nics back to host namespace");
lxc_restore_phys_nics_to_netns(netnsfd, handler->conf); lxc_restore_phys_nics_to_netns(handler->netnsfd, handler->conf);
DEBUG("Tearing down virtual network devices used by container");
lxc_delete_network(handler);
if (netnsfd >= 0) DEBUG("Tearing down virtual network devices used by container \"%s\".", name);
close(netnsfd); removed_all_netdevs = lxc_delete_network(handler);
if (handler->pinfd >= 0) { if (handler->pinfd >= 0) {
close(handler->pinfd); close(handler->pinfd);
...@@ -1451,7 +1412,12 @@ int __lxc_start(const char *name, struct lxc_conf *conf, ...@@ -1451,7 +1412,12 @@ int __lxc_start(const char *name, struct lxc_conf *conf,
lxc_monitor_send_exit_code(name, status, handler->lxcpath); lxc_monitor_send_exit_code(name, status, handler->lxcpath);
err = lxc_error_set_and_log(handler->pid, status); err = lxc_error_set_and_log(handler->pid, status);
out_fini: out_fini:
lxc_delete_network(handler); if (!removed_all_netdevs) {
DEBUG("Failed tearing down network devices used by container. Trying again!");
removed_all_netdevs = lxc_delete_network(handler);
if (!removed_all_netdevs)
DEBUG("Failed tearing down network devices used by container. Not trying again!");
}
out_detach_blockdev: out_detach_blockdev:
detach_block_device(handler->conf); detach_block_device(handler->conf);
...@@ -1473,10 +1439,10 @@ static int start(struct lxc_handler *handler, void* data) ...@@ -1473,10 +1439,10 @@ static int start(struct lxc_handler *handler, void* data)
{ {
struct start_args *arg = data; struct start_args *arg = data;
NOTICE("exec'ing '%s'", arg->argv[0]); NOTICE("Exec'ing \"%s\".", arg->argv[0]);
execvp(arg->argv[0], arg->argv); execvp(arg->argv[0], arg->argv);
SYSERROR("failed to exec %s", arg->argv[0]); SYSERROR("Failed to exec \"%s\".", arg->argv[0]);
return 0; return 0;
} }
...@@ -1484,7 +1450,7 @@ static int post_start(struct lxc_handler *handler, void* data) ...@@ -1484,7 +1450,7 @@ static int post_start(struct lxc_handler *handler, void* data)
{ {
struct start_args *arg = data; struct start_args *arg = data;
NOTICE("'%s' started with pid '%d'", arg->argv[0], handler->pid); NOTICE("Started \"%s\" with pid \"%d\".", arg->argv[0], handler->pid);
return 0; return 0;
} }
...@@ -1514,23 +1480,22 @@ static void lxc_destroy_container_on_signal(struct lxc_handler *handler, ...@@ -1514,23 +1480,22 @@ static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
if (handler->conf->rootfs.path && handler->conf->rootfs.mount) { if (handler->conf->rootfs.path && handler->conf->rootfs.mount) {
bret = do_destroy_container(handler->conf); bret = do_destroy_container(handler->conf);
if (!bret) { if (!bret) {
ERROR("Error destroying rootfs for %s", name); ERROR("Error destroying rootfs for container \"%s\".", name);
return; return;
} }
} }
INFO("Destroyed rootfs for %s", name); INFO("Destroyed rootfs for container \"%s\".", name);
ret = snprintf(destroy, MAXPATHLEN, "%s/%s", handler->lxcpath, name); ret = snprintf(destroy, MAXPATHLEN, "%s/%s", handler->lxcpath, name);
if (ret < 0 || ret >= MAXPATHLEN) { if (ret < 0 || ret >= MAXPATHLEN) {
ERROR("Error printing path for %s", name); ERROR("Error destroying directory for container \"%s\".", name);
ERROR("Error destroying directory for %s", name);
return; return;
} }
c = lxc_container_new(name, handler->lxcpath); c = lxc_container_new(name, handler->lxcpath);
if (c) { if (c) {
if (container_disk_lock(c)) { if (container_disk_lock(c)) {
INFO("Could not update lxc_snapshots file"); INFO("Could not update lxc_snapshots file.");
lxc_container_put(c); lxc_container_put(c);
} else { } else {
mod_all_rdeps(c, false); mod_all_rdeps(c, false);
...@@ -1545,10 +1510,10 @@ static void lxc_destroy_container_on_signal(struct lxc_handler *handler, ...@@ -1545,10 +1510,10 @@ static void lxc_destroy_container_on_signal(struct lxc_handler *handler,
ret = lxc_rmdir_onedev(destroy, NULL); ret = lxc_rmdir_onedev(destroy, NULL);
if (ret < 0) { if (ret < 0) {
ERROR("Error destroying directory for %s", name); ERROR("Error destroying directory for container \"%s\".", name);
return; return;
} }
INFO("Destroyed directory for %s", name); INFO("Destroyed directory for container \"%s\".", name);
} }
static int lxc_rmdir_onedev_wrapper(void *data) static int lxc_rmdir_onedev_wrapper(void *data)
......
...@@ -42,24 +42,6 @@ struct lxc_operations { ...@@ -42,24 +42,6 @@ struct lxc_operations {
struct cgroup_desc; struct cgroup_desc;
enum {
LXC_NS_MNT,
LXC_NS_PID,
LXC_NS_UTS,
LXC_NS_IPC,
LXC_NS_USER,
LXC_NS_NET,
LXC_NS_CGROUP,
LXC_NS_MAX
};
struct ns_info {
const char *proc_name;
int clone_flag;
};
extern const struct ns_info ns_info[LXC_NS_MAX];
struct lxc_handler { struct lxc_handler {
pid_t pid; pid_t pid;
char *name; char *name;
...@@ -77,6 +59,7 @@ struct lxc_handler { ...@@ -77,6 +59,7 @@ struct lxc_handler {
int ttysock[2]; // socketpair for child->parent tty fd passing int ttysock[2]; // socketpair for child->parent tty fd passing
bool backgrounded; // indicates whether should we close std{in,out,err} on start bool backgrounded; // indicates whether should we close std{in,out,err} on start
int nsfd[LXC_NS_MAX]; int nsfd[LXC_NS_MAX];
int netnsfd;
}; };
......
...@@ -1968,3 +1968,23 @@ int lxc_append_string(char ***list, char *entry) ...@@ -1968,3 +1968,23 @@ int lxc_append_string(char ***list, char *entry)
return 0; return 0;
} }
int lxc_preserve_ns(const int pid, const char *ns)
{
int ret;
/* 5 /proc + 21 /int_as_str + 3 /ns + 20 /NS_NAME + 1 \0 */
#define __NS_PATH_LEN 50
char path[__NS_PATH_LEN];
/* This way we can use this function to also check whether namespaces
* are supported by the kernel by passing in the NULL or the empty
* string.
*/
ret = snprintf(path, __NS_PATH_LEN, "/proc/%d/ns%s%s", pid,
!ns || strcmp(ns, "") == 0 ? "" : "/",
!ns || strcmp(ns, "") == 0 ? "" : ns);
if (ret < 0 || (size_t)ret >= __NS_PATH_LEN)
return -1;
return open(path, O_RDONLY | O_CLOEXEC);
}
...@@ -312,6 +312,7 @@ int open_devnull(void); ...@@ -312,6 +312,7 @@ int open_devnull(void);
int set_stdfds(int fd); int set_stdfds(int fd);
int null_stdfds(void); int null_stdfds(void);
int lxc_count_file_lines(const char *fn); int lxc_count_file_lines(const char *fn);
int lxc_preserve_ns(const int pid, const char *ns);
/* Check whether a signal is blocked by a process. */ /* Check whether a signal is blocked by a process. */
bool task_blocking_signal(pid_t pid, int signal); bool task_blocking_signal(pid_t pid, int signal);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment