blob: d98c61953be6857bc402bca6796e3b5177d54953 [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 Howells76181c12007-10-16 23:29:46 -07003 * Copyright (C) 2004-2007 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>
21#include "internal.h"
22
Christoph Lametere18b8902006-12-06 20:33:20 -080023static struct kmem_cache *key_jar;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024struct rb_root key_serial_tree; /* tree of keys indexed by serial */
25DEFINE_SPINLOCK(key_serial_lock);
26
27struct rb_root key_user_tree; /* tree of quota records indexed by UID */
28DEFINE_SPINLOCK(key_user_lock);
29
30static LIST_HEAD(key_types_list);
31static DECLARE_RWSEM(key_types_sem);
32
David Howells65f27f32006-11-22 14:55:48 +000033static void key_cleanup(struct work_struct *work);
34static DECLARE_WORK(key_cleanup_task, key_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* we serialise key instantiation and link */
David Howells76181c12007-10-16 23:29:46 -070037DEFINE_MUTEX(key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/* any key who's type gets unegistered will be re-typed to this */
Adrian Bunk1ae8f402006-01-06 00:11:25 -080040static struct key_type key_type_dead = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .name = "dead",
42};
43
44#ifdef KEY_DEBUGGING
45void __key_check(const struct key *key)
46{
47 printk("__key_check: key %p {%08x} should be {%08x}\n",
48 key, key->magic, KEY_DEBUG_MAGIC);
49 BUG();
50}
51#endif
52
53/*****************************************************************************/
54/*
55 * get the key quota record for a user, allocating a new record if one doesn't
56 * already exist
57 */
58struct key_user *key_user_lookup(uid_t uid)
59{
60 struct key_user *candidate = NULL, *user;
61 struct rb_node *parent = NULL;
62 struct rb_node **p;
63
64 try_again:
65 p = &key_user_tree.rb_node;
66 spin_lock(&key_user_lock);
67
68 /* search the tree for a user record with a matching UID */
69 while (*p) {
70 parent = *p;
71 user = rb_entry(parent, struct key_user, node);
72
73 if (uid < user->uid)
74 p = &(*p)->rb_left;
75 else if (uid > user->uid)
76 p = &(*p)->rb_right;
77 else
78 goto found;
79 }
80
81 /* if we get here, we failed to find a match in the tree */
82 if (!candidate) {
83 /* allocate a candidate user record if we don't already have
84 * one */
85 spin_unlock(&key_user_lock);
86
87 user = NULL;
88 candidate = kmalloc(sizeof(struct key_user), GFP_KERNEL);
89 if (unlikely(!candidate))
90 goto out;
91
92 /* the allocation may have scheduled, so we need to repeat the
93 * search lest someone else added the record whilst we were
94 * asleep */
95 goto try_again;
96 }
97
98 /* if we get here, then the user record still hadn't appeared on the
99 * second pass - so we use the candidate record */
100 atomic_set(&candidate->usage, 1);
101 atomic_set(&candidate->nkeys, 0);
102 atomic_set(&candidate->nikeys, 0);
103 candidate->uid = uid;
104 candidate->qnkeys = 0;
105 candidate->qnbytes = 0;
106 spin_lock_init(&candidate->lock);
David Howells76181c12007-10-16 23:29:46 -0700107 mutex_init(&candidate->cons_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 rb_link_node(&candidate->node, parent, p);
110 rb_insert_color(&candidate->node, &key_user_tree);
111 spin_unlock(&key_user_lock);
112 user = candidate;
113 goto out;
114
115 /* okay - we found a user record for this UID */
116 found:
117 atomic_inc(&user->usage);
118 spin_unlock(&key_user_lock);
Jesper Juhla7f988b2005-11-07 01:01:35 -0800119 kfree(candidate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 out:
121 return user;
122
123} /* end key_user_lookup() */
124
125/*****************************************************************************/
126/*
127 * dispose of a user structure
128 */
129void key_user_put(struct key_user *user)
130{
131 if (atomic_dec_and_lock(&user->usage, &key_user_lock)) {
132 rb_erase(&user->node, &key_user_tree);
133 spin_unlock(&key_user_lock);
134
135 kfree(user);
136 }
137
138} /* end key_user_put() */
139
140/*****************************************************************************/
141/*
142 * insert a key with a fixed serial number
143 */
144static void __init __key_insert_serial(struct key *key)
145{
146 struct rb_node *parent, **p;
147 struct key *xkey;
148
149 parent = NULL;
150 p = &key_serial_tree.rb_node;
151
152 while (*p) {
153 parent = *p;
154 xkey = rb_entry(parent, struct key, serial_node);
155
156 if (key->serial < xkey->serial)
157 p = &(*p)->rb_left;
158 else if (key->serial > xkey->serial)
159 p = &(*p)->rb_right;
160 else
161 BUG();
162 }
163
164 /* we've found a suitable hole - arrange for this key to occupy it */
165 rb_link_node(&key->serial_node, parent, p);
166 rb_insert_color(&key->serial_node, &key_serial_tree);
167
168} /* end __key_insert_serial() */
169
170/*****************************************************************************/
171/*
172 * assign a key the next unique serial number
Michael LeMaye51f6d32006-06-26 00:24:54 -0700173 * - these are assigned randomly to avoid security issues through covert
174 * channel problems
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
176static inline void key_alloc_serial(struct key *key)
177{
178 struct rb_node *parent, **p;
179 struct key *xkey;
180
Michael LeMaye51f6d32006-06-26 00:24:54 -0700181 /* propose a random serial number and look for a hole for it in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * serial number tree */
Michael LeMaye51f6d32006-06-26 00:24:54 -0700183 do {
184 get_random_bytes(&key->serial, sizeof(key->serial));
185
186 key->serial >>= 1; /* negative numbers are not permitted */
187 } while (key->serial < 3);
188
189 spin_lock(&key_serial_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
David Howells9ad08302007-02-06 13:45:51 +0000191attempt_insertion:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 parent = NULL;
193 p = &key_serial_tree.rb_node;
194
195 while (*p) {
196 parent = *p;
197 xkey = rb_entry(parent, struct key, serial_node);
198
199 if (key->serial < xkey->serial)
200 p = &(*p)->rb_left;
201 else if (key->serial > xkey->serial)
202 p = &(*p)->rb_right;
203 else
204 goto serial_exists;
205 }
David Howells9ad08302007-02-06 13:45:51 +0000206
207 /* we've found a suitable hole - arrange for this key to occupy it */
208 rb_link_node(&key->serial_node, parent, p);
209 rb_insert_color(&key->serial_node, &key_serial_tree);
210
211 spin_unlock(&key_serial_lock);
212 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* we found a key with the proposed serial number - walk the tree from
215 * that point looking for the next unused serial number */
Michael LeMaye51f6d32006-06-26 00:24:54 -0700216serial_exists:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 for (;;) {
Michael LeMaye51f6d32006-06-26 00:24:54 -0700218 key->serial++;
David Howells9ad08302007-02-06 13:45:51 +0000219 if (key->serial < 3) {
220 key->serial = 3;
221 goto attempt_insertion;
222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 parent = rb_next(parent);
225 if (!parent)
David Howells9ad08302007-02-06 13:45:51 +0000226 goto attempt_insertion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 xkey = rb_entry(parent, struct key, serial_node);
229 if (key->serial < xkey->serial)
David Howells9ad08302007-02-06 13:45:51 +0000230 goto attempt_insertion;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233} /* end key_alloc_serial() */
234
235/*****************************************************************************/
236/*
237 * allocate a key of the specified type
238 * - update the user's quota to reflect the existence of the key
David Howells8d9067b2006-01-06 00:11:24 -0800239 * - called from a key-type operation with key_types_sem read-locked by
240 * key_create_or_update()
241 * - this prevents unregistration of the key type
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * - upon return the key is as yet uninstantiated; the caller needs to either
243 * instantiate the key or discard it before returning
244 */
245struct key *key_alloc(struct key_type *type, const char *desc,
Michael LeMayd7200242006-06-22 14:47:17 -0700246 uid_t uid, gid_t gid, struct task_struct *ctx,
David Howells7e047ef2006-06-26 00:24:50 -0700247 key_perm_t perm, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct key_user *user = NULL;
250 struct key *key;
251 size_t desclen, quotalen;
David Howells29db9192005-10-30 15:02:44 -0800252 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 key = ERR_PTR(-EINVAL);
255 if (!desc || !*desc)
256 goto error;
257
258 desclen = strlen(desc) + 1;
259 quotalen = desclen + type->def_datalen;
260
261 /* get hold of the key tracking for this user */
262 user = key_user_lookup(uid);
263 if (!user)
264 goto no_memory_1;
265
266 /* check that the user's quota permits allocation of another key and
267 * its description */
David Howells7e047ef2006-06-26 00:24:50 -0700268 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 spin_lock(&user->lock);
David Howells7e047ef2006-06-26 00:24:50 -0700270 if (!(flags & KEY_ALLOC_QUOTA_OVERRUN)) {
271 if (user->qnkeys + 1 >= KEYQUOTA_MAX_KEYS ||
272 user->qnbytes + quotalen >= KEYQUOTA_MAX_BYTES
273 )
274 goto no_quota;
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 user->qnkeys++;
278 user->qnbytes += quotalen;
279 spin_unlock(&user->lock);
280 }
281
282 /* allocate and initialise the key and its description */
Christoph Lametere94b1762006-12-06 20:33:17 -0800283 key = kmem_cache_alloc(key_jar, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (!key)
285 goto no_memory_2;
286
287 if (desc) {
Eric Sesterhenn48ad5042006-12-06 20:33:47 -0800288 key->description = kmemdup(desc, desclen, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!key->description)
290 goto no_memory_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292
293 atomic_set(&key->usage, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 init_rwsem(&key->sem);
295 key->type = type;
296 key->user = user;
297 key->quotalen = quotalen;
298 key->datalen = type->def_datalen;
299 key->uid = uid;
300 key->gid = gid;
301 key->perm = perm;
302 key->flags = 0;
303 key->expiry = 0;
304 key->payload.data = NULL;
David Howells29db9192005-10-30 15:02:44 -0800305 key->security = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
David Howells7e047ef2006-06-26 00:24:50 -0700307 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA))
David Howells76d8aea2005-06-23 22:00:49 -0700308 key->flags |= 1 << KEY_FLAG_IN_QUOTA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 memset(&key->type_data, 0, sizeof(key->type_data));
311
312#ifdef KEY_DEBUGGING
313 key->magic = KEY_DEBUG_MAGIC;
314#endif
315
David Howells29db9192005-10-30 15:02:44 -0800316 /* let the security module know about the key */
David Howells7e047ef2006-06-26 00:24:50 -0700317 ret = security_key_alloc(key, ctx, flags);
David Howells29db9192005-10-30 15:02:44 -0800318 if (ret < 0)
319 goto security_error;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* publish the key by giving it a serial number */
322 atomic_inc(&user->nkeys);
323 key_alloc_serial(key);
324
David Howells29db9192005-10-30 15:02:44 -0800325error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return key;
327
David Howells29db9192005-10-30 15:02:44 -0800328security_error:
329 kfree(key->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 kmem_cache_free(key_jar, key);
David Howells7e047ef2006-06-26 00:24:50 -0700331 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 spin_lock(&user->lock);
333 user->qnkeys--;
334 user->qnbytes -= quotalen;
335 spin_unlock(&user->lock);
336 }
337 key_user_put(user);
David Howells29db9192005-10-30 15:02:44 -0800338 key = ERR_PTR(ret);
339 goto error;
340
341no_memory_3:
342 kmem_cache_free(key_jar, key);
343no_memory_2:
David Howells7e047ef2006-06-26 00:24:50 -0700344 if (!(flags & KEY_ALLOC_NOT_IN_QUOTA)) {
David Howells29db9192005-10-30 15:02:44 -0800345 spin_lock(&user->lock);
346 user->qnkeys--;
347 user->qnbytes -= quotalen;
348 spin_unlock(&user->lock);
349 }
350 key_user_put(user);
351no_memory_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 key = ERR_PTR(-ENOMEM);
353 goto error;
354
David Howells29db9192005-10-30 15:02:44 -0800355no_quota:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 spin_unlock(&user->lock);
357 key_user_put(user);
358 key = ERR_PTR(-EDQUOT);
359 goto error;
360
361} /* end key_alloc() */
362
363EXPORT_SYMBOL(key_alloc);
364
365/*****************************************************************************/
366/*
367 * reserve an amount of quota for the key's payload
368 */
369int key_payload_reserve(struct key *key, size_t datalen)
370{
371 int delta = (int) datalen - key->datalen;
372 int ret = 0;
373
374 key_check(key);
375
376 /* contemplate the quota adjustment */
David Howells76d8aea2005-06-23 22:00:49 -0700377 if (delta != 0 && test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 spin_lock(&key->user->lock);
379
380 if (delta > 0 &&
381 key->user->qnbytes + delta > KEYQUOTA_MAX_BYTES
382 ) {
383 ret = -EDQUOT;
384 }
385 else {
386 key->user->qnbytes += delta;
387 key->quotalen += delta;
388 }
389 spin_unlock(&key->user->lock);
390 }
391
392 /* change the recorded data length if that didn't generate an error */
393 if (ret == 0)
394 key->datalen = datalen;
395
396 return ret;
397
398} /* end key_payload_reserve() */
399
400EXPORT_SYMBOL(key_payload_reserve);
401
402/*****************************************************************************/
403/*
404 * instantiate a key and link it into the target keyring atomically
405 * - called with the target keyring's semaphore writelocked
406 */
407static int __key_instantiate_and_link(struct key *key,
408 const void *data,
409 size_t datalen,
David Howells3e301482005-06-23 22:00:56 -0700410 struct key *keyring,
411 struct key *instkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 int ret, awaken;
414
415 key_check(key);
416 key_check(keyring);
417
418 awaken = 0;
419 ret = -EBUSY;
420
David Howells76181c12007-10-16 23:29:46 -0700421 mutex_lock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 /* can't instantiate twice */
David Howells76d8aea2005-06-23 22:00:49 -0700424 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* instantiate the key */
426 ret = key->type->instantiate(key, data, datalen);
427
428 if (ret == 0) {
429 /* mark the key as being instantiated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 atomic_inc(&key->user->nikeys);
David Howells76d8aea2005-06-23 22:00:49 -0700431 set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
David Howells76d8aea2005-06-23 22:00:49 -0700433 if (test_and_clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 awaken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 /* and link it into the destination keyring */
437 if (keyring)
438 ret = __key_link(keyring, key);
David Howells3e301482005-06-23 22:00:56 -0700439
440 /* disable the authorisation key */
441 if (instkey)
442 key_revoke(instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444 }
445
David Howells76181c12007-10-16 23:29:46 -0700446 mutex_unlock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* wake up anyone waiting for a key to be constructed */
449 if (awaken)
David Howells76181c12007-10-16 23:29:46 -0700450 wake_up_bit(&key->flags, KEY_FLAG_USER_CONSTRUCT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 return ret;
453
454} /* end __key_instantiate_and_link() */
455
456/*****************************************************************************/
457/*
458 * instantiate a key and link it into the target keyring atomically
459 */
460int key_instantiate_and_link(struct key *key,
461 const void *data,
462 size_t datalen,
David Howells3e301482005-06-23 22:00:56 -0700463 struct key *keyring,
464 struct key *instkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 int ret;
467
468 if (keyring)
469 down_write(&keyring->sem);
470
David Howells3e301482005-06-23 22:00:56 -0700471 ret = __key_instantiate_and_link(key, data, datalen, keyring, instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 if (keyring)
474 up_write(&keyring->sem);
475
476 return ret;
David Howells3e301482005-06-23 22:00:56 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478} /* end key_instantiate_and_link() */
479
480EXPORT_SYMBOL(key_instantiate_and_link);
481
482/*****************************************************************************/
483/*
484 * negatively instantiate a key and link it into the target keyring atomically
485 */
486int key_negate_and_link(struct key *key,
487 unsigned timeout,
David Howells3e301482005-06-23 22:00:56 -0700488 struct key *keyring,
489 struct key *instkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct timespec now;
492 int ret, awaken;
493
494 key_check(key);
495 key_check(keyring);
496
497 awaken = 0;
498 ret = -EBUSY;
499
500 if (keyring)
501 down_write(&keyring->sem);
502
David Howells76181c12007-10-16 23:29:46 -0700503 mutex_lock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* can't instantiate twice */
David Howells76d8aea2005-06-23 22:00:49 -0700506 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /* mark the key as being negatively instantiated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 atomic_inc(&key->user->nikeys);
David Howells76d8aea2005-06-23 22:00:49 -0700509 set_bit(KEY_FLAG_NEGATIVE, &key->flags);
510 set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 now = current_kernel_time();
512 key->expiry = now.tv_sec + timeout;
513
David Howells76d8aea2005-06-23 22:00:49 -0700514 if (test_and_clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 awaken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 ret = 0;
518
519 /* and link it into the destination keyring */
520 if (keyring)
521 ret = __key_link(keyring, key);
David Howells3e301482005-06-23 22:00:56 -0700522
523 /* disable the authorisation key */
524 if (instkey)
525 key_revoke(instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527
David Howells76181c12007-10-16 23:29:46 -0700528 mutex_unlock(&key_construction_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 if (keyring)
531 up_write(&keyring->sem);
532
533 /* wake up anyone waiting for a key to be constructed */
534 if (awaken)
David Howells76181c12007-10-16 23:29:46 -0700535 wake_up_bit(&key->flags, KEY_FLAG_USER_CONSTRUCT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 return ret;
538
539} /* end key_negate_and_link() */
540
541EXPORT_SYMBOL(key_negate_and_link);
542
543/*****************************************************************************/
544/*
545 * do cleaning up in process context so that we don't have to disable
546 * interrupts all over the place
547 */
David Howells65f27f32006-11-22 14:55:48 +0000548static void key_cleanup(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 struct rb_node *_n;
551 struct key *key;
552
553 go_again:
554 /* look for a dead key in the tree */
555 spin_lock(&key_serial_lock);
556
557 for (_n = rb_first(&key_serial_tree); _n; _n = rb_next(_n)) {
558 key = rb_entry(_n, struct key, serial_node);
559
560 if (atomic_read(&key->usage) == 0)
561 goto found_dead_key;
562 }
563
564 spin_unlock(&key_serial_lock);
565 return;
566
567 found_dead_key:
568 /* we found a dead key - once we've removed it from the tree, we can
569 * drop the lock */
570 rb_erase(&key->serial_node, &key_serial_tree);
571 spin_unlock(&key_serial_lock);
572
David Howells76d8aea2005-06-23 22:00:49 -0700573 key_check(key);
574
David Howells29db9192005-10-30 15:02:44 -0800575 security_key_free(key);
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* deal with the user's key tracking and quota */
David Howells76d8aea2005-06-23 22:00:49 -0700578 if (test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 spin_lock(&key->user->lock);
580 key->user->qnkeys--;
581 key->user->qnbytes -= key->quotalen;
582 spin_unlock(&key->user->lock);
583 }
584
585 atomic_dec(&key->user->nkeys);
David Howells76d8aea2005-06-23 22:00:49 -0700586 if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 atomic_dec(&key->user->nikeys);
588
589 key_user_put(key->user);
590
591 /* now throw away the key memory */
592 if (key->type->destroy)
593 key->type->destroy(key);
594
595 kfree(key->description);
596
597#ifdef KEY_DEBUGGING
598 key->magic = KEY_DEBUG_MAGIC_X;
599#endif
600 kmem_cache_free(key_jar, key);
601
602 /* there may, of course, be more than one key to destroy */
603 goto go_again;
604
605} /* end key_cleanup() */
606
607/*****************************************************************************/
608/*
609 * dispose of a reference to a key
610 * - when all the references are gone, we schedule the cleanup task to come and
611 * pull it out of the tree in definite process context
612 */
613void key_put(struct key *key)
614{
615 if (key) {
616 key_check(key);
617
618 if (atomic_dec_and_test(&key->usage))
619 schedule_work(&key_cleanup_task);
620 }
621
622} /* end key_put() */
623
624EXPORT_SYMBOL(key_put);
625
626/*****************************************************************************/
627/*
628 * find a key by its serial number
629 */
630struct key *key_lookup(key_serial_t id)
631{
632 struct rb_node *n;
633 struct key *key;
634
635 spin_lock(&key_serial_lock);
636
637 /* search the tree for the specified key */
638 n = key_serial_tree.rb_node;
639 while (n) {
640 key = rb_entry(n, struct key, serial_node);
641
642 if (id < key->serial)
643 n = n->rb_left;
644 else if (id > key->serial)
645 n = n->rb_right;
646 else
647 goto found;
648 }
649
650 not_found:
651 key = ERR_PTR(-ENOKEY);
652 goto error;
653
654 found:
David Howells76d8aea2005-06-23 22:00:49 -0700655 /* pretend it doesn't exist if it's dead */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (atomic_read(&key->usage) == 0 ||
David Howells76d8aea2005-06-23 22:00:49 -0700657 test_bit(KEY_FLAG_DEAD, &key->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 key->type == &key_type_dead)
659 goto not_found;
660
661 /* this races with key_put(), but that doesn't matter since key_put()
662 * doesn't actually change the key
663 */
664 atomic_inc(&key->usage);
665
666 error:
667 spin_unlock(&key_serial_lock);
668 return key;
669
670} /* end key_lookup() */
671
672/*****************************************************************************/
673/*
674 * find and lock the specified key type against removal
675 * - we return with the sem readlocked
676 */
677struct key_type *key_type_lookup(const char *type)
678{
679 struct key_type *ktype;
680
681 down_read(&key_types_sem);
682
683 /* look up the key type to see if it's one of the registered kernel
684 * types */
685 list_for_each_entry(ktype, &key_types_list, link) {
686 if (strcmp(ktype->name, type) == 0)
687 goto found_kernel_type;
688 }
689
690 up_read(&key_types_sem);
691 ktype = ERR_PTR(-ENOKEY);
692
693 found_kernel_type:
694 return ktype;
695
696} /* end key_type_lookup() */
697
698/*****************************************************************************/
699/*
700 * unlock a key type
701 */
702void key_type_put(struct key_type *ktype)
703{
704 up_read(&key_types_sem);
705
706} /* end key_type_put() */
707
708/*****************************************************************************/
709/*
710 * attempt to update an existing key
711 * - the key has an incremented refcount
712 * - we need to put the key if we get an error
713 */
David Howells664cceb2005-09-28 17:03:15 +0100714static inline key_ref_t __key_update(key_ref_t key_ref,
715 const void *payload, size_t plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
David Howells664cceb2005-09-28 17:03:15 +0100717 struct key *key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 int ret;
719
720 /* need write permission on the key to update it */
David Howells29db9192005-10-30 15:02:44 -0800721 ret = key_permission(key_ref, KEY_WRITE);
722 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 goto error;
724
725 ret = -EEXIST;
726 if (!key->type->update)
727 goto error;
728
729 down_write(&key->sem);
730
731 ret = key->type->update(key, payload, plen);
David Howells76d8aea2005-06-23 22:00:49 -0700732 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* updating a negative key instantiates it */
David Howells76d8aea2005-06-23 22:00:49 -0700734 clear_bit(KEY_FLAG_NEGATIVE, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 up_write(&key->sem);
737
738 if (ret < 0)
739 goto error;
David Howells664cceb2005-09-28 17:03:15 +0100740out:
741 return key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
David Howells664cceb2005-09-28 17:03:15 +0100743error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 key_put(key);
David Howells664cceb2005-09-28 17:03:15 +0100745 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto out;
747
748} /* end __key_update() */
749
750/*****************************************************************************/
751/*
752 * search the specified keyring for a key of the same description; if one is
753 * found, update it, otherwise add a new one
754 */
David Howells664cceb2005-09-28 17:03:15 +0100755key_ref_t key_create_or_update(key_ref_t keyring_ref,
756 const char *type,
757 const char *description,
758 const void *payload,
759 size_t plen,
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700760 key_perm_t perm,
David Howells7e047ef2006-06-26 00:24:50 -0700761 unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100764 struct key *keyring, *key = NULL;
David Howells664cceb2005-09-28 17:03:15 +0100765 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int ret;
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /* look up the key type to see if it's one of the registered kernel
769 * types */
770 ktype = key_type_lookup(type);
771 if (IS_ERR(ktype)) {
David Howells664cceb2005-09-28 17:03:15 +0100772 key_ref = ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 goto error;
774 }
775
David Howells664cceb2005-09-28 17:03:15 +0100776 key_ref = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (!ktype->match || !ktype->instantiate)
778 goto error_2;
779
David Howells664cceb2005-09-28 17:03:15 +0100780 keyring = key_ref_to_ptr(keyring_ref);
781
782 key_check(keyring);
783
David Howellsc3a9d652006-04-10 15:15:21 +0100784 key_ref = ERR_PTR(-ENOTDIR);
785 if (keyring->type != &key_type_keyring)
786 goto error_2;
787
David Howells664cceb2005-09-28 17:03:15 +0100788 down_write(&keyring->sem);
789
790 /* if we're going to allocate a new key, we're going to have
791 * to modify the keyring */
David Howells29db9192005-10-30 15:02:44 -0800792 ret = key_permission(keyring_ref, KEY_WRITE);
793 if (ret < 0) {
794 key_ref = ERR_PTR(ret);
David Howells664cceb2005-09-28 17:03:15 +0100795 goto error_3;
David Howells29db9192005-10-30 15:02:44 -0800796 }
David Howells664cceb2005-09-28 17:03:15 +0100797
David Howells1d9b7d92006-03-25 03:06:52 -0800798 /* if it's possible to update this type of key, search for an existing
799 * key of the same type and description in the destination keyring and
800 * update that instead if possible
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 */
David Howells1d9b7d92006-03-25 03:06:52 -0800802 if (ktype->update) {
803 key_ref = __keyring_search_one(keyring_ref, ktype, description,
804 0);
805 if (!IS_ERR(key_ref))
806 goto found_matching_key;
807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700809 /* if the client doesn't provide, decide on the permissions we want */
810 if (perm == KEY_PERM_UNDEF) {
811 perm = KEY_POS_VIEW | KEY_POS_SEARCH | KEY_POS_LINK | KEY_POS_SETATTR;
812 perm |= KEY_USR_VIEW | KEY_USR_SEARCH | KEY_USR_LINK | KEY_USR_SETATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700814 if (ktype->read)
815 perm |= KEY_POS_READ | KEY_USR_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700817 if (ktype == &key_type_keyring || ktype->update)
818 perm |= KEY_USR_WRITE;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /* allocate a new key */
822 key = key_alloc(ktype, description, current->fsuid, current->fsgid,
David Howells7e047ef2006-06-26 00:24:50 -0700823 current, perm, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (IS_ERR(key)) {
David Howellse231c2e2008-02-07 00:15:26 -0800825 key_ref = ERR_CAST(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto error_3;
827 }
828
829 /* instantiate it and link it into the target keyring */
David Howells3e301482005-06-23 22:00:56 -0700830 ret = __key_instantiate_and_link(key, payload, plen, keyring, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (ret < 0) {
832 key_put(key);
David Howells664cceb2005-09-28 17:03:15 +0100833 key_ref = ERR_PTR(ret);
834 goto error_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
David Howells664cceb2005-09-28 17:03:15 +0100837 key_ref = make_key_ref(key, is_key_possessed(keyring_ref));
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 error_3:
840 up_write(&keyring->sem);
841 error_2:
842 key_type_put(ktype);
843 error:
David Howells664cceb2005-09-28 17:03:15 +0100844 return key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 found_matching_key:
847 /* we found a matching key, so we're going to try to update it
848 * - we can drop the locks first as we have the key pinned
849 */
850 up_write(&keyring->sem);
851 key_type_put(ktype);
852
David Howells664cceb2005-09-28 17:03:15 +0100853 key_ref = __key_update(key_ref, payload, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto error;
855
856} /* end key_create_or_update() */
857
858EXPORT_SYMBOL(key_create_or_update);
859
860/*****************************************************************************/
861/*
862 * update a key
863 */
David Howells664cceb2005-09-28 17:03:15 +0100864int key_update(key_ref_t key_ref, const void *payload, size_t plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
David Howells664cceb2005-09-28 17:03:15 +0100866 struct key *key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 int ret;
868
869 key_check(key);
870
871 /* the key must be writable */
David Howells29db9192005-10-30 15:02:44 -0800872 ret = key_permission(key_ref, KEY_WRITE);
873 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 goto error;
875
876 /* attempt to update it if supported */
877 ret = -EOPNOTSUPP;
878 if (key->type->update) {
879 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
David Howells29db9192005-10-30 15:02:44 -0800881 ret = key->type->update(key, payload, plen);
David Howells76d8aea2005-06-23 22:00:49 -0700882 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /* updating a negative key instantiates it */
David Howells76d8aea2005-06-23 22:00:49 -0700884 clear_bit(KEY_FLAG_NEGATIVE, &key->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 up_write(&key->sem);
887 }
888
889 error:
890 return ret;
891
892} /* end key_update() */
893
894EXPORT_SYMBOL(key_update);
895
896/*****************************************************************************/
897/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 * revoke a key
899 */
900void key_revoke(struct key *key)
901{
902 key_check(key);
903
David Howells76181c12007-10-16 23:29:46 -0700904 /* make sure no one's trying to change or use the key when we mark it
905 * - we tell lockdep that we might nest because we might be revoking an
906 * authorisation key whilst holding the sem on a key we've just
907 * instantiated
908 */
909 down_write_nested(&key->sem, 1);
910 if (!test_and_set_bit(KEY_FLAG_REVOKED, &key->flags) &&
911 key->type->revoke)
David Howells04c567d2006-06-22 14:47:18 -0700912 key->type->revoke(key);
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 up_write(&key->sem);
915
916} /* end key_revoke() */
917
918EXPORT_SYMBOL(key_revoke);
919
920/*****************************************************************************/
921/*
922 * register a type of key
923 */
924int register_key_type(struct key_type *ktype)
925{
926 struct key_type *p;
927 int ret;
928
929 ret = -EEXIST;
930 down_write(&key_types_sem);
931
932 /* disallow key types with the same name */
933 list_for_each_entry(p, &key_types_list, link) {
934 if (strcmp(p->name, ktype->name) == 0)
935 goto out;
936 }
937
938 /* store the type */
939 list_add(&ktype->link, &key_types_list);
940 ret = 0;
941
942 out:
943 up_write(&key_types_sem);
944 return ret;
945
946} /* end register_key_type() */
947
948EXPORT_SYMBOL(register_key_type);
949
950/*****************************************************************************/
951/*
952 * unregister a type of key
953 */
954void unregister_key_type(struct key_type *ktype)
955{
956 struct rb_node *_n;
957 struct key *key;
958
959 down_write(&key_types_sem);
960
961 /* withdraw the key type */
962 list_del_init(&ktype->link);
963
David Howells76d8aea2005-06-23 22:00:49 -0700964 /* mark all the keys of this type dead */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 spin_lock(&key_serial_lock);
966
967 for (_n = rb_first(&key_serial_tree); _n; _n = rb_next(_n)) {
968 key = rb_entry(_n, struct key, serial_node);
969
David Howells76d8aea2005-06-23 22:00:49 -0700970 if (key->type == ktype)
971 key->type = &key_type_dead;
972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
David Howells76d8aea2005-06-23 22:00:49 -0700974 spin_unlock(&key_serial_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
David Howells76d8aea2005-06-23 22:00:49 -0700976 /* make sure everyone revalidates their keys */
Paul E. McKenneyb2b18662005-06-25 14:55:38 -0700977 synchronize_rcu();
David Howells76d8aea2005-06-23 22:00:49 -0700978
979 /* we should now be able to destroy the payloads of all the keys of
980 * this type with impunity */
981 spin_lock(&key_serial_lock);
982
983 for (_n = rb_first(&key_serial_tree); _n; _n = rb_next(_n)) {
984 key = rb_entry(_n, struct key, serial_node);
985
986 if (key->type == ktype) {
987 if (ktype->destroy)
988 ktype->destroy(key);
Randy Dunlapa7807a32006-06-27 02:53:54 -0700989 memset(&key->payload, KEY_DESTROY, sizeof(key->payload));
David Howells76d8aea2005-06-23 22:00:49 -0700990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
992
993 spin_unlock(&key_serial_lock);
994 up_write(&key_types_sem);
995
996} /* end unregister_key_type() */
997
998EXPORT_SYMBOL(unregister_key_type);
999
1000/*****************************************************************************/
1001/*
1002 * initialise the key management stuff
1003 */
1004void __init key_init(void)
1005{
1006 /* allocate a slab in which we can store keys */
1007 key_jar = kmem_cache_create("key_jar", sizeof(struct key),
Paul Mundt20c2df82007-07-20 10:11:58 +09001008 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 /* add the special key types */
1011 list_add_tail(&key_type_keyring.link, &key_types_list);
1012 list_add_tail(&key_type_dead.link, &key_types_list);
1013 list_add_tail(&key_type_user.link, &key_types_list);
1014
1015 /* record the root user tracking */
1016 rb_link_node(&root_key_user.node,
1017 NULL,
1018 &key_user_tree.rb_node);
1019
1020 rb_insert_color(&root_key_user.node,
1021 &key_user_tree);
1022
1023 /* record root's user standard keyrings */
1024 key_check(&root_user_keyring);
1025 key_check(&root_session_keyring);
1026
1027 __key_insert_serial(&root_user_keyring);
1028 __key_insert_serial(&root_session_keyring);
1029
1030 keyring_publish_name(&root_user_keyring);
1031 keyring_publish_name(&root_session_keyring);
1032
1033 /* link the two root keyrings together */
1034 key_link(&root_session_keyring, &root_user_keyring);
David Howells76d8aea2005-06-23 22:00:49 -07001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036} /* end key_init() */