1
2
3
4
5
6
7#ifndef _LINUX_RANDOM_H
8#define _LINUX_RANDOM_H
9
10#include <linux/bug.h>
11#include <linux/kernel.h>
12#include <linux/list.h>
13#include <linux/once.h>
14
15#include <uapi/linux/random.h>
16
17struct random_ready_callback {
18 struct list_head list;
19 void (*func)(struct random_ready_callback *rdy);
20 struct module *owner;
21};
22
23extern void add_device_randomness(const void *, unsigned int);
24extern void add_bootloader_randomness(const void *, unsigned int);
25
26#if defined(LATENT_ENTROPY_PLUGIN) && !defined(__CHECKER__)
27static inline void add_latent_entropy(void)
28{
29 add_device_randomness((const void *)&latent_entropy,
30 sizeof(latent_entropy));
31}
32#else
33static inline void add_latent_entropy(void) {}
34#endif
35
36extern void add_input_randomness(unsigned int type, unsigned int code,
37 unsigned int value) __latent_entropy;
38extern void add_interrupt_randomness(int irq, int irq_flags) __latent_entropy;
39
40extern void get_random_bytes(void *buf, int nbytes);
41extern int wait_for_random_bytes(void);
42extern int __init rand_initialize(void);
43extern bool rng_is_initialized(void);
44extern int add_random_ready_callback(struct random_ready_callback *rdy);
45extern void del_random_ready_callback(struct random_ready_callback *rdy);
46extern int __must_check get_random_bytes_arch(void *buf, int nbytes);
47
48#ifndef MODULE
49extern const struct file_operations random_fops, urandom_fops;
50#endif
51
52u32 get_random_u32(void);
53u64 get_random_u64(void);
54static inline unsigned int get_random_int(void)
55{
56 return get_random_u32();
57}
58static inline unsigned long get_random_long(void)
59{
60#if BITS_PER_LONG == 64
61 return get_random_u64();
62#else
63 return get_random_u32();
64#endif
65}
66
67
68
69
70
71#ifdef CONFIG_64BIT
72# ifdef __LITTLE_ENDIAN
73# define CANARY_MASK 0xffffffffffffff00UL
74# else
75# define CANARY_MASK 0x00ffffffffffffffUL
76# endif
77#else
78# define CANARY_MASK 0xffffffffUL
79#endif
80
81static inline unsigned long get_random_canary(void)
82{
83 unsigned long val = get_random_long();
84
85 return val & CANARY_MASK;
86}
87
88
89
90static inline int get_random_bytes_wait(void *buf, int nbytes)
91{
92 int ret = wait_for_random_bytes();
93 get_random_bytes(buf, nbytes);
94 return ret;
95}
96
97#define declare_get_random_var_wait(var) \
98 static inline int get_random_ ## var ## _wait(var *out) { \
99 int ret = wait_for_random_bytes(); \
100 if (unlikely(ret)) \
101 return ret; \
102 *out = get_random_ ## var(); \
103 return 0; \
104 }
105declare_get_random_var_wait(u32)
106declare_get_random_var_wait(u64)
107declare_get_random_var_wait(int)
108declare_get_random_var_wait(long)
109#undef declare_get_random_var
110
111unsigned long randomize_page(unsigned long start, unsigned long range);
112
113u32 prandom_u32(void);
114void prandom_bytes(void *buf, size_t nbytes);
115void prandom_seed(u32 seed);
116void prandom_reseed_late(void);
117
118struct rnd_state {
119 __u32 s1, s2, s3, s4;
120};
121
122u32 prandom_u32_state(struct rnd_state *state);
123void prandom_bytes_state(struct rnd_state *state, void *buf, size_t nbytes);
124void prandom_seed_full_state(struct rnd_state __percpu *pcpu_state);
125
126#define prandom_init_once(pcpu_state) \
127 DO_ONCE(prandom_seed_full_state, (pcpu_state))
128
129
130
131
132
133
134
135
136
137
138
139
140
141static inline u32 prandom_u32_max(u32 ep_ro)
142{
143 return (u32)(((u64) prandom_u32() * ep_ro) >> 32);
144}
145
146
147
148
149static inline u32 __seed(u32 x, u32 m)
150{
151 return (x < m) ? x + m : x;
152}
153
154
155
156
157
158
159static inline void prandom_seed_state(struct rnd_state *state, u64 seed)
160{
161 u32 i = (seed >> 32) ^ (seed << 10) ^ seed;
162
163 state->s1 = __seed(i, 2U);
164 state->s2 = __seed(i, 8U);
165 state->s3 = __seed(i, 16U);
166 state->s4 = __seed(i, 128U);
167}
168
169#ifdef CONFIG_ARCH_RANDOM
170# include <asm/archrandom.h>
171#else
172static inline bool __must_check arch_get_random_long(unsigned long *v)
173{
174 return false;
175}
176static inline bool __must_check arch_get_random_int(unsigned int *v)
177{
178 return false;
179}
180static inline bool __must_check arch_get_random_seed_long(unsigned long *v)
181{
182 return false;
183}
184static inline bool __must_check arch_get_random_seed_int(unsigned int *v)
185{
186 return false;
187}
188#endif
189
190
191
192
193
194#ifndef arch_get_random_seed_long_early
195static inline bool __init arch_get_random_seed_long_early(unsigned long *v)
196{
197 WARN_ON(system_state != SYSTEM_BOOTING);
198 return arch_get_random_seed_long(v);
199}
200#endif
201
202#ifndef arch_get_random_long_early
203static inline bool __init arch_get_random_long_early(unsigned long *v)
204{
205 WARN_ON(system_state != SYSTEM_BOOTING);
206 return arch_get_random_long(v);
207}
208#endif
209
210
211static inline u32 next_pseudo_random32(u32 seed)
212{
213 return seed * 1664525 + 1013904223;
214}
215
216#endif
217