blob: 895f4b9ce8c6b2ea2785a2c8298ec11528013185 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Dmitry Kasatkine0751252013-02-07 00:12:08 +02002/*
3 * Copyright (C) 2013 Intel Corporation
4 *
5 * Author:
6 * Dmitry Kasatkin <dmitry.kasatkin@intel.com>
Dmitry Kasatkine0751252013-02-07 00:12:08 +02007 */
8
Dmitry Kasatkine0751252013-02-07 00:12:08 +02009#include <linux/err.h>
Dmitry Kasatkind9a2e5d2014-07-02 15:12:26 +030010#include <linux/ratelimit.h>
Dmitry Kasatkine0751252013-02-07 00:12:08 +020011#include <linux/key-type.h>
12#include <crypto/public_key.h>
David Howells4e8ae722016-03-03 21:49:27 +000013#include <crypto/hash_info.h>
Dmitry Kasatkine0751252013-02-07 00:12:08 +020014#include <keys/asymmetric-type.h>
Petko Manolov41c89b62015-12-02 17:47:55 +020015#include <keys/system_keyring.h>
Dmitry Kasatkine0751252013-02-07 00:12:08 +020016
17#include "integrity.h"
18
19/*
Dmitry Kasatkine0751252013-02-07 00:12:08 +020020 * Request an asymmetric key.
21 */
22static struct key *request_asymmetric_key(struct key *keyring, uint32_t keyid)
23{
24 struct key *key;
25 char name[12];
26
Dmitry Kasatkin594081e2014-10-06 17:31:58 +010027 sprintf(name, "id:%08x", keyid);
Dmitry Kasatkine0751252013-02-07 00:12:08 +020028
29 pr_debug("key search: \"%s\"\n", name);
30
Petko Manolov41c89b62015-12-02 17:47:55 +020031 key = get_ima_blacklist_keyring();
32 if (key) {
33 key_ref_t kref;
34
35 kref = keyring_search(make_key_ref(key, 1),
David Howellsdcf49db2019-06-26 21:02:32 +010036 &key_type_asymmetric, name, true);
Petko Manolov41c89b62015-12-02 17:47:55 +020037 if (!IS_ERR(kref)) {
38 pr_err("Key '%s' is in ima_blacklist_keyring\n", name);
39 return ERR_PTR(-EKEYREJECTED);
40 }
41 }
42
Dmitry Kasatkine0751252013-02-07 00:12:08 +020043 if (keyring) {
44 /* search in specific keyring */
45 key_ref_t kref;
Petko Manolov41c89b62015-12-02 17:47:55 +020046
Dmitry Kasatkine0751252013-02-07 00:12:08 +020047 kref = keyring_search(make_key_ref(keyring, 1),
David Howellsdcf49db2019-06-26 21:02:32 +010048 &key_type_asymmetric, name, true);
Dmitry Kasatkine0751252013-02-07 00:12:08 +020049 if (IS_ERR(kref))
50 key = ERR_CAST(kref);
51 else
52 key = key_ref_to_ptr(kref);
53 } else {
Linus Torvalds028db3e2019-07-10 18:43:43 -070054 key = request_key(&key_type_asymmetric, name, NULL);
Dmitry Kasatkine0751252013-02-07 00:12:08 +020055 }
56
57 if (IS_ERR(key)) {
Bruno Meneguele8c2f5162020-09-04 16:41:00 -030058 if (keyring)
59 pr_err_ratelimited("Request for unknown key '%s' in '%s' keyring. err %ld\n",
60 name, keyring->description,
61 PTR_ERR(key));
62 else
63 pr_err_ratelimited("Request for unknown key '%s' err %ld\n",
64 name, PTR_ERR(key));
65
Dmitry Kasatkine0751252013-02-07 00:12:08 +020066 switch (PTR_ERR(key)) {
67 /* Hide some search errors */
68 case -EACCES:
69 case -ENOTDIR:
70 case -EAGAIN:
71 return ERR_PTR(-ENOKEY);
72 default:
73 return key;
74 }
75 }
76
77 pr_debug("%s() = 0 [%x]\n", __func__, key_serial(key));
78
79 return key;
80}
81
82int asymmetric_verify(struct key *keyring, const char *sig,
83 int siglen, const char *data, int datalen)
84{
85 struct public_key_signature pks;
86 struct signature_v2_hdr *hdr = (struct signature_v2_hdr *)sig;
Stefan Berger947d7052021-03-16 17:07:38 -040087 const struct public_key *pk;
Dmitry Kasatkine0751252013-02-07 00:12:08 +020088 struct key *key;
Colin Ian King3db0d0c2020-07-01 14:46:34 +010089 int ret;
Dmitry Kasatkine0751252013-02-07 00:12:08 +020090
91 if (siglen <= sizeof(*hdr))
92 return -EBADMSG;
93
94 siglen -= sizeof(*hdr);
95
Thiago Jung Bauermannbb543e32017-06-07 22:49:10 -030096 if (siglen != be16_to_cpu(hdr->sig_size))
Dmitry Kasatkine0751252013-02-07 00:12:08 +020097 return -EBADMSG;
98
David Howells4e8ae722016-03-03 21:49:27 +000099 if (hdr->hash_algo >= HASH_ALGO__LAST)
Dmitry Kasatkine0751252013-02-07 00:12:08 +0200100 return -ENOPKG;
101
Thiago Jung Bauermannbb543e32017-06-07 22:49:10 -0300102 key = request_asymmetric_key(keyring, be32_to_cpu(hdr->keyid));
Dmitry Kasatkine0751252013-02-07 00:12:08 +0200103 if (IS_ERR(key))
104 return PTR_ERR(key);
105
106 memset(&pks, 0, sizeof(pks));
107
David Howells4e8ae722016-03-03 21:49:27 +0000108 pks.hash_algo = hash_algo_name[hdr->hash_algo];
Stefan Berger947d7052021-03-16 17:07:38 -0400109
110 pk = asymmetric_key_public_key(key);
111 pks.pkey_algo = pk->pkey_algo;
Eric Biggers926fd9f2022-01-13 11:44:38 -0800112 if (!strcmp(pk->pkey_algo, "rsa")) {
Vitaly Chikunovbe08f0c2019-04-11 18:51:22 +0300113 pks.encoding = "pkcs1";
Eric Biggers926fd9f2022-01-13 11:44:38 -0800114 } else if (!strncmp(pk->pkey_algo, "ecdsa-", 6)) {
Stefan Berger947d7052021-03-16 17:07:38 -0400115 /* edcsa-nist-p192 etc. */
116 pks.encoding = "x962";
Eric Biggers926fd9f2022-01-13 11:44:38 -0800117 } else if (!strcmp(pk->pkey_algo, "ecrdsa") ||
118 !strcmp(pk->pkey_algo, "sm2")) {
Stefan Berger947d7052021-03-16 17:07:38 -0400119 pks.encoding = "raw";
Eric Biggers926fd9f2022-01-13 11:44:38 -0800120 } else {
121 ret = -ENOPKG;
122 goto out;
123 }
Stefan Berger947d7052021-03-16 17:07:38 -0400124
Dmitry Kasatkine0751252013-02-07 00:12:08 +0200125 pks.digest = (u8 *)data;
126 pks.digest_size = datalen;
Tadeusz Strukeb5798f2016-02-02 10:08:58 -0800127 pks.s = hdr->sig;
128 pks.s_size = siglen;
129 ret = verify_signature(key, &pks);
Eric Biggers926fd9f2022-01-13 11:44:38 -0800130out:
Dmitry Kasatkine0751252013-02-07 00:12:08 +0200131 key_put(key);
132 pr_debug("%s() = %d\n", __func__, ret);
133 return ret;
134}
Mikhail Kurinnoi6eb864c2018-06-27 16:33:42 +0300135
136/**
137 * integrity_kernel_module_request - prevent crypto-pkcs1pad(rsa,*) requests
138 * @kmod_name: kernel module name
139 *
140 * We have situation, when public_key_verify_signature() in case of RSA
141 * algorithm use alg_name to store internal information in order to
142 * construct an algorithm on the fly, but crypto_larval_lookup() will try
143 * to use alg_name in order to load kernel module with same name.
144 * Since we don't have any real "crypto-pkcs1pad(rsa,*)" kernel modules,
145 * we are safe to fail such module request from crypto_larval_lookup().
146 *
147 * In this way we prevent modprobe execution during digsig verification
148 * and avoid possible deadlock if modprobe and/or it's dependencies
149 * also signed with digsig.
150 */
151int integrity_kernel_module_request(char *kmod_name)
152{
153 if (strncmp(kmod_name, "crypto-pkcs1pad(rsa,", 20) == 0)
154 return -EINVAL;
155
156 return 0;
157}