提交 7b44ab97 编写于 作者: E Eric W. Biederman

userns: Disassociate user_struct from the user_namespace.

Modify alloc_uid to take a kuid and make the user hash table global.
Stop holding a reference to the user namespace in struct user_struct.

This simplifies the code and makes the per user accounting not
care about which user namespace a uid happens to appear in.
Acked-by: NSerge Hallyn <serge.hallyn@canonical.com>
Signed-off-by: NEric W. Biederman <ebiederm@xmission.com>
上级 5673a94c
...@@ -65,6 +65,7 @@ SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio) ...@@ -65,6 +65,7 @@ SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio)
struct task_struct *p, *g; struct task_struct *p, *g;
struct user_struct *user; struct user_struct *user;
struct pid *pgrp; struct pid *pgrp;
kuid_t uid;
int ret; int ret;
switch (class) { switch (class) {
...@@ -110,16 +111,21 @@ SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio) ...@@ -110,16 +111,21 @@ SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio)
} while_each_pid_thread(pgrp, PIDTYPE_PGID, p); } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
break; break;
case IOPRIO_WHO_USER: case IOPRIO_WHO_USER:
uid = make_kuid(current_user_ns(), who);
if (!uid_valid(uid))
break;
if (!who) if (!who)
user = current_user(); user = current_user();
else else
user = find_user(who); user = find_user(uid);
if (!user) if (!user)
break; break;
do_each_thread(g, p) { do_each_thread(g, p) {
if (__task_cred(p)->uid != who) const struct cred *tcred = __task_cred(p);
kuid_t tcred_uid = make_kuid(tcred->user_ns, tcred->uid);
if (!uid_eq(tcred_uid, uid))
continue; continue;
ret = set_task_ioprio(p, ioprio); ret = set_task_ioprio(p, ioprio);
if (ret) if (ret)
...@@ -174,6 +180,7 @@ SYSCALL_DEFINE2(ioprio_get, int, which, int, who) ...@@ -174,6 +180,7 @@ SYSCALL_DEFINE2(ioprio_get, int, which, int, who)
struct task_struct *g, *p; struct task_struct *g, *p;
struct user_struct *user; struct user_struct *user;
struct pid *pgrp; struct pid *pgrp;
kuid_t uid;
int ret = -ESRCH; int ret = -ESRCH;
int tmpio; int tmpio;
...@@ -203,16 +210,19 @@ SYSCALL_DEFINE2(ioprio_get, int, which, int, who) ...@@ -203,16 +210,19 @@ SYSCALL_DEFINE2(ioprio_get, int, which, int, who)
} while_each_pid_thread(pgrp, PIDTYPE_PGID, p); } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
break; break;
case IOPRIO_WHO_USER: case IOPRIO_WHO_USER:
uid = make_kuid(current_user_ns(), who);
if (!who) if (!who)
user = current_user(); user = current_user();
else else
user = find_user(who); user = find_user(uid);
if (!user) if (!user)
break; break;
do_each_thread(g, p) { do_each_thread(g, p) {
if (__task_cred(p)->uid != user->uid) const struct cred *tcred = __task_cred(p);
kuid_t tcred_uid = make_kuid(tcred->user_ns, tcred->uid);
if (!uid_eq(tcred_uid, user->uid))
continue; continue;
tmpio = get_task_ioprio(p); tmpio = get_task_ioprio(p);
if (tmpio < 0) if (tmpio < 0)
......
...@@ -90,6 +90,7 @@ struct sched_param { ...@@ -90,6 +90,7 @@ struct sched_param {
#include <linux/latencytop.h> #include <linux/latencytop.h>
#include <linux/cred.h> #include <linux/cred.h>
#include <linux/llist.h> #include <linux/llist.h>
#include <linux/uidgid.h>
#include <asm/processor.h> #include <asm/processor.h>
...@@ -728,8 +729,7 @@ struct user_struct { ...@@ -728,8 +729,7 @@ struct user_struct {
/* Hash table maintenance information */ /* Hash table maintenance information */
struct hlist_node uidhash_node; struct hlist_node uidhash_node;
uid_t uid; kuid_t uid;
struct user_namespace *_user_ns; /* Don't use will be removed soon */
#ifdef CONFIG_PERF_EVENTS #ifdef CONFIG_PERF_EVENTS
atomic_long_t locked_vm; atomic_long_t locked_vm;
...@@ -738,7 +738,7 @@ struct user_struct { ...@@ -738,7 +738,7 @@ struct user_struct {
extern int uids_sysfs_init(void); extern int uids_sysfs_init(void);
extern struct user_struct *find_user(uid_t); extern struct user_struct *find_user(kuid_t);
extern struct user_struct root_user; extern struct user_struct root_user;
#define INIT_USER (&root_user) #define INIT_USER (&root_user)
...@@ -2177,7 +2177,7 @@ extern struct task_struct *find_task_by_pid_ns(pid_t nr, ...@@ -2177,7 +2177,7 @@ extern struct task_struct *find_task_by_pid_ns(pid_t nr,
extern void __set_special_pids(struct pid *pid); extern void __set_special_pids(struct pid *pid);
/* per-UID process charging. */ /* per-UID process charging. */
extern struct user_struct * alloc_uid(struct user_namespace *, uid_t); extern struct user_struct * alloc_uid(kuid_t);
static inline struct user_struct *get_uid(struct user_struct *u) static inline struct user_struct *get_uid(struct user_struct *u)
{ {
atomic_inc(&u->__count); atomic_inc(&u->__count);
......
...@@ -6,12 +6,8 @@ ...@@ -6,12 +6,8 @@
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/err.h> #include <linux/err.h>
#define UIDHASH_BITS (CONFIG_BASE_SMALL ? 3 : 7)
#define UIDHASH_SZ (1 << UIDHASH_BITS)
struct user_namespace { struct user_namespace {
struct kref kref; struct kref kref;
struct hlist_head uidhash_table[UIDHASH_SZ];
struct user_namespace *parent; struct user_namespace *parent;
struct user_struct *creator; struct user_struct *creator;
struct work_struct destroyer; struct work_struct destroyer;
......
...@@ -175,6 +175,8 @@ SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval) ...@@ -175,6 +175,8 @@ SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
const struct cred *cred = current_cred(); const struct cred *cred = current_cred();
int error = -EINVAL; int error = -EINVAL;
struct pid *pgrp; struct pid *pgrp;
kuid_t cred_uid;
kuid_t uid;
if (which > PRIO_USER || which < PRIO_PROCESS) if (which > PRIO_USER || which < PRIO_PROCESS)
goto out; goto out;
...@@ -207,18 +209,22 @@ SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval) ...@@ -207,18 +209,22 @@ SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
} while_each_pid_thread(pgrp, PIDTYPE_PGID, p); } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
break; break;
case PRIO_USER: case PRIO_USER:
cred_uid = make_kuid(cred->user_ns, cred->uid);
uid = make_kuid(cred->user_ns, who);
user = cred->user; user = cred->user;
if (!who) if (!who)
who = cred->uid; uid = cred_uid;
else if ((who != cred->uid) && else if (!uid_eq(uid, cred_uid) &&
!(user = find_user(who))) !(user = find_user(uid)))
goto out_unlock; /* No processes for this user */ goto out_unlock; /* No processes for this user */
do_each_thread(g, p) { do_each_thread(g, p) {
if (__task_cred(p)->uid == who) const struct cred *tcred = __task_cred(p);
kuid_t tcred_uid = make_kuid(tcred->user_ns, tcred->uid);
if (uid_eq(tcred_uid, uid))
error = set_one_prio(p, niceval, error); error = set_one_prio(p, niceval, error);
} while_each_thread(g, p); } while_each_thread(g, p);
if (who != cred->uid) if (!uid_eq(uid, cred_uid))
free_uid(user); /* For find_user() */ free_uid(user); /* For find_user() */
break; break;
} }
...@@ -242,6 +248,8 @@ SYSCALL_DEFINE2(getpriority, int, which, int, who) ...@@ -242,6 +248,8 @@ SYSCALL_DEFINE2(getpriority, int, which, int, who)
const struct cred *cred = current_cred(); const struct cred *cred = current_cred();
long niceval, retval = -ESRCH; long niceval, retval = -ESRCH;
struct pid *pgrp; struct pid *pgrp;
kuid_t cred_uid;
kuid_t uid;
if (which > PRIO_USER || which < PRIO_PROCESS) if (which > PRIO_USER || which < PRIO_PROCESS)
return -EINVAL; return -EINVAL;
...@@ -272,21 +280,25 @@ SYSCALL_DEFINE2(getpriority, int, which, int, who) ...@@ -272,21 +280,25 @@ SYSCALL_DEFINE2(getpriority, int, which, int, who)
} while_each_pid_thread(pgrp, PIDTYPE_PGID, p); } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
break; break;
case PRIO_USER: case PRIO_USER:
cred_uid = make_kuid(cred->user_ns, cred->uid);
uid = make_kuid(cred->user_ns, who);
user = cred->user; user = cred->user;
if (!who) if (!who)
who = cred->uid; uid = cred_uid;
else if ((who != cred->uid) && else if (!uid_eq(uid, cred_uid) &&
!(user = find_user(who))) !(user = find_user(uid)))
goto out_unlock; /* No processes for this user */ goto out_unlock; /* No processes for this user */
do_each_thread(g, p) { do_each_thread(g, p) {
if (__task_cred(p)->uid == who) { const struct cred *tcred = __task_cred(p);
kuid_t tcred_uid = make_kuid(tcred->user_ns, tcred->uid);
if (uid_eq(tcred_uid, uid)) {
niceval = 20 - task_nice(p); niceval = 20 - task_nice(p);
if (niceval > retval) if (niceval > retval)
retval = niceval; retval = niceval;
} }
} while_each_thread(g, p); } while_each_thread(g, p);
if (who != cred->uid) if (!uid_eq(uid, cred_uid))
free_uid(user); /* for find_user() */ free_uid(user); /* for find_user() */
break; break;
} }
...@@ -629,7 +641,7 @@ static int set_user(struct cred *new) ...@@ -629,7 +641,7 @@ static int set_user(struct cred *new)
{ {
struct user_struct *new_user; struct user_struct *new_user;
new_user = alloc_uid(current_user_ns(), new->uid); new_user = alloc_uid(make_kuid(new->user_ns, new->uid));
if (!new_user) if (!new_user)
return -EAGAIN; return -EAGAIN;
......
...@@ -34,11 +34,14 @@ EXPORT_SYMBOL_GPL(init_user_ns); ...@@ -34,11 +34,14 @@ EXPORT_SYMBOL_GPL(init_user_ns);
* when changing user ID's (ie setuid() and friends). * when changing user ID's (ie setuid() and friends).
*/ */
#define UIDHASH_BITS (CONFIG_BASE_SMALL ? 3 : 7)
#define UIDHASH_SZ (1 << UIDHASH_BITS)
#define UIDHASH_MASK (UIDHASH_SZ - 1) #define UIDHASH_MASK (UIDHASH_SZ - 1)
#define __uidhashfn(uid) (((uid >> UIDHASH_BITS) + uid) & UIDHASH_MASK) #define __uidhashfn(uid) (((uid >> UIDHASH_BITS) + uid) & UIDHASH_MASK)
#define uidhashentry(ns, uid) ((ns)->uidhash_table + __uidhashfn((uid))) #define uidhashentry(uid) (uidhash_table + __uidhashfn((__kuid_val(uid))))
static struct kmem_cache *uid_cachep; static struct kmem_cache *uid_cachep;
struct hlist_head uidhash_table[UIDHASH_SZ];
/* /*
* The uidhash_lock is mostly taken from process context, but it is * The uidhash_lock is mostly taken from process context, but it is
...@@ -58,7 +61,7 @@ struct user_struct root_user = { ...@@ -58,7 +61,7 @@ struct user_struct root_user = {
.files = ATOMIC_INIT(0), .files = ATOMIC_INIT(0),
.sigpending = ATOMIC_INIT(0), .sigpending = ATOMIC_INIT(0),
.locked_shm = 0, .locked_shm = 0,
._user_ns = &init_user_ns, .uid = GLOBAL_ROOT_UID,
}; };
/* /*
...@@ -72,16 +75,15 @@ static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent) ...@@ -72,16 +75,15 @@ static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent)
static void uid_hash_remove(struct user_struct *up) static void uid_hash_remove(struct user_struct *up)
{ {
hlist_del_init(&up->uidhash_node); hlist_del_init(&up->uidhash_node);
put_user_ns(up->_user_ns); /* It is safe to free the uid hash table now */
} }
static struct user_struct *uid_hash_find(uid_t uid, struct hlist_head *hashent) static struct user_struct *uid_hash_find(kuid_t uid, struct hlist_head *hashent)
{ {
struct user_struct *user; struct user_struct *user;
struct hlist_node *h; struct hlist_node *h;
hlist_for_each_entry(user, h, hashent, uidhash_node) { hlist_for_each_entry(user, h, hashent, uidhash_node) {
if (user->uid == uid) { if (uid_eq(user->uid, uid)) {
atomic_inc(&user->__count); atomic_inc(&user->__count);
return user; return user;
} }
...@@ -110,14 +112,13 @@ static void free_user(struct user_struct *up, unsigned long flags) ...@@ -110,14 +112,13 @@ static void free_user(struct user_struct *up, unsigned long flags)
* *
* If the user_struct could not be found, return NULL. * If the user_struct could not be found, return NULL.
*/ */
struct user_struct *find_user(uid_t uid) struct user_struct *find_user(kuid_t uid)
{ {
struct user_struct *ret; struct user_struct *ret;
unsigned long flags; unsigned long flags;
struct user_namespace *ns = current_user_ns();
spin_lock_irqsave(&uidhash_lock, flags); spin_lock_irqsave(&uidhash_lock, flags);
ret = uid_hash_find(uid, uidhashentry(ns, uid)); ret = uid_hash_find(uid, uidhashentry(uid));
spin_unlock_irqrestore(&uidhash_lock, flags); spin_unlock_irqrestore(&uidhash_lock, flags);
return ret; return ret;
} }
...@@ -136,9 +137,9 @@ void free_uid(struct user_struct *up) ...@@ -136,9 +137,9 @@ void free_uid(struct user_struct *up)
local_irq_restore(flags); local_irq_restore(flags);
} }
struct user_struct *alloc_uid(struct user_namespace *ns, uid_t uid) struct user_struct *alloc_uid(kuid_t uid)
{ {
struct hlist_head *hashent = uidhashentry(ns, uid); struct hlist_head *hashent = uidhashentry(uid);
struct user_struct *up, *new; struct user_struct *up, *new;
spin_lock_irq(&uidhash_lock); spin_lock_irq(&uidhash_lock);
...@@ -153,8 +154,6 @@ struct user_struct *alloc_uid(struct user_namespace *ns, uid_t uid) ...@@ -153,8 +154,6 @@ struct user_struct *alloc_uid(struct user_namespace *ns, uid_t uid)
new->uid = uid; new->uid = uid;
atomic_set(&new->__count, 1); atomic_set(&new->__count, 1);
new->_user_ns = get_user_ns(ns);
/* /*
* Before adding this, check whether we raced * Before adding this, check whether we raced
* on adding the same user already.. * on adding the same user already..
...@@ -162,7 +161,6 @@ struct user_struct *alloc_uid(struct user_namespace *ns, uid_t uid) ...@@ -162,7 +161,6 @@ struct user_struct *alloc_uid(struct user_namespace *ns, uid_t uid)
spin_lock_irq(&uidhash_lock); spin_lock_irq(&uidhash_lock);
up = uid_hash_find(uid, hashent); up = uid_hash_find(uid, hashent);
if (up) { if (up) {
put_user_ns(ns);
key_put(new->uid_keyring); key_put(new->uid_keyring);
key_put(new->session_keyring); key_put(new->session_keyring);
kmem_cache_free(uid_cachep, new); kmem_cache_free(uid_cachep, new);
...@@ -187,11 +185,11 @@ static int __init uid_cache_init(void) ...@@ -187,11 +185,11 @@ static int __init uid_cache_init(void)
0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL); 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
for(n = 0; n < UIDHASH_SZ; ++n) for(n = 0; n < UIDHASH_SZ; ++n)
INIT_HLIST_HEAD(init_user_ns.uidhash_table + n); INIT_HLIST_HEAD(uidhash_table + n);
/* Insert the root user immediately (init already runs as root) */ /* Insert the root user immediately (init already runs as root) */
spin_lock_irq(&uidhash_lock); spin_lock_irq(&uidhash_lock);
uid_hash_insert(&root_user, uidhashentry(&init_user_ns, 0)); uid_hash_insert(&root_user, uidhashentry(GLOBAL_ROOT_UID));
spin_unlock_irq(&uidhash_lock); spin_unlock_irq(&uidhash_lock);
return 0; return 0;
......
...@@ -27,7 +27,6 @@ int create_user_ns(struct cred *new) ...@@ -27,7 +27,6 @@ int create_user_ns(struct cred *new)
{ {
struct user_namespace *ns, *parent_ns = new->user_ns; struct user_namespace *ns, *parent_ns = new->user_ns;
struct user_struct *root_user; struct user_struct *root_user;
int n;
ns = kmem_cache_alloc(user_ns_cachep, GFP_KERNEL); ns = kmem_cache_alloc(user_ns_cachep, GFP_KERNEL);
if (!ns) if (!ns)
...@@ -35,11 +34,8 @@ int create_user_ns(struct cred *new) ...@@ -35,11 +34,8 @@ int create_user_ns(struct cred *new)
kref_init(&ns->kref); kref_init(&ns->kref);
for (n = 0; n < UIDHASH_SZ; ++n)
INIT_HLIST_HEAD(ns->uidhash_table + n);
/* Alloc new root user. */ /* Alloc new root user. */
root_user = alloc_uid(ns, 0); root_user = alloc_uid(make_kuid(ns, 0));
if (!root_user) { if (!root_user) {
kmem_cache_free(user_ns_cachep, ns); kmem_cache_free(user_ns_cachep, ns);
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册