17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
55aefb655Srie  * Common Development and Distribution License (the "License").
65aefb655Srie  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21141040e8Srie 
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  *	Copyright (c) 1990, 1991 UNIX System Laboratories, Inc.
247c478bd9Sstevel@tonic-gate  *	Copyright (c) 1988 AT&T
257c478bd9Sstevel@tonic-gate  *	  All Rights Reserved
267c478bd9Sstevel@tonic-gate  *
27cce0e03bSab  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
287c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
297c478bd9Sstevel@tonic-gate  */
307c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
317c478bd9Sstevel@tonic-gate 
32ba2be530Sab /* Get the x86 version of the relocation engine */
33ba2be530Sab #define	DO_RELOC_LIBLD_X86
34ba2be530Sab 
357c478bd9Sstevel@tonic-gate #include	<string.h>
367c478bd9Sstevel@tonic-gate #include	<stdio.h>
377c478bd9Sstevel@tonic-gate #include	<sys/elf_386.h>
385aefb655Srie #include	<debug.h>
395aefb655Srie #include	<reloc.h>
40ba2be530Sab #include	<i386/machdep_x86.h>
417c478bd9Sstevel@tonic-gate #include	"msg.h"
427c478bd9Sstevel@tonic-gate #include	"_libld.h"
437c478bd9Sstevel@tonic-gate 
44ba2be530Sab /* Forward declarations */
45ba2be530Sab static Gotndx	*ld_find_gotndx(List *, Gotref, Ofl_desc *, Rel_desc *);
46ba2be530Sab static Xword	ld_calc_got_offset(Rel_desc *, Ofl_desc *);
47ba2be530Sab 
48ba2be530Sab 
49ba2be530Sab static Word
505aefb655Srie ld_init_rel(Rel_desc *reld, void *reloc)
517c478bd9Sstevel@tonic-gate {
527c478bd9Sstevel@tonic-gate 	Rel *	rel = (Rel *)reloc;
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate 	/* LINTED */
55ba2be530Sab 	reld->rel_rtype = (Word)ELF_R_TYPE(rel->r_info, M_MACH);
567c478bd9Sstevel@tonic-gate 	reld->rel_roffset = rel->r_offset;
577c478bd9Sstevel@tonic-gate 	reld->rel_raddend = 0;
587c478bd9Sstevel@tonic-gate 	reld->rel_typedata = 0;
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate 	return ((Word)ELF_R_SYM(rel->r_info));
617c478bd9Sstevel@tonic-gate }
627c478bd9Sstevel@tonic-gate 
63ba2be530Sab static void
645aefb655Srie ld_mach_eflags(Ehdr *ehdr, Ofl_desc *ofl)
657c478bd9Sstevel@tonic-gate {
665aefb655Srie 	ofl->ofl_dehdr->e_flags |= ehdr->e_flags;
677c478bd9Sstevel@tonic-gate }
687c478bd9Sstevel@tonic-gate 
69ba2be530Sab static void
705aefb655Srie ld_mach_make_dynamic(Ofl_desc *ofl, size_t *cnt)
717c478bd9Sstevel@tonic-gate {
727c478bd9Sstevel@tonic-gate 	if (!(ofl->ofl_flags & FLG_OF_RELOBJ)) {
737c478bd9Sstevel@tonic-gate 		/*
747c478bd9Sstevel@tonic-gate 		 * Create this entry if we are going to create a PLT table.
757c478bd9Sstevel@tonic-gate 		 */
767c478bd9Sstevel@tonic-gate 		if (ofl->ofl_pltcnt)
777c478bd9Sstevel@tonic-gate 			(*cnt)++;		/* DT_PLTGOT */
787c478bd9Sstevel@tonic-gate 	}
797c478bd9Sstevel@tonic-gate }
807c478bd9Sstevel@tonic-gate 
81ba2be530Sab static void
82d326b23bSrie ld_mach_update_odynamic(Ofl_desc *ofl, Dyn **dyn)
837c478bd9Sstevel@tonic-gate {
845aefb655Srie 	if (((ofl->ofl_flags & FLG_OF_RELOBJ) == 0) && ofl->ofl_pltcnt) {
855aefb655Srie 		(*dyn)->d_tag = DT_PLTGOT;
865aefb655Srie 		if (ofl->ofl_osgot)
875aefb655Srie 			(*dyn)->d_un.d_ptr = ofl->ofl_osgot->os_shdr->sh_addr;
885aefb655Srie 		else
895aefb655Srie 			(*dyn)->d_un.d_ptr = 0;
905aefb655Srie 		(*dyn)++;
917c478bd9Sstevel@tonic-gate 	}
927c478bd9Sstevel@tonic-gate }
937c478bd9Sstevel@tonic-gate 
94ba2be530Sab static Xword
955aefb655Srie ld_calc_plt_addr(Sym_desc *sdp, Ofl_desc *ofl)
967c478bd9Sstevel@tonic-gate {
977c478bd9Sstevel@tonic-gate 	Xword	value;
987c478bd9Sstevel@tonic-gate 
997c478bd9Sstevel@tonic-gate 	value = (Xword)(ofl->ofl_osplt->os_shdr->sh_addr) +
1007c478bd9Sstevel@tonic-gate 	    M_PLT_RESERVSZ + ((sdp->sd_aux->sa_PLTndx - 1) * M_PLT_ENTSIZE);
1017c478bd9Sstevel@tonic-gate 	return (value);
1027c478bd9Sstevel@tonic-gate }
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate /*
1057c478bd9Sstevel@tonic-gate  *  Build a single plt entry - code is:
1067c478bd9Sstevel@tonic-gate  *	if (building a.out)
1077c478bd9Sstevel@tonic-gate  *		JMP	*got_off
1087c478bd9Sstevel@tonic-gate  *	else
1097c478bd9Sstevel@tonic-gate  *		JMP	*got_off@GOT(%ebx)
1107c478bd9Sstevel@tonic-gate  *	PUSHL	&rel_off
1117c478bd9Sstevel@tonic-gate  *	JMP	-n(%pc)		# -n is pcrel offset to first plt entry
1127c478bd9Sstevel@tonic-gate  *
1137c478bd9Sstevel@tonic-gate  *	The got_off@GOT entry gets filled with the address of the PUSHL,
1147c478bd9Sstevel@tonic-gate  *	so the first pass through the plt jumps back here, jumping
1157c478bd9Sstevel@tonic-gate  *	in turn to the first plt entry, which jumps to the dynamic
1167c478bd9Sstevel@tonic-gate  *	linker.	 The dynamic linker then patches the GOT, rerouting
1177c478bd9Sstevel@tonic-gate  *	future plt calls to the proper destination.
1187c478bd9Sstevel@tonic-gate  */
1197c478bd9Sstevel@tonic-gate static void
1207c478bd9Sstevel@tonic-gate plt_entry(Ofl_desc * ofl, Word rel_off, Sym_desc * sdp)
1217c478bd9Sstevel@tonic-gate {
122b3fbe5e6Sseizo 	uchar_t		*pltent, *gotent;
1237c478bd9Sstevel@tonic-gate 	Sword		plt_off;
1247c478bd9Sstevel@tonic-gate 	Word		got_off;
125ba2be530Sab 	int		bswap = (ofl->ofl_flags1 & FLG_OF1_ENCDIFF) != 0;
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate 	got_off = sdp->sd_aux->sa_PLTGOTndx * M_GOT_ENTSIZE;
1287c478bd9Sstevel@tonic-gate 	plt_off = M_PLT_RESERVSZ + ((sdp->sd_aux->sa_PLTndx - 1) *
1297c478bd9Sstevel@tonic-gate 	    M_PLT_ENTSIZE);
130b3fbe5e6Sseizo 	pltent = (uchar_t *)(ofl->ofl_osplt->os_outdata->d_buf) + plt_off;
131b3fbe5e6Sseizo 	gotent = (uchar_t *)(ofl->ofl_osgot->os_outdata->d_buf) + got_off;
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate 	/*
1347c478bd9Sstevel@tonic-gate 	 * Fill in the got entry with the address of the next instruction.
1357c478bd9Sstevel@tonic-gate 	 */
1367c478bd9Sstevel@tonic-gate 	/* LINTED */
1377c478bd9Sstevel@tonic-gate 	*(Word *)gotent = ofl->ofl_osplt->os_shdr->sh_addr + plt_off +
138b3fbe5e6Sseizo 	    M_PLT_INSSIZE;
139ba2be530Sab 	if (bswap)
140ba2be530Sab 		/* LINTED */
141ba2be530Sab 		*(Word *)gotent = ld_bswap_Word(*(Word *)gotent);
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate 	if (!(ofl->ofl_flags & FLG_OF_SHAROBJ)) {
1447c478bd9Sstevel@tonic-gate 		pltent[0] = M_SPECIAL_INST;
1457c478bd9Sstevel@tonic-gate 		pltent[1] = M_JMP_DISP_IND;
1467c478bd9Sstevel@tonic-gate 		pltent += 2;
1477c478bd9Sstevel@tonic-gate 		/* LINTED */
1487c478bd9Sstevel@tonic-gate 		*(Word *)pltent = (Word)(ofl->ofl_osgot->os_shdr->sh_addr +
149de777a60Sab 		    got_off);
1507c478bd9Sstevel@tonic-gate 	} else {
1517c478bd9Sstevel@tonic-gate 		pltent[0] = M_SPECIAL_INST;
1527c478bd9Sstevel@tonic-gate 		pltent[1] = M_JMP_REG_DISP_IND;
1537c478bd9Sstevel@tonic-gate 		pltent += 2;
1547c478bd9Sstevel@tonic-gate 		/* LINTED */
1557c478bd9Sstevel@tonic-gate 		*(Word *)pltent = (Word)got_off;
1567c478bd9Sstevel@tonic-gate 	}
157ba2be530Sab 	if (bswap)
158ba2be530Sab 		/* LINTED */
159ba2be530Sab 		*(Word *)pltent = ld_bswap_Word(*(Word *)pltent);
1607c478bd9Sstevel@tonic-gate 	pltent += 4;
1617c478bd9Sstevel@tonic-gate 
1627c478bd9Sstevel@tonic-gate 	pltent[0] = M_INST_PUSHL;
1637c478bd9Sstevel@tonic-gate 	pltent++;
1647c478bd9Sstevel@tonic-gate 	/* LINTED */
1657c478bd9Sstevel@tonic-gate 	*(Word *)pltent = (Word)rel_off;
166ba2be530Sab 	if (bswap)
167ba2be530Sab 		/* LINTED */
168ba2be530Sab 		*(Word *)pltent = ld_bswap_Word(*(Word *)pltent);
1697c478bd9Sstevel@tonic-gate 	pltent += 4;
1707c478bd9Sstevel@tonic-gate 
1717c478bd9Sstevel@tonic-gate 	plt_off = -(plt_off + 16);	/* JMP, PUSHL, JMP take 16 bytes */
1727c478bd9Sstevel@tonic-gate 	pltent[0] = M_INST_JMP;
1737c478bd9Sstevel@tonic-gate 	pltent++;
1747c478bd9Sstevel@tonic-gate 	/* LINTED */
1757c478bd9Sstevel@tonic-gate 	*(Word *)pltent = (Word)plt_off;
176ba2be530Sab 	if (bswap)
177ba2be530Sab 		/* LINTED */
178ba2be530Sab 		*(Word *)pltent = ld_bswap_Word(*(Word *)pltent);
1797c478bd9Sstevel@tonic-gate }
1807c478bd9Sstevel@tonic-gate 
181ba2be530Sab static uintptr_t
1825aefb655Srie ld_perform_outreloc(Rel_desc * orsp, Ofl_desc * ofl)
1837c478bd9Sstevel@tonic-gate {
1847c478bd9Sstevel@tonic-gate 	Os_desc *	relosp, * osp = 0;
1857c478bd9Sstevel@tonic-gate 	Word		ndx, roffset, value;
1867c478bd9Sstevel@tonic-gate 	Rel		rea;
1877c478bd9Sstevel@tonic-gate 	char		*relbits;
1887c478bd9Sstevel@tonic-gate 	Sym_desc *	sdp, * psym = (Sym_desc *)0;
1897c478bd9Sstevel@tonic-gate 	int		sectmoved = 0;
1907c478bd9Sstevel@tonic-gate 
1917c478bd9Sstevel@tonic-gate 	sdp = orsp->rel_sym;
1927c478bd9Sstevel@tonic-gate 
1937c478bd9Sstevel@tonic-gate 	/*
1947c478bd9Sstevel@tonic-gate 	 * If the section this relocation is against has been discarded
1957c478bd9Sstevel@tonic-gate 	 * (-zignore), then also discard (skip) the relocation itself.
1967c478bd9Sstevel@tonic-gate 	 */
1977c478bd9Sstevel@tonic-gate 	if (orsp->rel_isdesc && ((orsp->rel_flags &
1987c478bd9Sstevel@tonic-gate 	    (FLG_REL_GOT | FLG_REL_BSS | FLG_REL_PLT | FLG_REL_NOINFO)) == 0) &&
1997c478bd9Sstevel@tonic-gate 	    (orsp->rel_isdesc->is_flags & FLG_IS_DISCARD)) {
2005aefb655Srie 		DBG_CALL(Dbg_reloc_discard(ofl->ofl_lml, M_MACH, orsp));
2017c478bd9Sstevel@tonic-gate 		return (1);
2027c478bd9Sstevel@tonic-gate 	}
2037c478bd9Sstevel@tonic-gate 
2047c478bd9Sstevel@tonic-gate 	/*
2057c478bd9Sstevel@tonic-gate 	 * If this is a relocation against a move table, or expanded move
2067c478bd9Sstevel@tonic-gate 	 * table, adjust the relocation entries.
2077c478bd9Sstevel@tonic-gate 	 */
2087c478bd9Sstevel@tonic-gate 	if (orsp->rel_move)
2095aefb655Srie 		ld_adj_movereloc(ofl, orsp);
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate 	/*
2127c478bd9Sstevel@tonic-gate 	 * If this is a relocation against a section using a partial initialized
2137c478bd9Sstevel@tonic-gate 	 * symbol, adjust the embedded symbol info.
2147c478bd9Sstevel@tonic-gate 	 *
2157c478bd9Sstevel@tonic-gate 	 * The second argument of the am_I_partial() is the value stored at the
2167c478bd9Sstevel@tonic-gate 	 * target address relocation is going to be applied.
2177c478bd9Sstevel@tonic-gate 	 */
2187c478bd9Sstevel@tonic-gate 	if (ELF_ST_TYPE(sdp->sd_sym->st_info) == STT_SECTION) {
2197c478bd9Sstevel@tonic-gate 		if (ofl->ofl_parsym.head &&
2207c478bd9Sstevel@tonic-gate 		    (sdp->sd_isc->is_flags & FLG_IS_RELUPD) &&
2217c478bd9Sstevel@tonic-gate 		    /* LINTED */
2225aefb655Srie 		    (psym = ld_am_I_partial(orsp, *(Xword *)
223b3fbe5e6Sseizo 		    ((uchar_t *)(orsp->rel_isdesc->is_indata->d_buf) +
2247c478bd9Sstevel@tonic-gate 		    orsp->rel_roffset)))) {
2255aefb655Srie 			DBG_CALL(Dbg_move_outsctadj(ofl->ofl_lml, psym));
2267c478bd9Sstevel@tonic-gate 			sectmoved = 1;
227de777a60Sab 		}
2287c478bd9Sstevel@tonic-gate 	}
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate 	value = sdp->sd_sym->st_value;
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate 	if (orsp->rel_flags & FLG_REL_GOT) {
2337c478bd9Sstevel@tonic-gate 		osp = ofl->ofl_osgot;
2345aefb655Srie 		roffset = (Word)ld_calc_got_offset(orsp, ofl);
2355aefb655Srie 
2367c478bd9Sstevel@tonic-gate 	} else if (orsp->rel_flags & FLG_REL_PLT) {
2377c478bd9Sstevel@tonic-gate 		/*
2387c478bd9Sstevel@tonic-gate 		 * Note that relocations for PLT's actually
2397c478bd9Sstevel@tonic-gate 		 * cause a relocation againt the GOT.
2407c478bd9Sstevel@tonic-gate 		 */
2417c478bd9Sstevel@tonic-gate 		osp = ofl->ofl_osplt;
2427c478bd9Sstevel@tonic-gate 		roffset = (Word) (ofl->ofl_osgot->os_shdr->sh_addr) +
2437c478bd9Sstevel@tonic-gate 		    sdp->sd_aux->sa_PLTGOTndx * M_GOT_ENTSIZE;
2447c478bd9Sstevel@tonic-gate 
2457c478bd9Sstevel@tonic-gate 		plt_entry(ofl, osp->os_relosdesc->os_szoutrels, sdp);
2467c478bd9Sstevel@tonic-gate 
2477c478bd9Sstevel@tonic-gate 	} else if (orsp->rel_flags & FLG_REL_BSS) {
2487c478bd9Sstevel@tonic-gate 		/*
2497c478bd9Sstevel@tonic-gate 		 * This must be a R_386_COPY.  For these set the roffset to
2507c478bd9Sstevel@tonic-gate 		 * point to the new symbols location.
2517c478bd9Sstevel@tonic-gate 		 */
2527c478bd9Sstevel@tonic-gate 		osp = ofl->ofl_isbss->is_osdesc;
2537c478bd9Sstevel@tonic-gate 		roffset = (Word)value;
2547c478bd9Sstevel@tonic-gate 	} else {
2557c478bd9Sstevel@tonic-gate 		osp = orsp->rel_osdesc;
2567c478bd9Sstevel@tonic-gate 
2577c478bd9Sstevel@tonic-gate 		/*
2587c478bd9Sstevel@tonic-gate 		 * Calculate virtual offset of reference point; equals offset
2597c478bd9Sstevel@tonic-gate 		 * into section + vaddr of section for loadable sections, or
2607c478bd9Sstevel@tonic-gate 		 * offset plus section displacement for nonloadable sections.
2617c478bd9Sstevel@tonic-gate 		 */
2627c478bd9Sstevel@tonic-gate 		roffset = orsp->rel_roffset +
2637c478bd9Sstevel@tonic-gate 		    (Off)_elf_getxoff(orsp->rel_isdesc->is_indata);
2647c478bd9Sstevel@tonic-gate 		if (!(ofl->ofl_flags & FLG_OF_RELOBJ))
2657c478bd9Sstevel@tonic-gate 			roffset += orsp->rel_isdesc->is_osdesc->
2667c478bd9Sstevel@tonic-gate 			    os_shdr->sh_addr;
2677c478bd9Sstevel@tonic-gate 	}
2687c478bd9Sstevel@tonic-gate 
2697c478bd9Sstevel@tonic-gate 	if ((osp == 0) || ((relosp = osp->os_relosdesc) == 0))
2707c478bd9Sstevel@tonic-gate 		relosp = ofl->ofl_osrel;
2717c478bd9Sstevel@tonic-gate 
2727c478bd9Sstevel@tonic-gate 	/*
2737c478bd9Sstevel@tonic-gate 	 * Assign the symbols index for the output relocation.  If the
2747c478bd9Sstevel@tonic-gate 	 * relocation refers to a SECTION symbol then it's index is based upon
2757c478bd9Sstevel@tonic-gate 	 * the output sections symbols index.  Otherwise the index can be
2767c478bd9Sstevel@tonic-gate 	 * derived from the symbols index itself.
2777c478bd9Sstevel@tonic-gate 	 */
2787c478bd9Sstevel@tonic-gate 	if (orsp->rel_rtype == R_386_RELATIVE)
2797c478bd9Sstevel@tonic-gate 		ndx = STN_UNDEF;
2807c478bd9Sstevel@tonic-gate 	else if ((orsp->rel_flags & FLG_REL_SCNNDX) ||
2817c478bd9Sstevel@tonic-gate 	    (ELF_ST_TYPE(sdp->sd_sym->st_info) == STT_SECTION)) {
2827c478bd9Sstevel@tonic-gate 		if (sectmoved == 0) {
2837c478bd9Sstevel@tonic-gate 			/*
2847c478bd9Sstevel@tonic-gate 			 * Check for a null input section. This can
2857c478bd9Sstevel@tonic-gate 			 * occur if this relocation references a symbol
2867c478bd9Sstevel@tonic-gate 			 * generated by sym_add_sym().
2877c478bd9Sstevel@tonic-gate 			 */
2887c478bd9Sstevel@tonic-gate 			if ((sdp->sd_isc != 0) &&
2897c478bd9Sstevel@tonic-gate 			    (sdp->sd_isc->is_osdesc != 0))
2907c478bd9Sstevel@tonic-gate 				ndx = sdp->sd_isc->is_osdesc->os_scnsymndx;
2917c478bd9Sstevel@tonic-gate 			else
2927c478bd9Sstevel@tonic-gate 				ndx = sdp->sd_shndx;
2937c478bd9Sstevel@tonic-gate 		} else
2947c478bd9Sstevel@tonic-gate 			ndx = ofl->ofl_sunwdata1ndx;
2957c478bd9Sstevel@tonic-gate 	} else
2967c478bd9Sstevel@tonic-gate 		ndx = sdp->sd_symndx;
2977c478bd9Sstevel@tonic-gate 
298cce0e03bSab 	/*
299cce0e03bSab 	 * If we have a replacement value for the relocation
300cce0e03bSab 	 * target, put it in place now.
301cce0e03bSab 	 */
302cce0e03bSab 	if (orsp->rel_flags & FLG_REL_NADDEND) {
303cce0e03bSab 		Xword	addend = orsp->rel_raddend;
304cce0e03bSab 		uchar_t	*addr;
305cce0e03bSab 
306cce0e03bSab 		/*
307cce0e03bSab 		 * Get the address of the data item we need to modify.
308cce0e03bSab 		 */
309cce0e03bSab 		addr = (uchar_t *)((uintptr_t)orsp->rel_roffset +
310cce0e03bSab 		    (uintptr_t)_elf_getxoff(orsp->rel_isdesc->is_indata));
311cce0e03bSab 		addr += (uintptr_t)orsp->rel_osdesc->os_outdata->d_buf;
312cce0e03bSab 		if (ld_reloc_targval_set(ofl, orsp, addr, addend) == 0)
313cce0e03bSab 			return (S_ERROR);
314cce0e03bSab 	}
315cce0e03bSab 
3167c478bd9Sstevel@tonic-gate 	relbits = (char *)relosp->os_outdata->d_buf;
3177c478bd9Sstevel@tonic-gate 
3187c478bd9Sstevel@tonic-gate 	rea.r_info = ELF_R_INFO(ndx, orsp->rel_rtype);
3197c478bd9Sstevel@tonic-gate 	rea.r_offset = roffset;
3205aefb655Srie 	DBG_CALL(Dbg_reloc_out(ofl, ELF_DBG_LD, SHT_REL, &rea, relosp->os_name,
3215aefb655Srie 	    orsp->rel_sname));
3227c478bd9Sstevel@tonic-gate 
3237c478bd9Sstevel@tonic-gate 	/*
3247c478bd9Sstevel@tonic-gate 	 * Assert we haven't walked off the end of our relocation table.
3257c478bd9Sstevel@tonic-gate 	 */
3267c478bd9Sstevel@tonic-gate 	assert(relosp->os_szoutrels <= relosp->os_shdr->sh_size);
3277c478bd9Sstevel@tonic-gate 
3287c478bd9Sstevel@tonic-gate 	(void) memcpy((relbits + relosp->os_szoutrels),
3297c478bd9Sstevel@tonic-gate 	    (char *)&rea, sizeof (Rel));
3307c478bd9Sstevel@tonic-gate 	relosp->os_szoutrels += sizeof (Rel);
3317c478bd9Sstevel@tonic-gate 
3327c478bd9Sstevel@tonic-gate 	/*
3337c478bd9Sstevel@tonic-gate 	 * Determine if this relocation is against a non-writable, allocatable
3347c478bd9Sstevel@tonic-gate 	 * section.  If so we may need to provide a text relocation diagnostic.
3357c478bd9Sstevel@tonic-gate 	 * Note that relocations against the .plt (R_386_JMP_SLOT) actually
3367c478bd9Sstevel@tonic-gate 	 * result in modifications to the .got.
3377c478bd9Sstevel@tonic-gate 	 */
3387c478bd9Sstevel@tonic-gate 	if (orsp->rel_rtype == R_386_JMP_SLOT)
3397c478bd9Sstevel@tonic-gate 		osp = ofl->ofl_osgot;
3407c478bd9Sstevel@tonic-gate 
3415aefb655Srie 	ld_reloc_remain_entry(orsp, osp, ofl);
3427c478bd9Sstevel@tonic-gate 	return (1);
3437c478bd9Sstevel@tonic-gate }
3447c478bd9Sstevel@tonic-gate 
3457c478bd9Sstevel@tonic-gate /*
3467c478bd9Sstevel@tonic-gate  * i386 Instructions for TLS processing
3477c478bd9Sstevel@tonic-gate  */
348b3fbe5e6Sseizo static uchar_t tlsinstr_gd_ie[] = {
3497c478bd9Sstevel@tonic-gate 	/*
3507c478bd9Sstevel@tonic-gate 	 * 0x00	movl %gs:0x0, %eax
3517c478bd9Sstevel@tonic-gate 	 */
3527c478bd9Sstevel@tonic-gate 	0x65, 0xa1, 0x00, 0x00, 0x00, 0x00,
3537c478bd9Sstevel@tonic-gate 	/*
3547c478bd9Sstevel@tonic-gate 	 * 0x06	addl x(%eax), %eax
3557c478bd9Sstevel@tonic-gate 	 * 0x0c ...
3567c478bd9Sstevel@tonic-gate 	 */
3577c478bd9Sstevel@tonic-gate 	0x03, 0x80, 0x00, 0x00, 0x00, 0x00
3587c478bd9Sstevel@tonic-gate };
3597c478bd9Sstevel@tonic-gate 
360b3fbe5e6Sseizo static uchar_t tlsinstr_gd_le[] = {
3617c478bd9Sstevel@tonic-gate 	/*
3627c478bd9Sstevel@tonic-gate 	 * 0x00 movl %gs:0x0, %eax
3637c478bd9Sstevel@tonic-gate 	 */
3647c478bd9Sstevel@tonic-gate 	0x65, 0xa1, 0x00, 0x00, 0x00, 0x00,
3657c478bd9Sstevel@tonic-gate 	/*
3667c478bd9Sstevel@tonic-gate 	 * 0x06 addl $0x0, %eax
3677c478bd9Sstevel@tonic-gate 	 */
3687c478bd9Sstevel@tonic-gate 	0x05, 0x00, 0x00, 0x00, 0x00,
3697c478bd9Sstevel@tonic-gate 	/*
3707c478bd9Sstevel@tonic-gate 	 * 0x0b nop
3717c478bd9Sstevel@tonic-gate 	 * 0x0c
3727c478bd9Sstevel@tonic-gate 	 */
3737c478bd9Sstevel@tonic-gate 	0x90
3747c478bd9Sstevel@tonic-gate };
3757c478bd9Sstevel@tonic-gate 
376b3fbe5e6Sseizo static uchar_t tlsinstr_gd_ie_movgs[] = {
3777c478bd9Sstevel@tonic-gate 	/*
3787c478bd9Sstevel@tonic-gate 	 *	movl %gs:0x0,%eax
3797c478bd9Sstevel@tonic-gate 	 */
3807c478bd9Sstevel@tonic-gate 	0x65, 0xa1, 0x00, 0x00, 0x00, 00
3817c478bd9Sstevel@tonic-gate };
3827c478bd9Sstevel@tonic-gate 
3837c478bd9Sstevel@tonic-gate #define	TLS_GD_IE_MOV	0x8b	/* movl opcode */
3847c478bd9Sstevel@tonic-gate #define	TLS_GD_IE_POP	0x58	/* popl + reg */
3857c478bd9Sstevel@tonic-gate 
3867c478bd9Sstevel@tonic-gate #define	TLS_GD_LE_MOVL	0xb8	/* movl + reg */
3877c478bd9Sstevel@tonic-gate 
3887c478bd9Sstevel@tonic-gate #define	TLS_NOP		0x90	/* NOP instruction */
3897c478bd9Sstevel@tonic-gate 
3907c478bd9Sstevel@tonic-gate #define	MODRM_MSK_MOD	0xc0
3917c478bd9Sstevel@tonic-gate #define	MODRM_MSK_RO	0x38
3927c478bd9Sstevel@tonic-gate #define	MODRM_MSK_RM	0x07
3937c478bd9Sstevel@tonic-gate 
3947c478bd9Sstevel@tonic-gate #define	SIB_MSK_SS	0xc0
3957c478bd9Sstevel@tonic-gate #define	SIB_MSK_IND	0x38
3967c478bd9Sstevel@tonic-gate #define	SIB_MSK_BS	0x07
3977c478bd9Sstevel@tonic-gate 
3985aefb655Srie static Fixupret
3995aefb655Srie tls_fixups(Ofl_desc *ofl, Rel_desc *arsp)
4007c478bd9Sstevel@tonic-gate {
4017c478bd9Sstevel@tonic-gate 	Sym_desc	*sdp = arsp->rel_sym;
4027c478bd9Sstevel@tonic-gate 	Word		rtype = arsp->rel_rtype;
403b3fbe5e6Sseizo 	uchar_t		*offset, r1, r2;
4047c478bd9Sstevel@tonic-gate 
405b3fbe5e6Sseizo 	offset = (uchar_t *)((uintptr_t)arsp->rel_roffset +
406b3fbe5e6Sseizo 	    (uintptr_t)_elf_getxoff(arsp->rel_isdesc->is_indata) +
407b3fbe5e6Sseizo 	    (uintptr_t)arsp->rel_osdesc->os_outdata->d_buf);
4087c478bd9Sstevel@tonic-gate 
4097c478bd9Sstevel@tonic-gate 	if (sdp->sd_ref == REF_DYN_NEED) {
4107c478bd9Sstevel@tonic-gate 		/*
4117c478bd9Sstevel@tonic-gate 		 * IE reference model
4127c478bd9Sstevel@tonic-gate 		 */
4137c478bd9Sstevel@tonic-gate 		switch (rtype) {
4147c478bd9Sstevel@tonic-gate 		case R_386_TLS_GD:
4157c478bd9Sstevel@tonic-gate 			/*
4167c478bd9Sstevel@tonic-gate 			 * Transition:
4177c478bd9Sstevel@tonic-gate 			 *	0x0 leal x@tlsgd(,r1,1), %eax
4187c478bd9Sstevel@tonic-gate 			 *	0x7 call ___tls_get_addr
4197c478bd9Sstevel@tonic-gate 			 *	0xc
4207c478bd9Sstevel@tonic-gate 			 * To:
4217c478bd9Sstevel@tonic-gate 			 *	0x0 movl %gs:0, %eax
4227c478bd9Sstevel@tonic-gate 			 *	0x6 addl x@gotntpoff(r1), %eax
4237c478bd9Sstevel@tonic-gate 			 */
4245aefb655Srie 			DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
425051d39bbSrie 			    R_386_TLS_GOTIE, arsp));
4267c478bd9Sstevel@tonic-gate 			arsp->rel_rtype = R_386_TLS_GOTIE;
4277c478bd9Sstevel@tonic-gate 			arsp->rel_roffset += 5;
4285aefb655Srie 
4297c478bd9Sstevel@tonic-gate 			/*
430051d39bbSrie 			 * Adjust 'offset' to beginning of instruction
4317c478bd9Sstevel@tonic-gate 			 * sequence.
4327c478bd9Sstevel@tonic-gate 			 */
4337c478bd9Sstevel@tonic-gate 			offset -= 3;
4347c478bd9Sstevel@tonic-gate 			r1 = (offset[2] & SIB_MSK_IND) >> 3;
4357c478bd9Sstevel@tonic-gate 			(void) memcpy(offset, tlsinstr_gd_ie,
4365aefb655Srie 			    sizeof (tlsinstr_gd_ie));
4375aefb655Srie 
4387c478bd9Sstevel@tonic-gate 			/*
4397c478bd9Sstevel@tonic-gate 			 * set register %r1 into the addl
4407c478bd9Sstevel@tonic-gate 			 * instruction.
4417c478bd9Sstevel@tonic-gate 			 */
4427c478bd9Sstevel@tonic-gate 			offset[0x7] |= r1;
4437c478bd9Sstevel@tonic-gate 			return (FIX_RELOC);
4445aefb655Srie 
4457c478bd9Sstevel@tonic-gate 		case R_386_TLS_GD_PLT:
4467c478bd9Sstevel@tonic-gate 			/*
4477c478bd9Sstevel@tonic-gate 			 * Fixup done via the TLS_GD relocation
4487c478bd9Sstevel@tonic-gate 			 */
4495aefb655Srie 			DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
450051d39bbSrie 			    R_386_NONE, arsp));
4517c478bd9Sstevel@tonic-gate 			return (FIX_DONE);
4527c478bd9Sstevel@tonic-gate 		}
4537c478bd9Sstevel@tonic-gate 	}
4547c478bd9Sstevel@tonic-gate 
4557c478bd9Sstevel@tonic-gate 	/*
4567c478bd9Sstevel@tonic-gate 	 * LE reference model
4577c478bd9Sstevel@tonic-gate 	 */
4587c478bd9Sstevel@tonic-gate 	switch (rtype) {
4597c478bd9Sstevel@tonic-gate 	case R_386_TLS_GD:
4607c478bd9Sstevel@tonic-gate 		/*
4617c478bd9Sstevel@tonic-gate 		 * Transition:
4627c478bd9Sstevel@tonic-gate 		 *	0x0 leal x@tlsgd(,r1,1), %eax
4637c478bd9Sstevel@tonic-gate 		 *	0x7 call ___tls_get_addr
4647c478bd9Sstevel@tonic-gate 		 *	0xc
4657c478bd9Sstevel@tonic-gate 		 * To:
4667c478bd9Sstevel@tonic-gate 		 *	0x0 movl %gs:0, %eax
4677c478bd9Sstevel@tonic-gate 		 *	0x6 addl $x@ntpoff, %eax
4687c478bd9Sstevel@tonic-gate 		 *	0xb nop
4697c478bd9Sstevel@tonic-gate 		 *	0xc
4707c478bd9Sstevel@tonic-gate 		 */
4715aefb655Srie 		DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
472051d39bbSrie 		    R_386_TLS_LE, arsp));
4737c478bd9Sstevel@tonic-gate 
4747c478bd9Sstevel@tonic-gate 		arsp->rel_rtype = R_386_TLS_LE;
4757c478bd9Sstevel@tonic-gate 		arsp->rel_roffset += 4;
4765aefb655Srie 
4777c478bd9Sstevel@tonic-gate 		/*
478051d39bbSrie 		 * Adjust 'offset' to beginning of instruction
4797c478bd9Sstevel@tonic-gate 		 * sequence.
4807c478bd9Sstevel@tonic-gate 		 */
4817c478bd9Sstevel@tonic-gate 		offset -= 3;
4827c478bd9Sstevel@tonic-gate 		(void) memcpy(offset, tlsinstr_gd_le,
4835aefb655Srie 		    sizeof (tlsinstr_gd_le));
4847c478bd9Sstevel@tonic-gate 		return (FIX_RELOC);
4855aefb655Srie 
4867c478bd9Sstevel@tonic-gate 	case R_386_TLS_GD_PLT:
4877c478bd9Sstevel@tonic-gate 	case R_386_PLT32:
4887c478bd9Sstevel@tonic-gate 		/*
4897c478bd9Sstevel@tonic-gate 		 * Fixup done via the TLS_GD relocation
4907c478bd9Sstevel@tonic-gate 		 */
4915aefb655Srie 		DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
492051d39bbSrie 		    R_386_NONE, arsp));
4937c478bd9Sstevel@tonic-gate 		return (FIX_DONE);
4945aefb655Srie 
4957c478bd9Sstevel@tonic-gate 	case R_386_TLS_LDM_PLT:
4965aefb655Srie 		DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
497051d39bbSrie 		    R_386_NONE, arsp));
4985aefb655Srie 
4997c478bd9Sstevel@tonic-gate 		/*
5007c478bd9Sstevel@tonic-gate 		 * Transition:
5017c478bd9Sstevel@tonic-gate 		 *	call __tls_get_addr()
5027c478bd9Sstevel@tonic-gate 		 * to:
5037c478bd9Sstevel@tonic-gate 		 *	nop
5047c478bd9Sstevel@tonic-gate 		 *	nop
5057c478bd9Sstevel@tonic-gate 		 *	nop
5067c478bd9Sstevel@tonic-gate 		 *	nop
5077c478bd9Sstevel@tonic-gate 		 *	nop
5087c478bd9Sstevel@tonic-gate 		 */
5097c478bd9Sstevel@tonic-gate 		*(offset - 1) = TLS_NOP;
5107c478bd9Sstevel@tonic-gate 		*(offset) = TLS_NOP;
5117c478bd9Sstevel@tonic-gate 		*(offset + 1) = TLS_NOP;
5127c478bd9Sstevel@tonic-gate 		*(offset + 2) = TLS_NOP;
5137c478bd9Sstevel@tonic-gate 		*(offset + 3) = TLS_NOP;
5147c478bd9Sstevel@tonic-gate 		return (FIX_DONE);
5155aefb655Srie 
5167c478bd9Sstevel@tonic-gate 	case R_386_TLS_LDM:
5175aefb655Srie 		DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
518051d39bbSrie 		    R_386_NONE, arsp));
5195aefb655Srie 
5207c478bd9Sstevel@tonic-gate 		/*
5217c478bd9Sstevel@tonic-gate 		 * Transition:
5227c478bd9Sstevel@tonic-gate 		 *
5237c478bd9Sstevel@tonic-gate 		 *  0x00 leal x1@tlsldm(%ebx), %eax
5247c478bd9Sstevel@tonic-gate 		 *  0x06 call ___tls_get_addr
5257c478bd9Sstevel@tonic-gate 		 *
5267c478bd9Sstevel@tonic-gate 		 * to:
5277c478bd9Sstevel@tonic-gate 		 *
5287c478bd9Sstevel@tonic-gate 		 *  0x00 movl %gs:0, %eax
5297c478bd9Sstevel@tonic-gate 		 */
5307c478bd9Sstevel@tonic-gate 		(void) memcpy(offset - 2, tlsinstr_gd_ie_movgs,
5315aefb655Srie 		    sizeof (tlsinstr_gd_ie_movgs));
5327c478bd9Sstevel@tonic-gate 		return (FIX_DONE);
5335aefb655Srie 
5347c478bd9Sstevel@tonic-gate 	case R_386_TLS_LDO_32:
5357c478bd9Sstevel@tonic-gate 		/*
5367c478bd9Sstevel@tonic-gate 		 *  Instructions:
5377c478bd9Sstevel@tonic-gate 		 *
5387c478bd9Sstevel@tonic-gate 		 *  0x10 leal x1@dtpoff(%eax), %edx	R_386_TLS_LDO_32
5397c478bd9Sstevel@tonic-gate 		 *		to
5407c478bd9Sstevel@tonic-gate 		 *  0x10 leal x1@ntpoff(%eax), %edx	R_386_TLS_LE
5417c478bd9Sstevel@tonic-gate 		 *
5427c478bd9Sstevel@tonic-gate 		 */
5437c478bd9Sstevel@tonic-gate 		offset -= 2;
5447c478bd9Sstevel@tonic-gate 
5455aefb655Srie 		DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
546051d39bbSrie 		    R_386_TLS_LE, arsp));
5477c478bd9Sstevel@tonic-gate 		arsp->rel_rtype = R_386_TLS_LE;
5487c478bd9Sstevel@tonic-gate 		return (FIX_RELOC);
5495aefb655Srie 
5507c478bd9Sstevel@tonic-gate 	case R_386_TLS_GOTIE:
5517c478bd9Sstevel@tonic-gate 		/*
5527c478bd9Sstevel@tonic-gate 		 * These transitions are a little different than the
5537c478bd9Sstevel@tonic-gate 		 * others, in that we could have multiple instructions
5547c478bd9Sstevel@tonic-gate 		 * pointed to by a single relocation.  Depending upon the
5557c478bd9Sstevel@tonic-gate 		 * instruction, we perform a different code transition.
5567c478bd9Sstevel@tonic-gate 		 *
5577c478bd9Sstevel@tonic-gate 		 * Here's the known transitions:
5587c478bd9Sstevel@tonic-gate 		 *
5597c478bd9Sstevel@tonic-gate 		 *  1) movl foo@gotntpoff(%reg1), %reg2
5607c478bd9Sstevel@tonic-gate 		 *	0x8b, 0x80 | (reg2 << 3) | reg1, foo@gotntpoff
5617c478bd9Sstevel@tonic-gate 		 *
5627c478bd9Sstevel@tonic-gate 		 *  2) addl foo@gotntpoff(%reg1), %reg2
5637c478bd9Sstevel@tonic-gate 		 *	0x03, 0x80 | (reg2 << 3) | reg1, foo@gotntpoff
5647c478bd9Sstevel@tonic-gate 		 *
5657c478bd9Sstevel@tonic-gate 		 *  Transitions IE -> LE
5667c478bd9Sstevel@tonic-gate 		 *
5677c478bd9Sstevel@tonic-gate 		 *  1) movl $foo@ntpoff, %reg2
5687c478bd9Sstevel@tonic-gate 		 *	0xc7, 0xc0 | reg2, foo@ntpoff
5697c478bd9Sstevel@tonic-gate 		 *
5707c478bd9Sstevel@tonic-gate 		 *  2) addl $foo@ntpoff, %reg2
5717c478bd9Sstevel@tonic-gate 		 *	0x81, 0xc0 | reg2, foo@ntpoff
5727c478bd9Sstevel@tonic-gate 		 *
5737c478bd9Sstevel@tonic-gate 		 * Note: reg1 != 4 (%esp)
5747c478bd9Sstevel@tonic-gate 		 */
5755aefb655Srie 		DBG_CALL(Dbg_reloc_transition(ofl->ofl_lml, M_MACH,
576051d39bbSrie 		    R_386_TLS_LE, arsp));
5777c478bd9Sstevel@tonic-gate 		arsp->rel_rtype = R_386_TLS_LE;
5785aefb655Srie 
5797c478bd9Sstevel@tonic-gate 		offset -= 2;
5807c478bd9Sstevel@tonic-gate 		r2 = (offset[1] & MODRM_MSK_RO) >> 3;
5817c478bd9Sstevel@tonic-gate 		if (offset[0] == 0x8b) {
5827c478bd9Sstevel@tonic-gate 			/* case 1 above */
5837c478bd9Sstevel@tonic-gate 			offset[0] = 0xc7;	/* movl */
5847c478bd9Sstevel@tonic-gate 			offset[1] = 0xc0 | r2;
5857c478bd9Sstevel@tonic-gate 			return (FIX_RELOC);
5867c478bd9Sstevel@tonic-gate 		}
5877c478bd9Sstevel@tonic-gate 
5887c478bd9Sstevel@tonic-gate 		if (offset[0] == 0x03) {
5897c478bd9Sstevel@tonic-gate 			/* case 2 above */
5907c478bd9Sstevel@tonic-gate 			assert(offset[0] == 0x03);
5917c478bd9Sstevel@tonic-gate 			offset[0] = 0x81;	/* addl */
5927c478bd9Sstevel@tonic-gate 			offset[1] = 0xc0 | r2;
5937c478bd9Sstevel@tonic-gate 			return (FIX_RELOC);
5947c478bd9Sstevel@tonic-gate 		}
5957c478bd9Sstevel@tonic-gate 
5967c478bd9Sstevel@tonic-gate 		/*
5977c478bd9Sstevel@tonic-gate 		 * Unexpected instruction sequence - fatal error.
5987c478bd9Sstevel@tonic-gate 		 */
599de777a60Sab 		{
600de777a60Sab 			Conv_inv_buf_t	inv_buf;
601de777a60Sab 
602de777a60Sab 			eprintf(ofl->ofl_lml, ERR_FATAL,
603de777a60Sab 			    MSG_INTL(MSG_REL_BADTLSINS),
604de777a60Sab 			    conv_reloc_386_type(arsp->rel_rtype, 0, &inv_buf),
605de777a60Sab 			    arsp->rel_isdesc->is_file->ifl_name,
606de777a60Sab 			    demangle(arsp->rel_sname),
607de777a60Sab 			    arsp->rel_isdesc->is_name,
608de777a60Sab 			    EC_OFF(arsp->rel_roffset));
609de777a60Sab 		}
6107c478bd9Sstevel@tonic-gate 		return (FIX_ERROR);
6115aefb655Srie 
6127c478bd9Sstevel@tonic-gate 	case R_386_TLS_IE:
6137c478bd9Sstevel@tonic-gate 		/*
6147c478bd9Sstevel@tonic-gate 		 * These transitions are a little different than the
6157c478bd9Sstevel@tonic-gate 		 * others, in that we could have multiple instructions
6167c478bd9Sstevel@tonic-gate 		 * pointed to by a single relocation.  Depending upon the
6177c478bd9Sstevel@tonic-gate 		 * instruction, we perform a different code transition.
6187c478bd9Sstevel@tonic-gate 		 *
6197c478bd9Sstevel@tonic-gate 		 * Here's the known transitions:
6207c478bd9Sstevel@tonic-gate 		 *  1) movl foo@indntpoff, %eax
6217c478bd9Sstevel@tonic-gate 		 *	0xa1, foo@indntpoff
6227c478bd9Sstevel@tonic-gate 		 *
6237c478bd9Sstevel@tonic-gate 		 *  2) movl foo@indntpoff, %eax
6247c478bd9Sstevel@tonic-gate 		 *	0x8b, 0x05 | (reg << 3), foo@gotntpoff
6257c478bd9Sstevel@tonic-gate 		 *
6267c478bd9Sstevel@tonic-gate 		 *  3) addl foo@indntpoff, %eax
6277c478bd9Sstevel@tonic-gate 		 *	0x03, 0x05 | (reg << 3), foo@gotntpoff
6287c478bd9Sstevel@tonic-gate 		 *
6297c478bd9Sstevel@tonic-gate 		 *  Transitions IE -> LE
6307c478bd9Sstevel@tonic-gate 		 *
6317c478bd9Sstevel@tonic-gate 		 *  1) movl $foo@ntpoff, %eax
6327c478bd9Sstevel@tonic-gate 		 *	0xb8, foo@ntpoff
6337c478bd9Sstevel@tonic-gate 		 *
6347c478bd9Sstevel@tonic-gate 		 *  2) movl $foo@ntpoff, %reg
6357c478bd9Sstevel@tonic-gate 		 *	0xc7, 0xc0 | reg, foo@ntpoff
6367c478bd9Sstevel@tonic-gate 		 *
6377c478bd9Sstevel@tonic-gate 		 *  3) addl $foo@ntpoff, %reg
6387c478bd9Sstevel@tonic-gate 		 *	0x81, 0xc0 | reg, foo@ntpoff
6397c478bd9Sstevel@tonic-gate 		 */
6407c478bd9Sstevel@tonic-gate 		arsp->rel_rtype = R_386_TLS_LE;
6417c478bd9Sstevel@tonic-gate 		offset--;
6427c478bd9Sstevel@tonic-gate 		if (offset[0] == 0xa1) {
6437c478bd9Sstevel@tonic-gate 			/* case 1 above */
6447c478bd9Sstevel@tonic-gate 			offset[0] = 0xb8;	/*  movl */
6457c478bd9Sstevel@tonic-gate 			return (FIX_RELOC);
6467c478bd9Sstevel@tonic-gate 		}
6477c478bd9Sstevel@tonic-gate 
6487c478bd9Sstevel@tonic-gate 		offset--;
6497c478bd9Sstevel@tonic-gate 		if (offset[0] == 0x8b) {
6507c478bd9Sstevel@tonic-gate 			/* case 2 above */
6517c478bd9Sstevel@tonic-gate 			r2 = (offset[1] & MODRM_MSK_RO) >> 3;
6527c478bd9Sstevel@tonic-gate 			offset[0] = 0xc7;	/* movl */
6537c478bd9Sstevel@tonic-gate 			offset[1] = 0xc0 | r2;
6547c478bd9Sstevel@tonic-gate 			return (FIX_RELOC);
6557c478bd9Sstevel@tonic-gate 		}
6567c478bd9Sstevel@tonic-gate 		if (offset[0] == 0x03) {
6577c478bd9Sstevel@tonic-gate 			/* case 3 above */
6587c478bd9Sstevel@tonic-gate 			r2 = (offset[1] & MODRM_MSK_RO) >> 3;
6597c478bd9Sstevel@tonic-gate 			offset[0] = 0x81;	/* addl */
6607c478bd9Sstevel@tonic-gate 			offset[1] = 0xc0 | r2;
6617c478bd9Sstevel@tonic-gate 			return (FIX_RELOC);
6627c478bd9Sstevel@tonic-gate 		}
6637c478bd9Sstevel@tonic-gate 		/*
6647c478bd9Sstevel@tonic-gate 		 * Unexpected instruction sequence - fatal error.
6657c478bd9Sstevel@tonic-gate 		 */
666de777a60Sab 		{
667de777a60Sab 			Conv_inv_buf_t	inv_buf;
668de777a60Sab 
669de777a60Sab 			eprintf(ofl->ofl_lml, ERR_FATAL,
670de777a60Sab 			    MSG_INTL(MSG_REL_BADTLSINS),
671de777a60Sab 			    conv_reloc_386_type(arsp->rel_rtype, 0, &inv_buf),
672de777a60Sab 			    arsp->rel_isdesc->is_file->ifl_name,
673de777a60Sab 			    demangle(arsp->rel_sname),
674de777a60Sab 			    arsp->rel_isdesc->is_name,
675de777a60Sab 			    EC_OFF(arsp->rel_roffset));
676de777a60Sab 		}
6777c478bd9Sstevel@tonic-gate 		return (FIX_ERROR);
6787c478bd9Sstevel@tonic-gate 	}
6797c478bd9Sstevel@tonic-gate 	return (FIX_RELOC);
6807c478bd9Sstevel@tonic-gate }
6817c478bd9Sstevel@tonic-gate 
682ba2be530Sab static uintptr_t
6835aefb655Srie ld_do_activerelocs(Ofl_desc *ofl)
6847c478bd9Sstevel@tonic-gate {
685141040e8Srie 	Rel_desc	*arsp;
686141040e8Srie 	Rel_cache	*rcp;
687141040e8Srie 	Listnode	*lnp;
6887c478bd9Sstevel@tonic-gate 	uintptr_t	return_code = 1;
689*1d9df23bSab 	ofl_flag_t	flags = ofl->ofl_flags;
6907c478bd9Sstevel@tonic-gate 
6917010c12aSrie 	if (ofl->ofl_actrels.head)
6927010c12aSrie 		DBG_CALL(Dbg_reloc_doact_title(ofl->ofl_lml));
6937010c12aSrie 
6947c478bd9Sstevel@tonic-gate 	/*
695141040e8Srie 	 * Process active relocations.
6967c478bd9Sstevel@tonic-gate 	 */
6977c478bd9Sstevel@tonic-gate 	for (LIST_TRAVERSE(&ofl->ofl_actrels, lnp, rcp)) {
6987c478bd9Sstevel@tonic-gate 		/* LINTED */
6997c478bd9Sstevel@tonic-gate 		for (arsp = (Rel_desc *)(rcp + 1);
7007c478bd9Sstevel@tonic-gate 		    arsp < rcp->rc_free; arsp++) {
701b3fbe5e6Sseizo 			uchar_t		*addr;
702141040e8Srie 			Xword 		value;
7037c478bd9Sstevel@tonic-gate 			Sym_desc	*sdp;
7047c478bd9Sstevel@tonic-gate 			const char	*ifl_name;
705141040e8Srie 			Xword		refaddr;
7067c478bd9Sstevel@tonic-gate 			int		moved = 0;
7077c478bd9Sstevel@tonic-gate 			Gotref		gref;
7087c478bd9Sstevel@tonic-gate 
7097c478bd9Sstevel@tonic-gate 			/*
7107c478bd9Sstevel@tonic-gate 			 * If the section this relocation is against has been
7117c478bd9Sstevel@tonic-gate 			 * discarded (-zignore), then discard (skip) the
7127c478bd9Sstevel@tonic-gate 			 * relocation itself.
7137c478bd9Sstevel@tonic-gate 			 */
7147c478bd9Sstevel@tonic-gate 			if ((arsp->rel_isdesc->is_flags & FLG_IS_DISCARD) &&
7157c478bd9Sstevel@tonic-gate 			    ((arsp->rel_flags &
7167c478bd9Sstevel@tonic-gate 			    (FLG_REL_GOT | FLG_REL_BSS |
7177c478bd9Sstevel@tonic-gate 			    FLG_REL_PLT | FLG_REL_NOINFO)) == 0)) {
7185aefb655Srie 				DBG_CALL(Dbg_reloc_discard(ofl->ofl_lml,
7195aefb655Srie 				    M_MACH, arsp));
7207c478bd9Sstevel@tonic-gate 				continue;
7217c478bd9Sstevel@tonic-gate 			}
7227c478bd9Sstevel@tonic-gate 
7237c478bd9Sstevel@tonic-gate 			/*
7247c478bd9Sstevel@tonic-gate 			 * We deteremine what the 'got reference'
7257c478bd9Sstevel@tonic-gate 			 * model (if required) is at this point.  This
7267c478bd9Sstevel@tonic-gate 			 * needs to be done before tls_fixup() since
7277c478bd9Sstevel@tonic-gate 			 * it may 'transition' our instructions.
7287c478bd9Sstevel@tonic-gate 			 *
7297c478bd9Sstevel@tonic-gate 			 * The got table entries have already been assigned,
7307c478bd9Sstevel@tonic-gate 			 * and we bind to those initial entries.
7317c478bd9Sstevel@tonic-gate 			 */
7327c478bd9Sstevel@tonic-gate 			if (arsp->rel_flags & FLG_REL_DTLS)
7337c478bd9Sstevel@tonic-gate 				gref = GOT_REF_TLSGD;
7347c478bd9Sstevel@tonic-gate 			else if (arsp->rel_flags & FLG_REL_MTLS)
7357c478bd9Sstevel@tonic-gate 				gref = GOT_REF_TLSLD;
7367c478bd9Sstevel@tonic-gate 			else if (arsp->rel_flags & FLG_REL_STLS)
7377c478bd9Sstevel@tonic-gate 				gref = GOT_REF_TLSIE;
7387c478bd9Sstevel@tonic-gate 			else
7397c478bd9Sstevel@tonic-gate 				gref = GOT_REF_GENERIC;
7407c478bd9Sstevel@tonic-gate 
7417c478bd9Sstevel@tonic-gate 			/*
7427c478bd9Sstevel@tonic-gate 			 * Perform any required TLS fixups.
7437c478bd9Sstevel@tonic-gate 			 */
7447c478bd9Sstevel@tonic-gate 			if (arsp->rel_flags & FLG_REL_TLSFIX) {
7457c478bd9Sstevel@tonic-gate 				Fixupret	ret;
7467c478bd9Sstevel@tonic-gate 
7475aefb655Srie 				if ((ret = tls_fixups(ofl, arsp)) == FIX_ERROR)
7487c478bd9Sstevel@tonic-gate 					return (S_ERROR);
7497c478bd9Sstevel@tonic-gate 				if (ret == FIX_DONE)
7507c478bd9Sstevel@tonic-gate 					continue;
7517c478bd9Sstevel@tonic-gate 			}
7527c478bd9Sstevel@tonic-gate 
7537c478bd9Sstevel@tonic-gate 			/*
7547c478bd9Sstevel@tonic-gate 			 * If this is a relocation against a move table, or
7557c478bd9Sstevel@tonic-gate 			 * expanded move table, adjust the relocation entries.
7567c478bd9Sstevel@tonic-gate 			 */
7577c478bd9Sstevel@tonic-gate 			if (arsp->rel_move)
7585aefb655Srie 				ld_adj_movereloc(ofl, arsp);
7597c478bd9Sstevel@tonic-gate 
7607c478bd9Sstevel@tonic-gate 			sdp = arsp->rel_sym;
7617c478bd9Sstevel@tonic-gate 			refaddr = arsp->rel_roffset +
7627c478bd9Sstevel@tonic-gate 			    (Off)_elf_getxoff(arsp->rel_isdesc->is_indata);
7637c478bd9Sstevel@tonic-gate 
7647c478bd9Sstevel@tonic-gate 			if (arsp->rel_flags & FLG_REL_CLVAL)
7657c478bd9Sstevel@tonic-gate 				value = 0;
7667c478bd9Sstevel@tonic-gate 			else if (ELF_ST_TYPE(sdp->sd_sym->st_info) ==
7677c478bd9Sstevel@tonic-gate 			    STT_SECTION) {
768141040e8Srie 				Sym_desc	*sym;
7697c478bd9Sstevel@tonic-gate 
7707c478bd9Sstevel@tonic-gate 				/*
7717c478bd9Sstevel@tonic-gate 				 * The value for a symbol pointing to a SECTION
7727c478bd9Sstevel@tonic-gate 				 * is based off of that sections position.
7737c478bd9Sstevel@tonic-gate 				 *
7745aefb655Srie 				 * The second argument of the ld_am_I_partial()
7755aefb655Srie 				 * is the value stored at the target address
7767c478bd9Sstevel@tonic-gate 				 * relocation is going to be applied.
7777c478bd9Sstevel@tonic-gate 				 */
7787c478bd9Sstevel@tonic-gate 				if ((sdp->sd_isc->is_flags & FLG_IS_RELUPD) &&
7797c478bd9Sstevel@tonic-gate 				    /* LINTED */
7805aefb655Srie 				    (sym = ld_am_I_partial(arsp, *(Xword *)
781b3fbe5e6Sseizo 				    ((uchar_t *)
782b3fbe5e6Sseizo 				    arsp->rel_isdesc->is_indata->d_buf +
7837c478bd9Sstevel@tonic-gate 				    arsp->rel_roffset)))) {
7847c478bd9Sstevel@tonic-gate 					/*
7857c478bd9Sstevel@tonic-gate 					 * If the symbol is moved,
7867c478bd9Sstevel@tonic-gate 					 * adjust the value
7877c478bd9Sstevel@tonic-gate 					 */
7887c478bd9Sstevel@tonic-gate 					value = sym->sd_sym->st_value;
7897c478bd9Sstevel@tonic-gate 					moved = 1;
7907c478bd9Sstevel@tonic-gate 				} else {
791141040e8Srie 					value = _elf_getxoff(
792141040e8Srie 					    sdp->sd_isc->is_indata);
7937c478bd9Sstevel@tonic-gate 					if (sdp->sd_isc->is_shdr->sh_flags &
7947c478bd9Sstevel@tonic-gate 					    SHF_ALLOC)
795141040e8Srie 						value += sdp->sd_isc->
796141040e8Srie 						    is_osdesc->os_shdr->sh_addr;
7977c478bd9Sstevel@tonic-gate 				}
7987c478bd9Sstevel@tonic-gate 				if (sdp->sd_isc->is_shdr->sh_flags & SHF_TLS)
7997c478bd9Sstevel@tonic-gate 					value -= ofl->ofl_tlsphdr->p_vaddr;
8002926dd2eSrie 
8012926dd2eSrie 			} else if (IS_SIZE(arsp->rel_rtype)) {
8022926dd2eSrie 				/*
8032926dd2eSrie 				 * Size relocations require the symbols size.
8042926dd2eSrie 				 */
8052926dd2eSrie 				value = sdp->sd_sym->st_size;
806141040e8Srie 			} else {
8077c478bd9Sstevel@tonic-gate 				/*
8087010c12aSrie 				 * Else the value is the symbols value.
8097c478bd9Sstevel@tonic-gate 				 */
8107c478bd9Sstevel@tonic-gate 				value = sdp->sd_sym->st_value;
811141040e8Srie 			}
8127c478bd9Sstevel@tonic-gate 
8137c478bd9Sstevel@tonic-gate 			/*
8147c478bd9Sstevel@tonic-gate 			 * Relocation against the GLOBAL_OFFSET_TABLE.
8157c478bd9Sstevel@tonic-gate 			 */
8167c478bd9Sstevel@tonic-gate 			if (arsp->rel_flags & FLG_REL_GOT)
8177c478bd9Sstevel@tonic-gate 				arsp->rel_osdesc = ofl->ofl_osgot;
8187c478bd9Sstevel@tonic-gate 
8197c478bd9Sstevel@tonic-gate 			/*
8207c478bd9Sstevel@tonic-gate 			 * If loadable and not producing a relocatable object
8217c478bd9Sstevel@tonic-gate 			 * add the sections virtual address to the reference
8227c478bd9Sstevel@tonic-gate 			 * address.
8237c478bd9Sstevel@tonic-gate 			 */
8247c478bd9Sstevel@tonic-gate 			if ((arsp->rel_flags & FLG_REL_LOAD) &&
825141040e8Srie 			    ((flags & FLG_OF_RELOBJ) == 0))
8267c478bd9Sstevel@tonic-gate 				refaddr += arsp->rel_isdesc->is_osdesc->
8277c478bd9Sstevel@tonic-gate 				    os_shdr->sh_addr;
8287c478bd9Sstevel@tonic-gate 
8297c478bd9Sstevel@tonic-gate 			/*
8307c478bd9Sstevel@tonic-gate 			 * If this entry has a PLT assigned to it, it's
8317c478bd9Sstevel@tonic-gate 			 * value is actually the address of the PLT (and
8327c478bd9Sstevel@tonic-gate 			 * not the address of the function).
8337c478bd9Sstevel@tonic-gate 			 */
8347c478bd9Sstevel@tonic-gate 			if (IS_PLT(arsp->rel_rtype)) {
8357c478bd9Sstevel@tonic-gate 				if (sdp->sd_aux && sdp->sd_aux->sa_PLTndx)
8365aefb655Srie 					value = ld_calc_plt_addr(sdp, ofl);
8377c478bd9Sstevel@tonic-gate 			}
8387c478bd9Sstevel@tonic-gate 
839141040e8Srie 			/*
840141040e8Srie 			 * Determine whether the value needs further adjustment.
841141040e8Srie 			 * Filter through the attributes of the relocation to
842141040e8Srie 			 * determine what adjustment is required.  Note, many
843141040e8Srie 			 * of the following cases are only applicable when a
844141040e8Srie 			 * .got is present.  As a .got is not generated when a
845141040e8Srie 			 * relocatable object is being built, any adjustments
846141040e8Srie 			 * that require a .got need to be skipped.
847141040e8Srie 			 */
848141040e8Srie 			if ((arsp->rel_flags & FLG_REL_GOT) &&
849141040e8Srie 			    ((flags & FLG_OF_RELOBJ) == 0)) {
8507c478bd9Sstevel@tonic-gate 				Xword		R1addr;
8517c478bd9Sstevel@tonic-gate 				uintptr_t	R2addr;
8527c478bd9Sstevel@tonic-gate 				Word		gotndx;
8537c478bd9Sstevel@tonic-gate 				Gotndx		*gnp;
8547c478bd9Sstevel@tonic-gate 
8557c478bd9Sstevel@tonic-gate 				/*
8567c478bd9Sstevel@tonic-gate 				 * Perform relocation against GOT table.  Since
8577c478bd9Sstevel@tonic-gate 				 * this doesn't fit exactly into a relocation
8587c478bd9Sstevel@tonic-gate 				 * we place the appropriate byte in the GOT
8597c478bd9Sstevel@tonic-gate 				 * directly
8607c478bd9Sstevel@tonic-gate 				 *
8617c478bd9Sstevel@tonic-gate 				 * Calculate offset into GOT at which to apply
8627c478bd9Sstevel@tonic-gate 				 * the relocation.
8637c478bd9Sstevel@tonic-gate 				 */
8645aefb655Srie 				gnp = ld_find_gotndx(&(sdp->sd_GOTndxs), gref,
8657c478bd9Sstevel@tonic-gate 				    ofl, 0);
8667c478bd9Sstevel@tonic-gate 				assert(gnp);
8677c478bd9Sstevel@tonic-gate 
8687c478bd9Sstevel@tonic-gate 				if (arsp->rel_rtype == R_386_TLS_DTPOFF32)
8697c478bd9Sstevel@tonic-gate 					gotndx = gnp->gn_gotndx + 1;
8707c478bd9Sstevel@tonic-gate 				else
8717c478bd9Sstevel@tonic-gate 					gotndx = gnp->gn_gotndx;
8727c478bd9Sstevel@tonic-gate 
8737c478bd9Sstevel@tonic-gate 				R1addr = (Xword)(gotndx * M_GOT_ENTSIZE);
8747c478bd9Sstevel@tonic-gate 
8757c478bd9Sstevel@tonic-gate 				/*
8767c478bd9Sstevel@tonic-gate 				 * Add the GOTs data's offset.
8777c478bd9Sstevel@tonic-gate 				 */
8787c478bd9Sstevel@tonic-gate 				R2addr = R1addr + (uintptr_t)
8797c478bd9Sstevel@tonic-gate 				    arsp->rel_osdesc->os_outdata->d_buf;
8807c478bd9Sstevel@tonic-gate 
8815aefb655Srie 				DBG_CALL(Dbg_reloc_doact(ofl->ofl_lml,
8825aefb655Srie 				    ELF_DBG_LD, M_MACH, SHT_REL,
8837c478bd9Sstevel@tonic-gate 				    arsp->rel_rtype, R1addr, value,
8847c478bd9Sstevel@tonic-gate 				    arsp->rel_sname, arsp->rel_osdesc));
8857c478bd9Sstevel@tonic-gate 
8867c478bd9Sstevel@tonic-gate 				/*
8877c478bd9Sstevel@tonic-gate 				 * And do it.
8887c478bd9Sstevel@tonic-gate 				 */
889f3324781Sab 				if (ofl->ofl_flags1 & FLG_OF1_ENCDIFF)
890f3324781Sab 					*(Xword *)R2addr =
891ba2be530Sab 					    ld_bswap_Xword(value);
892f3324781Sab 				else
893f3324781Sab 					*(Xword *)R2addr = value;
8947c478bd9Sstevel@tonic-gate 				continue;
8957c478bd9Sstevel@tonic-gate 
896141040e8Srie 			} else if (IS_GOT_BASED(arsp->rel_rtype) &&
897141040e8Srie 			    ((flags & FLG_OF_RELOBJ) == 0)) {
8987c478bd9Sstevel@tonic-gate 				value -= ofl->ofl_osgot->os_shdr->sh_addr;
899141040e8Srie 
900141040e8Srie 			} else if (IS_GOT_PC(arsp->rel_rtype) &&
901141040e8Srie 			    ((flags & FLG_OF_RELOBJ) == 0)) {
902141040e8Srie 				value =
903141040e8Srie 				    (Xword)(ofl->ofl_osgot->os_shdr->sh_addr) -
904141040e8Srie 				    refaddr;
905141040e8Srie 
9067c478bd9Sstevel@tonic-gate 			} else if ((IS_PC_RELATIVE(arsp->rel_rtype)) &&
907141040e8Srie 			    (((flags & FLG_OF_RELOBJ) == 0) ||
9087c478bd9Sstevel@tonic-gate 			    (arsp->rel_osdesc == sdp->sd_isc->is_osdesc))) {
9097c478bd9Sstevel@tonic-gate 				value -= refaddr;
910141040e8Srie 
9117c478bd9Sstevel@tonic-gate 			} else if (IS_TLS_INS(arsp->rel_rtype) &&
912141040e8Srie 			    IS_GOT_RELATIVE(arsp->rel_rtype) &&
913141040e8Srie 			    ((flags & FLG_OF_RELOBJ) == 0)) {
9147c478bd9Sstevel@tonic-gate 				Gotndx	*gnp;
9157c478bd9Sstevel@tonic-gate 
9165aefb655Srie 				gnp = ld_find_gotndx(&(sdp->sd_GOTndxs), gref,
9177c478bd9Sstevel@tonic-gate 				    ofl, 0);
9187c478bd9Sstevel@tonic-gate 				assert(gnp);
919141040e8Srie 				value = (Xword)gnp->gn_gotndx * M_GOT_ENTSIZE;
9207c478bd9Sstevel@tonic-gate 				if (arsp->rel_rtype == R_386_TLS_IE) {
921141040e8Srie 					value +=
922141040e8Srie 					    ofl->ofl_osgot->os_shdr->sh_addr;
9237c478bd9Sstevel@tonic-gate 				}
924141040e8Srie 
925141040e8Srie 			} else if (IS_GOT_RELATIVE(arsp->rel_rtype) &&
926141040e8Srie 			    ((flags & FLG_OF_RELOBJ) == 0)) {
927141040e8Srie 				Gotndx *gnp;
9287c478bd9Sstevel@tonic-gate 
9295aefb655Srie 				gnp = ld_find_gotndx(&(sdp->sd_GOTndxs),
9307c478bd9Sstevel@tonic-gate 				    GOT_REF_GENERIC, ofl, 0);
9317c478bd9Sstevel@tonic-gate 				assert(gnp);
932141040e8Srie 				value = (Xword)gnp->gn_gotndx * M_GOT_ENTSIZE;
933141040e8Srie 
934141040e8Srie 			} else if ((arsp->rel_flags & FLG_REL_STLS) &&
935141040e8Srie 			    ((flags & FLG_OF_RELOBJ) == 0)) {
9367c478bd9Sstevel@tonic-gate 				Xword	tlsstatsize;
937141040e8Srie 
9387c478bd9Sstevel@tonic-gate 				/*
9397c478bd9Sstevel@tonic-gate 				 * This is the LE TLS reference model.  Static
9407c478bd9Sstevel@tonic-gate 				 * offset is hard-coded.
9417c478bd9Sstevel@tonic-gate 				 */
942141040e8Srie 				tlsstatsize =
943141040e8Srie 				    S_ROUND(ofl->ofl_tlsphdr->p_memsz,
9447c478bd9Sstevel@tonic-gate 				    M_TLSSTATALIGN);
9457c478bd9Sstevel@tonic-gate 				value = tlsstatsize - value;
946141040e8Srie 
9477c478bd9Sstevel@tonic-gate 				/*
948141040e8Srie 				 * Since this code is fixed up, it assumes a
949141040e8Srie 				 * negative offset that can be added to the
950141040e8Srie 				 * thread pointer.
9517c478bd9Sstevel@tonic-gate 				 */
9527c478bd9Sstevel@tonic-gate 				if ((arsp->rel_rtype == R_386_TLS_LDO_32) ||
9537c478bd9Sstevel@tonic-gate 				    (arsp->rel_rtype == R_386_TLS_LE))
9547c478bd9Sstevel@tonic-gate 					value = -value;
9557c478bd9Sstevel@tonic-gate 			}
9567c478bd9Sstevel@tonic-gate 
9577c478bd9Sstevel@tonic-gate 			if (arsp->rel_isdesc->is_file)
9587c478bd9Sstevel@tonic-gate 				ifl_name = arsp->rel_isdesc->is_file->ifl_name;
9597c478bd9Sstevel@tonic-gate 			else
9607c478bd9Sstevel@tonic-gate 				ifl_name = MSG_INTL(MSG_STR_NULL);
9617c478bd9Sstevel@tonic-gate 
9627c478bd9Sstevel@tonic-gate 			/*
9637c478bd9Sstevel@tonic-gate 			 * Make sure we have data to relocate.  Compiler and
9647c478bd9Sstevel@tonic-gate 			 * assembler developers have been known to generate
9657c478bd9Sstevel@tonic-gate 			 * relocations against invalid sections (normally .bss),
9667c478bd9Sstevel@tonic-gate 			 * so for their benefit give them sufficient information
9677c478bd9Sstevel@tonic-gate 			 * to help analyze the problem.  End users should never
9687c478bd9Sstevel@tonic-gate 			 * see this.
9697c478bd9Sstevel@tonic-gate 			 */
9707c478bd9Sstevel@tonic-gate 			if (arsp->rel_isdesc->is_indata->d_buf == 0) {
971de777a60Sab 				Conv_inv_buf_t	inv_buf;
972de777a60Sab 
9735aefb655Srie 				eprintf(ofl->ofl_lml, ERR_FATAL,
9745aefb655Srie 				    MSG_INTL(MSG_REL_EMPTYSEC),
975de777a60Sab 				    conv_reloc_386_type(arsp->rel_rtype,
976de777a60Sab 				    0, &inv_buf),
9777c478bd9Sstevel@tonic-gate 				    ifl_name, demangle(arsp->rel_sname),
9787c478bd9Sstevel@tonic-gate 				    arsp->rel_isdesc->is_name);
9797c478bd9Sstevel@tonic-gate 				return (S_ERROR);
9807c478bd9Sstevel@tonic-gate 			}
9817c478bd9Sstevel@tonic-gate 
9827c478bd9Sstevel@tonic-gate 			/*
9837c478bd9Sstevel@tonic-gate 			 * Get the address of the data item we need to modify.
9847c478bd9Sstevel@tonic-gate 			 */
985b3fbe5e6Sseizo 			addr = (uchar_t *)((uintptr_t)arsp->rel_roffset +
986b3fbe5e6Sseizo 			    (uintptr_t)_elf_getxoff(arsp->rel_isdesc->
987b3fbe5e6Sseizo 			    is_indata));
9887c478bd9Sstevel@tonic-gate 
9895aefb655Srie 			DBG_CALL(Dbg_reloc_doact(ofl->ofl_lml, ELF_DBG_LD,
9905aefb655Srie 			    M_MACH, SHT_REL, arsp->rel_rtype, EC_NATPTR(addr),
9915aefb655Srie 			    value, arsp->rel_sname, arsp->rel_osdesc));
9927c478bd9Sstevel@tonic-gate 			addr += (uintptr_t)arsp->rel_osdesc->os_outdata->d_buf;
9937c478bd9Sstevel@tonic-gate 
9945aefb655Srie 			if ((((uintptr_t)addr - (uintptr_t)ofl->ofl_nehdr) >
995b3fbe5e6Sseizo 			    ofl->ofl_size) || (arsp->rel_roffset >
9967c478bd9Sstevel@tonic-gate 			    arsp->rel_osdesc->os_shdr->sh_size)) {
997de777a60Sab 				Conv_inv_buf_t	inv_buf;
998de777a60Sab 				int		class;
9997c478bd9Sstevel@tonic-gate 
10007c478bd9Sstevel@tonic-gate 				if (((uintptr_t)addr -
10015aefb655Srie 				    (uintptr_t)ofl->ofl_nehdr) > ofl->ofl_size)
10027c478bd9Sstevel@tonic-gate 					class = ERR_FATAL;
10037c478bd9Sstevel@tonic-gate 				else
10047c478bd9Sstevel@tonic-gate 					class = ERR_WARNING;
10057c478bd9Sstevel@tonic-gate 
10065aefb655Srie 				eprintf(ofl->ofl_lml, class,
10075aefb655Srie 				    MSG_INTL(MSG_REL_INVALOFFSET),
1008de777a60Sab 				    conv_reloc_386_type(arsp->rel_rtype,
1009de777a60Sab 				    0, &inv_buf),
10107c478bd9Sstevel@tonic-gate 				    ifl_name, arsp->rel_isdesc->is_name,
10117c478bd9Sstevel@tonic-gate 				    demangle(arsp->rel_sname),
10127c478bd9Sstevel@tonic-gate 				    EC_ADDR((uintptr_t)addr -
10135aefb655Srie 				    (uintptr_t)ofl->ofl_nehdr));
10147c478bd9Sstevel@tonic-gate 
10157c478bd9Sstevel@tonic-gate 				if (class == ERR_FATAL) {
10167c478bd9Sstevel@tonic-gate 					return_code = S_ERROR;
10177c478bd9Sstevel@tonic-gate 					continue;
10187c478bd9Sstevel@tonic-gate 				}
10197c478bd9Sstevel@tonic-gate 			}
10207c478bd9Sstevel@tonic-gate 
10217c478bd9Sstevel@tonic-gate 			/*
10227c478bd9Sstevel@tonic-gate 			 * The relocation is additive.  Ignore the previous
10237c478bd9Sstevel@tonic-gate 			 * symbol value if this local partial symbol is
10247c478bd9Sstevel@tonic-gate 			 * expanded.
10257c478bd9Sstevel@tonic-gate 			 */
10267c478bd9Sstevel@tonic-gate 			if (moved)
10277c478bd9Sstevel@tonic-gate 				value -= *addr;
10287c478bd9Sstevel@tonic-gate 
1029cce0e03bSab 			/*
1030cce0e03bSab 			 * If we have a replacement value for the relocation
1031cce0e03bSab 			 * target, put it in place now.
1032cce0e03bSab 			 */
1033cce0e03bSab 			if (arsp->rel_flags & FLG_REL_NADDEND) {
1034cce0e03bSab 				Xword addend = arsp->rel_raddend;
1035cce0e03bSab 
1036cce0e03bSab 				if (ld_reloc_targval_set(ofl, arsp,
1037cce0e03bSab 				    addr, addend) == 0)
1038cce0e03bSab 					return (S_ERROR);
1039cce0e03bSab 			}
1040cce0e03bSab 
10417c478bd9Sstevel@tonic-gate 			/*
1042f3324781Sab 			 * If '-z noreloc' is specified - skip the do_reloc_ld
10437c478bd9Sstevel@tonic-gate 			 * stage.
10447c478bd9Sstevel@tonic-gate 			 */
1045f3324781Sab 			if (OFL_DO_RELOC(ofl)) {
1046f3324781Sab 				if (do_reloc_ld((uchar_t)arsp->rel_rtype, addr,
10475aefb655Srie 				    &value, arsp->rel_sname, ifl_name,
1048f3324781Sab 				    OFL_SWAP_RELOC_DATA(ofl, arsp),
10495aefb655Srie 				    ofl->ofl_lml) == 0)
10507c478bd9Sstevel@tonic-gate 					return_code = S_ERROR;
10517c478bd9Sstevel@tonic-gate 			}
10527c478bd9Sstevel@tonic-gate 		}
10537c478bd9Sstevel@tonic-gate 	}
10547c478bd9Sstevel@tonic-gate 	return (return_code);
10557c478bd9Sstevel@tonic-gate }
10567c478bd9Sstevel@tonic-gate 
1057141040e8Srie /*
1058141040e8Srie  * Add an output relocation record.
1059141040e8Srie  */
1060ba2be530Sab static uintptr_t
10615aefb655Srie ld_add_outrel(Word flags, Rel_desc *rsp, Ofl_desc *ofl)
10627c478bd9Sstevel@tonic-gate {
1063141040e8Srie 	Rel_desc	*orsp;
1064141040e8Srie 	Rel_cache	*rcp;
1065141040e8Srie 	Sym_desc	*sdp = rsp->rel_sym;
10667c478bd9Sstevel@tonic-gate 
10677c478bd9Sstevel@tonic-gate 	/*
10687c478bd9Sstevel@tonic-gate 	 * Static executables *do not* want any relocations against them.
10697c478bd9Sstevel@tonic-gate 	 * Since our engine still creates relocations against a WEAK UNDEFINED
10707c478bd9Sstevel@tonic-gate 	 * symbol in a static executable, it's best to disable them here
10717c478bd9Sstevel@tonic-gate 	 * instead of through out the relocation code.
10727c478bd9Sstevel@tonic-gate 	 */
10737c478bd9Sstevel@tonic-gate 	if ((ofl->ofl_flags & (FLG_OF_STATIC | FLG_OF_EXEC)) ==
10747c478bd9Sstevel@tonic-gate 	    (FLG_OF_STATIC | FLG_OF_EXEC))
10757c478bd9Sstevel@tonic-gate 		return (1);
10767c478bd9Sstevel@tonic-gate 
10777c478bd9Sstevel@tonic-gate 	/*
10787c478bd9Sstevel@tonic-gate 	 * If no relocation cache structures are available allocate
10797c478bd9Sstevel@tonic-gate 	 * a new one and link it into the cache list.
10807c478bd9Sstevel@tonic-gate 	 */
10817c478bd9Sstevel@tonic-gate 	if ((ofl->ofl_outrels.tail == 0) ||
10827c478bd9Sstevel@tonic-gate 	    ((rcp = (Rel_cache *)ofl->ofl_outrels.tail->data) == 0) ||
10837c478bd9Sstevel@tonic-gate 	    ((orsp = rcp->rc_free) == rcp->rc_end)) {
10847c478bd9Sstevel@tonic-gate 		static size_t	nextsize = 0;
10857c478bd9Sstevel@tonic-gate 		size_t		size;
10867c478bd9Sstevel@tonic-gate 
10877c478bd9Sstevel@tonic-gate 		/*
10887c478bd9Sstevel@tonic-gate 		 * Output relocation numbers can vary considerably between
10897c478bd9Sstevel@tonic-gate 		 * building executables or shared objects (pic vs. non-pic),
10907c478bd9Sstevel@tonic-gate 		 * etc.  But, they typically aren't very large, so for these
10917c478bd9Sstevel@tonic-gate 		 * objects use a standard bucket size.  For building relocatable
10927c478bd9Sstevel@tonic-gate 		 * objects, typically there will be an output relocation for
10937c478bd9Sstevel@tonic-gate 		 * every input relocation.
10947c478bd9Sstevel@tonic-gate 		 */
10957c478bd9Sstevel@tonic-gate 		if (nextsize == 0) {
10967c478bd9Sstevel@tonic-gate 			if (ofl->ofl_flags & FLG_OF_RELOBJ) {
10977c478bd9Sstevel@tonic-gate 				if ((size = ofl->ofl_relocincnt) == 0)
10987c478bd9Sstevel@tonic-gate 					size = REL_LOIDESCNO;
10997c478bd9Sstevel@tonic-gate 				if (size > REL_HOIDESCNO)
11007c478bd9Sstevel@tonic-gate 					nextsize = REL_HOIDESCNO;
11017c478bd9Sstevel@tonic-gate 				else
11027c478bd9Sstevel@tonic-gate 					nextsize = REL_LOIDESCNO;
11037c478bd9Sstevel@tonic-gate 			} else
11047c478bd9Sstevel@tonic-gate 				nextsize = size = REL_HOIDESCNO;
11057c478bd9Sstevel@tonic-gate 		} else
11067c478bd9Sstevel@tonic-gate 			size = nextsize;
11077c478bd9Sstevel@tonic-gate 
11087c478bd9Sstevel@tonic-gate 		size = size * sizeof (Rel_desc);
11097c478bd9Sstevel@tonic-gate 
11107c478bd9Sstevel@tonic-gate 		if (((rcp = libld_malloc(sizeof (Rel_cache) + size)) == 0) ||
11117c478bd9Sstevel@tonic-gate 		    (list_appendc(&ofl->ofl_outrels, rcp) == 0))
11127c478bd9Sstevel@tonic-gate 			return (S_ERROR);
11137c478bd9Sstevel@tonic-gate 
11147c478bd9Sstevel@tonic-gate 		/* LINTED */
11157c478bd9Sstevel@tonic-gate 		rcp->rc_free = orsp = (Rel_desc *)(rcp + 1);
11167c478bd9Sstevel@tonic-gate 		/* LINTED */
11177c478bd9Sstevel@tonic-gate 		rcp->rc_end = (Rel_desc *)((char *)rcp->rc_free + size);
11187c478bd9Sstevel@tonic-gate 	}
11197c478bd9Sstevel@tonic-gate 
11207c478bd9Sstevel@tonic-gate 	/*
11217c478bd9Sstevel@tonic-gate 	 * If we are adding a output relocation against a section
11227c478bd9Sstevel@tonic-gate 	 * symbol (non-RELATIVE) then mark that section.  These sections
11237c478bd9Sstevel@tonic-gate 	 * will be added to the .dynsym symbol table.
11247c478bd9Sstevel@tonic-gate 	 */
11257c478bd9Sstevel@tonic-gate 	if (sdp && (rsp->rel_rtype != M_R_RELATIVE) &&
11267c478bd9Sstevel@tonic-gate 	    ((flags & FLG_REL_SCNNDX) ||
11277c478bd9Sstevel@tonic-gate 	    (ELF_ST_TYPE(sdp->sd_sym->st_info) == STT_SECTION))) {
11287c478bd9Sstevel@tonic-gate 
11297c478bd9Sstevel@tonic-gate 		/*
11307c478bd9Sstevel@tonic-gate 		 * If this is a COMMON symbol - no output section
11317c478bd9Sstevel@tonic-gate 		 * exists yet - (it's created as part of sym_validate()).
11327c478bd9Sstevel@tonic-gate 		 * So - we mark here that when it's created it should
11337c478bd9Sstevel@tonic-gate 		 * be tagged with the FLG_OS_OUTREL flag.
11347c478bd9Sstevel@tonic-gate 		 */
11357c478bd9Sstevel@tonic-gate 		if ((sdp->sd_flags & FLG_SY_SPECSEC) &&
11360bc07c75Srie 		    (sdp->sd_sym->st_shndx == SHN_COMMON)) {
11377c478bd9Sstevel@tonic-gate 			if (ELF_ST_TYPE(sdp->sd_sym->st_info) != STT_TLS)
11387c478bd9Sstevel@tonic-gate 				ofl->ofl_flags1 |= FLG_OF1_BSSOREL;
11397c478bd9Sstevel@tonic-gate 			else
11407c478bd9Sstevel@tonic-gate 				ofl->ofl_flags1 |= FLG_OF1_TLSOREL;
1141141040e8Srie 		} else {
1142141040e8Srie 			Os_desc	*osp = sdp->sd_isc->is_osdesc;
11437c478bd9Sstevel@tonic-gate 
1144c1c6f601Srie 			if (osp && ((osp->os_flags & FLG_OS_OUTREL) == 0)) {
11457c478bd9Sstevel@tonic-gate 				ofl->ofl_dynshdrcnt++;
11467c478bd9Sstevel@tonic-gate 				osp->os_flags |= FLG_OS_OUTREL;
11477c478bd9Sstevel@tonic-gate 			}
11487c478bd9Sstevel@tonic-gate 		}
11497c478bd9Sstevel@tonic-gate 	}
11507c478bd9Sstevel@tonic-gate 
11517c478bd9Sstevel@tonic-gate 	*orsp = *rsp;
11527c478bd9Sstevel@tonic-gate 	orsp->rel_flags |= flags;
11537c478bd9Sstevel@tonic-gate 
11547c478bd9Sstevel@tonic-gate 	rcp->rc_free++;
11557c478bd9Sstevel@tonic-gate 	ofl->ofl_outrelscnt++;
11567c478bd9Sstevel@tonic-gate 
11577c478bd9Sstevel@tonic-gate 	if (flags & FLG_REL_GOT)
11587c478bd9Sstevel@tonic-gate 		ofl->ofl_relocgotsz += (Xword)sizeof (Rel);
11597c478bd9Sstevel@tonic-gate 	else if (flags & FLG_REL_PLT)
11607c478bd9Sstevel@tonic-gate 		ofl->ofl_relocpltsz += (Xword)sizeof (Rel);
11617c478bd9Sstevel@tonic-gate 	else if (flags & FLG_REL_BSS)
11627c478bd9Sstevel@tonic-gate 		ofl->ofl_relocbsssz += (Xword)sizeof (Rel);
11637c478bd9Sstevel@tonic-gate 	else if (flags & FLG_REL_NOINFO)
11647c478bd9Sstevel@tonic-gate 		ofl->ofl_relocrelsz += (Xword)sizeof (Rel);
11657c478bd9Sstevel@tonic-gate 	else
11667c478bd9Sstevel@tonic-gate 		orsp->rel_osdesc->os_szoutrels += (Xword)sizeof (Rel);
11677c478bd9Sstevel@tonic-gate 
11687c478bd9Sstevel@tonic-gate 	if (orsp->rel_rtype == M_R_RELATIVE)
11697c478bd9Sstevel@tonic-gate 		ofl->ofl_relocrelcnt++;
11707c478bd9Sstevel@tonic-gate 
11717c478bd9Sstevel@tonic-gate 	/*
11727c478bd9Sstevel@tonic-gate 	 * We don't perform sorting on PLT relocations because
11737c478bd9Sstevel@tonic-gate 	 * they have already been assigned a PLT index and if we
11747c478bd9Sstevel@tonic-gate 	 * were to sort them we would have to re-assign the plt indexes.
11757c478bd9Sstevel@tonic-gate 	 */
11767c478bd9Sstevel@tonic-gate 	if (!(flags & FLG_REL_PLT))
11777c478bd9Sstevel@tonic-gate 		ofl->ofl_reloccnt++;
11787c478bd9Sstevel@tonic-gate 
11797c478bd9Sstevel@tonic-gate 	/*
1180141040e8Srie 	 * Insure a GLOBAL_OFFSET_TABLE is generated if required.
11817c478bd9Sstevel@tonic-gate 	 */
1182141040e8Srie 	if (IS_GOT_REQUIRED(orsp->rel_rtype))
11837c478bd9Sstevel@tonic-gate 		ofl->ofl_flags |= FLG_OF_BLDGOT;
11847c478bd9Sstevel@tonic-gate 
11857c478bd9Sstevel@tonic-gate 	/*
11867c478bd9Sstevel@tonic-gate 	 * Identify and possibly warn of a displacement relocation.
11877c478bd9Sstevel@tonic-gate 	 */
11887c478bd9Sstevel@tonic-gate 	if (orsp->rel_flags & FLG_REL_DISP) {
11897c478bd9Sstevel@tonic-gate 		ofl->ofl_dtflags_1 |= DF_1_DISPRELPND;
11907c478bd9Sstevel@tonic-gate 
11917c478bd9Sstevel@tonic-gate 		if (ofl->ofl_flags & FLG_OF_VERBOSE)
11925aefb655Srie 			ld_disp_errmsg(MSG_INTL(MSG_REL_DISPREL4), orsp, ofl);
11937c478bd9Sstevel@tonic-gate 	}
11945aefb655Srie 	DBG_CALL(Dbg_reloc_ors_entry(ofl->ofl_lml, ELF_DBG_LD, SHT_REL,
11955aefb655Srie 	    M_MACH, orsp));
11967c478bd9Sstevel@tonic-gate 	return (1);
11977c478bd9Sstevel@tonic-gate }
11987c478bd9Sstevel@tonic-gate 
11997c478bd9Sstevel@tonic-gate /*
12007c478bd9Sstevel@tonic-gate  * process relocation for a LOCAL symbol
12017c478bd9Sstevel@tonic-gate  */
1202ba2be530Sab static uintptr_t
12035aefb655Srie ld_reloc_local(Rel_desc * rsp, Ofl_desc * ofl)
12047c478bd9Sstevel@tonic-gate {
1205*1d9df23bSab 	ofl_flag_t	flags = ofl->ofl_flags;
12067c478bd9Sstevel@tonic-gate 	Sym_desc	*sdp = rsp->rel_sym;
12070bc07c75Srie 	Word		shndx = sdp->sd_sym->st_shndx;
12087c478bd9Sstevel@tonic-gate 
12097c478bd9Sstevel@tonic-gate 	/*
12107c478bd9Sstevel@tonic-gate 	 * if ((shared object) and (not pc relative relocation) and
12117c478bd9Sstevel@tonic-gate 	 *    (not against ABS symbol))
12127c478bd9Sstevel@tonic-gate 	 * then
12137c478bd9Sstevel@tonic-gate 	 *	build R_386_RELATIVE
12147c478bd9Sstevel@tonic-gate 	 * fi
12157c478bd9Sstevel@tonic-gate 	 */
12167c478bd9Sstevel@tonic-gate 	if ((flags & FLG_OF_SHAROBJ) && (rsp->rel_flags & FLG_REL_LOAD) &&
12172926dd2eSrie 	    !(IS_PC_RELATIVE(rsp->rel_rtype)) && !(IS_SIZE(rsp->rel_rtype)) &&
12187c478bd9Sstevel@tonic-gate 	    !(IS_GOT_BASED(rsp->rel_rtype)) &&
12197c478bd9Sstevel@tonic-gate 	    !(rsp->rel_isdesc != NULL &&
12207c478bd9Sstevel@tonic-gate 	    (rsp->rel_isdesc->is_shdr->sh_type == SHT_SUNW_dof)) &&
12217c478bd9Sstevel@tonic-gate 	    (((sdp->sd_flags & FLG_SY_SPECSEC) == 0) ||
12227c478bd9Sstevel@tonic-gate 	    (shndx != SHN_ABS) || (sdp->sd_aux && sdp->sd_aux->sa_symspec))) {
12237c478bd9Sstevel@tonic-gate 		Word	ortype = rsp->rel_rtype;
12247c478bd9Sstevel@tonic-gate 
12257c478bd9Sstevel@tonic-gate 		rsp->rel_rtype = R_386_RELATIVE;
12265aefb655Srie 		if (ld_add_outrel(NULL, rsp, ofl) == S_ERROR)
12277c478bd9Sstevel@tonic-gate 			return (S_ERROR);
12287c478bd9Sstevel@tonic-gate 		rsp->rel_rtype = ortype;
12297c478bd9Sstevel@tonic-gate 	}
12307c478bd9Sstevel@tonic-gate 
12317c478bd9Sstevel@tonic-gate 	/*
12327c478bd9Sstevel@tonic-gate 	 * If the relocation is against a 'non-allocatable' section
12337c478bd9Sstevel@tonic-gate 	 * and we can not resolve it now - then give a warning
12347c478bd9Sstevel@tonic-gate 	 * message.
12357c478bd9Sstevel@tonic-gate 	 *
12367c478bd9Sstevel@tonic-gate 	 * We can not resolve the symbol if either:
12377c478bd9Sstevel@tonic-gate 	 *	a) it's undefined
12387c478bd9Sstevel@tonic-gate 	 *	b) it's defined in a shared library and a
12397c478bd9Sstevel@tonic-gate 	 *	   COPY relocation hasn't moved it to the executable
12407c478bd9Sstevel@tonic-gate 	 *
12417c478bd9Sstevel@tonic-gate 	 * Note: because we process all of the relocations against the
12427c478bd9Sstevel@tonic-gate 	 *	text segment before any others - we know whether
12437c478bd9Sstevel@tonic-gate 	 *	or not a copy relocation will be generated before
12447c478bd9Sstevel@tonic-gate 	 *	we get here (see reloc_init()->reloc_segments()).
12457c478bd9Sstevel@tonic-gate 	 */
12467c478bd9Sstevel@tonic-gate 	if (!(rsp->rel_flags & FLG_REL_LOAD) &&
12477c478bd9Sstevel@tonic-gate 	    ((shndx == SHN_UNDEF) ||
12487c478bd9Sstevel@tonic-gate 	    ((sdp->sd_ref == REF_DYN_NEED) &&
12497c478bd9Sstevel@tonic-gate 	    ((sdp->sd_flags & FLG_SY_MVTOCOMM) == 0)))) {
1250de777a60Sab 		Conv_inv_buf_t inv_buf;
1251de777a60Sab 
12527c478bd9Sstevel@tonic-gate 		/*
12537c478bd9Sstevel@tonic-gate 		 * If the relocation is against a SHT_SUNW_ANNOTATE
12547c478bd9Sstevel@tonic-gate 		 * section - then silently ignore that the relocation
12557c478bd9Sstevel@tonic-gate 		 * can not be resolved.
12567c478bd9Sstevel@tonic-gate 		 */
12577c478bd9Sstevel@tonic-gate 		if (rsp->rel_osdesc &&
12587c478bd9Sstevel@tonic-gate 		    (rsp->rel_osdesc->os_shdr->sh_type == SHT_SUNW_ANNOTATE))
12597c478bd9Sstevel@tonic-gate 			return (0);
12605aefb655Srie 		eprintf(ofl->ofl_lml, ERR_WARNING, MSG_INTL(MSG_REL_EXTERNSYM),
1261de777a60Sab 		    conv_reloc_386_type(rsp->rel_rtype, 0, &inv_buf),
12627c478bd9Sstevel@tonic-gate 		    rsp->rel_isdesc->is_file->ifl_name,
12637c478bd9Sstevel@tonic-gate 		    demangle(rsp->rel_sname), rsp->rel_osdesc->os_name);
12647c478bd9Sstevel@tonic-gate 		return (1);
12657c478bd9Sstevel@tonic-gate 	}
12667c478bd9Sstevel@tonic-gate 
12677c478bd9Sstevel@tonic-gate 	/*
12687c478bd9Sstevel@tonic-gate 	 * Perform relocation.
12697c478bd9Sstevel@tonic-gate 	 */
12705aefb655Srie 	return (ld_add_actrel(NULL, rsp, ofl));
12717c478bd9Sstevel@tonic-gate }
12727c478bd9Sstevel@tonic-gate 
1273ba2be530Sab static uintptr_t
12745aefb655Srie ld_reloc_TLS(Boolean local, Rel_desc * rsp, Ofl_desc * ofl)
12757c478bd9Sstevel@tonic-gate {
12767c478bd9Sstevel@tonic-gate 	Word		rtype = rsp->rel_rtype;
12777c478bd9Sstevel@tonic-gate 	Sym_desc	*sdp = rsp->rel_sym;
1278*1d9df23bSab 	ofl_flag_t	flags = ofl->ofl_flags;
12797c478bd9Sstevel@tonic-gate 	Gotndx		*gnp;
12807c478bd9Sstevel@tonic-gate 
12817c478bd9Sstevel@tonic-gate 	/*
1282d326b23bSrie 	 * If we're building an executable - use either the IE or LE access
1283d326b23bSrie 	 * model.  If we're building a shared object process any IE model.
12847c478bd9Sstevel@tonic-gate 	 */
1285d326b23bSrie 	if ((flags & FLG_OF_EXEC) || (IS_TLS_IE(rtype))) {
12867c478bd9Sstevel@tonic-gate 		/*
1287d326b23bSrie 		 * Set the DF_STATIC_TLS flag.
12887c478bd9Sstevel@tonic-gate 		 */
12897c478bd9Sstevel@tonic-gate 		ofl->ofl_dtflags |= DF_STATIC_TLS;
12907c478bd9Sstevel@tonic-gate 
1291d326b23bSrie 		if (!local || ((flags & FLG_OF_EXEC) == 0)) {
12927c478bd9Sstevel@tonic-gate 			/*
1293d326b23bSrie 			 * Assign a GOT entry for static TLS references.
12947c478bd9Sstevel@tonic-gate 			 */
1295d326b23bSrie 			if ((gnp = ld_find_gotndx(&(sdp->sd_GOTndxs),
1296d326b23bSrie 			    GOT_REF_TLSIE, ofl, 0)) == 0) {
12977c478bd9Sstevel@tonic-gate 
1298d326b23bSrie 				if (ld_assign_got_TLS(local, rsp, ofl, sdp,
1299d326b23bSrie 				    gnp, GOT_REF_TLSIE, FLG_REL_STLS,
1300d326b23bSrie 				    rtype, R_386_TLS_TPOFF, 0) == S_ERROR)
1301d326b23bSrie 					return (S_ERROR);
1302d326b23bSrie 			}
13037c478bd9Sstevel@tonic-gate 
13047c478bd9Sstevel@tonic-gate 			/*
1305d326b23bSrie 			 * IE access model.
13067c478bd9Sstevel@tonic-gate 			 */
1307d326b23bSrie 			if (IS_TLS_IE(rtype)) {
1308d326b23bSrie 				if (ld_add_actrel(FLG_REL_STLS,
13097c478bd9Sstevel@tonic-gate 				    rsp, ofl) == S_ERROR)
13107c478bd9Sstevel@tonic-gate 					return (S_ERROR);
1311d326b23bSrie 
1312d326b23bSrie 				/*
1313d326b23bSrie 				 * A non-pic shared object needs to adjust the
1314d326b23bSrie 				 * active relocation (indntpoff).
1315d326b23bSrie 				 */
1316d326b23bSrie 				if (((flags & FLG_OF_EXEC) == 0) &&
1317d326b23bSrie 				    (rtype == R_386_TLS_IE)) {
1318d326b23bSrie 					rsp->rel_rtype = R_386_RELATIVE;
1319d326b23bSrie 					return (ld_add_outrel(NULL, rsp, ofl));
1320d326b23bSrie 				}
1321d326b23bSrie 				return (1);
13227c478bd9Sstevel@tonic-gate 			}
13237c478bd9Sstevel@tonic-gate 
13247c478bd9Sstevel@tonic-gate 			/*
1325d326b23bSrie 			 * Fixups are required for other executable models.
13267c478bd9Sstevel@tonic-gate 			 */
13275aefb655Srie 			return (ld_add_actrel((FLG_REL_TLSFIX | FLG_REL_STLS),
13287c478bd9Sstevel@tonic-gate 			    rsp, ofl));
13297c478bd9Sstevel@tonic-gate 		}
1330d326b23bSrie 
13317c478bd9Sstevel@tonic-gate 		/*
1332d326b23bSrie 		 * LE access model.
13337c478bd9Sstevel@tonic-gate 		 */
13347c478bd9Sstevel@tonic-gate 		if (IS_TLS_LE(rtype) || (rtype == R_386_TLS_LDO_32))
13355aefb655Srie 			return (ld_add_actrel(FLG_REL_STLS, rsp, ofl));
13367c478bd9Sstevel@tonic-gate 
13375aefb655Srie 		return (ld_add_actrel((FLG_REL_TLSFIX | FLG_REL_STLS),
13385aefb655Srie 		    rsp, ofl));
13397c478bd9Sstevel@tonic-gate 	}
13407c478bd9Sstevel@tonic-gate 
13417c478bd9Sstevel@tonic-gate 	/*
1342d326b23bSrie 	 * Building a shared object.
1343d326b23bSrie 	 *
1344d326b23bSrie 	 * Assign a GOT entry for a dynamic TLS reference.
13457c478bd9Sstevel@tonic-gate 	 */
13465aefb655Srie 	if (IS_TLS_LD(rtype) && ((gnp = ld_find_gotndx(&(sdp->sd_GOTndxs),
13477c478bd9Sstevel@tonic-gate 	    GOT_REF_TLSLD, ofl, 0)) == 0)) {
1348d326b23bSrie 
1349d326b23bSrie 		if (ld_assign_got_TLS(local, rsp, ofl, sdp, gnp, GOT_REF_TLSLD,
1350d326b23bSrie 		    FLG_REL_MTLS, rtype, R_386_TLS_DTPMOD32, 0) == S_ERROR)
13517c478bd9Sstevel@tonic-gate 			return (S_ERROR);
1352d326b23bSrie 
13535aefb655Srie 	} else if (IS_TLS_GD(rtype) &&
13545aefb655Srie 	    ((gnp = ld_find_gotndx(&(sdp->sd_GOTndxs), GOT_REF_TLSGD,
13555aefb655Srie 	    ofl, 0)) == 0)) {
1356d326b23bSrie 
1357d326b23bSrie 		if (ld_assign_got_TLS(local, rsp, ofl, sdp, gnp, GOT_REF_TLSGD,
1358d326b23bSrie 		    FLG_REL_DTLS, rtype, R_386_TLS_DTPMOD32,
1359d326b23bSrie 		    R_386_TLS_DTPOFF32) == S_ERROR)
13607c478bd9Sstevel@tonic-gate 			return (S_ERROR);
13617c478bd9Sstevel@tonic-gate 	}
1362d326b23bSrie 
13637c478bd9Sstevel@tonic-gate 	/*
13647c478bd9Sstevel@tonic-gate 	 * For GD/LD TLS reference - TLS_{GD,LD}_CALL, this will eventually
1365d326b23bSrie 	 * cause a call to __tls_get_addr().  Convert this relocation to that
1366d326b23bSrie 	 * symbol now, and prepare for the PLT magic.
13677c478bd9Sstevel@tonic-gate 	 */
13687c478bd9Sstevel@tonic-gate 	if ((rtype == R_386_TLS_GD_PLT) || (rtype == R_386_TLS_LDM_PLT)) {
1369f5a18a30Srie 		Sym_desc	*tlsgetsym;
13707c478bd9Sstevel@tonic-gate 
13715aefb655Srie 		if ((tlsgetsym = ld_sym_add_u(MSG_ORIG(MSG_SYM_TLSGETADDR_UU),
1372f5a18a30Srie 		    ofl, MSG_STR_TLSREL)) == (Sym_desc *)S_ERROR)
13737c478bd9Sstevel@tonic-gate 			return (S_ERROR);
1374d326b23bSrie 
13757c478bd9Sstevel@tonic-gate 		rsp->rel_sym = tlsgetsym;
13767c478bd9Sstevel@tonic-gate 		rsp->rel_sname = tlsgetsym->sd_name;
13777c478bd9Sstevel@tonic-gate 		rsp->rel_rtype = R_386_PLT32;
1378d326b23bSrie 
13795aefb655Srie 		if (ld_reloc_plt(rsp, ofl) == S_ERROR)
13807c478bd9Sstevel@tonic-gate 			return (S_ERROR);
1381d326b23bSrie 
13827c478bd9Sstevel@tonic-gate 		rsp->rel_sym = sdp;
13837c478bd9Sstevel@tonic-gate 		rsp->rel_sname = sdp->sd_name;
13847c478bd9Sstevel@tonic-gate 		rsp->rel_rtype = rtype;
13857c478bd9Sstevel@tonic-gate 		return (1);
13867c478bd9Sstevel@tonic-gate 	}
13877c478bd9Sstevel@tonic-gate 
13887c478bd9Sstevel@tonic-gate 	if (IS_TLS_LD(rtype))
13895aefb655Srie 		return (ld_add_actrel(FLG_REL_MTLS, rsp, ofl));
13907c478bd9Sstevel@tonic-gate 
13915aefb655Srie 	return (ld_add_actrel(FLG_REL_DTLS, rsp, ofl));
13927c478bd9Sstevel@tonic-gate }
13937c478bd9Sstevel@tonic-gate 
13947c478bd9Sstevel@tonic-gate /* ARGSUSED3 */
1395ba2be530Sab static Gotndx *
13965aefb655Srie ld_find_gotndx(List * lst, Gotref gref, Ofl_desc * ofl, Rel_desc * rdesc)
13977c478bd9Sstevel@tonic-gate {
13987c478bd9Sstevel@tonic-gate 	Listnode *	lnp;
13997c478bd9Sstevel@tonic-gate 	Gotndx *	gnp;
14007c478bd9Sstevel@tonic-gate 
14017c478bd9Sstevel@tonic-gate 	if ((gref == GOT_REF_TLSLD) && ofl->ofl_tlsldgotndx)
14027c478bd9Sstevel@tonic-gate 		return (ofl->ofl_tlsldgotndx);
14037c478bd9Sstevel@tonic-gate 
14047c478bd9Sstevel@tonic-gate 	for (LIST_TRAVERSE(lst, lnp, gnp)) {
14057c478bd9Sstevel@tonic-gate 		if (gnp->gn_gotref == gref)
14067c478bd9Sstevel@tonic-gate 			return (gnp);
14077c478bd9Sstevel@tonic-gate 	}
14087c478bd9Sstevel@tonic-gate 	return ((Gotndx *)0);
14097c478bd9Sstevel@tonic-gate }
14107c478bd9Sstevel@tonic-gate 
1411ba2be530Sab static Xword
14125aefb655Srie ld_calc_got_offset(Rel_desc * rdesc, Ofl_desc * ofl)
14137c478bd9Sstevel@tonic-gate {
14147c478bd9Sstevel@tonic-gate 	Os_desc		*osp = ofl->ofl_osgot;
14157c478bd9Sstevel@tonic-gate 	Sym_desc	*sdp = rdesc->rel_sym;
14167c478bd9Sstevel@tonic-gate 	Xword		gotndx;
14177c478bd9Sstevel@tonic-gate 	Gotref		gref;
14187c478bd9Sstevel@tonic-gate 	Gotndx		*gnp;
14197c478bd9Sstevel@tonic-gate 
14207c478bd9Sstevel@tonic-gate 	if (rdesc->rel_flags & FLG_REL_DTLS)
14217c478bd9Sstevel@tonic-gate 		gref = GOT_REF_TLSGD;
14227c478bd9Sstevel@tonic-gate 	else if (rdesc->rel_flags & FLG_REL_MTLS)
14237c478bd9Sstevel@tonic-gate 		gref = GOT_REF_TLSLD;
14247c478bd9Sstevel@tonic-gate 	else if (rdesc->rel_flags & FLG_REL_STLS)
14257c478bd9Sstevel@tonic-gate 		gref = GOT_REF_TLSIE;
14267c478bd9Sstevel@tonic-gate 	else
14277c478bd9Sstevel@tonic-gate 		gref = GOT_REF_GENERIC;
14287c478bd9Sstevel@tonic-gate 
14295aefb655Srie 	gnp = ld_find_gotndx(&(sdp->sd_GOTndxs), gref, ofl, 0);
14307c478bd9Sstevel@tonic-gate 	assert(gnp);
14317c478bd9Sstevel@tonic-gate 
14327c478bd9Sstevel@tonic-gate 	gotndx = (Xword)gnp->gn_gotndx;
14337c478bd9Sstevel@tonic-gate 
14347c478bd9Sstevel@tonic-gate 	if ((rdesc->rel_flags & FLG_REL_DTLS) &&
14357c478bd9Sstevel@tonic-gate 	    (rdesc->rel_rtype == R_386_TLS_DTPOFF32))
14367c478bd9Sstevel@tonic-gate 		gotndx++;
14377c478bd9Sstevel@tonic-gate 
14387c478bd9Sstevel@tonic-gate 	return ((Xword)(osp->os_shdr->sh_addr + (gotndx * M_GOT_ENTSIZE)));
14397c478bd9Sstevel@tonic-gate }
14407c478bd9Sstevel@tonic-gate 
14417c478bd9Sstevel@tonic-gate 
14427c478bd9Sstevel@tonic-gate /* ARGSUSED4 */
1443ba2be530Sab static uintptr_t
1444d326b23bSrie ld_assign_got_ndx(List * lst, Gotndx * pgnp, Gotref gref, Ofl_desc * ofl,
14457c478bd9Sstevel@tonic-gate     Rel_desc * rsp, Sym_desc * sdp)
14467c478bd9Sstevel@tonic-gate {
14477c478bd9Sstevel@tonic-gate 	Gotndx	*gnp;
14487c478bd9Sstevel@tonic-gate 	uint_t	gotents;
14497c478bd9Sstevel@tonic-gate 
14507c478bd9Sstevel@tonic-gate 	if (pgnp)
14517c478bd9Sstevel@tonic-gate 		return (1);
14527c478bd9Sstevel@tonic-gate 
14537c478bd9Sstevel@tonic-gate 	if ((gref == GOT_REF_TLSGD) || (gref == GOT_REF_TLSLD))
14547c478bd9Sstevel@tonic-gate 		gotents = 2;
14557c478bd9Sstevel@tonic-gate 	else
14567c478bd9Sstevel@tonic-gate 		gotents = 1;
14577c478bd9Sstevel@tonic-gate 
14587c478bd9Sstevel@tonic-gate 	if ((gnp = libld_calloc(sizeof (Gotndx), 1)) == 0)
14597c478bd9Sstevel@tonic-gate 		return (S_ERROR);
14607c478bd9Sstevel@tonic-gate 	gnp->gn_gotndx = ofl->ofl_gotcnt;
14617c478bd9Sstevel@tonic-gate 	gnp->gn_gotref = gref;
14627c478bd9Sstevel@tonic-gate 
14637c478bd9Sstevel@tonic-gate 	ofl->ofl_gotcnt += gotents;
14647c478bd9Sstevel@tonic-gate 
14657c478bd9Sstevel@tonic-gate 	if (gref == GOT_REF_TLSLD) {
14667c478bd9Sstevel@tonic-gate 		ofl->ofl_tlsldgotndx = gnp;
14677c478bd9Sstevel@tonic-gate 		return (1);
14687c478bd9Sstevel@tonic-gate 	}
14697c478bd9Sstevel@tonic-gate 
14707c478bd9Sstevel@tonic-gate 	if (list_appendc(lst, (void *)gnp) == 0)
14717c478bd9Sstevel@tonic-gate 		return (S_ERROR);
14727c478bd9Sstevel@tonic-gate 
14737c478bd9Sstevel@tonic-gate 	return (1);
14747c478bd9Sstevel@tonic-gate }
14757c478bd9Sstevel@tonic-gate 
1476ba2be530Sab static void
14775aefb655Srie ld_assign_plt_ndx(Sym_desc * sdp, Ofl_desc *ofl)
14787c478bd9Sstevel@tonic-gate {
14797c478bd9Sstevel@tonic-gate 	sdp->sd_aux->sa_PLTndx = 1 + ofl->ofl_pltcnt++;
14807c478bd9Sstevel@tonic-gate 	sdp->sd_aux->sa_PLTGOTndx = ofl->ofl_gotcnt++;
1481141040e8Srie 	ofl->ofl_flags |= FLG_OF_BLDGOT;
14827c478bd9Sstevel@tonic-gate }
14837c478bd9Sstevel@tonic-gate 
14847c478bd9Sstevel@tonic-gate /*
14857c478bd9Sstevel@tonic-gate  * Initializes .got[0] with the _DYNAMIC symbol value.
14867c478bd9Sstevel@tonic-gate  */
1487ba2be530Sab static uintptr_t
1488d326b23bSrie ld_fillin_gotplt(Ofl_desc *ofl)
14897c478bd9Sstevel@tonic-gate {
1490*1d9df23bSab 	ofl_flag_t	flags = ofl->ofl_flags;
1491*1d9df23bSab 	int		bswap = (ofl->ofl_flags1 & FLG_OF1_ENCDIFF) != 0;
1492d326b23bSrie 
14937c478bd9Sstevel@tonic-gate 	if (ofl->ofl_osgot) {
1494d326b23bSrie 		Sym_desc	*sdp;
14957c478bd9Sstevel@tonic-gate 
14965aefb655Srie 		if ((sdp = ld_sym_find(MSG_ORIG(MSG_SYM_DYNAMIC_U),
14977c478bd9Sstevel@tonic-gate 		    SYM_NOHASH, 0, ofl)) != NULL) {
1498d326b23bSrie 			uchar_t	*genptr;
1499d326b23bSrie 
1500d326b23bSrie 			genptr = ((uchar_t *)ofl->ofl_osgot->os_outdata->d_buf +
15017c478bd9Sstevel@tonic-gate 			    (M_GOT_XDYNAMIC * M_GOT_ENTSIZE));
15027c478bd9Sstevel@tonic-gate 			/* LINTED */
15037c478bd9Sstevel@tonic-gate 			*(Word *)genptr = (Word)sdp->sd_sym->st_value;
1504ba2be530Sab 			if (bswap)
1505ba2be530Sab 				/* LINTED */
1506ba2be530Sab 				*(Word *)genptr =
1507ba2be530Sab 				    /* LINTED */
1508ba2be530Sab 				    ld_bswap_Word(*(Word *)genptr);
15097c478bd9Sstevel@tonic-gate 		}
15107c478bd9Sstevel@tonic-gate 	}
15117c478bd9Sstevel@tonic-gate 
15127c478bd9Sstevel@tonic-gate 	/*
15137c478bd9Sstevel@tonic-gate 	 * Fill in the reserved slot in the procedure linkage table the first
15147c478bd9Sstevel@tonic-gate 	 * entry is:
15157c478bd9Sstevel@tonic-gate 	 *  if (building a.out) {
15167c478bd9Sstevel@tonic-gate 	 *	PUSHL	got[1]		    # the address of the link map entry
15177c478bd9Sstevel@tonic-gate 	 *	JMP *	got[2]		    # the address of rtbinder
15187c478bd9Sstevel@tonic-gate 	 *  } else {
15197c478bd9Sstevel@tonic-gate 	 *	PUSHL	got[1]@GOT(%ebx)    # the address of the link map entry
15207c478bd9Sstevel@tonic-gate 	 *	JMP *	got[2]@GOT(%ebx)    # the address of rtbinder
15217c478bd9Sstevel@tonic-gate 	 *  }
15227c478bd9Sstevel@tonic-gate 	 */
1523d326b23bSrie 	if ((flags & FLG_OF_DYNAMIC) && ofl->ofl_osplt) {
1524b3fbe5e6Sseizo 		uchar_t *pltent;
15257c478bd9Sstevel@tonic-gate 
1526b3fbe5e6Sseizo 		pltent = (uchar_t *)ofl->ofl_osplt->os_outdata->d_buf;
1527d326b23bSrie 		if (!(flags & FLG_OF_SHAROBJ)) {
15287c478bd9Sstevel@tonic-gate 			pltent[0] = M_SPECIAL_INST;
15297c478bd9Sstevel@tonic-gate 			pltent[1] = M_PUSHL_DISP;
15307c478bd9Sstevel@tonic-gate 			pltent += 2;
15317c478bd9Sstevel@tonic-gate 			/* LINTED */
15327c478bd9Sstevel@tonic-gate 			*(Word *)pltent = (Word)(ofl->ofl_osgot->os_shdr->
1533de777a60Sab 			    sh_addr + M_GOT_XLINKMAP * M_GOT_ENTSIZE);
1534ba2be530Sab 			if (bswap)
1535ba2be530Sab 				/* LINTED */
1536ba2be530Sab 				*(Word *)pltent =
1537ba2be530Sab 				    /* LINTED */
1538ba2be530Sab 				    ld_bswap_Word(*(Word *)pltent);
15397c478bd9Sstevel@tonic-gate 			pltent += 4;
15407c478bd9Sstevel@tonic-gate 			pltent[0] = M_SPECIAL_INST;
15417c478bd9Sstevel@tonic-gate 			pltent[1] = M_JMP_DISP_IND;
15427c478bd9Sstevel@tonic-gate 			pltent += 2;
15437c478bd9Sstevel@tonic-gate 			/* LINTED */
15447c478bd9Sstevel@tonic-gate 			*(Word *)pltent = (Word)(ofl->ofl_osgot->os_shdr->
1545de777a60Sab 			    sh_addr + M_GOT_XRTLD * M_GOT_ENTSIZE);
1546ba2be530Sab 			if (bswap)
1547ba2be530Sab 				/* LINTED */
1548ba2be530Sab 				*(Word *)pltent =
1549ba2be530Sab 				    /* LINTED */
1550ba2be530Sab 				    ld_bswap_Word(*(Word *)pltent);
15517c478bd9Sstevel@tonic-gate 		} else {
15527c478bd9Sstevel@tonic-gate 			pltent[0] = M_SPECIAL_INST;
15537c478bd9Sstevel@tonic-gate 			pltent[1] = M_PUSHL_REG_DISP;
15547c478bd9Sstevel@tonic-gate 			pltent += 2;
15557c478bd9Sstevel@tonic-gate 			/* LINTED */
15567c478bd9Sstevel@tonic-gate 			*(Word *)pltent = (Word)(M_GOT_XLINKMAP *
1557de777a60Sab 			    M_GOT_ENTSIZE);
1558ba2be530Sab 			if (bswap)
1559ba2be530Sab 				/* LINTED */
1560ba2be530Sab 				*(Word *)pltent =
1561ba2be530Sab 				    /* LINTED */
1562ba2be530Sab 				    ld_bswap_Word(*(Word *)pltent);
15637c478bd9Sstevel@tonic-gate 			pltent += 4;
15647c478bd9Sstevel@tonic-gate 			pltent[0] = M_SPECIAL_INST;
15657c478bd9Sstevel@tonic-gate 			pltent[1] = M_JMP_REG_DISP_IND;
15667c478bd9Sstevel@tonic-gate 			pltent += 2;
15677c478bd9Sstevel@tonic-gate 			/* LINTED */
15687c478bd9Sstevel@tonic-gate 			*(Word *)pltent = (Word)(M_GOT_XRTLD *
1569de777a60Sab 			    M_GOT_ENTSIZE);
1570ba2be530Sab 			if (bswap)
1571ba2be530Sab 				/* LINTED */
1572ba2be530Sab 				*(Word *)pltent =
1573ba2be530Sab 				    /* LINTED */
1574ba2be530Sab 				    ld_bswap_Word(*(Word *)pltent);
15757c478bd9Sstevel@tonic-gate 		}
15767c478bd9Sstevel@tonic-gate 	}
15777c478bd9Sstevel@tonic-gate 	return (1);
15787c478bd9Sstevel@tonic-gate }
1579ba2be530Sab 
1580ba2be530Sab 
1581ba2be530Sab 
1582ba2be530Sab /*
1583ba2be530Sab  * Template for generating "void (*)(void)" function
1584ba2be530Sab  */
1585ba2be530Sab static const uchar_t nullfunc_tmpl[] = {	/* IA32 */
1586ba2be530Sab /* 0x00 */	0xc3				/* ret */
1587ba2be530Sab };
1588ba2be530Sab 
1589ba2be530Sab 
1590ba2be530Sab 
1591ba2be530Sab /*
1592ba2be530Sab  * Return the ld_targ definition for this target.
1593ba2be530Sab  */
1594ba2be530Sab const Target *
1595ba2be530Sab ld_targ_init_x86(void)
1596ba2be530Sab {
1597ba2be530Sab 	static const Target _ld_targ = {
1598ba2be530Sab 		{			/* Target_mach */
1599ba2be530Sab 			M_MACH,			/* m_mach */
1600ba2be530Sab 			M_MACHPLUS,		/* m_machplus */
1601ba2be530Sab 			M_FLAGSPLUS,		/* m_flagsplus */
1602ba2be530Sab 			M_CLASS,		/* m_class */
1603ba2be530Sab 			M_DATA,			/* m_data */
1604ba2be530Sab 
1605ba2be530Sab 			M_SEGM_ALIGN,		/* m_segm_align */
1606ba2be530Sab 			M_SEGM_ORIGIN,		/* m_segm_origin */
1607ba2be530Sab 			M_DATASEG_PERM,		/* m_dataseg_perm */
1608ba2be530Sab 			M_WORD_ALIGN,		/* m_word_align */
1609ba2be530Sab 			MSG_ORIG(MSG_PTH_RTLD),	/* m_def_interp */
1610ba2be530Sab 
1611ba2be530Sab 			/* Relocation type codes */
1612ba2be530Sab 			M_R_ARRAYADDR,		/* m_r_arrayaddr */
1613ba2be530Sab 			M_R_COPY,		/* m_r_copy */
1614ba2be530Sab 			M_R_GLOB_DAT,		/* m_r_glob_dat */
1615ba2be530Sab 			M_R_JMP_SLOT,		/* m_r_jmp_slot */
1616ba2be530Sab 			M_R_NUM,		/* m_r_num */
1617ba2be530Sab 			M_R_NONE,		/* m_r_none */
1618ba2be530Sab 			M_R_RELATIVE,		/* m_r_relative */
1619ba2be530Sab 			M_R_REGISTER,		/* m_r_register */
1620ba2be530Sab 
1621ba2be530Sab 			/* Relocation related constants */
1622ba2be530Sab 			M_REL_DT_COUNT,		/* m_rel_dt_count */
1623ba2be530Sab 			M_REL_DT_ENT,		/* m_rel_dt_ent */
1624ba2be530Sab 			M_REL_DT_SIZE,		/* m_rel_dt_size */
1625ba2be530Sab 			M_REL_DT_TYPE,		/* m_rel_dt_type */
1626ba2be530Sab 			M_REL_SHT_TYPE,		/* m_rel_sht_type */
1627ba2be530Sab 
1628ba2be530Sab 			/* GOT related constants */
1629ba2be530Sab 			M_GOT_ENTSIZE,		/* m_got_entsize */
1630ba2be530Sab 			M_GOT_XNumber,		/* m_got_xnumber */
1631ba2be530Sab 
1632ba2be530Sab 			/* PLT related constants */
1633ba2be530Sab 			M_PLT_ALIGN,		/* m_plt_align */
1634ba2be530Sab 			M_PLT_ENTSIZE,		/* m_plt_entsize */
1635ba2be530Sab 			M_PLT_RESERVSZ,		/* m_plt_reservsz */
1636ba2be530Sab 			M_PLT_SHF_FLAGS,	/* m_plt_shf_flags */
1637ba2be530Sab 
1638ba2be530Sab 			M_DT_REGISTER,		/* m_dt_register */
1639ba2be530Sab 		},
1640ba2be530Sab 		{			/* Target_machid */
1641ba2be530Sab 			M_ID_ARRAY,		/* id_array */
1642ba2be530Sab 			M_ID_BSS,		/* id_bss */
1643ba2be530Sab 			M_ID_CAP,		/* id_cap */
1644ba2be530Sab 			M_ID_DATA,		/* id_data */
1645ba2be530Sab 			M_ID_DYNAMIC,		/* id_dynamic */
1646ba2be530Sab 			M_ID_DYNSORT,		/* id_dynsort */
1647ba2be530Sab 			M_ID_DYNSTR,		/* id_dynstr */
1648ba2be530Sab 			M_ID_DYNSYM,		/* id_dynsym */
1649ba2be530Sab 			M_ID_DYNSYM_NDX,	/* id_dynsym_ndx */
1650ba2be530Sab 			M_ID_GOT,		/* id_got */
1651ba2be530Sab 			M_ID_UNKNOWN,		/* id_gotdata (unused) */
1652ba2be530Sab 			M_ID_HASH,		/* id_hash */
1653ba2be530Sab 			M_ID_INTERP,		/* id_interp */
1654ba2be530Sab 			M_ID_LBSS,		/* id_lbss */
1655ba2be530Sab 			M_ID_LDYNSYM,		/* id_ldynsym */
1656ba2be530Sab 			M_ID_NOTE,		/* id_note */
1657ba2be530Sab 			M_ID_NULL,		/* id_null */
1658ba2be530Sab 			M_ID_PLT,		/* id_plt */
1659ba2be530Sab 			M_ID_REL,		/* id_rel */
1660ba2be530Sab 			M_ID_STRTAB,		/* id_strtab */
1661ba2be530Sab 			M_ID_SYMINFO,		/* id_syminfo */
1662ba2be530Sab 			M_ID_SYMTAB,		/* id_symtab */
1663ba2be530Sab 			M_ID_SYMTAB_NDX,	/* id_symtab_ndx */
1664ba2be530Sab 			M_ID_TEXT,		/* id_text */
1665ba2be530Sab 			M_ID_TLS,		/* id_tls */
1666ba2be530Sab 			M_ID_TLSBSS,		/* id_tlsbss */
1667ba2be530Sab 			M_ID_UNKNOWN,		/* id_unknown */
1668ba2be530Sab 			M_ID_UNWIND,		/* id_unwind */
1669ba2be530Sab 			M_ID_USER,		/* id_user */
1670ba2be530Sab 			M_ID_VERSION,		/* id_version */
1671ba2be530Sab 		},
1672ba2be530Sab 		{			/* Target_nullfunc */
1673ba2be530Sab 			nullfunc_tmpl,		/* nf_template */
1674ba2be530Sab 			sizeof (nullfunc_tmpl),	/* nf_size */
1675ba2be530Sab 		},
1676ba2be530Sab 		{			/* Target_machrel */
1677ba2be530Sab 			reloc_table,
1678ba2be530Sab 
1679ba2be530Sab 			ld_init_rel,		/* mr_init_rel */
1680ba2be530Sab 			ld_mach_eflags,		/* mr_mach_eflags */
1681ba2be530Sab 			ld_mach_make_dynamic,	/* mr_mach_make_dynamic */
1682ba2be530Sab 			ld_mach_update_odynamic, /* mr_mach_update_odynamic */
1683ba2be530Sab 			ld_calc_plt_addr,	/* mr_calc_plt_addr */
1684ba2be530Sab 			ld_perform_outreloc,	/* mr_perform_outreloc */
1685ba2be530Sab 			ld_do_activerelocs,	/* mr_do_activerelocs */
1686ba2be530Sab 			ld_add_outrel,		/* mr_add_outrel */
1687ba2be530Sab 			NULL,			/* mr_reloc_register */
1688ba2be530Sab 			ld_reloc_local,		/* mr_reloc_local */
1689ba2be530Sab 			NULL,			/* mr_reloc_GOTOP */
1690ba2be530Sab 			ld_reloc_TLS,		/* mr_reloc_TLS */
1691ba2be530Sab 			NULL,			/* mr_assign_got */
1692ba2be530Sab 			ld_find_gotndx,		/* mr_find_gotndx */
1693ba2be530Sab 			ld_calc_got_offset,	/* mr_calc_got_offset */
1694ba2be530Sab 			ld_assign_got_ndx,	/* mr_assign_got_ndx */
1695ba2be530Sab 			ld_assign_plt_ndx,	/* mr_assign_plt_ndx */
1696ba2be530Sab 			NULL,			/* mr_allocate_got */
1697ba2be530Sab 			ld_fillin_gotplt,	/* mr_fillin_gotplt */
1698ba2be530Sab 		},
1699ba2be530Sab 		{			/* Target_machsym */
1700ba2be530Sab 			NULL,			/* ms_reg_check */
1701ba2be530Sab 			NULL,			/* ms_mach_sym_typecheck */
1702ba2be530Sab 			NULL,			/* ms_is_regsym */
1703ba2be530Sab 			NULL,			/* ms_reg_find */
1704ba2be530Sab 			NULL			/* ms_reg_enter */
1705ba2be530Sab 		},
1706ba2be530Sab 		{			/* Target_unwind */
1707ba2be530Sab 			NULL,		/* uw_make_unwindhdr */
1708ba2be530Sab 			NULL,		/* uw_populate_unwindhdr */
1709ba2be530Sab 			NULL,		/* uw_append_unwind */
1710ba2be530Sab 		}
1711ba2be530Sab 	};
1712ba2be530Sab 
1713ba2be530Sab 	return (&_ld_targ);
1714ba2be530Sab }
1715