[go: up one dir, main page]

Menu

[9e1265]: / refind / scan.c  Maximize  Restore  History

Download this file

1693 lines (1542 with data), 79.4 kB

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
/*
* refind/scan.c
* Code related to scanning for boot loaders
*
* Copyright (c) 2006-2010 Christoph Pfisterer
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of Christoph Pfisterer nor the names of the
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Modifications copyright (c) 2012-2021 Roderick W. Smith
*
* Modifications distributed under the terms of the GNU General Public
* License (GPL) version 3 (GPLv3), or (at your option) any later version.
*
*/
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "global.h"
#include "config.h"
#include "screen.h"
#include "lib.h"
#include "icns.h"
#include "menu.h"
#include "mok.h"
#include "apple.h"
#include "mystrings.h"
#include "security_policy.h"
#include "driver_support.h"
#include "launch_efi.h"
#include "launch_legacy.h"
#include "linux.h"
#include "log.h"
#include "scan.h"
#include "install.h"
#include "../include/refit_call_wrapper.h"
//
// constants
#define MACOSX_LOADER_DIR L"System\\Library\\CoreServices"
#define MACOSX_LOADER_PATH ( MACOSX_LOADER_DIR L"\\boot.efi" )
#if defined (EFIX64)
#define SHELL_NAMES L"\\EFI\\tools\\shell.efi,\\EFI\\tools\\shellx64.efi,\\shell.efi,\\shellx64.efi"
#define GPTSYNC_NAMES L"\\EFI\\tools\\gptsync.efi,\\EFI\\tools\\gptsync_x64.efi"
#define GDISK_NAMES L"\\EFI\\tools\\gdisk.efi,\\EFI\\tools\\gdisk_x64.efi"
#define NETBOOT_NAMES L"\\EFI\\tools\\ipxe.efi"
#define MEMTEST_NAMES L"memtest86.efi,memtest86_x64.efi,memtest86x64.efi,bootx64.efi"
#define FALLBACK_FULLNAME L"EFI\\BOOT\\bootx64.efi"
#define FALLBACK_BASENAME L"bootx64.efi"
#elif defined (EFI32)
#define SHELL_NAMES L"\\EFI\\tools\\shell.efi,\\EFI\\tools\\shellia32.efi,\\shell.efi,\\shellia32.efi"
#define GPTSYNC_NAMES L"\\EFI\\tools\\gptsync.efi,\\EFI\\tools\\gptsync_ia32.efi"
#define GDISK_NAMES L"\\EFI\\tools\\gdisk.efi,\\EFI\\tools\\gdisk_ia32.efi"
#define NETBOOT_NAMES L"\\EFI\\tools\\ipxe.efi"
#define MEMTEST_NAMES L"memtest86.efi,memtest86_ia32.efi,memtest86ia32.efi,bootia32.efi"
#define FALLBACK_FULLNAME L"EFI\\BOOT\\bootia32.efi"
#define FALLBACK_BASENAME L"bootia32.efi"
#elif defined (EFIAARCH64)
#define SHELL_NAMES L"\\EFI\\tools\\shell.efi,\\EFI\\tools\\shellaa64.efi,\\shell.efi,\\shellaa64.efi"
#define GPTSYNC_NAMES L"\\EFI\\tools\\gptsync.efi,\\EFI\\tools\\gptsync_aa64.efi"
#define GDISK_NAMES L"\\EFI\\tools\\gdisk.efi,\\EFI\\tools\\gdisk_aa64.efi"
#define NETBOOT_NAMES L"\\EFI\\tools\\ipxe.efi"
#define MEMTEST_NAMES L"memtest86.efi,memtest86_aa64.efi,memtest86aa64.efi,bootaa64.efi"
#define FALLBACK_FULLNAME L"EFI\\BOOT\\bootaa64.efi"
#define FALLBACK_BASENAME L"bootaa64.efi"
#else
#define SHELL_NAMES L"\\EFI\\tools\\shell.efi,\\shell.efi"
#define GPTSYNC_NAMES L"\\EFI\\tools\\gptsync.efi"
#define GDISK_NAMES L"\\EFI\\tools\\gdisk.efi"
#define NETBOOT_NAMES L"\\EFI\\tools\\ipxe.efi"
#define MEMTEST_NAMES L"memtest86.efi"
#define DRIVER_DIRS L"drivers"
#define FALLBACK_FULLNAME L"EFI\\BOOT\\boot.efi" /* Not really correct */
#define FALLBACK_BASENAME L"boot.efi" /* Not really correct */
#endif
#define IPXE_DISCOVER_NAME L"\\efi\\tools\\ipxe_discover.efi"
#define IPXE_NAME L"\\efi\\tools\\ipxe.efi"
// Patterns that identify Linux kernels. Added to the loader match pattern when the
// scan_all_linux_kernels option is set in the configuration file. Causes kernels WITHOUT
// a ".efi" extension to be found when scanning for boot loaders.
#define LINUX_MATCH_PATTERNS L"vmlinuz*,bzImage*,kernel*"
EFI_GUID GlobalGuid = EFI_GLOBAL_VARIABLE;
static REFIT_MENU_ENTRY MenuEntryAbout = { L"About rEFInd", TAG_ABOUT, 1, 0, 'A', NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryReset = { L"Reboot Computer", TAG_REBOOT, 1, 0, 'R', NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryShutdown = { L"Shut Down Computer", TAG_SHUTDOWN, 1, 0, 'U', NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryRotateCsr = { L"Change SIP Policy", TAG_CSR_ROTATE, 1, 0, 0, NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryFirmware = { L"Reboot to Computer Setup Utility", TAG_FIRMWARE, 1, 0, 0, NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryManageHidden = { L"Manage Hidden Tags Menu", TAG_HIDDEN, 1, 0, 0, NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryInstall = { L"Install rEFInd to Disk", TAG_INSTALL, 1, 0, 0, NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryBootorder = { L"Manage EFI boot order", TAG_BOOTORDER, 1, 0, 0, NULL, NULL, NULL };
static REFIT_MENU_ENTRY MenuEntryExit = { L"Exit rEFInd", TAG_EXIT, 1, 0, 0, NULL, NULL, NULL };
// Structure used to hold boot loader filenames and time stamps in
// a linked list; used to sort entries within a directory.
struct LOADER_LIST {
CHAR16 *FileName;
EFI_TIME TimeStamp;
struct LOADER_LIST *NextEntry;
};
//
// misc functions
//
// Creates a copy of a menu screen.
// Returns a pointer to the copy of the menu screen.
static REFIT_MENU_SCREEN* CopyMenuScreen(REFIT_MENU_SCREEN *Entry) {
REFIT_MENU_SCREEN *NewEntry;
UINTN i;
NewEntry = AllocateZeroPool(sizeof(REFIT_MENU_SCREEN));
if ((Entry != NULL) && (NewEntry != NULL)) {
NewEntry->Title = (Entry->Title) ? StrDuplicate(Entry->Title) : NULL;
if (Entry->TitleImage != NULL) {
NewEntry->TitleImage = AllocatePool(sizeof(EG_IMAGE));
if (NewEntry->TitleImage != NULL)
CopyMem(NewEntry->TitleImage, Entry->TitleImage, sizeof(EG_IMAGE));
} // if
NewEntry->InfoLineCount = Entry->InfoLineCount;
NewEntry->InfoLines = (CHAR16**) AllocateZeroPool(Entry->InfoLineCount * (sizeof(CHAR16*)));
for (i = 0; i < Entry->InfoLineCount && NewEntry->InfoLines; i++) {
NewEntry->InfoLines[i] = (Entry->InfoLines[i]) ? StrDuplicate(Entry->InfoLines[i]) : NULL;
} // for
NewEntry->EntryCount = Entry->EntryCount;
NewEntry->Entries = (REFIT_MENU_ENTRY**) AllocateZeroPool(Entry->EntryCount * (sizeof (REFIT_MENU_ENTRY*)));
for (i = 0; i < Entry->EntryCount && NewEntry->Entries; i++) {
AddMenuEntry(NewEntry, Entry->Entries[i]);
} // for
NewEntry->TimeoutSeconds = Entry->TimeoutSeconds;
NewEntry->TimeoutText = (Entry->TimeoutText) ? StrDuplicate(Entry->TimeoutText) : NULL;
NewEntry->Hint1 = (Entry->Hint1) ? StrDuplicate(Entry->Hint1) : NULL;
NewEntry->Hint2 = (Entry->Hint2) ? StrDuplicate(Entry->Hint2) : NULL;
} // if
return (NewEntry);
} // REFIT_MENU_SCREEN* CopyMenuScreen()
// Creates a copy of a menu entry. Intended to enable moving a stack-based
// menu entry (such as the ones for the "reboot" and "exit" functions) to
// to the heap. This enables easier deletion of the whole set of menu
// entries when re-scanning.
// Returns a pointer to the copy of the menu entry.
static REFIT_MENU_ENTRY* CopyMenuEntry(REFIT_MENU_ENTRY *Entry) {
REFIT_MENU_ENTRY *NewEntry;
NewEntry = AllocateZeroPool(sizeof(REFIT_MENU_ENTRY));
if ((Entry != NULL) && (NewEntry != NULL)) {
CopyMem(NewEntry, Entry, sizeof(REFIT_MENU_ENTRY));
NewEntry->Title = (Entry->Title) ? StrDuplicate(Entry->Title) : NULL;
if (Entry->BadgeImage != NULL) {
NewEntry->BadgeImage = AllocatePool(sizeof(EG_IMAGE));
if (NewEntry->BadgeImage != NULL)
CopyMem(NewEntry->BadgeImage, Entry->BadgeImage, sizeof(EG_IMAGE));
}
if (Entry->Image != NULL) {
NewEntry->Image = AllocatePool(sizeof(EG_IMAGE));
if (NewEntry->Image != NULL)
CopyMem(NewEntry->Image, Entry->Image, sizeof(EG_IMAGE));
}
if (Entry->SubScreen != NULL) {
NewEntry->SubScreen = CopyMenuScreen(Entry->SubScreen);
}
} // if
return (NewEntry);
} // REFIT_MENU_ENTRY* CopyMenuEntry()
// Creates a new LOADER_ENTRY data structure and populates it with
// default values from the specified Entry, or NULL values if Entry
// is unspecified (NULL).
// Returns a pointer to the new data structure, or NULL if it
// couldn't be allocated
LOADER_ENTRY *InitializeLoaderEntry(IN LOADER_ENTRY *Entry) {
LOADER_ENTRY *NewEntry = NULL;
NewEntry = AllocateZeroPool(sizeof(LOADER_ENTRY));
if (NewEntry != NULL) {
NewEntry->me.Title = NULL;
NewEntry->me.Tag = TAG_LOADER;
NewEntry->Enabled = TRUE;
NewEntry->UseGraphicsMode = FALSE;
NewEntry->OSType = 0;
NewEntry->EfiLoaderPath = NULL;
NewEntry->EfiBootNum = 0;
if (Entry != NULL) {
NewEntry->LoaderPath = (Entry->LoaderPath) ? StrDuplicate(Entry->LoaderPath) : NULL;
NewEntry->Volume = Entry->Volume;
NewEntry->UseGraphicsMode = Entry->UseGraphicsMode;
NewEntry->LoadOptions = (Entry->LoadOptions) ? StrDuplicate(Entry->LoadOptions) : NULL;
NewEntry->InitrdPath = (Entry->InitrdPath) ? StrDuplicate(Entry->InitrdPath) : NULL;
NewEntry->EfiLoaderPath = (Entry->EfiLoaderPath) ? DuplicateDevicePath(Entry->EfiLoaderPath) : NULL;
NewEntry->EfiBootNum = Entry->EfiBootNum;
}
} // if
return (NewEntry);
} // LOADER_ENTRY *InitializeLoaderEntry()
// Prepare a REFIT_MENU_SCREEN data structure for a subscreen entry. This sets up
// the default entry that launches the boot loader using the same options as the
// main Entry does. Subsequent options can be added by the calling function.
// If a subscreen already exists in the Entry that's passed to this function,
// it's left unchanged and a pointer to it is returned.
// Returns a pointer to the new subscreen data structure, or NULL if there
// were problems allocating memory.
REFIT_MENU_SCREEN *InitializeSubScreen(IN LOADER_ENTRY *Entry) {
CHAR16 *FileName, *MainOptions = NULL;
REFIT_MENU_SCREEN *SubScreen = NULL;
LOADER_ENTRY *SubEntry;
FileName = Basename(Entry->LoaderPath);
if (Entry->me.SubScreen == NULL) { // No subscreen yet; initialize default entry....
SubScreen = AllocateZeroPool(sizeof(REFIT_MENU_SCREEN));
if (SubScreen != NULL) {
SubScreen->Title = PoolPrint(L"Boot Options for %s on %s",
(Entry->Title != NULL) ? Entry->Title : FileName,
Entry->Volume->VolName);
LOG(2, LOG_LINE_NORMAL, L"Creating subscreen '%s'", SubScreen->Title);
SubScreen->TitleImage = Entry->me.Image;
// default entry
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
LOG(2, LOG_LINE_NORMAL, L"Creating loader entry for '%s'", SubScreen->Title);
SubEntry->me.Title = StrDuplicate(L"Boot using default options");
MainOptions = SubEntry->LoadOptions;
SubEntry->LoadOptions = AddInitrdToOptions(MainOptions, SubEntry->InitrdPath);
MyFreePool(MainOptions);
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // if (SubEntry != NULL)
SubScreen->Hint1 = StrDuplicate(SUBSCREEN_HINT1);
if (GlobalConfig.HideUIFlags & HIDEUI_FLAG_EDITOR) {
SubScreen->Hint2 = StrDuplicate(SUBSCREEN_HINT2_NO_EDITOR);
} else {
SubScreen->Hint2 = StrDuplicate(SUBSCREEN_HINT2);
} // if/else
} // if (SubScreen != NULL)
} else { // existing subscreen; less initialization, and just add new entry later....
SubScreen = Entry->me.SubScreen;
} // if/else
MyFreePool(FileName);
return SubScreen;
} // REFIT_MENU_SCREEN *InitializeSubScreen()
VOID GenerateSubScreen(LOADER_ENTRY *Entry, IN REFIT_VOLUME *Volume, IN BOOLEAN GenerateReturn) {
REFIT_MENU_SCREEN *SubScreen;
LOADER_ENTRY *SubEntry;
CHAR16 *InitrdName, *KernelVersion = NULL;
CHAR16 DiagsFileName[256];
REFIT_FILE *File;
UINTN TokenCount;
CHAR16 **TokenList;
// create the submenu
if (StrLen(Entry->Title) == 0) {
MyFreePool(Entry->Title);
Entry->Title = NULL;
}
SubScreen = InitializeSubScreen(Entry);
// loader-specific submenu entries
if (Entry->OSType == 'M') { // entries for macOS
#if defined(EFIX64)
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot macOS with a 64-bit kernel";
SubEntry->LoadOptions = L"arch=x86_64";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // if
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot macOS with a 32-bit kernel";
SubEntry->LoadOptions = L"arch=i386";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // if
#endif
if (!(GlobalConfig.HideUIFlags & HIDEUI_FLAG_SINGLEUSER)) {
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot macOS in verbose mode";
SubEntry->UseGraphicsMode = FALSE;
SubEntry->LoadOptions = L"-v";
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // if
#if defined(EFIX64)
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot macOS in verbose mode (64-bit)";
SubEntry->UseGraphicsMode = FALSE;
SubEntry->LoadOptions = L"-v arch=x86_64";
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot macOS in verbose mode (32-bit)";
SubEntry->UseGraphicsMode = FALSE;
SubEntry->LoadOptions = L"-v arch=i386";
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
#endif
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot macOS in single user mode";
SubEntry->UseGraphicsMode = FALSE;
SubEntry->LoadOptions = L"-v -s";
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // if
} // single-user mode allowed
if (!(GlobalConfig.HideUIFlags & HIDEUI_FLAG_SAFEMODE)) {
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot macOS in safe mode";
SubEntry->UseGraphicsMode = FALSE;
SubEntry->LoadOptions = L"-v -x";
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // if
} // safe mode allowed
// check for Apple hardware diagnostics
StrCpy(DiagsFileName, L"System\\Library\\CoreServices\\.diagnostics\\diags.efi");
if (FileExists(Volume->RootDir, DiagsFileName) && !(GlobalConfig.HideUIFlags & HIDEUI_FLAG_HWTEST)) {
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Run Apple Hardware Test";
MyFreePool(SubEntry->LoaderPath);
SubEntry->LoaderPath = StrDuplicate(DiagsFileName);
SubEntry->Volume = Volume;
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // if
} // if diagnostics entry found
} else if (Entry->OSType == 'L') { // entries for Linux kernels with EFI stub loaders
File = ReadLinuxOptionsFile(Entry->LoaderPath, Volume);
if (File != NULL) {
InitrdName = FindInitrd(Entry->LoaderPath, Volume);
TokenCount = ReadTokenLine(File, &TokenList);
KernelVersion = FindNumbers(Entry->LoaderPath);
ReplaceSubstring(&(TokenList[1]), KERNEL_VERSION, KernelVersion);
// first entry requires special processing, since it was initially set
// up with a default title but correct options by InitializeSubScreen(),
// earlier....
if ((TokenCount > 1) && (SubScreen->Entries != NULL) && (SubScreen->Entries[0] != NULL)) {
MyFreePool(SubScreen->Entries[0]->Title);
SubScreen->Entries[0]->Title = TokenList[0] ? StrDuplicate(TokenList[0]) : StrDuplicate(L"Boot Linux");
} // if
FreeTokenLine(&TokenList, &TokenCount);
while ((TokenCount = ReadTokenLine(File, &TokenList)) > 1) {
ReplaceSubstring(&(TokenList[1]), KERNEL_VERSION, KernelVersion);
SubEntry = InitializeLoaderEntry(Entry);
SubEntry->me.Title = TokenList[0] ? StrDuplicate(TokenList[0]) : StrDuplicate(L"Boot Linux");
MyFreePool(SubEntry->LoadOptions);
SubEntry->LoadOptions = AddInitrdToOptions(TokenList[1], InitrdName);
FreeTokenLine(&TokenList, &TokenCount);
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_LINUX;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
} // while
MyFreePool(KernelVersion);
MyFreePool(InitrdName);
MyFreePool(File);
} // if
} else if (Entry->OSType == 'E') { // entries for ELILO
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Run ELILO in interactive mode";
SubEntry->LoadOptions = L"-p";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot Linux for a 17\" iMac or a 15\" MacBook Pro (*)";
SubEntry->LoadOptions = L"-d 0 i17";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot Linux for a 20\" iMac (*)";
SubEntry->LoadOptions = L"-d 0 i20";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot Linux for a Mac Mini (*)";
SubEntry->LoadOptions = L"-d 0 mini";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
AddMenuInfoLine(SubScreen, L"NOTE: This is an example. Entries");
AddMenuInfoLine(SubScreen, L"marked with (*) may not work.");
} else if (Entry->OSType == 'X') { // entries for xom.efi
// by default, skip the built-in selection and boot from hard disk only
Entry->LoadOptions = L"-s -h";
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot Windows from Hard Disk";
SubEntry->LoadOptions = L"-s -h";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Boot Windows from CD-ROM";
SubEntry->LoadOptions = L"-s -c";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
SubEntry = InitializeLoaderEntry(Entry);
if (SubEntry != NULL) {
SubEntry->me.Title = L"Run XOM in text mode";
SubEntry->LoadOptions = L"-v";
SubEntry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
AddMenuEntry(SubScreen, (REFIT_MENU_ENTRY *)SubEntry);
}
} // entries for xom.efi
if (GenerateReturn)
AddMenuEntry(SubScreen, &MenuEntryReturn);
Entry->me.SubScreen = SubScreen;
} // VOID GenerateSubScreen()
// Sets a few defaults for a loader entry -- mainly the icon, but also the OS type
// code and shortcut letter. For Linux EFI stub loaders, also sets kernel options
// that will (with luck) work fairly automatically.
VOID SetLoaderDefaults(LOADER_ENTRY *Entry, CHAR16 *LoaderPath, REFIT_VOLUME *Volume) {
CHAR16 *NameClues, *PathOnly, *NoExtension, *OSIconName = NULL, *Temp;
CHAR16 ShortcutLetter = 0;
NameClues = Basename(LoaderPath);
PathOnly = FindPath(LoaderPath);
NoExtension = StripEfiExtension(NameClues);
LOG(3, LOG_LINE_NORMAL, L"Finding loader defaults for '%s'", Entry->me.Title);
if (Volume->DiskKind == DISK_KIND_NET) {
MergeStrings(&NameClues, Entry->me.Title, L' ');
} else {
// locate a custom icon for the loader
// Anything found here takes precedence over the "hints" in the OSIconName variable
LOG(4, LOG_LINE_NORMAL, L"Trying to load icon in same directory as loader....");
if (!Entry->me.Image) {
Entry->me.Image = egLoadIconAnyType(Volume->RootDir, PathOnly, NoExtension,
GlobalConfig.IconSizes[ICON_SIZE_BIG]);
}
if (!Entry->me.Image) {
Entry->me.Image = egCopyImage(Volume->VolIconImage);
}
// Begin creating icon "hints" by using last part of directory path leading
// to the loader
LOG(4, LOG_LINE_NORMAL, L"Creating icon hint based on loader path '%s'", LoaderPath);
Temp = FindLastDirName(LoaderPath);
MergeStrings(&OSIconName, Temp, L',');
MyFreePool(Temp);
Temp = NULL;
if (OSIconName != NULL) {
ShortcutLetter = OSIconName[0];
}
// Add every "word" in the filesystem and partition names, delimited by
// spaces, dashes (-), underscores (_), or colons (:), to the list of
// hints to be used in searching for OS icons.
LOG(4, LOG_LINE_NORMAL, L"Merging hints based on filesystem name ('%s')", Volume->FsName);
MergeWords(&OSIconName, Volume->FsName, L',');
LOG(4, LOG_LINE_NORMAL, L"Merging hints based on partition name ('%s')", Volume->PartName);
MergeWords(&OSIconName, Volume->PartName, L',');
} // if/else network boot
LOG(4, LOG_LINE_NORMAL, L"Adding hints based on specific loaders");
// detect specific loaders
if (StriSubCmp(L"bzImage", NameClues) || StriSubCmp(L"vmlinuz", NameClues) || StriSubCmp(L"kernel", NameClues)) {
if (Volume->DiskKind != DISK_KIND_NET) {
GuessLinuxDistribution(&OSIconName, Volume, LoaderPath);
Entry->LoadOptions = GetMainLinuxOptions(LoaderPath, Volume);
}
MergeStrings(&OSIconName, L"linux", L',');
Entry->OSType = 'L';
if (ShortcutLetter == 0)
ShortcutLetter = 'L';
Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_LINUX;
} else if (StriSubCmp(L"refit", LoaderPath)) {
MergeStrings(&OSIconName, L"refit", L',');
Entry->OSType = 'R';
ShortcutLetter = 'R';
} else if (StriSubCmp(L"refind", LoaderPath)) {
MergeStrings(&OSIconName, L"refind", L',');
Entry->OSType = 'R';
ShortcutLetter = 'R';
} else if (StriSubCmp(MACOSX_LOADER_PATH, LoaderPath)) {
MergeStrings(&OSIconName, L"mac", L',');
Entry->OSType = 'M';
ShortcutLetter = 'M';
Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_OSX;
} else if (MyStriCmp(NameClues, L"diags.efi")) {
MergeStrings(&OSIconName, L"hwtest", L',');
} else if (MyStriCmp(NameClues, L"e.efi") || MyStriCmp(NameClues, L"elilo.efi") || StriSubCmp(L"elilo", NameClues)) {
MergeStrings(&OSIconName, L"elilo,linux", L',');
Entry->OSType = 'E';
if (ShortcutLetter == 0)
ShortcutLetter = 'L';
Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_ELILO;
} else if (StriSubCmp(L"grub", NameClues)) {
MergeStrings(&OSIconName, L"grub,linux", L',');
Entry->OSType = 'G';
ShortcutLetter = 'G';
Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_GRUB;
} else if (MyStriCmp(NameClues, L"cdboot.efi") ||
MyStriCmp(NameClues, L"bootmgr.efi") ||
MyStriCmp(NameClues, L"bootmgfw.efi") ||
MyStriCmp(NameClues, L"bkpbootmgfw.efi")) {
MergeStrings(&OSIconName, L"win8", L',');
Entry->OSType = 'W';
ShortcutLetter = 'W';
Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
} else if (MyStriCmp(NameClues, L"xom.efi")) {
MergeStrings(&OSIconName, L"xom,win,win8", L',');
Entry->OSType = 'X';
ShortcutLetter = 'W';
Entry->UseGraphicsMode = GlobalConfig.GraphicsFor & GRAPHICS_FOR_WINDOWS;
}
else if (StriSubCmp(L"ipxe", NameClues)) {
Entry->OSType = 'N';
ShortcutLetter = 'N';
MergeStrings(&OSIconName, L"network", L',');
}
if ((ShortcutLetter >= 'a') && (ShortcutLetter <= 'z'))
ShortcutLetter = ShortcutLetter - 'a' + 'A'; // convert lowercase to uppercase
Entry->me.ShortcutLetter = ShortcutLetter;
if (Entry->me.Image == NULL) {
LOG(4, LOG_LINE_NORMAL, L"Trying to locate an icon based on hints '%s'", OSIconName);
Entry->me.Image = LoadOSIcon(OSIconName, L"unknown", FALSE);
}
MyFreePool(PathOnly);
MyFreePool(OSIconName);
MyFreePool(NoExtension);
MyFreePool(NameClues);
} // VOID SetLoaderDefaults()
// Add an NVRAM-based EFI boot loader entry to the menu.
static LOADER_ENTRY * AddEfiLoaderEntry(IN EFI_DEVICE_PATH *EfiLoaderPath,
IN CHAR16 *LoaderTitle,
IN UINT16 EfiBootNum,
IN UINTN Row,
EG_IMAGE *Icon) {
LOADER_ENTRY *Entry;
CHAR16 *OSIconName = NULL;
CHAR16 *FullTitle = NULL;
CHAR16 *TempStr;
Entry = InitializeLoaderEntry(NULL);
if (Entry) {
Entry->DiscoveryType = DISCOVERY_TYPE_AUTO;
if (LoaderTitle)
FullTitle = PoolPrint(L"Reboot to %s", LoaderTitle);
Entry->me.Title = StrDuplicate((FullTitle) ? FullTitle : L"Unknown");
Entry->me.Row = Row;
Entry->me.Tag = TAG_FIRMWARE_LOADER;
Entry->Title = StrDuplicate((LoaderTitle) ? LoaderTitle : L"Unknown"); // without "Reboot to"
Entry->EfiLoaderPath = DuplicateDevicePath(EfiLoaderPath);
TempStr = DevicePathToStr(EfiLoaderPath);
LOG(2, LOG_LINE_NORMAL, L"EFI loader path = '%s'", TempStr);
MyFreePool(TempStr);
Entry->EfiBootNum = EfiBootNum;
MergeWords(&OSIconName, Entry->me.Title, L',');
MergeStrings(&OSIconName, L"unknown", L',');
if (Icon) {
Entry->me.Image = Icon;
} else {
Entry->me.Image = LoadOSIcon(OSIconName, NULL, FALSE);
}
if (Row == 0) {
Entry->me.BadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_EFI);
} else {
Entry->me.BadgeImage = NULL;
}
MyFreePool(OSIconName);
Entry->LoaderPath = NULL;
Entry->Volume = NULL;
Entry->LoadOptions = NULL;
Entry->InitrdPath = NULL;
Entry->Enabled = TRUE;
} // if (Entry)
AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
return Entry;
} // LOADER_ENTRY * AddEfiLoaderEntry()
// Add a specified EFI boot loader to the list, using automatic settings
// for icons, options, etc.
static LOADER_ENTRY * AddLoaderEntry(IN OUT CHAR16 *LoaderPath, IN CHAR16 *LoaderTitle,
IN REFIT_VOLUME *Volume, IN BOOLEAN SubScreenReturn) {
LOADER_ENTRY *Entry;
CleanUpPathNameSlashes(LoaderPath);
Entry = InitializeLoaderEntry(NULL);
if (Entry != NULL) {
Entry->DiscoveryType = DISCOVERY_TYPE_AUTO;
Entry->Title = StrDuplicate((LoaderTitle != NULL) ? LoaderTitle : LoaderPath);
LOG(1, LOG_LINE_NORMAL, L"Adding loader entry for '%s'", Entry->Title);
LOG(2, LOG_LINE_NORMAL, L"Loader path is '%s'", LoaderPath);
// Extra space at end of Entry->me.Title enables searching on Volume->VolName even if another volume
// name is identical except for something added to the end (e.g., VolB1 vs. VolB12).
// Note: Volume->VolName will be NULL for network boot programs.
if ((Volume->VolName) && (!MyStriCmp(Volume->VolName, L"Recovery HD")))
Entry->me.Title = PoolPrint(L"Boot %s from %s ",
(LoaderTitle != NULL) ? LoaderTitle : LoaderPath, Volume->VolName);
else
Entry->me.Title = PoolPrint(L"Boot %s ", (LoaderTitle != NULL) ? LoaderTitle : LoaderPath);
Entry->me.Row = 0;
Entry->me.BadgeImage = Volume->VolBadgeImage;
if ((LoaderPath != NULL) && (LoaderPath[0] != L'\\')) {
Entry->LoaderPath = StrDuplicate(L"\\");
} else {
Entry->LoaderPath = NULL;
}
MergeStrings(&(Entry->LoaderPath), LoaderPath, 0);
Entry->Volume = Volume;
SetLoaderDefaults(Entry, LoaderPath, Volume);
GenerateSubScreen(Entry, Volume, SubScreenReturn);
AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
LOG(3, LOG_LINE_NORMAL, L"Have successfully created menu entry for '%s'", Entry->Title);
} else {
LOG(1, LOG_LINE_NORMAL, L"Unable to initialize loader entry in AddLoaderEntry()!");
}
return(Entry);
} // LOADER_ENTRY * AddLoaderEntry()
// Returns -1 if (Time1 < Time2), +1 if (Time1 > Time2), or 0 if
// (Time1 == Time2). Precision is only to the nearest second; since
// this is used for sorting boot loader entries, differences smaller
// than this are likely to be meaningless (and unlikely!).
static INTN TimeComp(IN EFI_TIME *Time1, IN EFI_TIME *Time2) {
INT64 Time1InSeconds, Time2InSeconds;
// Following values are overestimates; I'm assuming 31 days in every month.
// This is fine for the purpose of this function, which is limited
Time1InSeconds = Time1->Second + (Time1->Minute * 60) + (Time1->Hour * 3600) + (Time1->Day * 86400) +
(Time1->Month * 2678400) + ((Time1->Year - 1998) * 32140800);
Time2InSeconds = Time2->Second + (Time2->Minute * 60) + (Time2->Hour * 3600) + (Time2->Day * 86400) +
(Time2->Month * 2678400) + ((Time2->Year - 1998) * 32140800);
if (Time1InSeconds < Time2InSeconds)
return (-1);
else if (Time1InSeconds > Time2InSeconds)
return (1);
return 0;
} // INTN TimeComp()
// Adds a loader list element, keeping it sorted by date. EXCEPTION: Fedora's rescue
// kernel, which begins with "vmlinuz-0-rescue," should not be at the top of the list,
// since that will make it the default if kernel folding is enabled, so float it to
// the end.
// Returns the new first element (the one with the most recent date).
static struct LOADER_LIST * AddLoaderListEntry(struct LOADER_LIST *LoaderList, struct LOADER_LIST *NewEntry) {
struct LOADER_LIST *LatestEntry, *CurrentEntry, *PrevEntry = NULL;
BOOLEAN LinuxRescue = FALSE;
LatestEntry = CurrentEntry = LoaderList;
if (LoaderList == NULL) {
LatestEntry = NewEntry;
} else {
if (StriSubCmp(L"vmlinuz-0-rescue", NewEntry->FileName))
LinuxRescue = TRUE;
while ((CurrentEntry != NULL) && !StriSubCmp(L"vmlinuz-0-rescue", CurrentEntry->FileName) &&
(LinuxRescue || (TimeComp(&(NewEntry->TimeStamp), &(CurrentEntry->TimeStamp)) < 0))) {
PrevEntry = CurrentEntry;
CurrentEntry = CurrentEntry->NextEntry;
} // while
NewEntry->NextEntry = CurrentEntry;
if (PrevEntry == NULL) {
LatestEntry = NewEntry;
} else {
PrevEntry->NextEntry = NewEntry;
} // if/else
} // if/else
return (LatestEntry);
} // static VOID AddLoaderListEntry()
// Delete the LOADER_LIST linked list
static VOID CleanUpLoaderList(struct LOADER_LIST *LoaderList) {
struct LOADER_LIST *Temp;
while (LoaderList != NULL) {
Temp = LoaderList;
LoaderList = LoaderList->NextEntry;
MyFreePool(Temp->FileName);
MyFreePool(Temp);
} // while
} // static VOID CleanUpLoaderList()
// Returns FALSE if the specified file/volume matches the GlobalConfig.DontScanDirs
// or GlobalConfig.DontScanVolumes specification, or if Path points to a volume
// other than the one specified by Volume, or if the specified path is SelfDir.
// Returns TRUE if none of these conditions is met -- that is, if the path is
// eligible for scanning.
static BOOLEAN ShouldScan(REFIT_VOLUME *Volume, CHAR16 *Path) {
CHAR16 *VolName = NULL, *DontScanDir, *PathCopy = NULL, *VolGuid = NULL;
UINTN i = 0;
BOOLEAN ScanIt = TRUE;
VolGuid = GuidAsString(&(Volume->PartGuid));
if ((IsIn(Volume->FsName, GlobalConfig.DontScanVolumes)) ||
(IsIn(Volume->PartName, GlobalConfig.DontScanVolumes)) ||
(IsIn(VolGuid, GlobalConfig.DontScanVolumes))) {
MyFreePool(VolGuid);
return FALSE;
} else {
MyFreePool(VolGuid);
} // if/else
if (MyStriCmp(Path, SelfDirPath) && (Volume->DeviceHandle == SelfVolume->DeviceHandle))
return FALSE;
// See if Path includes an explicit volume declaration that's NOT Volume....
PathCopy = StrDuplicate(Path);
if (SplitVolumeAndFilename(&PathCopy, &VolName)) {
if (VolName && (!MyStriCmp(VolName, Volume->FsName) ||
!MyStriCmp(VolName, Volume->PartName))) {
ScanIt = FALSE;
} // if
} // if Path includes volume specification
MyFreePool(PathCopy);
MyFreePool(VolName);
VolName = NULL;
// See if Volume is in GlobalConfig.DontScanDirs....
while (ScanIt && (DontScanDir = FindCommaDelimited(GlobalConfig.DontScanDirs, i++))) {
SplitVolumeAndFilename(&DontScanDir, &VolName);
CleanUpPathNameSlashes(DontScanDir);
if (VolName != NULL) {
if (VolumeMatchesDescription(Volume, VolName) && MyStriCmp(DontScanDir, Path))
ScanIt = FALSE;
} else {
if (MyStriCmp(DontScanDir, Path))
ScanIt = FALSE;
}
MyFreePool(DontScanDir);
MyFreePool(VolName);
DontScanDir = NULL;
VolName = NULL;
} // while()
return ScanIt;
} // BOOLEAN ShouldScan()
// Returns TRUE if the file is byte-for-byte identical with the fallback file
// on the volume AND if the file is not itself the fallback file; returns
// FALSE if the file is not identical to the fallback file OR if the file
// IS the fallback file. Intended for use in excluding the fallback boot
// loader when it's a duplicate of another boot loader.
static BOOLEAN DuplicatesFallback(IN REFIT_VOLUME *Volume, IN CHAR16 *FileName) {
CHAR8 *FileContents, *FallbackContents;
EFI_FILE_HANDLE FileHandle, FallbackHandle;
EFI_FILE_INFO *FileInfo, *FallbackInfo;
UINTN FileSize = 0, FallbackSize = 0;
EFI_STATUS Status;
BOOLEAN AreIdentical = FALSE;
if (!FileExists(Volume->RootDir, FileName) || !FileExists(Volume->RootDir, FALLBACK_FULLNAME))
return FALSE;
CleanUpPathNameSlashes(FileName);
if (MyStriCmp(FileName, FALLBACK_FULLNAME))
return FALSE; // identical filenames, so not a duplicate....
Status = refit_call5_wrapper(Volume->RootDir->Open, Volume->RootDir, &FileHandle, FileName, EFI_FILE_MODE_READ, 0);
if (Status == EFI_SUCCESS) {
FileInfo = LibFileInfo(FileHandle);
FileSize = FileInfo->FileSize;
} else {
return FALSE;
}
MyFreePool(FileInfo);
Status = refit_call5_wrapper(Volume->RootDir->Open, Volume->RootDir, &FallbackHandle, FALLBACK_FULLNAME, EFI_FILE_MODE_READ, 0);
if (Status == EFI_SUCCESS) {
FallbackInfo = LibFileInfo(FallbackHandle);
FallbackSize = FallbackInfo->FileSize;
} else {
refit_call1_wrapper(FileHandle->Close, FileHandle);
return FALSE;
}
MyFreePool(FallbackInfo);
if (FallbackSize == FileSize) { // could be identical; do full check....
FileContents = AllocatePool(FileSize);
FallbackContents = AllocatePool(FallbackSize);
if (FileContents && FallbackContents) {
Status = refit_call3_wrapper(FileHandle->Read, FileHandle, &FileSize, FileContents);
if (Status == EFI_SUCCESS) {
Status = refit_call3_wrapper(FallbackHandle->Read, FallbackHandle, &FallbackSize, FallbackContents);
}
if (Status == EFI_SUCCESS) {
AreIdentical = (CompareMem(FileContents, FallbackContents, FileSize) == 0);
} // if
} // if
MyFreePool(FileContents);
MyFreePool(FallbackContents);
} // if/else
// BUG ALERT: Some systems (e.g., DUET, some Macs with large displays) crash if the
// following two calls are reversed. Go figure....
refit_call1_wrapper(FileHandle->Close, FallbackHandle);
refit_call1_wrapper(FileHandle->Close, FileHandle);
return AreIdentical;
} // BOOLEAN DuplicatesFallback()
// Returns FALSE if two measures of file size are identical for a single file,
// TRUE if not or if the file can't be opened and the other measure is non-0.
// Despite the function's name, this isn't really a direct test of symbolic
// link status, since EFI doesn't officially support symlinks. It does seem
// to be a reliable indicator, though. (OTOH, some disk errors might cause a
// file to fail to open, which would return a false positive -- but as I use
// this function to exclude symbolic links from the list of boot loaders,
// that would be fine, since such boot loaders wouldn't work.)
// CAUTION: *FullName MUST be properly cleaned up (via CleanUpPathNameSlashes())
static BOOLEAN IsSymbolicLink(REFIT_VOLUME *Volume, CHAR16 *FullName, EFI_FILE_INFO *DirEntry) {
EFI_FILE_HANDLE FileHandle;
EFI_FILE_INFO *FileInfo = NULL;
EFI_STATUS Status;
UINTN FileSize2 = 0;
Status = refit_call5_wrapper(Volume->RootDir->Open, Volume->RootDir, &FileHandle, FullName, EFI_FILE_MODE_READ, 0);
if (Status == EFI_SUCCESS) {
FileInfo = LibFileInfo(FileHandle);
if (FileInfo != NULL)
FileSize2 = FileInfo->FileSize;
}
MyFreePool(FileInfo);
return (DirEntry->FileSize != FileSize2);
} // BOOLEAN IsSymbolicLink()
// Scan an individual directory for EFI boot loader files and, if found,
// add them to the list. Exception: Ignores FALLBACK_FULLNAME, which is picked
// up in ScanEfiFiles(). Sorts the entries within the loader directory so that
// the most recent one appears first in the list.
// Returns TRUE if a duplicate for FALLBACK_FILENAME was found, FALSE if not.
static BOOLEAN ScanLoaderDir(IN REFIT_VOLUME *Volume, IN CHAR16 *Path, IN CHAR16 *Pattern)
{
EFI_STATUS Status;
REFIT_DIR_ITER DirIter;
EFI_FILE_INFO *DirEntry;
CHAR16 *Message, *Extension, *FullName;
struct LOADER_LIST *LoaderList = NULL, *NewLoader;
LOADER_ENTRY *FirstKernel = NULL, *LatestEntry = NULL;
BOOLEAN FoundFallbackDuplicate = FALSE, IsLinux = FALSE, InSelfPath;
LOG(3, LOG_LINE_NORMAL, L"Beginning to scan directory '%s' for '%s'", Path, Pattern);
InSelfPath = MyStriCmp(Path, SelfDirPath);
if ((!SelfDirPath || !Path || (InSelfPath && (Volume->DeviceHandle != SelfVolume->DeviceHandle)) ||
(!InSelfPath)) && (ShouldScan(Volume, Path))) {
// look through contents of the directory
DirIterOpen(Volume->RootDir, Path, &DirIter);
while (DirIterNext(&DirIter, 2, Pattern, &DirEntry)) {
Extension = FindExtension(DirEntry->FileName);
FullName = StrDuplicate(Path);
MergeStrings(&FullName, DirEntry->FileName, L'\\');
CleanUpPathNameSlashes(FullName);
if (DirEntry->FileName[0] == '.' ||
MyStriCmp(Extension, L".icns") ||
MyStriCmp(Extension, L".png") ||
(MyStriCmp(DirEntry->FileName, FALLBACK_BASENAME) && (MyStriCmp(Path, L"EFI\\BOOT"))) ||
FilenameIn(Volume, Path, DirEntry->FileName, SHELL_NAMES) ||
IsSymbolicLink(Volume, FullName, DirEntry) || /* is symbolic link */
HasSignedCounterpart(Volume, FullName) || /* a file with same name plus ".efi.signed" is present */
FilenameIn(Volume, Path, DirEntry->FileName, GlobalConfig.DontScanFiles) ||
!IsValidLoader(Volume->RootDir, FullName)) {
continue; // skip this
}
NewLoader = AllocateZeroPool(sizeof(struct LOADER_LIST));
if (NewLoader != NULL) {
NewLoader->FileName = StrDuplicate(FullName);
NewLoader->TimeStamp = DirEntry->ModificationTime;
LoaderList = AddLoaderListEntry(LoaderList, NewLoader);
if (DuplicatesFallback(Volume, FullName))
FoundFallbackDuplicate = TRUE;
} // if
MyFreePool(Extension);
MyFreePool(FullName);
} // while
NewLoader = LoaderList;
while (NewLoader != NULL) {
IsLinux = (StriSubCmp(L"bzImage", NewLoader->FileName) ||
StriSubCmp(L"vmlinuz", NewLoader->FileName) ||
StriSubCmp(L"kernel", NewLoader->FileName));
if ((FirstKernel != NULL) && IsLinux && GlobalConfig.FoldLinuxKernels) {
AddKernelToSubmenu(FirstKernel, NewLoader->FileName, Volume);
} else {
LatestEntry = AddLoaderEntry(NewLoader->FileName, NULL, Volume,
!(IsLinux && GlobalConfig.FoldLinuxKernels));
if (IsLinux && (FirstKernel == NULL))
FirstKernel = LatestEntry;
}
NewLoader = NewLoader->NextEntry;
} // while
if ((FirstKernel != NULL) && IsLinux && GlobalConfig.FoldLinuxKernels)
AddMenuEntry(FirstKernel->me.SubScreen, &MenuEntryReturn);
CleanUpLoaderList(LoaderList);
Status = DirIterClose(&DirIter);
// NOTE: EFI_INVALID_PARAMETER really is an error that should be reported;
// but I've gotten reports from users who are getting this error occasionally
// and I can't find anything wrong or reproduce the problem, so I'm putting
// it down to buggy EFI implementations and ignoring that particular error....
if ((Status != EFI_NOT_FOUND) && (Status != EFI_INVALID_PARAMETER)) {
if (Path)
Message = PoolPrint(L"while scanning the %s directory on %s", Path, Volume->VolName);
else
Message = PoolPrint(L"while scanning the root directory on %s", Path, Volume->VolName);
CheckError(Status, Message);
MyFreePool(Message);
} // if (Status != EFI_NOT_FOUND)
} // if not scanning a blacklisted directory
LOG(3, LOG_LINE_NORMAL, L"Done scanning directory '%s' for '%s'", Path, Pattern);
return FoundFallbackDuplicate;
} /* static VOID ScanLoaderDir() */
// Run the IPXE_DISCOVER_NAME program, which obtains the IP address of the boot
// server and the name of the boot file it delivers.
static CHAR16* RuniPXEDiscover(EFI_HANDLE Volume)
{
EFI_STATUS Status;
EFI_DEVICE_PATH *FilePath;
EFI_HANDLE iPXEHandle;
CHAR16 *boot_info = NULL;
UINTN boot_info_size = 0;
FilePath = FileDevicePath (Volume, IPXE_DISCOVER_NAME);
Status = refit_call6_wrapper(BS->LoadImage, FALSE, SelfImageHandle, FilePath, NULL, 0, &iPXEHandle);
if (Status != 0)
return NULL;
Status = refit_call3_wrapper(BS->StartImage, iPXEHandle, &boot_info_size, &boot_info);
return boot_info;
} // RuniPXEDiscover()
// Scan for network (PXE) boot servers. This function relies on the presence
// of the IPXE_DISCOVER_NAME and IPXE_NAME program files on the volume from
// which rEFInd launched. As of December 6, 2014, these tools aren't entirely
// reliable. See BUILDING.txt for information on building them.
static VOID ScanNetboot() {
CHAR16 *iPXEFileName = IPXE_NAME;
CHAR16 *Location;
REFIT_VOLUME *NetVolume;
LOG(1, LOG_LINE_NORMAL, L"Scanning for iPXE boot options");
if (FileExists(SelfVolume->RootDir, IPXE_DISCOVER_NAME) &&
FileExists(SelfVolume->RootDir, IPXE_NAME) &&
IsValidLoader(SelfVolume->RootDir, IPXE_DISCOVER_NAME) &&
IsValidLoader(SelfVolume->RootDir, IPXE_NAME)) {
Location = RuniPXEDiscover(SelfVolume->DeviceHandle);
if (Location != NULL && FileExists(SelfVolume->RootDir, iPXEFileName)) {
NetVolume = AllocatePool(sizeof(REFIT_VOLUME));
CopyMem(NetVolume, SelfVolume, sizeof(REFIT_VOLUME));
NetVolume->DiskKind = DISK_KIND_NET;
NetVolume->VolBadgeImage = BuiltinIcon(BUILTIN_ICON_VOL_NET);
NetVolume->PartName = NetVolume->VolName = NetVolume->FsName = NULL;
AddLoaderEntry(iPXEFileName, Location, NetVolume, TRUE);
} // if support files exist and are valid
}
} // VOID ScanNetboot()
// Adds *FullFileName as a macOS loader, if it exists.
// Returns TRUE if the fallback loader is NOT a duplicate of this one,
// FALSE if it IS a duplicate.
static BOOLEAN ScanMacOsLoader(REFIT_VOLUME *Volume, CHAR16* FullFileName) {
BOOLEAN ScanFallbackLoader = TRUE;
CHAR16 *VolName = NULL, *PathName = NULL, *FileName = NULL;
SplitPathName(FullFileName, &VolName, &PathName, &FileName);
if (FileExists(Volume->RootDir, FullFileName) && !FilenameIn(Volume, PathName, L"boot.efi", GlobalConfig.DontScanFiles)) {
AddLoaderEntry(FullFileName, L"macOS", Volume, TRUE);
if (DuplicatesFallback(Volume, FullFileName))
ScanFallbackLoader = FALSE;
} // if
MyFreePool(VolName);
MyFreePool(PathName);
MyFreePool(FileName);
return ScanFallbackLoader;
} // VOID ScanMacOsLoader()
static VOID ScanEfiFiles(REFIT_VOLUME *Volume) {
EFI_STATUS Status;
REFIT_DIR_ITER EfiDirIter;
EFI_FILE_INFO *EfiDirEntry;
CHAR16 *FileName, *Directory = NULL, *MatchPatterns, *VolName = NULL, *SelfPath, *Temp;
UINTN i, Length;
BOOLEAN ScanFallbackLoader = TRUE;
BOOLEAN FoundBRBackup = FALSE;
if (Volume && (Volume->RootDir != NULL) && (Volume->VolName != NULL) && (Volume->IsReadable)) {
LOG(1, LOG_LINE_NORMAL, L"Scanning EFI files on %s",
Volume->PartName ? Volume->PartName : Volume->VolName);
MatchPatterns = StrDuplicate(LOADER_MATCH_PATTERNS);
if (GlobalConfig.ScanAllLinux)
MergeStrings(&MatchPatterns, LINUX_MATCH_PATTERNS, L',');
// check for macOS boot loader
if (ShouldScan(Volume, MACOSX_LOADER_DIR)) {
FileName = StrDuplicate(MACOSX_LOADER_PATH);
ScanFallbackLoader &= ScanMacOsLoader(Volume, FileName);
MyFreePool(FileName);
DirIterOpen(Volume->RootDir, L"\\", &EfiDirIter);
while (DirIterNext(&EfiDirIter, 1, NULL, &EfiDirEntry)) {
if (IsGuid(EfiDirEntry->FileName)) {
FileName = PoolPrint(L"%s\\%s", EfiDirEntry->FileName, MACOSX_LOADER_PATH);
ScanFallbackLoader &= ScanMacOsLoader(Volume, FileName);
MyFreePool(FileName);
FileName = PoolPrint(L"%s\\%s", EfiDirEntry->FileName, L"boot.efi");
if (!StriSubCmp(FileName, GlobalConfig.MacOSRecoveryFiles))
MergeStrings(&GlobalConfig.MacOSRecoveryFiles, FileName, L',');
MyFreePool(FileName);
} // if
} // while
Status = DirIterClose(&EfiDirIter);
// check for XOM
FileName = StrDuplicate(L"System\\Library\\CoreServices\\xom.efi");
if (FileExists(Volume->RootDir, FileName) && !FilenameIn(Volume, MACOSX_LOADER_DIR, L"xom.efi",
GlobalConfig.DontScanFiles)) {
AddLoaderEntry(FileName, L"Windows XP (XoM)", Volume, TRUE);
if (DuplicatesFallback(Volume, FileName))
ScanFallbackLoader = FALSE;
}
MyFreePool(FileName);
} // if should scan Mac directory
// check for Microsoft boot loader/menu
if (ShouldScan(Volume, L"EFI\\Microsoft\\Boot")) {
FileName = StrDuplicate(L"EFI\\Microsoft\\Boot\\bkpbootmgfw.efi");
if (FileExists(Volume->RootDir, FileName) && !FilenameIn(Volume, L"EFI\\Microsoft\\Boot", L"bkpbootmgfw.efi",
GlobalConfig.DontScanFiles)) {
AddLoaderEntry(FileName, L"Microsoft EFI boot (Boot Repair backup)", Volume, TRUE);
FoundBRBackup = TRUE;
if (DuplicatesFallback(Volume, FileName))
ScanFallbackLoader = FALSE;
}
MyFreePool(FileName);
FileName = StrDuplicate(L"EFI\\Microsoft\\Boot\\bootmgfw.efi");
if (FileExists(Volume->RootDir, FileName) &&
!FilenameIn(Volume, L"EFI\\Microsoft\\Boot", L"bootmgfw.efi", GlobalConfig.DontScanFiles)) {
if (FoundBRBackup)
AddLoaderEntry(FileName, L"Supposed Microsoft EFI boot (probably GRUB)", Volume, TRUE);
else
AddLoaderEntry(FileName, L"Microsoft EFI boot", Volume, TRUE);
if (DuplicatesFallback(Volume, FileName))
ScanFallbackLoader = FALSE;
}
MyFreePool(FileName);
} // if
// scan the root directory for EFI executables
if (ScanLoaderDir(Volume, L"\\", MatchPatterns))
ScanFallbackLoader = FALSE;
// scan subdirectories of the EFI directory (as per the standard)
DirIterOpen(Volume->RootDir, L"EFI", &EfiDirIter);
while (DirIterNext(&EfiDirIter, 1, NULL, &EfiDirEntry)) {
if (MyStriCmp(EfiDirEntry->FileName, L"tools") || EfiDirEntry->FileName[0] == '.')
continue; // skip this, doesn't contain boot loaders or is scanned later
FileName = PoolPrint(L"EFI\\%s", EfiDirEntry->FileName);
if (ScanLoaderDir(Volume, FileName, MatchPatterns))
ScanFallbackLoader = FALSE;
MyFreePool(FileName);
} // while()
Status = DirIterClose(&EfiDirIter);
if ((Status != EFI_NOT_FOUND) && (Status != EFI_INVALID_PARAMETER)) {
Temp = PoolPrint(L"while scanning the EFI directory on %s", Volume->VolName);
CheckError(Status, Temp);
MyFreePool(Temp);
} // if
// Scan user-specified (or additional default) directories....
i = 0;
while ((Directory = FindCommaDelimited(GlobalConfig.AlsoScan, i++)) != NULL) {
if (ShouldScan(Volume, Directory)) {
SplitVolumeAndFilename(&Directory, &VolName);
CleanUpPathNameSlashes(Directory);
Length = StrLen(Directory);
if ((Length > 0) && ScanLoaderDir(Volume, Directory, MatchPatterns))
ScanFallbackLoader = FALSE;
MyFreePool(VolName);
} // if should scan dir
MyFreePool(Directory);
} // while
// Don't scan the fallback loader if it's on the same volume and a duplicate of rEFInd itself....
SelfPath = DevicePathToStr(SelfLoadedImage->FilePath);
CleanUpPathNameSlashes(SelfPath);
if ((Volume->DeviceHandle == SelfLoadedImage->DeviceHandle) && DuplicatesFallback(Volume, SelfPath))
ScanFallbackLoader = FALSE;
MyFreePool(SelfPath);
// If not a duplicate & if it exists & if it's not us, create an entry
// for the fallback boot loader
if (ScanFallbackLoader && FileExists(Volume->RootDir, FALLBACK_FULLNAME) && ShouldScan(Volume, L"EFI\\BOOT") &&
!FilenameIn(Volume, L"EFI\\BOOT", FALLBACK_BASENAME, GlobalConfig.DontScanFiles)) {
AddLoaderEntry(FALLBACK_FULLNAME, L"Fallback boot loader", Volume, TRUE);
}
MyFreePool(MatchPatterns);
} else {
LOG(1, LOG_LINE_NORMAL, L"Called ScanEfiFiles() on an invalid volume");
}
} // static VOID ScanEfiFiles()
// Scan internal disks for valid EFI boot loaders....
static VOID ScanInternal(VOID) {
UINTN VolumeIndex;
LOG(1, LOG_LINE_THIN_SEP, L"Scanning for internal EFI-mode boot loaders");
for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
if (Volumes[VolumeIndex]->DiskKind == DISK_KIND_INTERNAL) {
ScanEfiFiles(Volumes[VolumeIndex]);
}
} // for
} // static VOID ScanInternal()
// Scan external disks for valid EFI boot loaders....
static VOID ScanExternal(VOID) {
UINTN VolumeIndex;
LOG(1, LOG_LINE_THIN_SEP, L"Scanning for external EFI-mode boot loaders");
for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
if (Volumes[VolumeIndex]->DiskKind == DISK_KIND_EXTERNAL) {
ScanEfiFiles(Volumes[VolumeIndex]);
}
} // for
} // static VOID ScanExternal()
// Scan internal disks for valid EFI boot loaders....
static VOID ScanOptical(VOID) {
UINTN VolumeIndex;
LOG(1, LOG_LINE_THIN_SEP, L"Scanning for bootable EFI-mode optical discs");
for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
if (Volumes[VolumeIndex]->DiskKind == DISK_KIND_OPTICAL) {
ScanEfiFiles(Volumes[VolumeIndex]);
}
} // for
} // static VOID ScanOptical()
// Scan options stored in EFI firmware's boot list. Adds discovered and allowed
// items to the specified Row.
// If MatchThis != NULL, only adds items with labels containing any element of
// the MatchThis comma-delimited string; otherwise, searches for anything that
// doesn't match GlobalConfig.DontScanFirmware or the contents of the
// HiddenFirmware EFI variable.
// If Icon != NULL, uses the specified icon; otherwise tries to find one to
// match the label.
static VOID ScanFirmwareDefined(IN UINTN Row, IN CHAR16 *MatchThis, IN EG_IMAGE *Icon) {
BOOT_ENTRY_LIST *BootEntries, *CurrentEntry;
BOOLEAN ScanIt = TRUE;
CHAR16 *OneElement = NULL;
CHAR16 *DontScanFirmware;
UINTN i;
if (Row == 0)
LOG(1, LOG_LINE_THIN_SEP, L"Scanning for EFI firmware-defined boot options");
DontScanFirmware = ReadHiddenTags(L"HiddenFirmware");
LOG(2, LOG_LINE_NORMAL, L"GlobalConfig.DontScanFirmware = '%s'", GlobalConfig.DontScanFirmware);
LOG(2, LOG_LINE_NORMAL, L"Firmware hidden tags = '%s'", DontScanFirmware);
MergeStrings(&DontScanFirmware, GlobalConfig.DontScanFirmware, L',');
if (Row == 0) {
LOG(2, LOG_LINE_NORMAL, L"Also not scanning for shells");
MergeStrings(&DontScanFirmware, L"shell", L',');
}
LOG(3, LOG_LINE_NORMAL, L"Merged firmware don't-scan list is '%s'", DontScanFirmware);
BootEntries = FindBootOrderEntries();
CurrentEntry = BootEntries;
while (CurrentEntry != NULL) {
if (MatchThis) {
ScanIt = FALSE;
i = 0;
while (!ScanIt && (OneElement = FindCommaDelimited(MatchThis, i++))) {
if (StriSubCmp(OneElement, CurrentEntry->BootEntry.Label) &&
!IsInSubstring(CurrentEntry->BootEntry.Label, DontScanFirmware)) {
ScanIt = TRUE;
}
MyFreePool(OneElement);
} // while()
} else {
if (IsInSubstring(CurrentEntry->BootEntry.Label, DontScanFirmware)) {
ScanIt = FALSE;
}
} // if/else
if (ScanIt) {
LOG(1, LOG_LINE_NORMAL, L"Adding EFI loader entry for '%s'", CurrentEntry->BootEntry.Label);
AddEfiLoaderEntry(CurrentEntry->BootEntry.DevPath,
CurrentEntry->BootEntry.Label,
CurrentEntry->BootEntry.BootNum, Row, Icon);
}
CurrentEntry = CurrentEntry->NextBootEntry;
ScanIt = TRUE; // Assume the next item is to be scanned
} // while()
MyFreePool(DontScanFirmware);
DeleteBootOrderEntries(BootEntries);
} // static VOID ScanFirmwareDefined()
// default volume badge icon based on disk kind
EG_IMAGE * GetDiskBadge(IN UINTN DiskType) {
EG_IMAGE * Badge = NULL;
switch (DiskType) {
case BBS_HARDDISK:
Badge = BuiltinIcon(BUILTIN_ICON_VOL_INTERNAL);
break;
case BBS_USB:
Badge = BuiltinIcon(BUILTIN_ICON_VOL_EXTERNAL);
break;
case BBS_CDROM:
Badge = BuiltinIcon(BUILTIN_ICON_VOL_OPTICAL);
break;
} // switch()
return Badge;
} // EG_IMAGE * GetDiskBadge()
//
// pre-boot tool functions
//
static LOADER_ENTRY * AddToolEntry(REFIT_VOLUME *Volume,IN CHAR16 *LoaderPath, IN CHAR16 *LoaderTitle,
IN EG_IMAGE *Image, IN CHAR16 ShortcutLetter, IN BOOLEAN UseGraphicsMode)
{
LOADER_ENTRY *Entry;
CHAR16 *TitleStr = NULL;
Entry = AllocateZeroPool(sizeof(LOADER_ENTRY));
TitleStr = PoolPrint(L"Start %s", LoaderTitle);
Entry->me.Title = TitleStr;
Entry->me.Tag = TAG_TOOL;
Entry->me.Row = 1;
Entry->me.ShortcutLetter = ShortcutLetter;
Entry->me.Image = Image;
Entry->LoaderPath = (LoaderPath) ? StrDuplicate(LoaderPath) : NULL;
Entry->Volume = Volume;
Entry->UseGraphicsMode = UseGraphicsMode;
AddMenuEntry(&MainMenu, (REFIT_MENU_ENTRY *)Entry);
return Entry;
} /* static LOADER_ENTRY * AddToolEntry() */
// Locates boot loaders. NOTE: This assumes that GlobalConfig.LegacyType is set correctly.
VOID ScanForBootloaders(BOOLEAN ShowMessage) {
UINTN i;
CHAR8 s;
BOOLEAN ScanForLegacy = FALSE;
EG_PIXEL BGColor = COLOR_LIGHTBLUE;
CHAR16 *HiddenTags;
CHAR16 *OrigDontScanFiles, *OrigDontScanVolumes;
LOG(1, LOG_LINE_SEPARATOR, L"Scanning for boot loaders");
if (ShowMessage)
egDisplayMessage(L"Scanning for boot loaders; please wait....", &BGColor, CENTER);
// Determine up-front if we'll be scanning for legacy loaders....
for (i = 0; i < NUM_SCAN_OPTIONS; i++) {
s = GlobalConfig.ScanFor[i];
if ((s == 'c') || (s == 'C') || (s == 'h') || (s == 'H') || (s == 'b') || (s == 'B'))
ScanForLegacy = TRUE;
} // for
// If UEFI & scanning for legacy loaders & deep legacy scan, update NVRAM boot manager list
if ((GlobalConfig.LegacyType == LEGACY_TYPE_UEFI) && ScanForLegacy && GlobalConfig.DeepLegacyScan) {
BdsDeleteAllInvalidLegacyBootOptions();
BdsAddNonExistingLegacyBootOptions();
} // if
// We temporarily modify GlobalConfig.DontScanFiles and GlobalConfig.DontScanVolumes
// to include contents of EFI HiddenTags and HiddenLegacy variables so that we don't
// have to re-load these EFI variables in several functions called from this one.
// To do this, we must be able to restore the original contents, so back them up
// first.
// We do *NOT* do this with GlobalConfig.DontScanFirmware and
// GlobalConfig.DontScanTools variables because they're used in only one function
// each, so it's easier to create a temporary variable for the merged contents
// there and not modify the global variable.
OrigDontScanFiles = StrDuplicate(GlobalConfig.DontScanFiles);
OrigDontScanVolumes = StrDuplicate(GlobalConfig.DontScanVolumes);
// Add hidden tags to two GlobalConfig.DontScan* variables....
HiddenTags = ReadHiddenTags(L"HiddenTags");
if ((HiddenTags) && (StrLen(HiddenTags) > 0)) {
MergeStrings(&GlobalConfig.DontScanFiles, HiddenTags, L',');
}
HiddenTags = ReadHiddenTags(L"HiddenLegacy");
if ((HiddenTags) && (StrLen(HiddenTags) > 0)) {
MergeStrings(&GlobalConfig.DontScanVolumes, HiddenTags, L',');
}
// scan for loaders and tools, add them to the menu
for (i = 0; i < NUM_SCAN_OPTIONS; i++) {
switch(GlobalConfig.ScanFor[i]) {
case 'c': case 'C':
ScanLegacyDisc();
break;
case 'h': case 'H':
ScanLegacyInternal();
break;
case 'b': case 'B':
ScanLegacyExternal();
break;
case 'm': case 'M':
ScanUserConfigured(GlobalConfig.ConfigFilename);
break;
case 'e': case 'E':
ScanExternal();
break;
case 'i': case 'I':
ScanInternal();
break;
case 'o': case 'O':
ScanOptical();
break;
case 'n': case 'N':
ScanNetboot();
break;
case 'f': case 'F':
ScanFirmwareDefined(0, NULL, NULL);
break;
} // switch()
} // for
// Restore the backed-up GlobalConfig.DontScan* variables....
MyFreePool(GlobalConfig.DontScanFiles);
GlobalConfig.DontScanFiles = OrigDontScanFiles;
MyFreePool(GlobalConfig.DontScanVolumes);
GlobalConfig.DontScanVolumes = OrigDontScanVolumes;
// assign shortcut keys
LOG(2, LOG_LINE_NORMAL, L"Assigning boot shortcut keys");
for (i = 0; i < MainMenu.EntryCount && MainMenu.Entries[i]->Row == 0 && i < 9; i++)
MainMenu.Entries[i]->ShortcutDigit = (CHAR16)('1' + i);
// wait for user ACK when there were errors
// SwitchToText(FALSE);
// FinishTextScreen(FALSE);
} // VOID ScanForBootloaders()
// Checks to see if a specified file seems to be a valid tool.
// Returns TRUE if it passes all tests, FALSE otherwise
static BOOLEAN IsValidTool(IN REFIT_VOLUME *BaseVolume, CHAR16 *PathName) {
CHAR16 *DontVolName = NULL, *DontPathName = NULL, *DontFileName = NULL, *DontScanThis;
CHAR16 *TestVolName = NULL, *TestPathName = NULL, *TestFileName = NULL, *DontScanTools;
BOOLEAN retval = TRUE;
UINTN i = 0;
LOG(3, LOG_LINE_NORMAL, L"Checking validity of tool '%s' on '%s'", PathName,
BaseVolume->PartName ? BaseVolume->PartName : BaseVolume->VolName);
if (gHiddenTools == NULL) {
DontScanTools = ReadHiddenTags(L"HiddenTools");
gHiddenTools = StrDuplicate(DontScanTools);
} else {
DontScanTools = StrDuplicate(gHiddenTools);
}
MergeStrings(&DontScanTools, GlobalConfig.DontScanTools, L',');
if (FileExists(BaseVolume->RootDir, PathName) && IsValidLoader(BaseVolume->RootDir, PathName)) {
SplitPathName(PathName, &TestVolName, &TestPathName, &TestFileName);
while (retval && (DontScanThis = FindCommaDelimited(DontScanTools, i++))) {
SplitPathName(DontScanThis, &DontVolName, &DontPathName, &DontFileName);
if (MyStriCmp(TestFileName, DontFileName) &&
((DontPathName == NULL) || (MyStriCmp(TestPathName, DontPathName))) &&
((DontVolName == NULL) || (VolumeMatchesDescription(BaseVolume, DontVolName)))) {
retval = FALSE;
} // if
MyFreePool(DontScanThis);
MyFreePool(DontVolName);
DontVolName = NULL;
MyFreePool(DontPathName);
DontPathName = NULL;
MyFreePool(DontFileName);
DontFileName = NULL;
} // while
} else
retval = FALSE;
MyFreePool(TestVolName);
MyFreePool(TestPathName);
MyFreePool(TestFileName);
MyFreePool(DontScanTools);
LOG(4, LOG_LINE_NORMAL, L"Done checking validity of tool '%s' on '%s'", PathName,
BaseVolume->PartName ? BaseVolume->PartName : BaseVolume->VolName);
return retval;
} // VOID IsValidTool()
// Locate a single tool from the specified Locations using one of the
// specified Names and add it to the menu.
static VOID FindTool(CHAR16 *Locations, CHAR16 *Names, CHAR16 *Description, UINTN Icon) {
UINTN j = 0, k, VolumeIndex;
CHAR16 *DirName, *FileName, *PathName, *FullDescription;
while ((DirName = FindCommaDelimited(Locations, j++)) != NULL) {
k = 0;
while ((FileName = FindCommaDelimited(Names, k++)) != NULL) {
PathName = StrDuplicate(DirName);
MergeStrings(&PathName, FileName, MyStriCmp(PathName, L"\\") ? 0 : L'\\');
for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
if ((Volumes[VolumeIndex]->RootDir != NULL) && (IsValidTool(Volumes[VolumeIndex], PathName))) {
FullDescription = PoolPrint(L"%s at %s on %s", Description, PathName,
Volumes[VolumeIndex]->VolName);
LOG(1, LOG_LINE_NORMAL, L"Adding tag for '%s' on '%s'", FileName,
Volumes[VolumeIndex]->VolName);
AddToolEntry(Volumes[VolumeIndex], PathName, FullDescription,
BuiltinIcon(Icon), 'S', FALSE);
MyFreePool(FullDescription);
} // if
} // for
MyFreePool(PathName);
MyFreePool(FileName);
} // while Names
MyFreePool(DirName);
} // while Locations
} // VOID FindTool()
// Add the second-row tags containing built-in and external tools (EFI shell,
// reboot, etc.)
VOID ScanForTools(VOID) {
CHAR16 *FileName = NULL, *VolName = NULL, *MokLocations, *Description;
REFIT_MENU_ENTRY *TempMenuEntry;
UINTN i, j, VolumeIndex;
UINT64 osind;
CHAR8 *b = 0;
UINT32 CsrValue;
LOG(1, LOG_LINE_SEPARATOR, L"Scanning for tools");
MokLocations = StrDuplicate(MOK_LOCATIONS);
if (MokLocations != NULL)
MergeStrings(&MokLocations, SelfDirPath, L',');
for (i = 0; i < NUM_TOOLS; i++) {
switch(GlobalConfig.ShowTools[i]) {
// NOTE: Be sure that FileName is NULL at the end of each case.
case TAG_SHUTDOWN:
TempMenuEntry = CopyMenuEntry(&MenuEntryShutdown);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_SHUTDOWN);
LOG(2, LOG_LINE_NORMAL, L"Adding Shutdown tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
break;
case TAG_REBOOT:
TempMenuEntry = CopyMenuEntry(&MenuEntryReset);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_RESET);
LOG(2, LOG_LINE_NORMAL, L"Adding Reboot tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
break;
case TAG_ABOUT:
TempMenuEntry = CopyMenuEntry(&MenuEntryAbout);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_ABOUT);
LOG(2, LOG_LINE_NORMAL, L"Adding Info/About tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
break;
case TAG_EXIT:
TempMenuEntry = CopyMenuEntry(&MenuEntryExit);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_EXIT);
LOG(2, LOG_LINE_NORMAL, L"Adding Exit tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
break;
case TAG_HIDDEN:
if (GlobalConfig.HiddenTags) {
TempMenuEntry = CopyMenuEntry(&MenuEntryManageHidden);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_HIDDEN);
LOG(2, LOG_LINE_NORMAL, L"Adding Hidden tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
}
break;
case TAG_FIRMWARE:
if (EfivarGetRaw(&GlobalGuid, L"OsIndicationsSupported", &b, &j) == EFI_SUCCESS) {
osind = (UINT64)*b;
if (osind & EFI_OS_INDICATIONS_BOOT_TO_FW_UI) {
TempMenuEntry = CopyMenuEntry(&MenuEntryFirmware);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_FIRMWARE);
LOG(2, LOG_LINE_NORMAL, L"Adding Reboot-to-Firmware tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
} else {
LOG(1, LOG_LINE_NORMAL, L"showtools includes firmware, but EFI lacks support");
} // if/else
MyFreePool(b);
} else {
LOG(1, LOG_LINE_NORMAL, L"showtools includes firmware, but OsIndicationsSupported is missing");
}
break;
case TAG_SHELL:
j = 0;
while ((FileName = FindCommaDelimited(SHELL_NAMES, j++)) != NULL) {
if (IsValidTool(SelfVolume, FileName)) {
LOG(1, LOG_LINE_NORMAL, L"Adding Shell tag for '%s' on '%s'", FileName,
SelfVolume->VolName);
AddToolEntry(SelfVolume, FileName, L"EFI Shell",
BuiltinIcon(BUILTIN_ICON_TOOL_SHELL),
'S', FALSE);
}
MyFreePool(FileName);
FileName = NULL;
} // while
ScanFirmwareDefined(1, L"Shell", BuiltinIcon(BUILTIN_ICON_TOOL_SHELL));
break;
case TAG_GPTSYNC:
j = 0;
while ((FileName = FindCommaDelimited(GPTSYNC_NAMES, j++)) != NULL) {
if (IsValidTool(SelfVolume, FileName)) {
LOG(1, LOG_LINE_NORMAL, L"Adding Hybrid MBR tool tag for '%s' on '%s'", FileName,
SelfVolume->VolName);
AddToolEntry(SelfVolume, FileName, L"Hybrid MBR tool",
BuiltinIcon(BUILTIN_ICON_TOOL_PART),
'P', FALSE);
} // if
MyFreePool(FileName);
} // while
FileName = NULL;
break;
case TAG_GDISK:
j = 0;
while ((FileName = FindCommaDelimited(GDISK_NAMES, j++)) != NULL) {
if (IsValidTool(SelfVolume, FileName)) {
LOG(1, LOG_LINE_NORMAL, L"Adding GPT fdisk tag for '%s' on '%s'", FileName,
SelfVolume->VolName);
AddToolEntry(SelfVolume, FileName, L"disk partitioning tool",
BuiltinIcon(BUILTIN_ICON_TOOL_PART), 'G', FALSE);
} // if
MyFreePool(FileName);
} // while
FileName = NULL;
break;
case TAG_NETBOOT:
j = 0;
while ((FileName = FindCommaDelimited(NETBOOT_NAMES, j++)) != NULL) {
if (IsValidTool(SelfVolume, FileName)) {
LOG(1, LOG_LINE_NORMAL, L"Adding Netboot tag for '%s' on '%s'", FileName,
SelfVolume->VolName);
AddToolEntry(SelfVolume, FileName, L"Netboot",
BuiltinIcon(BUILTIN_ICON_TOOL_NETBOOT), 'N', FALSE);
} // if
MyFreePool(FileName);
} // while
FileName = NULL;
break;
case TAG_APPLE_RECOVERY:
for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
j = 0;
while ((FileName = FindCommaDelimited(GlobalConfig.MacOSRecoveryFiles, j++)) != NULL) {
if ((Volumes[VolumeIndex]->RootDir != NULL)) {
if ((IsValidTool(Volumes[VolumeIndex], FileName))) {
Description = PoolPrint(L"Apple Recovery on %s", Volumes[VolumeIndex]->VolName);
LOG(1, LOG_LINE_NORMAL, L"Adding Apple Recovery tag for '%s' on '%s'", FileName,
Volumes[VolumeIndex]->VolName);
AddToolEntry(Volumes[VolumeIndex], FileName, Description,
BuiltinIcon(BUILTIN_ICON_TOOL_APPLE_RESCUE), 'R', TRUE);
MyFreePool(Description);
} // if
} // if
} // while
} // for
break;
case TAG_WINDOWS_RECOVERY:
j = 0;
while ((FileName = FindCommaDelimited(GlobalConfig.WindowsRecoveryFiles, j++)) != NULL) {
SplitVolumeAndFilename(&FileName, &VolName);
for (VolumeIndex = 0; VolumeIndex < VolumesCount; VolumeIndex++) {
if ((Volumes[VolumeIndex]->RootDir != NULL) &&
(IsValidTool(Volumes[VolumeIndex], FileName)) &&
((VolName == NULL) || MyStriCmp(VolName, Volumes[VolumeIndex]->VolName))) {
Description = PoolPrint(L"Microsoft Recovery on %s", Volumes[VolumeIndex]->VolName);
LOG(1, LOG_LINE_NORMAL,
L"Adding Windows Recovery tag for '%s' on '%s'",
FileName, Volumes[VolumeIndex]->VolName);
AddToolEntry(Volumes[VolumeIndex], FileName, Description,
BuiltinIcon(BUILTIN_ICON_TOOL_WINDOWS_RESCUE), 'R', TRUE);
MyFreePool(Description);
} // if
} // for
MyFreePool(FileName);
MyFreePool(VolName);
VolName = NULL;
} // while
FileName = NULL;
break;
case TAG_MOK_TOOL:
FindTool(MokLocations, MOK_NAMES, L"MOK utility", BUILTIN_ICON_TOOL_MOK_TOOL);
break;
case TAG_FWUPDATE_TOOL:
FindTool(MokLocations, FWUPDATE_NAMES, L"firmware update utility", BUILTIN_ICON_TOOL_FWUPDATE);
break;
case TAG_CSR_ROTATE:
if ((GetCsrStatus(&CsrValue) == EFI_SUCCESS) && (GlobalConfig.CsrValues)) {
TempMenuEntry = CopyMenuEntry(&MenuEntryRotateCsr);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_CSR_ROTATE);
LOG(1, LOG_LINE_NORMAL, L"Adding CSR Rotate tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
} // if
break;
case TAG_INSTALL:
TempMenuEntry = CopyMenuEntry(&MenuEntryInstall);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_INSTALL);
LOG(1, LOG_LINE_NORMAL, L"Adding Install tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
break;
case TAG_BOOTORDER:
TempMenuEntry = CopyMenuEntry(&MenuEntryBootorder);
TempMenuEntry->Image = BuiltinIcon(BUILTIN_ICON_FUNC_BOOTORDER);
LOG(1, LOG_LINE_NORMAL, L"Adding Boot Order tag");
AddMenuEntry(&MainMenu, TempMenuEntry);
break;
case TAG_MEMTEST:
FindTool(MEMTEST_LOCATIONS, MEMTEST_NAMES, L"Memory test utility", BUILTIN_ICON_TOOL_MEMTEST);
break;
} // switch()
} // for
LOG(2, LOG_LINE_NORMAL, L"Done scanning for tools");
} // VOID ScanForTools