nalika / rpms / grub2

Forked from rpms/grub2 2 years ago
Clone

Blame SOURCES/0263-Fix-grub_net_hwaddr_to_str.patch

f725e3
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f725e3
From: Mark Salter <msalter@redhat.com>
f725e3
Date: Tue, 22 Aug 2017 12:21:12 -0400
f725e3
Subject: [PATCH] Fix grub_net_hwaddr_to_str
f725e3
f725e3
commit 5c3b78c92f8 introduced support for larger network hw addresses.
f725e3
However, grub_net_hwaddr_to_str() relies on GRUB_NET_MAX_STR_ADDRESS_SIZE
f725e3
to prevent a spurious ':' at the end of the string. So now, if actual
f725e3
hwaddr size is less than max, an extra ':' appears at the end of the
f725e3
string. So calculate max string size based on actual hwaddr length to
f725e3
fix the problem.
f725e3
f725e3
Signed-off-by: Mark Salter <msalter@redhat.com>
f725e3
---
f725e3
 grub-core/net/net.c | 4 +++-
f725e3
 1 file changed, 3 insertions(+), 1 deletion(-)
f725e3
f725e3
diff --git a/grub-core/net/net.c b/grub-core/net/net.c
f725e3
index 6b4b10ba444..a6566bdb00a 100644
f725e3
--- a/grub-core/net/net.c
f725e3
+++ b/grub-core/net/net.c
f725e3
@@ -784,6 +784,7 @@ grub_net_hwaddr_to_str (const grub_net_link_level_address_t *addr, char *str)
f725e3
 {
f725e3
   char *ptr;
f725e3
   unsigned i;
f725e3
+  int maxstr;
f725e3
 
f725e3
   if (addr->len > GRUB_NET_MAX_LINK_ADDRESS_SIZE)
f725e3
     {
f725e3
@@ -792,9 +793,10 @@ grub_net_hwaddr_to_str (const grub_net_link_level_address_t *addr, char *str)
f725e3
 		    addr->type, addr->len);
f725e3
        return;
f725e3
     }
f725e3
+  maxstr = addr->len * grub_strlen ("XX:");
f725e3
   for (ptr = str, i = 0; i < addr->len; i++)
f725e3
     {
f725e3
-      ptr += grub_snprintf (ptr, GRUB_NET_MAX_STR_HWADDR_LEN - (ptr - str),
f725e3
+      ptr += grub_snprintf (ptr, maxstr - (ptr - str),
f725e3
 		     "%02x:", addr->mac[i] & 0xff);
f725e3
     }
f725e3
 }