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>
22 * wait_on_bit() sleep function for uninterruptible waiting
24 static int key_wait_bit(void *flags
)
31 * wait_on_bit() sleep function for interruptible waiting
33 static int key_wait_bit_intr(void *flags
)
36 return signal_pending(current
) ? -ERESTARTSYS
: 0;
40 * call to complete the construction of a key
42 void complete_request_key(struct key_construction
*cons
, int error
)
44 kenter("{%d,%d},%d", cons
->key
->serial
, cons
->authkey
->serial
, error
);
47 key_negate_and_link(cons
->key
, key_negative_timeout
, NULL
,
50 key_revoke(cons
->authkey
);
53 key_put(cons
->authkey
);
56 EXPORT_SYMBOL(complete_request_key
);
59 * request userspace finish the construction of a key
60 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>"
62 static int call_sbin_request_key(struct key_construction
*cons
,
66 struct task_struct
*tsk
= current
;
67 key_serial_t prkey
, sskey
;
68 struct key
*key
= cons
->key
, *authkey
= cons
->authkey
, *keyring
;
69 char *argv
[9], *envp
[3], uid_str
[12], gid_str
[12];
70 char key_str
[12], keyring_str
[3][12];
74 kenter("{%d},{%d},%s", key
->serial
, authkey
->serial
, op
);
76 /* allocate a new session keyring */
77 sprintf(desc
, "_req.%u", key
->serial
);
79 keyring
= keyring_alloc(desc
, current
->fsuid
, current
->fsgid
, current
,
80 KEY_ALLOC_QUOTA_OVERRUN
, NULL
);
81 if (IS_ERR(keyring
)) {
82 ret
= PTR_ERR(keyring
);
86 /* attach the auth key to the session keyring */
87 ret
= __key_link(keyring
, authkey
);
91 /* record the UID and GID */
92 sprintf(uid_str
, "%d", current
->fsuid
);
93 sprintf(gid_str
, "%d", current
->fsgid
);
95 /* we say which key is under construction */
96 sprintf(key_str
, "%d", key
->serial
);
98 /* we specify the process's default keyrings */
99 sprintf(keyring_str
[0], "%d",
100 tsk
->thread_keyring
? tsk
->thread_keyring
->serial
: 0);
103 if (tsk
->signal
->process_keyring
)
104 prkey
= tsk
->signal
->process_keyring
->serial
;
106 sprintf(keyring_str
[1], "%d", prkey
);
108 if (tsk
->signal
->session_keyring
) {
110 sskey
= rcu_dereference(tsk
->signal
->session_keyring
)->serial
;
113 sskey
= tsk
->user
->session_keyring
->serial
;
116 sprintf(keyring_str
[2], "%d", sskey
);
118 /* set up a minimal environment */
120 envp
[i
++] = "HOME=/";
121 envp
[i
++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
124 /* set up the argument list */
126 argv
[i
++] = "/sbin/request-key";
127 argv
[i
++] = (char *) op
;
131 argv
[i
++] = keyring_str
[0];
132 argv
[i
++] = keyring_str
[1];
133 argv
[i
++] = keyring_str
[2];
137 ret
= call_usermodehelper_keys(argv
[0], argv
, envp
, keyring
,
139 kdebug("usermode -> 0x%x", ret
);
141 /* ret is the exit/wait code */
142 if (test_bit(KEY_FLAG_USER_CONSTRUCT
, &key
->flags
) ||
143 key_validate(key
) < 0)
146 /* ignore any errors from userspace if the key was
155 kleave(" = %d", ret
);
156 complete_request_key(cons
, ret
);
161 * call out to userspace for key construction
162 * - we ignore program failure and go on key status instead
164 static int construct_key(struct key
*key
, const char *callout_info
, void *aux
)
166 struct key_construction
*cons
;
167 request_key_actor_t actor
;
171 kenter("%d,%s,%p", key
->serial
, callout_info
, aux
);
173 cons
= kmalloc(sizeof(*cons
), GFP_KERNEL
);
177 /* allocate an authorisation key */
178 authkey
= request_key_auth_new(key
, callout_info
);
179 if (IS_ERR(authkey
)) {
181 ret
= PTR_ERR(authkey
);
184 cons
->authkey
= key_get(authkey
);
185 cons
->key
= key_get(key
);
188 actor
= call_sbin_request_key
;
189 if (key
->type
->request_key
)
190 actor
= key
->type
->request_key
;
192 ret
= actor(cons
, "create", aux
);
194 /* check that the actor called complete_request_key() prior to
195 * returning an error */
197 !test_bit(KEY_FLAG_REVOKED
, &authkey
->flags
));
201 kleave(" = %d", ret
);
206 * link a key to the appropriate destination keyring
207 * - the caller must hold a write lock on the destination keyring
209 static void construct_key_make_link(struct key
*key
, struct key
*dest_keyring
)
211 struct task_struct
*tsk
= current
;
212 struct key
*drop
= NULL
;
214 kenter("{%d},%p", key
->serial
, dest_keyring
);
216 /* find the appropriate keyring */
218 switch (tsk
->jit_keyring
) {
219 case KEY_REQKEY_DEFL_DEFAULT
:
220 case KEY_REQKEY_DEFL_THREAD_KEYRING
:
221 dest_keyring
= tsk
->thread_keyring
;
225 case KEY_REQKEY_DEFL_PROCESS_KEYRING
:
226 dest_keyring
= tsk
->signal
->process_keyring
;
230 case KEY_REQKEY_DEFL_SESSION_KEYRING
:
232 dest_keyring
= key_get(
233 rcu_dereference(tsk
->signal
->session_keyring
));
240 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING
:
241 dest_keyring
= tsk
->user
->session_keyring
;
244 case KEY_REQKEY_DEFL_USER_KEYRING
:
245 dest_keyring
= tsk
->user
->uid_keyring
;
248 case KEY_REQKEY_DEFL_GROUP_KEYRING
:
254 /* and attach the key to it */
255 __key_link(dest_keyring
, key
);
261 * allocate a new key in under-construction state and attempt to link it in to
262 * the requested place
263 * - may return a key that's already under construction instead
265 static int construct_alloc_key(struct key_type
*type
,
266 const char *description
,
267 struct key
*dest_keyring
,
269 struct key_user
*user
,
275 kenter("%s,%s,,,", type
->name
, description
);
277 mutex_lock(&user
->cons_lock
);
279 key
= key_alloc(type
, description
,
280 current
->fsuid
, current
->fsgid
, current
, KEY_POS_ALL
,
285 set_bit(KEY_FLAG_USER_CONSTRUCT
, &key
->flags
);
288 down_write(&dest_keyring
->sem
);
290 /* attach the key to the destination keyring under lock, but we do need
291 * to do another check just in case someone beat us to it whilst we
292 * waited for locks */
293 mutex_lock(&key_construction_mutex
);
295 key_ref
= search_process_keyrings(type
, description
, type
->match
,
297 if (!IS_ERR(key_ref
))
298 goto key_already_present
;
301 construct_key_make_link(key
, dest_keyring
);
303 mutex_unlock(&key_construction_mutex
);
305 up_write(&dest_keyring
->sem
);
306 mutex_unlock(&user
->cons_lock
);
308 kleave(" = 0 [%d]", key_serial(key
));
312 mutex_unlock(&key_construction_mutex
);
314 up_write(&dest_keyring
->sem
);
315 mutex_unlock(&user
->cons_lock
);
317 *_key
= key
= key_ref_to_ptr(key_ref
);
318 kleave(" = -EINPROGRESS [%d]", key_serial(key
));
322 mutex_unlock(&user
->cons_lock
);
324 kleave(" = %ld", PTR_ERR(key
));
329 * commence key construction
331 static struct key
*construct_key_and_link(struct key_type
*type
,
332 const char *description
,
333 const char *callout_info
,
335 struct key
*dest_keyring
,
338 struct key_user
*user
;
342 user
= key_user_lookup(current
->fsuid
);
344 return ERR_PTR(-ENOMEM
);
346 ret
= construct_alloc_key(type
, description
, dest_keyring
, flags
, user
,
351 ret
= construct_key(key
, callout_info
, aux
);
353 goto construction_failed
;
359 key_negate_and_link(key
, key_negative_timeout
, NULL
, NULL
);
366 * - search the process's keyrings
367 * - check the list of keys being created or updated
368 * - call out to userspace for a key if supplementary info was provided
369 * - cache the key in an appropriate keyring
371 struct key
*request_key_and_link(struct key_type
*type
,
372 const char *description
,
373 const char *callout_info
,
375 struct key
*dest_keyring
,
381 kenter("%s,%s,%s,%p,%p,%lx",
382 type
->name
, description
, callout_info
, aux
,
383 dest_keyring
, flags
);
385 /* search all the process keyrings for a key */
386 key_ref
= search_process_keyrings(type
, description
, type
->match
,
389 if (!IS_ERR(key_ref
)) {
390 key
= key_ref_to_ptr(key_ref
);
391 } else if (PTR_ERR(key_ref
) != -EAGAIN
) {
392 key
= ERR_PTR(PTR_ERR(key_ref
));
394 /* the search failed, but the keyrings were searchable, so we
395 * should consult userspace if we can */
396 key
= ERR_PTR(-ENOKEY
);
400 key
= construct_key_and_link(type
, description
, callout_info
,
401 aux
, dest_keyring
, flags
);
405 kleave(" = %p", key
);
410 * wait for construction of a key to complete
412 int wait_for_key_construction(struct key
*key
, bool intr
)
416 ret
= wait_on_bit(&key
->flags
, KEY_FLAG_USER_CONSTRUCT
,
417 intr
? key_wait_bit_intr
: key_wait_bit
,
418 intr
? TASK_INTERRUPTIBLE
: TASK_UNINTERRUPTIBLE
);
421 return key_validate(key
);
423 EXPORT_SYMBOL(wait_for_key_construction
);
427 * - search the process's keyrings
428 * - check the list of keys being created or updated
429 * - call out to userspace for a key if supplementary info was provided
430 * - waits uninterruptible for creation to complete
432 struct key
*request_key(struct key_type
*type
,
433 const char *description
,
434 const char *callout_info
)
439 key
= request_key_and_link(type
, description
, callout_info
, NULL
,
440 NULL
, KEY_ALLOC_IN_QUOTA
);
442 ret
= wait_for_key_construction(key
, false);
450 EXPORT_SYMBOL(request_key
);
453 * request a key with auxiliary data for the upcaller
454 * - search the process's keyrings
455 * - check the list of keys being created or updated
456 * - call out to userspace for a key if supplementary info was provided
457 * - waits uninterruptible for creation to complete
459 struct key
*request_key_with_auxdata(struct key_type
*type
,
460 const char *description
,
461 const char *callout_info
,
467 key
= request_key_and_link(type
, description
, callout_info
, aux
,
468 NULL
, KEY_ALLOC_IN_QUOTA
);
470 ret
= wait_for_key_construction(key
, false);
478 EXPORT_SYMBOL(request_key_with_auxdata
);
481 * request a key (allow async construction)
482 * - search the process's keyrings
483 * - check the list of keys being created or updated
484 * - call out to userspace for a key if supplementary info was provided
486 struct key
*request_key_async(struct key_type
*type
,
487 const char *description
,
488 const char *callout_info
)
490 return request_key_and_link(type
, description
, callout_info
, NULL
,
491 NULL
, KEY_ALLOC_IN_QUOTA
);
493 EXPORT_SYMBOL(request_key_async
);
496 * request a key with auxiliary data for the upcaller (allow async construction)
497 * - search the process's keyrings
498 * - check the list of keys being created or updated
499 * - call out to userspace for a key if supplementary info was provided
501 struct key
*request_key_async_with_auxdata(struct key_type
*type
,
502 const char *description
,
503 const char *callout_info
,
506 return request_key_and_link(type
, description
, callout_info
, aux
,
507 NULL
, KEY_ALLOC_IN_QUOTA
);
509 EXPORT_SYMBOL(request_key_async_with_auxdata
);