2018-08-30 15:15:43 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Stephen Benjamin <stephen@redhat.com>
|
|
|
|
Date: Thu, 16 Aug 2018 16:58:51 -0400
|
|
|
|
Subject: [PATCH] Prepend prefix when HTTP path is relative
|
|
|
|
|
|
|
|
This sets a couple of variables. With the url http://www.example.com/foo/bar :
|
|
|
|
http_path: /foo/bar
|
|
|
|
http_url: http://www.example.com/foo/bar
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
2021-11-04 16:29:49 +00:00
|
|
|
Signed-off-by: Stephen Benjamin <stephen@redhat.com>
|
|
|
|
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
|
2018-08-30 15:15:43 +00:00
|
|
|
---
|
2018-09-11 22:06:46 +00:00
|
|
|
grub-core/kern/main.c | 10 +++++-
|
2018-08-30 15:15:43 +00:00
|
|
|
grub-core/net/efi/http.c | 82 ++++++++++++++++++++++++++++++++++++------------
|
2018-09-11 22:06:46 +00:00
|
|
|
2 files changed, 71 insertions(+), 21 deletions(-)
|
2018-08-30 15:15:43 +00:00
|
|
|
|
|
|
|
diff --git a/grub-core/kern/main.c b/grub-core/kern/main.c
|
2022-04-18 21:58:58 +00:00
|
|
|
index d1de9fa687..1c540fc8c2 100644
|
2018-08-30 15:15:43 +00:00
|
|
|
--- a/grub-core/kern/main.c
|
|
|
|
+++ b/grub-core/kern/main.c
|
2021-03-12 21:54:28 +00:00
|
|
|
@@ -131,11 +131,19 @@ grub_set_prefix_and_root (void)
|
2018-09-11 22:06:46 +00:00
|
|
|
if (fwdevice && fwpath)
|
2018-08-30 15:15:43 +00:00
|
|
|
{
|
|
|
|
char *fw_path;
|
2018-09-11 22:06:46 +00:00
|
|
|
+ char separator[3] = ")";
|
2018-08-30 15:15:43 +00:00
|
|
|
|
|
|
|
- fw_path = grub_xasprintf ("(%s)/%s", fwdevice, fwpath);
|
2018-09-11 22:06:46 +00:00
|
|
|
+ grub_dprintf ("fw_path", "\n");
|
|
|
|
+ grub_dprintf ("fw_path", "fwdevice:\"%s\" fwpath:\"%s\"\n", fwdevice, fwpath);
|
|
|
|
+
|
|
|
|
+ if (!grub_strncmp(fwdevice, "http", 4) && fwpath[0] != '/')
|
|
|
|
+ grub_strcpy(separator, ")/");
|
|
|
|
+
|
|
|
|
+ fw_path = grub_xasprintf ("(%s%s%s", fwdevice, separator, fwpath);
|
2018-08-30 15:15:43 +00:00
|
|
|
if (fw_path)
|
|
|
|
{
|
|
|
|
grub_env_set ("fw_path", fw_path);
|
2018-09-11 22:06:46 +00:00
|
|
|
+ grub_dprintf ("fw_path", "fw_path:\"%s\"\n", fw_path);
|
|
|
|
grub_free (fw_path);
|
|
|
|
}
|
|
|
|
}
|
2018-08-30 15:15:43 +00:00
|
|
|
diff --git a/grub-core/net/efi/http.c b/grub-core/net/efi/http.c
|
2022-04-18 21:58:58 +00:00
|
|
|
index 243acbaa35..de351b2cd0 100644
|
2018-08-30 15:15:43 +00:00
|
|
|
--- a/grub-core/net/efi/http.c
|
|
|
|
+++ b/grub-core/net/efi/http.c
|
|
|
|
@@ -9,10 +9,52 @@
|
|
|
|
static void
|
|
|
|
http_configure (struct grub_efi_net_device *dev, int prefer_ip6)
|
|
|
|
{
|
|
|
|
+ grub_efi_ipv6_address_t address;
|
|
|
|
grub_efi_http_config_data_t http_config;
|
|
|
|
grub_efi_httpv4_access_point_t httpv4_node;
|
|
|
|
grub_efi_httpv6_access_point_t httpv6_node;
|
|
|
|
grub_efi_status_t status;
|
|
|
|
+ int https;
|
|
|
|
+ char *http_url;
|
|
|
|
+ const char *rest, *http_server, *http_path = NULL;
|
|
|
|
+
|
|
|
|
+ http_server = grub_env_get ("root");
|
2019-07-16 09:23:51 +00:00
|
|
|
+ https = (grub_strncmp (http_server, "https", 5) == 0) ? 1 : 0;
|
2018-08-30 15:15:43 +00:00
|
|
|
+
|
|
|
|
+ /* extract http server + port */
|
|
|
|
+ if (http_server)
|
|
|
|
+ {
|
|
|
|
+ http_server = grub_strchr (http_server, ',');
|
|
|
|
+ if (http_server)
|
|
|
|
+ http_server++;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* fw_path is like (http,192.168.1.1:8000)/httpboot, extract path part */
|
|
|
|
+ http_path = grub_env_get ("fw_path");
|
|
|
|
+ if (http_path)
|
|
|
|
+ {
|
|
|
|
+ http_path = grub_strchr (http_path, ')');
|
|
|
|
+ if (http_path)
|
|
|
|
+ {
|
|
|
|
+ http_path++;
|
|
|
|
+ grub_env_unset ("http_path");
|
|
|
|
+ grub_env_set ("http_path", http_path);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (http_server && http_path)
|
|
|
|
+ {
|
|
|
|
+ if (grub_efi_string_to_ip6_address (http_server, &address, &rest) && *rest == 0)
|
|
|
|
+ http_url = grub_xasprintf ("%s://[%s]%s", https ? "https" : "http", http_server, http_path);
|
|
|
|
+ else
|
|
|
|
+ http_url = grub_xasprintf ("%s://%s%s", https ? "https" : "http", http_server, http_path);
|
|
|
|
+ if (http_url)
|
|
|
|
+ {
|
|
|
|
+ grub_env_unset ("http_url");
|
|
|
|
+ grub_env_set ("http_url", http_url);
|
|
|
|
+ grub_free (http_url);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
|
|
grub_efi_http_t *http = dev->http;
|
|
|
|
|
|
|
|
@@ -352,32 +394,32 @@ grub_efihttp_open (struct grub_efi_net_device *dev,
|
|
|
|
grub_err_t err;
|
|
|
|
grub_off_t size;
|
|
|
|
char *buf;
|
|
|
|
- char *root_url;
|
|
|
|
- grub_efi_ipv6_address_t address;
|
|
|
|
- const char *rest;
|
2019-07-16 09:23:51 +00:00
|
|
|
+ char *file_name = NULL;
|
2018-08-30 15:15:43 +00:00
|
|
|
+ const char *http_path;
|
|
|
|
|
|
|
|
- if (grub_efi_string_to_ip6_address (file->device->net->server, &address, &rest) && *rest == 0)
|
|
|
|
- root_url = grub_xasprintf ("%s://[%s]", type ? "https" : "http", file->device->net->server);
|
2019-07-16 09:23:51 +00:00
|
|
|
- else
|
2018-08-30 15:15:43 +00:00
|
|
|
- root_url = grub_xasprintf ("%s://%s", type ? "https" : "http", file->device->net->server);
|
|
|
|
- if (root_url)
|
|
|
|
- {
|
|
|
|
- grub_env_unset ("root_url");
|
|
|
|
- grub_env_set ("root_url", root_url);
|
|
|
|
- grub_free (root_url);
|
|
|
|
- }
|
|
|
|
- else
|
|
|
|
- {
|
2019-07-16 09:23:51 +00:00
|
|
|
+ /* If path is relative, prepend http_path */
|
|
|
|
+ http_path = grub_env_get ("http_path");
|
|
|
|
+ if (http_path && file->device->net->name[0] != '/') {
|
|
|
|
+ file_name = grub_xasprintf ("%s/%s", http_path, file->device->net->name);
|
|
|
|
+ if (!file_name)
|
|
|
|
return grub_errno;
|
2018-08-30 15:15:43 +00:00
|
|
|
- }
|
2019-07-16 09:23:51 +00:00
|
|
|
+ }
|
2018-08-30 15:15:43 +00:00
|
|
|
|
|
|
|
- err = efihttp_request (dev->http, file->device->net->server, file->device->net->name, type, 1, 0);
|
2019-07-16 09:23:51 +00:00
|
|
|
+ err = efihttp_request (dev->http, file->device->net->server,
|
|
|
|
+ file_name ? file_name : file->device->net->name, type, 1, 0);
|
2018-08-30 15:15:43 +00:00
|
|
|
if (err != GRUB_ERR_NONE)
|
|
|
|
- return err;
|
|
|
|
+ {
|
|
|
|
+ grub_free (file_name);
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- err = efihttp_request (dev->http, file->device->net->server, file->device->net->name, type, 0, &size);
|
2019-07-16 09:23:51 +00:00
|
|
|
+ err = efihttp_request (dev->http, file->device->net->server,
|
|
|
|
+ file_name ? file_name : file->device->net->name, type, 0, &size);
|
2018-08-30 15:15:43 +00:00
|
|
|
+ grub_free (file_name);
|
|
|
|
if (err != GRUB_ERR_NONE)
|
|
|
|
- return err;
|
|
|
|
+ {
|
|
|
|
+ return err;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
buf = grub_malloc (size);
|
|
|
|
efihttp_read (dev, buf, size);
|