summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/systemd-analyze.xml40
-rw-r--r--man/systemd-creds.xml25
-rw-r--r--src/analyze/analyze-has-tpm2.c9
-rw-r--r--src/analyze/analyze-has-tpm2.h4
-rw-r--r--src/analyze/analyze.c3
-rw-r--r--src/analyze/meson.build1
-rw-r--r--src/creds/creds.c34
-rw-r--r--src/shared/tpm2-util.c32
-rw-r--r--src/shared/tpm2-util.h2
-rwxr-xr-xtest/units/TEST-65-ANALYZE.sh7
10 files changed, 103 insertions, 54 deletions
diff --git a/man/systemd-analyze.xml b/man/systemd-analyze.xml
index e0fb212239..10518dc791 100644
--- a/man/systemd-analyze.xml
+++ b/man/systemd-analyze.xml
@@ -180,6 +180,11 @@
<cmdsynopsis>
<command>systemd-analyze</command>
<arg choice="opt" rep="repeat">OPTIONS</arg>
+ <arg choice="plain">has-tpm2</arg>
+ </cmdsynopsis>
+ <cmdsynopsis>
+ <command>systemd-analyze</command>
+ <arg choice="opt" rep="repeat">OPTIONS</arg>
<arg choice="plain">pcrs</arg>
<arg choice="opt" rep="repeat"><replaceable>PCR</replaceable></arg>
</cmdsynopsis>
@@ -949,6 +954,35 @@ default ignore - -</programlisting>
</refsect2>
<refsect2>
+ <title><command>systemd-analyze has-tpm2</command></title>
+
+ <para>Reports whether the system is equipped with a usable TPM2 device. If a TPM2 device has been
+ discovered, is supported, and is being used by firmware, by the OS kernel drivers and by userspace
+ (i.e. systemd) this prints <literal>yes</literal> and exits with exit status zero. If no such device is
+ discovered/supported/used, prints <literal>no</literal>. Otherwise prints
+ <literal>partial</literal>. In either of these two cases exits with non-zero exit status. It also shows
+ five lines indicating separately whether firmware, drivers, the system, the kernel and libraries
+ discovered/support/use TPM2.</para>
+
+ <para>Note, this checks for TPM 2.0 devices only, and does not consider TPM 1.2 at all.</para>
+
+ <para>Combine with <option>--quiet</option> to suppress the output.</para>
+
+ <example>
+ <title>Example Output</title>
+
+ <programlisting>yes
++firmware
++driver
++system
++subsystem
++libraries</programlisting>
+ </example>
+
+ <xi:include href="version-info.xml" xpointer="v257"/>
+ </refsect2>
+
+ <refsect2>
<title><command>systemd-analyze pcrs <optional><replaceable>PCR</replaceable>…</optional></command></title>
<para>This command shows the known TPM2 PCRs along with their identifying names and current values.</para>
@@ -1653,6 +1687,12 @@ io.systemd.credential:vmm.notify_socket=vsock-stream:2:254570042
<constant>12</constant>, <constant>0</constant>, <constant>11</constant> is returned if the second
version string is respectively larger, equal, or smaller to the first. In the three-argument form,
<constant>0</constant> or <constant>1</constant> if the condition is respectively true or false.</para>
+
+ <para>In case of the <command>has-tpm2</command> command returns 0 if a TPM2 device is discovered,
+ supported and used by firmware, driver, and userspace (i.e. systemd). Otherwise returns the OR
+ combination of the value 1 (in case firmware support is missing), 2 (in case driver support is missing)
+ and 4 (in case userspace support is missing). If no TPM2 support is available at all, value 7 is hence
+ returned.</para>
</refsect1>
<xi:include href="common-variables.xml" />
diff --git a/man/systemd-creds.xml b/man/systemd-creds.xml
index c8419d357a..8f972eeffb 100644
--- a/man/systemd-creds.xml
+++ b/man/systemd-creds.xml
@@ -177,22 +177,6 @@
<xi:include href="version-info.xml" xpointer="v250"/></listitem>
</varlistentry>
- <varlistentry>
- <term><command>has-tpm2</command></term>
-
- <listitem><para>Reports whether the system is equipped with a TPM2 device usable for protecting
- credentials. If a TPM2 device has been discovered, is supported, and is being used by firmware,
- by the OS kernel drivers and by userspace (i.e. systemd) this prints <literal>yes</literal> and exits
- with exit status zero. If no such device is discovered/supported/used, prints
- <literal>no</literal>. Otherwise prints <literal>partial</literal>. In either of these two cases
- exits with non-zero exit status. It also shows four lines indicating separately whether firmware,
- drivers, the system and the kernel discovered/support/use TPM2.</para>
-
- <para>Combine with <option>--quiet</option> to suppress the output.</para>
-
- <xi:include href="version-info.xml" xpointer="v251"/></listitem>
- </varlistentry>
-
<xi:include href="standard-options.xml" xpointer="help" />
<xi:include href="standard-options.xml" xpointer="version" />
</variablelist>
@@ -445,8 +429,7 @@
<term><option>--quiet</option></term>
<term><option>-q</option></term>
- <listitem><para>When used with <command>has-tpm2</command> suppresses the output, and only returns an
- exit status indicating support for TPM2.</para>
+ <listitem><para>Suppress additional output.</para>
<xi:include href="version-info.xml" xpointer="v251"/></listitem>
</varlistentry>
@@ -461,12 +444,6 @@
<title>Exit status</title>
<para>On success, 0 is returned.</para>
-
- <para>In case of the <command>has-tpm2</command> command returns 0 if a TPM2 device is discovered,
- supported and used by firmware, driver, and userspace (i.e. systemd). Otherwise returns the OR
- combination of the value 1 (in case firmware support is missing), 2 (in case driver support is missing)
- and 4 (in case userspace support is missing). If no TPM2 support is available at all, value 7 is hence
- returned.</para>
</refsect1>
<refsect1>
diff --git a/src/analyze/analyze-has-tpm2.c b/src/analyze/analyze-has-tpm2.c
new file mode 100644
index 0000000000..3e13be9f16
--- /dev/null
+++ b/src/analyze/analyze-has-tpm2.c
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+
+#include "analyze.h"
+#include "analyze-has-tpm2.h"
+#include "tpm2-util.h"
+
+int verb_has_tpm2(int argc, char **argv, void *userdata) {
+ return verb_has_tpm2_generic(arg_quiet);
+}
diff --git a/src/analyze/analyze-has-tpm2.h b/src/analyze/analyze-has-tpm2.h
new file mode 100644
index 0000000000..c7c639228d
--- /dev/null
+++ b/src/analyze/analyze-has-tpm2.h
@@ -0,0 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+#pragma once
+
+int verb_has_tpm2(int argc, char *argv[], void *userdata);
diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c
index 1e199e30b7..24188311ff 100644
--- a/src/analyze/analyze.c
+++ b/src/analyze/analyze.c
@@ -26,6 +26,7 @@
#include "analyze-exit-status.h"
#include "analyze-fdstore.h"
#include "analyze-filesystems.h"
+#include "analyze-has-tpm2.h"
#include "analyze-image-policy.h"
#include "analyze-inspect-elf.h"
#include "analyze-log-control.h"
@@ -253,6 +254,7 @@ static int help(int argc, char *argv[], void *userdata) {
"\n%3$sExecutable Analysis:%4$s\n"
" inspect-elf FILE... Parse and print ELF package metadata\n"
"\n%3$sTPM Operations:%4$s\n"
+ " has-tpm2 Report whether TPM2 support is available\n"
" pcrs [PCR...] Show TPM2 PCRs and their names\n"
" srk [>FILE] Write TPM2 SRK (to FILE)\n"
"\n%3$sOptions:%4$s\n"
@@ -700,6 +702,7 @@ static int run(int argc, char *argv[]) {
{ "malloc", VERB_ANY, VERB_ANY, 0, verb_malloc },
{ "fdstore", 2, VERB_ANY, 0, verb_fdstore },
{ "image-policy", 2, 2, 0, verb_image_policy },
+ { "has-tpm2", VERB_ANY, 1, 0, verb_has_tpm2 },
{ "pcrs", VERB_ANY, VERB_ANY, 0, verb_pcrs },
{ "srk", VERB_ANY, 1, 0, verb_srk },
{ "architectures", VERB_ANY, VERB_ANY, 0, verb_architectures },
diff --git a/src/analyze/meson.build b/src/analyze/meson.build
index a307923c22..c42db1a633 100644
--- a/src/analyze/meson.build
+++ b/src/analyze/meson.build
@@ -14,6 +14,7 @@ systemd_analyze_sources = files(
'analyze-exit-status.c',
'analyze-fdstore.c',
'analyze-filesystems.c',
+ 'analyze-has-tpm2.c',
'analyze-image-policy.c',
'analyze-inspect-elf.c',
'analyze-log-control.c',
diff --git a/src/creds/creds.c b/src/creds/creds.c
index 7eec323b9f..2e28ff3e0a 100644
--- a/src/creds/creds.c
+++ b/src/creds/creds.c
@@ -7,6 +7,7 @@
#include "sd-varlink.h"
#include "build.h"
+#include "build-path.h"
#include "bus-polkit.h"
#include "creds-util.h"
#include "dirent-util.h"
@@ -690,35 +691,10 @@ static int verb_setup(int argc, char **argv, void *userdata) {
}
static int verb_has_tpm2(int argc, char **argv, void *userdata) {
- Tpm2Support s;
+ if (!arg_quiet)
+ log_notice("The 'systemd-creds %1$s' command has been replaced by 'systemd-analyze %1$s'. Redirecting invocation.", argv[optind]);
- s = tpm2_support();
-
- if (!arg_quiet) {
- if (s == TPM2_SUPPORT_FULL)
- puts("yes");
- else if (s == TPM2_SUPPORT_NONE)
- puts("no");
- else
- puts("partial");
-
- printf("%sfirmware\n"
- "%sdriver\n"
- "%ssystem\n"
- "%ssubsystem\n"
- "%slibraries\n",
- plus_minus(s & TPM2_SUPPORT_FIRMWARE),
- plus_minus(s & TPM2_SUPPORT_DRIVER),
- plus_minus(s & TPM2_SUPPORT_SYSTEM),
- plus_minus(s & TPM2_SUPPORT_SUBSYSTEM),
- plus_minus(s & TPM2_SUPPORT_LIBRARIES));
- }
-
- /* Return inverted bit flags. So that TPM2_SUPPORT_FULL becomes EXIT_SUCCESS and the other values
- * become some reasonable values 1…7. i.e. the flags we return here tell what is missing rather than
- * what is there, acknowledging the fact that for process exit statuses it is customary to return
- * zero (EXIT_FAILURE) when all is good, instead of all being bad. */
- return ~s & TPM2_SUPPORT_FULL;
+ return verb_has_tpm2_generic(arg_quiet);
}
static int verb_help(int argc, char **argv, void *userdata) {
@@ -739,7 +715,6 @@ static int verb_help(int argc, char **argv, void *userdata) {
" ciphertext credential file\n"
" decrypt INPUT [OUTPUT] Decrypt ciphertext credential file and write to\n"
" plaintext credential file\n"
- " has-tpm2 Report whether TPM2 support is available\n"
" -h --help Show this help\n"
" --version Show package version\n"
"\n%3$sOptions:%4$s\n"
@@ -774,7 +749,6 @@ static int verb_help(int argc, char **argv, void *userdata) {
" --user Select user-scoped credential encryption\n"
" --uid=UID Select user for scoped credentials\n"
" --allow-null Allow decrypting credentials with empty key\n"
- " -q --quiet Suppress output for 'has-tpm2' verb\n"
"\nSee the %2$s for details.\n",
program_invocation_short_name,
link,
diff --git a/src/shared/tpm2-util.c b/src/shared/tpm2-util.c
index 10de296124..38e4da4012 100644
--- a/src/shared/tpm2-util.c
+++ b/src/shared/tpm2-util.c
@@ -7907,6 +7907,38 @@ Tpm2Support tpm2_support(void) {
return support;
}
+int verb_has_tpm2_generic(bool quiet) {
+ Tpm2Support s;
+
+ s = tpm2_support();
+
+ if (!quiet) {
+ if (s == TPM2_SUPPORT_FULL)
+ puts("yes");
+ else if (s == TPM2_SUPPORT_NONE)
+ puts("no");
+ else
+ puts("partial");
+
+ printf("%sfirmware\n"
+ "%sdriver\n"
+ "%ssystem\n"
+ "%ssubsystem\n"
+ "%slibraries\n",
+ plus_minus(s & TPM2_SUPPORT_FIRMWARE),
+ plus_minus(s & TPM2_SUPPORT_DRIVER),
+ plus_minus(s & TPM2_SUPPORT_SYSTEM),
+ plus_minus(s & TPM2_SUPPORT_SUBSYSTEM),
+ plus_minus(s & TPM2_SUPPORT_LIBRARIES));
+ }
+
+ /* Return inverted bit flags. So that TPM2_SUPPORT_FULL becomes EXIT_SUCCESS and the other values
+ * become some reasonable values 1…7. i.e. the flags we return here tell what is missing rather than
+ * what is there, acknowledging the fact that for process exit statuses it is customary to return
+ * zero (EXIT_FAILURE) when all is good, instead of all being bad. */
+ return ~s & TPM2_SUPPORT_FULL;
+}
+
#if HAVE_TPM2
static void tpm2_pcr_values_apply_default_hash_alg(Tpm2PCRValue *pcr_values, size_t n_pcr_values) {
TPMI_ALG_HASH default_hash = 0;
diff --git a/src/shared/tpm2-util.h b/src/shared/tpm2-util.h
index 6ab6c00af3..31ce2e89db 100644
--- a/src/shared/tpm2-util.h
+++ b/src/shared/tpm2-util.h
@@ -463,6 +463,8 @@ typedef enum Tpm2Support {
Tpm2Support tpm2_support(void);
+int verb_has_tpm2_generic(bool quiet);
+
int tpm2_parse_pcr_argument(const char *arg, Tpm2PCRValue **ret_pcr_values, size_t *ret_n_pcr_values);
int tpm2_parse_pcr_argument_append(const char *arg, Tpm2PCRValue **ret_pcr_values, size_t *ret_n_pcr_values);
int tpm2_parse_pcr_argument_to_mask(const char *arg, uint32_t *mask);
diff --git a/test/units/TEST-65-ANALYZE.sh b/test/units/TEST-65-ANALYZE.sh
index 9fc2de1a21..db1cc585c7 100755
--- a/test/units/TEST-65-ANALYZE.sh
+++ b/test/units/TEST-65-ANALYZE.sh
@@ -965,6 +965,13 @@ systemd-analyze condition --instance=tmp --unit=systemd-growfs@.service
systemd-analyze verify --instance=tmp --man=no systemd-growfs@.service
systemd-analyze security --instance=tmp systemd-growfs@.service
+systemd-analyze has-tpm2 ||:
+if systemd-analyze has-tpm2 -q ; then
+ echo "have tpm2"
+else
+ echo "have no tpm2"
+fi
+
systemd-analyze log-level info
touch /testok