1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef __ELFDUMP_H 28 #define __ELFDUMP_H 29 30 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 #include <machelf.h> 33 #include <debug.h> 34 35 /* 36 * Local include file for elfdump. 37 */ 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 42 #define FLG_DYNAMIC 0x00000001 43 #define FLG_EHDR 0x00000002 44 #define FLG_INTERP 0x00000004 45 #define FLG_SHDR 0x00000008 46 #define FLG_NOTE 0x00000010 47 #define FLG_PHDR 0x00000020 48 #define FLG_RELOC 0x00000040 49 #define FLG_SYMBOLS 0x00000080 50 #define FLG_VERSIONS 0x00000100 51 #define FLG_HASH 0x00000200 52 #define FLG_GOT 0x00000400 53 #define FLG_SYMINFO 0x00000800 54 #define FLG_MOVE 0x00001000 55 #define FLG_GROUP 0x00002000 56 #define FLG_CAP 0x00004000 57 #define FLG_UNWIND 0x00008000 58 #define FLG_SORT 0x00010000 59 #define FLG_LONGNAME 0x00100000 /* not done by default */ 60 #define FLG_CHECKSUM 0x00200000 /* not done by default */ 61 #define FLG_DEMANGLE 0x00400000 /* not done by default */ 62 #define FLG_EVERYTHING 0x000fffff 63 64 #define MAXNDXSIZE 10 65 66 typedef struct cache { 67 Elf_Scn *c_scn; 68 Shdr *c_shdr; 69 Elf_Data *c_data; 70 char *c_name; 71 } Cache; 72 73 typedef struct got_info { 74 Word g_reltype; /* it will never happen, but */ 75 /* support mixed relocations */ 76 void *g_rel; 77 const char *g_symname; 78 } Got_info; 79 80 extern const Cache cache_init; 81 82 extern void failure(const char *, const char *); 83 extern const char *demangle(const char *, uint_t); 84 85 /* 86 * Define various elfdump() functions into their 32-bit and 64-bit variants. 87 */ 88 #if defined(_ELF64) 89 #define cap cap64 90 #define checksum checksum64 91 #define dynamic dynamic64 92 #define got got64 93 #define group group64 94 #define hash hash64 95 #define interp interp64 96 #define move move64 97 #define note note64 98 #define note_entry note_entry64 99 #define regular regular64 100 #define reloc reloc64 101 #define sections sections64 102 #define string string64 103 #define symbols symbols64 104 #define syminfo syminfo64 105 #define symlookup symlookup64 106 #define unwind unwind64 107 #define versions versions64 108 #define version_def version_def64 109 #define version_need version_need64 110 #else 111 #define cap cap32 112 #define checksum checksum32 113 #define dynamic dynamic32 114 #define got got32 115 #define group group32 116 #define hash hash32 117 #define interp interp32 118 #define move move32 119 #define note note32 120 #define note_entry note_entry32 121 #define regular regular32 122 #define reloc reloc32 123 #define sections sections32 124 #define string string32 125 #define symbols symbols32 126 #define syminfo syminfo32 127 #define symlookup symlookup32 128 #define unwind unwind32 129 #define versions versions32 130 #define version_def version_def32 131 #define version_need version_need32 132 #endif 133 134 extern void regular32(const char *, Elf *, uint_t, char *, int); 135 extern void regular64(const char *, Elf *, uint_t, char *, int); 136 137 #ifdef __cplusplus 138 } 139 #endif 140 141 #endif /* __ELFDUMP_H */ 142