chiark / gitweb /
importd: add new bus calls for importing local tar and raw images
[elogind.git] / src / random-seed / random-seed.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <errno.h>
25 #include <string.h>
26 #include <sys/stat.h>
27
28 #include "log.h"
29 #include "util.h"
30 #include "mkdir.h"
31
32 #define POOL_SIZE_MIN 512
33
34 int main(int argc, char *argv[]) {
35         _cleanup_close_ int seed_fd = -1, random_fd = -1;
36         _cleanup_free_ void* buf = NULL;
37         size_t buf_size = 0;
38         ssize_t k;
39         int r;
40         FILE *f;
41         bool cleanup_seed_file = true;
42
43         if (argc != 2) {
44                 log_error("This program requires one argument.");
45                 return EXIT_FAILURE;
46         }
47
48         log_set_target(LOG_TARGET_AUTO);
49         log_parse_environment();
50         log_open();
51
52         umask(0022);
53
54         /* Read pool size, if possible */
55         f = fopen("/proc/sys/kernel/random/poolsize", "re");
56         if (f) {
57                 if (fscanf(f, "%zu", &buf_size) > 0) {
58                         /* poolsize is in bits on 2.6, but we want bytes */
59                         buf_size /= 8;
60                 }
61
62                 fclose(f);
63         }
64
65         if (buf_size <= POOL_SIZE_MIN)
66                 buf_size = POOL_SIZE_MIN;
67
68         buf = malloc(buf_size);
69         if (!buf) {
70                 r = log_oom();
71                 goto finish;
72         }
73
74         r = mkdir_parents_label(RANDOM_SEED, 0755);
75         if (r < 0) {
76                 log_error_errno(r, "Failed to create directory " RANDOM_SEED_DIR ": %m");
77                 goto finish;
78         }
79
80         /* When we load the seed we read it and write it to the device
81          * and then immediately update the saved seed with new data,
82          * to make sure the next boot gets seeded differently. */
83
84         if (streq(argv[1], "load")) {
85
86                 seed_fd = open(RANDOM_SEED, O_RDWR|O_CLOEXEC|O_NOCTTY|O_CREAT, 0600);
87                 if (seed_fd < 0) {
88                         seed_fd = open(RANDOM_SEED, O_RDONLY|O_CLOEXEC|O_NOCTTY);
89                         if (seed_fd < 0) {
90                                 log_error_errno(errno, "Failed to open " RANDOM_SEED ": %m");
91                                 r = -errno;
92                                 goto finish;
93                         }
94                         cleanup_seed_file = false;
95                 }
96
97                 random_fd = open("/dev/urandom", O_RDWR|O_CLOEXEC|O_NOCTTY, 0600);
98                 if (random_fd < 0) {
99                         random_fd = open("/dev/urandom", O_WRONLY|O_CLOEXEC|O_NOCTTY, 0600);
100                         if (random_fd < 0) {
101                                 log_error_errno(errno, "Failed to open /dev/urandom: %m");
102                                 r = -errno;
103                                 goto finish;
104                         }
105                 }
106
107                 k = loop_read(seed_fd, buf, buf_size, false);
108                 if (k <= 0) {
109
110                         if (r != 0)
111                                 log_error_errno(errno, "Failed to read seed from " RANDOM_SEED ": %m");
112
113                         r = k == 0 ? -EIO : (int) k;
114
115                 } else {
116                         lseek(seed_fd, 0, SEEK_SET);
117
118                         r = loop_write(random_fd, buf, (size_t) k, false);
119                         if (r < 0)
120                                 log_error_errno(r, "Failed to write seed to /dev/urandom: %m");
121                 }
122
123         } else if (streq(argv[1], "save")) {
124
125                 seed_fd = open(RANDOM_SEED, O_WRONLY|O_CLOEXEC|O_NOCTTY|O_CREAT, 0600);
126                 if (seed_fd < 0) {
127                         log_error_errno(errno, "Failed to open " RANDOM_SEED ": %m");
128                         r = -errno;
129                         goto finish;
130                 }
131
132                 random_fd = open("/dev/urandom", O_RDONLY|O_CLOEXEC|O_NOCTTY);
133                 if (random_fd < 0) {
134                         log_error_errno(errno, "Failed to open /dev/urandom: %m");
135                         r = -errno;
136                         goto finish;
137                 }
138
139         } else {
140                 log_error("Unknown verb %s.", argv[1]);
141                 r = -EINVAL;
142                 goto finish;
143         }
144
145         if (cleanup_seed_file) {
146                 /* This is just a safety measure. Given that we are root and
147                  * most likely created the file ourselves the mode and owner
148                  * should be correct anyway. */
149                 fchmod(seed_fd, 0600);
150                 fchown(seed_fd, 0, 0);
151
152                 k = loop_read(random_fd, buf, buf_size, false);
153                 if (k <= 0) {
154                         log_error("Failed to read new seed from /dev/urandom: %s", r < 0 ? strerror(-r) : "EOF");
155                         r = k == 0 ? -EIO : (int) k;
156                 } else {
157                         r = loop_write(seed_fd, buf, (size_t) k, false);
158                         if (r < 0)
159                                 log_error_errno(r, "Failed to write new random seed file: %m");
160                 }
161         }
162
163 finish:
164         return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
165 }