Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a28d193c authored by Serge E. Hallyn's avatar Serge E. Hallyn Committed by Linus Torvalds
Browse files

[PATCH] ipcns: fix !CONFIG_IPC_NS behavior



When CONFIG_IPC_NS=n, clone(CLONE_NEWIPC) claims success, but did not actually
clone a new IPC namespace.

Fix this to return -EINVAL so the caller knows his request was denied.

Signed-off-by: default avatarSerge E. Hallyn <serue@us.ibm.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d1985ad1
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -92,19 +92,16 @@ extern struct ipc_namespace init_ipc_ns;

#ifdef CONFIG_SYSVIPC
#define INIT_IPC_NS(ns)		.ns		= &init_ipc_ns,
extern int copy_ipcs(unsigned long flags, struct task_struct *tsk);
#else
#define INIT_IPC_NS(ns)
static inline int copy_ipcs(unsigned long flags, struct task_struct *tsk)
{ return 0; }
#endif

#ifdef CONFIG_IPC_NS
extern void free_ipc_ns(struct kref *kref);
extern int copy_ipcs(unsigned long flags, struct task_struct *tsk);
extern int unshare_ipcs(unsigned long flags, struct ipc_namespace **ns);
#else
static inline int copy_ipcs(unsigned long flags, struct task_struct *tsk)
{
	return 0;
}
#endif

static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
+7 −0
Original line number Diff line number Diff line
@@ -144,6 +144,13 @@ void free_ipc_ns(struct kref *kref)
	shm_exit_ns(ns);
	kfree(ns);
}
#else
int copy_ipcs(unsigned long flags, struct task_struct *tsk)
{
	if (flags & CLONE_NEWIPC)
		return -EINVAL;
	return 0;
}
#endif

/**