]> git.ipfire.org Git - thirdparty/rng-tools.git/blob - rngd.c
f6ee8a34b2dcbc001c975c7e1e66f2f54f792346
[thirdparty/rng-tools.git] / rngd.c
1 /*
2 * rngd.c -- Random Number Generator daemon
3 *
4 * rngd reads data from a hardware random number generator, verifies it
5 * looks like random data, and adds it to /dev/random's entropy store.
6 *
7 * In theory, this should allow you to read very quickly from
8 * /dev/random; rngd also adds bytes to the entropy store periodically
9 * when it's full, which makes predicting the entropy store's contents
10 * harder.
11 *
12 * Copyright (C) 2001 Philipp Rumpf
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 */
28
29 #define _GNU_SOURCE
30
31 #ifndef HAVE_CONFIG_H
32 #error Invalid or missing autoconf build environment
33 #endif
34
35 #include "rng-tools-config.h"
36
37 #include <unistd.h>
38 #include <stdint.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <fcntl.h>
44 #include <errno.h>
45 #include <string.h>
46 #include <argp.h>
47 #include <syslog.h>
48 #include <signal.h>
49
50 #include "rngd.h"
51 #include "fips.h"
52 #include "exits.h"
53 #include "rngd_entsource.h"
54 #include "rngd_linux.h"
55
56 /*
57 * Globals
58 */
59
60 /* Background/daemon mode */
61 bool am_daemon; /* True if we went daemon */
62
63 bool server_running = true; /* set to false, to stop daemon */
64
65 /* Command line arguments and processing */
66 const char *argp_program_version =
67 "rngd " VERSION "\n"
68 "Copyright 2001-2004 Jeff Garzik\n"
69 "Copyright (c) 2001 by Philipp Rumpf\n"
70 "This is free software; see the source for copying conditions. There is NO "
71 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.";
72
73 const char *argp_program_bug_address = PACKAGE_BUGREPORT;
74
75 static char doc[] =
76 "Check and feed random data from hardware device to kernel entropy pool.\n";
77
78 static struct argp_option options[] = {
79 { "foreground", 'f', 0, 0, "Do not fork and become a daemon" },
80
81 { "background", 'b', 0, 0, "Become a daemon (default)" },
82
83 { "random-device", 'o', "file", 0,
84 "Kernel device used for random number output (default: /dev/random)" },
85
86 { "rng-device", 'r', "file", 0,
87 "Kernel device used for random number input (default: /dev/hw_random)" },
88
89 { "pid-file", 'p', "file", 0,
90 "File used for recording daemon PID, and multiple exclusion (default: /var/run/rngd.pid)" },
91
92 { "random-step", 's', "nnn", 0,
93 "Number of bytes written to random-device at a time (default: 64)" },
94
95 { "fill-watermark", 'W', "n", 0,
96 "Do not stop feeding entropy to random-device until at least n bits of entropy are available in the pool (default: 2048), 0 <= n <= 4096" },
97
98 { "quiet", 'q', 0, 0, "Suppress error messages" },
99
100 { "verbose" ,'v', 0, 0, "Report available entropy sources" },
101
102 { "no-drng", 'd', "1|0", 0,
103 "Do not use drng as a source of random number input (default: 0)" },
104
105 { "no-tpm", 'n', "1|0", 0,
106 "Do not use tpm as a source of random number input (default: 0)" },
107
108 { 0 },
109 };
110
111 static struct arguments default_arguments = {
112 .random_name = "/dev/random",
113 .pid_file = "/var/run/rngd.pid",
114 .random_step = 64,
115 .daemon = true,
116 .enable_drng = true,
117 .enable_tpm = true,
118 .quiet = false,
119 .verbose = false,
120 };
121 struct arguments *arguments = &default_arguments;
122
123 static struct rng rng_default = {
124 .rng_name = "/dev/hw_random",
125 .rng_fd = -1,
126 .xread = xread,
127 };
128
129 static struct rng rng_drng = {
130 .rng_name = "drng",
131 .rng_fd = -1,
132 .xread = xread_drng,
133 };
134
135 static struct rng rng_tpm = {
136 .rng_name = "/dev/tpm0",
137 .rng_fd = -1,
138 .xread = xread_tpm,
139 };
140
141 struct rng *rng_list;
142
143 /*
144 * command line processing
145 */
146 static error_t parse_opt (int key, char *arg, struct argp_state *state)
147 {
148 switch(key) {
149 case 'o':
150 arguments->random_name = arg;
151 break;
152 case 'p':
153 arguments->pid_file = arg;
154 break;
155 case 'r':
156 rng_default.rng_name = arg;
157 break;
158 case 'f':
159 arguments->daemon = false;
160 break;
161 case 'b':
162 arguments->daemon = true;
163 break;
164 case 's':
165 if (sscanf(arg, "%i", &arguments->random_step) == 0)
166 argp_usage(state);
167 break;
168 case 'W': {
169 int n;
170 if ((sscanf(arg, "%i", &n) == 0) || (n < 0) || (n > 4096))
171 argp_usage(state);
172 else
173 arguments->fill_watermark = n;
174 break;
175 }
176 case 'q':
177 arguments->quiet = true;
178 break;
179 case 'v':
180 arguments->verbose = true;
181 break;
182 case 'd': {
183 int n;
184 if ((sscanf(arg,"%i", &n) == 0) || ((n | 1)!=1))
185 argp_usage(state);
186 else
187 arguments->enable_drng = false;
188 break;
189 }
190 case 'n': {
191 int n;
192 if ((sscanf(arg,"%i", &n) == 0) || ((n | 1)!=1))
193 argp_usage(state);
194 else
195 arguments->enable_tpm = false;
196 break;
197 }
198
199 default:
200 return ARGP_ERR_UNKNOWN;
201 }
202
203 return 0;
204 }
205
206 static struct argp argp = { options, parse_opt, NULL, doc };
207
208
209 static int update_kernel_random(int random_step,
210 unsigned char *buf, fips_ctx_t *fipsctx_in)
211 {
212 unsigned char *p;
213 int fips;
214
215 fips = fips_run_rng_test(fipsctx_in, buf);
216 if (fips) {
217 if (!arguments->quiet)
218 message(LOG_DAEMON|LOG_ERR, "failed fips test\n");
219 return 1;
220 }
221
222 for (p = buf; p + random_step <= &buf[FIPS_RNG_BUFFER_SIZE];
223 p += random_step) {
224 random_add_entropy(p, random_step);
225 random_sleep();
226 }
227 return 0;
228 }
229
230 static void do_loop(int random_step)
231 {
232 unsigned char buf[FIPS_RNG_BUFFER_SIZE];
233 int retval = 0;
234 int no_work = 0;
235
236 while (no_work < 100) {
237 struct rng *iter;
238 bool work_done;
239
240 work_done = false;
241 for (iter = rng_list; iter; iter = iter->next)
242 {
243 int rc;
244
245 if (!server_running)
246 return;
247
248 if (iter->disabled)
249 continue; /* failed, no work */
250
251 retval = iter->xread(buf, sizeof buf, iter);
252 if (retval)
253 continue; /* failed, no work */
254
255 work_done = true;
256
257 rc = update_kernel_random(random_step,
258 buf, iter->fipsctx);
259 if (rc == 0)
260 break; /* succeeded, work done */
261
262 iter->failures++;
263 if (iter->failures == MAX_RNG_FAILURES) {
264 if (!arguments->quiet)
265 message(LOG_DAEMON|LOG_ERR,
266 "too many FIPS failures, disabling entropy source\n");
267 iter->disabled = true;
268 }
269 }
270
271 if (!work_done)
272 no_work++;
273 }
274
275 if (!arguments->quiet)
276 message(LOG_DAEMON|LOG_ERR,
277 "No entropy sources working, exiting rngd\n");
278 }
279
280 static void term_signal(int signo)
281 {
282 server_running = false;
283 }
284
285 int main(int argc, char **argv)
286 {
287 int rc_rng = 1;
288 int rc_drng = 1;
289 int rc_tpm = 1;
290 int pid_fd = -1;
291
292 openlog("rngd", 0, LOG_DAEMON);
293
294 /* Get the default watermark level for this platform */
295 arguments->fill_watermark = default_watermark();
296
297 /* Parsing of commandline parameters */
298 argp_parse(&argp, argc, argv, 0, 0, arguments);
299
300 /* Init entropy sources, and open TRNG device */
301 rc_rng = init_entropy_source(&rng_default);
302 if (arguments->enable_drng)
303 rc_drng = init_drng_entropy_source(&rng_drng);
304 if (arguments->enable_tpm)
305 rc_tpm = init_tpm_entropy_source(&rng_tpm);
306
307 if (rc_rng && rc_drng && rc_tpm) {
308 if (!arguments->quiet) {
309 message(LOG_DAEMON|LOG_ERR,
310 "can't open entropy source(tpm or intel/amd rng)");
311 message(LOG_DAEMON|LOG_ERR,
312 "Maybe RNG device modules are not loaded\n");
313 }
314 return 1;
315 }
316
317 if (arguments->verbose) {
318 printf("Available entropy sources:\n");
319 if (!rc_rng)
320 printf("\tIntel/AMD hardware rng\n");
321 if (!rc_drng)
322 printf("\tDRNG\n");
323 if (!rc_tpm)
324 printf("\tTPM\n");
325 }
326
327 if (rc_rng
328 && (rc_drng || !arguments->enable_drng)
329 && (rc_tpm || !arguments->enable_tpm)) {
330 if (!arguments->quiet)
331 message(LOG_DAEMON|LOG_ERR,
332 "No entropy source available, shutting down\n");
333 return 1;
334 }
335
336 /* Init entropy sink and open random device */
337 init_kernel_rng(arguments->random_name);
338
339 if (arguments->daemon) {
340 am_daemon = true;
341
342 if (daemon(0, 0) < 0) {
343 if(!arguments->quiet)
344 fprintf(stderr, "can't daemonize: %s\n",
345 strerror(errno));
346 return 1;
347 }
348
349 /* require valid, locked PID file to proceed */
350 pid_fd = write_pid_file(arguments->pid_file);
351 if (pid_fd < 0)
352 return 1;
353
354 signal(SIGHUP, SIG_IGN);
355 signal(SIGPIPE, SIG_IGN);
356 signal(SIGINT, term_signal);
357 signal(SIGTERM, term_signal);
358 }
359
360 do_loop(arguments->random_step);
361
362 if (pid_fd >= 0)
363 unlink(arguments->pid_file);
364
365 return 0;
366 }