VirtualBox

source: vbox/trunk/include/iprt/formats/elf32.h@ 69105

Last change on this file since 69105 was 69105, checked in by vboxsync, 7 years ago

include/iprt/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 KB
Line 
1/* $Id: elf32.h 69105 2017-10-17 10:20:49Z vboxsync $ */
2/** @file
3 * IPRT - ELF 32-bit header.
4 */
5
6/*
7 * Copyright (C) 2010-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___iprt_formats_elf32_h
28#define ___iprt_formats_elf32_h
29
30#include <iprt/assertcompile.h>
31#include "elf-common.h"
32
33/*
34 * ELF 32 standard types.
35 */
36typedef uint32_t Elf32_Addr;
37typedef uint16_t Elf32_Half;
38typedef uint32_t Elf32_Off;
39typedef int32_t Elf32_Sword;
40typedef uint32_t Elf32_Word;
41
42/*
43 * Ensure type size correctness in accordance to .
44 * Portable Format Specification (for ELF), Version 1.1, fig 1-2. .
45 */
46AssertCompileSize(Elf32_Addr, 4);
47AssertCompileSize(Elf32_Half, 2);
48AssertCompileSize(Elf32_Off, 4);
49AssertCompileSize(Elf32_Sword, 4);
50AssertCompileSize(Elf32_Word, 4);
51
52/*
53 * ELF 32 non-standard types for convenience.
54 */
55typedef Elf32_Word Elf32_Size;
56typedef Elf32_Word Elf32_Hashelt;
57
58/*
59 * ELF header.
60 */
61typedef struct
62{
63 unsigned char e_ident[16]; /* ELF identification. */
64 Elf32_Half e_type; /* Object file type. */
65 Elf32_Half e_machine; /* Machine type. */
66 Elf32_Word e_version; /* Object file version. */
67 Elf32_Addr e_entry; /* Entry point address. */
68 Elf32_Off e_phoff; /* Program header offset. */
69 Elf32_Off e_shoff; /* Section header offset. */
70 Elf32_Word e_flags; /* Processor-specific flags. */
71 Elf32_Half e_ehsize; /* ELF header size. */
72 Elf32_Half e_phentsize; /* Size of program header entries. */
73 Elf32_Half e_phnum; /* Number of program headers. */
74 Elf32_Half e_shentsize; /* Size of section header entries. */
75 Elf32_Half e_shnum; /* Number of section headers. */
76 Elf32_Half e_shstrndx; /* Section name string table index. */
77} Elf32_Ehdr;
78
79/*
80 * Section header.
81 */
82typedef struct
83{
84 Elf32_Word sh_name; /* Section name. */
85 Elf32_Word sh_type; /* Section type. */
86 Elf32_Word sh_flags; /* Section attributes. */
87 Elf32_Addr sh_addr; /* Virtual address in memory. */
88 Elf32_Off sh_offset; /* Offset in file. */
89 Elf32_Word sh_size; /* Size of section. */
90 Elf32_Word sh_link; /* Link to other section. */
91 Elf32_Word sh_info; /* Miscellaneous information. */
92 Elf32_Word sh_addralign; /* Address alignment boundary. */
93 Elf32_Word sh_entsize; /* Size of entries, if section has table. */
94} Elf32_Shdr;
95
96
97/*
98 * Program header.
99 */
100typedef struct
101{
102 Elf32_Word p_type; /* Type of segment. */
103 Elf32_Off p_offset; /* Offset in file. */
104 Elf32_Addr p_vaddr; /* Virtual address in memory. */
105 Elf32_Addr p_paddr; /* Physical address (reserved). */
106 Elf32_Word p_filesz; /* Size of segment in file. */
107 Elf32_Word p_memsz; /* Size of segment in memory. */
108 Elf32_Word p_flags; /* Segment attributes. */
109 Elf32_Word p_align; /* Alignment of segment. */
110} Elf32_Phdr;
111
112
113/*
114 * Note header.
115 */
116typedef struct
117{
118 Elf32_Word n_namesz; /* Length of note's name. */
119 Elf32_Word n_descsz; /* Length of note's description. */
120 Elf32_Word n_type; /* Type of note. */
121} Elf32_Nhdr;
122
123
124/*
125 * Symbol table entry.
126 */
127typedef struct
128{
129 Elf32_Word st_name; /* Symbol name. */
130 Elf32_Addr st_value; /* Symbol value. */
131 Elf32_Word st_size; /* Size associated with symbol. */
132 unsigned char st_info; /* Type and binding attributes. */
133 unsigned char st_other; /* Reserved. */
134 Elf32_Half st_shndx; /* Section header table index. */
135} Elf32_Sym;
136
137
138/*
139 * Relocations.
140 */
141typedef struct
142{
143 Elf32_Addr r_offset; /* Location to be relocated. */
144 Elf32_Word r_info; /* Symbol index and type of relocation. */
145} Elf32_Rel;
146
147typedef struct
148{
149 Elf32_Addr r_offset; /* Location to be relocated. */
150 Elf32_Word r_info; /* Symbol index and type of relocation. */
151 Elf32_Sword r_addend; /* Constant part of expression. */
152} Elf32_Rela;
153
154/*
155 * Dynamic section entry.
156 * ".dynamic" section contains an array of this.
157 */
158typedef struct
159{
160 Elf32_Sword d_tag; /* Type of entry. */
161 union
162 {
163 Elf32_Word d_val; /* Integer value. */
164 Elf32_Addr d_ptr; /* Virtual address value. */
165 } d_un;
166} Elf32_Dyn;
167
168/*
169 * Helper macros.
170 */
171/** The symbol's type. */
172#define ELF32_ST_TYPE(info) ((info) & 0xF)
173/** The symbol's binding. */
174#define ELF32_ST_BIND(info) ((info) >> 4)
175/** Make st_info. given binding and type. */
176#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
177
178/** Relocation type. */
179#define ELF32_R_TYPE(info) ((unsigned char)(info))
180/** Relocation symbol index. */
181#define ELF32_R_SYM(info) ((info) >> 8)
182/** Make r_info given the symbol index and type. */
183#define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type))
184
185
186#endif
187
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette