All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Lendacky <thomas.lendacky@amd.com>
To: <linux-arch@vger.kernel.org>, <linux-efi@vger.kernel.org>,
	<kvm@vger.kernel.org>, <linux-doc@vger.kernel.org>,
	<x86@kernel.org>, <kexec@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <kasan-dev@googlegroups.com>,
	<linux-mm@kvack.org>, <iommu@lists.linux-foundation.org>
Cc: "Rik van Riel" <riel@redhat.com>,
	"Radim Krčmář" <rkrcmar@redhat.com>,
	"Toshimitsu Kani" <toshi.kani@hpe.com>,
	"Arnd Bergmann" <arnd@arndb.de>,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Matt Fleming" <matt@codeblueprint.co.uk>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Joerg Roedel" <joro@8bytes.org>,
	"Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Larry Woodman" <lwoodman@redhat.com>,
	"Brijesh Singh" <brijesh.singh@amd.com>,
	"Ingo Molnar" <mingo@redhat.com>,
	"Borislav Petkov" <bp@alien8.de>,
	"Andy Lutomirski" <luto@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Andrey Ryabinin" <aryabinin@virtuozzo.com>,
	"Alexander Potapenko" <glider@google.com>,
	"Dave Young" <dyoung@redhat.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Dmitry Vyukov" <dvyukov@google.com>
Subject: [PATCH v5 30/32] x86/boot: Add early cmdline parsing for options with arguments
Date: Tue, 18 Apr 2017 16:22:00 -0500	[thread overview]
Message-ID: <20170418212200.10190.18044.stgit@tlendack-t1.amdoffice.net> (raw)
In-Reply-To: <20170418211612.10190.82788.stgit@tlendack-t1.amdoffice.net>

Add a cmdline_find_option() function to look for cmdline options that
take arguments. The argument is returned in a supplied buffer and the
argument length (regardless of whether it fits in the supplied buffer)
is returned, with -1 indicating not found.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
---
 arch/x86/include/asm/cmdline.h |    2 +
 arch/x86/lib/cmdline.c         |  105 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)

diff --git a/arch/x86/include/asm/cmdline.h b/arch/x86/include/asm/cmdline.h
index e01f7f7..84ae170 100644
--- a/arch/x86/include/asm/cmdline.h
+++ b/arch/x86/include/asm/cmdline.h
@@ -2,5 +2,7 @@
 #define _ASM_X86_CMDLINE_H
 
 int cmdline_find_option_bool(const char *cmdline_ptr, const char *option);
+int cmdline_find_option(const char *cmdline_ptr, const char *option,
+			char *buffer, int bufsize);
 
 #endif /* _ASM_X86_CMDLINE_H */
diff --git a/arch/x86/lib/cmdline.c b/arch/x86/lib/cmdline.c
index 5cc78bf..3261abb 100644
--- a/arch/x86/lib/cmdline.c
+++ b/arch/x86/lib/cmdline.c
@@ -104,7 +104,112 @@ static inline int myisspace(u8 c)
 	return 0;	/* Buffer overrun */
 }
 
+/*
+ * Find a non-boolean option (i.e. option=argument). In accordance with
+ * standard Linux practice, if this option is repeated, this returns the
+ * last instance on the command line.
+ *
+ * @cmdline: the cmdline string
+ * @max_cmdline_size: the maximum size of cmdline
+ * @option: option string to look for
+ * @buffer: memory buffer to return the option argument
+ * @bufsize: size of the supplied memory buffer
+ *
+ * Returns the length of the argument (regardless of if it was
+ * truncated to fit in the buffer), or -1 on not found.
+ */
+static int
+__cmdline_find_option(const char *cmdline, int max_cmdline_size,
+		      const char *option, char *buffer, int bufsize)
+{
+	char c;
+	int pos = 0, len = -1;
+	const char *opptr = NULL;
+	char *bufptr = buffer;
+	enum {
+		st_wordstart = 0,	/* Start of word/after whitespace */
+		st_wordcmp,	/* Comparing this word */
+		st_wordskip,	/* Miscompare, skip */
+		st_bufcpy,	/* Copying this to buffer */
+	} state = st_wordstart;
+
+	if (!cmdline)
+		return -1;      /* No command line */
+
+	/*
+	 * This 'pos' check ensures we do not overrun
+	 * a non-NULL-terminated 'cmdline'
+	 */
+	while (pos++ < max_cmdline_size) {
+		c = *(char *)cmdline++;
+		if (!c)
+			break;
+
+		switch (state) {
+		case st_wordstart:
+			if (myisspace(c))
+				break;
+
+			state = st_wordcmp;
+			opptr = option;
+			/* fall through */
+
+		case st_wordcmp:
+			if ((c == '=') && !*opptr) {
+				/*
+				 * We matched all the way to the end of the
+				 * option we were looking for, prepare to
+				 * copy the argument.
+				 */
+				len = 0;
+				bufptr = buffer;
+				state = st_bufcpy;
+				break;
+			} else if (c == *opptr++) {
+				/*
+				 * We are currently matching, so continue
+				 * to the next character on the cmdline.
+				 */
+				break;
+			}
+			state = st_wordskip;
+			/* fall through */
+
+		case st_wordskip:
+			if (myisspace(c))
+				state = st_wordstart;
+			break;
+
+		case st_bufcpy:
+			if (myisspace(c)) {
+				state = st_wordstart;
+			} else {
+				/*
+				 * Increment len, but don't overrun the
+				 * supplied buffer and leave room for the
+				 * NULL terminator.
+				 */
+				if (++len < bufsize)
+					*bufptr++ = c;
+			}
+			break;
+		}
+	}
+
+	if (bufsize)
+		*bufptr = '\0';
+
+	return len;
+}
+
 int cmdline_find_option_bool(const char *cmdline, const char *option)
 {
 	return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option);
 }
+
+int cmdline_find_option(const char *cmdline, const char *option, char *buffer,
+			int bufsize)
+{
+	return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option,
+				     buffer, bufsize);
+}

WARNING: multiple messages have this Message-ID (diff)
From: Tom Lendacky <thomas.lendacky@amd.com>
To: linux-arch@vger.kernel.org, linux-efi@vger.kernel.org,
	kvm@vger.kernel.org, linux-doc@vger.kernel.org, x86@kernel.org,
	kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
	kasan-dev@googlegroups.com, linux-mm@kvack.org,
	iommu@lists.linux-foundation.org
Cc: "Rik van Riel" <riel@redhat.com>,
	"Radim Krčmář" <rkrcmar@redhat.com>,
	"Toshimitsu Kani" <toshi.kani@hpe.com>,
	"Arnd Bergmann" <arnd@arndb.de>,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Matt Fleming" <matt@codeblueprint.co.uk>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Joerg Roedel" <joro@8bytes.org>,
	"Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Larry Woodman" <lwoodman@redhat.com>,
	"Brijesh Singh" <brijesh.singh@amd.com>,
	"Ingo Molnar" <mingo@redhat.com>,
	"Borislav Petkov" <bp@alien8.de>,
	"Andy Lutomirski" <luto@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Andrey Ryabinin" <aryabinin@virtuozzo.com>,
	"Alexander Potapenko" <glider@google.com>,
	"Dave Young" <dyoung@redhat.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Dmitry Vyukov" <dvyukov@google.com>
