xref: /illumos-gate/usr/src/cmd/sgs/liblddbg/common/entry.c (revision 03100a6332bd4edc7a53091fcf7c9a7131bcdaa7)
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 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 #include	"msg.h"
29 #include	"_debug.h"
30 #include	"libld.h"
31 
32 /*
33  * Print out a single `entry descriptor' entry.
34  */
35 void
36 Dbg_ent_entry(Lm_list *lml, Half mach, Ent_desc *enp)
37 {
38 	Conv_inv_buf_t		inv_buf;
39 	Conv_sec_flags_buf_t	sec_flags_buf;
40 	Listnode		*lnp;
41 	char			*cp;
42 
43 	dbg_print(lml, MSG_ORIG(MSG_ECR_NAME),
44 	    (enp->ec_name ? enp->ec_name : MSG_INTL(MSG_STR_NULL)),
45 	    conv_sec_flags(enp->ec_attrmask, 0, &sec_flags_buf));
46 
47 	dbg_print(lml, MSG_ORIG(MSG_ECR_SEGMENT),
48 	    (enp->ec_segment->sg_name ? enp->ec_segment->sg_name :
49 	    MSG_INTL(MSG_STR_NULL)),
50 	    conv_sec_flags(enp->ec_attrbits, 0, &sec_flags_buf));
51 
52 	dbg_print(lml, MSG_ORIG(MSG_ECR_NDX), EC_WORD(enp->ec_ndx),
53 	    conv_sec_type(mach, enp->ec_type, 0, &inv_buf));
54 
55 	if (enp->ec_files.head) {
56 		dbg_print(lml, MSG_ORIG(MSG_ECR_FILES));
57 		for (LIST_TRAVERSE(&(enp->ec_files), lnp, cp))
58 			dbg_print(lml, MSG_ORIG(MSG_ECR_FILE), cp);
59 	}
60 }
61 
62 /*
63  * Print out all `entrance descriptor' entries.
64  */
65 void
66 Dbg_ent_print(Lm_list *lml, Half mach, List *len, Boolean dmode)
67 {
68 	Listnode	*lnp;
69 	Ent_desc	*enp;
70 	int		ndx = 1;
71 
72 	if (DBG_NOTCLASS(DBG_C_ENTRY))
73 		return;
74 
75 	Dbg_util_nl(lml, DBG_NL_STD);
76 	dbg_print(lml, MSG_INTL(MSG_ECR_TITLE),
77 	    (dmode ? MSG_INTL(MSG_ECR_DYNAMIC) : MSG_INTL(MSG_ECR_STATIC)));
78 
79 	for (LIST_TRAVERSE(len, lnp, enp)) {
80 		dbg_print(lml, MSG_INTL(MSG_ECR_DESC), ndx++);
81 		Dbg_ent_entry(lml, mach, enp);
82 	}
83 }
84