blob: 689c5705004481050f2197127d6b3dfdbfe545a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* -------------------------------------------
Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
File: xcoff.h
Purpose: XCOFF for NeBoot.
Revision History:
04/07/24: Added file (amlel)
------------------------------------------- */
#ifndef __XCOFF__
#define __XCOFF__
#include <lib/boot.h>
#define XCOFF_MAG 0x01F7
#define XCOFF_NAME_LEN 256U
#define XCOFF_REL_FLG 0x0001
#define XCOFF_EXEC_FLG 0x0002
#define XCOFF_LNNO_FLG 0x0004
#define XCOFF_SYMNS_FLG 0x0008
/// @brief XCoff identification header.
typedef struct _xcoff_header {
uint16_t magic;
uint16_t target;
uint16_t num_secs;
uint32_t timestamp;
uint64_t symptr;
uint32_t numsyms;
uint16_t opthdr; // ?: Number of bytes in optional header
} xcoff_header_t;
/// @brief This the executable's manifest fork, designed for NeFS.
/// @param prop_xml_fork The XML fork of the executable.
/// @param dyld_fork The DYLD fork metadata.
/// @param code_sign_fork Executable's certificate contained in a fork.
typedef struct _xcoff_fork_header {
char prop_xml_fork[XCOFF_NAME_LEN];
char dyld_fork[XCOFF_NAME_LEN];
char code_sign_fork[XCOFF_NAME_LEN];
} xcoff_fork_header_t;
typedef xcoff_header_t xcoff_header64_t;
typedef xcoff_header_t xcoff_header32_t;
#endif // ifndef __XCOFF__
|