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 2006 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef _DEBUG_H 28 #define _DEBUG_H 29 30 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 /* 33 * Global include file for lddbg debugging. 34 * 35 * ld(1) and ld.so.1(1) carry out all diagnostic debugging calls via lazy 36 * loading the library liblddbg.so. Thus debugging is always enabled. The 37 * utility elfdump(1) is explicitly dependent upon this library. There are two 38 * categories of routines defined in this library: 39 * 40 * o Debugging routines that have specific linker knowledge, and test the 41 * class of debugging allowable before proceeding, start with the `Dbg_' 42 * prefix. 43 * 44 * o Lower level routines that provide generic ELF structure interpretation 45 * start with the `Elf_' prefix. These latter routines are the only 46 * routines used by the elfdump(1) utility. 47 */ 48 #include <sgs.h> 49 #include <libld.h> 50 #include <rtld.h> 51 #include <gelf.h> 52 53 #ifdef __cplusplus 54 extern "C" { 55 #endif 56 57 /* 58 * Define Dbg_*() interface flags. These flags direct the debugging routine to 59 * generate different diagnostics, thus the strings themselves are maintained 60 * in this library. 61 */ 62 #define DBG_SUP_ENVIRON 1 63 #define DBG_SUP_CMDLINE 2 64 #define DBG_SUP_DEFAULT 3 65 66 #define DBG_CONF_IGNORE 1 /* configuration processing errors */ 67 #define DBG_CONF_VERSION 2 68 #define DBG_CONF_PRCFAIL 3 69 #define DBG_CONF_CORRUPT 4 70 71 #define DBG_ORDER_INFO_RANGE 1 /* sh_link out of range */ 72 #define DBG_ORDER_INFO_ORDER 2 /* sh_info also ordered */ 73 #define DBG_ORDER_LINK_OUTRANGE 3 /* sh_link out of range */ 74 #define DBG_ORDER_FLAGS 4 /* sh_flags do not match */ 75 #define DBG_ORDER_CYCLIC 5 /* sh_link cyclic */ 76 #define DBG_ORDER_LINK_ERROR 6 /* sh_link (one) has an error */ 77 78 #define DBG_INIT_SORT 1 /* calling init from sorted order */ 79 #define DBG_INIT_PEND 2 /* calling pending init */ 80 #define DBG_INIT_DYN 3 /* dynamically triggered init */ 81 #define DBG_INIT_DONE 4 /* init completed */ 82 83 #define DBG_DLSYM_DEF 0 84 #define DBG_DLSYM_NEXT 1 85 #define DBG_DLSYM_DEFAULT 2 86 #define DBG_DLSYM_SELF 3 87 #define DBG_DLSYM_PROBE 4 88 89 #define DBG_DLCLOSE_NULL 0 90 #define DBG_DLCLOSE_IGNORE 1 91 #define DBG_DLCLOSE_RESCAN 2 92 93 #define DBG_WAIT_INIT 1 94 #define DBG_WAIT_FINI 2 95 #define DBG_WAIT_SYMBOL 3 96 97 #define DBG_SYM_REDUCE_GLOBAL 1 /* reporting global symbols to local */ 98 #define DBG_SYM_REDUCE_RETAIN 2 /* reporting non reduced local syms */ 99 100 #define DBG_DEP_CREATE 1 /* Group handle operations */ 101 #define DBG_DEP_ADD 2 102 #define DBG_DEP_DELETE 3 103 #define DBG_DEP_REMOVE 4 104 #define DBG_DEP_REMAIN 5 105 #define DBG_DEP_ORPHAN 6 106 #define DBG_DEP_REINST 7 107 108 #define DBG_BINFO_FOUND 0x0001 /* information regarding binding */ 109 #define DBG_BINFO_DIRECT 0x0002 /* bound directly */ 110 #define DBG_BINFO_COPYREF 0x0004 /* bound to copy relocated reference */ 111 #define DBG_BINFO_FILTEE 0x0008 /* bound to filtee */ 112 #define DBG_BINFO_INTERPOSE 0x0010 /* bound to an identified interposer */ 113 #define DBG_BINFO_PLTADDR 0x0020 /* bound to executables undefined plt */ 114 #define DBG_BINFO_MSK 0xffff 115 116 #define DBG_CAP_INITIAL 0 117 #define DBG_CAP_IGNORE 1 118 #define DBG_CAP_OLD 2 119 #define DBG_CAP_NEW 3 120 #define DBG_CAP_RESOLVED 4 121 122 #define DBG_REL_START 1 123 #define DBG_REL_FINISH 2 124 #define DBG_REL_NONE 3 125 126 #define DBG_NL_STD 0 /* newline controllers - standard and */ 127 #define DBG_NL_FRC 2 /* forced. */ 128 129 /* 130 * Define a debug descriptor, and a user macro that inspects the descriptor as 131 * a means of triggering a class of diagnostic output. 132 */ 133 typedef struct { 134 uint_t d_class; /* debugging classes */ 135 uint_t d_extra; /* extra information for classes */ 136 Alist *d_list; /* associated strings */ 137 } Dbg_desc; 138 139 extern Dbg_desc *dbg_desc; 140 141 #define DBG_ENABLED (dbg_desc->d_class) 142 #define DBG_CALL(func) if (DBG_ENABLED) func 143 144 /* 145 * Most debugging tokens are interpreted within liblddbg, and thus any flags 146 * within d_class are only meaningful to this library. The following flags 147 * extend the d_class diagnostic, and are maintained in d_extra. These flags 148 * may be interpreted by the debugging library itself or from the callers 149 * dbg_print() routine. 150 */ 151 #define DBG_E_DETAIL 0x0001 /* add detail to a class */ 152 #define DBG_E_LONG 0x0002 /* use long names (ie. no truncation) */ 153 154 #define DBG_E_STDNL 0x0010 /* standard newline indicator */ 155 156 #define DBG_E_SNAME 0x0100 /* prepend simple name (ld only) */ 157 #define DBG_E_FNAME 0x0200 /* prepend full name (ld only) */ 158 #define DBG_E_CLASS 0x0400 /* prepend ELF class (ld only) */ 159 #define DBG_E_LMID 0x0800 /* prepend link-map id (ld.so.1 only) */ 160 #define DBG_E_DEMANGLE 0x1000 /* demangle symbol names */ 161 162 #define DBG_NOTDETAIL() !(dbg_desc->d_extra & DBG_E_DETAIL) 163 #define DBG_NOTLONG() !(dbg_desc->d_extra & DBG_E_LONG) 164 165 #define DBG_ISSNAME() (dbg_desc->d_extra & DBG_E_SNAME) 166 #define DBG_ISFNAME() (dbg_desc->d_extra & DBG_E_FNAME) 167 #define DBG_ISCLASS() (dbg_desc->d_extra & DBG_E_CLASS) 168 #define DBG_ISLMID() (dbg_desc->d_extra & DBG_E_LMID) 169 #define DBG_ISDEMANGLE() \ 170 (dbg_desc->d_extra & DBG_E_DEMANGLE) 171 172 /* 173 * Print routine, this must be supplied by the application. The initial 174 * argument may provide a link-map list to associate with the format statement 175 * that follows. 176 */ 177 /* PRINTFLIKE2 */ 178 extern void dbg_print(Lm_list *, const char *, ...); 179 180 extern uintptr_t Dbg_setup(const char *, Dbg_desc *); 181 182 /* 183 * Establish ELF32 and ELF64 class Dbg_*() interfaces. 184 */ 185 #if defined(_ELF64) 186 187 #define Dbg_demangle_name Dbg64_demangle_name 188 189 #define Dbg_bind_global Dbg64_bind_global 190 #define Dbg_bind_plt_summary Dbg64_bind_plt_summary 191 #define Dbg_bind_pltpad_from Dbg64_bind_pltpad_from 192 #define Dbg_bind_pltpad_to Dbg64_bind_pltpad_to 193 #define Dbg_bind_weak Dbg64_bind_weak 194 195 #define Dbg_cap_val_hw1 Dbg64_cap_val_hw1 196 #define Dbg_cap_hw_candidate Dbg64_cap_hw_candidate 197 #define Dbg_cap_hw_filter Dbg64_cap_hw_filter 198 #define Dbg_cap_mapfile Dbg64_cap_mapfile 199 #define Dbg_cap_sec_entry Dbg64_cap_sec_entry 200 #define Dbg_cap_sec_title Dbg64_cap_sec_title 201 202 #define Dbg_ent_entry Dbg64_ent_entry 203 #define Dbg_ent_print Dbg64_ent_print 204 205 #define Dbg_file_analyze Dbg64_file_analyze 206 #define Dbg_file_aout Dbg64_file_aout 207 #define Dbg_file_ar Dbg64_file_ar 208 #define Dbg_file_ar_rescan Dbg64_file_ar_rescan 209 #define Dbg_file_bind_entry Dbg64_file_bind_entry 210 #define Dbg_file_bindings Dbg64_file_bindings 211 #define Dbg_file_cntl Dbg64_file_cntl 212 #define Dbg_file_config_dis Dbg64_file_config_dis 213 #define Dbg_file_config_obj Dbg64_file_config_obj 214 #define Dbg_file_del_rescan Dbg64_file_del_rescan 215 #define Dbg_file_delete Dbg64_file_delete 216 #define Dbg_file_dlclose Dbg64_file_dlclose 217 #define Dbg_file_dldump Dbg64_file_dldump 218 #define Dbg_file_dlopen Dbg64_file_dlopen 219 #define Dbg_file_elf Dbg64_file_elf 220 #define Dbg_file_filtee Dbg64_file_filtee 221 #define Dbg_file_filter Dbg64_file_filter 222 #define Dbg_file_fixname Dbg64_file_fixname 223 #define Dbg_file_generic Dbg64_file_generic 224 #define Dbg_file_hdl_action Dbg64_file_hdl_action 225 #define Dbg_file_hdl_collect Dbg64_file_hdl_collect 226 #define Dbg_file_hdl_title Dbg64_file_hdl_title 227 #define Dbg_file_lazyload Dbg64_file_lazyload 228 #define Dbg_file_ldso Dbg64_file_ldso 229 #define Dbg_file_mode_promote Dbg64_file_mode_promote 230 #define Dbg_file_needed Dbg64_file_needed 231 #define Dbg_file_output Dbg64_file_output 232 #define Dbg_file_preload Dbg64_file_preload 233 #define Dbg_file_prot Dbg64_file_prot 234 #define Dbg_file_rejected Dbg64_file_rejected 235 #define Dbg_file_reuse Dbg64_file_reuse 236 #define Dbg_file_skip Dbg64_file_skip 237 238 #define Dbg_got_display Dbg64_got_display 239 240 #define Dbg_libs_audit Dbg64_libs_audit 241 #define Dbg_libs_find Dbg64_libs_find 242 #define Dbg_libs_found Dbg64_libs_found 243 #define Dbg_libs_ignore Dbg64_libs_ignore 244 #define Dbg_libs_init Dbg64_libs_init 245 #define Dbg_libs_l Dbg64_libs_l 246 #define Dbg_libs_path Dbg64_libs_path 247 #define Dbg_libs_req Dbg64_libs_req 248 #define Dbg_libs_update Dbg64_libs_update 249 #define Dbg_libs_yp Dbg64_libs_yp 250 #define Dbg_libs_ylu Dbg64_libs_ylu 251 252 #define Dbg_map_dash Dbg64_map_dash 253 #define Dbg_map_ent Dbg64_map_ent 254 #define Dbg_map_parse Dbg64_map_parse 255 #define Dbg_map_pipe Dbg64_map_pipe 256 #define Dbg_map_seg Dbg64_map_seg 257 #define Dbg_map_set_atsign Dbg64_map_set_atsign 258 #define Dbg_map_set_equal Dbg64_map_set_equal 259 #define Dbg_map_size_new Dbg64_map_size_new 260 #define Dbg_map_size_old Dbg64_map_size_old 261 #define Dbg_map_sort_fini Dbg64_map_sort_fini 262 #define Dbg_map_sort_orig Dbg64_map_sort_orig 263 #define Dbg_map_symbol Dbg64_map_symbol 264 #define Dbg_map_version Dbg64_map_version 265 266 #define Dbg_move_adjexpandreloc Dbg64_move_adjexpandreloc 267 #define Dbg_move_adjmovereloc Dbg64_move_adjmovereloc 268 #define Dbg_move_data Dbg64_move_data 269 #define Dbg_move_entry1 Dbg64_move_entry1 270 #define Dbg_move_entry2 Dbg64_move_entry2 271 #define Dbg_move_expand Dbg64_move_expand 272 #define Dbg_move_input Dbg64_move_input 273 #define Dbg_move_outmove Dbg64_move_outmove 274 #define Dbg_move_outsctadj Dbg64_move_outsctadj 275 #define Dbg_move_parexpn Dbg64_move_parexpn 276 277 #define Dbg_reloc_apply_reg Dbg64_reloc_apply_reg 278 #define Dbg_reloc_apply_val Dbg64_reloc_apply_val 279 #define Dbg_reloc_ars_entry Dbg64_reloc_ars_entry 280 #define Dbg_reloc_copy Dbg64_reloc_copy 281 #define Dbg_reloc_discard Dbg64_reloc_discard 282 #define Dbg_reloc_doact Dbg64_reloc_doact 283 #define Dbg_reloc_doact_title Dbg64_reloc_doact_title 284 #define Dbg_reloc_dooutrel Dbg64_reloc_dooutrel 285 #define Dbg_reloc_entry Dbg64_reloc_entry 286 #define Dbg_reloc_error Dbg64_reloc_error 287 #define Dbg_reloc_generate Dbg64_reloc_generate 288 #define Dbg_reloc_in Dbg64_reloc_in 289 #define Dbg_reloc_ors_entry Dbg64_reloc_ors_entry 290 #define Dbg_reloc_out Dbg64_reloc_out 291 #define Dbg_reloc_proc Dbg64_reloc_proc 292 #define Dbg_reloc_run Dbg64_reloc_run 293 #define Dbg_reloc_transition Dbg64_reloc_transition 294 295 #define Dbg_sec_added Dbg64_sec_added 296 #define Dbg_sec_created Dbg64_sec_created 297 #define Dbg_sec_discarded Dbg64_sec_discarded 298 #define Dbg_sec_group Dbg64_sec_group 299 #define Dbg_sec_in Dbg64_sec_in 300 #define Dbg_sec_order_error Dbg64_sec_order_error 301 #define Dbg_sec_order_list Dbg64_sec_order_list 302 #define Dbg_sec_strtab Dbg64_sec_strtab 303 304 #define Dbg_seg_desc_entry Dbg64_seg_desc_entry 305 #define Dbg_seg_entry Dbg64_seg_entry 306 #define Dbg_seg_list Dbg64_seg_list 307 #define Dbg_seg_os Dbg64_seg_os 308 #define Dbg_seg_title Dbg64_seg_title 309 310 #define Dbg_statistics_ar Dbg64_statistics_ar 311 #define Dbg_statistics_ld Dbg64_statistics_ld 312 313 #define Dbg_support_action Dbg64_support_action 314 #define Dbg_support_load Dbg64_support_load 315 #define Dbg_support_req Dbg64_support_req 316 317 #define Dbg_syminfo_entry Dbg64_syminfo_entry 318 #define Dbg_syminfo_title Dbg64_syminfo_title 319 320 #define Dbg_syms_ar_checking Dbg64_syms_ar_checking 321 #define Dbg_syms_ar_entry Dbg64_syms_ar_entry 322 #define Dbg_syms_ar_resolve Dbg64_syms_ar_resolve 323 #define Dbg_syms_ar_title Dbg64_syms_ar_title 324 #define Dbg_syms_created Dbg64_syms_created 325 #define Dbg_syms_discarded Dbg64_syms_discarded 326 #define Dbg_syms_dlsym Dbg64_syms_dlsym 327 #define Dbg_syms_entered Dbg64_syms_entered 328 #define Dbg_syms_entry Dbg64_syms_entry 329 #define Dbg_syms_global Dbg64_syms_global 330 #define Dbg_syms_ignore Dbg64_syms_ignore 331 #define Dbg_syms_lazy_rescan Dbg64_syms_lazy_rescan 332 #define Dbg_syms_lookup Dbg64_syms_lookup 333 #define Dbg_syms_new Dbg64_syms_new 334 #define Dbg_syms_old Dbg64_syms_old 335 #define Dbg_syms_process Dbg64_syms_process 336 #define Dbg_syms_reduce Dbg64_syms_reduce 337 #define Dbg_syms_reloc Dbg64_syms_reloc 338 #define Dbg_syms_resolved Dbg64_syms_resolved 339 #define Dbg_syms_resolving Dbg64_syms_resolving 340 #define Dbg_syms_sec_entry Dbg64_syms_sec_entry 341 #define Dbg_syms_sec_title Dbg64_syms_sec_title 342 #define Dbg_syms_spec_title Dbg64_syms_spec_title 343 #define Dbg_syms_updated Dbg64_syms_updated 344 #define Dbg_syms_up_title Dbg64_syms_up_title 345 346 #define Dbg_util_broadcast Dbg64_util_broadcast 347 #define Dbg_util_call_array Dbg64_util_call_array 348 #define Dbg_util_call_fini Dbg64_util_call_fini 349 #define Dbg_util_call_init Dbg64_util_call_init 350 #define Dbg_util_call_main Dbg64_util_call_main 351 #define Dbg_util_collect Dbg64_util_collect 352 #define Dbg_util_dbnotify Dbg64_util_dbnotify 353 #define Dbg_util_edge_in Dbg64_util_edge_in 354 #define Dbg_util_edge_out Dbg64_util_edge_out 355 #define Dbg_util_intoolate Dbg64_util_intoolate 356 #define Dbg_util_nl Dbg64_util_nl 357 #define Dbg_util_no_init Dbg64_util_no_init 358 #define Dbg_util_scc_entry Dbg64_util_scc_entry 359 #define Dbg_util_scc_title Dbg64_util_scc_title 360 #define Dbg_util_str Dbg64_util_str 361 #define Dbg_util_wait Dbg64_util_wait 362 363 #define Dbg_unused_file Dbg64_unused_file 364 #define Dbg_unused_rtldinfo Dbg64_unused_rtldinfo 365 #define Dbg_unused_sec Dbg64_unused_sec 366 #define Dbg_unused_unref Dbg64_unused_unref 367 368 #define Dbg_ver_avail_entry Dbg64_ver_avail_entry 369 #define Dbg_ver_avail_title Dbg64_ver_avail_title 370 #define Dbg_ver_def_title Dbg64_ver_def_title 371 #define Dbg_ver_desc_entry Dbg64_ver_desc_entry 372 #define Dbg_ver_need_entry Dbg64_ver_need_entry 373 #define Dbg_ver_need_title Dbg64_ver_need_title 374 #define Dbg_ver_nointerface Dbg64_ver_nointerface 375 #define Dbg_ver_symbol Dbg64_ver_symbol 376 377 #else 378 379 #define Dbg_demangle_name Dbg32_demangle_name 380 381 #define Dbg_bind_global Dbg32_bind_global 382 #define Dbg_bind_plt_summary Dbg32_bind_plt_summary 383 #define Dbg_bind_weak Dbg32_bind_weak 384 385 #define Dbg_cap_val_hw1 Dbg32_cap_val_hw1 386 #define Dbg_cap_hw_candidate Dbg32_cap_hw_candidate 387 #define Dbg_cap_hw_filter Dbg32_cap_hw_filter 388 #define Dbg_cap_mapfile Dbg32_cap_mapfile 389 #define Dbg_cap_sec_entry Dbg32_cap_sec_entry 390 #define Dbg_cap_sec_title Dbg32_cap_sec_title 391 392 #define Dbg_ent_entry Dbg32_ent_entry 393 #define Dbg_ent_print Dbg32_ent_print 394 395 #define Dbg_file_analyze Dbg32_file_analyze 396 #define Dbg_file_aout Dbg32_file_aout 397 #define Dbg_file_ar Dbg32_file_ar 398 #define Dbg_file_ar_rescan Dbg32_file_ar_rescan 399 #define Dbg_file_bind_entry Dbg32_file_bind_entry 400 #define Dbg_file_bindings Dbg32_file_bindings 401 #define Dbg_file_cntl Dbg32_file_cntl 402 #define Dbg_file_config_dis Dbg32_file_config_dis 403 #define Dbg_file_config_obj Dbg32_file_config_obj 404 #define Dbg_file_del_rescan Dbg32_file_del_rescan 405 #define Dbg_file_delete Dbg32_file_delete 406 #define Dbg_file_dlclose Dbg32_file_dlclose 407 #define Dbg_file_dldump Dbg32_file_dldump 408 #define Dbg_file_dlopen Dbg32_file_dlopen 409 #define Dbg_file_elf Dbg32_file_elf 410 #define Dbg_file_filtee Dbg32_file_filtee 411 #define Dbg_file_filter Dbg32_file_filter 412 #define Dbg_file_fixname Dbg32_file_fixname 413 #define Dbg_file_generic Dbg32_file_generic 414 #define Dbg_file_hdl_action Dbg32_file_hdl_action 415 #define Dbg_file_hdl_collect Dbg32_file_hdl_collect 416 #define Dbg_file_hdl_title Dbg32_file_hdl_title 417 #define Dbg_file_lazyload Dbg32_file_lazyload 418 #define Dbg_file_ldso Dbg32_file_ldso 419 #define Dbg_file_mode_promote Dbg32_file_mode_promote 420 #define Dbg_file_needed Dbg32_file_needed 421 #define Dbg_file_output Dbg32_file_output 422 #define Dbg_file_preload Dbg32_file_preload 423 #define Dbg_file_prot Dbg32_file_prot 424 #define Dbg_file_rejected Dbg32_file_rejected 425 #define Dbg_file_reuse Dbg32_file_reuse 426 #define Dbg_file_skip Dbg32_file_skip 427 428 #define Dbg_got_display Dbg32_got_display 429 430 #define Dbg_libs_audit Dbg32_libs_audit 431 #define Dbg_libs_find Dbg32_libs_find 432 #define Dbg_libs_found Dbg32_libs_found 433 #define Dbg_libs_ignore Dbg32_libs_ignore 434 #define Dbg_libs_init Dbg32_libs_init 435 #define Dbg_libs_l Dbg32_libs_l 436 #define Dbg_libs_path Dbg32_libs_path 437 #define Dbg_libs_req Dbg32_libs_req 438 #define Dbg_libs_update Dbg32_libs_update 439 #define Dbg_libs_yp Dbg32_libs_yp 440 #define Dbg_libs_ylu Dbg32_libs_ylu 441 442 #define Dbg_map_dash Dbg32_map_dash 443 #define Dbg_map_ent Dbg32_map_ent 444 #define Dbg_map_parse Dbg32_map_parse 445 #define Dbg_map_pipe Dbg32_map_pipe 446 #define Dbg_map_seg Dbg32_map_seg 447 #define Dbg_map_set_atsign Dbg32_map_set_atsign 448 #define Dbg_map_set_equal Dbg32_map_set_equal 449 #define Dbg_map_size_new Dbg32_map_size_new 450 #define Dbg_map_size_old Dbg32_map_size_old 451 #define Dbg_map_sort_fini Dbg32_map_sort_fini 452 #define Dbg_map_sort_orig Dbg32_map_sort_orig 453 #define Dbg_map_symbol Dbg32_map_symbol 454 #define Dbg_map_version Dbg32_map_version 455 456 #define Dbg_move_adjexpandreloc Dbg32_move_adjexpandreloc 457 #define Dbg_move_adjmovereloc Dbg32_move_adjmovereloc 458 #define Dbg_move_data Dbg32_move_data 459 #define Dbg_move_entry1 Dbg32_move_entry1 460 #define Dbg_move_entry2 Dbg32_move_entry2 461 #define Dbg_move_expand Dbg32_move_expand 462 #define Dbg_move_input Dbg32_move_input 463 #define Dbg_move_outmove Dbg32_move_outmove 464 #define Dbg_move_outsctadj Dbg32_move_outsctadj 465 #define Dbg_move_parexpn Dbg32_move_parexpn 466 467 #define Dbg_reloc_apply_reg Dbg32_reloc_apply_reg 468 #define Dbg_reloc_apply_val Dbg32_reloc_apply_val 469 #define Dbg_reloc_ars_entry Dbg32_reloc_ars_entry 470 #define Dbg_reloc_copy Dbg32_reloc_copy 471 #define Dbg_reloc_discard Dbg32_reloc_discard 472 #define Dbg_reloc_doact Dbg32_reloc_doact 473 #define Dbg_reloc_doact_title Dbg32_reloc_doact_title 474 #define Dbg_reloc_dooutrel Dbg32_reloc_dooutrel 475 #define Dbg_reloc_entry Dbg32_reloc_entry 476 #define Dbg_reloc_error Dbg32_reloc_error 477 #define Dbg_reloc_generate Dbg32_reloc_generate 478 #define Dbg_reloc_in Dbg32_reloc_in 479 #define Dbg_reloc_ors_entry Dbg32_reloc_ors_entry 480 #define Dbg_reloc_out Dbg32_reloc_out 481 #define Dbg_reloc_proc Dbg32_reloc_proc 482 #define Dbg_reloc_run Dbg32_reloc_run 483 #define Dbg_reloc_transition Dbg32_reloc_transition 484 485 #define Dbg_sec_added Dbg32_sec_added 486 #define Dbg_sec_created Dbg32_sec_created 487 #define Dbg_sec_discarded Dbg32_sec_discarded 488 #define Dbg_sec_group Dbg32_sec_group 489 #define Dbg_sec_in Dbg32_sec_in 490 #define Dbg_sec_order_error Dbg32_sec_order_error 491 #define Dbg_sec_order_list Dbg32_sec_order_list 492 #define Dbg_sec_strtab Dbg32_sec_strtab 493 494 #define Dbg_seg_desc_entry Dbg32_seg_desc_entry 495 #define Dbg_seg_entry Dbg32_seg_entry 496 #define Dbg_seg_list Dbg32_seg_list 497 #define Dbg_seg_os Dbg32_seg_os 498 #define Dbg_seg_title Dbg32_seg_title 499 500 #define Dbg_statistics_ar Dbg32_statistics_ar 501 #define Dbg_statistics_ld Dbg32_statistics_ld 502 503 #define Dbg_support_action Dbg32_support_action 504 #define Dbg_support_load Dbg32_support_load 505 #define Dbg_support_req Dbg32_support_req 506 507 #define Dbg_syminfo_entry Dbg32_syminfo_entry 508 #define Dbg_syminfo_title Dbg32_syminfo_title 509 510 #define Dbg_syms_ar_checking Dbg32_syms_ar_checking 511 #define Dbg_syms_ar_entry Dbg32_syms_ar_entry 512 #define Dbg_syms_ar_resolve Dbg32_syms_ar_resolve 513 #define Dbg_syms_ar_title Dbg32_syms_ar_title 514 #define Dbg_syms_created Dbg32_syms_created 515 #define Dbg_syms_discarded Dbg32_syms_discarded 516 #define Dbg_syms_dlsym Dbg32_syms_dlsym 517 #define Dbg_syms_entered Dbg32_syms_entered 518 #define Dbg_syms_entry Dbg32_syms_entry 519 #define Dbg_syms_global Dbg32_syms_global 520 #define Dbg_syms_ignore Dbg32_syms_ignore 521 #define Dbg_syms_lazy_rescan Dbg32_syms_lazy_rescan 522 #define Dbg_syms_lookup Dbg32_syms_lookup 523 #define Dbg_syms_lookup_aout Dbg32_syms_lookup_aout 524 #define Dbg_syms_new Dbg32_syms_new 525 #define Dbg_syms_old Dbg32_syms_old 526 #define Dbg_syms_process Dbg32_syms_process 527 #define Dbg_syms_reduce Dbg32_syms_reduce 528 #define Dbg_syms_reloc Dbg32_syms_reloc 529 #define Dbg_syms_resolved Dbg32_syms_resolved 530 #define Dbg_syms_resolving Dbg32_syms_resolving 531 #define Dbg_syms_sec_entry Dbg32_syms_sec_entry 532 #define Dbg_syms_sec_title Dbg32_syms_sec_title 533 #define Dbg_syms_spec_title Dbg32_syms_spec_title 534 #define Dbg_syms_updated Dbg32_syms_updated 535 #define Dbg_syms_up_title Dbg32_syms_up_title 536 537 #define Dbg_util_broadcast Dbg32_util_broadcast 538 #define Dbg_util_call_array Dbg32_util_call_array 539 #define Dbg_util_call_fini Dbg32_util_call_fini 540 #define Dbg_util_call_init Dbg32_util_call_init 541 #define Dbg_util_call_main Dbg32_util_call_main 542 #define Dbg_util_collect Dbg32_util_collect 543 #define Dbg_util_dbnotify Dbg32_util_dbnotify 544 #define Dbg_util_edge_in Dbg32_util_edge_in 545 #define Dbg_util_edge_out Dbg32_util_edge_out 546 #define Dbg_util_intoolate Dbg32_util_intoolate 547 #define Dbg_util_nl Dbg32_util_nl 548 #define Dbg_util_no_init Dbg32_util_no_init 549 #define Dbg_util_scc_entry Dbg32_util_scc_entry 550 #define Dbg_util_scc_title Dbg32_util_scc_title 551 #define Dbg_util_str Dbg32_util_str 552 #define Dbg_util_wait Dbg32_util_wait 553 554 #define Dbg_unused_file Dbg32_unused_file 555 #define Dbg_unused_rtldinfo Dbg32_unused_rtldinfo 556 #define Dbg_unused_sec Dbg32_unused_sec 557 #define Dbg_unused_unref Dbg32_unused_unref 558 559 #define Dbg_ver_avail_entry Dbg32_ver_avail_entry 560 #define Dbg_ver_avail_title Dbg32_ver_avail_title 561 #define Dbg_ver_def_title Dbg32_ver_def_title 562 #define Dbg_ver_desc_entry Dbg32_ver_desc_entry 563 #define Dbg_ver_need_entry Dbg32_ver_need_entry 564 #define Dbg_ver_need_title Dbg32_ver_need_title 565 #define Dbg_ver_nointerface Dbg32_ver_nointerface 566 #define Dbg_ver_symbol Dbg32_ver_symbol 567 568 #endif 569 570 /* 571 * External Dbg_*() interface routines. 572 */ 573 extern void Dbg_args_files(Lm_list *, int, char *); 574 extern void Dbg_args_flags(Lm_list *, int, int); 575 extern void Dbg_audit_interface(Lm_list *, const char *, const char *); 576 extern void Dbg_audit_lib(Lm_list *, const char *); 577 extern void Dbg_audit_object(Lm_list *, const char *, const char *); 578 extern void Dbg_audit_symval(Lm_list *, const char *, const char *, 579 const char *, Addr, Addr); 580 extern void Dbg_audit_version(Lm_list *, const char *, ulong_t); 581 582 extern void Dbg_bind_global(Rt_map *, Addr, Off, Xword, Pltbindtype, 583 Rt_map *, Addr, Off, const char *, uint_t); 584 extern void Dbg_bind_plt_summary(Lm_list *, Half, Word, Word, Word, Word, 585 Word, Word); 586 #if defined(_ELF64) 587 extern void Dbg_bind_pltpad_from(Rt_map *, Addr, const char *); 588 extern void Dbg_bind_pltpad_to(Rt_map *, Addr, const char *, const char *); 589 #endif 590 extern void Dbg_bind_weak(Rt_map *, Addr, Addr, const char *); 591 592 extern void Dbg_cap_hw_candidate(Lm_list *, const char *); 593 extern void Dbg_cap_hw_filter(Lm_list *, const char *, Rt_map *); 594 extern void Dbg_cap_mapfile(Lm_list *, Xword, Xword, Half); 595 extern void Dbg_cap_sec_entry(Lm_list *, uint_t, Xword, Xword, Half); 596 extern void Dbg_cap_sec_title(Ofl_desc *); 597 extern void Dbg_cap_val_hw1(Lm_list *, Xword, Half); 598 599 extern const char * 600 Dbg_demangle_name(const char *); 601 602 extern void Dbg_ent_entry(Lm_list *, Half, Ent_desc *); 603 extern void Dbg_ent_print(Lm_list *, Half, List *, Boolean); 604 605 extern void Dbg_file_analyze(Rt_map *); 606 extern void Dbg_file_aout(Lm_list *, const char *, ulong_t, ulong_t, 607 ulong_t, const char *, Aliste); 608 extern void Dbg_file_ar(Lm_list *, const char *, int); 609 extern void Dbg_file_ar_rescan(Lm_list *); 610 extern void Dbg_file_bind_entry(Lm_list *, Bnd_desc *); 611 extern void Dbg_file_bindings(Rt_map *, int); 612 extern void Dbg_file_cntl(Lm_list *, Aliste, Aliste); 613 extern void Dbg_file_config_dis(Lm_list *, const char *, int); 614 extern void Dbg_file_config_obj(Lm_list *, const char *, const char *, 615 const char *); 616 extern void Dbg_file_del_rescan(Lm_list *); 617 extern void Dbg_file_delete(Rt_map *); 618 extern void Dbg_file_dlclose(Lm_list *, const char *, int); 619 extern void Dbg_file_dldump(Rt_map *, const char *, int); 620 extern void Dbg_file_dlopen(Rt_map *, const char *, int); 621 extern void Dbg_file_elf(Lm_list *, const char *, ulong_t, ulong_t, 622 ulong_t, ulong_t, const char *, Aliste); 623 extern void Dbg_file_filtee(Lm_list *, const char *, const char *, int); 624 extern void Dbg_file_filter(Lm_list *, const char *, const char *, int); 625 extern void Dbg_file_fixname(Lm_list *, const char *, const char *); 626 extern void Dbg_file_generic(Lm_list *, Ifl_desc *); 627 extern void Dbg_file_hdl_action(Grp_hdl *, Rt_map *, int); 628 extern void Dbg_file_hdl_collect(Grp_hdl *, const char *); 629 extern void Dbg_file_hdl_title(int); 630 extern void Dbg_file_lazyload(Rt_map *, const char *, const char *); 631 extern void Dbg_file_ldso(Rt_map *, char **, auxv_t *, const char *, 632 Aliste); 633 extern void Dbg_file_mode_promote(Rt_map *, int); 634 extern void Dbg_file_needed(Rt_map *, const char *); 635 extern void Dbg_file_output(Ofl_desc *); 636 extern void Dbg_file_preload(Lm_list *, const char *); 637 extern void Dbg_file_prot(Rt_map *, int); 638 extern void Dbg_file_rejected(Lm_list *, Rej_desc *); 639 extern void Dbg_file_reuse(Lm_list *, const char *, const char *); 640 extern void Dbg_file_skip(Lm_list *, const char *, const char *); 641 642 extern void Dbg_got_display(Ofl_desc *, Gottable *); 643 644 extern void Dbg_libs_audit(Lm_list *, const char *, const char *); 645 extern void Dbg_libs_find(Lm_list *, const char *); 646 extern void Dbg_libs_found(Lm_list *, const char *, int); 647 extern void Dbg_libs_ignore(Lm_list *, const char *); 648 extern void Dbg_libs_init(Lm_list *, List *, List *); 649 extern void Dbg_libs_l(Lm_list *, const char *, const char *); 650 extern void Dbg_libs_path(Lm_list *, const char *, Half, const char *); 651 extern void Dbg_libs_req(Lm_list *, const char *, const char *, 652 const char *); 653 extern void Dbg_libs_update(Lm_list *, List *, List *); 654 extern void Dbg_libs_yp(Lm_list *, const char *); 655 extern void Dbg_libs_ylu(Lm_list *, const char *, const char *, int); 656 657 extern void Dbg_map_dash(Lm_list *, const char *, Sdf_desc *); 658 extern void Dbg_map_ent(Lm_list *, Boolean, Ent_desc *, Ofl_desc *); 659 extern void Dbg_map_parse(Lm_list *, const char *); 660 extern void Dbg_map_pipe(Lm_list *, Sg_desc *, const char *, const Word); 661 extern void Dbg_map_seg(Ofl_desc *, int, Sg_desc *); 662 extern void Dbg_map_set_atsign(Boolean); 663 extern void Dbg_map_set_equal(Boolean); 664 extern void Dbg_map_size_new(Lm_list *, const char *); 665 extern void Dbg_map_size_old(Ofl_desc *, Sym_desc *); 666 extern void Dbg_map_sort_fini(Lm_list *, Sg_desc *); 667 extern void Dbg_map_sort_orig(Lm_list *, Sg_desc *); 668 extern void Dbg_map_symbol(Ofl_desc *, Sym_desc *); 669 extern void Dbg_map_version(Lm_list *, const char *, const char *, int); 670 671 extern void Dbg_move_adjexpandreloc(Lm_list *, Xword, const char *); 672 extern void Dbg_move_adjmovereloc(Lm_list *, Xword, Xword, const char *); 673 extern void Dbg_move_data(Rt_map *); 674 extern void Dbg_move_entry1(Lm_list *, int, Move *, Sym_desc *); 675 extern void Dbg_move_entry2(Lm_list *, Move *, Word, const char *); 676 extern void Dbg_move_expand(Lm_list *, Move *, Addr); 677 extern void Dbg_move_input(Lm_list *, const char *); 678 extern void Dbg_move_outmove(Lm_list *, const char *); 679 extern void Dbg_move_outsctadj(Lm_list *, Sym_desc *); 680 extern void Dbg_move_parexpn(Lm_list *, const char *, const char *); 681 682 extern void Dbg_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword); 683 extern void Dbg_reloc_apply_val(Lm_list *, int, Xword, Xword); 684 extern void Dbg_reloc_ars_entry(Lm_list *, int, Word, Half, Rel_desc *); 685 extern void Dbg_reloc_copy(Rt_map *, Rt_map *, const char *, int); 686 extern void Dbg_reloc_discard(Lm_list *, Half, Rel_desc *); 687 extern void Dbg_reloc_doact(Lm_list *, int, Half, Word, Word, Xword, Xword, 688 const char *, Os_desc *); 689 extern void Dbg_reloc_doact_title(Lm_list *); 690 extern void Dbg_reloc_dooutrel(Lm_list *, Word); 691 extern void Dbg_reloc_entry(Lm_list *, const char *, Half, Word, void *, 692 const char *, const char *, const char *); 693 extern void Dbg_reloc_error(Lm_list *, int, Half, Word, void *, 694 const char *); 695 extern void Dbg_reloc_generate(Lm_list *, Os_desc *, Word); 696 extern void Dbg_reloc_in(Lm_list *, int, Half, Word, void *, const char *, 697 const char *); 698 extern void Dbg_reloc_ors_entry(Lm_list *, int, Word, Half, Rel_desc *); 699 extern void Dbg_reloc_out(Ofl_desc *, int, Word, void *, const char *, 700 const char *); 701 extern void Dbg_reloc_proc(Lm_list *, Os_desc *, Is_desc *, Is_desc *); 702 extern void Dbg_reloc_run(Rt_map *, uint_t, int, int); 703 extern void Dbg_reloc_transition(Lm_list *, Half, Word, Word, Xword, 704 const char *); 705 706 extern void Dbg_sec_added(Lm_list *, Os_desc *, Sg_desc *); 707 extern void Dbg_sec_created(Lm_list *, Os_desc *, Sg_desc *); 708 extern void Dbg_sec_discarded(Lm_list *, Is_desc *, Is_desc *); 709 extern void Dbg_sec_group(Lm_list *, Is_desc *, Group_desc *); 710 extern void Dbg_sec_in(Lm_list *, Is_desc *); 711 extern void Dbg_sec_order_error(Lm_list *, Ifl_desc *, Word, int); 712 extern void Dbg_sec_order_list(Ofl_desc *, int); 713 extern void Dbg_sec_strtab(Lm_list *, Os_desc *, Str_tbl *); 714 715 extern void Dbg_seg_desc_entry(Lm_list *, Half, int, Sg_desc *); 716 extern void Dbg_seg_entry(Ofl_desc *, int, Sg_desc *); 717 extern void Dbg_seg_list(Lm_list *, Half, List *); 718 extern void Dbg_seg_os(Ofl_desc *, Os_desc *, int); 719 extern void Dbg_seg_title(Lm_list *); 720 721 extern void Dbg_statistics_ar(Ofl_desc *); 722 extern void Dbg_statistics_ld(Ofl_desc *); 723 724 extern void Dbg_support_action(Lm_list *, const char *, const char *, 725 Support_ndx, const char *); 726 extern void Dbg_support_load(Lm_list *, const char *, const char *); 727 extern void Dbg_support_req(Lm_list *, const char *, int); 728 729 extern void Dbg_syminfo_entry(Lm_list *, Word, Syminfo *, Sym *, 730 const char *, Dyn *); 731 extern void Dbg_syminfo_title(Lm_list *); 732 733 extern void Dbg_syms_ar_checking(Lm_list *, Xword, Elf_Arsym *, 734 const char *); 735 extern void Dbg_syms_ar_entry(Lm_list *, Xword, Elf_Arsym *); 736 extern void Dbg_syms_ar_resolve(Lm_list *, Xword, Elf_Arsym *, 737 const char *, int); 738 extern void Dbg_syms_ar_title(Lm_list *, const char *, int); 739 extern void Dbg_syms_created(Lm_list *, const char *); 740 extern void Dbg_syms_discarded(Lm_list *, Sym_desc *, Is_desc *); 741 extern void Dbg_syms_dlsym(Rt_map *, const char *, const char *, int); 742 extern void Dbg_syms_entered(Ofl_desc *, Sym *, Sym_desc *); 743 extern void Dbg_syms_entry(Lm_list *, Word, Sym_desc *); 744 extern void Dbg_syms_global(Lm_list *, Word, const char *); 745 extern void Dbg_syms_ignore(Ofl_desc *, Sym_desc *); 746 extern void Dbg_syms_lazy_rescan(Lm_list *, const char *); 747 extern void Dbg_syms_lookup(Rt_map *, const char *, const char *); 748 #if !(defined(_ELF64)) 749 extern void Dbg_syms_lookup_aout(Lm_list *, const char *); 750 #endif 751 extern void Dbg_syms_new(Ofl_desc *, Sym *, Sym_desc *); 752 extern void Dbg_syms_old(Ofl_desc *, Sym_desc *); 753 extern void Dbg_syms_process(Lm_list *, Ifl_desc *); 754 extern void Dbg_syms_reduce(Ofl_desc *, int, Sym_desc *, int, 755 const char *); 756 extern void Dbg_syms_reloc(Ofl_desc *, Sym_desc *); 757 extern void Dbg_syms_resolved(Ofl_desc *, Sym_desc *); 758 extern void Dbg_syms_resolving(Ofl_desc *, Word, const char *, int, int, 759 Sym *, Sym *, Sym_desc *, Ifl_desc *); 760 extern void Dbg_syms_sec_entry(Lm_list *, Word, Sg_desc *, Os_desc *); 761 extern void Dbg_syms_sec_title(Lm_list *); 762 extern void Dbg_syms_spec_title(Lm_list *); 763 extern void Dbg_syms_updated(Ofl_desc *, Sym_desc *, const char *); 764 extern void Dbg_syms_up_title(Lm_list *); 765 766 extern void Dbg_tls_modactivity(Lm_list *, void *, uint_t); 767 extern void Dbg_tls_static_block(Lm_list *, void *, ulong_t); 768 769 extern void Dbg_util_broadcast(Rt_map *); 770 extern void Dbg_util_call_array(Rt_map *, void *, int, Word); 771 extern void Dbg_util_call_fini(Rt_map *); 772 extern void Dbg_util_call_init(Rt_map *, int); 773 extern void Dbg_util_call_main(Rt_map *); 774 extern void Dbg_util_collect(Rt_map *, int, int); 775 extern void Dbg_util_dbnotify(Lm_list *, rd_event_e, r_state_e); 776 extern void Dbg_util_edge_in(Lm_list *, Rt_map *, uint_t, Rt_map *, 777 int, int); 778 extern void Dbg_util_edge_out(Rt_map *, Rt_map *); 779 extern void Dbg_util_intoolate(Rt_map *); 780 extern void Dbg_util_nl(Lm_list *, int); 781 extern void Dbg_util_no_init(Rt_map *); 782 extern void Dbg_util_str(Lm_list *, const char *); 783 extern void Dbg_util_scc_entry(Rt_map *, uint_t); 784 extern void Dbg_util_scc_title(Lm_list *, int); 785 extern void Dbg_util_wait(Rt_map *, Rt_map *, int); 786 787 extern void Dbg_unused_file(Lm_list *, const char *, int, uint_t); 788 extern void Dbg_unused_rtldinfo(Rt_map *); 789 extern void Dbg_unused_sec(Lm_list *, Is_desc *); 790 extern void Dbg_unused_unref(Rt_map *, const char *); 791 792 extern void Dbg_ver_avail_entry(Lm_list *, Ver_index *, const char *); 793 extern void Dbg_ver_avail_title(Lm_list *, const char *); 794 extern void Dbg_ver_def_title(Lm_list *, const char *); 795 extern void Dbg_ver_desc_entry(Lm_list *, Ver_desc *); 796 extern void Dbg_ver_need_entry(Lm_list *, Half, const char *, 797 const char *); 798 extern void Dbg_ver_need_title(Lm_list *, const char *); 799 extern void Dbg_ver_nointerface(Lm_list *, const char *); 800 extern void Dbg_ver_symbol(Lm_list *, const char *); 801 802 /* 803 * Define Elf_*() interface flags. 804 */ 805 #define ELF_DBG_ELFDUMP 1 806 #define ELF_DBG_RTLD 2 807 #define ELF_DBG_LD 3 808 809 /* 810 * Define generic Elf_*() interfaces. 811 */ 812 extern void Elf_syminfo_entry(Lm_list *, Word, Syminfo *, const char *, 813 const char *); 814 extern void Elf_syminfo_title(Lm_list *); 815 816 /* 817 * Establish ELF32 and ELF64 class Elf_*() interfaces. 818 */ 819 #if defined(_ELF64) 820 821 #define Elf_cap_entry Elf64_cap_entry 822 #define Elf_cap_title Elf64_cap_title 823 824 #define Elf_demangle_name Elf64_demangle_name 825 #define Elf_dyn_entry Elf64_dyn_entry 826 #define Elf_dyn_title Elf64_dyn_title 827 828 #define Elf_ehdr Elf64_ehdr 829 830 #define Elf_got_entry Elf64_got_entry 831 #define Elf_got_title Elf64_got_title 832 833 #define Elf_reloc_apply_reg Elf64_reloc_apply_reg 834 #define Elf_reloc_apply_val Elf64_reloc_apply_val 835 #define Elf_reloc_entry_1 Elf64_reloc_entry_1 836 #define Elf_reloc_entry_2 Elf64_reloc_entry_2 837 #define Elf_reloc_title Elf64_reloc_title 838 839 #define Elf_phdr Elf64_phdr 840 841 #define Elf_shdr Elf64_shdr 842 843 #define Elf_syms_table_entry Elf64_syms_table_entry 844 #define Elf_syms_table_title Elf64_syms_table_title 845 846 #define Elf_ver_def_title Elf64_ver_def_title 847 #define Elf_ver_line_1 Elf64_ver_line_1 848 #define Elf_ver_line_2 Elf64_ver_line_2 849 #define Elf_ver_line_3 Elf64_ver_line_3 850 #define Elf_ver_line_4 Elf64_ver_line_4 851 #define Elf_ver_line_5 Elf64_ver_line_5 852 #define Elf_ver_need_title Elf64_ver_need_title 853 854 #else 855 856 #define Elf_cap_entry Elf32_cap_entry 857 #define Elf_cap_title Elf32_cap_title 858 859 #define Elf_demangle_name Elf32_demangle_name 860 #define Elf_dyn_entry Elf32_dyn_entry 861 #define Elf_dyn_title Elf32_dyn_title 862 863 #define Elf_ehdr Elf32_ehdr 864 865 #define Elf_got_entry Elf32_got_entry 866 #define Elf_got_title Elf32_got_title 867 868 #define Elf_reloc_apply_reg Elf32_reloc_apply_reg 869 #define Elf_reloc_apply_val Elf32_reloc_apply_val 870 #define Elf_reloc_entry_1 Elf32_reloc_entry_1 871 #define Elf_reloc_entry_2 Elf32_reloc_entry_2 872 #define Elf_reloc_title Elf32_reloc_title 873 874 #define Elf_phdr Elf32_phdr 875 876 #define Elf_shdr Elf32_shdr 877 878 #define Elf_syms_table_entry Elf32_syms_table_entry 879 #define Elf_syms_table_title Elf32_syms_table_title 880 881 #define Elf_ver_def_title Elf32_ver_def_title 882 #define Elf_ver_line_1 Elf32_ver_line_1 883 #define Elf_ver_line_2 Elf32_ver_line_2 884 #define Elf_ver_line_3 Elf32_ver_line_3 885 #define Elf_ver_line_4 Elf32_ver_line_4 886 #define Elf_ver_line_5 Elf32_ver_line_5 887 #define Elf_ver_need_title Elf32_ver_need_title 888 889 #endif 890 891 extern void Elf_cap_entry(Lm_list *, Cap *, int, Half); 892 extern void Elf_cap_title(Lm_list *); 893 894 extern const char \ 895 *Elf_demangle_name(const char *); 896 extern void Elf_dyn_entry(Lm_list *, Dyn *, int, const char *, Half); 897 extern void Elf_dyn_title(Lm_list *); 898 899 extern void Elf_ehdr(Lm_list *, Ehdr *, Shdr *); 900 901 extern void Elf_got_entry(Lm_list *, Sword, Addr, Xword, Half, Word, void *, 902 const char *); 903 extern void Elf_got_title(Lm_list *); 904 905 extern void Elf_phdr(Lm_list *, Half, Phdr *); 906 907 extern void Elf_reloc_apply_val(Lm_list *, int, Xword, Xword); 908 extern void Elf_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword); 909 extern void Elf_reloc_entry_1(Lm_list *, int, const char *, Half, Word, 910 void *, const char *, const char *, const char *); 911 extern void Elf_reloc_entry_2(Lm_list *, int, const char *, Word, 912 const char *, Off, Sxword, const char *, const char *, 913 const char *); 914 extern void Elf_reloc_title(Lm_list *, int, Word); 915 916 extern void Elf_shdr(Lm_list *, Half, Shdr *); 917 918 extern void Elf_syms_table_entry(Lm_list *, int, const char *, Half, Sym *, 919 Word, const char *, const char *); 920 extern void Elf_syms_table_title(Lm_list *, int); 921 922 extern void Elf_ver_def_title(Lm_list *); 923 extern void Elf_ver_line_1(Lm_list *, const char *, const char *, 924 const char *, const char *); 925 extern void Elf_ver_line_2(Lm_list *, const char *, const char *); 926 extern void Elf_ver_line_3(Lm_list *, const char *, const char *, 927 const char *); 928 extern void Elf_ver_line_4(Lm_list *, const char *); 929 extern void Elf_ver_line_5(Lm_list *, const char *, const char *); 930 extern void Elf_ver_need_title(Lm_list *); 931 932 #ifdef __cplusplus 933 } 934 #endif 935 936 #endif /* _DEBUG_H */ 937