]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/random/random_infra.c
random(4): Block read_random(9) on initial seeding
[FreeBSD/FreeBSD.git] / sys / dev / random / random_infra.c
1 /*-
2  * Copyright (c) 2015 Mark R V Murray
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer
10  *    in this position and unchanged.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/malloc.h>
35 #include <sys/random.h>
36 #include <sys/sysctl.h>
37
38 #if defined(RANDOM_LOADABLE)
39 #include <sys/lock.h>
40 #include <sys/sx.h>
41 #endif
42
43 #include <dev/random/randomdev.h>
44
45 /* Set up the sysctl root node for the entropy device */
46 SYSCTL_NODE(_kern, OID_AUTO, random, CTLFLAG_RW, 0, "Cryptographically Secure Random Number Generator");
47
48 MALLOC_DEFINE(M_ENTROPY, "entropy", "Entropy harvesting buffers and data structures");
49
50 struct sources_head source_list = LIST_HEAD_INITIALIZER(source_list);
51
52 #if defined(RANDOM_LOADABLE)
53 struct random_algorithm *p_random_alg_context = NULL;
54 #else /* !defined(RANDOM_LOADABLE) */
55 struct random_algorithm *p_random_alg_context = &random_alg_context;
56 #endif /* defined(RANDOM_LOADABLE) */
57
58 #if defined(RANDOM_LOADABLE)
59
60 static void
61 null_read_random(void *dummy __unused, u_int dummy2 __unused)
62 {
63         panic("%s: no random module is loaded", __func__);
64 }
65
66 struct random_readers {
67         int     (*read_random_uio)(struct uio *, bool);
68         void    (*read_random)(void *, u_int);
69 } random_reader_context = {
70         (int (*)(struct uio *, bool))nullop,
71         null_read_random,
72 };
73
74 struct sx randomdev_config_lock;
75
76 static void
77 random_infra_sysinit(void *dummy __unused)
78 {
79
80         RANDOM_CONFIG_INIT_LOCK();
81 }
82 SYSINIT(random_device_h_init, SI_SUB_RANDOM, SI_ORDER_FIRST, random_infra_sysinit, NULL);
83
84 void
85 random_infra_init(int (*p_random_read_uio)(struct uio *, bool), void (*p_random_read)(void *, u_int))
86 {
87
88         RANDOM_CONFIG_X_LOCK();
89         random_reader_context.read_random_uio = p_random_read_uio;
90         random_reader_context.read_random = p_random_read;
91         RANDOM_CONFIG_X_UNLOCK();
92 }
93
94 void
95 random_infra_uninit(void)
96 {
97
98         RANDOM_CONFIG_X_LOCK();
99         random_reader_context.read_random_uio = (int (*)(struct uio *, bool))nullop;
100         random_reader_context.read_random = null_read_random;
101         RANDOM_CONFIG_X_UNLOCK();
102 }
103
104 static void
105 random_infra_sysuninit(void *dummy __unused)
106 {
107
108         RANDOM_CONFIG_DEINIT_LOCK();
109 }
110 SYSUNINIT(random_device_h_init, SI_SUB_RANDOM, SI_ORDER_FIRST, random_infra_sysuninit, NULL);
111
112 int
113 read_random_uio(struct uio *uio, bool nonblock)
114 {
115         int retval;
116
117         RANDOM_CONFIG_S_LOCK();
118         retval = random_reader_context.read_random_uio(uio, nonblock);
119         RANDOM_CONFIG_S_UNLOCK();
120         return (retval);
121 }
122
123 void
124 read_random(void *buf, u_int len)
125 {
126
127         RANDOM_CONFIG_S_LOCK();
128         random_reader_context.read_random(buf, len);
129         RANDOM_CONFIG_S_UNLOCK();
130 }
131
132 #endif /* defined(RANDOM_LOADABLE) */