mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-29 08:39:44 +08:00
137506bf1e
Removes the remaining references to the old port-based exception APIs in favor of the new channel-based APIs. Bug: fuchsia:ZX-4031 Test: runtests on emulator and device Change-Id: Ieac5b66c2f676966d1018d771cab6c8635f12a8f Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/1700321 Reviewed-by: Francois Rousseau <frousseau@google.com> Commit-Queue: Francois Rousseau <frousseau@google.com>
152 lines
5.1 KiB
C++
152 lines
5.1 KiB
C++
// 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 "handler/fuchsia/crash_report_exception_handler.h"
|
|
|
|
#include <lib/zx/thread.h>
|
|
#include <zircon/errors.h>
|
|
#include <zircon/status.h>
|
|
#include <zircon/syscalls/exception.h>
|
|
|
|
#include "base/fuchsia/fuchsia_logging.h"
|
|
#include "client/settings.h"
|
|
#include "minidump/minidump_file_writer.h"
|
|
#include "minidump/minidump_user_extension_stream_data_source.h"
|
|
#include "snapshot/fuchsia/process_snapshot_fuchsia.h"
|
|
#include "util/fuchsia/koid_utilities.h"
|
|
#include "util/fuchsia/scoped_task_suspend.h"
|
|
|
|
namespace crashpad {
|
|
|
|
CrashReportExceptionHandler::CrashReportExceptionHandler(
|
|
CrashReportDatabase* database,
|
|
CrashReportUploadThread* upload_thread,
|
|
const std::map<std::string, std::string>* process_annotations,
|
|
const std::map<std::string, fuchsia::mem::Buffer>* process_attachments,
|
|
const UserStreamDataSources* user_stream_data_sources)
|
|
: database_(database),
|
|
upload_thread_(upload_thread),
|
|
process_annotations_(process_annotations),
|
|
process_attachments_(process_attachments),
|
|
user_stream_data_sources_(user_stream_data_sources) {}
|
|
|
|
CrashReportExceptionHandler::~CrashReportExceptionHandler() {}
|
|
|
|
bool CrashReportExceptionHandler::HandleException(const zx::process& process,
|
|
const zx::thread& thread,
|
|
UUID* local_report_id) {
|
|
ScopedTaskSuspend suspend(process);
|
|
|
|
ProcessSnapshotFuchsia process_snapshot;
|
|
if (!process_snapshot.Initialize(process)) {
|
|
return false;
|
|
}
|
|
|
|
CrashpadInfoClientOptions client_options;
|
|
process_snapshot.GetCrashpadOptions(&client_options);
|
|
|
|
if (client_options.crashpad_handler_behavior == TriState::kDisabled) {
|
|
return true;
|
|
}
|
|
|
|
zx_exception_report_t report;
|
|
zx_status_t status = thread.get_info(ZX_INFO_THREAD_EXCEPTION_REPORT,
|
|
&report,
|
|
sizeof(report),
|
|
nullptr,
|
|
nullptr);
|
|
if (status != ZX_OK) {
|
|
ZX_LOG(ERROR, status)
|
|
<< "zx_object_get_info ZX_INFO_THREAD_EXCEPTION_REPORT";
|
|
return false;
|
|
}
|
|
|
|
zx_koid_t thread_id = GetKoidForHandle(thread);
|
|
if (!process_snapshot.InitializeException(thread_id, report)) {
|
|
return false;
|
|
}
|
|
|
|
UUID client_id;
|
|
Settings* const settings = database_->GetSettings();
|
|
if (settings) {
|
|
// If GetSettings() or GetClientID() fails, something else will log a
|
|
// message and client_id will be left at its default value, all zeroes,
|
|
// which is appropriate.
|
|
settings->GetClientID(&client_id);
|
|
}
|
|
|
|
process_snapshot.SetClientID(client_id);
|
|
process_snapshot.SetAnnotationsSimpleMap(*process_annotations_);
|
|
|
|
std::unique_ptr<CrashReportDatabase::NewReport> new_report;
|
|
CrashReportDatabase::OperationStatus database_status =
|
|
database_->PrepareNewCrashReport(&new_report);
|
|
if (database_status != CrashReportDatabase::kNoError) {
|
|
return false;
|
|
}
|
|
|
|
process_snapshot.SetReportID(new_report->ReportID());
|
|
|
|
MinidumpFileWriter minidump;
|
|
minidump.InitializeFromSnapshot(&process_snapshot);
|
|
AddUserExtensionStreams(
|
|
user_stream_data_sources_, &process_snapshot, &minidump);
|
|
|
|
if (!minidump.WriteEverything(new_report->Writer())) {
|
|
return false;
|
|
}
|
|
|
|
if (process_attachments_) {
|
|
// Note that attachments are read at this point each time rather than once
|
|
// so that if the contents of the VMO has changed it will be re-read for
|
|
// each upload (e.g. in the case of a log file).
|
|
for (const auto& it : *process_attachments_) {
|
|
// TODO(frousseau): make FileWriter VMO-aware.
|
|
FileWriter* writer = new_report->AddAttachment(it.first);
|
|
if (!writer) {
|
|
continue;
|
|
}
|
|
auto data = std::make_unique<uint8_t[]>(it.second.size);
|
|
const zx_status_t read_status =
|
|
it.second.vmo.read(data.get(), 0u, it.second.size);
|
|
if (read_status != ZX_OK) {
|
|
ZX_LOG(ERROR, read_status)
|
|
<< "could not read VMO for attachment " << it.first;
|
|
// Not being able to read the VMO isn't considered fatal, and
|
|
// should not prevent the report from being processed.
|
|
continue;
|
|
}
|
|
writer->Write(data.get(), it.second.size);
|
|
}
|
|
}
|
|
|
|
UUID uuid;
|
|
database_status =
|
|
database_->FinishedWritingCrashReport(std::move(new_report), &uuid);
|
|
if (database_status != CrashReportDatabase::kNoError) {
|
|
return false;
|
|
}
|
|
if (local_report_id != nullptr) {
|
|
*local_report_id = uuid;
|
|
}
|
|
|
|
if (upload_thread_) {
|
|
upload_thread_->ReportPending(uuid);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace crashpad
|