1 /* Request a key from userspace
3 * Copyright (C) 2004-2007 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 <linux/slab.h>
22 #define key_negative_timeout 60 /* default timeout on a negative key's existence */
25 * wait_on_bit() sleep function for uninterruptible waiting
27 static int key_wait_bit(void *flags
)
34 * wait_on_bit() sleep function for interruptible waiting
36 static int key_wait_bit_intr(void *flags
)
39 return signal_pending(current
) ? -ERESTARTSYS
: 0;
43 * call to complete the construction of a key
45 void complete_request_key(struct key_construction
*cons
, int error
)
47 kenter("{%d,%d},%d", cons
->key
->serial
, cons
->authkey
->serial
, error
);
50 key_negate_and_link(cons
->key
, key_negative_timeout
, NULL
,
53 key_revoke(cons
->authkey
);
56 key_put(cons
->authkey
);
59 EXPORT_SYMBOL(complete_request_key
);
62 * request userspace finish the construction of a key
63 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>"
65 static int call_sbin_request_key(struct key_construction
*cons
,
69 const struct cred
*cred
= current_cred();
70 key_serial_t prkey
, sskey
;
71 struct key
*key
= cons
->key
, *authkey
= cons
->authkey
, *keyring
;
72 char *argv
[9], *envp
[3], uid_str
[12], gid_str
[12];
73 char key_str
[12], keyring_str
[3][12];
77 kenter("{%d},{%d},%s", key
->serial
, authkey
->serial
, op
);
79 ret
= install_user_keyrings();
83 /* allocate a new session keyring */
84 sprintf(desc
, "_req.%u", key
->serial
);
86 cred
= get_current_cred();
87 keyring
= keyring_alloc(desc
, cred
->fsuid
, cred
->fsgid
, cred
,
88 KEY_ALLOC_QUOTA_OVERRUN
, NULL
);
90 if (IS_ERR(keyring
)) {
91 ret
= PTR_ERR(keyring
);
95 /* attach the auth key to the session keyring */
96 ret
= __key_link(keyring
, authkey
);
100 /* record the UID and GID */
101 sprintf(uid_str
, "%d", cred
->fsuid
);
102 sprintf(gid_str
, "%d", cred
->fsgid
);
104 /* we say which key is under construction */
105 sprintf(key_str
, "%d", key
->serial
);
107 /* we specify the process's default keyrings */
108 sprintf(keyring_str
[0], "%d",
109 cred
->thread_keyring
? cred
->thread_keyring
->serial
: 0);
112 if (cred
->tgcred
->process_keyring
)
113 prkey
= cred
->tgcred
->process_keyring
->serial
;
115 if (cred
->tgcred
->session_keyring
)
116 sskey
= rcu_dereference(cred
->tgcred
->session_keyring
)->serial
;
118 sskey
= cred
->user
->session_keyring
->serial
;
120 sprintf(keyring_str
[2], "%d", sskey
);
122 /* set up a minimal environment */
124 envp
[i
++] = "HOME=/";
125 envp
[i
++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
128 /* set up the argument list */
130 argv
[i
++] = "/sbin/request-key";
131 argv
[i
++] = (char *) op
;
135 argv
[i
++] = keyring_str
[0];
136 argv
[i
++] = keyring_str
[1];
137 argv
[i
++] = keyring_str
[2];
141 ret
= call_usermodehelper_keys(argv
[0], argv
, envp
, keyring
,
143 kdebug("usermode -> 0x%x", ret
);
145 /* ret is the exit/wait code */
146 if (test_bit(KEY_FLAG_USER_CONSTRUCT
, &key
->flags
) ||
147 key_validate(key
) < 0)
150 /* ignore any errors from userspace if the key was
159 complete_request_key(cons
, ret
);
160 kleave(" = %d", ret
);
165 * call out to userspace for key construction
166 * - we ignore program failure and go on key status instead
168 static int construct_key(struct key
*key
, const void *callout_info
,
169 size_t callout_len
, void *aux
,
170 struct key
*dest_keyring
)
172 struct key_construction
*cons
;
173 request_key_actor_t actor
;
177 kenter("%d,%p,%zu,%p", key
->serial
, callout_info
, callout_len
, aux
);
179 cons
= kmalloc(sizeof(*cons
), GFP_KERNEL
);
183 /* allocate an authorisation key */
184 authkey
= request_key_auth_new(key
, callout_info
, callout_len
,
186 if (IS_ERR(authkey
)) {
188 ret
= PTR_ERR(authkey
);
191 cons
->authkey
= key_get(authkey
);
192 cons
->key
= key_get(key
);
195 actor
= call_sbin_request_key
;
196 if (key
->type
->request_key
)
197 actor
= key
->type
->request_key
;
199 ret
= actor(cons
, "create", aux
);
201 /* check that the actor called complete_request_key() prior to
202 * returning an error */
204 !test_bit(KEY_FLAG_REVOKED
, &authkey
->flags
));
208 kleave(" = %d", ret
);
213 * get the appropriate destination keyring for the request
214 * - we return whatever keyring we select with an extra reference upon it which
215 * the caller must release
217 static void construct_get_dest_keyring(struct key
**_dest_keyring
)
219 struct request_key_auth
*rka
;
220 const struct cred
*cred
= current_cred();
221 struct key
*dest_keyring
= *_dest_keyring
, *authkey
;
223 kenter("%p", dest_keyring
);
225 /* find the appropriate keyring */
227 /* the caller supplied one */
228 key_get(dest_keyring
);
230 /* use a default keyring; falling through the cases until we
231 * find one that we actually have */
232 switch (cred
->jit_keyring
) {
233 case KEY_REQKEY_DEFL_DEFAULT
:
234 case KEY_REQKEY_DEFL_REQUESTOR_KEYRING
:
235 if (cred
->request_key_auth
) {
236 authkey
= cred
->request_key_auth
;
237 down_read(&authkey
->sem
);
238 rka
= authkey
->payload
.data
;
239 if (!test_bit(KEY_FLAG_REVOKED
,
242 key_get(rka
->dest_keyring
);
243 up_read(&authkey
->sem
);
248 case KEY_REQKEY_DEFL_THREAD_KEYRING
:
249 dest_keyring
= key_get(cred
->thread_keyring
);
253 case KEY_REQKEY_DEFL_PROCESS_KEYRING
:
254 dest_keyring
= key_get(cred
->tgcred
->process_keyring
);
258 case KEY_REQKEY_DEFL_SESSION_KEYRING
:
260 dest_keyring
= key_get(
261 rcu_dereference(cred
->tgcred
->session_keyring
));
267 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING
:
269 key_get(cred
->user
->session_keyring
);
272 case KEY_REQKEY_DEFL_USER_KEYRING
:
273 dest_keyring
= key_get(cred
->user
->uid_keyring
);
276 case KEY_REQKEY_DEFL_GROUP_KEYRING
:
282 *_dest_keyring
= dest_keyring
;
283 kleave(" [dk %d]", key_serial(dest_keyring
));
288 * allocate a new key in under-construction state and attempt to link it in to
289 * the requested place
290 * - may return a key that's already under construction instead
292 static int construct_alloc_key(struct key_type
*type
,
293 const char *description
,
294 struct key
*dest_keyring
,
296 struct key_user
*user
,
299 const struct cred
*cred
= current_cred();
303 kenter("%s,%s,,,", type
->name
, description
);
305 mutex_lock(&user
->cons_lock
);
307 key
= key_alloc(type
, description
, cred
->fsuid
, cred
->fsgid
, cred
,
312 set_bit(KEY_FLAG_USER_CONSTRUCT
, &key
->flags
);
314 down_write(&dest_keyring
->sem
);
316 /* attach the key to the destination keyring under lock, but we do need
317 * to do another check just in case someone beat us to it whilst we
318 * waited for locks */
319 mutex_lock(&key_construction_mutex
);
321 key_ref
= search_process_keyrings(type
, description
, type
->match
, cred
);
322 if (!IS_ERR(key_ref
))
323 goto key_already_present
;
325 __key_link(dest_keyring
, key
);
327 mutex_unlock(&key_construction_mutex
);
328 up_write(&dest_keyring
->sem
);
329 mutex_unlock(&user
->cons_lock
);
331 kleave(" = 0 [%d]", key_serial(key
));
335 mutex_unlock(&key_construction_mutex
);
337 up_write(&dest_keyring
->sem
);
338 mutex_unlock(&user
->cons_lock
);
340 *_key
= key
= key_ref_to_ptr(key_ref
);
341 kleave(" = -EINPROGRESS [%d]", key_serial(key
));
345 mutex_unlock(&user
->cons_lock
);
347 kleave(" = %ld", PTR_ERR(key
));
352 * commence key construction
354 static struct key
*construct_key_and_link(struct key_type
*type
,
355 const char *description
,
356 const char *callout_info
,
359 struct key
*dest_keyring
,
362 struct key_user
*user
;
368 user
= key_user_lookup(current_fsuid());
370 return ERR_PTR(-ENOMEM
);
372 construct_get_dest_keyring(&dest_keyring
);
374 ret
= construct_alloc_key(type
, description
, dest_keyring
, flags
, user
,
379 ret
= construct_key(key
, callout_info
, callout_len
, aux
,
382 kdebug("cons failed");
383 goto construction_failed
;
387 key_put(dest_keyring
);
388 kleave(" = key %d", key_serial(key
));
392 key_negate_and_link(key
, key_negative_timeout
, NULL
, NULL
);
394 key_put(dest_keyring
);
395 kleave(" = %d", ret
);
401 * - search the process's keyrings
402 * - check the list of keys being created or updated
403 * - call out to userspace for a key if supplementary info was provided
404 * - cache the key in an appropriate keyring
406 struct key
*request_key_and_link(struct key_type
*type
,
407 const char *description
,
408 const void *callout_info
,
411 struct key
*dest_keyring
,
414 const struct cred
*cred
= current_cred();
418 kenter("%s,%s,%p,%zu,%p,%p,%lx",
419 type
->name
, description
, callout_info
, callout_len
, aux
,
420 dest_keyring
, flags
);
422 /* search all the process keyrings for a key */
423 key_ref
= search_process_keyrings(type
, description
, type
->match
,
426 if (!IS_ERR(key_ref
)) {
427 key
= key_ref_to_ptr(key_ref
);
428 } else if (PTR_ERR(key_ref
) != -EAGAIN
) {
429 key
= ERR_CAST(key_ref
);
431 /* the search failed, but the keyrings were searchable, so we
432 * should consult userspace if we can */
433 key
= ERR_PTR(-ENOKEY
);
437 key
= construct_key_and_link(type
, description
, callout_info
,
438 callout_len
, aux
, dest_keyring
,
443 kleave(" = %p", key
);
448 * wait for construction of a key to complete
450 int wait_for_key_construction(struct key
*key
, bool intr
)
454 ret
= wait_on_bit(&key
->flags
, KEY_FLAG_USER_CONSTRUCT
,
455 intr
? key_wait_bit_intr
: key_wait_bit
,
456 intr
? TASK_INTERRUPTIBLE
: TASK_UNINTERRUPTIBLE
);
459 return key_validate(key
);
461 EXPORT_SYMBOL(wait_for_key_construction
);
465 * - search the process's keyrings
466 * - check the list of keys being created or updated
467 * - call out to userspace for a key if supplementary info was provided
468 * - waits uninterruptible for creation to complete
470 struct key
*request_key(struct key_type
*type
,
471 const char *description
,
472 const char *callout_info
)
475 size_t callout_len
= 0;
479 callout_len
= strlen(callout_info
);
480 key
= request_key_and_link(type
, description
, callout_info
, callout_len
,
481 NULL
, NULL
, KEY_ALLOC_IN_QUOTA
);
483 ret
= wait_for_key_construction(key
, false);
491 EXPORT_SYMBOL(request_key
);
494 * request a key with auxiliary data for the upcaller
495 * - search the process's keyrings
496 * - check the list of keys being created or updated
497 * - call out to userspace for a key if supplementary info was provided
498 * - waits uninterruptible for creation to complete
500 struct key
*request_key_with_auxdata(struct key_type
*type
,
501 const char *description
,
502 const void *callout_info
,
509 key
= request_key_and_link(type
, description
, callout_info
, callout_len
,
510 aux
, NULL
, KEY_ALLOC_IN_QUOTA
);
512 ret
= wait_for_key_construction(key
, false);
520 EXPORT_SYMBOL(request_key_with_auxdata
);
523 * request a key (allow async construction)
524 * - search the process's keyrings
525 * - check the list of keys being created or updated
526 * - call out to userspace for a key if supplementary info was provided
528 struct key
*request_key_async(struct key_type
*type
,
529 const char *description
,
530 const void *callout_info
,
533 return request_key_and_link(type
, description
, callout_info
,
534 callout_len
, NULL
, NULL
,
537 EXPORT_SYMBOL(request_key_async
);
540 * request a key with auxiliary data for the upcaller (allow async construction)
541 * - search the process's keyrings
542 * - check the list of keys being created or updated
543 * - call out to userspace for a key if supplementary info was provided
545 struct key
*request_key_async_with_auxdata(struct key_type
*type
,
546 const char *description
,
547 const void *callout_info
,
551 return request_key_and_link(type
, description
, callout_info
,
552 callout_len
, aux
, NULL
, KEY_ALLOC_IN_QUOTA
);
554 EXPORT_SYMBOL(request_key_async_with_auxdata
);