Remove pointers from serialized file format

BUG=breakpad:621
R=thestig@chromium.org

Review URL: https://breakpad.appspot.com/1764002

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1410 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
mdempsky@chromium.org 2014-12-11 01:17:43 +00:00
parent aad5d66fa5
commit c32b7ad535
4 changed files with 108 additions and 23 deletions

View File

@ -75,6 +75,7 @@
#include "client/linux/minidump_writer/proc_cpuinfo_reader.h" #include "client/linux/minidump_writer/proc_cpuinfo_reader.h"
#include "client/minidump_file_writer.h" #include "client/minidump_file_writer.h"
#include "common/linux/linux_libc_support.h" #include "common/linux/linux_libc_support.h"
#include "common/minidump_type_helper.h"
#include "google_breakpad/common/minidump_format.h" #include "google_breakpad/common/minidump_format.h"
#include "third_party/lss/linux_syscall_support.h" #include "third_party/lss/linux_syscall_support.h"
@ -86,6 +87,7 @@ using google_breakpad::CpuSet;
using google_breakpad::LineReader; using google_breakpad::LineReader;
using google_breakpad::LinuxDumper; using google_breakpad::LinuxDumper;
using google_breakpad::LinuxPtraceDumper; using google_breakpad::LinuxPtraceDumper;
using google_breakpad::MDTypeHelper;
using google_breakpad::MappingEntry; using google_breakpad::MappingEntry;
using google_breakpad::MappingInfo; using google_breakpad::MappingInfo;
using google_breakpad::MappingList; using google_breakpad::MappingList;
@ -100,6 +102,8 @@ using google_breakpad::UContextReader;
using google_breakpad::UntypedMDRVA; using google_breakpad::UntypedMDRVA;
using google_breakpad::wasteful_vector; using google_breakpad::wasteful_vector;
typedef MDTypeHelper<sizeof(void*)>::MDRawDebug MDRawDebug;
typedef MDTypeHelper<sizeof(void*)>::MDRawLinkMap MDRawLinkMap;
class MinidumpWriter { class MinidumpWriter {
public: public:
@ -733,8 +737,8 @@ class MinidumpWriter {
return false; return false;
MDRawLinkMap entry; MDRawLinkMap entry;
entry.name = location.rva; entry.name = location.rva;
entry.addr = reinterpret_cast<void*>(map.l_addr); entry.addr = map.l_addr;
entry.ld = reinterpret_cast<void*>(map.l_ld); entry.ld = reinterpret_cast<uintptr_t>(map.l_ld);
linkmap.CopyIndex(idx++, &entry); linkmap.CopyIndex(idx++, &entry);
} }
} }
@ -750,9 +754,9 @@ class MinidumpWriter {
debug.get()->version = debug_entry.r_version; debug.get()->version = debug_entry.r_version;
debug.get()->map = linkmap_rva; debug.get()->map = linkmap_rva;
debug.get()->dso_count = dso_count; debug.get()->dso_count = dso_count;
debug.get()->brk = reinterpret_cast<void*>(debug_entry.r_brk); debug.get()->brk = debug_entry.r_brk;
debug.get()->ldbase = reinterpret_cast<void*>(debug_entry.r_ldbase); debug.get()->ldbase = debug_entry.r_ldbase;
debug.get()->dynamic = dynamic; debug.get()->dynamic = reinterpret_cast<uintptr_t>(dynamic);
wasteful_vector<char> dso_debug_data(dumper_->allocator(), dynamic_length); wasteful_vector<char> dso_debug_data(dumper_->allocator(), dynamic_length);
// The passed-in size to the constructor (above) is only a hint. // The passed-in size to the constructor (above) is only a hint.

View File

@ -0,0 +1,56 @@
// Copyright (c) 2014, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef GOOGLE_BREAKPAD_COMMON_MINIDUMP_TYPE_HELPER_H_
#define GOOGLE_BREAKPAD_COMMON_MINIDUMP_TYPE_HELPER_H_
#include <stdint.h>
#include "google_breakpad/common/minidump_format.h"
namespace google_breakpad {
template <size_t>
struct MDTypeHelper;
template <>
struct MDTypeHelper<sizeof(uint32_t)> {
typedef MDRawDebug32 MDRawDebug;
typedef MDRawLinkMap32 MDRawLinkMap;
};
template <>
struct MDTypeHelper<sizeof(uint64_t)> {
typedef MDRawDebug64 MDRawDebug;
typedef MDRawLinkMap64 MDRawLinkMap;
};
} // namespace google_breakpad
#endif // GOOGLE_BREAKPAD_COMMON_MINIDUMP_TYPE_HELPER_H_

View File

@ -342,7 +342,7 @@ typedef enum {
MD_LINUX_ENVIRON = 0x47670007, /* /proc/$x/environ */ MD_LINUX_ENVIRON = 0x47670007, /* /proc/$x/environ */
MD_LINUX_AUXV = 0x47670008, /* /proc/$x/auxv */ MD_LINUX_AUXV = 0x47670008, /* /proc/$x/auxv */
MD_LINUX_MAPS = 0x47670009, /* /proc/$x/maps */ MD_LINUX_MAPS = 0x47670009, /* /proc/$x/maps */
MD_LINUX_DSO_DEBUG = 0x4767000A /* MDRawDebug */ MD_LINUX_DSO_DEBUG = 0x4767000A /* MDRawDebug{32,64} */
} MDStreamType; /* MINIDUMP_STREAM_TYPE */ } MDStreamType; /* MINIDUMP_STREAM_TYPE */
@ -930,21 +930,39 @@ typedef enum {
} MDAssertionInfoData; } MDAssertionInfoData;
/* These structs are used to store the DSO debug data in Linux minidumps, /* These structs are used to store the DSO debug data in Linux minidumps,
* which is necessary for converting minidumps to usable coredumps. */ * which is necessary for converting minidumps to usable coredumps.
* Because of a historical accident, several fields are variably encoded
* according to client word size, so tools potentially need to support both. */
typedef struct { typedef struct {
void* addr; uint32_t addr;
MDRVA name; MDRVA name;
void* ld; uint32_t ld;
} MDRawLinkMap; } MDRawLinkMap32;
typedef struct { typedef struct {
uint32_t version; uint32_t version;
MDRVA map; MDRVA map; /* array of MDRawLinkMap32 */
uint32_t dso_count; uint32_t dso_count;
void* brk; uint32_t brk;
void* ldbase; uint32_t ldbase;
void* dynamic; uint32_t dynamic;
} MDRawDebug; } MDRawDebug32;
typedef struct {
uint64_t addr;
MDRVA name;
uint64_t ld;
} MDRawLinkMap64;
typedef struct {
uint32_t version;
MDRVA map; /* array of MDRawLinkMap64 */
uint32_t dso_count;
uint64_t brk;
uint64_t ldbase;
uint64_t dynamic;
} MDRawDebug64;
#if defined(_MSC_VER) #if defined(_MSC_VER)
#pragma warning(pop) #pragma warning(pop)