Subject: [PATCH v5 30/32] x86/boot: Add early cmdline parsing for options with arguments
Date: Tue, 18 Apr 2017 16:22:00 -0500	[thread overview]
Message-ID: <20170418212200.10190.18044.stgit@tlendack-t1.amdoffice.net> (raw)
In-Reply-To: <20170418211612.10190.82788.stgit@tlendack-t1.amdoffice.net>

Add a cmdline_find_option() function to look for cmdline options that
take arguments. The argument is returned in a supplied buffer and the
argument length (regardless of whether it fits in the supplied buffer)
is returned, with -1 indicating not found.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
---
 arch/x86/include/asm/cmdline.h |    2 +
 arch/x86/lib/cmdline.c         |  105 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)

diff --git a/arch/x86/include/asm/cmdline.h b/arch/x86/include/asm/cmdline.h
index e01f7f7..84ae170 100644
--- a/arch/x86/include/asm/cmdline.h
+++ b/arch/x86/include/asm/cmdline.h
@@ -2,5 +2,7 @@
 #define _ASM_X86_CMDLINE_H
 
 int cmdline_find_option_bool(const char *cmdline_ptr, const char *option);
+int cmdline_find_option(const char *cmdline_ptr, const char *option,
+			char *buffer, int bufsize);
 
 #endif /* _ASM_X86_CMDLINE_H */
diff --git a/arch/x86/lib/cmdline.c b/arch/x86/lib/cmdline.c
index 5cc78bf..3261abb 100644
--- a/arch/x86/lib/cmdline.c
+++ b/arch/x86/lib/cmdline.c
@@ -104,7 +104,112 @@ static inline int myisspace(u8 c)
 	return 0;	/* Buffer overrun */
 }
 
+/*
+ * Find a non-boolean option (i.e. option=argument). In accordance with
+ * standard Linux practice, if this option is repeated, this returns the
+ * last instance on the command line.
+ *
+ * @cmdline: the cmdline string
+ * @max_cmdline_size: the maximum size of cmdline
+ * @option: option string to look for
+ * @buffer: memory buffer to return the option argument
+ * @bufsize: size of the supplied memory buffer
+ *
+ * Returns the length of the argument (regardless of if it was
+ * truncated to fit in the buffer), or -1 on not found.
+ */
+static int
+__cmdline_find_option(const char *cmdline, int max_cmdline_size,
+		      const char *option, char *buffer, int bufsize)
+{
+	char c;
+	int pos = 0, len = -1;
+	const char *opptr = NULL;
+	char *bufptr = buffer;
+	enum {
+		st_wordstart = 0,	/* Start of word/after whitespace */
+		st_wordcmp,	/* Comparing this word */
+		st_wordskip,	/* Miscompare, skip */
+		st_bufcpy,	/* Copying this to buffer */
+	} state = st_wordstart;
+
+	if (!cmdline)
+		return -1;      /* No command line */
+
+	/*
+	 * This 'pos' check ensures we do not overrun
+	 * a non-NULL-terminated 'cmdline'
+	 */
+	while (pos++ < max_cmdline_size) {
+		c = *(char *)cmdline++;
+		if (!c)
+			break;
+
+		switch (state) {
+		case st_wordstart:
+			if (myisspace(c))
+				break;
+
+			state = st_wordcmp;
+			opptr = option;
+			/* fall through */
+
+		case st_wordcmp:
+			if ((c == '=') && !*opptr) {
+				/*
+				 * We matched all the way to the end of the
+				 * option we were looking for, prepare to
+				 * copy the argument.
+				 */
+				len = 0;
+				bufptr = buffer;
+				state = st_bufcpy;
+				break;
+			} else if (c == *opptr++) {
+				/*
+				 * We are currently matching, so continue
+				 * to the next character on the cmdline.
+				 */
+				break;
+			}
+			state = st_wordskip;
+			/* fall through */
+
+		case st_wordskip:
+			if (myisspace(c))
+				state = st_wordstart;
+			break;
+
+		case st_bufcpy:
+			if (myisspace(c)) {
+				state = st_wordstart;
+			} else {
+				/*
+				 * Increment len, but don't overrun the
+				 * supplied buffer and leave room for the
+				 * NULL terminator.
+				 */
+				if (++len < bufsize)
+					*bufptr++ = c;
+			}
+			break;
+		}
+	}
+
+	if (bufsize)
+		*bufptr = '\0';
+
+	return len;
+}
+
 int cmdline_find_option_bool(const char *cmdline, const char *option)
 {
 	return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option);
 }
+
+int cmdline_find_option(const char *cmdline, const char *option, char *buffer,
+			int bufsize)
+{
+	return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option,
+				     buffer, bufsize);
+}

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Tom Lendacky <thomas.lendacky@amd.com>
To: linux-arch@vger.kernel.org, linux-efi@vger.kernel.org,
	kvm@vger.kernel.org, linux-doc@vger.kernel.org, x86@kernel.org,
	kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
	kasan-dev@googlegroups.com, linux-mm@kvack.org,
	iommu@lists.linux-foundation.org
Cc: "Rik van Riel" <riel@redhat.com>,
	"Radim Krčmář" <rkrcmar@redhat.com>,
	"Toshimitsu Kani" <toshi.kani@hpe.com>,
	"Arnd Bergmann" <arnd@arndb.de>,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Matt Fleming" <matt@codeblueprint.co.uk>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Joerg Roedel" <joro@8bytes.org>,
	"Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Larry Woodman" <lwoodman@redhat.com>,
	"Brijesh Singh" <brijesh.singh@amd.com>,
	"Ingo Molnar" <mingo@redhat.com>,
	"Borislav Petkov" <bp@alien8.de>,
	"Andy Lutomirski" <luto@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Andrey Ryabinin" <aryabinin@virtuozzo.com>,
	"Alexander Potapenko" <glider@google.com>,
	"Dave Young" <dyoung@redhat.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Dmitry Vyukov" <dvyukov@google.com>
Subject: [PATCH v5 30/32] x86/boot: Add early cmdline parsing for options with arguments
Date: Tue, 18 Apr 2017 16:22:00 -0500	[thread overview]
Message-ID: <20170418212200.10190.18044.stgit@tlendack-t1.amdoffice.net> (raw)
Message-ID: <20170418212200._4JmdzRpthy1PRgZOoip9KYkRSeYzk-x8laEVNxqqok@z> (raw)
In-Reply-To: <20170418211612.10190.82788.stgit@tlendack-t1.amdoffice.net>

Add a cmdline_find_option() function to look for cmdline options that
take arguments. The argument is returned in a supplied buffer and the
argument length (regardless of whether it fits in the supplied buffer)
is returned, with -1 indicating not found.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
---
 arch/x86/include/asm/cmdline.h |    2 +
 arch/x86/lib/cmdline.c         |  105 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)

