d4abda9e23487274104b188f442a42ca04c59840
[platform/kernel/linux-rpi.git] / include / linux / random.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #ifndef _LINUX_RANDOM_H
4 #define _LINUX_RANDOM_H
5
6 #include <linux/bug.h>
7 #include <linux/kernel.h>
8 #include <linux/list.h>
9 #include <linux/once.h>
10
11 #include <uapi/linux/random.h>
12
13 struct notifier_block;
14
15 extern void add_device_randomness(const void *, size_t);
16 extern void add_bootloader_randomness(const void *, size_t);
17
18 #if defined(LATENT_ENTROPY_PLUGIN) && !defined(__CHECKER__)
19 static inline void add_latent_entropy(void)
20 {
21         add_device_randomness((const void *)&latent_entropy,
22                               sizeof(latent_entropy));
23 }
24 #else
25 static inline void add_latent_entropy(void) {}
26 #endif
27
28 extern void add_input_randomness(unsigned int type, unsigned int code,
29                                  unsigned int value) __latent_entropy;
30 extern void add_interrupt_randomness(int irq) __latent_entropy;
31 extern void add_hwgenerator_randomness(const void *buffer, size_t count,
32                                        size_t entropy);
33
34 extern void get_random_bytes(void *buf, size_t nbytes);
35 extern int wait_for_random_bytes(void);
36 extern int __init rand_initialize(void);
37 extern bool rng_is_initialized(void);
38 extern int register_random_ready_notifier(struct notifier_block *nb);
39 extern int unregister_random_ready_notifier(struct notifier_block *nb);
40 extern size_t __must_check get_random_bytes_arch(void *buf, size_t nbytes);
41
42 #ifndef MODULE
43 extern const struct file_operations random_fops, urandom_fops;
44 #endif
45
46 u32 get_random_u32(void);
47 u64 get_random_u64(void);
48 static inline unsigned int get_random_int(void)
49 {
50         return get_random_u32();
51 }
52 static inline unsigned long get_random_long(void)
53 {
54 #if BITS_PER_LONG == 64
55         return get_random_u64();
56 #else
57         return get_random_u32();
58 #endif
59 }
60
61 /*
62  * On 64-bit architectures, protect against non-terminated C string overflows
63  * by zeroing out the first byte of the canary; this leaves 56 bits of entropy.
64  */
65 #ifdef CONFIG_64BIT
66 # ifdef __LITTLE_ENDIAN
67 #  define CANARY_MASK 0xffffffffffffff00UL
68 # else /* big endian, 64 bits: */
69 #  define CANARY_MASK 0x00ffffffffffffffUL
70 # endif
71 #else /* 32 bits: */
72 # define CANARY_MASK 0xffffffffUL
73 #endif
74
75 static inline unsigned long get_random_canary(void)
76 {
77         unsigned long val = get_random_long();
78
79         return val & CANARY_MASK;
80 }
81
82 /* Calls wait_for_random_bytes() and then calls get_random_bytes(buf, nbytes).
83  * Returns the result of the call to wait_for_random_bytes. */
84 static inline int get_random_bytes_wait(void *buf, size_t nbytes)
85 {
86         int ret = wait_for_random_bytes();
87         get_random_bytes(buf, nbytes);
88         return ret;
89 }
90
91 #define declare_get_random_var_wait(var) \
92         static inline int get_random_ ## var ## _wait(var *out) { \
93                 int ret = wait_for_random_bytes(); \
94                 if (unlikely(ret)) \
95                         return ret; \
96                 *out = get_random_ ## var(); \
97                 return 0; \
98         }
99 declare_get_random_var_wait(u32)
100 declare_get_random_var_wait(u64)
101 declare_get_random_var_wait(int)
102 declare_get_random_var_wait(long)
103 #undef declare_get_random_var
104
105 unsigned long randomize_page(unsigned long start, unsigned long range);
106
107 /*
108  * This is designed to be standalone for just prandom
109  * users, but for now we include it from <linux/random.h>
110  * for legacy reasons.
111  */
112 #include <linux/prandom.h>
113
114 #ifdef CONFIG_ARCH_RANDOM
115 # include <asm/archrandom.h>
116 #else
117 static inline bool __must_check arch_get_random_long(unsigned long *v)
118 {
119         return false;
120 }
121 static inline bool __must_check arch_get_random_int(unsigned int *v)
122 {
123         return false;
124 }
125 static inline bool __must_check arch_get_random_seed_long(unsigned long *v)
126 {
127         return false;
128 }
129 static inline bool __must_check arch_get_random_seed_int(unsigned int *v)
130 {
131         return false;
132 }
133 #endif
134
135 /*
136  * Called from the boot CPU during startup; not valid to call once
137  * secondary CPUs are up and preemption is possible.
138  */
139 #ifndef arch_get_random_seed_long_early
140 static inline bool __init arch_get_random_seed_long_early(unsigned long *v)
141 {
142         WARN_ON(system_state != SYSTEM_BOOTING);
143         return arch_get_random_seed_long(v);
144 }
145 #endif
146
147 #ifndef arch_get_random_long_early
148 static inline bool __init arch_get_random_long_early(unsigned long *v)
149 {
150         WARN_ON(system_state != SYSTEM_BOOTING);
151         return arch_get_random_long(v);
152 }
153 #endif
154
155 #ifdef CONFIG_SMP
156 extern int random_prepare_cpu(unsigned int cpu);
157 extern int random_online_cpu(unsigned int cpu);
158 #endif
159
160 #endif /* _LINUX_RANDOM_H */