]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - security/integrity/digsig.c
Merge tag 'keys-acl-20190703' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowel...
[mirror_ubuntu-jammy-kernel.git] / security / integrity / digsig.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2011 Intel Corporation
4 *
5 * Author:
6 * Dmitry Kasatkin <dmitry.kasatkin@intel.com>
7 */
8
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
11 #include <linux/err.h>
12 #include <linux/sched.h>
13 #include <linux/slab.h>
14 #include <linux/cred.h>
15 #include <linux/key-type.h>
16 #include <linux/digsig.h>
17 #include <linux/vmalloc.h>
18 #include <crypto/public_key.h>
19 #include <keys/system_keyring.h>
20
21 #include "integrity.h"
22
23 static struct key *keyring[INTEGRITY_KEYRING_MAX];
24
25 static const char * const keyring_name[INTEGRITY_KEYRING_MAX] = {
26 #ifndef CONFIG_INTEGRITY_TRUSTED_KEYRING
27 "_evm",
28 "_ima",
29 #else
30 ".evm",
31 ".ima",
32 #endif
33 ".platform",
34 };
35
36 #ifdef CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY
37 #define restrict_link_to_ima restrict_link_by_builtin_and_secondary_trusted
38 #else
39 #define restrict_link_to_ima restrict_link_by_builtin_trusted
40 #endif
41
42 int integrity_digsig_verify(const unsigned int id, const char *sig, int siglen,
43 const char *digest, int digestlen)
44 {
45 if (id >= INTEGRITY_KEYRING_MAX || siglen < 2)
46 return -EINVAL;
47
48 if (!keyring[id]) {
49 keyring[id] =
50 request_key(&key_type_keyring, keyring_name[id],
51 NULL, NULL);
52 if (IS_ERR(keyring[id])) {
53 int err = PTR_ERR(keyring[id]);
54 pr_err("no %s keyring: %d\n", keyring_name[id], err);
55 keyring[id] = NULL;
56 return err;
57 }
58 }
59
60 switch (sig[1]) {
61 case 1:
62 /* v1 API expect signature without xattr type */
63 return digsig_verify(keyring[id], sig + 1, siglen - 1,
64 digest, digestlen);
65 case 2:
66 return asymmetric_verify(keyring[id], sig, siglen,
67 digest, digestlen);
68 }
69
70 return -EOPNOTSUPP;
71 }
72
73 static int __integrity_init_keyring(const unsigned int id, struct key_acl *acl,
74 struct key_restriction *restriction)
75 {
76 const struct cred *cred = current_cred();
77 int err = 0;
78
79 keyring[id] = keyring_alloc(keyring_name[id], KUIDT_INIT(0),
80 KGIDT_INIT(0), cred, acl,
81 KEY_ALLOC_NOT_IN_QUOTA, restriction, NULL);
82 if (IS_ERR(keyring[id])) {
83 err = PTR_ERR(keyring[id]);
84 pr_info("Can't allocate %s keyring (%d)\n",
85 keyring_name[id], err);
86 keyring[id] = NULL;
87 } else {
88 if (id == INTEGRITY_KEYRING_PLATFORM)
89 set_platform_trusted_keys(keyring[id]);
90 }
91
92 return err;
93 }
94
95 int __init integrity_init_keyring(const unsigned int id)
96 {
97 struct key_restriction *restriction;
98 struct key_acl *acl = &internal_keyring_acl;
99
100 if (id == INTEGRITY_KEYRING_PLATFORM) {
101 restriction = NULL;
102 goto out;
103 }
104
105 if (!IS_ENABLED(CONFIG_INTEGRITY_TRUSTED_KEYRING))
106 return 0;
107
108 restriction = kzalloc(sizeof(struct key_restriction), GFP_KERNEL);
109 if (!restriction)
110 return -ENOMEM;
111
112 restriction->check = restrict_link_to_ima;
113 acl = &internal_writable_keyring_acl;
114
115 out:
116 return __integrity_init_keyring(id, acl, restriction);
117 }
118
119 static int __init integrity_add_key(const unsigned int id, const void *data,
120 off_t size, struct key_acl *acl)
121 {
122 key_ref_t key;
123 int rc = 0;
124
125 if (!keyring[id])
126 return -EINVAL;
127
128 key = key_create_or_update(make_key_ref(keyring[id], 1), "asymmetric",
129 NULL, data, size, acl ?: &internal_key_acl,
130 KEY_ALLOC_NOT_IN_QUOTA);
131 if (IS_ERR(key)) {
132 rc = PTR_ERR(key);
133 pr_err("Problem loading X.509 certificate %d\n", rc);
134 } else {
135 pr_notice("Loaded X.509 cert '%s'\n",
136 key_ref_to_ptr(key)->description);
137 key_ref_put(key);
138 }
139
140 return rc;
141
142 }
143
144 int __init integrity_load_x509(const unsigned int id, const char *path)
145 {
146 void *data;
147 loff_t size;
148 int rc;
149
150 rc = kernel_read_file_from_path(path, &data, &size, 0,
151 READING_X509_CERTIFICATE);
152 if (rc < 0) {
153 pr_err("Unable to open file: %s (%d)", path, rc);
154 return rc;
155 }
156
157 pr_info("Loading X.509 certificate: %s\n", path);
158 rc = integrity_add_key(id, data, size, NULL);
159
160 vfree(data);
161 return rc;
162 }
163
164 int __init integrity_load_cert(const unsigned int id, const char *source,
165 const void *data, size_t len, struct key_acl *acl)
166 {
167 if (!data)
168 return -EINVAL;
169
170 pr_info("Loading X.509 certificate: %s\n", source);
171 return integrity_add_key(id, data, len, acl);
172 }