2019-09-03 11:58:42 +02:00
|
|
|
/*
|
|
|
|
* refit/scan/legacy.c
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "entry_scan.h"
|
2020-02-29 08:30:21 +01:00
|
|
|
#include "../refit/screen.h"
|
|
|
|
#include "../refit/menu.h"
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
#ifndef DEBUG_ALL
|
|
|
|
#define DEBUG_SCAN_LEGACY 1
|
|
|
|
#else
|
|
|
|
#define DEBUG_SCAN_LEGACY DEBUG_ALL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DEBUG_SCAN_LEGACY == 0
|
|
|
|
#define DBG(...)
|
|
|
|
#else
|
|
|
|
#define DBG(...) DebugLog(DEBUG_SCAN_LEGACY, __VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
2020-03-04 07:20:37 +01:00
|
|
|
//the function is not in the class and deals always with MainMenu
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
|
|
|
//I made args as pointers to have an ability to call with NULL
|
|
|
|
BOOLEAN AddLegacyEntry(IN const XStringW* FullTitle, IN const XStringW* LoaderTitle, IN REFIT_VOLUME *Volume, IN const XImage* Image, IN const XImage* DriveImage, IN CHAR16 Hotkey, IN BOOLEAN CustomEntry)
|
|
|
|
|
|
|
|
#else
|
2020-03-04 07:20:37 +01:00
|
|
|
BOOLEAN AddLegacyEntry(IN CONST CHAR16 *FullTitle, IN CONST CHAR16 *LoaderTitle, IN REFIT_VOLUME *Volume, IN EG_IMAGE *Image, IN EG_IMAGE *DriveImage, IN CHAR16 Hotkey, IN BOOLEAN CustomEntry)
|
2020-04-03 22:00:42 +02:00
|
|
|
|
|
|
|
#endif
|
2019-09-03 11:58:42 +02:00
|
|
|
{
|
|
|
|
LEGACY_ENTRY *Entry, *SubEntry;
|
|
|
|
REFIT_MENU_SCREEN *SubScreen;
|
2019-12-27 17:12:28 +01:00
|
|
|
CONST CHAR16 *VolDesc;
|
2019-09-03 11:58:42 +02:00
|
|
|
CHAR16 ShortcutLetter = 0;
|
2020-02-28 21:28:33 +01:00
|
|
|
// INTN i;
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
if (Volume == NULL) {
|
2020-03-04 07:20:37 +01:00
|
|
|
return false;
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
// Ignore this loader if it's device path is already present in another loader
|
2020-02-28 21:28:33 +01:00
|
|
|
// if (MainMenu.Entries) {
|
|
|
|
for (UINTN i = 0; i < MainMenu.Entries.size(); ++i) {
|
|
|
|
REFIT_ABSTRACT_MENU_ENTRY& MainEntry = MainMenu.Entries[i];
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG("entry %lld\n", i);
|
2019-09-03 11:58:42 +02:00
|
|
|
// Only want legacy
|
2020-02-28 21:28:33 +01:00
|
|
|
// if (MainEntry && (MainEntry->getLEGACY_ENTRY())) {
|
|
|
|
if (MainEntry.getLEGACY_ENTRY()) {
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG("a1\n");
|
2020-02-28 21:28:33 +01:00
|
|
|
if (StriCmp(MainEntry.getLEGACY_ENTRY()->DevicePathString, Volume->DevicePathString) == 0) {
|
2020-03-04 07:20:37 +01:00
|
|
|
return true;
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-28 21:28:33 +01:00
|
|
|
// }
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
// If this isn't a custom entry make sure it's not hidden by a custom entry
|
|
|
|
if (!CustomEntry) {
|
|
|
|
CUSTOM_LEGACY_ENTRY *Custom = gSettings.CustomLegacy;
|
|
|
|
while (Custom) {
|
|
|
|
if (OSFLAG_ISSET(Custom->Flags, OSFLAG_DISABLED) ||
|
|
|
|
(OSFLAG_ISSET(Custom->Flags, OSFLAG_HIDDEN) && !gSettings.ShowHiddenEntries)) {
|
|
|
|
if (Custom->Volume) {
|
|
|
|
if ((StrStr(Volume->DevicePathString, Custom->Volume) == NULL) &&
|
|
|
|
((Volume->VolName == NULL) || (StrStr(Volume->VolName, Custom->Volume) == NULL))) {
|
|
|
|
if (Custom->Type != 0) {
|
|
|
|
if (Custom->Type == Volume->LegacyOS->Type) {
|
2020-03-04 07:20:37 +01:00
|
|
|
return false;
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
} else {
|
2020-03-04 07:20:37 +01:00
|
|
|
return false;
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (Custom->Type != 0) {
|
|
|
|
if (Custom->Type == Volume->LegacyOS->Type) {
|
2020-03-04 07:20:37 +01:00
|
|
|
return false;
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Custom = Custom->Next;
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
|
|
|
XStringW LTitle;
|
|
|
|
if (!LoaderTitle) {
|
|
|
|
if (Volume->LegacyOS->Name != NULL) {
|
|
|
|
LTitle.takeValueFrom(Volume->LegacyOS->Name);
|
|
|
|
if (Volume->LegacyOS->Name[0] == 'W' || Volume->LegacyOS->Name[0] == 'L')
|
|
|
|
ShortcutLetter = Volume->LegacyOS->Name[0];
|
|
|
|
} else
|
|
|
|
LTitle = L"Legacy OS"_XSW;
|
|
|
|
} else
|
|
|
|
LTitle = *LoaderTitle;
|
|
|
|
#else
|
|
|
|
|
2019-09-03 11:58:42 +02:00
|
|
|
if (LoaderTitle == NULL) {
|
|
|
|
if (Volume->LegacyOS->Name != NULL) {
|
|
|
|
LoaderTitle = Volume->LegacyOS->Name;
|
|
|
|
if (LoaderTitle[0] == 'W' || LoaderTitle[0] == 'L')
|
|
|
|
ShortcutLetter = LoaderTitle[0];
|
|
|
|
} else
|
2020-03-03 21:44:07 +01:00
|
|
|
LoaderTitle = EfiStrDuplicate( L"Legacy OS");
|
2020-03-25 19:32:44 +01:00
|
|
|
// DBG("LoaderTitle=%ls\n", LoaderTitle);
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
#endif
|
2019-09-03 11:58:42 +02:00
|
|
|
if (Volume->VolName != NULL)
|
|
|
|
VolDesc = Volume->VolName;
|
|
|
|
else
|
|
|
|
VolDesc = (Volume->DiskKind == DISK_KIND_OPTICAL) ? L"CD" : L"HD";
|
2020-03-25 19:32:44 +01:00
|
|
|
//DBG("VolDesc=%ls\n", VolDesc);
|
2020-04-03 22:00:42 +02:00
|
|
|
|
2019-09-03 11:58:42 +02:00
|
|
|
// prepare the menu entry
|
2020-03-04 16:27:41 +01:00
|
|
|
Entry = new LEGACY_ENTRY();
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
2019-09-03 11:58:42 +02:00
|
|
|
if (FullTitle) {
|
2020-04-03 22:00:42 +02:00
|
|
|
Entry->Title = *FullTitle;
|
2019-09-03 11:58:42 +02:00
|
|
|
} else {
|
2020-03-26 15:24:20 +01:00
|
|
|
if (ThemeX.BootCampStyle) {
|
2020-04-03 22:00:42 +02:00
|
|
|
Entry->Title = LTitle;
|
2020-03-26 15:24:20 +01:00
|
|
|
} else {
|
2020-04-03 22:00:42 +02:00
|
|
|
Entry->Title = L"Boot "_XSW + *LoaderTitle + L" from "_XSW + VolDesc;
|
|
|
|
// Entry->Title.SWPrintf("Boot %ls from %ls", LoaderTitle->wc_str(), VolDesc);
|
2020-03-26 15:24:20 +01:00
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
}
|
2020-03-26 15:24:20 +01:00
|
|
|
#else
|
2020-04-03 22:00:42 +02:00
|
|
|
if (FullTitle) {
|
|
|
|
Entry->Title.takeValueFrom(FullTitle);
|
|
|
|
} else {
|
2019-09-03 11:58:42 +02:00
|
|
|
if (GlobalConfig.BootCampStyle) {
|
2020-03-10 17:50:55 +01:00
|
|
|
Entry->Title.takeValueFrom(LoaderTitle);
|
2019-09-03 11:58:42 +02:00
|
|
|
} else {
|
2020-03-31 18:10:30 +02:00
|
|
|
Entry->Title.SWPrintf("Boot %ls from %ls", LoaderTitle, VolDesc);
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
}
|
2020-03-26 15:24:20 +01:00
|
|
|
#endif
|
|
|
|
|
2020-03-25 19:32:44 +01:00
|
|
|
// DBG("Title=%ls\n", Entry->Title);
|
2020-02-28 21:28:33 +01:00
|
|
|
// Entry->Tag = TAG_LEGACY;
|
|
|
|
Entry->Row = 0;
|
|
|
|
Entry->ShortcutLetter = (Hotkey == 0) ? ShortcutLetter : Hotkey;
|
2020-03-26 15:24:20 +01:00
|
|
|
|
|
|
|
#if USE_XTHEME
|
|
|
|
if (Image) {
|
2020-04-03 22:00:42 +02:00
|
|
|
Entry->Image = *Image;
|
2020-03-26 15:24:20 +01:00
|
|
|
} else {
|
2020-03-31 09:27:50 +02:00
|
|
|
Entry->Image = ThemeX.GetIcon(XString().takeValueFrom(Volume->LegacyOS->IconName));
|
2020-04-03 22:00:42 +02:00
|
|
|
if (Entry->Image.isEmpty()) {
|
|
|
|
Entry->Image = ThemeX.GetIcon("vol_internal"); //we have no legacy.png
|
|
|
|
}
|
2020-03-26 15:24:20 +01:00
|
|
|
}
|
|
|
|
#else
|
2019-09-03 11:58:42 +02:00
|
|
|
if (Image) {
|
2020-02-28 21:28:33 +01:00
|
|
|
Entry->Image = Image;
|
2019-09-03 11:58:42 +02:00
|
|
|
} else {
|
2020-02-28 21:28:33 +01:00
|
|
|
Entry->Image = LoadOSIcon(Volume->LegacyOS->IconName, L"legacy", 128, FALSE, TRUE);
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
2020-03-26 15:24:20 +01:00
|
|
|
#endif
|
|
|
|
|
2020-03-25 19:32:44 +01:00
|
|
|
// DBG("IconName=%ls\n", Volume->LegacyOS->IconName);
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
|
|
|
Entry->DriveImage = (DriveImage != NULL) ? *DriveImage : ScanVolumeDefaultIcon(Volume, Volume->LegacyOS->Type, Volume->DevicePath);
|
|
|
|
#else
|
|
|
|
Entry->DriveImage = (DriveImage != NULL) ? DriveImage : ScanVolumeDefaultIcon(Volume, Volume->LegacyOS->Type, Volume->DevicePath);
|
|
|
|
#endif
|
|
|
|
|
2020-03-25 19:32:44 +01:00
|
|
|
// DBG("HideBadges=%d Volume=%ls\n", GlobalConfig.HideBadges, Volume->VolName);
|
|
|
|
// DBG("Title=%ls OSName=%ls OSIconName=%ls\n", LoaderTitle, Volume->OSName, Volume->OSIconName);
|
2019-09-03 11:58:42 +02:00
|
|
|
//actions
|
2020-02-28 21:28:33 +01:00
|
|
|
Entry->AtClick = ActionSelect;
|
|
|
|
Entry->AtDoubleClick = ActionEnter;
|
|
|
|
Entry->AtRightClick = ActionDetails;
|
2020-03-24 16:17:12 +01:00
|
|
|
#if USE_XTHEME
|
|
|
|
if (ThemeX.HideBadges & HDBADGES_SHOW) {
|
|
|
|
if (ThemeX.HideBadges & HDBADGES_SWAP) {
|
2020-04-03 22:00:42 +02:00
|
|
|
Entry->BadgeImage = XImage(Entry->DriveImage, ThemeX.BadgeScale/16.f);
|
2020-03-24 16:17:12 +01:00
|
|
|
} else {
|
2020-04-03 22:00:42 +02:00
|
|
|
Entry->BadgeImage = XImage(Entry->Image, ThemeX.BadgeScale/16.f);
|
2020-03-24 16:17:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2019-09-03 11:58:42 +02:00
|
|
|
if (GlobalConfig.HideBadges & HDBADGES_SHOW) {
|
|
|
|
if (GlobalConfig.HideBadges & HDBADGES_SWAP) {
|
2020-02-28 21:28:33 +01:00
|
|
|
Entry->BadgeImage = egCopyScaledImage(Entry->DriveImage, GlobalConfig.BadgeScale);
|
2019-09-03 11:58:42 +02:00
|
|
|
} else {
|
2020-02-28 21:28:33 +01:00
|
|
|
Entry->BadgeImage = egCopyScaledImage(Entry->Image, GlobalConfig.BadgeScale);
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
2020-03-24 16:17:12 +01:00
|
|
|
}
|
|
|
|
#endif
|
2019-09-03 11:58:42 +02:00
|
|
|
Entry->Volume = Volume;
|
|
|
|
Entry->DevicePathString = Volume->DevicePathString;
|
2019-12-27 18:01:40 +01:00
|
|
|
Entry->LoadOptions = (Volume->DiskKind == DISK_KIND_OPTICAL) ? L"CD" : ((Volume->DiskKind == DISK_KIND_EXTERNAL) ? L"USB" : L"HD");
|
2019-09-03 11:58:42 +02:00
|
|
|
// create the submenu
|
2020-03-03 21:44:07 +01:00
|
|
|
// SubScreen = (__typeof__(SubScreen))AllocateZeroPool(sizeof(REFIT_MENU_SCREEN));
|
|
|
|
SubScreen = new REFIT_MENU_SCREEN();
|
2020-03-21 20:52:28 +01:00
|
|
|
#if USE_XTHEME
|
2020-04-03 22:00:42 +02:00
|
|
|
SubScreen->Title = L"Boot Options for "_XSW + *LoaderTitle + L" on "_XSW + VolDesc;
|
|
|
|
// SubScreen->Title.SWPrintf("Boot Options for %ls on %ls", LoaderTitle, VolDesc);
|
2020-03-21 20:52:28 +01:00
|
|
|
#else
|
2019-09-03 11:58:42 +02:00
|
|
|
SubScreen->Title = PoolPrint(L"Boot Options for %s on %s", LoaderTitle, VolDesc);
|
2020-03-21 20:52:28 +01:00
|
|
|
#endif
|
2020-02-28 21:28:33 +01:00
|
|
|
SubScreen->TitleImage = Entry->Image;
|
2020-03-03 21:44:07 +01:00
|
|
|
SubScreen->AnimeRun = SubScreen->GetAnime();
|
2019-09-03 11:58:42 +02:00
|
|
|
// default entry
|
2020-03-04 16:27:41 +01:00
|
|
|
// SubEntry = (__typeof__(SubEntry))AllocateZeroPool(sizeof(LEGACY_ENTRY));
|
|
|
|
SubEntry = new LEGACY_ENTRY();
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
|
|
|
SubEntry->Title = L"Boot "_XSW + *LoaderTitle;
|
|
|
|
#else
|
2020-03-31 18:10:30 +02:00
|
|
|
SubEntry->Title.SWPrintf("Boot %ls", LoaderTitle);
|
2020-04-03 22:00:42 +02:00
|
|
|
#endif
|
2020-02-28 21:28:33 +01:00
|
|
|
// SubEntry->Tag = TAG_LEGACY;
|
2019-09-03 11:58:42 +02:00
|
|
|
SubEntry->Volume = Entry->Volume;
|
|
|
|
SubEntry->DevicePathString = Entry->DevicePathString;
|
|
|
|
SubEntry->LoadOptions = Entry->LoadOptions;
|
2020-02-28 21:28:33 +01:00
|
|
|
SubEntry->AtClick = ActionEnter;
|
2020-03-03 21:44:07 +01:00
|
|
|
SubScreen->AddMenuEntry(SubEntry, true);
|
|
|
|
SubScreen->AddMenuEntry(&MenuEntryReturn, false);
|
2020-02-28 21:28:33 +01:00
|
|
|
Entry->SubScreen = SubScreen;
|
2020-03-03 21:44:07 +01:00
|
|
|
MainMenu.AddMenuEntry(Entry, true);
|
2020-03-25 19:32:44 +01:00
|
|
|
// DBG(" added '%ls' OSType=%d Icon=%ls\n", Entry->Title, Volume->LegacyOS->Type, Volume->LegacyOS->IconName);
|
2020-03-04 07:20:37 +01:00
|
|
|
return true;
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VOID ScanLegacy(VOID)
|
|
|
|
{
|
|
|
|
UINTN VolumeIndex, VolumeIndex2;
|
|
|
|
BOOLEAN ShowVolume, HideIfOthersFound;
|
|
|
|
REFIT_VOLUME *Volume;
|
|
|
|
|
|
|
|
DBG("Scanning legacy ...\n");
|
|
|
|
|
2020-02-27 15:34:29 +01:00
|
|
|
for (VolumeIndex = 0; VolumeIndex < Volumes.size(); VolumeIndex++) {
|
|
|
|
Volume = &Volumes[VolumeIndex];
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG("test VI=%d\n", VolumeIndex);
|
2019-09-03 11:58:42 +02:00
|
|
|
if ((Volume->BootType != BOOTING_BY_PBR) &&
|
|
|
|
(Volume->BootType != BOOTING_BY_MBR) &&
|
|
|
|
(Volume->BootType != BOOTING_BY_CD)) {
|
|
|
|
// DBG(" not legacy\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-25 19:32:44 +01:00
|
|
|
// DBG("%2d: '%ls' (%ls)", VolumeIndex, Volume->VolName, Volume->LegacyOS->IconName);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
#if 0 // REFIT_DEBUG > 0
|
2020-03-25 19:32:44 +01:00
|
|
|
DBG(" %d %ls\n %d %d %ls %d %ls\n",
|
2019-09-03 11:58:42 +02:00
|
|
|
VolumeIndex, FileDevicePathToStr(Volume->DevicePath),
|
|
|
|
Volume->DiskKind, Volume->MbrPartitionIndex,
|
|
|
|
Volume->IsAppleLegacy ? L"AL" : L"--", Volume->HasBootCode,
|
|
|
|
Volume->VolName ? Volume->VolName : L"(no name)");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// skip volume if its kind is configured as disabled
|
|
|
|
if ((Volume->DiskKind == DISK_KIND_OPTICAL && (GlobalConfig.DisableFlags & VOLTYPE_OPTICAL)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_EXTERNAL && (GlobalConfig.DisableFlags & VOLTYPE_EXTERNAL)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_INTERNAL && (GlobalConfig.DisableFlags & VOLTYPE_INTERNAL)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_FIREWIRE && (GlobalConfig.DisableFlags & VOLTYPE_FIREWIRE)))
|
|
|
|
{
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG(" hidden\n");
|
2019-09-03 11:58:42 +02:00
|
|
|
continue;
|
|
|
|
}
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG("not hidden\n");
|
2019-09-03 11:58:42 +02:00
|
|
|
ShowVolume = FALSE;
|
|
|
|
HideIfOthersFound = FALSE;
|
|
|
|
if (Volume->IsAppleLegacy) {
|
|
|
|
ShowVolume = TRUE;
|
|
|
|
HideIfOthersFound = TRUE;
|
|
|
|
} else if (Volume->HasBootCode) {
|
|
|
|
ShowVolume = TRUE;
|
2020-03-25 19:32:44 +01:00
|
|
|
// DBG("Volume %d will be shown BlockIo=%X WholeIo=%X\n",
|
2020-03-04 07:32:44 +01:00
|
|
|
// VolumeIndex, Volume->BlockIO, Volume->WholeDiskBlockIO);
|
2019-09-03 11:58:42 +02:00
|
|
|
if ((Volume->WholeDiskBlockIO == 0) &&
|
|
|
|
Volume->BlockIOOffset == 0 /* &&
|
|
|
|
Volume->OSName == NULL */)
|
|
|
|
// this is a whole disk (MBR) entry; hide if we have entries for partitions
|
|
|
|
HideIfOthersFound = TRUE;
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG("Hide it!\n");
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
if (HideIfOthersFound) {
|
|
|
|
// check for other bootable entries on the same disk
|
|
|
|
//if PBR exists then Hide MBR
|
2020-02-27 15:34:29 +01:00
|
|
|
for (VolumeIndex2 = 0; VolumeIndex2 < Volumes.size(); VolumeIndex2++) {
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG("what to hide %d\n", VolumeIndex2);
|
2019-09-03 11:58:42 +02:00
|
|
|
if (VolumeIndex2 != VolumeIndex &&
|
2020-02-27 15:34:29 +01:00
|
|
|
Volumes[VolumeIndex2].HasBootCode &&
|
|
|
|
Volumes[VolumeIndex2].WholeDiskBlockIO == Volume->BlockIO){
|
2019-09-03 11:58:42 +02:00
|
|
|
ShowVolume = FALSE;
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG("PBR volume at index %d\n", VolumeIndex2);
|
2019-09-03 11:58:42 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ShowVolume && (!Volume->Hidden)){
|
2020-03-04 07:20:37 +01:00
|
|
|
// DBG(" add legacy\n");
|
|
|
|
if (!AddLegacyEntry(NULL, NULL, Volume, NULL, NULL, 0, FALSE)) {
|
|
|
|
DBG("...entry not added\n");
|
|
|
|
};
|
2019-09-03 11:58:42 +02:00
|
|
|
} else {
|
|
|
|
DBG(" hidden\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add custom legacy
|
|
|
|
VOID AddCustomLegacy(VOID)
|
|
|
|
{
|
|
|
|
UINTN VolumeIndex, VolumeIndex2;
|
|
|
|
BOOLEAN ShowVolume, HideIfOthersFound;
|
|
|
|
REFIT_VOLUME *Volume;
|
|
|
|
CUSTOM_LEGACY_ENTRY *Custom;
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
|
|
|
XImage Image;
|
|
|
|
XImage DriveImage;
|
|
|
|
#else
|
2019-09-03 11:58:42 +02:00
|
|
|
EG_IMAGE *Image, *DriveImage;
|
2020-04-03 22:00:42 +02:00
|
|
|
#endif
|
2019-09-03 11:58:42 +02:00
|
|
|
UINTN i = 0;
|
|
|
|
|
|
|
|
// DBG("Custom legacy start\n");
|
|
|
|
if (gSettings.CustomLegacy) {
|
|
|
|
DbgHeader("AddCustomLegacy");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Traverse the custom entries
|
|
|
|
for (Custom = gSettings.CustomLegacy; Custom; ++i, Custom = Custom->Next) {
|
|
|
|
if (OSFLAG_ISSET(Custom->Flags, OSFLAG_DISABLED)) {
|
2020-03-30 10:34:16 +02:00
|
|
|
DBG("Custom legacy %llu skipped because it is disabled.\n", i);
|
2019-09-03 11:58:42 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!gSettings.ShowHiddenEntries && OSFLAG_ISSET(Custom->Flags, OSFLAG_HIDDEN)) {
|
2020-03-30 10:34:16 +02:00
|
|
|
DBG("Custom legacy %llu skipped because it is hidden.\n", i);
|
2019-09-03 11:58:42 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (Custom->Volume) {
|
2020-03-30 10:34:16 +02:00
|
|
|
DBG("Custom legacy %llu matching \"%ls\" ...\n", i, Custom->Volume);
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
2020-02-27 15:34:29 +01:00
|
|
|
for (VolumeIndex = 0; VolumeIndex < Volumes.size(); ++VolumeIndex) {
|
|
|
|
Volume = &Volumes[VolumeIndex];
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-03-25 19:32:44 +01:00
|
|
|
DBG(" Checking volume \"%ls\" (%ls) ... ", Volume->VolName, Volume->DevicePathString);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
// skip volume if its kind is configured as disabled
|
|
|
|
if ((Volume->DiskKind == DISK_KIND_OPTICAL && (GlobalConfig.DisableFlags & VOLTYPE_OPTICAL)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_EXTERNAL && (GlobalConfig.DisableFlags & VOLTYPE_EXTERNAL)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_INTERNAL && (GlobalConfig.DisableFlags & VOLTYPE_INTERNAL)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_FIREWIRE && (GlobalConfig.DisableFlags & VOLTYPE_FIREWIRE)))
|
|
|
|
{
|
|
|
|
DBG("skipped because media is disabled\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Custom->VolumeType != 0) {
|
|
|
|
if ((Volume->DiskKind == DISK_KIND_OPTICAL && ((Custom->VolumeType & VOLTYPE_OPTICAL) == 0)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_EXTERNAL && ((Custom->VolumeType & VOLTYPE_EXTERNAL) == 0)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_INTERNAL && ((Custom->VolumeType & VOLTYPE_INTERNAL) == 0)) ||
|
|
|
|
(Volume->DiskKind == DISK_KIND_FIREWIRE && ((Custom->VolumeType & VOLTYPE_FIREWIRE) == 0))) {
|
|
|
|
DBG("skipped because media is ignored\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((Volume->BootType != BOOTING_BY_PBR) &&
|
|
|
|
(Volume->BootType != BOOTING_BY_MBR) &&
|
|
|
|
(Volume->BootType != BOOTING_BY_CD)) {
|
|
|
|
DBG("skipped because volume is not legacy bootable\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ShowVolume = FALSE;
|
|
|
|
HideIfOthersFound = FALSE;
|
|
|
|
if (Volume->IsAppleLegacy) {
|
|
|
|
ShowVolume = TRUE;
|
|
|
|
HideIfOthersFound = TRUE;
|
|
|
|
} else if (Volume->HasBootCode) {
|
|
|
|
ShowVolume = TRUE;
|
|
|
|
if ((Volume->WholeDiskBlockIO == 0) &&
|
|
|
|
Volume->BlockIOOffset == 0) {
|
|
|
|
// this is a whole disk (MBR) entry; hide if we have entries for partitions
|
|
|
|
HideIfOthersFound = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (HideIfOthersFound) {
|
|
|
|
// check for other bootable entries on the same disk
|
|
|
|
//if PBR exists then Hide MBR
|
2020-02-27 15:34:29 +01:00
|
|
|
for (VolumeIndex2 = 0; VolumeIndex2 < Volumes.size(); VolumeIndex2++) {
|
2019-09-03 11:58:42 +02:00
|
|
|
if (VolumeIndex2 != VolumeIndex &&
|
2020-02-27 15:34:29 +01:00
|
|
|
Volumes[VolumeIndex2].HasBootCode &&
|
|
|
|
Volumes[VolumeIndex2].WholeDiskBlockIO == Volume->BlockIO) {
|
2019-09-03 11:58:42 +02:00
|
|
|
ShowVolume = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ShowVolume || (Volume->Hidden)) {
|
|
|
|
DBG("skipped because volume is hidden\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for exact volume matches
|
|
|
|
if (Custom->Volume) {
|
|
|
|
if ((StrStr(Volume->DevicePathString, Custom->Volume) == NULL) &&
|
|
|
|
((Volume->VolName == NULL) || (StrStr(Volume->VolName, Custom->Volume) == NULL))) {
|
|
|
|
DBG("skipped\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Check if the volume should be of certain os type
|
|
|
|
if ((Custom->Type != 0) && (Custom->Type != Volume->LegacyOS->Type)) {
|
|
|
|
DBG("skipped because wrong type\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else if ((Custom->Type != 0) && (Custom->Type != Volume->LegacyOS->Type)) {
|
|
|
|
DBG("skipped because wrong type\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Change to custom image if needed
|
|
|
|
Image = Custom->Image;
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
|
|
|
if (Image.isEmpty()) {
|
|
|
|
Image.LoadXImage(ThemeX.ThemeDir, Custom->ImagePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2019-09-03 11:58:42 +02:00
|
|
|
if ((Image == NULL) && Custom->ImagePath) {
|
|
|
|
Image = egLoadImage(Volume->RootDir, Custom->ImagePath, TRUE);
|
|
|
|
if (Image == NULL) {
|
|
|
|
Image = egLoadImage(ThemeDir, Custom->ImagePath, TRUE);
|
|
|
|
if (Image == NULL) {
|
|
|
|
Image = egLoadImage(SelfDir, Custom->ImagePath, TRUE);
|
|
|
|
if (Image == NULL) {
|
|
|
|
Image = egLoadImage(SelfRootDir, Custom->ImagePath, TRUE);
|
|
|
|
if (Image == NULL) {
|
|
|
|
Image = LoadOSIcon(Custom->ImagePath, L"unknown", 128, FALSE, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
#endif
|
2019-09-03 11:58:42 +02:00
|
|
|
// Change to custom drive image if needed
|
|
|
|
DriveImage = Custom->DriveImage;
|
2020-04-03 22:00:42 +02:00
|
|
|
#if USE_XTHEME
|
|
|
|
if (DriveImage.isEmpty()) {
|
|
|
|
DriveImage.LoadXImage(ThemeX.ThemeDir, Custom->DriveImagePath);
|
|
|
|
}
|
|
|
|
// Create a legacy entry for this volume
|
|
|
|
if (AddLegacyEntry(&Custom->FullTitle, &Custom->Title, Volume, &Image, &DriveImage, Custom->Hotkey, TRUE))
|
|
|
|
{
|
|
|
|
DBG("match!\n");
|
|
|
|
}
|
|
|
|
#else
|
2019-09-03 11:58:42 +02:00
|
|
|
if ((DriveImage == NULL) && Custom->DriveImagePath) {
|
|
|
|
DriveImage = egLoadImage(Volume->RootDir, Custom->DriveImagePath, TRUE);
|
|
|
|
if (DriveImage == NULL) {
|
|
|
|
DriveImage = egLoadImage(ThemeDir, Custom->DriveImagePath, TRUE);
|
|
|
|
if (DriveImage == NULL) {
|
|
|
|
DriveImage = egLoadImage(SelfDir, Custom->DriveImagePath, TRUE);
|
|
|
|
if (DriveImage == NULL) {
|
|
|
|
DriveImage = egLoadImage(SelfRootDir, Custom->DriveImagePath, TRUE);
|
|
|
|
if (DriveImage == NULL) {
|
|
|
|
DriveImage = LoadBuiltinIcon(Custom->DriveImagePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Create a legacy entry for this volume
|
2020-03-04 07:20:37 +01:00
|
|
|
if (AddLegacyEntry(Custom->FullTitle, Custom->Title, Volume, Image, DriveImage, Custom->Hotkey, TRUE))
|
|
|
|
{
|
|
|
|
DBG("match!\n");
|
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
#endif
|
2019-09-03 11:58:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//DBG("Custom legacy end\n");
|
|
|
|
}
|