Blame SOURCES/0380-commands-setpci-Restrict-setpci-command-when-locked-.patch

9723a8
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
9723a8
From: Javier Martinez Canillas <javierm@redhat.com>
9723a8
Date: Wed, 24 Feb 2021 22:59:59 +0100
9723a8
Subject: [PATCH] commands/setpci: Restrict setpci command when locked down
9723a8
9723a8
This command can set PCI devices register values, which makes it dangerous
9723a8
in a locked down configuration. Restrict it so can't be used on this setup.
9723a8
9723a8
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
9723a8
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
9723a8
---
9723a8
 grub-core/commands/setpci.c | 8 ++++----
9723a8
 1 file changed, 4 insertions(+), 4 deletions(-)
9723a8
9723a8
diff --git a/grub-core/commands/setpci.c b/grub-core/commands/setpci.c
b71686
index d5bc97d60..fa2ba7d89 100644
9723a8
--- a/grub-core/commands/setpci.c
9723a8
+++ b/grub-core/commands/setpci.c
9723a8
@@ -329,10 +329,10 @@ static grub_extcmd_t cmd;
9723a8
 
9723a8
 GRUB_MOD_INIT(setpci)
9723a8
 {
9723a8
-  cmd = grub_register_extcmd ("setpci", grub_cmd_setpci, 0,
9723a8
-			      N_("[-s POSITION] [-d DEVICE] [-v VAR] "
9723a8
-				 "REGISTER[=VALUE[:MASK]]"),
9723a8
-			      N_("Manipulate PCI devices."), options);
9723a8
+  cmd = grub_register_extcmd_lockdown ("setpci", grub_cmd_setpci, 0,
9723a8
+				       N_("[-s POSITION] [-d DEVICE] [-v VAR] "
9723a8
+					  "REGISTER[=VALUE[:MASK]]"),
9723a8
+				       N_("Manipulate PCI devices."), options);
9723a8
 }
9723a8
 
9723a8
 GRUB_MOD_FINI(setpci)