blob: f84fd50ec79b49ac570413c627c35d9f0f9bd664 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002/* Diffie-Hellman Key Agreement Method [RFC2631]
3 *
4 * Copyright (c) 2016, Intel Corporation
5 * Authors: Salvatore Benedetto <salvatore.benedetto@intel.com>
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01006 */
7
8#include <linux/module.h>
9#include <crypto/internal/kpp.h>
10#include <crypto/kpp.h>
11#include <crypto/dh.h>
Stephan Müller90fa9ae2020-07-20 19:08:32 +020012#include <linux/fips.h>
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010013#include <linux/mpi.h>
14
15struct dh_ctx {
Stephan Muellere3fe0ae2018-06-27 08:15:31 +020016 MPI p; /* Value is guaranteed to be set. */
17 MPI q; /* Value is optional. */
18 MPI g; /* Value is guaranteed to be set. */
19 MPI xa; /* Value is guaranteed to be set. */
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010020};
21
Eric Biggers12d41a02017-11-05 18:30:44 -080022static void dh_clear_ctx(struct dh_ctx *ctx)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010023{
24 mpi_free(ctx->p);
Stephan Muellere3fe0ae2018-06-27 08:15:31 +020025 mpi_free(ctx->q);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010026 mpi_free(ctx->g);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010027 mpi_free(ctx->xa);
Eric Biggers12d41a02017-11-05 18:30:44 -080028 memset(ctx, 0, sizeof(*ctx));
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010029}
30
31/*
32 * If base is g we compute the public key
33 * ya = g^xa mod p; [RFC2631 sec 2.1.1]
34 * else if base if the counterpart public key we compute the shared secret
35 * ZZ = yb^xa mod p; [RFC2631 sec 2.1.1]
36 */
37static int _compute_val(const struct dh_ctx *ctx, MPI base, MPI val)
38{
39 /* val = base^xa mod p */
40 return mpi_powm(val, base, ctx->xa, ctx->p);
41}
42
43static inline struct dh_ctx *dh_get_ctx(struct crypto_kpp *tfm)
44{
45 return kpp_tfm_ctx(tfm);
46}
47
48static int dh_check_params_length(unsigned int p_len)
49{
50 return (p_len < 1536) ? -EINVAL : 0;
51}
52
53static int dh_set_params(struct dh_ctx *ctx, struct dh *params)
54{
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010055 if (dh_check_params_length(params->p_size << 3))
56 return -EINVAL;
57
58 ctx->p = mpi_read_raw_data(params->p, params->p_size);
59 if (!ctx->p)
60 return -EINVAL;
61
Stephan Muellere3fe0ae2018-06-27 08:15:31 +020062 if (params->q && params->q_size) {
63 ctx->q = mpi_read_raw_data(params->q, params->q_size);
64 if (!ctx->q)
65 return -EINVAL;
66 }
67
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010068 ctx->g = mpi_read_raw_data(params->g, params->g_size);
Eric Biggers12d41a02017-11-05 18:30:44 -080069 if (!ctx->g)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010070 return -EINVAL;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010071
72 return 0;
73}
74
Eric Biggers5527dfb2017-02-24 15:46:58 -080075static int dh_set_secret(struct crypto_kpp *tfm, const void *buf,
76 unsigned int len)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010077{
78 struct dh_ctx *ctx = dh_get_ctx(tfm);
79 struct dh params;
80
Tudor-Dan Ambarusee34e262017-05-25 10:18:07 +030081 /* Free the old MPI key if any */
Eric Biggers12d41a02017-11-05 18:30:44 -080082 dh_clear_ctx(ctx);
Tudor-Dan Ambarusee34e262017-05-25 10:18:07 +030083
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010084 if (crypto_dh_decode_key(buf, len, &params) < 0)
Eric Biggers12d41a02017-11-05 18:30:44 -080085 goto err_clear_ctx;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010086
87 if (dh_set_params(ctx, &params) < 0)
Eric Biggers12d41a02017-11-05 18:30:44 -080088 goto err_clear_ctx;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010089
90 ctx->xa = mpi_read_raw_data(params.key, params.key_size);
Eric Biggers12d41a02017-11-05 18:30:44 -080091 if (!ctx->xa)
92 goto err_clear_ctx;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010093
94 return 0;
Eric Biggers12d41a02017-11-05 18:30:44 -080095
96err_clear_ctx:
97 dh_clear_ctx(ctx);
98 return -EINVAL;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010099}
100
Stephan Muellere3fe0ae2018-06-27 08:15:31 +0200101/*
102 * SP800-56A public key verification:
103 *
104 * * If Q is provided as part of the domain paramenters, a full validation
105 * according to SP800-56A section 5.6.2.3.1 is performed.
106 *
107 * * If Q is not provided, a partial validation according to SP800-56A section
108 * 5.6.2.3.2 is performed.
109 */
110static int dh_is_pubkey_valid(struct dh_ctx *ctx, MPI y)
111{
112 if (unlikely(!ctx->p))
113 return -EINVAL;
114
115 /*
116 * Step 1: Verify that 2 <= y <= p - 2.
117 *
118 * The upper limit check is actually y < p instead of y < p - 1
119 * as the mpi_sub_ui function is yet missing.
120 */
121 if (mpi_cmp_ui(y, 1) < 1 || mpi_cmp(y, ctx->p) >= 0)
122 return -EINVAL;
123
124 /* Step 2: Verify that 1 = y^q mod p */
125 if (ctx->q) {
126 MPI val = mpi_alloc(0);
127 int ret;
128
129 if (!val)
130 return -ENOMEM;
131
132 ret = mpi_powm(val, y, ctx->q, ctx->p);
133
134 if (ret) {
135 mpi_free(val);
136 return ret;
137 }
138
139 ret = mpi_cmp_ui(val, 1);
140
141 mpi_free(val);
142
143 if (ret != 0)
144 return -EINVAL;
145 }
146
147 return 0;
148}
149
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100150static int dh_compute_value(struct kpp_request *req)
151{
152 struct crypto_kpp *tfm = crypto_kpp_reqtfm(req);
153 struct dh_ctx *ctx = dh_get_ctx(tfm);
154 MPI base, val = mpi_alloc(0);
155 int ret = 0;
156 int sign;
157
158 if (!val)
159 return -ENOMEM;
160
161 if (unlikely(!ctx->xa)) {
162 ret = -EINVAL;
163 goto err_free_val;
164 }
165
166 if (req->src) {
167 base = mpi_read_raw_from_sgl(req->src, req->src_len);
168 if (!base) {
Mat Martineau8edda7d2016-11-08 15:48:22 -0800169 ret = -EINVAL;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100170 goto err_free_val;
171 }
Stephan Muellere3fe0ae2018-06-27 08:15:31 +0200172 ret = dh_is_pubkey_valid(ctx, base);
173 if (ret)
Gustavo A. R. Silva3fd80932018-07-10 09:22:52 -0500174 goto err_free_base;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100175 } else {
176 base = ctx->g;
177 }
178
179 ret = _compute_val(ctx, base, val);
180 if (ret)
181 goto err_free_base;
182
Stephan Müller90fa9ae2020-07-20 19:08:32 +0200183 /* SP800-56A rev3 5.7.1.1 check: Validation of shared secret */
184 if (fips_enabled && req->src) {
185 MPI pone;
186
187 /* z <= 1 */
188 if (mpi_cmp_ui(val, 1) < 1) {
189 ret = -EBADMSG;
190 goto err_free_base;
191 }
192
193 /* z == p - 1 */
194 pone = mpi_alloc(0);
195
196 if (!pone) {
197 ret = -ENOMEM;
198 goto err_free_base;
199 }
200
201 ret = mpi_sub_ui(pone, ctx->p, 1);
202 if (!ret && !mpi_cmp(pone, val))
203 ret = -EBADMSG;
204
205 mpi_free(pone);
206
207 if (ret)
208 goto err_free_base;
209 }
210
Herbert Xu9b45b7b2016-06-29 19:32:21 +0800211 ret = mpi_write_to_sgl(val, req->dst, req->dst_len, &sign);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100212 if (ret)
213 goto err_free_base;
214
215 if (sign < 0)
216 ret = -EBADMSG;
217err_free_base:
218 if (req->src)
219 mpi_free(base);
220err_free_val:
221 mpi_free(val);
222 return ret;
223}
224
Tudor-Dan Ambarus7f691052017-05-25 10:18:09 +0300225static unsigned int dh_max_size(struct crypto_kpp *tfm)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100226{
227 struct dh_ctx *ctx = dh_get_ctx(tfm);
228
229 return mpi_get_size(ctx->p);
230}
231
232static void dh_exit_tfm(struct crypto_kpp *tfm)
233{
234 struct dh_ctx *ctx = dh_get_ctx(tfm);
235
Eric Biggers12d41a02017-11-05 18:30:44 -0800236 dh_clear_ctx(ctx);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100237}
238
239static struct kpp_alg dh = {
240 .set_secret = dh_set_secret,
241 .generate_public_key = dh_compute_value,
242 .compute_shared_secret = dh_compute_value,
243 .max_size = dh_max_size,
244 .exit = dh_exit_tfm,
245 .base = {
246 .cra_name = "dh",
247 .cra_driver_name = "dh-generic",
248 .cra_priority = 100,
249 .cra_module = THIS_MODULE,
250 .cra_ctxsize = sizeof(struct dh_ctx),
251 },
252};
253
254static int dh_init(void)
255{
256 return crypto_register_kpp(&dh);
257}
258
259static void dh_exit(void)
260{
261 crypto_unregister_kpp(&dh);
262}
263
Eric Biggersc4741b22019-04-11 21:57:42 -0700264subsys_initcall(dh_init);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100265module_exit(dh_exit);
266MODULE_ALIAS_CRYPTO("dh");
267MODULE_LICENSE("GPL");
268MODULE_DESCRIPTION("DH generic algorithm");