sd-id128: add sd_id128_get_boot_app_specific()

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2018-10-02 14:25:24 +02:00
parent ff7dad484c
commit 65d410c7ca
6 changed files with 70 additions and 32 deletions

4
TODO
View File

@ -181,10 +181,6 @@ Features:
* add bpf-based implementation of devices cgroup controller logic for compat * add bpf-based implementation of devices cgroup controller logic for compat
with cgroupsv2 as supported by newest kernel with cgroupsv2 as supported by newest kernel
* introduce sd_id128_get_boot_app_specific() which is like
sd_id128_get_machine_app_specific(). After all on long-running systems both
IDs have similar properties.
* sd-bus: add vtable flag, that may be used to request client creds implicitly * sd-bus: add vtable flag, that may be used to request client creds implicitly
and asynchronously before dispatching the operation and asynchronously before dispatching the operation

View File

@ -438,6 +438,7 @@ manpages = [
['sd_id128_get_machine', ['sd_id128_get_machine',
'3', '3',
['sd_id128_get_boot', ['sd_id128_get_boot',
'sd_id128_get_boot_app_specific',
'sd_id128_get_invocation', 'sd_id128_get_invocation',
'sd_id128_get_machine_app_specific'], 'sd_id128_get_machine_app_specific'],
''], ''],

View File

@ -22,6 +22,7 @@
<refname>sd_id128_get_machine</refname> <refname>sd_id128_get_machine</refname>
<refname>sd_id128_get_machine_app_specific</refname> <refname>sd_id128_get_machine_app_specific</refname>
<refname>sd_id128_get_boot</refname> <refname>sd_id128_get_boot</refname>
<refname>sd_id128_get_boot_app_specific</refname>
<refname>sd_id128_get_invocation</refname> <refname>sd_id128_get_invocation</refname>
<refpurpose>Retrieve 128-bit IDs</refpurpose> <refpurpose>Retrieve 128-bit IDs</refpurpose>
</refnamediv> </refnamediv>
@ -46,6 +47,12 @@
<paramdef>sd_id128_t *<parameter>ret</parameter></paramdef> <paramdef>sd_id128_t *<parameter>ret</parameter></paramdef>
</funcprototype> </funcprototype>
<funcprototype>
<funcdef>int <function>sd_id128_get_boot_app_specific</function></funcdef>
<paramdef>sd_id128_t <parameter>app_id</parameter></paramdef>
<paramdef>sd_id128_t *<parameter>ret</parameter></paramdef>
</funcprototype>
<funcprototype> <funcprototype>
<funcdef>int <function>sd_id128_get_invocation</function></funcdef> <funcdef>int <function>sd_id128_get_invocation</function></funcdef>
<paramdef>sd_id128_t *<parameter>ret</parameter></paramdef> <paramdef>sd_id128_t *<parameter>ret</parameter></paramdef>
@ -69,19 +76,25 @@
<function>sd_id128_get_machine()</function>, but retrieves a machine ID that is specific to the application that is <function>sd_id128_get_machine()</function>, but retrieves a machine ID that is specific to the application that is
identified by the indicated application ID. It is recommended to use this function instead of identified by the indicated application ID. It is recommended to use this function instead of
<function>sd_id128_get_machine()</function> when passing an ID to untrusted environments, in order to make sure <function>sd_id128_get_machine()</function> when passing an ID to untrusted environments, in order to make sure
that the original machine ID may not be determined externally. The application-specific ID should be generated via that the original machine ID may not be determined externally. This way, the ID used by the application remains
a tool like <command>journalctl --new-id128</command>, and may be compiled into the application. This function will stable on a given machine, but cannot be easily correlated with IDs used in other applications on the same
return the same application-specific ID for each combination of machine ID and application ID. Internally, this machine. The application-specific ID should be generated via a tool like <command>journalctl --new-id128</command>,
function calculates HMAC-SHA256 of the application ID, keyed by the machine ID.</para> and may be compiled into the application. This function will return the same application-specific ID for each
combination of machine ID and application ID. Internally, this function calculates HMAC-SHA256 of the application
ID, keyed by the machine ID.</para>
<para><function>sd_id128_get_boot()</function> returns the boot ID <para><function>sd_id128_get_boot()</function> returns the boot ID of the executing kernel. This reads and parses
of the executing kernel. This reads and parses the the <filename>/proc/sys/kernel/random/boot_id</filename> file exposed by the kernel. It is randomly generated early
<filename>/proc/sys/kernel/random/boot_id</filename> file exposed at boot and is unique for every running kernel instance. See <citerefentry
by the kernel. It is randomly generated early at boot and is project='man-pages'><refentrytitle>random</refentrytitle><manvolnum>4</manvolnum></citerefentry> for more
unique for every running kernel instance. See information. This function also internally caches the returned ID to make this call a cheap operation. It is
<citerefentry project='man-pages'><refentrytitle>random</refentrytitle><manvolnum>4</manvolnum></citerefentry> recommended to use this ID as-is only in trusted environments. In untrusted environments it is recommended to
for more information. This function also internally caches the derive an application specific ID using <function>sd_id128_get_machine_app_specific()</function>, see below.</para>
returned ID to make this call a cheap operation.</para>
<para><function>sd_id128_get_boot_app_specific()</function> is analogous to
<function>sd_id128_get_machine_app_specific()</function> but returns an ID that changes between boots. Some
machines may be used for a long time without rebooting, hence the boot ID may remain constant for a long time, and
has properties similar to the machine ID during that time.</para>
<para><function>sd_id128_get_invocation()</function> returns the invocation ID of the currently executed <para><function>sd_id128_get_invocation()</function> returns the invocation ID of the currently executed
service. In its current implementation, this reads and parses the <varname>$INVOCATION_ID</varname> environment service. In its current implementation, this reads and parses the <varname>$INVOCATION_ID</varname> environment
@ -89,10 +102,11 @@
<citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details. The <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry> for details. The
ID is cached internally. In future a different mechanism to determine the invocation ID may be added.</para> ID is cached internally. In future a different mechanism to determine the invocation ID may be added.</para>
<para>Note that <function>sd_id128_get_machine_app_specific()</function>, <function>sd_id128_get_boot()</function> <para>Note that <function>sd_id128_get_machine_app_specific()</function>, <function>sd_id128_get_boot()</function>,
and <function>sd_id128_get_invocation()</function> always return UUID v4 compatible IDs. <function>sd_id128_get_boot_app_specific()</function>, and <function>sd_id128_get_invocation()</function> always
<function>sd_id128_get_machine()</function> will also return a UUID v4-compatible ID on new installations but might return UUID v4 compatible IDs. <function>sd_id128_get_machine()</function> will also return a UUID v4-compatible
not on older. It is possible to convert the machine ID into a UUID v4-compatible one. For more information, see ID on new installations but might not on older. It is possible to convert the machine ID into a UUID v4-compatible
one. For more information, see
<citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para> <citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
<para>For more information about the <literal>sd_id128_t</literal> <para>For more information about the <literal>sd_id128_t</literal>
@ -104,10 +118,12 @@
<title>Return Value</title> <title>Return Value</title>
<para>Those calls return 0 on success (in which case <parameter>ret</parameter> is filled in), <para>Those calls return 0 on success (in which case <parameter>ret</parameter> is filled in),
or a negative errno-style error code. In particular, <function>sd_id128_get_machine()</function> or a negative errno-style error code. In particular,
and <function>sd_id128_get_machine_app_specific()</function> return <constant>-ENOENT</constant> <function>sd_id128_get_machine()</function>,
if <filename>/etc/machine-id</filename> is missing, and <constant>-ENOMEDIUM</constant> if is <function>sd_id128_get_machine_app_specific()</function>, and
empty or all zeros.</para> <function>sd_id128_get_boot_app_specific()</function> return <constant>-ENOENT</constant> if
<filename>/etc/machine-id</filename> is missing, and <constant>-ENOMEDIUM</constant> if is empty
or all zeros.</para>
</refsect1> </refsect1>
<xi:include href="libsystemd-pkgconfig.xml" /> <xi:include href="libsystemd-pkgconfig.xml" />

View File

@ -648,4 +648,6 @@ global:
sd_hwdb_enumerate; sd_hwdb_enumerate;
sd_hwdb_unrefp; sd_hwdb_unrefp;
sd_id128_get_boot_app_specific;
} LIBSYSTEMD_239; } LIBSYSTEMD_239;

