chiark / gitweb /
logind: move logind into its own subdirectory
[elogind.git] / src / machine-id-setup.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 General Public License as published by
10   the Free Software Foundation; either version 2 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   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <unistd.h>
23 #include <stdio.h>
24 #include <errno.h>
25 #include <string.h>
26 #include <stdlib.h>
27 #include <fcntl.h>
28 #include <sys/mount.h>
29
30 #include "machine-id-setup.h"
31 #include "macro.h"
32 #include "util.h"
33 #include "log.h"
34 #include "sd-id128.h"
35
36 static int generate(char id[34]) {
37         int fd, r;
38         unsigned char *p;
39         sd_id128_t buf;
40         char *q;
41         ssize_t k;
42
43         assert(id);
44
45         /* First, try reading the D-Bus machine id, unless it is a symlink */
46         fd = open("/var/lib/dbus/machine-id", O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW);
47         if (fd >= 0) {
48
49                 k = loop_read(fd, id, 33, false);
50                 close_nointr_nofail(fd);
51
52                 if (k >= 32) {
53                         id[32] = '\n';
54                         id[33] = 0;
55
56                         log_info("Initializing machine ID from D-Bus machine ID.");
57                         return 0;
58                 }
59         }
60
61         /* If that didn't work, generate a random machine id */
62         r = sd_id128_randomize(&buf);
63         if (r < 0) {
64                 log_error("Failed to open /dev/urandom: %s", strerror(-r));
65                 return r;
66         }
67
68         for (p = buf.bytes, q = id; p < buf.bytes + sizeof(buf); p++, q += 2) {
69                 q[0] = hexchar(*p >> 4);
70                 q[1] = hexchar(*p & 15);
71         }
72
73         id[32] = '\n';
74         id[33] = 0;
75
76         log_info("Initializing machine ID from random generator.");
77
78         return 0;
79 }
80
81 int machine_id_setup(void) {
82         int fd, r;
83         bool writable;
84         struct stat st;
85         char id[34]; /* 32 + \n + \0 */
86         mode_t m;
87
88         m = umask(0000);
89
90         /* We create this 0444, to indicate that this isn't really
91          * something you should ever modify. Of course, since the file
92          * will be owned by root it doesn't matter much, but maybe
93          * people look. */
94
95         fd = open("/etc/machine-id", O_RDWR|O_CREAT|O_CLOEXEC|O_NOCTTY, 0444);
96         if (fd >= 0)
97                 writable = true;
98         else {
99                 fd = open("/etc/machine-id", O_RDONLY|O_CLOEXEC|O_NOCTTY);
100                 if (fd < 0) {
101                         umask(m);
102                         log_error("Cannot open /etc/machine-id: %m");
103                         return -errno;
104                 }
105
106                 writable = false;
107         }
108
109         umask(m);
110
111         if (fstat(fd, &st) < 0) {
112                 log_error("fstat() failed: %m");
113                 r = -errno;
114                 goto finish;
115         }
116
117         if (S_ISREG(st.st_mode)) {
118                 if (loop_read(fd, id, 32, false) >= 32) {
119                         r = 0;
120                         goto finish;
121                 }
122         }
123
124         /* Hmm, so, the id currently stored is not useful, then let's
125          * generate one */
126
127         r = generate(id);
128         if (r < 0)
129                 goto finish;
130
131         if (S_ISREG(st.st_mode) && writable) {
132                 lseek(fd, 0, SEEK_SET);
133
134                 if (loop_write(fd, id, 33, false) == 33) {
135                         r = 0;
136                         goto finish;
137                 }
138         }
139
140         close_nointr_nofail(fd);
141         fd = -1;
142
143         /* Hmm, we couldn't write it? So let's write it to
144          * /run/systemd/machine-id as a replacement */
145
146         mkdir_p("/run/systemd", 0755);
147
148         m = umask(0022);
149         r = write_one_line_file("/run/systemd/machine-id", id);
150         umask(m);
151
152         if (r < 0) {
153                 log_error("Cannot write /run/systemd/machine-id: %s", strerror(-r));
154
155                 unlink("/run/systemd/machine-id");
156                 goto finish;
157         }
158
159         /* And now, let's mount it over */
160         r = mount("/run/systemd/machine-id", "/etc/machine-id", "bind", MS_BIND|MS_RDONLY, NULL) < 0 ? -errno : 0;
161         unlink("/run/systemd/machine-id");
162
163         if (r < 0)
164                 log_error("Failed to mount /etc/machine-id: %s", strerror(-r));
165         else
166                 log_info("Installed transient /etc/machine-id file.");
167
168 finish:
169
170         if (fd >= 0)
171                 close_nointr_nofail(fd);
172
173         return r;
174 }