-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathlrng_switch.c
286 lines (240 loc) · 7.54 KB
/
lrng_switch.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
// SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
/*
* LRNG DRNG switching support
*
* Copyright (C) 2022, Stephan Mueller <smueller@chronox.de>
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/lrng.h>
#include "lrng_es_aux.h"
#include "lrng_es_mgr.h"
#include "lrng_interface_dev_common.h"
#include "lrng_numa.h"
static int __maybe_unused
lrng_hash_switch(struct lrng_drng *drng_store, const void *cb, int node)
{
const struct lrng_hash_cb *new_cb = (const struct lrng_hash_cb *)cb;
const struct lrng_hash_cb *old_cb = drng_store->hash_cb;
unsigned long flags;
u32 i;
void *new_hash, *old_hash;
int ret;
if (node == -1)
return 0;
new_hash = new_cb->hash_alloc();
old_hash = drng_store->hash;
if (IS_ERR(new_hash)) {
pr_warn("could not allocate new LRNG pool hash (%ld)\n",
PTR_ERR(new_hash));
return PTR_ERR(new_hash);
}
if (new_cb->hash_digestsize(new_hash) > LRNG_MAX_DIGESTSIZE) {
pr_warn("digest size of newly requested hash too large\n");
new_cb->hash_dealloc(new_hash);
return -EINVAL;
}
write_lock_irqsave(&drng_store->hash_lock, flags);
/* Trigger the switch for each entropy source */
for_each_lrng_es(i) {
if (!lrng_es[i]->switch_hash)
continue;
ret = lrng_es[i]->switch_hash(drng_store, node, new_cb,
new_hash, old_cb);
if (ret) {
u32 j;
/* Revert all already executed operations */
for (j = 0; j < i; j++) {
if (!lrng_es[j]->switch_hash)
continue;
WARN_ON(lrng_es[j]->switch_hash(drng_store,
node, old_cb,
old_hash,
new_cb));
}
goto err;
}
}
drng_store->hash = new_hash;
drng_store->hash_cb = new_cb;
old_cb->hash_dealloc(old_hash);
pr_info("Conditioning function allocated for DRNG for NUMA node %d\n",
node);
err:
write_unlock_irqrestore(&drng_store->hash_lock, flags);
return ret;
}
static int __maybe_unused
lrng_drng_switch(struct lrng_drng *drng_store, const void *cb, int node)
{
const struct lrng_drng_cb *new_cb = (const struct lrng_drng_cb *)cb;
const struct lrng_drng_cb *old_cb = drng_store->drng_cb;
int ret;
u8 seed[LRNG_DRNG_SECURITY_STRENGTH_BYTES];
void *new_drng = new_cb->drng_alloc(LRNG_DRNG_SECURITY_STRENGTH_BYTES);
void *old_drng = drng_store->drng;
u32 current_security_strength;
bool reset_drng = !lrng_get_available();
if (IS_ERR(new_drng)) {
pr_warn("could not allocate new DRNG for NUMA node %d (%ld)\n",
node, PTR_ERR(new_drng));
return PTR_ERR(new_drng);
}
current_security_strength = lrng_security_strength();
mutex_lock(&drng_store->lock);
/*
* Pull from existing DRNG to seed new DRNG regardless of seed status
* of old DRNG -- the entropy state for the DRNG is left unchanged which
* implies that als the new DRNG is reseeded when deemed necessary. This
* seeding of the new DRNG shall only ensure that the new DRNG has the
* same entropy as the old DRNG.
*/
ret = old_cb->drng_generate(old_drng, seed, sizeof(seed));
mutex_unlock(&drng_store->lock);
if (ret < 0) {
reset_drng = true;
pr_warn("getting random data from DRNG failed for NUMA node %d (%d)\n",
node, ret);
} else {
/* seed new DRNG with data */
ret = new_cb->drng_seed(new_drng, seed, ret);
memzero_explicit(seed, sizeof(seed));
if (ret < 0) {
reset_drng = true;
pr_warn("seeding of new DRNG failed for NUMA node %d (%d)\n",
node, ret);
} else {
pr_debug("seeded new DRNG of NUMA node %d instance from old DRNG instance\n",
node);
}
}
mutex_lock(&drng_store->lock);
if (reset_drng)
lrng_drng_reset(drng_store);
drng_store->drng = new_drng;
drng_store->drng_cb = new_cb;
/* Reseed if previous LRNG security strength was insufficient */
if (current_security_strength < lrng_security_strength())
drng_store->force_reseed = true;
/* Force oversampling seeding as we initialize DRNG */
if (IS_ENABLED(CONFIG_CRYPTO_FIPS))
lrng_unset_fully_seeded(drng_store);
if (lrng_state_min_seeded())
lrng_set_entropy_thresh(lrng_get_seed_entropy_osr(
drng_store->fully_seeded));
old_cb->drng_dealloc(old_drng);
pr_info("DRNG of NUMA node %d switched\n", node);
mutex_unlock(&drng_store->lock);
return ret;
}
/*
* Switch the existing DRNG and hash instances with new using the new crypto
* callbacks. The caller must hold the lrng_crypto_cb_update lock.
*/
static int lrng_switch(const void *cb,
int (*switcher)(struct lrng_drng *drng_store,
const void *cb, int node))
{
struct lrng_drng **lrng_drng = lrng_drng_instances();
struct lrng_drng *lrng_drng_init = lrng_drng_init_instance();
struct lrng_drng *lrng_drng_pr = lrng_drng_pr_instance();
int ret = 0;
if (lrng_drng) {
u32 node;
for_each_online_node(node) {
if (lrng_drng[node])
ret |= switcher(lrng_drng[node], cb, node);
}
} else {
ret |= switcher(lrng_drng_init, cb, 0);
}
ret |= switcher(lrng_drng_pr, cb, -1);
return ret;
}
/*
* lrng_set_drng_cb - Register new cryptographic callback functions for DRNG
* The registering implies that all old DRNG states are replaced with new
* DRNG states.
*
* drng_cb: Callback functions to be registered -- if NULL, use the default
* callbacks defined at compile time.
*
* Return:
* * 0 on success
* * < 0 on error
*/
int lrng_set_drng_cb(const struct lrng_drng_cb *drng_cb)
{
struct lrng_drng *lrng_drng_init = lrng_drng_init_instance();
int ret;
if (!IS_ENABLED(CONFIG_LRNG_SWITCH_DRNG))
return -EOPNOTSUPP;
if (!drng_cb)
drng_cb = lrng_default_drng_cb;
mutex_lock(&lrng_crypto_cb_update);
/*
* If a callback other than the default is set, allow it only to be
* set back to the default callback. This ensures that multiple
* different callbacks can be registered at the same time. If a
* callback different from the current callback and the default
* callback shall be set, the current callback must be deregistered
* (e.g. the kernel module providing it must be unloaded) and the new
* implementation can be registered.
*/
if ((drng_cb != lrng_default_drng_cb) &&
(lrng_drng_init->drng_cb != lrng_default_drng_cb)) {
pr_warn("disallow setting new DRNG callbacks, unload the old callbacks first!\n");
ret = -EINVAL;
goto out;
}
ret = lrng_switch(drng_cb, lrng_drng_switch);
/* The switch may imply new entropy due to larger DRNG sec strength. */
if (!ret)
lrng_es_add_entropy();
out:
mutex_unlock(&lrng_crypto_cb_update);
return ret;
}
EXPORT_SYMBOL(lrng_set_drng_cb);
/*
* lrng_set_hash_cb - Register new cryptographic callback functions for hash
* The registering implies that all old hash states are replaced with new
* hash states.
*
* @hash_cb: Callback functions to be registered -- if NULL, use the default
* callbacks defined at compile time.
*
* Return:
* * 0 on success
* * < 0 on error
*/
int lrng_set_hash_cb(const struct lrng_hash_cb *hash_cb)
{
struct lrng_drng *lrng_drng_init = lrng_drng_init_instance();
int ret;
if (!IS_ENABLED(CONFIG_LRNG_SWITCH_HASH))
return -EOPNOTSUPP;
if (!hash_cb)
hash_cb = lrng_default_hash_cb;
mutex_lock(&lrng_crypto_cb_update);
/* Comment from lrng_set_drng_cb applies. */
if ((hash_cb != lrng_default_hash_cb) &&
(lrng_drng_init->hash_cb != lrng_default_hash_cb)) {
pr_warn("disallow setting new hash callbacks, unload the old callbacks first!\n");
ret = -EINVAL;
goto out;
}
ret = lrng_switch(hash_cb, lrng_hash_switch);
/*
* The switch may imply new entropy due to larger digest size. But
* it may also offer more room in the aux pool which means we ping
* any waiting entropy providers.
*/
if (!ret) {
lrng_es_add_entropy();
lrng_writer_wakeup();
}
out:
mutex_unlock(&lrng_crypto_cb_update);
return ret;
}
EXPORT_SYMBOL(lrng_set_hash_cb);