2018-07-12 14:56:34 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2012-10-01 17:34:30 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Mon, 1 Oct 2012 13:24:37 -0400
|
2018-07-10 19:08:14 +00:00
|
|
|
Subject: [PATCH] Pass "\x[[:hex:]][[:hex:]]" straight through unmolested.
|
2012-10-01 17:34:30 +00:00
|
|
|
|
2021-03-12 21:54:28 +00:00
|
|
|
Don't munge raw spaces when we're doing our cmdline escaping (#923374)
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
2012-10-01 17:34:30 +00:00
|
|
|
---
|
2012-10-22 18:39:02 +00:00
|
|
|
grub-core/commands/wildcard.c | 16 +++++++++++++++-
|
2021-03-12 21:54:28 +00:00
|
|
|
grub-core/lib/cmdline.c | 25 +++++++++++++++++++++++--
|
2013-05-02 20:54:52 +00:00
|
|
|
grub-core/script/execute.c | 43 +++++++++++++++++++++++++++++++++++++------
|
2021-03-12 21:54:28 +00:00
|
|
|
3 files changed, 75 insertions(+), 9 deletions(-)
|
2012-10-01 17:34:30 +00:00
|
|
|
|
|
|
|
diff --git a/grub-core/commands/wildcard.c b/grub-core/commands/wildcard.c
|
2021-03-12 21:54:28 +00:00
|
|
|
index cc3290311f0..8f67a4be7f0 100644
|
2012-10-01 17:34:30 +00:00
|
|
|
--- a/grub-core/commands/wildcard.c
|
|
|
|
+++ b/grub-core/commands/wildcard.c
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -488,6 +488,12 @@ check_file (const char *dir, const char *basename)
|
2013-05-02 20:54:52 +00:00
|
|
|
return ctx.found;
|
2012-10-01 17:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+static int
|
|
|
|
+is_hex(char c)
|
|
|
|
+{
|
|
|
|
+ return ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
static void
|
|
|
|
unescape (char *out, const char *in, const char *end)
|
|
|
|
{
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -496,7 +502,15 @@ unescape (char *out, const char *in, const char *end)
|
2012-10-01 17:34:30 +00:00
|
|
|
|
|
|
|
for (optr = out, iptr = in; iptr < end;)
|
|
|
|
{
|
|
|
|
- if (*iptr == '\\' && iptr + 1 < end)
|
|
|
|
+ if (*iptr == '\\' && iptr + 3 < end && iptr[1] == 'x' && is_hex(iptr[2]) && is_hex(iptr[3]))
|
|
|
|
+ {
|
2012-10-22 18:39:02 +00:00
|
|
|
+ *optr++ = *iptr++;
|
|
|
|
+ *optr++ = *iptr++;
|
|
|
|
+ *optr++ = *iptr++;
|
|
|
|
+ *optr++ = *iptr++;
|
2012-10-01 17:34:30 +00:00
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ else if (*iptr == '\\' && iptr + 1 < end)
|
|
|
|
{
|
|
|
|
*optr++ = iptr[1];
|
|
|
|
iptr += 2;
|
|
|
|
diff --git a/grub-core/lib/cmdline.c b/grub-core/lib/cmdline.c
|
2021-03-12 21:54:28 +00:00
|
|
|
index ed0b149dca5..8e2294d8ff6 100644
|
2012-10-01 17:34:30 +00:00
|
|
|
--- a/grub-core/lib/cmdline.c
|
|
|
|
+++ b/grub-core/lib/cmdline.c
|
|
|
|
@@ -20,6 +20,12 @@
|
|
|
|
#include <grub/lib/cmdline.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
|
|
|
|
+static int
|
|
|
|
+is_hex(char c)
|
|
|
|
+{
|
|
|
|
+ return ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
static unsigned int check_arg (char *c, int *has_space)
|
|
|
|
{
|
|
|
|
int space = 0;
|
|
|
|
@@ -27,7 +33,13 @@ static unsigned int check_arg (char *c, int *has_space)
|
|
|
|
|
|
|
|
while (*c)
|
|
|
|
{
|
|
|
|
- if (*c == '\\' || *c == '\'' || *c == '"')
|
|
|
|
+ if (*c == '\\' && *(c+1) == 'x' && is_hex(*(c+2)) && is_hex(*(c+3)))
|
|
|
|
+ {
|
|
|
|
+ size += 4;
|
|
|
|
+ c += 4;
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ else if (*c == '\\' || *c == '\'' || *c == '"')
|
|
|
|
size++;
|
|
|
|
else if (*c == ' ')
|
|
|
|
space = 1;
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -86,7 +98,16 @@ grub_create_loader_cmdline (int argc, char *argv[], char *buf,
|
2012-10-01 17:34:30 +00:00
|
|
|
|
|
|
|
while (*c)
|
|
|
|
{
|
|
|
|
- if (*c == '\\' || *c == '\'' || *c == '"')
|
2021-03-12 21:54:28 +00:00
|
|
|
+ if (*c == '\\' && *(c+1) == 'x' &&
|
2012-10-22 18:39:02 +00:00
|
|
|
+ is_hex(*(c+2)) && is_hex(*(c+3)))
|
2012-10-01 17:34:30 +00:00
|
|
|
+ {
|
2012-10-22 18:39:02 +00:00
|
|
|
+ *buf++ = *c++;
|
|
|
|
+ *buf++ = *c++;
|
|
|
|
+ *buf++ = *c++;
|
|
|
|
+ *buf++ = *c++;
|
2012-10-01 17:34:30 +00:00
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ else if (*c == '\\' || *c == '\'' || *c == '"')
|
|
|
|
*buf++ = '\\';
|
|
|
|
|
|
|
|
*buf++ = *c;
|
|
|
|
diff --git a/grub-core/script/execute.c b/grub-core/script/execute.c
|
2021-03-12 21:54:28 +00:00
|
|
|
index ad80399246a..0c6dd9c5201 100644
|
2012-10-01 17:34:30 +00:00
|
|
|
--- a/grub-core/script/execute.c
|
|
|
|
+++ b/grub-core/script/execute.c
|
2019-08-15 06:01:31 +00:00
|
|
|
@@ -56,6 +56,12 @@ static struct grub_script_scope *scope = 0;
|
2012-10-01 17:34:30 +00:00
|
|
|
/* Wildcard translator for GRUB script. */
|
|
|
|
struct grub_script_wildcard_translator *grub_wildcard_translator;
|
|
|
|
|
|
|
|
+static int
|
|
|
|
+is_hex(char c)
|
|
|
|
+{
|
|
|
|
+ return ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
static char*
|
|
|
|
wildcard_escape (const char *s)
|
|
|
|
{
|
2019-08-15 06:01:31 +00:00
|
|
|
@@ -72,7 +78,15 @@ wildcard_escape (const char *s)
|
2012-10-01 17:34:30 +00:00
|
|
|
i = 0;
|
|
|
|
while ((ch = *s++))
|
|
|
|
{
|
|
|
|
- if (ch == '*' || ch == '\\' || ch == '?')
|
2012-10-22 18:39:02 +00:00
|
|
|
+ if (ch == '\\' && s[0] == 'x' && is_hex(s[1]) && is_hex(s[2]))
|
2012-10-01 17:34:30 +00:00
|
|
|
+ {
|
2012-10-22 18:39:02 +00:00
|
|
|
+ p[i++] = ch;
|
|
|
|
+ p[i++] = *s++;
|
|
|
|
+ p[i++] = *s++;
|
|
|
|
+ p[i++] = *s++;
|
2012-10-01 17:34:30 +00:00
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ else if (ch == '*' || ch == '\\' || ch == '?')
|
|
|
|
p[i++] = '\\';
|
|
|
|
p[i++] = ch;
|
|
|
|
}
|
2019-08-15 06:01:31 +00:00
|
|
|
@@ -96,7 +110,14 @@ wildcard_unescape (const char *s)
|
2012-10-01 17:34:30 +00:00
|
|
|
i = 0;
|
|
|
|
while ((ch = *s++))
|
|
|
|
{
|
|
|
|
- if (ch == '\\')
|
|
|
|
+ if (ch == '\\' && s[0] == 'x' && is_hex(s[1]) && is_hex(s[2]))
|
|
|
|
+ {
|
2012-10-22 18:39:02 +00:00
|
|
|
+ p[i++] = '\\';
|
|
|
|
+ p[i++] = *s++;
|
|
|
|
+ p[i++] = *s++;
|
|
|
|
+ p[i++] = *s++;
|
2012-10-01 17:34:30 +00:00
|
|
|
+ }
|
|
|
|
+ else if (ch == '\\')
|
|
|
|
p[i++] = *s++;
|
|
|
|
else
|
|
|
|
p[i++] = ch;
|
2019-08-15 06:01:31 +00:00
|
|
|
@@ -398,10 +419,20 @@ parse_string (const char *str,
|
2012-10-01 17:34:30 +00:00
|
|
|
switch (*ptr)
|
|
|
|
{
|
|
|
|
case '\\':
|
|
|
|
- escaped = !escaped;
|
|
|
|
- if (!escaped && put)
|
2013-05-02 20:54:52 +00:00
|
|
|
- *(put++) = '\\';
|
2012-10-01 17:34:30 +00:00
|
|
|
- ptr++;
|
2012-10-22 18:39:02 +00:00
|
|
|
+ if (!escaped && put && *(ptr+1) == 'x' && is_hex(*(ptr+2)) && is_hex(*(ptr+3)))
|
2012-10-01 17:34:30 +00:00
|
|
|
+ {
|
2013-05-02 20:54:52 +00:00
|
|
|
+ *(put++) = *ptr++;
|
|
|
|
+ *(put++) = *ptr++;
|
|
|
|
+ *(put++) = *ptr++;
|
|
|
|
+ *(put++) = *ptr++;
|
2012-10-01 17:34:30 +00:00
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ escaped = !escaped;
|
|
|
|
+ if (!escaped && put)
|
2013-05-02 20:54:52 +00:00
|
|
|
+ *(put++) = '\\';
|
2012-10-01 17:34:30 +00:00
|
|
|
+ ptr++;
|
|
|
|
+ }
|
|
|
|
break;
|
|
|
|
case '$':
|
|
|
|
if (escaped)
|