View File

@ -284,19 +284,15 @@ _public_ int sd_id128_randomize(sd_id128_t *ret) {
return 0; return 0;
} }
_public_ int sd_id128_get_machine_app_specific(sd_id128_t app_id, sd_id128_t *ret) { static int get_app_specific(sd_id128_t base, sd_id128_t app_id, sd_id128_t *ret) {
_cleanup_(khash_unrefp) khash *h = NULL; _cleanup_(khash_unrefp) khash *h = NULL;
sd_id128_t m, result; sd_id128_t result;
const void *p; const void *p;
int r; int r;
assert_return(ret, -EINVAL); assert(ret);
r = sd_id128_get_machine(&m); r = khash_new_with_key(&h, "hmac(sha256)", &base, sizeof(base));
if (r < 0)
return r;
r = khash_new_with_key(&h, "hmac(sha256)", &m, sizeof(m));
if (r < 0) if (r < 0)
return r; return r;
@ -314,3 +310,29 @@ _public_ int sd_id128_get_machine_app_specific(sd_id128_t app_id, sd_id128_t *re
*ret = make_v4_uuid(result); *ret = make_v4_uuid(result);
return 0; return 0;
} }
_public_ int sd_id128_get_machine_app_specific(sd_id128_t app_id, sd_id128_t *ret) {
sd_id128_t id;
int r;
assert_return(ret, -EINVAL);
r = sd_id128_get_machine(&id);
if (r < 0)
return r;
return get_app_specific(id, app_id, ret);
}
_public_ int sd_id128_get_boot_app_specific(sd_id128_t app_id, sd_id128_t *ret) {
sd_id128_t id;
int r;
assert_return(ret, -EINVAL);
r = sd_id128_get_boot(&id);
if (r < 0)
return r;
return get_app_specific(id, app_id, ret);
}

View File

@ -42,6 +42,7 @@ int sd_id128_randomize(sd_id128_t *ret);
int sd_id128_get_machine(sd_id128_t *ret); int sd_id128_get_machine(sd_id128_t *ret);
int sd_id128_get_machine_app_specific(sd_id128_t app_id, sd_id128_t *ret); int sd_id128_get_machine_app_specific(sd_id128_t app_id, sd_id128_t *ret);
int sd_id128_get_boot_app_specific(sd_id128_t app_id, sd_id128_t *ret);
int sd_id128_get_boot(sd_id128_t *ret); int sd_id128_get_boot(sd_id128_t *ret);
int sd_id128_get_invocation(sd_id128_t *ret); int sd_id128_get_invocation(sd_id128_t *ret);