This commit is contained in:
Slice 2023-11-16 21:11:08 +03:00
commit 1914496605
10 changed files with 88 additions and 56 deletions

View File

@ -35,7 +35,7 @@ void* ReallocatePool(UINTN OldSize, UINTN NewSize, void* OldBuffer)
return (void*)realloc(OldBuffer, (size_t)NewSize); return (void*)realloc(OldBuffer, (size_t)NewSize);
} }
void FreePool(IN JCONST VOID *Buffer) void FreePool(IN VOID *Buffer)
{ {
free((void*)Buffer); free((void*)Buffer);
} }

View File

@ -127,6 +127,16 @@ extern "C" int main(int argc, const char * argv[])
(void)argv; (void)argv;
setlocale(LC_ALL, "en_US"); // to allow printf unicode char setlocale(LC_ALL, "en_US"); // to allow printf unicode char
XString8 s("foo");
// s.strcat("a");
char* p = s.forgetDataWithoutFreeing();
free(p);
XString8 s2;
// s2.S8Printf("bar");
char* q = s2.forgetDataWithoutFreeing();
free(q);
MyFloat test = 5.0f; MyFloat test = 5.0f;
MutableRef<MyFloat> Background; MutableRef<MyFloat> Background;

View File

@ -254,8 +254,7 @@ void AddDropTable(EFI_ACPI_DESCRIPTION_HEADER* Table, UINT32 Index)
DropTable->TableId = Table->OemTableId; DropTable->TableId = Table->OemTableId;
DropTable->Length = Table->Length; DropTable->Length = Table->Length;
DropTable->MenuItem.BValue = false; DropTable->MenuItem.BValue = false;
DropTable->Next = GlobalConfig.ACPIDropTables; GlobalConfig.ACPIDropTables.AddReference(DropTable, true);
GlobalConfig.ACPIDropTables = DropTable;
} }
@ -284,7 +283,7 @@ void GetAcpiTablesList()
DbgHeader("GetAcpiTablesList"); DbgHeader("GetAcpiTablesList");
GetFadt(); //this is a first call to acpi, we need it to make a pointer to Xsdt GetFadt(); //this is a first call to acpi, we need it to make a pointer to Xsdt
GlobalConfig.ACPIDropTables = NULL; GlobalConfig.ACPIDropTables.setEmpty();
DBG("Get Acpi Tables List "); DBG("Get Acpi Tables List ");
/* /*
@ -2137,14 +2136,14 @@ EFI_STATUS PatchACPI(IN REFIT_VOLUME *Volume, const MacOsVersion& OSVersion)
LoadAllPatchedAML(L"ACPI\\patched"_XSW, AUTOMERGE_PASS1); LoadAllPatchedAML(L"ACPI\\patched"_XSW, AUTOMERGE_PASS1);
// Drop tables // Drop tables
if (GlobalConfig.ACPIDropTables) { if (GlobalConfig.ACPIDropTables.notEmpty()) {
ACPI_DROP_TABLE *DropTable;
DbgHeader("ACPIDropTables"); DbgHeader("ACPIDropTables");
for (DropTable = GlobalConfig.ACPIDropTables; DropTable; DropTable = DropTable->Next) { for ( size_t idx = 0 ; idx < GlobalConfig.ACPIDropTables.length() ; ++idx ) {
if (DropTable->MenuItem.BValue) { ACPI_DROP_TABLE& DropTable = GlobalConfig.ACPIDropTables[idx];
//DBG("Attempting to drop \"%4.4a\" (%8.8X) \"%8.8a\" (%16.16lX) L=%d\n", &(DropTable->Signature), DropTable->Signature, &(DropTable->TableId), DropTable->TableId, DropTable->Length); if (DropTable.MenuItem.BValue) {
DropTableFromXSDT(DropTable->Signature, DropTable->TableId, DropTable->Length); //DBG("Attempting to drop \"%4.4a\" (%8.8X) \"%8.8a\" (%16.16lX) L=%d\n", &(DropTable.Signature), DropTable.Signature, &(DropTable.TableId), DropTable.TableId, DropTable.Length);
DropTableFromRSDT(DropTable->Signature, DropTable->TableId, DropTable->Length); DropTableFromXSDT(DropTable.Signature, DropTable.TableId, DropTable.Length);
DropTableFromRSDT(DropTable.Signature, DropTable.TableId, DropTable.Length);
} }
} }
} }
@ -2563,15 +2562,21 @@ EFI_STATUS PatchACPI_OtherOS(CONST CHAR16* OsSubdir, XBool DropSSDT)
DropTableFromRSDT(EFI_ACPI_4_0_SECONDARY_SYSTEM_DESCRIPTION_TABLE_SIGNATURE, 0, 0); DropTableFromRSDT(EFI_ACPI_4_0_SECONDARY_SYSTEM_DESCRIPTION_TABLE_SIGNATURE, 0, 0);
} }
*/ */
if (GlobalConfig.ACPIDropTables) { if (GlobalConfig.ACPIDropTables.notEmpty()) {
ACPI_DROP_TABLE *DropTable; for ( size_t idx = 0 ; idx < GlobalConfig.ACPIDropTables.length() ; ++idx ) {
ACPI_DROP_TABLE& DropTable = GlobalConfig.ACPIDropTables[idx];
DropTable.MenuItem.ItemType = BoolValue;
}
}
if (GlobalConfig.ACPIDropTables.notEmpty()) {
DbgHeader("ACPIDropTables"); DbgHeader("ACPIDropTables");
for (DropTable = GlobalConfig.ACPIDropTables; DropTable; DropTable = DropTable->Next) { for ( size_t idx = 0 ; idx < GlobalConfig.ACPIDropTables.length() ; ++idx ) {
ACPI_DROP_TABLE& DropTable = GlobalConfig.ACPIDropTables[idx];
// only for tables that have OtherOS true // only for tables that have OtherOS true
if (DropTable->OtherOS && DropTable->MenuItem.BValue) { if (DropTable.OtherOS && DropTable.MenuItem.BValue) {
//DBG("Attempting to drop \"%4.4a\" (%8.8X) \"%8.8a\" (%16.16lX) L=%d\n", &(DropTable->Signature), DropTable->Signature, &(DropTable->TableId), DropTable->TableId, DropTable->Length); //DBG("Attempting to drop \"%4.4a\" (%8.8X) \"%8.8a\" (%16.16lX) L=%d\n", &(DropTable.Signature), DropTable.Signature, &(DropTable.TableId), DropTable.TableId, DropTable.Length);
DropTableFromXSDT(DropTable->Signature, DropTable->TableId, DropTable->Length); DropTableFromXSDT(DropTable.Signature, DropTable.TableId, DropTable.Length);
DropTableFromRSDT(DropTable->Signature, DropTable->TableId, DropTable->Length); DropTableFromRSDT(DropTable.Signature, DropTable.TableId, DropTable.Length);
} }
} }
} }

