]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/random.h
random(4): Block read_random(9) on initial seeding
[FreeBSD/FreeBSD.git] / sys / sys / random.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2000-2015, 2017 Mark R. V. Murray
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer
12  *    in this position and unchanged.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 #ifndef _SYS_RANDOM_H_
32 #define _SYS_RANDOM_H_
33
34 #include <sys/types.h>
35
36 #ifdef _KERNEL
37
38 struct uio;
39
40 #if defined(DEV_RANDOM)
41 void read_random(void *, u_int);
42 int read_random_uio(struct uio *, bool);
43 #else
44 static __inline int
45 read_random_uio(void *a __unused, u_int b __unused)
46 {
47         return (0);
48 }
49 static __inline void
50 read_random(void *a __unused, u_int b __unused)
51 {
52 }
53 #endif
54
55 /*
56  * Note: if you add or remove members of random_entropy_source, remember to
57  * also update the strings in the static array random_source_descr[] in
58  * random_harvestq.c.
59  */
60 enum random_entropy_source {
61         RANDOM_START = 0,
62         RANDOM_CACHED = 0,
63         /* Environmental sources */
64         RANDOM_ATTACH,
65         RANDOM_KEYBOARD,
66         RANDOM_MOUSE,
67         RANDOM_NET_TUN,
68         RANDOM_NET_ETHER,
69         RANDOM_NET_NG,
70         RANDOM_INTERRUPT,
71         RANDOM_SWI,
72         RANDOM_FS_ATIME,
73         RANDOM_UMA,     /* Special!! UMA/SLAB Allocator */
74         RANDOM_ENVIRONMENTAL_END = RANDOM_UMA,
75         /* Fast hardware random-number sources from here on. */
76         RANDOM_PURE_START,
77         RANDOM_PURE_OCTEON = RANDOM_PURE_START,
78         RANDOM_PURE_SAFE,
79         RANDOM_PURE_GLXSB,
80         RANDOM_PURE_UBSEC,
81         RANDOM_PURE_HIFN,
82         RANDOM_PURE_RDRAND,
83         RANDOM_PURE_NEHEMIAH,
84         RANDOM_PURE_RNDTEST,
85         RANDOM_PURE_VIRTIO,
86         RANDOM_PURE_BROADCOM,
87         RANDOM_PURE_CCP,
88         RANDOM_PURE_DARN,
89         RANDOM_PURE_TPM,
90         ENTROPYSOURCE
91 };
92 _Static_assert(ENTROPYSOURCE <= 32,
93     "hardcoded assumption that values fit in a typical word-sized bitset");
94
95 #define RANDOM_LEGACY_BOOT_ENTROPY_MODULE       "/boot/entropy"
96 #define RANDOM_CACHED_BOOT_ENTROPY_MODULE       "boot_entropy_cache"
97
98 #if defined(DEV_RANDOM)
99 extern u_int hc_source_mask;
100 void random_harvest_queue_(const void *, u_int, enum random_entropy_source);
101 void random_harvest_fast_(const void *, u_int);
102 void random_harvest_direct_(const void *, u_int, enum random_entropy_source);
103
104 static __inline void
105 random_harvest_queue(const void *entropy, u_int size, enum random_entropy_source origin)
106 {
107
108         if (hc_source_mask & (1 << origin))
109                 random_harvest_queue_(entropy, size, origin);
110 }
111
112 static __inline void
113 random_harvest_fast(const void *entropy, u_int size, enum random_entropy_source origin)
114 {
115
116         if (hc_source_mask & (1 << origin))
117                 random_harvest_fast_(entropy, size);
118 }
119
120 static __inline void
121 random_harvest_direct(const void *entropy, u_int size, enum random_entropy_source origin)
122 {
123
124         if (hc_source_mask & (1 << origin))
125                 random_harvest_direct_(entropy, size, origin);
126 }
127
128 void random_harvest_register_source(enum random_entropy_source);
129 void random_harvest_deregister_source(enum random_entropy_source);
130 #else
131 #define random_harvest_queue(a, b, c) do {} while (0)
132 #define random_harvest_fast(a, b, c) do {} while (0)
133 #define random_harvest_direct(a, b, c) do {} while (0)
134 #define random_harvest_register_source(a) do {} while (0)
135 #define random_harvest_deregister_source(a) do {} while (0)
136 #endif
137
138 #if defined(RANDOM_ENABLE_UMA)
139 #define random_harvest_fast_uma(a, b, c)        random_harvest_fast(a, b, c)
140 #else /* !defined(RANDOM_ENABLE_UMA) */
141 #define random_harvest_fast_uma(a, b, c)        do {} while (0)
142 #endif /* defined(RANDOM_ENABLE_UMA) */
143
144 #if defined(RANDOM_ENABLE_ETHER)
145 #define random_harvest_queue_ether(a, b)        random_harvest_queue(a, b, RANDOM_NET_ETHER)
146 #else /* !defined(RANDOM_ENABLE_ETHER) */
147 #define random_harvest_queue_ether(a, b)        do {} while (0)
148 #endif /* defined(RANDOM_ENABLE_ETHER) */
149
150
151 #endif /* _KERNEL */
152
153 #define GRND_NONBLOCK   0x1
154 #define GRND_RANDOM     0x2
155
156 __BEGIN_DECLS
157 ssize_t getrandom(void *buf, size_t buflen, unsigned int flags);
158 __END_DECLS
159
160 #endif /* _SYS_RANDOM_H_ */