1 /*- 2 * Copyright (c) 2000 Doug Rabson 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <efi.h> 31 #include <eficonsctl.h> 32 #include <efilib.h> 33 #include <stand.h> 34 35 static EFI_PHYSICAL_ADDRESS heap; 36 static UINTN heapsize; 37 38 void 39 efi_exit(EFI_STATUS exit_code) 40 { 41 42 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize)); 43 BS->Exit(IH, exit_code, 0, NULL); 44 } 45 46 void 47 exit(int status) 48 { 49 50 efi_exit(EFI_LOAD_ERROR); 51 } 52 53 static CHAR16 * 54 arg_skipsep(CHAR16 *argp) 55 { 56 57 while (*argp == ' ' || *argp == '\t' || *argp == '\n') 58 argp++; 59 return (argp); 60 } 61 62 static CHAR16 * 63 arg_skipword(CHAR16 *argp) 64 { 65 66 while (*argp && *argp != ' ' && *argp != '\t' && *argp != '\n') 67 argp++; 68 return (argp); 69 } 70 71 EFI_STATUS 72 efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *system_table) 73 { 74 static EFI_GUID image_protocol = LOADED_IMAGE_PROTOCOL; 75 static EFI_GUID console_control_protocol = 76 EFI_CONSOLE_CONTROL_PROTOCOL_GUID; 77 EFI_CONSOLE_CONTROL_PROTOCOL *console_control = NULL; 78 EFI_LOADED_IMAGE *img; 79 CHAR16 *argp, *args, **argv; 80 EFI_STATUS status; 81 int argc, addprog; 82 83 IH = image_handle; 84 ST = system_table; 85 BS = ST->BootServices; 86 RS = ST->RuntimeServices; 87 88 status = BS->LocateProtocol(&console_control_protocol, NULL, 89 (VOID **)&console_control); 90 if (status == EFI_SUCCESS) 91 (void)console_control->SetMode(console_control, 92 EfiConsoleControlScreenText); 93 94 heapsize = 64 * 1024 * 1024; 95 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData, 96 EFI_SIZE_TO_PAGES(heapsize), &heap); 97 if (status != EFI_SUCCESS) { 98 ST->ConOut->OutputString(ST->ConOut, (CHAR16 *)L"Failed to allocate memory for heap.\r\n"); 99 BS->Exit(IH, status, 0, NULL); 100 } 101 102 setheap((void *)(uintptr_t)heap, (void *)(uintptr_t)(heap + heapsize)); 103 104 /* Use efi_exit() from here on... */ 105 106 status = OpenProtocolByHandle(IH, &image_protocol, (void**)&img); 107 if (status != EFI_SUCCESS) 108 efi_exit(status); 109 110 /* 111 * Pre-process the (optional) load options. If the option string 112 * is given as an ASCII string, we use a poor man's ASCII to 113 * Unicode-16 translation. The size of the option string as given 114 * to us includes the terminating null character. We assume the 115 * string is an ASCII string if strlen() plus the terminating 116 * '\0' is less than LoadOptionsSize. Even if all Unicode-16 117 * characters have the upper 8 bits non-zero, the terminating 118 * null character will cause a one-off. 119 * If the string is already in Unicode-16, we make a copy so that 120 * we know we can always modify the string. 121 */ 122 if (img->LoadOptionsSize > 0 && img->LoadOptions != NULL) { 123 if (img->LoadOptionsSize == strlen(img->LoadOptions) + 1) { 124 args = malloc(img->LoadOptionsSize << 1); 125 for (argc = 0; argc < (int)img->LoadOptionsSize; argc++) 126 args[argc] = ((char*)img->LoadOptions)[argc]; 127 } else { 128 args = malloc(img->LoadOptionsSize); 129 memcpy(args, img->LoadOptions, img->LoadOptionsSize); 130 } 131 } else 132 args = NULL; 133 134 /* 135 * Use a quick and dirty algorithm to build the argv vector. We 136 * first count the number of words. Then, after allocating the 137 * vector, we split the string up. We don't deal with quotes or 138 * other more advanced shell features. 139 * The EFI shell will pass the name of the image as the first 140 * word in the argument list. This does not happen if we're 141 * loaded by the boot manager. This is not so easy to figure 142 * out though. The ParentHandle is not always NULL, because 143 * there can be a function (=image) that will perform the task 144 * for the boot manager. 145 */ 146 /* Part 1: Figure out if we need to add our program name. */ 147 addprog = (args == NULL || img->ParentHandle == NULL || 148 img->FilePath == NULL) ? 1 : 0; 149 if (!addprog) { 150 addprog = 151 (DevicePathType(img->FilePath) != MEDIA_DEVICE_PATH || 152 DevicePathSubType(img->FilePath) != MEDIA_FILEPATH_DP || 153 DevicePathNodeLength(img->FilePath) <= 154 sizeof(FILEPATH_DEVICE_PATH)) ? 1 : 0; 155 if (!addprog) { 156 /* XXX todo. */ 157 } 158 } 159 /* Part 2: count words. */ 160 argc = (addprog) ? 1 : 0; 161 argp = args; 162 while (argp != NULL && *argp != 0) { 163 argp = arg_skipsep(argp); 164 if (*argp == 0) 165 break; 166 argc++; 167 argp = arg_skipword(argp); 168 } 169 /* Part 3: build vector. */ 170 argv = malloc((argc + 1) * sizeof(CHAR16*)); 171 argc = 0; 172 if (addprog) 173 argv[argc++] = (CHAR16 *)L"loader.efi"; 174 argp = args; 175 while (argp != NULL && *argp != 0) { 176 argp = arg_skipsep(argp); 177 if (*argp == 0) 178 break; 179 argv[argc++] = argp; 180 argp = arg_skipword(argp); 181 /* Terminate the words. */ 182 if (*argp != 0) 183 *argp++ = 0; 184 } 185 argv[argc] = NULL; 186 187 status = main(argc, argv); 188 efi_exit(status); 189 return (status); 190 } 191