Index: chrome/browser/safe_browsing/module_integrity_verifier.cc |
diff --git a/chrome/browser/safe_browsing/verifier.cc b/chrome/browser/safe_browsing/module_integrity_verifier.cc |
similarity index 72% |
rename from chrome/browser/safe_browsing/verifier.cc |
rename to chrome/browser/safe_browsing/module_integrity_verifier.cc |
index b3416756632344b0b8bd18931750163532b9d75b..a144f2c03bc352a202261903c84a0cc7cfccbfc3 100644 |
--- a/chrome/browser/safe_browsing/verifier.cc |
+++ b/chrome/browser/safe_browsing/module_integrity_verifier.cc |
@@ -2,13 +2,14 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "chrome/browser/safe_browsing/verifier.h" |
+#include "chrome/browser/safe_browsing/module_integrity_verifier.h" |
#include <windows.h> |
#include <psapi.h> |
#include "base/files/file_path.h" |
#include "base/files/memory_mapped_file.h" |
+#include "base/scoped_native_library.h" |
#include "base/win/pe_image.h" |
namespace safe_browsing { |
@@ -23,46 +24,19 @@ int bytes_corrected_by_reloc = 0; |
// currently handle. |
bool unknown_reloc_type = false; |
csharp
2014/07/29 14:28:15
This probably should also be a local variable in V
krstnmnlsn
2014/07/29 17:30:25
Do you think it would be better to make some sort
|
-bool AddrIsInCodeSection(void* address, BYTE* code_addr, SIZE_T code_size) { |
- return (code_addr <= address && address <= code_addr + code_size); |
-} |
- |
-bool GetCodeAddrsAndSize(const base::win::PEImage mem_peimage, |
- base::win::PEImageAsData disk_peimage, |
- BYTE*& mem_code_addr, |
- BYTE*& disk_code_addr, |
- SIZE_T& code_size) { |
- DWORD base_of_code = mem_peimage.GetNTHeaders()->OptionalHeader.BaseOfCode; |
- |
- // Get the address and size of the code section in the loaded module image. |
- PIMAGE_SECTION_HEADER mem_code_header = |
- mem_peimage.GetImageSectionFromAddr(mem_peimage.RVAToAddr(base_of_code)); |
- if (mem_code_header == NULL) |
- return false; |
- mem_code_addr = reinterpret_cast<BYTE*>( |
- mem_peimage.RVAToAddr(mem_code_header->VirtualAddress)); |
- code_size = mem_code_header->Misc.VirtualSize; |
- |
- // Get the address of the code section in the module mapped as data from disk. |
- // Section size will be the same as in the loaded module. |
- DWORD disk_code_offset = 0; |
- if (!mem_peimage.ImageAddrToOnDiskOffset( |
- reinterpret_cast<void*>(mem_code_addr), &disk_code_offset)) |
- return false; |
- disk_code_addr = |
- reinterpret_cast<BYTE*>(disk_peimage.module()) + disk_code_offset; |
- return true; |
+int CountBytesDiffInMemory(BYTE* disk_code_start, |
+ BYTE* memory_code_start, |
+ SIZE_T code_size) { |
+ int counter = 0; |
+ for (int i = 0; i < static_cast<int>(code_size); ++i) { |
+ if (*(disk_code_start + i) != *(memory_code_start + i)) |
+ ++counter; |
+ } |
+ return counter; |
} |
-int CountBytesDiffInPtr(intptr_t num_a, intptr_t num_b) { |
- int num_bytes = 0; |
- for (int i = 0; i < sizeof(num_a); ++i) { |
- if ((num_a & 0xFF) != (num_b & 0xFF)) |
- ++num_bytes; |
- num_a >>= 8; |
- num_b >>= 8; |
- } |
- return num_bytes; |
+bool AddrIsInCodeSection(void* address, BYTE* code_addr, SIZE_T code_size) { |
+ return (code_addr <= address && address < code_addr + code_size); |
} |
bool EnumRelocsCallback(const base::win::PEImage& mem_peimage, |
@@ -74,8 +48,8 @@ bool EnumRelocsCallback(const base::win::PEImage& mem_peimage, |
BYTE* mem_code_addr = NULL; |
BYTE* disk_code_addr = NULL; |
SIZE_T code_size = 0; |
- if (!GetCodeAddrsAndSize( |
- mem_peimage, disk_peimage, mem_code_addr, disk_code_addr, code_size)) |
+ if (!GetCodeAddrsAndSize(mem_peimage, disk_peimage, |
+ &mem_code_addr, &disk_code_addr, &code_size)) |
return false; |
switch (type) { |
@@ -113,27 +87,59 @@ bool EnumRelocsCallback(const base::win::PEImage& mem_peimage, |
return true; |
} |
-int CountBytesDiffInMemory(BYTE* disk_code_start, |
- BYTE* memory_code_start, |
- SIZE_T code_size) { |
- int counter = 0; |
- for (int i = 0; i < static_cast<int>(code_size); ++i) { |
- if (*(disk_code_start + i) != *(memory_code_start + i)) |
- ++counter; |
+} // namespace |
+ |
+bool GetCodeAddrsAndSize(const base::win::PEImage& mem_peimage, |
+ const base::win::PEImageAsData& disk_peimage, |
+ BYTE** mem_code_addr, |
+ BYTE** disk_code_addr, |
+ SIZE_T* code_size) { |
+ DWORD base_of_code = mem_peimage.GetNTHeaders()->OptionalHeader.BaseOfCode; |
+ |
+ // Get the address and size of the code section in the loaded module image. |
+ PIMAGE_SECTION_HEADER mem_code_header = |
+ mem_peimage.GetImageSectionFromAddr(mem_peimage.RVAToAddr(base_of_code)); |
+ if (mem_code_header == NULL) |
+ return false; |
+ *mem_code_addr = reinterpret_cast<BYTE*>( |
+ mem_peimage.RVAToAddr(mem_code_header->VirtualAddress)); |
+ *code_size = mem_code_header->Misc.VirtualSize; |
+ |
+ // Get the address of the code section in the module mapped as data from disk. |
+ // Section size will be the same as in the loaded module. |
+ DWORD disk_code_offset = 0; |
+ if (!mem_peimage.ImageAddrToOnDiskOffset( |
+ reinterpret_cast<void*>(*mem_code_addr), &disk_code_offset)) |
+ return false; |
+ *disk_code_addr = |
+ reinterpret_cast<BYTE*>(disk_peimage.module()) + disk_code_offset; |
+ return true; |
+} |
+ |
+int CountBytesDiffInPtr(intptr_t num_a, intptr_t num_b) { |
+ int num_bytes = 0; |
+ for (int i = 0; i < sizeof(num_a); ++i) { |
+ if ((num_a & 0xFF) != (num_b & 0xFF)) |
+ ++num_bytes; |
+ num_a >>= 8; |
+ num_b >>= 8; |
} |
- return counter; |
+ return num_bytes; |
} |
-} // namespace |
+ModuleState VerifyModule(const wchar_t* module_name) { |
+ bytes_corrected_by_reloc = 0; |
+ unknown_reloc_type = false; |
-ModuleState VerifyModule(wchar_t* module_name) { |
- HMODULE module_handle = GetModuleHandle(module_name); |
- if (module_handle == NULL) |
+ HMODULE module_handle = NULL; |
+ if (!GetModuleHandleEx(0, module_name, &module_handle)) |
return MODULE_STATE_UNKNOWN; |
+ base::ScopedNativeLibrary native_library(module_handle); |
- WCHAR module_path[MAX_PATH] = {0}; |
- if (GetModuleFileNameEx( |
- GetCurrentProcess(), module_handle, module_path, MAX_PATH) == 0) |
+ WCHAR module_path[MAX_PATH] = {}; |
+ DWORD length = |
+ GetModuleFileName(module_handle, module_path, arraysize(module_path)); |
+ if (length == arraysize(module_path)) |
return MODULE_STATE_UNKNOWN; |
base::MemoryMappedFile mapped_module; |
@@ -148,19 +154,20 @@ ModuleState VerifyModule(wchar_t* module_name) { |
BYTE* mem_code_addr = NULL; |
BYTE* disk_code_addr = NULL; |
SIZE_T code_size = 0; |
- if (!GetCodeAddrsAndSize( |
- mem_peimage, disk_peimage, mem_code_addr, disk_code_addr, code_size)) |
+ if (!GetCodeAddrsAndSize(mem_peimage, |
+ disk_peimage, |
+ &mem_code_addr, |
+ &disk_code_addr, |
+ &code_size)) |
return MODULE_STATE_UNKNOWN; |
int num_bytes_different = |
CountBytesDiffInMemory(disk_code_addr, mem_code_addr, code_size); |
- mem_peimage.EnumRelocs( |
- (base::win::PEImage::EnumRelocsFunction) & EnumRelocsCallback, |
- &disk_peimage); |
+ mem_peimage.EnumRelocs(EnumRelocsCallback, &disk_peimage); |
if (unknown_reloc_type) |
return MODULE_STATE_UNKNOWN; |
- if (num_bytes_different - bytes_corrected_by_reloc == 0) |
+ if (num_bytes_different == bytes_corrected_by_reloc) |
return MODULE_STATE_UNMODIFIED; |
return MODULE_STATE_MODIFIED; |
} |