diff --git a/arch/x86/include/asm/cmdline.h b/arch/x86/include/asm/cmdline.h
index e01f7f7..84ae170 100644
--- a/arch/x86/include/asm/cmdline.h
+++ b/arch/x86/include/asm/cmdline.h
@@ -2,5 +2,7 @@
 #define _ASM_X86_CMDLINE_H
 
 int cmdline_find_option_bool(const char *cmdline_ptr, const char *option);
+int cmdline_find_option(const char *cmdline_ptr, const char *option,
+			char *buffer, int bufsize);
 
 #endif /* _ASM_X86_CMDLINE_H */
diff --git a/arch/x86/lib/cmdline.c b/arch/x86/lib/cmdline.c
index 5cc78bf..3261abb 100644
--- a/arch/x86/lib/cmdline.c
+++ b/arch/x86/lib/cmdline.c
@@ -104,7 +104,112 @@ static inline int myisspace(u8 c)
 	return 0;	/* Buffer overrun */
 }
 
+/*
+ * Find a non-boolean option (i.e. option=argument). In accordance with
+ * standard Linux practice, if this option is repeated, this returns the
+ * last instance on the command line.
+ *
+ * @cmdline: the cmdline string
+ * @max_cmdline_size: the maximum size of cmdline
+ * @option: option string to look for
+ * @buffer: memory buffer to return the option argument
+ * @bufsize: size of the supplied memory buffer
+ *
+ * Returns the length of the argument (regardless of if it was
+ * truncated to fit in the buffer), or -1 on not found.
+ */
+static int
+__cmdline_find_option(const char *cmdline, int max_cmdline_size,
+		      const char *option, char *buffer, int bufsize)
+{
+	char c;
+	int pos = 0, len = -1;
+	const char *opptr = NULL;
+	char *bufptr = buffer;
+	enum {
+		st_wordstart = 0,	/* Start of word/after whitespace */
+		st_wordcmp,	/* Comparing this word */
+		st_wordskip,	/* Miscompare, skip */
+		st_bufcpy,	/* Copying this to buffer */
+	} state = st_wordstart;
+
+	if (!cmdline)
+		return -1;      /* No command line */
+
+	/*
+	 * This 'pos' check ensures we do not overrun
+	 * a non-NULL-terminated 'cmdline'
+	 */
+	while (pos++ < max_cmdline_size) {
+		c = *(char *)cmdline++;
+		if (!c)
+			break;
+
+		switch (state) {
+		case st_wordstart:
+			if (myisspace(c))
+				break;
+
+			state = st_wordcmp;
+			opptr = option;
+			/* fall through */
+
+		case st_wordcmp:
+			if ((c == '=') && !*opptr) {
+				/*
+				 * We matched all the way to the end of the
+				 * option we were looking for, prepare to
+				 * copy the argument.
+				 */
+				len = 0;
+				bufptr = buffer;
+				state = st_bufcpy;
+				break;
+			} else if (c == *opptr++) {
+				/*
+				 * We are currently matching, so continue
+				 * to the next character on the cmdline.
+				 */
+				break;
+			}
+			state = st_wordskip;
+			/* fall through */
+
+		case st_wordskip:
+			if (myisspace(c))
+				state = st_wordstart;
+			break;
+
+		case st_bufcpy:
+			if (myisspace(c)) {
+				state = st_wordstart;
+			} else {
+				/*
+				 * Increment len, but don't overrun the
+				 * supplied buffer and leave room for the
+				 * NULL terminator.
+				 */
+				if (++len < bufsize)
+					*bufptr++ = c;
+			}
+			break;
+		}
+	}
+
+	if (bufsize)
+		*bufptr = '\0';
+
+	return len;
+}
+
 int cmdline_find_option_bool(const char *cmdline, const char *option)
 {
 	return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option);
 }
+
+int cmdline_find_option(const char *cmdline, const char *option, char *buffer,
+			int bufsize)
+{
+	return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option,
+				     buffer, bufsize);
+}

WARNING: multiple messages have this Message-ID (diff)
From: Tom Lendacky <thomas.lendacky@amd.com>
To: <linux-arch@vger.kernel.org>, <linux-efi@vger.kernel.org>,
	<kvm@vger.kernel.org>, <linux-doc@vger.kernel.org>,
	<x86@kernel.org>, <kexec@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <kasan-dev@googlegroups.com>,
	<linux-mm@kvack.org>, <iommu@lists.linux-foundation.org>
Cc: "Rik van Riel" <riel@redhat.com>,
	"Radim Krčmář" <rkrcmar@redhat.com>,
	"Toshimitsu Kani" <toshi.kani@hpe.com>,
	"Arnd Bergmann" <arnd@arndb.de>,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Matt Fleming" <matt@codeblueprint.co.uk>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Joerg Roedel" <joro@8bytes.org>,
	"Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Larry Woodman" <lwoodman@redhat.com>,
	"Brijesh Singh" <brijesh.singh@amd.com>,
	"Ingo Molnar" <mingo@redhat.com>,
	"Borislav Petkov" <bp@alien8.de>,
	"Andy Lutomirski" <luto@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Andrey Ryabinin" <aryabinin@virtuozzo.com>,
	"Alexander Potapenko" <glider@google.com>,
	"Dave Young" <dyoung@redhat.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Dmitry Vyukov" <dvyukov@google.com>
Subject: [PATCH v5 30/32] x86/boot: Add early cmdline parsing for options with arguments
Date: Tue, 18 Apr 2017 16:22:00 -0500	[thread overview]
Message-ID: <20170418212200.10190.18044.stgit@tlendack-t1.amdoffice.net> (raw)
In-Reply-To: <20170418211612.10190.82788.stgit@tlendack-t1.amdoffice.net>

Add a cmdline_find_option() function to look for cmdline options that
take arguments. The argument is returned in a supplied buffer and the
argument length (regardless of whether it fits in the supplied buffer)
is returned, with -1 indicating not found.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
---
 arch/x86/include/asm/cmdline.h |    2 +
 arch/x86/lib/cmdline.c         |  105 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)

diff --git a/arch/x86/include/asm/cmdline.h b/arch/x86/include/asm/cmdline.h
index e01f7f7..84ae170 100644
--- a/arch/x86/include/asm/cmdline.h
+++ b/arch/x86/include/asm/cmdline.h
@@ -2,5 +2,7 @@
 #define _ASM_X86_CMDLINE_H
 
 int cmdline_find_option_bool(const char *cmdline_ptr, const char *option);
+int cmdline_find_option(const char *cmdline_ptr, const char *option,
+			char *buffer, int bufsize);
 
 #endif /* _ASM_X86_CMDLINE_H */
diff --git a/arch/x86/lib/cmdline.c b/arch/x86/lib/cmdline.c
index 5cc78bf..3261abb 100644
--- a/arch/x86/lib/cmdline.c
+++ b/arch/x86/lib/cmdline.c
@@ -104,7 +104,112 @@ static inline int myisspace(u8 c)
 	return 0;	/* Buffer overrun */
 }
 
