blob: 085f907b64ac5c4161fe188a599354103ec3ff88 [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.
Linus Torvalds028db3e2019-07-10 18:43:43 -070016 * @perm: The permissions to check for.
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,
Linus Torvalds028db3e2019-07-10 18:43:43 -070027 unsigned perm)
David Howells468ed2b2005-10-07 15:07:38 +010028{
Linus Torvalds028db3e2019-07-10 18:43:43 -070029 struct key *key;
30 key_perm_t kperm;
31 int ret;
David Howells468ed2b2005-10-07 15:07:38 +010032
33 key = key_ref_to_ptr(key_ref);
34
Linus Torvalds028db3e2019-07-10 18:43:43 -070035 /* 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 Howells468ed2b2005-10-07 15:07:38 +010040
Linus Torvalds028db3e2019-07-10 18:43:43 -070041 /* 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 Howells468ed2b2005-10-07 15:07:38 +010048
Linus Torvalds028db3e2019-07-10 18:43:43 -070049 ret = groups_search(cred->group_info, key->gid);
50 if (ret) {
51 kperm = key->perm >> 8;
52 goto use_these_perms;
David Howells468ed2b2005-10-07 15:07:38 +010053 }
54 }
55
Linus Torvalds028db3e2019-07-10 18:43:43 -070056 /* otherwise use the least-significant 8-bits */
57 kperm = key->perm;
David Howells468ed2b2005-10-07 15:07:38 +010058
Linus Torvalds028db3e2019-07-10 18:43:43 -070059use_these_perms:
David Howellsc69e8d92008-11-14 10:39:19 +110060
Linus Torvalds028db3e2019-07-10 18:43:43 -070061 /* 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 Howells7ab501d2005-10-07 16:41:24 +010066
Linus Torvalds028db3e2019-07-10 18:43:43 -070067 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 Howellsa8b17ed2011-01-20 16:38:27 +000074}
David Howells468ed2b2005-10-07 15:07:38 +010075EXPORT_SYMBOL(key_task_permission);
David Howellsb5f545c2006-01-08 01:02:47 -080076
David Howells973c9f42011-01-20 16:38:33 +000077/**
78 * key_validate - Validate a key.
79 * @key: The key to be validated.
80 *
David Howellsfd758152012-05-11 10:56:56 +010081 * 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 Howellsb5f545c2006-01-08 01:02:47 -080084 */
David Howellsb404aef2012-05-15 14:11:11 +010085int key_validate(const struct key *key)
David Howellsb5f545c2006-01-08 01:02:47 -080086{
Eric Biggers1823d472017-09-27 12:50:44 -070087 unsigned long flags = READ_ONCE(key->flags);
Baolin Wang074d5892017-11-15 16:38:45 +000088 time64_t expiry = READ_ONCE(key->expiry);
David Howellsb5f545c2006-01-08 01:02:47 -080089
David Howellsb404aef2012-05-15 14:11:11 +010090 if (flags & (1 << KEY_FLAG_INVALIDATED))
91 return -ENOKEY;
David Howellsfd758152012-05-11 10:56:56 +010092
David Howellsb404aef2012-05-15 14:11:11 +010093 /* check it's still accessible */
94 if (flags & ((1 << KEY_FLAG_REVOKED) |
95 (1 << KEY_FLAG_DEAD)))
96 return -EKEYREVOKED;
David Howellsb5f545c2006-01-08 01:02:47 -080097
David Howellsb404aef2012-05-15 14:11:11 +010098 /* check it hasn't expired */
Eric Biggers1823d472017-09-27 12:50:44 -070099 if (expiry) {
Baolin Wang074d5892017-11-15 16:38:45 +0000100 if (ktime_get_real_seconds() >= expiry)
David Howellsb404aef2012-05-15 14:11:11 +0100101 return -EKEYEXPIRED;
David Howellsb5f545c2006-01-08 01:02:47 -0800102 }
103
David Howellsb404aef2012-05-15 14:11:11 +0100104 return 0;
David Howellsa8b17ed2011-01-20 16:38:27 +0000105}
David Howellsb5f545c2006-01-08 01:02:47 -0800106EXPORT_SYMBOL(key_validate);