blob: f0e4911930092f6b82d1689ed1ed9ba79ab98a92 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -07002/*
3 * Copyright (C) 2004 IBM Corporation
4 *
5 * Author: Serge Hallyn <serue@us.ibm.com>
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -07006 */
7
Paul Gortmaker9984de12011-05-23 14:51:41 -04008#include <linux/export.h>
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -07009#include <linux/uts.h>
10#include <linux/utsname.h>
Cedric Le Goater467e9f42007-07-15 23:41:06 -070011#include <linux/err.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -070012#include <linux/slab.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010013#include <linux/cred.h>
Serge E. Hallyn59607db2011-03-23 16:43:16 -070014#include <linux/user_namespace.h>
David Howells0bb80f22013-04-12 01:50:06 +010015#include <linux/proc_ns.h>
Ingo Molnarf719ff9b2017-02-06 10:57:33 +010016#include <linux/sched/task.h>
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070017
Alexey Dobriyan3ea056c2018-04-10 16:32:36 -070018static struct kmem_cache *uts_ns_cache __ro_after_init;
19
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050020static 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
Alexey Dobriyan4c2a7e72009-06-17 16:27:54 -070030static struct uts_namespace *create_uts_ns(void)
31{
32 struct uts_namespace *uts_ns;
33
Alexey Dobriyan3ea056c2018-04-10 16:32:36 -070034 uts_ns = kmem_cache_alloc(uts_ns_cache, GFP_KERNEL);
Alexey Dobriyan4c2a7e72009-06-17 16:27:54 -070035 if (uts_ns)
36 kref_init(&uts_ns->kref);
37 return uts_ns;
38}
39
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070040/*
Serge E. Hallyn071df102006-10-02 02:18:17 -070041 * Clone a new ns copying an original utsname, setting refcount to 1
42 * @old_ns: namespace to clone
Alexey Dobriyan3ea056c2018-04-10 16:32:36 -070043 * Return ERR_PTR(-ENOMEM) on error (failure to allocate), new ns otherwise
Serge E. Hallyn071df102006-10-02 02:18:17 -070044 */
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -070045static struct uts_namespace *clone_uts_ns(struct user_namespace *user_ns,
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -070046 struct uts_namespace *old_ns)
Serge E. Hallyn071df102006-10-02 02:18:17 -070047{
48 struct uts_namespace *ns;
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050049 struct ucounts *ucounts;
Eric W. Biederman98f842e2011-06-15 10:21:48 -070050 int err;
Serge E. Hallyn071df102006-10-02 02:18:17 -070051
Eric W. Biedermandf75e772016-09-22 13:08:36 -050052 err = -ENOSPC;
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050053 ucounts = inc_uts_namespaces(user_ns);
54 if (!ucounts)
55 goto fail;
56
57 err = -ENOMEM;
Alexey Dobriyan4c2a7e72009-06-17 16:27:54 -070058 ns = create_uts_ns();
Cedric Le Goater467e9f42007-07-15 23:41:06 -070059 if (!ns)
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050060 goto fail_dec;
Cedric Le Goater467e9f42007-07-15 23:41:06 -070061
Al Viro6344c432014-11-01 00:45:45 -040062 err = ns_alloc_inum(&ns->ns);
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050063 if (err)
64 goto fail_free;
Eric W. Biederman98f842e2011-06-15 10:21:48 -070065
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050066 ns->ucounts = ucounts;
Al Viro33c42942014-11-01 02:32:53 -040067 ns->ns.ops = &utsns_operations;
68
Alexey Dobriyanefc63c42007-09-18 22:46:27 -070069 down_read(&uts_sem);
Cedric Le Goater467e9f42007-07-15 23:41:06 -070070 memcpy(&ns->name, &old_ns->name, sizeof(ns->name));
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -070071 ns->user_ns = get_user_ns(user_ns);
Alexey Dobriyanefc63c42007-09-18 22:46:27 -070072 up_read(&uts_sem);
Serge E. Hallyn071df102006-10-02 02:18:17 -070073 return ns;
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050074
75fail_free:
Alexey Dobriyan3ea056c2018-04-10 16:32:36 -070076 kmem_cache_free(uts_ns_cache, ns);
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050077fail_dec:
78 dec_uts_namespaces(ucounts);
79fail:
80 return ERR_PTR(err);
Serge E. Hallyn071df102006-10-02 02:18:17 -070081}
82
83/*
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070084 * 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 */
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -070089struct uts_namespace *copy_utsname(unsigned long flags,
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -070090 struct user_namespace *user_ns, struct uts_namespace *old_ns)
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070091{
Serge E. Hallyn071df102006-10-02 02:18:17 -070092 struct uts_namespace *new_ns;
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070093
Badari Pulavartye3222c42007-05-08 00:25:21 -070094 BUG_ON(!old_ns);
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070095 get_uts_ns(old_ns);
96
Serge E. Hallyn071df102006-10-02 02:18:17 -070097 if (!(flags & CLONE_NEWUTS))
Badari Pulavartye3222c42007-05-08 00:25:21 -070098 return old_ns;
Serge E. Hallyn071df102006-10-02 02:18:17 -070099
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -0700100 new_ns = clone_uts_ns(user_ns, old_ns);
Serge E. Hallyn071df102006-10-02 02:18:17 -0700101
Serge E. Hallyn071df102006-10-02 02:18:17 -0700102 put_uts_ns(old_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -0700103 return new_ns;
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -0700104}
105
106void free_uts_ns(struct kref *kref)
107{
108 struct uts_namespace *ns;
109
110 ns = container_of(kref, struct uts_namespace, kref);
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -0500111 dec_uts_namespaces(ns->ucounts);
Serge E. Hallyn59607db2011-03-23 16:43:16 -0700112 put_user_ns(ns->user_ns);
Al Viro6344c432014-11-01 00:45:45 -0400113 ns_free_inum(&ns->ns);
Alexey Dobriyan3ea056c2018-04-10 16:32:36 -0700114 kmem_cache_free(uts_ns_cache, ns);
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -0700115}
Eric W. Biederman34482e82010-03-07 18:43:27 -0800116
Al Viro3c041182014-11-01 00:25:30 -0400117static inline struct uts_namespace *to_uts_ns(struct ns_common *ns)
118{
119 return container_of(ns, struct uts_namespace, ns);
120}
121
Al Viro64964522014-11-01 00:37:32 -0400122static struct ns_common *utsns_get(struct task_struct *task)
Eric W. Biederman34482e82010-03-07 18:43:27 -0800123{
124 struct uts_namespace *ns = NULL;
125 struct nsproxy *nsproxy;
126
Eric W. Biederman728dba32014-02-03 19:13:49 -0800127 task_lock(task);
128 nsproxy = task->nsproxy;
Eric W. Biederman34482e82010-03-07 18:43:27 -0800129 if (nsproxy) {
130 ns = nsproxy->uts_ns;
131 get_uts_ns(ns);
132 }
Eric W. Biederman728dba32014-02-03 19:13:49 -0800133 task_unlock(task);
Eric W. Biederman34482e82010-03-07 18:43:27 -0800134
Al Viro3c041182014-11-01 00:25:30 -0400135 return ns ? &ns->ns : NULL;
Eric W. Biederman34482e82010-03-07 18:43:27 -0800136}
137
Al Viro64964522014-11-01 00:37:32 -0400138static void utsns_put(struct ns_common *ns)
Eric W. Biederman34482e82010-03-07 18:43:27 -0800139{
Al Viro3c041182014-11-01 00:25:30 -0400140 put_uts_ns(to_uts_ns(ns));
Eric W. Biederman34482e82010-03-07 18:43:27 -0800141}
142
Al Viro64964522014-11-01 00:37:32 -0400143static int utsns_install(struct nsproxy *nsproxy, struct ns_common *new)
Eric W. Biederman34482e82010-03-07 18:43:27 -0800144{
Al Viro3c041182014-11-01 00:25:30 -0400145 struct uts_namespace *ns = to_uts_ns(new);
Eric W. Biederman142e1d12012-07-26 01:13:20 -0700146
Eric W. Biederman5e4a0842012-12-14 07:55:36 -0800147 if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700148 !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
Eric W. Biederman142e1d12012-07-26 01:13:20 -0700149 return -EPERM;
150
Eric W. Biederman34482e82010-03-07 18:43:27 -0800151 get_uts_ns(ns);
152 put_uts_ns(nsproxy->uts_ns);
153 nsproxy->uts_ns = ns;
154 return 0;
155}
156
Andrey Vaginbcac25a2016-09-06 00:47:13 -0700157static struct user_namespace *utsns_owner(struct ns_common *ns)
158{
159 return to_uts_ns(ns)->user_ns;
160}
161
Eric W. Biederman34482e82010-03-07 18:43:27 -0800162const struct proc_ns_operations utsns_operations = {
163 .name = "uts",
164 .type = CLONE_NEWUTS,
165 .get = utsns_get,
166 .put = utsns_put,
167 .install = utsns_install,
Andrey Vaginbcac25a2016-09-06 00:47:13 -0700168 .owner = utsns_owner,
Eric W. Biederman34482e82010-03-07 18:43:27 -0800169};
Alexey Dobriyan3ea056c2018-04-10 16:32:36 -0700170
171void __init uts_ns_init(void)
172{
173 uts_ns_cache = kmem_cache_create_usercopy(
174 "uts_namespace", sizeof(struct uts_namespace), 0,
175 SLAB_PANIC|SLAB_ACCOUNT,
176 offsetof(struct uts_namespace, name),
177 sizeof_field(struct uts_namespace, name),
178 NULL);
179}