mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-29 08:39:44 +08:00
bf556829d9
Removes the bitness-specific targets in favour of pulling binaries from the other build directory. This is to avoid the added complexity of duplicating all the targets for the x86 in x64 build. Overall, mostly templatizing more functions to support the wow64-flavoured structures. The only additional functionality required is reading the x86 TEB that's chained from the x64 TEB when running as WOW64. The crashing child test was switched to a manual CreateProcess because it needs to launch a binary other than itself. R=mark@chromium.org BUG=crashpad:50 Review URL: https://codereview.chromium.org/1349313003 .
157 lines
4.6 KiB
C++
157 lines
4.6 KiB
C++
// Copyright 2015 The Crashpad Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "snapshot/win/cpu_context_win.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "base/logging.h"
|
|
#include "snapshot/cpu_context.h"
|
|
|
|
namespace crashpad {
|
|
|
|
namespace {
|
|
|
|
template <class T>
|
|
void CommonInitializeX86Context(const T& context, CPUContextX86* out) {
|
|
LOG_IF(ERROR, !(context.ContextFlags & WOW64_CONTEXT_i386))
|
|
<< "non-x86 context";
|
|
memset(out, 0, sizeof(*out));
|
|
|
|
// We assume in this function that the WOW64_CONTEXT_* and x86 CONTEXT_*
|
|
// values for ContextFlags are identical.
|
|
|
|
if (context.ContextFlags & WOW64_CONTEXT_CONTROL) {
|
|
out->ebp = context.Ebp;
|
|
out->eip = context.Eip;
|
|
out->cs = static_cast<uint16_t>(context.SegCs);
|
|
out->eflags = context.EFlags;
|
|
out->esp = context.Esp;
|
|
out->ss = static_cast<uint16_t>(context.SegSs);
|
|
}
|
|
|
|
if (context.ContextFlags & WOW64_CONTEXT_INTEGER) {
|
|
out->eax = context.Eax;
|
|
out->ebx = context.Ebx;
|
|
out->ecx = context.Ecx;
|
|
out->edx = context.Edx;
|
|
out->edi = context.Edi;
|
|
out->esi = context.Esi;
|
|
}
|
|
|
|
if (context.ContextFlags & WOW64_CONTEXT_SEGMENTS) {
|
|
out->ds = static_cast<uint16_t>(context.SegDs);
|
|
out->es = static_cast<uint16_t>(context.SegEs);
|
|
out->fs = static_cast<uint16_t>(context.SegFs);
|
|
out->gs = static_cast<uint16_t>(context.SegGs);
|
|
}
|
|
|
|
if (context.ContextFlags & WOW64_CONTEXT_DEBUG_REGISTERS) {
|
|
out->dr0 = context.Dr0;
|
|
out->dr1 = context.Dr1;
|
|
out->dr2 = context.Dr2;
|
|
out->dr3 = context.Dr3;
|
|
// DR4 and DR5 are obsolete synonyms for DR6 and DR7, see
|
|
// https://en.wikipedia.org/wiki/X86_debug_register.
|
|
out->dr4 = context.Dr6;
|
|
out->dr5 = context.Dr7;
|
|
out->dr6 = context.Dr6;
|
|
out->dr7 = context.Dr7;
|
|
}
|
|
|
|
if (context.ContextFlags & WOW64_CONTEXT_EXTENDED_REGISTERS) {
|
|
static_assert(sizeof(out->fxsave) == sizeof(context.ExtendedRegisters),
|
|
"types must be equivalent");
|
|
memcpy(&out->fxsave, &context.ExtendedRegisters, sizeof(out->fxsave));
|
|
} else if (context.ContextFlags & WOW64_CONTEXT_FLOATING_POINT) {
|
|
CHECK(false) << "TODO(scottmg): extract x87 data";
|
|
}
|
|
}
|
|
|
|
} // namespace
|
|
|
|
#if defined(ARCH_CPU_64_BITS)
|
|
|
|
void InitializeX86Context(const WOW64_CONTEXT& context, CPUContextX86* out) {
|
|
CommonInitializeX86Context(context, out);
|
|
}
|
|
|
|
void InitializeX64Context(const CONTEXT& context, CPUContextX86_64* out) {
|
|
memset(out, 0, sizeof(*out));
|
|
|
|
LOG_IF(ERROR, !(context.ContextFlags & CONTEXT_AMD64)) << "non-x64 context";
|
|
|
|
if (context.ContextFlags & CONTEXT_CONTROL) {
|
|
out->cs = context.SegCs;
|
|
out->rflags = context.EFlags;
|
|
out->rip = context.Rip;
|
|
out->rsp = context.Rsp;
|
|
// SegSs ignored.
|
|
}
|
|
|
|
if (context.ContextFlags & CONTEXT_INTEGER) {
|
|
out->rax = context.Rax;
|
|
out->rbx = context.Rbx;
|
|
out->rcx = context.Rcx;
|
|
out->rdx = context.Rdx;
|
|
out->rdi = context.Rdi;
|
|
out->rsi = context.Rsi;
|
|
out->rbp = context.Rbp;
|
|
out->r8 = context.R8;
|
|
out->r9 = context.R9;
|
|
out->r10 = context.R10;
|
|
out->r11 = context.R11;
|
|
out->r12 = context.R12;
|
|
out->r13 = context.R13;
|
|
out->r14 = context.R14;
|
|
out->r15 = context.R15;
|
|
}
|
|
|
|
if (context.ContextFlags & CONTEXT_SEGMENTS) {
|
|
out->fs = context.SegFs;
|
|
out->gs = context.SegGs;
|
|
// SegDs ignored.
|
|
// SegEs ignored.
|
|
}
|
|
|
|
if (context.ContextFlags & CONTEXT_DEBUG_REGISTERS) {
|
|
out->dr0 = context.Dr0;
|
|
out->dr1 = context.Dr1;
|
|
out->dr2 = context.Dr2;
|
|
out->dr3 = context.Dr3;
|
|
// DR4 and DR5 are obsolete synonyms for DR6 and DR7, see
|
|
// https://en.wikipedia.org/wiki/X86_debug_register.
|
|
out->dr4 = context.Dr6;
|
|
out->dr5 = context.Dr7;
|
|
out->dr6 = context.Dr6;
|
|
out->dr7 = context.Dr7;
|
|
}
|
|
|
|
if (context.ContextFlags & CONTEXT_FLOATING_POINT) {
|
|
static_assert(sizeof(out->fxsave) == sizeof(context.FltSave),
|
|
"types must be equivalent");
|
|
memcpy(&out->fxsave, &context.FltSave.ControlWord, sizeof(out->fxsave));
|
|
}
|
|
}
|
|
|
|
#else // ARCH_CPU_64_BITS
|
|
|
|
void InitializeX86Context(const CONTEXT& context, CPUContextX86* out) {
|
|
CommonInitializeX86Context(context, out);
|
|
}
|
|
|
|
#endif // ARCH_CPU_64_BITS
|
|
|
|
} // namespace crashpad
|