/W4: Fix incorrect instantiation of string transformer

The case transformation didn't work properly as the char value was not casted to an unsigned char, causing undefined behavior. Added new utility function 'IsEqualNoCase' which allows for comparing 2 strings case insensitively. Code has been tested with module strings containing irregular cases, and was still able to obtain the imported function address correctly.
This commit is contained in:
Kawe Mazidjatari 2023-04-02 15:16:32 +02:00
parent 978f108526
commit 09553e3e2c
3 changed files with 14 additions and 4 deletions

View File

@ -343,10 +343,7 @@ CMemory CModule::GetImportedFunction(const string& svModuleName, const string& s
// Get virtual relative Address of the imported module name. Then add module base Address to get the actual location.
string svImportedModuleName = reinterpret_cast<char*>(reinterpret_cast<DWORD*>(m_pModuleBase + pIID->Name));
// Convert all characters to lower case because KERNEL32.DLL sometimes is kernel32.DLL, sometimes KERNEL32.dll.
std::transform(svImportedModuleName.begin(), svImportedModuleName.end(), svImportedModuleName.begin(), static_cast<int (*)(int)>(std::tolower));
if (svImportedModuleName.compare(svModuleName) == 0) // Is this our wanted imported module?.
if (IsEqualNoCase(svImportedModuleName, svModuleName)) // Is this our wanted imported module?.
{
// Original First Thunk to get function name.
IMAGE_THUNK_DATA* pOgFirstThunk = reinterpret_cast<IMAGE_THUNK_DATA*>(m_pModuleBase + pIID->OriginalFirstThunk);

View File

@ -426,6 +426,17 @@ string ConvertToUnixPath(const string& svInput)
return result;
}
///////////////////////////////////////////////////////////////////////////////
// For comparing two strings (case insensitive).
bool IsEqualNoCase(const string& svInput, const string& svSecond)
{
return std::equal(svInput.begin(), svInput.end(), svSecond.begin(), svSecond.end(),
[](unsigned char ci, unsigned char cs)
{
return std::toupper(ci) == std::toupper(cs);
});
}
///////////////////////////////////////////////////////////////////////////////
// For checking if input is a valid Base64.
bool IsValidBase64(const string& svInput, string* psvOutput)

View File

@ -35,7 +35,9 @@ void CreateDirectories(string svInput, string* pszOutput = nullptr, bool bWindow
string ConvertToWinPath(const string& svInput);
string ConvertToUnixPath(const string& svInput);
bool IsEqualNoCase(const string& svInput, const string& svSecond);
bool IsValidBase64(const string& svInput, string* psvOutput = nullptr);
string Base64Encode(const string& svInput);
string Base64Decode(const string& svInput);