mirror of
https://github.com/chromium/crashpad.git
synced 2025-01-16 20:41:11 +08:00
ad9887ee0d
BUG=crashpad:1 R=scottmg@chromium.org Review URL: https://codereview.chromium.org/1411123011 .
162 lines
6.0 KiB
C++
162 lines
6.0 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.
|
||
|
||
#ifndef CRASHPAD_SNAPSHOT_WIN_PE_IMAGE_READER_H_
|
||
#define CRASHPAD_SNAPSHOT_WIN_PE_IMAGE_READER_H_
|
||
|
||
#include <windows.h>
|
||
|
||
#include <string>
|
||
|
||
#include "base/basictypes.h"
|
||
#include "util/misc/initialization_state_dcheck.h"
|
||
#include "util/misc/uuid.h"
|
||
#include "util/win/address_types.h"
|
||
#include "util/win/checked_win_address_range.h"
|
||
#include "util/win/process_structs.h"
|
||
|
||
namespace crashpad {
|
||
|
||
class ProcessReaderWin;
|
||
|
||
namespace process_types {
|
||
|
||
template <class Traits>
|
||
struct CrashpadInfo {
|
||
uint32_t signature;
|
||
uint32_t size;
|
||
uint32_t version;
|
||
uint8_t crashpad_handler_behavior; // TriState.
|
||
uint8_t system_crash_reporter_forwarding; // TriState.
|
||
uint16_t padding_0;
|
||
typename Traits::Pointer simple_annotations;
|
||
};
|
||
|
||
} // namespace process_types
|
||
|
||
//! \brief A reader for PE images mapped into another process.
|
||
//!
|
||
//! This class is capable of reading both 32-bit and 64-bit images based on the
|
||
//! bitness of the remote process.
|
||
//!
|
||
//! \sa PEImageAnnotationsReader
|
||
class PEImageReader {
|
||
public:
|
||
PEImageReader();
|
||
~PEImageReader();
|
||
|
||
//! \brief Initializes the reader.
|
||
//!
|
||
//! This method must be called only once on an object. This method must be
|
||
//! called successfully before any other method in this class may be called.
|
||
//!
|
||
//! \param[in] process_reader The reader for the remote process.
|
||
//! \param[in] address The address, in the remote process' address space,
|
||
//! where the `IMAGE_DOS_HEADER` is located.
|
||
//! \param[in] size The size of the image.
|
||
//! \param[in] name The module's name, a string to be used in logged messages.
|
||
//! This string is for diagnostic purposes.
|
||
//!
|
||
//! \return `true` if the image was read successfully, `false` otherwise, with
|
||
//! an appropriate message logged.
|
||
bool Initialize(ProcessReaderWin* process_reader,
|
||
WinVMAddress address,
|
||
WinVMSize size,
|
||
const std::string& module_name);
|
||
|
||
//! \brief Returns the image's load address.
|
||
//!
|
||
//! This is the value passed as \a address to Initialize().
|
||
WinVMAddress Address() const { return module_range_.Base(); }
|
||
|
||
//! \brief Returns the image's size.
|
||
//!
|
||
//! This is the value passed as \a size to Initialize().
|
||
WinVMSize Size() const { return module_range_.Size(); }
|
||
|
||
//! \brief Obtains the module's CrashpadInfo structure.
|
||
//!
|
||
//! \return `true` on success, `false` on failure. If the module does not have
|
||
//! a `CPADinfo` section, this will return `false` without logging any
|
||
//! messages. Other failures will result in messages being logged.
|
||
template <class Traits>
|
||
bool GetCrashpadInfo(
|
||
process_types::CrashpadInfo<Traits>* crashpad_info) const;
|
||
|
||
//! \brief Obtains information from the module's debug directory, if any.
|
||
//!
|
||
//! \param[out] uuid The unique identifier of the executable/PDB.
|
||
//! \param[out] age The age field for the pdb (the number of times it's been
|
||
//! relinked).
|
||
//! \param[out] pdbname Name of the pdb file.
|
||
//! \return `true` on success, or `false` if the module has no debug directory
|
||
//! entry.
|
||
bool DebugDirectoryInformation(UUID* uuid,
|
||
DWORD* age,
|
||
std::string* pdbname) const;
|
||
|
||
private:
|
||
//! \brief Implementation helper for DebugDirectoryInformation() templated by
|
||
//! `IMAGE_NT_HEADERS` type for different bitnesses.
|
||
//!
|
||
//! \return `true` on success, with the parameters set appropriately. `false`
|
||
//! on failure. This method may return `false` without logging anything in
|
||
//! the case of a module that does not contain relevant debugging
|
||
//! information but is otherwise properly structured.
|
||
template <class NtHeadersType>
|
||
bool ReadDebugDirectoryInformation(UUID* uuid,
|
||
DWORD* age,
|
||
std::string* pdbname) const;
|
||
|
||
//! \brief Reads the `IMAGE_NT_HEADERS` from the beginning of the image.
|
||
//!
|
||
//! \param[out] nt_headers The contents of the templated NtHeadersType
|
||
//! structure read from the remote process.
|
||
//! \param[out] nt_headers_address The address of the templated NtHeadersType
|
||
//! structure in the remote process’ address space. If this information is
|
||
//! not needed, this parameter may be `nullptr`.
|
||
//!
|
||
//! \return `true` on success, with \a nt_headers and optionally \a
|
||
//! nt_headers_address set appropriately. `false` on failure, with a
|
||
//! message logged.
|
||
template <class NtHeadersType>
|
||
bool ReadNtHeaders(NtHeadersType* nt_headers,
|
||
WinVMAddress* nt_headers_address) const;
|
||
|
||
//! \brief Finds a given section by name in the image.
|
||
template <class NtHeadersType>
|
||
bool GetSectionByName(const std::string& name,
|
||
IMAGE_SECTION_HEADER* section) const;
|
||
|
||
//! \brief Reads memory from target process, first checking whether the range
|
||
//! requested falls inside module_range_.
|
||
//!
|
||
//! \return `true` on success, with \a into filled out, otherwise `false` and
|
||
//! a message will be logged.
|
||
bool CheckedReadMemory(WinVMAddress address,
|
||
WinVMSize size,
|
||
void* into) const;
|
||
|
||
ProcessReaderWin* process_reader_; // weak
|
||
CheckedWinAddressRange module_range_;
|
||
std::string module_name_;
|
||
InitializationStateDcheck initialized_;
|
||
|
||
DISALLOW_COPY_AND_ASSIGN(PEImageReader);
|
||
};
|
||
|
||
} // namespace crashpad
|
||
|
||
#endif // CRASHPAD_SNAPSHOT_WIN_PE_IMAGE_READER_H_
|