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>
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,
38 struct task_struct *tsk = current;
39 key_serial_t prkey, sskey;
41 char *argv[9], *envp[3], uid_str[12], gid_str[12];
42 char key_str[12], keyring_str[3][12];
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, current,
52 KEY_ALLOC_QUOTA_OVERRUN, NULL);
53 if (IS_ERR(keyring)) {
54 ret = PTR_ERR(keyring);
58 /* attach the auth key to the session keyring */
59 ret = __key_link(keyring, authkey);
63 /* record the UID and GID */
64 sprintf(uid_str, "%d", current->fsuid);
65 sprintf(gid_str, "%d", current->fsgid);
67 /* we say which key is under construction */
68 sprintf(key_str, "%d", key->serial);
70 /* we specify the process's default keyrings */
71 sprintf(keyring_str[0], "%d",
72 tsk->thread_keyring ? tsk->thread_keyring->serial : 0);
75 if (tsk->signal->process_keyring)
76 prkey = tsk->signal->process_keyring->serial;
78 sprintf(keyring_str[1], "%d", prkey);
80 if (tsk->signal->session_keyring) {
82 sskey = rcu_dereference(tsk->signal->session_keyring)->serial;
86 sskey = tsk->user->session_keyring->serial;
89 sprintf(keyring_str[2], "%d", sskey);
91 /* set up a minimal environment */
94 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
97 /* set up the argument list */
99 argv[i++] = "/sbin/request-key";
100 argv[i++] = (char *) op;
104 argv[i++] = keyring_str[0];
105 argv[i++] = keyring_str[1];
106 argv[i++] = keyring_str[2];
110 ret = call_usermodehelper_keys(argv[0], argv, envp, keyring, 1);
116 kleave(" = %d", ret);
119 } /* end call_sbin_request_key() */
121 /*****************************************************************************/
123 * call out to userspace for the key
124 * - called with the construction sem held, but the sem is dropped here
125 * - we ignore program failure and go on key status instead
127 static struct key *__request_key_construction(struct key_type *type,
128 const char *description,
129 const char *callout_info,
132 request_key_actor_t actor;
133 struct key_construction cons;
135 struct key *key, *authkey;
138 kenter("%s,%s,%s,%lx", type->name, description, callout_info, flags);
140 /* create a key and add it to the queue */
141 key = key_alloc(type, description,
142 current->fsuid, current->fsgid, current, KEY_POS_ALL,
147 set_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
150 list_add_tail(&cons.link, &key->user->consq);
152 /* we drop the construction sem here on behalf of the caller */
153 up_write(&key_construction_sem);
155 /* allocate an authorisation key */
156 authkey = request_key_auth_new(key, callout_info);
157 if (IS_ERR(authkey)) {
158 ret = PTR_ERR(authkey);
160 goto alloc_authkey_failed;
164 actor = call_sbin_request_key;
165 if (type->request_key)
166 actor = type->request_key;
167 ret = actor(key, authkey, "create");
171 /* if the key wasn't instantiated, then we want to give an error */
173 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
179 down_write(&key_construction_sem);
180 list_del(&cons.link);
181 up_write(&key_construction_sem);
183 /* also give an error if the key was negatively instantiated */
185 if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) {
187 key = ERR_PTR(-ENOKEY);
191 kleave(" = %p", key);
198 alloc_authkey_failed:
199 /* it wasn't instantiated
200 * - remove from construction queue
201 * - mark the key as dead
204 down_write(&key_construction_sem);
206 list_del(&cons.link);
208 /* check it didn't get instantiated between the check and the down */
209 if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
210 set_bit(KEY_FLAG_NEGATIVE, &key->flags);
211 set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
215 clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
217 up_write(&key_construction_sem);
220 goto check_not_negative; /* surprisingly, the key got
223 /* set the timeout and store in the session keyring if we can */
224 now = current_kernel_time();
225 key->expiry = now.tv_sec + key_negative_timeout;
227 if (current->signal->session_keyring) {
231 keyring = rcu_dereference(current->signal->session_keyring);
232 atomic_inc(&keyring->usage);
235 key_link(keyring, key);
241 /* notify anyone who was waiting */
242 wake_up_all(&request_key_conswq);
248 up_write(&key_construction_sem);
251 } /* end __request_key_construction() */
253 /*****************************************************************************/
255 * call out to userspace to request the key
256 * - we check the construction queue first to see if an appropriate key is
257 * already being constructed by userspace
259 static struct key *request_key_construction(struct key_type *type,
260 const char *description,
261 struct key_user *user,
262 const char *callout_info,
265 struct key_construction *pcons;
266 struct key *key, *ckey;
268 DECLARE_WAITQUEUE(myself, current);
270 kenter("%s,%s,{%d},%s,%lx",
271 type->name, description, user->uid, callout_info, flags);
273 /* see if there's such a key under construction already */
274 down_write(&key_construction_sem);
276 list_for_each_entry(pcons, &user->consq, link) {
279 if (ckey->type != type)
282 if (type->match(ckey, description))
283 goto found_key_under_construction;
286 /* see about getting userspace to construct the key */
287 key = __request_key_construction(type, description, callout_info,
290 kleave(" = %p", key);
293 /* someone else has the same key under construction
294 * - we want to keep an eye on their key
296 found_key_under_construction:
297 atomic_inc(&ckey->usage);
298 up_write(&key_construction_sem);
300 /* wait for the key to be completed one way or another */
301 add_wait_queue(&request_key_conswq, &myself);
304 set_current_state(TASK_INTERRUPTIBLE);
305 if (!test_bit(KEY_FLAG_USER_CONSTRUCT, &ckey->flags))
307 if (signal_pending(current))
312 set_current_state(TASK_RUNNING);
313 remove_wait_queue(&request_key_conswq, &myself);
315 /* we'll need to search this process's keyrings to see if the key is
316 * now there since we can't automatically assume it's also available
321 key = NULL; /* request a retry */
324 } /* end request_key_construction() */
326 /*****************************************************************************/
328 * link a freshly minted key to an appropriate destination keyring
330 static void request_key_link(struct key *key, struct key *dest_keyring)
332 struct task_struct *tsk = current;
333 struct key *drop = NULL;
335 kenter("{%d},%p", key->serial, dest_keyring);
337 /* find the appropriate keyring */
339 switch (tsk->jit_keyring) {
340 case KEY_REQKEY_DEFL_DEFAULT:
341 case KEY_REQKEY_DEFL_THREAD_KEYRING:
342 dest_keyring = tsk->thread_keyring;
346 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
347 dest_keyring = tsk->signal->process_keyring;
351 case KEY_REQKEY_DEFL_SESSION_KEYRING:
353 dest_keyring = key_get(
354 rcu_dereference(tsk->signal->session_keyring));
361 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
362 dest_keyring = current->user->session_keyring;
365 case KEY_REQKEY_DEFL_USER_KEYRING:
366 dest_keyring = current->user->uid_keyring;
369 case KEY_REQKEY_DEFL_GROUP_KEYRING:
375 /* and attach the key to it */
376 key_link(dest_keyring, key);
382 } /* end request_key_link() */
384 /*****************************************************************************/
387 * - search the process's keyrings
388 * - check the list of keys being created or updated
389 * - call out to userspace for a key if supplementary info was provided
390 * - cache the key in an appropriate keyring
392 struct key *request_key_and_link(struct key_type *type,
393 const char *description,
394 const char *callout_info,
395 struct key *dest_keyring,
398 struct key_user *user;
402 kenter("%s,%s,%s,%p,%lx",
403 type->name, description, callout_info, dest_keyring, flags);
405 /* search all the process keyrings for a key */
406 key_ref = search_process_keyrings(type, description, type->match,
409 kdebug("search 1: %p", key_ref);
411 if (!IS_ERR(key_ref)) {
412 key = key_ref_to_ptr(key_ref);
414 else if (PTR_ERR(key_ref) != -EAGAIN) {
415 key = ERR_PTR(PTR_ERR(key_ref));
418 /* the search failed, but the keyrings were searchable, so we
419 * should consult userspace if we can */
420 key = ERR_PTR(-ENOKEY);
424 /* - get hold of the user's construction queue */
425 user = key_user_lookup(current->fsuid);
430 if (signal_pending(current))
433 /* ask userspace (returns NULL if it waited on a key
434 * being constructed) */
435 key = request_key_construction(type, description,
441 /* someone else made the key we want, so we need to
442 * search again as it might now be available to us */
443 key_ref = search_process_keyrings(type, description,
447 kdebug("search 2: %p", key_ref);
449 if (!IS_ERR(key_ref)) {
450 key = key_ref_to_ptr(key_ref);
454 if (PTR_ERR(key_ref) != -EAGAIN) {
455 key = ERR_PTR(PTR_ERR(key_ref));
462 /* link the new key into the appropriate keyring */
464 request_key_link(key, dest_keyring);
468 kleave(" = %p", key);
472 key = ERR_PTR(-ENOMEM);
477 key = ERR_PTR(-EINTR);
480 } /* end request_key_and_link() */
482 /*****************************************************************************/
485 * - search the process's keyrings
486 * - check the list of keys being created or updated
487 * - call out to userspace for a key if supplementary info was provided
489 struct key *request_key(struct key_type *type,
490 const char *description,
491 const char *callout_info)
493 return request_key_and_link(type, description, callout_info, NULL,
496 } /* end request_key() */
498 EXPORT_SYMBOL(request_key);