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