]> code.delx.au - refind/blob - refind/config.c
Version 0.2.6; adds more options for "volume" token in config file
[refind] / refind / config.c
1 /*
2 * refit/config.c
3 * Configuration file functions
4 *
5 * Copyright (c) 2006 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 /*
38 * Modifications copyright (c) 2012 Roderick W. Smith
39 *
40 * Modifications distributed under the terms of the GNU General Public
41 * License (GPL) version 3 (GPLv3), a copy of which must be distributed
42 * with this source code or binaries made from it.
43 *
44 */
45
46 #include "global.h"
47 #include "lib.h"
48 #include "icns.h"
49 #include "menu.h"
50 #include "config.h"
51 #include "screen.h"
52 #include "refit_call_wrapper.h"
53
54 // constants
55
56 #define CONFIG_FILE_NAME L"refind.conf"
57 #define LINUX_OPTIONS_FILENAMES L"refind_linux.conf,refind-linux.conf,linux.conf"
58 #define MAXCONFIGFILESIZE (128*1024)
59
60 #define ENCODING_ISO8859_1 (0)
61 #define ENCODING_UTF8 (1)
62 #define ENCODING_UTF16_LE (2)
63
64 static REFIT_MENU_ENTRY MenuEntryReturn = { L"Return to Main Menu", TAG_RETURN, 0, 0, 0, NULL, NULL, NULL };
65
66 //
67 // read a file into a buffer
68 //
69
70 static EFI_STATUS ReadFile(IN EFI_FILE_HANDLE BaseDir, CHAR16 *FileName, REFIT_FILE *File)
71 {
72 EFI_STATUS Status;
73 EFI_FILE_HANDLE FileHandle;
74 EFI_FILE_INFO *FileInfo;
75 UINT64 ReadSize;
76
77 File->Buffer = NULL;
78 File->BufferSize = 0;
79
80 // read the file, allocating a buffer on the way
81 Status = refit_call5_wrapper(BaseDir->Open, BaseDir, &FileHandle, FileName, EFI_FILE_MODE_READ, 0);
82 if (CheckError(Status, L"while loading the configuration file"))
83 return Status;
84
85 FileInfo = LibFileInfo(FileHandle);
86 if (FileInfo == NULL) {
87 // TODO: print and register the error
88 refit_call1_wrapper(FileHandle->Close, FileHandle);
89 return EFI_LOAD_ERROR;
90 }
91 ReadSize = FileInfo->FileSize;
92 if (ReadSize > MAXCONFIGFILESIZE)
93 ReadSize = MAXCONFIGFILESIZE;
94 FreePool(FileInfo);
95
96 File->BufferSize = (UINTN)ReadSize; // was limited to a few K before, so this is safe
97 File->Buffer = AllocatePool(File->BufferSize);
98 Status = refit_call3_wrapper(FileHandle->Read, FileHandle, &File->BufferSize, File->Buffer);
99 if (CheckError(Status, L"while loading the configuration file")) {
100 FreePool(File->Buffer);
101 File->Buffer = NULL;
102 refit_call1_wrapper(FileHandle->Close, FileHandle);
103 return Status;
104 }
105 Status = refit_call1_wrapper(FileHandle->Close, FileHandle);
106
107 // setup for reading
108 File->Current8Ptr = (CHAR8 *)File->Buffer;
109 File->End8Ptr = File->Current8Ptr + File->BufferSize;
110 File->Current16Ptr = (CHAR16 *)File->Buffer;
111 File->End16Ptr = File->Current16Ptr + (File->BufferSize >> 1);
112
113 // detect encoding
114 File->Encoding = ENCODING_ISO8859_1; // default: 1:1 translation of CHAR8 to CHAR16
115 if (File->BufferSize >= 4) {
116 if (File->Buffer[0] == 0xFF && File->Buffer[1] == 0xFE) {
117 // BOM in UTF-16 little endian (or UTF-32 little endian)
118 File->Encoding = ENCODING_UTF16_LE; // use CHAR16 as is
119 File->Current16Ptr++;
120 } else if (File->Buffer[0] == 0xEF && File->Buffer[1] == 0xBB && File->Buffer[2] == 0xBF) {
121 // BOM in UTF-8
122 File->Encoding = ENCODING_UTF8; // translate from UTF-8 to UTF-16
123 File->Current8Ptr += 3;
124 } else if (File->Buffer[1] == 0 && File->Buffer[3] == 0) {
125 File->Encoding = ENCODING_UTF16_LE; // use CHAR16 as is
126 }
127 // TODO: detect other encodings as they are implemented
128 }
129
130 return EFI_SUCCESS;
131 }
132
133 //
134 // get a single line of text from a file
135 //
136
137 static CHAR16 *ReadLine(REFIT_FILE *File)
138 {
139 CHAR16 *Line, *q;
140 UINTN LineLength;
141
142 if (File->Buffer == NULL)
143 return NULL;
144
145 if (File->Encoding == ENCODING_ISO8859_1 || File->Encoding == ENCODING_UTF8) {
146
147 CHAR8 *p, *LineStart, *LineEnd;
148
149 p = File->Current8Ptr;
150 if (p >= File->End8Ptr)
151 return NULL;
152
153 LineStart = p;
154 for (; p < File->End8Ptr; p++)
155 if (*p == 13 || *p == 10)
156 break;
157 LineEnd = p;
158 for (; p < File->End8Ptr; p++)
159 if (*p != 13 && *p != 10)
160 break;
161 File->Current8Ptr = p;
162
163 LineLength = (UINTN)(LineEnd - LineStart) + 1;
164 Line = AllocatePool(LineLength * sizeof(CHAR16));
165 if (Line == NULL)
166 return NULL;
167
168 q = Line;
169 if (File->Encoding == ENCODING_ISO8859_1) {
170 for (p = LineStart; p < LineEnd; )
171 *q++ = *p++;
172 } else if (File->Encoding == ENCODING_UTF8) {
173 // TODO: actually handle UTF-8
174 for (p = LineStart; p < LineEnd; )
175 *q++ = *p++;
176 }
177 *q = 0;
178
179 } else if (File->Encoding == ENCODING_UTF16_LE) {
180
181 CHAR16 *p, *LineStart, *LineEnd;
182
183 p = File->Current16Ptr;
184 if (p >= File->End16Ptr)
185 return NULL;
186
187 LineStart = p;
188 for (; p < File->End16Ptr; p++)
189 if (*p == 13 || *p == 10)
190 break;
191 LineEnd = p;
192 for (; p < File->End16Ptr; p++)
193 if (*p != 13 && *p != 10)
194 break;
195 File->Current16Ptr = p;
196
197 LineLength = (UINTN)(LineEnd - LineStart) + 1;
198 Line = AllocatePool(LineLength * sizeof(CHAR16));
199 if (Line == NULL)
200 return NULL;
201
202 for (p = LineStart, q = Line; p < LineEnd; )
203 *q++ = *p++;
204 *q = 0;
205
206 } else
207 return NULL; // unsupported encoding
208
209 return Line;
210 }
211
212 //
213 // get a line of tokens from a file
214 //
215
216 UINTN ReadTokenLine(IN REFIT_FILE *File, OUT CHAR16 ***TokenList)
217 {
218 BOOLEAN LineFinished, IsQuoted = FALSE;
219 CHAR16 *Line, *Token, *p;
220 UINTN TokenCount = 0;
221
222 *TokenList = NULL;
223
224 while (TokenCount == 0) {
225 Line = ReadLine(File);
226 if (Line == NULL)
227 return(0);
228
229 p = Line;
230 LineFinished = FALSE;
231 while (!LineFinished) {
232 // skip whitespace
233 while ((*p == ' ' || *p == '\t' || *p == '=' || *p == ',') && !IsQuoted)
234 p++;
235 if (*p == 0 || *p == '#')
236 break;
237
238 if (*p == '"') {
239 IsQuoted = !IsQuoted;
240 p++;
241 } // if
242 Token = p;
243
244 // find end of token
245 while (*p && *p != '"' && ((*p != ' ' && *p != '\t' && *p != '=' && *p != '#' && *p != ',') || IsQuoted)) {
246 if ((*p == '/') && !IsQuoted) // Switch Unix-style to DOS-style directory separators
247 *p = '\\';
248 p++;
249 } // if
250 if (*p == '"')
251 IsQuoted = !IsQuoted;
252 if (*p == 0 || *p == '#')
253 LineFinished = TRUE;
254 *p++ = 0;
255
256 AddListElement((VOID ***)TokenList, &TokenCount, (VOID *)StrDuplicate(Token));
257 }
258
259 FreePool(Line);
260 }
261 return (TokenCount);
262 } /* ReadTokenLine() */
263
264 VOID FreeTokenLine(IN OUT CHAR16 ***TokenList, IN OUT UINTN *TokenCount)
265 {
266 // TODO: also free the items
267 FreeList((VOID ***)TokenList, TokenCount);
268 }
269
270 //
271 // handle a parameter with a single integer argument
272 //
273
274 static VOID HandleInt(IN CHAR16 **TokenList, IN UINTN TokenCount, OUT UINTN *Value)
275 {
276 if (TokenCount < 2) {
277 return;
278 }
279 if (TokenCount > 2) {
280 return;
281 }
282 *Value = Atoi(TokenList[1]);
283 }
284
285 //
286 // handle a parameter with a single string argument
287 //
288
289 static VOID HandleString(IN CHAR16 **TokenList, IN UINTN TokenCount, OUT CHAR16 **Value)
290 {
291 if (TokenCount < 2) {
292 return;
293 }
294 if (TokenCount > 2) {
295 return;
296 }
297 *Value = StrDuplicate(TokenList[1]);
298 }
299
300 //
301 // read config file
302 //
303
304 VOID ReadConfig(VOID)
305 {
306 EFI_STATUS Status;
307 REFIT_FILE File;
308 CHAR16 **TokenList;
309 CHAR16 *FlagName;
310 UINTN TokenCount, i;
311
312 if (!FileExists(SelfDir, CONFIG_FILE_NAME)) {
313 Print(L"Configuration file missing!\n");
314 return;
315 }
316
317 Status = ReadFile(SelfDir, CONFIG_FILE_NAME, &File);
318 if (EFI_ERROR(Status))
319 return;
320
321 for (;;) {
322 TokenCount = ReadTokenLine(&File, &TokenList);
323 if (TokenCount == 0)
324 break;
325
326 if (StriCmp(TokenList[0], L"timeout") == 0) {
327 HandleInt(TokenList, TokenCount, &(GlobalConfig.Timeout));
328
329 // Note: I'm using "disable" as equivalent to "hideui" for the moment (as of rEFInd 0.2.4)
330 // because I've folded two options into one and removed some values, so I want to catch
331 // existing configurations as much as possible. The "disable" equivalency to "hideui" will
332 // be removed sooner or later, leaving only "hideui".
333 } else if ((StriCmp(TokenList[0], L"hideui") == 0) || (StriCmp(TokenList[0], L"disable") == 0)) {
334 for (i = 1; i < TokenCount; i++) {
335 FlagName = TokenList[i];
336 if (StriCmp(FlagName, L"banner") == 0) {
337 GlobalConfig.HideUIFlags |= HIDEUI_FLAG_BANNER;
338 } else if (StriCmp(FlagName, L"label") == 0) {
339 GlobalConfig.HideUIFlags |= HIDEUI_FLAG_LABEL;
340 } else if (StriCmp(FlagName, L"singleuser") == 0) {
341 GlobalConfig.HideUIFlags |= HIDEUI_FLAG_SINGLEUSER;
342 } else if (StriCmp(FlagName, L"hwtest") == 0) {
343 GlobalConfig.HideUIFlags |= HIDEUI_FLAG_HWTEST;
344 } else if (StriCmp(FlagName, L"arrows") == 0) {
345 GlobalConfig.HideUIFlags |= HIDEUI_FLAG_ARROWS;
346 } else if (StriCmp(FlagName, L"all") == 0) {
347 GlobalConfig.HideUIFlags = HIDEUI_ALL;
348 } else {
349 Print(L" unknown hideui flag: '%s'\n", FlagName);
350 }
351 }
352
353 } else if (StriCmp(TokenList[0], L"scanfor") == 0) {
354 for (i = 0; i < NUM_SCAN_OPTIONS; i++) {
355 if (i < TokenCount)
356 GlobalConfig.ScanFor[i] = TokenList[i][0];
357 else
358 GlobalConfig.ScanFor[i] = ' ';
359 }
360 } else if (StriCmp(TokenList[0], L"showtools") == 0) {
361 SetMem(GlobalConfig.ShowTools, NUM_TOOLS * sizeof(UINTN), 0);
362 for (i = 1; (i < TokenCount) && (i < NUM_TOOLS); i++) {
363 FlagName = TokenList[i];
364 if (StriCmp(FlagName, L"shell") == 0) {
365 GlobalConfig.ShowTools[i - 1] = TAG_SHELL;
366 } else if (StriCmp(FlagName, L"gptsync") == 0) {
367 GlobalConfig.ShowTools[i - 1] = TAG_GPTSYNC;
368 } else if (StriCmp(FlagName, L"about") == 0) {
369 GlobalConfig.ShowTools[i - 1] = TAG_ABOUT;
370 } else if (StriCmp(FlagName, L"exit") == 0) {
371 GlobalConfig.ShowTools[i - 1] = TAG_EXIT;
372 } else if (StriCmp(FlagName, L"reboot") == 0) {
373 GlobalConfig.ShowTools[i - 1] = TAG_REBOOT;
374 } else if (StriCmp(FlagName, L"shutdown") == 0) {
375 GlobalConfig.ShowTools[i - 1] = TAG_SHUTDOWN;
376 } else {
377 Print(L" unknown showtools flag: '%s'\n", FlagName);
378 }
379 } // showtools options
380
381 } else if (StriCmp(TokenList[0], L"banner") == 0) {
382 HandleString(TokenList, TokenCount, &(GlobalConfig.BannerFileName));
383
384 } else if (StriCmp(TokenList[0], L"selection_small") == 0) {
385 HandleString(TokenList, TokenCount, &(GlobalConfig.SelectionSmallFileName));
386
387 } else if (StriCmp(TokenList[0], L"selection_big") == 0) {
388 HandleString(TokenList, TokenCount, &(GlobalConfig.SelectionBigFileName));
389
390 } else if (StriCmp(TokenList[0], L"default_selection") == 0) {
391 HandleString(TokenList, TokenCount, &(GlobalConfig.DefaultSelection));
392
393 } else if (StriCmp(TokenList[0], L"textonly") == 0) {
394 GlobalConfig.TextOnly = TRUE;
395
396 } else if ((StriCmp(TokenList[0], L"}") == 0) || (StriCmp(TokenList[0], L"loader") == 0) ||
397 (StriCmp(TokenList[0], L"icon") == 0) || (StriCmp(TokenList[0], L"options") == 0)) {
398 // Do nothing; handled by ScanUserConfigured()
399 } else if ((StriCmp(TokenList[0], L"max_tags") == 0) && (TokenCount > 1)) {
400 GlobalConfig.MaxTags = Atoi(TokenList[1]);
401 }
402
403 FreeTokenLine(&TokenList, &TokenCount);
404 }
405 FreePool(File.Buffer);
406 } /* VOID ReadConfig() */
407
408 static VOID AddSubmenu(LOADER_ENTRY *Entry, REFIT_FILE *File, REFIT_VOLUME *Volume, CHAR16 *Title) {
409 REFIT_MENU_SCREEN *SubScreen;
410 LOADER_ENTRY *SubEntry;
411 UINTN TokenCount;
412 CHAR16 **TokenList;
413
414 SubScreen = InitializeSubScreen(Entry);
415
416 // Set defaults for the new entry; will be modified based on lines read from the config. file....
417 SubEntry = InitializeLoaderEntry(Entry);
418
419 if ((SubEntry == NULL) || (SubScreen == NULL))
420 return;
421 SubEntry->me.Title = StrDuplicate(Title);
422
423 while (((TokenCount = ReadTokenLine(File, &TokenList)) > 0) && (StriCmp(TokenList[0], L"}") != 0)) {
424 if ((StriCmp(TokenList[0], L"loader") == 0) && (TokenCount > 1)) { // set the boot loader filename
425 if (SubEntry->LoaderPath != NULL)
426 FreePool(SubEntry->LoaderPath);
427 SubEntry->LoaderPath = StrDuplicate(TokenList[1]);
428 SubEntry->DevicePath = FileDevicePath(Volume->DeviceHandle, SubEntry->LoaderPath);
429 } else if (StriCmp(TokenList[0], L"initrd") == 0) {
430 if (SubEntry->InitrdPath != NULL)
431 FreePool(SubEntry->InitrdPath);
432 SubEntry->InitrdPath = NULL;
433 if (TokenCount > 1) {
434 SubEntry->InitrdPath = StrDuplicate(TokenList[1]);
435 }
436 } else if (StriCmp(TokenList[0], L"options") == 0) {
437 if (SubEntry->LoadOptions != NULL)
438 FreePool(SubEntry->LoadOptions);
439 SubEntry->LoadOptions = NULL;
440 if (TokenCount > 1) {
441 SubEntry->LoadOptions = StrDuplicate(TokenList[1]);
442 } // if/else
443 } else if ((StriCmp(TokenList[0], L"add_options") == 0) && (TokenCount > 1)) {
444 MergeStrings(&SubEntry->LoadOptions, TokenList[1], L' ');
445 } else if ((StriCmp(TokenList[0], L"graphics") == 0) && (TokenCount > 1)) {
446 SubEntry->UseGraphicsMode = (StriCmp(TokenList[1], L"on") == 0);
447 } else if (StriCmp(TokenList[0], L"disabled") == 0) {
448 SubEntry->Enabled = FALSE;
449 } // ief/elseif
450 FreeTokenLine(&TokenList, &TokenCount);
451 } // while()
452 if (SubEntry->InitrdPath != NULL) {
453 MergeStrings(&SubEntry->LoadOptions, L"initrd=", L' ');
454 MergeStrings(&SubEntry->LoadOptions, SubEntry->InitrdPath, 0);
455 FreePool(SubEntry->InitrdPath);
456 SubEntry->InitrdPath = NULL;
457 } // if
458 if (SubEntry->Enabled == TRUE) {
459 AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
460 }
461 Entry->me.SubScreen = SubScreen;
462 } // VOID AddSubmenu()
463
464 // Finds a volume with the specified Identifier (a volume label or a number
465 // followed by a colon, for the moment). If found, sets *Volume to point to
466 // that volume. If not, leaves it unchanged.
467 // Returns TRUE if a match was found, FALSE if not.
468 static BOOLEAN FindVolume(REFIT_VOLUME **Volume, CHAR16 *Identifier) {
469 UINTN i = 0, CountedVolumes = 0;
470 INTN Number = -1;
471 BOOLEAN Found = FALSE;
472
473 if ((StrLen(Identifier) >= 2) && (Identifier[StrLen(Identifier) - 1] == L':') &&
474 (Identifier[0] >= L'0') && (Identifier[0] <= L'9')) {
475 Number = (INTN) Atoi(Identifier);
476 }
477 while ((i < VolumesCount) && (!Found)) {
478 if (Number >= 0) { // User specified a volume by number
479 if (Volumes[i]->IsReadable) {
480 if (CountedVolumes == Number) {
481 *Volume = Volumes[i];
482 Found = TRUE;
483 }
484 CountedVolumes++;
485 } // if
486 } else { // User specified a volume by label
487 if (StriCmp(Identifier, Volumes[i]->VolName) == 0) {
488 *Volume = Volumes[i];
489 Found = TRUE;
490 } // if
491 } // if/else
492 i++;
493 } // while()
494 return (Found);
495 } // static VOID FindVolume()
496
497 // Adds the options from a SINGLE refind.conf stanza to a new loader entry and returns
498 // that entry. The calling function is then responsible for adding the entry to the
499 // list of entries.
500 static LOADER_ENTRY * AddStanzaEntries(REFIT_FILE *File, REFIT_VOLUME *Volume, CHAR16 *Title) {
501 CHAR16 **TokenList;
502 UINTN TokenCount;
503 LOADER_ENTRY *Entry;
504 BOOLEAN DefaultsSet = FALSE, AddedSubmenu = FALSE;
505 REFIT_VOLUME *CurrentVolume = Volume;
506
507 // prepare the menu entry
508 Entry = InitializeLoaderEntry(NULL);
509 if (Entry == NULL)
510 return NULL;
511
512 Entry->Title = StrDuplicate(Title);
513 Entry->me.Title = PoolPrint(L"Boot %s from %s", (Title != NULL) ? Title : L"Unknown", CurrentVolume->VolName);
514 Entry->me.Row = 0;
515 Entry->me.BadgeImage = CurrentVolume->VolBadgeImage;
516 Entry->VolName = CurrentVolume->VolName;
517
518 // Parse the config file to add options for a single stanza, terminating when the token
519 // is "}" or when the end of file is reached.
520 while (((TokenCount = ReadTokenLine(File, &TokenList)) > 0) && (StriCmp(TokenList[0], L"}") != 0)) {
521 if ((StriCmp(TokenList[0], L"loader") == 0) && (TokenCount > 1)) { // set the boot loader filename
522 Entry->LoaderPath = StrDuplicate(TokenList[1]);
523 Entry->DevicePath = FileDevicePath(CurrentVolume->DeviceHandle, Entry->LoaderPath);
524 SetLoaderDefaults(Entry, TokenList[1], CurrentVolume);
525 FreePool(Entry->LoadOptions);
526 Entry->LoadOptions = NULL; // Discard default options, if any
527 DefaultsSet = TRUE;
528 } else if ((StriCmp(TokenList[0], L"volume") == 0) && (TokenCount > 1)) {
529 if (FindVolume(&CurrentVolume, TokenList[1])) {
530 FreePool(Entry->me.Title);
531 Entry->me.Title = PoolPrint(L"Boot %s from %s", (Title != NULL) ? Title : L"Unknown", CurrentVolume->VolName);
532 Entry->me.BadgeImage = CurrentVolume->VolBadgeImage;
533 Entry->VolName = CurrentVolume->VolName;
534 } // if match found
535 } else if ((StriCmp(TokenList[0], L"icon") == 0) && (TokenCount > 1)) {
536 FreePool(Entry->me.Image);
537 Entry->me.Image = LoadIcns(CurrentVolume->RootDir, TokenList[1], 128);
538 if (Entry->me.Image == NULL) {
539 Entry->me.Image = DummyImage(128);
540 }
541 } else if ((StriCmp(TokenList[0], L"initrd") == 0) && (TokenCount > 1)) {
542 if (Entry->InitrdPath)
543 FreePool(Entry->InitrdPath);
544 Entry->InitrdPath = StrDuplicate(TokenList[1]);
545 } else if ((StriCmp(TokenList[0], L"options") == 0) && (TokenCount > 1)) {
546 if (Entry->LoadOptions)
547 FreePool(Entry->LoadOptions);
548 Entry->LoadOptions = StrDuplicate(TokenList[1]);
549 } else if ((StriCmp(TokenList[0], L"ostype") == 0) && (TokenCount > 1)) {
550 if (TokenCount > 1) {
551 Entry->OSType = TokenList[1][0];
552 }
553 } else if ((StriCmp(TokenList[0], L"graphics") == 0) && (TokenCount > 1)) {
554 Entry->UseGraphicsMode = (StriCmp(TokenList[1], L"on") == 0);
555 } else if (StriCmp(TokenList[0], L"disabled") == 0) {
556 Entry->Enabled = FALSE;
557 } else if ((StriCmp(TokenList[0], L"submenuentry") == 0) && (TokenCount > 1)) {
558 AddSubmenu(Entry, File, CurrentVolume, TokenList[1]);
559 AddedSubmenu = TRUE;
560 } // set options to pass to the loader program
561 FreeTokenLine(&TokenList, &TokenCount);
562 } // while()
563
564 if (AddedSubmenu)
565 AddMenuEntry(Entry->me.SubScreen, &MenuEntryReturn);
566
567 if (Entry->InitrdPath) {
568 MergeStrings(&Entry->LoadOptions, L"initrd=", L' ');
569 MergeStrings(&Entry->LoadOptions, Entry->InitrdPath, 0);
570 FreePool(Entry->InitrdPath);
571 Entry->InitrdPath = NULL;
572 } // if
573
574 if (!DefaultsSet)
575 SetLoaderDefaults(Entry, L"\\EFI\\BOOT\\nemo.efi", CurrentVolume); // user included no entry; use bogus one
576
577 return(Entry);
578 } // static VOID AddStanzaEntries()
579
580 // Read the user-configured loaders file, refind_loaders.conf, and add or delete
581 // entries based on the contents of that file....
582 VOID ScanUserConfigured(VOID)
583 {
584 EFI_STATUS Status;
585 REFIT_FILE File;
586 REFIT_VOLUME *Volume;
587 CHAR16 **TokenList;
588 CHAR16 *Title = NULL;
589 UINTN TokenCount;
590 LOADER_ENTRY *Entry;
591
592 if (FileExists(SelfDir, CONFIG_FILE_NAME)) {
593 Status = ReadFile(SelfDir, CONFIG_FILE_NAME, &File);
594 if (EFI_ERROR(Status))
595 return;
596
597 Volume = SelfVolume;
598 // TODO: Figure out how to set volumes (on per-image basis, preferably)
599
600 while ((TokenCount = ReadTokenLine(&File, &TokenList)) > 0) {
601 if ((StriCmp(TokenList[0], L"menuentry") == 0) && (TokenCount > 1)) {
602 Title = StrDuplicate(TokenList[1]);
603 Entry = AddStanzaEntries(&File, Volume, TokenList[1]);
604 if (Entry->Enabled) {
605 if (Entry->me.SubScreen == NULL)
606 GenerateSubScreen(Entry, Volume);
607 AddPreparedLoaderEntry(Entry);
608 } else {
609 FreePool(Entry);
610 } // if/else
611 FreePool(Title);
612 } // if
613 FreeTokenLine(&TokenList, &TokenCount);
614 } // while()
615 } // if()
616 } // VOID ScanUserConfigured()
617
618 // Read a Linux kernel options file for a Linux boot loader into memory. The LoaderPath
619 // and Volume variables identify the location of the options file, but not its name --
620 // you pass this function the filename of the Linux kernel, initial RAM disk, or other
621 // file in the target directory, and this function finds the file with a name in the
622 // comma-delimited list of names specified by LINUX_OPTIONS_FILENAMES within that
623 // directory and loads it. This function tries multiple files because I originally
624 // used the filename linux.conf, but close on the heels of that decision, the Linux
625 // kernel developers decided to use that name for a similar purpose, but with a
626 // different file format. Thus, I'm migrating rEFInd to use the name refind_linux.conf,
627 // but I want a migration period in which both names are used.
628 //
629 // The return value is a pointer to the REFIT_FILE handle for the file, or NULL if
630 // it wasn't found.
631 REFIT_FILE * ReadLinuxOptionsFile(IN CHAR16 *LoaderPath, IN REFIT_VOLUME *Volume) {
632 CHAR16 *OptionsFilename, *FullFilename;
633 BOOLEAN GoOn = TRUE;
634 UINTN i = 0;
635 REFIT_FILE *File = NULL;
636 EFI_STATUS Status;
637
638 do {
639 OptionsFilename = FindCommaDelimited(LINUX_OPTIONS_FILENAMES, i++);
640 FullFilename = FindPath(LoaderPath);
641 if ((OptionsFilename != NULL) && (FullFilename != NULL)) {
642 MergeStrings(&FullFilename, OptionsFilename, '\\');
643 if (FileExists(Volume->RootDir, FullFilename)) {
644 File = AllocateZeroPool(sizeof(REFIT_FILE));
645 Status = ReadFile(Volume->RootDir, FullFilename, File);
646 GoOn = FALSE;
647 if (CheckError(Status, L"while loading the Linux options file")) {
648 if (File != NULL)
649 FreePool(File);
650 File = NULL;
651 GoOn = TRUE;
652 } // if error
653 } // if file exists
654 } else { // a filename string is NULL
655 GoOn = FALSE;
656 } // if/else
657 if (OptionsFilename != NULL)
658 FreePool(OptionsFilename);
659 if (FullFilename != NULL)
660 FreePool(FullFilename);
661 OptionsFilename = FullFilename = NULL;
662 } while (GoOn);
663 return (File);
664 } // static REFIT_FILE * ReadLinuxOptionsFile()
665
666 // Retrieve a single line of options from a Linux kernel options file
667 CHAR16 * GetFirstOptionsFromFile(IN CHAR16 *LoaderPath, IN REFIT_VOLUME *Volume) {
668 UINTN TokenCount;
669 CHAR16 *Options = NULL;
670 CHAR16 **TokenList;
671 REFIT_FILE *File;
672
673 File = ReadLinuxOptionsFile(LoaderPath, Volume);
674 if (File != NULL) {
675 TokenCount = ReadTokenLine(File, &TokenList);
676 if (TokenCount > 1)
677 Options = StrDuplicate(TokenList[1]);
678 FreeTokenLine(&TokenList, &TokenCount);
679 FreePool(File);
680 }
681 return Options;
682 } // static CHAR16 * GetOptionsFile()
683