All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ivan Gorinov <ivan.gorinov@intel.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2] efi_loader: fix off-by-one bug in efi_get_variable
Date: Wed, 9 May 2018 19:25:05 -0700	[thread overview]
Message-ID: <20180510022505.GA2714@intel.com> (raw)

efi_get_variable() always stores an extra zero byte after the output data.
When the returned data size matches the output buffer size, the extra zero
byte is stored past the end of the output buffer.

Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
---
 lib/efi_loader/efi_variable.c | 64 +++++++++++++++++++++----------------------
 1 file changed, 32 insertions(+), 32 deletions(-)

diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c
index 6c177da..b1e6a73 100644
--- a/lib/efi_loader/efi_variable.c
+++ b/lib/efi_loader/efi_variable.c
@@ -50,7 +50,7 @@
 	(strlen("efi_xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxxxxxx_") + \
 		(MAX_VAR_NAME * MAX_UTF8_PER_UTF16))
 
-static int hex(unsigned char ch)
+static int hex(char ch)
 {
 	if (ch >= 'a' && ch <= 'f')
 		return ch-'a'+10;
@@ -61,44 +61,41 @@ static int hex(unsigned char ch)
 	return -1;
 }
 
-static const char *hex2mem(u8 *mem, const char *hexstr, int count)
+static int hex2mem(u8 *mem, const char *hexstr, int size)
 {
-	memset(mem, 0, count/2);
+	u8 data;
+	int nibble;
+	char ch;
+	int i, k;
 
-	do {
-		int nibble;
+	memset(mem, 0, size);
 
-		*mem = 0;
+	for (i = 0; i < size; i += 1) {
+		data = 0;
+		for (k = 0; k < 2; k += 1) {
+			ch = *(hexstr++);
 
-		if (!count || !*hexstr)
-			break;
-
-		nibble = hex(*hexstr);
-		if (nibble < 0)
-			break;
-
-		*mem = nibble;
-		count--;
-		hexstr++;
-
-		if (!count || !*hexstr)
-			break;
+			if (!ch) {
+				if (k == 0)
+					return i;
+				else
+					return -1;
+			}
 
-		nibble = hex(*hexstr);
-		if (nibble < 0)
-			break;
+			nibble = hex(ch);
+			if (nibble < 0)
+				return -1;
 
-		*mem = (*mem << 4) | nibble;
-		count--;
-		hexstr++;
-		mem++;
+			hexstr++;
 
-	} while (1);
+			data <<= 4;
+			data |= nibble;
 
-	if (*hexstr)
-		return hexstr;
+		}
+		mem[i] = data;
+	}
 
-	return NULL;
+	return i;
 }
 
 static char *mem2hex(char *hexstr, const u8 *mem, int count)
@@ -210,8 +207,11 @@ efi_status_t EFIAPI efi_get_variable(s16 *variable_name,
 	if ((s = prefix(val, "(blob)"))) {
 		unsigned len = strlen(s);
 
+		if (len & 1)
+			return EFI_EXIT(EFI_DEVICE_ERROR);
+
 		/* two characters per byte: */
-		len = DIV_ROUND_UP(len, 2);
+		len /= 2;
 		*data_size = len;
 
 		if (in_size < len)
@@ -220,7 +220,7 @@ efi_status_t EFIAPI efi_get_variable(s16 *variable_name,
 		if (!data)
 			return EFI_EXIT(EFI_INVALID_PARAMETER);
 
-		if (hex2mem(data, s, len * 2))
+		if (hex2mem(data, s, len) != len)
 			return EFI_EXIT(EFI_DEVICE_ERROR);
 
 		debug("%s: got value: \"%s\"\n", __func__, s);
-- 
2.7.4

             reply	other threads:[~2018-05-10  2:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-10  2:25 Ivan Gorinov [this message]
2018-05-10  6:25 ` [U-Boot] [PATCH v2] efi_loader: fix off-by-one bug in efi_get_variable Heinrich Schuchardt

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=20180510022505.GA2714@intel.com \
    --to=ivan.gorinov@intel.com \
    --cc=u-boot@lists.denx.de \
    /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.