]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/random-util.h
random-util: rename RANDOM_DONT_DRAIN → RANDOM_MAY_FAIL
[thirdparty/systemd.git] / src / basic / random-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
3df3e884
RC
2#pragma once
3
f0d09059 4#include <stdbool.h>
11c3a366 5#include <stddef.h>
3df3e884
RC
6#include <stdint.h>
7
94d457e8
LP
8typedef enum RandomFlags {
9 RANDOM_EXTEND_WITH_PSEUDO = 1 << 0, /* If we can't get enough genuine randomness, but some, fill up the rest with pseudo-randomness */
68534345 10 RANDOM_BLOCK = 1 << 1, /* Rather block than return crap randomness (only if the kernel supports that) */
1a0ffa1e 11 RANDOM_MAY_FAIL = 1 << 2, /* If we can't get any randomness at all, return early with -ENODATA */
cc83d519 12 RANDOM_ALLOW_RDRAND = 1 << 3, /* Allow usage of the CPU RNG */
94d457e8
LP
13} RandomFlags;
14
1a0ffa1e 15int genuine_random_bytes(void *p, size_t n, RandomFlags flags); /* returns "genuine" randomness, optionally filled up with pseudo random, if not enough is available */
94d457e8
LP
16void pseudo_random_bytes(void *p, size_t n); /* returns only pseudo-randommess (but possibly seeded from something better) */
17void random_bytes(void *p, size_t n); /* returns genuine randomness if cheaply available, and pseudo randomness if not. */
3335dc2d 18
3df3e884
RC
19void initialize_srand(void);
20
21static inline uint64_t random_u64(void) {
22 uint64_t u;
23 random_bytes(&u, sizeof(u));
24 return u;
25}
26
27static inline uint32_t random_u32(void) {
28 uint32_t u;
29 random_bytes(&u, sizeof(u));
30 return u;
31}
97fa202a 32
33dbab6f 33int rdrand(unsigned long *ret);