#include <linux/ipc_namespace.h>
#include <linux/rcupdate.h>
#include <linux/nsproxy.h>
#include <linux/user_namespace.h>
#include <linux/proc_ns.h>
#include <linux/sched/task.h>
static struct ucounts *inc_ipc_namespaces(struct user_namespace *ns)
return inc_ucount(ns, current_euid(), UCOUNT_IPC_NAMESPACES);
static void dec_ipc_namespaces(struct ucounts *ucounts)
dec_ucount(ucounts, UCOUNT_IPC_NAMESPACES);
static struct ipc_namespace *create_ipc_ns(struct user_namespace *user_ns,
struct ipc_namespace *old_ns)
struct ipc_namespace *ns;
ucounts = inc_ipc_namespaces(user_ns);
ns = kzalloc(sizeof(struct ipc_namespace), GFP_KERNEL);
err = ns_alloc_inum(&ns->ns);
ns->ns.ops = &ipcns_operations;
refcount_set(&ns->count, 1);
ns->user_ns = get_user_ns(user_ns);