+/*
+ * Find a non-boolean option (i.e. option=argument). In accordance with
+ * standard Linux practice, if this option is repeated, this returns the
+ * last instance on the command line.
+ *
+ * @cmdline: the cmdline string
+ * @max_cmdline_size: the maximum size of cmdline
+ * @option: option string to look for
+ * @buffer: memory buffer to return the option argument
+ * @bufsize: size of the supplied memory buffer
+ *
+ * Returns the length of the argument (regardless of if it was
+ * truncated to fit in the buffer), or -1 on not found.
+ */
+static int
+__cmdline_find_option(const char *cmdline, int max_cmdline_size,
+		      const char *option, char *buffer, int bufsize)
+{
+	char c;
+	int pos = 0, len = -1;
+	const char *opptr = NULL;
+	char *bufptr = buffer;
+	enum {
+		st_wordstart = 0,	/* Start of word/after whitespace */
+		st_wordcmp,	/* Comparing this word */
+		st_wordskip,	/* Miscompare, skip */
+		st_bufcpy,	/* Copying this to buffer */
+	} state = st_wordstart;
+
+	if (!cmdline)
+		return -1;      /* No command line */
+
+	/*
+	 * This 'pos' check ensures we do not overrun
+	 * a non-NULL-terminated 'cmdline'
+	 */
+	while (pos++ < max_cmdline_size) {
+		c = *(char *)cmdline++;
+		if (!c)
+			break;
+
+		switch (state) {
+		case st_wordstart:
+			if (myisspace(c))
+				break;
+
+			state = st_wordcmp;
+			opptr = option;
+			/* fall through */
+
+		case st_wordcmp:
+			if ((c == '=') && !*opptr) {
+				/*
+				 * We matched all the way to the end of the
+				 * option we were looking for, prepare to
+				 * copy the argument.
+				 */
+				len = 0;
+				bufptr = buffer;
+				state = st_bufcpy;
+				break;
+			} else if (c == *opptr++) {
+				/*
+				 * We are currently matching, so continue
+				 * to the next character on the cmdline.
+				 */
+				break;
+			}
+			state = st_wordskip;
+			/* fall through */
+
+		case st_wordskip:
+			if (myisspace(c))
+				state = st_wordstart;
+			break;
+
+		case st_bufcpy:
+			if (myisspace(c)) {
+				state = st_wordstart;
+			} else {
+				/*
+				 * Increment len, but don't overrun the
+				 * supplied buffer and leave room for the
+				 * NULL terminator.
+				 */
+				if (++len < bufsize)
+					*bufptr++ = c;
+			}
+			break;
+		}
+	}
+
+	if (bufsize)
+		*bufptr = '\0';
+
+	return len;
+}
+
 int cmdline_find_option_bool(const char *cmdline, const char *option)
 {
 	return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option);
 }
+
+int cmdline_find_option(const char *cmdline, const char *option, char *buffer,
+			int bufsize)
+{
+	return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option,
+				     buffer, bufsize);
+}

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Tom Lendacky <thomas.lendacky@amd.com>
To: linux-arch@vger.kernel.org, linux-efi@vger.kernel.org,
	kvm@vger.kernel.org, linux-doc@vger.kernel.org, x86@kernel.org,
	kexec@lists.infradead.org, linux-kernel@vger.kernel.org,
	kasan-dev@googlegroups.com, linux-mm@kvack.org,
	iommu@lists.linux-foundation.org
Cc: "Thomas Gleixner" <tglx@linutronix.de>,
	"Rik van Riel" <riel@redhat.com>,
	"Brijesh Singh" <brijesh.singh@amd.com>,
	"Toshimitsu Kani" <toshi.kani@hpe.com>,
	"Arnd Bergmann" <arnd@arndb.de>,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Matt Fleming" <matt@codeblueprint.co.uk>,
	"Joerg Roedel" <joro@8bytes.org>,
	"Radim Krčmář" <rkrcmar@redhat.com>,
	"Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>,
	"Andrey Ryabinin" <aryabinin@virtuozzo.com>,
	"Ingo Molnar" <mingo@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	"Andy Lutomirski" <luto@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Borislav Petkov" <bp@alien8.de>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Alexander Potapenko" <glider@google.com>,
	"Dave Young" <dyoung@redhat.com>,
	"Larry Woodman" <lwoodman@redhat.com>,
	"Dmitry Vyukov" <dvyukov@google.com>
Subject: [PATCH v5 30/32] x86/boot: Add early cmdline parsing for options with arguments
Date: Tue, 18 Apr 2017 16:22:00 -0500	[thread overview]
Message-ID: <20170418212200.10190.18044.stgit@tlendack-t1.amdoffice.net> (raw)
In-Reply-To: <20170418211612.10190.82788.stgit@tlendack-t1.amdoffice.net>

Add a cmdline_find_option() function to look for cmdline options that
take arguments. The argument is returned in a supplied buffer and the
argument length (regardless of whether it fits in the supplied buffer)
is returned, with -1 indicating not found.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
---
 arch/x86/include/asm/cmdline.h |    2 +
 arch/x86/lib/cmdline.c         |  105 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 107 insertions(+)

diff --git a/arch/x86/include/asm/cmdline.h b/arch/x86/include/asm/cmdline.h
index e01f7f7..84ae170 100644
--- a/arch/x86/include/asm/cmdline.h
+++ b/arch/x86/include/asm/cmdline.h
@@ -2,5 +2,7 @@
 #define _ASM_X86_CMDLINE_H
 
 int cmdline_find_option_bool(const char *cmdline_ptr, const char *option);
+int cmdline_find_option(const char *cmdline_ptr, const char *option,
+			char *buffer, int bufsize);
 
 #endif /* _ASM_X86_CMDLINE_H */
diff --git a/arch/x86/lib/cmdline.c b/arch/x86/lib/cmdline.c
index 5cc78bf..3261abb 100644
--- a/arch/x86/lib/cmdline.c
+++ b/arch/x86/lib/cmdline.c
@@ -104,7 +104,112 @@ static inline int myisspace(u8 c)
 	return 0;	/* Buffer overrun */
 }
 
