2017-12-05 15:43:23 -08:00
|
|
|
// Copyright 2017 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/fuchsia/process_snapshot_fuchsia.h"
|
|
|
|
|
|
|
|
#include "base/logging.h"
|
|
|
|
|
|
|
|
namespace crashpad {
|
|
|
|
|
|
|
|
ProcessSnapshotFuchsia::ProcessSnapshotFuchsia() {}
|
|
|
|
|
|
|
|
ProcessSnapshotFuchsia::~ProcessSnapshotFuchsia() {}
|
|
|
|
|
|
|
|
bool ProcessSnapshotFuchsia::Initialize(zx_handle_t process) {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_SET_INITIALIZING(initialized_);
|
|
|
|
|
|
|
|
if (!process_reader_.Initialize(process)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
InitializeModules();
|
|
|
|
|
|
|
|
INITIALIZATION_STATE_SET_VALID(initialized_);
|
|
|
|
return true;
|
2017-12-05 15:43:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessSnapshotFuchsia::GetCrashpadOptions(
|
|
|
|
CrashpadInfoClientOptions* options) {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
|
|
|
|
|
|
|
CrashpadInfoClientOptions local_options;
|
|
|
|
|
|
|
|
for (const auto& module : modules_) {
|
|
|
|
CrashpadInfoClientOptions module_options;
|
|
|
|
module->GetCrashpadOptions(&module_options);
|
|
|
|
|
|
|
|
if (local_options.crashpad_handler_behavior == TriState::kUnset) {
|
|
|
|
local_options.crashpad_handler_behavior =
|
|
|
|
module_options.crashpad_handler_behavior;
|
|
|
|
}
|
|
|
|
if (local_options.system_crash_reporter_forwarding == TriState::kUnset) {
|
|
|
|
local_options.system_crash_reporter_forwarding =
|
|
|
|
module_options.system_crash_reporter_forwarding;
|
|
|
|
}
|
|
|
|
if (local_options.gather_indirectly_referenced_memory == TriState::kUnset) {
|
|
|
|
local_options.gather_indirectly_referenced_memory =
|
|
|
|
module_options.gather_indirectly_referenced_memory;
|
|
|
|
local_options.indirectly_referenced_memory_cap =
|
|
|
|
module_options.indirectly_referenced_memory_cap;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If non-default values have been found for all options, the loop can end
|
|
|
|
// early.
|
|
|
|
if (local_options.crashpad_handler_behavior != TriState::kUnset &&
|
|
|
|
local_options.system_crash_reporter_forwarding != TriState::kUnset &&
|
|
|
|
local_options.gather_indirectly_referenced_memory != TriState::kUnset) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*options = local_options;
|
2017-12-05 15:43:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
pid_t ProcessSnapshotFuchsia::ProcessID() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t ProcessSnapshotFuchsia::ParentProcessID() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessSnapshotFuchsia::SnapshotTime(timeval* snapshot_time) const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessSnapshotFuchsia::ProcessStartTime(timeval* start_time) const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessSnapshotFuchsia::ProcessCPUTimes(timeval* user_time,
|
|
|
|
timeval* system_time) const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessSnapshotFuchsia::ReportID(UUID* report_id) const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessSnapshotFuchsia::ClientID(UUID* client_id) const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::map<std::string, std::string>&
|
|
|
|
ProcessSnapshotFuchsia::AnnotationsSimpleMap() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return annotations_simple_map_;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SystemSnapshot* ProcessSnapshotFuchsia::System() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const ThreadSnapshot*> ProcessSnapshotFuchsia::Threads() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return std::vector<const ThreadSnapshot*>();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const ModuleSnapshot*> ProcessSnapshotFuchsia::Modules() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return std::vector<const ModuleSnapshot*>();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<UnloadedModuleSnapshot> ProcessSnapshotFuchsia::UnloadedModules()
|
|
|
|
const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return std::vector<UnloadedModuleSnapshot>();
|
|
|
|
}
|
|
|
|
|
|
|
|
const ExceptionSnapshot* ProcessSnapshotFuchsia::Exception() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const MemoryMapRegionSnapshot*> ProcessSnapshotFuchsia::MemoryMap()
|
|
|
|
const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return std::vector<const MemoryMapRegionSnapshot*>();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<HandleSnapshot> ProcessSnapshotFuchsia::Handles() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return std::vector<HandleSnapshot>();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const MemorySnapshot*> ProcessSnapshotFuchsia::ExtraMemory() const {
|
2018-02-15 13:21:00 -08:00
|
|
|
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
2017-12-05 15:43:23 -08:00
|
|
|
NOTREACHED(); // TODO(scottmg): https://crashpad.chromium.org/bug/196
|
|
|
|
return std::vector<const MemorySnapshot*>();
|
|
|
|
}
|
|
|
|
|
2018-02-15 13:21:00 -08:00
|
|
|
void ProcessSnapshotFuchsia::InitializeModules() {
|
|
|
|
const std::vector<ProcessReader::Module>& process_reader_modules =
|
|
|
|
process_reader_.Modules();
|
|
|
|
for (const ProcessReader::Module& process_reader_module :
|
|
|
|
process_reader_modules) {
|
|
|
|
auto module = std::make_unique<internal::ModuleSnapshotFuchsia>();
|
2018-02-20 16:10:33 -08:00
|
|
|
if (module->Initialize(process_reader_module)) {
|
2018-02-15 13:21:00 -08:00
|
|
|
modules_.push_back(std::move(module));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-05 15:43:23 -08:00
|
|
|
} // namespace crashpad
|