Home | History | Annotate | Line # | Download | only in libtos
exec_elf.h revision 1.6.8.1
      1  1.6.8.1   yamt /*	$NetBSD: exec_elf.h,v 1.6.8.1 2014/05/22 11:39:35 yamt Exp $	*/
      2      1.1    leo 
      3      1.1    leo /*-
      4      1.1    leo  * Copyright (c) 1994 The NetBSD Foundation, Inc.
      5      1.1    leo  * All rights reserved.
      6      1.1    leo  *
      7      1.1    leo  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1    leo  * by Christos Zoulas.
      9      1.1    leo  *
     10      1.1    leo  * Redistribution and use in source and binary forms, with or without
     11      1.1    leo  * modification, are permitted provided that the following conditions
     12      1.1    leo  * are met:
     13      1.1    leo  * 1. Redistributions of source code must retain the above copyright
     14      1.1    leo  *    notice, this list of conditions and the following disclaimer.
     15      1.1    leo  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1    leo  *    notice, this list of conditions and the following disclaimer in the
     17      1.1    leo  *    documentation and/or other materials provided with the distribution.
     18      1.1    leo  *
     19      1.1    leo  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20      1.1    leo  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21      1.1    leo  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22      1.1    leo  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23      1.1    leo  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24      1.1    leo  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25      1.1    leo  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26      1.1    leo  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27      1.1    leo  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28      1.1    leo  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29      1.1    leo  * POSSIBILITY OF SUCH DAMAGE.
     30      1.1    leo  */
     31      1.1    leo 
     32      1.2    leo #ifndef _LIBTOS_EXEC_ELF_H_
     33      1.2    leo #define	_LIBTOS_EXEC_ELF_H_
     34      1.1    leo 
     35      1.1    leo /*
     36      1.1    leo  * The current ELF ABI specification is available at:
     37      1.1    leo  *	http://www.sco.com/developer/gabi/
     38      1.1    leo  *
     39      1.1    leo  * Current header definitions are in:
     40      1.1    leo  *	http://www.sco.com/developer/gabi/latest/ch4.eheader.html
     41      1.1    leo  */
     42      1.1    leo 
     43      1.1    leo /*
     44      1.1    leo  * Leo 10/10/2001:
     45      1.1    leo  *   This is a copy of the file in sys/sys, but modified a bit to
     46      1.1    leo  *   be used in a TOS/MiNT environment. I will probably trim it down
     47      1.1    leo  *   in the near future. It is only used for loading kernels.
     48      1.1    leo  */
     49      1.1    leo #ifdef TOSTOOLS
     50      1.1    leo typedef	signed char		 __int8_t;
     51      1.1    leo typedef	unsigned char		__uint8_t;
     52      1.1    leo typedef	short int		__int16_t;
     53      1.1    leo typedef	unsigned short int     __uint16_t;
     54      1.1    leo typedef	int			__int32_t;
     55      1.1    leo typedef	unsigned int	       __uint32_t;
     56      1.1    leo typedef	long long int		__int64_t;
     57      1.1    leo typedef	unsigned long long int __uint64_t;
     58      1.1    leo #else
     59      1.1    leo #include <machine/int_types.h>
     60      1.1    leo #endif /* TOSTOOLS */
     61      1.1    leo 
     62      1.1    leo typedef	__uint8_t  	Elf_Byte;
     63      1.1    leo 
     64      1.1    leo typedef	__uint32_t	Elf32_Addr;
     65      1.1    leo #define	ELF32_FSZ_ADDR	4
     66      1.1    leo typedef	__uint32_t Elf32_Off;
     67      1.1    leo #define	ELF32_FSZ_OFF	4
     68      1.1    leo typedef	__int32_t   Elf32_Sword;
     69      1.1    leo #define	ELF32_FSZ_SWORD	4
     70      1.1    leo typedef	__uint32_t Elf32_Word;
     71      1.1    leo #define	ELF32_FSZ_WORD	4
     72      1.1    leo typedef	__uint16_t Elf32_Half;
     73      1.1    leo #define	ELF32_FSZ_HALF	2
     74      1.1    leo 
     75      1.1    leo typedef	__uint64_t	Elf64_Addr;
     76      1.1    leo #define	ELF64_FSZ_ADDR	8
     77      1.1    leo typedef	__uint64_t	Elf64_Off;
     78      1.1    leo #define	ELF64_FSZ_OFF	8
     79      1.1    leo 
     80      1.1    leo #ifdef __alpha__
     81      1.1    leo typedef	__int64_t	Elf64_Sword;
     82      1.1    leo #define	ELF64_FSZ_SWORD	8
     83      1.1    leo typedef	__uint64_t	Elf64_Word;
     84      1.1    leo #define	ELF64_FSZ_WORD	8
     85      1.1    leo #else
     86      1.1    leo typedef	__int32_t	Elf64_Sword;
     87      1.1    leo #define	ELF64_FSZ_SWORD	4
     88      1.1    leo typedef	__uint32_t	Elf64_Word;
     89      1.1    leo #define	ELF64_FSZ_WORD	4
     90      1.1    leo #endif /* __alpha__ */
     91      1.1    leo 
     92      1.1    leo typedef	__int64_t	Elf64_Sxword;
     93      1.1    leo #define	ELF64_FSZ_XWORD	8
     94      1.1    leo typedef	__uint64_t	Elf64_Xword;
     95      1.1    leo #define	ELF64_FSZ_XWORD	8
     96      1.6  joerg typedef	__uint16_t	Elf64_Half;
     97      1.6  joerg #define	ELF64_FSZ_HALF 2
     98      1.1    leo 
     99      1.1    leo /*
    100      1.1    leo  * ELF Header
    101      1.1    leo  */
    102      1.1    leo #define	ELF_NIDENT	16
    103      1.1    leo 
    104      1.1    leo typedef struct {
    105      1.1    leo 	unsigned char	e_ident[ELF_NIDENT];	/* Id bytes */
    106      1.1    leo 	Elf32_Half	e_type;			/* file type */
    107      1.1    leo 	Elf32_Half	e_machine;		/* machine type */
    108      1.1    leo 	Elf32_Word	e_version;		/* version number */
    109      1.1    leo 	Elf32_Addr	e_entry;		/* entry point */
    110      1.1    leo 	Elf32_Off	e_phoff;		/* Program hdr offset */
    111      1.1    leo 	Elf32_Off	e_shoff;		/* Section hdr offset */
    112      1.1    leo 	Elf32_Word	e_flags;		/* Processor flags */
    113      1.1    leo 	Elf32_Half      e_ehsize;		/* sizeof ehdr */
    114      1.1    leo 	Elf32_Half      e_phentsize;		/* Program header entry size */
    115      1.1    leo 	Elf32_Half      e_phnum;		/* Number of program headers */
    116      1.1    leo 	Elf32_Half      e_shentsize;		/* Section header entry size */
    117      1.1    leo 	Elf32_Half      e_shnum;		/* Number of section headers */
    118      1.1    leo 	Elf32_Half      e_shstrndx;		/* String table index */
    119      1.1    leo } Elf32_Ehdr;
    120      1.1    leo 
    121      1.1    leo /* e_ident offsets */
    122      1.1    leo #define	EI_MAG0		0	/* '\177' */
    123      1.1    leo #define	EI_MAG1		1	/* 'E'    */
    124      1.1    leo #define	EI_MAG2		2	/* 'L'    */
    125      1.1    leo #define	EI_MAG3		3	/* 'F'    */
    126      1.1    leo #define	EI_CLASS	4	/* File class */
    127      1.1    leo #define	EI_DATA		5	/* Data encoding */
    128      1.1    leo #define	EI_VERSION	6	/* File version */
    129      1.1    leo #define	EI_OSABI	7	/* Operating system/ABI identification */
    130      1.1    leo #define	EI_ABIVERSION	8	/* ABI version */
    131      1.1    leo #define	EI_PAD		9	/* Start of padding bytes up to EI_NIDENT*/
    132      1.1    leo 
    133      1.1    leo /* e_ident[ELFMAG0,ELFMAG3] */
    134      1.1    leo #define	ELFMAG0		0x7f
    135      1.1    leo #define	ELFMAG1		'E'
    136      1.1    leo #define	ELFMAG2		'L'
    137      1.1    leo #define	ELFMAG3		'F'
    138      1.1    leo #define	ELFMAG		"\177ELF"
    139      1.1    leo #define	SELFMAG		4
    140      1.1    leo 
    141      1.1    leo /* e_ident[EI_CLASS] */
    142      1.1    leo #define	ELFCLASSNONE	0	/* Invalid class */
    143      1.1    leo #define	ELFCLASS32	1	/* 32-bit objects */
    144      1.1    leo #define	ELFCLASS64	2	/* 64-bit objects */
    145      1.1    leo #define	ELFCLASSNUM	3
    146      1.1    leo 
    147      1.1    leo /* e_ident[EI_DATA] */
    148      1.1    leo #define	ELFDATANONE	0	/* Invalid data encoding */
    149      1.1    leo #define	ELFDATA2LSB	1	/* 2's complement values, LSB first */
    150      1.1    leo #define	ELFDATA2MSB	2	/* 2's complement values, MSB first */
    151      1.1    leo 
    152      1.1    leo /* e_ident[EI_VERSION] */
    153      1.1    leo #define	EV_NONE		0	/* Invalid version */
    154      1.1    leo #define	EV_CURRENT	1	/* Current version */
    155      1.1    leo #define	EV_NUM		2
    156      1.1    leo 
    157      1.1    leo /* e_ident[EI_OSABI] */
    158      1.1    leo #define	ELFOSABI_SYSV		0	/* UNIX System V ABI */
    159      1.1    leo #define	ELFOSABI_HPUX		1	/* HP-UX operating system */
    160      1.1    leo #define ELFOSABI_NETBSD		2	/* NetBSD */
    161      1.1    leo #define ELFOSABI_LINUX		3	/* GNU/Linux */
    162      1.1    leo #define ELFOSABI_HURD		4	/* GNU/Hurd */
    163      1.1    leo #define ELFOSABI_86OPEN		5	/* 86Open */
    164      1.1    leo #define ELFOSABI_SOLARIS	6	/* Solaris */
    165      1.1    leo #define ELFOSABI_MONTEREY	7	/* Monterey */
    166      1.1    leo #define ELFOSABI_IRIX		8	/* IRIX */
    167      1.1    leo #define ELFOSABI_FREEBSD	9	/* FreeBSD */
    168      1.1    leo #define ELFOSABI_TRU64		10	/* TRU64 UNIX */
    169      1.1    leo #define ELFOSABI_MODESTO	11	/* Novell Modesto */
    170      1.1    leo #define ELFOSABI_OPENBSD	12	/* OpenBSD */
    171      1.1    leo /* Unofficial OSABIs follow */
    172      1.1    leo #define ELFOSABI_ARM		97	/* ARM */
    173      1.1    leo #define	ELFOSABI_STANDALONE	255	/* Standalone (embedded) application */
    174      1.1    leo 
    175      1.1    leo /* e_type */
    176      1.1    leo #define	ET_NONE		0	/* No file type */
    177      1.1    leo #define	ET_REL		1	/* Relocatable file */
    178      1.1    leo #define	ET_EXEC		2	/* Executable file */
    179      1.1    leo #define	ET_DYN		3	/* Shared object file */
    180      1.1    leo #define	ET_CORE		4	/* Core file */
    181      1.1    leo #define	ET_NUM		5
    182      1.1    leo 
    183      1.1    leo #define	ET_LOOS		0xfe00	/* Operating system specific range */
    184      1.1    leo #define	ET_HIOS		0xfeff
    185      1.1    leo #define	ET_LOPROC	0xff00	/* Processor-specific range */
    186      1.1    leo #define	ET_HIPROC	0xffff
    187      1.1    leo 
    188      1.1    leo /* e_machine */
    189      1.1    leo #define	EM_NONE		0	/* No machine */
    190      1.1    leo #define	EM_M32		1	/* AT&T WE 32100 */
    191      1.1    leo #define	EM_SPARC	2	/* SPARC */
    192      1.1    leo #define	EM_386		3	/* Intel 80386 */
    193      1.1    leo #define	EM_68K		4	/* Motorola 68000 */
    194      1.1    leo #define	EM_88K		5	/* Motorola 88000 */
    195      1.1    leo #define	EM_486		6	/* Intel 80486 */
    196      1.1    leo #define	EM_860		7	/* Intel 80860 */
    197      1.1    leo #define	EM_MIPS		8	/* MIPS I Architecture */
    198      1.1    leo #define	EM_S370		9	/* Amdahl UTS on System/370 */
    199      1.1    leo #define	EM_MIPS_RS3_LE	10	/* MIPS RS3000 Little-endian */
    200      1.1    leo 			/* 11-14 - Reserved */
    201      1.1    leo #define	EM_RS6000	11	/* IBM RS/6000 XXX reserved */
    202      1.1    leo #define	EM_PARISC	15	/* Hewlett-Packard PA-RISC */
    203      1.1    leo #define	EM_NCUBE	16	/* NCube XXX reserved */
    204      1.1    leo #define	EM_VPP500	17	/* Fujitsu VPP500 */
    205      1.1    leo #define	EM_SPARC32PLUS	18	/* Enhanced instruction set SPARC */
    206      1.1    leo #define	EM_960		19	/* Intel 80960 */
    207      1.1    leo #define	EM_PPC		20	/* PowerPC */
    208      1.1    leo #define	EM_PPC64	21	/* 64-bit PowerPC */
    209      1.1    leo 			/* 22-35 - Reserved */
    210      1.1    leo #define	EM_V800		36	/* NEC V800 */
    211      1.1    leo #define	EM_FR20		37	/* Fujitsu FR20 */
    212      1.1    leo #define	EM_RH32		38	/* TRW RH-32 */
    213      1.1    leo #define	EM_RCE		39	/* Motorola RCE */
    214      1.1    leo #define	EM_ARM		40	/* Advanced RISC Machines ARM */
    215      1.1    leo #define	EM_ALPHA	41	/* DIGITAL Alpha */
    216      1.1    leo #define	EM_SH		42	/* Hitachi Super-H */
    217      1.1    leo #define	EM_SPARCV9	43	/* SPARC Version 9 */
    218      1.1    leo #define	EM_TRICORE	44	/* Siemens Tricore */
    219      1.1    leo #define	EM_ARC		45	/* Argonaut RISC Core */
    220      1.1    leo #define	EM_H8_300	46	/* Hitachi H8/300 */
    221      1.1    leo #define	EM_H8_300H	47	/* Hitachi H8/300H */
    222      1.1    leo #define	EM_H8S		48	/* Hitachi H8S */
    223      1.1    leo #define	EM_H8_500	49	/* Hitachi H8/500 */
    224      1.1    leo #define	EM_IA_64	50	/* Intel Merced Processor */
    225      1.1    leo #define	EM_MIPS_X	51	/* Stanford MIPS-X */
    226      1.1    leo #define	EM_COLDFIRE	52	/* Motorola Coldfire */
    227      1.1    leo #define	EM_68HC12	53	/* Motorola MC68HC12 */
    228      1.1    leo #define	EM_MMA		54	/* Fujitsu MMA Multimedia Accelerator */
    229      1.1    leo #define	EM_PCP		55	/* Siemens PCP */
    230      1.1    leo #define	EM_NCPU		56	/* Sony nCPU embedded RISC processor */
    231      1.1    leo #define	EM_NDR1		57	/* Denso NDR1 microprocessor */
    232      1.1    leo #define	EM_STARCORE	58	/* Motorola Star*Core processor */
    233      1.1    leo #define	EM_ME16		59	/* Toyota ME16 processor */
    234      1.1    leo #define	EM_ST100	60	/* STMicroelectronics ST100 processor */
    235      1.1    leo #define	EM_TINYJ	61	/* Advanced Logic Corp. TinyJ embedded family processor */
    236      1.1    leo #define	EM_X86_64	62	/* AMD x86-64 architecture */
    237      1.1    leo #define	EM_PDSP		63	/* Sony DSP Processor */
    238      1.1    leo 			/* 64-65 - Reserved */
    239      1.1    leo #define	EM_FX66		66	/* Siemens FX66 microcontroller */
    240      1.1    leo #define	EM_ST9PLUS	67	/* STMicroelectronics ST9+ 8/16 bit microcontroller */
    241      1.1    leo #define	EM_ST7		68	/* STMicroelectronics ST7 8-bit microcontroller */
    242      1.1    leo #define	EM_68HC16	69	/* Motorola MC68HC16 Microcontroller */
    243      1.1    leo #define	EM_68HC11	70	/* Motorola MC68HC11 Microcontroller */
    244      1.1    leo #define	EM_68HC08	71	/* Motorola MC68HC08 Microcontroller */
    245      1.1    leo #define	EM_68HC05	72	/* Motorola MC68HC05 Microcontroller */
    246      1.1    leo #define	EM_SVX		73	/* Silicon Graphics SVx */
    247      1.3    wiz #define	EM_ST19		74	/* STMicroelectronics ST19 8-bit CPU */
    248      1.1    leo #define	EM_VAX		75	/* Digital VAX */
    249      1.1    leo #define	EM_CRIS		76	/* Axis Communications 32-bit embedded processor */
    250      1.3    wiz #define	EM_JAVELIN	77	/* Infineon Technologies 32-bit embedded CPU */
    251      1.1    leo #define	EM_FIREPATH	78	/* Element 14 64-bit DSP processor */
    252      1.1    leo #define	EM_ZSP		79	/* LSI Logic's 16-bit DSP processor */
    253      1.1    leo #define	EM_MMIX		80	/* Donald Knuth's educational 64-bit processor */
    254      1.1    leo #define	EM_HUANY	81	/* Harvard's machine-independent format */
    255      1.1    leo #define	EM_PRISM	82	/* SiTera Prism */
    256      1.1    leo #define	EM_AVR		83	/* Atmel AVR 8-bit microcontroller */
    257      1.1    leo #define	EM_FR30		84	/* Fujitsu FR30 */
    258      1.1    leo #define	EM_D10V		85	/* Mitsubishi D10V */
    259      1.1    leo #define	EM_D30V		86	/* Mitsubishi D30V */
    260      1.1    leo #define	EM_V850		87	/* NEC v850 */
    261      1.1    leo #define	EM_M32R		88	/* Mitsubishi M32R */
    262      1.1    leo #define	EM_MN10300	89	/* Matsushita MN10300 */
    263      1.1    leo #define	EM_MN10200	90	/* Matsushita MN10200 */
    264      1.1    leo #define	EM_PJ		91	/* picoJava */
    265      1.1    leo #define	EM_OPENRISC	92	/* OpenRISC 32-bit embedded processor */
    266      1.1    leo #define	EM_ARC_A5	93	/* ARC Cores Tangent-A5 */
    267      1.1    leo #define	EM_XTENSA	94	/* Tensilica Xtensa Architecture */
    268      1.1    leo /* Unofficial machine types follow */
    269      1.1    leo #define	EM_ALPHA_EXP	36902	/* used by NetBSD/alpha; obsolete */
    270      1.1    leo #define	EM_NUM		36903
    271      1.1    leo 
    272      1.1    leo /*
    273      1.1    leo  * Program Header
    274      1.1    leo  */
    275      1.1    leo typedef struct {
    276      1.1    leo 	Elf32_Word	p_type;		/* entry type */
    277      1.1    leo 	Elf32_Off	p_offset;	/* offset */
    278      1.1    leo 	Elf32_Addr	p_vaddr;	/* virtual address */
    279      1.1    leo 	Elf32_Addr	p_paddr;	/* physical address */
    280      1.1    leo 	Elf32_Word	p_filesz;	/* file size */
    281      1.1    leo 	Elf32_Word	p_memsz;	/* memory size */
    282      1.1    leo 	Elf32_Word	p_flags;	/* flags */
    283      1.1    leo 	Elf32_Word	p_align;	/* memory & file alignment */
    284      1.1    leo } Elf32_Phdr;
    285      1.1    leo 
    286      1.1    leo /* p_type */
    287      1.1    leo #define	PT_NULL		0		/* Program header table entry unused */
    288      1.1    leo #define	PT_LOAD		1		/* Loadable program segment */
    289      1.1    leo #define	PT_DYNAMIC	2		/* Dynamic linking information */
    290      1.1    leo #define	PT_INTERP	3		/* Program interpreter */
    291      1.1    leo #define	PT_NOTE		4		/* Auxiliary information */
    292      1.1    leo #define	PT_SHLIB	5		/* Reserved, unspecified semantics */
    293      1.1    leo #define	PT_PHDR		6		/* Entry for header table itself */
    294      1.1    leo #define	PT_NUM		7
    295      1.1    leo 
    296      1.1    leo /* p_flags */
    297      1.1    leo #define	PF_R		0x4	/* Segment is readable */
    298      1.1    leo #define	PF_W		0x2	/* Segment is writable */
    299      1.1    leo #define	PF_X		0x1	/* Segment is executable */
    300      1.1    leo 
    301      1.1    leo #define	PF_MASKOS	0x0ff00000	/* Opersting system specific values */
    302      1.1    leo #define	PF_MASKPROC	0xf0000000	/* Processor-specific values */
    303      1.1    leo 
    304      1.1    leo #define	PT_LOPROC	0x70000000	/* Processor-specific range */
    305      1.1    leo #define	PT_HIPROC	0x7fffffff
    306      1.1    leo 
    307      1.1    leo #define	PT_MIPS_REGINFO	0x70000000
    308      1.1    leo 
    309      1.1    leo /*
    310      1.1    leo  * Section Headers
    311      1.1    leo  */
    312      1.1    leo typedef struct {
    313      1.1    leo 	Elf32_Word	sh_name;	/* section name (.shstrtab index) */
    314      1.1    leo 	Elf32_Word	sh_type;	/* section type */
    315      1.1    leo 	Elf32_Word	sh_flags;	/* section flags */
    316      1.1    leo 	Elf32_Addr	sh_addr;	/* virtual address */
    317      1.1    leo 	Elf32_Off	sh_offset;	/* file offset */
    318      1.1    leo 	Elf32_Word	sh_size;	/* section size */
    319      1.1    leo 	Elf32_Word	sh_link;	/* link to another */
    320      1.1    leo 	Elf32_Word	sh_info;	/* misc info */
    321      1.1    leo 	Elf32_Word	sh_addralign;	/* memory alignment */
    322      1.1    leo 	Elf32_Word	sh_entsize;	/* table entry size */
    323      1.1    leo } Elf32_Shdr;
    324      1.1    leo 
    325      1.1    leo /* sh_type */
    326      1.1    leo #define	SHT_NULL	0		/* Section header table entry unused */
    327      1.1    leo #define	SHT_PROGBITS	1		/* Program information */
    328      1.1    leo #define	SHT_SYMTAB	2		/* Symbol table */
    329      1.1    leo #define	SHT_STRTAB	3		/* String table */
    330      1.1    leo #define	SHT_RELA	4		/* Relocation information w/ addend */
    331      1.1    leo #define	SHT_HASH	5		/* Symbol hash table */
    332      1.1    leo #define	SHT_DYNAMIC	6		/* Dynamic linking information */
    333      1.1    leo #define	SHT_NOTE	7		/* Auxiliary information */
    334      1.1    leo #define	SHT_NOBITS	8		/* No space allocated in file image */
    335      1.1    leo #define	SHT_REL		9		/* Relocation information w/o addend */
    336      1.1    leo #define	SHT_SHLIB	10		/* Reserved, unspecified semantics */
    337      1.1    leo #define	SHT_DYNSYM	11		/* Symbol table for dynamic linker */
    338      1.1    leo #define	SHT_NUM		12
    339      1.1    leo 
    340      1.1    leo #define	SHT_LOOS	0x60000000	/* Operating system specific range */
    341      1.1    leo #define	SHT_HIOS	0x6fffffff
    342      1.1    leo #define	SHT_LOPROC	0x70000000	/* Processor-specific range */
    343      1.1    leo #define	SHT_HIPROC	0x7fffffff
    344      1.1    leo #define	SHT_LOUSER	0x80000000	/* Application-specific range */
    345      1.1    leo #define	SHT_HIUSER	0xffffffff
    346      1.1    leo 
    347      1.1    leo /* sh_flags */
    348      1.1    leo #define	SHF_WRITE	0x1		/* Section contains writable data */
    349      1.1    leo #define	SHF_ALLOC	0x2		/* Section occupies memory */
    350      1.1    leo #define	SHF_EXECINSTR	0x4		/* Section contains executable insns */
    351      1.1    leo 
    352      1.1    leo #define	SHF_MASKOS	0x0f000000	/* Operating system specific values */
    353      1.1    leo #define	SHF_MASKPROC	0xf0000000	/* Processor-specific values */
    354      1.1    leo 
    355      1.1    leo /*
    356      1.1    leo  * Symbol Table
    357      1.1    leo  */
    358      1.1    leo typedef struct {
    359      1.1    leo 	Elf32_Word	st_name;	/* Symbol name (.symtab index) */
    360      1.1    leo 	Elf32_Word	st_value;	/* value of symbol */
    361      1.1    leo 	Elf32_Word	st_size;	/* size of symbol */
    362      1.1    leo 	Elf_Byte	st_info;	/* type / binding attrs */
    363      1.1    leo 	Elf_Byte	st_other;	/* unused */
    364      1.1    leo 	Elf32_Half	st_shndx;	/* section index of symbol */
    365      1.1    leo } Elf32_Sym;
    366      1.1    leo 
    367      1.1    leo /* Symbol Table index of the undefined symbol */
    368      1.1    leo #define	ELF_SYM_UNDEFINED	0
    369      1.1    leo 
    370      1.1    leo /* st_info: Symbol Bindings */
    371      1.1    leo #define	STB_LOCAL		0	/* local symbol */
    372      1.1    leo #define	STB_GLOBAL		1	/* global symbol */
    373      1.1    leo #define	STB_WEAK		2	/* weakly defined global symbol */
    374      1.1    leo #define	STB_NUM			3
    375      1.1    leo 
    376      1.1    leo #define	STB_LOOS		10	/* Operating system specific range */
    377      1.1    leo #define	STB_HIOS		12
    378      1.1    leo #define	STB_LOPROC		13	/* Processor-specific range */
    379      1.1    leo #define	STB_HIPROC		15
    380      1.1    leo 
    381      1.1    leo /* st_info: Symbol Types */
    382      1.1    leo #define	STT_NOTYPE		0	/* Type not specified */
    383      1.1    leo #define	STT_OBJECT		1	/* Associated with a data object */
    384      1.1    leo #define	STT_FUNC		2	/* Associated with a function */
    385      1.1    leo #define	STT_SECTION		3	/* Associated with a section */
    386      1.1    leo #define	STT_FILE		4	/* Associated with a file name */
    387      1.1    leo #define	STT_NUM			5
    388      1.1    leo 
    389      1.1    leo #define	STT_LOOS		10	/* Operating system specific range */
    390      1.1    leo #define	STT_HIOS		12
    391      1.1    leo #define	STT_LOPROC		13	/* Processor-specific range */
    392      1.1    leo #define	STT_HIPROC		15
    393      1.1    leo 
    394      1.1    leo /* st_info utility macros */
    395      1.1    leo #define	ELF32_ST_BIND(info)		((Elf32_Word)(info) >> 4)
    396      1.1    leo #define	ELF32_ST_TYPE(info)		((Elf32_Word)(info) & 0xf)
    397      1.1    leo #define	ELF32_ST_INFO(bind,type)	((Elf_Byte)(((bind) << 4) | ((type) & 0xf)))
    398      1.1    leo 
    399      1.1    leo /*
    400      1.1    leo  * Special section indexes
    401      1.1    leo  */
    402      1.1    leo #define	SHN_UNDEF	0		/* Undefined section */
    403      1.1    leo 
    404      1.1    leo #define	SHN_LORESERVE	0xff00		/* Reserved range */
    405      1.1    leo #define	SHN_ABS		0xfff1		/*  Absolute symbols */
    406      1.1    leo #define	SHN_COMMON	0xfff2		/*  Common symbols */
    407      1.1    leo #define	SHN_HIRESERVE	0xffff
    408      1.1    leo 
    409      1.1    leo #define	SHN_LOPROC	0xff00		/* Processor-specific range */
    410      1.1    leo #define	SHN_HIPROC	0xff1f
    411      1.1    leo #define	SHN_LOOS	0xff20		/* Operating system specific range */
    412      1.1    leo #define	SHN_HIOS	0xff3f
    413      1.1    leo 
    414      1.1    leo #define	SHN_MIPS_ACOMMON 0xff00
    415      1.1    leo #define	SHN_MIPS_TEXT	0xff01
    416      1.1    leo #define	SHN_MIPS_DATA	0xff02
    417      1.1    leo #define	SHN_MIPS_SCOMMON 0xff03
    418      1.1    leo 
    419      1.1    leo /*
    420      1.1    leo  * Relocation Entries
    421      1.1    leo  */
    422      1.1    leo typedef struct {
    423      1.1    leo 	Elf32_Word	r_offset;	/* where to do it */
    424      1.1    leo 	Elf32_Word	r_info;		/* index & type of relocation */
    425      1.1    leo } Elf32_Rel;
    426      1.1    leo 
    427      1.1    leo typedef struct {
    428      1.1    leo 	Elf32_Word	r_offset;	/* where to do it */
    429      1.1    leo 	Elf32_Word	r_info;		/* index & type of relocation */
    430      1.1    leo 	Elf32_Sword	r_addend;	/* adjustment value */
    431      1.1    leo } Elf32_Rela;
    432      1.1    leo 
    433      1.1    leo /* r_info utility macros */
    434      1.1    leo #define	ELF32_R_SYM(info)	((info) >> 8)
    435      1.1    leo #define	ELF32_R_TYPE(info)	((info) & 0xff)
    436      1.1    leo #define	ELF32_R_INFO(sym, type)	(((sym) << 8) + (unsigned char)(type))
    437      1.1    leo 
    438      1.1    leo /*
    439      1.1    leo  * Dynamic Section structure array
    440      1.1    leo  */
    441      1.1    leo typedef struct {
    442      1.1    leo 	Elf32_Word	d_tag;		/* entry tag value */
    443      1.1    leo 	union {
    444      1.1    leo 	    Elf32_Addr	d_ptr;
    445      1.1    leo 	    Elf32_Word	d_val;
    446      1.1    leo 	} d_un;
    447      1.1    leo } Elf32_Dyn;
    448      1.1    leo 
    449      1.1    leo /* d_tag */
    450      1.1    leo #define	DT_NULL		0	/* Marks end of dynamic array */
    451      1.1    leo #define	DT_NEEDED	1	/* Name of needed library (DT_STRTAB offset) */
    452      1.1    leo #define	DT_PLTRELSZ	2	/* Size, in bytes, of relocations in PLT */
    453      1.1    leo #define	DT_PLTGOT	3	/* Address of PLT and/or GOT */
    454      1.1    leo #define	DT_HASH		4	/* Address of symbol hash table */
    455      1.1    leo #define	DT_STRTAB	5	/* Address of string table */
    456      1.1    leo #define	DT_SYMTAB	6	/* Address of symbol table */
    457      1.1    leo #define	DT_RELA		7	/* Address of Rela relocation table */
    458      1.1    leo #define	DT_RELASZ	8	/* Size, in bytes, of DT_RELA table */
    459      1.1    leo #define	DT_RELAENT	9	/* Size, in bytes, of one DT_RELA entry */
    460      1.1    leo #define	DT_STRSZ	10	/* Size, in bytes, of DT_STRTAB table */
    461      1.1    leo #define	DT_SYMENT	11	/* Size, in bytes, of one DT_SYMTAB entry */
    462      1.1    leo #define	DT_INIT		12	/* Address of initialization function */
    463      1.1    leo #define	DT_FINI		13	/* Address of termination function */
    464      1.1    leo #define	DT_SONAME	14	/* Shared object name (DT_STRTAB offset) */
    465      1.1    leo #define	DT_RPATH	15	/* Library search path (DT_STRTAB offset) */
    466      1.1    leo #define	DT_SYMBOLIC	16	/* Start symbol search within local object */
    467      1.1    leo #define	DT_REL		17	/* Address of Rel relocation table */
    468      1.1    leo #define	DT_RELSZ	18	/* Size, in bytes, of DT_REL table */
    469      1.1    leo #define	DT_RELENT	19	/* Size, in bytes, of one DT_REL entry */
    470      1.1    leo #define	DT_PLTREL	20 	/* Type of PLT relocation entries */
    471      1.1    leo #define	DT_DEBUG	21	/* Used for debugging; unspecified */
    472      1.1    leo #define	DT_TEXTREL	22	/* Relocations might modify non-writable seg */
    473      1.1    leo #define	DT_JMPREL	23	/* Address of relocations associated with PLT */
    474      1.1    leo #define	DT_BIND_NOW	24	/* Process all relocations at load-time */
    475      1.1    leo #define	DT_INIT_ARRAY	25	/* Address of initialization function array */
    476      1.1    leo #define	DT_FINI_ARRAY	26	/* Size, in bytes, of DT_INIT_ARRAY array */
    477      1.1    leo #define	DT_INIT_ARRAYSZ	27	/* Address of termination function array */
    478      1.1    leo #define	DT_FINI_ARRAYSZ	28	/* Size, in bytes, of DT_FINI_ARRAY array*/
    479      1.1    leo #define	DT_NUM		29
    480      1.1    leo 
    481      1.1    leo #define	DT_LOOS		0x60000000	/* Operating system specific range */
    482      1.1    leo #define	DT_HIOS		0x6fffffff
    483      1.1    leo #define	DT_LOPROC	0x70000000	/* Processor-specific range */
    484      1.1    leo #define	DT_HIPROC	0x7fffffff
    485      1.1    leo 
    486      1.1    leo /*
    487      1.1    leo  * Auxiliary Vectors
    488      1.1    leo  */
    489      1.1    leo typedef struct {
    490      1.1    leo 	Elf32_Word	a_type;				/* 32-bit id */
    491      1.1    leo 	Elf32_Word	a_v;				/* 32-bit id */
    492      1.1    leo } Aux32Info;
    493      1.1    leo 
    494      1.1    leo /* a_type */
    495      1.1    leo #define	AT_NULL		0	/* Marks end of array */
    496      1.1    leo #define	AT_IGNORE	1	/* No meaning, a_un is undefined */
    497      1.1    leo #define	AT_EXECFD	2	/* Open file descriptor of object file */
    498      1.1    leo #define	AT_PHDR		3	/* &phdr[0] */
    499      1.1    leo #define	AT_PHENT	4	/* sizeof(phdr[0]) */
    500      1.1    leo #define	AT_PHNUM	5	/* # phdr entries */
    501      1.1    leo #define	AT_PAGESZ	6	/* PAGESIZE */
    502      1.1    leo #define	AT_BASE		7	/* Interpreter base addr */
    503      1.1    leo #define	AT_FLAGS	8	/* Processor flags */
    504      1.1    leo #define	AT_ENTRY	9	/* Entry address of executable */
    505      1.1    leo #define	AT_DCACHEBSIZE	10	/* Data cache block size */
    506      1.1    leo #define	AT_ICACHEBSIZE	11	/* Instruction cache block size */
    507      1.1    leo #define	AT_UCACHEBSIZE	12	/* Unified cache block size */
    508      1.1    leo 
    509      1.1    leo 	/* Vendor specific */
    510      1.1    leo #define	AT_MIPS_NOTELF	10	/* XXX a_val != 0 -> MIPS XCOFF executable */
    511      1.1    leo 
    512      1.1    leo #define	AT_SUN_UID	2000	/* euid */
    513      1.1    leo #define	AT_SUN_RUID	2001	/* ruid */
    514      1.1    leo #define	AT_SUN_GID	2002	/* egid */
    515      1.1    leo #define	AT_SUN_RGID	2003	/* rgid */
    516      1.1    leo 
    517      1.1    leo 	/* Solaris kernel specific */
    518      1.1    leo #define	AT_SUN_LDELF	2004	/* dynamic linker's ELF header */
    519      1.1    leo #define	AT_SUN_LDSHDR	2005	/* dynamic linker's section header */
    520      1.1    leo #define	AT_SUN_LDNAME	2006	/* dynamic linker's name */
    521      1.1    leo #define	AT_SUN_LPGSIZE	2007	/* large pagesize */
    522      1.1    leo 
    523      1.1    leo 	/* Other information */
    524      1.1    leo #define	AT_SUN_PLATFORM	2008	/* sysinfo(SI_PLATFORM) */
    525      1.1    leo #define	AT_SUN_HWCAP	2009	/* process hardware capabilities */
    526      1.1    leo #define	AT_SUN_IFLUSH	2010	/* do we need to flush the instruction cache? */
    527      1.3    wiz #define	AT_SUN_CPU	2011	/* CPU name */
    528      1.1    leo 	/* ibcs2 emulation band aid */
    529      1.1    leo #define	AT_SUN_EMUL_ENTRY 2012	/* coff entry point */
    530      1.1    leo #define	AT_SUN_EMUL_EXECFD 2013	/* coff file descriptor */
    531      1.1    leo 	/* Executable's fully resolved name */
    532      1.1    leo #define	AT_SUN_EXECNAME	2014
    533      1.1    leo 
    534      1.1    leo /*
    535      1.1    leo  * Note Headers
    536      1.1    leo  */
    537      1.1    leo typedef struct {
    538      1.1    leo 	Elf32_Word n_namesz;
    539      1.1    leo 	Elf32_Word n_descsz;
    540      1.1    leo 	Elf32_Word n_type;
    541      1.1    leo } Elf32_Nhdr;
    542      1.1    leo 
    543      1.1    leo #define	ELF_NOTE_TYPE_ABI_TAG		1
    544      1.1    leo 
    545      1.1    leo /* GNU-specific note name and description sizes */
    546      1.1    leo #define	ELF_NOTE_ABI_NAMESZ		4
    547      1.1    leo #define	ELF_NOTE_ABI_DESCSZ		16
    548      1.1    leo /* GNU-specific note name */
    549      1.1    leo #define	ELF_NOTE_ABI_NAME		"GNU\0"
    550      1.1    leo 
    551      1.1    leo /* GNU-specific OS/version value stuff */
    552      1.1    leo #define	ELF_NOTE_ABI_OS_LINUX		0
    553      1.1    leo #define	ELF_NOTE_ABI_OS_HURD		1
    554      1.1    leo #define	ELF_NOTE_ABI_OS_SOLARIS		2
    555      1.1    leo 
    556      1.1    leo /* NetBSD-specific note type: Emulation name.  desc is emul name string. */
    557      1.1    leo #define	ELF_NOTE_TYPE_NETBSD_TAG	1
    558      1.1    leo 
    559      1.1    leo /* NetBSD-specific note name and description sizes */
    560      1.1    leo #define	ELF_NOTE_NETBSD_NAMESZ		7
    561      1.1    leo #define	ELF_NOTE_NETBSD_DESCSZ		4
    562      1.1    leo /* NetBSD-specific note name */
    563      1.1    leo #define	ELF_NOTE_NETBSD_NAME		"NetBSD\0\0"
    564      1.1    leo 
    565      1.1    leo #if defined(ELFSIZE)
    566      1.1    leo #define	CONCAT(x,y)	__CONCAT(x,y)
    567      1.1    leo #define	ELFNAME(x)	CONCAT(elf,CONCAT(ELFSIZE,CONCAT(_,x)))
    568      1.1    leo #define	ELFNAME2(x,y)	CONCAT(x,CONCAT(_elf,CONCAT(ELFSIZE,CONCAT(_,y))))
    569      1.1    leo #define	ELFNAMEEND(x)	CONCAT(x,CONCAT(_elf,ELFSIZE))
    570      1.1    leo #define	ELFDEFNNAME(x)	CONCAT(ELF,CONCAT(ELFSIZE,CONCAT(_,x)))
    571      1.1    leo #endif
    572      1.1    leo 
    573      1.1    leo /*
    574      1.1    leo  * Leo: This is actually from machine/elf_machdep.h
    575      1.1    leo  */
    576      1.1    leo #define	ELF32_MACHDEP_ENDIANNESS	ELFDATA2MSB
    577      1.1    leo #define	ELF32_MACHDEP_ID_CASES						\
    578      1.1    leo 		case EM_68K:						\
    579      1.1    leo 			break;
    580      1.1    leo 
    581      1.1    leo #define	ELF64_MACHDEP_ENDIANNESS	XXX	/* break compilation */
    582      1.1    leo #define	ELF64_MACHDEP_ID_CASES						\
    583      1.1    leo 		/* no 64-bit ELF machine types supported */
    584      1.1    leo 
    585      1.1    leo #define ARCH_ELFSIZE		32	/* MD native binary size */
    586      1.1    leo 
    587      1.1    leo /* m68k relocation types */
    588      1.1    leo #define	R_68K_NONE	0
    589      1.1    leo #define	R_68K_32	1
    590      1.1    leo #define	R_68K_16	2
    591      1.1    leo #define	R_68K_8		3
    592      1.1    leo #define	R_68K_PC32	4
    593      1.1    leo #define	R_68K_PC16	5
    594      1.1    leo #define	R_68K_PC8	6
    595      1.1    leo #define	R_68K_GOT32	7
    596      1.1    leo #define	R_68K_GOT16	8
    597      1.1    leo #define	R_68K_GOT8	9
    598      1.1    leo #define	R_68K_GOT32O	10
    599      1.1    leo #define	R_68K_GOT16O	11
    600      1.1    leo #define	R_68K_GOT8O	12
    601      1.1    leo #define	R_68K_PLT32	13
    602      1.1    leo #define	R_68K_PLT16	14
    603      1.1    leo #define	R_68K_PLT8	15
    604      1.1    leo #define	R_68K_PLT32O	16
    605      1.1    leo #define	R_68K_PLT16O	17
    606      1.1    leo #define	R_68K_PLT8O	18
    607      1.1    leo #define	R_68K_COPY	19
    608      1.1    leo #define	R_68K_GLOB_DAT	20
    609      1.1    leo #define	R_68K_JMP_SLOT	21
    610      1.1    leo #define	R_68K_RELATIVE	22
    611      1.1    leo 
    612      1.1    leo #define	R_TYPE(name)	__CONCAT(R_68K_,name)
    613      1.1    leo 
    614      1.1    leo #define	Elf_Ehdr	Elf32_Ehdr
    615      1.1    leo #define	Elf_Phdr	Elf32_Phdr
    616      1.1    leo #define	Elf_Shdr	Elf32_Shdr
    617      1.1    leo #define	Elf_Sym		Elf32_Sym
    618      1.1    leo #define	Elf_Rel		Elf32_Rel
    619      1.1    leo #define	Elf_Rela	Elf32_Rela
    620      1.1    leo #define	Elf_Dyn		Elf32_Dyn
    621      1.1    leo #define	Elf_Word	Elf32_Word
    622      1.1    leo #define	Elf_Sword	Elf32_Sword
    623      1.1    leo #define	Elf_Addr	Elf32_Addr
    624      1.1    leo #define	Elf_Off		Elf32_Off
    625      1.1    leo #define	Elf_Nhdr	Elf32_Nhdr
    626      1.1    leo 
    627      1.1    leo #define	ELF_R_SYM	ELF32_R_SYM
    628      1.1    leo #define	ELF_R_TYPE	ELF32_R_TYPE
    629      1.1    leo #define	ELFCLASS	ELFCLASS32
    630      1.1    leo 
    631      1.1    leo #define	ELF_ST_BIND	ELF32_ST_BIND
    632      1.1    leo #define	ELF_ST_TYPE	ELF32_ST_TYPE
    633      1.1    leo #define	ELF_ST_INFO	ELF32_ST_INFO
    634      1.1    leo 
    635      1.1    leo #define	AuxInfo		Aux32Info
    636      1.1    leo 
    637      1.2    leo #endif /* !_LIBTOS_EXEC_ELF_H_ */
    638