blob: fdc619eb61ef7497fa7a841277cdfd6e874ecbe3 [file] [log] [blame]
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -07001/*
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
Paul Gortmaker9984de12011-05-23 14:51:41 -040012#include <linux/export.h>
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070013#include <linux/uts.h>
14#include <linux/utsname.h>
Cedric Le Goater467e9f42007-07-15 23:41:06 -070015#include <linux/err.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -070016#include <linux/slab.h>
Serge E. Hallyn59607db2011-03-23 16:43:16 -070017#include <linux/user_namespace.h>
Eric W. Biederman34482e82010-03-07 18:43:27 -080018#include <linux/proc_fs.h>
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070019
Alexey Dobriyan4c2a7e72009-06-17 16:27:54 -070020static 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
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070030/*
Serge E. Hallyn071df102006-10-02 02:18:17 -070031 * Clone a new ns copying an original utsname, setting refcount to 1
32 * @old_ns: namespace to clone
33 * Return NULL on error (failure to kmalloc), new ns otherwise
34 */
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -070035static struct uts_namespace *clone_uts_ns(struct user_namespace *user_ns,
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -070036 struct uts_namespace *old_ns)
Serge E. Hallyn071df102006-10-02 02:18:17 -070037{
38 struct uts_namespace *ns;
39
Alexey Dobriyan4c2a7e72009-06-17 16:27:54 -070040 ns = create_uts_ns();
Cedric Le Goater467e9f42007-07-15 23:41:06 -070041 if (!ns)
42 return ERR_PTR(-ENOMEM);
43
Alexey Dobriyanefc63c42007-09-18 22:46:27 -070044 down_read(&uts_sem);
Cedric Le Goater467e9f42007-07-15 23:41:06 -070045 memcpy(&ns->name, &old_ns->name, sizeof(ns->name));
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -070046 ns->user_ns = get_user_ns(user_ns);
Alexey Dobriyanefc63c42007-09-18 22:46:27 -070047 up_read(&uts_sem);
Serge E. Hallyn071df102006-10-02 02:18:17 -070048 return ns;
49}
50
51/*
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070052 * Copy task tsk's utsname namespace, or clone it if flags
53 * specifies CLONE_NEWUTS. In latter case, changes to the
54 * utsname of this process won't be seen by parent, and vice
55 * versa.
56 */
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -070057struct uts_namespace *copy_utsname(unsigned long flags,
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -070058 struct user_namespace *user_ns, struct uts_namespace *old_ns)
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070059{
Serge E. Hallyn071df102006-10-02 02:18:17 -070060 struct uts_namespace *new_ns;
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070061
Badari Pulavartye3222c42007-05-08 00:25:21 -070062 BUG_ON(!old_ns);
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070063 get_uts_ns(old_ns);
64
Serge E. Hallyn071df102006-10-02 02:18:17 -070065 if (!(flags & CLONE_NEWUTS))
Badari Pulavartye3222c42007-05-08 00:25:21 -070066 return old_ns;
Serge E. Hallyn071df102006-10-02 02:18:17 -070067
Eric W. Biedermanbcf58e72012-07-26 04:02:49 -070068 new_ns = clone_uts_ns(user_ns, old_ns);
Serge E. Hallyn071df102006-10-02 02:18:17 -070069
Serge E. Hallyn071df102006-10-02 02:18:17 -070070 put_uts_ns(old_ns);
Badari Pulavartye3222c42007-05-08 00:25:21 -070071 return new_ns;
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070072}
73
74void free_uts_ns(struct kref *kref)
75{
76 struct uts_namespace *ns;
77
78 ns = container_of(kref, struct uts_namespace, kref);
Serge E. Hallyn59607db2011-03-23 16:43:16 -070079 put_user_ns(ns->user_ns);
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070080 kfree(ns);
81}
Eric W. Biederman34482e82010-03-07 18:43:27 -080082
83static void *utsns_get(struct task_struct *task)
84{
85 struct uts_namespace *ns = NULL;
86 struct nsproxy *nsproxy;
87
88 rcu_read_lock();
89 nsproxy = task_nsproxy(task);
90 if (nsproxy) {
91 ns = nsproxy->uts_ns;
92 get_uts_ns(ns);
93 }
94 rcu_read_unlock();
95
96 return ns;
97}
98
99static void utsns_put(void *ns)
100{
101 put_uts_ns(ns);
102}
103
Eric W. Biederman142e1d12012-07-26 01:13:20 -0700104static int utsns_install(struct nsproxy *nsproxy, void *new)
Eric W. Biederman34482e82010-03-07 18:43:27 -0800105{
Eric W. Biederman142e1d12012-07-26 01:13:20 -0700106 struct uts_namespace *ns = new;
107
108 if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN))
109 return -EPERM;
110
Eric W. Biederman34482e82010-03-07 18:43:27 -0800111 get_uts_ns(ns);
112 put_uts_ns(nsproxy->uts_ns);
113 nsproxy->uts_ns = ns;
114 return 0;
115}
116
117const struct proc_ns_operations utsns_operations = {
118 .name = "uts",
119 .type = CLONE_NEWUTS,
120 .get = utsns_get,
121 .put = utsns_put,
122 .install = utsns_install,
123};
124