/* * Copyright (c) 2019-2020, Jesse Buhagiar * Copyright (c) 2020, Itamar S. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Kernel { class Coredump { public: static ErrorOr> try_create(NonnullRefPtr, StringView output_path); ~Coredump() = default; ErrorOr write(); private: Coredump(NonnullRefPtr, NonnullRefPtr); static ErrorOr> try_create_target_file(Process const&, StringView output_path); ErrorOr write_elf_header(); ErrorOr write_program_headers(size_t notes_size); ErrorOr write_regions(); ErrorOr write_notes_segment(ReadonlyBytes); ErrorOr create_notes_segment_data(auto&) const; ErrorOr create_notes_process_data(auto&) const; ErrorOr create_notes_threads_data(auto&) const; ErrorOr create_notes_regions_data(auto&) const; ErrorOr create_notes_metadata_data(auto&) const; NonnullRefPtr m_process; NonnullRefPtr m_description; size_t m_num_program_headers { 0 }; }; }