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 ucounts
*inc_uts_namespaces(struct user_namespace
*ns
)
24 return inc_ucount(ns
, current_euid(), UCOUNT_UTS_NAMESPACES
);
27 static void dec_uts_namespaces(struct ucounts
*ucounts
)
29 dec_ucount(ucounts
, UCOUNT_UTS_NAMESPACES
);
32 static struct uts_namespace
*create_uts_ns(void)
34 struct uts_namespace
*uts_ns
;
36 uts_ns
= kmalloc(sizeof(struct uts_namespace
), GFP_KERNEL
);
38 kref_init(&uts_ns
->kref
);
43 * Clone a new ns copying an original utsname, setting refcount to 1
44 * @old_ns: namespace to clone
45 * Return ERR_PTR(-ENOMEM) on error (failure to kmalloc), new ns otherwise
47 static struct uts_namespace
*clone_uts_ns(struct user_namespace
*user_ns
,
48 struct uts_namespace
*old_ns
)
50 struct uts_namespace
*ns
;
51 struct ucounts
*ucounts
;
55 ucounts
= inc_uts_namespaces(user_ns
);
64 err
= ns_alloc_inum(&ns
->ns
);
68 ns
->ucounts
= ucounts
;
69 ns
->ns
.ops
= &utsns_operations
;
72 memcpy(&ns
->name
, &old_ns
->name
, sizeof(ns
->name
));
73 ns
->user_ns
= get_user_ns(user_ns
);
80 dec_uts_namespaces(ucounts
);
86 * Copy task tsk's utsname namespace, or clone it if flags
87 * specifies CLONE_NEWUTS. In latter case, changes to the
88 * utsname of this process won't be seen by parent, and vice
91 struct uts_namespace
*copy_utsname(unsigned long flags
,
92 struct user_namespace
*user_ns
, struct uts_namespace
*old_ns
)
94 struct uts_namespace
*new_ns
;
99 if (!(flags
& CLONE_NEWUTS
))
102 new_ns
= clone_uts_ns(user_ns
, old_ns
);
108 void free_uts_ns(struct kref
*kref
)
110 struct uts_namespace
*ns
;
112 ns
= container_of(kref
, struct uts_namespace
, kref
);
113 dec_uts_namespaces(ns
->ucounts
);
114 put_user_ns(ns
->user_ns
);
115 ns_free_inum(&ns
->ns
);
119 static inline struct uts_namespace
*to_uts_ns(struct ns_common
*ns
)
121 return container_of(ns
, struct uts_namespace
, ns
);
124 static struct ns_common
*utsns_get(struct task_struct
*task
)
126 struct uts_namespace
*ns
= NULL
;
127 struct nsproxy
*nsproxy
;
130 nsproxy
= task
->nsproxy
;
132 ns
= nsproxy
->uts_ns
;
137 return ns
? &ns
->ns
: NULL
;
140 static void utsns_put(struct ns_common
*ns
)
142 put_uts_ns(to_uts_ns(ns
));
145 static int utsns_install(struct nsproxy
*nsproxy
, struct ns_common
*new)
147 struct uts_namespace
*ns
= to_uts_ns(new);
149 if (!ns_capable(ns
->user_ns
, CAP_SYS_ADMIN
) ||
150 !ns_capable(current_user_ns(), CAP_SYS_ADMIN
))
154 put_uts_ns(nsproxy
->uts_ns
);
155 nsproxy
->uts_ns
= ns
;
159 static struct user_namespace
*utsns_owner(struct ns_common
*ns
)
161 return to_uts_ns(ns
)->user_ns
;
164 const struct proc_ns_operations utsns_operations
= {
166 .type
= CLONE_NEWUTS
,
169 .install
= utsns_install
,
170 .owner
= utsns_owner
,