debug.h revision 11827:d7ef53deac3f
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 2010 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/*
31 * Global include file for lddbg debugging.
32 *
33 * ld(1) and ld.so.1(1) carry out all diagnostic debugging calls via lazy
34 * loading the library liblddbg.so.  Thus debugging is always enabled.  The
35 * utility elfdump(1) is explicitly dependent upon this library.  There are two
36 * categories of routines defined in this library:
37 *
38 *  o	Debugging routines that have specific linker knowledge, and test the
39 *	class of debugging allowable before proceeding, start with the `Dbg_'
40 *	prefix.
41 *
42 *  o	Lower level routines that provide generic ELF structure interpretation
43 *	start with the `Elf_' prefix.  These latter routines are the only
44 *	routines used by the elfdump(1) utility.
45 */
46#include <sys/times.h>
47#include <sgs.h>
48#include <libld.h>
49#include <rtld.h>
50#include <gelf.h>
51
52#ifdef	__cplusplus
53extern "C" {
54#endif
55
56/*
57 * Define Dbg_*() interface values.  These values direct the debugging routine
58 * to generate different diagnostics, thus the strings themselves are maintained
59 * in the debugging library.
60 */
61#define	DBG_SUP_ENVIRON		1
62#define	DBG_SUP_CMDLINE		2
63
64#define	DBG_CONF_IGNORE		1	/* configuration processing errors */
65#define	DBG_CONF_VERSION	2
66#define	DBG_CONF_PRCFAIL	3
67#define	DBG_CONF_CORRUPT	4
68#define	DBG_CONF_ABIMISMATCH	5
69
70#define	DBG_ORDER_INFO_RANGE	1	/* sh_link out of range */
71#define	DBG_ORDER_INFO_ORDER	2	/* sh_info also ordered */
72#define	DBG_ORDER_LINK_OUTRANGE	3	/* sh_link out of range */
73#define	DBG_ORDER_FLAGS		4	/* sh_flags do not match */
74#define	DBG_ORDER_CYCLIC	5	/* sh_link cyclic */
75#define	DBG_ORDER_LINK_ERROR	6	/* sh_link (one) has an error */
76
77#define	DBG_INIT_SORT		1	/* calling init from sorted order */
78#define	DBG_INIT_PEND		2	/* calling pending init */
79#define	DBG_INIT_DYN		3	/* dynamically triggered init */
80#define	DBG_INIT_DONE		4	/* init completed */
81
82#define	DBG_DLSYM_DEF		0
83#define	DBG_DLSYM_NEXT		1
84#define	DBG_DLSYM_DEFAULT	2
85#define	DBG_DLSYM_SELF		3
86#define	DBG_DLSYM_PROBE		4
87#define	DBG_DLSYM_SINGLETON	5
88
89#define	DBG_DLCLOSE_NULL	0
90#define	DBG_DLCLOSE_IGNORE	1
91#define	DBG_DLCLOSE_RESCAN	2
92
93#define	DBG_SYM_REDUCE_GLOBAL	1	/* reporting global symbols to local */
94#define	DBG_SYM_REDUCE_RETAIN	2	/* reporting non reduced local syms */
95
96/*
97 * Group handle operations - passed to Dbg_file_hdl_title().  Indicate why
98 * handle dependencies are being manipulated.
99 */
100#define	DBG_HDL_CREATE		0	/* handle creation */
101#define	DBG_HDL_ADD		1	/* addition to existing handle */
102#define	DBG_HDL_DELETE		2	/* deletion from a handle */
103#define	DBG_HDL_ORPHAN		3	/* handle being moved to orphan list */
104#define	DBG_HDL_REINST		4	/* handle reinstated from orphan list */
105
106/*
107 * Group handle dependency operations - passed to Dbg_file_hdl_action().
108 * Identify the dependencies that are associated with a handle.
109 */
110#define	DBG_DEP_ADD		0	/* dependency added */
111#define	DBG_DEP_UPDATE		1	/* dependency updated */
112#define	DBG_DEP_DELETE		2	/* dependency deleted */
113#define	DBG_DEP_REMOVE		3	/* dependency removed from handle */
114#define	DBG_DEP_REMAIN		4	/* dependency must remain on handle */
115#define	DBG_DEP_ORPHAN		5	/* dependency must remain an orphan */
116#define	DBG_DEP_REINST		6	/* dependency reinstated from orphan */
117
118/*
119 * Binding information, indicating the result of a symbol binding.  Can also
120 * indicate the reference as being EXTERN or PARENT.  Binding information is
121 * used to augment diagnostic binding information (which in turn can be used by
122 * lari(1)), and to enable ldd(1) -p processing.
123 */
124#define	DBG_BINFO_FOUND		0x0001	/* information regarding binding */
125#define	DBG_BINFO_DIRECT	0x0002	/* bound directly */
126#define	DBG_BINFO_COPYREF	0x0004	/* bound to copy relocated reference */
127#define	DBG_BINFO_FILTEE	0x0008	/* bound to filtee */
128#define	DBG_BINFO_INTERPOSE	0x0010	/* bound to an identified interposer */
129#define	DBG_BINFO_PLTADDR	0x0020	/* bound to executables undefined plt */
130#define	DBG_BINFO_MSK		0x0fff
131
132#define	DBG_BINFO_REF_EXTERN	0x1000	/* reference to EXTERN */
133#define	DBG_BINFO_REF_PARENT	0x2000	/* reference to PARENT */
134#define	DBG_BINFO_REF_MSK	0xf000
135
136/*
137 * ld.so.1(1) symbol capabilities processing.
138 */
139#define	DBG_CAP_DEFAULT		0
140#define	DBG_CAP_USED		1
141#define	DBG_CAP_CANDIDATE	2
142#define	DBG_CAP_REJECTED	3
143#define	DBG_CAP_HW_1		4
144#define	DBG_CAP_SF_1		5
145#define	DBG_CAP_HW_2		6
146#define	DBG_CAP_PLAT		7
147#define	DBG_CAP_MACH		8
148
149#define	DBG_REL_START		1
150#define	DBG_REL_FINISH		2
151#define	DBG_REL_NONE		3
152
153#define	DBG_NL_STD		0	/* newline controllers - standard and */
154#define	DBG_NL_FRC		2	/*    forced. */
155
156#define	DBG_BNDREJ_DIRECT	0	/* bind rejected, direct to nodirect */
157#define	DBG_BNDREJ_GROUP	1	/* bind rejected, group to nodirect */
158#define	DBG_BNDREJ_SINGLE	2	/* bind rejected, singleton without */
159					/*    default search model */
160#define	DBG_BNDREJ_NUM		DBG_BNDREJ_SINGLE
161
162/*
163 * Dbg_state_str() is used to obtain commonly used "state transition"
164 * strings used in various debugging output.
165 */
166#define	DBG_STATE_ADD		0	/* add */
167#define	DBG_STATE_CURRENT	1	/* current */
168#define	DBG_STATE_EXCLUDE	2	/* exclude */
169#define	DBG_STATE_IGNORED	3	/* ignored */
170#define	DBG_STATE_MOD_BEFORE	4	/* modify (before) */
171#define	DBG_STATE_MOD_AFTER	5	/* modify (after) */
172#define	DBG_STATE_NEW 		6	/* new */
173#define	DBG_STATE_NEW_IMPLICIT	7	/* new (implicit) */
174#define	DBG_STATE_RESET		8	/* reset */
175#define	DBG_STATE_ORIGINAL	9	/* original */
176#define	DBG_STATE_RESOLVED	10	/* resolved */
177
178#define	DBG_STATE_NUM		11
179typedef uint_t dbg_state_t;
180extern	const char *Dbg_state_str(dbg_state_t);
181
182/*
183 * Define a debug descriptor, and a user macro that inspects the descriptor as
184 * a means of triggering a class of diagnostic output.
185 */
186typedef struct {
187	uint_t		d_class;	/* debugging classes */
188	uint_t		d_extra;	/* extra public information */
189	APlist		*d_list;	/* accepted link-map list names */
190	struct timeval	d_totaltime;	/* total time since entry - */
191					/*	gettimeofday(3c) */
192	struct timeval	d_deltatime;	/* delta time since last diagnostic - */
193					/*	gettimeofday(3c) */
194} Dbg_desc;
195
196extern	Dbg_desc	*dbg_desc;
197
198/*
199 * Macros used to avoid calls to liblddbg unless debugging is enabled.
200 * liblddbg is lazy loaded --- this prevents it from happening unless
201 * it will actually be used.
202 */
203#define	DBG_ENABLED	(dbg_desc->d_class)
204#define	DBG_CALL(func)	if (DBG_ENABLED) func
205
206/*
207 * Most debugging tokens are interpreted within liblddbg, and thus any flags
208 * within d_class are only meaningful to this library.  The following flags
209 * extend the d_class diagnostic, and are maintained in d_extra.  These flags
210 * may be interpreted by the debugging library itself or from the callers
211 * dbg_print() routine.
212 */
213#define	DBG_E_DETAIL	0x00000001	/* add detail to a class */
214#define	DBG_E_LONG	0x00000002	/* use long names (ie. no truncation) */
215#define	DBG_E_DEMANGLE	0x00000004	/* demangle symbol names */
216#define	DBG_E_STDNL	0x00000008	/* standard newline indicator */
217#define	DBG_E_HELP	0x00000010	/* help requested */
218#define	DBG_E_HELP_EXIT	0x00000020	/* hint: user should exit after help */
219#define	DBG_E_TTIME	0x00000040	/* prepend total time */
220#define	DBG_E_DTIME	0x00000080	/* prepend delta time */
221#define	DBG_E_RESET	0x00000100	/* reset times */
222
223/* ld only */
224#define	DBG_E_SNAME	0x00001000	/* prepend simple name */
225#define	DBG_E_FNAME	0x00002000	/* prepend full name */
226#define	DBG_E_CLASS	0x00004000	/* prepend ELF class */
227
228/* ld.so.1 only */
229#define	DBG_E_LMID	0x00100000	/* prepend link-map id */
230#define	DBG_E_LMID_LDSO	0x00200000	/* show ldso link-map list */
231#define	DBG_E_LMID_ALL	0x00400000	/* show all non-ldso link-map lists */
232#define	DBG_E_LMID_ALT	0x00800000	/* show all ALT link-map lists */
233#define	DBG_E_LMID_BASE	0x01000000	/* show BASE link-map list */
234
235
236#define	DBG_NOTDETAIL()	!(dbg_desc->d_extra & DBG_E_DETAIL)
237#define	DBG_NOTLONG()	!(dbg_desc->d_extra & DBG_E_LONG)
238
239#define	DBG_ISDEMANGLE() \
240			(dbg_desc->d_extra & DBG_E_DEMANGLE)
241
242#define	DBG_TOTALTIME	(dbg_desc->d_totaltime)
243#define	DBG_DELTATIME	(dbg_desc->d_deltatime)
244
245#define	DBG_ISTTIME()	(dbg_desc->d_extra & DBG_E_TTIME)
246#define	DBG_ISDTIME()	(dbg_desc->d_extra & DBG_E_DTIME)
247#define	DBG_ISTIME()	(dbg_desc->d_extra & (DBG_E_TTIME | DBG_E_DTIME))
248#define	DBG_NOTTIME()	!(dbg_desc->d_extra & (DBG_E_TTIME | DBG_E_DTIME))
249
250#define	DBG_ISRESET()	(dbg_desc->d_extra & DBG_E_RESET)
251#define	DBG_ONRESET()	(dbg_desc->d_extra |= DBG_E_RESET)
252#define	DBG_OFFRESET()	(dbg_desc->d_extra &= ~DBG_E_RESET)
253
254#define	DBG_ISSNAME()	(dbg_desc->d_extra & DBG_E_SNAME)
255#define	DBG_ISFNAME()	(dbg_desc->d_extra & DBG_E_FNAME)
256#define	DBG_ISCLASS()	(dbg_desc->d_extra & DBG_E_CLASS)
257#define	DBG_ISLMID()	(dbg_desc->d_extra & DBG_E_LMID)
258
259/*
260 * Print routine, this must be supplied by the application.  The initial
261 * argument may provide a link-map list to associate with the format statement
262 * that follows.
263 */
264/* PRINTFLIKE2 */
265extern	void		dbg_print(Lm_list *, const char *, ...);
266
267/*
268 * Initialization routine, called before any other Dbg routines to
269 * establish the necessary state.
270 */
271typedef enum { DBG_CALLER_LD, DBG_CALLER_RTLD } dbg_setup_caller_t;
272extern	int		Dbg_setup(dbg_setup_caller_t, const char *,
273			    Dbg_desc *, const char **);
274
275/* Call dbg_print() to produce linker version output */
276extern void		Dbg_version(void);
277
278/* Call dbg_print() to produce help output */
279extern	void		Dbg_help(void);
280
281/*
282 * Establish ELF32 and ELF64 class Dbg_*() interfaces.
283 */
284#if	defined(_ELF64)
285
286#define	Dbg_demangle_name	Dbg64_demangle_name
287
288#define	Dbg_bind_global		Dbg64_bind_global
289#define	Dbg_bind_plt_summary	Dbg64_bind_plt_summary
290#define	Dbg_bind_pltpad_from	Dbg64_bind_pltpad_from
291#define	Dbg_bind_pltpad_to	Dbg64_bind_pltpad_to
292#define	Dbg_bind_reject		Dbg64_bind_reject
293#define	Dbg_bind_weak		Dbg64_bind_weak
294
295#define	Dbg_cap_candidate	Dbg64_cap_candidate
296#define	Dbg_cap_filter		Dbg64_cap_filter
297#define	Dbg_cap_id		Dbg64_cap_id
298#define	Dbg_cap_mapfile_title	Dbg64_cap_mapfile_title
299#define	Dbg_cap_post_title	Dbg64_cap_post_title
300#define	Dbg_cap_sec_title	Dbg64_cap_sec_title
301#define	Dbg_cap_val		Dbg64_cap_val
302#define	Dbg_cap_ptr_entry	Dbg64_cap_ptr_entry
303#define	Dbg_cap_val_entry	Dbg64_cap_val_entry
304
305#define	Dbg_cb_iphdr_enter	Dbg64_cb_iphdr_enter
306#define	Dbg_cb_iphdr_callback	Dbg64_cb_iphdr_callback
307#define	Dbg_cb_iphdr_mapchange	Dbg64_cb_iphdr_mapchange
308#define	Dbg_cb_iphdr_unmap_ret	Dbg64_cb_iphdr_unmap_ret
309
310#define	Dbg_ent_entry		Dbg64_ent_entry
311#define	Dbg_ent_print		Dbg64_ent_print
312
313#define	Dbg_file_analyze	Dbg64_file_analyze
314#define	Dbg_file_aout		Dbg64_file_aout
315#define	Dbg_file_ar		Dbg64_file_ar
316#define	Dbg_file_ar_rescan	Dbg64_file_ar_rescan
317#define	Dbg_file_bind_entry	Dbg64_file_bind_entry
318#define	Dbg_file_bindings	Dbg64_file_bindings
319#define	Dbg_file_bindings_done	Dbg64_file_bindings_done
320#define	Dbg_file_cleanup	Dbg64_file_cleanup
321#define	Dbg_file_cntl		Dbg64_file_cntl
322#define	Dbg_file_config_dis	Dbg64_file_config_dis
323#define	Dbg_file_config_obj	Dbg64_file_config_obj
324#define	Dbg_file_del_rescan	Dbg64_file_del_rescan
325#define	Dbg_file_delete		Dbg64_file_delete
326#define	Dbg_file_dlclose	Dbg64_file_dlclose
327#define	Dbg_file_dldump		Dbg64_file_dldump
328#define	Dbg_file_dlopen		Dbg64_file_dlopen
329#define	Dbg_file_elf		Dbg64_file_elf
330#define	Dbg_file_filtee		Dbg64_file_filtee
331#define	Dbg_file_filter		Dbg64_file_filter
332#define	Dbg_file_fixname	Dbg64_file_fixname
333#define	Dbg_file_generic	Dbg64_file_generic
334#define	Dbg_file_hdl_action	Dbg64_file_hdl_action
335#define	Dbg_file_hdl_collect	Dbg64_file_hdl_collect
336#define	Dbg_file_hdl_title	Dbg64_file_hdl_title
337#define	Dbg_file_lazyload	Dbg64_file_lazyload
338#define	Dbg_file_ldso		Dbg64_file_ldso
339#define	Dbg_file_mmapobj	Dbg64_file_mmapobj
340#define	Dbg_file_mode_promote	Dbg64_file_mode_promote
341#define	Dbg_file_modified	Dbg64_file_modified
342#define	Dbg_file_needed		Dbg64_file_needed
343#define	Dbg_file_output		Dbg64_file_output
344#define	Dbg_file_preload	Dbg64_file_preload
345#define	Dbg_file_prot		Dbg64_file_prot
346#define	Dbg_file_rejected	Dbg64_file_rejected
347#define	Dbg_file_reuse		Dbg64_file_reuse
348#define	Dbg_file_skip		Dbg64_file_skip
349
350#define	Dbg_got_display		Dbg64_got_display
351
352#define	Dbg_libs_audit		Dbg64_libs_audit
353#define	Dbg_libs_find		Dbg64_libs_find
354#define	Dbg_libs_found		Dbg64_libs_found
355#define	Dbg_libs_insecure	Dbg64_libs_insecure
356#define	Dbg_libs_init		Dbg64_libs_init
357#define	Dbg_libs_l		Dbg64_libs_l
358#define	Dbg_libs_path		Dbg64_libs_path
359#define	Dbg_libs_req		Dbg64_libs_req
360#define	Dbg_libs_update		Dbg64_libs_update
361#define	Dbg_libs_yp		Dbg64_libs_yp
362#define	Dbg_libs_ylu		Dbg64_libs_ylu
363
364#define	Dbg_map_cexp_id		Dbg64_map_cexp_id
365#define	Dbg_map_dv		Dbg64_map_dv
366#define	Dbg_map_dv_entry	Dbg64_map_dv_entry
367#define	Dbg_map_ent		Dbg64_map_ent
368#define	Dbg_map_ent_ord_title	Dbg64_map_ent_ord_title
369#define	Dbg_map_hdr_noalloc	Dbg64_map_hdr_noalloc
370#define	Dbg_map_parse		Dbg64_map_parse
371#define	Dbg_map_pass		Dbg64_map_pass
372#define	Dbg_map_post_title	Dbg64_map_post_title
373#define	Dbg_map_seg		Dbg64_map_seg
374#define	Dbg_map_seg_order	Dbg64_map_seg_order
375#define	Dbg_map_seg_os_order	Dbg64_map_seg_os_order
376#define	Dbg_map_size_new	Dbg64_map_size_new
377#define	Dbg_map_size_old	Dbg64_map_size_old
378#define	Dbg_map_sort_seg	Dbg64_map_sort_seg
379#define	Dbg_map_sort_title	Dbg64_map_sort_title
380#define	Dbg_map_symbol		Dbg64_map_symbol
381#define	Dbg_map_version		Dbg64_map_version
382
383#define	Dbg_move_adjexpandreloc	Dbg64_move_adjexpandreloc
384#define	Dbg_move_adjmovereloc	Dbg64_move_adjmovereloc
385#define	Dbg_move_bad		Dbg64_move_bad
386#define	Dbg_move_data		Dbg64_move_data
387#define	Dbg_move_entry1		Dbg64_move_entry1
388#define	Dbg_move_entry2		Dbg64_move_entry2
389#define	Dbg_move_expand		Dbg64_move_expand
390#define	Dbg_move_input		Dbg64_move_input
391#define	Dbg_move_outmove	Dbg64_move_outmove
392#define	Dbg_move_outsctadj	Dbg64_move_outsctadj
393#define	Dbg_move_parexpn	Dbg64_move_parexpn
394
395#define	Dbg_reloc_apply_reg	Dbg64_reloc_apply_reg
396#define	Dbg_reloc_apply_val	Dbg64_reloc_apply_val
397#define	Dbg_reloc_ars_entry	Dbg64_reloc_ars_entry
398#define	Dbg_reloc_copy		Dbg64_reloc_copy
399#define	Dbg_reloc_discard	Dbg64_reloc_discard
400#define	Dbg_reloc_doact		Dbg64_reloc_doact
401#define	Dbg_reloc_doact_title	Dbg64_reloc_doact_title
402#define	Dbg_reloc_dooutrel	Dbg64_reloc_dooutrel
403#define	Dbg_reloc_entry		Dbg64_reloc_entry
404#define	Dbg_reloc_error		Dbg64_reloc_error
405#define	Dbg_reloc_generate	Dbg64_reloc_generate
406#define	Dbg_reloc_in		Dbg64_reloc_in
407#define	Dbg_reloc_ors_entry	Dbg64_reloc_ors_entry
408#define	Dbg_reloc_out		Dbg64_reloc_out
409#define	Dbg_reloc_proc		Dbg64_reloc_proc
410#define	Dbg_reloc_run		Dbg64_reloc_run
411#define	Dbg_reloc_transition	Dbg64_reloc_transition
412#define	Dbg_reloc_sloppycomdat	Dbg64_reloc_sloppycomdat
413
414#define	Dbg_sec_added		Dbg64_sec_added
415#define	Dbg_sec_backing		Dbg64_sec_backing
416#define	Dbg_sec_created		Dbg64_sec_created
417#define	Dbg_sec_discarded	Dbg64_sec_discarded
418#define	Dbg_sec_genstr_compress	Dbg64_sec_genstr_compress
419#define	Dbg_sec_group		Dbg64_sec_group
420#define	Dbg_sec_gnu_comdat	Dbg64_sec_gnu_comdat
421#define	Dbg_sec_in		Dbg64_sec_in
422#define	Dbg_sec_order_error	Dbg64_sec_order_error
423#define	Dbg_sec_order_list	Dbg64_sec_order_list
424#define	Dbg_sec_redirected	Dbg64_sec_redirected
425#define	Dbg_sec_strtab		Dbg64_sec_strtab
426#define	Dbg_sec_unsup_strmerge	Dbg64_sec_unsup_strmerge
427
428#define	Dbg_seg_desc_entry	Dbg64_seg_desc_entry
429#define	Dbg_seg_entry		Dbg64_seg_entry
430#define	Dbg_seg_list		Dbg64_seg_list
431#define	Dbg_seg_os		Dbg64_seg_os
432#define	Dbg_seg_title		Dbg64_seg_title
433
434#define	Dbg_shdr_modified	Dbg64_shdr_modified
435
436#define	Dbg_statistics_ar	Dbg64_statistics_ar
437#define	Dbg_statistics_ld	Dbg64_statistics_ld
438
439#define	Dbg_support_action	Dbg64_support_action
440#define	Dbg_support_load	Dbg64_support_load
441#define	Dbg_support_req		Dbg64_support_req
442#define	Dbg_support_vnone	Dbg64_support_vnone
443
444#define	Dbg_syminfo_entry	Dbg64_syminfo_entry
445#define	Dbg_syminfo_title	Dbg64_syminfo_title
446
447#define	Dbg_syms_ar_checking	Dbg64_syms_ar_checking
448#define	Dbg_syms_ar_entry	Dbg64_syms_ar_entry
449#define	Dbg_syms_ar_resolve	Dbg64_syms_ar_resolve
450#define	Dbg_syms_ar_title	Dbg64_syms_ar_title
451#define	Dbg_syms_cap_convert	Dbg64_syms_cap_convert
452#define	Dbg_syms_cap_local	Dbg64_syms_cap_local
453#define	Dbg_syms_cap_lookup	Dbg64_syms_cap_lookup
454#define	Dbg_syms_cap_title	Dbg64_syms_cap_title
455#define	Dbg_syms_created	Dbg64_syms_created
456#define	Dbg_syms_discarded	Dbg64_syms_discarded
457#define	Dbg_syms_dlsym		Dbg64_syms_dlsym
458#define	Dbg_syms_dup_discarded	Dbg64_syms_dup_discarded
459#define	Dbg_syms_dup_sort_addr	Dbg64_syms_dup_sort_addr
460#define	Dbg_syms_entered	Dbg64_syms_entered
461#define	Dbg_syms_entry		Dbg64_syms_entry
462#define	Dbg_syms_global		Dbg64_syms_global
463#define	Dbg_syms_ignore		Dbg64_syms_ignore
464#define	Dbg_syms_ignore_gnuver	Dbg64_syms_ignore_gnuver
465#define	Dbg_syms_lazy_rescan	Dbg64_syms_lazy_rescan
466#define	Dbg_syms_lookup		Dbg64_syms_lookup
467#define	Dbg_syms_new		Dbg64_syms_new
468#define	Dbg_syms_old		Dbg64_syms_old
469#define	Dbg_syms_process	Dbg64_syms_process
470#define	Dbg_syms_reduce		Dbg64_syms_reduce
471#define	Dbg_syms_reloc		Dbg64_syms_reloc
472#define	Dbg_syms_resolved	Dbg64_syms_resolved
473#define	Dbg_syms_resolving	Dbg64_syms_resolving
474#define	Dbg_syms_sec_entry	Dbg64_syms_sec_entry
475#define	Dbg_syms_sec_title	Dbg64_syms_sec_title
476#define	Dbg_syms_spec_title	Dbg64_syms_spec_title
477#define	Dbg_syms_updated	Dbg64_syms_updated
478#define	Dbg_syms_up_title	Dbg64_syms_up_title
479#define	Dbg_syms_wrap		Dbg64_syms_wrap
480
481#define	Dbg_util_call_array	Dbg64_util_call_array
482#define	Dbg_util_call_fini	Dbg64_util_call_fini
483#define	Dbg_util_call_init	Dbg64_util_call_init
484#define	Dbg_util_call_main	Dbg64_util_call_main
485#define	Dbg_util_collect	Dbg64_util_collect
486#define	Dbg_util_dbnotify	Dbg64_util_dbnotify
487#define	Dbg_util_edge_in	Dbg64_util_edge_in
488#define	Dbg_util_edge_out	Dbg64_util_edge_out
489#define	Dbg_util_intoolate	Dbg64_util_intoolate
490#define	Dbg_util_lcinterface	Dbg64_util_lcinterface
491#define	Dbg_util_nl		Dbg64_util_nl
492#define	Dbg_util_no_init	Dbg64_util_no_init
493#define	Dbg_util_scc_entry	Dbg64_util_scc_entry
494#define	Dbg_util_scc_title	Dbg64_util_scc_title
495#define	Dbg_util_str		Dbg64_util_str
496
497#define	Dbg_unused_file		Dbg64_unused_file
498#define	Dbg_unused_lcinterface	Dbg64_unused_lcinterface
499#define	Dbg_unused_path		Dbg64_unused_path
500#define	Dbg_unused_sec		Dbg64_unused_sec
501#define	Dbg_unused_unref	Dbg64_unused_unref
502
503#define	Dbg_ver_avail_entry	Dbg64_ver_avail_entry
504#define	Dbg_ver_avail_title	Dbg64_ver_avail_title
505#define	Dbg_ver_def_title	Dbg64_ver_def_title
506#define	Dbg_ver_desc_entry	Dbg64_ver_desc_entry
507#define	Dbg_ver_need_done	Dbg64_ver_need_done
508#define	Dbg_ver_need_entry	Dbg64_ver_need_entry
509#define	Dbg_ver_need_title	Dbg64_ver_need_title
510#define	Dbg_ver_nointerface	Dbg64_ver_nointerface
511#define	Dbg_ver_symbol		Dbg64_ver_symbol
512
513#else
514
515#define	Dbg_demangle_name	Dbg32_demangle_name
516
517#define	Dbg_bind_global		Dbg32_bind_global
518#define	Dbg_bind_plt_summary	Dbg32_bind_plt_summary
519#define	Dbg_bind_reject		Dbg32_bind_reject
520#define	Dbg_bind_weak		Dbg32_bind_weak
521
522#define	Dbg_cap_candidate	Dbg32_cap_candidate
523#define	Dbg_cap_filter		Dbg32_cap_filter
524#define	Dbg_cap_id		Dbg32_cap_id
525#define	Dbg_cap_mapfile_title	Dbg32_cap_mapfile_title
526#define	Dbg_cap_post_title	Dbg32_cap_post_title
527#define	Dbg_cap_sec_title	Dbg32_cap_sec_title
528#define	Dbg_cap_val		Dbg32_cap_val
529#define	Dbg_cap_ptr_entry	Dbg32_cap_ptr_entry
530#define	Dbg_cap_val_entry	Dbg32_cap_val_entry
531
532#define	Dbg_cb_iphdr_enter	Dbg32_cb_iphdr_enter
533#define	Dbg_cb_iphdr_callback	Dbg32_cb_iphdr_callback
534#define	Dbg_cb_iphdr_mapchange	Dbg32_cb_iphdr_mapchange
535#define	Dbg_cb_iphdr_unmap_ret	Dbg32_cb_iphdr_unmap_ret
536
537#define	Dbg_ent_entry		Dbg32_ent_entry
538#define	Dbg_ent_print		Dbg32_ent_print
539
540#define	Dbg_file_analyze	Dbg32_file_analyze
541#define	Dbg_file_aout		Dbg32_file_aout
542#define	Dbg_file_ar		Dbg32_file_ar
543#define	Dbg_file_ar_rescan	Dbg32_file_ar_rescan
544#define	Dbg_file_bind_entry	Dbg32_file_bind_entry
545#define	Dbg_file_bindings	Dbg32_file_bindings
546#define	Dbg_file_bindings_done	Dbg32_file_bindings_done
547#define	Dbg_file_cleanup	Dbg32_file_cleanup
548#define	Dbg_file_cntl		Dbg32_file_cntl
549#define	Dbg_file_config_dis	Dbg32_file_config_dis
550#define	Dbg_file_config_obj	Dbg32_file_config_obj
551#define	Dbg_file_del_rescan	Dbg32_file_del_rescan
552#define	Dbg_file_delete		Dbg32_file_delete
553#define	Dbg_file_dlclose	Dbg32_file_dlclose
554#define	Dbg_file_dldump		Dbg32_file_dldump
555#define	Dbg_file_dlopen		Dbg32_file_dlopen
556#define	Dbg_file_elf		Dbg32_file_elf
557#define	Dbg_file_filtee		Dbg32_file_filtee
558#define	Dbg_file_filter		Dbg32_file_filter
559#define	Dbg_file_fixname	Dbg32_file_fixname
560#define	Dbg_file_generic	Dbg32_file_generic
561#define	Dbg_file_hdl_action	Dbg32_file_hdl_action
562#define	Dbg_file_hdl_collect	Dbg32_file_hdl_collect
563#define	Dbg_file_hdl_title	Dbg32_file_hdl_title
564#define	Dbg_file_lazyload	Dbg32_file_lazyload
565#define	Dbg_file_ldso		Dbg32_file_ldso
566#define	Dbg_file_mmapobj	Dbg32_file_mmapobj
567#define	Dbg_file_mode_promote	Dbg32_file_mode_promote
568#define	Dbg_file_modified	Dbg32_file_modified
569#define	Dbg_file_needed		Dbg32_file_needed
570#define	Dbg_file_output		Dbg32_file_output
571#define	Dbg_file_preload	Dbg32_file_preload
572#define	Dbg_file_prot		Dbg32_file_prot
573#define	Dbg_file_rejected	Dbg32_file_rejected
574#define	Dbg_file_reuse		Dbg32_file_reuse
575#define	Dbg_file_skip		Dbg32_file_skip
576
577#define	Dbg_got_display		Dbg32_got_display
578
579#define	Dbg_libs_audit		Dbg32_libs_audit
580#define	Dbg_libs_find		Dbg32_libs_find
581#define	Dbg_libs_found		Dbg32_libs_found
582#define	Dbg_libs_insecure	Dbg32_libs_insecure
583#define	Dbg_libs_init		Dbg32_libs_init
584#define	Dbg_libs_l		Dbg32_libs_l
585#define	Dbg_libs_path		Dbg32_libs_path
586#define	Dbg_libs_req		Dbg32_libs_req
587#define	Dbg_libs_update		Dbg32_libs_update
588#define	Dbg_libs_yp		Dbg32_libs_yp
589#define	Dbg_libs_ylu		Dbg32_libs_ylu
590
591#define	Dbg_map_cexp_id		Dbg32_map_cexp_id
592#define	Dbg_map_dv		Dbg32_map_dv
593#define	Dbg_map_dv_entry	Dbg32_map_dv_entry
594#define	Dbg_map_ent		Dbg32_map_ent
595#define	Dbg_map_ent_ord_title	Dbg32_map_ent_ord_title
596#define	Dbg_map_hdr_noalloc	Dbg32_map_hdr_noalloc
597#define	Dbg_map_parse		Dbg32_map_parse
598#define	Dbg_map_pass		Dbg32_map_pass
599#define	Dbg_map_post_title	Dbg32_map_post_title
600#define	Dbg_map_seg		Dbg32_map_seg
601#define	Dbg_map_seg_order	Dbg32_map_seg_order
602#define	Dbg_map_seg_os_order	Dbg32_map_seg_os_order
603#define	Dbg_map_size_new	Dbg32_map_size_new
604#define	Dbg_map_size_old	Dbg32_map_size_old
605#define	Dbg_map_sort_seg	Dbg32_map_sort_seg
606#define	Dbg_map_sort_title	Dbg32_map_sort_title
607#define	Dbg_map_symbol		Dbg32_map_symbol
608#define	Dbg_map_version		Dbg32_map_version
609
610#define	Dbg_move_adjexpandreloc	Dbg32_move_adjexpandreloc
611#define	Dbg_move_adjmovereloc	Dbg32_move_adjmovereloc
612#define	Dbg_move_bad		Dbg32_move_bad
613#define	Dbg_move_data		Dbg32_move_data
614#define	Dbg_move_entry1		Dbg32_move_entry1
615#define	Dbg_move_entry2		Dbg32_move_entry2
616#define	Dbg_move_expand		Dbg32_move_expand
617#define	Dbg_move_input		Dbg32_move_input
618#define	Dbg_move_outmove	Dbg32_move_outmove
619#define	Dbg_move_outsctadj	Dbg32_move_outsctadj
620#define	Dbg_move_parexpn	Dbg32_move_parexpn
621
622#define	Dbg_reloc_apply_reg	Dbg32_reloc_apply_reg
623#define	Dbg_reloc_apply_val	Dbg32_reloc_apply_val
624#define	Dbg_reloc_ars_entry	Dbg32_reloc_ars_entry
625#define	Dbg_reloc_copy		Dbg32_reloc_copy
626#define	Dbg_reloc_discard	Dbg32_reloc_discard
627#define	Dbg_reloc_doact		Dbg32_reloc_doact
628#define	Dbg_reloc_doact_title	Dbg32_reloc_doact_title
629#define	Dbg_reloc_dooutrel	Dbg32_reloc_dooutrel
630#define	Dbg_reloc_entry		Dbg32_reloc_entry
631#define	Dbg_reloc_error		Dbg32_reloc_error
632#define	Dbg_reloc_generate	Dbg32_reloc_generate
633#define	Dbg_reloc_in		Dbg32_reloc_in
634#define	Dbg_reloc_ors_entry	Dbg32_reloc_ors_entry
635#define	Dbg_reloc_out		Dbg32_reloc_out
636#define	Dbg_reloc_proc		Dbg32_reloc_proc
637#define	Dbg_reloc_run		Dbg32_reloc_run
638#define	Dbg_reloc_transition	Dbg32_reloc_transition
639#define	Dbg_reloc_sloppycomdat	Dbg32_reloc_sloppycomdat
640
641#define	Dbg_sec_added		Dbg32_sec_added
642#define	Dbg_sec_backing		Dbg32_sec_backing
643#define	Dbg_sec_created		Dbg32_sec_created
644#define	Dbg_sec_discarded	Dbg32_sec_discarded
645#define	Dbg_sec_genstr_compress	Dbg32_sec_genstr_compress
646#define	Dbg_sec_group		Dbg32_sec_group
647#define	Dbg_sec_gnu_comdat	Dbg32_sec_gnu_comdat
648#define	Dbg_sec_in		Dbg32_sec_in
649#define	Dbg_sec_order_error	Dbg32_sec_order_error
650#define	Dbg_sec_order_list	Dbg32_sec_order_list
651#define	Dbg_sec_redirected	Dbg32_sec_redirected
652#define	Dbg_sec_strtab		Dbg32_sec_strtab
653#define	Dbg_sec_unsup_strmerge	Dbg32_sec_unsup_strmerge
654
655#define	Dbg_seg_desc_entry	Dbg32_seg_desc_entry
656#define	Dbg_seg_entry		Dbg32_seg_entry
657#define	Dbg_seg_list		Dbg32_seg_list
658#define	Dbg_seg_os		Dbg32_seg_os
659#define	Dbg_seg_title		Dbg32_seg_title
660
661#define	Dbg_shdr_modified	Dbg32_shdr_modified
662
663#define	Dbg_statistics_ar	Dbg32_statistics_ar
664#define	Dbg_statistics_ld	Dbg32_statistics_ld
665
666#define	Dbg_support_action	Dbg32_support_action
667#define	Dbg_support_load	Dbg32_support_load
668#define	Dbg_support_req		Dbg32_support_req
669#define	Dbg_support_vnone	Dbg32_support_vnone
670
671#define	Dbg_syminfo_entry	Dbg32_syminfo_entry
672#define	Dbg_syminfo_title	Dbg32_syminfo_title
673
674#define	Dbg_syms_ar_checking	Dbg32_syms_ar_checking
675#define	Dbg_syms_ar_entry	Dbg32_syms_ar_entry
676#define	Dbg_syms_ar_resolve	Dbg32_syms_ar_resolve
677#define	Dbg_syms_ar_title	Dbg32_syms_ar_title
678#define	Dbg_syms_cap_convert	Dbg32_syms_cap_convert
679#define	Dbg_syms_cap_local	Dbg32_syms_cap_local
680#define	Dbg_syms_cap_lookup	Dbg32_syms_cap_lookup
681#define	Dbg_syms_cap_title	Dbg32_syms_cap_title
682#define	Dbg_syms_created	Dbg32_syms_created
683#define	Dbg_syms_discarded	Dbg32_syms_discarded
684#define	Dbg_syms_dlsym		Dbg32_syms_dlsym
685#define	Dbg_syms_dup_discarded	Dbg32_syms_dup_discarded
686#define	Dbg_syms_dup_sort_addr	Dbg32_syms_dup_sort_addr
687#define	Dbg_syms_entered	Dbg32_syms_entered
688#define	Dbg_syms_entry		Dbg32_syms_entry
689#define	Dbg_syms_global		Dbg32_syms_global
690#define	Dbg_syms_ignore		Dbg32_syms_ignore
691#define	Dbg_syms_ignore_gnuver	Dbg32_syms_ignore_gnuver
692#define	Dbg_syms_lazy_rescan	Dbg32_syms_lazy_rescan
693#define	Dbg_syms_lookup		Dbg32_syms_lookup
694#define	Dbg_syms_lookup_aout	Dbg32_syms_lookup_aout
695#define	Dbg_syms_new		Dbg32_syms_new
696#define	Dbg_syms_old		Dbg32_syms_old
697#define	Dbg_syms_process	Dbg32_syms_process
698#define	Dbg_syms_reduce		Dbg32_syms_reduce
699#define	Dbg_syms_reloc		Dbg32_syms_reloc
700#define	Dbg_syms_resolved	Dbg32_syms_resolved
701#define	Dbg_syms_resolving	Dbg32_syms_resolving
702#define	Dbg_syms_sec_entry	Dbg32_syms_sec_entry
703#define	Dbg_syms_sec_title	Dbg32_syms_sec_title
704#define	Dbg_syms_spec_title	Dbg32_syms_spec_title
705#define	Dbg_syms_updated	Dbg32_syms_updated
706#define	Dbg_syms_up_title	Dbg32_syms_up_title
707#define	Dbg_syms_wrap		Dbg32_syms_wrap
708
709#define	Dbg_util_call_array	Dbg32_util_call_array
710#define	Dbg_util_call_fini	Dbg32_util_call_fini
711#define	Dbg_util_call_init	Dbg32_util_call_init
712#define	Dbg_util_call_main	Dbg32_util_call_main
713#define	Dbg_util_collect	Dbg32_util_collect
714#define	Dbg_util_dbnotify	Dbg32_util_dbnotify
715#define	Dbg_util_edge_in	Dbg32_util_edge_in
716#define	Dbg_util_edge_out	Dbg32_util_edge_out
717#define	Dbg_util_intoolate	Dbg32_util_intoolate
718#define	Dbg_util_lcinterface	Dbg32_util_lcinterface
719#define	Dbg_util_nl		Dbg32_util_nl
720#define	Dbg_util_no_init	Dbg32_util_no_init
721#define	Dbg_util_scc_entry	Dbg32_util_scc_entry
722#define	Dbg_util_scc_title	Dbg32_util_scc_title
723#define	Dbg_util_str		Dbg32_util_str
724
725#define	Dbg_unused_file		Dbg32_unused_file
726#define	Dbg_unused_lcinterface	Dbg32_unused_lcinterface
727#define	Dbg_unused_path		Dbg32_unused_path
728#define	Dbg_unused_sec		Dbg32_unused_sec
729#define	Dbg_unused_unref	Dbg32_unused_unref
730
731#define	Dbg_ver_avail_entry	Dbg32_ver_avail_entry
732#define	Dbg_ver_avail_title	Dbg32_ver_avail_title
733#define	Dbg_ver_def_title	Dbg32_ver_def_title
734#define	Dbg_ver_desc_entry	Dbg32_ver_desc_entry
735#define	Dbg_ver_need_done	Dbg32_ver_need_done
736#define	Dbg_ver_need_entry	Dbg32_ver_need_entry
737#define	Dbg_ver_need_title	Dbg32_ver_need_title
738#define	Dbg_ver_nointerface	Dbg32_ver_nointerface
739#define	Dbg_ver_symbol		Dbg32_ver_symbol
740
741#endif
742
743/*
744 * External Dbg_*() interface routines.
745 */
746extern	void	Dbg_args_file(Lm_list *, int, char *);
747extern	void	Dbg_args_option(Lm_list *, int, int, char *);
748extern	void	Dbg_args_str2chr(Lm_list *, int, const char *, int);
749extern	void	Dbg_args_Wldel(Lm_list *, int, const char *);
750extern	void	Dbg_audit_ignore(Rt_map *);
751extern	void	Dbg_audit_interface(Lm_list *, const char *, const char *);
752extern	void	Dbg_audit_lib(Lm_list *, const char *);
753extern	void	Dbg_audit_object(Lm_list *, const char *, const char *);
754extern	void	Dbg_audit_symval(Lm_list *, const char *, const char *,
755		    const char *, Addr, Addr);
756extern	void	Dbg_audit_skip(Lm_list *, const char *, const char *);
757extern	void	Dbg_audit_terminate(Lm_list *, const char *);
758extern	void	Dbg_audit_version(Lm_list *, const char *, ulong_t);
759
760extern	void	Dbg_basic_collect(Lm_list *);
761extern	void	Dbg_basic_create(Lm_list *);
762extern	void	Dbg_basic_finish(Lm_list *);
763extern	void	Dbg_basic_files(Lm_list *);
764extern	void	Dbg_basic_options(Lm_list *);
765extern	void	Dbg_basic_relocate(Lm_list *);
766extern	void	Dbg_basic_validate(Lm_list *);
767
768extern	void	Dbg_bind_global(Rt_map *, Addr, Off, Xword, Pltbindtype,
769		    Rt_map *, Addr, Off, const char *, uint_t);
770extern	void	Dbg_bind_plt_summary(Lm_list *, Half, Word, Word, Word, Word,
771		    Word, Word);
772#if	defined(_ELF64)
773extern	void	Dbg_bind_pltpad_from(Rt_map *, Addr, const char *);
774extern	void	Dbg_bind_pltpad_to(Rt_map *, Addr, const char *, const char *);
775#endif
776extern	void	Dbg_bind_reject(Rt_map *, Rt_map *, const char *, int);
777extern	void	Dbg_bind_weak(Rt_map *, Addr, Addr, const char *);
778
779extern	void	Dbg_cap_candidate(Lm_list *, const char *);
780extern	void	Dbg_cap_filter(Lm_list *, const char *, Rt_map *);
781extern	void	Dbg_cap_id(Lm_list *, Lineno, const char *, const char *);
782extern	void	Dbg_cap_mapfile_title(Lm_list *, Lineno);
783extern	void	Dbg_cap_post_title(Lm_list *, int *);
784extern	void	Dbg_cap_sec_title(Lm_list *, const char *);
785extern	void	Dbg_cap_val(Lm_list *, Syscapset *, Syscapset *, Half);
786extern	void	Dbg_cap_ptr_entry(Lm_list *, dbg_state_t, Xword, const char *);
787extern	void	Dbg_cap_val_entry(Lm_list *, dbg_state_t, Xword, Xword, Half);
788
789extern	void	Dbg_cb_iphdr_enter(Lm_list *, u_longlong_t, u_longlong_t);
790extern	void	Dbg_cb_iphdr_callback(Lm_list *, struct dl_phdr_info *);
791extern	void	Dbg_cb_iphdr_mapchange(Lm_list *, u_longlong_t, u_longlong_t);
792extern	void	Dbg_cb_iphdr_unmap_ret(Lm_list *);
793
794extern	const char *
795		Dbg_demangle_name(const char *);
796
797extern	void	Dbg_ent_entry(Lm_list *, uchar_t, Half, Ent_desc *);
798extern	void	Dbg_ent_print(Lm_list *, uchar_t, Half, APlist *);
799
800extern	void	Dbg_file_analyze(Rt_map *);
801extern	void	Dbg_file_aout(Lm_list *, const char *, Addr, size_t,
802		    const char *, Aliste);
803extern	void	Dbg_file_ar(Lm_list *, const char *, int);
804extern	void	Dbg_file_ar_rescan(Lm_list *, int, int);
805extern	void	Dbg_file_bind_entry(Lm_list *, Bnd_desc *);
806extern	void	Dbg_file_bindings(Rt_map *, int);
807extern	void	Dbg_file_bindings_done(Lm_list *);
808extern	void	Dbg_file_cleanup(Lm_list *, const char *, Aliste);
809extern	void	Dbg_file_cntl(Lm_list *, Aliste, Aliste);
810extern	void	Dbg_file_config_dis(Lm_list *, const char *, int);
811extern	void	Dbg_file_config_obj(Lm_list *, const char *, const char *,
812		    const char *);
813extern	void	Dbg_file_del_rescan(Lm_list *);
814extern	void	Dbg_file_delete(Rt_map *);
815extern	void	Dbg_file_dlclose(Lm_list *, const char *, int);
816extern	void	Dbg_file_dldump(Rt_map *, const char *, int);
817extern	void	Dbg_file_dlopen(Rt_map *, const char *, int *, int);
818extern	void	Dbg_file_elf(Lm_list *, const char *, Addr, size_t,
819		    const char *, Aliste);
820extern	void	Dbg_file_filtee(Lm_list *, const char *, const char *, int);
821extern	void	Dbg_file_filter(Lm_list *, const char *, const char *, int);
822extern	void	Dbg_file_fixname(Lm_list *, const char *, const char *);
823extern	void	Dbg_file_generic(Lm_list *, Ifl_desc *);
824extern	void	Dbg_file_hdl_action(Grp_hdl *, Rt_map *, int, uint_t);
825extern	void	Dbg_file_hdl_collect(Grp_hdl *, const char *);
826extern	void	Dbg_file_hdl_title(int);
827extern	void	Dbg_file_lazyload(Rt_map *, const char *, const char *);
828extern	void	Dbg_file_ldso(Rt_map *, char **, auxv_t *, const char *,
829		    Aliste);
830extern	void	Dbg_file_mmapobj(Lm_list *, const char *, mmapobj_result_t *,
831		    uint_t);
832extern	void	Dbg_file_mode_promote(Rt_map *, int);
833extern	void	Dbg_file_modified(Lm_list *, const char *, const char *,
834		    const char *, int, int, Elf *, Elf *);
835extern	void	Dbg_file_needed(Rt_map *, const char *);
836extern	void	Dbg_file_output(Ofl_desc *);
837extern	void	Dbg_file_preload(Lm_list *, const char *);
838extern	void	Dbg_file_prot(Rt_map *, int);
839extern	void	Dbg_file_rejected(Lm_list *, Rej_desc *, Half mach);
840extern	void	Dbg_file_reuse(Lm_list *, const char *, const char *);
841extern	void	Dbg_file_skip(Lm_list *, const char *, const char *);
842
843extern	void	Dbg_got_display(Ofl_desc *, Off, int, Word, size_t);
844
845extern	void	Dbg_libs_audit(Lm_list *, const char *, const char *);
846extern	void	Dbg_libs_find(Lm_list *, const char *);
847extern	void	Dbg_libs_found(Lm_list *, const char *, int);
848extern	void	Dbg_libs_insecure(Lm_list *, const char *, int);
849extern	void	Dbg_libs_init(Lm_list *, APlist *, APlist *);
850extern	void	Dbg_libs_l(Lm_list *, const char *, const char *);
851extern	void	Dbg_libs_path(Lm_list *, const char *, uint_t, const char *);
852extern	void	Dbg_libs_req(Lm_list *, const char *, const char *,
853		    const char *);
854extern	void	Dbg_libs_update(Lm_list *, APlist *, APlist *);
855extern	void	Dbg_libs_yp(Lm_list *, const char *);
856extern	void	Dbg_libs_ylu(Lm_list *, const char *, const char *, int);
857
858extern	void	Dbg_map_cexp_id(Lm_list *, Boolean, const char *, Lineno,
859		    const char *);
860extern	void	Dbg_map_dv(Lm_list *, const char *, Lineno);
861extern	void	Dbg_map_dv_entry(Lm_list *, Lineno, int, const char *);
862extern	void	Dbg_map_ent(Lm_list *, Ent_desc *, Ofl_desc *, Lineno);
863extern	void	Dbg_map_ent_ord_title(Lm_list *, const char *);
864extern	void	Dbg_map_hdr_noalloc(Lm_list *, Lineno);
865extern	void	Dbg_map_parse(Lm_list *, const char *, int);
866extern	void	Dbg_map_pass(Lm_list *, Boolean, const char *, Lineno,
867		    const char *);
868extern	void	Dbg_map_post_title(Lm_list *);
869extern	void	Dbg_map_seg(Ofl_desc *, dbg_state_t, int, Sg_desc *, Lineno);
870extern	void	Dbg_map_seg_order(Ofl_desc *, uchar_t, Half, dbg_state_t,
871		    Lineno);
872extern	void	Dbg_map_seg_os_order(Lm_list *, Sg_desc *, const char *,
873		    Word, Lineno);
874extern	void	Dbg_map_size_new(Lm_list *, const char *, const char *, Lineno);
875extern	void	Dbg_map_size_old(Ofl_desc *, Sym_desc *, const char *, Lineno);
876extern	void	Dbg_map_sort_title(Lm_list *, Boolean);
877extern	void	Dbg_map_sort_seg(Lm_list *, uchar_t, Half, Sg_desc *);
878extern	void	Dbg_map_symbol(Ofl_desc *, Sym_desc *);
879extern	void	Dbg_map_version(Lm_list *, const char *, const char *, int);
880
881extern 	void	Dbg_move_adjexpandreloc(Lm_list *, Xword, const char *);
882extern 	void	Dbg_move_adjmovereloc(Lm_list *, Xword, Xword, const char *);
883extern	void	Dbg_move_bad(Lm_list *, ulong_t, const char *, Addr);
884extern	void	Dbg_move_data(Rt_map *);
885extern 	void	Dbg_move_entry1(Lm_list *, int, Move *, Sym_desc *);
886extern 	void	Dbg_move_entry2(Lm_list *, Move *, Word, const char *);
887extern 	void	Dbg_move_expand(Lm_list *, Move *, Addr);
888extern 	void	Dbg_move_input(Lm_list *, const char *);
889extern 	void	Dbg_move_outmove(Lm_list *, const char *);
890extern 	void	Dbg_move_outsctadj(Lm_list *, Sym_desc *);
891extern 	void	Dbg_move_parexpn(Lm_list *, const char *, const char *);
892
893extern	void	Dbg_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
894extern	void	Dbg_reloc_apply_val(Lm_list *, int, Xword, Xword);
895extern	void	Dbg_reloc_ars_entry(Lm_list *, int, Word, Half, Rel_desc *);
896extern	void	Dbg_reloc_copy(Rt_map *, Rt_map *, const char *, int);
897extern	void	Dbg_reloc_discard(Lm_list *, Half, Rel_desc *);
898extern	void	Dbg_reloc_doact(Lm_list *, int, Half, Word, Word, Xword, Xword,
899		    const char *, Os_desc *);
900extern	void	Dbg_reloc_doact_title(Lm_list *);
901extern	void	Dbg_reloc_dooutrel(Lm_list *, Word);
902extern	void	Dbg_reloc_entry(Lm_list *, const char *, Half, Word, void *,
903		    const char *, const char *, const char *);
904extern	void	Dbg_reloc_error(Lm_list *, int, Half, Word, void *,
905		    const char *);
906extern	void	Dbg_reloc_generate(Lm_list *, Os_desc *, Word);
907extern	void	Dbg_reloc_in(Lm_list *, int, Half, Word, void *, const char *,
908		    Word, const char *);
909extern	void	Dbg_reloc_ors_entry(Lm_list *, int, Word, Half, Rel_desc *);
910extern	void	Dbg_reloc_out(Ofl_desc *, int, Word, void *, const char *,
911		    const char *);
912extern	void	Dbg_reloc_proc(Lm_list *, Os_desc *, Is_desc *, Is_desc *);
913extern	void	Dbg_reloc_run(Rt_map *, uint_t, int, int);
914extern	void	Dbg_reloc_transition(Lm_list *, Half, Word, Rel_desc *);
915extern	void	Dbg_reloc_sloppycomdat(Lm_list *, Sym_desc *);
916
917extern	void	Dbg_sec_added(Lm_list *, Os_desc *, Sg_desc *);
918extern	void	Dbg_sec_backing(Lm_list *);
919extern	void	Dbg_sec_created(Lm_list *, Os_desc *, Sg_desc *);
920extern	void	Dbg_sec_discarded(Lm_list *, Is_desc *, Is_desc *);
921extern	void	Dbg_sec_genstr_compress(Lm_list *, const char *,
922		    Xword, Xword);
923extern	void	Dbg_sec_group(Lm_list *, Is_desc *, Group_desc *);
924extern	void	Dbg_sec_gnu_comdat(Lm_list *, Is_desc *, Boolean, Boolean);
925extern	void	Dbg_sec_in(Lm_list *, Is_desc *);
926extern	void	Dbg_sec_order_error(Lm_list *, Ifl_desc *, Word, int);
927extern	void	Dbg_sec_order_list(Ofl_desc *, int);
928extern	void	Dbg_sec_redirected(Lm_list *, Is_desc *, const char *);
929extern	void	Dbg_sec_strtab(Lm_list *, Os_desc *, Str_tbl *);
930extern	void	Dbg_sec_unsup_strmerge(Lm_list *, Is_desc *);
931
932extern	void	Dbg_seg_desc_entry(Lm_list *, uchar_t, Half, int, Sg_desc *,
933		    Boolean);
934extern	void	Dbg_seg_entry(Ofl_desc *, int, Sg_desc *);
935extern	void	Dbg_seg_list(Lm_list *, uchar_t, Half, APlist *);
936extern	void	Dbg_seg_os(Ofl_desc *, Os_desc *, int);
937extern	void	Dbg_seg_title(Lm_list *);
938
939extern	void	Dbg_shdr_modified(Lm_list *, const char *, uchar_t, Half,
940		    Word, Shdr *, Shdr *, const char *);
941
942extern	void	Dbg_statistics_ar(Ofl_desc *);
943extern	void	Dbg_statistics_ld(Ofl_desc *);
944
945extern	void	Dbg_support_action(Lm_list *, const char *, const char *,
946		    Support_ndx, const char *);
947extern	void	Dbg_support_load(Lm_list *, const char *, const char *);
948extern	void	Dbg_support_req(Lm_list *, const char *, int);
949extern	void	Dbg_support_vnone(Lm_list *, const char *);
950
951extern	void	Dbg_syminfo_entry(Lm_list *, Word, Syminfo *, Sym *,
952		    const char *, Dyn *);
953extern	void	Dbg_syminfo_title(Lm_list *);
954
955extern	void	Dbg_syms_ar_checking(Lm_list *, Xword, Elf_Arsym *,
956		    const char *);
957extern	void	Dbg_syms_ar_entry(Lm_list *, Xword, Elf_Arsym *);
958extern	void	Dbg_syms_ar_resolve(Lm_list *, Xword, Elf_Arsym *,
959		    const char *, int);
960extern	void	Dbg_syms_ar_title(Lm_list *, const char *, int);
961extern	void	Dbg_syms_cap_convert(Ofl_desc *, Word, const char *, Sym *);
962extern	void	Dbg_syms_cap_local(Ofl_desc *, Word, const char *, Sym *,
963		    Sym_desc *);
964extern	void	Dbg_syms_cap_lookup(Rt_map *, uint_t, const char *, uint_t,
965		    Half, Syscapset *);
966extern	void	Dbg_syms_cap_title(Ofl_desc *);
967extern	void	Dbg_syms_created(Lm_list *, const char *);
968extern	void	Dbg_syms_discarded(Lm_list *, Sym_desc *);
969extern	void	Dbg_syms_dlsym(Rt_map *, const char *, int *, const char *,
970		    int);
971extern	void	Dbg_syms_dup_discarded(Lm_list *, Word ndx, Sym_desc *);
972extern	void	Dbg_syms_dup_sort_addr(Lm_list *, const char *, const char *,
973		    const char *, Addr);
974extern	void	Dbg_syms_entered(Ofl_desc *, Sym *, Sym_desc *);
975extern	void	Dbg_syms_entry(Lm_list *, Word, Sym_desc *);
976extern	void	Dbg_syms_global(Lm_list *, Word, const char *);
977extern	void	Dbg_syms_ignore(Ofl_desc *, Sym_desc *);
978extern	void	Dbg_syms_ignore_gnuver(Rt_map *, const char *, Word, Versym);
979extern	void	Dbg_syms_lazy_rescan(Lm_list *, const char *);
980extern	void	Dbg_syms_lookup(Rt_map *, const char *, const char *);
981#if	!(defined(_ELF64))
982extern	void	Dbg_syms_lookup_aout(Lm_list *, const char *);
983#endif
984extern	void	Dbg_syms_new(Ofl_desc *, Sym *, Sym_desc *);
985extern	void	Dbg_syms_old(Ofl_desc *, Sym_desc *);
986extern	void	Dbg_syms_process(Lm_list *, Ifl_desc *);
987extern	void	Dbg_syms_reduce(Ofl_desc *, int, Sym_desc *, int,
988		    const char *);
989extern	void	Dbg_syms_reloc(Ofl_desc *, Sym_desc *);
990extern	void	Dbg_syms_resolved(Ofl_desc *, Sym_desc *);
991extern	void	Dbg_syms_resolving(Ofl_desc *, Word, const char *, int, int,
992		    Sym *, Sym *, Sym_desc *, Ifl_desc *);
993extern	void	Dbg_syms_sec_entry(Lm_list *, Word, Sg_desc *, Os_desc *);
994extern	void	Dbg_syms_sec_title(Lm_list *);
995extern	void	Dbg_syms_spec_title(Lm_list *);
996extern	void	Dbg_syms_updated(Ofl_desc *, Sym_desc *, const char *);
997extern	void	Dbg_syms_up_title(Lm_list *);
998extern	void	Dbg_syms_wrap(Lm_list *, Word, const char *, const char *);
999
1000extern	void	Dbg_tls_modactivity(Lm_list *, void *, uint_t);
1001extern	void	Dbg_tls_static_block(Lm_list *, void *, ulong_t, ulong_t);
1002extern	void	Dbg_tls_static_resv(Rt_map *, ulong_t, ulong_t);
1003
1004extern	void	Dbg_util_call_array(Rt_map *, void *, int, Word);
1005extern	void	Dbg_util_call_fini(Rt_map *);
1006extern	void	Dbg_util_call_init(Rt_map *, int);
1007extern	void	Dbg_util_call_main(Rt_map *);
1008extern	void	Dbg_util_collect(Rt_map *, int, int);
1009extern	void	Dbg_util_dbnotify(Lm_list *, rd_event_e, r_state_e);
1010extern	void	Dbg_util_edge_in(Lm_list *, Rt_map *, uint_t, Rt_map *,
1011		    int, int);
1012extern	void	Dbg_util_edge_out(Rt_map *, Rt_map *);
1013extern	void	Dbg_util_intoolate(Rt_map *);
1014extern	void	Dbg_util_lcinterface(Rt_map *, int, char *);
1015extern	void	Dbg_util_nl(Lm_list *, int);
1016extern	void	Dbg_util_no_init(Rt_map *);
1017extern	void	Dbg_util_scc_entry(Rt_map *, uint_t);
1018extern	void	Dbg_util_scc_title(Lm_list *, int);
1019extern	void	Dbg_util_str(Lm_list *, const char *);
1020
1021extern	void	Dbg_unused_file(Lm_list *, const char *, int, uint_t);
1022extern	void	Dbg_unused_lcinterface(Rt_map *, Rt_map *, int);
1023extern	void	Dbg_unused_path(Lm_list *, const char *, uint_t, uint_t,
1024		    const char *);
1025extern	void	Dbg_unused_sec(Lm_list *, Is_desc *);
1026extern	void	Dbg_unused_unref(Rt_map *, const char *);
1027
1028extern	void	Dbg_ver_avail_entry(Lm_list *, Ver_index *, const char *);
1029extern	void	Dbg_ver_avail_title(Lm_list *, const char *);
1030extern	void	Dbg_ver_def_title(Lm_list *, const char *);
1031extern	void	Dbg_ver_desc_entry(Lm_list *, Ver_desc *);
1032extern	void	Dbg_ver_need_done(Lm_list *);
1033extern	void	Dbg_ver_need_entry(Lm_list *, Half, const char *,
1034		    const char *);
1035extern	void	Dbg_ver_need_title(Lm_list *, const char *);
1036extern	void	Dbg_ver_nointerface(Lm_list *, const char *);
1037extern	void	Dbg_ver_symbol(Lm_list *, const char *);
1038
1039/*
1040 * Define Elf_*() interface flags.
1041 */
1042#define	ELF_DBG_ELFDUMP		1
1043#define	ELF_DBG_RTLD		2
1044#define	ELF_DBG_LD		3
1045#define	ELF_DBG_LD_ACT		4
1046
1047/*
1048 * Define generic Elf_*() interfaces.
1049 */
1050extern	void Elf_syminfo_entry(Lm_list *, Word, Syminfo *, const char *,
1051	    const char *);
1052extern	void Elf_syminfo_title(Lm_list *);
1053
1054/*
1055 * Establish ELF32 and ELF64 class Elf_*() interfaces.
1056 */
1057#if	defined(_ELF64)
1058
1059#define	Elf_cap_entry		Elf64_cap_entry
1060#define	Elf_cap_title		Elf64_cap_title
1061
1062#define	Elf_demangle_name	Elf64_demangle_name
1063#define	Elf_dyn_entry		Elf64_dyn_entry
1064#define	Elf_dyn_null_entry	Elf64_dyn_null_entry
1065#define	Elf_dyn_title		Elf64_dyn_title
1066
1067#define	Elf_ehdr		Elf64_ehdr
1068
1069#define	Elf_got_entry		Elf64_got_entry
1070#define	Elf_got_title		Elf64_got_title
1071
1072#define	Elf_reloc_apply_reg	Elf64_reloc_apply_reg
1073#define	Elf_reloc_apply_val	Elf64_reloc_apply_val
1074#define	Elf_reloc_entry_1	Elf64_reloc_entry_1
1075#define	Elf_reloc_entry_2	Elf64_reloc_entry_2
1076#define	Elf_reloc_title		Elf64_reloc_title
1077
1078#define	Elf_phdr		Elf64_phdr
1079
1080#define	Elf_shdr		Elf64_shdr
1081
1082#define	Elf_syms_table_entry	Elf64_syms_table_entry
1083#define	Elf_syms_table_title	Elf64_syms_table_title
1084
1085#define	Elf_ver_def_title	Elf64_ver_def_title
1086#define	Elf_ver_line_1		Elf64_ver_line_1
1087#define	Elf_ver_line_2		Elf64_ver_line_2
1088#define	Elf_ver_line_3		Elf64_ver_line_3
1089#define	Elf_ver_line_4		Elf64_ver_line_4
1090#define	Elf_ver_line_5		Elf64_ver_line_5
1091#define	Elf_ver_need_title	Elf64_ver_need_title
1092
1093#else
1094
1095#define	Elf_cap_entry		Elf32_cap_entry
1096#define	Elf_cap_title		Elf32_cap_title
1097
1098#define	Elf_demangle_name	Elf32_demangle_name
1099#define	Elf_dyn_entry		Elf32_dyn_entry
1100#define	Elf_dyn_null_entry	Elf32_dyn_null_entry
1101#define	Elf_dyn_title		Elf32_dyn_title
1102
1103#define	Elf_ehdr		Elf32_ehdr
1104
1105#define	Elf_got_entry		Elf32_got_entry
1106#define	Elf_got_title		Elf32_got_title
1107
1108#define	Elf_reloc_apply_reg	Elf32_reloc_apply_reg
1109#define	Elf_reloc_apply_val	Elf32_reloc_apply_val
1110#define	Elf_reloc_entry_1	Elf32_reloc_entry_1
1111#define	Elf_reloc_entry_2	Elf32_reloc_entry_2
1112#define	Elf_reloc_title		Elf32_reloc_title
1113
1114#define	Elf_phdr		Elf32_phdr
1115
1116#define	Elf_shdr		Elf32_shdr
1117
1118#define	Elf_syms_table_entry	Elf32_syms_table_entry
1119#define	Elf_syms_table_title	Elf32_syms_table_title
1120
1121#define	Elf_ver_def_title	Elf32_ver_def_title
1122#define	Elf_ver_line_1		Elf32_ver_line_1
1123#define	Elf_ver_line_2		Elf32_ver_line_2
1124#define	Elf_ver_line_3		Elf32_ver_line_3
1125#define	Elf_ver_line_4		Elf32_ver_line_4
1126#define	Elf_ver_line_5		Elf32_ver_line_5
1127#define	Elf_ver_need_title	Elf32_ver_need_title
1128
1129#endif
1130
1131extern	void	Elf_cap_entry(Lm_list *, Cap *, int, const char *, size_t,
1132		    Half);
1133extern	void	Elf_cap_title(Lm_list *);
1134
1135extern	const char \
1136		*Elf_demangle_name(const char *);
1137extern	void	Elf_dyn_entry(Lm_list *, Dyn *, int, const char *,
1138		    uchar_t, Half);
1139extern	void	Elf_dyn_null_entry(Lm_list *, Dyn *, int, int);
1140extern	void	Elf_dyn_title(Lm_list *);
1141
1142extern	void	Elf_ehdr(Lm_list *, Ehdr *, Shdr *);
1143
1144extern	void	Elf_got_entry(Lm_list *, Sword, Addr, Xword, Half,
1145		    uchar_t, uchar_t, Word, void *, const char *);
1146extern	void	Elf_got_title(Lm_list *);
1147
1148extern	void	Elf_phdr(Lm_list *, uchar_t, Half, Phdr *);
1149
1150extern	void	Elf_reloc_apply_val(Lm_list *, int, Xword, Xword);
1151extern	void	Elf_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
1152extern	void	Elf_reloc_entry_1(Lm_list *, int, const char *, Half, Word,
1153		    void *, const char *, const char *, const char *);
1154extern	void	Elf_reloc_entry_2(Lm_list *, int, const char *, Word,
1155		    const char *, Off, Sxword, const char *, const char *,
1156		    const char *);
1157extern	void	Elf_reloc_title(Lm_list *, int, Word);
1158
1159extern	void	Elf_shdr(Lm_list *, uchar_t, Half, Shdr *);
1160
1161extern	void	Elf_syms_table_entry(Lm_list *, int, const char *, uchar_t,
1162		    Half, Sym *, Versym, int, const char *, const char *);
1163extern	void	Elf_syms_table_title(Lm_list *, int);
1164
1165extern	void	Elf_ver_def_title(Lm_list *);
1166extern	void	Elf_ver_line_1(Lm_list *, const char *, const char *,
1167		    const char *, const char *);
1168extern	void	Elf_ver_line_2(Lm_list *, const char *, const char *);
1169extern	void	Elf_ver_line_3(Lm_list *, const char *, const char *,
1170		    const char *);
1171extern	void	Elf_ver_line_4(Lm_list *, const char *);
1172extern	void	Elf_ver_line_5(Lm_list *, const char *, const char *);
1173extern	void	Elf_ver_need_title(Lm_list *, int);
1174
1175
1176#ifdef	__cplusplus
1177}
1178#endif
1179
1180#endif /* _DEBUG_H */
1181