blob: 2da4404276f0f5a68b0619dd6aa1d06a0fdb7198 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells76181c12007-10-16 23:29:46 -07002/* Request a key from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David Howells76181c12007-10-16 23:29:46 -07004 * Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Written by David Howells (dhowells@redhat.com)
6 *
Kees Cook3db38ed2017-05-13 04:51:52 -07007 * See Documentation/security/keys/request-key.rst
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Paul Gortmaker876979c2018-12-09 15:36:29 -050010#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/sched.h>
12#include <linux/kmod.h>
13#include <linux/err.h>
David Howells3e301482005-06-23 22:00:56 -070014#include <linux/keyctl.h>
Robert P. J. Dayfdb89bc2008-04-29 01:01:32 -070015#include <linux/slab.h>
David Howellsa58946c2019-06-26 21:02:33 +010016#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "internal.h"
David Howells822ad642019-02-14 16:20:25 +000018#include <keys/request_key_auth-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
David Howellse9e349b2008-11-14 10:39:13 +110020#define key_negative_timeout 60 /* default timeout on a negative key's existence */
21
David Howells7743c482019-06-19 16:10:15 +010022static struct key *check_cached_key(struct keyring_search_context *ctx)
23{
24#ifdef CONFIG_KEYS_REQUEST_CACHE
25 struct key *key = current->cached_requested_key;
26
27 if (key &&
28 ctx->match_data.cmp(key, &ctx->match_data) &&
29 !(key->flags & ((1 << KEY_FLAG_INVALIDATED) |
30 (1 << KEY_FLAG_REVOKED))))
31 return key_get(key);
32#endif
33 return NULL;
34}
35
36static void cache_requested_key(struct key *key)
37{
38#ifdef CONFIG_KEYS_REQUEST_CACHE
39 struct task_struct *t = current;
40
41 key_put(t->cached_requested_key);
42 t->cached_requested_key = key_get(key);
43 set_tsk_thread_flag(t, TIF_NOTIFY_RESUME);
44#endif
45}
46
David Howells973c9f42011-01-20 16:38:33 +000047/**
48 * complete_request_key - Complete the construction of a key.
David Howells9fd16532019-05-22 13:30:56 +010049 * @authkey: The authorisation key.
David Howells973c9f42011-01-20 16:38:33 +000050 * @error: The success or failute of the construction.
51 *
52 * Complete the attempt to construct a key. The key will be negated
53 * if an error is indicated. The authorisation key will be revoked
54 * unconditionally.
David Howells76181c12007-10-16 23:29:46 -070055 */
David Howells822ad642019-02-14 16:20:25 +000056void complete_request_key(struct key *authkey, int error)
David Howells76181c12007-10-16 23:29:46 -070057{
David Howells822ad642019-02-14 16:20:25 +000058 struct request_key_auth *rka = get_request_key_auth(authkey);
59 struct key *key = rka->target_key;
60
61 kenter("%d{%d},%d", authkey->serial, key->serial, error);
David Howells76181c12007-10-16 23:29:46 -070062
63 if (error < 0)
David Howells822ad642019-02-14 16:20:25 +000064 key_negate_and_link(key, key_negative_timeout, NULL, authkey);
David Howells76181c12007-10-16 23:29:46 -070065 else
David Howells822ad642019-02-14 16:20:25 +000066 key_revoke(authkey);
David Howells76181c12007-10-16 23:29:46 -070067}
68EXPORT_SYMBOL(complete_request_key);
69
David Howells973c9f42011-01-20 16:38:33 +000070/*
71 * Initialise a usermode helper that is going to have a specific session
72 * keyring.
73 *
74 * This is called in context of freshly forked kthread before kernel_execve(),
75 * so we can simply install the desired session_keyring at this point.
76 */
David Howells87966992011-06-17 11:25:59 +010077static int umh_keys_init(struct subprocess_info *info, struct cred *cred)
Oleg Nesterov685bfd22010-05-26 14:43:00 -070078{
Oleg Nesterov685bfd22010-05-26 14:43:00 -070079 struct key *keyring = info->data;
David Howells973c9f42011-01-20 16:38:33 +000080
Oleg Nesterov685bfd22010-05-26 14:43:00 -070081 return install_session_keyring_to_cred(cred, keyring);
82}
83
David Howells973c9f42011-01-20 16:38:33 +000084/*
85 * Clean up a usermode helper with session keyring.
86 */
Oleg Nesterov685bfd22010-05-26 14:43:00 -070087static void umh_keys_cleanup(struct subprocess_info *info)
88{
89 struct key *keyring = info->data;
90 key_put(keyring);
91}
92
David Howells973c9f42011-01-20 16:38:33 +000093/*
94 * Call a usermode helper with a specific session keyring.
95 */
Greg Kroah-Hartman377e7a22016-12-11 18:00:43 +010096static int call_usermodehelper_keys(const char *path, char **argv, char **envp,
Oleg Nesterov9d944ef2012-03-23 15:02:48 -070097 struct key *session_keyring, int wait)
Oleg Nesterov685bfd22010-05-26 14:43:00 -070098{
Lucas De Marchi93997f62013-04-30 15:28:05 -070099 struct subprocess_info *info;
100
101 info = call_usermodehelper_setup(path, argv, envp, GFP_KERNEL,
102 umh_keys_init, umh_keys_cleanup,
103 session_keyring);
104 if (!info)
105 return -ENOMEM;
106
107 key_get(session_keyring);
108 return call_usermodehelper_exec(info, wait);
Oleg Nesterov685bfd22010-05-26 14:43:00 -0700109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
David Howells973c9f42011-01-20 16:38:33 +0000112 * Request userspace finish the construction of a key
David Howellsb5f545c2006-01-08 01:02:47 -0800113 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
David Howells822ad642019-02-14 16:20:25 +0000115static int call_sbin_request_key(struct key *authkey, void *aux)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Greg Kroah-Hartman377e7a22016-12-11 18:00:43 +0100117 static char const request_key[] = "/sbin/request-key";
David Howells822ad642019-02-14 16:20:25 +0000118 struct request_key_auth *rka = get_request_key_auth(authkey);
David Howells86a264a2008-11-14 10:39:18 +1100119 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 key_serial_t prkey, sskey;
David Howells0f44e4d2019-06-26 21:02:32 +0100121 struct key *key = rka->target_key, *keyring, *session, *user_session;
David Howellsb5f545c2006-01-08 01:02:47 -0800122 char *argv[9], *envp[3], uid_str[12], gid_str[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 char key_str[12], keyring_str[3][12];
David Howellsb5f545c2006-01-08 01:02:47 -0800124 char desc[20];
David Howells3e301482005-06-23 22:00:56 -0700125 int ret, i;
126
David Howells822ad642019-02-14 16:20:25 +0000127 kenter("{%d},{%d},%s", key->serial, authkey->serial, rka->op);
David Howells3e301482005-06-23 22:00:56 -0700128
David Howells0f44e4d2019-06-26 21:02:32 +0100129 ret = look_up_user_keyrings(NULL, &user_session);
David Howells8bbf49762008-11-14 10:39:14 +1100130 if (ret < 0)
David Howells0f44e4d2019-06-26 21:02:32 +0100131 goto error_us;
David Howells8bbf49762008-11-14 10:39:14 +1100132
David Howellsb5f545c2006-01-08 01:02:47 -0800133 /* allocate a new session keyring */
134 sprintf(desc, "_req.%u", key->serial);
135
David Howellsd84f4f92008-11-14 10:39:23 +1100136 cred = get_current_cred();
137 keyring = keyring_alloc(desc, cred->fsuid, cred->fsgid, cred,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700138 KEY_POS_ALL | KEY_USR_VIEW | KEY_USR_READ,
139 KEY_ALLOC_QUOTA_OVERRUN, NULL, NULL);
David Howellsd84f4f92008-11-14 10:39:23 +1100140 put_cred(cred);
David Howellsb5f545c2006-01-08 01:02:47 -0800141 if (IS_ERR(keyring)) {
142 ret = PTR_ERR(keyring);
143 goto error_alloc;
David Howells3e301482005-06-23 22:00:56 -0700144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
David Howellsb5f545c2006-01-08 01:02:47 -0800146 /* attach the auth key to the session keyring */
David Howells896903c2010-04-30 14:32:23 +0100147 ret = key_link(keyring, authkey);
David Howellsb5f545c2006-01-08 01:02:47 -0800148 if (ret < 0)
149 goto error_link;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /* record the UID and GID */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800152 sprintf(uid_str, "%d", from_kuid(&init_user_ns, cred->fsuid));
153 sprintf(gid_str, "%d", from_kgid(&init_user_ns, cred->fsgid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* we say which key is under construction */
156 sprintf(key_str, "%d", key->serial);
157
158 /* we specify the process's default keyrings */
159 sprintf(keyring_str[0], "%d",
David Howellsd84f4f92008-11-14 10:39:23 +1100160 cred->thread_keyring ? cred->thread_keyring->serial : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 prkey = 0;
David Howells3a505972012-10-02 19:24:29 +0100163 if (cred->process_keyring)
164 prkey = cred->process_keyring->serial;
Justin P. Mattock5ad18a02010-06-30 10:39:11 +0100165 sprintf(keyring_str[1], "%d", prkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Jann Horn5c7e3722019-03-27 16:39:38 +0100167 session = cred->session_keyring;
David Howells93b4a442010-04-23 13:18:00 -0400168 if (!session)
David Howells0f44e4d2019-06-26 21:02:32 +0100169 session = user_session;
David Howells93b4a442010-04-23 13:18:00 -0400170 sskey = session->serial;
David Howells3e301482005-06-23 22:00:56 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 sprintf(keyring_str[2], "%d", sskey);
173
174 /* set up a minimal environment */
175 i = 0;
176 envp[i++] = "HOME=/";
177 envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
178 envp[i] = NULL;
179
180 /* set up the argument list */
181 i = 0;
Greg Kroah-Hartman377e7a22016-12-11 18:00:43 +0100182 argv[i++] = (char *)request_key;
David Howells822ad642019-02-14 16:20:25 +0000183 argv[i++] = (char *)rka->op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 argv[i++] = key_str;
185 argv[i++] = uid_str;
186 argv[i++] = gid_str;
187 argv[i++] = keyring_str[0];
188 argv[i++] = keyring_str[1];
189 argv[i++] = keyring_str[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 argv[i] = NULL;
191
192 /* do it */
Greg Kroah-Hartman377e7a22016-12-11 18:00:43 +0100193 ret = call_usermodehelper_keys(request_key, argv, envp, keyring,
Jeremy Fitzhardinge86313c42007-07-17 18:37:03 -0700194 UMH_WAIT_PROC);
David Howells76181c12007-10-16 23:29:46 -0700195 kdebug("usermode -> 0x%x", ret);
196 if (ret >= 0) {
197 /* ret is the exit/wait code */
198 if (test_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags) ||
199 key_validate(key) < 0)
200 ret = -ENOKEY;
201 else
202 /* ignore any errors from userspace if the key was
203 * instantiated */
204 ret = 0;
205 }
David Howells3e301482005-06-23 22:00:56 -0700206
David Howellsb5f545c2006-01-08 01:02:47 -0800207error_link:
208 key_put(keyring);
David Howells3e301482005-06-23 22:00:56 -0700209
David Howellsb5f545c2006-01-08 01:02:47 -0800210error_alloc:
David Howells0f44e4d2019-06-26 21:02:32 +0100211 key_put(user_session);
212error_us:
David Howells822ad642019-02-14 16:20:25 +0000213 complete_request_key(authkey, ret);
David Howellsd84f4f92008-11-14 10:39:23 +1100214 kleave(" = %d", ret);
David Howells3e301482005-06-23 22:00:56 -0700215 return ret;
David Howells76181c12007-10-16 23:29:46 -0700216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
David Howells973c9f42011-01-20 16:38:33 +0000219 * Call out to userspace for key construction.
220 *
221 * Program failure is ignored in favour of key status.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
David Howells4a38e122008-04-29 01:01:24 -0700223static int construct_key(struct key *key, const void *callout_info,
David Howells8bbf49762008-11-14 10:39:14 +1100224 size_t callout_len, void *aux,
225 struct key *dest_keyring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
David Howellsb5f545c2006-01-08 01:02:47 -0800227 request_key_actor_t actor;
David Howells76181c12007-10-16 23:29:46 -0700228 struct key *authkey;
229 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
David Howells4a38e122008-04-29 01:01:24 -0700231 kenter("%d,%p,%zu,%p", key->serial, callout_info, callout_len, aux);
David Howells3e301482005-06-23 22:00:56 -0700232
David Howellsb5f545c2006-01-08 01:02:47 -0800233 /* allocate an authorisation key */
David Howells822ad642019-02-14 16:20:25 +0000234 authkey = request_key_auth_new(key, "create", callout_info, callout_len,
David Howells8bbf49762008-11-14 10:39:14 +1100235 dest_keyring);
David Howells822ad642019-02-14 16:20:25 +0000236 if (IS_ERR(authkey))
237 return PTR_ERR(authkey);
David Howells76181c12007-10-16 23:29:46 -0700238
David Howells822ad642019-02-14 16:20:25 +0000239 /* Make the call */
240 actor = call_sbin_request_key;
241 if (key->type->request_key)
242 actor = key->type->request_key;
David Howells76181c12007-10-16 23:29:46 -0700243
David Howells822ad642019-02-14 16:20:25 +0000244 ret = actor(authkey, aux);
David Howells76181c12007-10-16 23:29:46 -0700245
David Howells822ad642019-02-14 16:20:25 +0000246 /* check that the actor called complete_request_key() prior to
247 * returning an error */
248 WARN_ON(ret < 0 &&
David Howellsa09003b2019-06-19 16:10:15 +0100249 !test_bit(KEY_FLAG_INVALIDATED, &authkey->flags));
David Howellsb5f545c2006-01-08 01:02:47 -0800250
David Howells822ad642019-02-14 16:20:25 +0000251 key_put(authkey);
David Howells76181c12007-10-16 23:29:46 -0700252 kleave(" = %d", ret);
253 return ret;
254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*
David Howells973c9f42011-01-20 16:38:33 +0000257 * Get the appropriate destination keyring for the request.
258 *
259 * The keyring selected is returned with an extra reference upon it which the
260 * caller must release.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 */
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000262static int construct_get_dest_keyring(struct key **_dest_keyring)
David Howells3e301482005-06-23 22:00:56 -0700263{
David Howells8bbf49762008-11-14 10:39:14 +1100264 struct request_key_auth *rka;
David Howellsbb952bb2008-11-14 10:39:20 +1100265 const struct cred *cred = current_cred();
David Howells8bbf49762008-11-14 10:39:14 +1100266 struct key *dest_keyring = *_dest_keyring, *authkey;
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000267 int ret;
David Howells3e301482005-06-23 22:00:56 -0700268
David Howells8bbf49762008-11-14 10:39:14 +1100269 kenter("%p", dest_keyring);
David Howells3e301482005-06-23 22:00:56 -0700270
271 /* find the appropriate keyring */
David Howells8bbf49762008-11-14 10:39:14 +1100272 if (dest_keyring) {
273 /* the caller supplied one */
274 key_get(dest_keyring);
275 } else {
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000276 bool do_perm_check = true;
277
David Howells8bbf49762008-11-14 10:39:14 +1100278 /* use a default keyring; falling through the cases until we
279 * find one that we actually have */
David Howellsbb952bb2008-11-14 10:39:20 +1100280 switch (cred->jit_keyring) {
David Howells3e301482005-06-23 22:00:56 -0700281 case KEY_REQKEY_DEFL_DEFAULT:
David Howells8bbf49762008-11-14 10:39:14 +1100282 case KEY_REQKEY_DEFL_REQUESTOR_KEYRING:
David Howellsbb952bb2008-11-14 10:39:20 +1100283 if (cred->request_key_auth) {
284 authkey = cred->request_key_auth;
David Howells8bbf49762008-11-14 10:39:14 +1100285 down_read(&authkey->sem);
David Howells822ad642019-02-14 16:20:25 +0000286 rka = get_request_key_auth(authkey);
David Howells8bbf49762008-11-14 10:39:14 +1100287 if (!test_bit(KEY_FLAG_REVOKED,
288 &authkey->flags))
289 dest_keyring =
290 key_get(rka->dest_keyring);
291 up_read(&authkey->sem);
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000292 if (dest_keyring) {
293 do_perm_check = false;
David Howells8bbf49762008-11-14 10:39:14 +1100294 break;
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000295 }
David Howells8bbf49762008-11-14 10:39:14 +1100296 }
297
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500298 fallthrough;
David Howells3e301482005-06-23 22:00:56 -0700299 case KEY_REQKEY_DEFL_THREAD_KEYRING:
David Howellsbb952bb2008-11-14 10:39:20 +1100300 dest_keyring = key_get(cred->thread_keyring);
David Howells3e301482005-06-23 22:00:56 -0700301 if (dest_keyring)
302 break;
303
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500304 fallthrough;
David Howells3e301482005-06-23 22:00:56 -0700305 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
David Howells3a505972012-10-02 19:24:29 +0100306 dest_keyring = key_get(cred->process_keyring);
David Howells3e301482005-06-23 22:00:56 -0700307 if (dest_keyring)
308 break;
309
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500310 fallthrough;
David Howells3e301482005-06-23 22:00:56 -0700311 case KEY_REQKEY_DEFL_SESSION_KEYRING:
Jann Horn5c7e3722019-03-27 16:39:38 +0100312 dest_keyring = key_get(cred->session_keyring);
David Howells3e301482005-06-23 22:00:56 -0700313
314 if (dest_keyring)
315 break;
316
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500317 fallthrough;
David Howells3e301482005-06-23 22:00:56 -0700318 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
David Howells0f44e4d2019-06-26 21:02:32 +0100319 ret = look_up_user_keyrings(NULL, &dest_keyring);
320 if (ret < 0)
321 return ret;
David Howells3e301482005-06-23 22:00:56 -0700322 break;
323
324 case KEY_REQKEY_DEFL_USER_KEYRING:
David Howells0f44e4d2019-06-26 21:02:32 +0100325 ret = look_up_user_keyrings(&dest_keyring, NULL);
326 if (ret < 0)
327 return ret;
David Howells3e301482005-06-23 22:00:56 -0700328 break;
329
330 case KEY_REQKEY_DEFL_GROUP_KEYRING:
331 default:
332 BUG();
333 }
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000334
335 /*
336 * Require Write permission on the keyring. This is essential
337 * because the default keyring may be the session keyring, and
338 * joining a keyring only requires Search permission.
339 *
340 * However, this check is skipped for the "requestor keyring" so
341 * that /sbin/request-key can itself use request_key() to add
342 * keys to the original requestor's destination keyring.
343 */
344 if (dest_keyring && do_perm_check) {
345 ret = key_permission(make_key_ref(dest_keyring, 1),
346 KEY_NEED_WRITE);
347 if (ret) {
348 key_put(dest_keyring);
349 return ret;
350 }
351 }
David Howells3e301482005-06-23 22:00:56 -0700352 }
353
David Howells8bbf49762008-11-14 10:39:14 +1100354 *_dest_keyring = dest_keyring;
355 kleave(" [dk %d]", key_serial(dest_keyring));
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000356 return 0;
David Howells76181c12007-10-16 23:29:46 -0700357}
David Howells3e301482005-06-23 22:00:56 -0700358
David Howells76181c12007-10-16 23:29:46 -0700359/*
David Howells973c9f42011-01-20 16:38:33 +0000360 * Allocate a new key in under-construction state and attempt to link it in to
361 * the requested keyring.
362 *
363 * May return a key that's already under construction instead if there was a
364 * race between two thread calling request_key().
David Howells76181c12007-10-16 23:29:46 -0700365 */
David Howells4bdf0bc2013-09-24 10:35:15 +0100366static int construct_alloc_key(struct keyring_search_context *ctx,
David Howells76181c12007-10-16 23:29:46 -0700367 struct key *dest_keyring,
368 unsigned long flags,
369 struct key_user *user,
370 struct key **_key)
371{
David Howellsdf593ee2019-05-30 11:37:39 +0100372 struct assoc_array_edit *edit = NULL;
David Howells76181c12007-10-16 23:29:46 -0700373 struct key *key;
Linus Torvalds028db3e2019-07-10 18:43:43 -0700374 key_perm_t perm;
David Howells76181c12007-10-16 23:29:46 -0700375 key_ref_t key_ref;
David Howells2b9e4682010-04-30 14:32:34 +0100376 int ret;
David Howells3e301482005-06-23 22:00:56 -0700377
David Howells4bdf0bc2013-09-24 10:35:15 +0100378 kenter("%s,%s,,,",
379 ctx->index_key.type->name, ctx->index_key.description);
David Howells76181c12007-10-16 23:29:46 -0700380
David Howellsf70e2e02010-04-30 14:32:39 +0100381 *_key = NULL;
David Howells76181c12007-10-16 23:29:46 -0700382 mutex_lock(&user->cons_lock);
383
Linus Torvalds028db3e2019-07-10 18:43:43 -0700384 perm = KEY_POS_VIEW | KEY_POS_SEARCH | KEY_POS_LINK | KEY_POS_SETATTR;
385 perm |= KEY_USR_VIEW;
386 if (ctx->index_key.type->read)
387 perm |= KEY_POS_READ;
388 if (ctx->index_key.type == &key_type_keyring ||
389 ctx->index_key.type->update)
390 perm |= KEY_POS_WRITE;
391
David Howells4bdf0bc2013-09-24 10:35:15 +0100392 key = key_alloc(ctx->index_key.type, ctx->index_key.description,
393 ctx->cred->fsuid, ctx->cred->fsgid, ctx->cred,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700394 perm, flags, NULL);
David Howells76181c12007-10-16 23:29:46 -0700395 if (IS_ERR(key))
396 goto alloc_failed;
397
398 set_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
399
David Howellsf70e2e02010-04-30 14:32:39 +0100400 if (dest_keyring) {
David Howellsdf593ee2019-05-30 11:37:39 +0100401 ret = __key_link_lock(dest_keyring, &ctx->index_key);
402 if (ret < 0)
403 goto link_lock_failed;
David Howellsb2a4df22013-09-24 10:35:18 +0100404 ret = __key_link_begin(dest_keyring, &ctx->index_key, &edit);
David Howellsf70e2e02010-04-30 14:32:39 +0100405 if (ret < 0)
406 goto link_prealloc_failed;
407 }
David Howells76181c12007-10-16 23:29:46 -0700408
409 /* attach the key to the destination keyring under lock, but we do need
410 * to do another check just in case someone beat us to it whilst we
411 * waited for locks */
412 mutex_lock(&key_construction_mutex);
413
David Howellse59428f2019-06-19 16:10:15 +0100414 rcu_read_lock();
415 key_ref = search_process_keyrings_rcu(ctx);
416 rcu_read_unlock();
David Howells76181c12007-10-16 23:29:46 -0700417 if (!IS_ERR(key_ref))
418 goto key_already_present;
419
David Howells34574dd2009-04-09 17:14:05 +0100420 if (dest_keyring)
David Howellsf7e47672020-01-14 17:07:11 +0000421 __key_link(dest_keyring, key, &edit);
David Howells76181c12007-10-16 23:29:46 -0700422
423 mutex_unlock(&key_construction_mutex);
David Howells34574dd2009-04-09 17:14:05 +0100424 if (dest_keyring)
David Howellsb2a4df22013-09-24 10:35:18 +0100425 __key_link_end(dest_keyring, &ctx->index_key, edit);
David Howells76181c12007-10-16 23:29:46 -0700426 mutex_unlock(&user->cons_lock);
427 *_key = key;
428 kleave(" = 0 [%d]", key_serial(key));
429 return 0;
430
David Howells2b9e4682010-04-30 14:32:34 +0100431 /* the key is now present - we tell the caller that we found it by
432 * returning -EINPROGRESS */
David Howells76181c12007-10-16 23:29:46 -0700433key_already_present:
David Howellsf70e2e02010-04-30 14:32:39 +0100434 key_put(key);
David Howells76181c12007-10-16 23:29:46 -0700435 mutex_unlock(&key_construction_mutex);
David Howellsf70e2e02010-04-30 14:32:39 +0100436 key = key_ref_to_ptr(key_ref);
David Howells03449cd2010-04-27 13:13:08 -0700437 if (dest_keyring) {
David Howellsf70e2e02010-04-30 14:32:39 +0100438 ret = __key_link_check_live_key(dest_keyring, key);
439 if (ret == 0)
David Howellsf7e47672020-01-14 17:07:11 +0000440 __key_link(dest_keyring, key, &edit);
David Howellsb2a4df22013-09-24 10:35:18 +0100441 __key_link_end(dest_keyring, &ctx->index_key, edit);
David Howellsf70e2e02010-04-30 14:32:39 +0100442 if (ret < 0)
443 goto link_check_failed;
David Howells03449cd2010-04-27 13:13:08 -0700444 }
David Howells76181c12007-10-16 23:29:46 -0700445 mutex_unlock(&user->cons_lock);
David Howellsf70e2e02010-04-30 14:32:39 +0100446 *_key = key;
David Howells76181c12007-10-16 23:29:46 -0700447 kleave(" = -EINPROGRESS [%d]", key_serial(key));
448 return -EINPROGRESS;
449
David Howellsf70e2e02010-04-30 14:32:39 +0100450link_check_failed:
451 mutex_unlock(&user->cons_lock);
452 key_put(key);
453 kleave(" = %d [linkcheck]", ret);
454 return ret;
455
456link_prealloc_failed:
David Howellsdf593ee2019-05-30 11:37:39 +0100457 __key_link_end(dest_keyring, &ctx->index_key, edit);
458link_lock_failed:
David Howellsf70e2e02010-04-30 14:32:39 +0100459 mutex_unlock(&user->cons_lock);
David Jefferyd0709f12015-02-12 16:45:31 +0000460 key_put(key);
David Howellsf70e2e02010-04-30 14:32:39 +0100461 kleave(" = %d [prelink]", ret);
462 return ret;
463
David Howells76181c12007-10-16 23:29:46 -0700464alloc_failed:
465 mutex_unlock(&user->cons_lock);
David Howells76181c12007-10-16 23:29:46 -0700466 kleave(" = %ld", PTR_ERR(key));
467 return PTR_ERR(key);
468}
469
470/*
David Howells973c9f42011-01-20 16:38:33 +0000471 * Commence key construction.
David Howells76181c12007-10-16 23:29:46 -0700472 */
David Howells4bdf0bc2013-09-24 10:35:15 +0100473static struct key *construct_key_and_link(struct keyring_search_context *ctx,
David Howells76181c12007-10-16 23:29:46 -0700474 const char *callout_info,
David Howells4a38e122008-04-29 01:01:24 -0700475 size_t callout_len,
David Howells76181c12007-10-16 23:29:46 -0700476 void *aux,
477 struct key *dest_keyring,
478 unsigned long flags)
479{
480 struct key_user *user;
481 struct key *key;
482 int ret;
483
David Howellsd84f4f92008-11-14 10:39:23 +1100484 kenter("");
485
David Howells911b79c2015-10-19 11:20:28 +0100486 if (ctx->index_key.type == &key_type_keyring)
487 return ERR_PTR(-EPERM);
David Howells965475a2016-06-14 10:29:44 +0100488
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000489 ret = construct_get_dest_keyring(&dest_keyring);
490 if (ret)
491 goto error;
David Howells76181c12007-10-16 23:29:46 -0700492
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000493 user = key_user_lookup(current_fsuid());
494 if (!user) {
495 ret = -ENOMEM;
496 goto error_put_dest_keyring;
497 }
David Howells8bbf49762008-11-14 10:39:14 +1100498
Linus Torvalds028db3e2019-07-10 18:43:43 -0700499 ret = construct_alloc_key(ctx, dest_keyring, flags, user, &key);
David Howells76181c12007-10-16 23:29:46 -0700500 key_user_put(user);
501
502 if (ret == 0) {
David Howells8bbf49762008-11-14 10:39:14 +1100503 ret = construct_key(key, callout_info, callout_len, aux,
504 dest_keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100505 if (ret < 0) {
506 kdebug("cons failed");
David Howells76181c12007-10-16 23:29:46 -0700507 goto construction_failed;
David Howellsd84f4f92008-11-14 10:39:23 +1100508 }
David Howells2b9e4682010-04-30 14:32:34 +0100509 } else if (ret == -EINPROGRESS) {
510 ret = 0;
511 } else {
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000512 goto error_put_dest_keyring;
David Howells76181c12007-10-16 23:29:46 -0700513 }
514
David Howells8bbf49762008-11-14 10:39:14 +1100515 key_put(dest_keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100516 kleave(" = key %d", key_serial(key));
David Howells76181c12007-10-16 23:29:46 -0700517 return key;
518
519construction_failed:
520 key_negate_and_link(key, key_negative_timeout, NULL, NULL);
521 key_put(key);
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000522error_put_dest_keyring:
David Howells8bbf49762008-11-14 10:39:14 +1100523 key_put(dest_keyring);
Eric Biggers4dca6ea2017-12-08 15:13:27 +0000524error:
David Howellsd84f4f92008-11-14 10:39:23 +1100525 kleave(" = %d", ret);
David Howells76181c12007-10-16 23:29:46 -0700526 return ERR_PTR(ret);
527}
528
David Howells973c9f42011-01-20 16:38:33 +0000529/**
530 * request_key_and_link - Request a key and cache it in a keyring.
531 * @type: The type of key we want.
532 * @description: The searchable description of the key.
David Howellsa58946c2019-06-26 21:02:33 +0100533 * @domain_tag: The domain in which the key operates.
David Howells973c9f42011-01-20 16:38:33 +0000534 * @callout_info: The data to pass to the instantiation upcall (or NULL).
535 * @callout_len: The length of callout_info.
536 * @aux: Auxiliary data for the upcall.
537 * @dest_keyring: Where to cache the key.
538 * @flags: Flags to key_alloc().
539 *
David Howellsa58946c2019-06-26 21:02:33 +0100540 * A key matching the specified criteria (type, description, domain_tag) is
541 * searched for in the process's keyrings and returned with its usage count
542 * incremented if found. Otherwise, if callout_info is not NULL, a key will be
543 * allocated and some service (probably in userspace) will be asked to
544 * instantiate it.
David Howells973c9f42011-01-20 16:38:33 +0000545 *
546 * If successfully found or created, the key will be linked to the destination
547 * keyring if one is provided.
548 *
549 * Returns a pointer to the key if successful; -EACCES, -ENOKEY, -EKEYREVOKED
550 * or -EKEYEXPIRED if an inaccessible, negative, revoked or expired key was
551 * found; -ENOKEY if no key was found and no @callout_info was given; -EDQUOT
552 * if insufficient key quota was available to create a new key; or -ENOMEM if
553 * insufficient memory was available.
554 *
555 * If the returned key was created, then it may still be under construction,
556 * and wait_for_key_construction() should be used to wait for that to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
David Howells3e301482005-06-23 22:00:56 -0700558struct key *request_key_and_link(struct key_type *type,
559 const char *description,
David Howellsa58946c2019-06-26 21:02:33 +0100560 struct key_tag *domain_tag,
David Howells4a38e122008-04-29 01:01:24 -0700561 const void *callout_info,
562 size_t callout_len,
David Howells4e54f082006-06-29 02:24:28 -0700563 void *aux,
David Howells7e047ef2006-06-26 00:24:50 -0700564 struct key *dest_keyring,
565 unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
David Howells4bdf0bc2013-09-24 10:35:15 +0100567 struct keyring_search_context ctx = {
568 .index_key.type = type,
David Howellsa58946c2019-06-26 21:02:33 +0100569 .index_key.domain_tag = domain_tag,
David Howells4bdf0bc2013-09-24 10:35:15 +0100570 .index_key.description = description,
Eric Biggersede0fa982019-02-22 15:36:18 +0000571 .index_key.desc_len = strlen(description),
David Howells4bdf0bc2013-09-24 10:35:15 +0100572 .cred = current_cred(),
David Howellsc06cfb02014-09-16 17:36:06 +0100573 .match_data.cmp = key_default_cmp,
David Howells46291952014-09-16 17:36:02 +0100574 .match_data.raw_data = description,
575 .match_data.lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
David Howells0b0a8412014-12-01 22:52:53 +0000576 .flags = (KEYRING_SEARCH_DO_STATE_CHECK |
David Howellsdcf49db2019-06-26 21:02:32 +0100577 KEYRING_SEARCH_SKIP_EXPIRED |
578 KEYRING_SEARCH_RECURSE),
David Howells4bdf0bc2013-09-24 10:35:15 +0100579 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct key *key;
David Howells664cceb2005-09-28 17:03:15 +0100581 key_ref_t key_ref;
David Howells2b9e4682010-04-30 14:32:34 +0100582 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
David Howells4a38e122008-04-29 01:01:24 -0700584 kenter("%s,%s,%p,%zu,%p,%p,%lx",
David Howells4bdf0bc2013-09-24 10:35:15 +0100585 ctx.index_key.type->name, ctx.index_key.description,
586 callout_info, callout_len, aux, dest_keyring, flags);
David Howells3e301482005-06-23 22:00:56 -0700587
David Howells46291952014-09-16 17:36:02 +0100588 if (type->match_preparse) {
589 ret = type->match_preparse(&ctx.match_data);
590 if (ret < 0) {
591 key = ERR_PTR(ret);
592 goto error;
593 }
594 }
595
David Howells7743c482019-06-19 16:10:15 +0100596 key = check_cached_key(&ctx);
597 if (key)
Eric Biggers846d2db2019-08-30 16:52:26 +0100598 goto error_free;
David Howells7743c482019-06-19 16:10:15 +0100599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /* search all the process keyrings for a key */
David Howellse59428f2019-06-19 16:10:15 +0100601 rcu_read_lock();
602 key_ref = search_process_keyrings_rcu(&ctx);
603 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
David Howells664cceb2005-09-28 17:03:15 +0100605 if (!IS_ERR(key_ref)) {
David Howells504b69e2019-06-19 16:10:15 +0100606 if (dest_keyring) {
607 ret = key_task_permission(key_ref, current_cred(),
608 KEY_NEED_LINK);
609 if (ret < 0) {
610 key_ref_put(key_ref);
611 key = ERR_PTR(ret);
612 goto error_free;
613 }
614 }
615
David Howells664cceb2005-09-28 17:03:15 +0100616 key = key_ref_to_ptr(key_ref);
David Howells03449cd2010-04-27 13:13:08 -0700617 if (dest_keyring) {
David Howells2b9e4682010-04-30 14:32:34 +0100618 ret = key_link(dest_keyring, key);
David Howells2b9e4682010-04-30 14:32:34 +0100619 if (ret < 0) {
620 key_put(key);
621 key = ERR_PTR(ret);
David Howells46291952014-09-16 17:36:02 +0100622 goto error_free;
David Howells2b9e4682010-04-30 14:32:34 +0100623 }
David Howells03449cd2010-04-27 13:13:08 -0700624 }
David Howells7743c482019-06-19 16:10:15 +0100625
626 /* Only cache the key on immediate success */
627 cache_requested_key(key);
David Howells76181c12007-10-16 23:29:46 -0700628 } else if (PTR_ERR(key_ref) != -EAGAIN) {
David Howellse231c2e2008-02-07 00:15:26 -0800629 key = ERR_CAST(key_ref);
David Howells76181c12007-10-16 23:29:46 -0700630 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /* the search failed, but the keyrings were searchable, so we
632 * should consult userspace if we can */
633 key = ERR_PTR(-ENOKEY);
634 if (!callout_info)
David Howells46291952014-09-16 17:36:02 +0100635 goto error_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
David Howells4bdf0bc2013-09-24 10:35:15 +0100637 key = construct_key_and_link(&ctx, callout_info, callout_len,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700638 aux, dest_keyring, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
David Howells46291952014-09-16 17:36:02 +0100641error_free:
642 if (type->match_free)
643 type->match_free(&ctx.match_data);
David Howells3e301482005-06-23 22:00:56 -0700644error:
645 kleave(" = %p", key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return key;
David Howells76181c12007-10-16 23:29:46 -0700647}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
David Howells973c9f42011-01-20 16:38:33 +0000649/**
650 * wait_for_key_construction - Wait for construction of a key to complete
651 * @key: The key being waited for.
652 * @intr: Whether to wait interruptibly.
653 *
654 * Wait for a key to finish being constructed.
655 *
656 * Returns 0 if successful; -ERESTARTSYS if the wait was interrupted; -ENOKEY
657 * if the key was negated; or -EKEYREVOKED or -EKEYEXPIRED if the key was
658 * revoked or expired.
David Howells76181c12007-10-16 23:29:46 -0700659 */
660int wait_for_key_construction(struct key *key, bool intr)
661{
662 int ret;
David Howells3e301482005-06-23 22:00:56 -0700663
David Howells76181c12007-10-16 23:29:46 -0700664 ret = wait_on_bit(&key->flags, KEY_FLAG_USER_CONSTRUCT,
David Howells76181c12007-10-16 23:29:46 -0700665 intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
NeilBrown74316202014-07-07 15:16:04 +1000666 if (ret)
667 return -ERESTARTSYS;
David Howells363b02d2017-10-04 16:43:25 +0100668 ret = key_read_state(key);
669 if (ret < 0)
670 return ret;
David Howells76181c12007-10-16 23:29:46 -0700671 return key_validate(key);
672}
673EXPORT_SYMBOL(wait_for_key_construction);
David Howells3e301482005-06-23 22:00:56 -0700674
David Howells973c9f42011-01-20 16:38:33 +0000675/**
David Howellsa58946c2019-06-26 21:02:33 +0100676 * request_key_tag - Request a key and wait for construction
David Howells973c9f42011-01-20 16:38:33 +0000677 * @type: Type of key.
678 * @description: The searchable description of the key.
David Howellsa58946c2019-06-26 21:02:33 +0100679 * @domain_tag: The domain in which the key operates.
David Howells973c9f42011-01-20 16:38:33 +0000680 * @callout_info: The data to pass to the instantiation upcall (or NULL).
681 *
682 * As for request_key_and_link() except that it does not add the returned key
683 * to a keyring if found, new keys are always allocated in the user's quota,
684 * the callout_info must be a NUL-terminated string and no auxiliary data can
685 * be passed.
686 *
687 * Furthermore, it then works as wait_for_key_construction() to wait for the
688 * completion of keys undergoing construction with a non-interruptible wait.
David Howells3e301482005-06-23 22:00:56 -0700689 */
David Howellsa58946c2019-06-26 21:02:33 +0100690struct key *request_key_tag(struct key_type *type,
691 const char *description,
692 struct key_tag *domain_tag,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700693 const char *callout_info)
David Howells3e301482005-06-23 22:00:56 -0700694{
David Howells76181c12007-10-16 23:29:46 -0700695 struct key *key;
David Howells4a38e122008-04-29 01:01:24 -0700696 size_t callout_len = 0;
David Howells76181c12007-10-16 23:29:46 -0700697 int ret;
David Howells3e301482005-06-23 22:00:56 -0700698
David Howells4a38e122008-04-29 01:01:24 -0700699 if (callout_info)
700 callout_len = strlen(callout_info);
David Howellsa58946c2019-06-26 21:02:33 +0100701 key = request_key_and_link(type, description, domain_tag,
702 callout_info, callout_len,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700703 NULL, NULL, KEY_ALLOC_IN_QUOTA);
David Howells76181c12007-10-16 23:29:46 -0700704 if (!IS_ERR(key)) {
705 ret = wait_for_key_construction(key, false);
706 if (ret < 0) {
707 key_put(key);
708 return ERR_PTR(ret);
709 }
710 }
711 return key;
712}
David Howellsa58946c2019-06-26 21:02:33 +0100713EXPORT_SYMBOL(request_key_tag);
David Howells4e54f082006-06-29 02:24:28 -0700714
David Howells973c9f42011-01-20 16:38:33 +0000715/**
716 * request_key_with_auxdata - Request a key with auxiliary data for the upcaller
717 * @type: The type of key we want.
718 * @description: The searchable description of the key.
David Howellsa58946c2019-06-26 21:02:33 +0100719 * @domain_tag: The domain in which the key operates.
David Howells973c9f42011-01-20 16:38:33 +0000720 * @callout_info: The data to pass to the instantiation upcall (or NULL).
721 * @callout_len: The length of callout_info.
722 * @aux: Auxiliary data for the upcall.
723 *
724 * As for request_key_and_link() except that it does not add the returned key
725 * to a keyring if found and new keys are always allocated in the user's quota.
726 *
727 * Furthermore, it then works as wait_for_key_construction() to wait for the
728 * completion of keys undergoing construction with a non-interruptible wait.
David Howells4e54f082006-06-29 02:24:28 -0700729 */
730struct key *request_key_with_auxdata(struct key_type *type,
731 const char *description,
David Howellsa58946c2019-06-26 21:02:33 +0100732 struct key_tag *domain_tag,
David Howells4a38e122008-04-29 01:01:24 -0700733 const void *callout_info,
734 size_t callout_len,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700735 void *aux)
David Howells4e54f082006-06-29 02:24:28 -0700736{
David Howells76181c12007-10-16 23:29:46 -0700737 struct key *key;
738 int ret;
739
David Howellsa58946c2019-06-26 21:02:33 +0100740 key = request_key_and_link(type, description, domain_tag,
741 callout_info, callout_len,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700742 aux, NULL, KEY_ALLOC_IN_QUOTA);
David Howells76181c12007-10-16 23:29:46 -0700743 if (!IS_ERR(key)) {
744 ret = wait_for_key_construction(key, false);
745 if (ret < 0) {
746 key_put(key);
747 return ERR_PTR(ret);
748 }
749 }
750 return key;
751}
752EXPORT_SYMBOL(request_key_with_auxdata);
753
David Howells896f1952019-06-19 16:10:15 +0100754/**
755 * request_key_rcu - Request key from RCU-read-locked context
756 * @type: The type of key we want.
757 * @description: The name of the key we want.
David Howellsa58946c2019-06-26 21:02:33 +0100758 * @domain_tag: The domain in which the key operates.
David Howells973c9f42011-01-20 16:38:33 +0000759 *
David Howells896f1952019-06-19 16:10:15 +0100760 * Request a key from a context that we may not sleep in (such as RCU-mode
761 * pathwalk). Keys under construction are ignored.
David Howells973c9f42011-01-20 16:38:33 +0000762 *
David Howells896f1952019-06-19 16:10:15 +0100763 * Return a pointer to the found key if successful, -ENOKEY if we couldn't find
764 * a key or some other error if the key found was unsuitable or inaccessible.
David Howells76181c12007-10-16 23:29:46 -0700765 */
David Howellsa58946c2019-06-26 21:02:33 +0100766struct key *request_key_rcu(struct key_type *type,
767 const char *description,
768 struct key_tag *domain_tag)
David Howells76181c12007-10-16 23:29:46 -0700769{
David Howells896f1952019-06-19 16:10:15 +0100770 struct keyring_search_context ctx = {
771 .index_key.type = type,
David Howellsa58946c2019-06-26 21:02:33 +0100772 .index_key.domain_tag = domain_tag,
David Howells896f1952019-06-19 16:10:15 +0100773 .index_key.description = description,
774 .index_key.desc_len = strlen(description),
775 .cred = current_cred(),
776 .match_data.cmp = key_default_cmp,
777 .match_data.raw_data = description,
778 .match_data.lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
779 .flags = (KEYRING_SEARCH_DO_STATE_CHECK |
780 KEYRING_SEARCH_SKIP_EXPIRED),
781 };
782 struct key *key;
783 key_ref_t key_ref;
David Howells76181c12007-10-16 23:29:46 -0700784
David Howells896f1952019-06-19 16:10:15 +0100785 kenter("%s,%s", type->name, description);
786
David Howells7743c482019-06-19 16:10:15 +0100787 key = check_cached_key(&ctx);
788 if (key)
789 return key;
790
David Howells896f1952019-06-19 16:10:15 +0100791 /* search all the process keyrings for a key */
792 key_ref = search_process_keyrings_rcu(&ctx);
793 if (IS_ERR(key_ref)) {
794 key = ERR_CAST(key_ref);
795 if (PTR_ERR(key_ref) == -EAGAIN)
796 key = ERR_PTR(-ENOKEY);
797 } else {
798 key = key_ref_to_ptr(key_ref);
David Howells7743c482019-06-19 16:10:15 +0100799 cache_requested_key(key);
David Howells896f1952019-06-19 16:10:15 +0100800 }
801
802 kleave(" = %p", key);
803 return key;
David Howells76181c12007-10-16 23:29:46 -0700804}
David Howells896f1952019-06-19 16:10:15 +0100805EXPORT_SYMBOL(request_key_rcu);