/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include #include #include #include #include "BaseProfilerSharedLibraries.h" #include "mozilla/glue/WindowsUnicode.h" #include "mozilla/Unused.h" #include "mozilla/WindowsVersion.h" #include #include #define CV_SIGNATURE 0x53445352 // 'SDSR' struct CodeViewRecord70 { uint32_t signature; GUID pdbSignature; uint32_t pdbAge; // A UTF-8 string, according to // https://github.com/Microsoft/microsoft-pdb/blob/082c5290e5aff028ae84e43affa8be717aa7af73/PDB/dbi/locator.cpp#L785 char pdbFileName[1]; }; static constexpr char digits[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; static void AppendHex(const unsigned char* aBegin, const unsigned char* aEnd, std::string& aOut) { for (const unsigned char* p = aBegin; p < aEnd; ++p) { unsigned char c = *p; aOut += digits[c >> 4]; aOut += digits[c & 0xFu]; } } static constexpr bool WITH_PADDING = true; static constexpr bool WITHOUT_PADDING = false; template static void AppendHex(T aValue, std::string& aOut, bool aWithPadding) { for (int i = sizeof(T) * 2 - 1; i >= 0; --i) { unsigned nibble = (aValue >> (i * 4)) & 0xFu; // If no-padding requested, skip starting zeroes -- unless we're on the very // last nibble (so we don't output a blank). if (!aWithPadding && i != 0) { if (nibble == 0) { // Requested no padding, skip zeroes. continue; } // Requested no padding, got first non-zero, pretend we now want padding // so we don't skip zeroes anymore. aWithPadding = true; } aOut += digits[nibble]; } } static bool GetPdbInfo(uintptr_t aStart, std::string& aSignature, uint32_t& aAge, char** aPdbName) { if (!aStart) { return false; } PIMAGE_DOS_HEADER dosHeader = reinterpret_cast(aStart); if (dosHeader->e_magic != IMAGE_DOS_SIGNATURE) { return false; } PIMAGE_NT_HEADERS ntHeaders = reinterpret_cast(aStart + dosHeader->e_lfanew); if (ntHeaders->Signature != IMAGE_NT_SIGNATURE) { return false; } uint32_t relativeVirtualAddress = ntHeaders->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_DEBUG] .VirtualAddress; if (!relativeVirtualAddress) { return false; } PIMAGE_DEBUG_DIRECTORY debugDirectory = reinterpret_cast(aStart + relativeVirtualAddress); if (!debugDirectory || debugDirectory->Type != IMAGE_DEBUG_TYPE_CODEVIEW) { return false; } CodeViewRecord70* debugInfo = reinterpret_cast( aStart + debugDirectory->AddressOfRawData); if (!debugInfo || debugInfo->signature != CV_SIGNATURE) { return false; } aAge = debugInfo->pdbAge; GUID& pdbSignature = debugInfo->pdbSignature; AppendHex(pdbSignature.Data1, aSignature, WITH_PADDING); AppendHex(pdbSignature.Data2, aSignature, WITH_PADDING); AppendHex(pdbSignature.Data3, aSignature, WITH_PADDING); AppendHex(reinterpret_cast(&pdbSignature.Data4), reinterpret_cast(&pdbSignature.Data4) + sizeof(pdbSignature.Data4), aSignature); // The PDB file name could be different from module filename, so report both // e.g. The PDB for C:\Windows\SysWOW64\ntdll.dll is wntdll.pdb *aPdbName = debugInfo->pdbFileName; return true; } static std::string GetVersion(wchar_t* dllPath) { DWORD infoSize = GetFileVersionInfoSizeW(dllPath, nullptr); if (infoSize == 0) { return {}; } mozilla::UniquePtr infoData = mozilla::MakeUnique(infoSize); if (!GetFileVersionInfoW(dllPath, 0, infoSize, infoData.get())) { return {}; } VS_FIXEDFILEINFO* vInfo; UINT vInfoLen; if (!VerQueryValueW(infoData.get(), L"\\", (LPVOID*)&vInfo, &vInfoLen)) { return {}; } if (!vInfo) { return {}; } return std::to_string(vInfo->dwFileVersionMS >> 16) + '.' + std::to_string(vInfo->dwFileVersionMS & 0xFFFF) + '.' + std::to_string(vInfo->dwFileVersionLS >> 16) + '.' + std::to_string(vInfo->dwFileVersionLS & 0xFFFF); } SharedLibraryInfo SharedLibraryInfo::GetInfoForSelf() { SharedLibraryInfo sharedLibraryInfo; HANDLE hProcess = GetCurrentProcess(); mozilla::UniquePtr hMods; size_t modulesNum = 0; if (hProcess != NULL) { DWORD modulesSize; if (!EnumProcessModules(hProcess, nullptr, 0, &modulesSize)) { return sharedLibraryInfo; } modulesNum = modulesSize / sizeof(HMODULE); hMods = mozilla::MakeUnique(modulesNum); if (!EnumProcessModules(hProcess, hMods.get(), modulesNum * sizeof(HMODULE), &modulesSize)) { return sharedLibraryInfo; } // The list may have shrunk between calls if (modulesSize / sizeof(HMODULE) < modulesNum) { modulesNum = modulesSize / sizeof(HMODULE); } } for (unsigned int i = 0; i < modulesNum; i++) { wchar_t modulePath[MAX_PATH + 1]; if (!GetModuleFileNameExW(hProcess, hMods[i], modulePath, std::size(modulePath))) { continue; } mozilla::UniquePtr utf8ModulePath( mozilla::glue::WideToUTF8(modulePath)); if (!utf8ModulePath) { continue; } MODULEINFO module = {0}; if (!GetModuleInformation(hProcess, hMods[i], &module, sizeof(MODULEINFO))) { continue; } std::string modulePathStr(utf8ModulePath.get()); size_t pos = modulePathStr.find_last_of("\\/"); std::string moduleNameStr = (pos != std::string::npos) ? modulePathStr.substr(pos + 1) : modulePathStr; // Hackaround for Bug 1607574. Nvidia's shim driver nvd3d9wrap[x].dll // detours LoadLibraryExW when it's loaded and the detour function causes // AV when the code tries to access data pointing to an address within // unloaded nvinit[x].dll. // The crashing code is executed when a given parameter is "detoured.dll" // and OS version is older than 6.2. We hit that crash at the following // call to LoadLibraryEx even if we specify LOAD_LIBRARY_AS_DATAFILE. // We work around it by skipping LoadLibraryEx, and add a library info with // a dummy breakpad id instead. #if !defined(_M_ARM64) # if defined(_M_AMD64) LPCWSTR kNvidiaShimDriver = L"nvd3d9wrapx.dll"; LPCWSTR kNvidiaInitDriver = L"nvinitx.dll"; # elif defined(_M_IX86) LPCWSTR kNvidiaShimDriver = L"nvd3d9wrap.dll"; LPCWSTR kNvidiaInitDriver = L"nvinit.dll"; # endif constexpr std::string_view detoured_dll = "detoured.dll"; if (std::equal(moduleNameStr.cbegin(), moduleNameStr.cend(), detoured_dll.cbegin(), detoured_dll.cend(), [](char aModuleChar, char aDetouredChar) { return std::tolower(aModuleChar) == aDetouredChar; }) && !mozilla::IsWin8OrLater() && ::GetModuleHandleW(kNvidiaShimDriver) && !::GetModuleHandleW(kNvidiaInitDriver)) { const std::string pdbNameStr = "detoured.pdb"; SharedLibrary shlib((uintptr_t)module.lpBaseOfDll, (uintptr_t)module.lpBaseOfDll + module.SizeOfImage, 0, // DLLs are always mapped at offset 0 on Windows "000000000000000000000000000000000", moduleNameStr, modulePathStr, pdbNameStr, pdbNameStr, "", ""); sharedLibraryInfo.AddSharedLibrary(shlib); continue; } #endif // !defined(_M_ARM64) std::string breakpadId; // Load the module again to make sure that its handle will remain // valid as we attempt to read the PDB information from it. We load the // DLL as a datafile so that if the module actually gets unloaded between // the call to EnumProcessModules and the following LoadLibraryEx, we // don't end up running the now newly loaded module's DllMain function. If // the module is already loaded, LoadLibraryEx just increments its // refcount. // // Note that because of the race condition above, merely loading the DLL // again is not safe enough, therefore we also need to make sure that we // can read the memory mapped at the base address before we can safely // proceed to actually access those pages. HMODULE handleLock = LoadLibraryExW(modulePath, NULL, LOAD_LIBRARY_AS_DATAFILE); MEMORY_BASIC_INFORMATION vmemInfo = {0}; std::string pdbSig; uint32_t pdbAge; std::string pdbPathStr; std::string pdbNameStr; char* pdbName = nullptr; if (handleLock && sizeof(vmemInfo) == VirtualQuery(module.lpBaseOfDll, &vmemInfo, sizeof(vmemInfo)) && vmemInfo.State == MEM_COMMIT && GetPdbInfo((uintptr_t)module.lpBaseOfDll, pdbSig, pdbAge, &pdbName)) { MOZ_ASSERT(breakpadId.empty()); breakpadId += pdbSig; AppendHex(pdbAge, breakpadId, WITHOUT_PADDING); pdbPathStr = pdbName; size_t pos = pdbPathStr.find_last_of("\\/"); pdbNameStr = (pos != std::string::npos) ? pdbPathStr.substr(pos + 1) : pdbPathStr; } SharedLibrary shlib((uintptr_t)module.lpBaseOfDll, (uintptr_t)module.lpBaseOfDll + module.SizeOfImage, 0, // DLLs are always mapped at offset 0 on Windows breakpadId, moduleNameStr, modulePathStr, pdbNameStr, pdbPathStr, GetVersion(modulePath), ""); sharedLibraryInfo.AddSharedLibrary(shlib); FreeLibrary(handleLock); // ok to free null handles } return sharedLibraryInfo; } void SharedLibraryInfo::Initialize() { /* do nothing */ }