Linux v2.6.17-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / security / keys / request_key.c
blobf030a0ccbb93f9f70f95cc44833dd48dd6b7e469
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.
11 * See Documentation/keys-request-key.txt
14 #include <linux/module.h>
15 #include <linux/sched.h>
16 #include <linux/kmod.h>
17 #include <linux/err.h>
18 #include <linux/keyctl.h>
19 #include "internal.h"
21 struct key_construction {
22 struct list_head link; /* link in construction queue */
23 struct key *key; /* key being constructed */
26 /* when waiting for someone else's keys, you get added to this */
27 DECLARE_WAIT_QUEUE_HEAD(request_key_conswq);
29 /*****************************************************************************/
31 * request userspace finish the construction of a key
32 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>"
34 static int call_sbin_request_key(struct key *key,
35 struct key *authkey,
36 const char *op)
38 struct task_struct *tsk = current;
39 key_serial_t prkey, sskey;
40 struct key *keyring;
41 char *argv[9], *envp[3], uid_str[12], gid_str[12];
42 char key_str[12], keyring_str[3][12];
43 char desc[20];
44 int ret, i;
46 kenter("{%d},{%d},%s", key->serial, authkey->serial, op);
48 /* allocate a new session keyring */
49 sprintf(desc, "_req.%u", key->serial);
51 keyring = keyring_alloc(desc, current->fsuid, current->fsgid, 1, NULL);
52 if (IS_ERR(keyring)) {
53 ret = PTR_ERR(keyring);
54 goto error_alloc;
57 /* attach the auth key to the session keyring */
58 ret = __key_link(keyring, authkey);
59 if (ret < 0)
60 goto error_link;
62 /* record the UID and GID */
63 sprintf(uid_str, "%d", current->fsuid);
64 sprintf(gid_str, "%d", current->fsgid);
66 /* we say which key is under construction */
67 sprintf(key_str, "%d", key->serial);
69 /* we specify the process's default keyrings */
70 sprintf(keyring_str[0], "%d",
71 tsk->thread_keyring ? tsk->thread_keyring->serial : 0);
73 prkey = 0;
74 if (tsk->signal->process_keyring)
75 prkey = tsk->signal->process_keyring->serial;
77 sprintf(keyring_str[1], "%d", prkey);
79 if (tsk->signal->session_keyring) {
80 rcu_read_lock();
81 sskey = rcu_dereference(tsk->signal->session_keyring)->serial;
82 rcu_read_unlock();
84 else {
85 sskey = tsk->user->session_keyring->serial;
88 sprintf(keyring_str[2], "%d", sskey);
90 /* set up a minimal environment */
91 i = 0;
92 envp[i++] = "HOME=/";
93 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
94 envp[i] = NULL;
96 /* set up the argument list */
97 i = 0;
98 argv[i++] = "/sbin/request-key";
99 argv[i++] = (char *) op;
100 argv[i++] = key_str;
101 argv[i++] = uid_str;
102 argv[i++] = gid_str;
103 argv[i++] = keyring_str[0];
104 argv[i++] = keyring_str[1];
105 argv[i++] = keyring_str[2];
106 argv[i] = NULL;
108 /* do it */
109 ret = call_usermodehelper_keys(argv[0], argv, envp, keyring, 1);
111 error_link:
112 key_put(keyring);
114 error_alloc:
115 kleave(" = %d", ret);
116 return ret;
118 } /* end call_sbin_request_key() */
120 /*****************************************************************************/
122 * call out to userspace for the key
123 * - called with the construction sem held, but the sem is dropped here
124 * - we ignore program failure and go on key status instead
126 static struct key *__request_key_construction(struct key_type *type,
127 const char *description,
128 const char *callout_info)
130 request_key_actor_t actor;
131 struct key_construction cons;
132 struct timespec now;
133 struct key *key, *authkey;
134 int ret, negated;
136 kenter("%s,%s,%s", type->name, description, callout_info);
138 /* create a key and add it to the queue */
139 key = key_alloc(type, description,
140 current->fsuid, current->fsgid, KEY_POS_ALL, 0);
141 if (IS_ERR(key))
142 goto alloc_failed;
144 set_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
146 cons.key = key;
147 list_add_tail(&cons.link, &key->user->consq);
149 /* we drop the construction sem here on behalf of the caller */
150 up_write(&key_construction_sem);
152 /* allocate an authorisation key */
153 authkey = request_key_auth_new(key, callout_info);
154 if (IS_ERR(authkey)) {
155 ret = PTR_ERR(authkey);
156 authkey = NULL;
157 goto alloc_authkey_failed;
160 /* make the call */
161 actor = call_sbin_request_key;
162 if (type->request_key)
163 actor = type->request_key;
164 ret = actor(key, authkey, "create");
165 if (ret < 0)
166 goto request_failed;
168 /* if the key wasn't instantiated, then we want to give an error */
169 ret = -ENOKEY;
170 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
171 goto request_failed;
173 key_revoke(authkey);
174 key_put(authkey);
176 down_write(&key_construction_sem);
177 list_del(&cons.link);
178 up_write(&key_construction_sem);
180 /* also give an error if the key was negatively instantiated */
181 check_not_negative:
182 if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) {
183 key_put(key);
184 key = ERR_PTR(-ENOKEY);
187 out:
188 kleave(" = %p", key);
189 return key;
191 request_failed:
192 key_revoke(authkey);
193 key_put(authkey);
195 alloc_authkey_failed:
196 /* it wasn't instantiated
197 * - remove from construction queue
198 * - mark the key as dead
200 negated = 0;
201 down_write(&key_construction_sem);
203 list_del(&cons.link);
205 /* check it didn't get instantiated between the check and the down */
206 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
207 set_bit(KEY_FLAG_NEGATIVE, &key->flags);
208 set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
209 negated = 1;
212 clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
214 up_write(&key_construction_sem);
216 if (!negated)
217 goto check_not_negative; /* surprisingly, the key got
218 * instantiated */
220 /* set the timeout and store in the session keyring if we can */
221 now = current_kernel_time();
222 key->expiry = now.tv_sec + key_negative_timeout;
224 if (current->signal->session_keyring) {
225 struct key *keyring;
227 rcu_read_lock();
228 keyring = rcu_dereference(current->signal->session_keyring);
229 atomic_inc(&keyring->usage);
230 rcu_read_unlock();
232 key_link(keyring, key);
233 key_put(keyring);
236 key_put(key);
238 /* notify anyone who was waiting */
239 wake_up_all(&request_key_conswq);
241 key = ERR_PTR(ret);
242 goto out;
244 alloc_failed:
245 up_write(&key_construction_sem);
246 goto out;
248 } /* end __request_key_construction() */
250 /*****************************************************************************/
252 * call out to userspace to request the key
253 * - we check the construction queue first to see if an appropriate key is
254 * already being constructed by userspace
256 static struct key *request_key_construction(struct key_type *type,
257 const char *description,
258 struct key_user *user,
259 const char *callout_info)
261 struct key_construction *pcons;
262 struct key *key, *ckey;
264 DECLARE_WAITQUEUE(myself, current);
266 kenter("%s,%s,{%d},%s",
267 type->name, description, user->uid, callout_info);
269 /* see if there's such a key under construction already */
270 down_write(&key_construction_sem);
272 list_for_each_entry(pcons, &user->consq, link) {
273 ckey = pcons->key;
275 if (ckey->type != type)
276 continue;
278 if (type->match(ckey, description))
279 goto found_key_under_construction;
282 /* see about getting userspace to construct the key */
283 key = __request_key_construction(type, description, callout_info);
284 error:
285 kleave(" = %p", key);
286 return key;
288 /* someone else has the same key under construction
289 * - we want to keep an eye on their key
291 found_key_under_construction:
292 atomic_inc(&ckey->usage);
293 up_write(&key_construction_sem);
295 /* wait for the key to be completed one way or another */
296 add_wait_queue(&request_key_conswq, &myself);
298 for (;;) {
299 set_current_state(TASK_INTERRUPTIBLE);
300 if (!test_bit(KEY_FLAG_USER_CONSTRUCT, &ckey->flags))
301 break;
302 if (signal_pending(current))
303 break;
304 schedule();
307 set_current_state(TASK_RUNNING);
308 remove_wait_queue(&request_key_conswq, &myself);
310 /* we'll need to search this process's keyrings to see if the key is
311 * now there since we can't automatically assume it's also available
312 * there */
313 key_put(ckey);
314 ckey = NULL;
316 key = NULL; /* request a retry */
317 goto error;
319 } /* end request_key_construction() */
321 /*****************************************************************************/
323 * link a freshly minted key to an appropriate destination keyring
325 static void request_key_link(struct key *key, struct key *dest_keyring)
327 struct task_struct *tsk = current;
328 struct key *drop = NULL;
330 kenter("{%d},%p", key->serial, dest_keyring);
332 /* find the appropriate keyring */
333 if (!dest_keyring) {
334 switch (tsk->jit_keyring) {
335 case KEY_REQKEY_DEFL_DEFAULT:
336 case KEY_REQKEY_DEFL_THREAD_KEYRING:
337 dest_keyring = tsk->thread_keyring;
338 if (dest_keyring)
339 break;
341 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
342 dest_keyring = tsk->signal->process_keyring;
343 if (dest_keyring)
344 break;
346 case KEY_REQKEY_DEFL_SESSION_KEYRING:
347 rcu_read_lock();
348 dest_keyring = key_get(
349 rcu_dereference(tsk->signal->session_keyring));
350 rcu_read_unlock();
351 drop = dest_keyring;
353 if (dest_keyring)
354 break;
356 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
357 dest_keyring = current->user->session_keyring;
358 break;
360 case KEY_REQKEY_DEFL_USER_KEYRING:
361 dest_keyring = current->user->uid_keyring;
362 break;
364 case KEY_REQKEY_DEFL_GROUP_KEYRING:
365 default:
366 BUG();
370 /* and attach the key to it */
371 key_link(dest_keyring, key);
373 key_put(drop);
375 kleave("");
377 } /* end request_key_link() */
379 /*****************************************************************************/
381 * request a key
382 * - search the process's keyrings
383 * - check the list of keys being created or updated
384 * - call out to userspace for a key if supplementary info was provided
385 * - cache the key in an appropriate keyring
387 struct key *request_key_and_link(struct key_type *type,
388 const char *description,
389 const char *callout_info,
390 struct key *dest_keyring)
392 struct key_user *user;
393 struct key *key;
394 key_ref_t key_ref;
396 kenter("%s,%s,%s,%p",
397 type->name, description, callout_info, dest_keyring);
399 /* search all the process keyrings for a key */
400 key_ref = search_process_keyrings(type, description, type->match,
401 current);
403 kdebug("search 1: %p", key_ref);
405 if (!IS_ERR(key_ref)) {
406 key = key_ref_to_ptr(key_ref);
408 else if (PTR_ERR(key_ref) != -EAGAIN) {
409 key = ERR_PTR(PTR_ERR(key_ref));
411 else {
412 /* the search failed, but the keyrings were searchable, so we
413 * should consult userspace if we can */
414 key = ERR_PTR(-ENOKEY);
415 if (!callout_info)
416 goto error;
418 /* - get hold of the user's construction queue */
419 user = key_user_lookup(current->fsuid);
420 if (!user)
421 goto nomem;
423 for (;;) {
424 if (signal_pending(current))
425 goto interrupted;
427 /* ask userspace (returns NULL if it waited on a key
428 * being constructed) */
429 key = request_key_construction(type, description,
430 user, callout_info);
431 if (key)
432 break;
434 /* someone else made the key we want, so we need to
435 * search again as it might now be available to us */
436 key_ref = search_process_keyrings(type, description,
437 type->match,
438 current);
440 kdebug("search 2: %p", key_ref);
442 if (!IS_ERR(key_ref)) {
443 key = key_ref_to_ptr(key_ref);
444 break;
447 if (PTR_ERR(key_ref) != -EAGAIN) {
448 key = ERR_PTR(PTR_ERR(key_ref));
449 break;
453 key_user_put(user);
455 /* link the new key into the appropriate keyring */
456 if (!IS_ERR(key))
457 request_key_link(key, dest_keyring);
460 error:
461 kleave(" = %p", key);
462 return key;
464 nomem:
465 key = ERR_PTR(-ENOMEM);
466 goto error;
468 interrupted:
469 key_user_put(user);
470 key = ERR_PTR(-EINTR);
471 goto error;
473 } /* end request_key_and_link() */
475 /*****************************************************************************/
477 * request a key
478 * - search the process's keyrings
479 * - check the list of keys being created or updated
480 * - call out to userspace for a key if supplementary info was provided
482 struct key *request_key(struct key_type *type,
483 const char *description,
484 const char *callout_info)
486 return request_key_and_link(type, description, callout_info, NULL);
488 } /* end request_key() */
490 EXPORT_SYMBOL(request_key);