Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 OR MIT |
| 2 | /* |
| 3 | * Copyright (C) 2022 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. |
| 4 | * |
Jason A. Donenfeld | 31ec481 | 2022-04-20 15:27:29 +0200 | [diff] [blame] | 5 | * SeedRNG is a simple program made for seeding the Linux kernel random number |
| 6 | * generator from seed files. It is is useful in light of the fact that the |
| 7 | * Linux kernel RNG cannot be initialized from shell scripts, and new seeds |
| 8 | * cannot be safely generated from boot time shell scripts either. It should |
| 9 | * be run once at init time and once at shutdown time. It can be run at other |
| 10 | * times on a timer as well. Whenever it is run, it writes existing seed files |
| 11 | * into the RNG pool, and then creates a new seed file. If the RNG is |
| 12 | * initialized at the time of creating a new seed file, then that new seed file |
| 13 | * is marked as "creditable", which means it can be used to initialize the RNG. |
| 14 | * Otherwise, it is marked as "non-creditable", in which case it is still used |
| 15 | * to seed the RNG's pool, but will not initialize the RNG. In order to ensure |
| 16 | * that entropy only ever stays the same or increases from one seed file to the |
| 17 | * next, old seed values are hashed together with new seed values when writing |
| 18 | * new seed files. |
| 19 | * |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 20 | * This is based on code from <https://git.zx2c4.com/seedrng/about/>. |
| 21 | */ |
| 22 | |
| 23 | //config:config SEEDRNG |
Jason A. Donenfeld | 3cb40f8 | 2022-04-20 15:38:46 +0200 | [diff] [blame] | 24 | //config: bool "seedrng (2 kb)" |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 25 | //config: default y |
| 26 | //config: help |
| 27 | //config: Seed the kernel RNG from seed files, meant to be called |
| 28 | //config: once during startup, once during shutdown, and optionally |
| 29 | //config: at some periodic interval in between. |
| 30 | |
| 31 | //applet:IF_SEEDRNG(APPLET(seedrng, BB_DIR_USR_SBIN, BB_SUID_DROP)) |
| 32 | |
| 33 | //kbuild:lib-$(CONFIG_SEEDRNG) += seedrng.o |
| 34 | |
| 35 | //usage:#define seedrng_trivial_usage |
Jason A. Donenfeld | 398bb38 | 2022-04-20 15:34:20 +0200 | [diff] [blame] | 36 | //usage: "[-d SEED_DIRECTORY] [-n]" |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 37 | //usage:#define seedrng_full_usage "\n\n" |
Denys Vlasenko | 137b205 | 2022-04-27 16:53:44 +0200 | [diff] [blame] | 38 | //usage: "Seed the kernel RNG from seed files" |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 39 | //usage: "\n" |
Denys Vlasenko | 137b205 | 2022-04-27 16:53:44 +0200 | [diff] [blame] | 40 | //usage: "\n -d DIR Use seed files from DIR (default: /var/lib/seedrng)" |
| 41 | //usage: "\n -n Skip crediting seeds, even if creditable" |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 42 | |
| 43 | #include "libbb.h" |
| 44 | |
| 45 | #include <linux/random.h> |
| 46 | #include <sys/random.h> |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 47 | #include <sys/file.h> |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 48 | |
| 49 | #ifndef GRND_INSECURE |
| 50 | #define GRND_INSECURE 0x0004 /* Apparently some headers don't ship with this yet. */ |
| 51 | #endif |
| 52 | |
Jason A. Donenfeld | 4538578 | 2022-04-20 15:22:55 +0200 | [diff] [blame] | 53 | #define DEFAULT_SEED_DIR "/var/lib/seedrng" |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 54 | #define CREDITABLE_SEED_NAME "seed.credit" |
| 55 | #define NON_CREDITABLE_SEED_NAME "seed.no-credit" |
| 56 | |
Denys Vlasenko | 4013565 | 2022-04-27 17:20:43 +0200 | [diff] [blame] | 57 | enum { |
Jason A. Donenfeld | 4538578 | 2022-04-20 15:22:55 +0200 | [diff] [blame] | 58 | MIN_SEED_LEN = SHA256_OUTSIZE, |
| 59 | MAX_SEED_LEN = 512 |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 60 | }; |
| 61 | |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 62 | static size_t determine_optimal_seed_len(void) |
| 63 | { |
Denys Vlasenko | 4013565 | 2022-04-27 17:20:43 +0200 | [diff] [blame] | 64 | char poolsize_str[12]; |
| 65 | unsigned poolsize; |
| 66 | int n; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 67 | |
Denys Vlasenko | 4013565 | 2022-04-27 17:20:43 +0200 | [diff] [blame] | 68 | n = open_read_close("/proc/sys/kernel/random/poolsize", poolsize_str, sizeof(poolsize_str) - 1); |
| 69 | if (n < 0) { |
Denys Vlasenko | c82a0cd | 2022-04-27 17:33:15 +0200 | [diff] [blame] | 70 | bb_perror_msg("can't determine pool size, assuming %u bits", MIN_SEED_LEN * 8); |
Jason A. Donenfeld | 4538578 | 2022-04-20 15:22:55 +0200 | [diff] [blame] | 71 | return MIN_SEED_LEN; |
| 72 | } |
Denys Vlasenko | 4013565 | 2022-04-27 17:20:43 +0200 | [diff] [blame] | 73 | poolsize_str[n] = '\0'; |
Jason A. Donenfeld | 31ec481 | 2022-04-20 15:27:29 +0200 | [diff] [blame] | 74 | poolsize = (bb_strtoul(poolsize_str, NULL, 10) + 7) / 8; |
| 75 | return MAX(MIN(poolsize, MAX_SEED_LEN), MIN_SEED_LEN); |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 76 | } |
| 77 | |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 78 | static bool read_new_seed(uint8_t *seed, size_t len) |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 79 | { |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 80 | bool is_creditable; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 81 | ssize_t ret; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 82 | |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 83 | ret = getrandom(seed, len, GRND_NONBLOCK); |
| 84 | if (ret == (ssize_t)len) { |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 85 | return true; |
Denys Vlasenko | 282b61a | 2022-04-30 15:25:55 +0200 | [diff] [blame] | 86 | } |
| 87 | if (ret < 0 && errno == ENOSYS) { |
Denys Vlasenko | 2cbfd01 | 2022-04-30 15:36:54 +0200 | [diff] [blame] | 88 | int fd = xopen("/dev/random", O_RDONLY); |
| 89 | struct pollfd random_fd; |
| 90 | random_fd.fd = fd; |
| 91 | random_fd.events = POLLIN; |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 92 | is_creditable = poll(&random_fd, 1, 0) == 1; |
| 93 | //This is racy. is_creditable can be set to true here, but other process |
| 94 | //can consume "good" random data from /dev/urandom before we do it below. |
Denys Vlasenko | 2cbfd01 | 2022-04-30 15:36:54 +0200 | [diff] [blame] | 95 | close(fd); |
Denys Vlasenko | 282b61a | 2022-04-30 15:25:55 +0200 | [diff] [blame] | 96 | } else { |
Denys Vlasenko | 282b61a | 2022-04-30 15:25:55 +0200 | [diff] [blame] | 97 | if (getrandom(seed, len, GRND_INSECURE) == (ssize_t)len) |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 98 | return false; |
| 99 | is_creditable = false; |
Denys Vlasenko | 282b61a | 2022-04-30 15:25:55 +0200 | [diff] [blame] | 100 | } |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 101 | |
| 102 | /* Either getrandom() is not implemented, or |
| 103 | * getrandom(GRND_INSECURE) did not give us LEN bytes. |
| 104 | * Fallback to reading /dev/urandom. |
| 105 | */ |
Denys Vlasenko | 282b61a | 2022-04-30 15:25:55 +0200 | [diff] [blame] | 106 | errno = 0; |
| 107 | if (open_read_close("/dev/urandom", seed, len) != (ssize_t)len) |
| 108 | bb_perror_msg_and_die("can't read '%s'", "/dev/urandom"); |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 109 | return is_creditable; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 110 | } |
| 111 | |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 112 | static void seed_rng(uint8_t *seed, size_t len, bool credit) |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 113 | { |
| 114 | struct { |
| 115 | int entropy_count; |
| 116 | int buf_size; |
| 117 | uint8_t buffer[MAX_SEED_LEN]; |
Denys Vlasenko | 6da9947 | 2022-04-27 17:09:38 +0200 | [diff] [blame] | 118 | } req; |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 119 | int random_fd; |
Denys Vlasenko | 6da9947 | 2022-04-27 17:09:38 +0200 | [diff] [blame] | 120 | |
| 121 | req.entropy_count = credit ? len * 8 : 0; |
| 122 | req.buf_size = len; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 123 | memcpy(req.buffer, seed, len); |
| 124 | |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 125 | random_fd = xopen("/dev/urandom", O_RDONLY); |
| 126 | xioctl(random_fd, RNDADDENTROPY, &req); |
Jason A. Donenfeld | 31ec481 | 2022-04-20 15:27:29 +0200 | [diff] [blame] | 127 | if (ENABLE_FEATURE_CLEAN_UP) |
| 128 | close(random_fd); |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 129 | } |
| 130 | |
Denys Vlasenko | 4648754 | 2022-04-30 23:17:58 +0200 | [diff] [blame] | 131 | static void seed_from_file_if_exists(const char *filename, int dfd, bool credit, sha256_ctx_t *hash) |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 132 | { |
| 133 | uint8_t seed[MAX_SEED_LEN]; |
| 134 | ssize_t seed_len; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 135 | |
Jason A. Donenfeld | 4538578 | 2022-04-20 15:22:55 +0200 | [diff] [blame] | 136 | seed_len = open_read_close(filename, seed, sizeof(seed)); |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 137 | if (seed_len < 0) { |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 138 | if (errno != ENOENT) |
Denys Vlasenko | 267178c | 2022-04-30 15:50:45 +0200 | [diff] [blame] | 139 | bb_perror_msg_and_die("can't read '%s'", filename); |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 140 | return; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 141 | } |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 142 | xunlink(filename); |
| 143 | if (seed_len != 0) { |
Denys Vlasenko | 4648754 | 2022-04-30 23:17:58 +0200 | [diff] [blame] | 144 | /* We are going to use this data to seed the RNG: |
| 145 | * we believe it to genuinely containing entropy. |
| 146 | * If this just-unlinked file survives |
| 147 | * (e.g. if machine crashes _right now_) |
| 148 | * and we reuse it after reboot, this assumption |
| 149 | * would be violated. Fsync the directory to |
| 150 | * make sure file is gone: |
| 151 | */ |
| 152 | fsync(dfd); |
| 153 | |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 154 | sha256_hash(hash, &seed_len, sizeof(seed_len)); |
| 155 | sha256_hash(hash, seed, seed_len); |
Denys Vlasenko | d49da38 | 2022-04-30 15:45:53 +0200 | [diff] [blame] | 156 | printf("Seeding %u bits %s crediting\n", |
| 157 | (unsigned)seed_len * 8, credit ? "and" : "without"); |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 158 | seed_rng(seed, seed_len, credit); |
Jason A. Donenfeld | 398bb38 | 2022-04-20 15:34:20 +0200 | [diff] [blame] | 159 | } |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | int seedrng_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; |
| 163 | int seedrng_main(int argc UNUSED_PARAM, char *argv[]) |
| 164 | { |
Denys Vlasenko | 8456c21 | 2022-04-27 17:53:12 +0200 | [diff] [blame] | 165 | const char *seed_dir; |
Denys Vlasenko | d49da38 | 2022-04-30 15:45:53 +0200 | [diff] [blame] | 166 | int fd, dfd; |
Denys Vlasenko | fb4546c | 2022-05-01 01:58:57 +0200 | [diff] [blame^] | 167 | int i; |
| 168 | unsigned opts; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 169 | uint8_t new_seed[MAX_SEED_LEN]; |
| 170 | size_t new_seed_len; |
Denys Vlasenko | fb4546c | 2022-05-01 01:58:57 +0200 | [diff] [blame^] | 171 | bool new_seed_creditable; |
Denys Vlasenko | 6da9947 | 2022-04-27 17:09:38 +0200 | [diff] [blame] | 172 | struct timespec timestamp; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 173 | sha256_ctx_t hash; |
| 174 | |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 175 | enum { |
Denys Vlasenko | fb4546c | 2022-05-01 01:58:57 +0200 | [diff] [blame^] | 176 | OPT_n = (1 << 0), /* must be 1 */ |
| 177 | OPT_d = (1 << 1), |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 178 | }; |
| 179 | #if ENABLE_LONG_OPTS |
| 180 | static const char longopts[] ALIGN1 = |
Denys Vlasenko | 0bca489 | 2022-04-30 23:53:28 +0200 | [diff] [blame] | 181 | "skip-credit\0" No_argument "n" |
Denys Vlasenko | fb4546c | 2022-05-01 01:58:57 +0200 | [diff] [blame^] | 182 | "seed-dir\0" Required_argument "d" |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 183 | ; |
| 184 | #endif |
| 185 | |
Denys Vlasenko | 4013565 | 2022-04-27 17:20:43 +0200 | [diff] [blame] | 186 | seed_dir = DEFAULT_SEED_DIR; |
Denys Vlasenko | fb4546c | 2022-05-01 01:58:57 +0200 | [diff] [blame^] | 187 | opts = getopt32long(argv, "nd:", longopts, &seed_dir); |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 188 | umask(0077); |
Denys Vlasenko | 8456c21 | 2022-04-27 17:53:12 +0200 | [diff] [blame] | 189 | if (getuid() != 0) |
Jason A. Donenfeld | ce9a345 | 2022-04-20 15:36:22 +0200 | [diff] [blame] | 190 | bb_simple_error_msg_and_die(bb_msg_you_must_be_root); |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 191 | |
Jason A. Donenfeld | 4538578 | 2022-04-20 15:22:55 +0200 | [diff] [blame] | 192 | if (mkdir(seed_dir, 0700) < 0 && errno != EEXIST) |
Denys Vlasenko | 267178c | 2022-04-30 15:50:45 +0200 | [diff] [blame] | 193 | bb_perror_msg_and_die("can't create directory '%s'", seed_dir); |
Denys Vlasenko | d49da38 | 2022-04-30 15:45:53 +0200 | [diff] [blame] | 194 | dfd = xopen(seed_dir, O_DIRECTORY | O_RDONLY); |
Denys Vlasenko | 8456c21 | 2022-04-27 17:53:12 +0200 | [diff] [blame] | 195 | xfchdir(dfd); |
Denys Vlasenko | d5bd2e5 | 2022-05-01 01:50:44 +0200 | [diff] [blame] | 196 | /* Concurrent runs of this tool might feed the same data to RNG twice. |
| 197 | * Avoid concurrent runs by taking a blocking lock on the directory. |
| 198 | * Not checking for errors. Looking at manpage, |
| 199 | * ENOLCK "The kernel ran out of memory for allocating lock records" |
| 200 | * seems to be the only one which is likely - and if that happens, |
| 201 | * machine is OOMing (much worse problem than inability to lock...). |
| 202 | * Also, typically configured Linux machines do not fail GFP_KERNEL |
| 203 | * allocations (they trigger memory reclaim instead). |
| 204 | */ |
| 205 | flock(dfd, LOCK_EX); /* would block while another copy runs */ |
Jason A. Donenfeld | 3c60711 | 2022-04-20 15:31:01 +0200 | [diff] [blame] | 206 | |
Jason A. Donenfeld | 31ec481 | 2022-04-20 15:27:29 +0200 | [diff] [blame] | 207 | sha256_begin(&hash); |
Jason A. Donenfeld | 3cb40f8 | 2022-04-20 15:38:46 +0200 | [diff] [blame] | 208 | sha256_hash(&hash, "SeedRNG v1 Old+New Prefix", 25); |
Jason A. Donenfeld | 31ec481 | 2022-04-20 15:27:29 +0200 | [diff] [blame] | 209 | clock_gettime(CLOCK_REALTIME, ×tamp); |
| 210 | sha256_hash(&hash, ×tamp, sizeof(timestamp)); |
| 211 | clock_gettime(CLOCK_BOOTTIME, ×tamp); |
| 212 | sha256_hash(&hash, ×tamp, sizeof(timestamp)); |
| 213 | |
Denys Vlasenko | fb4546c | 2022-05-01 01:58:57 +0200 | [diff] [blame^] | 214 | for (i = 0; i <= 1; i++) { |
| 215 | seed_from_file_if_exists(i == 0 ? NON_CREDITABLE_SEED_NAME : CREDITABLE_SEED_NAME, |
Denys Vlasenko | 4648754 | 2022-04-30 23:17:58 +0200 | [diff] [blame] | 216 | dfd, |
Denys Vlasenko | fb4546c | 2022-05-01 01:58:57 +0200 | [diff] [blame^] | 217 | /* credit? */ (opts ^ OPT_n) & i, /* 0, then 1 unless -n */ |
Denys Vlasenko | 0fa16fc | 2022-04-29 18:37:42 +0200 | [diff] [blame] | 218 | &hash); |
Jason A. Donenfeld | f9ea8ba | 2022-04-21 12:37:32 +0200 | [diff] [blame] | 219 | } |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 220 | |
| 221 | new_seed_len = determine_optimal_seed_len(); |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 222 | new_seed_creditable = read_new_seed(new_seed, new_seed_len); |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 223 | sha256_hash(&hash, &new_seed_len, sizeof(new_seed_len)); |
| 224 | sha256_hash(&hash, new_seed, new_seed_len); |
| 225 | sha256_end(&hash, new_seed + new_seed_len - SHA256_OUTSIZE); |
| 226 | |
Denys Vlasenko | 52f3cf7 | 2022-04-30 15:33:28 +0200 | [diff] [blame] | 227 | printf("Saving %u bits of %screditable seed for next boot\n", |
| 228 | (unsigned)new_seed_len * 8, new_seed_creditable ? "" : "non-"); |
Denys Vlasenko | d49da38 | 2022-04-30 15:45:53 +0200 | [diff] [blame] | 229 | fd = xopen3(NON_CREDITABLE_SEED_NAME, O_WRONLY | O_CREAT | O_TRUNC, 0400); |
| 230 | xwrite(fd, new_seed, new_seed_len); |
Denys Vlasenko | d5bd2e5 | 2022-05-01 01:50:44 +0200 | [diff] [blame] | 231 | if (new_seed_creditable) { |
| 232 | /* More paranoia when we create a file which we believe contains |
| 233 | * genuine entropy: make sure disk is not full, quota was't esceeded, etc: |
| 234 | */ |
| 235 | if (fsync(fd) < 0) |
| 236 | bb_perror_msg_and_die("can't write '%s'", NON_CREDITABLE_SEED_NAME); |
Denys Vlasenko | d49da38 | 2022-04-30 15:45:53 +0200 | [diff] [blame] | 237 | xrename(NON_CREDITABLE_SEED_NAME, CREDITABLE_SEED_NAME); |
Denys Vlasenko | d5bd2e5 | 2022-05-01 01:50:44 +0200 | [diff] [blame] | 238 | } |
Denys Vlasenko | d49da38 | 2022-04-30 15:45:53 +0200 | [diff] [blame] | 239 | return EXIT_SUCCESS; |
Jason A. Donenfeld | 4b407ba | 2022-04-04 18:21:51 +0200 | [diff] [blame] | 240 | } |