blob: d964cc82b69c63a1eb5a1357d9f37dbf01be6a54 [file] [log] [blame]
Thomas Gleixnerb4d0d232019-05-20 19:08:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howellsc26fd692012-09-24 17:11:48 +01002/* Instantiate a public key crypto key from an X.509 Certificate
3 *
4 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howellsc26fd692012-09-24 17:11:48 +01006 */
7
8#define pr_fmt(fmt) "X.509: "fmt
9#include <linux/module.h>
10#include <linux/kernel.h>
11#include <linux/slab.h>
David Howellsc26fd692012-09-24 17:11:48 +010012#include <keys/asymmetric-subtype.h>
13#include <keys/asymmetric-parser.h>
Mimi Zohar3be4bea2013-08-20 14:36:27 -040014#include <keys/system_keyring.h>
David Howellsc26fd692012-09-24 17:11:48 +010015#include <crypto/hash.h>
16#include "asymmetric_keys.h"
David Howellsc26fd692012-09-24 17:11:48 +010017#include "x509_parser.h"
18
David Howellsc26fd692012-09-24 17:11:48 +010019/*
David Howellsb426beb2013-08-30 16:18:02 +010020 * Set up the signature parameters in an X.509 certificate. This involves
21 * digesting the signed data and extracting the signature.
David Howellsc26fd692012-09-24 17:11:48 +010022 */
David Howellsb426beb2013-08-30 16:18:02 +010023int x509_get_sig_params(struct x509_certificate *cert)
David Howellsc26fd692012-09-24 17:11:48 +010024{
David Howells77d09102016-04-06 16:13:33 +010025 struct public_key_signature *sig = cert->sig;
David Howellsc26fd692012-09-24 17:11:48 +010026 struct crypto_shash *tfm;
27 struct shash_desc *desc;
David Howells77d09102016-04-06 16:13:33 +010028 size_t desc_size;
David Howellsc26fd692012-09-24 17:11:48 +010029 int ret;
30
31 pr_devel("==>%s()\n", __func__);
David Howellsb426beb2013-08-30 16:18:02 +010032
David Howells6c2dc5a2016-04-06 16:13:34 +010033 if (!cert->pub->pkey_algo)
34 cert->unsupported_key = true;
35
36 if (!sig->pkey_algo)
37 cert->unsupported_sig = true;
38
39 /* We check the hash if we can - even if we can't then verify it */
40 if (!sig->hash_algo) {
41 cert->unsupported_sig = true;
David Howellsb426beb2013-08-30 16:18:02 +010042 return 0;
David Howells6c2dc5a2016-04-06 16:13:34 +010043 }
David Howellsb426beb2013-08-30 16:18:02 +010044
David Howells77d09102016-04-06 16:13:33 +010045 sig->s = kmemdup(cert->raw_sig, cert->raw_sig_size, GFP_KERNEL);
46 if (!sig->s)
David Howellsb426beb2013-08-30 16:18:02 +010047 return -ENOMEM;
Tadeusz Strukdb6c43b2016-02-02 10:08:53 -080048
David Howells77d09102016-04-06 16:13:33 +010049 sig->s_size = cert->raw_sig_size;
David Howellsb426beb2013-08-30 16:18:02 +010050
David Howellsc26fd692012-09-24 17:11:48 +010051 /* Allocate the hashing algorithm we're going to need and find out how
52 * big the hash operational data will be.
53 */
David Howells77d09102016-04-06 16:13:33 +010054 tfm = crypto_alloc_shash(sig->hash_algo, 0, 0);
David Howells41559422014-09-16 17:36:15 +010055 if (IS_ERR(tfm)) {
56 if (PTR_ERR(tfm) == -ENOENT) {
David Howells6c2dc5a2016-04-06 16:13:34 +010057 cert->unsupported_sig = true;
58 return 0;
David Howells41559422014-09-16 17:36:15 +010059 }
60 return PTR_ERR(tfm);
61 }
David Howellsc26fd692012-09-24 17:11:48 +010062
63 desc_size = crypto_shash_descsize(tfm) + sizeof(*desc);
David Howells77d09102016-04-06 16:13:33 +010064 sig->digest_size = crypto_shash_digestsize(tfm);
David Howellsc26fd692012-09-24 17:11:48 +010065
David Howellsc26fd692012-09-24 17:11:48 +010066 ret = -ENOMEM;
David Howells77d09102016-04-06 16:13:33 +010067 sig->digest = kmalloc(sig->digest_size, GFP_KERNEL);
68 if (!sig->digest)
David Howellsb426beb2013-08-30 16:18:02 +010069 goto error;
David Howellsc26fd692012-09-24 17:11:48 +010070
David Howells77d09102016-04-06 16:13:33 +010071 desc = kzalloc(desc_size, GFP_KERNEL);
72 if (!desc)
73 goto error;
David Howellsc26fd692012-09-24 17:11:48 +010074
David Howellsb426beb2013-08-30 16:18:02 +010075 desc->tfm = tfm;
David Howellsc26fd692012-09-24 17:11:48 +010076
Eric Biggersaa330032017-12-08 15:13:29 +000077 ret = crypto_shash_digest(desc, cert->tbs, cert->tbs_size, sig->digest);
David Howells43652952017-04-03 16:07:25 +010078 if (ret < 0)
79 goto error_2;
80
81 ret = is_hash_blacklisted(sig->digest, sig->digest_size, "tbs");
82 if (ret == -EKEYREJECTED) {
83 pr_err("Cert %*phN is blacklisted\n",
84 sig->digest_size, sig->digest);
85 cert->blacklisted = true;
86 ret = 0;
87 }
David Howells77d09102016-04-06 16:13:33 +010088
89error_2:
90 kfree(desc);
David Howellsc26fd692012-09-24 17:11:48 +010091error:
David Howellsc26fd692012-09-24 17:11:48 +010092 crypto_free_shash(tfm);
David Howellsc26fd692012-09-24 17:11:48 +010093 pr_devel("<==%s() = %d\n", __func__, ret);
94 return ret;
95}
David Howellsb426beb2013-08-30 16:18:02 +010096
97/*
David Howells6c2dc5a2016-04-06 16:13:34 +010098 * Check for self-signedness in an X.509 cert and if found, check the signature
99 * immediately if we can.
David Howellsb426beb2013-08-30 16:18:02 +0100100 */
David Howells6c2dc5a2016-04-06 16:13:34 +0100101int x509_check_for_self_signed(struct x509_certificate *cert)
David Howellsb426beb2013-08-30 16:18:02 +0100102{
David Howells6c2dc5a2016-04-06 16:13:34 +0100103 int ret = 0;
David Howellsb426beb2013-08-30 16:18:02 +0100104
105 pr_devel("==>%s()\n", __func__);
106
David Howellsad3043f2016-04-06 16:13:34 +0100107 if (cert->raw_subject_size != cert->raw_issuer_size ||
108 memcmp(cert->raw_subject, cert->raw_issuer,
109 cert->raw_issuer_size) != 0)
110 goto not_self_signed;
111
David Howells6c2dc5a2016-04-06 16:13:34 +0100112 if (cert->sig->auth_ids[0] || cert->sig->auth_ids[1]) {
113 /* If the AKID is present it may have one or two parts. If
114 * both are supplied, both must match.
115 */
116 bool a = asymmetric_key_id_same(cert->skid, cert->sig->auth_ids[1]);
117 bool b = asymmetric_key_id_same(cert->id, cert->sig->auth_ids[0]);
David Howellsb426beb2013-08-30 16:18:02 +0100118
David Howells6c2dc5a2016-04-06 16:13:34 +0100119 if (!a && !b)
120 goto not_self_signed;
121
122 ret = -EKEYREJECTED;
123 if (((a && !b) || (b && !a)) &&
124 cert->sig->auth_ids[0] && cert->sig->auth_ids[1])
125 goto out;
126 }
127
David Howellsad3043f2016-04-06 16:13:34 +0100128 ret = -EKEYREJECTED;
Eric Biggers54c1fb32017-12-08 15:13:29 +0000129 if (strcmp(cert->pub->pkey_algo, cert->sig->pkey_algo) != 0)
David Howellsad3043f2016-04-06 16:13:34 +0100130 goto out;
131
David Howells6c2dc5a2016-04-06 16:13:34 +0100132 ret = public_key_verify_signature(cert->pub, cert->sig);
133 if (ret < 0) {
134 if (ret == -ENOPKG) {
135 cert->unsupported_sig = true;
136 ret = 0;
137 }
138 goto out;
139 }
140
141 pr_devel("Cert Self-signature verified");
142 cert->self_signed = true;
143
144out:
145 pr_devel("<==%s() = %d\n", __func__, ret);
David Howellsb426beb2013-08-30 16:18:02 +0100146 return ret;
David Howells6c2dc5a2016-04-06 16:13:34 +0100147
148not_self_signed:
149 pr_devel("<==%s() = 0 [not]\n", __func__);
150 return 0;
David Howellsb426beb2013-08-30 16:18:02 +0100151}
David Howellsc26fd692012-09-24 17:11:48 +0100152
153/*
154 * Attempt to parse a data blob for a key as an X509 certificate.
155 */
156static int x509_key_preparse(struct key_preparsed_payload *prep)
157{
David Howells46963b72014-09-16 17:36:13 +0100158 struct asymmetric_key_ids *kids;
David Howellsc26fd692012-09-24 17:11:48 +0100159 struct x509_certificate *cert;
David Howells46963b72014-09-16 17:36:13 +0100160 const char *q;
David Howellsc26fd692012-09-24 17:11:48 +0100161 size_t srlen, sulen;
David Howells46963b72014-09-16 17:36:13 +0100162 char *desc = NULL, *p;
David Howellsc26fd692012-09-24 17:11:48 +0100163 int ret;
164
165 cert = x509_cert_parse(prep->data, prep->datalen);
166 if (IS_ERR(cert))
167 return PTR_ERR(cert);
168
169 pr_devel("Cert Issuer: %s\n", cert->issuer);
170 pr_devel("Cert Subject: %s\n", cert->subject);
David Howells2ecdb232013-08-30 16:18:15 +0100171
David Howells6c2dc5a2016-04-06 16:13:34 +0100172 if (cert->unsupported_key) {
David Howells2ecdb232013-08-30 16:18:15 +0100173 ret = -ENOPKG;
174 goto error_free_cert;
175 }
176
David Howells4e8ae722016-03-03 21:49:27 +0000177 pr_devel("Cert Key Algo: %s\n", cert->pub->pkey_algo);
David Howellsfd19a3d2015-07-29 16:58:32 +0100178 pr_devel("Cert Valid period: %lld-%lld\n", cert->valid_from, cert->valid_to);
David Howellsc26fd692012-09-24 17:11:48 +0100179
David Howells4e8ae722016-03-03 21:49:27 +0000180 cert->pub->id_type = "X509";
David Howellsc26fd692012-09-24 17:11:48 +0100181
David Howellsa511e1a2016-04-06 16:14:26 +0100182 if (cert->unsupported_sig) {
David Howells6c2dc5a2016-04-06 16:13:34 +0100183 public_key_signature_free(cert->sig);
184 cert->sig = NULL;
185 } else {
186 pr_devel("Cert Signature: %s + %s\n",
187 cert->sig->pkey_algo, cert->sig->hash_algo);
David Howellsc26fd692012-09-24 17:11:48 +0100188 }
189
David Howells43652952017-04-03 16:07:25 +0100190 /* Don't permit addition of blacklisted keys */
191 ret = -EKEYREJECTED;
192 if (cert->blacklisted)
193 goto error_free_cert;
194
David Howellsc26fd692012-09-24 17:11:48 +0100195 /* Propose a description */
196 sulen = strlen(cert->subject);
David Howellsdd2f6c42014-10-03 16:17:02 +0100197 if (cert->raw_skid) {
198 srlen = cert->raw_skid_size;
199 q = cert->raw_skid;
200 } else {
201 srlen = cert->raw_serial_size;
202 q = cert->raw_serial;
203 }
David Howells46963b72014-09-16 17:36:13 +0100204
David Howellsc26fd692012-09-24 17:11:48 +0100205 ret = -ENOMEM;
David Howells46963b72014-09-16 17:36:13 +0100206 desc = kmalloc(sulen + 2 + srlen * 2 + 1, GFP_KERNEL);
David Howellsc26fd692012-09-24 17:11:48 +0100207 if (!desc)
208 goto error_free_cert;
David Howells46963b72014-09-16 17:36:13 +0100209 p = memcpy(desc, cert->subject, sulen);
210 p += sulen;
211 *p++ = ':';
212 *p++ = ' ';
213 p = bin2hex(p, q, srlen);
214 *p = 0;
215
216 kids = kmalloc(sizeof(struct asymmetric_key_ids), GFP_KERNEL);
217 if (!kids)
218 goto error_free_desc;
219 kids->id[0] = cert->id;
220 kids->id[1] = cert->skid;
David Howellsc26fd692012-09-24 17:11:48 +0100221
222 /* We're pinning the module by being linked against it */
223 __module_get(public_key_subtype.owner);
David Howells146aa8b2015-10-21 14:04:48 +0100224 prep->payload.data[asym_subtype] = &public_key_subtype;
225 prep->payload.data[asym_key_ids] = kids;
226 prep->payload.data[asym_crypto] = cert->pub;
David Howells77d09102016-04-06 16:13:33 +0100227 prep->payload.data[asym_auth] = cert->sig;
David Howellsc26fd692012-09-24 17:11:48 +0100228 prep->description = desc;
229 prep->quotalen = 100;
230
231 /* We've finished with the certificate */
232 cert->pub = NULL;
David Howells46963b72014-09-16 17:36:13 +0100233 cert->id = NULL;
234 cert->skid = NULL;
David Howells77d09102016-04-06 16:13:33 +0100235 cert->sig = NULL;
David Howellsc26fd692012-09-24 17:11:48 +0100236 desc = NULL;
237 ret = 0;
238
David Howells46963b72014-09-16 17:36:13 +0100239error_free_desc:
240 kfree(desc);
David Howellsc26fd692012-09-24 17:11:48 +0100241error_free_cert:
242 x509_free_certificate(cert);
243 return ret;
244}
245
246static struct asymmetric_key_parser x509_key_parser = {
247 .owner = THIS_MODULE,
248 .name = "x509",
249 .parse = x509_key_preparse,
250};
251
252/*
253 * Module stuff
254 */
255static int __init x509_key_init(void)
256{
257 return register_asymmetric_key_parser(&x509_key_parser);
258}
259
260static void __exit x509_key_exit(void)
261{
262 unregister_asymmetric_key_parser(&x509_key_parser);
263}
264
265module_init(x509_key_init);
266module_exit(x509_key_exit);
Konstantin Khlebnikove19aaa72013-09-17 15:14:55 +0400267
268MODULE_DESCRIPTION("X.509 certificate parser");
David Howells1e684d32017-11-15 16:38:45 +0000269MODULE_AUTHOR("Red Hat, Inc.");
Konstantin Khlebnikove19aaa72013-09-17 15:14:55 +0400270MODULE_LICENSE("GPL");