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. |
David Howells | 8c0637e | 2020-05-12 15:16:29 +0100 | [diff] [blame] | 16 | * @need_perm: The permission required. |
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, |
David Howells | 8c0637e | 2020-05-12 15:16:29 +0100 | [diff] [blame] | 27 | enum key_need_perm need_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; |
David Howells | 8c0637e | 2020-05-12 15:16:29 +0100 | [diff] [blame] | 30 | key_perm_t kperm, mask; |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 31 | int ret; |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 32 | |
David Howells | 8c0637e | 2020-05-12 15:16:29 +0100 | [diff] [blame] | 33 | switch (need_perm) { |
| 34 | default: |
| 35 | WARN_ON(1); |
| 36 | return -EACCES; |
| 37 | case KEY_NEED_UNLINK: |
| 38 | case KEY_SYSADMIN_OVERRIDE: |
| 39 | case KEY_AUTHTOKEN_OVERRIDE: |
| 40 | case KEY_DEFER_PERM_CHECK: |
| 41 | goto lsm; |
| 42 | |
| 43 | case KEY_NEED_VIEW: mask = KEY_OTH_VIEW; break; |
| 44 | case KEY_NEED_READ: mask = KEY_OTH_READ; break; |
| 45 | case KEY_NEED_WRITE: mask = KEY_OTH_WRITE; break; |
| 46 | case KEY_NEED_SEARCH: mask = KEY_OTH_SEARCH; break; |
| 47 | case KEY_NEED_LINK: mask = KEY_OTH_LINK; break; |
| 48 | case KEY_NEED_SETATTR: mask = KEY_OTH_SETATTR; break; |
| 49 | } |
| 50 | |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 51 | key = key_ref_to_ptr(key_ref); |
| 52 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 53 | /* use the second 8-bits of permissions for keys the caller owns */ |
| 54 | if (uid_eq(key->uid, cred->fsuid)) { |
| 55 | kperm = key->perm >> 16; |
| 56 | goto use_these_perms; |
| 57 | } |
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 the third 8-bits of permissions for keys the caller has a group |
| 60 | * membership in common with */ |
| 61 | if (gid_valid(key->gid) && key->perm & KEY_GRP_ALL) { |
| 62 | if (gid_eq(key->gid, cred->fsgid)) { |
| 63 | kperm = key->perm >> 8; |
| 64 | goto use_these_perms; |
| 65 | } |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 66 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 67 | ret = groups_search(cred->group_info, key->gid); |
| 68 | if (ret) { |
| 69 | kperm = key->perm >> 8; |
| 70 | goto use_these_perms; |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 71 | } |
| 72 | } |
| 73 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 74 | /* otherwise use the least-significant 8-bits */ |
| 75 | kperm = key->perm; |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 76 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 77 | use_these_perms: |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 78 | |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 79 | /* use the top 8-bits of permissions for keys the caller possesses |
| 80 | * - possessor permissions are additive with other permissions |
| 81 | */ |
| 82 | if (is_key_possessed(key_ref)) |
| 83 | kperm |= key->perm >> 24; |
David Howells | 7ab501d | 2005-10-07 16:41:24 +0100 | [diff] [blame] | 84 | |
David Howells | 8c0637e | 2020-05-12 15:16:29 +0100 | [diff] [blame] | 85 | if ((kperm & mask) != mask) |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 86 | return -EACCES; |
| 87 | |
| 88 | /* let LSM be the final arbiter */ |
David Howells | 8c0637e | 2020-05-12 15:16:29 +0100 | [diff] [blame] | 89 | lsm: |
| 90 | return security_key_permission(key_ref, cred, need_perm); |
David Howells | a8b17ed | 2011-01-20 16:38:27 +0000 | [diff] [blame] | 91 | } |
David Howells | 468ed2b | 2005-10-07 15:07:38 +0100 | [diff] [blame] | 92 | EXPORT_SYMBOL(key_task_permission); |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 93 | |
David Howells | 973c9f4 | 2011-01-20 16:38:33 +0000 | [diff] [blame] | 94 | /** |
| 95 | * key_validate - Validate a key. |
| 96 | * @key: The key to be validated. |
| 97 | * |
David Howells | fd75815 | 2012-05-11 10:56:56 +0100 | [diff] [blame] | 98 | * Check that a key is valid, returning 0 if the key is okay, -ENOKEY if the |
| 99 | * key is invalidated, -EKEYREVOKED if the key's type has been removed or if |
| 100 | * the key has been revoked or -EKEYEXPIRED if the key has expired. |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 101 | */ |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 102 | int key_validate(const struct key *key) |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 103 | { |
Eric Biggers | 1823d47 | 2017-09-27 12:50:44 -0700 | [diff] [blame] | 104 | unsigned long flags = READ_ONCE(key->flags); |
Baolin Wang | 074d589 | 2017-11-15 16:38:45 +0000 | [diff] [blame] | 105 | time64_t expiry = READ_ONCE(key->expiry); |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 106 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 107 | if (flags & (1 << KEY_FLAG_INVALIDATED)) |
| 108 | return -ENOKEY; |
David Howells | fd75815 | 2012-05-11 10:56:56 +0100 | [diff] [blame] | 109 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 110 | /* check it's still accessible */ |
| 111 | if (flags & ((1 << KEY_FLAG_REVOKED) | |
| 112 | (1 << KEY_FLAG_DEAD))) |
| 113 | return -EKEYREVOKED; |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 114 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 115 | /* check it hasn't expired */ |
Eric Biggers | 1823d47 | 2017-09-27 12:50:44 -0700 | [diff] [blame] | 116 | if (expiry) { |
Baolin Wang | 074d589 | 2017-11-15 16:38:45 +0000 | [diff] [blame] | 117 | if (ktime_get_real_seconds() >= expiry) |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 118 | return -EKEYEXPIRED; |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 119 | } |
| 120 | |
David Howells | b404aef | 2012-05-15 14:11:11 +0100 | [diff] [blame] | 121 | return 0; |
David Howells | a8b17ed | 2011-01-20 16:38:27 +0000 | [diff] [blame] | 122 | } |
David Howells | b5f545c | 2006-01-08 01:02:47 -0800 | [diff] [blame] | 123 | EXPORT_SYMBOL(key_validate); |