Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: src/processor/exploitability_linux.h

Issue 1233973002: Add ELF header analysis when checking for instruction pointer in code. (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/processor/exploitability_linux.cc » ('j') | src/processor/exploitability_linux.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/exploitability_linux.h
===================================================================
--- src/processor/exploitability_linux.h (revision 1471)
+++ src/processor/exploitability_linux.h (working copy)
@@ -37,6 +37,8 @@
#ifndef GOOGLE_BREAKPAD_PROCESSOR_EXPLOITABILITY_LINUX_H_
#define GOOGLE_BREAKPAD_PROCESSOR_EXPLOITABILITY_LINUX_H_
+#include <elf.h>
+
#include "google_breakpad/common/breakpad_types.h"
#include "google_breakpad/processor/exploitability.h"
@@ -57,6 +59,50 @@
// This method checks the exception that triggered the creation of the
// minidump and reports whether the exception suggests no exploitability.
bool BenignCrashTrigger(const MDRawExceptionStream *raw_exception_stream);
+
+ // Checks if the minidump architecture is 32-bit or 64-bit.
+ bool Architecture32Bit();
ivanpe 2015/07/14 00:23:02 Maybe a better name would be: Is32BitArchitecture(
liuandrew 2015/07/15 21:50:14 I changed the method name to ArchitectureType() to
+
+ // Copies ELF header data from the minidump's memory to a pointer.
ivanpe 2015/07/14 00:23:02 It is a bit unclear which ones are input and which
ahonig 2015/07/14 19:32:18 To clarify Ivan's point It looks from the interfa
liuandrew 2015/07/15 21:50:14 Done.
+ // This method takes in the region of memory to be copied, the starting
+ // memory address to copy, and the number of bytes to copy.
+ void *LoadElfHeader(MinidumpMemoryRegion *memory,
+ const uint64_t base_address,
+ size_t header_size);
+
+ // Copies the ELF header of a 32-bit module.
+ // This method takes in the region of memory to be copied, and the
+ // starting memory address to copy.
+ Elf32_Ehdr *LoadElf32Header(MinidumpMemoryRegion *memory,
ivanpe 2015/07/14 00:23:02 Please, document the return value and clarify whet
liuandrew 2015/07/15 21:50:14 method removed
+ const uint64_t base_address);
+
+ // Copies the ELF header of a 64-bit module.
+ // This method takes in the region of memory to be copied, and the
+ // starting memory address to copy.
+ Elf64_Ehdr *LoadElf64Header(MinidumpMemoryRegion *memory,
ivanpe 2015/07/14 00:23:02 Please, document the return value and clarify whet
liuandrew 2015/07/15 21:50:14 method removed
+ const uint64_t base_address);
+
+ // Copies over a 32-bit module's program header table.
+ // This method takes in the region of memory to be copied, the base
+ // address of the module, the offset from the base address to the
+ // starting memory address to copy, the size of an entry in the program
+ // header table, and the number of entries in the program header table.
+ Elf32_Phdr *LoadElf32PHeader(MinidumpMemoryRegion *memory,
ivanpe 2015/07/14 00:23:02 Please, document the return value and clarify whet
liuandrew 2015/07/15 21:50:14 method removed
+ const uint64_t base_address,
+ const uint64_t e_phoff,
+ const uint16_t e_phentsize,
+ const uint16_t e_phnum);
+
+ // Copies over a 64-bit module's program header table.
+ // This method takes in the region of memory to be copied, the base
+ // address of the module, the offset from the base address to the
+ // starting memory address to copy, the size of an entry in the program
+ // header table, and the number of entries in the program header table.
+ Elf64_Phdr *LoadElf64PHeader(MinidumpMemoryRegion *memory,
ivanpe 2015/07/14 00:23:02 Please, document the return value and clarify whet
liuandrew 2015/07/15 21:50:14 method removed
+ const uint64_t base_address,
+ const uint64_t e_phoff,
+ const uint16_t e_phentsize,
+ const uint16_t e_phnum);
};
} // namespace google_breakpad
« no previous file with comments | « no previous file | src/processor/exploitability_linux.cc » ('j') | src/processor/exploitability_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698