1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 #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 Listnode *lnp; 39 char *cp; 40 41 dbg_print(lml, MSG_ORIG(MSG_ECR_NAME), 42 (enp->ec_name ? enp->ec_name : MSG_INTL(MSG_STR_NULL)), 43 conv_sec_flags(enp->ec_attrmask)); 44 45 dbg_print(lml, MSG_ORIG(MSG_ECR_SEGMENT), 46 (enp->ec_segment->sg_name ? enp->ec_segment->sg_name : 47 MSG_INTL(MSG_STR_NULL)), conv_sec_flags(enp->ec_attrbits)); 48 49 dbg_print(lml, MSG_ORIG(MSG_ECR_NDX), 50 EC_WORD(enp->ec_ndx), conv_sec_type(mach, enp->ec_type, 0)); 51 52 if (enp->ec_files.head) { 53 dbg_print(lml, MSG_ORIG(MSG_ECR_FILES)); 54 for (LIST_TRAVERSE(&(enp->ec_files), lnp, cp)) 55 dbg_print(lml, MSG_ORIG(MSG_ECR_FILE), cp); 56 } 57 } 58 59 /* 60 * Print out all `entrance descriptor' entries. 61 */ 62 void 63 Dbg_ent_print(Lm_list *lml, Half mach, List *len, Boolean dmode) 64 { 65 Listnode *lnp; 66 Ent_desc *enp; 67 int ndx = 1; 68 69 if (DBG_NOTCLASS(DBG_C_ENTRY)) 70 return; 71 72 Dbg_util_nl(lml, DBG_NL_STD); 73 dbg_print(lml, MSG_INTL(MSG_ECR_TITLE), 74 (dmode ? MSG_INTL(MSG_ECR_DYNAMIC) : MSG_INTL(MSG_ECR_STATIC))); 75 76 for (LIST_TRAVERSE(len, lnp, enp)) { 77 dbg_print(lml, MSG_INTL(MSG_ECR_DESC), ndx++); 78 Dbg_ent_entry(lml, mach, enp); 79 } 80 } 81