blob: 6608a3d8ca616712726911da18d35f6347e5ba45 [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>
David Howellsd84f4f92008-11-14 10:39:23 +110019#include "cred-internals.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -080021struct user_namespace init_user_ns = {
22 .kref = {
Serge Hallyn18b6e042008-10-15 16:38:45 -050023 .refcount = ATOMIC_INIT(1),
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -080024 },
Serge Hallyn18b6e042008-10-15 16:38:45 -050025 .creator = &root_user,
Pavel Emelyanovaee16ce2008-02-08 04:18:23 -080026};
27EXPORT_SYMBOL_GPL(init_user_ns);
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
30 * UID task count cache, to get fast user lookup in "alloc_uid"
31 * when changing user ID's (ie setuid() and friends).
32 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define UIDHASH_MASK (UIDHASH_SZ - 1)
35#define __uidhashfn(uid) (((uid >> UIDHASH_BITS) + uid) & UIDHASH_MASK)
Cedric Le Goateracce2922007-07-15 23:40:59 -070036#define uidhashentry(ns, uid) ((ns)->uidhash_table + __uidhashfn((uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Christoph Lametere18b8902006-12-06 20:33:20 -080038static struct kmem_cache *uid_cachep;
Ingo Molnar4021cb22006-01-25 15:23:07 +010039
40/*
41 * The uidhash_lock is mostly taken from process context, but it is
42 * occasionally also taken from softirq/tasklet context, when
43 * task-structs get RCU-freed. Hence all locking must be softirq-safe.
Andrew Morton3fa97c92006-01-31 16:34:26 -080044 * But free_uid() is also called with local interrupts disabled, and running
45 * local_bh_enable() with local interrupts disabled is an error - we'll run
46 * softirq callbacks, and they can unconditionally enable interrupts, and
47 * the caller of free_uid() didn't expect that..
Ingo Molnar4021cb22006-01-25 15:23:07 +010048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static DEFINE_SPINLOCK(uidhash_lock);
50
Serge Hallyn18b6e042008-10-15 16:38:45 -050051/* root_user.__count is 2, 1 for init task cred, 1 for init_user_ns->creator */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct user_struct root_user = {
Serge Hallyn18b6e042008-10-15 16:38:45 -050053 .__count = ATOMIC_INIT(2),
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .processes = ATOMIC_INIT(1),
55 .files = ATOMIC_INIT(0),
56 .sigpending = ATOMIC_INIT(0),
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .locked_shm = 0,
Serge Hallyn18b6e042008-10-15 16:38:45 -050058 .user_ns = &init_user_ns,
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010059#ifdef CONFIG_USER_SCHED
Ingo Molnar4cf86d72007-10-15 17:00:14 +020060 .tg = &init_task_group,
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +020061#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Dhaval Giani5cb350b2007-10-15 17:00:14 +020064/*
65 * These routines must be called with the uidhash spinlock held!
66 */
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070067static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020068{
69 hlist_add_head(&up->uidhash_node, hashent);
70}
71
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070072static void uid_hash_remove(struct user_struct *up)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020073{
74 hlist_del_init(&up->uidhash_node);
75}
76
Alexey Dobriyan40aeb402007-10-16 23:30:09 -070077static struct user_struct *uid_hash_find(uid_t uid, struct hlist_head *hashent)
Dhaval Giani5cb350b2007-10-15 17:00:14 +020078{
79 struct user_struct *user;
80 struct hlist_node *h;
81
82 hlist_for_each_entry(user, h, hashent, uidhash_node) {
83 if (user->uid == uid) {
84 atomic_inc(&user->__count);
85 return user;
86 }
87 }
88
89 return NULL;
90}
91
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010092#ifdef CONFIG_USER_SCHED
Dhaval Giani5cb350b2007-10-15 17:00:14 +020093
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +020094static void sched_destroy_user(struct user_struct *up)
95{
96 sched_destroy_group(up->tg);
97}
98
99static int sched_create_user(struct user_struct *up)
100{
101 int rc = 0;
102
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200103 up->tg = sched_create_group(&root_task_group);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200104 if (IS_ERR(up->tg))
105 rc = -ENOMEM;
106
107 return rc;
108}
109
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100110#else /* CONFIG_USER_SCHED */
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200111
112static void sched_destroy_user(struct user_struct *up) { }
113static int sched_create_user(struct user_struct *up) { return 0; }
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200114
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100115#endif /* CONFIG_USER_SCHED */
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200116
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100117#if defined(CONFIG_USER_SCHED) && defined(CONFIG_SYSFS)
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200118
Kay Sieverseb41d942007-11-02 13:47:53 +0100119static struct kset *uids_kset; /* represents the /sys/kernel/uids/ directory */
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200120static DEFINE_MUTEX(uids_mutex);
121
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200122static inline void uids_mutex_lock(void)
123{
124 mutex_lock(&uids_mutex);
125}
126
127static inline void uids_mutex_unlock(void)
128{
129 mutex_unlock(&uids_mutex);
130}
131
Kay Sieverseb41d942007-11-02 13:47:53 +0100132/* uid directory attributes */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100133#ifdef CONFIG_FAIR_GROUP_SCHED
Kay Sieverseb41d942007-11-02 13:47:53 +0100134static ssize_t cpu_shares_show(struct kobject *kobj,
135 struct kobj_attribute *attr,
136 char *buf)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200137{
Kay Sieverseb41d942007-11-02 13:47:53 +0100138 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200139
Kay Sieverseb41d942007-11-02 13:47:53 +0100140 return sprintf(buf, "%lu\n", sched_group_shares(up->tg));
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200141}
142
Kay Sieverseb41d942007-11-02 13:47:53 +0100143static ssize_t cpu_shares_store(struct kobject *kobj,
144 struct kobj_attribute *attr,
145 const char *buf, size_t size)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200146{
Kay Sieverseb41d942007-11-02 13:47:53 +0100147 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200148 unsigned long shares;
149 int rc;
150
Kay Sieverseb41d942007-11-02 13:47:53 +0100151 sscanf(buf, "%lu", &shares);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200152
153 rc = sched_group_set_shares(up->tg, shares);
154
155 return (rc ? rc : size);
156}
157
Kay Sieverseb41d942007-11-02 13:47:53 +0100158static struct kobj_attribute cpu_share_attr =
159 __ATTR(cpu_share, 0644, cpu_shares_show, cpu_shares_store);
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100160#endif
Kay Sieverseb41d942007-11-02 13:47:53 +0100161
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100162#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100163static ssize_t cpu_rt_runtime_show(struct kobject *kobj,
164 struct kobj_attribute *attr,
165 char *buf)
166{
167 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
168
Peter Zijlstraaf4491e2008-08-19 12:33:02 +0200169 return sprintf(buf, "%ld\n", sched_group_rt_runtime(up->tg));
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100170}
171
172static ssize_t cpu_rt_runtime_store(struct kobject *kobj,
173 struct kobj_attribute *attr,
174 const char *buf, size_t size)
175{
176 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
177 unsigned long rt_runtime;
178 int rc;
179
Peter Zijlstraaf4491e2008-08-19 12:33:02 +0200180 sscanf(buf, "%ld", &rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100181
182 rc = sched_group_set_rt_runtime(up->tg, rt_runtime);
183
184 return (rc ? rc : size);
185}
186
187static struct kobj_attribute cpu_rt_runtime_attr =
188 __ATTR(cpu_rt_runtime, 0644, cpu_rt_runtime_show, cpu_rt_runtime_store);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200189
190static ssize_t cpu_rt_period_show(struct kobject *kobj,
191 struct kobj_attribute *attr,
192 char *buf)
193{
194 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
195
196 return sprintf(buf, "%lu\n", sched_group_rt_period(up->tg));
197}
198
199static ssize_t cpu_rt_period_store(struct kobject *kobj,
200 struct kobj_attribute *attr,
201 const char *buf, size_t size)
202{
203 struct user_struct *up = container_of(kobj, struct user_struct, kobj);
204 unsigned long rt_period;
205 int rc;
206
207 sscanf(buf, "%lu", &rt_period);
208
209 rc = sched_group_set_rt_period(up->tg, rt_period);
210
211 return (rc ? rc : size);
212}
213
214static struct kobj_attribute cpu_rt_period_attr =
215 __ATTR(cpu_rt_period, 0644, cpu_rt_period_show, cpu_rt_period_store);
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100216#endif
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100217
Kay Sieverseb41d942007-11-02 13:47:53 +0100218/* default attributes per uid directory */
219static struct attribute *uids_attributes[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100220#ifdef CONFIG_FAIR_GROUP_SCHED
Kay Sieverseb41d942007-11-02 13:47:53 +0100221 &cpu_share_attr.attr,
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100222#endif
223#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100224 &cpu_rt_runtime_attr.attr,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200225 &cpu_rt_period_attr.attr,
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100226#endif
Kay Sieverseb41d942007-11-02 13:47:53 +0100227 NULL
228};
229
230/* the lifetime of user_struct is not managed by the core (now) */
231static void uids_release(struct kobject *kobj)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200232{
Kay Sieverseb41d942007-11-02 13:47:53 +0100233 return;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200234}
235
Kay Sieverseb41d942007-11-02 13:47:53 +0100236static struct kobj_type uids_ktype = {
237 .sysfs_ops = &kobj_sysfs_ops,
238 .default_attrs = uids_attributes,
239 .release = uids_release,
240};
241
Serge E. Hallyn94d6a5f2008-12-08 15:52:21 -0600242/*
243 * Create /sys/kernel/uids/<uid>/cpu_share file for this user
244 * We do not create this file for users in a user namespace (until
245 * sysfs tagging is implemented).
246 *
247 * See Documentation/scheduler/sched-design-CFS.txt for ramifications.
248 */
Kay Sieverseb41d942007-11-02 13:47:53 +0100249static int uids_user_create(struct user_struct *up)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200250{
Kay Sieverseb41d942007-11-02 13:47:53 +0100251 struct kobject *kobj = &up->kobj;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200252 int error;
253
Kay Sieverseb41d942007-11-02 13:47:53 +0100254 memset(kobj, 0, sizeof(struct kobject));
Serge E. Hallync37bbb02008-12-03 13:17:06 -0600255 if (up->user_ns != &init_user_ns)
256 return 0;
Kay Sieverseb41d942007-11-02 13:47:53 +0100257 kobj->kset = uids_kset;
Greg Kroah-Hartmancf151262007-12-17 23:05:35 -0700258 error = kobject_init_and_add(kobj, &uids_ktype, NULL, "%d", up->uid);
259 if (error) {
260 kobject_put(kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200261 goto done;
Greg Kroah-Hartmancf151262007-12-17 23:05:35 -0700262 }
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200263
Srivatsa Vaddagirifb7dde32007-10-15 17:00:18 +0200264 kobject_uevent(kobj, KOBJ_ADD);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200265done:
266 return error;
267}
268
Kay Sieverseb41d942007-11-02 13:47:53 +0100269/* create these entries in sysfs:
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200270 * "/sys/kernel/uids" directory
271 * "/sys/kernel/uids/0" directory (for root user)
272 * "/sys/kernel/uids/0/cpu_share" file (for root user)
273 */
Kay Sieverseb41d942007-11-02 13:47:53 +0100274int __init uids_sysfs_init(void)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200275{
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -0800276 uids_kset = kset_create_and_add("uids", NULL, kernel_kobj);
Kay Sieverseb41d942007-11-02 13:47:53 +0100277 if (!uids_kset)
278 return -ENOMEM;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200279
Kay Sieverseb41d942007-11-02 13:47:53 +0100280 return uids_user_create(&root_user);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200281}
282
283/* work function to remove sysfs directory for a user and free up
284 * corresponding structures.
285 */
286static void remove_user_sysfs_dir(struct work_struct *w)
287{
288 struct user_struct *up = container_of(w, struct user_struct, work);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200289 unsigned long flags;
290 int remove_user = 0;
291
Serge E. Hallync37bbb02008-12-03 13:17:06 -0600292 if (up->user_ns != &init_user_ns)
293 return;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200294 /* Make uid_hash_remove() + sysfs_remove_file() + kobject_del()
295 * atomic.
296 */
297 uids_mutex_lock();
298
299 local_irq_save(flags);
300
301 if (atomic_dec_and_lock(&up->__count, &uidhash_lock)) {
302 uid_hash_remove(up);
303 remove_user = 1;
304 spin_unlock_irqrestore(&uidhash_lock, flags);
305 } else {
306 local_irq_restore(flags);
307 }
308
309 if (!remove_user)
310 goto done;
311
Kay Sieverseb41d942007-11-02 13:47:53 +0100312 kobject_uevent(&up->kobj, KOBJ_REMOVE);
313 kobject_del(&up->kobj);
314 kobject_put(&up->kobj);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200315
316 sched_destroy_user(up);
317 key_put(up->uid_keyring);
318 key_put(up->session_keyring);
319 kmem_cache_free(uid_cachep, up);
320
321done:
322 uids_mutex_unlock();
323}
324
325/* IRQs are disabled and uidhash_lock is held upon function entry.
326 * IRQ state (as stored in flags) is restored and uidhash_lock released
327 * upon function exit.
328 */
Serge Hallyn18b6e042008-10-15 16:38:45 -0500329static void free_user(struct user_struct *up, unsigned long flags)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200330{
331 /* restore back the count */
332 atomic_inc(&up->__count);
333 spin_unlock_irqrestore(&uidhash_lock, flags);
334
Serge Hallyn18b6e042008-10-15 16:38:45 -0500335 put_user_ns(up->user_ns);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200336 INIT_WORK(&up->work, remove_user_sysfs_dir);
337 schedule_work(&up->work);
338}
339
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100340#else /* CONFIG_USER_SCHED && CONFIG_SYSFS */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200341
Kay Sieverseb41d942007-11-02 13:47:53 +0100342int uids_sysfs_init(void) { return 0; }
343static inline int uids_user_create(struct user_struct *up) { return 0; }
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200344static inline void uids_mutex_lock(void) { }
345static inline void uids_mutex_unlock(void) { }
346
347/* IRQs are disabled and uidhash_lock is held upon function entry.
348 * IRQ state (as stored in flags) is restored and uidhash_lock released
349 * upon function exit.
350 */
Serge Hallyn18b6e042008-10-15 16:38:45 -0500351static void free_user(struct user_struct *up, unsigned long flags)
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200352{
353 uid_hash_remove(up);
354 spin_unlock_irqrestore(&uidhash_lock, flags);
355 sched_destroy_user(up);
356 key_put(up->uid_keyring);
357 key_put(up->session_keyring);
Serge Hallyn18b6e042008-10-15 16:38:45 -0500358 put_user_ns(up->user_ns);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200359 kmem_cache_free(uid_cachep, up);
360}
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200361
Dhaval Gianib1a8c172007-10-17 16:55:11 +0200362#endif
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * Locate the user_struct for the passed UID. If found, take a ref on it. The
366 * caller must undo that ref with free_uid().
367 *
368 * If the user_struct could not be found, return NULL.
369 */
370struct user_struct *find_user(uid_t uid)
371{
372 struct user_struct *ret;
Andrew Morton3fa97c92006-01-31 16:34:26 -0800373 unsigned long flags;
Serge Hallyn6ded6ab2008-11-24 16:24:10 -0500374 struct user_namespace *ns = current_user_ns();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Andrew Morton3fa97c92006-01-31 16:34:26 -0800376 spin_lock_irqsave(&uidhash_lock, flags);
Cedric Le Goateracce2922007-07-15 23:40:59 -0700377 ret = uid_hash_find(uid, uidhashentry(ns, uid));
Andrew Morton3fa97c92006-01-31 16:34:26 -0800378 spin_unlock_irqrestore(&uidhash_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return ret;
380}
381
382void free_uid(struct user_struct *up)
383{
Andrew Morton3fa97c92006-01-31 16:34:26 -0800384 unsigned long flags;
385
Andrew Morton36f57412006-03-24 03:15:47 -0800386 if (!up)
387 return;
388
Andrew Morton3fa97c92006-01-31 16:34:26 -0800389 local_irq_save(flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200390 if (atomic_dec_and_lock(&up->__count, &uidhash_lock))
391 free_user(up, flags);
392 else
Andrew Morton36f57412006-03-24 03:15:47 -0800393 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Andrew Morton354a1f42008-04-30 00:54:54 -0700396struct user_struct *alloc_uid(struct user_namespace *ns, uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Pavel Emelyanov735de222007-09-18 22:46:44 -0700398 struct hlist_head *hashent = uidhashentry(ns, uid);
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100399 struct user_struct *up, *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Kay Sieverseb41d942007-11-02 13:47:53 +0100401 /* Make uid_hash_find() + uids_user_create() + uid_hash_insert()
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200402 * atomic.
403 */
404 uids_mutex_lock();
405
Andrew Morton3fa97c92006-01-31 16:34:26 -0800406 spin_lock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 up = uid_hash_find(uid, hashent);
Andrew Morton3fa97c92006-01-31 16:34:26 -0800408 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (!up) {
Andrew Morton354a1f42008-04-30 00:54:54 -0700411 new = kmem_cache_zalloc(uid_cachep, GFP_KERNEL);
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100412 if (!new)
413 goto out_unlock;
Pavel Emelyanov5e8869b2007-11-26 21:21:49 +0100414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 new->uid = uid;
416 atomic_set(&new->__count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100418 if (sched_create_user(new) < 0)
David Howells69664cf2008-04-29 01:01:31 -0700419 goto out_free_user;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200420
Serge Hallyn18b6e042008-10-15 16:38:45 -0500421 new->user_ns = get_user_ns(ns);
422
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100423 if (uids_user_create(new))
424 goto out_destoy_sched;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /*
427 * Before adding this, check whether we raced
428 * on adding the same user already..
429 */
Andrew Morton3fa97c92006-01-31 16:34:26 -0800430 spin_lock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 up = uid_hash_find(uid, hashent);
432 if (up) {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100433 /* This case is not possible when CONFIG_USER_SCHED
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200434 * is defined, since we serialize alloc_uid() using
435 * uids_mutex. Hence no need to call
436 * sched_destroy_user() or remove_user_sysfs_dir().
437 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 key_put(new->uid_keyring);
439 key_put(new->session_keyring);
440 kmem_cache_free(uid_cachep, new);
441 } else {
442 uid_hash_insert(new, hashent);
443 up = new;
444 }
Andrew Morton3fa97c92006-01-31 16:34:26 -0800445 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200447
448 uids_mutex_unlock();
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return up;
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100451
452out_destoy_sched:
453 sched_destroy_user(new);
Serge Hallyn18b6e042008-10-15 16:38:45 -0500454 put_user_ns(new->user_ns);
Pavel Emelyanov8eb703e2008-01-25 21:08:26 +0100455out_free_user:
456 kmem_cache_free(uid_cachep, new);
457out_unlock:
458 uids_mutex_unlock();
459 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462static int __init uid_cache_init(void)
463{
464 int n;
465
466 uid_cachep = kmem_cache_create("uid_cache", sizeof(struct user_struct),
Paul Mundt20c2df82007-07-20 10:11:58 +0900467 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 for(n = 0; n < UIDHASH_SZ; ++n)
Pavel Emelyanov735de222007-09-18 22:46:44 -0700470 INIT_HLIST_HEAD(init_user_ns.uidhash_table + n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 /* Insert the root user immediately (init already runs as root) */
Andrew Morton3fa97c92006-01-31 16:34:26 -0800473 spin_lock_irq(&uidhash_lock);
Cedric Le Goateracce2922007-07-15 23:40:59 -0700474 uid_hash_insert(&root_user, uidhashentry(&init_user_ns, 0));
Andrew Morton3fa97c92006-01-31 16:34:26 -0800475 spin_unlock_irq(&uidhash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 return 0;
478}
479
480module_init(uid_cache_init);