blob: 9fd5a42eea157a0f12ef9c087f7bb05d479ef381 [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/*
3 * Copyright (c) 2016, Intel Corporation
4 * Authors: Salvatore Benedetto <salvatore.benedetto@intel.com>
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01005 */
6#include <linux/kernel.h>
7#include <linux/export.h>
8#include <linux/err.h>
9#include <linux/string.h>
10#include <crypto/dh.h>
11#include <crypto/kpp.h>
12
Eric Biggers35f7d522018-07-27 15:36:10 -070013#define DH_KPP_SECRET_MIN_SIZE (sizeof(struct kpp_secret) + 4 * sizeof(int))
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010014
Eric Biggersd6e43792018-07-27 15:36:11 -070015static inline u8 *dh_pack_data(u8 *dst, u8 *end, const void *src, size_t size)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010016{
Eric Biggersd6e43792018-07-27 15:36:11 -070017 if (!dst || size > end - dst)
18 return NULL;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010019 memcpy(dst, src, size);
20 return dst + size;
21}
22
23static inline const u8 *dh_unpack_data(void *dst, const void *src, size_t size)
24{
25 memcpy(dst, src, size);
26 return src + size;
27}
28
Tudor-Dan Ambaruscb195b32017-09-29 12:21:04 +030029static inline unsigned int dh_data_size(const struct dh *p)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010030{
Stephan Muellere3fe0ae2018-06-27 08:15:31 +020031 return p->key_size + p->p_size + p->q_size + p->g_size;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010032}
33
Tudor-Dan Ambarus5b3f3a82017-09-29 12:21:05 +030034unsigned int crypto_dh_key_len(const struct dh *p)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010035{
36 return DH_KPP_SECRET_MIN_SIZE + dh_data_size(p);
37}
38EXPORT_SYMBOL_GPL(crypto_dh_key_len);
39
40int crypto_dh_encode_key(char *buf, unsigned int len, const struct dh *params)
41{
42 u8 *ptr = buf;
Eric Biggersd6e43792018-07-27 15:36:11 -070043 u8 * const end = ptr + len;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010044 struct kpp_secret secret = {
45 .type = CRYPTO_KPP_SECRET_TYPE_DH,
46 .len = len
47 };
48
Eric Biggersd6e43792018-07-27 15:36:11 -070049 if (unlikely(!len))
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010050 return -EINVAL;
51
Eric Biggersd6e43792018-07-27 15:36:11 -070052 ptr = dh_pack_data(ptr, end, &secret, sizeof(secret));
53 ptr = dh_pack_data(ptr, end, &params->key_size,
54 sizeof(params->key_size));
55 ptr = dh_pack_data(ptr, end, &params->p_size, sizeof(params->p_size));
56 ptr = dh_pack_data(ptr, end, &params->q_size, sizeof(params->q_size));
57 ptr = dh_pack_data(ptr, end, &params->g_size, sizeof(params->g_size));
58 ptr = dh_pack_data(ptr, end, params->key, params->key_size);
59 ptr = dh_pack_data(ptr, end, params->p, params->p_size);
60 ptr = dh_pack_data(ptr, end, params->q, params->q_size);
61 ptr = dh_pack_data(ptr, end, params->g, params->g_size);
62 if (ptr != end)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010063 return -EINVAL;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010064 return 0;
65}
66EXPORT_SYMBOL_GPL(crypto_dh_encode_key);
67
68int crypto_dh_decode_key(const char *buf, unsigned int len, struct dh *params)
69{
70 const u8 *ptr = buf;
71 struct kpp_secret secret;
72
73 if (unlikely(!buf || len < DH_KPP_SECRET_MIN_SIZE))
74 return -EINVAL;
75
76 ptr = dh_unpack_data(&secret, ptr, sizeof(secret));
77 if (secret.type != CRYPTO_KPP_SECRET_TYPE_DH)
78 return -EINVAL;
79
80 ptr = dh_unpack_data(&params->key_size, ptr, sizeof(params->key_size));
81 ptr = dh_unpack_data(&params->p_size, ptr, sizeof(params->p_size));
Stephan Muellere3fe0ae2018-06-27 08:15:31 +020082 ptr = dh_unpack_data(&params->q_size, ptr, sizeof(params->q_size));
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010083 ptr = dh_unpack_data(&params->g_size, ptr, sizeof(params->g_size));
84 if (secret.len != crypto_dh_key_len(params))
85 return -EINVAL;
86
Eric Biggersccd98882017-11-05 18:30:46 -080087 /*
88 * Don't permit the buffer for 'key' or 'g' to be larger than 'p', since
89 * some drivers assume otherwise.
90 */
91 if (params->key_size > params->p_size ||
Stephan Muellere3fe0ae2018-06-27 08:15:31 +020092 params->g_size > params->p_size || params->q_size > params->p_size)
Eric Biggersccd98882017-11-05 18:30:46 -080093 return -EINVAL;
94
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010095 /* Don't allocate memory. Set pointers to data within
96 * the given buffer
97 */
98 params->key = (void *)ptr;
99 params->p = (void *)(ptr + params->key_size);
Stephan Muellere3fe0ae2018-06-27 08:15:31 +0200100 params->q = (void *)(ptr + params->key_size + params->p_size);
101 params->g = (void *)(ptr + params->key_size + params->p_size +
102 params->q_size);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100103
Eric Biggers199512b2017-11-05 18:30:45 -0800104 /*
105 * Don't permit 'p' to be 0. It's not a prime number, and it's subject
106 * to corner cases such as 'mod 0' being undefined or
107 * crypto_kpp_maxsize() returning 0.
108 */
109 if (memchr_inv(params->p, 0, params->p_size) == NULL)
110 return -EINVAL;
111
Stephan Muellere3fe0ae2018-06-27 08:15:31 +0200112 /* It is permissible to not provide Q. */
113 if (params->q_size == 0)
114 params->q = NULL;
115
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100116 return 0;
117}
118EXPORT_SYMBOL_GPL(crypto_dh_decode_key);