cred: use correct cred accessor with regards to rcu read lock
[linux-2.6-block.git] / kernel / user.c
CommitLineData
1da177e4
LT
1/*
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>
4021cb27 16#include <linux/interrupt.h>
9984de1a 17#include <linux/export.h>
acce292c 18#include <linux/user_namespace.h>
1da177e4 19
59607db3
SH
20/*
21 * userns count is 1 for root user, 1 for init_uts_ns,
22 * and 1 for... ?
23 */
aee16ce7 24struct user_namespace init_user_ns = {
22d917d8
EB
25 .uid_map = {
26 .nr_extents = 1,
27 .extent[0] = {
28 .first = 0,
29 .lower_first = 0,
30 .count = 4294967295,
31 },
32 },
33 .gid_map = {
34 .nr_extents = 1,
35 .extent[0] = {
36 .first = 0,
37 .lower_first = 0,
38 .count = 4294967295,
39 },
40 },
aee16ce7 41 .kref = {
59607db3 42 .refcount = ATOMIC_INIT(3),
aee16ce7 43 },
783291e6
EB
44 .owner = GLOBAL_ROOT_UID,
45 .group = GLOBAL_ROOT_GID,
aee16ce7
PE
46};
47EXPORT_SYMBOL_GPL(init_user_ns);
48
1da177e4
LT
49/*
50 * UID task count cache, to get fast user lookup in "alloc_uid"
51 * when changing user ID's (ie setuid() and friends).
52 */
53
7b44ab97
EB
54#define UIDHASH_BITS (CONFIG_BASE_SMALL ? 3 : 7)
55#define UIDHASH_SZ (1 << UIDHASH_BITS)
1da177e4
LT
56#define UIDHASH_MASK (UIDHASH_SZ - 1)
57#define __uidhashfn(uid) (((uid >> UIDHASH_BITS) + uid) & UIDHASH_MASK)
7b44ab97 58#define uidhashentry(uid) (uidhash_table + __uidhashfn((__kuid_val(uid))))
1da177e4 59
e18b890b 60static struct kmem_cache *uid_cachep;
7b44ab97 61struct hlist_head uidhash_table[UIDHASH_SZ];
4021cb27
IM
62
63/*
64 * The uidhash_lock is mostly taken from process context, but it is
65 * occasionally also taken from softirq/tasklet context, when
66 * task-structs get RCU-freed. Hence all locking must be softirq-safe.
3fa97c9d
AM
67 * But free_uid() is also called with local interrupts disabled, and running
68 * local_bh_enable() with local interrupts disabled is an error - we'll run
69 * softirq callbacks, and they can unconditionally enable interrupts, and
70 * the caller of free_uid() didn't expect that..
4021cb27 71 */
1da177e4
LT
72static DEFINE_SPINLOCK(uidhash_lock);
73
783291e6 74/* root_user.__count is 1, for init task cred */
1da177e4 75struct user_struct root_user = {
783291e6 76 .__count = ATOMIC_INIT(1),
1da177e4
LT
77 .processes = ATOMIC_INIT(1),
78 .files = ATOMIC_INIT(0),
79 .sigpending = ATOMIC_INIT(0),
1da177e4 80 .locked_shm = 0,
7b44ab97 81 .uid = GLOBAL_ROOT_UID,
1da177e4
LT
82};
83
5cb350ba
DG
84/*
85 * These routines must be called with the uidhash spinlock held!
86 */
40aeb400 87static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent)
5cb350ba
DG
88{
89 hlist_add_head(&up->uidhash_node, hashent);
90}
91
40aeb400 92static void uid_hash_remove(struct user_struct *up)
5cb350ba
DG
93{
94 hlist_del_init(&up->uidhash_node);
95}
96
7b44ab97 97static struct user_struct *uid_hash_find(kuid_t uid, struct hlist_head *hashent)
3959214f
KS
98{
99 struct user_struct *user;
100 struct hlist_node *h;
101
102 hlist_for_each_entry(user, h, hashent, uidhash_node) {
7b44ab97 103 if (uid_eq(user->uid, uid)) {
3959214f
KS
104 atomic_inc(&user->__count);
105 return user;
106 }
107 }
108
109 return NULL;
110}
111
5cb350ba
DG
112/* IRQs are disabled and uidhash_lock is held upon function entry.
113 * IRQ state (as stored in flags) is restored and uidhash_lock released
114 * upon function exit.
115 */
18b6e041 116static void free_user(struct user_struct *up, unsigned long flags)
571428be 117 __releases(&uidhash_lock)
5cb350ba
DG
118{
119 uid_hash_remove(up);
120 spin_unlock_irqrestore(&uidhash_lock, flags);
5cb350ba
DG
121 key_put(up->uid_keyring);
122 key_put(up->session_keyring);
123 kmem_cache_free(uid_cachep, up);
124}
125
1da177e4
LT
126/*
127 * Locate the user_struct for the passed UID. If found, take a ref on it. The
128 * caller must undo that ref with free_uid().
129 *
130 * If the user_struct could not be found, return NULL.
131 */
7b44ab97 132struct user_struct *find_user(kuid_t uid)
1da177e4
LT
133{
134 struct user_struct *ret;
3fa97c9d 135 unsigned long flags;
1da177e4 136
3fa97c9d 137 spin_lock_irqsave(&uidhash_lock, flags);
7b44ab97 138 ret = uid_hash_find(uid, uidhashentry(uid));
3fa97c9d 139 spin_unlock_irqrestore(&uidhash_lock, flags);
1da177e4
LT
140 return ret;
141}
142
143void free_uid(struct user_struct *up)
144{
3fa97c9d
AM
145 unsigned long flags;
146
36f57413
AM
147 if (!up)
148 return;
149
3fa97c9d 150 local_irq_save(flags);
5cb350ba
DG
151 if (atomic_dec_and_lock(&up->__count, &uidhash_lock))
152 free_user(up, flags);
153 else
36f57413 154 local_irq_restore(flags);
1da177e4
LT
155}
156
7b44ab97 157struct user_struct *alloc_uid(kuid_t uid)
1da177e4 158{
7b44ab97 159 struct hlist_head *hashent = uidhashentry(uid);
8eb703e4 160 struct user_struct *up, *new;
1da177e4 161
3fa97c9d 162 spin_lock_irq(&uidhash_lock);
1da177e4 163 up = uid_hash_find(uid, hashent);
3fa97c9d 164 spin_unlock_irq(&uidhash_lock);
1da177e4
LT
165
166 if (!up) {
354a1f4d 167 new = kmem_cache_zalloc(uid_cachep, GFP_KERNEL);
8eb703e4
PE
168 if (!new)
169 goto out_unlock;
5e8869bb 170
1da177e4
LT
171 new->uid = uid;
172 atomic_set(&new->__count, 1);
1da177e4
LT
173
174 /*
175 * Before adding this, check whether we raced
176 * on adding the same user already..
177 */
3fa97c9d 178 spin_lock_irq(&uidhash_lock);
1da177e4
LT
179 up = uid_hash_find(uid, hashent);
180 if (up) {
181 key_put(new->uid_keyring);
182 key_put(new->session_keyring);
183 kmem_cache_free(uid_cachep, new);
184 } else {
185 uid_hash_insert(new, hashent);
186 up = new;
187 }
3fa97c9d 188 spin_unlock_irq(&uidhash_lock);
1da177e4 189 }
5cb350ba 190
1da177e4 191 return up;
8eb703e4 192
8eb703e4 193out_unlock:
8eb703e4 194 return NULL;
1da177e4
LT
195}
196
1da177e4
LT
197static int __init uid_cache_init(void)
198{
199 int n;
200
201 uid_cachep = kmem_cache_create("uid_cache", sizeof(struct user_struct),
20c2df83 202 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1da177e4
LT
203
204 for(n = 0; n < UIDHASH_SZ; ++n)
7b44ab97 205 INIT_HLIST_HEAD(uidhash_table + n);
1da177e4
LT
206
207 /* Insert the root user immediately (init already runs as root) */
3fa97c9d 208 spin_lock_irq(&uidhash_lock);
7b44ab97 209 uid_hash_insert(&root_user, uidhashentry(GLOBAL_ROOT_UID));
3fa97c9d 210 spin_unlock_irq(&uidhash_lock);
1da177e4
LT
211
212 return 0;
213}
214
215module_init(uid_cache_init);