]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/dev/random/randomdev_soft.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / dev / random / randomdev_soft.c
1 /*-
2  * Copyright (c) 2000-2004 Mark R V Murray
3  * Copyright (c) 2004 Robert N. M. Watson
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer
11  *    in this position and unchanged.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/bus.h>
35 #include <sys/conf.h>
36 #include <sys/fcntl.h>
37 #include <sys/kernel.h>
38 #include <sys/kthread.h>
39 #include <sys/lock.h>
40 #include <sys/malloc.h>
41 #include <sys/mutex.h>
42 #include <sys/poll.h>
43 #include <sys/proc.h>
44 #include <sys/random.h>
45 #include <sys/selinfo.h>
46 #include <sys/sysctl.h>
47 #include <sys/uio.h>
48 #include <sys/unistd.h>
49
50 #include <machine/bus.h>
51 #include <machine/cpu.h>
52
53 #include <dev/random/randomdev.h>
54 #include <dev/random/randomdev_soft.h>
55
56 #define RANDOM_FIFO_MAX 256     /* How many events to queue up */
57
58 static void random_kthread(void *);
59 static void 
60 random_harvest_internal(u_int64_t, const void *, u_int,
61     u_int, u_int, enum esource);
62 static int random_yarrow_poll(int event,struct thread *td);
63 static int random_yarrow_block(int flag);
64 static void random_yarrow_flush_reseed(void);
65
66 struct random_systat random_yarrow = {
67         .ident = "Software, Yarrow",
68         .init = random_yarrow_init,
69         .deinit = random_yarrow_deinit,
70         .block = random_yarrow_block,
71         .read = random_yarrow_read,
72         .write = random_yarrow_write,
73         .poll = random_yarrow_poll,
74         .reseed = random_yarrow_flush_reseed,
75         .seeded = 1,
76 };
77
78 MALLOC_DEFINE(M_ENTROPY, "entropy", "Entropy harvesting buffers");
79
80 /*
81  * The harvest mutex protects the consistency of the entropy fifos and
82  * empty fifo.
83  */
84 struct mtx      harvest_mtx;
85
86 /* Lockable FIFO queue holding entropy buffers */
87 struct entropyfifo {
88         int count;
89         STAILQ_HEAD(harvestlist, harvest) head;
90 };
91
92 /* Empty entropy buffers */
93 static struct entropyfifo emptyfifo;
94
95 #define EMPTYBUFFERS    1024
96
97 /* Harvested entropy */
98 static struct entropyfifo harvestfifo[ENTROPYSOURCE];
99
100 /* <0 to end the kthread, 0 to let it run, 1 to flush the harvest queues */
101 static int random_kthread_control = 0;
102
103 static struct proc *random_kthread_proc;
104
105 /* List for the dynamic sysctls */
106 struct sysctl_ctx_list random_clist;
107
108 /* ARGSUSED */
109 static int
110 random_check_boolean(SYSCTL_HANDLER_ARGS)
111 {
112         if (oidp->oid_arg1 != NULL && *(u_int *)(oidp->oid_arg1) != 0)
113                 *(u_int *)(oidp->oid_arg1) = 1;
114         return sysctl_handle_int(oidp, oidp->oid_arg1, oidp->oid_arg2, req);
115 }
116
117 /* ARGSUSED */
118 void
119 random_yarrow_init(void)
120 {
121         int error, i;
122         struct harvest *np;
123         struct sysctl_oid *random_o, *random_sys_o, *random_sys_harvest_o;
124         enum esource e;
125
126         random_o = SYSCTL_ADD_NODE(&random_clist,
127             SYSCTL_STATIC_CHILDREN(_kern),
128             OID_AUTO, "random", CTLFLAG_RW, 0,
129             "Software Random Number Generator");
130
131         random_yarrow_init_alg(&random_clist, random_o);
132
133         random_sys_o = SYSCTL_ADD_NODE(&random_clist,
134             SYSCTL_CHILDREN(random_o),
135             OID_AUTO, "sys", CTLFLAG_RW, 0,
136             "Entropy Device Parameters");
137
138         SYSCTL_ADD_PROC(&random_clist,
139             SYSCTL_CHILDREN(random_sys_o),
140             OID_AUTO, "seeded", CTLTYPE_INT | CTLFLAG_RW,
141             &random_systat.seeded, 1, random_check_boolean, "I",
142             "Seeded State");
143
144         random_sys_harvest_o = SYSCTL_ADD_NODE(&random_clist,
145             SYSCTL_CHILDREN(random_sys_o),
146             OID_AUTO, "harvest", CTLFLAG_RW, 0,
147             "Entropy Sources");
148
149         SYSCTL_ADD_PROC(&random_clist,
150             SYSCTL_CHILDREN(random_sys_harvest_o),
151             OID_AUTO, "ethernet", CTLTYPE_INT | CTLFLAG_RW,
152             &harvest.ethernet, 1, random_check_boolean, "I",
153             "Harvest NIC entropy");
154         SYSCTL_ADD_PROC(&random_clist,
155             SYSCTL_CHILDREN(random_sys_harvest_o),
156             OID_AUTO, "point_to_point", CTLTYPE_INT | CTLFLAG_RW,
157             &harvest.point_to_point, 1, random_check_boolean, "I",
158             "Harvest serial net entropy");
159         SYSCTL_ADD_PROC(&random_clist,
160             SYSCTL_CHILDREN(random_sys_harvest_o),
161             OID_AUTO, "interrupt", CTLTYPE_INT | CTLFLAG_RW,
162             &harvest.interrupt, 1, random_check_boolean, "I",
163             "Harvest IRQ entropy");
164         SYSCTL_ADD_PROC(&random_clist,
165             SYSCTL_CHILDREN(random_sys_harvest_o),
166             OID_AUTO, "swi", CTLTYPE_INT | CTLFLAG_RW,
167             &harvest.swi, 0, random_check_boolean, "I",
168             "Harvest SWI entropy");
169
170         /* Initialise the harvest fifos */
171         STAILQ_INIT(&emptyfifo.head);
172         emptyfifo.count = 0;
173         for (i = 0; i < EMPTYBUFFERS; i++) {
174                 np = malloc(sizeof(struct harvest), M_ENTROPY, M_WAITOK);
175                 STAILQ_INSERT_TAIL(&emptyfifo.head, np, next);
176         }
177         for (e = RANDOM_START; e < ENTROPYSOURCE; e++) {
178                 STAILQ_INIT(&harvestfifo[e].head);
179                 harvestfifo[e].count = 0;
180         }
181
182         mtx_init(&harvest_mtx, "entropy harvest mutex", NULL, MTX_SPIN);
183
184         /* Start the hash/reseed thread */
185         error = kthread_create(random_kthread, NULL,
186             &random_kthread_proc, RFHIGHPID, 0, "yarrow");
187         if (error != 0)
188                 panic("Cannot create entropy maintenance thread.");
189
190         /* Register the randomness harvesting routine */
191         random_yarrow_init_harvester(random_harvest_internal,
192             random_yarrow_read);
193 }
194
195 /* ARGSUSED */
196 void
197 random_yarrow_deinit(void)
198 {
199         struct harvest *np;
200         enum esource e;
201
202         /* Deregister the randomness harvesting routine */
203         random_yarrow_deinit_harvester();
204
205         /*
206          * Command the hash/reseed thread to end and wait for it to finish
207          */
208         random_kthread_control = -1;
209         tsleep((void *)&random_kthread_control, 0, "term", 0);
210
211         /* Destroy the harvest fifos */
212         while (!STAILQ_EMPTY(&emptyfifo.head)) {
213                 np = STAILQ_FIRST(&emptyfifo.head);
214                 STAILQ_REMOVE_HEAD(&emptyfifo.head, next);
215                 free(np, M_ENTROPY);
216         }
217         for (e = RANDOM_START; e < ENTROPYSOURCE; e++) {
218                 while (!STAILQ_EMPTY(&harvestfifo[e].head)) {
219                         np = STAILQ_FIRST(&harvestfifo[e].head);
220                         STAILQ_REMOVE_HEAD(&harvestfifo[e].head, next);
221                         free(np, M_ENTROPY);
222                 }
223         }
224
225         random_yarrow_deinit_alg();
226
227         mtx_destroy(&harvest_mtx);
228
229         sysctl_ctx_free(&random_clist);
230 }
231
232 /* ARGSUSED */
233 static void
234 random_kthread(void *arg __unused)
235 {
236         STAILQ_HEAD(, harvest) local_queue;
237         struct harvest *event = NULL;
238         int active, local_count;
239         enum esource source;
240
241         STAILQ_INIT(&local_queue);
242         local_count = 0;
243
244         /* Process until told to stop */
245         for (; random_kthread_control >= 0;) {
246
247                 active = 0;
248
249                 /* Cycle through all the entropy sources */
250                 mtx_lock_spin(&harvest_mtx);
251                 for (source = RANDOM_START; source < ENTROPYSOURCE; source++) {
252                         /*
253                          * Drain entropy source records into a thread-local
254                          * queue for processing while not holding the mutex.
255                          */
256                         STAILQ_CONCAT(&local_queue, &harvestfifo[source].head);
257                         local_count += harvestfifo[source].count;
258                         harvestfifo[source].count = 0;
259                 }
260
261                 /*
262                  * Deal with events, if any, dropping the mutex as we process
263                  * each event.  Then push the events back into the empty
264                  * fifo.
265                  */
266                 if (!STAILQ_EMPTY(&local_queue)) {
267                         mtx_unlock_spin(&harvest_mtx);
268                         STAILQ_FOREACH(event, &local_queue, next)
269                                 random_process_event(event);
270                         mtx_lock_spin(&harvest_mtx);
271                         STAILQ_CONCAT(&emptyfifo.head, &local_queue);
272                         emptyfifo.count += local_count;
273                         local_count = 0;
274                 }
275                 mtx_unlock_spin(&harvest_mtx);
276
277                 KASSERT(local_count == 0, ("random_kthread: local_count %d",
278                     local_count));
279
280                 /*
281                  * If a queue flush was commanded, it has now happened,
282                  * and we can mark this by resetting the command.
283                  */
284                 if (random_kthread_control == 1)
285                         random_kthread_control = 0;
286
287                 /* Found nothing, so don't belabour the issue */
288                 if (!active)
289                         pause("-", hz / 10);
290
291         }
292
293         random_set_wakeup_exit(&random_kthread_control);
294         /* NOTREACHED */
295 }
296
297 /* Entropy harvesting routine. This is supposed to be fast; do
298  * not do anything slow in here!
299  */
300 static void
301 random_harvest_internal(u_int64_t somecounter, const void *entropy,
302     u_int count, u_int bits, u_int frac, enum esource origin)
303 {
304         struct harvest *event;
305
306         KASSERT(origin == RANDOM_START || origin == RANDOM_WRITE ||
307             origin == RANDOM_KEYBOARD || origin == RANDOM_MOUSE ||
308             origin == RANDOM_NET || origin == RANDOM_INTERRUPT ||
309             origin == RANDOM_PURE,
310             ("random_harvest_internal: origin %d invalid\n", origin));
311
312         /* Lockless read to avoid lock operations if fifo is full. */
313         if (harvestfifo[origin].count >= RANDOM_FIFO_MAX)
314                 return;
315
316         mtx_lock_spin(&harvest_mtx);
317
318         /*
319          * Don't make the harvest queues too big - help to prevent low-grade
320          * entropy swamping
321          */
322         if (harvestfifo[origin].count < RANDOM_FIFO_MAX) {
323                 event = STAILQ_FIRST(&emptyfifo.head);
324                 if (event != NULL) {
325                         /* Add the harvested data to the fifo */
326                         STAILQ_REMOVE_HEAD(&emptyfifo.head, next);
327                         harvestfifo[origin].count++;
328                         event->somecounter = somecounter;
329                         event->size = count;
330                         event->bits = bits;
331                         event->frac = frac;
332                         event->source = origin;
333
334                         /* XXXX Come back and make this dynamic! */
335                         count = MIN(count, HARVESTSIZE);
336                         memcpy(event->entropy, entropy, count);
337
338                         STAILQ_INSERT_TAIL(&harvestfifo[origin].head,
339                             event, next);
340                 }
341         }
342         mtx_unlock_spin(&harvest_mtx);
343 }
344
345 void
346 random_yarrow_write(void *buf, int count)
347 {
348         int i;
349         u_int chunk;
350
351         /*
352          * Break the input up into HARVESTSIZE chunks. The writer has too
353          * much control here, so "estimate" the the entropy as zero.
354          */
355         for (i = 0; i < count; i += HARVESTSIZE) {
356                 chunk = HARVESTSIZE;
357                 if (i + chunk >= count)
358                         chunk = (u_int)(count - i);
359                 random_harvest_internal(get_cyclecount(), (char *)buf + i,
360                     chunk, 0, 0, RANDOM_WRITE);
361         }
362 }
363
364 void
365 random_yarrow_unblock(void)
366 {
367         if (!random_systat.seeded) {
368                 random_systat.seeded = 1;
369                 selwakeuppri(&random_systat.rsel, PUSER);
370                 wakeup(&random_systat);
371         }
372 }
373
374 static int
375 random_yarrow_poll(int events, struct thread *td)
376 {
377         int revents = 0;
378         mtx_lock(&random_reseed_mtx);
379
380         if (random_systat.seeded)
381                 revents = events & (POLLIN | POLLRDNORM);
382         else
383                 selrecord(td, &random_systat.rsel);
384         
385         mtx_unlock(&random_reseed_mtx);
386         return revents;
387 }
388
389 static int
390 random_yarrow_block(int flag)
391 {
392         int error = 0;
393
394         mtx_lock(&random_reseed_mtx);
395
396         /* Blocking logic */
397         while (random_systat.seeded && !error) {
398                 if (flag & O_NONBLOCK)
399                         error = EWOULDBLOCK;
400                 else {
401                         printf("Entropy device is blocking.\n");
402                         error = msleep(&random_systat,
403                             &random_reseed_mtx,
404                             PUSER | PCATCH, "block", 0);
405                 }
406         }
407         mtx_unlock(&random_reseed_mtx);
408
409         return error;
410 }       
411
412 /* Helper routine to perform explicit reseeds */
413 static void
414 random_yarrow_flush_reseed(void)
415 {
416         /* Command a entropy queue flush and wait for it to finish */
417         random_kthread_control = 1;
418         while (random_kthread_control)
419                 pause("-", hz / 10);
420
421         random_yarrow_reseed();
422 }