+/*
+ * Find a non-boolean option (i.e. option=argument). In accordance with
+ * standard Linux practice, if this option is repeated, this returns the
+ * last instance on the command line.
+ *
+ * @cmdline: the cmdline string
+ * @max_cmdline_size: the maximum size of cmdline
+ * @option: option string to look for
+ * @buffer: memory buffer to return the option argument
+ * @bufsize: size of the supplied memory buffer
+ *
+ * Returns the length of the argument (regardless of if it was
+ * truncated to fit in the buffer), or -1 on not found.
+ */
+static int
+__cmdline_find_option(const char *cmdline, int max_cmdline_size,
+		      const char *option, char *buffer, int bufsize)
+{
+	char c;
+	int pos = 0, len = -1;
+	const char *opptr = NULL;
+	char *bufptr = buffer;
+	enum {
+		st_wordstart = 0,	/* Start of word/after whitespace */
+		st_wordcmp,	/* Comparing this word */
+		st_wordskip,	/* Miscompare, skip */
+		st_bufcpy,	/* Copying this to buffer */
+	} state = st_wordstart;
+
+	if (!cmdline)
+		return -1;      /* No command line */
+
+	/*
+	 * This 'pos' check ensures we do not overrun
+	 * a non-NULL-terminated 'cmdline'
+	 */
+	while (pos++ < max_cmdline_size) {
+		c = *(char *)cmdline++;
+		if (!c)
+			break;
+
+		switch (state) {
+		case st_wordstart:
+			if (myisspace(c))
+				break;
+
+			state = st_wordcmp;
+			opptr = option;
+			/* fall through */
+
+		case st_wordcmp:
+			if ((c == '=') && !*opptr) {
+				/*
+				 * We matched all the way to the end of the
+				 * option we were looking for, prepare to
+				 * copy the argument.
+				 */
+				len = 0;
+				bufptr = buffer;
+				state = st_bufcpy;
+				break;
+			} else if (c == *opptr++) {
+				/*
+				 * We are currently matching, so continue
+				 * to the next character on the cmdline.
+				 */
+				break;
+			}
+			state = st_wordskip;
+			/* fall through */
+
+		case st_wordskip:
+			if (myisspace(c))
+				state = st_wordstart;
+			break;
+
+		case st_bufcpy:
+			if (myisspace(c)) {
+				state = st_wordstart;
+			} else {
+				/*
+				 * Increment len, but don't overrun the
+				 * supplied buffer and leave room for the
+				 * NULL terminator.
+				 */
+				if (++len < bufsize)
+					*bufptr++ = c;
+			}
+			break;
+		}
+	}
+
+	if (bufsize)
+		*bufptr = '\0';
+
+	return len;
+}
+
 int cmdline_find_option_bool(const char *cmdline, const char *option)
 {
 	return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option);
 }
+
+int cmdline_find_option(const char *cmdline, const char *option, char *buffer,
+			int bufsize)
+{
+	return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option,
+				     buffer, bufsize);
+}


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

  parent reply	other threads:[~2017-04-18 21:23 UTC|newest]

