]>
git.ipfire.org Git - thirdparty/systemd.git/blob - src/machine-id-setup.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
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.
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.
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/>.
28 #include <sys/mount.h>
30 #include <systemd/sd-id128.h>
32 #include "machine-id-setup.h"
37 static int generate(char id
[34]) {
46 /* First, try reading the D-Bus machine id, unless it is a symlink */
47 fd
= open("/var/lib/dbus/machine-id", O_RDONLY
|O_CLOEXEC
|O_NOCTTY
|O_NOFOLLOW
);
50 k
= loop_read(fd
, id
, 33, false);
51 close_nointr_nofail(fd
);
57 log_info("Initializing machine ID from D-Bus machine ID.");
62 /* If that didn't work, generate a random machine id */
63 r
= sd_id128_randomize(&buf
);
65 log_error("Failed to open /dev/urandom: %s", strerror(-r
));
69 for (p
= buf
.bytes
, q
= id
; p
< buf
.bytes
+ sizeof(buf
); p
++, q
+= 2) {
70 q
[0] = hexchar(*p
>> 4);
71 q
[1] = hexchar(*p
& 15);
77 log_info("Initializing machine ID from random generator.");
82 int machine_id_setup(void) {
86 char id
[34]; /* 32 + \n + \0 */
91 /* We create this 0444, to indicate that this isn't really
92 * something you should ever modify. Of course, since the file
93 * will be owned by root it doesn't matter much, but maybe
96 fd
= open("/etc/machine-id", O_RDWR
|O_CREAT
|O_CLOEXEC
|O_NOCTTY
, 0444);
100 fd
= open("/etc/machine-id", O_RDONLY
|O_CLOEXEC
|O_NOCTTY
);
103 log_error("Cannot open /etc/machine-id: %m");
112 if (fstat(fd
, &st
) < 0) {
113 log_error("fstat() failed: %m");
118 if (S_ISREG(st
.st_mode
)) {
119 if (loop_read(fd
, id
, 32, false) >= 32) {
125 /* Hmm, so, the id currently stored is not useful, then let's
132 if (S_ISREG(st
.st_mode
) && writable
) {
133 lseek(fd
, 0, SEEK_SET
);
135 if (loop_write(fd
, id
, 33, false) == 33) {
141 close_nointr_nofail(fd
);
144 /* Hmm, we couldn't write it? So let's write it to
145 * /run/systemd/machine-id as a replacement */
147 mkdir_p("/run/systemd", 0755);
150 r
= write_one_line_file("/run/systemd/machine-id", id
);
154 log_error("Cannot write /run/systemd/machine-id: %s", strerror(-r
));
156 unlink("/run/systemd/machine-id");
160 /* And now, let's mount it over */
161 r
= mount("/run/systemd/machine-id", "/etc/machine-id", "bind", MS_BIND
|MS_RDONLY
, NULL
) < 0 ? -errno
: 0;
162 unlink("/run/systemd/machine-id");
165 log_error("Failed to mount /etc/machine-id: %s", strerror(-r
));
167 log_info("Installed transient /etc/machine-id file.");
172 close_nointr_nofail(fd
);