chiark / gitweb /
conf-parser: warn if an assignment is place outside of a section
[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 <systemd/sd-id128.h>
31
32 #include "machine-id-setup.h"
33 #include "macro.h"
34 #include "util.h"
35 #include "log.h"
36 #include "virt.h"
37
38 static int generate(char id[34]) {
39         int fd, r;
40         unsigned char *p;
41         sd_id128_t buf;
42         char *q;
43         ssize_t k;
44         const char *vm_id;
45
46         assert(id);
47
48         /* First, try reading the D-Bus machine id, unless it is a symlink */
49         fd = open("/var/lib/dbus/machine-id", O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW);
50         if (fd >= 0) {
51
52                 k = loop_read(fd, id, 32, false);
53                 close_nointr_nofail(fd);
54
55                 if (k >= 32) {
56                         id[32] = '\n';
57                         id[33] = 0;
58
59                         log_info("Initializing machine ID from D-Bus machine ID.");
60                         return 0;
61                 }
62         }
63
64         /* If that didn't work, see if we are running in qemu/kvm and a
65          * machine ID was passed in via -uuid on the qemu/kvm command
66          * line */
67
68         r = detect_vm(&vm_id);
69         if (r > 0 && streq(vm_id, "kvm")) {
70                 char uuid[37];
71
72                 fd = open("/sys/class/dmi/id/product_uuid", O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW);
73                 if (fd >= 0) {
74                         k = loop_read(fd, uuid, 36, false);
75                         close_nointr_nofail(fd);
76
77                         if (k >= 36) {
78                                 unsigned i, j;
79
80                                 for (i = 0, j = 0; i < 36 && j < 32; i++) {
81                                         int t;
82
83                                         t = unhexchar(uuid[i]);
84                                         if (t < 0)
85                                                 continue;
86
87                                         id[j++] = hexchar(t);
88                                 }
89
90                                 if (i == 36 && j == 32) {
91                                         id[32] = '\n';
92                                         id[33] = 0;
93
94                                         log_info("Initializing machine ID from KVM UUID");
95                                         return 0;
96                                 }
97                         }
98                 }
99         }
100
101         /* If that didn't work, generate a random machine id */
102         r = sd_id128_randomize(&buf);
103         if (r < 0) {
104                 log_error("Failed to open /dev/urandom: %s", strerror(-r));
105                 return r;
106         }
107
108         for (p = buf.bytes, q = id; p < buf.bytes + sizeof(buf); p++, q += 2) {
109                 q[0] = hexchar(*p >> 4);
110                 q[1] = hexchar(*p & 15);
111         }
112
113         id[32] = '\n';
114         id[33] = 0;
115
116         log_info("Initializing machine ID from random generator.");
117
118         return 0;
119 }
120
121 int machine_id_setup(void) {
122         int fd, r;
123         bool writable;
124         struct stat st;
125         char id[34]; /* 32 + \n + \0 */
126         mode_t m;
127
128         m = umask(0000);
129
130         /* We create this 0444, to indicate that this isn't really
131          * something you should ever modify. Of course, since the file
132          * will be owned by root it doesn't matter much, but maybe
133          * people look. */
134
135         fd = open("/etc/machine-id", O_RDWR|O_CREAT|O_CLOEXEC|O_NOCTTY, 0444);
136         if (fd >= 0)
137                 writable = true;
138         else {
139                 fd = open("/etc/machine-id", O_RDONLY|O_CLOEXEC|O_NOCTTY);
140                 if (fd < 0) {
141                         umask(m);
142                         log_error("Cannot open /etc/machine-id: %m");
143                         return -errno;
144                 }
145
146                 writable = false;
147         }
148
149         umask(m);
150
151         if (fstat(fd, &st) < 0) {
152                 log_error("fstat() failed: %m");
153                 r = -errno;
154                 goto finish;
155         }
156
157         if (S_ISREG(st.st_mode)) {
158                 if (loop_read(fd, id, 32, false) >= 32) {
159                         r = 0;
160                         goto finish;
161                 }
162         }
163
164         /* Hmm, so, the id currently stored is not useful, then let's
165          * generate one */
166
167         r = generate(id);
168         if (r < 0)
169                 goto finish;
170
171         if (S_ISREG(st.st_mode) && writable) {
172                 lseek(fd, 0, SEEK_SET);
173
174                 if (loop_write(fd, id, 33, false) == 33) {
175                         r = 0;
176                         goto finish;
177                 }
178         }
179
180         close_nointr_nofail(fd);
181         fd = -1;
182
183         /* Hmm, we couldn't write it? So let's write it to
184          * /run/systemd/machine-id as a replacement */
185
186         mkdir_p("/run/systemd", 0755);
187
188         m = umask(0022);
189         r = write_one_line_file("/run/systemd/machine-id", id);
190         umask(m);
191
192         if (r < 0) {
193                 log_error("Cannot write /run/systemd/machine-id: %s", strerror(-r));
194
195                 unlink("/run/systemd/machine-id");
196                 goto finish;
197         }
198
199         /* And now, let's mount it over */
200         r = mount("/run/systemd/machine-id", "/etc/machine-id", "bind", MS_BIND|MS_RDONLY, NULL) < 0 ? -errno : 0;
201         unlink("/run/systemd/machine-id");
202
203         if (r < 0)
204                 log_error("Failed to mount /etc/machine-id: %s", strerror(-r));
205         else
206                 log_info("Installed transient /etc/machine-id file.");
207
208 finish:
209
210         if (fd >= 0)
211                 close_nointr_nofail(fd);
212
213         return r;
214 }