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/user_namespace.h>
18 #include <linux/proc_ns.h>
20 static struct ucounts
*inc_uts_namespaces(struct user_namespace
*ns
)
22 return inc_ucount(ns
, current_euid(), UCOUNT_UTS_NAMESPACES
);
25 static void dec_uts_namespaces(struct ucounts
*ucounts
)
27 dec_ucount(ucounts
, UCOUNT_UTS_NAMESPACES
);
30 static struct uts_namespace
*create_uts_ns(void)
32 struct uts_namespace
*uts_ns
;
34 uts_ns
= kmalloc(sizeof(struct uts_namespace
), GFP_KERNEL
);
36 kref_init(&uts_ns
->kref
);
41 * Clone a new ns copying an original utsname, setting refcount to 1
42 * @old_ns: namespace to clone
43 * Return ERR_PTR(-ENOMEM) on error (failure to kmalloc), new ns otherwise
45 static struct uts_namespace
*clone_uts_ns(struct user_namespace
*user_ns
,
46 struct uts_namespace
*old_ns
)
48 struct uts_namespace
*ns
;
49 struct ucounts
*ucounts
;
53 ucounts
= inc_uts_namespaces(user_ns
);
62 err
= ns_alloc_inum(&ns
->ns
);
66 ns
->ucounts
= ucounts
;
67 ns
->ns
.ops
= &utsns_operations
;
70 memcpy(&ns
->name
, &old_ns
->name
, sizeof(ns
->name
));
71 ns
->user_ns
= get_user_ns(user_ns
);
78 dec_uts_namespaces(ucounts
);
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
89 struct uts_namespace
*copy_utsname(unsigned long flags
,
90 struct user_namespace
*user_ns
, struct uts_namespace
*old_ns
)
92 struct uts_namespace
*new_ns
;
97 if (!(flags
& CLONE_NEWUTS
))
100 new_ns
= clone_uts_ns(user_ns
, old_ns
);
106 void free_uts_ns(struct kref
*kref
)
108 struct uts_namespace
*ns
;
110 ns
= container_of(kref
, struct uts_namespace
, kref
);
111 dec_uts_namespaces(ns
->ucounts
);
112 put_user_ns(ns
->user_ns
);
113 ns_free_inum(&ns
->ns
);
117 static inline struct uts_namespace
*to_uts_ns(struct ns_common
*ns
)
119 return container_of(ns
, struct uts_namespace
, ns
);
122 static struct ns_common
*utsns_get(struct task_struct
*task
)
124 struct uts_namespace
*ns
= NULL
;
125 struct nsproxy
*nsproxy
;
128 nsproxy
= task
->nsproxy
;
130 ns
= nsproxy
->uts_ns
;
135 return ns
? &ns
->ns
: NULL
;
138 static void utsns_put(struct ns_common
*ns
)
140 put_uts_ns(to_uts_ns(ns
));
143 static int utsns_install(struct nsproxy
*nsproxy
, struct ns_common
*new)
145 struct uts_namespace
*ns
= to_uts_ns(new);
147 if (!ns_capable(ns
->user_ns
, CAP_SYS_ADMIN
) ||
148 !ns_capable(current_user_ns(), CAP_SYS_ADMIN
))
152 put_uts_ns(nsproxy
->uts_ns
);
153 nsproxy
->uts_ns
= ns
;
157 static struct user_namespace
*utsns_owner(struct ns_common
*ns
)
159 return to_uts_ns(ns
)->user_ns
;
162 const struct proc_ns_operations utsns_operations
= {
164 .type
= CLONE_NEWUTS
,
167 .install
= utsns_install
,
168 .owner
= utsns_owner
,