drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / nsproxy.c
CommitLineData
ab516013
SH
1/*
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.
25b21cb2
KK
10 *
11 * Jun 2006 - namespaces support
12 * OpenVZ, SWsoft Inc.
13 * Pavel Emelianov <xemul@openvz.org>
ab516013
SH
14 */
15
5a0e3ad6 16#include <linux/slab.h>
9984de1a 17#include <linux/export.h>
ab516013 18#include <linux/nsproxy.h>
0437eb59 19#include <linux/init_task.h>
6b3286ed 20#include <linux/mnt_namespace.h>
4865ecf1 21#include <linux/utsname.h>
9a575a92 22#include <linux/pid_namespace.h>
9dd776b6 23#include <net/net_namespace.h>
ae5e1b22 24#include <linux/ipc_namespace.h>
0bb80f24 25#include <linux/proc_ns.h>
0663c6f8
EB
26#include <linux/file.h>
27#include <linux/syscalls.h>
0437eb59 28
98c0d07c
CLG
29static struct kmem_cache *nsproxy_cachep;
30
8467005d
AD
31struct nsproxy init_nsproxy = {
32 .count = ATOMIC_INIT(1),
33 .uts_ns = &init_uts_ns,
34#if defined(CONFIG_POSIX_MQUEUE) || defined(CONFIG_SYSVIPC)
35 .ipc_ns = &init_ipc_ns,
36#endif
37 .mnt_ns = NULL,
38 .pid_ns = &init_pid_ns,
39#ifdef CONFIG_NET
40 .net_ns = &init_net,
41#endif
42};
ab516013 43
90af90d7 44static inline struct nsproxy *create_nsproxy(void)
ab516013 45{
90af90d7 46 struct nsproxy *nsproxy;
ab516013 47
90af90d7
AD
48 nsproxy = kmem_cache_alloc(nsproxy_cachep, GFP_KERNEL);
49 if (nsproxy)
50 atomic_set(&nsproxy->count, 1);
51 return nsproxy;
ab516013
SH
52}
53
54/*
e3222c4e
BP
55 * Create new nsproxy and all of its the associated namespaces.
56 * Return the newly created nsproxy. Do not attach this to the task,
57 * leave it to the caller to do proper locking and attach it to task.
ab516013 58 */
213dd266 59static struct nsproxy *create_new_namespaces(unsigned long flags,
bcf58e72
EB
60 struct task_struct *tsk, struct user_namespace *user_ns,
61 struct fs_struct *new_fs)
ab516013 62{
e3222c4e 63 struct nsproxy *new_nsp;
467e9f4b 64 int err;
ab516013 65
90af90d7 66 new_nsp = create_nsproxy();
e3222c4e
BP
67 if (!new_nsp)
68 return ERR_PTR(-ENOMEM);
1651e14e 69
bcf58e72 70 new_nsp->mnt_ns = copy_mnt_ns(flags, tsk->nsproxy->mnt_ns, user_ns, new_fs);
467e9f4b
CLG
71 if (IS_ERR(new_nsp->mnt_ns)) {
72 err = PTR_ERR(new_nsp->mnt_ns);
e3222c4e 73 goto out_ns;
467e9f4b 74 }
e3222c4e 75
bcf58e72 76 new_nsp->uts_ns = copy_utsname(flags, user_ns, tsk->nsproxy->uts_ns);
467e9f4b
CLG
77 if (IS_ERR(new_nsp->uts_ns)) {
78 err = PTR_ERR(new_nsp->uts_ns);
e3222c4e 79 goto out_uts;
467e9f4b 80 }
e3222c4e 81
bcf58e72 82 new_nsp->ipc_ns = copy_ipcs(flags, user_ns, tsk->nsproxy->ipc_ns);
467e9f4b
CLG
83 if (IS_ERR(new_nsp->ipc_ns)) {
84 err = PTR_ERR(new_nsp->ipc_ns);
e3222c4e 85 goto out_ipc;
467e9f4b 86 }
e3222c4e 87
bcf58e72 88 new_nsp->pid_ns = copy_pid_ns(flags, user_ns, tsk->nsproxy->pid_ns);
467e9f4b
CLG
89 if (IS_ERR(new_nsp->pid_ns)) {
90 err = PTR_ERR(new_nsp->pid_ns);
e3222c4e 91 goto out_pid;
467e9f4b 92 }
e3222c4e 93
bcf58e72 94 new_nsp->net_ns = copy_net_ns(flags, user_ns, tsk->nsproxy->net_ns);
9dd776b6
EB
95 if (IS_ERR(new_nsp->net_ns)) {
96 err = PTR_ERR(new_nsp->net_ns);
97 goto out_net;
98 }
99
e3222c4e
BP
100 return new_nsp;
101
9dd776b6 102out_net:
acce292c
CLG
103 if (new_nsp->pid_ns)
104 put_pid_ns(new_nsp->pid_ns);
e3222c4e
BP
105out_pid:
106 if (new_nsp->ipc_ns)
107 put_ipc_ns(new_nsp->ipc_ns);
108out_ipc:
109 if (new_nsp->uts_ns)
110 put_uts_ns(new_nsp->uts_ns);
111out_uts:
112 if (new_nsp->mnt_ns)
113 put_mnt_ns(new_nsp->mnt_ns);
114out_ns:
98c0d07c 115 kmem_cache_free(nsproxy_cachep, new_nsp);
467e9f4b 116 return ERR_PTR(err);
ab516013
SH
117}
118
119/*
120 * called from clone. This now handles copy for nsproxy and all
121 * namespaces therein.
122 */
213dd266 123int copy_namespaces(unsigned long flags, struct task_struct *tsk)
ab516013
SH
124{
125 struct nsproxy *old_ns = tsk->nsproxy;
b33c77ef 126 struct user_namespace *user_ns = task_cred_xxx(tsk, user_ns);
1651e14e
SH
127 struct nsproxy *new_ns;
128 int err = 0;
ab516013
SH
129
130 if (!old_ns)
131 return 0;
132
133 get_nsproxy(old_ns);
134
30e49c26 135 if (!(flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC |
18b6e041 136 CLONE_NEWPID | CLONE_NEWNET)))
1651e14e
SH
137 return 0;
138
b33c77ef 139 if (!ns_capable(user_ns, CAP_SYS_ADMIN)) {
e3222c4e 140 err = -EPERM;
1651e14e
SH
141 goto out;
142 }
143
02fdb36a
SH
144 /*
145 * CLONE_NEWIPC must detach from the undolist: after switching
146 * to a new ipc namespace, the semaphore arrays from the old
147 * namespace are unreachable. In clone parlance, CLONE_SYSVSEM
148 * means share undolist with parent, so we must forbid using
149 * it along with CLONE_NEWIPC.
150 */
151 if ((flags & CLONE_NEWIPC) && (flags & CLONE_SYSVSEM)) {
152 err = -EINVAL;
153 goto out;
154 }
155
d7d48f62 156 new_ns = create_new_namespaces(flags, tsk, user_ns, tsk->fs);
e3222c4e
BP
157 if (IS_ERR(new_ns)) {
158 err = PTR_ERR(new_ns);
159 goto out;
160 }
9a575a92 161
e3222c4e 162 tsk->nsproxy = new_ns;
858d72ea 163
1651e14e 164out:
444f378b 165 put_nsproxy(old_ns);
1651e14e 166 return err;
ab516013
SH
167}
168
169void free_nsproxy(struct nsproxy *ns)
170{
9a575a92
CLG
171 if (ns->mnt_ns)
172 put_mnt_ns(ns->mnt_ns);
173 if (ns->uts_ns)
174 put_uts_ns(ns->uts_ns);
175 if (ns->ipc_ns)
176 put_ipc_ns(ns->ipc_ns);
177 if (ns->pid_ns)
178 put_pid_ns(ns->pid_ns);
9dd776b6 179 put_net(ns->net_ns);
98c0d07c 180 kmem_cache_free(nsproxy_cachep, ns);
ab516013 181}
e3222c4e
BP
182
183/*
184 * Called from unshare. Unshare all the namespaces part of nsproxy.
4e71e474 185 * On success, returns the new nsproxy.
e3222c4e
BP
186 */
187int unshare_nsproxy_namespaces(unsigned long unshare_flags,
b2e0d987 188 struct nsproxy **new_nsp, struct cred *new_cred, struct fs_struct *new_fs)
e3222c4e 189{
bcf58e72 190 struct user_namespace *user_ns;
e3222c4e
BP
191 int err = 0;
192
77ec739d 193 if (!(unshare_flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC |
50804fe3 194 CLONE_NEWNET | CLONE_NEWPID)))
e3222c4e
BP
195 return 0;
196
b2e0d987
EB
197 user_ns = new_cred ? new_cred->user_ns : current_user_ns();
198 if (!ns_capable(user_ns, CAP_SYS_ADMIN))
e3222c4e
BP
199 return -EPERM;
200
bcf58e72 201 *new_nsp = create_new_namespaces(unshare_flags, current, user_ns,
b2e0d987 202 new_fs ? new_fs : current->fs);
858d72ea 203 if (IS_ERR(*new_nsp)) {
e3222c4e 204 err = PTR_ERR(*new_nsp);
858d72ea
SH
205 goto out;
206 }
207
858d72ea 208out:
e3222c4e
BP
209 return err;
210}
98c0d07c 211
cf7b708c
PE
212void switch_task_namespaces(struct task_struct *p, struct nsproxy *new)
213{
214 struct nsproxy *ns;
215
216 might_sleep();
217
218 ns = p->nsproxy;
219
220 rcu_assign_pointer(p->nsproxy, new);
221
222 if (ns && atomic_dec_and_test(&ns->count)) {
223 /*
224 * wait for others to get what they want from this nsproxy.
225 *
226 * cannot release this nsproxy via the call_rcu() since
227 * put_mnt_ns() will want to sleep
228 */
229 synchronize_rcu();
230 free_nsproxy(ns);
231 }
232}
233
234void exit_task_namespaces(struct task_struct *p)
235{
236 switch_task_namespaces(p, NULL);
237}
238
0663c6f8
EB
239SYSCALL_DEFINE2(setns, int, fd, int, nstype)
240{
241 const struct proc_ns_operations *ops;
242 struct task_struct *tsk = current;
243 struct nsproxy *new_nsproxy;
0bb80f24 244 struct proc_ns *ei;
0663c6f8
EB
245 struct file *file;
246 int err;
247
0663c6f8
EB
248 file = proc_ns_fget(fd);
249 if (IS_ERR(file))
250 return PTR_ERR(file);
251
252 err = -EINVAL;
0bb80f24 253 ei = get_proc_ns(file_inode(file));
0663c6f8
EB
254 ops = ei->ns_ops;
255 if (nstype && (ops->type != nstype))
256 goto out;
257
bcf58e72 258 new_nsproxy = create_new_namespaces(0, tsk, current_user_ns(), tsk->fs);
0663c6f8
EB
259 if (IS_ERR(new_nsproxy)) {
260 err = PTR_ERR(new_nsproxy);
261 goto out;
262 }
263
264 err = ops->install(new_nsproxy, ei->ns);
265 if (err) {
266 free_nsproxy(new_nsproxy);
267 goto out;
268 }
269 switch_task_namespaces(tsk, new_nsproxy);
270out:
271 fput(file);
272 return err;
273}
274
66577193 275int __init nsproxy_cache_init(void)
98c0d07c 276{
db8906da 277 nsproxy_cachep = KMEM_CACHE(nsproxy, SLAB_PANIC);
98c0d07c
CLG
278 return 0;
279}