]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - kernel/utsname.c
new helpers: ns_alloc_inum/ns_free_inum
[mirror_ubuntu-zesty-kernel.git] / kernel / utsname.c
CommitLineData
4865ecf1
SH
1/*
2 * Copyright (C) 2004 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.
10 */
11
9984de1a 12#include <linux/export.h>
4865ecf1
SH
13#include <linux/uts.h>
14#include <linux/utsname.h>
467e9f4b 15#include <linux/err.h>
1aeb272c 16#include <linux/slab.h>
59607db3 17#include <linux/user_namespace.h>
0bb80f24 18#include <linux/proc_ns.h>
4865ecf1 19
4c2a7e72
AD
20static struct uts_namespace *create_uts_ns(void)
21{
22 struct uts_namespace *uts_ns;
23
24 uts_ns = kmalloc(sizeof(struct uts_namespace), GFP_KERNEL);
25 if (uts_ns)
26 kref_init(&uts_ns->kref);
27 return uts_ns;
28}
29
071df104
SH
30/*
31 * Clone a new ns copying an original utsname, setting refcount to 1
32 * @old_ns: namespace to clone
bf531536 33 * Return ERR_PTR(-ENOMEM) on error (failure to kmalloc), new ns otherwise
071df104 34 */
bcf58e72 35static struct uts_namespace *clone_uts_ns(struct user_namespace *user_ns,
bb96a6f5 36 struct uts_namespace *old_ns)
071df104
SH
37{
38 struct uts_namespace *ns;
98f842e6 39 int err;
071df104 40
4c2a7e72 41 ns = create_uts_ns();
467e9f4b
CLG
42 if (!ns)
43 return ERR_PTR(-ENOMEM);
44
6344c433 45 err = ns_alloc_inum(&ns->ns);
98f842e6
EB
46 if (err) {
47 kfree(ns);
48 return ERR_PTR(err);
49 }
50
efc63c4f 51 down_read(&uts_sem);
467e9f4b 52 memcpy(&ns->name, &old_ns->name, sizeof(ns->name));
bcf58e72 53 ns->user_ns = get_user_ns(user_ns);
efc63c4f 54 up_read(&uts_sem);
071df104
SH
55 return ns;
56}
57
4865ecf1
SH
58/*
59 * Copy task tsk's utsname namespace, or clone it if flags
60 * specifies CLONE_NEWUTS. In latter case, changes to the
61 * utsname of this process won't be seen by parent, and vice
62 * versa.
63 */
bb96a6f5 64struct uts_namespace *copy_utsname(unsigned long flags,
bcf58e72 65 struct user_namespace *user_ns, struct uts_namespace *old_ns)
4865ecf1 66{
071df104 67 struct uts_namespace *new_ns;
4865ecf1 68
e3222c4e 69 BUG_ON(!old_ns);
4865ecf1
SH
70 get_uts_ns(old_ns);
71
071df104 72 if (!(flags & CLONE_NEWUTS))
e3222c4e 73 return old_ns;
071df104 74
bcf58e72 75 new_ns = clone_uts_ns(user_ns, old_ns);
071df104 76
071df104 77 put_uts_ns(old_ns);
e3222c4e 78 return new_ns;
4865ecf1
SH
79}
80
81void free_uts_ns(struct kref *kref)
82{
83 struct uts_namespace *ns;
84
85 ns = container_of(kref, struct uts_namespace, kref);
59607db3 86 put_user_ns(ns->user_ns);
6344c433 87 ns_free_inum(&ns->ns);
4865ecf1
SH
88 kfree(ns);
89}
34482e89 90
3c041184
AV
91static inline struct uts_namespace *to_uts_ns(struct ns_common *ns)
92{
93 return container_of(ns, struct uts_namespace, ns);
94}
95
64964528 96static struct ns_common *utsns_get(struct task_struct *task)
34482e89
EB
97{
98 struct uts_namespace *ns = NULL;
99 struct nsproxy *nsproxy;
100
728dba3a
EB
101 task_lock(task);
102 nsproxy = task->nsproxy;
34482e89
EB
103 if (nsproxy) {
104 ns = nsproxy->uts_ns;
105 get_uts_ns(ns);
106 }
728dba3a 107 task_unlock(task);
34482e89 108
3c041184 109 return ns ? &ns->ns : NULL;
34482e89
EB
110}
111
64964528 112static void utsns_put(struct ns_common *ns)
34482e89 113{
3c041184 114 put_uts_ns(to_uts_ns(ns));
34482e89
EB
115}
116
64964528 117static int utsns_install(struct nsproxy *nsproxy, struct ns_common *new)
34482e89 118{
3c041184 119 struct uts_namespace *ns = to_uts_ns(new);
142e1d1d 120
5e4a0847 121 if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN) ||
c7b96acf 122 !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
142e1d1d
EB
123 return -EPERM;
124
34482e89
EB
125 get_uts_ns(ns);
126 put_uts_ns(nsproxy->uts_ns);
127 nsproxy->uts_ns = ns;
128 return 0;
129}
130
131const struct proc_ns_operations utsns_operations = {
132 .name = "uts",
133 .type = CLONE_NEWUTS,
134 .get = utsns_get,
135 .put = utsns_put,
136 .install = utsns_install,
137};