]>
git.saurik.com Git - apple/file_cmds.git/blob - file/readelf.h
adb8a66c93de3ab6fef32744199a4aa0196baea0
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
24 /* $OpenBSD: readelf.h,v 1.1 1997/02/09 23:58:34 millert Exp $ */
29 * Provide elf data structures for non-elf machines, allowing file
30 * non-elf hosts to determine if an elf binary is stripped.
31 * Note: cobbled from the linux header file, with modifications
33 #ifndef __fake_elf_h__
34 #define __fake_elf_h__
36 typedef unsigned int Elf32_Addr
;
37 typedef unsigned short Elf32_Half
;
38 typedef unsigned int Elf32_Off
;
39 typedef unsigned int Elf32_Word
;
40 typedef unsigned char Elf32_Char
;
42 /* XXX: We need 64 bit numbers here */
43 typedef unsigned int Elf64_Addr
[2];
44 typedef unsigned short Elf64_Half
;
45 typedef unsigned int Elf64_Off
[2];
46 typedef unsigned int Elf64_Word
;
47 typedef unsigned char Elf64_Char
;
52 Elf32_Char e_ident
[EI_NIDENT
];
56 Elf32_Addr e_entry
; /* Entry point */
61 Elf32_Half e_phentsize
;
63 Elf32_Half e_shentsize
;
65 Elf32_Half e_shstrndx
;
69 Elf64_Char e_ident
[EI_NIDENT
];
73 Elf64_Addr e_entry
; /* Entry point */
78 Elf64_Half e_phentsize
;
80 Elf64_Half e_shentsize
;
82 Elf64_Half e_shstrndx
;
94 #define ELFDATANONE 0 /* e_ident[EI_DATA] */
99 #define ELFCLASSNONE 0
104 #define EI_MAG0 0 /* e_ident[] indexes */
113 #define ELFMAG0 0x7f /* EI_MAG */
117 #define ELFMAG "\177ELF"
130 #define PT_NULL 0 /* p_type */
148 Elf32_Word sh_addralign
;
149 Elf32_Word sh_entsize
;
161 Elf64_Off sh_addralign
;
162 Elf64_Off sh_entsize
;
165 /* Notes used in ET_CORE */
166 #define NT_PRSTATUS 1
168 #define NT_PRPSINFO 3
169 #define NT_TASKSTRUCT 4
171 /* Note header in a PT_NOTE section */
172 typedef struct elf_note
{
173 Elf32_Word n_namesz
; /* Name size */
174 Elf32_Word n_descsz
; /* Content size */
175 Elf32_Word n_type
; /* Content type */
184 #define NT_PRSTATUS 1
186 #define NT_PRPSINFO 3
188 #define NT_PLATFORM 5