[ALSA] usb-audio: add another ID for the TerraTec PHASE26
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / security / keys / request_key.c
blobe6dd366d43a35b0b70e6d1a40edec79a706a72d8
1 /* request_key.c: request a key from userspace
3 * Copyright (C) 2004-5 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
12 #include <linux/module.h>
13 #include <linux/sched.h>
14 #include <linux/kmod.h>
15 #include <linux/err.h>
16 #include <linux/keyctl.h>
17 #include "internal.h"
19 struct key_construction {
20 struct list_head link; /* link in construction queue */
21 struct key *key; /* key being constructed */
24 /* when waiting for someone else's keys, you get added to this */
25 DECLARE_WAIT_QUEUE_HEAD(request_key_conswq);
27 /*****************************************************************************/
29 * request userspace finish the construction of a key
30 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring> <info>"
32 static int call_request_key(struct key *key,
33 const char *op,
34 const char *callout_info)
36 struct task_struct *tsk = current;
37 key_serial_t prkey, sskey;
38 struct key *session_keyring, *rkakey;
39 char *argv[10], *envp[3], uid_str[12], gid_str[12];
40 char key_str[12], keyring_str[3][12];
41 int ret, i;
43 kenter("{%d},%s,%s", key->serial, op, callout_info);
45 /* generate a new session keyring with an auth key in it */
46 session_keyring = request_key_auth_new(key, &rkakey);
47 if (IS_ERR(session_keyring)) {
48 ret = PTR_ERR(session_keyring);
49 goto error;
52 /* record the UID and GID */
53 sprintf(uid_str, "%d", current->fsuid);
54 sprintf(gid_str, "%d", current->fsgid);
56 /* we say which key is under construction */
57 sprintf(key_str, "%d", key->serial);
59 /* we specify the process's default keyrings */
60 sprintf(keyring_str[0], "%d",
61 tsk->thread_keyring ? tsk->thread_keyring->serial : 0);
63 prkey = 0;
64 if (tsk->signal->process_keyring)
65 prkey = tsk->signal->process_keyring->serial;
67 sprintf(keyring_str[1], "%d", prkey);
69 if (tsk->signal->session_keyring) {
70 rcu_read_lock();
71 sskey = rcu_dereference(tsk->signal->session_keyring)->serial;
72 rcu_read_unlock();
74 else {
75 sskey = tsk->user->session_keyring->serial;
78 sprintf(keyring_str[2], "%d", sskey);
80 /* set up a minimal environment */
81 i = 0;
82 envp[i++] = "HOME=/";
83 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
84 envp[i] = NULL;
86 /* set up the argument list */
87 i = 0;
88 argv[i++] = "/sbin/request-key";
89 argv[i++] = (char *) op;
90 argv[i++] = key_str;
91 argv[i++] = uid_str;
92 argv[i++] = gid_str;
93 argv[i++] = keyring_str[0];
94 argv[i++] = keyring_str[1];
95 argv[i++] = keyring_str[2];
96 argv[i++] = (char *) callout_info;
97 argv[i] = NULL;
99 /* do it */
100 ret = call_usermodehelper_keys(argv[0], argv, envp, session_keyring, 1);
102 /* dispose of the special keys */
103 key_revoke(rkakey);
104 key_put(rkakey);
105 key_put(session_keyring);
107 error:
108 kleave(" = %d", ret);
109 return ret;
111 } /* end call_request_key() */
113 /*****************************************************************************/
115 * call out to userspace for the key
116 * - called with the construction sem held, but the sem is dropped here
117 * - we ignore program failure and go on key status instead
119 static struct key *__request_key_construction(struct key_type *type,
120 const char *description,
121 const char *callout_info)
123 struct key_construction cons;
124 struct timespec now;
125 struct key *key;
126 int ret, negated;
128 kenter("%s,%s,%s", type->name, description, callout_info);
130 /* create a key and add it to the queue */
131 key = key_alloc(type, description,
132 current->fsuid, current->fsgid, KEY_POS_ALL, 0);
133 if (IS_ERR(key))
134 goto alloc_failed;
136 set_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
138 cons.key = key;
139 list_add_tail(&cons.link, &key->user->consq);
141 /* we drop the construction sem here on behalf of the caller */
142 up_write(&key_construction_sem);
144 /* make the call */
145 ret = call_request_key(key, "create", callout_info);
146 if (ret < 0)
147 goto request_failed;
149 /* if the key wasn't instantiated, then we want to give an error */
150 ret = -ENOKEY;
151 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
152 goto request_failed;
154 down_write(&key_construction_sem);
155 list_del(&cons.link);
156 up_write(&key_construction_sem);
158 /* also give an error if the key was negatively instantiated */
159 check_not_negative:
160 if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) {
161 key_put(key);
162 key = ERR_PTR(-ENOKEY);
165 out:
166 kleave(" = %p", key);
167 return key;
169 request_failed:
170 /* it wasn't instantiated
171 * - remove from construction queue
172 * - mark the key as dead
174 negated = 0;
175 down_write(&key_construction_sem);
177 list_del(&cons.link);
179 /* check it didn't get instantiated between the check and the down */
180 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
181 set_bit(KEY_FLAG_NEGATIVE, &key->flags);
182 set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
183 negated = 1;
186 clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
188 up_write(&key_construction_sem);
190 if (!negated)
191 goto check_not_negative; /* surprisingly, the key got
192 * instantiated */
194 /* set the timeout and store in the session keyring if we can */
195 now = current_kernel_time();
196 key->expiry = now.tv_sec + key_negative_timeout;
198 if (current->signal->session_keyring) {
199 struct key *keyring;
201 rcu_read_lock();
202 keyring = rcu_dereference(current->signal->session_keyring);
203 atomic_inc(&keyring->usage);
204 rcu_read_unlock();
206 key_link(keyring, key);
207 key_put(keyring);
210 key_put(key);
212 /* notify anyone who was waiting */
213 wake_up_all(&request_key_conswq);
215 key = ERR_PTR(ret);
216 goto out;
218 alloc_failed:
219 up_write(&key_construction_sem);
220 goto out;
222 } /* end __request_key_construction() */
224 /*****************************************************************************/
226 * call out to userspace to request the key
227 * - we check the construction queue first to see if an appropriate key is
228 * already being constructed by userspace
230 static struct key *request_key_construction(struct key_type *type,
231 const char *description,
232 struct key_user *user,
233 const char *callout_info)
235 struct key_construction *pcons;
236 struct key *key, *ckey;
238 DECLARE_WAITQUEUE(myself, current);
240 kenter("%s,%s,{%d},%s",
241 type->name, description, user->uid, callout_info);
243 /* see if there's such a key under construction already */
244 down_write(&key_construction_sem);
246 list_for_each_entry(pcons, &user->consq, link) {
247 ckey = pcons->key;
249 if (ckey->type != type)
250 continue;
252 if (type->match(ckey, description))
253 goto found_key_under_construction;
256 /* see about getting userspace to construct the key */
257 key = __request_key_construction(type, description, callout_info);
258 error:
259 kleave(" = %p", key);
260 return key;
262 /* someone else has the same key under construction
263 * - we want to keep an eye on their key
265 found_key_under_construction:
266 atomic_inc(&ckey->usage);
267 up_write(&key_construction_sem);
269 /* wait for the key to be completed one way or another */
270 add_wait_queue(&request_key_conswq, &myself);
272 for (;;) {
273 set_current_state(TASK_INTERRUPTIBLE);
274 if (!test_bit(KEY_FLAG_USER_CONSTRUCT, &ckey->flags))
275 break;
276 if (signal_pending(current))
277 break;
278 schedule();
281 set_current_state(TASK_RUNNING);
282 remove_wait_queue(&request_key_conswq, &myself);
284 /* we'll need to search this process's keyrings to see if the key is
285 * now there since we can't automatically assume it's also available
286 * there */
287 key_put(ckey);
288 ckey = NULL;
290 key = NULL; /* request a retry */
291 goto error;
293 } /* end request_key_construction() */
295 /*****************************************************************************/
297 * link a freshly minted key to an appropriate destination keyring
299 static void request_key_link(struct key *key, struct key *dest_keyring)
301 struct task_struct *tsk = current;
302 struct key *drop = NULL;
304 kenter("{%d},%p", key->serial, dest_keyring);
306 /* find the appropriate keyring */
307 if (!dest_keyring) {
308 switch (tsk->jit_keyring) {
309 case KEY_REQKEY_DEFL_DEFAULT:
310 case KEY_REQKEY_DEFL_THREAD_KEYRING:
311 dest_keyring = tsk->thread_keyring;
312 if (dest_keyring)
313 break;
315 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
316 dest_keyring = tsk->signal->process_keyring;
317 if (dest_keyring)
318 break;
320 case KEY_REQKEY_DEFL_SESSION_KEYRING:
321 rcu_read_lock();
322 dest_keyring = key_get(
323 rcu_dereference(tsk->signal->session_keyring));
324 rcu_read_unlock();
325 drop = dest_keyring;
327 if (dest_keyring)
328 break;
330 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
331 dest_keyring = current->user->session_keyring;
332 break;
334 case KEY_REQKEY_DEFL_USER_KEYRING:
335 dest_keyring = current->user->uid_keyring;
336 break;
338 case KEY_REQKEY_DEFL_GROUP_KEYRING:
339 default:
340 BUG();
344 /* and attach the key to it */
345 key_link(dest_keyring, key);
347 key_put(drop);
349 kleave("");
351 } /* end request_key_link() */
353 /*****************************************************************************/
355 * request a key
356 * - search the process's keyrings
357 * - check the list of keys being created or updated
358 * - call out to userspace for a key if supplementary info was provided
359 * - cache the key in an appropriate keyring
361 struct key *request_key_and_link(struct key_type *type,
362 const char *description,
363 const char *callout_info,
364 struct key *dest_keyring)
366 struct key_user *user;
367 struct key *key;
368 key_ref_t key_ref;
370 kenter("%s,%s,%s,%p",
371 type->name, description, callout_info, dest_keyring);
373 /* search all the process keyrings for a key */
374 key_ref = search_process_keyrings(type, description, type->match,
375 current);
377 kdebug("search 1: %p", key_ref);
379 if (!IS_ERR(key_ref)) {
380 key = key_ref_to_ptr(key_ref);
382 else if (PTR_ERR(key_ref) != -EAGAIN) {
383 key = ERR_PTR(PTR_ERR(key_ref));
385 else {
386 /* the search failed, but the keyrings were searchable, so we
387 * should consult userspace if we can */
388 key = ERR_PTR(-ENOKEY);
389 if (!callout_info)
390 goto error;
392 /* - get hold of the user's construction queue */
393 user = key_user_lookup(current->fsuid);
394 if (!user)
395 goto nomem;
397 for (;;) {
398 if (signal_pending(current))
399 goto interrupted;
401 /* ask userspace (returns NULL if it waited on a key
402 * being constructed) */
403 key = request_key_construction(type, description,
404 user, callout_info);
405 if (key)
406 break;
408 /* someone else made the key we want, so we need to
409 * search again as it might now be available to us */
410 key_ref = search_process_keyrings(type, description,
411 type->match,
412 current);
414 kdebug("search 2: %p", key_ref);
416 if (!IS_ERR(key_ref)) {
417 key = key_ref_to_ptr(key_ref);
418 break;
421 if (PTR_ERR(key_ref) != -EAGAIN) {
422 key = ERR_PTR(PTR_ERR(key_ref));
423 break;
427 key_user_put(user);
429 /* link the new key into the appropriate keyring */
430 if (!IS_ERR(key))
431 request_key_link(key, dest_keyring);
434 error:
435 kleave(" = %p", key);
436 return key;
438 nomem:
439 key = ERR_PTR(-ENOMEM);
440 goto error;
442 interrupted:
443 key_user_put(user);
444 key = ERR_PTR(-EINTR);
445 goto error;
447 } /* end request_key_and_link() */
449 /*****************************************************************************/
451 * request a key
452 * - search the process's keyrings
453 * - check the list of keys being created or updated
454 * - call out to userspace for a key if supplementary info was provided
456 struct key *request_key(struct key_type *type,
457 const char *description,
458 const char *callout_info)
460 return request_key_and_link(type, description, callout_info, NULL);
462 } /* end request_key() */
464 EXPORT_SYMBOL(request_key);
466 /*****************************************************************************/
468 * validate a key
470 int key_validate(struct key *key)
472 struct timespec now;
473 int ret = 0;
475 if (key) {
476 /* check it's still accessible */
477 ret = -EKEYREVOKED;
478 if (test_bit(KEY_FLAG_REVOKED, &key->flags) ||
479 test_bit(KEY_FLAG_DEAD, &key->flags))
480 goto error;
482 /* check it hasn't expired */
483 ret = 0;
484 if (key->expiry) {
485 now = current_kernel_time();
486 if (now.tv_sec >= key->expiry)
487 ret = -EKEYEXPIRED;
491 error:
492 return ret;
494 } /* end key_validate() */
496 EXPORT_SYMBOL(key_validate);