]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/machine-id.xml
udev-spawn: slightly adjust logs about timed out commands
[thirdparty/systemd.git] / man / machine-id.xml
1 <?xml version='1.0'?> <!--*-nxml-*-->
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4 <!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
5
6 <refentry id="machine-id">
7 <refentryinfo>
8 <title>machine-id</title>
9 <productname>systemd</productname>
10 </refentryinfo>
11
12 <refmeta>
13 <refentrytitle>machine-id</refentrytitle>
14 <manvolnum>5</manvolnum>
15 </refmeta>
16
17 <refnamediv>
18 <refname>machine-id</refname>
19 <refpurpose>Local machine ID configuration file</refpurpose>
20 </refnamediv>
21
22 <refsynopsisdiv>
23 <para><filename>/etc/machine-id</filename></para>
24 </refsynopsisdiv>
25
26 <refsect1>
27 <title>Description</title>
28
29 <para>The <filename>/etc/machine-id</filename> file contains the unique machine ID of
30 the local system that is set during installation or boot. The machine ID is a single
31 newline-terminated, hexadecimal, 32-character, lowercase ID. When decoded from
32 hexadecimal, this corresponds to a 16-byte/128-bit value. This ID may not be all
33 zeros.</para>
34
35 <para>The machine ID is usually generated from a random source during system
36 installation or first boot and stays constant for all subsequent boots. Optionally,
37 for stateless systems, it is generated during runtime during early boot if necessary.
38 </para>
39
40 <para>The machine ID may be set, for example when network booting, with the
41 <varname>systemd.machine_id=</varname> kernel command line parameter or by passing the
42 option <option>--machine-id=</option> to systemd. An ID specified in this manner
43 has higher priority and will be used instead of the ID stored in
44 <filename>/etc/machine-id</filename>.</para>
45
46 <para>The machine ID does not change based on local or network configuration or when
47 hardware is replaced. Due to this and its greater length, it is a more useful
48 replacement for the
49 <citerefentry project='man-pages'><refentrytitle>gethostid</refentrytitle><manvolnum>3</manvolnum></citerefentry>
50 call that POSIX specifies.</para>
51
52 <para>This machine ID adheres to the same format and logic as the
53 D-Bus machine ID.</para>
54
55 <para>This ID uniquely identifies the host. It should be considered "confidential", and must not be exposed in
56 untrusted environments, in particular on the network. If a stable unique identifier that is tied to the machine is
57 needed for some application, the machine ID or any part of it must not be used directly. Instead the machine ID
58 should be hashed with a cryptographic, keyed hash function, using a fixed, application-specific key. That way the
59 ID will be properly unique, and derived in a constant way from the machine ID but there will be no way to retrieve
60 the original machine ID from the application-specific one. The
61 <citerefentry><refentrytitle>sd_id128_get_machine_app_specific</refentrytitle><manvolnum>3</manvolnum></citerefentry>
62 API provides an implementation of such an algorithm.</para>
63 </refsect1>
64
65 <refsect1>
66 <title>Initialization</title>
67
68 <para>Each machine should have a non-empty ID in normal operation. The ID of each
69 machine should be unique. To achieve those objectives,
70 <filename>/etc/machine-id</filename> can be initialized in a few different ways.
71 </para>
72
73 <para>For normal operating system installations, where a custom image is created for a
74 specific machine, <filename>/etc/machine-id</filename> should be populated during
75 installation.</para>
76
77 <para>
78 <citerefentry><refentrytitle>systemd-machine-id-setup</refentrytitle><manvolnum>1</manvolnum></citerefentry>
79 may be used by installer tools to initialize the machine ID at install time, but
80 <filename>/etc/machine-id</filename> may also be written using any other means.
81 </para>
82
83 <para>For operating system images which are created once and used on multiple machines, for example for
84 containers or in the cloud, <filename>/etc/machine-id</filename> should be either missing or an empty
85 file in the generic file system image (the difference between the two options is described under "First
86 Boot Semantics" below). An ID will be generated during boot and saved to this file if possible. Having an
87 empty file in place is useful because it allows a temporary file to be bind-mounted over the real file,
88 in case the image is used read-only. Also see <ulink url="https://systemd.io/BUILDING_IMAGES">Safely
89 Building Images</ulink>.</para>
90
91 <para><citerefentry><refentrytitle>systemd-firstboot</refentrytitle><manvolnum>1</manvolnum></citerefentry>
92 may be used to initialize <filename>/etc/machine-id</filename> on mounted (but not
93 booted) system images.</para>
94
95 <para>When a machine is booted with
96 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>
97 the ID of the machine will be established. If <varname>systemd.machine_id=</varname>
98 or <option>--machine-id=</option> options (see first section) are specified, this
99 value will be used. Otherwise, the value in <filename>/etc/machine-id</filename> will
100 be used. If this file is empty or missing, <filename>systemd</filename> will attempt
101 to use the D-Bus machine ID from <filename>/var/lib/dbus/machine-id</filename>, the
102 value of the kernel command line option <varname>container_uuid</varname>, the KVM DMI
103 <filename>product_uuid</filename> or the devicetree <filename>vm,uuid</filename>
104 (on KVM systems), and finally a randomly generated UUID.</para>
105
106 <para>After the machine ID is established,
107 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>
108 will attempt to save it to <filename>/etc/machine-id</filename>. If this fails, it
109 will attempt to bind-mount a temporary file over <filename>/etc/machine-id</filename>.
110 It is an error if the file system is read-only and does not contain a (possibly empty)
111 <filename>/etc/machine-id</filename> file.</para>
112
113 <para><citerefentry><refentrytitle>systemd-machine-id-commit.service</refentrytitle><manvolnum>8</manvolnum></citerefentry>
114 will attempt to write the machine ID to the file system if
115 <filename>/etc/machine-id</filename> or <filename>/etc/</filename> are read-only during
116 early boot but become writable later on.</para>
117 </refsect1>
118
119 <refsect1>
120 <title>First Boot Semantics</title>
121
122 <para><filename>/etc/machine-id</filename> is used to decide whether a boot is the first one. The rules
123 are as follows:</para>
124
125 <orderedlist>
126 <listitem><para>The kernel command argument <varname>systemd.condition-first-boot=</varname> may be
127 used to override the autodetection logic, see
128 <citerefentry><refentrytitle>kernel-command-line</refentrytitle><manvolnum>7</manvolnum></citerefentry>.
129 </para></listitem>
130
131 <listitem><para>Otherwise, if <filename>/etc/machine-id</filename> does not exist, this is a first
132 boot. During early boot, <command>systemd</command> will write <literal>uninitialized\n</literal> to
133 this file and overmount a temporary file which contains the actual machine ID. Later (after
134 <filename>first-boot-complete.target</filename> has been reached), the real machine ID will be written
135 to disk.</para></listitem>
136
137 <listitem><para>If <filename>/etc/machine-id</filename> contains the string <literal>uninitialized</literal>,
138 a boot is also considered the first boot. The same mechanism as above applies.</para></listitem>
139
140 <listitem><para>If <filename>/etc/machine-id</filename> exists and is empty, a boot is
141 <emphasis>not</emphasis> considered the first boot. <command>systemd</command> will still bind-mount a file
142 containing the actual machine-id over it and later try to commit it to disk (if <filename>/etc/</filename> is
143 writable).</para></listitem>
144
145 <listitem><para>If <filename>/etc/machine-id</filename> already contains a valid machine-id, this is
146 not a first boot.</para></listitem>
147 </orderedlist>
148
149 <para>If according to the above rules a first boot is detected, units with
150 <varname>ConditionFirstBoot=yes</varname> will be run and <command>systemd</command> will perform
151 additional initialization steps, in particular presetting units.</para>
152 </refsect1>
153
154 <refsect1>
155 <title>Relation to OSF UUIDs</title>
156
157 <para>Note that the machine ID historically is not an OSF UUID as defined by <ulink
158 url="https://tools.ietf.org/html/rfc4122">RFC 4122</ulink>, nor a Microsoft GUID; however, starting with
159 systemd v30, newly generated machine IDs do qualify as Variant 1 Version 4 UUIDs, as per RFC 4122.</para>
160
161 <para>In order to maintain compatibility with existing installations, an application requiring a strictly
162 RFC 4122 compliant UUID should decode the machine ID, and then (non-reversibly) apply the following
163 operations to turn it into a valid RFC 4122 Variant 1 Version 4 UUID. With <literal>id</literal> being an
164 unsigned character array:</para>
165
166 <programlisting>/* Set UUID version to 4 --- truly random generation */
167 id[6] = (id[6] &amp; 0x0F) | 0x40;
168 /* Set the UUID variant to DCE */
169 id[8] = (id[8] &amp; 0x3F) | 0x80;</programlisting>
170
171 <para>(This code is inspired by
172 <literal>generate_random_uuid()</literal> of
173 <filename>drivers/char/random.c</filename> from the Linux kernel
174 sources.)</para>
175
176 </refsect1>
177
178 <refsect1>
179 <title>History</title>
180
181 <para>The simple configuration file format of
182 <filename>/etc/machine-id</filename> originates in the
183 <filename>/var/lib/dbus/machine-id</filename> file introduced by
184 D-Bus. In fact, this latter file might be a symlink to
185 <filename>/etc/machine-id</filename>.</para>
186 </refsect1>
187
188 <refsect1>
189 <title>See Also</title>
190 <para>
191 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
192 <citerefentry><refentrytitle>systemd-machine-id-setup</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
193 <citerefentry project='man-pages'><refentrytitle>gethostid</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
194 <citerefentry><refentrytitle>hostname</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
195 <citerefentry><refentrytitle>machine-info</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
196 <citerefentry><refentrytitle>os-release</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
197 <citerefentry><refentrytitle>sd-id128</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
198 <citerefentry><refentrytitle>sd_id128_get_machine</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
199 <citerefentry><refentrytitle>systemd-firstboot</refentrytitle><manvolnum>1</manvolnum></citerefentry>
200 </para>
201 </refsect1>
202
203 </refentry>