]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - kernel/utsname.c
usb: musb: Remove unused function declarations
[thirdparty/kernel/stable.git] / kernel / utsname.c
CommitLineData
b886d83c 1// SPDX-License-Identifier: GPL-2.0-only
4865ecf1
SH
2/*
3 * Copyright (C) 2004 IBM Corporation
4 *
5 * Author: Serge Hallyn <serue@us.ibm.com>
4865ecf1
SH
6 */
7
9984de1a 8#include <linux/export.h>
4865ecf1
SH
9#include <linux/uts.h>
10#include <linux/utsname.h>
467e9f4b 11#include <linux/err.h>
1aeb272c 12#include <linux/slab.h>
5b825c3a 13#include <linux/cred.h>
59607db3 14#include <linux/user_namespace.h>
0bb80f24 15#include <linux/proc_ns.h>
f719ff9b 16#include <linux/sched/task.h>
4865ecf1 17
3ea056c5
AD
18static struct kmem_cache *uts_ns_cache __ro_after_init;
19
f7af3d1c
EB
20static struct ucounts *inc_uts_namespaces(struct user_namespace *ns)
21{
22 return inc_ucount(ns, current_euid(), UCOUNT_UTS_NAMESPACES);
23}
24
25static void dec_uts_namespaces(struct ucounts *ucounts)
26{
27 dec_ucount(ucounts, UCOUNT_UTS_NAMESPACES);
28}
29
4c2a7e72
AD
30static struct uts_namespace *create_uts_ns(void)
31{
32 struct uts_namespace *uts_ns;
33
3ea056c5 34 uts_ns = kmem_cache_alloc(uts_ns_cache, GFP_KERNEL);
4c2a7e72 35 if (uts_ns)
9a56493f 36 refcount_set(&uts_ns->ns.count, 1);
4c2a7e72
AD
37 return uts_ns;
38}
39
071df104
SH
40/*
41 * Clone a new ns copying an original utsname, setting refcount to 1
42 * @old_ns: namespace to clone
3ea056c5 43 * Return ERR_PTR(-ENOMEM) on error (failure to allocate), new ns otherwise
071df104 44 */
bcf58e72 45static struct uts_namespace *clone_uts_ns(struct user_namespace *user_ns,
bb96a6f5 46 struct uts_namespace *old_ns)
071df104
SH
47{
48 struct uts_namespace *ns;
f7af3d1c 49 struct ucounts *ucounts;
98f842e6 50 int err;
071df104 51
df75e774 52 err = -ENOSPC;
f7af3d1c
EB
53 ucounts = inc_uts_namespaces(user_ns);
54 if (!ucounts)
55 goto fail;
56
57 err = -ENOMEM;
4c2a7e72 58 ns = create_uts_ns();
467e9f4b 59 if (!ns)
f7af3d1c 60 goto fail_dec;
467e9f4b 61
6344c433 62 err = ns_alloc_inum(&ns->ns);
f7af3d1c
EB
63 if (err)
64 goto fail_free;
98f842e6 65
f7af3d1c 66 ns->ucounts = ucounts;
33c42940
AV
67 ns->ns.ops = &utsns_operations;
68
efc63c4f 69 down_read(&uts_sem);
467e9f4b 70 memcpy(&ns->name, &old_ns->name, sizeof(ns->name));
bcf58e72 71 ns->user_ns = get_user_ns(user_ns);
efc63c4f 72 up_read(&uts_sem);
071df104 73 return ns;
f7af3d1c
EB
74
75fail_free:
3ea056c5 76 kmem_cache_free(uts_ns_cache, ns);
f7af3d1c
EB
77fail_dec:
78 dec_uts_namespaces(ucounts);
79fail:
80 return ERR_PTR(err);
071df104
SH
81}
82
4865ecf1
SH
83/*
84 * Copy task tsk's utsname namespace, or clone it if flags
85 * specifies CLONE_NEWUTS. In latter case, changes to the
86 * utsname of this process won't be seen by parent, and vice
87 * versa.
88 */
bb96a6f5 89struct uts_namespace *copy_utsname(unsigned long flags,
bcf58e72 90 struct user_namespace *user_ns, struct uts_namespace *old_ns)
4865ecf1 91{
071df104 92 struct uts_namespace *new_ns;
4865ecf1 93
e3222c4e 94 BUG_ON(!old_ns);
4865ecf1
SH
95 get_uts_ns(old_ns);
96
071df104 97 if (!(flags & CLONE_NEWUTS))
e3222c4e 98 return old_ns;
071df104 99
bcf58e72 100 new_ns = clone_uts_ns(user_ns, old_ns);
071df104 101
071df104 102 put_uts_ns(old_ns);
e3222c4e 103 return new_ns;
4865ecf1
SH
104}
105
9a56493f 106void free_uts_ns(struct uts_namespace *ns)
4865ecf1 107{
f7af3d1c 108 dec_uts_namespaces(ns->ucounts);
59607db3 109 put_user_ns(ns->user_ns);
6344c433 110 ns_free_inum(&ns->ns);
3ea056c5 111 kmem_cache_free(uts_ns_cache, ns);
4865ecf1 112}
34482e89 113
3c041184
AV
114static inline struct uts_namespace *to_uts_ns(struct ns_common *ns)
115{
116 return container_of(ns, struct uts_namespace, ns);
117}
118
64964528 119static struct ns_common *utsns_get(struct task_struct *task)
34482e89
EB
120{
121 struct uts_namespace *ns = NULL;
122 struct nsproxy *nsproxy;
123
728dba3a
EB
124 task_lock(task);
125 nsproxy = task->nsproxy;
34482e89
EB
126 if (nsproxy) {
127 ns = nsproxy->uts_ns;
128 get_uts_ns(ns);
129 }
728dba3a 130 task_unlock(task);
34482e89 131
3c041184 132 return ns ? &ns->ns : NULL;
34482e89
EB
133}
134
64964528 135static void utsns_put(struct ns_common *ns)
34482e89 136{
3c041184 137 put_uts_ns(to_uts_ns(ns));
34482e89
EB
138}
139
f2a8d52e 140static int utsns_install(struct nsset *nsset, struct ns_common *new)
34482e89 141{
f2a8d52e 142 struct nsproxy *nsproxy = nsset->nsproxy;
3c041184 143 struct uts_namespace *ns = to_uts_ns(new);
142e1d1d 144
5e4a0847 145 if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN) ||
f2a8d52e 146 !ns_capable(nsset->cred->user_ns, CAP_SYS_ADMIN))
142e1d1d
EB
147 return -EPERM;
148
34482e89
EB
149 get_uts_ns(ns);
150 put_uts_ns(nsproxy->uts_ns);
151 nsproxy->uts_ns = ns;
152 return 0;
153}
154
bcac25a5
AV
155static struct user_namespace *utsns_owner(struct ns_common *ns)
156{
157 return to_uts_ns(ns)->user_ns;
158}
159
34482e89
EB
160const struct proc_ns_operations utsns_operations = {
161 .name = "uts",
162 .type = CLONE_NEWUTS,
163 .get = utsns_get,
164 .put = utsns_put,
165 .install = utsns_install,
bcac25a5 166 .owner = utsns_owner,
34482e89 167};
3ea056c5
AD
168
169void __init uts_ns_init(void)
170{
171 uts_ns_cache = kmem_cache_create_usercopy(
172 "uts_namespace", sizeof(struct uts_namespace), 0,
173 SLAB_PANIC|SLAB_ACCOUNT,
174 offsetof(struct uts_namespace, name),
175 sizeof_field(struct uts_namespace, name),
176 NULL);
177}