a5f2f648c734280d2e5e71a21904a38e159ca9a0
[openwrt/openwrt.git] / target / linux / generic / files / crypto / ocf / random.c
1 /*
2 * A system independant way of adding entropy to the kernels pool
3 * this way the drivers can focus on the real work and we can take
4 * care of pushing it to the appropriate place in the kernel.
5 *
6 * This should be fast and callable from timers/interrupts
7 *
8 * Written by David McCullough <david_mccullough@mcafee.com>
9 * Copyright (C) 2006-2010 David McCullough
10 * Copyright (C) 2004-2005 Intel Corporation.
11 *
12 * LICENSE TERMS
13 *
14 * The free distribution and use of this software in both source and binary
15 * form is allowed (with or without changes) provided that:
16 *
17 * 1. distributions of this source code include the above copyright
18 * notice, this list of conditions and the following disclaimer;
19 *
20 * 2. distributions in binary form include the above copyright
21 * notice, this list of conditions and the following disclaimer
22 * in the documentation and/or other associated materials;
23 *
24 * 3. the copyright holder's name is not used to endorse products
25 * built using this software without specific written permission.
26 *
27 * ALTERNATIVELY, provided that this notice is retained in full, this product
28 * may be distributed under the terms of the GNU General Public License (GPL),
29 * in which case the provisions of the GPL apply INSTEAD OF those given above.
30 *
31 * DISCLAIMER
32 *
33 * This software is provided 'as is' with no explicit or implied warranties
34 * in respect of its properties, including, but not limited to, correctness
35 * and/or fitness for purpose.
36 */
37
38 #include <linux/version.h>
39 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38) && !defined(AUTOCONF_INCLUDED)
40 #include <linux/config.h>
41 #endif
42 #include <linux/module.h>
43 #include <linux/init.h>
44 #include <linux/list.h>
45 #include <linux/slab.h>
46 #include <linux/wait.h>
47 #include <linux/sched.h>
48 #include <linux/spinlock.h>
49 #include <linux/unistd.h>
50 #include <linux/poll.h>
51 #include <linux/random.h>
52 #include <cryptodev.h>
53
54 #ifdef CONFIG_OCF_FIPS
55 #include "rndtest.h"
56 #endif
57
58 #ifndef HAS_RANDOM_INPUT_WAIT
59 #error "Please do not enable OCF_RANDOMHARVEST unless you have applied patches"
60 #endif
61
62 /*
63 * a hack to access the debug levels from the crypto driver
64 */
65 extern int crypto_debug;
66 #define debug crypto_debug
67
68 /*
69 * a list of all registered random providers
70 */
71 static LIST_HEAD(random_ops);
72 static int started = 0;
73 static int initted = 0;
74
75 struct random_op {
76 struct list_head random_list;
77 u_int32_t driverid;
78 int (*read_random)(void *arg, u_int32_t *buf, int len);
79 void *arg;
80 };
81
82 static int random_proc(void *arg);
83
84 static pid_t randomproc = (pid_t) -1;
85 static spinlock_t random_lock;
86
87 /*
88 * just init the spin locks
89 */
90 static int
91 crypto_random_init(void)
92 {
93 spin_lock_init(&random_lock);
94 initted = 1;
95 return(0);
96 }
97
98 /*
99 * Add the given random reader to our list (if not present)
100 * and start the thread (if not already started)
101 *
102 * we have to assume that driver id is ok for now
103 */
104 int
105 crypto_rregister(
106 u_int32_t driverid,
107 int (*read_random)(void *arg, u_int32_t *buf, int len),
108 void *arg)
109 {
110 unsigned long flags;
111 int ret = 0;
112 struct random_op *rops, *tmp;
113
114 dprintk("%s,%d: %s(0x%x, %p, %p)\n", __FILE__, __LINE__,
115 __FUNCTION__, driverid, read_random, arg);
116
117 if (!initted)
118 crypto_random_init();
119
120 #if 0
121 struct cryptocap *cap;
122
123 cap = crypto_checkdriver(driverid);
124 if (!cap)
125 return EINVAL;
126 #endif
127
128 list_for_each_entry_safe(rops, tmp, &random_ops, random_list) {
129 if (rops->driverid == driverid && rops->read_random == read_random)
130 return EEXIST;
131 }
132
133 rops = (struct random_op *) kmalloc(sizeof(*rops), GFP_KERNEL);
134 if (!rops)
135 return ENOMEM;
136
137 rops->driverid = driverid;
138 rops->read_random = read_random;
139 rops->arg = arg;
140
141 spin_lock_irqsave(&random_lock, flags);
142 list_add_tail(&rops->random_list, &random_ops);
143 if (!started) {
144 randomproc = kernel_thread(random_proc, NULL, CLONE_FS|CLONE_FILES);
145 if (randomproc < 0) {
146 ret = randomproc;
147 printk("crypto: crypto_rregister cannot start random thread; "
148 "error %d", ret);
149 } else
150 started = 1;
151 }
152 spin_unlock_irqrestore(&random_lock, flags);
153
154 return ret;
155 }
156 EXPORT_SYMBOL(crypto_rregister);
157
158 int
159 crypto_runregister_all(u_int32_t driverid)
160 {
161 struct random_op *rops, *tmp;
162 unsigned long flags;
163
164 dprintk("%s,%d: %s(0x%x)\n", __FILE__, __LINE__, __FUNCTION__, driverid);
165
166 list_for_each_entry_safe(rops, tmp, &random_ops, random_list) {
167 if (rops->driverid == driverid) {
168 list_del(&rops->random_list);
169 kfree(rops);
170 }
171 }
172
173 spin_lock_irqsave(&random_lock, flags);
174 if (list_empty(&random_ops) && started)
175 kill_proc(randomproc, SIGKILL, 1);
176 spin_unlock_irqrestore(&random_lock, flags);
177 return(0);
178 }
179 EXPORT_SYMBOL(crypto_runregister_all);
180
181 /*
182 * while we can add entropy to random.c continue to read random data from
183 * the drivers and push it to random.
184 */
185 static int
186 random_proc(void *arg)
187 {
188 int n;
189 int wantcnt;
190 int bufcnt = 0;
191 int retval = 0;
192 int *buf = NULL;
193
194 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
195 daemonize();
196 spin_lock_irq(&current->sigmask_lock);
197 sigemptyset(&current->blocked);
198 recalc_sigpending(current);
199 spin_unlock_irq(&current->sigmask_lock);
200 sprintf(current->comm, "ocf-random");
201 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
202 recalc_sigpending();
203 sprintf(current->comm, "ocf-random");
204 #else
205 daemonize("ocf-random");
206 allow_signal(SIGKILL);
207 #endif
208
209 (void) get_fs();
210 set_fs(get_ds());
211
212 #ifdef CONFIG_OCF_FIPS
213 #define NUM_INT (RNDTEST_NBYTES/sizeof(int))
214 #else
215 #define NUM_INT 32
216 #endif
217
218 /*
219 * some devices can transferr their RNG data direct into memory,
220 * so make sure it is device friendly
221 */
222 buf = kmalloc(NUM_INT * sizeof(int), GFP_DMA);
223 if (NULL == buf) {
224 printk("crypto: RNG could not allocate memory\n");
225 retval = -ENOMEM;
226 goto bad_alloc;
227 }
228
229 wantcnt = NUM_INT; /* start by adding some entropy */
230
231 /*
232 * its possible due to errors or driver removal that we no longer
233 * have anything to do, if so exit or we will consume all the CPU
234 * doing nothing
235 */
236 while (!list_empty(&random_ops)) {
237 struct random_op *rops, *tmp;
238
239 #ifdef CONFIG_OCF_FIPS
240 if (wantcnt)
241 wantcnt = NUM_INT; /* FIPs mode can do 20000 bits or none */
242 #endif
243
244 /* see if we can get enough entropy to make the world
245 * a better place.
246 */
247 while (bufcnt < wantcnt && bufcnt < NUM_INT) {
248 list_for_each_entry_safe(rops, tmp, &random_ops, random_list) {
249
250 n = (*rops->read_random)(rops->arg, &buf[bufcnt],
251 NUM_INT - bufcnt);
252
253 /* on failure remove the random number generator */
254 if (n == -1) {
255 list_del(&rops->random_list);
256 printk("crypto: RNG (driverid=0x%x) failed, disabling\n",
257 rops->driverid);
258 kfree(rops);
259 } else if (n > 0)
260 bufcnt += n;
261 }
262 /* give up CPU for a bit, just in case as this is a loop */
263 schedule();
264 }
265
266
267 #ifdef CONFIG_OCF_FIPS
268 if (bufcnt > 0 && rndtest_buf((unsigned char *) &buf[0])) {
269 dprintk("crypto: buffer had fips errors, discarding\n");
270 bufcnt = 0;
271 }
272 #endif
273
274 /*
275 * if we have a certified buffer, we can send some data
276 * to /dev/random and move along
277 */
278 if (bufcnt > 0) {
279 /* add what we have */
280 random_input_words(buf, bufcnt, bufcnt*sizeof(int)*8);
281 bufcnt = 0;
282 }
283
284 /* give up CPU for a bit so we don't hog while filling */
285 schedule();
286
287 /* wait for needing more */
288 wantcnt = random_input_wait();
289
290 if (wantcnt <= 0)
291 wantcnt = 0; /* try to get some info again */
292 else
293 /* round up to one word or we can loop forever */
294 wantcnt = (wantcnt + (sizeof(int)*8)) / (sizeof(int)*8);
295 if (wantcnt > NUM_INT) {
296 wantcnt = NUM_INT;
297 }
298
299 if (signal_pending(current)) {
300 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
301 spin_lock_irq(&current->sigmask_lock);
302 #endif
303 flush_signals(current);
304 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
305 spin_unlock_irq(&current->sigmask_lock);
306 #endif
307 }
308 }
309
310 kfree(buf);
311
312 bad_alloc:
313 spin_lock_irq(&random_lock);
314 randomproc = (pid_t) -1;
315 started = 0;
316 spin_unlock_irq(&random_lock);
317
318 return retval;
319 }
320