2018-07-12 14:56:34 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2012-11-27 20:08:53 +00:00
|
|
|
From: Paulo Flabiano Smorigo <pfsmorigo@br.ibm.com>
|
2019-08-15 06:01:31 +00:00
|
|
|
Date: Mon, 8 Jul 2019 14:10:58 +0200
|
2018-07-10 18:39:10 +00:00
|
|
|
Subject: [PATCH] DHCP client ID and UUID options added.
|
2012-11-27 20:08:53 +00:00
|
|
|
|
|
|
|
---
|
2019-08-15 06:01:31 +00:00
|
|
|
grub-core/net/bootp.c | 85 ++++++++++++++++++++++++++++++++++++++++++++++-----
|
2013-05-02 20:54:52 +00:00
|
|
|
include/grub/net.h | 2 ++
|
2019-08-15 06:01:31 +00:00
|
|
|
2 files changed, 79 insertions(+), 8 deletions(-)
|
2012-11-27 20:08:53 +00:00
|
|
|
|
|
|
|
diff --git a/grub-core/net/bootp.c b/grub-core/net/bootp.c
|
2019-08-15 06:01:31 +00:00
|
|
|
index 04cfbb04504..0e6e41a1699 100644
|
2012-11-27 20:08:53 +00:00
|
|
|
--- a/grub-core/net/bootp.c
|
|
|
|
+++ b/grub-core/net/bootp.c
|
2019-08-15 06:01:31 +00:00
|
|
|
@@ -95,6 +95,49 @@ enum
|
|
|
|
/* Max timeout when waiting for BOOTP/DHCP reply */
|
|
|
|
#define GRUB_DHCP_MAX_PACKET_TIMEOUT 32
|
2012-11-27 20:08:53 +00:00
|
|
|
|
2014-05-05 17:17:26 +00:00
|
|
|
+static char *
|
|
|
|
+grub_env_write_readonly (struct grub_env_var *var __attribute__ ((unused)),
|
2019-08-15 06:01:31 +00:00
|
|
|
+ const char *val __attribute__ ((unused)))
|
2014-05-05 17:17:26 +00:00
|
|
|
+{
|
|
|
|
+ return NULL;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void
|
|
|
|
+set_env_limn_ro (const char *intername, const char *suffix,
|
2019-08-15 06:01:31 +00:00
|
|
|
+ const char *value, grub_size_t len)
|
2014-05-05 17:17:26 +00:00
|
|
|
+{
|
|
|
|
+ char *varname, *varvalue;
|
|
|
|
+ char *ptr;
|
|
|
|
+ varname = grub_xasprintf ("net_%s_%s", intername, suffix);
|
|
|
|
+ if (!varname)
|
|
|
|
+ return;
|
|
|
|
+ for (ptr = varname; *ptr; ptr++)
|
|
|
|
+ if (*ptr == ':')
|
|
|
|
+ *ptr = '_';
|
|
|
|
+ varvalue = grub_malloc (len + 1);
|
|
|
|
+ if (!varvalue)
|
|
|
|
+ {
|
|
|
|
+ grub_free (varname);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ grub_memcpy (varvalue, value, len);
|
|
|
|
+ varvalue[len] = 0;
|
|
|
|
+ grub_env_set (varname, varvalue);
|
|
|
|
+ grub_register_variable_hook (varname, 0, grub_env_write_readonly);
|
|
|
|
+ grub_env_export (varname);
|
|
|
|
+ grub_free (varname);
|
|
|
|
+ grub_free (varvalue);
|
|
|
|
+}
|
|
|
|
+
|
2012-11-27 20:08:53 +00:00
|
|
|
+static char
|
|
|
|
+hexdigit (grub_uint8_t val)
|
|
|
|
+{
|
|
|
|
+ if (val < 10)
|
|
|
|
+ return val + '0';
|
|
|
|
+ return val + 'a' - 10;
|
|
|
|
+}
|
|
|
|
+
|
2019-08-15 06:01:31 +00:00
|
|
|
static const void *
|
|
|
|
find_dhcp_option (const struct grub_net_bootp_packet *bp, grub_size_t size,
|
|
|
|
grub_uint8_t opt_code, grub_uint8_t *opt_len)
|
|
|
|
@@ -152,6 +195,9 @@ again:
|
|
|
|
if (i + taglength >= size)
|
|
|
|
return NULL;
|
2012-11-27 20:08:53 +00:00
|
|
|
|
|
|
|
+ grub_dprintf("net", "DHCP option %u (0x%02x) found with length %u.\n",
|
|
|
|
+ tagtype, tagtype, taglength);
|
|
|
|
+
|
2019-08-15 06:01:31 +00:00
|
|
|
/* FIXME RFC 3396 options concatentation */
|
|
|
|
if (tagtype == opt_code)
|
2012-11-27 20:08:53 +00:00
|
|
|
{
|
2019-08-15 06:01:31 +00:00
|
|
|
@@ -354,6 +400,37 @@ grub_net_configure_by_dhcp_ack (const char *name,
|
|
|
|
}
|
|
|
|
grub_net_add_ipv4_local (inter, mask);
|
2012-11-27 20:08:53 +00:00
|
|
|
|
2019-08-15 06:01:31 +00:00
|
|
|
+ opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_CLIENT_ID, &opt_len);
|
|
|
|
+ if (opt)
|
|
|
|
+ {
|
|
|
|
+ set_env_limn_ro (name, "clientid", (char *) opt, opt_len);
|
|
|
|
+ }
|
2012-11-27 20:08:53 +00:00
|
|
|
+
|
2019-08-15 06:01:31 +00:00
|
|
|
+ opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_CLIENT_UUID, &opt_len);
|
|
|
|
+ if (opt && opt_len == 17)
|
|
|
|
+ {
|
|
|
|
+ /* The format is 9cfe245e-d0c8-bd45-a79f-54ea5fbd3d97 */
|
2012-11-27 20:08:53 +00:00
|
|
|
+
|
2019-08-15 06:01:31 +00:00
|
|
|
+ opt += 1;
|
|
|
|
+ opt_len -= 1;
|
2012-11-27 20:08:53 +00:00
|
|
|
+
|
2019-08-15 06:01:31 +00:00
|
|
|
+ char *val = grub_malloc (2 * opt_len + 4 + 1);
|
|
|
|
+ int i = 0;
|
|
|
|
+ int j = 0;
|
|
|
|
+ for (i = 0; i < opt_len; i++)
|
|
|
|
+ {
|
|
|
|
+ val[2 * i + j] = hexdigit (opt[i] >> 4);
|
|
|
|
+ val[2 * i + 1 + j] = hexdigit (opt[i] & 0xf);
|
2012-11-27 20:08:53 +00:00
|
|
|
+
|
2019-08-15 06:01:31 +00:00
|
|
|
+ if ((i == 3) || (i == 5) || (i == 7) || (i == 9))
|
|
|
|
+ {
|
|
|
|
+ j++;
|
|
|
|
+ val[2 * i + 1+ j] = '-';
|
2012-11-27 20:08:53 +00:00
|
|
|
+ }
|
2019-08-15 06:01:31 +00:00
|
|
|
+ }
|
|
|
|
+ set_env_limn_ro (name, "clientuuid", (char *) val, 2 * opt_len + 4);
|
|
|
|
+ }
|
2012-11-27 20:08:53 +00:00
|
|
|
+
|
2019-08-15 06:01:31 +00:00
|
|
|
/* We do not implement dead gateway detection and the first entry SHOULD
|
|
|
|
be preferred one */
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_ROUTER, &opt_len);
|
|
|
|
@@ -631,14 +708,6 @@ grub_net_process_dhcp (struct grub_net_buff *nb,
|
2012-11-27 20:08:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-static char
|
|
|
|
-hexdigit (grub_uint8_t val)
|
|
|
|
-{
|
|
|
|
- if (val < 10)
|
|
|
|
- return val + '0';
|
|
|
|
- return val + 'a' - 10;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static grub_err_t
|
|
|
|
grub_cmd_dhcpopt (struct grub_command *cmd __attribute__ ((unused)),
|
|
|
|
int argc, char **args)
|
|
|
|
diff --git a/include/grub/net.h b/include/grub/net.h
|
2019-08-15 06:01:31 +00:00
|
|
|
index 4a9069a1474..556c54e579f 100644
|
2012-11-27 20:08:53 +00:00
|
|
|
--- a/include/grub/net.h
|
|
|
|
+++ b/include/grub/net.h
|
2019-08-15 06:01:31 +00:00
|
|
|
@@ -462,6 +462,8 @@ enum
|
2012-11-27 20:08:53 +00:00
|
|
|
GRUB_NET_BOOTP_DOMAIN = 0x0f,
|
|
|
|
GRUB_NET_BOOTP_ROOT_PATH = 0x11,
|
|
|
|
GRUB_NET_BOOTP_EXTENSIONS_PATH = 0x12,
|
|
|
|
+ GRUB_NET_BOOTP_CLIENT_ID = 0x3d,
|
|
|
|
+ GRUB_NET_BOOTP_CLIENT_UUID = 0x61,
|
2019-08-15 06:01:31 +00:00
|
|
|
GRUB_NET_DHCP_REQUESTED_IP_ADDRESS = 50,
|
|
|
|
GRUB_NET_DHCP_OVERLOAD = 52,
|
|
|
|
GRUB_NET_DHCP_MESSAGE_TYPE = 53,
|