View File

@ -35,6 +35,7 @@
#include <elf.h> #include <elf.h>
#include <errno.h> #include <errno.h>
#include <inttypes.h>
#include <link.h> #include <link.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
@ -47,6 +48,7 @@
#include <vector> #include <vector>
#include "common/linux/memory_mapped_file.h" #include "common/linux/memory_mapped_file.h"
#include "common/minidump_type_helper.h"
#include "common/scoped_ptr.h" #include "common/scoped_ptr.h"
#include "google_breakpad/common/minidump_format.h" #include "google_breakpad/common/minidump_format.h"
#include "third_party/lss/linux_syscall_support.h" #include "third_party/lss/linux_syscall_support.h"
@ -81,9 +83,13 @@
typedef user_regs user_regs_struct; typedef user_regs user_regs_struct;
#endif #endif
using google_breakpad::MDTypeHelper;
using google_breakpad::MemoryMappedFile; using google_breakpad::MemoryMappedFile;
using google_breakpad::MinidumpMemoryRange; using google_breakpad::MinidumpMemoryRange;
typedef MDTypeHelper<sizeof(ElfW(Addr))>::MDRawDebug MDRawDebug;
typedef MDTypeHelper<sizeof(ElfW(Addr))>::MDRawLinkMap MDRawLinkMap;
static const MDRVA kInvalidMDRVA = static_cast<MDRVA>(-1); static const MDRVA kInvalidMDRVA = static_cast<MDRVA>(-1);
static bool verbose; static bool verbose;
static std::string g_custom_so_basedir; static std::string g_custom_so_basedir;
@ -691,14 +697,14 @@ ParseDSODebugInfo(CrashedProcess* crashinfo, const MinidumpMemoryRange& range,
"MD_LINUX_DSO_DEBUG:\n" "MD_LINUX_DSO_DEBUG:\n"
"Version: %d\n" "Version: %d\n"
"Number of DSOs: %d\n" "Number of DSOs: %d\n"
"Brk handler: %p\n" "Brk handler: 0x%" PRIx64 "\n"
"Dynamic loader at: %p\n" "Dynamic loader at: 0x%" PRIx64 "\n"
"_DYNAMIC: %p\n", "_DYNAMIC: 0x%" PRIx64 "\n",
debug->version, debug->version,
debug->dso_count, debug->dso_count,
debug->brk, static_cast<uint64_t>(debug->brk),
debug->ldbase, static_cast<uint64_t>(debug->ldbase),
debug->dynamic); static_cast<uint64_t>(debug->dynamic));
} }
crashinfo->debug = *debug; crashinfo->debug = *debug;
if (range.length() > sizeof(MDRawDebug)) { if (range.length() > sizeof(MDRawDebug)) {
@ -713,8 +719,9 @@ ParseDSODebugInfo(CrashedProcess* crashinfo, const MinidumpMemoryRange& range,
if (link_map) { if (link_map) {
if (verbose) { if (verbose) {
fprintf(stderr, fprintf(stderr,
"#%03d: %p, %p, \"%s\"\n", "#%03d: %" PRIx64 ", %" PRIx64 ", \"%s\"\n",
i, link_map->addr, link_map->ld, i, static_cast<uint64_t>(link_map->addr),
static_cast<uint64_t>(link_map->ld),
full_file.GetAsciiMDString(link_map->name).c_str()); full_file.GetAsciiMDString(link_map->name).c_str());
} }
crashinfo->link_map.push_back(*link_map); crashinfo->link_map.push_back(*link_map);