blob: cff3856591750955c0218abe81dfa86ba63dd51e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * The "user cache".
3 *
4 * (C) Copyright 1991-2000 Linus Torvalds
5 *
6 * We have a per-user structure to keep track of how many
7 * processes, files etc the user has claimed, in order to be
8 * able to have per-user limits for system resources.
9 */
10
11#include <linux/init.h>
12#include <linux/sched.h>
13#include <linux/slab.h>
14#include <linux/bitops.h>
15#include <linux/key.h>
Ingo Molnar4021cb22006-01-25 15:23:07 +010016#include <linux/interrupt.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040017#include <linux/export.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070018#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Serge E. Hallyn59607db2011-03-23 16:43:16 -070020/*
21 * userns count is 1 for root user, 1 for init_uts_ns,
22 * and 1 for... ?
23 */
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -080024struct user_namespace init_user_ns = {
25 .kref = {
Serge E. Hallyn59607db2011-03-23 16:43:16 -070026 .refcount = ATOMIC_INIT(3),
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -080027 },
Eric W. Biederman783291e2011-11-17 01:32:59 -080028 .owner = GLOBAL_ROOT_UID,
29 .group = GLOBAL_ROOT_GID,
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -080030};
31EXPORT_SYMBOL_GPL(init_user_ns);
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
34 * UID task count cache, to get fast user lookup in "alloc_uid"
35 * when changing user ID's (ie setuid() and friends).
36 */
37
Eric W. Biederman7b44ab92011-11-16 23:20:58 -080038#define UIDHASH_BITS (CONFIG_BASE_SMALL ? 3 : 7)
39#define UIDHASH_SZ (1 << UIDHASH_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define UIDHASH_MASK (UIDHASH_SZ - 1)
41#define __uidhashfn(uid) (((uid >> UIDHASH_BITS) + uid) & UIDHASH_MASK)
Eric W. Biederman7b44ab92011-11-16 23:20:58 -080042#define uidhashentry(uid) (uidhash_table + __uidhashfn((__kuid_val(uid))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Christoph Lametere18b8902006-12-06 20:33:20 -080044static struct kmem_cache *uid_cachep;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -080045struct hlist_head uidhash_table[UIDHASH_SZ];
Ingo Molnar4021cb22006-01-25 15:23:07 +010046
47/*
48 * The uidhash_lock is mostly taken from process context, but it is
49 * occasionally also taken from softirq/tasklet context, when
50 * task-structs get RCU-freed. Hence all locking must be softirq-safe.
Andrew Morton3fa97c92006-01-31 16:34:26 -080051 * But free_uid() is also called with local interrupts disabled, and running
52 * local_bh_enable() with local interrupts disabled is an error - we'll run
53 * softirq callbacks, and they can unconditionally enable interrupts, and
54 * the caller of free_uid() didn't expect that..
Ingo Molnar4021cb22006-01-25 15:23:07 +010055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static DEFINE_SPINLOCK(uidhash_lock);
57
Eric W. Biederman783291e2011-11-17 01:32:59 -080058/* root_user.__count is 1, for init task cred */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct user_struct root_user = {
Eric W. Biederman783291e2011-11-17 01:32:59 -080060 .__count = ATOMIC_INIT(1),
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .processes = ATOMIC_INIT(1),
62 .files = ATOMIC_INIT(0),
63 .sigpending = ATOMIC_INIT(0),
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .locked_shm = 0,
Eric W. Biederman7b44ab92011-11-16 23:20:58 -080065 .uid = GLOBAL_ROOT_UID,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Dhaval Giani5cb350b2007-10-15 17:00:14 +020068/*
69 * These routines must be called with the uidhash spinlock held!
70 */
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070071static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020072{
73 hlist_add_head(&up->uidhash_node, hashent);
74}
75
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070076static void uid_hash_remove(struct user_struct *up)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020077{
78 hlist_del_init(&up->uidhash_node);
79}
80
Eric W. Biederman7b44ab92011-11-16 23:20:58 -080081static struct user_struct *uid_hash_find(kuid_t uid, struct hlist_head *hashent)
Kay Sievers39592142009-03-24 15:43:30 +010082{
83 struct user_struct *user;
84 struct hlist_node *h;
85
86 hlist_for_each_entry(user, h, hashent, uidhash_node) {
Eric W. Biederman7b44ab92011-11-16 23:20:58 -080087 if (uid_eq(user->uid, uid)) {
Kay Sievers39592142009-03-24 15:43:30 +010088 atomic_inc(&user->__count);
89 return user;
90 }
91 }
92
93 return NULL;
94}
95
Dhaval Giani5cb350b2007-10-15 17:00:14 +020096/* IRQs are disabled and uidhash_lock is held upon function entry.
97 * IRQ state (as stored in flags) is restored and uidhash_lock released
98 * upon function exit.
99 */
Serge Hallyn18b6e042008-10-15 16:38:45 -0500100static void free_user(struct user_struct *up, unsigned long flags)
Namhyung Kim571428b2010-10-26 14:22:43 -0700101 __releases(&uidhash_lock)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200102{
103 uid_hash_remove(up);
104 spin_unlock_irqrestore(&uidhash_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200105 key_put(up->uid_keyring);
106 key_put(up->session_keyring);
107 kmem_cache_free(uid_cachep, up);
108}
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * Locate the user_struct for the passed UID. If found, take a ref on it. The
112 * caller must undo that ref with free_uid().
113 *
114 * If the user_struct could not be found, return NULL.
115 */
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800116struct user_struct *find_user(kuid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct user_struct *ret;
Andrew Morton3fa97c92006-01-31 16:34:26 -0800119 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Andrew Morton3fa97c92006-01-31 16:34:26 -0800121 spin_lock_irqsave(&uidhash_lock, flags);
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800122 ret = uid_hash_find(uid, uidhashentry(uid));
Andrew Morton3fa97c92006-01-31 16:34:26 -0800123 spin_unlock_irqrestore(&uidhash_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return ret;
125}
126
127void free_uid(struct user_struct *up)
128{
Andrew Morton3fa97c92006-01-31 16:34:26 -0800129 unsigned long flags;
130
Andrew Morton36f57412006-03-24 03:15:47 -0800131 if (!up)
132 return;
133
Andrew Morton3fa97c92006-01-31 16:34:26 -0800134 local_irq_save(flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200135 if (atomic_dec_and_lock(&up->__count, &uidhash_lock))
136 free_user(up, flags);
137 else
Andrew Morton36f57412006-03-24 03:15:47 -0800138 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800141struct user_struct *alloc_uid(kuid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800143 struct hlist_head *hashent = uidhashentry(uid);
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100144 struct user_struct *up, *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Andrew Morton3fa97c92006-01-31 16:34:26 -0800146 spin_lock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 up = uid_hash_find(uid, hashent);
Andrew Morton3fa97c92006-01-31 16:34:26 -0800148 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (!up) {
Andrew Morton354a1f42008-04-30 00:54:54 -0700151 new = kmem_cache_zalloc(uid_cachep, GFP_KERNEL);
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100152 if (!new)
153 goto out_unlock;
Pavel Emelyanov5e8869b2007-11-26 21:21:49 +0100154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 new->uid = uid;
156 atomic_set(&new->__count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /*
159 * Before adding this, check whether we raced
160 * on adding the same user already..
161 */
Andrew Morton3fa97c92006-01-31 16:34:26 -0800162 spin_lock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 up = uid_hash_find(uid, hashent);
164 if (up) {
165 key_put(new->uid_keyring);
166 key_put(new->session_keyring);
167 kmem_cache_free(uid_cachep, new);
168 } else {
169 uid_hash_insert(new, hashent);
170 up = new;
171 }
Andrew Morton3fa97c92006-01-31 16:34:26 -0800172 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return up;
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100176
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100177out_unlock:
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100178 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static int __init uid_cache_init(void)
182{
183 int n;
184
185 uid_cachep = kmem_cache_create("uid_cache", sizeof(struct user_struct),
Paul Mundt20c2df82007-07-20 10:11:58 +0900186 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 for(n = 0; n < UIDHASH_SZ; ++n)
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800189 INIT_HLIST_HEAD(uidhash_table + n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 /* Insert the root user immediately (init already runs as root) */
Andrew Morton3fa97c92006-01-31 16:34:26 -0800192 spin_lock_irq(&uidhash_lock);
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800193 uid_hash_insert(&root_user, uidhashentry(GLOBAL_ROOT_UID));
Andrew Morton3fa97c92006-01-31 16:34:26 -0800194 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 return 0;
197}
198
199module_init(uid_cache_init);