2014-08-12 10:26:40 -07:00
|
|
|
|
// Copyright 2014 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 "minidump/minidump_memory_writer.h"
|
|
|
|
|
|
2015-12-09 17:36:32 -05:00
|
|
|
|
#include <utility>
|
|
|
|
|
|
2014-10-30 17:15:49 -04:00
|
|
|
|
#include "base/auto_reset.h"
|
2014-08-12 10:26:40 -07:00
|
|
|
|
#include "base/logging.h"
|
2014-10-23 18:47:27 -04:00
|
|
|
|
#include "util/file/file_writer.h"
|
2014-08-12 10:26:40 -07:00
|
|
|
|
#include "util/numeric/safe_assignment.h"
|
|
|
|
|
|
|
|
|
|
namespace crashpad {
|
2014-10-30 17:15:49 -04:00
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
SnapshotMinidumpMemoryWriter::SnapshotMinidumpMemoryWriter(
|
|
|
|
|
const MemorySnapshot* memory_snapshot)
|
|
|
|
|
: internal::MinidumpWritable(),
|
|
|
|
|
MemorySnapshot::Delegate(),
|
|
|
|
|
memory_descriptor_(),
|
|
|
|
|
registered_memory_descriptors_(),
|
|
|
|
|
memory_snapshot_(memory_snapshot),
|
|
|
|
|
file_writer_(nullptr) {}
|
2014-10-30 17:15:49 -04:00
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
SnapshotMinidumpMemoryWriter::~SnapshotMinidumpMemoryWriter() {}
|
2014-10-30 17:15:49 -04:00
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
bool SnapshotMinidumpMemoryWriter::MemorySnapshotDelegateRead(void* data,
|
|
|
|
|
size_t size) {
|
|
|
|
|
DCHECK_EQ(state(), kStateWritable);
|
|
|
|
|
DCHECK_EQ(size, UnderlyingSnapshot().Size());
|
|
|
|
|
return file_writer_->Write(data, size);
|
|
|
|
|
}
|
2014-10-30 17:15:49 -04:00
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
bool SnapshotMinidumpMemoryWriter::WriteObject(
|
|
|
|
|
FileWriterInterface* file_writer) {
|
|
|
|
|
DCHECK_EQ(state(), kStateWritable);
|
|
|
|
|
DCHECK(!file_writer_);
|
2014-08-12 10:26:40 -07:00
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
base::AutoReset<FileWriterInterface*> file_writer_reset(&file_writer_,
|
|
|
|
|
file_writer);
|
2014-10-27 15:01:39 -04:00
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
// This will result in MemorySnapshotDelegateRead() being called.
|
|
|
|
|
return memory_snapshot_->Read(this);
|
2014-10-30 17:15:49 -04:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-12 10:26:40 -07:00
|
|
|
|
const MINIDUMP_MEMORY_DESCRIPTOR*
|
2016-08-25 15:01:27 -07:00
|
|
|
|
SnapshotMinidumpMemoryWriter::MinidumpMemoryDescriptor() const {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
DCHECK_EQ(state(), kStateWritable);
|
|
|
|
|
|
|
|
|
|
return &memory_descriptor_;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
void SnapshotMinidumpMemoryWriter::RegisterMemoryDescriptor(
|
2014-08-12 10:26:40 -07:00
|
|
|
|
MINIDUMP_MEMORY_DESCRIPTOR* memory_descriptor) {
|
|
|
|
|
DCHECK_LE(state(), kStateFrozen);
|
|
|
|
|
|
|
|
|
|
registered_memory_descriptors_.push_back(memory_descriptor);
|
|
|
|
|
RegisterLocationDescriptor(&memory_descriptor->Memory);
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
bool SnapshotMinidumpMemoryWriter::Freeze() {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
DCHECK_EQ(state(), kStateMutable);
|
|
|
|
|
|
|
|
|
|
if (!MinidumpWritable::Freeze()) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RegisterMemoryDescriptor(&memory_descriptor_);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
size_t SnapshotMinidumpMemoryWriter::Alignment() {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
DCHECK_GE(state(), kStateFrozen);
|
|
|
|
|
|
|
|
|
|
return 16;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
size_t SnapshotMinidumpMemoryWriter::SizeOfObject() {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
DCHECK_GE(state(), kStateFrozen);
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
return UnderlyingSnapshot().Size();
|
2014-08-12 10:26:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
bool SnapshotMinidumpMemoryWriter::WillWriteAtOffsetImpl(FileOffset offset) {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
DCHECK_EQ(state(), kStateFrozen);
|
|
|
|
|
|
|
|
|
|
// There will always be at least one registered descriptor, the one for this
|
|
|
|
|
// object’s own memory_descriptor_ field.
|
|
|
|
|
DCHECK_GE(registered_memory_descriptors_.size(), 1u);
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
uint64_t base_address = UnderlyingSnapshot().Address();
|
2014-10-28 17:28:31 -04:00
|
|
|
|
decltype(registered_memory_descriptors_[0]->StartOfMemoryRange) local_address;
|
2014-08-12 10:26:40 -07:00
|
|
|
|
if (!AssignIfInRange(&local_address, base_address)) {
|
|
|
|
|
LOG(ERROR) << "base_address " << base_address << " out of range";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (MINIDUMP_MEMORY_DESCRIPTOR* memory_descriptor :
|
|
|
|
|
registered_memory_descriptors_) {
|
|
|
|
|
memory_descriptor->StartOfMemoryRange = local_address;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return MinidumpWritable::WillWriteAtOffsetImpl(offset);
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
internal::MinidumpWritable::Phase SnapshotMinidumpMemoryWriter::WritePhase() {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
// Memory dumps are large and are unlikely to be consumed in their entirety.
|
|
|
|
|
// Data accesses are expected to be sparse and sporadic, and are expected to
|
|
|
|
|
// occur after all of the other structural and informational data from the
|
|
|
|
|
// minidump file has been read. Put memory dumps at the end of the minidump
|
|
|
|
|
// file to improve spatial locality.
|
|
|
|
|
return kPhaseLate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinidumpMemoryListWriter::MinidumpMemoryListWriter()
|
|
|
|
|
: MinidumpStreamWriter(),
|
|
|
|
|
memory_writers_(),
|
2015-02-04 17:34:43 -08:00
|
|
|
|
children_(),
|
|
|
|
|
memory_list_base_() {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinidumpMemoryListWriter::~MinidumpMemoryListWriter() {
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-30 17:15:49 -04:00
|
|
|
|
void MinidumpMemoryListWriter::AddFromSnapshot(
|
|
|
|
|
const std::vector<const MemorySnapshot*>& memory_snapshots) {
|
|
|
|
|
DCHECK_EQ(state(), kStateMutable);
|
|
|
|
|
|
|
|
|
|
for (const MemorySnapshot* memory_snapshot : memory_snapshots) {
|
2016-08-25 15:01:27 -07:00
|
|
|
|
std::unique_ptr<SnapshotMinidumpMemoryWriter> memory(
|
|
|
|
|
new SnapshotMinidumpMemoryWriter(memory_snapshot));
|
2015-12-09 17:36:32 -05:00
|
|
|
|
AddMemory(std::move(memory));
|
2014-10-30 17:15:49 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-27 15:01:39 -04:00
|
|
|
|
void MinidumpMemoryListWriter::AddMemory(
|
2016-08-25 15:01:27 -07:00
|
|
|
|
std::unique_ptr<SnapshotMinidumpMemoryWriter> memory_writer) {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
DCHECK_EQ(state(), kStateMutable);
|
|
|
|
|
|
2014-10-27 15:01:39 -04:00
|
|
|
|
AddExtraMemory(memory_writer.get());
|
2017-10-19 00:26:38 -04:00
|
|
|
|
children_.push_back(std::move(memory_writer));
|
2014-08-12 10:26:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MinidumpMemoryListWriter::AddExtraMemory(
|
2016-08-25 15:01:27 -07:00
|
|
|
|
SnapshotMinidumpMemoryWriter* memory_writer) {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
DCHECK_EQ(state(), kStateMutable);
|
|
|
|
|
|
|
|
|
|
memory_writers_.push_back(memory_writer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MinidumpMemoryListWriter::Freeze() {
|
|
|
|
|
DCHECK_EQ(state(), kStateMutable);
|
|
|
|
|
|
|
|
|
|
if (!MinidumpStreamWriter::Freeze()) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t memory_region_count = memory_writers_.size();
|
|
|
|
|
CHECK_LE(children_.size(), memory_region_count);
|
|
|
|
|
|
|
|
|
|
if (!AssignIfInRange(&memory_list_base_.NumberOfMemoryRanges,
|
|
|
|
|
memory_region_count)) {
|
|
|
|
|
LOG(ERROR) << "memory_region_count " << memory_region_count
|
|
|
|
|
<< " out of range";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t MinidumpMemoryListWriter::SizeOfObject() {
|
|
|
|
|
DCHECK_GE(state(), kStateFrozen);
|
|
|
|
|
DCHECK_LE(children_.size(), memory_writers_.size());
|
|
|
|
|
|
|
|
|
|
return sizeof(memory_list_base_) +
|
|
|
|
|
memory_writers_.size() * sizeof(MINIDUMP_MEMORY_DESCRIPTOR);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::vector<internal::MinidumpWritable*> MinidumpMemoryListWriter::Children() {
|
|
|
|
|
DCHECK_GE(state(), kStateFrozen);
|
|
|
|
|
DCHECK_LE(children_.size(), memory_writers_.size());
|
|
|
|
|
|
2014-10-27 15:01:39 -04:00
|
|
|
|
std::vector<MinidumpWritable*> children;
|
2017-10-19 00:26:38 -04:00
|
|
|
|
for (const auto& child : children_) {
|
|
|
|
|
children.push_back(child.get());
|
2014-10-27 15:01:39 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return children;
|
2014-08-12 10:26:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MinidumpMemoryListWriter::WriteObject(FileWriterInterface* file_writer) {
|
|
|
|
|
DCHECK_EQ(state(), kStateWritable);
|
|
|
|
|
|
|
|
|
|
WritableIoVec iov;
|
|
|
|
|
iov.iov_base = &memory_list_base_;
|
|
|
|
|
iov.iov_len = sizeof(memory_list_base_);
|
|
|
|
|
std::vector<WritableIoVec> iovecs(1, iov);
|
|
|
|
|
|
2016-08-25 15:01:27 -07:00
|
|
|
|
for (const SnapshotMinidumpMemoryWriter* memory_writer : memory_writers_) {
|
2014-08-12 10:26:40 -07:00
|
|
|
|
iov.iov_base = memory_writer->MinidumpMemoryDescriptor();
|
2014-10-23 17:25:20 -04:00
|
|
|
|
iov.iov_len = sizeof(MINIDUMP_MEMORY_DESCRIPTOR);
|
2014-08-12 10:26:40 -07:00
|
|
|
|
iovecs.push_back(iov);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return file_writer->WriteIoVec(&iovecs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinidumpStreamType MinidumpMemoryListWriter::StreamType() const {
|
|
|
|
|
return kMinidumpStreamTypeMemoryList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace crashpad
|