2020-11-06 08:09:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019-2020, Jesse Buhagiar <jooster669@gmail.com>
|
|
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-11-06 08:09:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-11-11 20:02:39 +00:00
|
|
|
|
2020-11-06 08:09:51 +00:00
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
#include <AK/OwnPtr.h>
|
|
|
|
#include <Kernel/Forward.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-08-22 12:51:04 +00:00
|
|
|
class Coredump {
|
2020-11-06 08:09:51 +00:00
|
|
|
public:
|
2021-11-07 23:51:39 +00:00
|
|
|
static ErrorOr<NonnullOwnPtr<Coredump>> try_create(NonnullRefPtr<Process>, StringView output_path);
|
2020-11-06 08:09:51 +00:00
|
|
|
|
2021-08-22 12:51:04 +00:00
|
|
|
~Coredump() = default;
|
2021-11-07 23:51:39 +00:00
|
|
|
ErrorOr<void> write();
|
2020-11-06 08:09:51 +00:00
|
|
|
|
|
|
|
private:
|
2021-09-07 11:39:11 +00:00
|
|
|
Coredump(NonnullRefPtr<Process>, NonnullRefPtr<OpenFileDescription>);
|
2021-11-07 23:51:39 +00: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 08:09:51 +00:00
|
|
|
|
2020-12-26 23:51:48 +00:00
|
|
|
NonnullRefPtr<Process> m_process;
|
2021-09-07 11:39:11 +00:00
|
|
|
NonnullRefPtr<OpenFileDescription> m_description;
|
2021-09-30 15:52:02 +00:00
|
|
|
size_t m_num_program_headers { 0 };
|
2020-11-06 08:09:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|