blob: 15a6015a849d1f7044d8f07df4d87c26dfc6b2c2 [file] [log] [blame]
Serge E. Hallynab516012006-10-02 02:18:06 -07001/*
2 * Copyright (C) 2006 IBM Corporation
3 *
4 * Author: Serge Hallyn <serue@us.ibm.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2 of the
9 * License.
Kirill Korotaev25b21cb2006-10-02 02:18:19 -070010 *
11 * Jun 2006 - namespaces support
12 * OpenVZ, SWsoft Inc.
13 * Pavel Emelianov <xemul@openvz.org>
Serge E. Hallynab516012006-10-02 02:18:06 -070014 */
15
16#include <linux/module.h>
17#include <linux/version.h>
18#include <linux/nsproxy.h>
Serge E. Hallyn0437eb52006-10-02 02:18:07 -070019#include <linux/init_task.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080020#include <linux/mnt_namespace.h>
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070021#include <linux/utsname.h>
Cedric Le Goater9a575a92006-12-08 02:37:59 -080022#include <linux/pid_namespace.h>
Serge E. Hallyn0437eb52006-10-02 02:18:07 -070023
24struct nsproxy init_nsproxy = INIT_NSPROXY(init_nsproxy);
Serge E. Hallynab516012006-10-02 02:18:06 -070025
26static inline void get_nsproxy(struct nsproxy *ns)
27{
28 atomic_inc(&ns->count);
29}
30
31void get_task_namespaces(struct task_struct *tsk)
32{
33 struct nsproxy *ns = tsk->nsproxy;
34 if (ns) {
35 get_nsproxy(ns);
36 }
37}
38
39/*
40 * creates a copy of "orig" with refcount 1.
Serge E. Hallynab516012006-10-02 02:18:06 -070041 */
Badari Pulavartye3222c42007-05-08 00:25:21 -070042static inline struct nsproxy *clone_nsproxy(struct nsproxy *orig)
Serge E. Hallynab516012006-10-02 02:18:06 -070043{
44 struct nsproxy *ns;
45
Alexey Dobriyane05d7222006-10-19 23:29:12 -070046 ns = kmemdup(orig, sizeof(struct nsproxy), GFP_KERNEL);
Eric W. Biederman5f8442e2006-12-13 00:34:04 -080047 if (ns)
Serge E. Hallynab516012006-10-02 02:18:06 -070048 atomic_set(&ns->count, 1);
Serge E. Hallynab516012006-10-02 02:18:06 -070049 return ns;
50}
51
52/*
Badari Pulavartye3222c42007-05-08 00:25:21 -070053 * Create new nsproxy and all of its the associated namespaces.
54 * Return the newly created nsproxy. Do not attach this to the task,
55 * leave it to the caller to do proper locking and attach it to task.
Serge E. Hallynab516012006-10-02 02:18:06 -070056 */
Badari Pulavartye3222c42007-05-08 00:25:21 -070057static struct nsproxy *create_new_namespaces(int flags, struct task_struct *tsk,
58 struct fs_struct *new_fs)
Serge E. Hallynab516012006-10-02 02:18:06 -070059{
Badari Pulavartye3222c42007-05-08 00:25:21 -070060 struct nsproxy *new_nsp;
Cedric Le Goater467e9f42007-07-15 23:41:06 -070061 int err;
Serge E. Hallynab516012006-10-02 02:18:06 -070062
Badari Pulavartye3222c42007-05-08 00:25:21 -070063 new_nsp = clone_nsproxy(tsk->nsproxy);
64 if (!new_nsp)
65 return ERR_PTR(-ENOMEM);
Serge E. Hallyn1651e142006-10-02 02:18:08 -070066
Badari Pulavartye3222c42007-05-08 00:25:21 -070067 new_nsp->mnt_ns = copy_mnt_ns(flags, tsk->nsproxy->mnt_ns, new_fs);
Cedric Le Goater467e9f42007-07-15 23:41:06 -070068 if (IS_ERR(new_nsp->mnt_ns)) {
69 err = PTR_ERR(new_nsp->mnt_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -070070 goto out_ns;
Cedric Le Goater467e9f42007-07-15 23:41:06 -070071 }
Badari Pulavartye3222c42007-05-08 00:25:21 -070072
73 new_nsp->uts_ns = copy_utsname(flags, tsk->nsproxy->uts_ns);
Cedric Le Goater467e9f42007-07-15 23:41:06 -070074 if (IS_ERR(new_nsp->uts_ns)) {
75 err = PTR_ERR(new_nsp->uts_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -070076 goto out_uts;
Cedric Le Goater467e9f42007-07-15 23:41:06 -070077 }
Badari Pulavartye3222c42007-05-08 00:25:21 -070078
79 new_nsp->ipc_ns = copy_ipcs(flags, tsk->nsproxy->ipc_ns);
Cedric Le Goater467e9f42007-07-15 23:41:06 -070080 if (IS_ERR(new_nsp->ipc_ns)) {
81 err = PTR_ERR(new_nsp->ipc_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -070082 goto out_ipc;
Cedric Le Goater467e9f42007-07-15 23:41:06 -070083 }
Badari Pulavartye3222c42007-05-08 00:25:21 -070084
85 new_nsp->pid_ns = copy_pid_ns(flags, tsk->nsproxy->pid_ns);
Cedric Le Goater467e9f42007-07-15 23:41:06 -070086 if (IS_ERR(new_nsp->pid_ns)) {
87 err = PTR_ERR(new_nsp->pid_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -070088 goto out_pid;
Cedric Le Goater467e9f42007-07-15 23:41:06 -070089 }
Badari Pulavartye3222c42007-05-08 00:25:21 -070090
Cedric Le Goateracce2922007-07-15 23:40:59 -070091 new_nsp->user_ns = copy_user_ns(flags, tsk->nsproxy->user_ns);
Cedric Le Goater467e9f42007-07-15 23:41:06 -070092 if (IS_ERR(new_nsp->user_ns)) {
93 err = PTR_ERR(new_nsp->user_ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070094 goto out_user;
Cedric Le Goater467e9f42007-07-15 23:41:06 -070095 }
Cedric Le Goateracce2922007-07-15 23:40:59 -070096
Badari Pulavartye3222c42007-05-08 00:25:21 -070097 return new_nsp;
98
Cedric Le Goateracce2922007-07-15 23:40:59 -070099out_user:
100 if (new_nsp->pid_ns)
101 put_pid_ns(new_nsp->pid_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -0700102out_pid:
103 if (new_nsp->ipc_ns)
104 put_ipc_ns(new_nsp->ipc_ns);
105out_ipc:
106 if (new_nsp->uts_ns)
107 put_uts_ns(new_nsp->uts_ns);
108out_uts:
109 if (new_nsp->mnt_ns)
110 put_mnt_ns(new_nsp->mnt_ns);
111out_ns:
112 kfree(new_nsp);
Cedric Le Goater467e9f42007-07-15 23:41:06 -0700113 return ERR_PTR(err);
Serge E. Hallynab516012006-10-02 02:18:06 -0700114}
115
116/*
117 * called from clone. This now handles copy for nsproxy and all
118 * namespaces therein.
119 */
120int copy_namespaces(int flags, struct task_struct *tsk)
121{
122 struct nsproxy *old_ns = tsk->nsproxy;
Serge E. Hallyn1651e142006-10-02 02:18:08 -0700123 struct nsproxy *new_ns;
124 int err = 0;
Serge E. Hallynab516012006-10-02 02:18:06 -0700125
126 if (!old_ns)
127 return 0;
128
129 get_nsproxy(old_ns);
130
Serge E. Hallyn77ec7392007-07-15 23:41:01 -0700131 if (!(flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC | CLONE_NEWUSER)))
Serge E. Hallyn1651e142006-10-02 02:18:08 -0700132 return 0;
133
Badari Pulavartye3222c42007-05-08 00:25:21 -0700134 if (!capable(CAP_SYS_ADMIN)) {
135 err = -EPERM;
136 goto out;
137 }
138
139 new_ns = create_new_namespaces(flags, tsk, tsk->fs);
140 if (IS_ERR(new_ns)) {
141 err = PTR_ERR(new_ns);
Serge E. Hallyn1651e142006-10-02 02:18:08 -0700142 goto out;
143 }
144
145 tsk->nsproxy = new_ns;
Serge E. Hallyn1651e142006-10-02 02:18:08 -0700146out:
Linus Torvalds444f3782007-01-30 13:35:18 -0800147 put_nsproxy(old_ns);
Serge E. Hallyn1651e142006-10-02 02:18:08 -0700148 return err;
Serge E. Hallynab516012006-10-02 02:18:06 -0700149}
150
151void free_nsproxy(struct nsproxy *ns)
152{
Cedric Le Goater9a575a92006-12-08 02:37:59 -0800153 if (ns->mnt_ns)
154 put_mnt_ns(ns->mnt_ns);
155 if (ns->uts_ns)
156 put_uts_ns(ns->uts_ns);
157 if (ns->ipc_ns)
158 put_ipc_ns(ns->ipc_ns);
159 if (ns->pid_ns)
160 put_pid_ns(ns->pid_ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -0700161 if (ns->user_ns)
162 put_user_ns(ns->user_ns);
Cedric Le Goater9a575a92006-12-08 02:37:59 -0800163 kfree(ns);
Serge E. Hallynab516012006-10-02 02:18:06 -0700164}
Badari Pulavartye3222c42007-05-08 00:25:21 -0700165
166/*
167 * Called from unshare. Unshare all the namespaces part of nsproxy.
Cedric Le Goater4e71e4742007-06-23 17:16:25 -0700168 * On success, returns the new nsproxy.
Badari Pulavartye3222c42007-05-08 00:25:21 -0700169 */
170int unshare_nsproxy_namespaces(unsigned long unshare_flags,
171 struct nsproxy **new_nsp, struct fs_struct *new_fs)
172{
Badari Pulavartye3222c42007-05-08 00:25:21 -0700173 int err = 0;
174
Serge E. Hallyn77ec7392007-07-15 23:41:01 -0700175 if (!(unshare_flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC |
176 CLONE_NEWUSER)))
Badari Pulavartye3222c42007-05-08 00:25:21 -0700177 return 0;
178
Badari Pulavartye3222c42007-05-08 00:25:21 -0700179 if (!capable(CAP_SYS_ADMIN))
180 return -EPERM;
181
Badari Pulavartye3222c42007-05-08 00:25:21 -0700182 *new_nsp = create_new_namespaces(unshare_flags, current,
183 new_fs ? new_fs : current->fs);
Cedric Le Goater4e71e4742007-06-23 17:16:25 -0700184 if (IS_ERR(*new_nsp))
Badari Pulavartye3222c42007-05-08 00:25:21 -0700185 err = PTR_ERR(*new_nsp);
Badari Pulavartye3222c42007-05-08 00:25:21 -0700186 return err;
187}