blob: 4a61f804e80f61e95a738f0e95cc0b5346f654db [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells973c9f42011-01-20 16:38:33 +00002/* Key permission checking
David Howells468ed2b2005-10-07 15:07:38 +01003 *
4 * Copyright (C) 2005 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells468ed2b2005-10-07 15:07:38 +01006 */
7
Paul Gortmaker876979c2018-12-09 15:36:29 -05008#include <linux/export.h>
David Howells29db9192005-10-30 15:02:44 -08009#include <linux/security.h>
David Howells468ed2b2005-10-07 15:07:38 +010010#include "internal.h"
11
David Howellsd84f4f92008-11-14 10:39:23 +110012/**
13 * key_task_permission - Check a key can be used
David Howells973c9f42011-01-20 16:38:33 +000014 * @key_ref: The key to check.
15 * @cred: The credentials to use.
David Howells8c0637e2020-05-12 15:16:29 +010016 * @need_perm: The permission required.
David Howellsd84f4f92008-11-14 10:39:23 +110017 *
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 Howells973c9f42011-01-20 16:38:33 +000021 * 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 Howells468ed2b2005-10-07 15:07:38 +010025 */
David Howellsd84f4f92008-11-14 10:39:23 +110026int key_task_permission(const key_ref_t key_ref, const struct cred *cred,
David Howells8c0637e2020-05-12 15:16:29 +010027 enum key_need_perm need_perm)
David Howells468ed2b2005-10-07 15:07:38 +010028{
Linus Torvalds028db3e2019-07-10 18:43:43 -070029 struct key *key;
David Howells8c0637e2020-05-12 15:16:29 +010030 key_perm_t kperm, mask;
Linus Torvalds028db3e2019-07-10 18:43:43 -070031 int ret;
David Howells468ed2b2005-10-07 15:07:38 +010032
David Howells8c0637e2020-05-12 15:16:29 +010033 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 Howells468ed2b2005-10-07 15:07:38 +010051 key = key_ref_to_ptr(key_ref);
52
Linus Torvalds028db3e2019-07-10 18:43:43 -070053 /* 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 Howells468ed2b2005-10-07 15:07:38 +010058
Linus Torvalds028db3e2019-07-10 18:43:43 -070059 /* 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 Howells468ed2b2005-10-07 15:07:38 +010066
Linus Torvalds028db3e2019-07-10 18:43:43 -070067 ret = groups_search(cred->group_info, key->gid);
68 if (ret) {
69 kperm = key->perm >> 8;
70 goto use_these_perms;
David Howells468ed2b2005-10-07 15:07:38 +010071 }
72 }
73
Linus Torvalds028db3e2019-07-10 18:43:43 -070074 /* otherwise use the least-significant 8-bits */
75 kperm = key->perm;
David Howells468ed2b2005-10-07 15:07:38 +010076
Linus Torvalds028db3e2019-07-10 18:43:43 -070077use_these_perms:
David Howellsc69e8d92008-11-14 10:39:19 +110078
Linus Torvalds028db3e2019-07-10 18:43:43 -070079 /* 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 Howells7ab501d2005-10-07 16:41:24 +010084
David Howells8c0637e2020-05-12 15:16:29 +010085 if ((kperm & mask) != mask)
Linus Torvalds028db3e2019-07-10 18:43:43 -070086 return -EACCES;
87
88 /* let LSM be the final arbiter */
David Howells8c0637e2020-05-12 15:16:29 +010089lsm:
90 return security_key_permission(key_ref, cred, need_perm);
David Howellsa8b17ed2011-01-20 16:38:27 +000091}
David Howells468ed2b2005-10-07 15:07:38 +010092EXPORT_SYMBOL(key_task_permission);
David Howellsb5f545c2006-01-08 01:02:47 -080093
David Howells973c9f42011-01-20 16:38:33 +000094/**
95 * key_validate - Validate a key.
96 * @key: The key to be validated.
97 *
David Howellsfd758152012-05-11 10:56:56 +010098 * 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 Howellsb5f545c2006-01-08 01:02:47 -0800101 */
David Howellsb404aef2012-05-15 14:11:11 +0100102int key_validate(const struct key *key)
David Howellsb5f545c2006-01-08 01:02:47 -0800103{
Eric Biggers1823d472017-09-27 12:50:44 -0700104 unsigned long flags = READ_ONCE(key->flags);
Baolin Wang074d5892017-11-15 16:38:45 +0000105 time64_t expiry = READ_ONCE(key->expiry);
David Howellsb5f545c2006-01-08 01:02:47 -0800106
David Howellsb404aef2012-05-15 14:11:11 +0100107 if (flags & (1 << KEY_FLAG_INVALIDATED))
108 return -ENOKEY;
David Howellsfd758152012-05-11 10:56:56 +0100109
David Howellsb404aef2012-05-15 14:11:11 +0100110 /* check it's still accessible */
111 if (flags & ((1 << KEY_FLAG_REVOKED) |
112 (1 << KEY_FLAG_DEAD)))
113 return -EKEYREVOKED;
David Howellsb5f545c2006-01-08 01:02:47 -0800114
David Howellsb404aef2012-05-15 14:11:11 +0100115 /* check it hasn't expired */
Eric Biggers1823d472017-09-27 12:50:44 -0700116 if (expiry) {
Baolin Wang074d5892017-11-15 16:38:45 +0000117 if (ktime_get_real_seconds() >= expiry)
David Howellsb404aef2012-05-15 14:11:11 +0100118 return -EKEYEXPIRED;
David Howellsb5f545c2006-01-08 01:02:47 -0800119 }
120
David Howellsb404aef2012-05-15 14:11:11 +0100121 return 0;
David Howellsa8b17ed2011-01-20 16:38:27 +0000122}
David Howellsb5f545c2006-01-08 01:02:47 -0800123EXPORT_SYMBOL(key_validate);