2 * Copyright (C) 2004 IBM Corporation
4 * Author: Serge Hallyn <serue@us.ibm.com>
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
12 #include <linux/export.h>
13 #include <linux/uts.h>
14 #include <linux/utsname.h>
15 #include <linux/err.h>
16 #include <linux/slab.h>
17 #include <linux/cred.h>
18 #include <linux/user_namespace.h>
19 #include <linux/proc_ns.h>
20 #include <linux/sched/task.h>
22 static struct kmem_cache *uts_ns_cache __ro_after_init;
24 static struct ucounts *inc_uts_namespaces(struct user_namespace *ns)
26 return inc_ucount(ns, current_euid(), UCOUNT_UTS_NAMESPACES);
29 static void dec_uts_namespaces(struct ucounts *ucounts)
31 dec_ucount(ucounts, UCOUNT_UTS_NAMESPACES);
34 static struct uts_namespace *create_uts_ns(void)
36 struct uts_namespace *uts_ns;
38 uts_ns = kmem_cache_alloc(uts_ns_cache, GFP_KERNEL);
40 kref_init(&uts_ns->kref);
45 * Clone a new ns copying an original utsname, setting refcount to 1
46 * @old_ns: namespace to clone
47 * Return ERR_PTR(-ENOMEM) on error (failure to allocate), new ns otherwise
49 static struct uts_namespace *clone_uts_ns(struct user_namespace *user_ns,
50 struct uts_namespace *old_ns)
52 struct uts_namespace *ns;
53 struct ucounts *ucounts;
57 ucounts = inc_uts_namespaces(user_ns);
66 err = ns_alloc_inum(&ns->ns);
70 ns->ucounts = ucounts;
71 ns->ns.ops = &utsns_operations;
74 memcpy(&ns->name, &old_ns->name, sizeof(ns->name));
75 ns->user_ns = get_user_ns(user_ns);
80 kmem_cache_free(uts_ns_cache, ns);
82 dec_uts_namespaces(ucounts);
88 * Copy task tsk's utsname namespace, or clone it if flags
89 * specifies CLONE_NEWUTS. In latter case, changes to the
90 * utsname of this process won't be seen by parent, and vice
93 struct uts_namespace *copy_utsname(unsigned long flags,
94 struct user_namespace *user_ns, struct uts_namespace *old_ns)
96 struct uts_namespace *new_ns;
101 if (!(flags & CLONE_NEWUTS))
104 new_ns = clone_uts_ns(user_ns, old_ns);
110 void free_uts_ns(struct kref *kref)
112 struct uts_namespace *ns;
114 ns = container_of(kref, struct uts_namespace, kref);
115 dec_uts_namespaces(ns->ucounts);
116 put_user_ns(ns->user_ns);
117 ns_free_inum(&ns->ns);
118 kmem_cache_free(uts_ns_cache, ns);
121 static inline struct uts_namespace *to_uts_ns(struct ns_common *ns)
123 return container_of(ns, struct uts_namespace, ns);
126 static struct ns_common *utsns_get(struct task_struct *task)
128 struct uts_namespace *ns = NULL;
129 struct nsproxy *nsproxy;
132 nsproxy = task->nsproxy;
134 ns = nsproxy->uts_ns;
139 return ns ? &ns->ns : NULL;
142 static void utsns_put(struct ns_common *ns)
144 put_uts_ns(to_uts_ns(ns));
147 static int utsns_install(struct nsproxy *nsproxy, struct ns_common *new)
149 struct uts_namespace *ns = to_uts_ns(new);
151 if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN) ||
152 !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
156 put_uts_ns(nsproxy->uts_ns);
157 nsproxy->uts_ns = ns;
161 static struct user_namespace *utsns_owner(struct ns_common *ns)
163 return to_uts_ns(ns)->user_ns;
166 const struct proc_ns_operations utsns_operations = {
168 .type = CLONE_NEWUTS,
171 .install = utsns_install,
172 .owner = utsns_owner,
175 void __init uts_ns_init(void)
177 uts_ns_cache = kmem_cache_create_usercopy(
178 "uts_namespace", sizeof(struct uts_namespace), 0,
179 SLAB_PANIC|SLAB_ACCOUNT,
180 offsetof(struct uts_namespace, name),
181 sizeof_field(struct uts_namespace, name),