David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 1 | /* Instantiate a public key crypto key from an X.509 Certificate |
| 2 | * |
| 3 | * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public Licence |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the Licence, or (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #define pr_fmt(fmt) "X.509: "fmt |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/mpi.h> |
| 18 | #include <linux/asn1_decoder.h> |
| 19 | #include <keys/asymmetric-subtype.h> |
| 20 | #include <keys/asymmetric-parser.h> |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 21 | #include <keys/system_keyring.h> |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 22 | #include <crypto/hash.h> |
| 23 | #include "asymmetric_keys.h" |
| 24 | #include "public_key.h" |
| 25 | #include "x509_parser.h" |
| 26 | |
Dmitry Kasatkin | 32c4741 | 2014-06-17 11:56:59 +0300 | [diff] [blame] | 27 | static bool use_builtin_keys; |
Dmitry Kasatkin | ffb70f6 | 2014-06-17 11:56:58 +0300 | [diff] [blame] | 28 | static char *ca_keyid; |
| 29 | |
| 30 | #ifndef MODULE |
| 31 | static int __init ca_keys_setup(char *str) |
| 32 | { |
| 33 | if (!str) /* default system keyring */ |
| 34 | return 1; |
| 35 | |
| 36 | if (strncmp(str, "id:", 3) == 0) |
| 37 | ca_keyid = str; /* owner key 'id:xxxxxx' */ |
Dmitry Kasatkin | 32c4741 | 2014-06-17 11:56:59 +0300 | [diff] [blame] | 38 | else if (strcmp(str, "builtin") == 0) |
| 39 | use_builtin_keys = true; |
Dmitry Kasatkin | ffb70f6 | 2014-06-17 11:56:58 +0300 | [diff] [blame] | 40 | |
| 41 | return 1; |
| 42 | } |
| 43 | __setup("ca_keys=", ca_keys_setup); |
| 44 | #endif |
| 45 | |
David Howells | 5ce43ad | 2014-07-28 14:11:32 +0100 | [diff] [blame] | 46 | /** |
| 47 | * x509_request_asymmetric_key - Request a key by X.509 certificate params. |
| 48 | * @keyring: The keys to search. |
| 49 | * @subject: The name of the subject to whom the key belongs. |
| 50 | * @key_id: The subject key ID as a hex string. |
| 51 | * |
| 52 | * Find a key in the given keyring by subject name and key ID. These might, |
| 53 | * for instance, be the issuer name and the authority key ID of an X.509 |
| 54 | * certificate that needs to be verified. |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 55 | */ |
David Howells | 5ce43ad | 2014-07-28 14:11:32 +0100 | [diff] [blame] | 56 | struct key *x509_request_asymmetric_key(struct key *keyring, |
| 57 | const char *subject, |
| 58 | const char *key_id) |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 59 | { |
| 60 | key_ref_t key; |
David Howells | 5ce43ad | 2014-07-28 14:11:32 +0100 | [diff] [blame] | 61 | size_t subject_len = strlen(subject), key_id_len = strlen(key_id); |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 62 | char *id; |
| 63 | |
David Howells | 5ce43ad | 2014-07-28 14:11:32 +0100 | [diff] [blame] | 64 | /* Construct an identifier "<subjname>:<keyid>". */ |
| 65 | id = kmalloc(subject_len + 2 + key_id_len + 1, GFP_KERNEL); |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 66 | if (!id) |
| 67 | return ERR_PTR(-ENOMEM); |
| 68 | |
David Howells | 5ce43ad | 2014-07-28 14:11:32 +0100 | [diff] [blame] | 69 | memcpy(id, subject, subject_len); |
| 70 | id[subject_len + 0] = ':'; |
| 71 | id[subject_len + 1] = ' '; |
| 72 | memcpy(id + subject_len + 2, key_id, key_id_len); |
| 73 | id[subject_len + 2 + key_id_len] = 0; |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 74 | |
| 75 | pr_debug("Look up: \"%s\"\n", id); |
| 76 | |
| 77 | key = keyring_search(make_key_ref(keyring, 1), |
| 78 | &key_type_asymmetric, id); |
| 79 | if (IS_ERR(key)) |
David Howells | 5ce43ad | 2014-07-28 14:11:32 +0100 | [diff] [blame] | 80 | pr_debug("Request for key '%s' err %ld\n", id, PTR_ERR(key)); |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 81 | kfree(id); |
| 82 | |
| 83 | if (IS_ERR(key)) { |
| 84 | switch (PTR_ERR(key)) { |
| 85 | /* Hide some search errors */ |
| 86 | case -EACCES: |
| 87 | case -ENOTDIR: |
| 88 | case -EAGAIN: |
| 89 | return ERR_PTR(-ENOKEY); |
| 90 | default: |
| 91 | return ERR_CAST(key); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | pr_devel("<==%s() = 0 [%x]\n", __func__, |
| 96 | key_serial(key_ref_to_ptr(key))); |
| 97 | return key_ref_to_ptr(key); |
| 98 | } |
David Howells | cf5b50f | 2014-08-03 12:54:48 +0100 | [diff] [blame] | 99 | EXPORT_SYMBOL_GPL(x509_request_asymmetric_key); |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 100 | |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 101 | /* |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 102 | * Set up the signature parameters in an X.509 certificate. This involves |
| 103 | * digesting the signed data and extracting the signature. |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 104 | */ |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 105 | int x509_get_sig_params(struct x509_certificate *cert) |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 106 | { |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 107 | struct crypto_shash *tfm; |
| 108 | struct shash_desc *desc; |
| 109 | size_t digest_size, desc_size; |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 110 | void *digest; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 111 | int ret; |
| 112 | |
| 113 | pr_devel("==>%s()\n", __func__); |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 114 | |
| 115 | if (cert->sig.rsa.s) |
| 116 | return 0; |
| 117 | |
| 118 | cert->sig.rsa.s = mpi_read_raw_data(cert->raw_sig, cert->raw_sig_size); |
| 119 | if (!cert->sig.rsa.s) |
| 120 | return -ENOMEM; |
| 121 | cert->sig.nr_mpi = 1; |
| 122 | |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 123 | /* Allocate the hashing algorithm we're going to need and find out how |
| 124 | * big the hash operational data will be. |
| 125 | */ |
Dmitry Kasatkin | 3fe78ca | 2013-05-06 15:58:15 +0300 | [diff] [blame] | 126 | tfm = crypto_alloc_shash(hash_algo_name[cert->sig.pkey_hash_algo], 0, 0); |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 127 | if (IS_ERR(tfm)) |
| 128 | return (PTR_ERR(tfm) == -ENOENT) ? -ENOPKG : PTR_ERR(tfm); |
| 129 | |
| 130 | desc_size = crypto_shash_descsize(tfm) + sizeof(*desc); |
| 131 | digest_size = crypto_shash_digestsize(tfm); |
| 132 | |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 133 | /* We allocate the hash operational data storage on the end of the |
| 134 | * digest storage space. |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 135 | */ |
| 136 | ret = -ENOMEM; |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 137 | digest = kzalloc(digest_size + desc_size, GFP_KERNEL); |
| 138 | if (!digest) |
| 139 | goto error; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 140 | |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 141 | cert->sig.digest = digest; |
| 142 | cert->sig.digest_size = digest_size; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 143 | |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 144 | desc = digest + digest_size; |
| 145 | desc->tfm = tfm; |
| 146 | desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 147 | |
| 148 | ret = crypto_shash_init(desc); |
| 149 | if (ret < 0) |
| 150 | goto error; |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 151 | might_sleep(); |
| 152 | ret = crypto_shash_finup(desc, cert->tbs, cert->tbs_size, digest); |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 153 | error: |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 154 | crypto_free_shash(tfm); |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 155 | pr_devel("<==%s() = %d\n", __func__, ret); |
| 156 | return ret; |
| 157 | } |
David Howells | b426beb | 2013-08-30 16:18:02 +0100 | [diff] [blame] | 158 | EXPORT_SYMBOL_GPL(x509_get_sig_params); |
| 159 | |
| 160 | /* |
| 161 | * Check the signature on a certificate using the provided public key |
| 162 | */ |
| 163 | int x509_check_signature(const struct public_key *pub, |
| 164 | struct x509_certificate *cert) |
| 165 | { |
| 166 | int ret; |
| 167 | |
| 168 | pr_devel("==>%s()\n", __func__); |
| 169 | |
| 170 | ret = x509_get_sig_params(cert); |
| 171 | if (ret < 0) |
| 172 | return ret; |
| 173 | |
| 174 | ret = public_key_verify_signature(pub, &cert->sig); |
| 175 | pr_debug("Cert Verification: %d\n", ret); |
| 176 | return ret; |
| 177 | } |
| 178 | EXPORT_SYMBOL_GPL(x509_check_signature); |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 179 | |
| 180 | /* |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 181 | * Check the new certificate against the ones in the trust keyring. If one of |
| 182 | * those is the signing key and validates the new certificate, then mark the |
| 183 | * new certificate as being trusted. |
| 184 | * |
| 185 | * Return 0 if the new certificate was successfully validated, 1 if we couldn't |
| 186 | * find a matching parent certificate in the trusted list and an error if there |
| 187 | * is a matching certificate but the signature check fails. |
| 188 | */ |
| 189 | static int x509_validate_trust(struct x509_certificate *cert, |
| 190 | struct key *trust_keyring) |
| 191 | { |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 192 | struct key *key; |
| 193 | int ret = 1; |
| 194 | |
| 195 | if (!trust_keyring) |
| 196 | return -EOPNOTSUPP; |
| 197 | |
Dmitry Kasatkin | ffb70f6 | 2014-06-17 11:56:58 +0300 | [diff] [blame] | 198 | if (ca_keyid && !asymmetric_keyid_match(cert->authority, ca_keyid)) |
| 199 | return -EPERM; |
| 200 | |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 201 | key = x509_request_asymmetric_key(trust_keyring, |
David Howells | 185de09 | 2014-07-09 16:48:00 +0100 | [diff] [blame] | 202 | cert->issuer, cert->authority); |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 203 | if (!IS_ERR(key)) { |
Dmitry Kasatkin | 32c4741 | 2014-06-17 11:56:59 +0300 | [diff] [blame] | 204 | if (!use_builtin_keys |
| 205 | || test_bit(KEY_FLAG_BUILTIN, &key->flags)) |
| 206 | ret = x509_check_signature(key->payload.data, cert); |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 207 | key_put(key); |
| 208 | } |
| 209 | return ret; |
| 210 | } |
| 211 | |
| 212 | /* |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 213 | * Attempt to parse a data blob for a key as an X509 certificate. |
| 214 | */ |
| 215 | static int x509_key_preparse(struct key_preparsed_payload *prep) |
| 216 | { |
| 217 | struct x509_certificate *cert; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 218 | size_t srlen, sulen; |
| 219 | char *desc = NULL; |
| 220 | int ret; |
| 221 | |
| 222 | cert = x509_cert_parse(prep->data, prep->datalen); |
| 223 | if (IS_ERR(cert)) |
| 224 | return PTR_ERR(cert); |
| 225 | |
| 226 | pr_devel("Cert Issuer: %s\n", cert->issuer); |
| 227 | pr_devel("Cert Subject: %s\n", cert->subject); |
David Howells | 2ecdb23 | 2013-08-30 16:18:15 +0100 | [diff] [blame] | 228 | |
| 229 | if (cert->pub->pkey_algo >= PKEY_ALGO__LAST || |
| 230 | cert->sig.pkey_algo >= PKEY_ALGO__LAST || |
| 231 | cert->sig.pkey_hash_algo >= PKEY_HASH__LAST || |
| 232 | !pkey_algo[cert->pub->pkey_algo] || |
| 233 | !pkey_algo[cert->sig.pkey_algo] || |
Dmitry Kasatkin | 3fe78ca | 2013-05-06 15:58:15 +0300 | [diff] [blame] | 234 | !hash_algo_name[cert->sig.pkey_hash_algo]) { |
David Howells | 2ecdb23 | 2013-08-30 16:18:15 +0100 | [diff] [blame] | 235 | ret = -ENOPKG; |
| 236 | goto error_free_cert; |
| 237 | } |
| 238 | |
David Howells | 67f7d60b | 2013-08-30 16:15:24 +0100 | [diff] [blame] | 239 | pr_devel("Cert Key Algo: %s\n", pkey_algo_name[cert->pub->pkey_algo]); |
David Howells | 2f1c4fe | 2012-10-04 14:21:23 +0100 | [diff] [blame] | 240 | pr_devel("Cert Valid From: %04ld-%02d-%02d %02d:%02d:%02d\n", |
David Howells | a5752d1 | 2012-10-02 14:36:16 +0100 | [diff] [blame] | 241 | cert->valid_from.tm_year + 1900, cert->valid_from.tm_mon + 1, |
| 242 | cert->valid_from.tm_mday, cert->valid_from.tm_hour, |
| 243 | cert->valid_from.tm_min, cert->valid_from.tm_sec); |
David Howells | 2f1c4fe | 2012-10-04 14:21:23 +0100 | [diff] [blame] | 244 | pr_devel("Cert Valid To: %04ld-%02d-%02d %02d:%02d:%02d\n", |
David Howells | a5752d1 | 2012-10-02 14:36:16 +0100 | [diff] [blame] | 245 | cert->valid_to.tm_year + 1900, cert->valid_to.tm_mon + 1, |
| 246 | cert->valid_to.tm_mday, cert->valid_to.tm_hour, |
| 247 | cert->valid_to.tm_min, cert->valid_to.tm_sec); |
Dmitry Kasatkin | c7c8bb2 | 2013-04-25 10:43:56 +0300 | [diff] [blame] | 248 | pr_devel("Cert Signature: %s + %s\n", |
| 249 | pkey_algo_name[cert->sig.pkey_algo], |
Dmitry Kasatkin | 3fe78ca | 2013-05-06 15:58:15 +0300 | [diff] [blame] | 250 | hash_algo_name[cert->sig.pkey_hash_algo]); |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 251 | |
David Howells | 17334ca | 2013-08-30 16:18:31 +0100 | [diff] [blame] | 252 | if (!cert->fingerprint) { |
| 253 | pr_warn("Cert for '%s' must have a SubjKeyId extension\n", |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 254 | cert->subject); |
| 255 | ret = -EKEYREJECTED; |
| 256 | goto error_free_cert; |
| 257 | } |
| 258 | |
David Howells | 67f7d60b | 2013-08-30 16:15:24 +0100 | [diff] [blame] | 259 | cert->pub->algo = pkey_algo[cert->pub->pkey_algo]; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 260 | cert->pub->id_type = PKEY_ID_X509; |
| 261 | |
David Howells | 17334ca | 2013-08-30 16:18:31 +0100 | [diff] [blame] | 262 | /* Check the signature on the key if it appears to be self-signed */ |
| 263 | if (!cert->authority || |
| 264 | strcmp(cert->fingerprint, cert->authority) == 0) { |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 265 | ret = x509_check_signature(cert->pub, cert); /* self-signed */ |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 266 | if (ret < 0) |
| 267 | goto error_free_cert; |
Mimi Zohar | 3be4bea | 2013-08-20 14:36:27 -0400 | [diff] [blame] | 268 | } else if (!prep->trusted) { |
| 269 | ret = x509_validate_trust(cert, get_system_trusted_keyring()); |
| 270 | if (!ret) |
| 271 | prep->trusted = 1; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | /* Propose a description */ |
| 275 | sulen = strlen(cert->subject); |
| 276 | srlen = strlen(cert->fingerprint); |
| 277 | ret = -ENOMEM; |
| 278 | desc = kmalloc(sulen + 2 + srlen + 1, GFP_KERNEL); |
| 279 | if (!desc) |
| 280 | goto error_free_cert; |
| 281 | memcpy(desc, cert->subject, sulen); |
| 282 | desc[sulen] = ':'; |
| 283 | desc[sulen + 1] = ' '; |
| 284 | memcpy(desc + sulen + 2, cert->fingerprint, srlen); |
| 285 | desc[sulen + 2 + srlen] = 0; |
| 286 | |
| 287 | /* We're pinning the module by being linked against it */ |
| 288 | __module_get(public_key_subtype.owner); |
| 289 | prep->type_data[0] = &public_key_subtype; |
| 290 | prep->type_data[1] = cert->fingerprint; |
David Howells | fc7c70e | 2014-07-18 18:56:34 +0100 | [diff] [blame] | 291 | prep->payload[0] = cert->pub; |
David Howells | c26fd69 | 2012-09-24 17:11:48 +0100 | [diff] [blame] | 292 | prep->description = desc; |
| 293 | prep->quotalen = 100; |
| 294 | |
| 295 | /* We've finished with the certificate */ |
| 296 | cert->pub = NULL; |
| 297 | cert->fingerprint = NULL; |
| 298 | desc = NULL; |
| 299 | ret = 0; |
| 300 | |
| 301 | error_free_cert: |
| 302 | x509_free_certificate(cert); |
| 303 | return ret; |
| 304 | } |
| 305 | |
| 306 | static struct asymmetric_key_parser x509_key_parser = { |
| 307 | .owner = THIS_MODULE, |
| 308 | .name = "x509", |
| 309 | .parse = x509_key_preparse, |
| 310 | }; |
| 311 | |
| 312 | /* |
| 313 | * Module stuff |
| 314 | */ |
| 315 | static int __init x509_key_init(void) |
| 316 | { |
| 317 | return register_asymmetric_key_parser(&x509_key_parser); |
| 318 | } |
| 319 | |
| 320 | static void __exit x509_key_exit(void) |
| 321 | { |
| 322 | unregister_asymmetric_key_parser(&x509_key_parser); |
| 323 | } |
| 324 | |
| 325 | module_init(x509_key_init); |
| 326 | module_exit(x509_key_exit); |
Konstantin Khlebnikov | e19aaa7 | 2013-09-17 15:14:55 +0400 | [diff] [blame] | 327 | |
| 328 | MODULE_DESCRIPTION("X.509 certificate parser"); |
| 329 | MODULE_LICENSE("GPL"); |