Thread overview: 553+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-18 21:16 [PATCH v5 00/32] x86: Secure Memory Encryption (AMD) Tom Lendacky
2017-04-18 21:16 ` Tom Lendacky
2017-04-18 21:16 ` Tom Lendacky
2017-04-18 21:16 ` Tom Lendacky
2017-04-18 21:16 ` Tom Lendacky
2017-04-18 21:16 ` Tom Lendacky
2017-04-18 21:16 ` [PATCH v5 01/32] x86: Documentation for AMD Secure Memory Encryption (SME) Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-19  9:02   ` Borislav Petkov
2017-04-19  9:02     ` Borislav Petkov
2017-04-19  9:02     ` Borislav Petkov
2017-04-19  9:02     ` Borislav Petkov
2017-04-19 14:23     ` Tom Lendacky
2017-04-19 14:23       ` Tom Lendacky
2017-04-19 14:23       ` Tom Lendacky
2017-04-19 14:23       ` Tom Lendacky
2017-04-19 15:38       ` Borislav Petkov
2017-04-19 15:38         ` Borislav Petkov
2017-04-19 15:38         ` Borislav Petkov
2017-04-19 15:38         ` Borislav Petkov
2017-04-19  9:52   ` David Howells
2017-04-19  9:52     ` David Howells
2017-04-19  9:52     ` David Howells
2017-04-19  9:52     ` David Howells
2017-04-19  9:52     ` David Howells
2017-04-18 21:16 ` [PATCH v5 02/32] x86/mm/pat: Set write-protect cache mode for full PAT support Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16 ` [PATCH v5 03/32] x86, mpparse, x86/acpi, x86/PCI, SFI: Use memremap for RAM mappings Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:16   ` Tom Lendacky
2017-04-18 21:17 ` [PATCH v5 04/32] x86/CPU/AMD: Add the Secure Memory Encryption CPU feature Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17 ` [PATCH v5 05/32] x86/CPU/AMD: Handle SME reduction in physical address size Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-20 16:59   ` Borislav Petkov
2017-04-20 16:59     ` Borislav Petkov
2017-04-20 16:59     ` Borislav Petkov
2017-04-20 16:59     ` Borislav Petkov
2017-04-20 17:29     ` Tom Lendacky
2017-04-20 17:29       ` Tom Lendacky
2017-04-20 17:29       ` Tom Lendacky
2017-04-20 17:29       ` Tom Lendacky
2017-04-20 18:52       ` Borislav Petkov
2017-04-20 18:52         ` Borislav Petkov
2017-04-20 18:52         ` Borislav Petkov
2017-04-20 18:52         ` Borislav Petkov
2017-04-18 21:17 ` [PATCH v5 06/32] x86/mm: Add Secure Memory Encryption (SME) support Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-27 15:46   ` Borislav Petkov
2017-04-27 15:46     ` Borislav Petkov
2017-04-27 15:46     ` Borislav Petkov
2017-04-27 15:46     ` Borislav Petkov
2017-05-04 14:24     ` Tom Lendacky
2017-05-04 14:24       ` Tom Lendacky
2017-05-04 14:24       ` Tom Lendacky
2017-05-04 14:24       ` Tom Lendacky
2017-05-04 14:36       ` Borislav Petkov
2017-05-04 14:36         ` Borislav Petkov
2017-05-04 14:36         ` Borislav Petkov
2017-05-04 14:36         ` Borislav Petkov
2017-05-16 19:28         ` Tom Lendacky
2017-05-16 19:28           ` Tom Lendacky
2017-05-16 19:28           ` Tom Lendacky
2017-05-16 19:28           ` Tom Lendacky
2017-05-17  7:05           ` Borislav Petkov
2017-05-17  7:05             ` Borislav Petkov
2017-05-17  7:05             ` Borislav Petkov
2017-05-17  7:05             ` Borislav Petkov
2017-04-18 21:17 ` [PATCH v5 07/32] x86/mm: Add support to enable SME in early boot processing Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-21 14:55   ` Borislav Petkov
2017-04-21 14:55     ` Borislav Petkov
2017-04-21 14:55     ` Borislav Petkov
2017-04-21 21:40     ` Tom Lendacky
2017-04-21 21:40       ` Tom Lendacky
2017-04-21 21:40       ` Tom Lendacky
2017-04-21 21:40       ` Tom Lendacky
2017-04-18 21:17 ` [PATCH v5 08/32] x86/mm: Simplify p[g4um]d_page() macros Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17 ` [PATCH v5 09/32] x86/mm: Provide general kernel support for memory encryption Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-18 21:17   ` Tom Lendacky
2017-04-21 21:52   ` Dave Hansen
2017-04-21 21:52     ` Dave Hansen
2017-04-21 21:52     ` Dave Hansen
2017-04-21 21:52     ` Dave Hansen
2017-04-24 15:53     ` Tom Lendacky
2017-04-24 15:53       ` Tom Lendacky
2017-04-24 15:53       ` Tom Lendacky
2017-04-24 15:53       ` Tom Lendacky
2017-04-24 15:53       ` Tom Lendacky
2017-04-24 15:57       ` Dave Hansen
2017-04-24 15:57         ` Dave Hansen
2017-04-24 15:57         ` Dave Hansen
2017-04-24 15:57         ` Dave Hansen
2017-04-24 16:10         ` Tom Lendacky
2017-04-24 16:10           ` Tom Lendacky
2017-04-24 16:10           ` Tom Lendacky
2017-04-24 16:10           ` Tom Lendacky
2017-04-24 16:10           ` Tom Lendacky
2017-04-24 16:10           ` Tom Lendacky
2017-04-27 16:12   ` Borislav Petkov
2017-04-27 16:12     ` Borislav Petkov
2017-04-27 16:12     ` Borislav Petkov
2017-04-27 16:12     ` Borislav Petkov
2017-05-04 14:34     ` Tom Lendacky
2017-05-04 14:34       ` Tom Lendacky
2017-05-04 14:34       ` Tom Lendacky
2017-05-04 14:34       ` Tom Lendacky
2017-05-04 17:01       ` Borislav Petkov
2017-05-04 17:01         ` Borislav Petkov
2017-05-04 17:01         ` Borislav Petkov
2017-05-04 17:01         ` Borislav Petkov
2017-04-18 21:18 ` [PATCH v5 10/32] x86/mm: Extend early_memremap() support with additional attrs Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18 ` [PATCH v5 11/32] x86/mm: Add support for early encrypt/decrypt of memory Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18 ` [PATCH v5 12/32] x86/mm: Insure that boot memory areas are mapped properly Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-05-04 10:16   ` Borislav Petkov
2017-05-04 10:16     ` Borislav Petkov
2017-05-04 10:16     ` Borislav Petkov
2017-05-04 14:39     ` Tom Lendacky
2017-05-04 14:39       ` Tom Lendacky
2017-05-04 14:39       ` Tom Lendacky
2017-05-04 14:39       ` Tom Lendacky
2017-04-18 21:18 ` [PATCH v5 13/32] x86/boot/e820: Add support to determine the E820 type of an address Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-05-05 17:11   ` Borislav Petkov
2017-05-05 17:11     ` Borislav Petkov
2017-05-05 17:11     ` Borislav Petkov
2017-05-06  7:48     ` Ard Biesheuvel
2017-05-06  7:48       ` Ard Biesheuvel
2017-05-06  7:48       ` Ard Biesheuvel
2017-05-06  7:48       ` Ard Biesheuvel
2017-04-18 21:18 ` [PATCH v5 14/32] efi: Add an EFI table address match function Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-04-18 21:18   ` Tom Lendacky
2017-05-15 18:09   ` Borislav Petkov
2017-05-15 18:09     ` Borislav Petkov
2017-05-15 18:09     ` Borislav Petkov
2017-05-15 18:09     ` Borislav Petkov
2017-05-16 21:53     ` Tom Lendacky
2017-05-16 21:53       ` Tom Lendacky
2017-05-16 21:53       ` Tom Lendacky
2017-05-16 21:53       ` Tom Lendacky
2017-04-18 21:19 ` [PATCH v5 15/32] efi: Update efi_mem_type() to return an error rather than 0 Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-05-07 17:18   ` Borislav Petkov
2017-05-07 17:18     ` Borislav Petkov
2017-05-07 17:18     ` Borislav Petkov
2017-05-08 13:20     ` Tom Lendacky
2017-05-08 13:20       ` Tom Lendacky
2017-05-08 13:20       ` Tom Lendacky
2017-05-08 13:20       ` Tom Lendacky
2017-04-18 21:19 ` [PATCH v5 16/32] x86/efi: Update EFI pagetable creation to work with SME Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19 ` [PATCH v5 17/32] x86/mm: Add support to access boot related data in the clear Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-05-15 18:35   ` Borislav Petkov
2017-05-15 18:35     ` Borislav Petkov
2017-05-15 18:35     ` Borislav Petkov
2017-05-15 18:35     ` Borislav Petkov
2017-05-17 18:54     ` Tom Lendacky
2017-05-17 18:54       ` Tom Lendacky
2017-05-17 18:54       ` Tom Lendacky
2017-05-17 18:54       ` Tom Lendacky
2017-05-18  9:02       ` Borislav Petkov
2017-05-18  9:02         ` Borislav Petkov
2017-05-18  9:02         ` Borislav Petkov
2017-05-18  9:02         ` Borislav Petkov
2017-05-19 20:50         ` Tom Lendacky
2017-05-19 20:50           ` Tom Lendacky
2017-05-19 20:50           ` Tom Lendacky
2017-05-19 20:50           ` Tom Lendacky
2017-05-21  7:16           ` Borislav Petkov
2017-05-21  7:16             ` Borislav Petkov
2017-05-21  7:16             ` Borislav Petkov
2017-05-21  7:16             ` Borislav Petkov
2017-05-30 16:46             ` Tom Lendacky
2017-05-30 16:46               ` Tom Lendacky
2017-05-30 16:46               ` Tom Lendacky
2017-05-30 16:46               ` Tom Lendacky
2017-05-31 11:31               ` Borislav Petkov
2017-05-31 11:31                 ` Borislav Petkov
2017-05-31 11:31                 ` Borislav Petkov
2017-05-31 11:31                 ` Borislav Petkov
2017-05-18 19:50     ` Matt Fleming
2017-05-18 19:50       ` Matt Fleming
2017-05-18 19:50       ` Matt Fleming
2017-05-18 19:50       ` Matt Fleming
2017-05-26 16:22       ` Tom Lendacky
2017-05-26 16:22         ` Tom Lendacky
2017-05-26 16:22         ` Tom Lendacky
2017-05-26 16:22         ` Tom Lendacky
2017-05-26 16:35         ` Borislav Petkov
2017-05-26 16:35           ` Borislav Petkov
2017-05-26 16:35           ` Borislav Petkov
2017-05-26 16:35           ` Borislav Petkov
2017-05-30 17:47           ` Tom Lendacky
2017-05-30 17:47             ` Tom Lendacky
2017-05-30 17:47             ` Tom Lendacky
2017-05-30 17:47             ` Tom Lendacky
2017-04-18 21:19 ` [PATCH v5 18/32] x86, mpparse: Use memremap to map the mpf and mpc data Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-05-16  8:36   ` Borislav Petkov
2017-05-16  8:36     ` Borislav Petkov
2017-05-16  8:36     ` Borislav Petkov
2017-05-16  8:36     ` Borislav Petkov
2017-05-17 20:26     ` Tom Lendacky
2017-05-17 20:26       ` Tom Lendacky
2017-05-17 20:26       ` Tom Lendacky
2017-05-17 20:26       ` Tom Lendacky
2017-05-18  9:03       ` Borislav Petkov
2017-05-18  9:03         ` Borislav Petkov
2017-05-18  9:03         ` Borislav Petkov
2017-05-18  9:03         ` Borislav Petkov
2017-04-18 21:19 ` [PATCH v5 19/32] x86/mm: Add support to access persistent memory in the clear Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-05-16 14:04   ` Borislav Petkov
2017-05-16 14:04     ` Borislav Petkov
2017-05-16 14:04     ` Borislav Petkov
2017-05-16 14:04     ` Borislav Petkov
2017-05-19 19:52     ` Tom Lendacky
2017-05-19 19:52       ` Tom Lendacky
2017-05-19 19:52       ` Tom Lendacky
2017-05-19 19:52       ` Tom Lendacky
2017-04-18 21:19 ` [PATCH v5 20/32] x86/mm: Add support for changing the memory encryption attribute Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19 ` [PATCH v5 21/32] x86, realmode: Decrypt trampoline area if memory encryption is active Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:19   ` Tom Lendacky
2017-04-18 21:20 ` [PATCH v5 22/32] x86, swiotlb: DMA support for memory encryption Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-05-16 14:27   ` Borislav Petkov
2017-05-16 14:27     ` Borislav Petkov
2017-05-16 14:27     ` Borislav Petkov
2017-05-16 14:27     ` Borislav Petkov
2017-05-19 19:54     ` Tom Lendacky
2017-05-19 19:54       ` Tom Lendacky
2017-05-19 19:54       ` Tom Lendacky
2017-05-19 19:54       ` Tom Lendacky
2017-04-18 21:20 ` [PATCH v5 23/32] swiotlb: Add warnings for use of bounce buffers with SME Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-05-16 14:52   ` Borislav Petkov
2017-05-16 14:52     ` Borislav Petkov
2017-05-16 14:52     ` Borislav Petkov
2017-05-16 14:52     ` Borislav Petkov
2017-05-19 19:55     ` Tom Lendacky
2017-05-19 19:55       ` Tom Lendacky
2017-05-19 19:55       ` Tom Lendacky
2017-05-19 19:55       ` Tom Lendacky
2017-04-18 21:20 ` [PATCH v5 24/32] iommu/amd: Disable AMD IOMMU if memory encryption is active Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20 ` [PATCH v5 25/32] x86, realmode: Check for memory encryption on the APs Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20 ` [PATCH v5 26/32] x86, drm, fbdev: Do not specify encrypted memory for video mappings Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-04-18 21:20   ` Tom Lendacky
2017-05-16 17:35   ` Borislav Petkov
2017-05-16 17:35     ` Borislav Petkov
2017-05-16 17:35     ` Borislav Petkov
2017-05-16 17:35     ` Borislav Petkov
2017-05-30 20:07     ` Tom Lendacky
2017-05-30 20:07       ` Tom Lendacky
2017-05-30 20:07       ` Tom Lendacky
2017-05-30 20:07       ` Tom Lendacky
2017-04-18 21:21 ` [PATCH v5 27/32] kvm: x86: svm: Enable Secure Memory Encryption within KVM Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21 ` [PATCH v5 28/32] x86/mm, kexec: Allow kexec to be used with SME Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-05-17 19:17   ` Borislav Petkov
2017-05-17 19:17     ` Borislav Petkov
2017-05-17 19:17     ` Borislav Petkov
2017-05-17 19:17     ` Borislav Petkov
2017-05-19 20:45     ` Tom Lendacky
2017-05-19 20:45       ` Tom Lendacky
2017-05-19 20:45       ` Tom Lendacky
2017-05-19 20:45       ` Tom Lendacky
2017-05-19 20:58       ` Borislav Petkov
2017-05-19 20:58         ` Borislav Petkov
2017-05-19 20:58         ` Borislav Petkov
2017-05-19 20:58         ` Borislav Petkov
2017-05-19 21:07         ` Tom Lendacky
2017-05-19 21:07           ` Tom Lendacky
2017-05-19 21:07           ` Tom Lendacky
2017-05-19 21:07           ` Tom Lendacky
2017-05-19 21:28           ` Borislav Petkov
2017-05-19 21:28             ` Borislav Petkov
2017-05-19 21:28             ` Borislav Petkov
2017-05-19 21:28             ` Borislav Petkov
2017-05-19 21:38             ` Tom Lendacky
2017-05-19 21:38               ` Tom Lendacky
2017-05-19 21:38               ` Tom Lendacky
2017-05-19 21:38               ` Tom Lendacky
2017-05-26  4:17   ` Xunlei Pang
2017-05-26  4:17     ` Xunlei Pang
2017-05-26  4:17     ` Xunlei Pang
2017-05-26  4:17     ` Xunlei Pang
2017-05-27  2:17     ` Dave Young
2017-05-27  2:17       ` Dave Young
2017-05-27  2:17       ` Dave Young
2017-05-27  2:17       ` Dave Young
2017-05-30 17:46     ` Tom Lendacky
2017-05-30 17:46       ` Tom Lendacky
2017-05-30 17:46       ` Tom Lendacky
2017-05-30 17:46       ` Tom Lendacky
2017-05-30 17:46       ` Tom Lendacky
2017-05-30 17:46       ` Tom Lendacky
2017-05-31 10:01       ` Borislav Petkov
2017-05-31 10:01         ` Borislav Petkov
2017-05-31 10:01         ` Borislav Petkov
2017-05-31 10:01         ` Borislav Petkov
2017-05-31 15:03       ` Xunlei Pang
2017-05-31 15:03         ` Xunlei Pang
2017-05-31 15:03         ` Xunlei Pang
2017-05-31 15:03         ` Xunlei Pang
2017-05-31 15:48         ` Borislav Petkov
2017-05-31 15:48           ` Borislav Petkov
2017-05-31 15:48           ` Borislav Petkov
2017-05-31 15:48           ` Borislav Petkov
2017-04-18 21:21 ` [PATCH v5 29/32] x86/mm: Add support to encrypt the kernel in-place Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-04-18 21:21   ` Tom Lendacky
2017-05-18 12:46   ` Borislav Petkov
2017-05-18 12:46     ` Borislav Petkov
2017-05-18 12:46     ` Borislav Petkov
2017-05-18 12:46     ` Borislav Petkov
2017-05-25 22:24     ` Tom Lendacky
2017-05-25 22:24       ` Tom Lendacky
2017-05-25 22:24       ` Tom Lendacky
2017-05-25 22:24       ` Tom Lendacky
2017-05-26 16:25       ` Borislav Petkov
2017-05-26 16:25         ` Borislav Petkov
2017-05-26 16:25         ` Borislav Petkov
2017-05-26 16:25         ` Borislav Petkov
2017-05-30 16:39         ` Tom Lendacky
2017-05-30 16:39           ` Tom Lendacky
2017-05-30 16:39           ` Tom Lendacky
2017-05-30 16:39           ` Tom Lendacky
2017-05-31  9:51           ` Borislav Petkov
2017-05-31  9:51             ` Borislav Petkov
2017-05-31  9:51             ` Borislav Petkov
2017-05-31  9:51             ` Borislav Petkov
2017-05-31 13:12             ` Tom Lendacky
2017-05-31 13:12               ` Tom Lendacky
2017-05-31 13:12               ` Tom Lendacky
2017-05-31 13:12               ` Tom Lendacky
2017-04-18 21:22 ` Tom Lendacky [this message]
2017-04-18 21:22   ` [PATCH v5 30/32] x86/boot: Add early cmdline parsing for options with arguments Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22 ` [PATCH v5 31/32] x86: Add sysfs support for Secure Memory Encryption Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-21 21:55   ` Dave Hansen
2017-04-21 21:55     ` Dave Hansen
2017-04-21 21:55     ` Dave Hansen
2017-04-27  7:25     ` Dave Young
2017-04-27  7:25       ` Dave Young
2017-04-27  7:25       ` Dave Young
2017-04-27  7:25       ` Dave Young
2017-04-27 15:52       ` Dave Hansen
2017-04-27 15:52         ` Dave Hansen
2017-04-27 15:52         ` Dave Hansen
2017-04-27 15:52         ` Dave Hansen
2017-04-28  5:32         ` Dave Young
2017-04-28  5:32           ` Dave Young
2017-04-28  5:32           ` Dave Young
2017-04-28  5:32           ` Dave Young
2017-05-04 14:17         ` Tom Lendacky
2017-05-04 14:17           ` Tom Lendacky
2017-05-04 14:17           ` Tom Lendacky
2017-05-04 14:17           ` Tom Lendacky
2017-05-04 14:13       ` Tom Lendacky
2017-05-04 14:13         ` Tom Lendacky
2017-05-04 14:13         ` Tom Lendacky
2017-05-04 14:13         ` Tom Lendacky
2017-05-18 17:01   ` Borislav Petkov
2017-05-18 17:01     ` Borislav Petkov
2017-05-18 17:01     ` Borislav Petkov
2017-05-18 17:01     ` Borislav Petkov
2017-05-26  2:49     ` Dave Young
2017-05-26  2:49       ` Dave Young
2017-05-26  2:49       ` Dave Young
2017-05-26  2:49       ` Dave Young
2017-05-26  5:04       ` Xunlei Pang
2017-05-26  5:04         ` Xunlei Pang
2017-05-26  5:04         ` Xunlei Pang
2017-05-26  5:04         ` Xunlei Pang
2017-05-26 15:47         ` Tom Lendacky
2017-05-26 15:47           ` Tom Lendacky
2017-05-26 15:47           ` Tom Lendacky
2017-05-26 15:47           ` Tom Lendacky
2017-05-26 15:47           ` Tom Lendacky
2017-05-26 15:47           ` Tom Lendacky
2017-04-18 21:22 ` [PATCH v5 32/32] x86/mm: Add support to make use of " Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-18 21:22   ` Tom Lendacky
2017-04-21 18:56   ` Tom Lendacky
2017-04-21 18:56     ` Tom Lendacky
2017-04-21 18:56     ` Tom Lendacky
2017-04-21 18:56     ` Tom Lendacky
2017-04-21 18:56     ` Tom Lendacky
2017-05-19 11:30     ` Borislav Petkov
2017-05-19 11:30       ` Borislav Petkov
2017-05-19 11:30       ` Borislav Petkov
2017-05-19 11:30       ` Borislav Petkov
2017-05-19 20:16       ` Josh Poimboeuf
2017-05-19 20:16         ` Josh Poimboeuf
2017-05-19 20:16         ` Josh Poimboeuf
2017-05-19 20:16         ` Josh Poimboeuf
2017-05-19 20:29         ` Borislav Petkov
2017-05-19 20:29           ` Borislav Petkov
2017-05-19 20:29           ` Borislav Petkov
2017-05-19 20:29           ` Borislav Petkov
2017-05-30 15:48         ` Tom Lendacky
2017-05-30 15:48           ` Tom Lendacky
2017-05-30 15:48           ` Tom Lendacky
2017-05-30 15:48           ` Tom Lendacky
2017-05-31  9:15           ` Borislav Petkov
2017-05-31  9:15             ` Borislav Petkov
2017-05-31  9:15             ` Borislav Petkov
2017-05-31  9:15             ` Borislav Petkov
2017-05-30 15:46       ` Tom Lendacky
2017-05-30 15:46         ` Tom Lendacky
2017-05-30 15:46         ` Tom Lendacky
2017-05-30 15:46         ` Tom Lendacky
2017-05-19 11:27   ` Borislav Petkov
2017-05-19 11:27     ` Borislav Petkov
2017-05-19 11:27     ` Borislav Petkov
2017-05-19 11:27     ` Borislav Petkov
2017-05-30 14:38     ` Tom Lendacky
2017-05-30 14:38       ` Tom Lendacky
2017-05-30 14:38       ` Tom Lendacky
2017-05-30 14:38       ` Tom Lendacky
2017-05-30 14:55       ` Borislav Petkov
2017-05-30 14:55         ` Borislav Petkov
2017-05-30 14:55         ` Borislav Petkov
2017-05-30 14:55         ` Borislav Petkov
2017-05-30 15:37         ` Tom Lendacky
2017-05-30 15:37           ` Tom Lendacky
2017-05-30 15:37           ` Tom Lendacky
2017-05-30 15:37           ` Tom Lendacky
2017-05-31  8:49           ` Borislav Petkov
2017-05-31  8:49             ` Borislav Petkov
2017-05-31  8:49             ` Borislav Petkov
2017-05-31  8:49             ` Borislav Petkov
2017-05-31 13:37             ` Tom Lendacky
2017-05-31 13:37               ` Tom Lendacky
2017-05-31 13:37               ` Tom Lendacky
2017-05-31 13:37               ` Tom Lendacky
2017-05-31 14:12               ` Borislav Petkov
2017-05-31 14:12                 ` Borislav Petkov
2017-05-31 14:12                 ` Borislav Petkov
2017-05-31 14:12                 ` Borislav Petkov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170418212200.10190.18044.stgit@tlendack-t1.amdoffice.net \
    --to=thomas.lendacky@amd.com \
    --cc=arnd@arndb.de \
    --cc=aryabinin@virtuozzo.com \
    --cc=bp@alien8.de \
    --cc=brijesh.singh@amd.com \
    --cc=corbet@lwn.net \
    --cc=dvyukov@google.com \
    --cc=dyoung@redhat.com \
    --cc=glider@google.com \
    --cc=hpa@zytor.com \
    --cc=iommu@lists.linux-foundation.org \
    --cc=joro@8bytes.org \
    --cc=kasan-dev@googlegroups.com \
    --cc=kexec@lists.infradead.org \
    --cc=konrad.wilk@oracle.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=luto@kernel.org \
    --cc=lwoodman@redhat.com \
    --cc=matt@codeblueprint.co.uk \
    --cc=mingo@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=riel@redhat.com \
    --cc=rkrcmar@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=toshi.kani@hpe.com \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.