mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
eeb4f2fa9b
When a process with a large heap crashes (e.g WebContent), it gets very cumbersome to dump out a huge amount of memory. In the vast majority of cases, we're only interested in generating a nice backtrace from the coredump, so let's have the kernel skip over userspace heap regions when dumping memory for now. This is not ideal, and almost a little bit ugly, but it does make investigating 500 MiB WebContent crashes significantly easier for now.
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2019-2020, Jesse Buhagiar <jooster669@gmail.com>
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <Kernel/Forward.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class Coredump {
|
|
public:
|
|
static KResultOr<NonnullOwnPtr<Coredump>> try_create(NonnullRefPtr<Process>, StringView output_path);
|
|
|
|
~Coredump() = default;
|
|
KResult write();
|
|
|
|
private:
|
|
Coredump(NonnullRefPtr<Process>, NonnullRefPtr<OpenFileDescription>);
|
|
static KResultOr<NonnullRefPtr<OpenFileDescription>> try_create_target_file(Process const&, StringView output_path);
|
|
|
|
KResult write_elf_header();
|
|
KResult write_program_headers(size_t notes_size);
|
|
KResult write_regions();
|
|
KResult write_notes_segment(ReadonlyBytes);
|
|
|
|
KResult create_notes_segment_data(auto&) const;
|
|
KResult create_notes_process_data(auto&) const;
|
|
KResult create_notes_threads_data(auto&) const;
|
|
KResult create_notes_regions_data(auto&) const;
|
|
KResult create_notes_metadata_data(auto&) const;
|
|
|
|
NonnullRefPtr<Process> m_process;
|
|
NonnullRefPtr<OpenFileDescription> m_description;
|
|
size_t m_num_program_headers { 0 };
|
|
};
|
|
|
|
}
|