2022-09-06 19:14:07 -04:00
|
|
|
// Copyright 2015 The Crashpad Authors
|
2015-05-11 13:29:52 -07:00
|
|
|
//
|
|
|
|
// 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_THREAD_SNAPSHOT_WIN_H_
|
|
|
|
#define CRASHPAD_SNAPSHOT_WIN_THREAD_SNAPSHOT_WIN_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-10-19 00:26:38 -04:00
|
|
|
#include <memory>
|
2015-10-01 14:04:49 -07:00
|
|
|
#include <vector>
|
|
|
|
|
2016-01-06 12:22:50 -05:00
|
|
|
#include "build/build_config.h"
|
2015-05-11 13:29:52 -07:00
|
|
|
#include "snapshot/cpu_context.h"
|
|
|
|
#include "snapshot/memory_snapshot.h"
|
2019-06-10 12:15:46 -07:00
|
|
|
#include "snapshot/memory_snapshot_generic.h"
|
2015-05-11 13:29:52 -07:00
|
|
|
#include "snapshot/thread_snapshot.h"
|
|
|
|
#include "snapshot/win/process_reader_win.h"
|
|
|
|
#include "util/misc/initialization_state_dcheck.h"
|
|
|
|
|
|
|
|
namespace crashpad {
|
|
|
|
|
|
|
|
class ProcessReaderWin;
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
//! \brief A ThreadSnapshot of a thread in a running (or crashed) process on a
|
|
|
|
//! Windows system.
|
|
|
|
class ThreadSnapshotWin final : public ThreadSnapshot {
|
|
|
|
public:
|
|
|
|
ThreadSnapshotWin();
|
2021-09-20 12:55:12 -07:00
|
|
|
|
|
|
|
ThreadSnapshotWin(const ThreadSnapshotWin&) = delete;
|
|
|
|
ThreadSnapshotWin& operator=(const ThreadSnapshotWin&) = delete;
|
|
|
|
|
2015-05-11 13:29:52 -07:00
|
|
|
~ThreadSnapshotWin() override;
|
|
|
|
|
|
|
|
//! \brief Initializes the object.
|
|
|
|
//!
|
|
|
|
//! \param[in] process_reader A ProcessReaderWin for the process containing
|
|
|
|
//! the thread.
|
|
|
|
//! \param[in] process_reader_thread The thread within the ProcessReaderWin
|
|
|
|
//! for which the snapshot should be created.
|
doc: Fix all Doxygen warnings, cleaning up some generated documentation
This makes Doxygen’s output more actionable by setting QUIET = YES to
suppress verbose progress spew, and WARN_IF_UNDOCUMENTED = NO to prevent
warnings for undocumented classes and members from being generated. The
latter is too noisy, producing 721 warnings in the current codebase.
The remaining warnings produced by Doxygen were useful and actionable.
They fell into two categories: abuses of Doxygen’s markup syntax, and
missing (or misspelled) parameter documentation. In a small number of
cases, pass-through parameters had intentionally been left undocumented.
In these cases, they are now given blank \param descriptions. This is
not optimal, but there doesn’t appear to be any other way to tell
Doxygen to allow a single parameter to be undocumented.
Some tricky Doxygen errors were resolved by asking it to not enter
directiores that we do not provide documentation in (such as the
“on-platform” compat directories, compat/mac and compat/win, as well as
compat/non_cxx11_lib) while allowing it to enter the
“off-platform” directories that we do document (compat/non_mac and
compat/non_win).
A Doxygen run (doc/support/generate_doxygen.sh) now produces no output
at all. It would produce warnings if any were triggered.
Not directly related, but still relevant to documentation,
doc/support/generate.sh is updated to remove temporary removals of
now-extinct files and directories. doc/appengine/README is updated so
that a consistent path to “goapp” is used throughout the file.
Change-Id: I300730c04de4d3340551ea3086ca70cc5ff862d1
Reviewed-on: https://chromium-review.googlesource.com/408812
Reviewed-by: Robert Sesek <rsesek@chromium.org>
2016-11-08 14:23:09 -05:00
|
|
|
//! \param[in,out] gather_indirectly_referenced_memory_bytes_remaining If
|
2016-04-21 22:19:31 -07:00
|
|
|
//! non-null, add extra memory regions to the snapshot pointed to by the
|
|
|
|
//! thread's stack. The size of the regions added is subtracted from the
|
|
|
|
//! count, and when it's `0`, no more regions will be added.
|
2015-05-11 13:29:52 -07:00
|
|
|
//!
|
|
|
|
//! \return `true` if the snapshot could be created, `false` otherwise with
|
|
|
|
//! an appropriate message logged.
|
2016-04-21 22:19:31 -07:00
|
|
|
bool Initialize(
|
|
|
|
ProcessReaderWin* process_reader,
|
|
|
|
const ProcessReaderWin::Thread& process_reader_thread,
|
|
|
|
uint32_t* gather_indirectly_referenced_memory_bytes_remaining);
|
2015-05-11 13:29:52 -07:00
|
|
|
|
|
|
|
// ThreadSnapshot:
|
|
|
|
|
|
|
|
const CPUContext* Context() const override;
|
|
|
|
const MemorySnapshot* Stack() const override;
|
|
|
|
uint64_t ThreadID() const override;
|
2022-06-13 14:44:24 -06:00
|
|
|
std::string ThreadName() const override;
|
2015-05-11 13:29:52 -07:00
|
|
|
int SuspendCount() const override;
|
|
|
|
int Priority() const override;
|
|
|
|
uint64_t ThreadSpecificDataAddress() const override;
|
2015-10-01 14:04:49 -07:00
|
|
|
std::vector<const MemorySnapshot*> ExtraMemory() const override;
|
2015-05-11 13:29:52 -07:00
|
|
|
|
|
|
|
private:
|
2015-05-14 17:37:02 -07:00
|
|
|
union {
|
2018-12-12 12:58:24 -08:00
|
|
|
#if defined(ARCH_CPU_X86_FAMILY)
|
2015-05-14 17:37:02 -07:00
|
|
|
CPUContextX86 x86;
|
|
|
|
CPUContextX86_64 x86_64;
|
2018-12-12 12:58:24 -08:00
|
|
|
#elif defined(ARCH_CPU_ARM64)
|
|
|
|
CPUContextARM64 arm64;
|
|
|
|
#else
|
|
|
|
#error Unsupported Windows Arch
|
2015-05-14 17:37:02 -07:00
|
|
|
#endif
|
2018-12-12 12:58:24 -08:00
|
|
|
} context_union_;
|
2015-05-11 13:29:52 -07:00
|
|
|
CPUContext context_;
|
2019-06-10 12:15:46 -07:00
|
|
|
MemorySnapshotGeneric stack_;
|
|
|
|
MemorySnapshotGeneric teb_;
|
2015-05-11 13:29:52 -07:00
|
|
|
ProcessReaderWin::Thread thread_;
|
|
|
|
InitializationStateDcheck initialized_;
|
2019-06-10 12:15:46 -07:00
|
|
|
std::vector<std::unique_ptr<MemorySnapshotGeneric>> pointed_to_memory_;
|
2015-05-11 13:29:52 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace crashpad
|
|
|
|
|
|
|
|
#endif // CRASHPAD_SNAPSHOT_WIN_THREAD_SNAPSHOT_WIN_H_
|