View File

@ -334,27 +334,25 @@ void afterGetUserSettings(SETTINGS_DATA& settingsData)
GlobalConfig.SecureBoot = 1; GlobalConfig.SecureBoot = 1;
} }
//set to drop //set to drop
GlobalConfig.DropSSDT = settingsData.ACPI.SSDT.DropSSDTSetting; GlobalConfig.DropSSDT = settingsData.ACPI.SSDT.DropSSDTSetting;
if (GlobalConfig.ACPIDropTables) { if (GlobalConfig.ACPIDropTables.notEmpty()) {
for ( size_t idx = 0 ; idx < settingsData.ACPI.ACPIDropTablesArray.size() ; ++idx) for ( size_t idx = 0 ; idx < settingsData.ACPI.ACPIDropTablesArray.size() ; ++idx)
{ {
ACPI_DROP_TABLE *DropTable = GlobalConfig.ACPIDropTables;
DBG(" - [%02zd]: Drop table : %.4s, %16llx : ", idx, (const char*)&settingsData.ACPI.ACPIDropTablesArray[idx].Signature, settingsData.ACPI.ACPIDropTablesArray[idx].TableId); DBG(" - [%02zd]: Drop table : %.4s, %16llx : ", idx, (const char*)&settingsData.ACPI.ACPIDropTablesArray[idx].Signature, settingsData.ACPI.ACPIDropTablesArray[idx].TableId);
XBool Dropped = false; XBool Dropped = false;
while (DropTable) { for ( size_t idx2 = 0 ; idx2 < GlobalConfig.ACPIDropTables.length() ; ++idx2 ) {
if (((settingsData.ACPI.ACPIDropTablesArray[idx].Signature == DropTable->Signature) && ACPI_DROP_TABLE& DropTable = GlobalConfig.ACPIDropTables[idx2];
(!settingsData.ACPI.ACPIDropTablesArray[idx].TableId || (DropTable->TableId == settingsData.ACPI.ACPIDropTablesArray[idx].TableId)) && if (((settingsData.ACPI.ACPIDropTablesArray[idx].Signature == DropTable.Signature) &&
(!settingsData.ACPI.ACPIDropTablesArray[idx].TabLength || (DropTable->Length == settingsData.ACPI.ACPIDropTablesArray[idx].TabLength))) || (!settingsData.ACPI.ACPIDropTablesArray[idx].TableId || (DropTable.TableId == settingsData.ACPI.ACPIDropTablesArray[idx].TableId)) &&
(!settingsData.ACPI.ACPIDropTablesArray[idx].Signature && (DropTable->TableId == settingsData.ACPI.ACPIDropTablesArray[idx].TableId))) { (!settingsData.ACPI.ACPIDropTablesArray[idx].TabLength || (DropTable.Length == settingsData.ACPI.ACPIDropTablesArray[idx].TabLength))) ||
DropTable->MenuItem.BValue = true; (!settingsData.ACPI.ACPIDropTablesArray[idx].Signature && (DropTable.TableId == settingsData.ACPI.ACPIDropTablesArray[idx].TableId))) {
DropTable->OtherOS = settingsData.ACPI.ACPIDropTablesArray[idx].OtherOS; DropTable.MenuItem.BValue = true;
DropTable.OtherOS = settingsData.ACPI.ACPIDropTablesArray[idx].OtherOS;
GlobalConfig.DropSSDT = false; // if one item=true then dropAll=false by default GlobalConfig.DropSSDT = false; // if one item=true then dropAll=false by default
//DBG(" true"); //DBG(" true");
Dropped = true; Dropped = true;
} }
DropTable = DropTable->Next;
} }
DBG(" %s\n", Dropped ? "yes" : "no"); DBG(" %s\n", Dropped ? "yes" : "no");
} }

View File

@ -139,19 +139,18 @@ public:
class ACPI_DROP_TABLE class ACPI_DROP_TABLE
{ {
public: public:
ACPI_DROP_TABLE *Next;
union { union {
UINT32 Signature = 0; UINT32 Signature = 0;
char SignatureAs4Chars[4]; char SignatureAs4Chars[4];
}; };
UINT32 Length; UINT32 Length = 0;
UINT64 TableId; UINT64 TableId = 0;
INPUT_ITEM MenuItem = INPUT_ITEM(); INPUT_ITEM MenuItem = INPUT_ITEM();
XBool OtherOS; XBool OtherOS = false;
ACPI_DROP_TABLE() : Next(0), Signature(0), Length(0), TableId(0), OtherOS(false) {} ACPI_DROP_TABLE() {}
ACPI_DROP_TABLE(const ACPI_DROP_TABLE& other) = delete; // Can be defined if needed ACPI_DROP_TABLE(const ACPI_DROP_TABLE& other) = default;
const ACPI_DROP_TABLE& operator = ( const ACPI_DROP_TABLE & ) = delete; // Can be defined if needed ACPI_DROP_TABLE& operator = ( const ACPI_DROP_TABLE & ) = default;
~ACPI_DROP_TABLE() {} ~ACPI_DROP_TABLE() {}
}; };
@ -2736,7 +2735,7 @@ public:
XBool gBootChanged = false; XBool gBootChanged = false;
XBool gThemeChanged = false; XBool gThemeChanged = false;
XBool NeedPMfix = false; XBool NeedPMfix = false;
ACPI_DROP_TABLE *ACPIDropTables = NULL; XObjArray<ACPI_DROP_TABLE> ACPIDropTables = XObjArray<ACPI_DROP_TABLE>();
UINT8 CustomLogoType = 0; // this will be initialized with gSettings.Boot.CustomBoot and set back to CUSTOM_BOOT_DISABLED if CustomLogo could not be loaded or decoded (see afterGetUserSettings) UINT8 CustomLogoType = 0; // this will be initialized with gSettings.Boot.CustomBoot and set back to CUSTOM_BOOT_DISABLED if CustomLogo could not be loaded or decoded (see afterGetUserSettings)
XImage *CustomLogo = 0; XImage *CustomLogo = 0;

View File

@ -939,6 +939,11 @@ public:
T* forgetDataWithoutFreeing() T* forgetDataWithoutFreeing()
{ {
if ( m_allocatedSize == 0 ) {
// this is a litteral. We have to copy it before returning. If not, it'll crash when the user will free the pointer returned
if ( super::size() == 0 ) return NULL;
CheckSize(super::size());
}
T* ret = super::__m_data; T* ret = super::__m_data;
super::__m_data = &nullChar; super::__m_data = &nullChar;
#ifdef XSTRING_CACHING_OF_SIZE #ifdef XSTRING_CACHING_OF_SIZE
@ -1346,8 +1351,8 @@ public:
super::__m_size = S->size(); super::__m_size = S->size();
#endif #endif
m_allocatedSize = S->m_allocatedSize; m_allocatedSize = S->m_allocatedSize;
// do forgetDataWithoutFreeing() last : it'll zero the value of size and m_allocatedSize // do not use forgetDataWithoutFreeing() : it will allocate m_data if m_data points to a literal. We want to keep the literal and avoid an allocation
super::__m_data = S->forgetDataWithoutFreeing(); super::__m_data = S->super::__m_data;
return *((ThisXStringClass*)this); return *((ThisXStringClass*)this);
} }

View File

@ -213,7 +213,17 @@ public:
void insertAtPos(const XStringClass1 &aString, size_t pos) { array.InsertRef(new remove_const(XStringClass1)(aString), pos, true); } void insertAtPos(const XStringClass1 &aString, size_t pos) { array.InsertRef(new remove_const(XStringClass1)(aString), pos, true); }
template<typename CharType, enable_if(is_char(CharType))> template<typename CharType, enable_if(is_char(CharType))>
void AddReference(CharType* newElement, bool FreeIt) { array.AddReference(new XStringClass_(newElement), FreeIt); } void AddReference(CharType* newElement, bool FreeIt) {
if ( FreeIt ) {
XStringClass_* s = new XStringClass_();
s->stealValueFrom(newElement);
array.AddReference(s, true);
}else{
XStringClass_* s = new XStringClass_();
s->takeValueFrom(newElement);
array.AddReference(s, true);
}
}
void AddReference(XStringClass* newElement, bool FreeIt) { array.AddReference(newElement, FreeIt); } void AddReference(XStringClass* newElement, bool FreeIt) { array.AddReference(newElement, FreeIt); }

View File

@ -144,7 +144,13 @@ public:
const EFI_FILE& getThemeDir() const { return *ThemeDir; } const EFI_FILE& getThemeDir() const { return *ThemeDir; }
XBool IsEmbeddedTheme(void) const { return embedded; } XBool IsEmbeddedTheme(void)
{
if (embedded) {
ThemeDir = NULL;
}
return ThemeDir == NULL;
}
//fill the theme //fill the theme

View File

@ -4693,7 +4693,7 @@ void nsvg__deleteShapes(NSVGshape* shape)
nsvg__deletePaths(shape->paths); nsvg__deletePaths(shape->paths);
} }
} }
nsvg__delete(shape, "nsvg__deleteShapes"_XS8); // nsvg__delete(shape, "nsvg__deleteShapes"_XS8); // TODO : BUG, it doesn't boot anymore if we do the delete. Something is wrong.
shape = snext; shape = snext;
} }
} }

