summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/efi-bootstub-config-3.3.patch
blob: 7481bd0cb738770f21567ce917e1e814fdad8886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
From 2c12b0f49831d2d96b6bdcef931794178312c288 Mon Sep 17 00:00:00 2001
From: Shea Levy <shea@shealevy.com>
Date: Sun, 18 Mar 2012 16:17:04 +0100
Subject: [PATCH 1/1] x86, efi: EFI boot stub config file support

When booting via the EFI boot stub, search for a file named 'linux.conf' in
the same directory as the bzImage and read the kernel command line from it
when no load options are passed.

The file search should only be triggered when the bzImage is loaded from the
firmware's boot process. When loaded via an EFI shell, the load options always
contain at least one character, even if no parameters were passed at the
prompt.

Signed-off-by: Shea Levy <shea@shealevy.com>
---
 arch/x86/boot/compressed/eboot.c |  146 ++++++++++++++++++++++++++++++++++++--
 arch/x86/boot/compressed/eboot.h |    2 +
 2 files changed, 143 insertions(+), 5 deletions(-)

diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
index fec216f..672ecfe 100644
--- a/arch/x86/boot/compressed/eboot.c
+++ b/arch/x86/boot/compressed/eboot.c
@@ -486,14 +486,14 @@ struct initrd {
  * kernel image.
  */
 static efi_status_t handle_ramdisks(efi_loaded_image_t *image,
-				    struct setup_header *hdr)
+				    struct setup_header *hdr,
+				    efi_file_handle_t *fh)
 {
 	struct initrd *initrds;
 	unsigned long initrd_addr;
 	efi_guid_t fs_proto = EFI_FILE_SYSTEM_GUID;
 	u64 initrd_total;
 	efi_file_io_interface_t *io;
-	efi_file_handle_t *fh;
 	efi_status_t status;
 	int nr_initrds;
 	char *str;
@@ -568,7 +568,7 @@ static efi_status_t handle_ramdisks(efi_loaded_image_t *image,
 		*p = '\0';
 
 		/* Only open the volume once. */
-		if (!i) {
+		if (!fh) {
 			efi_boot_services_t *boottime;
 
 			boottime = sys_table->boottime;
@@ -712,6 +712,7 @@ static efi_status_t make_boot_params(struct boot_params *boot_params,
 	u16 *s2;
 	u8 *s1;
 	int i;
+	efi_file_handle_t *fh = NULL;
 
 	hdr->type_of_loader = 0x21;
 
@@ -743,14 +744,149 @@ static efi_status_t make_boot_params(struct boot_params *boot_params,
 
 			*s1 = '\0';
 		}
-	}
+	} else {
+		efi_char16_t config_file_name[
+			sizeof CONFIG_FILE_NAME * sizeof(efi_char16_t)];
+		u16 *file_path = (u16 *)image->file_path;
+		efi_char16_t config_path[256], *config_path_position;
+		efi_boot_services_t *boottime;
+		efi_file_info_t *info;
+		unsigned long info_sz = 0;
+		u64 file_sz;
+		efi_guid_t info_guid = EFI_FILE_INFO_ID;
+		efi_guid_t fs_proto = EFI_FILE_SYSTEM_GUID;
+		efi_file_io_interface_t *io;
+		efi_file_handle_t *h;
+
+		boottime = sys_table->boottime;
+
+		config_path_position = config_path;
+
+		for (i = 0; i < sizeof CONFIG_FILE_NAME; i++)
+			config_file_name[i] = CONFIG_FILE_NAME[i];
+
+		while (*file_path == 0x404) {
+			u16 node_size = *(file_path + 1)/sizeof *file_path;
+
+			if (config_path_position - config_path) {
+				if (*(file_path + 2) == '\\' &&
+						*(file_path - 2) == '\\') {
+					config_path_position--;
+				} else if (*(file_path + 2) != '\\' &&
+						*(file_path - 2) != '\\') {
+					*config_path_position++ = '\\';
+				}
+			}
+
+			if ((config_path_position - config_path) + node_size - 3
+					+ sizeof config_file_name
+					/ sizeof *config_file_name
+					> sizeof config_path
+					/ sizeof *config_path)
+				goto end;
+
+			memcpy((void *)config_path_position, file_path + 2,
+					(node_size - 3) * sizeof *config_path);
 
+			config_path_position += node_size - 3;
+			file_path += node_size;
+		}
+
+		while (*config_path_position != '\\' && config_path_position !=
+				config_path)
+			config_path_position--;
+
+		*config_path_position = '\\';
+
+		memcpy((void *)(config_path_position + 1),
+				config_file_name,
+				sizeof config_file_name);
+
+		status = efi_call_phys3(boottime->handle_protocol,
+				image->device_handle, &fs_proto, &io);
+
+		if (status != EFI_SUCCESS)
+			goto end;
+
+		status = efi_call_phys2(io->open_volume, io, &fh);
+
+		if (status != EFI_SUCCESS) {
+			fh = NULL;
+			goto end;
+		}
+
+		status = efi_call_phys5(fh->open,
+				fh,
+				&h,
+				config_path,
+				EFI_FILE_MODE_READ, (u64)0);
+
+		if (status != EFI_SUCCESS)
+			goto end;
+
+		status = efi_call_phys4(h->get_info, h, &info_guid,
+					&info_sz, NULL);
+
+		if (status != EFI_BUFFER_TOO_SMALL)
+			goto close_config_file;
+
+		while (status == EFI_BUFFER_TOO_SMALL) {
+			status = efi_call_phys3(boottime->allocate_pool,
+					EFI_LOADER_DATA, info_sz, &info);
+
+			if (status != EFI_SUCCESS)
+				goto close_config_file;
+
+			status = efi_call_phys4(h->get_info, h, &info_guid,
+						&info_sz, info);
+
+			if (status == EFI_BUFFER_TOO_SMALL)
+				efi_call_phys1(boottime->free_pool, info);
+		}
+
+		if (status != EFI_SUCCESS)
+			goto free_config_file_info;
+
+		file_sz = info->file_size;
+
+		if (file_sz > hdr->cmdline_size)
+			file_sz = hdr->cmdline_size;
+
+		options_size = file_sz + 1;
+
+		status = low_alloc(options_size, 1, &cmdline);
+
+		if (status != EFI_SUCCESS)
+			goto free_config_file_info;
+
+		status = efi_call_phys3(h->read, h, &file_sz, cmdline);
+
+		if (status != EFI_SUCCESS)
+			goto free_config_file_cmdline;
+
+		*((u8 *)cmdline + file_sz) = 0;
+
+		goto free_config_file_info;
+free_config_file_cmdline:
+		low_free(options_size, cmdline);
+		cmdline = 0;
+		options_size = 0;
+free_config_file_info:
+		efi_call_phys1(boottime->free_pool, info);
+close_config_file:
+		efi_call_phys1(h->close, h);
+	}
+end:
 	hdr->cmd_line_ptr = cmdline;
 
 	hdr->ramdisk_image = 0;
 	hdr->ramdisk_size = 0;
 
-	status = handle_ramdisks(image, hdr);
+	status = handle_ramdisks(image, hdr, fh);
+
+	if (fh)
+		efi_call_phys1(fh->close, fh);
+
 	if (status != EFI_SUCCESS)
 		goto free_cmdline;
 
diff --git a/arch/x86/boot/compressed/eboot.h b/arch/x86/boot/compressed/eboot.h
index 3925166..186b4c6 100644
--- a/arch/x86/boot/compressed/eboot.h
+++ b/arch/x86/boot/compressed/eboot.h
@@ -20,6 +20,8 @@
 #define PIXEL_BLT_ONLY					3
 #define PIXEL_FORMAT_MAX				4
 
+#define CONFIG_FILE_NAME "linux.conf"
+
 struct efi_pixel_bitmask {
 	u32 red_mask;
 	u32 green_mask;
-- 
1.7.9.4