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