View File

@ -439,11 +439,10 @@ void FillInputs(XBool New)
//menu for drop table //menu for drop table
if (GlobalConfig.ACPIDropTables) { if (GlobalConfig.ACPIDropTables.notEmpty()) {
ACPI_DROP_TABLE *DropTable = GlobalConfig.ACPIDropTables; for ( size_t idx = 0 ; idx < GlobalConfig.ACPIDropTables.length() ; ++idx ) {
while (DropTable) { ACPI_DROP_TABLE& DropTable = GlobalConfig.ACPIDropTables[idx];
DropTable->MenuItem.ItemType = BoolValue; DropTable.MenuItem.ItemType = BoolValue;
DropTable = DropTable->Next;
} }
} }
@ -1982,21 +1981,21 @@ REFIT_ABSTRACT_MENU_ENTRY* SubMenuDropTables()
Entry = newREFIT_MENU_ITEM_OPTIONS(&SubScreen, ActionEnter, SCREEN_TABLES, "Tables dropping->"_XS8); Entry = newREFIT_MENU_ITEM_OPTIONS(&SubScreen, ActionEnter, SCREEN_TABLES, "Tables dropping->"_XS8);
if (GlobalConfig.ACPIDropTables) { if (GlobalConfig.ACPIDropTables.notEmpty()) {
ACPI_DROP_TABLE *DropTable = GlobalConfig.ACPIDropTables; for ( size_t idx = 0 ; idx < GlobalConfig.ACPIDropTables.length() ; ++idx )
while (DropTable) { {
CopyMem((CHAR8*)&sign, (CHAR8*)&(DropTable->Signature), 4); ACPI_DROP_TABLE& DropTable = GlobalConfig.ACPIDropTables[idx];
CopyMem((CHAR8*)&OTID, (CHAR8*)&(DropTable->TableId), 8);
CopyMem((CHAR8*)&sign, (CHAR8*)&(DropTable.Signature), 4);
CopyMem((CHAR8*)&OTID, (CHAR8*)&(DropTable.TableId), 8);
InputBootArgs = new REFIT_INPUT_DIALOG; InputBootArgs = new REFIT_INPUT_DIALOG;
InputBootArgs->Title.SWPrintf("Drop \"%4.4s\" \"%8.8s\" %d", sign, OTID, DropTable->Length); InputBootArgs->Title.SWPrintf("Drop \"%4.4s\" \"%8.8s\" %d", sign, OTID, DropTable.Length);
InputBootArgs->Row = 0xFFFF; //cursor InputBootArgs->Row = 0xFFFF; //cursor
InputBootArgs->Item = &(DropTable->MenuItem); InputBootArgs->Item = &(DropTable.MenuItem);
InputBootArgs->AtClick = ActionEnter; InputBootArgs->AtClick = ActionEnter;
InputBootArgs->AtRightClick = ActionDetails; InputBootArgs->AtRightClick = ActionDetails;
SubScreen->AddMenuEntry(InputBootArgs, true); SubScreen->AddMenuEntry(InputBootArgs, true);
DropTable = DropTable->Next;
} }
} }