xref: /illumos-gate/usr/src/cmd/sgs/liblddbg/common/relocate.c (revision 581cede61ac9c14d8d4ea452562a567189eead78)
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 2009 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #include	<sys/elf_SPARC.h>
28 #include	<debug.h>
29 #include	<libld.h>
30 #include	<conv.h>
31 #include	"_debug.h"
32 #include	"msg.h"
33 
34 void
35 Dbg_reloc_apply_reg(Lm_list *lml, int caller, Half mach, Xword off, Xword value)
36 {
37 	if (DBG_NOTCLASS(DBG_C_RELOC))
38 		return;
39 	if (DBG_NOTDETAIL())
40 		return;
41 
42 	/*
43 	 * Print the actual relocation being applied to the specified output
44 	 * section, the offset represents the actual relocation address, and the
45 	 * value is the new data being written to that address.
46 	 */
47 	Elf_reloc_apply_reg(lml, caller, mach, off, value);
48 }
49 
50 void
51 Dbg_reloc_apply_val(Lm_list *lml, int caller, Xword off, Xword value)
52 {
53 	if (DBG_NOTCLASS(DBG_C_RELOC))
54 		return;
55 	if (DBG_NOTDETAIL())
56 		return;
57 
58 	/*
59 	 * Print the actual relocation being applied to the specified output
60 	 * section, the offset represents the actual relocation address, and the
61 	 * value is the new data being written to that address.
62 	 */
63 	Elf_reloc_apply_val(lml, caller, off, value);
64 }
65 
66 void
67 Dbg_reloc_error(Lm_list *lml, int caller, Half mach, Word type, void *reloc,
68     const char *sname)
69 {
70 	if (DBG_NOTCLASS(DBG_C_RELOC))
71 		return;
72 	if (DBG_NOTDETAIL())
73 		return;
74 
75 	Elf_reloc_entry_1(lml, caller, MSG_INTL(MSG_STR_IN), mach, type, reloc,
76 	    NULL, sname, MSG_INTL(MSG_REL_BADROFFSET));
77 }
78 
79 void
80 Dbg_reloc_run(Rt_map *lmp, uint_t rtype, int info, int dtype)
81 {
82 	Lm_list		*lml = LIST(lmp);
83 	const char	*str, *name = NAME(lmp);
84 
85 	if (DBG_NOTCLASS(DBG_C_RELOC))
86 		return;
87 
88 	if (dtype == DBG_REL_FINISH) {
89 		if (info)
90 			str = MSG_ORIG(MSG_STR_EMPTY);
91 		else
92 			str = MSG_INTL(MSG_REL_FAIL);
93 	} else {
94 		if (info)
95 			str = MSG_INTL(MSG_REL_PLT);
96 		else
97 			str = MSG_ORIG(MSG_STR_EMPTY);
98 	}
99 
100 	if (dtype == DBG_REL_START) {
101 		Dbg_util_nl(lml, DBG_NL_STD);
102 		dbg_print(lml, MSG_INTL(MSG_REL_START), name, str);
103 
104 		if (DBG_NOTDETAIL())
105 			return;
106 
107 		Elf_reloc_title(lml, ELF_DBG_RTLD, rtype);
108 
109 	} else {
110 		if (dtype == DBG_REL_NONE) {
111 			dbg_print(lml, MSG_ORIG(MSG_STR_EMPTY));
112 			dbg_print(lml, MSG_INTL(MSG_REL_NONE), name, str);
113 		} else
114 			dbg_print(lml, MSG_INTL(MSG_REL_FINISH), name,
115 			    str);
116 
117 		Dbg_util_nl(lml, DBG_NL_STD);
118 	}
119 }
120 
121 void
122 Dbg_reloc_copy(Rt_map *dlmp, Rt_map *nlmp, const char *name, int zero)
123 {
124 	const char	*str;
125 
126 	if (DBG_NOTCLASS(DBG_C_RELOC))
127 		return;
128 	if (DBG_NOTDETAIL())
129 		return;
130 
131 	if (zero)
132 		str = MSG_INTL(MSG_STR_COPYZERO);
133 	else
134 		str = MSG_ORIG(MSG_STR_EMPTY);
135 
136 	dbg_print(LIST(dlmp), MSG_INTL(MSG_REL_COPY), NAME(dlmp), NAME(nlmp),
137 	    name, str);
138 }
139 
140 void
141 Dbg_reloc_generate(Lm_list *lml, Os_desc *osp, Word type)
142 {
143 	if (DBG_NOTCLASS(DBG_C_RELOC))
144 		return;
145 
146 	Dbg_util_nl(lml, DBG_NL_STD);
147 	dbg_print(lml, MSG_INTL(MSG_REL_GENERATE), osp->os_name);
148 
149 	if (DBG_NOTDETAIL())
150 		return;
151 
152 	Elf_reloc_title(lml, ELF_DBG_LD, type);
153 }
154 
155 /*
156  * Issue relocation collecting header message prior to listing
157  * each relocation.
158  *
159  * entry:
160  *	lml - Link map control list
161  *	osp - If sh_info was non-NULL, output section to which
162  *		relocation applies. Otherwise NULL.
163  *	isp - If sh_info was non-NULL, input section to which
164  *		relocation applies. Otherwise NULL.
165  *	risp - Relocation section
166  *
167  * note: osp and isp must both be NULL, or both non-NULL. risp is never NULL.
168  */
169 void
170 Dbg_reloc_proc(Lm_list *lml, Os_desc *osp, Is_desc *isp, Is_desc *risp)
171 {
172 	const char	*str1, *str2;
173 
174 	if (DBG_NOTCLASS(DBG_C_RELOC))
175 		return;
176 
177 	if (osp && osp->os_name)
178 		str1 = osp->os_name;
179 	else
180 		str1 =	MSG_INTL(MSG_STR_NULL);
181 
182 	if (isp && isp->is_file)
183 		str2 = isp->is_file->ifl_name;
184 	else if (risp && risp->is_file)
185 		str2 = risp->is_file->ifl_name;
186 	else
187 		str2 = MSG_INTL(MSG_STR_NULL);
188 
189 	Dbg_util_nl(lml, DBG_NL_STD);
190 	dbg_print(lml, MSG_INTL(MSG_REL_COLLECT), str1, str2);
191 
192 	if (DBG_NOTDETAIL())
193 		return;
194 
195 	Elf_reloc_title(lml, ELF_DBG_LD, risp->is_shdr->sh_type);
196 }
197 
198 void
199 Dbg_reloc_doact_title(Lm_list *lml)
200 {
201 	if (DBG_NOTCLASS(DBG_C_RELOC))
202 		return;
203 	if (DBG_NOTDETAIL())
204 		return;
205 
206 	Dbg_util_nl(lml, DBG_NL_STD);
207 	dbg_print(lml, MSG_INTL(MSG_REL_ACTIVE));
208 	Elf_reloc_title(lml, ELF_DBG_LD, 0);
209 }
210 
211 void
212 Dbg_reloc_doact(Lm_list *lml, int caller, Half mach, Word type, Word rtype,
213     Xword off, Xword value, const char *symname, Os_desc *osp)
214 {
215 	Conv_inv_buf_t	inv_buf;
216 	const char	*secname;
217 
218 	if (DBG_NOTCLASS(DBG_C_RELOC))
219 		return;
220 	if (DBG_NOTDETAIL())
221 		return;
222 
223 	if (osp) {
224 		secname = osp->os_name;
225 		off += osp->os_shdr->sh_offset;
226 	} else
227 		secname = MSG_ORIG(MSG_STR_EMPTY);
228 
229 	Elf_reloc_entry_2(lml, caller, MSG_ORIG(MSG_STR_EMPTY), type,
230 	    conv_reloc_type(mach, rtype, 0, &inv_buf),
231 	    off, value, secname, symname, MSG_ORIG(MSG_STR_EMPTY));
232 }
233 
234 void
235 Dbg_reloc_dooutrel(Lm_list *lml, Word type)
236 {
237 	if (DBG_NOTCLASS(DBG_C_RELOC))
238 		return;
239 	if (DBG_NOTDETAIL())
240 		return;
241 
242 	Dbg_util_nl(lml, DBG_NL_STD);
243 	dbg_print(lml, MSG_INTL(MSG_REL_CREATING));
244 	Elf_reloc_title(lml, ELF_DBG_LD, type);
245 }
246 
247 void
248 Dbg_reloc_discard(Lm_list *lml, Half mach, Rel_desc *rsp)
249 {
250 	dbg_isec_name_buf_t	buf;
251 	char			*alloc_mem;
252 	Conv_inv_buf_t		inv_buf;
253 	Is_desc			*isp;
254 
255 	if (DBG_NOTCLASS(DBG_C_RELOC))
256 		return;
257 	if (DBG_NOTDETAIL())
258 		return;
259 
260 	isp = rsp->rel_isdesc;
261 	dbg_print(lml, MSG_INTL(MSG_REL_DISCARDED),
262 	    dbg_fmt_isec_name(isp, buf, &alloc_mem), isp->is_file->ifl_name,
263 	    conv_reloc_type(mach, rsp->rel_rtype, 0, &inv_buf),
264 	    EC_OFF(rsp->rel_roffset));
265 	if (alloc_mem != NULL)
266 		free(alloc_mem);
267 }
268 
269 void
270 Dbg_reloc_transition(Lm_list *lml, Half mach, Word rtype, Rel_desc *rsp)
271 {
272 	dbg_isec_name_buf_t	buf;
273 	char			*alloc_mem;
274 	Conv_inv_buf_t		inv_buf1, inv_buf2;
275 	Is_desc			*isp;
276 
277 	if (DBG_NOTCLASS(DBG_C_RELOC))
278 		return;
279 
280 	isp = rsp->rel_isdesc;
281 	dbg_print(lml, MSG_INTL(MSG_REL_TRANSITION),
282 	    conv_reloc_type(mach, rsp->rel_rtype, 0, &inv_buf1),
283 	    dbg_fmt_isec_name(isp, buf, &alloc_mem), isp->is_file->ifl_name,
284 	    EC_OFF(rsp->rel_roffset), rsp->rel_sname,
285 	    conv_reloc_type(mach, rtype, 0, &inv_buf2));
286 	if (alloc_mem != NULL)
287 		free(alloc_mem);
288 }
289 
290 void
291 Dbg_reloc_out(Ofl_desc *ofl, int caller, Word type, void *reloc,
292     const char *secname, const char *symname)
293 {
294 	if (DBG_NOTCLASS(DBG_C_RELOC))
295 		return;
296 	if (DBG_NOTDETAIL())
297 		return;
298 
299 	Elf_reloc_entry_1(ofl->ofl_lml, caller, MSG_ORIG(MSG_STR_EMPTY),
300 	    ofl->ofl_dehdr->e_machine, type, reloc, secname, symname,
301 	    MSG_ORIG(MSG_STR_EMPTY));
302 }
303 
304 void
305 Dbg_reloc_in(Lm_list *lml, int caller, Half mach, Word type, void *reloc,
306     const char *secname, Word secndx, const char *symname)
307 {
308 	dbg_isec_name_buf_t	buf;
309 	char			*alloc_mem;
310 
311 	if (DBG_NOTCLASS(DBG_C_RELOC))
312 		return;
313 	if (DBG_NOTDETAIL())
314 		return;
315 
316 	Elf_reloc_entry_1(lml, caller, MSG_INTL(MSG_STR_IN), mach, type, reloc,
317 	    dbg_fmt_isec_name2(secname, secndx, buf, &alloc_mem), symname,
318 	    MSG_ORIG(MSG_STR_EMPTY));
319 
320 	if (alloc_mem != NULL)
321 		free(alloc_mem);
322 }
323 
324 /*
325  * Used by ld when '-z relaxreloc' is in use and a relocation
326  * is redirected to a kept section.
327  *
328  * entry:
329  *	lml - Link map control list
330  *	sdp - The replacement symbol to be used with the relocation,
331  *		which references the kept section.
332  */
333 void
334 Dbg_reloc_sloppycomdat(Lm_list *lml, Sym_desc *sdp)
335 {
336 	dbg_isec_name_buf_t	buf;
337 	char			*alloc_mem;
338 	const char		*nfname;
339 
340 	if (DBG_NOTCLASS(DBG_C_RELOC) || DBG_NOTDETAIL())
341 		return;
342 
343 	nfname = (sdp && sdp->sd_file && sdp->sd_file->ifl_name)
344 	    ? sdp->sd_file->ifl_name : MSG_INTL(MSG_STR_NULL);
345 
346 	dbg_print(lml, MSG_INTL(MSG_REL_SLOPPYCOMDAT),
347 	    dbg_fmt_isec_name(sdp->sd_isc, buf, &alloc_mem), nfname);
348 	if (alloc_mem != NULL)
349 		free(alloc_mem);
350 }
351 
352 /*
353  * Print a output relocation structure (Rel_desc).
354  */
355 void
356 Dbg_reloc_ors_entry(Lm_list *lml, int caller, Word type, Half mach,
357     Rel_desc *orsp)
358 {
359 	Conv_inv_buf_t	inv_buf;
360 	const char	*secname, *symname;
361 
362 	if (DBG_NOTCLASS(DBG_C_RELOC))
363 		return;
364 	if (DBG_NOTDETAIL())
365 		return;
366 
367 	if (orsp->rel_flags & (FLG_REL_GOT | FLG_REL_RFPTR1 | FLG_REL_RFPTR2))
368 		secname = MSG_ORIG(MSG_SCN_GOT);
369 	else if (orsp->rel_flags & FLG_REL_PLT)
370 		secname = MSG_ORIG(MSG_SCN_PLT);
371 	else if (orsp->rel_flags & FLG_REL_BSS)
372 		secname = MSG_ORIG(MSG_SCN_BSS);
373 	else if (orsp->rel_osdesc)
374 		secname = orsp->rel_osdesc->os_name;
375 	else
376 		secname = MSG_INTL(MSG_STR_NULL);
377 
378 	/*
379 	 * Register symbols can be relocated/initialized to a constant, which
380 	 * is a special case where the symbol index is 0.
381 	 */
382 	if (orsp->rel_sym != NULL)
383 		symname = orsp->rel_sym->sd_name;
384 	else
385 		symname = MSG_ORIG(MSG_STR_EMPTY);
386 
387 	Elf_reloc_entry_2(lml, caller, MSG_INTL(MSG_STR_OUT), type,
388 	    conv_reloc_type(mach, orsp->rel_rtype, 0, &inv_buf),
389 	    orsp->rel_roffset, orsp->rel_raddend, secname, symname,
390 	    MSG_ORIG(MSG_STR_EMPTY));
391 }
392 
393 /*
394  * Print a Active relocation structure (Rel_desc).
395  */
396 void
397 Dbg_reloc_ars_entry(Lm_list *lml, int caller, Word type, Half mach,
398     Rel_desc *arsp)
399 {
400 	Conv_inv_buf_t	inv_buf;
401 	const char	*secname;
402 
403 	if (DBG_NOTCLASS(DBG_C_RELOC))
404 		return;
405 	if (DBG_NOTDETAIL())
406 		return;
407 
408 	if (arsp->rel_flags & (FLG_REL_GOT | FLG_REL_FPTR))
409 		secname = MSG_ORIG(MSG_SCN_GOT);
410 	else
411 		secname = arsp->rel_osdesc->os_name;
412 
413 	Elf_reloc_entry_2(lml, caller, MSG_INTL(MSG_STR_ACT), type,
414 	    conv_reloc_type(mach, arsp->rel_rtype, 0, &inv_buf),
415 	    arsp->rel_roffset, arsp->rel_raddend, secname,
416 	    arsp->rel_sym->sd_name, MSG_ORIG(MSG_STR_EMPTY));
417 }
418 
419 void
420 Dbg_reloc_entry(Lm_list *lml, const char *prestr, Half mach, Word type,
421     void *reloc, const char *secname, const char *symname, const char *poststr)
422 {
423 	/*
424 	 * Register relocations can use a constant initializer, in which case
425 	 * the associated symbol is 0.
426 	 */
427 	if (symname == NULL)
428 		symname = MSG_ORIG(MSG_STR_EMPTY);
429 
430 	Elf_reloc_entry_1(lml, ELF_DBG_LD, prestr, mach, type, reloc, secname,
431 	    symname, poststr);
432 }
433 
434 #if	defined(_ELF64)
435 
436 void
437 Dbg64_pltpad_to(Lm_list *lml, const char *file, Addr pltpad,
438     const char *dfile, const char *symname)
439 {
440 	if (DBG_NOTCLASS(DBG_C_RELOC))
441 		return;
442 	if (DBG_NOTDETAIL())
443 		return;
444 
445 	dbg_print(lml, MSG_INTL(MSG_BND_PLTPAD_TO), EC_ADDR(pltpad), file,
446 	    dfile, symname);
447 }
448 
449 void
450 Dbg64_pltpad_from(Lm_list *lml, const char *file, const char *sname,
451     Addr pltpad)
452 {
453 	if (DBG_NOTCLASS(DBG_C_RELOC))
454 		return;
455 	if (DBG_NOTDETAIL())
456 		return;
457 
458 	dbg_print(lml, MSG_INTL(MSG_BND_PLTPAD_FROM), EC_ADDR(pltpad), file,
459 	    Dbg_demangle_name(sname));
460 }
461 
462 #endif
463 
464 /*
465  * Relocation output can differ depending on the caller and the type of
466  * relocation record.  However, the final diagnostic is maintained here so
467  * that the various message strings remain consistent.
468  *
469  * elfdump:
470  *               type       offset     addend    section   symbol
471  *               X          X          X         X         X              (Rela)
472  *
473  *               type       offset               section   symbol
474  *               X          X                    X         X              (Rel)
475  *
476  * Note, it could be argued that the section name output with elfdump(1) is
477  * unnecessary, as the table itself is identified with a title that reveals
478  * the section name.  However, the output does provide for grep(1)'ing for
479  * individual entries and obtaining the section name with this type of input.
480  *
481  * ld.so.1:
482  *   (prestr)    type       offset     addend    symbol
483  *                                     value
484  *       in      X          X          X         X                        (Rela)
485  *    apply                 X          X
486  *
487  *   (prestr)    type       offset     value     symbol
488  *       in      X          X                    X                        (Rel)
489  *    apply                 X          X
490  *
491  * ld:
492  *   (prestr)    type       offset     addend    section   symbol
493  *       in      X          X          X         X         X              (Rela)
494  *      act      X          X                    X         X
495  *      out      X          X                    X         X
496  *
497  *   (prestr)    type       offset               section   symbol
498  *       in      X          X                    X         X              (Rel)
499  *      act      X          X                    X         X
500  *      out      X          X                    X         X
501  *
502  * Both Rela and Rel active relocations are printed as:
503  *
504  *               type       offset     value     section   symbol
505  *               X          X          X         X         X
506  */
507 void
508 Elf_reloc_title(Lm_list *lml, int caller, Word type)
509 {
510 	if (caller == ELF_DBG_ELFDUMP) {
511 		if (type == SHT_RELA) {
512 			if (DBG_NOTLONG())
513 				dbg_print(lml, MSG_INTL(MSG_REL_EFSA_TITLE));
514 			else
515 				dbg_print(lml, MSG_INTL(MSG_REL_EFLA_TITLE));
516 		} else {
517 			if (DBG_NOTLONG())
518 				dbg_print(lml, MSG_INTL(MSG_REL_EFSN_TITLE));
519 			else
520 				dbg_print(lml, MSG_INTL(MSG_REL_EFLN_TITLE));
521 		}
522 		return;
523 	}
524 	if (caller == ELF_DBG_RTLD) {
525 		if (type == SHT_RELA) {
526 			dbg_print(lml, MSG_INTL(MSG_REL_RTA_TITLE));
527 			dbg_print(lml, MSG_INTL(MSG_REL_RTV_TITLE));
528 		} else
529 			dbg_print(lml, MSG_INTL(MSG_REL_RTN_TITLE));
530 		return;
531 	}
532 	if (caller == ELF_DBG_LD) {
533 		if (type == 0) {
534 			if (DBG_NOTLONG())
535 				dbg_print(lml, MSG_INTL(MSG_REL_LDSV_TITLE));
536 			else
537 				dbg_print(lml, MSG_INTL(MSG_REL_LDLV_TITLE));
538 			return;
539 		}
540 		if (type == SHT_RELA) {
541 			if (DBG_NOTLONG())
542 				dbg_print(lml, MSG_INTL(MSG_REL_LDSA_TITLE));
543 			else
544 				dbg_print(lml, MSG_INTL(MSG_REL_LDLA_TITLE));
545 		} else {
546 			if (DBG_NOTLONG())
547 				dbg_print(lml, MSG_INTL(MSG_REL_LDSN_TITLE));
548 			else
549 				dbg_print(lml, MSG_INTL(MSG_REL_LDLN_TITLE));
550 		}
551 	}
552 }
553 
554 void
555 Elf_reloc_entry_2(Lm_list *lml, int caller, const char *prestr, Word type,
556     const char *typestr, Addr off, Sxword add, const char *secname,
557     const char *symname, const char *poststr)
558 {
559 	if (symname)
560 		symname = Elf_demangle_name(symname);
561 	else
562 		symname = MSG_ORIG(MSG_STR_EMPTY);
563 
564 	if (caller == ELF_DBG_ELFDUMP) {
565 		if (type == SHT_RELA) {
566 			if (DBG_NOTLONG())
567 				dbg_print(lml, MSG_INTL(MSG_REL_EFSA_ENTRY),
568 				    typestr, EC_OFF(off), EC_SXWORD(add),
569 				    secname, symname);
570 			else
571 				dbg_print(lml, MSG_INTL(MSG_REL_EFLA_ENTRY),
572 				    typestr, EC_OFF(off), EC_SXWORD(add),
573 				    secname, symname);
574 		} else {
575 			if (DBG_NOTLONG())
576 				dbg_print(lml, MSG_INTL(MSG_REL_EFSN_ENTRY),
577 				    typestr, EC_OFF(off), secname, symname);
578 			else
579 				dbg_print(lml, MSG_INTL(MSG_REL_EFLN_ENTRY),
580 				    typestr, EC_OFF(off), secname, symname);
581 		}
582 		return;
583 	}
584 	if (caller == ELF_DBG_RTLD) {
585 		if (type == SHT_RELA)
586 			dbg_print(lml, MSG_INTL(MSG_REL_RTA_ENTRY), prestr,
587 			    typestr, EC_OFF(off), EC_SXWORD(add), symname,
588 			    poststr);
589 		else
590 			dbg_print(lml, MSG_INTL(MSG_REL_RTN_ENTRY), prestr,
591 			    typestr, EC_OFF(off), symname, poststr);
592 		return;
593 	}
594 	if (caller == ELF_DBG_LD) {
595 		if (type == SHT_RELA) {
596 			if (DBG_NOTLONG())
597 				dbg_print(lml, MSG_INTL(MSG_REL_LDSA_ENTRY),
598 				    prestr, typestr, EC_OFF(off),
599 				    EC_SXWORD(add), secname, symname, poststr);
600 			else
601 				dbg_print(lml, MSG_INTL(MSG_REL_LDLA_ENTRY),
602 				    prestr, typestr, EC_OFF(off),
603 				    EC_SXWORD(add), secname, symname, poststr);
604 		} else {
605 			if (DBG_NOTLONG())
606 				dbg_print(lml, MSG_INTL(MSG_REL_LDSN_ENTRY),
607 				    prestr, typestr, EC_OFF(off), secname,
608 				    symname, poststr);
609 			else
610 				dbg_print(lml, MSG_INTL(MSG_REL_LDLN_ENTRY),
611 				    prestr, typestr, EC_OFF(off), secname,
612 				    symname, poststr);
613 		}
614 	}
615 }
616 
617 void
618 Elf_reloc_entry_1(Lm_list *lml, int caller, const char *prestr, Half mach,
619     Word type, void *reloc, const char *secname, const char *symname,
620     const char *poststr)
621 {
622 	Conv_inv_buf_t	inv_buf;
623 	Addr		off;
624 	Sxword		add;
625 	const char	*str;
626 
627 	if (type == SHT_RELA) {
628 		Rela	*rela = (Rela *)reloc;
629 
630 		str = conv_reloc_type(mach, ELF_R_TYPE(rela->r_info, mach),
631 		    0, &inv_buf);
632 		off = rela->r_offset;
633 		add = rela->r_addend;
634 	} else {
635 		Rel	*rel = (Rel *)reloc;
636 
637 		str = conv_reloc_type(mach, ELF_R_TYPE(rel->r_info, mach),
638 		    0, &inv_buf);
639 		off = rel->r_offset;
640 		add = 0;
641 	}
642 	Elf_reloc_entry_2(lml, caller, prestr, type, str, off, add, secname,
643 	    symname, poststr);
644 }
645 
646 /*
647  * Display any applied relocations.  Presently, these are only called from
648  * ld.so.1, but the interfaces are maintained here to insure consistency with
649  * other relocation diagnostics.
650  */
651 void
652 Elf_reloc_apply_val(Lm_list *lml, int caller, Xword offset, Xword value)
653 {
654 	if (caller == ELF_DBG_RTLD)
655 		dbg_print(lml, MSG_INTL(MSG_REL_RT_APLVAL), EC_XWORD(offset),
656 		    EC_XWORD(value));
657 }
658 void
659 Elf_reloc_apply_reg(Lm_list *lml, int caller, Half mach, Xword offset,
660     Xword value)
661 {
662 	Conv_inv_buf_t inv_buf;
663 
664 	if (caller == ELF_DBG_RTLD)
665 		dbg_print(lml, MSG_INTL(MSG_REL_RT_APLREG),
666 		    conv_sym_value(mach, STT_SPARC_REGISTER,
667 		    offset, &inv_buf), EC_XWORD(value));
668 }
669