]> code.delx.au - refind/blob - refind/global.h
Various changes, esp. to "disabled", "hideui", & "showtools"
[refind] / refind / global.h
1 /*
2 * refit/global.h
3 * Global header file
4 *
5 * Copyright (c) 2006-2009 Christoph Pfisterer
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the
18 * distribution.
19 *
20 * * Neither the name of Christoph Pfisterer nor the names of the
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36 /*
37 * Modifications copyright (c) 2012 Roderick W. Smith
38 *
39 * Modifications distributed under the terms of the GNU General Public
40 * License (GPL) version 3 (GPLv3), a copy of which must be distributed
41 * with this source code or binaries made from it.
42 *
43 */
44
45 #ifndef __GLOBAL_H_
46 #define __GLOBAL_H_
47
48 #include "efi.h"
49 #include "efilib.h"
50
51 #include "libeg.h"
52
53 #define REFIT_DEBUG (0)
54
55 // Tag classifications; used in various ways.
56 #define TAG_ABOUT (1)
57 #define TAG_REBOOT (2)
58 #define TAG_SHUTDOWN (3)
59 #define TAG_TOOL (4)
60 #define TAG_LOADER (5)
61 #define TAG_LEGACY (6)
62 #define TAG_EXIT (7)
63 #define TAG_SHELL (8)
64 #define TAG_GPTSYNC (9)
65 #define NUM_TOOLS (9)
66
67 #define NUM_SCAN_OPTIONS 10
68
69
70 //
71 // global definitions
72 //
73
74 // global types
75
76 typedef struct {
77 UINT8 Flags;
78 UINT8 StartCHS1;
79 UINT8 StartCHS2;
80 UINT8 StartCHS3;
81 UINT8 Type;
82 UINT8 EndCHS1;
83 UINT8 EndCHS2;
84 UINT8 EndCHS3;
85 UINT32 StartLBA;
86 UINT32 Size;
87 } MBR_PARTITION_INFO;
88
89 typedef struct {
90 EFI_DEVICE_PATH *DevicePath;
91 EFI_HANDLE DeviceHandle;
92 EFI_FILE *RootDir;
93 CHAR16 *VolName;
94 EG_IMAGE *VolBadgeImage;
95 UINTN DiskKind;
96 BOOLEAN IsAppleLegacy;
97 BOOLEAN HasBootCode;
98 CHAR16 *OSIconName;
99 CHAR16 *OSName;
100 BOOLEAN IsMbrPartition;
101 UINTN MbrPartitionIndex;
102 EFI_BLOCK_IO *BlockIO;
103 UINT64 BlockIOOffset;
104 EFI_BLOCK_IO *WholeDiskBlockIO;
105 EFI_DEVICE_PATH *WholeDiskDevicePath;
106 MBR_PARTITION_INFO *MbrPartitionTable;
107 } REFIT_VOLUME;
108
109 typedef struct _refit_menu_entry {
110 CHAR16 *Title;
111 UINTN Tag;
112 UINTN Row;
113 CHAR16 ShortcutDigit;
114 CHAR16 ShortcutLetter;
115 EG_IMAGE *Image;
116 EG_IMAGE *BadgeImage;
117 struct _refit_menu_screen *SubScreen;
118 } REFIT_MENU_ENTRY;
119
120 typedef struct _refit_menu_screen {
121 CHAR16 *Title;
122 EG_IMAGE *TitleImage;
123 UINTN InfoLineCount;
124 CHAR16 **InfoLines;
125 UINTN EntryCount; // total number of entries registered
126 REFIT_MENU_ENTRY **Entries;
127 UINTN TimeoutSeconds;
128 CHAR16 *TimeoutText;
129 } REFIT_MENU_SCREEN;
130
131 typedef struct {
132 REFIT_MENU_ENTRY me;
133 CHAR16 *Title;
134 CHAR16 *LoaderPath;
135 CHAR16 *VolName;
136 EFI_DEVICE_PATH *DevicePath;
137 BOOLEAN UseGraphicsMode;
138 BOOLEAN Enabled;
139 CHAR16 *LoadOptions;
140 CHAR16 *InitrdPath; // Linux stub loader only
141 CHAR8 OSType;
142 } LOADER_ENTRY;
143
144 typedef struct {
145 REFIT_MENU_ENTRY me;
146 REFIT_VOLUME *Volume;
147 CHAR16 *LoadOptions;
148 BOOLEAN Enabled;
149 } LEGACY_ENTRY;
150
151 typedef struct {
152 BOOLEAN TextOnly;
153 UINTN Timeout;
154 UINTN DisableFlags;
155 UINTN MaxTags; // max. number of OS entries to show simultaneously in graphics mode
156 CHAR16 *BannerFileName;
157 CHAR16 *SelectionSmallFileName;
158 CHAR16 *SelectionBigFileName;
159 CHAR16 *DefaultSelection;
160 UINTN ShowTools[NUM_TOOLS];
161 CHAR8 ScanFor[NUM_SCAN_OPTIONS]; // codes of types of loaders for which to scan
162 } REFIT_CONFIG;
163
164 // Global variables
165
166 extern EFI_HANDLE SelfImageHandle;
167 extern EFI_LOADED_IMAGE *SelfLoadedImage;
168 extern EFI_FILE *SelfRootDir;
169 extern EFI_FILE *SelfDir;
170 extern CHAR16 *SelfDirPath;
171
172 extern REFIT_VOLUME *SelfVolume;
173 extern REFIT_VOLUME **Volumes;
174 extern UINTN VolumesCount;
175
176 extern REFIT_CONFIG GlobalConfig;
177
178 LOADER_ENTRY *InitializeLoaderEntry(IN LOADER_ENTRY *Entry);
179 REFIT_MENU_SCREEN *InitializeSubScreen(IN LOADER_ENTRY *Entry);
180 VOID GenerateSubScreen(LOADER_ENTRY *Entry, IN REFIT_VOLUME *Volume);
181 LOADER_ENTRY * MakeGenericLoaderEntry(VOID);
182 LOADER_ENTRY * AddLoaderEntry(IN CHAR16 *LoaderPath, IN CHAR16 *LoaderTitle, IN REFIT_VOLUME *Volume);
183 VOID SetLoaderDefaults(LOADER_ENTRY *Entry, CHAR16 *LoaderPath, IN REFIT_VOLUME *Volume);
184 LOADER_ENTRY * AddPreparedLoaderEntry(LOADER_ENTRY *Entry);
185
186 #endif
187
188 /* EOF */