aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Doucha <mdoucha@suse.cz>2021-01-12 10:57:58 +0100
committerCyril Hrubis <chrubis@suse.cz>2021-01-14 14:59:03 +0100
commit68eb3e89ba13ff322f6fecb05605e82fd9774758 (patch)
tree0b5382f8420a844d420a761f151784595df36f0a
parentee50c28a6ad4ae2ceea494370ce88f8be31c8521 (diff)
Add tst_secureboot_enabled() helper function
Also check for SecureBoot status in tst_lockdown_enabled() if the lockdown sysfile is not available/readable and the kernel is configured to enable lockdown automatically under SecureBoot. Signed-off-by: Martin Doucha <mdoucha@suse.cz> Reviewed-by: Li Wang <liwang@redhat.com> Reviewed-by: Cyril Hrubis <chrubis@suse.cz>
-rw-r--r--include/tst_lockdown.h1
-rw-r--r--lib/tst_lockdown.c38
2 files changed, 39 insertions, 0 deletions
diff --git a/include/tst_lockdown.h b/include/tst_lockdown.h
index 78eaeccea..172a7daf5 100644
--- a/include/tst_lockdown.h
+++ b/include/tst_lockdown.h
@@ -5,6 +5,7 @@
#define PATH_LOCKDOWN "/sys/kernel/security/lockdown"
+int tst_secureboot_enabled(void);
int tst_lockdown_enabled(void);
#endif /* TST_LOCKDOWN_H */
diff --git a/lib/tst_lockdown.c b/lib/tst_lockdown.c
index e7c19813c..cda7d7abd 100644
--- a/lib/tst_lockdown.c
+++ b/lib/tst_lockdown.c
@@ -10,6 +10,36 @@
#include "tst_safe_macros.h"
#include "tst_safe_stdio.h"
#include "tst_lockdown.h"
+#include "tst_private.h"
+
+#define EFIVAR_SECUREBOOT "/sys/firmware/efi/efivars/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c"
+
+int tst_secureboot_enabled(void)
+{
+ int fd;
+ char data[5];
+
+ if (access(EFIVAR_SECUREBOOT, F_OK)) {
+ tst_res(TINFO, "Efivar FS not available");
+ return -1;
+ }
+
+ fd = open(EFIVAR_SECUREBOOT, O_RDONLY);
+
+ if (fd == -1) {
+ tst_res(TINFO | TERRNO,
+ "Cannot open SecureBoot Efivar sysfile");
+ return -1;
+ } else if (fd < 0) {
+ tst_brk(TBROK | TERRNO, "Invalid open() return value %d", fd);
+ return -1;
+ }
+
+ SAFE_READ(1, fd, data, 5);
+ SAFE_CLOSE(fd);
+ tst_res(TINFO, "SecureBoot: %s", data[4] ? "on" : "off");
+ return data[4];
+}
int tst_lockdown_enabled(void)
{
@@ -17,6 +47,14 @@ int tst_lockdown_enabled(void)
FILE *file;
if (access(PATH_LOCKDOWN, F_OK) != 0) {
+ char flag;
+
+ flag = tst_kconfig_get("CONFIG_EFI_SECURE_BOOT_LOCK_DOWN");
+
+ /* SecureBoot enabled could mean integrity lockdown */
+ if (flag == 'y' && tst_secureboot_enabled() > 0)
+ return 1;
+
tst_res(TINFO, "Unable to determine system lockdown state");
return 0;
}