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 int c_ndx; /* Section index */ 72 } Cache; 73 74 typedef struct got_info { 75 Word g_reltype; /* it will never happen, but */ 76 /* support mixed relocations */ 77 void *g_rel; 78 const char *g_symname; 79 } Got_info; 80 81 extern const Cache cache_init; 82 83 extern void failure(const char *, const char *); 84 extern const char *demangle(const char *, uint_t); 85 extern int match(int, const char *, int); 86 87 /* 88 * Define various elfdump() functions into their 32-bit and 64-bit variants. 89 */ 90 #if defined(_ELF64) 91 #define cap cap64 92 #define checksum checksum64 93 #define dynamic dynamic64 94 #define got got64 95 #define group group64 96 #define hash hash64 97 #define interp interp64 98 #define move move64 99 #define note note64 100 #define note_entry note_entry64 101 #define regular regular64 102 #define reloc reloc64 103 #define sections sections64 104 #define string string64 105 #define symbols symbols64 106 #define syminfo syminfo64 107 #define symlookup symlookup64 108 #define unwind unwind64 109 #define versions versions64 110 #define version_def version_def64 111 #define version_need version_need64 112 #else 113 #define cap cap32 114 #define checksum checksum32 115 #define dynamic dynamic32 116 #define got got32 117 #define group group32 118 #define hash hash32 119 #define interp interp32 120 #define move move32 121 #define note note32 122 #define note_entry note_entry32 123 #define regular regular32 124 #define reloc reloc32 125 #define sections sections32 126 #define string string32 127 #define symbols symbols32 128 #define syminfo syminfo32 129 #define symlookup symlookup32 130 #define unwind unwind32 131 #define versions versions32 132 #define version_def version_def32 133 #define version_need version_need32 134 #endif 135 136 extern void regular32(const char *, Elf *, uint_t, int); 137 extern void regular64(const char *, Elf *, uint_t, int); 138 139 #ifdef __cplusplus 140 } 141 #endif 142 143 #endif /* __ELFDUMP_H */ 144