syminfo.c revision 9a411307f0d1eedbc81618ec290e0685284d8a2b
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin/*
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * CDDL HEADER START
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin *
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin * The contents of this file are subject to the terms of the
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * Common Development and Distribution License (the "License").
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * You may not use this file except in compliance with the License.
7c2fbfb345896881c631598ee3852ce9ce33fb07April Chin *
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * or http://www.opensolaris.org/os/licensing.
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * See the License for the specific language governing permissions
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * and limitations under the License.
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin *
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * When distributing Covered Code, include this CDDL HEADER in each
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * If applicable, add the following below this CDDL HEADER, with the
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * fields enclosed by brackets "[]" replaced with your own identifying
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * information: Portions Copyright [yyyy] [name of copyright owner]
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin *
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * CDDL HEADER END
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin */
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin/*
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin * Use is subject to license terms.
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin */
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin#pragma ident "%Z%%M% %I% %E% SMI"
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin#include <sgs.h>
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin#include <debug.h>
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin#include <msg.h>
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chinvoid
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chinElf_syminfo_title(Lm_list *lml)
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin{
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin dbg_print(lml, MSG_INTL(MSG_SYMINFO_TITLE));
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin}
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin#define FLAGSZ 16
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin#define NDXSZ 10
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chinvoid
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chinElf_syminfo_entry(Lm_list *lml, Word ndx, Syminfo *sip, const char *name,
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin const char *needed)
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin{
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin const char *bndstr, *str;
da2e3ebdc1edfbc5028edf1354e7dd2fa69a7968chin char flagstr[FLAGSZ], sndxstr[NDXSZ], dndxstr[NDXSZ];
int flgndx = 0;
Half flags = sip->si_flags;
if (flags & SYMINFO_FLG_DIRECT) {
if (sip->si_boundto == SYMINFO_BT_SELF)
bndstr = MSG_INTL(MSG_SYMINFO_SELF);
else if (sip->si_boundto == SYMINFO_BT_PARENT)
bndstr = MSG_INTL(MSG_SYMINFO_PARENT);
else
bndstr = needed;
flagstr[flgndx++] = 'D';
flags &= ~SYMINFO_FLG_DIRECT;
} else if (flags & SYMINFO_FLG_FILTER) {
bndstr = needed;
flagstr[flgndx++] = 'F';
flags &= ~SYMINFO_FLG_FILTER;
} else if (flags & SYMINFO_FLG_AUXILIARY) {
bndstr = needed;
flagstr[flgndx++] = 'A';
flags &= ~SYMINFO_FLG_AUXILIARY;
} else if (sip->si_boundto == SYMINFO_BT_EXTERN)
bndstr = MSG_INTL(MSG_SYMINFO_EXTERN);
else
bndstr = MSG_ORIG(MSG_STR_EMPTY);
if (flags & SYMINFO_FLG_DIRECTBIND) {
flagstr[flgndx++] = 'B';
flags &= ~SYMINFO_FLG_DIRECTBIND;
}
if (flags & SYMINFO_FLG_COPY) {
flagstr[flgndx++] = 'C';
flags &= ~SYMINFO_FLG_COPY;
}
if (flags & SYMINFO_FLG_LAZYLOAD) {
flagstr[flgndx++] = 'L';
flags &= ~SYMINFO_FLG_LAZYLOAD;
}
if (flags & SYMINFO_FLG_NOEXTDIRECT) {
flagstr[flgndx++] = 'N';
flags &= ~SYMINFO_FLG_NOEXTDIRECT;
}
if (flags & SYMINFO_FLG_INTERPOSE) {
flagstr[flgndx++] = 'I';
flags &= ~SYMINFO_FLG_INTERPOSE;
}
/*
* Did we account for all of the flags?
*/
if (flags)
(void) snprintf(&flagstr[flgndx], FLAGSZ - flgndx,
MSG_ORIG(MSG_SYMINFO_UNKFLAG), flags);
else
flagstr[flgndx] = '\0';
/*
* If we've bound to a dependency, determine the dynamic entry index.
*/
if (bndstr == needed) {
(void) snprintf(dndxstr, NDXSZ, MSG_ORIG(MSG_FMT_INDEX),
sip->si_boundto);
str = dndxstr;
} else
str = MSG_ORIG(MSG_STR_EMPTY);
(void) snprintf(sndxstr, NDXSZ, MSG_ORIG(MSG_FMT_INDEX), ndx);
dbg_print(lml, MSG_INTL(MSG_SYMINFO_ENTRY), sndxstr, flagstr, str,
bndstr, Elf_demangle_name(name));
}