2020-11-06 11:09:51 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019-2020, Jesse Buhagiar <jooster669@gmail.com>
|
|
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-11-06 11:09:51 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-11-11 23:02:39 +03:00
|
|
|
|
2020-11-06 11:09:51 +03:00
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
#include <AK/OwnPtr.h>
|
|
|
|
#include <Kernel/Forward.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-08-22 15:51:04 +03:00
|
|
|
class Coredump {
|
2020-11-06 11:09:51 +03:00
|
|
|
public:
|
2021-11-08 02:51:39 +03:00
|
|
|
static ErrorOr<NonnullOwnPtr<Coredump>> try_create(NonnullRefPtr<Process>, StringView output_path);
|
2020-11-06 11:09:51 +03:00
|
|
|
|
2021-08-22 15:51:04 +03:00
|
|
|
~Coredump() = default;
|
2021-11-08 02:51:39 +03:00
|
|
|
ErrorOr<void> write();
|
2020-11-06 11:09:51 +03:00
|
|
|
|
|
|
|
private:
|
2021-09-07 14:39:11 +03:00
|
|
|
Coredump(NonnullRefPtr<Process>, NonnullRefPtr<OpenFileDescription>);
|
2021-11-08 02:51:39 +03:00
|
|
|
static ErrorOr<NonnullRefPtr<OpenFileDescription>> try_create_target_file(Process const&, StringView output_path);
|
|
|
|
|
|
|
|
ErrorOr<void> write_elf_header();
|
|
|
|
ErrorOr<void> write_program_headers(size_t notes_size);
|
|
|
|
ErrorOr<void> write_regions();
|
|
|
|
ErrorOr<void> write_notes_segment(ReadonlyBytes);
|
|
|
|
|
|
|
|
ErrorOr<void> create_notes_segment_data(auto&) const;
|
|
|
|
ErrorOr<void> create_notes_process_data(auto&) const;
|
|
|
|
ErrorOr<void> create_notes_threads_data(auto&) const;
|
|
|
|
ErrorOr<void> create_notes_regions_data(auto&) const;
|
|
|
|
ErrorOr<void> create_notes_metadata_data(auto&) const;
|
2020-11-06 11:09:51 +03:00
|
|
|
|
2020-12-27 02:51:48 +03:00
|
|
|
NonnullRefPtr<Process> m_process;
|
2021-09-07 14:39:11 +03:00
|
|
|
NonnullRefPtr<OpenFileDescription> m_description;
|
2021-09-30 18:52:02 +03:00
|
|
|
size_t m_num_program_headers { 0 };
|
2020-11-06 11:09:51 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|