#include <sys/types.h>
#include <string.h>
#include <debug.h>
#include <conv.h>
#include "_debug.h"
#include "msg.h"
void
Dbg_bind_plt_summary(Lm_list *lml, Half mach, Word pltcnt21d, Word pltcnt24d,
Word pltcntu32, Word pltcntu44, Word pltcntfull, Word pltcntfar)
{
Word plttotal = pltcnt21d + pltcnt24d + pltcntu32 +
pltcntu44 + pltcntfull + pltcntfar;
if (DBG_NOTCLASS(DBG_C_BINDINGS))
return;
switch (mach) {
case EM_SPARC:
dbg_print(lml, MSG_INTL(MSG_BND_PSUM_SPARC), EC_WORD(pltcnt21d),
EC_WORD(pltcnt24d), EC_WORD(pltcntfull), EC_WORD(plttotal));
break;
case EM_SPARCV9:
dbg_print(lml, MSG_INTL(MSG_BND_PSUM_SPARCV9),
EC_WORD(pltcnt21d), EC_WORD(pltcnt24d), EC_WORD(pltcntu32),
EC_WORD(pltcntu44), EC_WORD(pltcntfull), EC_WORD(pltcntfar),
EC_WORD(plttotal));
break;
default:
dbg_print(lml, MSG_INTL(MSG_BND_PSUM_DEFAULT),
EC_WORD(plttotal));
break;
};
}
static const char *pltbindtypes[PLT_T_NUM] = {
MSG_ORIG(MSG_STR_EMPTY),
MSG_ORIG(MSG_PLT_21D),
MSG_ORIG(MSG_PLT_24D),
MSG_ORIG(MSG_PLT_U32),
MSG_ORIG(MSG_PLT_U44),
MSG_ORIG(MSG_PLT_FULL),
MSG_ORIG(MSG_PLT_FAR)
};
#define BINFOSZ MSG_BINFO_START_SIZE + \
MSG_BINFO_DIRECT_SIZE + MSG_BINFO_SEP_SIZE + \
MSG_BINFO_INTERPOSE_SIZE + MSG_BINFO_SEP_SIZE + \
MSG_BINFO_COPYREF_SIZE + MSG_BINFO_SEP_SIZE + \
MSG_BINFO_FILTEE_SIZE + MSG_BINFO_SEP_SIZE + \
MSG_BINFO_PLTADDR_SIZE + \
CONV_INV_BUFSIZE + MSG_BINFO_END_SIZE
void
Dbg_bind_global(Rt_map *flmp, Addr fabs, Off foff, Xword pltndx,
Pltbindtype pbtype, Rt_map *tlmp, Addr tabs, Off toff,
const char *sym, uint_t binfo)
{
static char binfostr[BINFOSZ];
static Val_desc vda[] = {
{ DBG_BINFO_DIRECT, MSG_BINFO_DIRECT },
{ DBG_BINFO_INTERPOSE, MSG_BINFO_INTERPOSE },
{ DBG_BINFO_COPYREF, MSG_BINFO_COPYREF },
{ DBG_BINFO_FILTEE, MSG_BINFO_FILTEE },
{ DBG_BINFO_PLTADDR, MSG_BINFO_PLTADDR },
{ 0, 0 }
};
static CONV_EXPN_FIELD_ARG conv_arg = { binfostr, sizeof (binfostr),
NULL, 0, 0, MSG_ORIG(MSG_BINFO_START),
MSG_ORIG(MSG_BINFO_SEP), MSG_ORIG(MSG_BINFO_END) };
const char *ffile = NAME(flmp);
const char *tfile = NAME(tlmp);
Lm_list *lml = LIST(flmp);
if (DBG_NOTCLASS(DBG_C_BINDINGS))
return;
if (DBG_NOTDETAIL()) {
dbg_print(lml, MSG_INTL(MSG_BND_BASIC), ffile, tfile,
Dbg_demangle_name(sym));
return;
}
binfo &= ~DBG_BINFO_FOUND;
binfo &= DBG_BINFO_MSK;
if (binfo) {
conv_arg.oflags = conv_arg.rflags = binfo;
(void) conv_expn_field(&conv_arg, vda, 0);
} else {
binfostr[0] = '\0';
}
if (pltndx != (Xword)-1) {
const char *pltstring;
if (pbtype < PLT_T_NUM)
pltstring = pltbindtypes[pbtype];
else
pltstring = pltbindtypes[PLT_T_NONE];
dbg_print(lml, MSG_INTL(MSG_BND_PLT), ffile, EC_ADDR(fabs),
EC_OFF(foff), EC_XWORD(pltndx), pltstring, tfile,
EC_ADDR(tabs), EC_OFF(toff), Dbg_demangle_name(sym),
binfostr);
} else if ((fabs == 0) && (foff == 0)) {
dbg_print(lml, MSG_INTL(MSG_BND_DLSYM), ffile, tfile,
EC_ADDR(tabs), EC_OFF(toff), Dbg_demangle_name(sym),
binfostr);
} else {
dbg_print(lml, MSG_INTL(MSG_BND_DEFAULT), ffile, EC_ADDR(fabs),
EC_OFF(foff), tfile, EC_ADDR(tabs), EC_OFF(toff),
Dbg_demangle_name(sym), binfostr);
}
}
void
Dbg_bind_reject(Rt_map *flmp, Rt_map *tlmp, const char *sym, int why)
{
static Msg reason[DBG_BNDREJ_NUM + 1] = {
MSG_BNDREJ_DIRECT,
MSG_BNDREJ_GROUP,
MSG_BNDREJ_SINGLE
};
if (DBG_NOTCLASS(DBG_C_BINDINGS))
return;
dbg_print(LIST(flmp), MSG_INTL(MSG_BND_REJECT), NAME(flmp), NAME(tlmp),
sym, MSG_INTL(reason[why]));
}
void
Dbg_bind_weak(Rt_map *flmp, Addr fabs, Addr frel, const char *sym)
{
Lm_list *lml = LIST(flmp);
const char *ffile = NAME(flmp);
if (DBG_NOTCLASS(DBG_C_BINDINGS))
return;
if (DBG_NOTDETAIL())
dbg_print(lml, MSG_INTL(MSG_BND_WEAK_1), ffile,
Dbg_demangle_name(sym));
else
dbg_print(lml, MSG_INTL(MSG_BND_WEAK_2), ffile, EC_ADDR(fabs),
EC_ADDR(frel), Dbg_demangle_name(sym));
}
#if defined(_ELF64)
void
Dbg_bind_pltpad_to(Rt_map *lmp, Addr pltpad, const char *dfile,
const char *sname)
{
if (DBG_NOTCLASS(DBG_C_RELOC))
return;
if (DBG_NOTDETAIL())
return;
dbg_print(LIST(lmp), MSG_INTL(MSG_BND_PLTPAD_TO), EC_ADDR(pltpad),
NAME(lmp), dfile, sname);
}
void
Dbg_bind_pltpad_from(Rt_map *lmp, Addr pltpad, const char *sname)
{
if (DBG_NOTCLASS(DBG_C_RELOC))
return;
if (DBG_NOTDETAIL())
return;
dbg_print(LIST(lmp), MSG_INTL(MSG_BND_PLTPAD_FROM), EC_ADDR(pltpad),
NAME(lmp), sname);
}
#endif