]> git.proxmox.com Git - efi-boot-shim.git/blob - netboot.c
Fix remaining compiler warnings in netboot.c.
[efi-boot-shim.git] / netboot.c
1 /*
2 * netboot - trivial UEFI first-stage bootloader netboot support
3 *
4 * Copyright 2012 Red Hat, Inc <mjg@redhat.com>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 *
13 * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the
16 * distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
29 * OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * Significant portions of this code are derived from Tianocore
32 * (http://tianocore.sf.net) and are Copyright 2009-2012 Intel
33 * Corporation.
34 */
35
36 #include <efi.h>
37 #include <efilib.h>
38 #include <string.h>
39 #include "shim.h"
40 #include "netboot.h"
41
42
43 static inline unsigned short int __swap16(unsigned short int x)
44 {
45 __asm__("xchgb %b0,%h0"
46 : "=q" (x)
47 : "0" (x));
48 return x;
49 }
50
51 #define ntohs(x) __swap16(x)
52 #define htons(x) ntohs(x)
53
54 static EFI_PXE_BASE_CODE *pxe;
55 static EFI_IP_ADDRESS tftp_addr;
56 static UINT8 *full_path;
57
58
59 typedef struct {
60 UINT16 OpCode;
61 UINT16 Length;
62 UINT8 Data[1];
63 } EFI_DHCP6_PACKET_OPTION;
64
65 /*
66 * usingNetboot
67 * Returns TRUE if we identify a protocol that is enabled and Providing us with
68 * the needed information to fetch a grubx64.efi image
69 */
70 BOOLEAN findNetboot(EFI_HANDLE image_handle)
71 {
72 UINTN bs = sizeof(EFI_HANDLE);
73 EFI_GUID pxe_base_code_protocol = EFI_PXE_BASE_CODE_PROTOCOL;
74 EFI_HANDLE *hbuf;
75 BOOLEAN rc = FALSE;
76 void *buffer = AllocatePool(bs);
77 UINTN errcnt = 0;
78 UINTN i;
79 EFI_STATUS status;
80
81 if (!buffer)
82 return FALSE;
83
84 try_again:
85 status = uefi_call_wrapper(BS->LocateHandle,5, ByProtocol,
86 &pxe_base_code_protocol, NULL, &bs,
87 buffer);
88
89 if (status == EFI_BUFFER_TOO_SMALL) {
90 errcnt++;
91 FreePool(buffer);
92 if (errcnt > 1)
93 return FALSE;
94 buffer = AllocatePool(bs);
95 if (!buffer)
96 return FALSE;
97 goto try_again;
98 }
99
100 if (status == EFI_NOT_FOUND) {
101 FreePool(buffer);
102 return FALSE;
103 }
104
105 /*
106 * We have a list of pxe supporting protocols, lets see if any are
107 * active
108 */
109 hbuf = buffer;
110 pxe = NULL;
111 for (i=0; i < (bs / sizeof(EFI_HANDLE)); i++) {
112 status = uefi_call_wrapper(BS->OpenProtocol, 6, hbuf[i],
113 &pxe_base_code_protocol,
114 (void **)&pxe, image_handle, NULL,
115 EFI_OPEN_PROTOCOL_GET_PROTOCOL);
116
117 if (status != EFI_SUCCESS) {
118 pxe = NULL;
119 continue;
120 }
121
122 if (!pxe || !pxe->Mode) {
123 pxe = NULL;
124 continue;
125 }
126
127 if (pxe->Mode->Started && pxe->Mode->DhcpAckReceived) {
128 /*
129 * We've located a pxe protocol handle thats been
130 * started and has received an ACK, meaning its
131 * something we'll be able to get tftp server info
132 * out of
133 */
134 rc = TRUE;
135 break;
136 }
137
138 }
139
140 FreePool(buffer);
141 return rc;
142 }
143
144 static char *get_v6_bootfile_url(EFI_PXE_BASE_CODE_DHCPV6_PACKET *pkt)
145 {
146 void *optr;
147 EFI_DHCP6_PACKET_OPTION *option;
148 char *url;
149 UINT32 urllen;
150
151 optr = pkt->DhcpOptions;
152
153 for(;;) {
154 option = (EFI_DHCP6_PACKET_OPTION *)optr;
155
156 if (ntohs(option->OpCode) == 0)
157 return NULL;
158
159 if (ntohs(option->OpCode) == 59) {
160 /* This is the bootfile url option */
161 urllen = ntohs(option->Length);
162 url = AllocatePool(urllen+2);
163 if (!url)
164 return NULL;
165 memset(url, 0, urllen+2);
166 memcpy(url, option->Data, urllen);
167 return url;
168 }
169 optr += 4 + ntohs(option->Length);
170 }
171
172 return NULL;
173 }
174
175 static UINT16 str2ns(UINT8 *str)
176 {
177 UINT16 ret = 0;
178 UINT8 v;
179 for(;*str;str++) {
180 if ('0' <= *str && *str <= '9')
181 v = *str - '0';
182 else if ('A' <= *str && *str <= 'F')
183 v = *str - 'A' + 10;
184 else if ('a' <= *str && *str <= 'f')
185 v = *str - 'a' + 10;
186 else
187 v = 0;
188 ret = (ret << 4) + v;
189 }
190 return htons(ret);
191 }
192
193 static UINT8 *str2ip6(char *str)
194 {
195 UINT8 i, j, p;
196 size_t len;
197 UINT8 *a, *b, t;
198 static UINT16 ip[8];
199
200 for(i=0; i < 8; i++) {
201 ip[i] = 0;
202 }
203 len = strlen((UINT8 *)str);
204 a = b = (UINT8 *)str;
205 for(i=p=0; i < len; i++, b++) {
206 if (*b != ':')
207 continue;
208 *b = '\0';
209 ip[p++] = str2ns(a);
210 *b = ':';
211 a = b + 1;
212 if ( *(b+1) == ':' )
213 break;
214 }
215 a = b = (UINT8 *)(str + len);
216 for(j=len, p=7; j > i; j--, a--) {
217 if (*a != ':')
218 continue;
219 t = *b;
220 *b = '\0';
221 ip[p--] = str2ns(a+1);
222 *b = t;
223 b = a;
224 }
225 return (UINT8 *)ip;
226 }
227
228 static BOOLEAN extract_tftp_info(char *url)
229 {
230 char *start, *end;
231 char ip6str[128];
232 char *template = "/grubx64.efi";
233
234 if (strncmp((UINT8 *)url, (UINT8 *)"tftp://", 7)) {
235 Print(L"URLS MUST START WITH tftp://\n");
236 return FALSE;
237 }
238 start = url + 7;
239 if (*start != '[') {
240 Print(L"TFTP SERVER MUST BE ENCLOSED IN [..]\n");
241 return FALSE;
242 }
243
244 start++;
245 end = start;
246 while ((*end != '\0') && (*end != ']')) {
247 end++;
248 }
249 if (end == '\0') {
250 Print(L"TFTP SERVER MUST BE ENCLOSED IN [..]\n");
251 return FALSE;
252 }
253 *end = '\0';
254 memset(ip6str, 0, 128);
255 memcpy(ip6str, start, strlen((UINT8 *)start));
256 *end = ']';
257 end++;
258 memcpy(&tftp_addr.v6, str2ip6(ip6str), 16);
259 full_path = AllocatePool(strlen((UINT8 *)end)+strlen((UINT8 *)template)+1);
260 if (!full_path)
261 return FALSE;
262 memset(full_path, 0, strlen((UINT8 *)end)+strlen((UINT8 *)template));
263 memcpy(full_path, end, strlen((UINT8 *)end));
264 end = strrchr((char *)full_path, '/');
265 if (!end)
266 end = (char *)full_path;
267 memcpy(end, template, strlen((UINT8 *)template));
268
269 return TRUE;
270 }
271
272 static EFI_STATUS parseDhcp6()
273 {
274 EFI_PXE_BASE_CODE_DHCPV6_PACKET *packet = (EFI_PXE_BASE_CODE_DHCPV6_PACKET *)&pxe->Mode->DhcpAck.Raw;
275 char *bootfile_url;
276
277
278 bootfile_url = get_v6_bootfile_url(packet);
279 if (extract_tftp_info(bootfile_url) == FALSE)
280 return EFI_NOT_FOUND;
281 if (!bootfile_url)
282 return EFI_NOT_FOUND;
283 return EFI_SUCCESS;
284 }
285
286 static EFI_STATUS parseDhcp4()
287 {
288 char *template = "/grubx64.efi";
289 char *tmp = AllocatePool(16);
290
291
292 if (!tmp)
293 return EFI_OUT_OF_RESOURCES;
294
295
296 memcpy(&tftp_addr.v4, pxe->Mode->DhcpAck.Dhcpv4.BootpSiAddr, 4);
297
298 memcpy(tmp, template, 12);
299 tmp[13] = '\0';
300 full_path = (UINT8 *)tmp;
301
302 /* Note we don't capture the filename option here because we know its shim.efi
303 * We instead assume the filename at the end of the path is going to be grubx64.efi
304 */
305 return EFI_SUCCESS;
306 }
307
308 EFI_STATUS parseNetbootinfo(EFI_HANDLE image_handle)
309 {
310
311 EFI_STATUS rc;
312
313 if (!pxe)
314 return EFI_NOT_READY;
315
316 memset((UINT8 *)&tftp_addr, 0, sizeof(tftp_addr));
317
318 /*
319 * If we've discovered an active pxe protocol figure out
320 * if its ipv4 or ipv6
321 */
322 if (pxe->Mode->UsingIpv6){
323 rc = parseDhcp6();
324 } else
325 rc = parseDhcp4();
326 return rc;
327 }
328
329 EFI_STATUS FetchNetbootimage(EFI_HANDLE image_handle, VOID **buffer, UINT64 *bufsiz)
330 {
331 EFI_STATUS rc;
332 EFI_PXE_BASE_CODE_TFTP_OPCODE read = EFI_PXE_BASE_CODE_TFTP_READ_FILE;
333 BOOLEAN overwrite = FALSE;
334 BOOLEAN nobuffer = FALSE;
335 UINTN blksz = 512;
336
337 Print(L"Fetching Netboot Image\n");
338 if (*buffer == NULL) {
339 *buffer = AllocatePool(4096 * 1024);
340 if (!*buffer)
341 return EFI_OUT_OF_RESOURCES;
342 *bufsiz = 4096 * 1024;
343 }
344
345 try_again:
346 rc = uefi_call_wrapper(pxe->Mtftp, 10, pxe, read, *buffer, overwrite,
347 bufsiz, &blksz, &tftp_addr, full_path, NULL, nobuffer);
348
349 if (rc == EFI_BUFFER_TOO_SMALL) {
350 /* try again, doubling buf size */
351 *bufsiz *= 2;
352 FreePool(*buffer);
353 *buffer = AllocatePool(*bufsiz);
354 if (!*buffer)
355 return EFI_OUT_OF_RESOURCES;
356 goto try_again;
357 }
358
359 return rc;
360
361 }