blob: 3762d5b1ce64f130a2248a9519ad9084c93bf4f3 [file] [log] [blame]
David Howells76181c12007-10-16 23:29:46 -07001/* Basic authentication token and access key management
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells69664cf2008-04-29 01:01:31 -07003 * Copyright (C) 2004-2008 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
Randy Dunlapa7807a32006-06-27 02:53:54 -070014#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sched.h>
16#include <linux/slab.h>
David Howells29db9192005-10-30 15:02:44 -080017#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/workqueue.h>
Michael LeMaye51f6d32006-06-26 00:24:54 -070019#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/err.h>
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -060021#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "internal.h"
23
Christoph Lametere18b8902006-12-06 20:33:20 -080024static struct kmem_cache *key_jar;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025struct rb_root key_serial_tree; /* tree of keys indexed by serial */
26DEFINE_SPINLOCK(key_serial_lock);
27
28struct rb_root key_user_tree; /* tree of quota records indexed by UID */
29DEFINE_SPINLOCK(key_user_lock);
30
David Howells0b77f5b2008-04-29 01:01:32 -070031unsigned int key_quota_root_maxkeys = 200; /* root's key count quota */
32unsigned int key_quota_root_maxbytes = 20000; /* root's key space quota */
33unsigned int key_quota_maxkeys = 200; /* general key count quota */
34unsigned int key_quota_maxbytes = 20000; /* general key space quota */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static LIST_HEAD(key_types_list);
37static DECLARE_RWSEM(key_types_sem);
38
David Howells65f27f32006-11-22 14:55:48 +000039static void key_cleanup(struct work_struct *work);
40static DECLARE_WORK(key_cleanup_task, key_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* we serialise key instantiation and link */
David Howells76181c12007-10-16 23:29:46 -070043DEFINE_MUTEX(key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* any key who's type gets unegistered will be re-typed to this */
Adrian Bunk1ae8f402006-01-06 00:11:25 -080046static struct key_type key_type_dead = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .name = "dead",
48};
49
50#ifdef KEY_DEBUGGING
51void __key_check(const struct key *key)
52{
53 printk("__key_check: key %p {%08x} should be {%08x}\n",
54 key, key->magic, KEY_DEBUG_MAGIC);
55 BUG();
56}
57#endif
58
59/*****************************************************************************/
60/*
61 * get the key quota record for a user, allocating a new record if one doesn't
62 * already exist
63 */
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -060064struct key_user *key_user_lookup(uid_t uid, struct user_namespace *user_ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 struct key_user *candidate = NULL, *user;
67 struct rb_node *parent = NULL;
68 struct rb_node **p;
69
70 try_again:
71 p = &key_user_tree.rb_node;
72 spin_lock(&key_user_lock);
73
74 /* search the tree for a user record with a matching UID */
75 while (*p) {
76 parent = *p;
77 user = rb_entry(parent, struct key_user, node);
78
79 if (uid < user->uid)
80 p = &(*p)->rb_left;
81 else if (uid > user->uid)
82 p = &(*p)->rb_right;
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -060083 else if (user_ns < user->user_ns)
84 p = &(*p)->rb_left;
85 else if (user_ns > user->user_ns)
86 p = &(*p)->rb_right;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 else
88 goto found;
89 }
90
91 /* if we get here, we failed to find a match in the tree */
92 if (!candidate) {
93 /* allocate a candidate user record if we don't already have
94 * one */
95 spin_unlock(&key_user_lock);
96
97 user = NULL;
98 candidate = kmalloc(sizeof(struct key_user), GFP_KERNEL);
99 if (unlikely(!candidate))
100 goto out;
101
102 /* the allocation may have scheduled, so we need to repeat the
103 * search lest someone else added the record whilst we were
104 * asleep */
105 goto try_again;
106 }
107
108 /* if we get here, then the user record still hadn't appeared on the
109 * second pass - so we use the candidate record */
110 atomic_set(&candidate->usage, 1);
111 atomic_set(&candidate->nkeys, 0);
112 atomic_set(&candidate->nikeys, 0);
113 candidate->uid = uid;
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -0600114 candidate->user_ns = get_user_ns(user_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 candidate->qnkeys = 0;
116 candidate->qnbytes = 0;
117 spin_lock_init(&candidate->lock);
David Howells76181c12007-10-16 23:29:46 -0700118 mutex_init(&candidate->cons_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 rb_link_node(&candidate->node, parent, p);
121 rb_insert_color(&candidate->node, &key_user_tree);
122 spin_unlock(&key_user_lock);
123 user = candidate;
124 goto out;
125
126 /* okay - we found a user record for this UID */
127 found:
128 atomic_inc(&user->usage);
129 spin_unlock(&key_user_lock);
Jesper Juhla7f988b2005-11-07 01:01:35 -0800130 kfree(candidate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 out:
132 return user;
133
134} /* end key_user_lookup() */
135
136/*****************************************************************************/
137/*
138 * dispose of a user structure
139 */
140void key_user_put(struct key_user *user)
141{
142 if (atomic_dec_and_lock(&user->usage, &key_user_lock)) {
143 rb_erase(&user->node, &key_user_tree);
144 spin_unlock(&key_user_lock);
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -0600145 put_user_ns(user->user_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 kfree(user);
148 }
149
150} /* end key_user_put() */
151
152/*****************************************************************************/
153/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 * assign a key the next unique serial number
Michael LeMaye51f6d32006-06-26 00:24:54 -0700155 * - these are assigned randomly to avoid security issues through covert
156 * channel problems
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
158static inline void key_alloc_serial(struct key *key)
159{
160 struct rb_node *parent, **p;
161 struct key *xkey;
162
Michael LeMaye51f6d32006-06-26 00:24:54 -0700163 /* propose a random serial number and look for a hole for it in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * serial number tree */
Michael LeMaye51f6d32006-06-26 00:24:54 -0700165 do {
166 get_random_bytes(&key->serial, sizeof(key->serial));
167
168 key->serial >>= 1; /* negative numbers are not permitted */
169 } while (key->serial < 3);
170
171 spin_lock(&key_serial_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
David Howells9ad08302007-02-06 13:45:51 +0000173attempt_insertion:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 parent = NULL;
175 p = &key_serial_tree.rb_node;
176
177 while (*p) {
178 parent = *p;
179 xkey = rb_entry(parent, struct key, serial_node);
180
181 if (key->serial < xkey->serial)
182 p = &(*p)->rb_left;
183 else if (key->serial > xkey->serial)
184 p = &(*p)->rb_right;
185 else
186 goto serial_exists;
187 }
David Howells9ad08302007-02-06 13:45:51 +0000188
189 /* we've found a suitable hole - arrange for this key to occupy it */
190 rb_link_node(&key->serial_node, parent, p);
191 rb_insert_color(&key->serial_node, &key_serial_tree);
192
193 spin_unlock(&key_serial_lock);
194 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /* we found a key with the proposed serial number - walk the tree from
197 * that point looking for the next unused serial number */
Michael LeMaye51f6d32006-06-26 00:24:54 -0700198serial_exists:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 for (;;) {
Michael LeMaye51f6d32006-06-26 00:24:54 -0700200 key->serial++;
David Howells9ad08302007-02-06 13:45:51 +0000201 if (key->serial < 3) {
202 key->serial = 3;
203 goto attempt_insertion;
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 parent = rb_next(parent);
207 if (!parent)
David Howells9ad08302007-02-06 13:45:51 +0000208 goto attempt_insertion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 xkey = rb_entry(parent, struct key, serial_node);
211 if (key->serial < xkey->serial)
David Howells9ad08302007-02-06 13:45:51 +0000212 goto attempt_insertion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215} /* end key_alloc_serial() */
216
217/*****************************************************************************/
218/*
219 * allocate a key of the specified type
220 * - update the user's quota to reflect the existence of the key
David Howells8d9067b2006-01-06 00:11:24 -0800221 * - called from a key-type operation with key_types_sem read-locked by
222 * key_create_or_update()
223 * - this prevents unregistration of the key type
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 * - upon return the key is as yet uninstantiated; the caller needs to either
225 * instantiate the key or discard it before returning
226 */
227struct key *key_alloc(struct key_type *type, const char *desc,
David Howellsd84f4f92008-11-14 10:39:23 +1100228 uid_t uid, gid_t gid, const struct cred *cred,
David Howells7e047ef2006-06-26 00:24:50 -0700229 key_perm_t perm, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 struct key_user *user = NULL;
232 struct key *key;
233 size_t desclen, quotalen;
David Howells29db9192005-10-30 15:02:44 -0800234 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 key = ERR_PTR(-EINVAL);
237 if (!desc || !*desc)
238 goto error;
239
240 desclen = strlen(desc) + 1;
241 quotalen = desclen + type->def_datalen;
242
243 /* get hold of the key tracking for this user */
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -0600244 user = key_user_lookup(uid, cred->user->user_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (!user)
246 goto no_memory_1;
247
248 /* check that the user's quota permits allocation of another key and
249 * its description */
David Howells7e047ef2006-06-26 00:24:50 -0700250 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) {
David Howells0b77f5b2008-04-29 01:01:32 -0700251 unsigned maxkeys = (uid == 0) ?
252 key_quota_root_maxkeys : key_quota_maxkeys;
253 unsigned maxbytes = (uid == 0) ?
254 key_quota_root_maxbytes : key_quota_maxbytes;
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 spin_lock(&user->lock);
David Howells7e047ef2006-06-26 00:24:50 -0700257 if (!(flags & KEY_ALLOC_QUOTA_OVERRUN)) {
David Howells0b77f5b2008-04-29 01:01:32 -0700258 if (user->qnkeys + 1 >= maxkeys ||
259 user->qnbytes + quotalen >= maxbytes ||
260 user->qnbytes + quotalen < user->qnbytes)
David Howells7e047ef2006-06-26 00:24:50 -0700261 goto no_quota;
262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 user->qnkeys++;
265 user->qnbytes += quotalen;
266 spin_unlock(&user->lock);
267 }
268
269 /* allocate and initialise the key and its description */
Christoph Lametere94b1762006-12-06 20:33:17 -0800270 key = kmem_cache_alloc(key_jar, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (!key)
272 goto no_memory_2;
273
274 if (desc) {
Eric Sesterhenn48ad5042006-12-06 20:33:47 -0800275 key->description = kmemdup(desc, desclen, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (!key->description)
277 goto no_memory_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279
280 atomic_set(&key->usage, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 init_rwsem(&key->sem);
282 key->type = type;
283 key->user = user;
284 key->quotalen = quotalen;
285 key->datalen = type->def_datalen;
286 key->uid = uid;
287 key->gid = gid;
288 key->perm = perm;
289 key->flags = 0;
290 key->expiry = 0;
291 key->payload.data = NULL;
David Howells29db9192005-10-30 15:02:44 -0800292 key->security = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
David Howells7e047ef2006-06-26 00:24:50 -0700294 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA))
David Howells76d8aea2005-06-23 22:00:49 -0700295 key->flags |= 1 << KEY_FLAG_IN_QUOTA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 memset(&key->type_data, 0, sizeof(key->type_data));
298
299#ifdef KEY_DEBUGGING
300 key->magic = KEY_DEBUG_MAGIC;
301#endif
302
David Howells29db9192005-10-30 15:02:44 -0800303 /* let the security module know about the key */
David Howellsd84f4f92008-11-14 10:39:23 +1100304 ret = security_key_alloc(key, cred, flags);
David Howells29db9192005-10-30 15:02:44 -0800305 if (ret < 0)
306 goto security_error;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* publish the key by giving it a serial number */
309 atomic_inc(&user->nkeys);
310 key_alloc_serial(key);
311
David Howells29db9192005-10-30 15:02:44 -0800312error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return key;
314
David Howells29db9192005-10-30 15:02:44 -0800315security_error:
316 kfree(key->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 kmem_cache_free(key_jar, key);
David Howells7e047ef2006-06-26 00:24:50 -0700318 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 spin_lock(&user->lock);
320 user->qnkeys--;
321 user->qnbytes -= quotalen;
322 spin_unlock(&user->lock);
323 }
324 key_user_put(user);
David Howells29db9192005-10-30 15:02:44 -0800325 key = ERR_PTR(ret);
326 goto error;
327
328no_memory_3:
329 kmem_cache_free(key_jar, key);
330no_memory_2:
David Howells7e047ef2006-06-26 00:24:50 -0700331 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) {
David Howells29db9192005-10-30 15:02:44 -0800332 spin_lock(&user->lock);
333 user->qnkeys--;
334 user->qnbytes -= quotalen;
335 spin_unlock(&user->lock);
336 }
337 key_user_put(user);
338no_memory_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 key = ERR_PTR(-ENOMEM);
340 goto error;
341
David Howells29db9192005-10-30 15:02:44 -0800342no_quota:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 spin_unlock(&user->lock);
344 key_user_put(user);
345 key = ERR_PTR(-EDQUOT);
346 goto error;
347
348} /* end key_alloc() */
349
350EXPORT_SYMBOL(key_alloc);
351
352/*****************************************************************************/
353/*
354 * reserve an amount of quota for the key's payload
355 */
356int key_payload_reserve(struct key *key, size_t datalen)
357{
358 int delta = (int) datalen - key->datalen;
359 int ret = 0;
360
361 key_check(key);
362
363 /* contemplate the quota adjustment */
David Howells76d8aea2005-06-23 22:00:49 -0700364 if (delta != 0 && test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
David Howells0b77f5b2008-04-29 01:01:32 -0700365 unsigned maxbytes = (key->user->uid == 0) ?
366 key_quota_root_maxbytes : key_quota_maxbytes;
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 spin_lock(&key->user->lock);
369
370 if (delta > 0 &&
David Howells0b77f5b2008-04-29 01:01:32 -0700371 (key->user->qnbytes + delta >= maxbytes ||
372 key->user->qnbytes + delta < key->user->qnbytes)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 ret = -EDQUOT;
374 }
375 else {
376 key->user->qnbytes += delta;
377 key->quotalen += delta;
378 }
379 spin_unlock(&key->user->lock);
380 }
381
382 /* change the recorded data length if that didn't generate an error */
383 if (ret == 0)
384 key->datalen = datalen;
385
386 return ret;
387
388} /* end key_payload_reserve() */
389
390EXPORT_SYMBOL(key_payload_reserve);
391
392/*****************************************************************************/
393/*
394 * instantiate a key and link it into the target keyring atomically
395 * - called with the target keyring's semaphore writelocked
396 */
397static int __key_instantiate_and_link(struct key *key,
398 const void *data,
399 size_t datalen,
David Howells3e301482005-06-23 22:00:56 -0700400 struct key *keyring,
David Howellsd84f4f92008-11-14 10:39:23 +1100401 struct key *authkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 int ret, awaken;
404
405 key_check(key);
406 key_check(keyring);
407
408 awaken = 0;
409 ret = -EBUSY;
410
David Howells76181c12007-10-16 23:29:46 -0700411 mutex_lock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 /* can't instantiate twice */
David Howells76d8aea2005-06-23 22:00:49 -0700414 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* instantiate the key */
416 ret = key->type->instantiate(key, data, datalen);
417
418 if (ret == 0) {
419 /* mark the key as being instantiated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 atomic_inc(&key->user->nikeys);
David Howells76d8aea2005-06-23 22:00:49 -0700421 set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
David Howells76d8aea2005-06-23 22:00:49 -0700423 if (test_and_clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 awaken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 /* and link it into the destination keyring */
427 if (keyring)
428 ret = __key_link(keyring, key);
David Howells3e301482005-06-23 22:00:56 -0700429
430 /* disable the authorisation key */
David Howellsd84f4f92008-11-14 10:39:23 +1100431 if (authkey)
432 key_revoke(authkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434 }
435
David Howells76181c12007-10-16 23:29:46 -0700436 mutex_unlock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* wake up anyone waiting for a key to be constructed */
439 if (awaken)
David Howells76181c12007-10-16 23:29:46 -0700440 wake_up_bit(&key->flags, KEY_FLAG_USER_CONSTRUCT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 return ret;
443
444} /* end __key_instantiate_and_link() */
445
446/*****************************************************************************/
447/*
448 * instantiate a key and link it into the target keyring atomically
449 */
450int key_instantiate_and_link(struct key *key,
451 const void *data,
452 size_t datalen,
David Howells3e301482005-06-23 22:00:56 -0700453 struct key *keyring,
David Howellsd84f4f92008-11-14 10:39:23 +1100454 struct key *authkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 int ret;
457
458 if (keyring)
459 down_write(&keyring->sem);
460
David Howellsd84f4f92008-11-14 10:39:23 +1100461 ret = __key_instantiate_and_link(key, data, datalen, keyring, authkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 if (keyring)
464 up_write(&keyring->sem);
465
466 return ret;
David Howells3e301482005-06-23 22:00:56 -0700467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468} /* end key_instantiate_and_link() */
469
470EXPORT_SYMBOL(key_instantiate_and_link);
471
472/*****************************************************************************/
473/*
474 * negatively instantiate a key and link it into the target keyring atomically
475 */
476int key_negate_and_link(struct key *key,
477 unsigned timeout,
David Howells3e301482005-06-23 22:00:56 -0700478 struct key *keyring,
David Howellsd84f4f92008-11-14 10:39:23 +1100479 struct key *authkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct timespec now;
482 int ret, awaken;
483
484 key_check(key);
485 key_check(keyring);
486
487 awaken = 0;
488 ret = -EBUSY;
489
490 if (keyring)
491 down_write(&keyring->sem);
492
David Howells76181c12007-10-16 23:29:46 -0700493 mutex_lock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* can't instantiate twice */
David Howells76d8aea2005-06-23 22:00:49 -0700496 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* mark the key as being negatively instantiated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 atomic_inc(&key->user->nikeys);
David Howells76d8aea2005-06-23 22:00:49 -0700499 set_bit(KEY_FLAG_NEGATIVE, &key->flags);
500 set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 now = current_kernel_time();
502 key->expiry = now.tv_sec + timeout;
503
David Howells76d8aea2005-06-23 22:00:49 -0700504 if (test_and_clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 awaken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 ret = 0;
508
509 /* and link it into the destination keyring */
510 if (keyring)
511 ret = __key_link(keyring, key);
David Howells3e301482005-06-23 22:00:56 -0700512
513 /* disable the authorisation key */
David Howellsd84f4f92008-11-14 10:39:23 +1100514 if (authkey)
515 key_revoke(authkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517
David Howells76181c12007-10-16 23:29:46 -0700518 mutex_unlock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (keyring)
521 up_write(&keyring->sem);
522
523 /* wake up anyone waiting for a key to be constructed */
524 if (awaken)
David Howells76181c12007-10-16 23:29:46 -0700525 wake_up_bit(&key->flags, KEY_FLAG_USER_CONSTRUCT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 return ret;
528
529} /* end key_negate_and_link() */
530
531EXPORT_SYMBOL(key_negate_and_link);
532
533/*****************************************************************************/
534/*
535 * do cleaning up in process context so that we don't have to disable
536 * interrupts all over the place
537 */
David Howells65f27f32006-11-22 14:55:48 +0000538static void key_cleanup(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 struct rb_node *_n;
541 struct key *key;
542
543 go_again:
544 /* look for a dead key in the tree */
545 spin_lock(&key_serial_lock);
546
547 for (_n = rb_first(&key_serial_tree); _n; _n = rb_next(_n)) {
548 key = rb_entry(_n, struct key, serial_node);
549
550 if (atomic_read(&key->usage) == 0)
551 goto found_dead_key;
552 }
553
554 spin_unlock(&key_serial_lock);
555 return;
556
557 found_dead_key:
558 /* we found a dead key - once we've removed it from the tree, we can
559 * drop the lock */
560 rb_erase(&key->serial_node, &key_serial_tree);
561 spin_unlock(&key_serial_lock);
562
David Howells76d8aea2005-06-23 22:00:49 -0700563 key_check(key);
564
David Howells29db9192005-10-30 15:02:44 -0800565 security_key_free(key);
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 /* deal with the user's key tracking and quota */
David Howells76d8aea2005-06-23 22:00:49 -0700568 if (test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 spin_lock(&key->user->lock);
570 key->user->qnkeys--;
571 key->user->qnbytes -= key->quotalen;
572 spin_unlock(&key->user->lock);
573 }
574
575 atomic_dec(&key->user->nkeys);
David Howells76d8aea2005-06-23 22:00:49 -0700576 if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 atomic_dec(&key->user->nikeys);
578
579 key_user_put(key->user);
580
581 /* now throw away the key memory */
582 if (key->type->destroy)
583 key->type->destroy(key);
584
585 kfree(key->description);
586
587#ifdef KEY_DEBUGGING
588 key->magic = KEY_DEBUG_MAGIC_X;
589#endif
590 kmem_cache_free(key_jar, key);
591
592 /* there may, of course, be more than one key to destroy */
593 goto go_again;
594
595} /* end key_cleanup() */
596
597/*****************************************************************************/
598/*
599 * dispose of a reference to a key
600 * - when all the references are gone, we schedule the cleanup task to come and
601 * pull it out of the tree in definite process context
602 */
603void key_put(struct key *key)
604{
605 if (key) {
606 key_check(key);
607
608 if (atomic_dec_and_test(&key->usage))
609 schedule_work(&key_cleanup_task);
610 }
611
612} /* end key_put() */
613
614EXPORT_SYMBOL(key_put);
615
616/*****************************************************************************/
617/*
618 * find a key by its serial number
619 */
620struct key *key_lookup(key_serial_t id)
621{
622 struct rb_node *n;
623 struct key *key;
624
625 spin_lock(&key_serial_lock);
626
627 /* search the tree for the specified key */
628 n = key_serial_tree.rb_node;
629 while (n) {
630 key = rb_entry(n, struct key, serial_node);
631
632 if (id < key->serial)
633 n = n->rb_left;
634 else if (id > key->serial)
635 n = n->rb_right;
636 else
637 goto found;
638 }
639
640 not_found:
641 key = ERR_PTR(-ENOKEY);
642 goto error;
643
644 found:
David Howells55931222009-09-02 09:13:45 +0100645 /* pretend it doesn't exist if it is awaiting deletion */
646 if (atomic_read(&key->usage) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 goto not_found;
648
649 /* this races with key_put(), but that doesn't matter since key_put()
650 * doesn't actually change the key
651 */
652 atomic_inc(&key->usage);
653
654 error:
655 spin_unlock(&key_serial_lock);
656 return key;
657
658} /* end key_lookup() */
659
660/*****************************************************************************/
661/*
662 * find and lock the specified key type against removal
663 * - we return with the sem readlocked
664 */
665struct key_type *key_type_lookup(const char *type)
666{
667 struct key_type *ktype;
668
669 down_read(&key_types_sem);
670
671 /* look up the key type to see if it's one of the registered kernel
672 * types */
673 list_for_each_entry(ktype, &key_types_list, link) {
674 if (strcmp(ktype->name, type) == 0)
675 goto found_kernel_type;
676 }
677
678 up_read(&key_types_sem);
679 ktype = ERR_PTR(-ENOKEY);
680
681 found_kernel_type:
682 return ktype;
683
684} /* end key_type_lookup() */
685
686/*****************************************************************************/
687/*
688 * unlock a key type
689 */
690void key_type_put(struct key_type *ktype)
691{
692 up_read(&key_types_sem);
693
694} /* end key_type_put() */
695
696/*****************************************************************************/
697/*
698 * attempt to update an existing key
699 * - the key has an incremented refcount
700 * - we need to put the key if we get an error
701 */
David Howells664cceb2005-09-28 17:03:15 +0100702static inline key_ref_t __key_update(key_ref_t key_ref,
703 const void *payload, size_t plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
David Howells664cceb2005-09-28 17:03:15 +0100705 struct key *key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 int ret;
707
708 /* need write permission on the key to update it */
David Howells29db9192005-10-30 15:02:44 -0800709 ret = key_permission(key_ref, KEY_WRITE);
710 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 goto error;
712
713 ret = -EEXIST;
714 if (!key->type->update)
715 goto error;
716
717 down_write(&key->sem);
718
719 ret = key->type->update(key, payload, plen);
David Howells76d8aea2005-06-23 22:00:49 -0700720 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* updating a negative key instantiates it */
David Howells76d8aea2005-06-23 22:00:49 -0700722 clear_bit(KEY_FLAG_NEGATIVE, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 up_write(&key->sem);
725
726 if (ret < 0)
727 goto error;
David Howells664cceb2005-09-28 17:03:15 +0100728out:
729 return key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
David Howells664cceb2005-09-28 17:03:15 +0100731error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 key_put(key);
David Howells664cceb2005-09-28 17:03:15 +0100733 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto out;
735
736} /* end __key_update() */
737
738/*****************************************************************************/
739/*
740 * search the specified keyring for a key of the same description; if one is
741 * found, update it, otherwise add a new one
742 */
David Howells664cceb2005-09-28 17:03:15 +0100743key_ref_t key_create_or_update(key_ref_t keyring_ref,
744 const char *type,
745 const char *description,
746 const void *payload,
747 size_t plen,
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700748 key_perm_t perm,
David Howells7e047ef2006-06-26 00:24:50 -0700749 unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
David Howellsd84f4f92008-11-14 10:39:23 +1100751 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100753 struct key *keyring, *key = NULL;
David Howells664cceb2005-09-28 17:03:15 +0100754 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 int ret;
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 /* look up the key type to see if it's one of the registered kernel
758 * types */
759 ktype = key_type_lookup(type);
760 if (IS_ERR(ktype)) {
David Howells664cceb2005-09-28 17:03:15 +0100761 key_ref = ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 goto error;
763 }
764
David Howells664cceb2005-09-28 17:03:15 +0100765 key_ref = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (!ktype->match || !ktype->instantiate)
767 goto error_2;
768
David Howells664cceb2005-09-28 17:03:15 +0100769 keyring = key_ref_to_ptr(keyring_ref);
770
771 key_check(keyring);
772
David Howellsc3a9d652006-04-10 15:15:21 +0100773 key_ref = ERR_PTR(-ENOTDIR);
774 if (keyring->type != &key_type_keyring)
775 goto error_2;
776
David Howells664cceb2005-09-28 17:03:15 +0100777 down_write(&keyring->sem);
778
779 /* if we're going to allocate a new key, we're going to have
780 * to modify the keyring */
David Howells29db9192005-10-30 15:02:44 -0800781 ret = key_permission(keyring_ref, KEY_WRITE);
782 if (ret < 0) {
783 key_ref = ERR_PTR(ret);
David Howells664cceb2005-09-28 17:03:15 +0100784 goto error_3;
David Howells29db9192005-10-30 15:02:44 -0800785 }
David Howells664cceb2005-09-28 17:03:15 +0100786
David Howells1d9b7d92006-03-25 03:06:52 -0800787 /* if it's possible to update this type of key, search for an existing
788 * key of the same type and description in the destination keyring and
789 * update that instead if possible
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 */
David Howells1d9b7d92006-03-25 03:06:52 -0800791 if (ktype->update) {
792 key_ref = __keyring_search_one(keyring_ref, ktype, description,
793 0);
794 if (!IS_ERR(key_ref))
795 goto found_matching_key;
796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700798 /* if the client doesn't provide, decide on the permissions we want */
799 if (perm == KEY_PERM_UNDEF) {
800 perm = KEY_POS_VIEW | KEY_POS_SEARCH | KEY_POS_LINK | KEY_POS_SETATTR;
801 perm |= KEY_USR_VIEW | KEY_USR_SEARCH | KEY_USR_LINK | KEY_USR_SETATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700803 if (ktype->read)
804 perm |= KEY_POS_READ | KEY_USR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700806 if (ktype == &key_type_keyring || ktype->update)
807 perm |= KEY_USR_WRITE;
808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 /* allocate a new key */
David Howellsd84f4f92008-11-14 10:39:23 +1100811 key = key_alloc(ktype, description, cred->fsuid, cred->fsgid, cred,
812 perm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (IS_ERR(key)) {
David Howellse231c2e2008-02-07 00:15:26 -0800814 key_ref = ERR_CAST(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 goto error_3;
816 }
817
818 /* instantiate it and link it into the target keyring */
David Howells3e301482005-06-23 22:00:56 -0700819 ret = __key_instantiate_and_link(key, payload, plen, keyring, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (ret < 0) {
821 key_put(key);
David Howells664cceb2005-09-28 17:03:15 +0100822 key_ref = ERR_PTR(ret);
823 goto error_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825
David Howells664cceb2005-09-28 17:03:15 +0100826 key_ref = make_key_ref(key, is_key_possessed(keyring_ref));
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 error_3:
829 up_write(&keyring->sem);
830 error_2:
831 key_type_put(ktype);
832 error:
David Howells664cceb2005-09-28 17:03:15 +0100833 return key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 found_matching_key:
836 /* we found a matching key, so we're going to try to update it
837 * - we can drop the locks first as we have the key pinned
838 */
839 up_write(&keyring->sem);
840 key_type_put(ktype);
841
David Howells664cceb2005-09-28 17:03:15 +0100842 key_ref = __key_update(key_ref, payload, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 goto error;
844
845} /* end key_create_or_update() */
846
847EXPORT_SYMBOL(key_create_or_update);
848
849/*****************************************************************************/
850/*
851 * update a key
852 */
David Howells664cceb2005-09-28 17:03:15 +0100853int key_update(key_ref_t key_ref, const void *payload, size_t plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
David Howells664cceb2005-09-28 17:03:15 +0100855 struct key *key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 int ret;
857
858 key_check(key);
859
860 /* the key must be writable */
David Howells29db9192005-10-30 15:02:44 -0800861 ret = key_permission(key_ref, KEY_WRITE);
862 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto error;
864
865 /* attempt to update it if supported */
866 ret = -EOPNOTSUPP;
867 if (key->type->update) {
868 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
David Howells29db9192005-10-30 15:02:44 -0800870 ret = key->type->update(key, payload, plen);
David Howells76d8aea2005-06-23 22:00:49 -0700871 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /* updating a negative key instantiates it */
David Howells76d8aea2005-06-23 22:00:49 -0700873 clear_bit(KEY_FLAG_NEGATIVE, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 up_write(&key->sem);
876 }
877
878 error:
879 return ret;
880
881} /* end key_update() */
882
883EXPORT_SYMBOL(key_update);
884
885/*****************************************************************************/
886/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * revoke a key
888 */
889void key_revoke(struct key *key)
890{
891 key_check(key);
892
David Howells76181c12007-10-16 23:29:46 -0700893 /* make sure no one's trying to change or use the key when we mark it
894 * - we tell lockdep that we might nest because we might be revoking an
895 * authorisation key whilst holding the sem on a key we've just
896 * instantiated
897 */
898 down_write_nested(&key->sem, 1);
899 if (!test_and_set_bit(KEY_FLAG_REVOKED, &key->flags) &&
900 key->type->revoke)
David Howells04c567d2006-06-22 14:47:18 -0700901 key->type->revoke(key);
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 up_write(&key->sem);
904
905} /* end key_revoke() */
906
907EXPORT_SYMBOL(key_revoke);
908
909/*****************************************************************************/
910/*
911 * register a type of key
912 */
913int register_key_type(struct key_type *ktype)
914{
915 struct key_type *p;
916 int ret;
917
918 ret = -EEXIST;
919 down_write(&key_types_sem);
920
921 /* disallow key types with the same name */
922 list_for_each_entry(p, &key_types_list, link) {
923 if (strcmp(p->name, ktype->name) == 0)
924 goto out;
925 }
926
927 /* store the type */
928 list_add(&ktype->link, &key_types_list);
929 ret = 0;
930
931 out:
932 up_write(&key_types_sem);
933 return ret;
934
935} /* end register_key_type() */
936
937EXPORT_SYMBOL(register_key_type);
938
939/*****************************************************************************/
940/*
941 * unregister a type of key
942 */
943void unregister_key_type(struct key_type *ktype)
944{
945 struct rb_node *_n;
946 struct key *key;
947
948 down_write(&key_types_sem);
949
950 /* withdraw the key type */
951 list_del_init(&ktype->link);
952
David Howells76d8aea2005-06-23 22:00:49 -0700953 /* mark all the keys of this type dead */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 spin_lock(&key_serial_lock);
955
956 for (_n = rb_first(&key_serial_tree); _n; _n = rb_next(_n)) {
957 key = rb_entry(_n, struct key, serial_node);
958
David Howells76d8aea2005-06-23 22:00:49 -0700959 if (key->type == ktype)
960 key->type = &key_type_dead;
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
David Howells76d8aea2005-06-23 22:00:49 -0700963 spin_unlock(&key_serial_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
David Howells76d8aea2005-06-23 22:00:49 -0700965 /* make sure everyone revalidates their keys */
Paul E. McKenneyb2b18662005-06-25 14:55:38 -0700966 synchronize_rcu();
David Howells76d8aea2005-06-23 22:00:49 -0700967
968 /* we should now be able to destroy the payloads of all the keys of
969 * this type with impunity */
970 spin_lock(&key_serial_lock);
971
972 for (_n = rb_first(&key_serial_tree); _n; _n = rb_next(_n)) {
973 key = rb_entry(_n, struct key, serial_node);
974
975 if (key->type == ktype) {
976 if (ktype->destroy)
977 ktype->destroy(key);
Randy Dunlapa7807a32006-06-27 02:53:54 -0700978 memset(&key->payload, KEY_DESTROY, sizeof(key->payload));
David Howells76d8aea2005-06-23 22:00:49 -0700979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981
982 spin_unlock(&key_serial_lock);
983 up_write(&key_types_sem);
984
985} /* end unregister_key_type() */
986
987EXPORT_SYMBOL(unregister_key_type);
988
989/*****************************************************************************/
990/*
991 * initialise the key management stuff
992 */
993void __init key_init(void)
994{
995 /* allocate a slab in which we can store keys */
996 key_jar = kmem_cache_create("key_jar", sizeof(struct key),
Paul Mundt20c2df82007-07-20 10:11:58 +0900997 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 /* add the special key types */
1000 list_add_tail(&key_type_keyring.link, &key_types_list);
1001 list_add_tail(&key_type_dead.link, &key_types_list);
1002 list_add_tail(&key_type_user.link, &key_types_list);
1003
1004 /* record the root user tracking */
1005 rb_link_node(&root_key_user.node,
1006 NULL,
1007 &key_user_tree.rb_node);
1008
1009 rb_insert_color(&root_key_user.node,
1010 &key_user_tree);
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012} /* end key_init() */