]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/user.c
sched: dynamically update the root-domain span/online maps
[net-next-2.6.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>
acce292c
CLG
17#include <linux/module.h>
18#include <linux/user_namespace.h>
1da177e4
LT
19
20/*
21 * UID task count cache, to get fast user lookup in "alloc_uid"
22 * when changing user ID's (ie setuid() and friends).
23 */
24
1da177e4
LT
25#define UIDHASH_MASK (UIDHASH_SZ - 1)
26#define __uidhashfn(uid) (((uid >> UIDHASH_BITS) + uid) & UIDHASH_MASK)
acce292c 27#define uidhashentry(ns, uid) ((ns)->uidhash_table + __uidhashfn((uid)))
1da177e4 28
e18b890b 29static struct kmem_cache *uid_cachep;
4021cb27
IM
30
31/*
32 * The uidhash_lock is mostly taken from process context, but it is
33 * occasionally also taken from softirq/tasklet context, when
34 * task-structs get RCU-freed. Hence all locking must be softirq-safe.
3fa97c9d
AM
35 * But free_uid() is also called with local interrupts disabled, and running
36 * local_bh_enable() with local interrupts disabled is an error - we'll run
37 * softirq callbacks, and they can unconditionally enable interrupts, and
38 * the caller of free_uid() didn't expect that..
4021cb27 39 */
1da177e4
LT
40static DEFINE_SPINLOCK(uidhash_lock);
41
42struct user_struct root_user = {
43 .__count = ATOMIC_INIT(1),
44 .processes = ATOMIC_INIT(1),
45 .files = ATOMIC_INIT(0),
46 .sigpending = ATOMIC_INIT(0),
1da177e4
LT
47 .locked_shm = 0,
48#ifdef CONFIG_KEYS
49 .uid_keyring = &root_user_keyring,
50 .session_keyring = &root_session_keyring,
51#endif
24e377a8 52#ifdef CONFIG_FAIR_USER_SCHED
4cf86d77 53 .tg = &init_task_group,
24e377a8 54#endif
1da177e4
LT
55};
56
5cb350ba
DG
57/*
58 * These routines must be called with the uidhash spinlock held!
59 */
40aeb400 60static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent)
5cb350ba
DG
61{
62 hlist_add_head(&up->uidhash_node, hashent);
63}
64
40aeb400 65static void uid_hash_remove(struct user_struct *up)
5cb350ba
DG
66{
67 hlist_del_init(&up->uidhash_node);
68}
69
40aeb400 70static struct user_struct *uid_hash_find(uid_t uid, struct hlist_head *hashent)
5cb350ba
DG
71{
72 struct user_struct *user;
73 struct hlist_node *h;
74
75 hlist_for_each_entry(user, h, hashent, uidhash_node) {
76 if (user->uid == uid) {
77 atomic_inc(&user->__count);
78 return user;
79 }
80 }
81
82 return NULL;
83}
84
24e377a8 85#ifdef CONFIG_FAIR_USER_SCHED
5cb350ba 86
24e377a8
SV
87static void sched_destroy_user(struct user_struct *up)
88{
89 sched_destroy_group(up->tg);
90}
91
92static int sched_create_user(struct user_struct *up)
93{
94 int rc = 0;
95
96 up->tg = sched_create_group();
97 if (IS_ERR(up->tg))
98 rc = -ENOMEM;
99
100 return rc;
101}
102
103static void sched_switch_user(struct task_struct *p)
104{
105 sched_move_task(p);
106}
107
b1a8c172
DG
108#else /* CONFIG_FAIR_USER_SCHED */
109
110static void sched_destroy_user(struct user_struct *up) { }
111static int sched_create_user(struct user_struct *up) { return 0; }
112static void sched_switch_user(struct task_struct *p) { }
113
114#endif /* CONFIG_FAIR_USER_SCHED */
115
116#if defined(CONFIG_FAIR_USER_SCHED) && defined(CONFIG_SYSFS)
117
eb41d946 118static struct kset *uids_kset; /* represents the /sys/kernel/uids/ directory */
b1a8c172
DG
119static DEFINE_MUTEX(uids_mutex);
120
5cb350ba
DG
121static inline void uids_mutex_lock(void)
122{
123 mutex_lock(&uids_mutex);
124}
24e377a8 125
5cb350ba
DG
126static inline void uids_mutex_unlock(void)
127{
128 mutex_unlock(&uids_mutex);
129}
24e377a8 130
eb41d946
KS
131/* uid directory attributes */
132static ssize_t cpu_shares_show(struct kobject *kobj,
133 struct kobj_attribute *attr,
134 char *buf)
5cb350ba 135{
eb41d946 136 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
24e377a8 137
eb41d946 138 return sprintf(buf, "%lu\n", sched_group_shares(up->tg));
5cb350ba
DG
139}
140
eb41d946
KS
141static ssize_t cpu_shares_store(struct kobject *kobj,
142 struct kobj_attribute *attr,
143 const char *buf, size_t size)
5cb350ba 144{
eb41d946 145 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
5cb350ba
DG
146 unsigned long shares;
147 int rc;
148
eb41d946 149 sscanf(buf, "%lu", &shares);
5cb350ba
DG
150
151 rc = sched_group_set_shares(up->tg, shares);
152
153 return (rc ? rc : size);
154}
155
eb41d946
KS
156static struct kobj_attribute cpu_share_attr =
157 __ATTR(cpu_share, 0644, cpu_shares_show, cpu_shares_store);
158
159/* default attributes per uid directory */
160static struct attribute *uids_attributes[] = {
161 &cpu_share_attr.attr,
162 NULL
163};
164
165/* the lifetime of user_struct is not managed by the core (now) */
166static void uids_release(struct kobject *kobj)
5cb350ba 167{
eb41d946 168 return;
5cb350ba
DG
169}
170
eb41d946
KS
171static struct kobj_type uids_ktype = {
172 .sysfs_ops = &kobj_sysfs_ops,
173 .default_attrs = uids_attributes,
174 .release = uids_release,
175};
176
177/* create /sys/kernel/uids/<uid>/cpu_share file for this user */
178static int uids_user_create(struct user_struct *up)
1da177e4 179{
eb41d946 180 struct kobject *kobj = &up->kobj;
5cb350ba
DG
181 int error;
182
eb41d946 183 memset(kobj, 0, sizeof(struct kobject));
eb41d946 184 kobj->kset = uids_kset;
cf15126b
GKH
185 error = kobject_init_and_add(kobj, &uids_ktype, NULL, "%d", up->uid);
186 if (error) {
187 kobject_put(kobj);
5cb350ba 188 goto done;
cf15126b 189 }
5cb350ba 190
fb7dde37 191 kobject_uevent(kobj, KOBJ_ADD);
5cb350ba
DG
192done:
193 return error;
1da177e4
LT
194}
195
eb41d946 196/* create these entries in sysfs:
5cb350ba
DG
197 * "/sys/kernel/uids" directory
198 * "/sys/kernel/uids/0" directory (for root user)
199 * "/sys/kernel/uids/0/cpu_share" file (for root user)
200 */
eb41d946 201int __init uids_sysfs_init(void)
1da177e4 202{
0ff21e46 203 uids_kset = kset_create_and_add("uids", NULL, kernel_kobj);
eb41d946
KS
204 if (!uids_kset)
205 return -ENOMEM;
5cb350ba 206
eb41d946 207 return uids_user_create(&root_user);
1da177e4
LT
208}
209
5cb350ba
DG
210/* work function to remove sysfs directory for a user and free up
211 * corresponding structures.
212 */
213static void remove_user_sysfs_dir(struct work_struct *w)
1da177e4 214{
5cb350ba 215 struct user_struct *up = container_of(w, struct user_struct, work);
5cb350ba
DG
216 unsigned long flags;
217 int remove_user = 0;
1da177e4 218
5cb350ba
DG
219 /* Make uid_hash_remove() + sysfs_remove_file() + kobject_del()
220 * atomic.
221 */
222 uids_mutex_lock();
223
224 local_irq_save(flags);
225
226 if (atomic_dec_and_lock(&up->__count, &uidhash_lock)) {
227 uid_hash_remove(up);
228 remove_user = 1;
229 spin_unlock_irqrestore(&uidhash_lock, flags);
230 } else {
231 local_irq_restore(flags);
1da177e4
LT
232 }
233
5cb350ba
DG
234 if (!remove_user)
235 goto done;
236
eb41d946
KS
237 kobject_uevent(&up->kobj, KOBJ_REMOVE);
238 kobject_del(&up->kobj);
239 kobject_put(&up->kobj);
5cb350ba
DG
240
241 sched_destroy_user(up);
242 key_put(up->uid_keyring);
243 key_put(up->session_keyring);
244 kmem_cache_free(uid_cachep, up);
245
246done:
247 uids_mutex_unlock();
248}
249
250/* IRQs are disabled and uidhash_lock is held upon function entry.
251 * IRQ state (as stored in flags) is restored and uidhash_lock released
252 * upon function exit.
253 */
254static inline void free_user(struct user_struct *up, unsigned long flags)
255{
256 /* restore back the count */
257 atomic_inc(&up->__count);
258 spin_unlock_irqrestore(&uidhash_lock, flags);
259
260 INIT_WORK(&up->work, remove_user_sysfs_dir);
261 schedule_work(&up->work);
1da177e4
LT
262}
263
b1a8c172 264#else /* CONFIG_FAIR_USER_SCHED && CONFIG_SYSFS */
5cb350ba 265
eb41d946
KS
266int uids_sysfs_init(void) { return 0; }
267static inline int uids_user_create(struct user_struct *up) { return 0; }
5cb350ba
DG
268static inline void uids_mutex_lock(void) { }
269static inline void uids_mutex_unlock(void) { }
270
271/* IRQs are disabled and uidhash_lock is held upon function entry.
272 * IRQ state (as stored in flags) is restored and uidhash_lock released
273 * upon function exit.
274 */
275static inline void free_user(struct user_struct *up, unsigned long flags)
276{
277 uid_hash_remove(up);
278 spin_unlock_irqrestore(&uidhash_lock, flags);
279 sched_destroy_user(up);
280 key_put(up->uid_keyring);
281 key_put(up->session_keyring);
282 kmem_cache_free(uid_cachep, up);
283}
284
b1a8c172 285#endif
5cb350ba 286
1da177e4
LT
287/*
288 * Locate the user_struct for the passed UID. If found, take a ref on it. The
289 * caller must undo that ref with free_uid().
290 *
291 * If the user_struct could not be found, return NULL.
292 */
293struct user_struct *find_user(uid_t uid)
294{
295 struct user_struct *ret;
3fa97c9d 296 unsigned long flags;
acce292c 297 struct user_namespace *ns = current->nsproxy->user_ns;
1da177e4 298
3fa97c9d 299 spin_lock_irqsave(&uidhash_lock, flags);
acce292c 300 ret = uid_hash_find(uid, uidhashentry(ns, uid));
3fa97c9d 301 spin_unlock_irqrestore(&uidhash_lock, flags);
1da177e4
LT
302 return ret;
303}
304
305void free_uid(struct user_struct *up)
306{
3fa97c9d
AM
307 unsigned long flags;
308
36f57413
AM
309 if (!up)
310 return;
311
3fa97c9d 312 local_irq_save(flags);
5cb350ba
DG
313 if (atomic_dec_and_lock(&up->__count, &uidhash_lock))
314 free_user(up, flags);
315 else
36f57413 316 local_irq_restore(flags);
1da177e4
LT
317}
318
acce292c 319struct user_struct * alloc_uid(struct user_namespace *ns, uid_t uid)
1da177e4 320{
735de223 321 struct hlist_head *hashent = uidhashentry(ns, uid);
1da177e4
LT
322 struct user_struct *up;
323
eb41d946 324 /* Make uid_hash_find() + uids_user_create() + uid_hash_insert()
5cb350ba
DG
325 * atomic.
326 */
327 uids_mutex_lock();
328
3fa97c9d 329 spin_lock_irq(&uidhash_lock);
1da177e4 330 up = uid_hash_find(uid, hashent);
3fa97c9d 331 spin_unlock_irq(&uidhash_lock);
1da177e4
LT
332
333 if (!up) {
334 struct user_struct *new;
335
e94b1766 336 new = kmem_cache_alloc(uid_cachep, GFP_KERNEL);
5e8869bb
PE
337 if (!new) {
338 uids_mutex_unlock();
1da177e4 339 return NULL;
5e8869bb
PE
340 }
341
1da177e4
LT
342 new->uid = uid;
343 atomic_set(&new->__count, 1);
344 atomic_set(&new->processes, 0);
345 atomic_set(&new->files, 0);
346 atomic_set(&new->sigpending, 0);
2d9048e2 347#ifdef CONFIG_INOTIFY_USER
0eeca283
RL
348 atomic_set(&new->inotify_watches, 0);
349 atomic_set(&new->inotify_devs, 0);
350#endif
970a8645 351#ifdef CONFIG_POSIX_MQUEUE
1da177e4 352 new->mq_bytes = 0;
970a8645 353#endif
1da177e4
LT
354 new->locked_shm = 0;
355
d720024e 356 if (alloc_uid_keyring(new, current) < 0) {
1da177e4 357 kmem_cache_free(uid_cachep, new);
5e8869bb 358 uids_mutex_unlock();
1da177e4
LT
359 return NULL;
360 }
361
24e377a8
SV
362 if (sched_create_user(new) < 0) {
363 key_put(new->uid_keyring);
364 key_put(new->session_keyring);
365 kmem_cache_free(uid_cachep, new);
5e8869bb 366 uids_mutex_unlock();
24e377a8
SV
367 return NULL;
368 }
369
eb41d946 370 if (uids_user_create(new)) {
5cb350ba
DG
371 sched_destroy_user(new);
372 key_put(new->uid_keyring);
373 key_put(new->session_keyring);
374 kmem_cache_free(uid_cachep, new);
375 uids_mutex_unlock();
376 return NULL;
377 }
378
1da177e4
LT
379 /*
380 * Before adding this, check whether we raced
381 * on adding the same user already..
382 */
3fa97c9d 383 spin_lock_irq(&uidhash_lock);
1da177e4
LT
384 up = uid_hash_find(uid, hashent);
385 if (up) {
5cb350ba
DG
386 /* This case is not possible when CONFIG_FAIR_USER_SCHED
387 * is defined, since we serialize alloc_uid() using
388 * uids_mutex. Hence no need to call
389 * sched_destroy_user() or remove_user_sysfs_dir().
390 */
1da177e4
LT
391 key_put(new->uid_keyring);
392 key_put(new->session_keyring);
393 kmem_cache_free(uid_cachep, new);
394 } else {
395 uid_hash_insert(new, hashent);
396 up = new;
397 }
3fa97c9d 398 spin_unlock_irq(&uidhash_lock);
1da177e4
LT
399
400 }
5cb350ba
DG
401
402 uids_mutex_unlock();
403
1da177e4
LT
404 return up;
405}
406
407void switch_uid(struct user_struct *new_user)
408{
409 struct user_struct *old_user;
410
411 /* What if a process setreuid()'s and this brings the
412 * new uid over his NPROC rlimit? We can check this now
413 * cheaply with the new uid cache, so if it matters
414 * we should be checking for it. -DaveM
415 */
416 old_user = current->user;
417 atomic_inc(&new_user->processes);
418 atomic_dec(&old_user->processes);
419 switch_uid_keyring(new_user);
420 current->user = new_user;
24e377a8 421 sched_switch_user(current);
45c18b0b
LT
422
423 /*
424 * We need to synchronize with __sigqueue_alloc()
425 * doing a get_uid(p->user).. If that saw the old
426 * user value, we need to wait until it has exited
427 * its critical region before we can free the old
428 * structure.
429 */
430 smp_mb();
431 spin_unlock_wait(&current->sighand->siglock);
432
1da177e4
LT
433 free_uid(old_user);
434 suid_keys(current);
435}
436
28f300d2
PE
437void release_uids(struct user_namespace *ns)
438{
439 int i;
440 unsigned long flags;
441 struct hlist_head *head;
442 struct hlist_node *nd;
443
444 spin_lock_irqsave(&uidhash_lock, flags);
445 /*
446 * collapse the chains so that the user_struct-s will
447 * be still alive, but not in hashes. subsequent free_uid()
448 * will free them.
449 */
450 for (i = 0; i < UIDHASH_SZ; i++) {
451 head = ns->uidhash_table + i;
452 while (!hlist_empty(head)) {
453 nd = head->first;
454 hlist_del_init(nd);
455 }
456 }
457 spin_unlock_irqrestore(&uidhash_lock, flags);
458
459 free_uid(ns->root_user);
460}
1da177e4
LT
461
462static int __init uid_cache_init(void)
463{
464 int n;
465
466 uid_cachep = kmem_cache_create("uid_cache", sizeof(struct user_struct),
20c2df83 467 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1da177e4
LT
468
469 for(n = 0; n < UIDHASH_SZ; ++n)
735de223 470 INIT_HLIST_HEAD(init_user_ns.uidhash_table + n);
1da177e4
LT
471
472 /* Insert the root user immediately (init already runs as root) */
3fa97c9d 473 spin_lock_irq(&uidhash_lock);
acce292c 474 uid_hash_insert(&root_user, uidhashentry(&init_user_ns, 0));
3fa97c9d 475 spin_unlock_irq(&uidhash_lock);
1da177e4
LT
476
477 return 0;
478}
479
480module_init(uid_cache_init);