ret = clone(do_clone, stack + stack_size, flags | SIGCHLD, &clone_arg);
#endif
if (ret < 0)
- ERROR("failed to clone (%#x): %s", flags, strerror(errno));
+ ERROR("Failed to clone (%#x): %s.", flags, strerror(errno));
return ret;
}
-static const char * const namespaces_list[] = {
- "MOUNT", "PID", "UTSNAME", "IPC",
- "USER", "NETWORK"
-};
-static const int cloneflags_list[] = {
- CLONE_NEWNS, CLONE_NEWPID, CLONE_NEWUTS, CLONE_NEWIPC,
- CLONE_NEWUSER, CLONE_NEWNET
+const struct ns_info ns_info[LXC_NS_MAX] = {
+ [LXC_NS_MNT] = {"mnt", CLONE_NEWNS, "CLONE_NEWNS"},
+ [LXC_NS_PID] = {"pid", CLONE_NEWPID, "CLONE_NEWPID"},
+ [LXC_NS_UTS] = {"uts", CLONE_NEWUTS, "CLONE_NEWUTS"},
+ [LXC_NS_IPC] = {"ipc", CLONE_NEWIPC, "CLONE_NEWIPC"},
+ [LXC_NS_USER] = {"user", CLONE_NEWUSER, "CLONE_NEWUSER"},
+ [LXC_NS_NET] = {"net", CLONE_NEWNET, "CLONE_NEWNET"},
+ [LXC_NS_CGROUP] = {"cgroup", CLONE_NEWCGROUP, "CLONE_NEWCGROUP"}
};
int lxc_namespace_2_cloneflag(char *namespace)
{
- int i, len;
- len = sizeof(namespaces_list)/sizeof(namespaces_list[0]);
- for (i = 0; i < len; i++)
- if (!strcmp(namespaces_list[i], namespace))
- return cloneflags_list[i];
+ int i;
+ for (i = 0; i < LXC_NS_MAX; i++)
+ if (!strcasecmp(ns_info[i].proc_name, namespace))
+ return ns_info[i].clone_flag;
- ERROR("invalid namespace name %s", namespace);
+ ERROR("Invalid namespace name: %s.", namespace);
return -1;
}
int aflag;
if (!flaglist) {
- ERROR("need at least one namespace to unshare");
+ ERROR("At least one namespace is needed.");
return -1;
}
# define CLONE_NEWNET 0x40000000
#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__)
int __clone2(int (*__fn) (void *__arg), void *__child_stack_base,
size_t __child_stack_size, int __flags, void *__arg, ...);
/* pid_t *ptid, struct user_desc *tls, pid_t *ctid */ );
#endif
-
extern pid_t lxc_clone(int (*fn)(void *), void *arg, int flags);
extern int lxc_namespace_2_cloneflag(char *namespace);
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);
static bool do_destroy_container(struct lxc_conf *conf);
static int lxc_rmdir_onedev_wrapper(void *data);
SYSERROR("Failed to clone a new set of namespaces.");
goto out_delete_net;
}
- INFO("Cloned a set of new namespaces.");
+ 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))
INFO("Failed to preserve namespace for lxc.hook.stop.");