blob: 0062e422e0fdd0c3c71481c677c71650e7bbd3f0 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells973c9f42011-01-20 16:38:33 +00002/* Userspace key control operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David Howells3e301482005-06-23 22:00:56 -07004 * Copyright (C) 2004-5 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Written by David Howells (dhowells@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/sched.h>
Ingo Molnar29930022017-02-08 18:51:36 +010010#include <linux/sched/task.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/slab.h>
12#include <linux/syscalls.h>
Bryan Schumaker59e6b9c2012-02-24 14:14:50 -050013#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/keyctl.h>
15#include <linux/fs.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080016#include <linux/capability.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010017#include <linux/cred.h>
Davi Arnaut0cb409d2006-03-24 03:18:43 -080018#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/err.h>
David Howells38bbca62008-04-29 01:01:19 -070020#include <linux/vmalloc.h>
David Howells70a5bb72008-04-29 01:01:26 -070021#include <linux/security.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070022#include <linux/uio.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080023#include <linux/uaccess.h>
David Howells822ad642019-02-14 16:20:25 +000024#include <keys/request_key_auth-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "internal.h"
26
David Howellsaa9d4432014-12-01 22:52:45 +000027#define KEY_MAX_DESC_SIZE 4096
28
David Howellsb206f282019-06-26 21:02:32 +010029static const unsigned char keyrings_capabilities[2] = {
David Howells45e0f302019-05-30 14:53:10 +010030 [0] = (KEYCTL_CAPS0_CAPABILITIES |
31 (IS_ENABLED(CONFIG_PERSISTENT_KEYRINGS) ? KEYCTL_CAPS0_PERSISTENT_KEYRINGS : 0) |
32 (IS_ENABLED(CONFIG_KEY_DH_OPERATIONS) ? KEYCTL_CAPS0_DIFFIE_HELLMAN : 0) |
33 (IS_ENABLED(CONFIG_ASYMMETRIC_KEY_TYPE) ? KEYCTL_CAPS0_PUBLIC_KEY : 0) |
34 (IS_ENABLED(CONFIG_BIG_KEYS) ? KEYCTL_CAPS0_BIG_KEY : 0) |
35 KEYCTL_CAPS0_INVALIDATE |
36 KEYCTL_CAPS0_RESTRICT_KEYRING |
37 KEYCTL_CAPS0_MOVE
38 ),
David Howells3b6e4de2019-06-26 21:02:32 +010039 [1] = (KEYCTL_CAPS1_NS_KEYRING_NAME |
Linus Torvalds028db3e2019-07-10 18:43:43 -070040 KEYCTL_CAPS1_NS_KEY_TAG),
David Howells45e0f302019-05-30 14:53:10 +010041};
42
Davi Arnaut0cb409d2006-03-24 03:18:43 -080043static int key_get_type_from_user(char *type,
44 const char __user *_type,
45 unsigned len)
46{
47 int ret;
48
49 ret = strncpy_from_user(type, _type, len);
Davi Arnaut0cb409d2006-03-24 03:18:43 -080050 if (ret < 0)
Dan Carpenter4303ef12010-06-11 17:30:05 +010051 return ret;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080052 if (ret == 0 || ret >= len)
53 return -EINVAL;
David Howells54e2c2c2014-09-16 17:29:03 +010054 if (type[0] == '.')
55 return -EPERM;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080056 type[len - 1] = '\0';
Davi Arnaut0cb409d2006-03-24 03:18:43 -080057 return 0;
58}
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
David Howells973c9f42011-01-20 16:38:33 +000061 * Extract the description of a new key from userspace and either add it as a
62 * new key to the specified keyring or update a matching key in that keyring.
63 *
David Howellscf7f6012012-09-13 13:06:29 +010064 * If the description is NULL or an empty string, the key type is asked to
65 * generate one from the payload.
66 *
David Howells973c9f42011-01-20 16:38:33 +000067 * The keyring must be writable so that we can attach the key to it.
68 *
69 * If successful, the new key's serial number is returned, otherwise an error
70 * code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +010072SYSCALL_DEFINE5(add_key, const char __user *, _type,
73 const char __user *, _description,
74 const void __user *, _payload,
75 size_t, plen,
76 key_serial_t, ringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
David Howells664cceb2005-09-28 17:03:15 +010078 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 char type[32], *description;
80 void *payload;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080081 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 ret = -EINVAL;
David Howells38bbca62008-04-29 01:01:19 -070084 if (plen > 1024 * 1024 - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 goto error;
86
87 /* draw all the data into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -080088 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if (ret < 0)
90 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
David Howellscf7f6012012-09-13 13:06:29 +010092 description = NULL;
93 if (_description) {
David Howellsaa9d4432014-12-01 22:52:45 +000094 description = strndup_user(_description, KEY_MAX_DESC_SIZE);
David Howellscf7f6012012-09-13 13:06:29 +010095 if (IS_ERR(description)) {
96 ret = PTR_ERR(description);
97 goto error;
98 }
99 if (!*description) {
100 kfree(description);
101 description = NULL;
Mimi Zohara4e3b8d2014-05-22 14:02:23 -0400102 } else if ((description[0] == '.') &&
103 (strncmp(type, "keyring", 7) == 0)) {
104 ret = -EPERM;
105 goto error2;
David Howellscf7f6012012-09-13 13:06:29 +0100106 }
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 /* pull the payload in if one was supplied */
110 payload = NULL;
111
Eric Biggers56496452017-06-08 14:48:40 +0100112 if (plen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -0700114 payload = kvmalloc(plen, GFP_KERNEL);
115 if (!payload)
116 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 ret = -EFAULT;
119 if (copy_from_user(payload, _payload, plen) != 0)
120 goto error3;
121 }
122
123 /* find the target keyring (which must be writable) */
David Howellsf5895942014-03-14 17:44:49 +0000124 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100125 if (IS_ERR(keyring_ref)) {
126 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 goto error3;
128 }
129
130 /* create or update the requested key and add it to the target
131 * keyring */
David Howells664cceb2005-09-28 17:03:15 +0100132 key_ref = key_create_or_update(keyring_ref, type, description,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700133 payload, plen, KEY_PERM_UNDEF,
134 KEY_ALLOC_IN_QUOTA);
David Howells664cceb2005-09-28 17:03:15 +0100135 if (!IS_ERR(key_ref)) {
136 ret = key_ref_to_ptr(key_ref)->serial;
137 key_ref_put(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 else {
David Howells664cceb2005-09-28 17:03:15 +0100140 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
David Howells664cceb2005-09-28 17:03:15 +0100143 key_ref_put(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 error3:
Eric Biggers57070c82017-06-08 14:48:57 +0100145 if (payload) {
146 memzero_explicit(payload, plen);
147 kvfree(payload);
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 error2:
150 kfree(description);
151 error:
152 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000153}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
David Howells973c9f42011-01-20 16:38:33 +0000156 * Search the process keyrings and keyring trees linked from those for a
157 * matching key. Keyrings must have appropriate Search permission to be
158 * searched.
159 *
160 * If a key is found, it will be attached to the destination keyring if there's
161 * one specified and the serial number of the key will be returned.
162 *
163 * If no key is found, /sbin/request-key will be invoked if _callout_info is
164 * non-NULL in an attempt to create a key. The _callout_info string will be
165 * passed to /sbin/request-key to aid with completing the request. If the
166 * _callout_info string is "" then it will be changed to "-".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100168SYSCALL_DEFINE4(request_key, const char __user *, _type,
169 const char __user *, _description,
170 const char __user *, _callout_info,
171 key_serial_t, destringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100174 struct key *key;
175 key_ref_t dest_ref;
David Howells4a38e122008-04-29 01:01:24 -0700176 size_t callout_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 char type[32], *description, *callout_info;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800178 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* pull the type into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800181 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (ret < 0)
183 goto error;
David Howells1260f802005-08-04 11:50:01 +0100184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /* pull the description into kernel space */
David Howellsaa9d4432014-12-01 22:52:45 +0000186 description = strndup_user(_description, KEY_MAX_DESC_SIZE);
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800187 if (IS_ERR(description)) {
188 ret = PTR_ERR(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /* pull the callout info into kernel space */
193 callout_info = NULL;
David Howells4a38e122008-04-29 01:01:24 -0700194 callout_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (_callout_info) {
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800196 callout_info = strndup_user(_callout_info, PAGE_SIZE);
197 if (IS_ERR(callout_info)) {
198 ret = PTR_ERR(callout_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 goto error2;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800200 }
David Howells4a38e122008-04-29 01:01:24 -0700201 callout_len = strlen(callout_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 /* get the destination keyring if specified */
David Howells664cceb2005-09-28 17:03:15 +0100205 dest_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (destringid) {
David Howells55931222009-09-02 09:13:45 +0100207 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
David Howellsf5895942014-03-14 17:44:49 +0000208 KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100209 if (IS_ERR(dest_ref)) {
210 ret = PTR_ERR(dest_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto error3;
212 }
213 }
214
215 /* find the key type */
216 ktype = key_type_lookup(type);
217 if (IS_ERR(ktype)) {
218 ret = PTR_ERR(ktype);
219 goto error4;
220 }
221
222 /* do the search */
David Howellsa58946c2019-06-26 21:02:33 +0100223 key = request_key_and_link(ktype, description, NULL, callout_info,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700224 callout_len, NULL, key_ref_to_ptr(dest_ref),
David Howells7e047ef2006-06-26 00:24:50 -0700225 KEY_ALLOC_IN_QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (IS_ERR(key)) {
227 ret = PTR_ERR(key);
228 goto error5;
229 }
230
David Howells4aab1e82011-03-11 17:57:33 +0000231 /* wait for the key to finish being constructed */
232 ret = wait_for_key_construction(key, 1);
233 if (ret < 0)
234 goto error6;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 ret = key->serial;
237
David Howells4aab1e82011-03-11 17:57:33 +0000238error6:
David Howells3e301482005-06-23 22:00:56 -0700239 key_put(key);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700240error5:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 key_type_put(ktype);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700242error4:
David Howells664cceb2005-09-28 17:03:15 +0100243 key_ref_put(dest_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700244error3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 kfree(callout_info);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700246error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 kfree(description);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700248error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000250}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/*
David Howells973c9f42011-01-20 16:38:33 +0000253 * Get the ID of the specified process keyring.
254 *
255 * The requested keyring must have search permission to be found.
256 *
257 * If successful, the ID of the requested keyring will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 */
259long keyctl_get_keyring_ID(key_serial_t id, int create)
260{
David Howells664cceb2005-09-28 17:03:15 +0100261 key_ref_t key_ref;
David Howells55931222009-09-02 09:13:45 +0100262 unsigned long lflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 long ret;
264
David Howells55931222009-09-02 09:13:45 +0100265 lflags = create ? KEY_LOOKUP_CREATE : 0;
David Howellsf5895942014-03-14 17:44:49 +0000266 key_ref = lookup_user_key(id, lflags, KEY_NEED_SEARCH);
David Howells664cceb2005-09-28 17:03:15 +0100267 if (IS_ERR(key_ref)) {
268 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 goto error;
270 }
271
David Howells664cceb2005-09-28 17:03:15 +0100272 ret = key_ref_to_ptr(key_ref)->serial;
273 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700274error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return ret;
David Howells973c9f42011-01-20 16:38:33 +0000276}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278/*
David Howells973c9f42011-01-20 16:38:33 +0000279 * Join a (named) session keyring.
280 *
281 * Create and join an anonymous session keyring or join a named session
282 * keyring, creating it if necessary. A named session keyring must have Search
283 * permission for it to be joined. Session keyrings without this permit will
David Howellsee8f8442017-04-18 15:31:07 +0100284 * be skipped over. It is not permitted for userspace to create or join
285 * keyrings whose name begin with a dot.
David Howells973c9f42011-01-20 16:38:33 +0000286 *
287 * If successful, the ID of the joined session keyring will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289long keyctl_join_session_keyring(const char __user *_name)
290{
291 char *name;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800292 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* fetch the name from userspace */
295 name = NULL;
296 if (_name) {
David Howellsaa9d4432014-12-01 22:52:45 +0000297 name = strndup_user(_name, KEY_MAX_DESC_SIZE);
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800298 if (IS_ERR(name)) {
299 ret = PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800301 }
David Howellsee8f8442017-04-18 15:31:07 +0100302
303 ret = -EPERM;
304 if (name[0] == '.')
305 goto error_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
308 /* join the session */
309 ret = join_session_keyring(name);
David Howellsee8f8442017-04-18 15:31:07 +0100310error_name:
Vegard Nossum0d54ee12009-01-17 17:45:45 +0100311 kfree(name);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700312error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000314}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/*
David Howells973c9f42011-01-20 16:38:33 +0000317 * Update a key's data payload from the given data.
318 *
319 * The key must grant the caller Write permission and the key type must support
320 * updating for this to work. A negative key can be positively instantiated
321 * with this call.
322 *
323 * If successful, 0 will be returned. If the key type does not support
324 * updating, then -EOPNOTSUPP will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 */
326long keyctl_update_key(key_serial_t id,
327 const void __user *_payload,
328 size_t plen)
329{
David Howells664cceb2005-09-28 17:03:15 +0100330 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 void *payload;
332 long ret;
333
334 ret = -EINVAL;
335 if (plen > PAGE_SIZE)
336 goto error;
337
338 /* pull the payload in if one was supplied */
339 payload = NULL;
Eric Biggers56496452017-06-08 14:48:40 +0100340 if (plen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 ret = -ENOMEM;
Waiman Long4f088242020-03-21 21:11:25 -0400342 payload = kvmalloc(plen, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (!payload)
344 goto error;
345
346 ret = -EFAULT;
347 if (copy_from_user(payload, _payload, plen) != 0)
348 goto error2;
349 }
350
351 /* find the target key (which must be writable) */
David Howellsf5895942014-03-14 17:44:49 +0000352 key_ref = lookup_user_key(id, 0, KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100353 if (IS_ERR(key_ref)) {
354 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 goto error2;
356 }
357
358 /* update the key */
David Howells664cceb2005-09-28 17:03:15 +0100359 ret = key_update(key_ref, payload, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
David Howells664cceb2005-09-28 17:03:15 +0100361 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700362error2:
Waiman Long4f088242020-03-21 21:11:25 -0400363 __kvzfree(payload, plen);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700364error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000366}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/*
David Howells973c9f42011-01-20 16:38:33 +0000369 * Revoke a key.
370 *
371 * The key must be grant the caller Write or Setattr permission for this to
372 * work. The key type should give up its quota claim when revoked. The key
373 * and any links to the key will be automatically garbage collected after a
374 * certain amount of time (/proc/sys/kernel/keys/gc_delay).
375 *
Mimi Zohard3600bc2015-11-10 08:34:46 -0500376 * Keys with KEY_FLAG_KEEP set should not be revoked.
377 *
David Howells973c9f42011-01-20 16:38:33 +0000378 * If successful, 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
380long keyctl_revoke_key(key_serial_t id)
381{
David Howells664cceb2005-09-28 17:03:15 +0100382 key_ref_t key_ref;
Mimi Zohard3600bc2015-11-10 08:34:46 -0500383 struct key *key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 long ret;
385
Linus Torvalds028db3e2019-07-10 18:43:43 -0700386 key_ref = lookup_user_key(id, 0, KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100387 if (IS_ERR(key_ref)) {
388 ret = PTR_ERR(key_ref);
Linus Torvalds028db3e2019-07-10 18:43:43 -0700389 if (ret != -EACCES)
390 goto error;
391 key_ref = lookup_user_key(id, 0, KEY_NEED_SETATTR);
392 if (IS_ERR(key_ref)) {
393 ret = PTR_ERR(key_ref);
394 goto error;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
Mimi Zohard3600bc2015-11-10 08:34:46 -0500398 key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 ret = 0;
Mimi Zohard3600bc2015-11-10 08:34:46 -0500400 if (test_bit(KEY_FLAG_KEEP, &key->flags))
Mimi Zohar1d6d1672016-01-07 07:46:36 -0500401 ret = -EPERM;
402 else
Mimi Zohard3600bc2015-11-10 08:34:46 -0500403 key_revoke(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
David Howells664cceb2005-09-28 17:03:15 +0100405 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700406error:
David Howells1260f802005-08-04 11:50:01 +0100407 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000408}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/*
David Howellsfd758152012-05-11 10:56:56 +0100411 * Invalidate a key.
412 *
413 * The key must be grant the caller Invalidate permission for this to work.
414 * The key and any links to the key will be automatically garbage collected
415 * immediately.
416 *
Mimi Zohard3600bc2015-11-10 08:34:46 -0500417 * Keys with KEY_FLAG_KEEP set should not be invalidated.
418 *
David Howellsfd758152012-05-11 10:56:56 +0100419 * If successful, 0 is returned.
420 */
421long keyctl_invalidate_key(key_serial_t id)
422{
423 key_ref_t key_ref;
Mimi Zohard3600bc2015-11-10 08:34:46 -0500424 struct key *key;
David Howellsfd758152012-05-11 10:56:56 +0100425 long ret;
426
427 kenter("%d", id);
428
Linus Torvalds028db3e2019-07-10 18:43:43 -0700429 key_ref = lookup_user_key(id, 0, KEY_NEED_SEARCH);
David Howellsfd758152012-05-11 10:56:56 +0100430 if (IS_ERR(key_ref)) {
431 ret = PTR_ERR(key_ref);
David Howells0c7774a2014-07-17 20:45:08 +0100432
433 /* Root is permitted to invalidate certain special keys */
434 if (capable(CAP_SYS_ADMIN)) {
435 key_ref = lookup_user_key(id, 0, 0);
436 if (IS_ERR(key_ref))
437 goto error;
438 if (test_bit(KEY_FLAG_ROOT_CAN_INVAL,
439 &key_ref_to_ptr(key_ref)->flags))
440 goto invalidate;
441 goto error_put;
442 }
443
David Howellsfd758152012-05-11 10:56:56 +0100444 goto error;
445 }
446
David Howells0c7774a2014-07-17 20:45:08 +0100447invalidate:
Mimi Zohard3600bc2015-11-10 08:34:46 -0500448 key = key_ref_to_ptr(key_ref);
David Howellsfd758152012-05-11 10:56:56 +0100449 ret = 0;
Mimi Zohard3600bc2015-11-10 08:34:46 -0500450 if (test_bit(KEY_FLAG_KEEP, &key->flags))
451 ret = -EPERM;
Mimi Zohar1d6d1672016-01-07 07:46:36 -0500452 else
Mimi Zohard3600bc2015-11-10 08:34:46 -0500453 key_invalidate(key);
David Howells0c7774a2014-07-17 20:45:08 +0100454error_put:
David Howellsfd758152012-05-11 10:56:56 +0100455 key_ref_put(key_ref);
456error:
457 kleave(" = %ld", ret);
458 return ret;
459}
460
461/*
David Howells973c9f42011-01-20 16:38:33 +0000462 * Clear the specified keyring, creating an empty process keyring if one of the
463 * special keyring IDs is used.
464 *
Mimi Zohard3600bc2015-11-10 08:34:46 -0500465 * The keyring must grant the caller Write permission and not have
466 * KEY_FLAG_KEEP set for this to work. If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 */
468long keyctl_keyring_clear(key_serial_t ringid)
469{
David Howells664cceb2005-09-28 17:03:15 +0100470 key_ref_t keyring_ref;
Mimi Zohard3600bc2015-11-10 08:34:46 -0500471 struct key *keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 long ret;
473
Linus Torvalds028db3e2019-07-10 18:43:43 -0700474 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100475 if (IS_ERR(keyring_ref)) {
476 ret = PTR_ERR(keyring_ref);
David Howells700920e2012-01-18 15:31:45 +0000477
478 /* Root is permitted to invalidate certain special keyrings */
479 if (capable(CAP_SYS_ADMIN)) {
480 keyring_ref = lookup_user_key(ringid, 0, 0);
481 if (IS_ERR(keyring_ref))
482 goto error;
483 if (test_bit(KEY_FLAG_ROOT_CAN_CLEAR,
484 &key_ref_to_ptr(keyring_ref)->flags))
485 goto clear;
486 goto error_put;
487 }
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto error;
490 }
491
David Howells700920e2012-01-18 15:31:45 +0000492clear:
Mimi Zohard3600bc2015-11-10 08:34:46 -0500493 keyring = key_ref_to_ptr(keyring_ref);
494 if (test_bit(KEY_FLAG_KEEP, &keyring->flags))
495 ret = -EPERM;
496 else
497 ret = keyring_clear(keyring);
David Howells700920e2012-01-18 15:31:45 +0000498error_put:
David Howells664cceb2005-09-28 17:03:15 +0100499 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700500error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000502}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/*
David Howells973c9f42011-01-20 16:38:33 +0000505 * Create a link from a keyring to a key if there's no matching key in the
506 * keyring, otherwise replace the link to the matching key with a link to the
507 * new key.
508 *
509 * The key must grant the caller Link permission and the the keyring must grant
510 * the caller Write permission. Furthermore, if an additional link is created,
511 * the keyring's quota will be extended.
512 *
513 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
515long keyctl_keyring_link(key_serial_t id, key_serial_t ringid)
516{
David Howells664cceb2005-09-28 17:03:15 +0100517 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 long ret;
519
David Howellsf5895942014-03-14 17:44:49 +0000520 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100521 if (IS_ERR(keyring_ref)) {
522 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 goto error;
524 }
525
David Howellsf5895942014-03-14 17:44:49 +0000526 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE, KEY_NEED_LINK);
David Howells664cceb2005-09-28 17:03:15 +0100527 if (IS_ERR(key_ref)) {
528 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto error2;
530 }
531
David Howells664cceb2005-09-28 17:03:15 +0100532 ret = key_link(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
David Howells664cceb2005-09-28 17:03:15 +0100534 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700535error2:
David Howells664cceb2005-09-28 17:03:15 +0100536 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700537error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000539}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541/*
David Howells973c9f42011-01-20 16:38:33 +0000542 * Unlink a key from a keyring.
543 *
544 * The keyring must grant the caller Write permission for this to work; the key
545 * itself need not grant the caller anything. If the last link to a key is
546 * removed then that key will be scheduled for destruction.
547 *
Mimi Zohard3600bc2015-11-10 08:34:46 -0500548 * Keys or keyrings with KEY_FLAG_KEEP set should not be unlinked.
549 *
David Howells973c9f42011-01-20 16:38:33 +0000550 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
552long keyctl_keyring_unlink(key_serial_t id, key_serial_t ringid)
553{
David Howells664cceb2005-09-28 17:03:15 +0100554 key_ref_t keyring_ref, key_ref;
Mimi Zohard3600bc2015-11-10 08:34:46 -0500555 struct key *keyring, *key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 long ret;
557
David Howellsf5895942014-03-14 17:44:49 +0000558 keyring_ref = lookup_user_key(ringid, 0, KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100559 if (IS_ERR(keyring_ref)) {
560 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto error;
562 }
563
David Howells55931222009-09-02 09:13:45 +0100564 key_ref = lookup_user_key(id, KEY_LOOKUP_FOR_UNLINK, 0);
David Howells664cceb2005-09-28 17:03:15 +0100565 if (IS_ERR(key_ref)) {
566 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto error2;
568 }
569
Mimi Zohard3600bc2015-11-10 08:34:46 -0500570 keyring = key_ref_to_ptr(keyring_ref);
571 key = key_ref_to_ptr(key_ref);
572 if (test_bit(KEY_FLAG_KEEP, &keyring->flags) &&
573 test_bit(KEY_FLAG_KEEP, &key->flags))
574 ret = -EPERM;
575 else
576 ret = key_unlink(keyring, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
David Howells664cceb2005-09-28 17:03:15 +0100578 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700579error2:
David Howells664cceb2005-09-28 17:03:15 +0100580 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700581error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000583}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585/*
David Howellsed0ac5c2019-05-20 21:51:50 +0100586 * Move a link to a key from one keyring to another, displacing any matching
587 * key from the destination keyring.
588 *
589 * The key must grant the caller Link permission and both keyrings must grant
590 * the caller Write permission. There must also be a link in the from keyring
591 * to the key. If both keyrings are the same, nothing is done.
592 *
593 * If successful, 0 will be returned.
594 */
595long keyctl_keyring_move(key_serial_t id, key_serial_t from_ringid,
596 key_serial_t to_ringid, unsigned int flags)
597{
598 key_ref_t key_ref, from_ref, to_ref;
599 long ret;
600
601 if (flags & ~KEYCTL_MOVE_EXCL)
602 return -EINVAL;
603
604 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE, KEY_NEED_LINK);
605 if (IS_ERR(key_ref))
606 return PTR_ERR(key_ref);
607
608 from_ref = lookup_user_key(from_ringid, 0, KEY_NEED_WRITE);
609 if (IS_ERR(from_ref)) {
610 ret = PTR_ERR(from_ref);
611 goto error2;
612 }
613
614 to_ref = lookup_user_key(to_ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
615 if (IS_ERR(to_ref)) {
616 ret = PTR_ERR(to_ref);
617 goto error3;
618 }
619
620 ret = key_move(key_ref_to_ptr(key_ref), key_ref_to_ptr(from_ref),
621 key_ref_to_ptr(to_ref), flags);
622
623 key_ref_put(to_ref);
624error3:
625 key_ref_put(from_ref);
626error2:
627 key_ref_put(key_ref);
628 return ret;
629}
630
631/*
David Howells973c9f42011-01-20 16:38:33 +0000632 * Return a description of a key to userspace.
633 *
634 * The key must grant the caller View permission for this to work.
635 *
636 * If there's a buffer, we place up to buflen bytes of data into it formatted
637 * in the following way:
638 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 * type;uid;gid;perm;description<NUL>
David Howells973c9f42011-01-20 16:38:33 +0000640 *
641 * If successful, we return the amount of description available, irrespective
642 * of how much we may have copied into the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
644long keyctl_describe_key(key_serial_t keyid,
645 char __user *buffer,
646 size_t buflen)
647{
David Howells3e301482005-06-23 22:00:56 -0700648 struct key *key, *instkey;
David Howells664cceb2005-09-28 17:03:15 +0100649 key_ref_t key_ref;
David Howellsaa9d4432014-12-01 22:52:45 +0000650 char *infobuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 long ret;
David Howellsaa9d4432014-12-01 22:52:45 +0000652 int desclen, infolen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
David Howellsf5895942014-03-14 17:44:49 +0000654 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_NEED_VIEW);
David Howells664cceb2005-09-28 17:03:15 +0100655 if (IS_ERR(key_ref)) {
David Howells3e301482005-06-23 22:00:56 -0700656 /* viewing a key under construction is permitted if we have the
657 * authorisation token handy */
David Howells664cceb2005-09-28 17:03:15 +0100658 if (PTR_ERR(key_ref) == -EACCES) {
David Howells3e301482005-06-23 22:00:56 -0700659 instkey = key_get_instantiation_authkey(keyid);
660 if (!IS_ERR(instkey)) {
661 key_put(instkey);
David Howells8bbf49762008-11-14 10:39:14 +1100662 key_ref = lookup_user_key(keyid,
David Howells55931222009-09-02 09:13:45 +0100663 KEY_LOOKUP_PARTIAL,
664 0);
David Howells664cceb2005-09-28 17:03:15 +0100665 if (!IS_ERR(key_ref))
David Howells3e301482005-06-23 22:00:56 -0700666 goto okay;
667 }
668 }
669
David Howells664cceb2005-09-28 17:03:15 +0100670 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 goto error;
672 }
673
David Howells3e301482005-06-23 22:00:56 -0700674okay:
David Howells664cceb2005-09-28 17:03:15 +0100675 key = key_ref_to_ptr(key_ref);
David Howellsaa9d4432014-12-01 22:52:45 +0000676 desclen = strlen(key->description);
David Howells664cceb2005-09-28 17:03:15 +0100677
David Howellsaa9d4432014-12-01 22:52:45 +0000678 /* calculate how much information we're going to return */
679 ret = -ENOMEM;
680 infobuf = kasprintf(GFP_KERNEL,
681 "%s;%d;%d;%08x;",
682 key->type->name,
683 from_kuid_munged(current_user_ns(), key->uid),
684 from_kgid_munged(current_user_ns(), key->gid),
Linus Torvalds028db3e2019-07-10 18:43:43 -0700685 key->perm);
David Howellsaa9d4432014-12-01 22:52:45 +0000686 if (!infobuf)
687 goto error2;
688 infolen = strlen(infobuf);
689 ret = infolen + desclen + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 /* consider returning the data */
David Howellsaa9d4432014-12-01 22:52:45 +0000692 if (buffer && buflen >= ret) {
693 if (copy_to_user(buffer, infobuf, infolen) != 0 ||
694 copy_to_user(buffer + infolen, key->description,
695 desclen + 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 ret = -EFAULT;
697 }
698
David Howellsaa9d4432014-12-01 22:52:45 +0000699 kfree(infobuf);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700700error2:
David Howells664cceb2005-09-28 17:03:15 +0100701 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700702error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000704}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706/*
David Howells973c9f42011-01-20 16:38:33 +0000707 * Search the specified keyring and any keyrings it links to for a matching
708 * key. Only keyrings that grant the caller Search permission will be searched
709 * (this includes the starting keyring). Only keys with Search permission can
710 * be found.
711 *
712 * If successful, the found key will be linked to the destination keyring if
713 * supplied and the key has Link permission, and the found key ID will be
714 * returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 */
716long keyctl_keyring_search(key_serial_t ringid,
717 const char __user *_type,
718 const char __user *_description,
719 key_serial_t destringid)
720{
721 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100722 key_ref_t keyring_ref, key_ref, dest_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 char type[32], *description;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800724 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 /* pull the type and description into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800727 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (ret < 0)
729 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
David Howellsaa9d4432014-12-01 22:52:45 +0000731 description = strndup_user(_description, KEY_MAX_DESC_SIZE);
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800732 if (IS_ERR(description)) {
733 ret = PTR_ERR(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /* get the keyring at which to begin the search */
David Howellsf5895942014-03-14 17:44:49 +0000738 keyring_ref = lookup_user_key(ringid, 0, KEY_NEED_SEARCH);
David Howells664cceb2005-09-28 17:03:15 +0100739 if (IS_ERR(keyring_ref)) {
740 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 goto error2;
742 }
743
744 /* get the destination keyring if specified */
David Howells664cceb2005-09-28 17:03:15 +0100745 dest_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (destringid) {
David Howells55931222009-09-02 09:13:45 +0100747 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
David Howellsf5895942014-03-14 17:44:49 +0000748 KEY_NEED_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100749 if (IS_ERR(dest_ref)) {
750 ret = PTR_ERR(dest_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 goto error3;
752 }
753 }
754
755 /* find the key type */
756 ktype = key_type_lookup(type);
757 if (IS_ERR(ktype)) {
758 ret = PTR_ERR(ktype);
759 goto error4;
760 }
761
762 /* do the search */
David Howellsdcf49db2019-06-26 21:02:32 +0100763 key_ref = keyring_search(keyring_ref, ktype, description, true);
David Howells664cceb2005-09-28 17:03:15 +0100764 if (IS_ERR(key_ref)) {
765 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /* treat lack or presence of a negative key the same */
768 if (ret == -EAGAIN)
769 ret = -ENOKEY;
770 goto error5;
771 }
772
773 /* link the resulting key to the destination keyring if we can */
David Howells664cceb2005-09-28 17:03:15 +0100774 if (dest_ref) {
David Howellsf5895942014-03-14 17:44:49 +0000775 ret = key_permission(key_ref, KEY_NEED_LINK);
David Howells29db9192005-10-30 15:02:44 -0800776 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 goto error6;
778
David Howells664cceb2005-09-28 17:03:15 +0100779 ret = key_link(key_ref_to_ptr(dest_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (ret < 0)
781 goto error6;
782 }
783
David Howells664cceb2005-09-28 17:03:15 +0100784 ret = key_ref_to_ptr(key_ref)->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700786error6:
David Howells664cceb2005-09-28 17:03:15 +0100787 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700788error5:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 key_type_put(ktype);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700790error4:
David Howells664cceb2005-09-28 17:03:15 +0100791 key_ref_put(dest_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700792error3:
David Howells664cceb2005-09-28 17:03:15 +0100793 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700794error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 kfree(description);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700796error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000798}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800/*
Waiman Longd3ec10a2020-03-21 21:11:24 -0400801 * Call the read method
802 */
803static long __keyctl_read_key(struct key *key, char *buffer, size_t buflen)
804{
805 long ret;
806
807 down_read(&key->sem);
808 ret = key_validate(key);
809 if (ret == 0)
810 ret = key->type->read(key, buffer, buflen);
811 up_read(&key->sem);
812 return ret;
813}
814
815/*
David Howells973c9f42011-01-20 16:38:33 +0000816 * Read a key's payload.
817 *
818 * The key must either grant the caller Read permission, or it must grant the
819 * caller Search permission when searched for from the process keyrings.
820 *
821 * If successful, we place up to buflen bytes of data into the buffer, if one
822 * is provided, and return the amount of data that is available in the key,
823 * irrespective of how much we copied into the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 */
825long keyctl_read_key(key_serial_t keyid, char __user *buffer, size_t buflen)
826{
David Howells664cceb2005-09-28 17:03:15 +0100827 struct key *key;
828 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 long ret;
Waiman Long4f088242020-03-21 21:11:25 -0400830 char *key_data = NULL;
831 size_t key_data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 /* find the key first */
David Howells55931222009-09-02 09:13:45 +0100834 key_ref = lookup_user_key(keyid, 0, 0);
David Howells664cceb2005-09-28 17:03:15 +0100835 if (IS_ERR(key_ref)) {
836 ret = -ENOKEY;
Waiman Longd3ec10a2020-03-21 21:11:24 -0400837 goto out;
David Howells664cceb2005-09-28 17:03:15 +0100838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
David Howells664cceb2005-09-28 17:03:15 +0100840 key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
David Howells363b02d2017-10-04 16:43:25 +0100842 ret = key_read_state(key);
843 if (ret < 0)
Waiman Longd3ec10a2020-03-21 21:11:24 -0400844 goto key_put_out; /* Negatively instantiated */
Eric Biggers37863c42017-09-18 11:37:23 -0700845
David Howells664cceb2005-09-28 17:03:15 +0100846 /* see if we can read it directly */
David Howellsf5895942014-03-14 17:44:49 +0000847 ret = key_permission(key_ref, KEY_NEED_READ);
David Howells29db9192005-10-30 15:02:44 -0800848 if (ret == 0)
David Howells664cceb2005-09-28 17:03:15 +0100849 goto can_read_key;
David Howells29db9192005-10-30 15:02:44 -0800850 if (ret != -EACCES)
Waiman Longd3ec10a2020-03-21 21:11:24 -0400851 goto key_put_out;
David Howells664cceb2005-09-28 17:03:15 +0100852
853 /* we can't; see if it's searchable from this process's keyrings
854 * - we automatically take account of the fact that it may be
855 * dangling off an instantiation key
856 */
857 if (!is_key_possessed(key_ref)) {
858 ret = -EACCES;
Waiman Longd3ec10a2020-03-21 21:11:24 -0400859 goto key_put_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /* the key is probably readable - now try to read it */
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700863can_read_key:
Waiman Longd3ec10a2020-03-21 21:11:24 -0400864 if (!key->type->read) {
865 ret = -EOPNOTSUPP;
866 goto key_put_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
Waiman Longd3ec10a2020-03-21 21:11:24 -0400869 if (!buffer || !buflen) {
870 /* Get the key length from the read method */
871 ret = __keyctl_read_key(key, NULL, 0);
872 goto key_put_out;
873 }
874
875 /*
876 * Read the data with the semaphore held (since we might sleep)
877 * to protect against the key being updated or revoked.
878 *
879 * Allocating a temporary buffer to hold the keys before
880 * transferring them to user buffer to avoid potential
881 * deadlock involving page fault and mmap_sem.
Waiman Long4f088242020-03-21 21:11:25 -0400882 *
883 * key_data_len = (buflen <= PAGE_SIZE)
884 * ? buflen : actual length of key data
885 *
886 * This prevents allocating arbitrary large buffer which can
887 * be much larger than the actual key length. In the latter case,
888 * at least 2 passes of this loop is required.
Waiman Longd3ec10a2020-03-21 21:11:24 -0400889 */
Waiman Long4f088242020-03-21 21:11:25 -0400890 key_data_len = (buflen <= PAGE_SIZE) ? buflen : 0;
891 for (;;) {
892 if (key_data_len) {
893 key_data = kvmalloc(key_data_len, GFP_KERNEL);
894 if (!key_data) {
895 ret = -ENOMEM;
896 goto key_put_out;
897 }
898 }
Waiman Longd3ec10a2020-03-21 21:11:24 -0400899
Waiman Long4f088242020-03-21 21:11:25 -0400900 ret = __keyctl_read_key(key, key_data, key_data_len);
Waiman Longd3ec10a2020-03-21 21:11:24 -0400901
Waiman Long4f088242020-03-21 21:11:25 -0400902 /*
903 * Read methods will just return the required length without
904 * any copying if the provided length isn't large enough.
905 */
906 if (ret <= 0 || ret > buflen)
907 break;
908
909 /*
910 * The key may change (unlikely) in between 2 consecutive
911 * __keyctl_read_key() calls. In this case, we reallocate
912 * a larger buffer and redo the key read when
913 * key_data_len < ret <= buflen.
914 */
915 if (ret > key_data_len) {
916 if (unlikely(key_data))
917 __kvzfree(key_data, key_data_len);
918 key_data_len = ret;
919 continue; /* Allocate buffer */
920 }
921
Waiman Longd3ec10a2020-03-21 21:11:24 -0400922 if (copy_to_user(buffer, key_data, ret))
923 ret = -EFAULT;
Waiman Long4f088242020-03-21 21:11:25 -0400924 break;
Waiman Longd3ec10a2020-03-21 21:11:24 -0400925 }
Waiman Long4f088242020-03-21 21:11:25 -0400926 __kvzfree(key_data, key_data_len);
Waiman Longd3ec10a2020-03-21 21:11:24 -0400927
928key_put_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 key_put(key);
Waiman Longd3ec10a2020-03-21 21:11:24 -0400930out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000932}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934/*
David Howells973c9f42011-01-20 16:38:33 +0000935 * Change the ownership of a key
936 *
937 * The key must grant the caller Setattr permission for this to work, though
938 * the key need not be fully instantiated yet. For the UID to be changed, or
939 * for the GID to be changed to a group the caller is not a member of, the
940 * caller must have sysadmin capability. If either uid or gid is -1 then that
941 * attribute is not changed.
942 *
943 * If the UID is to be changed, the new user must have sufficient quota to
944 * accept the key. The quota deduction will be removed from the old user to
945 * the new user should the attribute be changed.
946 *
947 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800949long keyctl_chown_key(key_serial_t id, uid_t user, gid_t group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Fredrik Tolf58016492006-06-26 00:24:51 -0700951 struct key_user *newowner, *zapowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 struct key *key;
David Howells664cceb2005-09-28 17:03:15 +0100953 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 long ret;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800955 kuid_t uid;
956 kgid_t gid;
957
958 uid = make_kuid(current_user_ns(), user);
959 gid = make_kgid(current_user_ns(), group);
960 ret = -EINVAL;
961 if ((user != (uid_t) -1) && !uid_valid(uid))
962 goto error;
963 if ((group != (gid_t) -1) && !gid_valid(gid))
964 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 ret = 0;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800967 if (user == (uid_t) -1 && group == (gid_t) -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 goto error;
969
David Howells55931222009-09-02 09:13:45 +0100970 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700971 KEY_NEED_SETATTR);
David Howells664cceb2005-09-28 17:03:15 +0100972 if (IS_ERR(key_ref)) {
973 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 goto error;
975 }
976
David Howells664cceb2005-09-28 17:03:15 +0100977 key = key_ref_to_ptr(key_ref);
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 /* make the changes with the locks held to prevent chown/chown races */
980 ret = -EACCES;
981 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 if (!capable(CAP_SYS_ADMIN)) {
984 /* only the sysadmin can chown a key to some other UID */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800985 if (user != (uid_t) -1 && !uid_eq(key->uid, uid))
Fredrik Tolf58016492006-06-26 00:24:51 -0700986 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 /* only the sysadmin can set the key's GID to a group other
989 * than one of those that the current process subscribes to */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800990 if (group != (gid_t) -1 && !gid_eq(gid, key->gid) && !in_group_p(gid))
Fredrik Tolf58016492006-06-26 00:24:51 -0700991 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993
Fredrik Tolf58016492006-06-26 00:24:51 -0700994 /* change the UID */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800995 if (user != (uid_t) -1 && !uid_eq(uid, key->uid)) {
Fredrik Tolf58016492006-06-26 00:24:51 -0700996 ret = -ENOMEM;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800997 newowner = key_user_lookup(uid);
Fredrik Tolf58016492006-06-26 00:24:51 -0700998 if (!newowner)
999 goto error_put;
1000
1001 /* transfer the quota burden to the new user */
1002 if (test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -08001003 unsigned maxkeys = uid_eq(uid, GLOBAL_ROOT_UID) ?
David Howells0b77f5b2008-04-29 01:01:32 -07001004 key_quota_root_maxkeys : key_quota_maxkeys;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -08001005 unsigned maxbytes = uid_eq(uid, GLOBAL_ROOT_UID) ?
David Howells0b77f5b2008-04-29 01:01:32 -07001006 key_quota_root_maxbytes : key_quota_maxbytes;
1007
Fredrik Tolf58016492006-06-26 00:24:51 -07001008 spin_lock(&newowner->lock);
David Howells0b77f5b2008-04-29 01:01:32 -07001009 if (newowner->qnkeys + 1 >= maxkeys ||
1010 newowner->qnbytes + key->quotalen >= maxbytes ||
1011 newowner->qnbytes + key->quotalen <
1012 newowner->qnbytes)
Fredrik Tolf58016492006-06-26 00:24:51 -07001013 goto quota_overrun;
1014
1015 newowner->qnkeys++;
1016 newowner->qnbytes += key->quotalen;
1017 spin_unlock(&newowner->lock);
1018
1019 spin_lock(&key->user->lock);
1020 key->user->qnkeys--;
1021 key->user->qnbytes -= key->quotalen;
1022 spin_unlock(&key->user->lock);
1023 }
1024
1025 atomic_dec(&key->user->nkeys);
1026 atomic_inc(&newowner->nkeys);
1027
David Howells363b02d2017-10-04 16:43:25 +01001028 if (key->state != KEY_IS_UNINSTANTIATED) {
Fredrik Tolf58016492006-06-26 00:24:51 -07001029 atomic_dec(&key->user->nikeys);
1030 atomic_inc(&newowner->nikeys);
1031 }
1032
1033 zapowner = key->user;
1034 key->user = newowner;
1035 key->uid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
1038 /* change the GID */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -08001039 if (group != (gid_t) -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 key->gid = gid;
1041
1042 ret = 0;
1043
Fredrik Tolf58016492006-06-26 00:24:51 -07001044error_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 up_write(&key->sem);
1046 key_put(key);
Fredrik Tolf58016492006-06-26 00:24:51 -07001047 if (zapowner)
1048 key_user_put(zapowner);
1049error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return ret;
1051
Fredrik Tolf58016492006-06-26 00:24:51 -07001052quota_overrun:
1053 spin_unlock(&newowner->lock);
1054 zapowner = newowner;
1055 ret = -EDQUOT;
1056 goto error_put;
David Howellsa8b17ed2011-01-20 16:38:27 +00001057}
Fredrik Tolf58016492006-06-26 00:24:51 -07001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059/*
David Howells973c9f42011-01-20 16:38:33 +00001060 * Change the permission mask on a key.
1061 *
1062 * The key must grant the caller Setattr permission for this to work, though
1063 * the key need not be fully instantiated yet. If the caller does not have
1064 * sysadmin capability, it may only change the permission on keys that it owns.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
Linus Torvalds028db3e2019-07-10 18:43:43 -07001066long keyctl_setperm_key(key_serial_t id, key_perm_t perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 struct key *key;
David Howells664cceb2005-09-28 17:03:15 +01001069 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 long ret;
1071
Linus Torvalds028db3e2019-07-10 18:43:43 -07001072 ret = -EINVAL;
David Howells664cceb2005-09-28 17:03:15 +01001073 if (perm & ~(KEY_POS_ALL | KEY_USR_ALL | KEY_GRP_ALL | KEY_OTH_ALL))
Linus Torvalds028db3e2019-07-10 18:43:43 -07001074 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
David Howells55931222009-09-02 09:13:45 +01001076 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
Linus Torvalds028db3e2019-07-10 18:43:43 -07001077 KEY_NEED_SETATTR);
David Howells664cceb2005-09-28 17:03:15 +01001078 if (IS_ERR(key_ref)) {
1079 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 goto error;
1081 }
1082
David Howells664cceb2005-09-28 17:03:15 +01001083 key = key_ref_to_ptr(key_ref);
1084
Linus Torvalds028db3e2019-07-10 18:43:43 -07001085 /* make the changes with the locks held to prevent chown/chmod races */
1086 ret = -EACCES;
1087 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Linus Torvalds028db3e2019-07-10 18:43:43 -07001089 /* if we're not the sysadmin, we can only change a key that we own */
1090 if (capable(CAP_SYS_ADMIN) || uid_eq(key->uid, current_fsuid())) {
1091 key->perm = perm;
1092 ret = 0;
David Howells76d8aea2005-06-23 22:00:49 -07001093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 up_write(&key->sem);
1096 key_put(key);
David Howells76d8aea2005-06-23 22:00:49 -07001097error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001099}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
David Howells8bbf49762008-11-14 10:39:14 +11001101/*
David Howells973c9f42011-01-20 16:38:33 +00001102 * Get the destination keyring for instantiation and check that the caller has
1103 * Write permission on it.
David Howells8bbf49762008-11-14 10:39:14 +11001104 */
1105static long get_instantiation_keyring(key_serial_t ringid,
1106 struct request_key_auth *rka,
1107 struct key **_dest_keyring)
1108{
1109 key_ref_t dkref;
1110
David Howellseca1bf52008-12-29 00:41:51 +00001111 *_dest_keyring = NULL;
1112
David Howells8bbf49762008-11-14 10:39:14 +11001113 /* just return a NULL pointer if we weren't asked to make a link */
David Howellseca1bf52008-12-29 00:41:51 +00001114 if (ringid == 0)
David Howells8bbf49762008-11-14 10:39:14 +11001115 return 0;
David Howells8bbf49762008-11-14 10:39:14 +11001116
1117 /* if a specific keyring is nominated by ID, then use that */
1118 if (ringid > 0) {
David Howellsf5895942014-03-14 17:44:49 +00001119 dkref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
David Howells8bbf49762008-11-14 10:39:14 +11001120 if (IS_ERR(dkref))
1121 return PTR_ERR(dkref);
1122 *_dest_keyring = key_ref_to_ptr(dkref);
1123 return 0;
1124 }
1125
1126 if (ringid == KEY_SPEC_REQKEY_AUTH_KEY)
1127 return -EINVAL;
1128
1129 /* otherwise specify the destination keyring recorded in the
1130 * authorisation key (any KEY_SPEC_*_KEYRING) */
1131 if (ringid >= KEY_SPEC_REQUESTOR_KEYRING) {
David Howells21279cf2009-10-15 10:14:35 +01001132 *_dest_keyring = key_get(rka->dest_keyring);
David Howells8bbf49762008-11-14 10:39:14 +11001133 return 0;
1134 }
1135
1136 return -ENOKEY;
1137}
1138
David Howellsd84f4f92008-11-14 10:39:23 +11001139/*
David Howells973c9f42011-01-20 16:38:33 +00001140 * Change the request_key authorisation key on the current process.
David Howellsd84f4f92008-11-14 10:39:23 +11001141 */
1142static int keyctl_change_reqkey_auth(struct key *key)
1143{
1144 struct cred *new;
1145
1146 new = prepare_creds();
1147 if (!new)
1148 return -ENOMEM;
1149
1150 key_put(new->request_key_auth);
1151 new->request_key_auth = key_get(key);
1152
1153 return commit_creds(new);
1154}
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156/*
David Howells973c9f42011-01-20 16:38:33 +00001157 * Instantiate a key with the specified payload and link the key into the
1158 * destination keyring if one is given.
1159 *
1160 * The caller must have the appropriate instantiation permit set for this to
1161 * work (see keyctl_assume_authority). No other permissions are required.
1162 *
1163 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 */
David Howellsee009e4a02011-03-07 15:06:20 +00001165long keyctl_instantiate_key_common(key_serial_t id,
Al Virob353a1f2015-03-17 09:59:38 -04001166 struct iov_iter *from,
David Howellsee009e4a02011-03-07 15:06:20 +00001167 key_serial_t ringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
David Howellsd84f4f92008-11-14 10:39:23 +11001169 const struct cred *cred = current_cred();
David Howells3e301482005-06-23 22:00:56 -07001170 struct request_key_auth *rka;
David Howells8bbf49762008-11-14 10:39:14 +11001171 struct key *instkey, *dest_keyring;
Al Virob353a1f2015-03-17 09:59:38 -04001172 size_t plen = from ? iov_iter_count(from) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 void *payload;
1174 long ret;
1175
David Howellsd84f4f92008-11-14 10:39:23 +11001176 kenter("%d,,%zu,%d", id, plen, ringid);
1177
Al Virob353a1f2015-03-17 09:59:38 -04001178 if (!plen)
1179 from = NULL;
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 ret = -EINVAL;
David Howells38bbca62008-04-29 01:01:19 -07001182 if (plen > 1024 * 1024 - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 goto error;
1184
David Howellsb5f545c2006-01-08 01:02:47 -08001185 /* the appropriate instantiation authorisation key must have been
1186 * assumed before calling this */
1187 ret = -EPERM;
David Howellsd84f4f92008-11-14 10:39:23 +11001188 instkey = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -08001189 if (!instkey)
1190 goto error;
1191
David Howells146aa8b2015-10-21 14:04:48 +01001192 rka = instkey->payload.data[0];
David Howellsb5f545c2006-01-08 01:02:47 -08001193 if (rka->target_key->serial != id)
1194 goto error;
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 /* pull the payload in if one was supplied */
1197 payload = NULL;
1198
Al Virob353a1f2015-03-17 09:59:38 -04001199 if (from) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07001201 payload = kvmalloc(plen, GFP_KERNEL);
1202 if (!payload)
1203 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Al Virob353a1f2015-03-17 09:59:38 -04001205 ret = -EFAULT;
Al Virocbbd26b2016-11-01 22:09:04 -04001206 if (!copy_from_iter_full(payload, plen, from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 goto error2;
1208 }
1209
David Howells3e301482005-06-23 22:00:56 -07001210 /* find the destination keyring amongst those belonging to the
1211 * requesting task */
David Howells8bbf49762008-11-14 10:39:14 +11001212 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1213 if (ret < 0)
1214 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /* instantiate the key and link it into a keyring */
David Howells3e301482005-06-23 22:00:56 -07001217 ret = key_instantiate_and_link(rka->target_key, payload, plen,
David Howells8bbf49762008-11-14 10:39:14 +11001218 dest_keyring, instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
David Howells8bbf49762008-11-14 10:39:14 +11001220 key_put(dest_keyring);
David Howellsb5f545c2006-01-08 01:02:47 -08001221
1222 /* discard the assumed authority if it's just been disabled by
1223 * instantiation of the key */
David Howellsd84f4f92008-11-14 10:39:23 +11001224 if (ret == 0)
1225 keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001226
1227error2:
Eric Biggers57070c82017-06-08 14:48:57 +01001228 if (payload) {
1229 memzero_explicit(payload, plen);
1230 kvfree(payload);
1231 }
David Howellsb5f545c2006-01-08 01:02:47 -08001232error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236/*
David Howellsee009e4a02011-03-07 15:06:20 +00001237 * Instantiate a key with the specified payload and link the key into the
1238 * destination keyring if one is given.
1239 *
1240 * The caller must have the appropriate instantiation permit set for this to
1241 * work (see keyctl_assume_authority). No other permissions are required.
1242 *
1243 * If successful, 0 will be returned.
1244 */
1245long keyctl_instantiate_key(key_serial_t id,
1246 const void __user *_payload,
1247 size_t plen,
1248 key_serial_t ringid)
1249{
1250 if (_payload && plen) {
Al Virob353a1f2015-03-17 09:59:38 -04001251 struct iovec iov;
1252 struct iov_iter from;
1253 int ret;
David Howellsee009e4a02011-03-07 15:06:20 +00001254
Al Virob353a1f2015-03-17 09:59:38 -04001255 ret = import_single_range(WRITE, (void __user *)_payload, plen,
1256 &iov, &from);
1257 if (unlikely(ret))
1258 return ret;
1259
1260 return keyctl_instantiate_key_common(id, &from, ringid);
David Howellsee009e4a02011-03-07 15:06:20 +00001261 }
1262
Al Virob353a1f2015-03-17 09:59:38 -04001263 return keyctl_instantiate_key_common(id, NULL, ringid);
David Howellsee009e4a02011-03-07 15:06:20 +00001264}
1265
1266/*
1267 * Instantiate a key with the specified multipart payload and link the key into
1268 * the destination keyring if one is given.
1269 *
1270 * The caller must have the appropriate instantiation permit set for this to
1271 * work (see keyctl_assume_authority). No other permissions are required.
1272 *
1273 * If successful, 0 will be returned.
1274 */
1275long keyctl_instantiate_key_iov(key_serial_t id,
1276 const struct iovec __user *_payload_iov,
1277 unsigned ioc,
1278 key_serial_t ringid)
1279{
1280 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Al Virob353a1f2015-03-17 09:59:38 -04001281 struct iov_iter from;
David Howellsee009e4a02011-03-07 15:06:20 +00001282 long ret;
1283
Al Virob353a1f2015-03-17 09:59:38 -04001284 if (!_payload_iov)
1285 ioc = 0;
David Howellsee009e4a02011-03-07 15:06:20 +00001286
Al Virob353a1f2015-03-17 09:59:38 -04001287 ret = import_iovec(WRITE, _payload_iov, ioc,
1288 ARRAY_SIZE(iovstack), &iov, &from);
David Howellsee009e4a02011-03-07 15:06:20 +00001289 if (ret < 0)
Al Virob353a1f2015-03-17 09:59:38 -04001290 return ret;
1291 ret = keyctl_instantiate_key_common(id, &from, ringid);
1292 kfree(iov);
David Howellsee009e4a02011-03-07 15:06:20 +00001293 return ret;
David Howellsee009e4a02011-03-07 15:06:20 +00001294}
1295
1296/*
David Howells973c9f42011-01-20 16:38:33 +00001297 * Negatively instantiate the key with the given timeout (in seconds) and link
1298 * the key into the destination keyring if one is given.
1299 *
1300 * The caller must have the appropriate instantiation permit set for this to
1301 * work (see keyctl_assume_authority). No other permissions are required.
1302 *
1303 * The key and any links to the key will be automatically garbage collected
1304 * after the timeout expires.
1305 *
1306 * Negative keys are used to rate limit repeated request_key() calls by causing
1307 * them to return -ENOKEY until the negative key expires.
1308 *
1309 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 */
1311long keyctl_negate_key(key_serial_t id, unsigned timeout, key_serial_t ringid)
1312{
David Howellsfdd1b942011-03-07 15:06:09 +00001313 return keyctl_reject_key(id, timeout, ENOKEY, ringid);
1314}
1315
1316/*
1317 * Negatively instantiate the key with the given timeout (in seconds) and error
1318 * code and link the key into the destination keyring if one is given.
1319 *
1320 * The caller must have the appropriate instantiation permit set for this to
1321 * work (see keyctl_assume_authority). No other permissions are required.
1322 *
1323 * The key and any links to the key will be automatically garbage collected
1324 * after the timeout expires.
1325 *
1326 * Negative keys are used to rate limit repeated request_key() calls by causing
1327 * them to return the specified error code until the negative key expires.
1328 *
1329 * If successful, 0 will be returned.
1330 */
1331long keyctl_reject_key(key_serial_t id, unsigned timeout, unsigned error,
1332 key_serial_t ringid)
1333{
David Howellsd84f4f92008-11-14 10:39:23 +11001334 const struct cred *cred = current_cred();
David Howells3e301482005-06-23 22:00:56 -07001335 struct request_key_auth *rka;
David Howells8bbf49762008-11-14 10:39:14 +11001336 struct key *instkey, *dest_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 long ret;
1338
David Howellsfdd1b942011-03-07 15:06:09 +00001339 kenter("%d,%u,%u,%d", id, timeout, error, ringid);
1340
1341 /* must be a valid error code and mustn't be a kernel special */
1342 if (error <= 0 ||
1343 error >= MAX_ERRNO ||
1344 error == ERESTARTSYS ||
1345 error == ERESTARTNOINTR ||
1346 error == ERESTARTNOHAND ||
1347 error == ERESTART_RESTARTBLOCK)
1348 return -EINVAL;
David Howellsd84f4f92008-11-14 10:39:23 +11001349
David Howellsb5f545c2006-01-08 01:02:47 -08001350 /* the appropriate instantiation authorisation key must have been
1351 * assumed before calling this */
1352 ret = -EPERM;
David Howellsd84f4f92008-11-14 10:39:23 +11001353 instkey = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -08001354 if (!instkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
David Howells146aa8b2015-10-21 14:04:48 +01001357 rka = instkey->payload.data[0];
David Howellsb5f545c2006-01-08 01:02:47 -08001358 if (rka->target_key->serial != id)
1359 goto error;
David Howells3e301482005-06-23 22:00:56 -07001360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /* find the destination keyring if present (which must also be
1362 * writable) */
David Howells8bbf49762008-11-14 10:39:14 +11001363 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1364 if (ret < 0)
1365 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /* instantiate the key and link it into a keyring */
David Howellsfdd1b942011-03-07 15:06:09 +00001368 ret = key_reject_and_link(rka->target_key, timeout, error,
David Howells8bbf49762008-11-14 10:39:14 +11001369 dest_keyring, instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
David Howells8bbf49762008-11-14 10:39:14 +11001371 key_put(dest_keyring);
David Howellsb5f545c2006-01-08 01:02:47 -08001372
1373 /* discard the assumed authority if it's just been disabled by
1374 * instantiation of the key */
David Howellsd84f4f92008-11-14 10:39:23 +11001375 if (ret == 0)
1376 keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001377
1378error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001380}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382/*
David Howells973c9f42011-01-20 16:38:33 +00001383 * Read or set the default keyring in which request_key() will cache keys and
1384 * return the old setting.
1385 *
Eric Biggersc9f838d2017-04-18 15:31:09 +01001386 * If a thread or process keyring is specified then it will be created if it
1387 * doesn't yet exist. The old setting will be returned if successful.
David Howells3e301482005-06-23 22:00:56 -07001388 */
1389long keyctl_set_reqkey_keyring(int reqkey_defl)
1390{
David Howellsd84f4f92008-11-14 10:39:23 +11001391 struct cred *new;
1392 int ret, old_setting;
1393
1394 old_setting = current_cred_xxx(jit_keyring);
1395
1396 if (reqkey_defl == KEY_REQKEY_DEFL_NO_CHANGE)
1397 return old_setting;
1398
1399 new = prepare_creds();
1400 if (!new)
1401 return -ENOMEM;
David Howells3e301482005-06-23 22:00:56 -07001402
1403 switch (reqkey_defl) {
1404 case KEY_REQKEY_DEFL_THREAD_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001405 ret = install_thread_keyring_to_cred(new);
David Howells3e301482005-06-23 22:00:56 -07001406 if (ret < 0)
David Howellsd84f4f92008-11-14 10:39:23 +11001407 goto error;
David Howells3e301482005-06-23 22:00:56 -07001408 goto set;
1409
1410 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001411 ret = install_process_keyring_to_cred(new);
Eric Biggersc9f838d2017-04-18 15:31:09 +01001412 if (ret < 0)
1413 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +11001414 goto set;
David Howells3e301482005-06-23 22:00:56 -07001415
1416 case KEY_REQKEY_DEFL_DEFAULT:
1417 case KEY_REQKEY_DEFL_SESSION_KEYRING:
1418 case KEY_REQKEY_DEFL_USER_KEYRING:
1419 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001420 case KEY_REQKEY_DEFL_REQUESTOR_KEYRING:
1421 goto set;
David Howells3e301482005-06-23 22:00:56 -07001422
1423 case KEY_REQKEY_DEFL_NO_CHANGE:
David Howells3e301482005-06-23 22:00:56 -07001424 case KEY_REQKEY_DEFL_GROUP_KEYRING:
1425 default:
David Howellsd84f4f92008-11-14 10:39:23 +11001426 ret = -EINVAL;
1427 goto error;
David Howells3e301482005-06-23 22:00:56 -07001428 }
1429
David Howellsd84f4f92008-11-14 10:39:23 +11001430set:
1431 new->jit_keyring = reqkey_defl;
1432 commit_creds(new);
1433 return old_setting;
1434error:
1435 abort_creds(new);
Dan Carpenter4303ef12010-06-11 17:30:05 +01001436 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001437}
David Howellsd84f4f92008-11-14 10:39:23 +11001438
David Howells3e301482005-06-23 22:00:56 -07001439/*
David Howells973c9f42011-01-20 16:38:33 +00001440 * Set or clear the timeout on a key.
1441 *
1442 * Either the key must grant the caller Setattr permission or else the caller
1443 * must hold an instantiation authorisation token for the key.
1444 *
1445 * The timeout is either 0 to clear the timeout, or a number of seconds from
1446 * the current time. The key and any links to the key will be automatically
1447 * garbage collected after the timeout expires.
1448 *
Mimi Zohard3600bc2015-11-10 08:34:46 -05001449 * Keys with KEY_FLAG_KEEP set should not be timed out.
1450 *
David Howells973c9f42011-01-20 16:38:33 +00001451 * If successful, 0 is returned.
David Howells017679c2006-01-08 01:02:43 -08001452 */
1453long keyctl_set_timeout(key_serial_t id, unsigned timeout)
1454{
David Howells91562352010-06-11 17:31:05 +01001455 struct key *key, *instkey;
David Howells017679c2006-01-08 01:02:43 -08001456 key_ref_t key_ref;
David Howells017679c2006-01-08 01:02:43 -08001457 long ret;
1458
David Howells55931222009-09-02 09:13:45 +01001459 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
Linus Torvalds028db3e2019-07-10 18:43:43 -07001460 KEY_NEED_SETATTR);
David Howells017679c2006-01-08 01:02:43 -08001461 if (IS_ERR(key_ref)) {
David Howells91562352010-06-11 17:31:05 +01001462 /* setting the timeout on a key under construction is permitted
1463 * if we have the authorisation token handy */
1464 if (PTR_ERR(key_ref) == -EACCES) {
1465 instkey = key_get_instantiation_authkey(id);
1466 if (!IS_ERR(instkey)) {
1467 key_put(instkey);
1468 key_ref = lookup_user_key(id,
1469 KEY_LOOKUP_PARTIAL,
1470 0);
1471 if (!IS_ERR(key_ref))
1472 goto okay;
1473 }
1474 }
1475
David Howells017679c2006-01-08 01:02:43 -08001476 ret = PTR_ERR(key_ref);
1477 goto error;
1478 }
1479
David Howells91562352010-06-11 17:31:05 +01001480okay:
David Howells017679c2006-01-08 01:02:43 -08001481 key = key_ref_to_ptr(key_ref);
Mimi Zohar1d6d1672016-01-07 07:46:36 -05001482 ret = 0;
Mimi Zohard3600bc2015-11-10 08:34:46 -05001483 if (test_bit(KEY_FLAG_KEEP, &key->flags))
1484 ret = -EPERM;
Mimi Zohar1d6d1672016-01-07 07:46:36 -05001485 else
Mimi Zohard3600bc2015-11-10 08:34:46 -05001486 key_set_timeout(key, timeout);
David Howells017679c2006-01-08 01:02:43 -08001487 key_put(key);
1488
David Howells017679c2006-01-08 01:02:43 -08001489error:
1490 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001491}
David Howells017679c2006-01-08 01:02:43 -08001492
David Howells017679c2006-01-08 01:02:43 -08001493/*
David Howells973c9f42011-01-20 16:38:33 +00001494 * Assume (or clear) the authority to instantiate the specified key.
1495 *
1496 * This sets the authoritative token currently in force for key instantiation.
1497 * This must be done for a key to be instantiated. It has the effect of making
1498 * available all the keys from the caller of the request_key() that created a
1499 * key to request_key() calls made by the caller of this function.
1500 *
1501 * The caller must have the instantiation key in their process keyrings with a
1502 * Search permission grant available to the caller.
1503 *
1504 * If the ID given is 0, then the setting will be cleared and 0 returned.
1505 *
1506 * If the ID given has a matching an authorisation key, then that key will be
1507 * set and its ID will be returned. The authorisation key can be read to get
1508 * the callout information passed to request_key().
David Howellsb5f545c2006-01-08 01:02:47 -08001509 */
1510long keyctl_assume_authority(key_serial_t id)
1511{
1512 struct key *authkey;
1513 long ret;
1514
1515 /* special key IDs aren't permitted */
1516 ret = -EINVAL;
1517 if (id < 0)
1518 goto error;
1519
1520 /* we divest ourselves of authority if given an ID of 0 */
1521 if (id == 0) {
David Howellsd84f4f92008-11-14 10:39:23 +11001522 ret = keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001523 goto error;
1524 }
1525
1526 /* attempt to assume the authority temporarily granted to us whilst we
1527 * instantiate the specified key
1528 * - the authorisation key must be in the current task's keyrings
1529 * somewhere
1530 */
1531 authkey = key_get_instantiation_authkey(id);
1532 if (IS_ERR(authkey)) {
1533 ret = PTR_ERR(authkey);
1534 goto error;
1535 }
1536
David Howellsd84f4f92008-11-14 10:39:23 +11001537 ret = keyctl_change_reqkey_auth(authkey);
Eric Biggers884bee02017-09-18 11:36:12 -07001538 if (ret == 0)
1539 ret = authkey->serial;
David Howellsd84f4f92008-11-14 10:39:23 +11001540 key_put(authkey);
David Howellsb5f545c2006-01-08 01:02:47 -08001541error:
1542 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001543}
David Howellsb5f545c2006-01-08 01:02:47 -08001544
David Howells70a5bb72008-04-29 01:01:26 -07001545/*
David Howells973c9f42011-01-20 16:38:33 +00001546 * Get a key's the LSM security label.
1547 *
1548 * The key must grant the caller View permission for this to work.
1549 *
1550 * If there's a buffer, then up to buflen bytes of data will be placed into it.
1551 *
1552 * If successful, the amount of information available will be returned,
1553 * irrespective of how much was copied (including the terminal NUL).
David Howells70a5bb72008-04-29 01:01:26 -07001554 */
1555long keyctl_get_security(key_serial_t keyid,
1556 char __user *buffer,
1557 size_t buflen)
1558{
1559 struct key *key, *instkey;
1560 key_ref_t key_ref;
1561 char *context;
1562 long ret;
1563
David Howellsf5895942014-03-14 17:44:49 +00001564 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_NEED_VIEW);
David Howells70a5bb72008-04-29 01:01:26 -07001565 if (IS_ERR(key_ref)) {
1566 if (PTR_ERR(key_ref) != -EACCES)
1567 return PTR_ERR(key_ref);
1568
1569 /* viewing a key under construction is also permitted if we
1570 * have the authorisation token handy */
1571 instkey = key_get_instantiation_authkey(keyid);
1572 if (IS_ERR(instkey))
Roel Kluinfa1cc7b2009-12-15 15:05:12 -08001573 return PTR_ERR(instkey);
David Howells70a5bb72008-04-29 01:01:26 -07001574 key_put(instkey);
1575
David Howells55931222009-09-02 09:13:45 +01001576 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, 0);
David Howells70a5bb72008-04-29 01:01:26 -07001577 if (IS_ERR(key_ref))
1578 return PTR_ERR(key_ref);
1579 }
1580
1581 key = key_ref_to_ptr(key_ref);
1582 ret = security_key_getsecurity(key, &context);
1583 if (ret == 0) {
1584 /* if no information was returned, give userspace an empty
1585 * string */
1586 ret = 1;
1587 if (buffer && buflen > 0 &&
1588 copy_to_user(buffer, "", 1) != 0)
1589 ret = -EFAULT;
1590 } else if (ret > 0) {
1591 /* return as much data as there's room for */
1592 if (buffer && buflen > 0) {
1593 if (buflen > ret)
1594 buflen = ret;
1595
1596 if (copy_to_user(buffer, context, buflen) != 0)
1597 ret = -EFAULT;
1598 }
1599
1600 kfree(context);
1601 }
1602
1603 key_ref_put(key_ref);
1604 return ret;
1605}
1606
David Howellsee18d642009-09-02 09:14:21 +01001607/*
David Howells973c9f42011-01-20 16:38:33 +00001608 * Attempt to install the calling process's session keyring on the process's
1609 * parent process.
1610 *
Linus Torvalds028db3e2019-07-10 18:43:43 -07001611 * The keyring must exist and must grant the caller LINK permission, and the
David Howells973c9f42011-01-20 16:38:33 +00001612 * parent process must be single-threaded and must have the same effective
1613 * ownership as this process and mustn't be SUID/SGID.
1614 *
1615 * The keyring will be emplaced on the parent when it next resumes userspace.
1616 *
1617 * If successful, 0 will be returned.
David Howellsee18d642009-09-02 09:14:21 +01001618 */
1619long keyctl_session_to_parent(void)
1620{
1621 struct task_struct *me, *parent;
1622 const struct cred *mycred, *pcred;
Al Viro67d12142012-06-27 11:07:19 +04001623 struct callback_head *newwork, *oldwork;
David Howellsee18d642009-09-02 09:14:21 +01001624 key_ref_t keyring_r;
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001625 struct cred *cred;
David Howellsee18d642009-09-02 09:14:21 +01001626 int ret;
1627
Linus Torvalds028db3e2019-07-10 18:43:43 -07001628 keyring_r = lookup_user_key(KEY_SPEC_SESSION_KEYRING, 0, KEY_NEED_LINK);
David Howellsee18d642009-09-02 09:14:21 +01001629 if (IS_ERR(keyring_r))
1630 return PTR_ERR(keyring_r);
1631
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001632 ret = -ENOMEM;
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001633
David Howellsee18d642009-09-02 09:14:21 +01001634 /* our parent is going to need a new cred struct, a new tgcred struct
1635 * and new security data, so we allocate them here to prevent ENOMEM in
1636 * our parent */
David Howellsee18d642009-09-02 09:14:21 +01001637 cred = cred_alloc_blank();
1638 if (!cred)
Al Viro67d12142012-06-27 11:07:19 +04001639 goto error_keyring;
1640 newwork = &cred->rcu;
David Howellsee18d642009-09-02 09:14:21 +01001641
David Howells3a505972012-10-02 19:24:29 +01001642 cred->session_keyring = key_ref_to_ptr(keyring_r);
1643 keyring_r = NULL;
Al Viro67d12142012-06-27 11:07:19 +04001644 init_task_work(newwork, key_change_session_keyring);
David Howellsee18d642009-09-02 09:14:21 +01001645
1646 me = current;
David Howells9d1ac652010-09-10 09:59:46 +01001647 rcu_read_lock();
David Howellsee18d642009-09-02 09:14:21 +01001648 write_lock_irq(&tasklist_lock);
1649
David Howellsee18d642009-09-02 09:14:21 +01001650 ret = -EPERM;
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001651 oldwork = NULL;
David Howells7936d162019-05-22 14:09:29 +01001652 parent = rcu_dereference_protected(me->real_parent,
1653 lockdep_is_held(&tasklist_lock));
David Howellsee18d642009-09-02 09:14:21 +01001654
1655 /* the parent mustn't be init and mustn't be a kernel thread */
1656 if (parent->pid <= 1 || !parent->mm)
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001657 goto unlock;
David Howellsee18d642009-09-02 09:14:21 +01001658
1659 /* the parent must be single threaded */
Oleg Nesterovdd98acf2010-05-26 14:43:23 -07001660 if (!thread_group_empty(parent))
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001661 goto unlock;
David Howellsee18d642009-09-02 09:14:21 +01001662
1663 /* the parent and the child must have different session keyrings or
1664 * there's no point */
1665 mycred = current_cred();
1666 pcred = __task_cred(parent);
1667 if (mycred == pcred ||
David Howells3a505972012-10-02 19:24:29 +01001668 mycred->session_keyring == pcred->session_keyring) {
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001669 ret = 0;
1670 goto unlock;
1671 }
David Howellsee18d642009-09-02 09:14:21 +01001672
1673 /* the parent must have the same effective ownership and mustn't be
1674 * SUID/SGID */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -08001675 if (!uid_eq(pcred->uid, mycred->euid) ||
1676 !uid_eq(pcred->euid, mycred->euid) ||
1677 !uid_eq(pcred->suid, mycred->euid) ||
1678 !gid_eq(pcred->gid, mycred->egid) ||
1679 !gid_eq(pcred->egid, mycred->egid) ||
1680 !gid_eq(pcred->sgid, mycred->egid))
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001681 goto unlock;
David Howellsee18d642009-09-02 09:14:21 +01001682
1683 /* the keyrings must have the same UID */
David Howells3a505972012-10-02 19:24:29 +01001684 if ((pcred->session_keyring &&
Linus Torvalds2a74dbb2012-12-16 15:40:50 -08001685 !uid_eq(pcred->session_keyring->uid, mycred->euid)) ||
1686 !uid_eq(mycred->session_keyring->uid, mycred->euid))
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001687 goto unlock;
David Howellsee18d642009-09-02 09:14:21 +01001688
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001689 /* cancel an already pending keyring replacement */
1690 oldwork = task_work_cancel(parent, key_change_session_keyring);
David Howellsee18d642009-09-02 09:14:21 +01001691
1692 /* the replacement session keyring is applied just prior to userspace
1693 * restarting */
Al Viro67d12142012-06-27 11:07:19 +04001694 ret = task_work_add(parent, newwork, true);
Oleg Nesterov413cd3d2012-05-11 10:59:08 +10001695 if (!ret)
1696 newwork = NULL;
1697unlock:
David Howellsee18d642009-09-02 09:14:21 +01001698 write_unlock_irq(&tasklist_lock);
David Howells9d1ac652010-09-10 09:59:46 +01001699 rcu_read_unlock();
Al Viro67d12142012-06-27 11:07:19 +04001700 if (oldwork)
1701 put_cred(container_of(oldwork, struct cred, rcu));
1702 if (newwork)
1703 put_cred(cred);
David Howellsee18d642009-09-02 09:14:21 +01001704 return ret;
1705
1706error_keyring:
1707 key_ref_put(keyring_r);
1708 return ret;
1709}
1710
David Howellsb5f545c2006-01-08 01:02:47 -08001711/*
Mat Martineau6563c912017-03-01 16:44:09 -08001712 * Apply a restriction to a given keyring.
1713 *
1714 * The caller must have Setattr permission to change keyring restrictions.
1715 *
1716 * The requested type name may be a NULL pointer to reject all attempts
Eric Biggers18026d82017-12-08 15:13:29 +00001717 * to link to the keyring. In this case, _restriction must also be NULL.
1718 * Otherwise, both _type and _restriction must be non-NULL.
Mat Martineau6563c912017-03-01 16:44:09 -08001719 *
1720 * Returns 0 if successful.
1721 */
1722long keyctl_restrict_keyring(key_serial_t id, const char __user *_type,
1723 const char __user *_restriction)
1724{
1725 key_ref_t key_ref;
Mat Martineau6563c912017-03-01 16:44:09 -08001726 char type[32];
1727 char *restriction = NULL;
1728 long ret;
1729
Linus Torvalds028db3e2019-07-10 18:43:43 -07001730 key_ref = lookup_user_key(id, 0, KEY_NEED_SETATTR);
Mat Martineau6563c912017-03-01 16:44:09 -08001731 if (IS_ERR(key_ref))
1732 return PTR_ERR(key_ref);
1733
Eric Biggers18026d82017-12-08 15:13:29 +00001734 ret = -EINVAL;
Mat Martineau6563c912017-03-01 16:44:09 -08001735 if (_type) {
Eric Biggers18026d82017-12-08 15:13:29 +00001736 if (!_restriction)
1737 goto error;
1738
Mat Martineau6563c912017-03-01 16:44:09 -08001739 ret = key_get_type_from_user(type, _type, sizeof(type));
1740 if (ret < 0)
1741 goto error;
Mat Martineau6563c912017-03-01 16:44:09 -08001742
1743 restriction = strndup_user(_restriction, PAGE_SIZE);
1744 if (IS_ERR(restriction)) {
1745 ret = PTR_ERR(restriction);
1746 goto error;
1747 }
Eric Biggers18026d82017-12-08 15:13:29 +00001748 } else {
1749 if (_restriction)
1750 goto error;
Mat Martineau6563c912017-03-01 16:44:09 -08001751 }
1752
Eric Biggers18026d82017-12-08 15:13:29 +00001753 ret = keyring_restrict(key_ref, _type ? type : NULL, restriction);
Mat Martineau6563c912017-03-01 16:44:09 -08001754 kfree(restriction);
Mat Martineau6563c912017-03-01 16:44:09 -08001755error:
1756 key_ref_put(key_ref);
Mat Martineau6563c912017-03-01 16:44:09 -08001757 return ret;
1758}
1759
1760/*
David Howells45e0f302019-05-30 14:53:10 +01001761 * Get keyrings subsystem capabilities.
1762 */
1763long keyctl_capabilities(unsigned char __user *_buffer, size_t buflen)
1764{
1765 size_t size = buflen;
1766
1767 if (size > 0) {
1768 if (size > sizeof(keyrings_capabilities))
1769 size = sizeof(keyrings_capabilities);
1770 if (copy_to_user(_buffer, keyrings_capabilities, size) != 0)
1771 return -EFAULT;
1772 if (size < buflen &&
1773 clear_user(_buffer + size, buflen - size) != 0)
1774 return -EFAULT;
1775 }
1776
1777 return sizeof(keyrings_capabilities);
1778}
1779
1780/*
David Howells973c9f42011-01-20 16:38:33 +00001781 * The key control system call
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001783SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3,
1784 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
1786 switch (option) {
1787 case KEYCTL_GET_KEYRING_ID:
1788 return keyctl_get_keyring_ID((key_serial_t) arg2,
1789 (int) arg3);
1790
1791 case KEYCTL_JOIN_SESSION_KEYRING:
1792 return keyctl_join_session_keyring((const char __user *) arg2);
1793
1794 case KEYCTL_UPDATE:
1795 return keyctl_update_key((key_serial_t) arg2,
1796 (const void __user *) arg3,
1797 (size_t) arg4);
1798
1799 case KEYCTL_REVOKE:
1800 return keyctl_revoke_key((key_serial_t) arg2);
1801
1802 case KEYCTL_DESCRIBE:
1803 return keyctl_describe_key((key_serial_t) arg2,
1804 (char __user *) arg3,
1805 (unsigned) arg4);
1806
1807 case KEYCTL_CLEAR:
1808 return keyctl_keyring_clear((key_serial_t) arg2);
1809
1810 case KEYCTL_LINK:
1811 return keyctl_keyring_link((key_serial_t) arg2,
1812 (key_serial_t) arg3);
1813
1814 case KEYCTL_UNLINK:
1815 return keyctl_keyring_unlink((key_serial_t) arg2,
1816 (key_serial_t) arg3);
1817
1818 case KEYCTL_SEARCH:
1819 return keyctl_keyring_search((key_serial_t) arg2,
1820 (const char __user *) arg3,
1821 (const char __user *) arg4,
1822 (key_serial_t) arg5);
1823
1824 case KEYCTL_READ:
1825 return keyctl_read_key((key_serial_t) arg2,
1826 (char __user *) arg3,
1827 (size_t) arg4);
1828
1829 case KEYCTL_CHOWN:
1830 return keyctl_chown_key((key_serial_t) arg2,
1831 (uid_t) arg3,
1832 (gid_t) arg4);
1833
1834 case KEYCTL_SETPERM:
1835 return keyctl_setperm_key((key_serial_t) arg2,
Linus Torvalds028db3e2019-07-10 18:43:43 -07001836 (key_perm_t) arg3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838 case KEYCTL_INSTANTIATE:
1839 return keyctl_instantiate_key((key_serial_t) arg2,
1840 (const void __user *) arg3,
1841 (size_t) arg4,
1842 (key_serial_t) arg5);
1843
1844 case KEYCTL_NEGATE:
1845 return keyctl_negate_key((key_serial_t) arg2,
1846 (unsigned) arg3,
1847 (key_serial_t) arg4);
1848
David Howells3e301482005-06-23 22:00:56 -07001849 case KEYCTL_SET_REQKEY_KEYRING:
1850 return keyctl_set_reqkey_keyring(arg2);
1851
David Howells017679c2006-01-08 01:02:43 -08001852 case KEYCTL_SET_TIMEOUT:
1853 return keyctl_set_timeout((key_serial_t) arg2,
1854 (unsigned) arg3);
1855
David Howellsb5f545c2006-01-08 01:02:47 -08001856 case KEYCTL_ASSUME_AUTHORITY:
1857 return keyctl_assume_authority((key_serial_t) arg2);
1858
David Howells70a5bb72008-04-29 01:01:26 -07001859 case KEYCTL_GET_SECURITY:
1860 return keyctl_get_security((key_serial_t) arg2,
James Morris90bd49a2008-12-29 14:35:35 +11001861 (char __user *) arg3,
David Howells70a5bb72008-04-29 01:01:26 -07001862 (size_t) arg4);
1863
David Howellsee18d642009-09-02 09:14:21 +01001864 case KEYCTL_SESSION_TO_PARENT:
1865 return keyctl_session_to_parent();
1866
David Howellsfdd1b942011-03-07 15:06:09 +00001867 case KEYCTL_REJECT:
1868 return keyctl_reject_key((key_serial_t) arg2,
1869 (unsigned) arg3,
1870 (unsigned) arg4,
1871 (key_serial_t) arg5);
1872
David Howellsee009e4a02011-03-07 15:06:20 +00001873 case KEYCTL_INSTANTIATE_IOV:
1874 return keyctl_instantiate_key_iov(
1875 (key_serial_t) arg2,
1876 (const struct iovec __user *) arg3,
1877 (unsigned) arg4,
1878 (key_serial_t) arg5);
1879
David Howellsfd758152012-05-11 10:56:56 +01001880 case KEYCTL_INVALIDATE:
1881 return keyctl_invalidate_key((key_serial_t) arg2);
1882
David Howellsf36f8c72013-09-24 10:35:19 +01001883 case KEYCTL_GET_PERSISTENT:
1884 return keyctl_get_persistent((uid_t)arg2, (key_serial_t)arg3);
1885
Mat Martineauddbb4112016-04-12 19:54:58 +01001886 case KEYCTL_DH_COMPUTE:
1887 return keyctl_dh_compute((struct keyctl_dh_params __user *) arg2,
Stephan Mueller4693fc72016-05-26 23:38:12 +02001888 (char __user *) arg3, (size_t) arg4,
Stephan Muellerf1c316a2016-08-19 20:39:09 +02001889 (struct keyctl_kdf_params __user *) arg5);
Mat Martineauddbb4112016-04-12 19:54:58 +01001890
Mat Martineau6563c912017-03-01 16:44:09 -08001891 case KEYCTL_RESTRICT_KEYRING:
1892 return keyctl_restrict_keyring((key_serial_t) arg2,
1893 (const char __user *) arg3,
1894 (const char __user *) arg4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
David Howells00d60fd2018-10-09 17:46:59 +01001896 case KEYCTL_PKEY_QUERY:
1897 if (arg3 != 0)
1898 return -EINVAL;
1899 return keyctl_pkey_query((key_serial_t)arg2,
1900 (const char __user *)arg4,
Ben Dooks468e91c2019-03-01 11:30:26 +00001901 (struct keyctl_pkey_query __user *)arg5);
David Howells00d60fd2018-10-09 17:46:59 +01001902
1903 case KEYCTL_PKEY_ENCRYPT:
1904 case KEYCTL_PKEY_DECRYPT:
1905 case KEYCTL_PKEY_SIGN:
1906 return keyctl_pkey_e_d_s(
1907 option,
1908 (const struct keyctl_pkey_params __user *)arg2,
1909 (const char __user *)arg3,
1910 (const void __user *)arg4,
1911 (void __user *)arg5);
1912
1913 case KEYCTL_PKEY_VERIFY:
1914 return keyctl_pkey_verify(
1915 (const struct keyctl_pkey_params __user *)arg2,
1916 (const char __user *)arg3,
1917 (const void __user *)arg4,
1918 (const void __user *)arg5);
1919
David Howellsed0ac5c2019-05-20 21:51:50 +01001920 case KEYCTL_MOVE:
1921 return keyctl_keyring_move((key_serial_t)arg2,
1922 (key_serial_t)arg3,
1923 (key_serial_t)arg4,
1924 (unsigned int)arg5);
1925
David Howells45e0f302019-05-30 14:53:10 +01001926 case KEYCTL_CAPABILITIES:
1927 return keyctl_capabilities((unsigned char __user *)arg2, (size_t)arg3);
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 default:
1930 return -EOPNOTSUPP;
1931 }
1932}