Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Howells | 973c9f4 | 2011-01-20 16:38:33 +0000 | [diff] [blame] | 2 | /* Key permission checking |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005 Red Hat, Inc. All Rights Reserved. |
| 5 | * Written by David Howells (dhowells@redhat.com) |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Paul Gortmaker | 876979c | 2018-12-09 15:36:29 -0500 | [diff] [blame] | 8 | #include <linux/export.h> |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 9 | #include <linux/security.h> |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 10 | #include "internal.h" |
| 11 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 12 | /** |
| 13 | * key_task_permission - Check a key can be used |
David Howells | 973c9f4 | 2011-01-20 16:38:33 +0000 | [diff] [blame] | 14 | * @key_ref: The key to check. |
| 15 | * @cred: The credentials to use. |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 16 | * @perm: The permissions to check for. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 17 | * |
| 18 | * Check to see whether permission is granted to use a key in the desired way, |
| 19 | * but permit the security modules to override. |
| 20 | * |
David Howells | 973c9f4 | 2011-01-20 16:38:33 +0000 | [diff] [blame] | 21 | * The caller must hold either a ref on cred or must hold the RCU readlock. |
| 22 | * |
| 23 | * Returns 0 if successful, -EACCES if access is denied based on the |
| 24 | * permissions bits or the LSM check. |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 25 | */ |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 26 | int key_task_permission(const key_ref_t key_ref, const struct cred *cred, |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 27 | unsigned perm) |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 28 | { |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 29 | struct key *key; |
| 30 | key_perm_t kperm; |
| 31 | int ret; |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 32 | |
| 33 | key = key_ref_to_ptr(key_ref); |
| 34 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 35 | /* use the second 8-bits of permissions for keys the caller owns */ |
| 36 | if (uid_eq(key->uid, cred->fsuid)) { |
| 37 | kperm = key->perm >> 16; |
| 38 | goto use_these_perms; |
| 39 | } |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 40 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 41 | /* use the third 8-bits of permissions for keys the caller has a group |
| 42 | * membership in common with */ |
| 43 | if (gid_valid(key->gid) && key->perm & KEY_GRP_ALL) { |
| 44 | if (gid_eq(key->gid, cred->fsgid)) { |
| 45 | kperm = key->perm >> 8; |
| 46 | goto use_these_perms; |
| 47 | } |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 48 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 49 | ret = groups_search(cred->group_info, key->gid); |
| 50 | if (ret) { |
| 51 | kperm = key->perm >> 8; |
| 52 | goto use_these_perms; |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 56 | /* otherwise use the least-significant 8-bits */ |
| 57 | kperm = key->perm; |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 58 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 59 | use_these_perms: |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 60 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 61 | /* use the top 8-bits of permissions for keys the caller possesses |
| 62 | * - possessor permissions are additive with other permissions |
| 63 | */ |
| 64 | if (is_key_possessed(key_ref)) |
| 65 | kperm |= key->perm >> 24; |
David Howells | 7ab501d | 2005-10-07 16:41:24 +0100 | [diff] [blame] | 66 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame^] | 67 | kperm = kperm & perm & KEY_NEED_ALL; |
| 68 | |
| 69 | if (kperm != perm) |
| 70 | return -EACCES; |
| 71 | |
| 72 | /* let LSM be the final arbiter */ |
| 73 | return security_key_permission(key_ref, cred, perm); |
David Howells | a8b17ed | 2011-01-20 16:38:27 +0000 | [diff] [blame] | 74 | } |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 75 | EXPORT_SYMBOL(key_task_permission); |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 76 | |
David Howells | 973c9f4 | 2011-01-20 16:38:33 +0000 | [diff] [blame] | 77 | /** |
| 78 | * key_validate - Validate a key. |
| 79 | * @key: The key to be validated. |
| 80 | * |
David Howells | fd75815 | 2012-05-11 10:56:56 +0100 | [diff] [blame] | 81 | * Check that a key is valid, returning 0 if the key is okay, -ENOKEY if the |
| 82 | * key is invalidated, -EKEYREVOKED if the key's type has been removed or if |
| 83 | * the key has been revoked or -EKEYEXPIRED if the key has expired. |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 84 | */ |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 85 | int key_validate(const struct key *key) |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 86 | { |
Eric Biggers | 1823d47 | 2017-09-27 12:50:44 -0700 | [diff] [blame] | 87 | unsigned long flags = READ_ONCE(key->flags); |
Baolin Wang | 074d589 | 2017-11-15 16:38:45 +0000 | [diff] [blame] | 88 | time64_t expiry = READ_ONCE(key->expiry); |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 89 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 90 | if (flags & (1 << KEY_FLAG_INVALIDATED)) |
| 91 | return -ENOKEY; |
David Howells | fd75815 | 2012-05-11 10:56:56 +0100 | [diff] [blame] | 92 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 93 | /* check it's still accessible */ |
| 94 | if (flags & ((1 << KEY_FLAG_REVOKED) | |
| 95 | (1 << KEY_FLAG_DEAD))) |
| 96 | return -EKEYREVOKED; |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 97 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 98 | /* check it hasn't expired */ |
Eric Biggers | 1823d47 | 2017-09-27 12:50:44 -0700 | [diff] [blame] | 99 | if (expiry) { |
Baolin Wang | 074d589 | 2017-11-15 16:38:45 +0000 | [diff] [blame] | 100 | if (ktime_get_real_seconds() >= expiry) |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 101 | return -EKEYEXPIRED; |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 102 | } |
| 103 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 104 | return 0; |
David Howells | a8b17ed | 2011-01-20 16:38:27 +0000 | [diff] [blame] | 105 | } |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 106 | EXPORT_SYMBOL(key_validate); |