chiark / gitweb /
boot: efi - support embedded splash image
[elogind.git] / src / boot / efi / stub.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the GNU Lesser General Public License as published by
5  * the Free Software Foundation; either version 2.1 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * Lesser General Public License for more details.
12  *
13  * Copyright (C) 2015 Kay Sievers <kay@vrfy.org>
14  */
15
16 #include <efi.h>
17 #include <efilib.h>
18
19 #include "util.h"
20 #include "pefile.h"
21 #include "graphics.h"
22 #include "linux.h"
23
24 /* magic string to find in the binary image */
25 static const char __attribute__((used)) magic[] = "#### LoaderInfo: systemd-stub " VERSION " ####";
26
27 static const EFI_GUID global_guid = EFI_GLOBAL_VARIABLE;
28
29 EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
30         EFI_LOADED_IMAGE *loaded_image;
31         EFI_FILE *root_dir;
32         CHAR16 *loaded_image_path;
33         CHAR8 *b;
34         UINTN size;
35         BOOLEAN secure = FALSE;
36         CHAR8 *sections[] = {
37                 (UINT8 *)".cmdline",
38                 (UINT8 *)".linux",
39                 (UINT8 *)".initrd",
40                 (UINT8 *)".splash",
41                 NULL
42         };
43         UINTN addrs[ELEMENTSOF(sections)-1] = {};
44         UINTN offs[ELEMENTSOF(sections)-1] = {};
45         UINTN szs[ELEMENTSOF(sections)-1] = {};
46         CHAR8 *cmdline = NULL;
47         UINTN cmdline_len;
48         EFI_STATUS err;
49
50         InitializeLib(image, sys_table);
51
52         err = uefi_call_wrapper(BS->OpenProtocol, 6, image, &LoadedImageProtocol, (VOID **)&loaded_image,
53                                 image, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
54         if (EFI_ERROR(err)) {
55                 Print(L"Error getting a LoadedImageProtocol handle: %r ", err);
56                 uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000);
57                 return err;
58         }
59
60         root_dir = LibOpenRoot(loaded_image->DeviceHandle);
61         if (!root_dir) {
62                 Print(L"Unable to open root directory: %r ", err);
63                 uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000);
64                 return EFI_LOAD_ERROR;
65         }
66
67         loaded_image_path = DevicePathToStr(loaded_image->FilePath);
68
69         if (efivar_get_raw(&global_guid, L"SecureBoot", &b, &size) == EFI_SUCCESS) {
70                 if (*b > 0)
71                         secure = TRUE;
72                 FreePool(b);
73         }
74
75         err = pefile_locate_sections(root_dir, loaded_image_path, sections, addrs, offs, szs);
76         if (EFI_ERROR(err)) {
77                 Print(L"Unable to locate embedded .linux section: %r ", err);
78                 uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000);
79                 return err;
80         }
81
82         if (szs[0] > 0)
83                 cmdline = (CHAR8 *)(loaded_image->ImageBase + addrs[0]);
84
85         cmdline_len = szs[0];
86
87         /* if we are not in secure boot mode, accept a custom command line and replace the built-in one */
88         if (!secure && loaded_image->LoadOptionsSize > 0) {
89                 CHAR16 *options;
90                 CHAR8 *line;
91                 UINTN i;
92
93                 options = (CHAR16 *)loaded_image->LoadOptions;
94                 cmdline_len = (loaded_image->LoadOptionsSize / sizeof(CHAR16)) * sizeof(CHAR8);
95                 line = AllocatePool(cmdline_len);
96                 for (i = 0; i < cmdline_len; i++)
97                         line[i] = options[i];
98                 cmdline = line;
99         }
100
101         if (szs[3] > 0)
102                 graphics_splash((UINT8 *)((UINTN)loaded_image->ImageBase + addrs[3]), szs[3], NULL);
103
104         err = linux_exec(image, cmdline, cmdline_len,
105                          (UINTN)loaded_image->ImageBase + addrs[1],
106                          (UINTN)loaded_image->ImageBase + addrs[2], szs[2]);
107
108         graphics_mode(FALSE);
109         Print(L"Execution of embedded linux image failed: %r\n", err);
110         uefi_call_wrapper(BS->Stall, 1, 3 * 1000 * 1000);
111         return err;
112 }