mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-28 15:50:26 +08:00
8b6f158d20
This plumbs some of the ZX_INFO_PROCESS_MAPS information out into MINIDUMP_MEMORY_INFO. The mapping loses some information that Zircon provides, and some of the data that Windows would provide isn't available (for example, AllocationProtect). But this gives a general idea of the memory layout of the process to check for bad pointers, etc. when inspecting crashes. Bug: fuchsia:DX-615 Change-Id: I2d7c02be0996672253cf0b1eb6a60b0a55e6033b Reviewed-on: https://chromium-review.googlesource.com/c/1377089 Commit-Queue: Scott Graham <scottmg@chromium.org> Reviewed-by: Mark Mentovai <mark@chromium.org>
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
// Copyright 2018 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_FUCHSIA_MEMORY_MAP_REGION_SNAPSHOT_FUCHSIA_H_
|
|
#define CRASHPAD_SNAPSHOT_FUCHSIA_MEMORY_MAP_REGION_SNAPSHOT_FUCHSIA_H_
|
|
|
|
#include "snapshot/memory_map_region_snapshot.h"
|
|
|
|
#include <zircon/syscalls/object.h>
|
|
|
|
namespace crashpad {
|
|
namespace internal {
|
|
|
|
class MemoryMapRegionSnapshotFuchsia : public MemoryMapRegionSnapshot {
|
|
public:
|
|
explicit MemoryMapRegionSnapshotFuchsia(const zx_info_maps_t& info_map);
|
|
~MemoryMapRegionSnapshotFuchsia() override;
|
|
|
|
virtual const MINIDUMP_MEMORY_INFO& AsMinidumpMemoryInfo() const override;
|
|
|
|
private:
|
|
MINIDUMP_MEMORY_INFO memory_info_;
|
|
};
|
|
|
|
} // namespace internal
|
|
} // namespace crashpad
|
|
|
|
#endif // CRASHPAD_SNAPSHOT_FUCHSIA_MEMORY_MAP_REGION_SNAPSHOT_FUCHSIA_H_
|