]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - security/keys/keyctl.c
Merge tag 'docs-5.3' of git://git.lwn.net/linux
[mirror_ubuntu-hirsute-kernel.git] / security / keys / keyctl.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
973c9f4f 2/* Userspace key control operations
1da177e4 3 *
3e30148c 4 * Copyright (C) 2004-5 Red Hat, Inc. All Rights Reserved.
1da177e4 5 * Written by David Howells (dhowells@redhat.com)
1da177e4
LT
6 */
7
1da177e4
LT
8#include <linux/init.h>
9#include <linux/sched.h>
29930025 10#include <linux/sched/task.h>
1da177e4
LT
11#include <linux/slab.h>
12#include <linux/syscalls.h>
59e6b9c1 13#include <linux/key.h>
1da177e4
LT
14#include <linux/keyctl.h>
15#include <linux/fs.h>
c59ede7b 16#include <linux/capability.h>
5b825c3a 17#include <linux/cred.h>
0cb409d9 18#include <linux/string.h>
1da177e4 19#include <linux/err.h>
38bbca6b 20#include <linux/vmalloc.h>
70a5bb72 21#include <linux/security.h>
a27bb332 22#include <linux/uio.h>
7c0f6ba6 23#include <linux/uaccess.h>
822ad64d 24#include <keys/request_key_auth-type.h>
1da177e4
LT
25#include "internal.h"
26
aa9d4437
DH
27#define KEY_MAX_DESC_SIZE 4096
28
b206f281 29static const unsigned char keyrings_capabilities[2] = {
45e0f30c
DH
30 [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 ),
3b6e4de0 39 [1] = (KEYCTL_CAPS1_NS_KEYRING_NAME |
7a1ade84
DH
40 KEYCTL_CAPS1_NS_KEY_TAG |
41 KEYCTL_CAPS1_ACL_ALTERABLE),
45e0f30c
DH
42};
43
0cb409d9
DA
44static int key_get_type_from_user(char *type,
45 const char __user *_type,
46 unsigned len)
47{
48 int ret;
49
50 ret = strncpy_from_user(type, _type, len);
0cb409d9 51 if (ret < 0)
4303ef19 52 return ret;
0cb409d9
DA
53 if (ret == 0 || ret >= len)
54 return -EINVAL;
54e2c2c1
DH
55 if (type[0] == '.')
56 return -EPERM;
0cb409d9 57 type[len - 1] = '\0';
0cb409d9
DA
58 return 0;
59}
60
1da177e4 61/*
973c9f4f
DH
62 * Extract the description of a new key from userspace and either add it as a
63 * new key to the specified keyring or update a matching key in that keyring.
64 *
cf7f601c
DH
65 * If the description is NULL or an empty string, the key type is asked to
66 * generate one from the payload.
67 *
973c9f4f
DH
68 * The keyring must be writable so that we can attach the key to it.
69 *
70 * If successful, the new key's serial number is returned, otherwise an error
71 * code is returned.
1da177e4 72 */
1e7bfb21
HC
73SYSCALL_DEFINE5(add_key, const char __user *, _type,
74 const char __user *, _description,
75 const void __user *, _payload,
76 size_t, plen,
77 key_serial_t, ringid)
1da177e4 78{
664cceb0 79 key_ref_t keyring_ref, key_ref;
1da177e4
LT
80 char type[32], *description;
81 void *payload;
0cb409d9 82 long ret;
1da177e4
LT
83
84 ret = -EINVAL;
38bbca6b 85 if (plen > 1024 * 1024 - 1)
1da177e4
LT
86 goto error;
87
88 /* draw all the data into kernel space */
0cb409d9 89 ret = key_get_type_from_user(type, _type, sizeof(type));
1da177e4
LT
90 if (ret < 0)
91 goto error;
1da177e4 92
cf7f601c
DH
93 description = NULL;
94 if (_description) {
aa9d4437 95 description = strndup_user(_description, KEY_MAX_DESC_SIZE);
cf7f601c
DH
96 if (IS_ERR(description)) {
97 ret = PTR_ERR(description);
98 goto error;
99 }
100 if (!*description) {
101 kfree(description);
102 description = NULL;
a4e3b8d7
MZ
103 } else if ((description[0] == '.') &&
104 (strncmp(type, "keyring", 7) == 0)) {
105 ret = -EPERM;
106 goto error2;
cf7f601c 107 }
0cb409d9 108 }
1da177e4
LT
109
110 /* pull the payload in if one was supplied */
111 payload = NULL;
112
5649645d 113 if (plen) {
1da177e4 114 ret = -ENOMEM;
752ade68
MH
115 payload = kvmalloc(plen, GFP_KERNEL);
116 if (!payload)
117 goto error2;
1da177e4
LT
118
119 ret = -EFAULT;
120 if (copy_from_user(payload, _payload, plen) != 0)
121 goto error3;
122 }
123
124 /* find the target keyring (which must be writable) */
f5895943 125 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
664cceb0
DH
126 if (IS_ERR(keyring_ref)) {
127 ret = PTR_ERR(keyring_ref);
1da177e4
LT
128 goto error3;
129 }
130
131 /* create or update the requested key and add it to the target
132 * keyring */
664cceb0 133 key_ref = key_create_or_update(keyring_ref, type, description,
2e12256b 134 payload, plen, NULL, KEY_ALLOC_IN_QUOTA);
664cceb0
DH
135 if (!IS_ERR(key_ref)) {
136 ret = key_ref_to_ptr(key_ref)->serial;
137 key_ref_put(key_ref);
1da177e4
LT
138 }
139 else {
664cceb0 140 ret = PTR_ERR(key_ref);
1da177e4
LT
141 }
142
664cceb0 143 key_ref_put(keyring_ref);
1da177e4 144 error3:
57070c85
EB
145 if (payload) {
146 memzero_explicit(payload, plen);
147 kvfree(payload);
148 }
1da177e4
LT
149 error2:
150 kfree(description);
151 error:
152 return ret;
a8b17ed0 153}
1da177e4 154
1da177e4 155/*
973c9f4f
DH
156 * 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 "-".
1da177e4 167 */
1e7bfb21
HC
168SYSCALL_DEFINE4(request_key, const char __user *, _type,
169 const char __user *, _description,
170 const char __user *, _callout_info,
171 key_serial_t, destringid)
1da177e4
LT
172{
173 struct key_type *ktype;
664cceb0
DH
174 struct key *key;
175 key_ref_t dest_ref;
4a38e122 176 size_t callout_len;
1da177e4 177 char type[32], *description, *callout_info;
0cb409d9 178 long ret;
1da177e4
LT
179
180 /* pull the type into kernel space */
0cb409d9 181 ret = key_get_type_from_user(type, _type, sizeof(type));
1da177e4
LT
182 if (ret < 0)
183 goto error;
1260f801 184
1da177e4 185 /* pull the description into kernel space */
aa9d4437 186 description = strndup_user(_description, KEY_MAX_DESC_SIZE);
0cb409d9
DA
187 if (IS_ERR(description)) {
188 ret = PTR_ERR(description);
1da177e4 189 goto error;
0cb409d9 190 }
1da177e4
LT
191
192 /* pull the callout info into kernel space */
193 callout_info = NULL;
4a38e122 194 callout_len = 0;
1da177e4 195 if (_callout_info) {
0cb409d9
DA
196 callout_info = strndup_user(_callout_info, PAGE_SIZE);
197 if (IS_ERR(callout_info)) {
198 ret = PTR_ERR(callout_info);
1da177e4 199 goto error2;
0cb409d9 200 }
4a38e122 201 callout_len = strlen(callout_info);
1da177e4
LT
202 }
203
204 /* get the destination keyring if specified */
664cceb0 205 dest_ref = NULL;
1da177e4 206 if (destringid) {
5593122e 207 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
f5895943 208 KEY_NEED_WRITE);
664cceb0
DH
209 if (IS_ERR(dest_ref)) {
210 ret = PTR_ERR(dest_ref);
1da177e4
LT
211 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 */
a58946c1 223 key = request_key_and_link(ktype, description, NULL, callout_info,
2e12256b
DH
224 callout_len, NULL, NULL,
225 key_ref_to_ptr(dest_ref),
7e047ef5 226 KEY_ALLOC_IN_QUOTA);
1da177e4
LT
227 if (IS_ERR(key)) {
228 ret = PTR_ERR(key);
229 goto error5;
230 }
231
4aab1e89
DH
232 /* wait for the key to finish being constructed */
233 ret = wait_for_key_construction(key, 1);
234 if (ret < 0)
235 goto error6;
236
1da177e4
LT
237 ret = key->serial;
238
4aab1e89 239error6:
3e30148c 240 key_put(key);
c5b60b5e 241error5:
1da177e4 242 key_type_put(ktype);
c5b60b5e 243error4:
664cceb0 244 key_ref_put(dest_ref);
c5b60b5e 245error3:
1da177e4 246 kfree(callout_info);
c5b60b5e 247error2:
1da177e4 248 kfree(description);
c5b60b5e 249error:
1da177e4 250 return ret;
a8b17ed0 251}
1da177e4 252
1da177e4 253/*
973c9f4f
DH
254 * Get the ID of the specified process keyring.
255 *
256 * The requested keyring must have search permission to be found.
257 *
258 * If successful, the ID of the requested keyring will be returned.
1da177e4
LT
259 */
260long keyctl_get_keyring_ID(key_serial_t id, int create)
261{
664cceb0 262 key_ref_t key_ref;
5593122e 263 unsigned long lflags;
1da177e4
LT
264 long ret;
265
5593122e 266 lflags = create ? KEY_LOOKUP_CREATE : 0;
f5895943 267 key_ref = lookup_user_key(id, lflags, KEY_NEED_SEARCH);
664cceb0
DH
268 if (IS_ERR(key_ref)) {
269 ret = PTR_ERR(key_ref);
1da177e4
LT
270 goto error;
271 }
272
664cceb0
DH
273 ret = key_ref_to_ptr(key_ref)->serial;
274 key_ref_put(key_ref);
c5b60b5e 275error:
1da177e4 276 return ret;
973c9f4f 277}
1da177e4 278
1da177e4 279/*
973c9f4f
DH
280 * Join a (named) session keyring.
281 *
282 * Create and join an anonymous session keyring or join a named session
283 * keyring, creating it if necessary. A named session keyring must have Search
284 * permission for it to be joined. Session keyrings without this permit will
ee8f844e
DH
285 * be skipped over. It is not permitted for userspace to create or join
286 * keyrings whose name begin with a dot.
973c9f4f
DH
287 *
288 * If successful, the ID of the joined session keyring will be returned.
1da177e4
LT
289 */
290long keyctl_join_session_keyring(const char __user *_name)
291{
292 char *name;
0cb409d9 293 long ret;
1da177e4
LT
294
295 /* fetch the name from userspace */
296 name = NULL;
297 if (_name) {
aa9d4437 298 name = strndup_user(_name, KEY_MAX_DESC_SIZE);
0cb409d9
DA
299 if (IS_ERR(name)) {
300 ret = PTR_ERR(name);
1da177e4 301 goto error;
0cb409d9 302 }
ee8f844e
DH
303
304 ret = -EPERM;
305 if (name[0] == '.')
306 goto error_name;
1da177e4
LT
307 }
308
309 /* join the session */
310 ret = join_session_keyring(name);
ee8f844e 311error_name:
0d54ee1c 312 kfree(name);
c5b60b5e 313error:
1da177e4 314 return ret;
a8b17ed0 315}
1da177e4 316
1da177e4 317/*
973c9f4f
DH
318 * Update a key's data payload from the given data.
319 *
320 * The key must grant the caller Write permission and the key type must support
321 * updating for this to work. A negative key can be positively instantiated
322 * with this call.
323 *
324 * If successful, 0 will be returned. If the key type does not support
325 * updating, then -EOPNOTSUPP will be returned.
1da177e4
LT
326 */
327long keyctl_update_key(key_serial_t id,
328 const void __user *_payload,
329 size_t plen)
330{
664cceb0 331 key_ref_t key_ref;
1da177e4
LT
332 void *payload;
333 long ret;
334
335 ret = -EINVAL;
336 if (plen > PAGE_SIZE)
337 goto error;
338
339 /* pull the payload in if one was supplied */
340 payload = NULL;
5649645d 341 if (plen) {
1da177e4
LT
342 ret = -ENOMEM;
343 payload = kmalloc(plen, GFP_KERNEL);
344 if (!payload)
345 goto error;
346
347 ret = -EFAULT;
348 if (copy_from_user(payload, _payload, plen) != 0)
349 goto error2;
350 }
351
352 /* find the target key (which must be writable) */
f5895943 353 key_ref = lookup_user_key(id, 0, KEY_NEED_WRITE);
664cceb0
DH
354 if (IS_ERR(key_ref)) {
355 ret = PTR_ERR(key_ref);
1da177e4
LT
356 goto error2;
357 }
358
359 /* update the key */
664cceb0 360 ret = key_update(key_ref, payload, plen);
1da177e4 361
664cceb0 362 key_ref_put(key_ref);
c5b60b5e 363error2:
57070c85 364 kzfree(payload);
c5b60b5e 365error:
1da177e4 366 return ret;
a8b17ed0 367}
1da177e4 368
1da177e4 369/*
973c9f4f
DH
370 * Revoke a key.
371 *
372 * The key must be grant the caller Write or Setattr permission for this to
373 * work. The key type should give up its quota claim when revoked. The key
374 * and any links to the key will be automatically garbage collected after a
375 * certain amount of time (/proc/sys/kernel/keys/gc_delay).
376 *
d3600bcf
MZ
377 * Keys with KEY_FLAG_KEEP set should not be revoked.
378 *
973c9f4f 379 * If successful, 0 is returned.
1da177e4
LT
380 */
381long keyctl_revoke_key(key_serial_t id)
382{
664cceb0 383 key_ref_t key_ref;
d3600bcf 384 struct key *key;
1da177e4
LT
385 long ret;
386
2e12256b 387 key_ref = lookup_user_key(id, 0, KEY_NEED_REVOKE);
664cceb0
DH
388 if (IS_ERR(key_ref)) {
389 ret = PTR_ERR(key_ref);
2e12256b 390 goto error;
1da177e4
LT
391 }
392
d3600bcf 393 key = key_ref_to_ptr(key_ref);
1da177e4 394 ret = 0;
d3600bcf 395 if (test_bit(KEY_FLAG_KEEP, &key->flags))
1d6d167c
MZ
396 ret = -EPERM;
397 else
d3600bcf 398 key_revoke(key);
1da177e4 399
664cceb0 400 key_ref_put(key_ref);
c5b60b5e 401error:
1260f801 402 return ret;
a8b17ed0 403}
1da177e4 404
fd75815f
DH
405/*
406 * Invalidate a key.
407 *
408 * The key must be grant the caller Invalidate permission for this to work.
409 * The key and any links to the key will be automatically garbage collected
410 * immediately.
411 *
d3600bcf
MZ
412 * Keys with KEY_FLAG_KEEP set should not be invalidated.
413 *
fd75815f
DH
414 * If successful, 0 is returned.
415 */
416long keyctl_invalidate_key(key_serial_t id)
417{
418 key_ref_t key_ref;
d3600bcf 419 struct key *key;
fd75815f
DH
420 long ret;
421
422 kenter("%d", id);
423
2e12256b 424 key_ref = lookup_user_key(id, 0, KEY_NEED_INVAL);
fd75815f
DH
425 if (IS_ERR(key_ref)) {
426 ret = PTR_ERR(key_ref);
0c7774ab
DH
427
428 /* Root is permitted to invalidate certain special keys */
429 if (capable(CAP_SYS_ADMIN)) {
430 key_ref = lookup_user_key(id, 0, 0);
431 if (IS_ERR(key_ref))
432 goto error;
433 if (test_bit(KEY_FLAG_ROOT_CAN_INVAL,
434 &key_ref_to_ptr(key_ref)->flags))
435 goto invalidate;
436 goto error_put;
437 }
438
fd75815f
DH
439 goto error;
440 }
441
0c7774ab 442invalidate:
d3600bcf 443 key = key_ref_to_ptr(key_ref);
fd75815f 444 ret = 0;
d3600bcf
MZ
445 if (test_bit(KEY_FLAG_KEEP, &key->flags))
446 ret = -EPERM;
1d6d167c 447 else
d3600bcf 448 key_invalidate(key);
0c7774ab 449error_put:
fd75815f
DH
450 key_ref_put(key_ref);
451error:
452 kleave(" = %ld", ret);
453 return ret;
454}
455
1da177e4 456/*
973c9f4f
DH
457 * Clear the specified keyring, creating an empty process keyring if one of the
458 * special keyring IDs is used.
459 *
d3600bcf
MZ
460 * The keyring must grant the caller Write permission and not have
461 * KEY_FLAG_KEEP set for this to work. If successful, 0 will be returned.
1da177e4
LT
462 */
463long keyctl_keyring_clear(key_serial_t ringid)
464{
664cceb0 465 key_ref_t keyring_ref;
d3600bcf 466 struct key *keyring;
1da177e4
LT
467 long ret;
468
2e12256b 469 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_CLEAR);
664cceb0
DH
470 if (IS_ERR(keyring_ref)) {
471 ret = PTR_ERR(keyring_ref);
700920eb
DH
472
473 /* Root is permitted to invalidate certain special keyrings */
474 if (capable(CAP_SYS_ADMIN)) {
475 keyring_ref = lookup_user_key(ringid, 0, 0);
476 if (IS_ERR(keyring_ref))
477 goto error;
478 if (test_bit(KEY_FLAG_ROOT_CAN_CLEAR,
479 &key_ref_to_ptr(keyring_ref)->flags))
480 goto clear;
481 goto error_put;
482 }
483
1da177e4
LT
484 goto error;
485 }
486
700920eb 487clear:
d3600bcf
MZ
488 keyring = key_ref_to_ptr(keyring_ref);
489 if (test_bit(KEY_FLAG_KEEP, &keyring->flags))
490 ret = -EPERM;
491 else
492 ret = keyring_clear(keyring);
700920eb 493error_put:
664cceb0 494 key_ref_put(keyring_ref);
c5b60b5e 495error:
1da177e4 496 return ret;
a8b17ed0 497}
1da177e4 498
1da177e4 499/*
973c9f4f
DH
500 * Create a link from a keyring to a key if there's no matching key in the
501 * keyring, otherwise replace the link to the matching key with a link to the
502 * new key.
503 *
504 * The key must grant the caller Link permission and the the keyring must grant
505 * the caller Write permission. Furthermore, if an additional link is created,
506 * the keyring's quota will be extended.
507 *
508 * If successful, 0 will be returned.
1da177e4
LT
509 */
510long keyctl_keyring_link(key_serial_t id, key_serial_t ringid)
511{
664cceb0 512 key_ref_t keyring_ref, key_ref;
1da177e4
LT
513 long ret;
514
f5895943 515 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
664cceb0
DH
516 if (IS_ERR(keyring_ref)) {
517 ret = PTR_ERR(keyring_ref);
1da177e4
LT
518 goto error;
519 }
520
f5895943 521 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE, KEY_NEED_LINK);
664cceb0
DH
522 if (IS_ERR(key_ref)) {
523 ret = PTR_ERR(key_ref);
1da177e4
LT
524 goto error2;
525 }
526
664cceb0 527 ret = key_link(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
1da177e4 528
664cceb0 529 key_ref_put(key_ref);
c5b60b5e 530error2:
664cceb0 531 key_ref_put(keyring_ref);
c5b60b5e 532error:
1da177e4 533 return ret;
a8b17ed0 534}
1da177e4 535
1da177e4 536/*
973c9f4f
DH
537 * Unlink a key from a keyring.
538 *
539 * The keyring must grant the caller Write permission for this to work; the key
540 * itself need not grant the caller anything. If the last link to a key is
541 * removed then that key will be scheduled for destruction.
542 *
d3600bcf
MZ
543 * Keys or keyrings with KEY_FLAG_KEEP set should not be unlinked.
544 *
973c9f4f 545 * If successful, 0 will be returned.
1da177e4
LT
546 */
547long keyctl_keyring_unlink(key_serial_t id, key_serial_t ringid)
548{
664cceb0 549 key_ref_t keyring_ref, key_ref;
d3600bcf 550 struct key *keyring, *key;
1da177e4
LT
551 long ret;
552
f5895943 553 keyring_ref = lookup_user_key(ringid, 0, KEY_NEED_WRITE);
664cceb0
DH
554 if (IS_ERR(keyring_ref)) {
555 ret = PTR_ERR(keyring_ref);
1da177e4
LT
556 goto error;
557 }
558
5593122e 559 key_ref = lookup_user_key(id, KEY_LOOKUP_FOR_UNLINK, 0);
664cceb0
DH
560 if (IS_ERR(key_ref)) {
561 ret = PTR_ERR(key_ref);
1da177e4
LT
562 goto error2;
563 }
564
d3600bcf
MZ
565 keyring = key_ref_to_ptr(keyring_ref);
566 key = key_ref_to_ptr(key_ref);
567 if (test_bit(KEY_FLAG_KEEP, &keyring->flags) &&
568 test_bit(KEY_FLAG_KEEP, &key->flags))
569 ret = -EPERM;
570 else
571 ret = key_unlink(keyring, key);
1da177e4 572
664cceb0 573 key_ref_put(key_ref);
c5b60b5e 574error2:
664cceb0 575 key_ref_put(keyring_ref);
c5b60b5e 576error:
1da177e4 577 return ret;
a8b17ed0 578}
1da177e4 579
ed0ac5c7
DH
580/*
581 * Move a link to a key from one keyring to another, displacing any matching
582 * key from the destination keyring.
583 *
584 * The key must grant the caller Link permission and both keyrings must grant
585 * the caller Write permission. There must also be a link in the from keyring
586 * to the key. If both keyrings are the same, nothing is done.
587 *
588 * If successful, 0 will be returned.
589 */
590long keyctl_keyring_move(key_serial_t id, key_serial_t from_ringid,
591 key_serial_t to_ringid, unsigned int flags)
592{
593 key_ref_t key_ref, from_ref, to_ref;
594 long ret;
595
596 if (flags & ~KEYCTL_MOVE_EXCL)
597 return -EINVAL;
598
599 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE, KEY_NEED_LINK);
600 if (IS_ERR(key_ref))
601 return PTR_ERR(key_ref);
602
603 from_ref = lookup_user_key(from_ringid, 0, KEY_NEED_WRITE);
604 if (IS_ERR(from_ref)) {
605 ret = PTR_ERR(from_ref);
606 goto error2;
607 }
608
609 to_ref = lookup_user_key(to_ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
610 if (IS_ERR(to_ref)) {
611 ret = PTR_ERR(to_ref);
612 goto error3;
613 }
614
615 ret = key_move(key_ref_to_ptr(key_ref), key_ref_to_ptr(from_ref),
616 key_ref_to_ptr(to_ref), flags);
617
618 key_ref_put(to_ref);
619error3:
620 key_ref_put(from_ref);
621error2:
622 key_ref_put(key_ref);
623 return ret;
624}
625
1da177e4 626/*
973c9f4f
DH
627 * Return a description of a key to userspace.
628 *
629 * The key must grant the caller View permission for this to work.
630 *
631 * If there's a buffer, we place up to buflen bytes of data into it formatted
632 * in the following way:
633 *
1da177e4 634 * type;uid;gid;perm;description<NUL>
973c9f4f
DH
635 *
636 * If successful, we return the amount of description available, irrespective
637 * of how much we may have copied into the buffer.
1da177e4
LT
638 */
639long keyctl_describe_key(key_serial_t keyid,
640 char __user *buffer,
641 size_t buflen)
642{
3e30148c 643 struct key *key, *instkey;
2e12256b 644 unsigned int perm;
664cceb0 645 key_ref_t key_ref;
aa9d4437 646 char *infobuf;
1da177e4 647 long ret;
aa9d4437 648 int desclen, infolen;
1da177e4 649
f5895943 650 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_NEED_VIEW);
664cceb0 651 if (IS_ERR(key_ref)) {
3e30148c
DH
652 /* viewing a key under construction is permitted if we have the
653 * authorisation token handy */
664cceb0 654 if (PTR_ERR(key_ref) == -EACCES) {
3e30148c
DH
655 instkey = key_get_instantiation_authkey(keyid);
656 if (!IS_ERR(instkey)) {
657 key_put(instkey);
8bbf4976 658 key_ref = lookup_user_key(keyid,
5593122e
DH
659 KEY_LOOKUP_PARTIAL,
660 0);
664cceb0 661 if (!IS_ERR(key_ref))
3e30148c
DH
662 goto okay;
663 }
664 }
665
664cceb0 666 ret = PTR_ERR(key_ref);
1da177e4
LT
667 goto error;
668 }
669
3e30148c 670okay:
664cceb0 671 key = key_ref_to_ptr(key_ref);
aa9d4437 672 desclen = strlen(key->description);
664cceb0 673
2e12256b
DH
674 rcu_read_lock();
675 perm = key_acl_to_perm(rcu_dereference(key->acl));
676 rcu_read_unlock();
677
aa9d4437
DH
678 /* 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),
2e12256b 685 perm);
aa9d4437
DH
686 if (!infobuf)
687 goto error2;
688 infolen = strlen(infobuf);
689 ret = infolen + desclen + 1;
1da177e4
LT
690
691 /* consider returning the data */
aa9d4437
DH
692 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)
1da177e4
LT
696 ret = -EFAULT;
697 }
698
aa9d4437 699 kfree(infobuf);
c5b60b5e 700error2:
664cceb0 701 key_ref_put(key_ref);
c5b60b5e 702error:
1da177e4 703 return ret;
a8b17ed0 704}
1da177e4 705
1da177e4 706/*
973c9f4f
DH
707 * 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.
1da177e4
LT
715 */
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;
664cceb0 722 key_ref_t keyring_ref, key_ref, dest_ref;
1da177e4 723 char type[32], *description;
0cb409d9 724 long ret;
1da177e4
LT
725
726 /* pull the type and description into kernel space */
0cb409d9 727 ret = key_get_type_from_user(type, _type, sizeof(type));
1da177e4
LT
728 if (ret < 0)
729 goto error;
1da177e4 730
aa9d4437 731 description = strndup_user(_description, KEY_MAX_DESC_SIZE);
0cb409d9
DA
732 if (IS_ERR(description)) {
733 ret = PTR_ERR(description);
1da177e4 734 goto error;
0cb409d9 735 }
1da177e4
LT
736
737 /* get the keyring at which to begin the search */
f5895943 738 keyring_ref = lookup_user_key(ringid, 0, KEY_NEED_SEARCH);
664cceb0
DH
739 if (IS_ERR(keyring_ref)) {
740 ret = PTR_ERR(keyring_ref);
1da177e4
LT
741 goto error2;
742 }
743
744 /* get the destination keyring if specified */
664cceb0 745 dest_ref = NULL;
1da177e4 746 if (destringid) {
5593122e 747 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
f5895943 748 KEY_NEED_WRITE);
664cceb0
DH
749 if (IS_ERR(dest_ref)) {
750 ret = PTR_ERR(dest_ref);
1da177e4
LT
751 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 */
dcf49dbc 763 key_ref = keyring_search(keyring_ref, ktype, description, true);
664cceb0
DH
764 if (IS_ERR(key_ref)) {
765 ret = PTR_ERR(key_ref);
1da177e4
LT
766
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 */
664cceb0 774 if (dest_ref) {
f5895943 775 ret = key_permission(key_ref, KEY_NEED_LINK);
29db9190 776 if (ret < 0)
1da177e4
LT
777 goto error6;
778
664cceb0 779 ret = key_link(key_ref_to_ptr(dest_ref), key_ref_to_ptr(key_ref));
1da177e4
LT
780 if (ret < 0)
781 goto error6;
782 }
783
664cceb0 784 ret = key_ref_to_ptr(key_ref)->serial;
1da177e4 785
c5b60b5e 786error6:
664cceb0 787 key_ref_put(key_ref);
c5b60b5e 788error5:
1da177e4 789 key_type_put(ktype);
c5b60b5e 790error4:
664cceb0 791 key_ref_put(dest_ref);
c5b60b5e 792error3:
664cceb0 793 key_ref_put(keyring_ref);
c5b60b5e 794error2:
1da177e4 795 kfree(description);
c5b60b5e 796error:
1da177e4 797 return ret;
a8b17ed0 798}
1da177e4 799
1da177e4 800/*
973c9f4f
DH
801 * Read a key's payload.
802 *
803 * The key must either grant the caller Read permission, or it must grant the
804 * caller Search permission when searched for from the process keyrings.
805 *
806 * If successful, we place up to buflen bytes of data into the buffer, if one
807 * is provided, and return the amount of data that is available in the key,
808 * irrespective of how much we copied into the buffer.
1da177e4
LT
809 */
810long keyctl_read_key(key_serial_t keyid, char __user *buffer, size_t buflen)
811{
664cceb0
DH
812 struct key *key;
813 key_ref_t key_ref;
1da177e4
LT
814 long ret;
815
816 /* find the key first */
5593122e 817 key_ref = lookup_user_key(keyid, 0, 0);
664cceb0
DH
818 if (IS_ERR(key_ref)) {
819 ret = -ENOKEY;
820 goto error;
1da177e4
LT
821 }
822
664cceb0
DH
823 key = key_ref_to_ptr(key_ref);
824
363b02da
DH
825 ret = key_read_state(key);
826 if (ret < 0)
827 goto error2; /* Negatively instantiated */
37863c43 828
664cceb0 829 /* see if we can read it directly */
f5895943 830 ret = key_permission(key_ref, KEY_NEED_READ);
29db9190 831 if (ret == 0)
664cceb0 832 goto can_read_key;
29db9190 833 if (ret != -EACCES)
7fc0786d 834 goto error2;
664cceb0
DH
835
836 /* we can't; see if it's searchable from this process's keyrings
837 * - we automatically take account of the fact that it may be
838 * dangling off an instantiation key
839 */
840 if (!is_key_possessed(key_ref)) {
841 ret = -EACCES;
842 goto error2;
843 }
1da177e4
LT
844
845 /* the key is probably readable - now try to read it */
c5b60b5e 846can_read_key:
b4a1b4f5
DH
847 ret = -EOPNOTSUPP;
848 if (key->type->read) {
849 /* Read the data with the semaphore held (since we might sleep)
850 * to protect against the key being updated or revoked.
851 */
852 down_read(&key->sem);
853 ret = key_validate(key);
854 if (ret == 0)
1da177e4 855 ret = key->type->read(key, buffer, buflen);
b4a1b4f5 856 up_read(&key->sem);
1da177e4
LT
857 }
858
c5b60b5e 859error2:
1da177e4 860 key_put(key);
c5b60b5e 861error:
1da177e4 862 return ret;
a8b17ed0 863}
1da177e4 864
1da177e4 865/*
973c9f4f
DH
866 * Change the ownership of a key
867 *
868 * The key must grant the caller Setattr permission for this to work, though
869 * the key need not be fully instantiated yet. For the UID to be changed, or
870 * for the GID to be changed to a group the caller is not a member of, the
871 * caller must have sysadmin capability. If either uid or gid is -1 then that
872 * attribute is not changed.
873 *
874 * If the UID is to be changed, the new user must have sufficient quota to
875 * accept the key. The quota deduction will be removed from the old user to
876 * the new user should the attribute be changed.
877 *
878 * If successful, 0 will be returned.
1da177e4 879 */
9a56c2db 880long keyctl_chown_key(key_serial_t id, uid_t user, gid_t group)
1da177e4 881{
5801649d 882 struct key_user *newowner, *zapowner = NULL;
1da177e4 883 struct key *key;
664cceb0 884 key_ref_t key_ref;
1da177e4 885 long ret;
9a56c2db
EB
886 kuid_t uid;
887 kgid_t gid;
888
889 uid = make_kuid(current_user_ns(), user);
890 gid = make_kgid(current_user_ns(), group);
891 ret = -EINVAL;
892 if ((user != (uid_t) -1) && !uid_valid(uid))
893 goto error;
894 if ((group != (gid_t) -1) && !gid_valid(gid))
895 goto error;
1da177e4
LT
896
897 ret = 0;
9a56c2db 898 if (user == (uid_t) -1 && group == (gid_t) -1)
1da177e4
LT
899 goto error;
900
5593122e 901 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
2e12256b 902 KEY_NEED_SETSEC);
664cceb0
DH
903 if (IS_ERR(key_ref)) {
904 ret = PTR_ERR(key_ref);
1da177e4
LT
905 goto error;
906 }
907
664cceb0
DH
908 key = key_ref_to_ptr(key_ref);
909
1da177e4
LT
910 /* make the changes with the locks held to prevent chown/chown races */
911 ret = -EACCES;
912 down_write(&key->sem);
1da177e4
LT
913
914 if (!capable(CAP_SYS_ADMIN)) {
915 /* only the sysadmin can chown a key to some other UID */
9a56c2db 916 if (user != (uid_t) -1 && !uid_eq(key->uid, uid))
5801649d 917 goto error_put;
1da177e4
LT
918
919 /* only the sysadmin can set the key's GID to a group other
920 * than one of those that the current process subscribes to */
9a56c2db 921 if (group != (gid_t) -1 && !gid_eq(gid, key->gid) && !in_group_p(gid))
5801649d 922 goto error_put;
1da177e4
LT
923 }
924
5801649d 925 /* change the UID */
9a56c2db 926 if (user != (uid_t) -1 && !uid_eq(uid, key->uid)) {
5801649d 927 ret = -ENOMEM;
9a56c2db 928 newowner = key_user_lookup(uid);
5801649d
FT
929 if (!newowner)
930 goto error_put;
931
932 /* transfer the quota burden to the new user */
933 if (test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
9a56c2db 934 unsigned maxkeys = uid_eq(uid, GLOBAL_ROOT_UID) ?
0b77f5bf 935 key_quota_root_maxkeys : key_quota_maxkeys;
9a56c2db 936 unsigned maxbytes = uid_eq(uid, GLOBAL_ROOT_UID) ?
0b77f5bf
DH
937 key_quota_root_maxbytes : key_quota_maxbytes;
938
5801649d 939 spin_lock(&newowner->lock);
0b77f5bf
DH
940 if (newowner->qnkeys + 1 >= maxkeys ||
941 newowner->qnbytes + key->quotalen >= maxbytes ||
942 newowner->qnbytes + key->quotalen <
943 newowner->qnbytes)
5801649d
FT
944 goto quota_overrun;
945
946 newowner->qnkeys++;
947 newowner->qnbytes += key->quotalen;
948 spin_unlock(&newowner->lock);
949
950 spin_lock(&key->user->lock);
951 key->user->qnkeys--;
952 key->user->qnbytes -= key->quotalen;
953 spin_unlock(&key->user->lock);
954 }
955
956 atomic_dec(&key->user->nkeys);
957 atomic_inc(&newowner->nkeys);
958
363b02da 959 if (key->state != KEY_IS_UNINSTANTIATED) {
5801649d
FT
960 atomic_dec(&key->user->nikeys);
961 atomic_inc(&newowner->nikeys);
962 }
963
964 zapowner = key->user;
965 key->user = newowner;
966 key->uid = uid;
1da177e4
LT
967 }
968
969 /* change the GID */
9a56c2db 970 if (group != (gid_t) -1)
1da177e4
LT
971 key->gid = gid;
972
973 ret = 0;
974
5801649d 975error_put:
1da177e4
LT
976 up_write(&key->sem);
977 key_put(key);
5801649d
FT
978 if (zapowner)
979 key_user_put(zapowner);
980error:
1da177e4
LT
981 return ret;
982
5801649d
FT
983quota_overrun:
984 spin_unlock(&newowner->lock);
985 zapowner = newowner;
986 ret = -EDQUOT;
987 goto error_put;
a8b17ed0 988}
5801649d 989
1da177e4 990/*
973c9f4f
DH
991 * Change the permission mask on a key.
992 *
993 * The key must grant the caller Setattr permission for this to work, though
994 * the key need not be fully instantiated yet. If the caller does not have
995 * sysadmin capability, it may only change the permission on keys that it owns.
1da177e4 996 */
2e12256b 997long keyctl_setperm_key(key_serial_t id, unsigned int perm)
1da177e4 998{
2e12256b 999 struct key_acl *acl;
1da177e4 1000 struct key *key;
664cceb0 1001 key_ref_t key_ref;
1da177e4 1002 long ret;
2e12256b 1003 int nr, i, j;
1da177e4 1004
664cceb0 1005 if (perm & ~(KEY_POS_ALL | KEY_USR_ALL | KEY_GRP_ALL | KEY_OTH_ALL))
2e12256b
DH
1006 return -EINVAL;
1007
1008 nr = 0;
1009 if (perm & KEY_POS_ALL) nr++;
1010 if (perm & KEY_USR_ALL) nr++;
1011 if (perm & KEY_GRP_ALL) nr++;
1012 if (perm & KEY_OTH_ALL) nr++;
1da177e4 1013
5593122e 1014 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
2e12256b 1015 KEY_NEED_SETSEC);
664cceb0
DH
1016 if (IS_ERR(key_ref)) {
1017 ret = PTR_ERR(key_ref);
1da177e4
LT
1018 goto error;
1019 }
1020
664cceb0
DH
1021 key = key_ref_to_ptr(key_ref);
1022
2e12256b
DH
1023 ret = -EOPNOTSUPP;
1024 if (test_bit(KEY_FLAG_HAS_ACL, &key->flags))
1025 goto error_key;
1da177e4 1026
2e12256b
DH
1027 ret = -ENOMEM;
1028 acl = kzalloc(struct_size(acl, aces, nr), GFP_KERNEL);
1029 if (!acl)
1030 goto error_key;
1031
1032 refcount_set(&acl->usage, 1);
1033 acl->nr_ace = nr;
1034 j = 0;
1035 for (i = 0; i < 4; i++) {
1036 struct key_ace *ace = &acl->aces[j];
1037 unsigned int subset = (perm >> (i * 8)) & KEY_OTH_ALL;
1038
1039 if (!subset)
1040 continue;
1041 ace->type = KEY_ACE_SUBJ_STANDARD;
1042 ace->subject_id = KEY_ACE_EVERYONE + i;
1043 ace->perm = subset;
1044 if (subset & (KEY_OTH_WRITE | KEY_OTH_SETATTR))
1045 ace->perm |= KEY_ACE_REVOKE;
1046 if (subset & KEY_OTH_SEARCH)
1047 ace->perm |= KEY_ACE_INVAL;
1048 if (key->type == &key_type_keyring) {
1049 if (subset & KEY_OTH_SEARCH)
1050 ace->perm |= KEY_ACE_JOIN;
1051 if (subset & KEY_OTH_WRITE)
1052 ace->perm |= KEY_ACE_CLEAR;
1053 }
1054 j++;
76d8aeab 1055 }
1da177e4 1056
2e12256b
DH
1057 /* make the changes with the locks held to prevent chown/chmod races */
1058 down_write(&key->sem);
1059 ret = key_set_acl(key, acl);
1da177e4 1060 up_write(&key->sem);
2e12256b 1061error_key:
1da177e4 1062 key_put(key);
76d8aeab 1063error:
1da177e4 1064 return ret;
a8b17ed0 1065}
1da177e4 1066
8bbf4976 1067/*
973c9f4f
DH
1068 * Get the destination keyring for instantiation and check that the caller has
1069 * Write permission on it.
8bbf4976
DH
1070 */
1071static long get_instantiation_keyring(key_serial_t ringid,
1072 struct request_key_auth *rka,
1073 struct key **_dest_keyring)
1074{
1075 key_ref_t dkref;
1076
eca1bf5b
DH
1077 *_dest_keyring = NULL;
1078
8bbf4976 1079 /* just return a NULL pointer if we weren't asked to make a link */
eca1bf5b 1080 if (ringid == 0)
8bbf4976 1081 return 0;
8bbf4976
DH
1082
1083 /* if a specific keyring is nominated by ID, then use that */
1084 if (ringid > 0) {
f5895943 1085 dkref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
8bbf4976
DH
1086 if (IS_ERR(dkref))
1087 return PTR_ERR(dkref);
1088 *_dest_keyring = key_ref_to_ptr(dkref);
1089 return 0;
1090 }
1091
1092 if (ringid == KEY_SPEC_REQKEY_AUTH_KEY)
1093 return -EINVAL;
1094
1095 /* otherwise specify the destination keyring recorded in the
1096 * authorisation key (any KEY_SPEC_*_KEYRING) */
1097 if (ringid >= KEY_SPEC_REQUESTOR_KEYRING) {
21279cfa 1098 *_dest_keyring = key_get(rka->dest_keyring);
8bbf4976
DH
1099 return 0;
1100 }
1101
1102 return -ENOKEY;
1103}
1104
d84f4f99 1105/*
973c9f4f 1106 * Change the request_key authorisation key on the current process.
d84f4f99
DH
1107 */
1108static int keyctl_change_reqkey_auth(struct key *key)
1109{
1110 struct cred *new;
1111
1112 new = prepare_creds();
1113 if (!new)
1114 return -ENOMEM;
1115
1116 key_put(new->request_key_auth);
1117 new->request_key_auth = key_get(key);
1118
1119 return commit_creds(new);
1120}
1121
1da177e4 1122/*
973c9f4f
DH
1123 * Instantiate a key with the specified payload and link the key into the
1124 * destination keyring if one is given.
1125 *
1126 * The caller must have the appropriate instantiation permit set for this to
1127 * work (see keyctl_assume_authority). No other permissions are required.
1128 *
1129 * If successful, 0 will be returned.
1da177e4 1130 */
ee009e4a 1131long keyctl_instantiate_key_common(key_serial_t id,
b353a1f7 1132 struct iov_iter *from,
ee009e4a 1133 key_serial_t ringid)
1da177e4 1134{
d84f4f99 1135 const struct cred *cred = current_cred();
3e30148c 1136 struct request_key_auth *rka;
8bbf4976 1137 struct key *instkey, *dest_keyring;
b353a1f7 1138 size_t plen = from ? iov_iter_count(from) : 0;
1da177e4
LT
1139 void *payload;
1140 long ret;
1141
d84f4f99
DH
1142 kenter("%d,,%zu,%d", id, plen, ringid);
1143
b353a1f7
AV
1144 if (!plen)
1145 from = NULL;
1146
1da177e4 1147 ret = -EINVAL;
38bbca6b 1148 if (plen > 1024 * 1024 - 1)
1da177e4
LT
1149 goto error;
1150
b5f545c8
DH
1151 /* the appropriate instantiation authorisation key must have been
1152 * assumed before calling this */
1153 ret = -EPERM;
d84f4f99 1154 instkey = cred->request_key_auth;
b5f545c8
DH
1155 if (!instkey)
1156 goto error;
1157
146aa8b1 1158 rka = instkey->payload.data[0];
b5f545c8
DH
1159 if (rka->target_key->serial != id)
1160 goto error;
1161
1da177e4
LT
1162 /* pull the payload in if one was supplied */
1163 payload = NULL;
1164
b353a1f7 1165 if (from) {
1da177e4 1166 ret = -ENOMEM;
752ade68
MH
1167 payload = kvmalloc(plen, GFP_KERNEL);
1168 if (!payload)
1169 goto error;
1da177e4 1170
b353a1f7 1171 ret = -EFAULT;
cbbd26b8 1172 if (!copy_from_iter_full(payload, plen, from))
1da177e4
LT
1173 goto error2;
1174 }
1175
3e30148c
DH
1176 /* find the destination keyring amongst those belonging to the
1177 * requesting task */
8bbf4976
DH
1178 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1179 if (ret < 0)
1180 goto error2;
1da177e4
LT
1181
1182 /* instantiate the key and link it into a keyring */
3e30148c 1183 ret = key_instantiate_and_link(rka->target_key, payload, plen,
8bbf4976 1184 dest_keyring, instkey);
1da177e4 1185
8bbf4976 1186 key_put(dest_keyring);
b5f545c8
DH
1187
1188 /* discard the assumed authority if it's just been disabled by
1189 * instantiation of the key */
d84f4f99
DH
1190 if (ret == 0)
1191 keyctl_change_reqkey_auth(NULL);
b5f545c8
DH
1192
1193error2:
57070c85
EB
1194 if (payload) {
1195 memzero_explicit(payload, plen);
1196 kvfree(payload);
1197 }
b5f545c8 1198error:
1da177e4 1199 return ret;
a8b17ed0 1200}
1da177e4 1201
ee009e4a
DH
1202/*
1203 * Instantiate a key with the specified payload and link the key into the
1204 * destination keyring if one is given.
1205 *
1206 * The caller must have the appropriate instantiation permit set for this to
1207 * work (see keyctl_assume_authority). No other permissions are required.
1208 *
1209 * If successful, 0 will be returned.
1210 */
1211long keyctl_instantiate_key(key_serial_t id,
1212 const void __user *_payload,
1213 size_t plen,
1214 key_serial_t ringid)
1215{
1216 if (_payload && plen) {
b353a1f7
AV
1217 struct iovec iov;
1218 struct iov_iter from;
1219 int ret;
ee009e4a 1220
b353a1f7
AV
1221 ret = import_single_range(WRITE, (void __user *)_payload, plen,
1222 &iov, &from);
1223 if (unlikely(ret))
1224 return ret;
1225
1226 return keyctl_instantiate_key_common(id, &from, ringid);
ee009e4a
DH
1227 }
1228
b353a1f7 1229 return keyctl_instantiate_key_common(id, NULL, ringid);
ee009e4a
DH
1230}
1231
1232/*
1233 * Instantiate a key with the specified multipart payload and link the key into
1234 * the destination keyring if one is given.
1235 *
1236 * The caller must have the appropriate instantiation permit set for this to
1237 * work (see keyctl_assume_authority). No other permissions are required.
1238 *
1239 * If successful, 0 will be returned.
1240 */
1241long keyctl_instantiate_key_iov(key_serial_t id,
1242 const struct iovec __user *_payload_iov,
1243 unsigned ioc,
1244 key_serial_t ringid)
1245{
1246 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
b353a1f7 1247 struct iov_iter from;
ee009e4a
DH
1248 long ret;
1249
b353a1f7
AV
1250 if (!_payload_iov)
1251 ioc = 0;
ee009e4a 1252
b353a1f7
AV
1253 ret = import_iovec(WRITE, _payload_iov, ioc,
1254 ARRAY_SIZE(iovstack), &iov, &from);
ee009e4a 1255 if (ret < 0)
b353a1f7
AV
1256 return ret;
1257 ret = keyctl_instantiate_key_common(id, &from, ringid);
1258 kfree(iov);
ee009e4a 1259 return ret;
ee009e4a
DH
1260}
1261
1da177e4 1262/*
973c9f4f
DH
1263 * Negatively instantiate the key with the given timeout (in seconds) and link
1264 * the key into the destination keyring if one is given.
1265 *
1266 * The caller must have the appropriate instantiation permit set for this to
1267 * work (see keyctl_assume_authority). No other permissions are required.
1268 *
1269 * The key and any links to the key will be automatically garbage collected
1270 * after the timeout expires.
1271 *
1272 * Negative keys are used to rate limit repeated request_key() calls by causing
1273 * them to return -ENOKEY until the negative key expires.
1274 *
1275 * If successful, 0 will be returned.
1da177e4
LT
1276 */
1277long keyctl_negate_key(key_serial_t id, unsigned timeout, key_serial_t ringid)
fdd1b945
DH
1278{
1279 return keyctl_reject_key(id, timeout, ENOKEY, ringid);
1280}
1281
1282/*
1283 * Negatively instantiate the key with the given timeout (in seconds) and error
1284 * code and link the key into the destination keyring if one is given.
1285 *
1286 * The caller must have the appropriate instantiation permit set for this to
1287 * work (see keyctl_assume_authority). No other permissions are required.
1288 *
1289 * The key and any links to the key will be automatically garbage collected
1290 * after the timeout expires.
1291 *
1292 * Negative keys are used to rate limit repeated request_key() calls by causing
1293 * them to return the specified error code until the negative key expires.
1294 *
1295 * If successful, 0 will be returned.
1296 */
1297long keyctl_reject_key(key_serial_t id, unsigned timeout, unsigned error,
1298 key_serial_t ringid)
1da177e4 1299{
d84f4f99 1300 const struct cred *cred = current_cred();
3e30148c 1301 struct request_key_auth *rka;
8bbf4976 1302 struct key *instkey, *dest_keyring;
1da177e4
LT
1303 long ret;
1304
fdd1b945
DH
1305 kenter("%d,%u,%u,%d", id, timeout, error, ringid);
1306
1307 /* must be a valid error code and mustn't be a kernel special */
1308 if (error <= 0 ||
1309 error >= MAX_ERRNO ||
1310 error == ERESTARTSYS ||
1311 error == ERESTARTNOINTR ||
1312 error == ERESTARTNOHAND ||
1313 error == ERESTART_RESTARTBLOCK)
1314 return -EINVAL;
d84f4f99 1315
b5f545c8
DH
1316 /* the appropriate instantiation authorisation key must have been
1317 * assumed before calling this */
1318 ret = -EPERM;
d84f4f99 1319 instkey = cred->request_key_auth;
b5f545c8 1320 if (!instkey)
1da177e4 1321 goto error;
1da177e4 1322
146aa8b1 1323 rka = instkey->payload.data[0];
b5f545c8
DH
1324 if (rka->target_key->serial != id)
1325 goto error;
3e30148c 1326
1da177e4
LT
1327 /* find the destination keyring if present (which must also be
1328 * writable) */
8bbf4976
DH
1329 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1330 if (ret < 0)
1331 goto error;
1da177e4
LT
1332
1333 /* instantiate the key and link it into a keyring */
fdd1b945 1334 ret = key_reject_and_link(rka->target_key, timeout, error,
8bbf4976 1335 dest_keyring, instkey);
1da177e4 1336
8bbf4976 1337 key_put(dest_keyring);
b5f545c8
DH
1338
1339 /* discard the assumed authority if it's just been disabled by
1340 * instantiation of the key */
d84f4f99
DH
1341 if (ret == 0)
1342 keyctl_change_reqkey_auth(NULL);
b5f545c8
DH
1343
1344error:
1da177e4 1345 return ret;
a8b17ed0 1346}
1da177e4 1347
3e30148c 1348/*
973c9f4f
DH
1349 * Read or set the default keyring in which request_key() will cache keys and
1350 * return the old setting.
1351 *
c9f838d1
EB
1352 * If a thread or process keyring is specified then it will be created if it
1353 * doesn't yet exist. The old setting will be returned if successful.
3e30148c
DH
1354 */
1355long keyctl_set_reqkey_keyring(int reqkey_defl)
1356{
d84f4f99
DH
1357 struct cred *new;
1358 int ret, old_setting;
1359
1360 old_setting = current_cred_xxx(jit_keyring);
1361
1362 if (reqkey_defl == KEY_REQKEY_DEFL_NO_CHANGE)
1363 return old_setting;
1364
1365 new = prepare_creds();
1366 if (!new)
1367 return -ENOMEM;
3e30148c
DH
1368
1369 switch (reqkey_defl) {
1370 case KEY_REQKEY_DEFL_THREAD_KEYRING:
d84f4f99 1371 ret = install_thread_keyring_to_cred(new);
3e30148c 1372 if (ret < 0)
d84f4f99 1373 goto error;
3e30148c
DH
1374 goto set;
1375
1376 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
d84f4f99 1377 ret = install_process_keyring_to_cred(new);
c9f838d1
EB
1378 if (ret < 0)
1379 goto error;
d84f4f99 1380 goto set;
3e30148c
DH
1381
1382 case KEY_REQKEY_DEFL_DEFAULT:
1383 case KEY_REQKEY_DEFL_SESSION_KEYRING:
1384 case KEY_REQKEY_DEFL_USER_KEYRING:
1385 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
d84f4f99
DH
1386 case KEY_REQKEY_DEFL_REQUESTOR_KEYRING:
1387 goto set;
3e30148c
DH
1388
1389 case KEY_REQKEY_DEFL_NO_CHANGE:
3e30148c
DH
1390 case KEY_REQKEY_DEFL_GROUP_KEYRING:
1391 default:
d84f4f99
DH
1392 ret = -EINVAL;
1393 goto error;
3e30148c
DH
1394 }
1395
d84f4f99
DH
1396set:
1397 new->jit_keyring = reqkey_defl;
1398 commit_creds(new);
1399 return old_setting;
1400error:
1401 abort_creds(new);
4303ef19 1402 return ret;
a8b17ed0 1403}
d84f4f99 1404
017679c4 1405/*
973c9f4f
DH
1406 * Set or clear the timeout on a key.
1407 *
1408 * Either the key must grant the caller Setattr permission or else the caller
1409 * must hold an instantiation authorisation token for the key.
1410 *
1411 * The timeout is either 0 to clear the timeout, or a number of seconds from
1412 * the current time. The key and any links to the key will be automatically
1413 * garbage collected after the timeout expires.
1414 *
d3600bcf
MZ
1415 * Keys with KEY_FLAG_KEEP set should not be timed out.
1416 *
973c9f4f 1417 * If successful, 0 is returned.
017679c4
DH
1418 */
1419long keyctl_set_timeout(key_serial_t id, unsigned timeout)
1420{
9156235b 1421 struct key *key, *instkey;
017679c4 1422 key_ref_t key_ref;
017679c4
DH
1423 long ret;
1424
5593122e 1425 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
2e12256b 1426 KEY_NEED_SETSEC);
017679c4 1427 if (IS_ERR(key_ref)) {
9156235b
DH
1428 /* setting the timeout on a key under construction is permitted
1429 * if we have the authorisation token handy */
1430 if (PTR_ERR(key_ref) == -EACCES) {
1431 instkey = key_get_instantiation_authkey(id);
1432 if (!IS_ERR(instkey)) {
1433 key_put(instkey);
1434 key_ref = lookup_user_key(id,
1435 KEY_LOOKUP_PARTIAL,
1436 0);
1437 if (!IS_ERR(key_ref))
1438 goto okay;
1439 }
1440 }
1441
017679c4
DH
1442 ret = PTR_ERR(key_ref);
1443 goto error;
1444 }
1445
9156235b 1446okay:
017679c4 1447 key = key_ref_to_ptr(key_ref);
1d6d167c 1448 ret = 0;
d3600bcf
MZ
1449 if (test_bit(KEY_FLAG_KEEP, &key->flags))
1450 ret = -EPERM;
1d6d167c 1451 else
d3600bcf 1452 key_set_timeout(key, timeout);
017679c4
DH
1453 key_put(key);
1454
017679c4
DH
1455error:
1456 return ret;
a8b17ed0 1457}
017679c4 1458
b5f545c8 1459/*
973c9f4f
DH
1460 * Assume (or clear) the authority to instantiate the specified key.
1461 *
1462 * This sets the authoritative token currently in force for key instantiation.
1463 * This must be done for a key to be instantiated. It has the effect of making
1464 * available all the keys from the caller of the request_key() that created a
1465 * key to request_key() calls made by the caller of this function.
1466 *
1467 * The caller must have the instantiation key in their process keyrings with a
1468 * Search permission grant available to the caller.
1469 *
1470 * If the ID given is 0, then the setting will be cleared and 0 returned.
1471 *
1472 * If the ID given has a matching an authorisation key, then that key will be
1473 * set and its ID will be returned. The authorisation key can be read to get
1474 * the callout information passed to request_key().
b5f545c8
DH
1475 */
1476long keyctl_assume_authority(key_serial_t id)
1477{
1478 struct key *authkey;
1479 long ret;
1480
1481 /* special key IDs aren't permitted */
1482 ret = -EINVAL;
1483 if (id < 0)
1484 goto error;
1485
1486 /* we divest ourselves of authority if given an ID of 0 */
1487 if (id == 0) {
d84f4f99 1488 ret = keyctl_change_reqkey_auth(NULL);
b5f545c8
DH
1489 goto error;
1490 }
1491
1492 /* attempt to assume the authority temporarily granted to us whilst we
1493 * instantiate the specified key
1494 * - the authorisation key must be in the current task's keyrings
1495 * somewhere
1496 */
1497 authkey = key_get_instantiation_authkey(id);
1498 if (IS_ERR(authkey)) {
1499 ret = PTR_ERR(authkey);
1500 goto error;
1501 }
1502
d84f4f99 1503 ret = keyctl_change_reqkey_auth(authkey);
884bee02
EB
1504 if (ret == 0)
1505 ret = authkey->serial;
d84f4f99 1506 key_put(authkey);
b5f545c8
DH
1507error:
1508 return ret;
a8b17ed0 1509}
b5f545c8 1510
70a5bb72 1511/*
973c9f4f
DH
1512 * Get a key's the LSM security label.
1513 *
1514 * The key must grant the caller View permission for this to work.
1515 *
1516 * If there's a buffer, then up to buflen bytes of data will be placed into it.
1517 *
1518 * If successful, the amount of information available will be returned,
1519 * irrespective of how much was copied (including the terminal NUL).
70a5bb72
DH
1520 */
1521long keyctl_get_security(key_serial_t keyid,
1522 char __user *buffer,
1523 size_t buflen)
1524{
1525 struct key *key, *instkey;
1526 key_ref_t key_ref;
1527 char *context;
1528 long ret;
1529
f5895943 1530 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_NEED_VIEW);
70a5bb72
DH
1531 if (IS_ERR(key_ref)) {
1532 if (PTR_ERR(key_ref) != -EACCES)
1533 return PTR_ERR(key_ref);
1534
1535 /* viewing a key under construction is also permitted if we
1536 * have the authorisation token handy */
1537 instkey = key_get_instantiation_authkey(keyid);
1538 if (IS_ERR(instkey))
fa1cc7b5 1539 return PTR_ERR(instkey);
70a5bb72
DH
1540 key_put(instkey);
1541
5593122e 1542 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, 0);
70a5bb72
DH
1543 if (IS_ERR(key_ref))
1544 return PTR_ERR(key_ref);
1545 }
1546
1547 key = key_ref_to_ptr(key_ref);
1548 ret = security_key_getsecurity(key, &context);
1549 if (ret == 0) {
1550 /* if no information was returned, give userspace an empty
1551 * string */
1552 ret = 1;
1553 if (buffer && buflen > 0 &&
1554 copy_to_user(buffer, "", 1) != 0)
1555 ret = -EFAULT;
1556 } else if (ret > 0) {
1557 /* return as much data as there's room for */
1558 if (buffer && buflen > 0) {
1559 if (buflen > ret)
1560 buflen = ret;
1561
1562 if (copy_to_user(buffer, context, buflen) != 0)
1563 ret = -EFAULT;
1564 }
1565
1566 kfree(context);
1567 }
1568
1569 key_ref_put(key_ref);
1570 return ret;
1571}
1572
ee18d64c 1573/*
973c9f4f
DH
1574 * Attempt to install the calling process's session keyring on the process's
1575 * parent process.
1576 *
2e12256b 1577 * The keyring must exist and must grant the caller JOIN permission, and the
973c9f4f
DH
1578 * parent process must be single-threaded and must have the same effective
1579 * ownership as this process and mustn't be SUID/SGID.
1580 *
1581 * The keyring will be emplaced on the parent when it next resumes userspace.
1582 *
1583 * If successful, 0 will be returned.
ee18d64c
DH
1584 */
1585long keyctl_session_to_parent(void)
1586{
1587 struct task_struct *me, *parent;
1588 const struct cred *mycred, *pcred;
67d12145 1589 struct callback_head *newwork, *oldwork;
ee18d64c 1590 key_ref_t keyring_r;
413cd3d9 1591 struct cred *cred;
ee18d64c
DH
1592 int ret;
1593
2e12256b 1594 keyring_r = lookup_user_key(KEY_SPEC_SESSION_KEYRING, 0, KEY_NEED_JOIN);
ee18d64c
DH
1595 if (IS_ERR(keyring_r))
1596 return PTR_ERR(keyring_r);
1597
413cd3d9 1598 ret = -ENOMEM;
413cd3d9 1599
ee18d64c
DH
1600 /* our parent is going to need a new cred struct, a new tgcred struct
1601 * and new security data, so we allocate them here to prevent ENOMEM in
1602 * our parent */
ee18d64c
DH
1603 cred = cred_alloc_blank();
1604 if (!cred)
67d12145
AV
1605 goto error_keyring;
1606 newwork = &cred->rcu;
ee18d64c 1607
3a50597d
DH
1608 cred->session_keyring = key_ref_to_ptr(keyring_r);
1609 keyring_r = NULL;
67d12145 1610 init_task_work(newwork, key_change_session_keyring);
ee18d64c
DH
1611
1612 me = current;
9d1ac65a 1613 rcu_read_lock();
ee18d64c
DH
1614 write_lock_irq(&tasklist_lock);
1615
ee18d64c 1616 ret = -EPERM;
413cd3d9 1617 oldwork = NULL;
7936d16d
DH
1618 parent = rcu_dereference_protected(me->real_parent,
1619 lockdep_is_held(&tasklist_lock));
ee18d64c
DH
1620
1621 /* the parent mustn't be init and mustn't be a kernel thread */
1622 if (parent->pid <= 1 || !parent->mm)
413cd3d9 1623 goto unlock;
ee18d64c
DH
1624
1625 /* the parent must be single threaded */
dd98acf7 1626 if (!thread_group_empty(parent))
413cd3d9 1627 goto unlock;
ee18d64c
DH
1628
1629 /* the parent and the child must have different session keyrings or
1630 * there's no point */
1631 mycred = current_cred();
1632 pcred = __task_cred(parent);
1633 if (mycred == pcred ||
3a50597d 1634 mycred->session_keyring == pcred->session_keyring) {
413cd3d9
ON
1635 ret = 0;
1636 goto unlock;
1637 }
ee18d64c
DH
1638
1639 /* the parent must have the same effective ownership and mustn't be
1640 * SUID/SGID */
9a56c2db
EB
1641 if (!uid_eq(pcred->uid, mycred->euid) ||
1642 !uid_eq(pcred->euid, mycred->euid) ||
1643 !uid_eq(pcred->suid, mycred->euid) ||
1644 !gid_eq(pcred->gid, mycred->egid) ||
1645 !gid_eq(pcred->egid, mycred->egid) ||
1646 !gid_eq(pcred->sgid, mycred->egid))
413cd3d9 1647 goto unlock;
ee18d64c
DH
1648
1649 /* the keyrings must have the same UID */
3a50597d 1650 if ((pcred->session_keyring &&
2a74dbb9
LT
1651 !uid_eq(pcred->session_keyring->uid, mycred->euid)) ||
1652 !uid_eq(mycred->session_keyring->uid, mycred->euid))
413cd3d9 1653 goto unlock;
ee18d64c 1654
413cd3d9
ON
1655 /* cancel an already pending keyring replacement */
1656 oldwork = task_work_cancel(parent, key_change_session_keyring);
ee18d64c
DH
1657
1658 /* the replacement session keyring is applied just prior to userspace
1659 * restarting */
67d12145 1660 ret = task_work_add(parent, newwork, true);
413cd3d9
ON
1661 if (!ret)
1662 newwork = NULL;
1663unlock:
ee18d64c 1664 write_unlock_irq(&tasklist_lock);
9d1ac65a 1665 rcu_read_unlock();
67d12145
AV
1666 if (oldwork)
1667 put_cred(container_of(oldwork, struct cred, rcu));
1668 if (newwork)
1669 put_cred(cred);
ee18d64c
DH
1670 return ret;
1671
1672error_keyring:
1673 key_ref_put(keyring_r);
1674 return ret;
1675}
1676
6563c91f
MM
1677/*
1678 * Apply a restriction to a given keyring.
1679 *
1680 * The caller must have Setattr permission to change keyring restrictions.
1681 *
1682 * The requested type name may be a NULL pointer to reject all attempts
18026d86
EB
1683 * to link to the keyring. In this case, _restriction must also be NULL.
1684 * Otherwise, both _type and _restriction must be non-NULL.
6563c91f
MM
1685 *
1686 * Returns 0 if successful.
1687 */
1688long keyctl_restrict_keyring(key_serial_t id, const char __user *_type,
1689 const char __user *_restriction)
1690{
1691 key_ref_t key_ref;
6563c91f
MM
1692 char type[32];
1693 char *restriction = NULL;
1694 long ret;
1695
2e12256b 1696 key_ref = lookup_user_key(id, 0, KEY_NEED_SETSEC);
6563c91f
MM
1697 if (IS_ERR(key_ref))
1698 return PTR_ERR(key_ref);
1699
18026d86 1700 ret = -EINVAL;
6563c91f 1701 if (_type) {
18026d86 1702 if (!_restriction)
6563c91f 1703 goto error;
6563c91f 1704
18026d86
EB
1705 ret = key_get_type_from_user(type, _type, sizeof(type));
1706 if (ret < 0)
6563c91f 1707 goto error;
6563c91f
MM
1708
1709 restriction = strndup_user(_restriction, PAGE_SIZE);
1710 if (IS_ERR(restriction)) {
1711 ret = PTR_ERR(restriction);
1712 goto error;
1713 }
18026d86
EB
1714 } else {
1715 if (_restriction)
1716 goto error;
6563c91f
MM
1717 }
1718
18026d86 1719 ret = keyring_restrict(key_ref, _type ? type : NULL, restriction);
6563c91f 1720 kfree(restriction);
6563c91f
MM
1721error:
1722 key_ref_put(key_ref);
6563c91f
MM
1723 return ret;
1724}
1725
45e0f30c
DH
1726/*
1727 * Get keyrings subsystem capabilities.
1728 */
1729long keyctl_capabilities(unsigned char __user *_buffer, size_t buflen)
1730{
1731 size_t size = buflen;
1732
1733 if (size > 0) {
1734 if (size > sizeof(keyrings_capabilities))
1735 size = sizeof(keyrings_capabilities);
1736 if (copy_to_user(_buffer, keyrings_capabilities, size) != 0)
1737 return -EFAULT;
1738 if (size < buflen &&
1739 clear_user(_buffer + size, buflen - size) != 0)
1740 return -EFAULT;
1741 }
1742
1743 return sizeof(keyrings_capabilities);
1744}
1745
1da177e4 1746/*
973c9f4f 1747 * The key control system call
1da177e4 1748 */
938bb9f5
HC
1749SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3,
1750 unsigned long, arg4, unsigned long, arg5)
1da177e4
LT
1751{
1752 switch (option) {
1753 case KEYCTL_GET_KEYRING_ID:
1754 return keyctl_get_keyring_ID((key_serial_t) arg2,
1755 (int) arg3);
1756
1757 case KEYCTL_JOIN_SESSION_KEYRING:
1758 return keyctl_join_session_keyring((const char __user *) arg2);
1759
1760 case KEYCTL_UPDATE:
1761 return keyctl_update_key((key_serial_t) arg2,
1762 (const void __user *) arg3,
1763 (size_t) arg4);
1764
1765 case KEYCTL_REVOKE:
1766 return keyctl_revoke_key((key_serial_t) arg2);
1767
1768 case KEYCTL_DESCRIBE:
1769 return keyctl_describe_key((key_serial_t) arg2,
1770 (char __user *) arg3,
1771 (unsigned) arg4);
1772
1773 case KEYCTL_CLEAR:
1774 return keyctl_keyring_clear((key_serial_t) arg2);
1775
1776 case KEYCTL_LINK:
1777 return keyctl_keyring_link((key_serial_t) arg2,
1778 (key_serial_t) arg3);
1779
1780 case KEYCTL_UNLINK:
1781 return keyctl_keyring_unlink((key_serial_t) arg2,
1782 (key_serial_t) arg3);
1783
1784 case KEYCTL_SEARCH:
1785 return keyctl_keyring_search((key_serial_t) arg2,
1786 (const char __user *) arg3,
1787 (const char __user *) arg4,
1788 (key_serial_t) arg5);
1789
1790 case KEYCTL_READ:
1791 return keyctl_read_key((key_serial_t) arg2,
1792 (char __user *) arg3,
1793 (size_t) arg4);
1794
1795 case KEYCTL_CHOWN:
1796 return keyctl_chown_key((key_serial_t) arg2,
1797 (uid_t) arg3,
1798 (gid_t) arg4);
1799
1800 case KEYCTL_SETPERM:
1801 return keyctl_setperm_key((key_serial_t) arg2,
2e12256b 1802 (unsigned int)arg3);
1da177e4
LT
1803
1804 case KEYCTL_INSTANTIATE:
1805 return keyctl_instantiate_key((key_serial_t) arg2,
1806 (const void __user *) arg3,
1807 (size_t) arg4,
1808 (key_serial_t) arg5);
1809
1810 case KEYCTL_NEGATE:
1811 return keyctl_negate_key((key_serial_t) arg2,
1812 (unsigned) arg3,
1813 (key_serial_t) arg4);
1814
3e30148c
DH
1815 case KEYCTL_SET_REQKEY_KEYRING:
1816 return keyctl_set_reqkey_keyring(arg2);
1817
017679c4
DH
1818 case KEYCTL_SET_TIMEOUT:
1819 return keyctl_set_timeout((key_serial_t) arg2,
1820 (unsigned) arg3);
1821
b5f545c8
DH
1822 case KEYCTL_ASSUME_AUTHORITY:
1823 return keyctl_assume_authority((key_serial_t) arg2);
1824
70a5bb72
DH
1825 case KEYCTL_GET_SECURITY:
1826 return keyctl_get_security((key_serial_t) arg2,
90bd49ab 1827 (char __user *) arg3,
70a5bb72
DH
1828 (size_t) arg4);
1829
ee18d64c
DH
1830 case KEYCTL_SESSION_TO_PARENT:
1831 return keyctl_session_to_parent();
1832
fdd1b945
DH
1833 case KEYCTL_REJECT:
1834 return keyctl_reject_key((key_serial_t) arg2,
1835 (unsigned) arg3,
1836 (unsigned) arg4,
1837 (key_serial_t) arg5);
1838
ee009e4a
DH
1839 case KEYCTL_INSTANTIATE_IOV:
1840 return keyctl_instantiate_key_iov(
1841 (key_serial_t) arg2,
1842 (const struct iovec __user *) arg3,
1843 (unsigned) arg4,
1844 (key_serial_t) arg5);
1845
fd75815f
DH
1846 case KEYCTL_INVALIDATE:
1847 return keyctl_invalidate_key((key_serial_t) arg2);
1848
f36f8c75
DH
1849 case KEYCTL_GET_PERSISTENT:
1850 return keyctl_get_persistent((uid_t)arg2, (key_serial_t)arg3);
1851
ddbb4114
MM
1852 case KEYCTL_DH_COMPUTE:
1853 return keyctl_dh_compute((struct keyctl_dh_params __user *) arg2,
4693fc73 1854 (char __user *) arg3, (size_t) arg4,
f1c316a3 1855 (struct keyctl_kdf_params __user *) arg5);
ddbb4114 1856
6563c91f
MM
1857 case KEYCTL_RESTRICT_KEYRING:
1858 return keyctl_restrict_keyring((key_serial_t) arg2,
1859 (const char __user *) arg3,
1860 (const char __user *) arg4);
ddbb4114 1861
00d60fd3
DH
1862 case KEYCTL_PKEY_QUERY:
1863 if (arg3 != 0)
1864 return -EINVAL;
1865 return keyctl_pkey_query((key_serial_t)arg2,
1866 (const char __user *)arg4,
468e91ce 1867 (struct keyctl_pkey_query __user *)arg5);
00d60fd3
DH
1868
1869 case KEYCTL_PKEY_ENCRYPT:
1870 case KEYCTL_PKEY_DECRYPT:
1871 case KEYCTL_PKEY_SIGN:
1872 return keyctl_pkey_e_d_s(
1873 option,
1874 (const struct keyctl_pkey_params __user *)arg2,
1875 (const char __user *)arg3,
1876 (const void __user *)arg4,
1877 (void __user *)arg5);
1878
1879 case KEYCTL_PKEY_VERIFY:
1880 return keyctl_pkey_verify(
1881 (const struct keyctl_pkey_params __user *)arg2,
1882 (const char __user *)arg3,
1883 (const void __user *)arg4,
1884 (const void __user *)arg5);
1885
ed0ac5c7
DH
1886 case KEYCTL_MOVE:
1887 return keyctl_keyring_move((key_serial_t)arg2,
1888 (key_serial_t)arg3,
1889 (key_serial_t)arg4,
1890 (unsigned int)arg5);
7a1ade84
DH
1891 case KEYCTL_GRANT_PERMISSION:
1892 return keyctl_grant_permission((key_serial_t)arg2,
1893 (enum key_ace_subject_type)arg3,
1894 (unsigned int)arg4,
1895 (unsigned int)arg5);
ed0ac5c7 1896
45e0f30c
DH
1897 case KEYCTL_CAPABILITIES:
1898 return keyctl_capabilities((unsigned char __user *)arg2, (size_t)arg3);
1899
1da177e4
LT
1900 default:
1901 return -EOPNOTSUPP;
1902 }
a8b17ed0 1903}