blob: 7132022a040cc764b1c8cdd53744e7398e05502d [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>
Cedric Le Goateracce2922007-07-15 23:40:59 -070017#include <linux/module.h>
18#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -080020struct user_namespace init_user_ns = {
21 .kref = {
22 .refcount = ATOMIC_INIT(2),
23 },
24 .root_user = &root_user,
25};
26EXPORT_SYMBOL_GPL(init_user_ns);
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/*
29 * UID task count cache, to get fast user lookup in "alloc_uid"
30 * when changing user ID's (ie setuid() and friends).
31 */
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define UIDHASH_MASK (UIDHASH_SZ - 1)
34#define __uidhashfn(uid) (((uid >> UIDHASH_BITS) + uid) & UIDHASH_MASK)
Cedric Le Goateracce2922007-07-15 23:40:59 -070035#define uidhashentry(ns, uid) ((ns)->uidhash_table + __uidhashfn((uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Christoph Lametere18b8902006-12-06 20:33:20 -080037static struct kmem_cache *uid_cachep;
Ingo Molnar4021cb22006-01-25 15:23:07 +010038
39/*
40 * The uidhash_lock is mostly taken from process context, but it is
41 * occasionally also taken from softirq/tasklet context, when
42 * task-structs get RCU-freed. Hence all locking must be softirq-safe.
Andrew Morton3fa97c92006-01-31 16:34:26 -080043 * But free_uid() is also called with local interrupts disabled, and running
44 * local_bh_enable() with local interrupts disabled is an error - we'll run
45 * softirq callbacks, and they can unconditionally enable interrupts, and
46 * the caller of free_uid() didn't expect that..
Ingo Molnar4021cb22006-01-25 15:23:07 +010047 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static DEFINE_SPINLOCK(uidhash_lock);
49
50struct user_struct root_user = {
51 .__count = ATOMIC_INIT(1),
52 .processes = ATOMIC_INIT(1),
53 .files = ATOMIC_INIT(0),
54 .sigpending = ATOMIC_INIT(0),
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .locked_shm = 0,
56#ifdef CONFIG_KEYS
57 .uid_keyring = &root_user_keyring,
58 .session_keyring = &root_session_keyring,
59#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010060#ifdef CONFIG_USER_SCHED
Ingo Molnar4cf86d72007-10-15 17:00:14 +020061 .tg = &init_task_group,
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +020062#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Dhaval Giani5cb350b2007-10-15 17:00:14 +020065/*
66 * These routines must be called with the uidhash spinlock held!
67 */
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070068static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020069{
70 hlist_add_head(&up->uidhash_node, hashent);
71}
72
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070073static void uid_hash_remove(struct user_struct *up)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020074{
75 hlist_del_init(&up->uidhash_node);
76}
77
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070078static struct user_struct *uid_hash_find(uid_t uid, struct hlist_head *hashent)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020079{
80 struct user_struct *user;
81 struct hlist_node *h;
82
83 hlist_for_each_entry(user, h, hashent, uidhash_node) {
84 if (user->uid == uid) {
85 atomic_inc(&user->__count);
86 return user;
87 }
88 }
89
90 return NULL;
91}
92
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010093#ifdef CONFIG_USER_SCHED
Dhaval Giani5cb350b2007-10-15 17:00:14 +020094
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +020095static void sched_destroy_user(struct user_struct *up)
96{
97 sched_destroy_group(up->tg);
98}
99
100static int sched_create_user(struct user_struct *up)
101{
102 int rc = 0;
103
104 up->tg = sched_create_group();
105 if (IS_ERR(up->tg))
106 rc = -ENOMEM;
107
108 return rc;
109}
110
111static void sched_switch_user(struct task_struct *p)
112{
113 sched_move_task(p);
114}
115
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100116#else /* CONFIG_USER_SCHED */
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200117
118static void sched_destroy_user(struct user_struct *up) { }
119static int sched_create_user(struct user_struct *up) { return 0; }
120static void sched_switch_user(struct task_struct *p) { }
121
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100122#endif /* CONFIG_USER_SCHED */
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200123
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100124#if defined(CONFIG_USER_SCHED) && defined(CONFIG_SYSFS)
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200125
Kay Sieverseb41d942007-11-02 13:47:53 +0100126static struct kset *uids_kset; /* represents the /sys/kernel/uids/ directory */
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200127static DEFINE_MUTEX(uids_mutex);
128
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200129static inline void uids_mutex_lock(void)
130{
131 mutex_lock(&uids_mutex);
132}
133
134static inline void uids_mutex_unlock(void)
135{
136 mutex_unlock(&uids_mutex);
137}
138
Kay Sieverseb41d942007-11-02 13:47:53 +0100139/* uid directory attributes */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100140#ifdef CONFIG_FAIR_GROUP_SCHED
Kay Sieverseb41d942007-11-02 13:47:53 +0100141static ssize_t cpu_shares_show(struct kobject *kobj,
142 struct kobj_attribute *attr,
143 char *buf)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200144{
Kay Sieverseb41d942007-11-02 13:47:53 +0100145 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200146
Kay Sieverseb41d942007-11-02 13:47:53 +0100147 return sprintf(buf, "%lu\n", sched_group_shares(up->tg));
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200148}
149
Kay Sieverseb41d942007-11-02 13:47:53 +0100150static ssize_t cpu_shares_store(struct kobject *kobj,
151 struct kobj_attribute *attr,
152 const char *buf, size_t size)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200153{
Kay Sieverseb41d942007-11-02 13:47:53 +0100154 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200155 unsigned long shares;
156 int rc;
157
Kay Sieverseb41d942007-11-02 13:47:53 +0100158 sscanf(buf, "%lu", &shares);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200159
160 rc = sched_group_set_shares(up->tg, shares);
161
162 return (rc ? rc : size);
163}
164
Kay Sieverseb41d942007-11-02 13:47:53 +0100165static struct kobj_attribute cpu_share_attr =
166 __ATTR(cpu_share, 0644, cpu_shares_show, cpu_shares_store);
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100167#endif
Kay Sieverseb41d942007-11-02 13:47:53 +0100168
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100169#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100170static ssize_t cpu_rt_runtime_show(struct kobject *kobj,
171 struct kobj_attribute *attr,
172 char *buf)
173{
174 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
175
176 return sprintf(buf, "%lu\n", sched_group_rt_runtime(up->tg));
177}
178
179static ssize_t cpu_rt_runtime_store(struct kobject *kobj,
180 struct kobj_attribute *attr,
181 const char *buf, size_t size)
182{
183 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
184 unsigned long rt_runtime;
185 int rc;
186
187 sscanf(buf, "%lu", &rt_runtime);
188
189 rc = sched_group_set_rt_runtime(up->tg, rt_runtime);
190
191 return (rc ? rc : size);
192}
193
194static struct kobj_attribute cpu_rt_runtime_attr =
195 __ATTR(cpu_rt_runtime, 0644, cpu_rt_runtime_show, cpu_rt_runtime_store);
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100196#endif
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100197
Kay Sieverseb41d942007-11-02 13:47:53 +0100198/* default attributes per uid directory */
199static struct attribute *uids_attributes[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100200#ifdef CONFIG_FAIR_GROUP_SCHED
Kay Sieverseb41d942007-11-02 13:47:53 +0100201 &cpu_share_attr.attr,
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100202#endif
203#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100204 &cpu_rt_runtime_attr.attr,
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100205#endif
Kay Sieverseb41d942007-11-02 13:47:53 +0100206 NULL
207};
208
209/* the lifetime of user_struct is not managed by the core (now) */
210static void uids_release(struct kobject *kobj)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200211{
Kay Sieverseb41d942007-11-02 13:47:53 +0100212 return;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200213}
214
Kay Sieverseb41d942007-11-02 13:47:53 +0100215static struct kobj_type uids_ktype = {
216 .sysfs_ops = &kobj_sysfs_ops,
217 .default_attrs = uids_attributes,
218 .release = uids_release,
219};
220
221/* create /sys/kernel/uids/<uid>/cpu_share file for this user */
222static int uids_user_create(struct user_struct *up)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200223{
Kay Sieverseb41d942007-11-02 13:47:53 +0100224 struct kobject *kobj = &up->kobj;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200225 int error;
226
Kay Sieverseb41d942007-11-02 13:47:53 +0100227 memset(kobj, 0, sizeof(struct kobject));
Kay Sieverseb41d942007-11-02 13:47:53 +0100228 kobj->kset = uids_kset;
Greg Kroah-Hartmancf151262007-12-17 23:05:35 -0700229 error = kobject_init_and_add(kobj, &uids_ktype, NULL, "%d", up->uid);
230 if (error) {
231 kobject_put(kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200232 goto done;
Greg Kroah-Hartmancf151262007-12-17 23:05:35 -0700233 }
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200234
Srivatsa Vaddagirifb7dde32007-10-15 17:00:18 +0200235 kobject_uevent(kobj, KOBJ_ADD);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200236done:
237 return error;
238}
239
Kay Sieverseb41d942007-11-02 13:47:53 +0100240/* create these entries in sysfs:
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200241 * "/sys/kernel/uids" directory
242 * "/sys/kernel/uids/0" directory (for root user)
243 * "/sys/kernel/uids/0/cpu_share" file (for root user)
244 */
Kay Sieverseb41d942007-11-02 13:47:53 +0100245int __init uids_sysfs_init(void)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200246{
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -0800247 uids_kset = kset_create_and_add("uids", NULL, kernel_kobj);
Kay Sieverseb41d942007-11-02 13:47:53 +0100248 if (!uids_kset)
249 return -ENOMEM;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200250
Kay Sieverseb41d942007-11-02 13:47:53 +0100251 return uids_user_create(&root_user);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200252}
253
254/* work function to remove sysfs directory for a user and free up
255 * corresponding structures.
256 */
257static void remove_user_sysfs_dir(struct work_struct *w)
258{
259 struct user_struct *up = container_of(w, struct user_struct, work);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200260 unsigned long flags;
261 int remove_user = 0;
262
263 /* Make uid_hash_remove() + sysfs_remove_file() + kobject_del()
264 * atomic.
265 */
266 uids_mutex_lock();
267
268 local_irq_save(flags);
269
270 if (atomic_dec_and_lock(&up->__count, &uidhash_lock)) {
271 uid_hash_remove(up);
272 remove_user = 1;
273 spin_unlock_irqrestore(&uidhash_lock, flags);
274 } else {
275 local_irq_restore(flags);
276 }
277
278 if (!remove_user)
279 goto done;
280
Kay Sieverseb41d942007-11-02 13:47:53 +0100281 kobject_uevent(&up->kobj, KOBJ_REMOVE);
282 kobject_del(&up->kobj);
283 kobject_put(&up->kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200284
285 sched_destroy_user(up);
286 key_put(up->uid_keyring);
287 key_put(up->session_keyring);
288 kmem_cache_free(uid_cachep, up);
289
290done:
291 uids_mutex_unlock();
292}
293
294/* IRQs are disabled and uidhash_lock is held upon function entry.
295 * IRQ state (as stored in flags) is restored and uidhash_lock released
296 * upon function exit.
297 */
298static inline void free_user(struct user_struct *up, unsigned long flags)
299{
300 /* restore back the count */
301 atomic_inc(&up->__count);
302 spin_unlock_irqrestore(&uidhash_lock, flags);
303
304 INIT_WORK(&up->work, remove_user_sysfs_dir);
305 schedule_work(&up->work);
306}
307
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100308#else /* CONFIG_USER_SCHED && CONFIG_SYSFS */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200309
Kay Sieverseb41d942007-11-02 13:47:53 +0100310int uids_sysfs_init(void) { return 0; }
311static inline int uids_user_create(struct user_struct *up) { return 0; }
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200312static inline void uids_mutex_lock(void) { }
313static inline void uids_mutex_unlock(void) { }
314
315/* IRQs are disabled and uidhash_lock is held upon function entry.
316 * IRQ state (as stored in flags) is restored and uidhash_lock released
317 * upon function exit.
318 */
319static inline void free_user(struct user_struct *up, unsigned long flags)
320{
321 uid_hash_remove(up);
322 spin_unlock_irqrestore(&uidhash_lock, flags);
323 sched_destroy_user(up);
324 key_put(up->uid_keyring);
325 key_put(up->session_keyring);
326 kmem_cache_free(uid_cachep, up);
327}
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200328
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200329#endif
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * Locate the user_struct for the passed UID. If found, take a ref on it. The
333 * caller must undo that ref with free_uid().
334 *
335 * If the user_struct could not be found, return NULL.
336 */
337struct user_struct *find_user(uid_t uid)
338{
339 struct user_struct *ret;
Andrew Morton3fa97c92006-01-31 16:34:26 -0800340 unsigned long flags;
Cedric Le Goateracce2922007-07-15 23:40:59 -0700341 struct user_namespace *ns = current->nsproxy->user_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Andrew Morton3fa97c92006-01-31 16:34:26 -0800343 spin_lock_irqsave(&uidhash_lock, flags);
Cedric Le Goateracce2922007-07-15 23:40:59 -0700344 ret = uid_hash_find(uid, uidhashentry(ns, uid));
Andrew Morton3fa97c92006-01-31 16:34:26 -0800345 spin_unlock_irqrestore(&uidhash_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return ret;
347}
348
349void free_uid(struct user_struct *up)
350{
Andrew Morton3fa97c92006-01-31 16:34:26 -0800351 unsigned long flags;
352
Andrew Morton36f57412006-03-24 03:15:47 -0800353 if (!up)
354 return;
355
Andrew Morton3fa97c92006-01-31 16:34:26 -0800356 local_irq_save(flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200357 if (atomic_dec_and_lock(&up->__count, &uidhash_lock))
358 free_user(up, flags);
359 else
Andrew Morton36f57412006-03-24 03:15:47 -0800360 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Cedric Le Goateracce2922007-07-15 23:40:59 -0700363struct user_struct * alloc_uid(struct user_namespace *ns, uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Pavel Emelyanov735de222007-09-18 22:46:44 -0700365 struct hlist_head *hashent = uidhashentry(ns, uid);
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100366 struct user_struct *up, *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Kay Sieverseb41d942007-11-02 13:47:53 +0100368 /* Make uid_hash_find() + uids_user_create() + uid_hash_insert()
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200369 * atomic.
370 */
371 uids_mutex_lock();
372
Andrew Morton3fa97c92006-01-31 16:34:26 -0800373 spin_lock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 up = uid_hash_find(uid, hashent);
Andrew Morton3fa97c92006-01-31 16:34:26 -0800375 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (!up) {
Christoph Lametere94b1762006-12-06 20:33:17 -0800378 new = kmem_cache_alloc(uid_cachep, GFP_KERNEL);
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100379 if (!new)
380 goto out_unlock;
Pavel Emelyanov5e8869b2007-11-26 21:21:49 +0100381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 new->uid = uid;
383 atomic_set(&new->__count, 1);
384 atomic_set(&new->processes, 0);
385 atomic_set(&new->files, 0);
386 atomic_set(&new->sigpending, 0);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700387#ifdef CONFIG_INOTIFY_USER
Robert Love0eeca282005-07-12 17:06:03 -0400388 atomic_set(&new->inotify_watches, 0);
389 atomic_set(&new->inotify_devs, 0);
390#endif
Alexey Dobriyan970a8642007-10-16 23:30:09 -0700391#ifdef CONFIG_POSIX_MQUEUE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 new->mq_bytes = 0;
Alexey Dobriyan970a8642007-10-16 23:30:09 -0700393#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 new->locked_shm = 0;
395
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100396 if (alloc_uid_keyring(new, current) < 0)
397 goto out_free_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100399 if (sched_create_user(new) < 0)
400 goto out_put_keys;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200401
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100402 if (uids_user_create(new))
403 goto out_destoy_sched;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /*
406 * Before adding this, check whether we raced
407 * on adding the same user already..
408 */
Andrew Morton3fa97c92006-01-31 16:34:26 -0800409 spin_lock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 up = uid_hash_find(uid, hashent);
411 if (up) {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100412 /* This case is not possible when CONFIG_USER_SCHED
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200413 * is defined, since we serialize alloc_uid() using
414 * uids_mutex. Hence no need to call
415 * sched_destroy_user() or remove_user_sysfs_dir().
416 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 key_put(new->uid_keyring);
418 key_put(new->session_keyring);
419 kmem_cache_free(uid_cachep, new);
420 } else {
421 uid_hash_insert(new, hashent);
422 up = new;
423 }
Andrew Morton3fa97c92006-01-31 16:34:26 -0800424 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 }
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200427
428 uids_mutex_unlock();
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return up;
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100431
432out_destoy_sched:
433 sched_destroy_user(new);
434out_put_keys:
435 key_put(new->uid_keyring);
436 key_put(new->session_keyring);
437out_free_user:
438 kmem_cache_free(uid_cachep, new);
439out_unlock:
440 uids_mutex_unlock();
441 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444void switch_uid(struct user_struct *new_user)
445{
446 struct user_struct *old_user;
447
448 /* What if a process setreuid()'s and this brings the
449 * new uid over his NPROC rlimit? We can check this now
450 * cheaply with the new uid cache, so if it matters
451 * we should be checking for it. -DaveM
452 */
453 old_user = current->user;
454 atomic_inc(&new_user->processes);
455 atomic_dec(&old_user->processes);
456 switch_uid_keyring(new_user);
457 current->user = new_user;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200458 sched_switch_user(current);
Linus Torvalds45c18b02006-11-04 10:06:02 -0800459
460 /*
461 * We need to synchronize with __sigqueue_alloc()
462 * doing a get_uid(p->user).. If that saw the old
463 * user value, we need to wait until it has exited
464 * its critical region before we can free the old
465 * structure.
466 */
467 smp_mb();
468 spin_unlock_wait(&current->sighand->siglock);
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 free_uid(old_user);
471 suid_keys(current);
472}
473
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -0800474#ifdef CONFIG_USER_NS
Pavel Emelyanov28f300d2007-09-18 22:46:45 -0700475void release_uids(struct user_namespace *ns)
476{
477 int i;
478 unsigned long flags;
479 struct hlist_head *head;
480 struct hlist_node *nd;
481
482 spin_lock_irqsave(&uidhash_lock, flags);
483 /*
484 * collapse the chains so that the user_struct-s will
485 * be still alive, but not in hashes. subsequent free_uid()
486 * will free them.
487 */
488 for (i = 0; i < UIDHASH_SZ; i++) {
489 head = ns->uidhash_table + i;
490 while (!hlist_empty(head)) {
491 nd = head->first;
492 hlist_del_init(nd);
493 }
494 }
495 spin_unlock_irqrestore(&uidhash_lock, flags);
496
497 free_uid(ns->root_user);
498}
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -0800499#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501static int __init uid_cache_init(void)
502{
503 int n;
504
505 uid_cachep = kmem_cache_create("uid_cache", sizeof(struct user_struct),
Paul Mundt20c2df82007-07-20 10:11:58 +0900506 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 for(n = 0; n < UIDHASH_SZ; ++n)
Pavel Emelyanov735de222007-09-18 22:46:44 -0700509 INIT_HLIST_HEAD(init_user_ns.uidhash_table + n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /* Insert the root user immediately (init already runs as root) */
Andrew Morton3fa97c92006-01-31 16:34:26 -0800512 spin_lock_irq(&uidhash_lock);
Cedric Le Goateracce2922007-07-15 23:40:59 -0700513 uid_hash_insert(&root_user, uidhashentry(&init_user_ns, 0));
Andrew Morton3fa97c92006-01-31 16:34:26 -0800514 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 return 0;
517}
518
519module_init(uid_cache_init);