2016-03-04 20:28:21 +00:00
|
|
|
From 6bcfc6f286d099a26cc0c7a00a6458d1d7993485 Mon Sep 17 00:00:00 2001
|
2016-03-04 18:32:29 +00:00
|
|
|
From: Matthew Garrett <mjg59@coreos.com>
|
|
|
|
Date: Sun, 9 Aug 2015 16:32:29 -0700
|
2016-03-04 20:28:21 +00:00
|
|
|
Subject: [PATCH 83/85] Measure the kernel commandline
|
2016-03-04 18:32:29 +00:00
|
|
|
|
|
|
|
Measure the kernel commandline to ensure that it hasn't been modified
|
|
|
|
---
|
|
|
|
grub-core/lib/cmdline.c | 6 +++++-
|
|
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/lib/cmdline.c b/grub-core/lib/cmdline.c
|
|
|
|
index 970ea86..6b56304 100644
|
|
|
|
--- a/grub-core/lib/cmdline.c
|
|
|
|
+++ b/grub-core/lib/cmdline.c
|
|
|
|
@@ -19,6 +19,7 @@
|
|
|
|
|
|
|
|
#include <grub/lib/cmdline.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
+#include <grub/tpm.h>
|
|
|
|
|
|
|
|
static int
|
|
|
|
is_hex(char c)
|
|
|
|
@@ -79,7 +80,7 @@ int grub_create_loader_cmdline (int argc, char *argv[], char *buf,
|
|
|
|
{
|
|
|
|
int i, space;
|
|
|
|
unsigned int arg_size;
|
|
|
|
- char *c;
|
|
|
|
+ char *c, *orig = buf;
|
|
|
|
|
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
{
|
|
|
|
@@ -125,5 +126,8 @@ int grub_create_loader_cmdline (int argc, char *argv[], char *buf,
|
|
|
|
|
|
|
|
*buf = 0;
|
|
|
|
|
|
|
|
+ grub_tpm_measure ((void *)orig, grub_strlen (orig), GRUB_CMDLINE_PCR,
|
|
|
|
+ "Kernel Commandline");
|
|
|
|
+
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
--
|
|
|
|
2.5.0
|
|
|
|
|