|
@@ -161,8 +161,12 @@ static void ipcns_put(void *ns)
|
|
return put_ipc_ns(ns);
|
|
return put_ipc_ns(ns);
|
|
}
|
|
}
|
|
|
|
|
|
-static int ipcns_install(struct nsproxy *nsproxy, void *ns)
|
|
|
|
|
|
+static int ipcns_install(struct nsproxy *nsproxy, void *new)
|
|
{
|
|
{
|
|
|
|
+ struct ipc_namespace *ns = new;
|
|
|
|
+ if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN))
|
|
|
|
+ return -EPERM;
|
|
|
|
+
|
|
/* Ditch state from the old ipc namespace */
|
|
/* Ditch state from the old ipc namespace */
|
|
exit_sem(current);
|
|
exit_sem(current);
|
|
put_ipc_ns(nsproxy->ipc_ns);
|
|
put_ipc_ns(nsproxy->ipc_ns);
|