Blame SOURCES/0255-efinet-UEFI-IPv6-PXE-support.patch

d41074
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
a85e8e
From: Michael Chang <mchang@suse.com>
a85e8e
Date: Wed, 15 Apr 2015 14:48:30 +0800
d41074
Subject: [PATCH] efinet: UEFI IPv6 PXE support
a85e8e
a85e8e
When grub2 image is booted from UEFI IPv6 PXE, the DHCPv6 Reply packet is
a85e8e
cached in firmware buffer which can be obtained by PXE Base Code protocol. The
a85e8e
network interface can be setup through the parameters in that obtained packet.
a85e8e
a85e8e
Signed-off-by: Michael Chang <mchang@suse.com>
a85e8e
Signed-off-by: Ken Lin <ken.lin@hpe.com>
a85e8e
---
d41074
 grub-core/net/drivers/efi/efinet.c | 22 ++++++------
d41074
 include/grub/efi/api.h             | 71 +++++++++++++++++++++++---------------
d41074
 2 files changed, 54 insertions(+), 39 deletions(-)
a85e8e
a85e8e
diff --git a/grub-core/net/drivers/efi/efinet.c b/grub-core/net/drivers/efi/efinet.c
d41074
index b9ed13fcad1..8bb0db014ac 100644
a85e8e
--- a/grub-core/net/drivers/efi/efinet.c
a85e8e
+++ b/grub-core/net/drivers/efi/efinet.c
d41074
@@ -404,9 +404,6 @@ grub_efi_net_config_real (grub_efi_handle_t hnd, char **device,
a85e8e
     pxe_mode = pxe->mode;
a85e8e
     if (pxe_mode->using_ipv6)
a85e8e
       {
a85e8e
-	grub_net_link_level_address_t hwaddr;
a85e8e
-	struct grub_net_network_level_interface *intf;
a85e8e
-
a85e8e
 	grub_dprintf ("efinet", "using ipv6 and dhcpv6\n");
a85e8e
 	grub_dprintf ("efinet", "dhcp_ack_received: %s%s\n",
a85e8e
 		      pxe_mode->dhcp_ack_received ? "yes" : "no",
d41074
@@ -414,16 +411,17 @@ grub_efi_net_config_real (grub_efi_handle_t hnd, char **device,
d41074
 	if (!pxe_mode->dhcp_ack_received)
d41074
 	  continue;
d41074
 
a85e8e
-	hwaddr.type = GRUB_NET_LINK_LEVEL_PROTOCOL_ETHERNET;
a85e8e
-	grub_memcpy (hwaddr.mac,
a85e8e
-		     card->efi_net->mode->current_address,
a85e8e
-		     sizeof (hwaddr.mac));
a85e8e
-
a85e8e
-	intf = grub_net_configure_by_dhcpv6_ack (card->name, card, 0, &hwaddr,
a85e8e
-	      (const struct grub_net_dhcpv6_packet *)&pxe_mode->dhcp_ack.dhcpv6,
a85e8e
-	      1, device, path);
a85e8e
-	if (intf && device && path)
a85e8e
+	grub_net_configure_by_dhcpv6_reply (card->name, card, 0,
a85e8e
+					    (struct grub_net_dhcp6_packet *)
a85e8e
+					    &pxe_mode->dhcp_ack,
a85e8e
+					    sizeof (pxe_mode->dhcp_ack),
a85e8e
+					    1, device, path);
d41074
+	if (grub_errno)
d41074
+	  grub_print_error ();
a85e8e
+	if (device && path)
a85e8e
 	  grub_dprintf ("efinet", "device: `%s' path: `%s'\n", *device, *path);
a85e8e
+	if (grub_errno)
a85e8e
+	  grub_print_error ();
a85e8e
       }
a85e8e
     else
a85e8e
       {
a85e8e
diff --git a/include/grub/efi/api.h b/include/grub/efi/api.h
d41074
index 9422ba9a9db..2d0f37a8164 100644
a85e8e
--- a/include/grub/efi/api.h
a85e8e
+++ b/include/grub/efi/api.h
d41074
@@ -1446,31 +1446,6 @@ typedef union
a85e8e
   grub_efi_pxe_dhcpv6_packet_t dhcpv6;
a85e8e
 } grub_efi_pxe_packet_t;
a85e8e
 
a85e8e
-#define GRUB_EFI_PXE_MAX_IPCNT 8
a85e8e
-#define GRUB_EFI_PXE_MAX_ARP_ENTRIES 8
a85e8e
-#define GRUB_EFI_PXE_MAX_ROUTE_ENTRIES 8
d41074
-
a85e8e
-typedef struct grub_efi_pxe_ip_filter
a85e8e
-{
a85e8e
-  grub_efi_uint8_t filters;
a85e8e
-  grub_efi_uint8_t ip_count;
a85e8e
-  grub_efi_uint8_t reserved;
a85e8e
-  grub_efi_ip_address_t ip_list[GRUB_EFI_PXE_MAX_IPCNT];
d41074
-} grub_efi_pxe_ip_filter_t;
d41074
-
d41074
-typedef struct grub_efi_pxe_arp_entry
d41074
-{
d41074
-  grub_efi_ip_address_t ip_addr;
d41074
-  grub_efi_mac_address_t mac_addr;
d41074
-} grub_efi_pxe_arp_entry_t;
d41074
-
d41074
-typedef struct grub_efi_pxe_route_entry
d41074
-{
d41074
-  grub_efi_ip_address_t ip_addr;
d41074
-  grub_efi_ip_address_t subnet_mask;
d41074
-  grub_efi_ip_address_t gateway_addr;
d41074
-} grub_efi_pxe_route_entry_t;
d41074
-
d41074
 typedef struct grub_efi_pxe_icmp_error
d41074
 {
d41074
   grub_efi_uint8_t type;
d41074
@@ -1496,6 +1471,48 @@ typedef struct grub_efi_pxe_tftp_error
d41074
   grub_efi_char8_t error_string[127];
d41074
 } grub_efi_pxe_tftp_error_t;
d41074
 
a85e8e
+typedef struct {
a85e8e
+  grub_uint8_t addr[4];
a85e8e
+} grub_efi_pxe_ipv4_address_t;
a85e8e
+
a85e8e
+typedef struct {
a85e8e
+  grub_uint8_t addr[16];
a85e8e
+} grub_efi_pxe_ipv6_address_t;
a85e8e
+
a85e8e
+typedef struct {
a85e8e
+  grub_uint8_t addr[32];
a85e8e
+} grub_efi_pxe_mac_address_t;
a85e8e
+
a85e8e
+typedef union {
d41074
+  grub_uint32_t addr[4];
d41074
+  grub_efi_pxe_ipv4_address_t v4;
d41074
+  grub_efi_pxe_ipv6_address_t v6;
a85e8e
+} grub_efi_pxe_ip_address_t;
a85e8e
+
a85e8e
+#define GRUB_EFI_PXE_BASE_CODE_MAX_IPCNT 8
d41074
+typedef struct grub_efi_pxe_ip_filter
d41074
+{
d41074
+  grub_efi_uint8_t filters;
d41074
+  grub_efi_uint8_t ip_count;
d41074
+  grub_efi_uint16_t reserved;
d41074
+  grub_efi_ip_address_t ip_list[GRUB_EFI_PXE_BASE_CODE_MAX_IPCNT];
d41074
+} grub_efi_pxe_ip_filter_t;
d41074
+
a85e8e
+typedef struct {
d41074
+  grub_efi_pxe_ip_address_t ip_addr;
d41074
+  grub_efi_pxe_mac_address_t mac_addr;
d41074
+} grub_efi_pxe_arp_entry_t;
d41074
+
a85e8e
+typedef struct {
d41074
+  grub_efi_pxe_ip_address_t ip_addr;
d41074
+  grub_efi_pxe_ip_address_t subnet_mask;
d41074
+  grub_efi_pxe_ip_address_t gw_addr;
d41074
+} grub_efi_pxe_route_entry_t;
d41074
+
d41074
+
a85e8e
+#define GRUB_EFI_PXE_BASE_CODE_MAX_ARP_ENTRIES 8
a85e8e
+#define GRUB_EFI_PXE_BASE_CODE_MAX_ROUTE_ENTRIES 8
a85e8e
+
a85e8e
 typedef struct grub_efi_pxe_mode
a85e8e
 {
a85e8e
   grub_efi_boolean_t started;
d41074
@@ -1527,9 +1544,9 @@ typedef struct grub_efi_pxe_mode
a85e8e
   grub_efi_pxe_packet_t pxe_bis_reply;
a85e8e
   grub_efi_pxe_ip_filter_t ip_filter;
a85e8e
   grub_efi_uint32_t arp_cache_entries;
a85e8e
-  grub_efi_pxe_arp_entry_t arp_cache[GRUB_EFI_PXE_MAX_ARP_ENTRIES];
a85e8e
+  grub_efi_pxe_arp_entry_t arp_cache[GRUB_EFI_PXE_BASE_CODE_MAX_ARP_ENTRIES];
a85e8e
   grub_efi_uint32_t route_table_entries;
a85e8e
-  grub_efi_pxe_route_entry_t route_table[GRUB_EFI_PXE_MAX_ROUTE_ENTRIES];
a85e8e
+  grub_efi_pxe_route_entry_t route_table[GRUB_EFI_PXE_BASE_CODE_MAX_ROUTE_ENTRIES];
a85e8e
   grub_efi_pxe_icmp_error_t icmp_error;
a85e8e
   grub_efi_pxe_tftp_error_t tftp_error;
a85e8e
 } grub_efi_pxe_mode_t;