blob: 55aec161d0e1c9e73cda8fab91ca5442065162d2 [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
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
11#include <linux/err.h>
Dmitry Kasatkind9a2e5d2014-07-02 15:12:26 +030012#include <linux/ratelimit.h>
Dmitry Kasatkine0751252013-02-07 00:12:08 +020013#include <linux/key-type.h>
14#include <crypto/public_key.h>
David Howells4e8ae722016-03-03 21:49:27 +000015#include <crypto/hash_info.h>
Dmitry Kasatkine0751252013-02-07 00:12:08 +020016#include <keys/asymmetric-type.h>
Petko Manolov41c89b62015-12-02 17:47:55 +020017#include <keys/system_keyring.h>
Dmitry Kasatkine0751252013-02-07 00:12:08 +020018
19#include "integrity.h"
20
21/*
Dmitry Kasatkine0751252013-02-07 00:12:08 +020022 * Request an asymmetric key.
23 */
24static struct key *request_asymmetric_key(struct key *keyring, uint32_t keyid)
25{
26 struct key *key;
27 char name[12];
28
Dmitry Kasatkin594081e2014-10-06 17:31:58 +010029 sprintf(name, "id:%08x", keyid);
Dmitry Kasatkine0751252013-02-07 00:12:08 +020030
31 pr_debug("key search: \"%s\"\n", name);
32
Petko Manolov41c89b62015-12-02 17:47:55 +020033 key = get_ima_blacklist_keyring();
34 if (key) {
35 key_ref_t kref;
36
37 kref = keyring_search(make_key_ref(key, 1),
David Howellsdcf49db2019-06-26 21:02:32 +010038 &key_type_asymmetric, name, true);
Petko Manolov41c89b62015-12-02 17:47:55 +020039 if (!IS_ERR(kref)) {
40 pr_err("Key '%s' is in ima_blacklist_keyring\n", name);
41 return ERR_PTR(-EKEYREJECTED);
42 }
43 }
44
Dmitry Kasatkine0751252013-02-07 00:12:08 +020045 if (keyring) {
46 /* search in specific keyring */
47 key_ref_t kref;
Petko Manolov41c89b62015-12-02 17:47:55 +020048
Dmitry Kasatkine0751252013-02-07 00:12:08 +020049 kref = keyring_search(make_key_ref(keyring, 1),
David Howellsdcf49db2019-06-26 21:02:32 +010050 &key_type_asymmetric, name, true);
Dmitry Kasatkine0751252013-02-07 00:12:08 +020051 if (IS_ERR(kref))
52 key = ERR_CAST(kref);
53 else
54 key = key_ref_to_ptr(kref);
55 } else {
Linus Torvalds028db3e2019-07-10 18:43:43 -070056 key = request_key(&key_type_asymmetric, name, NULL);
Dmitry Kasatkine0751252013-02-07 00:12:08 +020057 }
58
59 if (IS_ERR(key)) {
Dmitry Kasatkind9a2e5d2014-07-02 15:12:26 +030060 pr_err_ratelimited("Request for unknown key '%s' err %ld\n",
61 name, PTR_ERR(key));
Dmitry Kasatkine0751252013-02-07 00:12:08 +020062 switch (PTR_ERR(key)) {
63 /* Hide some search errors */
64 case -EACCES:
65 case -ENOTDIR:
66 case -EAGAIN:
67 return ERR_PTR(-ENOKEY);
68 default:
69 return key;
70 }
71 }
72
73 pr_debug("%s() = 0 [%x]\n", __func__, key_serial(key));
74
75 return key;
76}
77
78int asymmetric_verify(struct key *keyring, const char *sig,
79 int siglen, const char *data, int datalen)
80{
81 struct public_key_signature pks;
82 struct signature_v2_hdr *hdr = (struct signature_v2_hdr *)sig;
83 struct key *key;
84 int ret = -ENOMEM;
85
86 if (siglen <= sizeof(*hdr))
87 return -EBADMSG;
88
89 siglen -= sizeof(*hdr);
90
Thiago Jung Bauermannbb543e32017-06-07 22:49:10 -030091 if (siglen != be16_to_cpu(hdr->sig_size))
Dmitry Kasatkine0751252013-02-07 00:12:08 +020092 return -EBADMSG;
93
David Howells4e8ae722016-03-03 21:49:27 +000094 if (hdr->hash_algo >= HASH_ALGO__LAST)
Dmitry Kasatkine0751252013-02-07 00:12:08 +020095 return -ENOPKG;
96
Thiago Jung Bauermannbb543e32017-06-07 22:49:10 -030097 key = request_asymmetric_key(keyring, be32_to_cpu(hdr->keyid));
Dmitry Kasatkine0751252013-02-07 00:12:08 +020098 if (IS_ERR(key))
99 return PTR_ERR(key);
100
101 memset(&pks, 0, sizeof(pks));
102
David Howells4e8ae722016-03-03 21:49:27 +0000103 pks.hash_algo = hash_algo_name[hdr->hash_algo];
Vitaly Chikunovbe08f0c2019-04-11 18:51:22 +0300104 if (hdr->hash_algo == HASH_ALGO_STREEBOG_256 ||
105 hdr->hash_algo == HASH_ALGO_STREEBOG_512) {
106 /* EC-RDSA and Streebog should go together. */
107 pks.pkey_algo = "ecrdsa";
108 pks.encoding = "raw";
109 } else {
110 pks.pkey_algo = "rsa";
111 pks.encoding = "pkcs1";
112 }
Dmitry Kasatkine0751252013-02-07 00:12:08 +0200113 pks.digest = (u8 *)data;
114 pks.digest_size = datalen;
Tadeusz Strukeb5798f2016-02-02 10:08:58 -0800115 pks.s = hdr->sig;
116 pks.s_size = siglen;
117 ret = verify_signature(key, &pks);
Dmitry Kasatkine0751252013-02-07 00:12:08 +0200118 key_put(key);
119 pr_debug("%s() = %d\n", __func__, ret);
120 return ret;
121}
Mikhail Kurinnoi6eb864c2018-06-27 16:33:42 +0300122
123/**
124 * integrity_kernel_module_request - prevent crypto-pkcs1pad(rsa,*) requests
125 * @kmod_name: kernel module name
126 *
127 * We have situation, when public_key_verify_signature() in case of RSA
128 * algorithm use alg_name to store internal information in order to
129 * construct an algorithm on the fly, but crypto_larval_lookup() will try
130 * to use alg_name in order to load kernel module with same name.
131 * Since we don't have any real "crypto-pkcs1pad(rsa,*)" kernel modules,
132 * we are safe to fail such module request from crypto_larval_lookup().
133 *
134 * In this way we prevent modprobe execution during digsig verification
135 * and avoid possible deadlock if modprobe and/or it's dependencies
136 * also signed with digsig.
137 */
138int integrity_kernel_module_request(char *kmod_name)
139{
140 if (strncmp(kmod_name, "crypto-pkcs1pad(rsa,", 20) == 0)
141 return -EINVAL;
142
143 return 0;
144}