|
NAME | SYNOPSIS | DESCRIPTION | RELATION TO OSF UUIDS | HISTORY | SEE ALSO | NOTES | COLOPHON |
|
MACHINE-ID(5) machine-id MACHINE-ID(5)
machine-id - Local machine ID configuration file
/etc/machine-id
The /etc/machine-id file contains the unique machine ID of the local
system that is set during installation. The machine ID is a single
newline-terminated, hexadecimal, 32-character, lowercase ID. When
decoded from hexadecimal, this corresponds to a 16-byte/128-bit
value.
The machine ID is usually generated from a random source during
system installation and stays constant for all subsequent boots.
Optionally, for stateless systems, it is generated during runtime at
early boot if it is found to be empty.
The machine ID does not change based on local or network
configuration or when hardware is replaced. Due to this and its
greater length, it is a more useful replacement for the gethostid(3)
call that POSIX specifies.
This machine ID adheres to the same format and logic as the D-Bus
machine ID.
This ID uniquely identifies the host. It should be considered
"confidential", and must not be exposed in untrusted environments, in
particular on the network. If a stable unique identifier that is tied
to the machine is needed for some application, the machine ID or any
part of it must not be used directly. Instead the machine ID should
be hashed with a cryptographic, keyed hash function, using a fixed,
application-specific key. That way the ID will be properly unique,
and derived in a constant way from the machine ID but there will be
no way to retrieve the original machine ID from the
application-specific one. The sd_id128_get_machine_app_specific(3)
API provides an implementation of such an algorithm.
The systemd-machine-id-setup(1) tool may be used by installer tools
to initialize the machine ID at install time. Use
systemd-firstboot(1) to initialize it on mounted (but not booted)
system images.
The machine-id may also be set, for example when network booting, by
setting the systemd.machine_id= kernel command line parameter or
passing the option --machine-id= to systemd. A machine-id may not be
set to all zeros.
Note that the machine ID historically is not an OSF UUID as defined
by RFC 4122[1], nor a Microsoft GUID; however, starting with systemd
v30, newly generated machine IDs do qualify as v4 UUIDs.
In order to maintain compatibility with existing installations, an
application requiring a UUID should decode the machine ID, and then
apply the following operations to turn it into a valid OSF v4 UUID.
With "id" being an unsigned character array:
/* Set UUID version to 4 --- truly random generation */
id[6] = (id[6] & 0x0F) | 0x40;
/* Set the UUID variant to DCE */
id[8] = (id[8] & 0x3F) | 0x80;
(This code is inspired by "generate_random_uuid()" of
drivers/char/random.c from the Linux kernel sources.)
The simple configuration file format of /etc/machine-id originates in
the /var/lib/dbus/machine-id file introduced by D-Bus. In fact, this
latter file might be a symlink to /etc/machine-id.
systemd(1), systemd-machine-id-setup(1), gethostid(3), hostname(5),
machine-info(5), os-release(5), sd-id128(3), sd_id128_get_machine(3),
systemd-firstboot(1)
1. RFC 4122
https://tools.ietf.org/html/rfc4122
This page is part of the systemd (systemd system and service manager)
project. Information about the project can be found at
⟨http://www.freedesktop.org/wiki/Software/systemd⟩. If you have a bug
report for this manual page, see
⟨http://www.freedesktop.org/wiki/Software/systemd/#bugreports⟩. This
page was obtained from the project's upstream Git repository
⟨https://github.com/systemd/systemd.git⟩ on 2018-02-02. (At that
time, the date of the most recent commit that was found in the repos‐
itory was 2018-02-02.) If you discover any rendering problems in
this HTML version of the page, or you believe there is a better or
more up-to-date source for the page, or you have corrections or
improvements to the information in this COLOPHON (which is not part
of the original manual page), send a mail to man-pages@man7.org
systemd 234 MACHINE-ID(5)
Pages that refer to this page: systemd-firstboot(1), systemd-machine-id-setup(1), sd-id128(3), sd_id128_get_machine(3), sd_id128_randomize(3), hostname(5), machine-info(5), networkd.conf(5), os-release(5), systemd.netdev(5), systemd.network(5), systemd.unit(5), tmpfiles.d(5), lvmsystemid(7), systemd.directives(7), systemd.index(7), systemd.journal-fields(7), kernel-install(8), systemd-machine-id-commit.service(8)