xref: /netbsd-src/tools/m68k-elf2aout/sys/exec_elf.h (revision 6a493d6bc668897c91594964a732d38505b70cbb)
1 /*	$NetBSD: exec_elf.h,v 1.1 2011/07/16 15:52:02 tsutsui Exp $	*/
2 
3 /*-
4  * Copyright (c) 1994 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Christos Zoulas.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef _SYS_EXEC_ELF_H_
33 #define	_SYS_EXEC_ELF_H_
34 
35 /*
36  * The current ELF ABI specification is available at:
37  *	http://www.sco.com/developer/gabi/
38  *
39  * Current header definitions are in:
40  *	http://www.sco.com/developer/gabi/latest/ch4.eheader.html
41  */
42 
43 #if defined(_KERNEL) || defined(_STANDALONE)
44 #include <sys/types.h>
45 #else
46 #include <inttypes.h>
47 #endif /* _KERNEL || _STANDALONE */
48 
49 typedef	uint8_t  	Elf_Byte;
50 
51 typedef	uint32_t	Elf32_Addr;
52 #define	ELF32_FSZ_ADDR	4
53 typedef	uint32_t	Elf32_Off;
54 #define	ELF32_FSZ_OFF	4
55 typedef	int32_t		Elf32_Sword;
56 #define	ELF32_FSZ_SWORD	4
57 typedef	uint32_t	Elf32_Word;
58 #define	ELF32_FSZ_WORD	4
59 typedef	uint16_t	Elf32_Half;
60 #define	ELF32_FSZ_HALF	2
61 
62 typedef	uint64_t	Elf64_Addr;
63 #define	ELF64_FSZ_ADDR	8
64 typedef	uint64_t	Elf64_Off;
65 #define	ELF64_FSZ_OFF	8
66 typedef	int32_t		Elf64_Shalf;
67 #define	ELF64_FSZ_SHALF	4
68 
69 #ifndef ELF64_FSZ_SWORD
70 typedef	int32_t		Elf64_Sword;
71 #define	ELF64_FSZ_SWORD	4
72 #endif /* ELF64_FSZ_SWORD */
73 #ifndef ELF64_FSZ_WORD
74 typedef	uint32_t	Elf64_Word;
75 #define	ELF64_FSZ_WORD	4
76 #endif /* ELF64_FSZ_WORD */
77 
78 typedef	int64_t		Elf64_Sxword;
79 #define	ELF64_FSZ_XWORD	8
80 typedef	uint64_t	Elf64_Xword;
81 #define	ELF64_FSZ_XWORD	8
82 typedef	uint16_t	Elf64_Half;
83 #define	ELF64_FSZ_HALF 2
84 
85 /*
86  * ELF Header
87  */
88 #define	ELF_NIDENT	16
89 
90 typedef struct {
91 	unsigned char	e_ident[ELF_NIDENT];	/* Id bytes */
92 	Elf32_Half	e_type;			/* file type */
93 	Elf32_Half	e_machine;		/* machine type */
94 	Elf32_Word	e_version;		/* version number */
95 	Elf32_Addr	e_entry;		/* entry point */
96 	Elf32_Off	e_phoff;		/* Program hdr offset */
97 	Elf32_Off	e_shoff;		/* Section hdr offset */
98 	Elf32_Word	e_flags;		/* Processor flags */
99 	Elf32_Half      e_ehsize;		/* sizeof ehdr */
100 	Elf32_Half      e_phentsize;		/* Program header entry size */
101 	Elf32_Half      e_phnum;		/* Number of program headers */
102 	Elf32_Half      e_shentsize;		/* Section header entry size */
103 	Elf32_Half      e_shnum;		/* Number of section headers */
104 	Elf32_Half      e_shstrndx;		/* String table index */
105 } Elf32_Ehdr;
106 
107 typedef struct {
108 	unsigned char	e_ident[ELF_NIDENT];	/* Id bytes */
109 	Elf64_Half	e_type;			/* file type */
110 	Elf64_Half	e_machine;		/* machine type */
111 	Elf64_Word	e_version;		/* version number */
112 	Elf64_Addr	e_entry;		/* entry point */
113 	Elf64_Off	e_phoff;		/* Program hdr offset */
114 	Elf64_Off	e_shoff;		/* Section hdr offset */
115 	Elf64_Word	e_flags;		/* Processor flags */
116 	Elf64_Half	e_ehsize;		/* sizeof ehdr */
117 	Elf64_Half	e_phentsize;		/* Program header entry size */
118 	Elf64_Half	e_phnum;		/* Number of program headers */
119 	Elf64_Half	e_shentsize;		/* Section header entry size */
120 	Elf64_Half	e_shnum;		/* Number of section headers */
121 	Elf64_Half	e_shstrndx;		/* String table index */
122 } Elf64_Ehdr;
123 
124 /* e_ident offsets */
125 #define	EI_MAG0		0	/* '\177' */
126 #define	EI_MAG1		1	/* 'E'    */
127 #define	EI_MAG2		2	/* 'L'    */
128 #define	EI_MAG3		3	/* 'F'    */
129 #define	EI_CLASS	4	/* File class */
130 #define	EI_DATA		5	/* Data encoding */
131 #define	EI_VERSION	6	/* File version */
132 #define	EI_OSABI	7	/* Operating system/ABI identification */
133 #define	EI_ABIVERSION	8	/* ABI version */
134 #define	EI_PAD		9	/* Start of padding bytes up to EI_NIDENT*/
135 
136 /* e_ident[ELFMAG0,ELFMAG3] */
137 #define	ELFMAG0		0x7f
138 #define	ELFMAG1		'E'
139 #define	ELFMAG2		'L'
140 #define	ELFMAG3		'F'
141 #define	ELFMAG		"\177ELF"
142 #define	SELFMAG		4
143 
144 /* e_ident[EI_CLASS] */
145 #define	ELFCLASSNONE	0	/* Invalid class */
146 #define	ELFCLASS32	1	/* 32-bit objects */
147 #define	ELFCLASS64	2	/* 64-bit objects */
148 #define	ELFCLASSNUM	3
149 
150 /* e_ident[EI_DATA] */
151 #define	ELFDATANONE	0	/* Invalid data encoding */
152 #define	ELFDATA2LSB	1	/* 2's complement values, LSB first */
153 #define	ELFDATA2MSB	2	/* 2's complement values, MSB first */
154 
155 /* e_ident[EI_VERSION] */
156 #define	EV_NONE		0	/* Invalid version */
157 #define	EV_CURRENT	1	/* Current version */
158 #define	EV_NUM		2
159 
160 /* e_ident[EI_OSABI] */
161 #define	ELFOSABI_SYSV		0	/* UNIX System V ABI */
162 #define	ELFOSABI_HPUX		1	/* HP-UX operating system */
163 #define ELFOSABI_NETBSD		2	/* NetBSD */
164 #define ELFOSABI_LINUX		3	/* GNU/Linux */
165 #define ELFOSABI_HURD		4	/* GNU/Hurd */
166 #define ELFOSABI_86OPEN		5	/* 86Open */
167 #define ELFOSABI_SOLARIS	6	/* Solaris */
168 #define ELFOSABI_MONTEREY	7	/* Monterey */
169 #define ELFOSABI_IRIX		8	/* IRIX */
170 #define ELFOSABI_FREEBSD	9	/* FreeBSD */
171 #define ELFOSABI_TRU64		10	/* TRU64 UNIX */
172 #define ELFOSABI_MODESTO	11	/* Novell Modesto */
173 #define ELFOSABI_OPENBSD	12	/* OpenBSD */
174 /* Unofficial OSABIs follow */
175 #define ELFOSABI_ARM		97	/* ARM */
176 #define	ELFOSABI_STANDALONE	255	/* Standalone (embedded) application */
177 
178 /* e_type */
179 #define	ET_NONE		0	/* No file type */
180 #define	ET_REL		1	/* Relocatable file */
181 #define	ET_EXEC		2	/* Executable file */
182 #define	ET_DYN		3	/* Shared object file */
183 #define	ET_CORE		4	/* Core file */
184 #define	ET_NUM		5
185 
186 #define	ET_LOOS		0xfe00	/* Operating system specific range */
187 #define	ET_HIOS		0xfeff
188 #define	ET_LOPROC	0xff00	/* Processor-specific range */
189 #define	ET_HIPROC	0xffff
190 
191 /* e_machine */
192 #define	EM_NONE		0	/* No machine */
193 #define	EM_M32		1	/* AT&T WE 32100 */
194 #define	EM_SPARC	2	/* SPARC */
195 #define	EM_386		3	/* Intel 80386 */
196 #define	EM_68K		4	/* Motorola 68000 */
197 #define	EM_88K		5	/* Motorola 88000 */
198 #define	EM_486		6	/* Intel 80486 */
199 #define	EM_860		7	/* Intel 80860 */
200 #define	EM_MIPS		8	/* MIPS I Architecture */
201 #define	EM_S370		9	/* Amdahl UTS on System/370 */
202 #define	EM_MIPS_RS3_LE	10	/* MIPS RS3000 Little-endian */
203 			/* 11-14 - Reserved */
204 #define	EM_RS6000	11	/* IBM RS/6000 XXX reserved */
205 #define	EM_PARISC	15	/* Hewlett-Packard PA-RISC */
206 #define	EM_NCUBE	16	/* NCube XXX reserved */
207 #define	EM_VPP500	17	/* Fujitsu VPP500 */
208 #define	EM_SPARC32PLUS	18	/* Enhanced instruction set SPARC */
209 #define	EM_960		19	/* Intel 80960 */
210 #define	EM_PPC		20	/* PowerPC */
211 #define	EM_PPC64	21	/* 64-bit PowerPC */
212 			/* 22-35 - Reserved */
213 #define	EM_V800		36	/* NEC V800 */
214 #define	EM_FR20		37	/* Fujitsu FR20 */
215 #define	EM_RH32		38	/* TRW RH-32 */
216 #define	EM_RCE		39	/* Motorola RCE */
217 #define	EM_ARM		40	/* Advanced RISC Machines ARM */
218 #define	EM_ALPHA	41	/* DIGITAL Alpha */
219 #define	EM_SH		42	/* Hitachi Super-H */
220 #define	EM_SPARCV9	43	/* SPARC Version 9 */
221 #define	EM_TRICORE	44	/* Siemens Tricore */
222 #define	EM_ARC		45	/* Argonaut RISC Core */
223 #define	EM_H8_300	46	/* Hitachi H8/300 */
224 #define	EM_H8_300H	47	/* Hitachi H8/300H */
225 #define	EM_H8S		48	/* Hitachi H8S */
226 #define	EM_H8_500	49	/* Hitachi H8/500 */
227 #define	EM_IA_64	50	/* Intel Merced Processor */
228 #define	EM_MIPS_X	51	/* Stanford MIPS-X */
229 #define	EM_COLDFIRE	52	/* Motorola Coldfire */
230 #define	EM_68HC12	53	/* Motorola MC68HC12 */
231 #define	EM_MMA		54	/* Fujitsu MMA Multimedia Accelerator */
232 #define	EM_PCP		55	/* Siemens PCP */
233 #define	EM_NCPU		56	/* Sony nCPU embedded RISC processor */
234 #define	EM_NDR1		57	/* Denso NDR1 microprocessor */
235 #define	EM_STARCORE	58	/* Motorola Star*Core processor */
236 #define	EM_ME16		59	/* Toyota ME16 processor */
237 #define	EM_ST100	60	/* STMicroelectronics ST100 processor */
238 #define	EM_TINYJ	61	/* Advanced Logic Corp. TinyJ embedded family processor */
239 #define	EM_X86_64	62	/* AMD x86-64 architecture */
240 #define	EM_PDSP		63	/* Sony DSP Processor */
241 			/* 64-65 - Reserved */
242 #define	EM_FX66		66	/* Siemens FX66 microcontroller */
243 #define	EM_ST9PLUS	67	/* STMicroelectronics ST9+ 8/16 bit microcontroller */
244 #define	EM_ST7		68	/* STMicroelectronics ST7 8-bit microcontroller */
245 #define	EM_68HC16	69	/* Motorola MC68HC16 Microcontroller */
246 #define	EM_68HC11	70	/* Motorola MC68HC11 Microcontroller */
247 #define	EM_68HC08	71	/* Motorola MC68HC08 Microcontroller */
248 #define	EM_68HC05	72	/* Motorola MC68HC05 Microcontroller */
249 #define	EM_SVX		73	/* Silicon Graphics SVx */
250 #define	EM_ST19		74	/* STMicroelectronics ST19 8-bit CPU */
251 #define	EM_VAX		75	/* Digital VAX */
252 #define	EM_CRIS		76	/* Axis Communications 32-bit embedded processor */
253 #define	EM_JAVELIN	77	/* Infineon Technologies 32-bit embedded CPU */
254 #define	EM_FIREPATH	78	/* Element 14 64-bit DSP processor */
255 #define	EM_ZSP		79	/* LSI Logic's 16-bit DSP processor */
256 #define	EM_MMIX		80	/* Donald Knuth's educational 64-bit processor */
257 #define	EM_HUANY	81	/* Harvard's machine-independent format */
258 #define	EM_PRISM	82	/* SiTera Prism */
259 #define	EM_AVR		83	/* Atmel AVR 8-bit microcontroller */
260 #define	EM_FR30		84	/* Fujitsu FR30 */
261 #define	EM_D10V		85	/* Mitsubishi D10V */
262 #define	EM_D30V		86	/* Mitsubishi D30V */
263 #define	EM_V850		87	/* NEC v850 */
264 #define	EM_M32R		88	/* Mitsubishi M32R */
265 #define	EM_MN10300	89	/* Matsushita MN10300 */
266 #define	EM_MN10200	90	/* Matsushita MN10200 */
267 #define	EM_PJ		91	/* picoJava */
268 #define	EM_OPENRISC	92	/* OpenRISC 32-bit embedded processor */
269 #define	EM_ARC_A5	93	/* ARC Cores Tangent-A5 */
270 #define	EM_XTENSA	94	/* Tensilica Xtensa Architecture */
271 #define	EM_NS32K	97	/* National Semiconductor 32000 series */
272 
273 /* Unofficial machine types follow */
274 #define	EM_ALPHA_EXP	36902	/* used by NetBSD/alpha; obsolete */
275 #define	EM_NUM		36903
276 
277 /*
278  * Program Header
279  */
280 typedef struct {
281 	Elf32_Word	p_type;		/* entry type */
282 	Elf32_Off	p_offset;	/* offset */
283 	Elf32_Addr	p_vaddr;	/* virtual address */
284 	Elf32_Addr	p_paddr;	/* physical address */
285 	Elf32_Word	p_filesz;	/* file size */
286 	Elf32_Word	p_memsz;	/* memory size */
287 	Elf32_Word	p_flags;	/* flags */
288 	Elf32_Word	p_align;	/* memory & file alignment */
289 } Elf32_Phdr;
290 
291 typedef struct {
292 	Elf64_Word	p_type;		/* entry type */
293 	Elf64_Word	p_flags;	/* flags */
294 	Elf64_Off	p_offset;	/* offset */
295 	Elf64_Addr	p_vaddr;	/* virtual address */
296 	Elf64_Addr	p_paddr;	/* physical address */
297 	Elf64_Xword	p_filesz;	/* file size */
298 	Elf64_Xword	p_memsz;	/* memory size */
299 	Elf64_Xword	p_align;	/* memory & file alignment */
300 } Elf64_Phdr;
301 
302 /* p_type */
303 #define	PT_NULL		0		/* Program header table entry unused */
304 #define	PT_LOAD		1		/* Loadable program segment */
305 #define	PT_DYNAMIC	2		/* Dynamic linking information */
306 #define	PT_INTERP	3		/* Program interpreter */
307 #define	PT_NOTE		4		/* Auxiliary information */
308 #define	PT_SHLIB	5		/* Reserved, unspecified semantics */
309 #define	PT_PHDR		6		/* Entry for header table itself */
310 #define	PT_NUM		7
311 
312 /* p_flags */
313 #define	PF_R		0x4	/* Segment is readable */
314 #define	PF_W		0x2	/* Segment is writable */
315 #define	PF_X		0x1	/* Segment is executable */
316 
317 #define	PF_MASKOS	0x0ff00000	/* Opersting system specific values */
318 #define	PF_MASKPROC	0xf0000000	/* Processor-specific values */
319 
320 #define	PT_LOPROC	0x70000000	/* Processor-specific range */
321 #define	PT_HIPROC	0x7fffffff
322 
323 #define	PT_MIPS_REGINFO	0x70000000
324 
325 /*
326  * Section Headers
327  */
328 typedef struct {
329 	Elf32_Word	sh_name;	/* section name (.shstrtab index) */
330 	Elf32_Word	sh_type;	/* section type */
331 	Elf32_Word	sh_flags;	/* section flags */
332 	Elf32_Addr	sh_addr;	/* virtual address */
333 	Elf32_Off	sh_offset;	/* file offset */
334 	Elf32_Word	sh_size;	/* section size */
335 	Elf32_Word	sh_link;	/* link to another */
336 	Elf32_Word	sh_info;	/* misc info */
337 	Elf32_Word	sh_addralign;	/* memory alignment */
338 	Elf32_Word	sh_entsize;	/* table entry size */
339 } Elf32_Shdr;
340 
341 typedef struct {
342 	Elf64_Word	sh_name;	/* section name (.shstrtab index) */
343 	Elf64_Word	sh_type;	/* section type */
344 	Elf64_Xword	sh_flags;	/* section flags */
345 	Elf64_Addr	sh_addr;	/* virtual address */
346 	Elf64_Off	sh_offset;	/* file offset */
347 	Elf64_Xword	sh_size;	/* section size */
348 	Elf64_Word	sh_link;	/* link to another */
349 	Elf64_Word	sh_info;	/* misc info */
350 	Elf64_Xword	sh_addralign;	/* memory alignment */
351 	Elf64_Xword	sh_entsize;	/* table entry size */
352 } Elf64_Shdr;
353 
354 /* sh_type */
355 #define	SHT_NULL	0		/* Section header table entry unused */
356 #define	SHT_PROGBITS	1		/* Program information */
357 #define	SHT_SYMTAB	2		/* Symbol table */
358 #define	SHT_STRTAB	3		/* String table */
359 #define	SHT_RELA	4		/* Relocation information w/ addend */
360 #define	SHT_HASH	5		/* Symbol hash table */
361 #define	SHT_DYNAMIC	6		/* Dynamic linking information */
362 #define	SHT_NOTE	7		/* Auxiliary information */
363 #define	SHT_NOBITS	8		/* No space allocated in file image */
364 #define	SHT_REL		9		/* Relocation information w/o addend */
365 #define	SHT_SHLIB	10		/* Reserved, unspecified semantics */
366 #define	SHT_DYNSYM	11		/* Symbol table for dynamic linker */
367 #define	SHT_NUM		12
368 
369 #define	SHT_LOOS	0x60000000	/* Operating system specific range */
370 #define	SHT_HIOS	0x6fffffff
371 #define	SHT_LOPROC	0x70000000	/* Processor-specific range */
372 #define	SHT_HIPROC	0x7fffffff
373 #define	SHT_LOUSER	0x80000000	/* Application-specific range */
374 #define	SHT_HIUSER	0xffffffff
375 
376 /* sh_flags */
377 #define	SHF_WRITE	0x1		/* Section contains writable data */
378 #define	SHF_ALLOC	0x2		/* Section occupies memory */
379 #define	SHF_EXECINSTR	0x4		/* Section contains executable insns */
380 
381 #define	SHF_MASKOS	0x0f000000	/* Operating system specific values */
382 #define	SHF_MASKPROC	0xf0000000	/* Processor-specific values */
383 
384 /*
385  * Symbol Table
386  */
387 typedef struct {
388 	Elf32_Word	st_name;	/* Symbol name (.symtab index) */
389 	Elf32_Word	st_value;	/* value of symbol */
390 	Elf32_Word	st_size;	/* size of symbol */
391 	Elf_Byte	st_info;	/* type / binding attrs */
392 	Elf_Byte	st_other;	/* unused */
393 	Elf32_Half	st_shndx;	/* section index of symbol */
394 } Elf32_Sym;
395 
396 typedef struct {
397 	Elf64_Word	st_name;	/* Symbol name (.symtab index) */
398 	Elf_Byte	st_info;	/* type / binding attrs */
399 	Elf_Byte	st_other;	/* unused */
400 	Elf64_Half	st_shndx;	/* section index of symbol */
401 	Elf64_Addr	st_value;	/* value of symbol */
402 	Elf64_Xword	st_size;	/* size of symbol */
403 } Elf64_Sym;
404 
405 /* Symbol Table index of the undefined symbol */
406 #define	ELF_SYM_UNDEFINED	0
407 
408 /* st_info: Symbol Bindings */
409 #define	STB_LOCAL		0	/* local symbol */
410 #define	STB_GLOBAL		1	/* global symbol */
411 #define	STB_WEAK		2	/* weakly defined global symbol */
412 #define	STB_NUM			3
413 
414 #define	STB_LOOS		10	/* Operating system specific range */
415 #define	STB_HIOS		12
416 #define	STB_LOPROC		13	/* Processor-specific range */
417 #define	STB_HIPROC		15
418 
419 /* st_info: Symbol Types */
420 #define	STT_NOTYPE		0	/* Type not specified */
421 #define	STT_OBJECT		1	/* Associated with a data object */
422 #define	STT_FUNC		2	/* Associated with a function */
423 #define	STT_SECTION		3	/* Associated with a section */
424 #define	STT_FILE		4	/* Associated with a file name */
425 #define	STT_NUM			5
426 
427 #define	STT_LOOS		10	/* Operating system specific range */
428 #define	STT_HIOS		12
429 #define	STT_LOPROC		13	/* Processor-specific range */
430 #define	STT_HIPROC		15
431 
432 /* st_info utility macros */
433 #define	ELF32_ST_BIND(info)		((Elf32_Word)(info) >> 4)
434 #define	ELF32_ST_TYPE(info)		((Elf32_Word)(info) & 0xf)
435 #define	ELF32_ST_INFO(bind,type)	((Elf_Byte)(((bind) << 4) | ((type) & 0xf)))
436 
437 #define	ELF64_ST_BIND(info)		((Elf64_Xword)(info) >> 4)
438 #define	ELF64_ST_TYPE(info)		((Elf64_Xword)(info) & 0xf)
439 #define	ELF64_ST_INFO(bind,type)	((Elf_Byte)(((bind) << 4) | ((type) & 0xf)))
440 
441 /*
442  * Special section indexes
443  */
444 #define	SHN_UNDEF	0		/* Undefined section */
445 
446 #define	SHN_LORESERVE	0xff00		/* Reserved range */
447 #define	SHN_ABS		0xfff1		/*  Absolute symbols */
448 #define	SHN_COMMON	0xfff2		/*  Common symbols */
449 #define	SHN_HIRESERVE	0xffff
450 
451 #define	SHN_LOPROC	0xff00		/* Processor-specific range */
452 #define	SHN_HIPROC	0xff1f
453 #define	SHN_LOOS	0xff20		/* Operating system specific range */
454 #define	SHN_HIOS	0xff3f
455 
456 #define	SHN_MIPS_ACOMMON 0xff00
457 #define	SHN_MIPS_TEXT	0xff01
458 #define	SHN_MIPS_DATA	0xff02
459 #define	SHN_MIPS_SCOMMON 0xff03
460 
461 /*
462  * Relocation Entries
463  */
464 typedef struct {
465 	Elf32_Word	r_offset;	/* where to do it */
466 	Elf32_Word	r_info;		/* index & type of relocation */
467 } Elf32_Rel;
468 
469 typedef struct {
470 	Elf32_Word	r_offset;	/* where to do it */
471 	Elf32_Word	r_info;		/* index & type of relocation */
472 	Elf32_Sword	r_addend;	/* adjustment value */
473 } Elf32_Rela;
474 
475 /* r_info utility macros */
476 #define	ELF32_R_SYM(info)	((info) >> 8)
477 #define	ELF32_R_TYPE(info)	((info) & 0xff)
478 #define	ELF32_R_INFO(sym, type)	(((sym) << 8) + (unsigned char)(type))
479 
480 typedef struct {
481 	Elf64_Addr	r_offset;	/* where to do it */
482 	Elf64_Xword	r_info;		/* index & type of relocation */
483 } Elf64_Rel;
484 
485 typedef struct {
486 	Elf64_Addr	r_offset;	/* where to do it */
487 	Elf64_Xword	r_info;		/* index & type of relocation */
488 	Elf64_Sxword	r_addend;	/* adjustment value */
489 } Elf64_Rela;
490 
491 /* r_info utility macros */
492 #define	ELF64_R_SYM(info)	((info) >> 32)
493 #define	ELF64_R_TYPE(info)	((info) & 0xffffffff)
494 #define	ELF64_R_INFO(sym,type)	(((sym) << 32) + (type))
495 
496 /*
497  * Dynamic Section structure array
498  */
499 typedef struct {
500 	Elf32_Word	d_tag;		/* entry tag value */
501 	union {
502 	    Elf32_Addr	d_ptr;
503 	    Elf32_Word	d_val;
504 	} d_un;
505 } Elf32_Dyn;
506 
507 typedef struct {
508 	Elf64_Xword	d_tag;		/* entry tag value */
509 	union {
510 	    Elf64_Addr	d_ptr;
511 	    Elf64_Xword	d_val;
512 	} d_un;
513 } Elf64_Dyn;
514 
515 /* d_tag */
516 #define	DT_NULL		0	/* Marks end of dynamic array */
517 #define	DT_NEEDED	1	/* Name of needed library (DT_STRTAB offset) */
518 #define	DT_PLTRELSZ	2	/* Size, in bytes, of relocations in PLT */
519 #define	DT_PLTGOT	3	/* Address of PLT and/or GOT */
520 #define	DT_HASH		4	/* Address of symbol hash table */
521 #define	DT_STRTAB	5	/* Address of string table */
522 #define	DT_SYMTAB	6	/* Address of symbol table */
523 #define	DT_RELA		7	/* Address of Rela relocation table */
524 #define	DT_RELASZ	8	/* Size, in bytes, of DT_RELA table */
525 #define	DT_RELAENT	9	/* Size, in bytes, of one DT_RELA entry */
526 #define	DT_STRSZ	10	/* Size, in bytes, of DT_STRTAB table */
527 #define	DT_SYMENT	11	/* Size, in bytes, of one DT_SYMTAB entry */
528 #define	DT_INIT		12	/* Address of initialization function */
529 #define	DT_FINI		13	/* Address of termination function */
530 #define	DT_SONAME	14	/* Shared object name (DT_STRTAB offset) */
531 #define	DT_RPATH	15	/* Library search path (DT_STRTAB offset) */
532 #define	DT_SYMBOLIC	16	/* Start symbol search within local object */
533 #define	DT_REL		17	/* Address of Rel relocation table */
534 #define	DT_RELSZ	18	/* Size, in bytes, of DT_REL table */
535 #define	DT_RELENT	19	/* Size, in bytes, of one DT_REL entry */
536 #define	DT_PLTREL	20 	/* Type of PLT relocation entries */
537 #define	DT_DEBUG	21	/* Used for debugging; unspecified */
538 #define	DT_TEXTREL	22	/* Relocations might modify non-writable seg */
539 #define	DT_JMPREL	23	/* Address of relocations associated with PLT */
540 #define	DT_BIND_NOW	24	/* Process all relocations at load-time */
541 #define	DT_INIT_ARRAY	25	/* Address of initialization function array */
542 #define	DT_FINI_ARRAY	26	/* Size, in bytes, of DT_INIT_ARRAY array */
543 #define	DT_INIT_ARRAYSZ	27	/* Address of termination function array */
544 #define	DT_FINI_ARRAYSZ	28	/* Size, in bytes, of DT_FINI_ARRAY array*/
545 #define	DT_NUM		29
546 
547 #define	DT_LOOS		0x60000000	/* Operating system specific range */
548 #define	DT_HIOS		0x6fffffff
549 #define	DT_LOPROC	0x70000000	/* Processor-specific range */
550 #define	DT_HIPROC	0x7fffffff
551 
552 /*
553  * Auxiliary Vectors
554  */
555 typedef struct {
556 	Elf32_Word	a_type;				/* 32-bit id */
557 	Elf32_Word	a_v;				/* 32-bit id */
558 } Aux32Info;
559 
560 typedef struct {
561 	Elf64_Word	a_type;				/* 32-bit id */
562 	Elf64_Xword	a_v;				/* 64-bit id */
563 } Aux64Info;
564 
565 /* a_type */
566 #define	AT_NULL		0	/* Marks end of array */
567 #define	AT_IGNORE	1	/* No meaning, a_un is undefined */
568 #define	AT_EXECFD	2	/* Open file descriptor of object file */
569 #define	AT_PHDR		3	/* &phdr[0] */
570 #define	AT_PHENT	4	/* sizeof(phdr[0]) */
571 #define	AT_PHNUM	5	/* # phdr entries */
572 #define	AT_PAGESZ	6	/* PAGESIZE */
573 #define	AT_BASE		7	/* Interpreter base addr */
574 #define	AT_FLAGS	8	/* Processor flags */
575 #define	AT_ENTRY	9	/* Entry address of executable */
576 #define	AT_DCACHEBSIZE	10	/* Data cache block size */
577 #define	AT_ICACHEBSIZE	11	/* Instruction cache block size */
578 #define	AT_UCACHEBSIZE	12	/* Unified cache block size */
579 
580 	/* Vendor specific */
581 #define	AT_MIPS_NOTELF	10	/* XXX a_val != 0 -> MIPS XCOFF executable */
582 
583 #define	AT_SUN_UID	2000	/* euid */
584 #define	AT_SUN_RUID	2001	/* ruid */
585 #define	AT_SUN_GID	2002	/* egid */
586 #define	AT_SUN_RGID	2003	/* rgid */
587 
588 	/* Solaris kernel specific */
589 #define	AT_SUN_LDELF	2004	/* dynamic linker's ELF header */
590 #define	AT_SUN_LDSHDR	2005	/* dynamic linker's section header */
591 #define	AT_SUN_LDNAME	2006	/* dynamic linker's name */
592 #define	AT_SUN_LPGSIZE	2007	/* large pagesize */
593 
594 	/* Other information */
595 #define	AT_SUN_PLATFORM	2008	/* sysinfo(SI_PLATFORM) */
596 #define	AT_SUN_HWCAP	2009	/* process hardware capabilities */
597 #define	AT_SUN_IFLUSH	2010	/* do we need to flush the instruction cache? */
598 #define	AT_SUN_CPU	2011	/* CPU name */
599 	/* ibcs2 emulation band aid */
600 #define	AT_SUN_EMUL_ENTRY 2012	/* coff entry point */
601 #define	AT_SUN_EMUL_EXECFD 2013	/* coff file descriptor */
602 	/* Executable's fully resolved name */
603 #define	AT_SUN_EXECNAME	2014
604 
605 /*
606  * Note Headers
607  */
608 typedef struct {
609 	Elf32_Word n_namesz;
610 	Elf32_Word n_descsz;
611 	Elf32_Word n_type;
612 } Elf32_Nhdr;
613 
614 typedef struct {
615 	Elf64_Word n_namesz;
616 	Elf64_Word n_descsz;
617 	Elf64_Word n_type;
618 } Elf64_Nhdr;
619 
620 #define	ELF_NOTE_TYPE_ABI_TAG		1
621 
622 /* GNU-specific note name and description sizes */
623 #define	ELF_NOTE_ABI_NAMESZ		4
624 #define	ELF_NOTE_ABI_DESCSZ		16
625 /* GNU-specific note name */
626 #define	ELF_NOTE_ABI_NAME		"GNU\0"
627 
628 /* GNU-specific OS/version value stuff */
629 #define	ELF_NOTE_ABI_OS_LINUX		0
630 #define	ELF_NOTE_ABI_OS_HURD		1
631 #define	ELF_NOTE_ABI_OS_SOLARIS		2
632 
633 /* NetBSD-specific note type: Emulation name.  desc is emul name string. */
634 #define	ELF_NOTE_TYPE_NETBSD_TAG	1
635 
636 /* NetBSD-specific note name and description sizes */
637 #define	ELF_NOTE_NETBSD_NAMESZ		7
638 #define	ELF_NOTE_NETBSD_DESCSZ		4
639 /* NetBSD-specific note name */
640 #define	ELF_NOTE_NETBSD_NAME		"NetBSD\0\0"
641 
642 /*
643  * NetBSD-specific core file information.
644  *
645  * NetBSD ELF core files use notes to provide information about
646  * the process's state.  The note name is "NetBSD-CORE" for
647  * information that is global to the process, and "NetBSD-CORE@nn",
648  * where "nn" is the lwpid of the LWP that the information belongs
649  * to (such as register state).
650  *
651  * We use the following note identifiers:
652  *
653  *	ELF_NOTE_NETBSD_CORE_PROCINFO
654  *		Note is a "netbsd_elfcore_procinfo" structure.
655  *
656  * We also use ptrace(2) request numbers (the ones that exist in
657  * machine-dependent space) to identify register info notes.  The
658  * info in such notes is in the same format that ptrace(2) would
659  * export that information.
660  *
661  * Please try to keep the members of this structure nicely aligned,
662  * and if you add elements, add them to the end and bump the version.
663  */
664 
665 #define	ELF_NOTE_NETBSD_CORE_NAME	"NetBSD-CORE"
666 
667 #define	ELF_NOTE_NETBSD_CORE_PROCINFO	1
668 
669 #define	NETBSD_ELFCORE_PROCINFO_VERSION	1
670 
671 struct netbsd_elfcore_procinfo {
672 	/* Version 1 fields start here. */
673 	uint32_t	cpi_version;	/* netbsd_elfcore_procinfo version */
674 	uint32_t	cpi_cpisize;	/* sizeof(netbsd_elfcore_procinfo) */
675 	uint32_t	cpi_signo;	/* killing signal */
676 	uint32_t	cpi_sigcode;	/* signal code */
677 	uint32_t	cpi_sigpend[4];	/* pending signals */
678 	uint32_t	cpi_sigmask[4];	/* blocked signals */
679 	uint32_t	cpi_sigignore[4];/* blocked signals */
680 	uint32_t	cpi_sigcatch[4];/* blocked signals */
681 	int32_t		cpi_pid;	/* process ID */
682 	int32_t		cpi_ppid;	/* parent process ID */
683 	int32_t		cpi_pgrp;	/* process group ID */
684 	int32_t		cpi_sid;	/* session ID */
685 	uint32_t	cpi_ruid;	/* real user ID */
686 	uint32_t	cpi_euid;	/* effective user ID */
687 	uint32_t	cpi_svuid;	/* saved user ID */
688 	uint32_t	cpi_rgid;	/* real group ID */
689 	uint32_t	cpi_egid;	/* effective group ID */
690 	uint32_t	cpi_svgid;	/* saved group ID */
691 	uint32_t	cpi_nlwps;	/* number of LWPs */
692 	int8_t		cpi_name[32];	/* copy of p->p_comm */
693 	/* Add version 2 fields below here. */
694 };
695 
696 #if defined(ELFSIZE)
697 #define	CONCAT(x,y)	__CONCAT(x,y)
698 #define	ELFNAME(x)	CONCAT(elf,CONCAT(ELFSIZE,CONCAT(_,x)))
699 #define	ELFNAME2(x,y)	CONCAT(x,CONCAT(_elf,CONCAT(ELFSIZE,CONCAT(_,y))))
700 #define	ELFNAMEEND(x)	CONCAT(x,CONCAT(_elf,ELFSIZE))
701 #define	ELFDEFNNAME(x)	CONCAT(ELF,CONCAT(ELFSIZE,CONCAT(_,x)))
702 #endif
703 
704 #if defined(ELFSIZE) && (ELFSIZE == 32)
705 #define	Elf_Ehdr	Elf32_Ehdr
706 #define	Elf_Phdr	Elf32_Phdr
707 #define	Elf_Shdr	Elf32_Shdr
708 #define	Elf_Sym		Elf32_Sym
709 #define	Elf_Rel		Elf32_Rel
710 #define	Elf_Rela	Elf32_Rela
711 #define	Elf_Dyn		Elf32_Dyn
712 #define	Elf_Word	Elf32_Word
713 #define	Elf_Sword	Elf32_Sword
714 #define	Elf_Addr	Elf32_Addr
715 #define	Elf_Off		Elf32_Off
716 #define	Elf_Nhdr	Elf32_Nhdr
717 
718 #define	ELF_R_SYM	ELF32_R_SYM
719 #define	ELF_R_TYPE	ELF32_R_TYPE
720 #define	ELFCLASS	ELFCLASS32
721 
722 #define	ELF_ST_BIND	ELF32_ST_BIND
723 #define	ELF_ST_TYPE	ELF32_ST_TYPE
724 #define	ELF_ST_INFO	ELF32_ST_INFO
725 
726 #define	AuxInfo		Aux32Info
727 #elif defined(ELFSIZE) && (ELFSIZE == 64)
728 #define	Elf_Ehdr	Elf64_Ehdr
729 #define	Elf_Phdr	Elf64_Phdr
730 #define	Elf_Shdr	Elf64_Shdr
731 #define	Elf_Sym		Elf64_Sym
732 #define	Elf_Rel		Elf64_Rel
733 #define	Elf_Rela	Elf64_Rela
734 #define	Elf_Dyn		Elf64_Dyn
735 #define	Elf_Word	Elf64_Word
736 #define	Elf_Sword	Elf64_Sword
737 #define	Elf_Addr	Elf64_Addr
738 #define	Elf_Off		Elf64_Off
739 #define	Elf_Nhdr	Elf64_Nhdr
740 
741 #define	ELF_R_SYM	ELF64_R_SYM
742 #define	ELF_R_TYPE	ELF64_R_TYPE
743 #define	ELFCLASS	ELFCLASS64
744 
745 #define	ELF_ST_BIND	ELF64_ST_BIND
746 #define	ELF_ST_TYPE	ELF64_ST_TYPE
747 #define	ELF_ST_INFO	ELF64_ST_INFO
748 
749 #define	AuxInfo		Aux64Info
750 #endif
751 
752 #ifdef _KERNEL
753 
754 #define ELF_AUX_ENTRIES	8		/* Size of aux array passed to loader */
755 #define ELF32_NO_ADDR	(~(Elf32_Addr)0) /* Indicates addr. not yet filled in */
756 #define ELF64_NO_ADDR	(~(Elf64_Addr)0) /* Indicates addr. not yet filled in */
757 
758 #if defined(ELFSIZE) && (ELFSIZE == 64)
759 #define ELF_NO_ADDR	ELF64_NO_ADDR
760 #elif defined(ELFSIZE) && (ELFSIZE == 32)
761 #define ELF_NO_ADDR	ELF32_NO_ADDR
762 #endif
763 
764 #if defined(ELFSIZE)
765 struct elf_args {
766         Elf_Addr  arg_entry;      /* program entry point */
767         Elf_Addr  arg_interp;     /* Interpreter load address */
768         Elf_Addr  arg_phaddr;     /* program header address */
769         Elf_Addr  arg_phentsize;  /* Size of program header */
770         Elf_Addr  arg_phnum;      /* Number of program headers */
771 };
772 #endif
773 
774 #ifndef _LKM
775 #include "opt_execfmt.h"
776 #endif
777 
778 #ifdef EXEC_ELF32
779 int	exec_elf32_makecmds __P((struct proc *, struct exec_package *));
780 int	elf32_copyargs __P((struct exec_package *, struct ps_strings *,
781     char **, void *));
782 
783 int	coredump_elf32 __P((struct proc *, struct vnode *, struct ucred *));
784 int	coredump_writenote_elf32 __P((struct proc *, struct vnode *,
785 	    struct ucred *, off_t, Elf32_Nhdr *, const char *, void *));
786 #endif
787 
788 #ifdef EXEC_ELF64
789 int	exec_elf64_makecmds __P((struct proc *, struct exec_package *));
790 int	elf64_read_from __P((struct proc *, struct vnode *, u_long,
791     caddr_t, int));
792 int	elf64_copyargs __P((struct exec_package *, struct ps_strings *,
793     char **, void *));
794 
795 int	coredump_elf64 __P((struct proc *, struct vnode *, struct ucred *));
796 int	coredump_writenote_elf64 __P((struct proc *, struct vnode *,
797 	    struct ucred *, off_t, Elf64_Nhdr *, const char *, void *));
798 #endif
799 
800 /* common */
801 int	exec_elf_setup_stack __P((struct proc *, struct exec_package *));
802 
803 #endif /* _KERNEL */
804 
805 #endif /* !_SYS_EXEC_ELF_H_ */
806