]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/Library/PlatformBdsLib/QemuBootOrder.c
OvmfPkg: QemuBootOrder: initialize IsFinal variable to make MSVC happy
[mirror_edk2.git] / OvmfPkg / Library / PlatformBdsLib / QemuBootOrder.c
1 /** @file
2 Rewrite the BootOrder NvVar based on QEMU's "bootorder" fw_cfg file.
3
4 Copyright (C) 2012 - 2013, Red Hat, Inc.
5 Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>
6
7 This program and the accompanying materials are licensed and made available
8 under the terms and conditions of the BSD License which accompanies this
9 distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
13 WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 **/
15
16 #include <Library/QemuFwCfgLib.h>
17 #include <Library/DebugLib.h>
18 #include <Library/MemoryAllocationLib.h>
19 #include <Library/GenericBdsLib.h>
20 #include <Library/UefiBootServicesTableLib.h>
21 #include <Library/UefiRuntimeServicesTableLib.h>
22 #include <Library/BaseLib.h>
23 #include <Library/PrintLib.h>
24 #include <Library/DevicePathLib.h>
25 #include <Guid/GlobalVariable.h>
26
27
28 /**
29 OpenFirmware to UEFI device path translation output buffer size in CHAR16's.
30 **/
31 #define TRANSLATION_OUTPUT_SIZE 0x100
32
33
34 /**
35 Numbers of nodes in OpenFirmware device paths that are required and examined.
36 **/
37 #define REQUIRED_OFW_NODES 2
38 #define EXAMINED_OFW_NODES 4
39
40
41 /**
42 Simple character classification routines, corresponding to POSIX class names
43 and ASCII encoding.
44 **/
45 STATIC
46 BOOLEAN
47 IsAlnum (
48 IN CHAR8 Chr
49 )
50 {
51 return (('0' <= Chr && Chr <= '9') ||
52 ('A' <= Chr && Chr <= 'Z') ||
53 ('a' <= Chr && Chr <= 'z')
54 );
55 }
56
57
58 STATIC
59 BOOLEAN
60 IsDriverNamePunct (
61 IN CHAR8 Chr
62 )
63 {
64 return (Chr == ',' || Chr == '.' || Chr == '_' ||
65 Chr == '+' || Chr == '-'
66 );
67 }
68
69
70 STATIC
71 BOOLEAN
72 IsPrintNotDelim (
73 IN CHAR8 Chr
74 )
75 {
76 return (32 <= Chr && Chr <= 126 &&
77 Chr != '/' && Chr != '@' && Chr != ':');
78 }
79
80
81 /**
82 Utility types and functions.
83 **/
84 typedef struct {
85 CONST CHAR8 *Ptr; // not necessarily NUL-terminated
86 UINTN Len; // number of non-NUL characters
87 } SUBSTRING;
88
89
90 /**
91
92 Check if Substring and String have identical contents.
93
94 The function relies on the restriction that a SUBSTRING cannot have embedded
95 NULs either.
96
97 @param[in] Substring The SUBSTRING input to the comparison.
98
99 @param[in] String The ASCII string input to the comparison.
100
101
102 @return Whether the inputs have identical contents.
103
104 **/
105 STATIC
106 BOOLEAN
107 SubstringEq (
108 IN SUBSTRING Substring,
109 IN CONST CHAR8 *String
110 )
111 {
112 UINTN Pos;
113 CONST CHAR8 *Chr;
114
115 Pos = 0;
116 Chr = String;
117
118 while (Pos < Substring.Len && Substring.Ptr[Pos] == *Chr) {
119 ++Pos;
120 ++Chr;
121 }
122
123 return (BOOLEAN)(Pos == Substring.Len && *Chr == '\0');
124 }
125
126
127 /**
128
129 Parse a comma-separated list of hexadecimal integers into the elements of an
130 UINT32 array.
131
132 Whitespace, "0x" prefixes, leading or trailing commas, sequences of commas,
133 or an empty string are not allowed; they are rejected.
134
135 The function relies on ASCII encoding.
136
137 @param[in] UnitAddress The substring to parse.
138
139 @param[out] Result The array, allocated by the caller, to receive
140 the parsed values. This parameter may be NULL if
141 NumResults is zero on input.
142
143 @param[in out] NumResults On input, the number of elements allocated for
144 Result. On output, the number of elements it has
145 taken (or would have taken) to parse the string
146 fully.
147
148
149 @retval RETURN_SUCCESS UnitAddress has been fully parsed.
150 NumResults is set to the number of parsed
151 values; the corresponding elements have
152 been set in Result. The rest of Result's
153 elements are unchanged.
154
155 @retval RETURN_BUFFER_TOO_SMALL UnitAddress has been fully parsed.
156 NumResults is set to the number of parsed
157 values, but elements have been stored only
158 up to the input value of NumResults, which
159 is less than what has been parsed.
160
161 @retval RETURN_INVALID_PARAMETER Parse error. The contents of Results is
162 indeterminate. NumResults has not been
163 changed.
164
165 **/
166 STATIC
167 RETURN_STATUS
168 ParseUnitAddressHexList (
169 IN SUBSTRING UnitAddress,
170 OUT UINT32 *Result,
171 IN OUT UINTN *NumResults
172 )
173 {
174 UINTN Entry; // number of entry currently being parsed
175 UINT32 EntryVal; // value being constructed for current entry
176 CHAR8 PrevChr; // UnitAddress character previously checked
177 UINTN Pos; // current position within UnitAddress
178 RETURN_STATUS Status;
179
180 Entry = 0;
181 EntryVal = 0;
182 PrevChr = ',';
183
184 for (Pos = 0; Pos < UnitAddress.Len; ++Pos) {
185 CHAR8 Chr;
186 INT8 Val;
187
188 Chr = UnitAddress.Ptr[Pos];
189 Val = ('a' <= Chr && Chr <= 'f') ? (Chr - 'a' + 10) :
190 ('A' <= Chr && Chr <= 'F') ? (Chr - 'A' + 10) :
191 ('0' <= Chr && Chr <= '9') ? (Chr - '0' ) :
192 -1;
193
194 if (Val >= 0) {
195 if (EntryVal > 0xFFFFFFF) {
196 return RETURN_INVALID_PARAMETER;
197 }
198 EntryVal = (EntryVal << 4) | Val;
199 } else if (Chr == ',') {
200 if (PrevChr == ',') {
201 return RETURN_INVALID_PARAMETER;
202 }
203 if (Entry < *NumResults) {
204 Result[Entry] = EntryVal;
205 }
206 ++Entry;
207 EntryVal = 0;
208 } else {
209 return RETURN_INVALID_PARAMETER;
210 }
211
212 PrevChr = Chr;
213 }
214
215 if (PrevChr == ',') {
216 return RETURN_INVALID_PARAMETER;
217 }
218 if (Entry < *NumResults) {
219 Result[Entry] = EntryVal;
220 Status = RETURN_SUCCESS;
221 } else {
222 Status = RETURN_BUFFER_TOO_SMALL;
223 }
224 ++Entry;
225
226 *NumResults = Entry;
227 return Status;
228 }
229
230
231 /**
232 A simple array of Boot Option ID's.
233 **/
234 typedef struct {
235 UINT16 *Data;
236 UINTN Allocated;
237 UINTN Produced;
238 } BOOT_ORDER;
239
240
241 /**
242 Array element tracking an enumerated boot option that has the
243 LOAD_OPTION_ACTIVE attribute.
244 **/
245 typedef struct {
246 CONST BDS_COMMON_OPTION *BootOption; // reference only, no ownership
247 BOOLEAN Appended; // has been added to a BOOT_ORDER?
248 } ACTIVE_OPTION;
249
250
251 /**
252
253 Append an active boot option to BootOrder, reallocating the latter if needed.
254
255 @param[in out] BootOrder The structure pointing to the array and holding
256 allocation and usage counters.
257
258 @param[in] ActiveOption The active boot option whose ID should be
259 appended to the array.
260
261
262 @retval RETURN_SUCCESS ID of ActiveOption appended.
263
264 @retval RETURN_OUT_OF_RESOURCES Memory reallocation failed.
265
266 **/
267 STATIC
268 RETURN_STATUS
269 BootOrderAppend (
270 IN OUT BOOT_ORDER *BootOrder,
271 IN OUT ACTIVE_OPTION *ActiveOption
272 )
273 {
274 if (BootOrder->Produced == BootOrder->Allocated) {
275 UINTN AllocatedNew;
276 UINT16 *DataNew;
277
278 ASSERT (BootOrder->Allocated > 0);
279 AllocatedNew = BootOrder->Allocated * 2;
280 DataNew = ReallocatePool (
281 BootOrder->Allocated * sizeof (*BootOrder->Data),
282 AllocatedNew * sizeof (*DataNew),
283 BootOrder->Data
284 );
285 if (DataNew == NULL) {
286 return RETURN_OUT_OF_RESOURCES;
287 }
288 BootOrder->Allocated = AllocatedNew;
289 BootOrder->Data = DataNew;
290 }
291
292 BootOrder->Data[BootOrder->Produced++] =
293 ActiveOption->BootOption->BootCurrent;
294 ActiveOption->Appended = TRUE;
295 return RETURN_SUCCESS;
296 }
297
298
299 /**
300
301 Create an array of ACTIVE_OPTION elements for a boot option list.
302
303 @param[in] BootOptionList A boot option list, created with
304 BdsLibEnumerateAllBootOption().
305
306 @param[out] ActiveOption Pointer to the first element in the new array.
307 The caller is responsible for freeing the array
308 with FreePool() after use.
309
310 @param[out] Count Number of elements in the new array.
311
312
313 @retval RETURN_SUCCESS The ActiveOption array has been created.
314
315 @retval RETURN_NOT_FOUND No active entry has been found in
316 BootOptionList.
317
318 @retval RETURN_OUT_OF_RESOURCES Memory allocation failed.
319
320 **/
321 STATIC
322 RETURN_STATUS
323 CollectActiveOptions (
324 IN CONST LIST_ENTRY *BootOptionList,
325 OUT ACTIVE_OPTION **ActiveOption,
326 OUT UINTN *Count
327 )
328 {
329 UINTN ScanMode;
330
331 *ActiveOption = NULL;
332
333 //
334 // Scan the list twice:
335 // - count active entries,
336 // - store links to active entries.
337 //
338 for (ScanMode = 0; ScanMode < 2; ++ScanMode) {
339 CONST LIST_ENTRY *Link;
340
341 Link = BootOptionList->ForwardLink;
342 *Count = 0;
343 while (Link != BootOptionList) {
344 CONST BDS_COMMON_OPTION *Current;
345
346 Current = CR (Link, BDS_COMMON_OPTION, Link, BDS_LOAD_OPTION_SIGNATURE);
347 if (IS_LOAD_OPTION_TYPE (Current->Attribute, LOAD_OPTION_ACTIVE)) {
348 if (ScanMode == 1) {
349 (*ActiveOption)[*Count].BootOption = Current;
350 (*ActiveOption)[*Count].Appended = FALSE;
351 }
352 ++*Count;
353 }
354 Link = Link->ForwardLink;
355 }
356
357 if (ScanMode == 0) {
358 if (*Count == 0) {
359 return RETURN_NOT_FOUND;
360 }
361 *ActiveOption = AllocatePool (*Count * sizeof **ActiveOption);
362 if (*ActiveOption == NULL) {
363 return RETURN_OUT_OF_RESOURCES;
364 }
365 }
366 }
367 return RETURN_SUCCESS;
368 }
369
370
371 /**
372 OpenFirmware device path node
373 **/
374 typedef struct {
375 SUBSTRING DriverName;
376 SUBSTRING UnitAddress;
377 SUBSTRING DeviceArguments;
378 } OFW_NODE;
379
380
381 /**
382
383 Parse an OpenFirmware device path node into the caller-allocated OFW_NODE
384 structure, and advance in the input string.
385
386 The node format is mostly parsed after IEEE 1275-1994, 3.2.1.1 "Node names"
387 (a leading slash is expected and not returned):
388
389 /driver-name@unit-address[:device-arguments][<LF>]
390
391 A single trailing <LF> character is consumed but not returned. A trailing
392 <LF> or NUL character terminates the device path.
393
394 The function relies on ASCII encoding.
395
396 @param[in out] Ptr Address of the pointer pointing to the start of the
397 node string. After successful parsing *Ptr is set to
398 the byte immediately following the consumed
399 characters. On error it points to the byte that
400 caused the error. The input string is never modified.
401
402 @param[out] OfwNode The members of this structure point into the input
403 string, designating components of the node.
404 Separators are never included. If "device-arguments"
405 is missing, then DeviceArguments.Ptr is set to NULL.
406 All components that are present have nonzero length.
407
408 If the call doesn't succeed, the contents of this
409 structure is indeterminate.
410
411 @param[out] IsFinal In case of successul parsing, this parameter signals
412 whether the node just parsed is the final node in the
413 device path. The call after a final node will attempt
414 to start parsing the next path. If the call doesn't
415 succeed, then this parameter is not changed.
416
417
418 @retval RETURN_SUCCESS Parsing successful.
419
420 @retval RETURN_NOT_FOUND Parsing terminated. *Ptr was (and is)
421 pointing to an empty string.
422
423 @retval RETURN_INVALID_PARAMETER Parse error.
424
425 **/
426 STATIC
427 RETURN_STATUS
428 ParseOfwNode (
429 IN OUT CONST CHAR8 **Ptr,
430 OUT OFW_NODE *OfwNode,
431 OUT BOOLEAN *IsFinal
432 )
433 {
434 //
435 // A leading slash is expected. End of string is tolerated.
436 //
437 switch (**Ptr) {
438 case '\0':
439 return RETURN_NOT_FOUND;
440
441 case '/':
442 ++*Ptr;
443 break;
444
445 default:
446 return RETURN_INVALID_PARAMETER;
447 }
448
449 //
450 // driver-name
451 //
452 OfwNode->DriverName.Ptr = *Ptr;
453 OfwNode->DriverName.Len = 0;
454 while (OfwNode->DriverName.Len < 32 &&
455 (IsAlnum (**Ptr) || IsDriverNamePunct (**Ptr))
456 ) {
457 ++*Ptr;
458 ++OfwNode->DriverName.Len;
459 }
460
461 if (OfwNode->DriverName.Len == 0 || OfwNode->DriverName.Len == 32) {
462 return RETURN_INVALID_PARAMETER;
463 }
464
465
466 //
467 // unit-address
468 //
469 if (**Ptr != '@') {
470 return RETURN_INVALID_PARAMETER;
471 }
472 ++*Ptr;
473
474 OfwNode->UnitAddress.Ptr = *Ptr;
475 OfwNode->UnitAddress.Len = 0;
476 while (IsPrintNotDelim (**Ptr)) {
477 ++*Ptr;
478 ++OfwNode->UnitAddress.Len;
479 }
480
481 if (OfwNode->UnitAddress.Len == 0) {
482 return RETURN_INVALID_PARAMETER;
483 }
484
485
486 //
487 // device-arguments, may be omitted
488 //
489 OfwNode->DeviceArguments.Len = 0;
490 if (**Ptr == ':') {
491 ++*Ptr;
492 OfwNode->DeviceArguments.Ptr = *Ptr;
493
494 while (IsPrintNotDelim (**Ptr)) {
495 ++*Ptr;
496 ++OfwNode->DeviceArguments.Len;
497 }
498
499 if (OfwNode->DeviceArguments.Len == 0) {
500 return RETURN_INVALID_PARAMETER;
501 }
502 }
503 else {
504 OfwNode->DeviceArguments.Ptr = NULL;
505 }
506
507 switch (**Ptr) {
508 case '\n':
509 ++*Ptr;
510 //
511 // fall through
512 //
513
514 case '\0':
515 *IsFinal = TRUE;
516 break;
517
518 case '/':
519 *IsFinal = FALSE;
520 break;
521
522 default:
523 return RETURN_INVALID_PARAMETER;
524 }
525
526 DEBUG ((
527 DEBUG_VERBOSE,
528 "%a: DriverName=\"%.*a\" UnitAddress=\"%.*a\" DeviceArguments=\"%.*a\"\n",
529 __FUNCTION__,
530 OfwNode->DriverName.Len, OfwNode->DriverName.Ptr,
531 OfwNode->UnitAddress.Len, OfwNode->UnitAddress.Ptr,
532 OfwNode->DeviceArguments.Len,
533 OfwNode->DeviceArguments.Ptr == NULL ? "" : OfwNode->DeviceArguments.Ptr
534 ));
535 return RETURN_SUCCESS;
536 }
537
538
539 /**
540
541 Translate an array of OpenFirmware device nodes to a UEFI device path
542 fragment.
543
544 @param[in] OfwNode Array of OpenFirmware device nodes to
545 translate, constituting the beginning of an
546 OpenFirmware device path.
547
548 @param[in] NumNodes Number of elements in OfwNode.
549
550 @param[out] Translated Destination array receiving the UEFI path
551 fragment, allocated by the caller. If the
552 return value differs from RETURN_SUCCESS, its
553 contents is indeterminate.
554
555 @param[in out] TranslatedSize On input, the number of CHAR16's in
556 Translated. On RETURN_SUCCESS this parameter
557 is assigned the number of non-NUL CHAR16's
558 written to Translated. In case of other return
559 values, TranslatedSize is indeterminate.
560
561
562 @retval RETURN_SUCCESS Translation successful.
563
564 @retval RETURN_BUFFER_TOO_SMALL The translation does not fit into the number
565 of bytes provided.
566
567 @retval RETURN_UNSUPPORTED The array of OpenFirmware device nodes can't
568 be translated in the current implementation.
569
570 **/
571 STATIC
572 RETURN_STATUS
573 TranslateOfwNodes (
574 IN CONST OFW_NODE *OfwNode,
575 IN UINTN NumNodes,
576 OUT CHAR16 *Translated,
577 IN OUT UINTN *TranslatedSize
578 )
579 {
580 UINT32 PciDevFun[2];
581 UINTN NumEntries;
582 UINTN Written;
583
584 //
585 // Get PCI device and optional PCI function. Assume a single PCI root.
586 //
587 if (NumNodes < REQUIRED_OFW_NODES ||
588 !SubstringEq (OfwNode[0].DriverName, "pci")
589 ) {
590 return RETURN_UNSUPPORTED;
591 }
592 PciDevFun[1] = 0;
593 NumEntries = sizeof (PciDevFun) / sizeof (PciDevFun[0]);
594 if (ParseUnitAddressHexList (
595 OfwNode[1].UnitAddress,
596 PciDevFun,
597 &NumEntries
598 ) != RETURN_SUCCESS
599 ) {
600 return RETURN_UNSUPPORTED;
601 }
602
603 if (NumNodes >= 4 &&
604 SubstringEq (OfwNode[1].DriverName, "ide") &&
605 SubstringEq (OfwNode[2].DriverName, "drive") &&
606 SubstringEq (OfwNode[3].DriverName, "disk")
607 ) {
608 //
609 // OpenFirmware device path (IDE disk, IDE CD-ROM):
610 //
611 // /pci@i0cf8/ide@1,1/drive@0/disk@0
612 // ^ ^ ^ ^ ^
613 // | | | | master or slave
614 // | | | primary or secondary
615 // | PCI slot & function holding IDE controller
616 // PCI root at system bus port, PIO
617 //
618 // UEFI device path:
619 //
620 // PciRoot(0x0)/Pci(0x1,0x1)/Ata(Primary,Master,0x0)
621 // ^
622 // fixed LUN
623 //
624 UINT32 Secondary;
625 UINT32 Slave;
626
627 NumEntries = 1;
628 if (ParseUnitAddressHexList (
629 OfwNode[2].UnitAddress,
630 &Secondary,
631 &NumEntries
632 ) != RETURN_SUCCESS ||
633 Secondary > 1 ||
634 ParseUnitAddressHexList (
635 OfwNode[3].UnitAddress,
636 &Slave,
637 &NumEntries // reuse after previous single-element call
638 ) != RETURN_SUCCESS ||
639 Slave > 1
640 ) {
641 return RETURN_UNSUPPORTED;
642 }
643
644 Written = UnicodeSPrintAsciiFormat (
645 Translated,
646 *TranslatedSize * sizeof (*Translated), // BufferSize in bytes
647 "PciRoot(0x0)/Pci(0x%x,0x%x)/Ata(%a,%a,0x0)",
648 PciDevFun[0],
649 PciDevFun[1],
650 Secondary ? "Secondary" : "Primary",
651 Slave ? "Slave" : "Master"
652 );
653 } else if (NumNodes >= 4 &&
654 SubstringEq (OfwNode[1].DriverName, "isa") &&
655 SubstringEq (OfwNode[2].DriverName, "fdc") &&
656 SubstringEq (OfwNode[3].DriverName, "floppy")
657 ) {
658 //
659 // OpenFirmware device path (floppy disk):
660 //
661 // /pci@i0cf8/isa@1/fdc@03f0/floppy@0
662 // ^ ^ ^ ^
663 // | | | A: or B:
664 // | | ISA controller io-port (hex)
665 // | PCI slot holding ISA controller
666 // PCI root at system bus port, PIO
667 //
668 // UEFI device path:
669 //
670 // PciRoot(0x0)/Pci(0x1,0x0)/Floppy(0x0)
671 // ^
672 // ACPI UID
673 //
674 UINT32 AcpiUid;
675
676 NumEntries = 1;
677 if (ParseUnitAddressHexList (
678 OfwNode[3].UnitAddress,
679 &AcpiUid,
680 &NumEntries
681 ) != RETURN_SUCCESS ||
682 AcpiUid > 1
683 ) {
684 return RETURN_UNSUPPORTED;
685 }
686
687 Written = UnicodeSPrintAsciiFormat (
688 Translated,
689 *TranslatedSize * sizeof (*Translated), // BufferSize in bytes
690 "PciRoot(0x0)/Pci(0x%x,0x%x)/Floppy(0x%x)",
691 PciDevFun[0],
692 PciDevFun[1],
693 AcpiUid
694 );
695 } else if (NumNodes >= 3 &&
696 SubstringEq (OfwNode[1].DriverName, "scsi") &&
697 SubstringEq (OfwNode[2].DriverName, "disk")
698 ) {
699 //
700 // OpenFirmware device path (virtio-blk disk):
701 //
702 // /pci@i0cf8/scsi@6[,3]/disk@0,0
703 // ^ ^ ^ ^ ^
704 // | | | fixed
705 // | | PCI function corresponding to disk (optional)
706 // | PCI slot holding disk
707 // PCI root at system bus port, PIO
708 //
709 // UEFI device path prefix:
710 //
711 // PciRoot(0x0)/Pci(0x6,0x0)/HD( -- if PCI function is 0 or absent
712 // PciRoot(0x0)/Pci(0x6,0x3)/HD( -- if PCI function is present and nonzero
713 //
714 Written = UnicodeSPrintAsciiFormat (
715 Translated,
716 *TranslatedSize * sizeof (*Translated), // BufferSize in bytes
717 "PciRoot(0x0)/Pci(0x%x,0x%x)/HD(",
718 PciDevFun[0],
719 PciDevFun[1]
720 );
721 } else if (NumNodes >= 4 &&
722 SubstringEq (OfwNode[1].DriverName, "scsi") &&
723 SubstringEq (OfwNode[2].DriverName, "channel") &&
724 SubstringEq (OfwNode[3].DriverName, "disk")
725 ) {
726 //
727 // OpenFirmware device path (virtio-scsi disk):
728 //
729 // /pci@i0cf8/scsi@7[,3]/channel@0/disk@2,3
730 // ^ ^ ^ ^ ^
731 // | | | | LUN
732 // | | | target
733 // | | channel (unused, fixed 0)
734 // | PCI slot[, function] holding SCSI controller
735 // PCI root at system bus port, PIO
736 //
737 // UEFI device path prefix:
738 //
739 // PciRoot(0x0)/Pci(0x7,0x0)/Scsi(0x2,0x3)
740 // -- if PCI function is 0 or absent
741 // PciRoot(0x0)/Pci(0x7,0x3)/Scsi(0x2,0x3)
742 // -- if PCI function is present and nonzero
743 //
744 UINT32 TargetLun[2];
745
746 TargetLun[1] = 0;
747 NumEntries = sizeof (TargetLun) / sizeof (TargetLun[0]);
748 if (ParseUnitAddressHexList (
749 OfwNode[3].UnitAddress,
750 TargetLun,
751 &NumEntries
752 ) != RETURN_SUCCESS
753 ) {
754 return RETURN_UNSUPPORTED;
755 }
756
757 Written = UnicodeSPrintAsciiFormat (
758 Translated,
759 *TranslatedSize * sizeof (*Translated), // BufferSize in bytes
760 "PciRoot(0x0)/Pci(0x%x,0x%x)/Scsi(0x%x,0x%x)",
761 PciDevFun[0],
762 PciDevFun[1],
763 TargetLun[0],
764 TargetLun[1]
765 );
766 } else if (NumNodes >= 3 &&
767 SubstringEq (OfwNode[1].DriverName, "ethernet") &&
768 SubstringEq (OfwNode[2].DriverName, "ethernet-phy")
769 ) {
770 //
771 // OpenFirmware device path (Ethernet NIC):
772 //
773 // /pci@i0cf8/ethernet@3[,2]/ethernet-phy@0
774 // ^ ^ ^
775 // | | fixed
776 // | PCI slot[, function] holding Ethernet card
777 // PCI root at system bus port, PIO
778 //
779 // UEFI device path prefix (dependent on presence of nonzero PCI function):
780 //
781 // PciRoot(0x0)/Pci(0x3,0x0)/MAC(525400E15EEF,0x1)
782 // PciRoot(0x0)/Pci(0x3,0x2)/MAC(525400E15EEF,0x1)
783 // ^ ^
784 // MAC address IfType (1 == Ethernet)
785 //
786 // (Some UEFI NIC drivers don't set 0x1 for IfType.)
787 //
788 Written = UnicodeSPrintAsciiFormat (
789 Translated,
790 *TranslatedSize * sizeof (*Translated), // BufferSize in bytes
791 "PciRoot(0x0)/Pci(0x%x,0x%x)/MAC",
792 PciDevFun[0],
793 PciDevFun[1]
794 );
795 } else {
796 return RETURN_UNSUPPORTED;
797 }
798
799 //
800 // There's no way to differentiate between "completely used up without
801 // truncation" and "truncated", so treat the former as the latter, and return
802 // success only for "some room left unused".
803 //
804 if (Written + 1 < *TranslatedSize) {
805 *TranslatedSize = Written;
806 return RETURN_SUCCESS;
807 }
808
809 return RETURN_BUFFER_TOO_SMALL;
810 }
811
812
813 /**
814
815 Translate an OpenFirmware device path fragment to a UEFI device path
816 fragment, and advance in the input string.
817
818 @param[in out] Ptr Address of the pointer pointing to the start
819 of the path string. After successful
820 translation (RETURN_SUCCESS) or at least
821 successful parsing (RETURN_UNSUPPORTED,
822 RETURN_BUFFER_TOO_SMALL), *Ptr is set to the
823 byte immediately following the consumed
824 characters. In other error cases, it points to
825 the byte that caused the error.
826
827 @param[out] Translated Destination array receiving the UEFI path
828 fragment, allocated by the caller. If the
829 return value differs from RETURN_SUCCESS, its
830 contents is indeterminate.
831
832 @param[in out] TranslatedSize On input, the number of CHAR16's in
833 Translated. On RETURN_SUCCESS this parameter
834 is assigned the number of non-NUL CHAR16's
835 written to Translated. In case of other return
836 values, TranslatedSize is indeterminate.
837
838
839 @retval RETURN_SUCCESS Translation successful.
840
841 @retval RETURN_BUFFER_TOO_SMALL The OpenFirmware device path was parsed
842 successfully, but its translation did not
843 fit into the number of bytes provided.
844 Further calls to this function are
845 possible.
846
847 @retval RETURN_UNSUPPORTED The OpenFirmware device path was parsed
848 successfully, but it can't be translated in
849 the current implementation. Further calls
850 to this function are possible.
851
852 @retval RETURN_NOT_FOUND Translation terminated. On input, *Ptr was
853 pointing to the empty string or "HALT". On
854 output, *Ptr points to the empty string
855 (ie. "HALT" is consumed transparently when
856 present).
857
858 @retval RETURN_INVALID_PARAMETER Parse error. This is a permanent error.
859
860 **/
861 STATIC
862 RETURN_STATUS
863 TranslateOfwPath (
864 IN OUT CONST CHAR8 **Ptr,
865 OUT CHAR16 *Translated,
866 IN OUT UINTN *TranslatedSize
867 )
868 {
869 UINTN NumNodes;
870 RETURN_STATUS Status;
871 OFW_NODE Node[EXAMINED_OFW_NODES];
872 BOOLEAN IsFinal;
873 OFW_NODE Skip;
874
875 IsFinal = FALSE;
876 NumNodes = 0;
877 if (AsciiStrCmp (*Ptr, "HALT") == 0) {
878 *Ptr += 4;
879 Status = RETURN_NOT_FOUND;
880 } else {
881 Status = ParseOfwNode (Ptr, &Node[NumNodes], &IsFinal);
882 }
883
884 if (Status == RETURN_NOT_FOUND) {
885 DEBUG ((DEBUG_VERBOSE, "%a: no more nodes\n", __FUNCTION__));
886 return RETURN_NOT_FOUND;
887 }
888
889 while (Status == RETURN_SUCCESS && !IsFinal) {
890 ++NumNodes;
891 Status = ParseOfwNode (
892 Ptr,
893 (NumNodes < EXAMINED_OFW_NODES) ? &Node[NumNodes] : &Skip,
894 &IsFinal
895 );
896 }
897
898 switch (Status) {
899 case RETURN_SUCCESS:
900 ++NumNodes;
901 break;
902
903 case RETURN_INVALID_PARAMETER:
904 DEBUG ((DEBUG_VERBOSE, "%a: parse error\n", __FUNCTION__));
905 return RETURN_INVALID_PARAMETER;
906
907 default:
908 ASSERT (0);
909 }
910
911 Status = TranslateOfwNodes (
912 Node,
913 NumNodes < EXAMINED_OFW_NODES ? NumNodes : EXAMINED_OFW_NODES,
914 Translated,
915 TranslatedSize);
916 switch (Status) {
917 case RETURN_SUCCESS:
918 DEBUG ((DEBUG_VERBOSE, "%a: success: \"%s\"\n", __FUNCTION__, Translated));
919 break;
920
921 case RETURN_BUFFER_TOO_SMALL:
922 DEBUG ((DEBUG_VERBOSE, "%a: buffer too small\n", __FUNCTION__));
923 break;
924
925 case RETURN_UNSUPPORTED:
926 DEBUG ((DEBUG_VERBOSE, "%a: unsupported\n", __FUNCTION__));
927 break;
928
929 default:
930 ASSERT (0);
931 }
932 return Status;
933 }
934
935
936 /**
937
938 Convert the UEFI DevicePath to full text representation with DevPathToText,
939 then match the UEFI device path fragment in Translated against it.
940
941 @param[in] Translated UEFI device path fragment, translated from
942 OpenFirmware format, to search for.
943
944 @param[in] TranslatedLength The length of Translated in CHAR16's.
945
946 @param[in] DevicePath Boot option device path whose textual rendering
947 to search in.
948
949 @param[in] DevPathToText Binary-to-text conversion protocol for DevicePath.
950
951
952 @retval TRUE If Translated was found at the beginning of DevicePath after
953 converting the latter to text.
954
955 @retval FALSE If DevicePath was NULL, or it could not be converted, or there
956 was no match.
957
958 **/
959 STATIC
960 BOOLEAN
961 Match (
962 IN CONST CHAR16 *Translated,
963 IN UINTN TranslatedLength,
964 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath
965 )
966 {
967 CHAR16 *Converted;
968 BOOLEAN Result;
969
970 Converted = ConvertDevicePathToText (
971 DevicePath,
972 FALSE, // DisplayOnly
973 FALSE // AllowShortcuts
974 );
975 if (Converted == NULL) {
976 return FALSE;
977 }
978
979 //
980 // Attempt to expand any relative UEFI device path starting with HD() to an
981 // absolute device path first. The logic imitates BdsLibBootViaBootOption().
982 // We don't have to free the absolute device path,
983 // BdsExpandPartitionPartialDevicePathToFull() has internal caching.
984 //
985 Result = FALSE;
986 if (DevicePathType (DevicePath) == MEDIA_DEVICE_PATH &&
987 DevicePathSubType (DevicePath) == MEDIA_HARDDRIVE_DP) {
988 EFI_DEVICE_PATH_PROTOCOL *AbsDevicePath;
989 CHAR16 *AbsConverted;
990
991 AbsDevicePath = BdsExpandPartitionPartialDevicePathToFull (
992 (HARDDRIVE_DEVICE_PATH *) DevicePath);
993 if (AbsDevicePath == NULL) {
994 goto Exit;
995 }
996 AbsConverted = ConvertDevicePathToText (AbsDevicePath, FALSE, FALSE);
997 if (AbsConverted == NULL) {
998 goto Exit;
999 }
1000 DEBUG ((DEBUG_VERBOSE,
1001 "%a: expanded relative device path \"%s\" for prefix matching\n",
1002 __FUNCTION__, Converted));
1003 FreePool (Converted);
1004 Converted = AbsConverted;
1005 }
1006
1007 //
1008 // Is Translated a prefix of Converted?
1009 //
1010 Result = (BOOLEAN)(StrnCmp (Converted, Translated, TranslatedLength) == 0);
1011 DEBUG ((
1012 DEBUG_VERBOSE,
1013 "%a: against \"%s\": %a\n",
1014 __FUNCTION__,
1015 Converted,
1016 Result ? "match" : "no match"
1017 ));
1018 Exit:
1019 FreePool (Converted);
1020 return Result;
1021 }
1022
1023
1024 /**
1025 Append some of the unselected active boot options to the boot order.
1026
1027 This function should accommodate any further policy changes in "boot option
1028 survival". Currently we're adding back everything that starts with neither
1029 PciRoot() nor HD().
1030
1031 @param[in,out] BootOrder The structure holding the boot order to
1032 complete. The caller is responsible for
1033 initializing (and potentially populating) it
1034 before calling this function.
1035
1036 @param[in,out] ActiveOption The array of active boot options to scan.
1037 Entries marked as Appended will be skipped.
1038 Those of the rest that satisfy the survival
1039 policy will be added to BootOrder with
1040 BootOrderAppend().
1041
1042 @param[in] ActiveCount Number of elements in ActiveOption.
1043
1044
1045 @retval RETURN_SUCCESS BootOrder has been extended with any eligible boot
1046 options.
1047
1048 @return Error codes returned by BootOrderAppend().
1049 **/
1050 STATIC
1051 RETURN_STATUS
1052 BootOrderComplete (
1053 IN OUT BOOT_ORDER *BootOrder,
1054 IN OUT ACTIVE_OPTION *ActiveOption,
1055 IN UINTN ActiveCount
1056 )
1057 {
1058 RETURN_STATUS Status;
1059 UINTN Idx;
1060
1061 Status = RETURN_SUCCESS;
1062 Idx = 0;
1063 while (!RETURN_ERROR (Status) && Idx < ActiveCount) {
1064 if (!ActiveOption[Idx].Appended) {
1065 CONST BDS_COMMON_OPTION *Current;
1066 CONST EFI_DEVICE_PATH_PROTOCOL *FirstNode;
1067
1068 Current = ActiveOption[Idx].BootOption;
1069 FirstNode = Current->DevicePath;
1070 if (FirstNode != NULL) {
1071 CHAR16 *Converted;
1072 STATIC CHAR16 ConvFallBack[] = L"<unable to convert>";
1073 BOOLEAN Keep;
1074
1075 Converted = ConvertDevicePathToText (FirstNode, FALSE, FALSE);
1076 if (Converted == NULL) {
1077 Converted = ConvFallBack;
1078 }
1079
1080 Keep = TRUE;
1081 if (DevicePathType(FirstNode) == MEDIA_DEVICE_PATH &&
1082 DevicePathSubType(FirstNode) == MEDIA_HARDDRIVE_DP) {
1083 //
1084 // drop HD()
1085 //
1086 Keep = FALSE;
1087 } else if (DevicePathType(FirstNode) == ACPI_DEVICE_PATH &&
1088 DevicePathSubType(FirstNode) == ACPI_DP) {
1089 ACPI_HID_DEVICE_PATH *Acpi;
1090
1091 Acpi = (ACPI_HID_DEVICE_PATH *) FirstNode;
1092 if ((Acpi->HID & PNP_EISA_ID_MASK) == PNP_EISA_ID_CONST &&
1093 EISA_ID_TO_NUM (Acpi->HID) == 0x0a03) {
1094 //
1095 // drop PciRoot()
1096 //
1097 Keep = FALSE;
1098 }
1099 }
1100
1101 if (Keep) {
1102 Status = BootOrderAppend (BootOrder, &ActiveOption[Idx]);
1103 if (!RETURN_ERROR (Status)) {
1104 DEBUG ((DEBUG_VERBOSE, "%a: keeping \"%s\"\n", __FUNCTION__,
1105 Converted));
1106 }
1107 } else {
1108 DEBUG ((DEBUG_VERBOSE, "%a: dropping \"%s\"\n", __FUNCTION__,
1109 Converted));
1110 }
1111
1112 if (Converted != ConvFallBack) {
1113 FreePool (Converted);
1114 }
1115 }
1116 }
1117 ++Idx;
1118 }
1119 return Status;
1120 }
1121
1122
1123 /**
1124
1125 Set the boot order based on configuration retrieved from QEMU.
1126
1127 Attempt to retrieve the "bootorder" fw_cfg file from QEMU. Translate the
1128 OpenFirmware device paths therein to UEFI device path fragments. Match the
1129 translated fragments against BootOptionList, and rewrite the BootOrder NvVar
1130 so that it corresponds to the order described in fw_cfg.
1131
1132 @param[in] BootOptionList A boot option list, created with
1133 BdsLibEnumerateAllBootOption ().
1134
1135
1136 @retval RETURN_SUCCESS BootOrder NvVar rewritten.
1137
1138 @retval RETURN_UNSUPPORTED QEMU's fw_cfg is not supported.
1139
1140 @retval RETURN_NOT_FOUND Empty or nonexistent "bootorder" fw_cfg
1141 file, or no match found between the
1142 "bootorder" fw_cfg file and BootOptionList.
1143
1144 @retval RETURN_INVALID_PARAMETER Parse error in the "bootorder" fw_cfg file.
1145
1146 @retval RETURN_OUT_OF_RESOURCES Memory allocation failed.
1147
1148 @return Values returned by gBS->LocateProtocol ()
1149 or gRT->SetVariable ().
1150
1151 **/
1152 RETURN_STATUS
1153 SetBootOrderFromQemu (
1154 IN CONST LIST_ENTRY *BootOptionList
1155 )
1156 {
1157 RETURN_STATUS Status;
1158 FIRMWARE_CONFIG_ITEM FwCfgItem;
1159 UINTN FwCfgSize;
1160 CHAR8 *FwCfg;
1161 CONST CHAR8 *FwCfgPtr;
1162
1163 BOOT_ORDER BootOrder;
1164 ACTIVE_OPTION *ActiveOption;
1165 UINTN ActiveCount;
1166
1167 UINTN TranslatedSize;
1168 CHAR16 Translated[TRANSLATION_OUTPUT_SIZE];
1169
1170 Status = QemuFwCfgFindFile ("bootorder", &FwCfgItem, &FwCfgSize);
1171 if (Status != RETURN_SUCCESS) {
1172 return Status;
1173 }
1174
1175 if (FwCfgSize == 0) {
1176 return RETURN_NOT_FOUND;
1177 }
1178
1179 FwCfg = AllocatePool (FwCfgSize);
1180 if (FwCfg == NULL) {
1181 return RETURN_OUT_OF_RESOURCES;
1182 }
1183
1184 QemuFwCfgSelectItem (FwCfgItem);
1185 QemuFwCfgReadBytes (FwCfgSize, FwCfg);
1186 if (FwCfg[FwCfgSize - 1] != '\0') {
1187 Status = RETURN_INVALID_PARAMETER;
1188 goto ErrorFreeFwCfg;
1189 }
1190
1191 DEBUG ((DEBUG_VERBOSE, "%a: FwCfg:\n", __FUNCTION__));
1192 DEBUG ((DEBUG_VERBOSE, "%a\n", FwCfg));
1193 DEBUG ((DEBUG_VERBOSE, "%a: FwCfg: <end>\n", __FUNCTION__));
1194 FwCfgPtr = FwCfg;
1195
1196 BootOrder.Produced = 0;
1197 BootOrder.Allocated = 1;
1198 BootOrder.Data = AllocatePool (
1199 BootOrder.Allocated * sizeof (*BootOrder.Data)
1200 );
1201 if (BootOrder.Data == NULL) {
1202 Status = RETURN_OUT_OF_RESOURCES;
1203 goto ErrorFreeFwCfg;
1204 }
1205
1206 Status = CollectActiveOptions (BootOptionList, &ActiveOption, &ActiveCount);
1207 if (RETURN_ERROR (Status)) {
1208 goto ErrorFreeBootOrder;
1209 }
1210
1211 //
1212 // translate each OpenFirmware path
1213 //
1214 TranslatedSize = sizeof (Translated) / sizeof (Translated[0]);
1215 Status = TranslateOfwPath (&FwCfgPtr, Translated, &TranslatedSize);
1216 while (Status == RETURN_SUCCESS ||
1217 Status == RETURN_UNSUPPORTED ||
1218 Status == RETURN_BUFFER_TOO_SMALL) {
1219 if (Status == RETURN_SUCCESS) {
1220 UINTN Idx;
1221
1222 //
1223 // match translated OpenFirmware path against all active boot options
1224 //
1225 for (Idx = 0; Idx < ActiveCount; ++Idx) {
1226 if (Match (
1227 Translated,
1228 TranslatedSize, // contains length, not size, in CHAR16's here
1229 ActiveOption[Idx].BootOption->DevicePath
1230 )
1231 ) {
1232 //
1233 // match found, store ID and continue with next OpenFirmware path
1234 //
1235 Status = BootOrderAppend (&BootOrder, &ActiveOption[Idx]);
1236 if (Status != RETURN_SUCCESS) {
1237 goto ErrorFreeActiveOption;
1238 }
1239 break;
1240 }
1241 } // scanned all active boot options
1242 } // translation successful
1243
1244 TranslatedSize = sizeof (Translated) / sizeof (Translated[0]);
1245 Status = TranslateOfwPath (&FwCfgPtr, Translated, &TranslatedSize);
1246 } // scanning of OpenFirmware paths done
1247
1248 if (Status == RETURN_NOT_FOUND && BootOrder.Produced > 0) {
1249 //
1250 // No more OpenFirmware paths, some matches found: rewrite BootOrder NvVar.
1251 // Some of the active boot options that have not been selected over fw_cfg
1252 // should be preserved at the end of the boot order.
1253 //
1254 Status = BootOrderComplete (&BootOrder, ActiveOption, ActiveCount);
1255 if (RETURN_ERROR (Status)) {
1256 goto ErrorFreeActiveOption;
1257 }
1258
1259 //
1260 // See Table 10 in the UEFI Spec 2.3.1 with Errata C for the required
1261 // attributes.
1262 //
1263 Status = gRT->SetVariable (
1264 L"BootOrder",
1265 &gEfiGlobalVariableGuid,
1266 EFI_VARIABLE_NON_VOLATILE |
1267 EFI_VARIABLE_BOOTSERVICE_ACCESS |
1268 EFI_VARIABLE_RUNTIME_ACCESS,
1269 BootOrder.Produced * sizeof (*BootOrder.Data),
1270 BootOrder.Data
1271 );
1272 DEBUG ((
1273 DEBUG_INFO,
1274 "%a: setting BootOrder: %a\n",
1275 __FUNCTION__,
1276 Status == EFI_SUCCESS ? "success" : "error"
1277 ));
1278 }
1279
1280 ErrorFreeActiveOption:
1281 FreePool (ActiveOption);
1282
1283 ErrorFreeBootOrder:
1284 FreePool (BootOrder.Data);
1285
1286 ErrorFreeFwCfg:
1287 FreePool (FwCfg);
1288
1289 return Status;
1290 }