aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/user_namespace.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/user_namespace.c')
-rw-r--r--kernel/user_namespace.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/kernel/user_namespace.c b/kernel/user_namespace.c
index 89f6eaed067..f5975ccf934 100644
--- a/kernel/user_namespace.c
+++ b/kernel/user_namespace.c
@@ -58,6 +58,7 @@ int create_user_ns(struct cred *new)
58 struct user_namespace *ns, *parent_ns = new->user_ns; 58 struct user_namespace *ns, *parent_ns = new->user_ns;
59 kuid_t owner = new->euid; 59 kuid_t owner = new->euid;
60 kgid_t group = new->egid; 60 kgid_t group = new->egid;
61 int ret;
61 62
62 /* The creator needs a mapping in the parent user namespace 63 /* The creator needs a mapping in the parent user namespace
63 * or else we won't be able to reasonably tell userspace who 64 * or else we won't be able to reasonably tell userspace who
@@ -71,6 +72,12 @@ int create_user_ns(struct cred *new)
71 if (!ns) 72 if (!ns)
72 return -ENOMEM; 73 return -ENOMEM;
73 74
75 ret = proc_alloc_inum(&ns->proc_inum);
76 if (ret) {
77 kmem_cache_free(user_ns_cachep, ns);
78 return ret;
79 }
80
74 kref_init(&ns->kref); 81 kref_init(&ns->kref);
75 /* Leave the new->user_ns reference with the new user namespace. */ 82 /* Leave the new->user_ns reference with the new user namespace. */
76 ns->parent = parent_ns; 83 ns->parent = parent_ns;
@@ -103,6 +110,7 @@ void free_user_ns(struct kref *kref)
103 container_of(kref, struct user_namespace, kref); 110 container_of(kref, struct user_namespace, kref);
104 111
105 parent = ns->parent; 112 parent = ns->parent;
113 proc_free_inum(ns->proc_inum);
106 kmem_cache_free(user_ns_cachep, ns); 114 kmem_cache_free(user_ns_cachep, ns);
107 put_user_ns(parent); 115 put_user_ns(parent);
108} 116}
@@ -808,12 +816,19 @@ static int userns_install(struct nsproxy *nsproxy, void *ns)
808 return commit_creds(cred); 816 return commit_creds(cred);
809} 817}
810 818
819static unsigned int userns_inum(void *ns)
820{
821 struct user_namespace *user_ns = ns;
822 return user_ns->proc_inum;
823}
824
811const struct proc_ns_operations userns_operations = { 825const struct proc_ns_operations userns_operations = {
812 .name = "user", 826 .name = "user",
813 .type = CLONE_NEWUSER, 827 .type = CLONE_NEWUSER,
814 .get = userns_get, 828 .get = userns_get,
815 .put = userns_put, 829 .put = userns_put,
816 .install = userns_install, 830 .install = userns_install,
831 .inum = userns_inum,
817}; 832};
818 833
819static __init int user_namespaces_init(void) 834static __init int user_namespaces_init(void)