drm/ast: Only warn about unsupported TX chips on Gen4 and later
[drm/drm-misc.git] / crypto / jitterentropy-testing.c
blob21c9d7c3269a221dbe87366d574b6446f4fa8b17
1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause */
2 /*
3 * Test interface for Jitter RNG.
5 * Copyright (C) 2023, Stephan Mueller <smueller@chronox.de>
6 */
8 #include <linux/debugfs.h>
9 #include <linux/module.h>
10 #include <linux/uaccess.h>
12 #include "jitterentropy.h"
14 #define JENT_TEST_RINGBUFFER_SIZE (1<<10)
15 #define JENT_TEST_RINGBUFFER_MASK (JENT_TEST_RINGBUFFER_SIZE - 1)
17 struct jent_testing {
18 u64 jent_testing_rb[JENT_TEST_RINGBUFFER_SIZE];
19 u32 rb_reader;
20 atomic_t rb_writer;
21 atomic_t jent_testing_enabled;
22 spinlock_t lock;
23 wait_queue_head_t read_wait;
26 static struct dentry *jent_raw_debugfs_root = NULL;
28 /*************************** Generic Data Handling ****************************/
31 * boot variable:
32 * 0 ==> No boot test, gathering of runtime data allowed
33 * 1 ==> Boot test enabled and ready for collecting data, gathering runtime
34 * data is disabled
35 * 2 ==> Boot test completed and disabled, gathering of runtime data is
36 * disabled
39 static void jent_testing_reset(struct jent_testing *data)
41 unsigned long flags;
43 spin_lock_irqsave(&data->lock, flags);
44 data->rb_reader = 0;
45 atomic_set(&data->rb_writer, 0);
46 spin_unlock_irqrestore(&data->lock, flags);
49 static void jent_testing_data_init(struct jent_testing *data, u32 boot)
52 * The boot time testing implies we have a running test. If the
53 * caller wants to clear it, he has to unset the boot_test flag
54 * at runtime via sysfs to enable regular runtime testing
56 if (boot)
57 return;
59 jent_testing_reset(data);
60 atomic_set(&data->jent_testing_enabled, 1);
61 pr_warn("Enabling data collection\n");
64 static void jent_testing_fini(struct jent_testing *data, u32 boot)
66 /* If we have boot data, we do not reset yet to allow data to be read */
67 if (boot)
68 return;
70 atomic_set(&data->jent_testing_enabled, 0);
71 jent_testing_reset(data);
72 pr_warn("Disabling data collection\n");
75 static bool jent_testing_store(struct jent_testing *data, u64 value,
76 u32 *boot)
78 unsigned long flags;
80 if (!atomic_read(&data->jent_testing_enabled) && (*boot != 1))
81 return false;
83 spin_lock_irqsave(&data->lock, flags);
86 * Disable entropy testing for boot time testing after ring buffer
87 * is filled.
89 if (*boot) {
90 if (((u32)atomic_read(&data->rb_writer)) >
91 JENT_TEST_RINGBUFFER_SIZE) {
92 *boot = 2;
93 pr_warn_once("One time data collection test disabled\n");
94 spin_unlock_irqrestore(&data->lock, flags);
95 return false;
98 if (atomic_read(&data->rb_writer) == 1)
99 pr_warn("One time data collection test enabled\n");
102 data->jent_testing_rb[((u32)atomic_read(&data->rb_writer)) &
103 JENT_TEST_RINGBUFFER_MASK] = value;
104 atomic_inc(&data->rb_writer);
106 spin_unlock_irqrestore(&data->lock, flags);
108 if (wq_has_sleeper(&data->read_wait))
109 wake_up_interruptible(&data->read_wait);
111 return true;
114 static bool jent_testing_have_data(struct jent_testing *data)
116 return ((((u32)atomic_read(&data->rb_writer)) &
117 JENT_TEST_RINGBUFFER_MASK) !=
118 (data->rb_reader & JENT_TEST_RINGBUFFER_MASK));
121 static int jent_testing_reader(struct jent_testing *data, u32 *boot,
122 u8 *outbuf, u32 outbuflen)
124 unsigned long flags;
125 int collected_data = 0;
127 jent_testing_data_init(data, *boot);
129 while (outbuflen) {
130 u32 writer = (u32)atomic_read(&data->rb_writer);
132 spin_lock_irqsave(&data->lock, flags);
134 /* We have no data or reached the writer. */
135 if (!writer || (writer == data->rb_reader)) {
137 spin_unlock_irqrestore(&data->lock, flags);
140 * Now we gathered all boot data, enable regular data
141 * collection.
143 if (*boot) {
144 *boot = 0;
145 goto out;
148 wait_event_interruptible(data->read_wait,
149 jent_testing_have_data(data));
150 if (signal_pending(current)) {
151 collected_data = -ERESTARTSYS;
152 goto out;
155 continue;
158 /* We copy out word-wise */
159 if (outbuflen < sizeof(u64)) {
160 spin_unlock_irqrestore(&data->lock, flags);
161 goto out;
164 memcpy(outbuf, &data->jent_testing_rb[data->rb_reader],
165 sizeof(u64));
166 data->rb_reader++;
168 spin_unlock_irqrestore(&data->lock, flags);
170 outbuf += sizeof(u64);
171 outbuflen -= sizeof(u64);
172 collected_data += sizeof(u64);
175 out:
176 jent_testing_fini(data, *boot);
177 return collected_data;
180 static int jent_testing_extract_user(struct file *file, char __user *buf,
181 size_t nbytes, loff_t *ppos,
182 int (*reader)(u8 *outbuf, u32 outbuflen))
184 u8 *tmp, *tmp_aligned;
185 int ret = 0, large_request = (nbytes > 256);
187 if (!nbytes)
188 return 0;
191 * The intention of this interface is for collecting at least
192 * 1000 samples due to the SP800-90B requirements. However, due to
193 * memory and performance constraints, it is not desirable to allocate
194 * 8000 bytes of memory. Instead, we allocate space for only 125
195 * samples, which will allow the user to collect all 1000 samples using
196 * 8 calls to this interface.
198 tmp = kmalloc(125 * sizeof(u64) + sizeof(u64), GFP_KERNEL);
199 if (!tmp)
200 return -ENOMEM;
202 tmp_aligned = PTR_ALIGN(tmp, sizeof(u64));
204 while (nbytes) {
205 int i;
207 if (large_request && need_resched()) {
208 if (signal_pending(current)) {
209 if (ret == 0)
210 ret = -ERESTARTSYS;
211 break;
213 schedule();
216 i = min_t(int, nbytes, 125 * sizeof(u64));
217 i = reader(tmp_aligned, i);
218 if (i <= 0) {
219 if (i < 0)
220 ret = i;
221 break;
223 if (copy_to_user(buf, tmp_aligned, i)) {
224 ret = -EFAULT;
225 break;
228 nbytes -= i;
229 buf += i;
230 ret += i;
233 kfree_sensitive(tmp);
235 if (ret > 0)
236 *ppos += ret;
238 return ret;
241 /************** Raw High-Resolution Timer Entropy Data Handling **************/
243 static u32 boot_raw_hires_test = 0;
244 module_param(boot_raw_hires_test, uint, 0644);
245 MODULE_PARM_DESC(boot_raw_hires_test,
246 "Enable gathering boot time high resolution timer entropy of the first Jitter RNG entropy events");
248 static struct jent_testing jent_raw_hires = {
249 .rb_reader = 0,
250 .rb_writer = ATOMIC_INIT(0),
251 .lock = __SPIN_LOCK_UNLOCKED(jent_raw_hires.lock),
252 .read_wait = __WAIT_QUEUE_HEAD_INITIALIZER(jent_raw_hires.read_wait)
255 int jent_raw_hires_entropy_store(__u64 value)
257 return jent_testing_store(&jent_raw_hires, value, &boot_raw_hires_test);
259 EXPORT_SYMBOL(jent_raw_hires_entropy_store);
261 static int jent_raw_hires_entropy_reader(u8 *outbuf, u32 outbuflen)
263 return jent_testing_reader(&jent_raw_hires, &boot_raw_hires_test,
264 outbuf, outbuflen);
267 static ssize_t jent_raw_hires_read(struct file *file, char __user *to,
268 size_t count, loff_t *ppos)
270 return jent_testing_extract_user(file, to, count, ppos,
271 jent_raw_hires_entropy_reader);
274 static const struct file_operations jent_raw_hires_fops = {
275 .owner = THIS_MODULE,
276 .read = jent_raw_hires_read,
279 /******************************* Initialization *******************************/
281 void jent_testing_init(void)
283 jent_raw_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
285 debugfs_create_file_unsafe("jent_raw_hires", 0400,
286 jent_raw_debugfs_root, NULL,
287 &jent_raw_hires_fops);
289 EXPORT_SYMBOL(jent_testing_init);
291 void jent_testing_exit(void)
293 debugfs_remove_recursive(jent_raw_debugfs_root);
295 EXPORT_SYMBOL(jent_testing_exit);