xref: /illumos-gate/usr/src/cmd/sgs/libelf/common/update.c (revision 7d732bb0)
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
50bc07c75Srie  * Common Development and Distribution License (the "License").
60bc07c75Srie  * 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  */
217c478bd9Sstevel@tonic-gate 
227c478bd9Sstevel@tonic-gate /*
233c573fccSAli Bahrami  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277257d1b4Sraf /*
287257d1b4Sraf  *	Copyright (c) 1988 AT&T
297257d1b4Sraf  *	  All Rights Reserved
307257d1b4Sraf  */
317c478bd9Sstevel@tonic-gate 
32*7d732bb0SJohn Levon /*
33*7d732bb0SJohn Levon  * Copyright (c) 2018, Joyent, Inc.
34*7d732bb0SJohn Levon  */
35*7d732bb0SJohn Levon 
367c478bd9Sstevel@tonic-gate #include <memory.h>
377c478bd9Sstevel@tonic-gate #include <malloc.h>
387c478bd9Sstevel@tonic-gate #include <limits.h>
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate #include <sgs.h>
417c478bd9Sstevel@tonic-gate #include "decl.h"
427c478bd9Sstevel@tonic-gate #include "msg.h"
437c478bd9Sstevel@tonic-gate 
447c478bd9Sstevel@tonic-gate /*
457c478bd9Sstevel@tonic-gate  * This module is compiled twice, the second time having
467c478bd9Sstevel@tonic-gate  * -D_ELF64 defined.  The following set of macros, along
477c478bd9Sstevel@tonic-gate  * with machelf.h, represent the differences between the
487c478bd9Sstevel@tonic-gate  * two compilations.  Be careful *not* to add any class-
497c478bd9Sstevel@tonic-gate  * dependent code (anything that has elf32 or elf64 in the
507c478bd9Sstevel@tonic-gate  * name) to this code without hiding it behind a switch-
517c478bd9Sstevel@tonic-gate  * able macro like these.
527c478bd9Sstevel@tonic-gate  */
537c478bd9Sstevel@tonic-gate #if	defined(_ELF64)
547c478bd9Sstevel@tonic-gate 
557c478bd9Sstevel@tonic-gate #define	FSZ_LONG	ELF64_FSZ_XWORD
567c478bd9Sstevel@tonic-gate #define	ELFCLASS	ELFCLASS64
577c478bd9Sstevel@tonic-gate #define	_elf_snode_init	_elf64_snode_init
587c478bd9Sstevel@tonic-gate #define	_elfxx_cookscn	_elf64_cookscn
597c478bd9Sstevel@tonic-gate #define	_elf_upd_lib	_elf64_upd_lib
607c478bd9Sstevel@tonic-gate #define	elf_fsize	elf64_fsize
617c478bd9Sstevel@tonic-gate #define	_elf_entsz	_elf64_entsz
627c478bd9Sstevel@tonic-gate #define	_elf_msize	_elf64_msize
637c478bd9Sstevel@tonic-gate #define	_elf_upd_usr	_elf64_upd_usr
647c478bd9Sstevel@tonic-gate #define	wrt		wrt64
657c478bd9Sstevel@tonic-gate #define	elf_xlatetof	elf64_xlatetof
667c478bd9Sstevel@tonic-gate #define	_elfxx_update	_elf64_update
67ba2be530Sab #define	_elfxx_swap_wrimage	_elf64_swap_wrimage
687c478bd9Sstevel@tonic-gate 
697c478bd9Sstevel@tonic-gate #else	/* ELF32 */
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate #define	FSZ_LONG	ELF32_FSZ_WORD
727c478bd9Sstevel@tonic-gate #define	ELFCLASS	ELFCLASS32
737c478bd9Sstevel@tonic-gate #define	_elf_snode_init	_elf32_snode_init
747c478bd9Sstevel@tonic-gate #define	_elfxx_cookscn	_elf32_cookscn
757c478bd9Sstevel@tonic-gate #define	_elf_upd_lib	_elf32_upd_lib
767c478bd9Sstevel@tonic-gate #define	elf_fsize	elf32_fsize
777c478bd9Sstevel@tonic-gate #define	_elf_entsz	_elf32_entsz
787c478bd9Sstevel@tonic-gate #define	_elf_msize	_elf32_msize
797c478bd9Sstevel@tonic-gate #define	_elf_upd_usr	_elf32_upd_usr
807c478bd9Sstevel@tonic-gate #define	wrt		wrt32
817c478bd9Sstevel@tonic-gate #define	elf_xlatetof	elf32_xlatetof
827c478bd9Sstevel@tonic-gate #define	_elfxx_update	_elf32_update
83ba2be530Sab #define	_elfxx_swap_wrimage	_elf32_swap_wrimage
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate #endif /* ELF64 */
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate 
88df14233eSab #if	!(defined(_LP64) && defined(_ELF64))
89df14233eSab #define	TEST_SIZE
90df14233eSab 
91df14233eSab /*
92df14233eSab  * Handle the decision of whether the current linker can handle the
93df14233eSab  * desired object size, and if not, which error to issue.
94df14233eSab  *
95df14233eSab  * Input is the desired size. On failure, an error has been issued
96df14233eSab  * and 0 is returned. On success, 1 is returned.
97df14233eSab  */
98df14233eSab static int
test_size(Lword hi)99df14233eSab test_size(Lword hi)
100df14233eSab {
101df14233eSab #ifndef _LP64			/* 32-bit linker */
102df14233eSab 	/*
103df14233eSab 	 * A 32-bit libelf is limited to a 2GB output file. This limit
104df14233eSab 	 * is due to the fact that off_t is a signed value, and that
105df14233eSab 	 * libelf cannot support large file support:
106df14233eSab 	 *	- ABI reasons
107df14233eSab 	 *	- Memory use generally is 2x output file size anyway,
108df14233eSab 	 *		so lifting the file size limit will just send
109df14233eSab 	 *		you crashing into the 32-bit VM limit.
110df14233eSab 	 * If the output is an ELFCLASS64 object, or an ELFCLASS32 object
111df14233eSab 	 * under 4GB, switching to the 64-bit version of libelf will help.
112df14233eSab 	 * However, an ELFCLASS32 object must not exceed 4GB.
113df14233eSab 	 */
114df14233eSab 	if (hi > INT_MAX) {	/* Bigger than 2GB */
115df14233eSab #ifndef _ELF64
116df14233eSab 		/* ELFCLASS32 object is fundamentally too big? */
117df14233eSab 		if (hi > UINT_MAX) {
118df14233eSab 			_elf_seterr(EFMT_FBIG_CLASS32, 0);
119df14233eSab 			return (0);
120df14233eSab 		}
121df14233eSab #endif				/* _ELF64 */
122df14233eSab 
123df14233eSab 		/* Should switch to the 64-bit libelf? */
124df14233eSab 		_elf_seterr(EFMT_FBIG_LARGEFILE, 0);
125df14233eSab 		return (0);
126df14233eSab 	}
127df14233eSab #endif				/* !_LP64 */
128df14233eSab 
129df14233eSab 
130df14233eSab #if	defined(_LP64) && !defined(_ELF64)   /* 64-bit linker, ELFCLASS32 */
131df14233eSab 	/*
132df14233eSab 	 * A 64-bit linker can produce any size output
133df14233eSab 	 * file, but if the resulting file is ELFCLASS32,
134df14233eSab 	 * it must not exceed 4GB.
135df14233eSab 	 */
136df14233eSab 	if (hi > UINT_MAX) {
137df14233eSab 		_elf_seterr(EFMT_FBIG_CLASS32, 0);
138df14233eSab 		return (0);
139df14233eSab 	}
140df14233eSab #endif
141df14233eSab 
142df14233eSab 	return (1);
143df14233eSab }
144df14233eSab #endif				/* TEST_SIZE */
145df14233eSab 
1467c478bd9Sstevel@tonic-gate /*
1477c478bd9Sstevel@tonic-gate  * Output file update
1487c478bd9Sstevel@tonic-gate  *	These functions walk an Elf structure, update its information,
1497c478bd9Sstevel@tonic-gate  *	and optionally write the output file.  Because the application
1507c478bd9Sstevel@tonic-gate  *	may control of the output file layout, two upd_... routines
1517c478bd9Sstevel@tonic-gate  *	exist.  They're similar but too different to merge cleanly.
1527c478bd9Sstevel@tonic-gate  *
1537c478bd9Sstevel@tonic-gate  *	The library defines a "dirty" bit to force parts of the file
1547c478bd9Sstevel@tonic-gate  *	to be written on update.  These routines ignore the dirty bit
1557c478bd9Sstevel@tonic-gate  *	and do everything.  A minimal update routine might be useful
1567c478bd9Sstevel@tonic-gate  *	someday.
1577c478bd9Sstevel@tonic-gate  */
1587c478bd9Sstevel@tonic-gate 
1597c478bd9Sstevel@tonic-gate static size_t
_elf_upd_lib(Elf * elf)1607c478bd9Sstevel@tonic-gate _elf_upd_lib(Elf * elf)
1617c478bd9Sstevel@tonic-gate {
1627c478bd9Sstevel@tonic-gate 	Lword		hi;
1637c478bd9Sstevel@tonic-gate 	Lword		hibit;
1647c478bd9Sstevel@tonic-gate 	Elf_Scn *	s;
165df14233eSab 	register Lword	sz;
1667c478bd9Sstevel@tonic-gate 	Ehdr *		eh = elf->ed_ehdr;
1677c478bd9Sstevel@tonic-gate 	unsigned	ver = eh->e_version;
1687c478bd9Sstevel@tonic-gate 	register char	*p = (char *)eh->e_ident;
1697c478bd9Sstevel@tonic-gate 	size_t		scncnt;
1707c478bd9Sstevel@tonic-gate 
1717c478bd9Sstevel@tonic-gate 	/*
1727c478bd9Sstevel@tonic-gate 	 * Ehdr and Phdr table go first
1737c478bd9Sstevel@tonic-gate 	 */
1747c478bd9Sstevel@tonic-gate 	p[EI_MAG0] = ELFMAG0;
1757c478bd9Sstevel@tonic-gate 	p[EI_MAG1] = ELFMAG1;
1767c478bd9Sstevel@tonic-gate 	p[EI_MAG2] = ELFMAG2;
1777c478bd9Sstevel@tonic-gate 	p[EI_MAG3] = ELFMAG3;
1787c478bd9Sstevel@tonic-gate 	p[EI_CLASS] = ELFCLASS;
1797c478bd9Sstevel@tonic-gate 	/* LINTED */
1807c478bd9Sstevel@tonic-gate 	p[EI_VERSION] = (Byte)ver;
1817c478bd9Sstevel@tonic-gate 	hi = elf_fsize(ELF_T_EHDR, 1, ver);
1827c478bd9Sstevel@tonic-gate 	/* LINTED */
1837c478bd9Sstevel@tonic-gate 	eh->e_ehsize = (Half)hi;
1847c478bd9Sstevel@tonic-gate 	if (eh->e_phnum != 0) {
1857c478bd9Sstevel@tonic-gate 		/* LINTED */
1867c478bd9Sstevel@tonic-gate 		eh->e_phentsize = (Half)elf_fsize(ELF_T_PHDR, 1, ver);
1877c478bd9Sstevel@tonic-gate 		/* LINTED */
1887c478bd9Sstevel@tonic-gate 		eh->e_phoff = (Off)hi;
1897c478bd9Sstevel@tonic-gate 		hi += eh->e_phentsize * eh->e_phnum;
1907c478bd9Sstevel@tonic-gate 	} else {
1917c478bd9Sstevel@tonic-gate 		eh->e_phoff = 0;
1927c478bd9Sstevel@tonic-gate 		eh->e_phentsize = 0;
1937c478bd9Sstevel@tonic-gate 	}
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate 	/*
1960bc07c75Srie 	 * Obtain the first section header.  Typically, this section has NULL
1970bc07c75Srie 	 * contents, however in the case of Extended ELF Sections this section
1980bc07c75Srie 	 * is used to hold an alternative e_shnum, e_shstrndx and e_phnum.
1990bc07c75Srie 	 * On initial allocation (see _elf_snode) the elements of this section
2000bc07c75Srie 	 * would have been zeroed.  The e_shnum is initialized later, after the
2010bc07c75Srie 	 * section header count has been determined.  The e_shstrndx and
2020bc07c75Srie 	 * e_phnum may have already been initialized by the caller (for example,
2030bc07c75Srie 	 * gelf_update_shdr() in mcs(1)).
2047c478bd9Sstevel@tonic-gate 	 */
2057c478bd9Sstevel@tonic-gate 	if ((s = elf->ed_hdscn) == 0) {
2067c478bd9Sstevel@tonic-gate 		eh->e_shnum = 0;
2077c478bd9Sstevel@tonic-gate 		scncnt = 0;
2087c478bd9Sstevel@tonic-gate 	} else {
2097c478bd9Sstevel@tonic-gate 		s = s->s_next;
2100bc07c75Srie 		scncnt = 1;
2117c478bd9Sstevel@tonic-gate 	}
2127c478bd9Sstevel@tonic-gate 
2130bc07c75Srie 	/*
2140bc07c75Srie 	 * Loop through sections.  Compute section size before changing hi.
2150bc07c75Srie 	 * Allow null buffers for NOBITS.
2160bc07c75Srie 	 */
2177c478bd9Sstevel@tonic-gate 	hibit = 0;
2187c478bd9Sstevel@tonic-gate 	for (; s != 0; s = s->s_next) {
2197c478bd9Sstevel@tonic-gate 		register Dnode	*d;
2207c478bd9Sstevel@tonic-gate 		register Lword	fsz, j;
2217c478bd9Sstevel@tonic-gate 		Shdr *sh = s->s_shdr;
2227c478bd9Sstevel@tonic-gate 
2237c478bd9Sstevel@tonic-gate 		scncnt++;
2247c478bd9Sstevel@tonic-gate 		if (sh->sh_type == SHT_NULL) {
2257c478bd9Sstevel@tonic-gate 			*sh = _elf_snode_init.sb_shdr;
2267c478bd9Sstevel@tonic-gate 			continue;
2277c478bd9Sstevel@tonic-gate 		}
2287c478bd9Sstevel@tonic-gate 
2297c478bd9Sstevel@tonic-gate 		if ((s->s_myflags & SF_READY) == 0)
2307c478bd9Sstevel@tonic-gate 			(void) _elfxx_cookscn(s);
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate 		sh->sh_addralign = 1;
233df14233eSab 		if ((sz = (Lword)_elf_entsz(elf, sh->sh_type, ver)) != 0)
2347c478bd9Sstevel@tonic-gate 			/* LINTED */
2357c478bd9Sstevel@tonic-gate 			sh->sh_entsize = (Half)sz;
2367c478bd9Sstevel@tonic-gate 		sz = 0;
2377c478bd9Sstevel@tonic-gate 		for (d = s->s_hdnode; d != 0; d = d->db_next) {
2387c478bd9Sstevel@tonic-gate 			if ((fsz = elf_fsize(d->db_data.d_type,
2397c478bd9Sstevel@tonic-gate 			    1, ver)) == 0)
2407c478bd9Sstevel@tonic-gate 				return (0);
2417c478bd9Sstevel@tonic-gate 
2427c478bd9Sstevel@tonic-gate 			j = _elf_msize(d->db_data.d_type, ver);
2437c478bd9Sstevel@tonic-gate 			fsz *= (d->db_data.d_size / j);
2447c478bd9Sstevel@tonic-gate 			d->db_osz = (size_t)fsz;
2457c478bd9Sstevel@tonic-gate 			if ((j = d->db_data.d_align) > 1) {
2467c478bd9Sstevel@tonic-gate 				if (j > sh->sh_addralign)
2477c478bd9Sstevel@tonic-gate 					sh->sh_addralign = (Xword)j;
2487c478bd9Sstevel@tonic-gate 
2497c478bd9Sstevel@tonic-gate 				if (sz % j != 0)
2507c478bd9Sstevel@tonic-gate 					sz += j - sz % j;
2517c478bd9Sstevel@tonic-gate 			}
2527c478bd9Sstevel@tonic-gate 			d->db_data.d_off = (off_t)sz;
2537c478bd9Sstevel@tonic-gate 			d->db_xoff = sz;
254df14233eSab 			sz += fsz;
2557c478bd9Sstevel@tonic-gate 		}
2567c478bd9Sstevel@tonic-gate 
257df14233eSab 		sh->sh_size = (Xword) sz;
2587c478bd9Sstevel@tonic-gate 		/*
2597c478bd9Sstevel@tonic-gate 		 * We want to take into account the offsets for NOBITS
2607c478bd9Sstevel@tonic-gate 		 * sections and let the "sh_offsets" point to where
2617c478bd9Sstevel@tonic-gate 		 * the section would 'conceptually' fit within
2627c478bd9Sstevel@tonic-gate 		 * the file (as required by the ABI).
2637c478bd9Sstevel@tonic-gate 		 *
2647c478bd9Sstevel@tonic-gate 		 * But - we must also make sure that the NOBITS does
2657c478bd9Sstevel@tonic-gate 		 * not take up any actual space in the file.  We preserve
2667c478bd9Sstevel@tonic-gate 		 * the actual offset into the file in the 'hibit' variable.
2677c478bd9Sstevel@tonic-gate 		 * When we come to the first non-NOBITS section after a
2687c478bd9Sstevel@tonic-gate 		 * encountering a NOBITS section the hi counter is restored
2697c478bd9Sstevel@tonic-gate 		 * to its proper place in the file.
2707c478bd9Sstevel@tonic-gate 		 */
2717c478bd9Sstevel@tonic-gate 		if (sh->sh_type == SHT_NOBITS) {
2727c478bd9Sstevel@tonic-gate 			if (hibit == 0)
2737c478bd9Sstevel@tonic-gate 				hibit = hi;
2747c478bd9Sstevel@tonic-gate 		} else {
2757c478bd9Sstevel@tonic-gate 			if (hibit) {
2767c478bd9Sstevel@tonic-gate 				hi = hibit;
2777c478bd9Sstevel@tonic-gate 				hibit = 0;
2787c478bd9Sstevel@tonic-gate 			}
2797c478bd9Sstevel@tonic-gate 		}
2807c478bd9Sstevel@tonic-gate 		j = sh->sh_addralign;
2817c478bd9Sstevel@tonic-gate 		if ((fsz = hi % j) != 0)
2827c478bd9Sstevel@tonic-gate 			hi += j - fsz;
2837c478bd9Sstevel@tonic-gate 
2847c478bd9Sstevel@tonic-gate 		/* LINTED */
2857c478bd9Sstevel@tonic-gate 		sh->sh_offset = (Off)hi;
2867c478bd9Sstevel@tonic-gate 		hi += sz;
2877c478bd9Sstevel@tonic-gate 	}
2887c478bd9Sstevel@tonic-gate 
2897c478bd9Sstevel@tonic-gate 	/*
2907c478bd9Sstevel@tonic-gate 	 * if last section was a 'NOBITS' section then we need to
2917c478bd9Sstevel@tonic-gate 	 * restore the 'hi' counter to point to the end of the last
2927c478bd9Sstevel@tonic-gate 	 * non 'NOBITS' section.
2937c478bd9Sstevel@tonic-gate 	 */
2947c478bd9Sstevel@tonic-gate 	if (hibit) {
2957c478bd9Sstevel@tonic-gate 		hi = hibit;
2967c478bd9Sstevel@tonic-gate 		hibit = 0;
2977c478bd9Sstevel@tonic-gate 	}
2987c478bd9Sstevel@tonic-gate 
2997c478bd9Sstevel@tonic-gate 	/*
3007c478bd9Sstevel@tonic-gate 	 * Shdr table last
3017c478bd9Sstevel@tonic-gate 	 */
3027c478bd9Sstevel@tonic-gate 	if (scncnt != 0) {
3037c478bd9Sstevel@tonic-gate 		if (hi % FSZ_LONG != 0)
3047c478bd9Sstevel@tonic-gate 			hi += FSZ_LONG - hi % FSZ_LONG;
3057c478bd9Sstevel@tonic-gate 		/* LINTED */
3067c478bd9Sstevel@tonic-gate 		eh->e_shoff = (Off)hi;
3077c478bd9Sstevel@tonic-gate 		/*
3087c478bd9Sstevel@tonic-gate 		 * If we are using 'extended sections' then the
3097c478bd9Sstevel@tonic-gate 		 * e_shnum is stored in the sh_size field of the
3107c478bd9Sstevel@tonic-gate 		 * first section header.
3117c478bd9Sstevel@tonic-gate 		 *
3127c478bd9Sstevel@tonic-gate 		 * NOTE: we set e_shnum to '0' because it's specified
3137c478bd9Sstevel@tonic-gate 		 * this way in the gABI, and in the hopes that
3147c478bd9Sstevel@tonic-gate 		 * this will cause less problems to unaware
3157c478bd9Sstevel@tonic-gate 		 * tools then if we'd set it to SHN_XINDEX (0xffff).
3167c478bd9Sstevel@tonic-gate 		 */
3177c478bd9Sstevel@tonic-gate 		if (scncnt < SHN_LORESERVE)
3187c478bd9Sstevel@tonic-gate 			eh->e_shnum = scncnt;
3197c478bd9Sstevel@tonic-gate 		else {
3207c478bd9Sstevel@tonic-gate 			Shdr	*sh;
3217c478bd9Sstevel@tonic-gate 			sh = (Shdr *)elf->ed_hdscn->s_shdr;
3227c478bd9Sstevel@tonic-gate 			sh->sh_size = scncnt;
3237c478bd9Sstevel@tonic-gate 			eh->e_shnum = 0;
3247c478bd9Sstevel@tonic-gate 		}
3257c478bd9Sstevel@tonic-gate 		/* LINTED */
3267c478bd9Sstevel@tonic-gate 		eh->e_shentsize = (Half)elf_fsize(ELF_T_SHDR, 1, ver);
3277c478bd9Sstevel@tonic-gate 		hi += eh->e_shentsize * scncnt;
3287c478bd9Sstevel@tonic-gate 	} else {
3297c478bd9Sstevel@tonic-gate 		eh->e_shoff = 0;
3307c478bd9Sstevel@tonic-gate 		eh->e_shentsize = 0;
3317c478bd9Sstevel@tonic-gate 	}
3327c478bd9Sstevel@tonic-gate 
333df14233eSab #ifdef TEST_SIZE
334df14233eSab 	if (test_size(hi) == 0)
3357c478bd9Sstevel@tonic-gate 		return (0);
3367c478bd9Sstevel@tonic-gate #endif
3377c478bd9Sstevel@tonic-gate 
3387c478bd9Sstevel@tonic-gate 	return ((size_t)hi);
3397c478bd9Sstevel@tonic-gate }
3407c478bd9Sstevel@tonic-gate 
3417c478bd9Sstevel@tonic-gate 
3427c478bd9Sstevel@tonic-gate 
3437c478bd9Sstevel@tonic-gate static size_t
_elf_upd_usr(Elf * elf)3447c478bd9Sstevel@tonic-gate _elf_upd_usr(Elf * elf)
3457c478bd9Sstevel@tonic-gate {
3467c478bd9Sstevel@tonic-gate 	Lword		hi;
3477c478bd9Sstevel@tonic-gate 	Elf_Scn *	s;
348df14233eSab 	register Lword	sz;
3497c478bd9Sstevel@tonic-gate 	Ehdr *		eh = elf->ed_ehdr;
3507c478bd9Sstevel@tonic-gate 	unsigned	ver = eh->e_version;
3517c478bd9Sstevel@tonic-gate 	register char	*p = (char *)eh->e_ident;
352deec6be0SRichard Lowe 	size_t		scncnt;
3537c478bd9Sstevel@tonic-gate 
3547c478bd9Sstevel@tonic-gate 	/*
3557c478bd9Sstevel@tonic-gate 	 * Ehdr and Phdr table go first
3567c478bd9Sstevel@tonic-gate 	 */
3577c478bd9Sstevel@tonic-gate 	p[EI_MAG0] = ELFMAG0;
3587c478bd9Sstevel@tonic-gate 	p[EI_MAG1] = ELFMAG1;
3597c478bd9Sstevel@tonic-gate 	p[EI_MAG2] = ELFMAG2;
3607c478bd9Sstevel@tonic-gate 	p[EI_MAG3] = ELFMAG3;
3617c478bd9Sstevel@tonic-gate 	p[EI_CLASS] = ELFCLASS;
3627c478bd9Sstevel@tonic-gate 	/* LINTED */
3637c478bd9Sstevel@tonic-gate 	p[EI_VERSION] = (Byte)ver;
3647c478bd9Sstevel@tonic-gate 	hi = elf_fsize(ELF_T_EHDR, 1, ver);
3657c478bd9Sstevel@tonic-gate 	/* LINTED */
3667c478bd9Sstevel@tonic-gate 	eh->e_ehsize = (Half)hi;
3677c478bd9Sstevel@tonic-gate 
3687c478bd9Sstevel@tonic-gate 	/*
3697c478bd9Sstevel@tonic-gate 	 * If phnum is zero, phoff "should" be zero too,
3707c478bd9Sstevel@tonic-gate 	 * but the application is responsible for it.
3717c478bd9Sstevel@tonic-gate 	 * Allow a non-zero value here and update the
3727c478bd9Sstevel@tonic-gate 	 * hi water mark accordingly.
3737c478bd9Sstevel@tonic-gate 	 */
3747c478bd9Sstevel@tonic-gate 
3757c478bd9Sstevel@tonic-gate 	if (eh->e_phnum != 0)
3767c478bd9Sstevel@tonic-gate 		/* LINTED */
3777c478bd9Sstevel@tonic-gate 		eh->e_phentsize = (Half)elf_fsize(ELF_T_PHDR, 1, ver);
3787c478bd9Sstevel@tonic-gate 	else
3797c478bd9Sstevel@tonic-gate 		eh->e_phentsize = 0;
3807c478bd9Sstevel@tonic-gate 	if ((sz = eh->e_phoff + eh->e_phentsize * eh->e_phnum) > hi)
3817c478bd9Sstevel@tonic-gate 		hi = sz;
3827c478bd9Sstevel@tonic-gate 
3837c478bd9Sstevel@tonic-gate 	/*
3847c478bd9Sstevel@tonic-gate 	 * Loop through sections, skipping index zero.
3857c478bd9Sstevel@tonic-gate 	 * Compute section size before changing hi.
3867c478bd9Sstevel@tonic-gate 	 * Allow null buffers for NOBITS.
3877c478bd9Sstevel@tonic-gate 	 */
3887c478bd9Sstevel@tonic-gate 
389deec6be0SRichard Lowe 	if ((s = elf->ed_hdscn) == 0) {
3907c478bd9Sstevel@tonic-gate 		eh->e_shnum = 0;
391deec6be0SRichard Lowe 		scncnt = 0;
392deec6be0SRichard Lowe 	} else {
393deec6be0SRichard Lowe 		scncnt = 1;
3947c478bd9Sstevel@tonic-gate 		s = s->s_next;
3957c478bd9Sstevel@tonic-gate 	}
3967c478bd9Sstevel@tonic-gate 	for (; s != 0; s = s->s_next) {
3977c478bd9Sstevel@tonic-gate 		register Dnode	*d;
398df14233eSab 		register Lword	fsz, j;
3997c478bd9Sstevel@tonic-gate 		Shdr *sh = s->s_shdr;
4007c478bd9Sstevel@tonic-gate 
4017c478bd9Sstevel@tonic-gate 		if ((s->s_myflags & SF_READY) == 0)
4027c478bd9Sstevel@tonic-gate 			(void) _elfxx_cookscn(s);
4037c478bd9Sstevel@tonic-gate 
404deec6be0SRichard Lowe 		++scncnt;
4057c478bd9Sstevel@tonic-gate 		sz = 0;
4067c478bd9Sstevel@tonic-gate 		for (d = s->s_hdnode; d != 0; d = d->db_next) {
407df14233eSab 			if ((fsz = elf_fsize(d->db_data.d_type, 1,
4087c478bd9Sstevel@tonic-gate 			    ver)) == 0)
4097c478bd9Sstevel@tonic-gate 				return (0);
410df14233eSab 			j = _elf_msize(d->db_data.d_type, ver);
411df14233eSab 			fsz *= (d->db_data.d_size / j);
4127c478bd9Sstevel@tonic-gate 			d->db_osz = (size_t)fsz;
4137c478bd9Sstevel@tonic-gate 
4147c478bd9Sstevel@tonic-gate 			if ((sh->sh_type != SHT_NOBITS) &&
415df14233eSab 			    ((j = (d->db_data.d_off + d->db_osz)) > sz))
4167c478bd9Sstevel@tonic-gate 				sz = j;
4177c478bd9Sstevel@tonic-gate 		}
4187c478bd9Sstevel@tonic-gate 		if (sh->sh_size < sz) {
4197c478bd9Sstevel@tonic-gate 			_elf_seterr(EFMT_SCNSZ, 0);
4207c478bd9Sstevel@tonic-gate 			return (0);
4217c478bd9Sstevel@tonic-gate 		}
4227c478bd9Sstevel@tonic-gate 		if ((sh->sh_type != SHT_NOBITS) &&
4237c478bd9Sstevel@tonic-gate 		    (hi < sh->sh_offset + sh->sh_size))
4247c478bd9Sstevel@tonic-gate 			hi = sh->sh_offset + sh->sh_size;
4257c478bd9Sstevel@tonic-gate 	}
4267c478bd9Sstevel@tonic-gate 
4277c478bd9Sstevel@tonic-gate 	/*
4287c478bd9Sstevel@tonic-gate 	 * Shdr table last.  Comment above for phnum/phoff applies here.
4297c478bd9Sstevel@tonic-gate 	 */
430deec6be0SRichard Lowe 	if (scncnt != 0) {
4317c478bd9Sstevel@tonic-gate 		/* LINTED */
4327c478bd9Sstevel@tonic-gate 		eh->e_shentsize = (Half)elf_fsize(ELF_T_SHDR, 1, ver);
433deec6be0SRichard Lowe 		if (scncnt < SHN_LORESERVE) {
434deec6be0SRichard Lowe 			eh->e_shnum = scncnt;
435deec6be0SRichard Lowe 		} else {
436deec6be0SRichard Lowe 			Shdr *sh;
437deec6be0SRichard Lowe 			sh = (Shdr *)elf->ed_hdscn->s_shdr;
438deec6be0SRichard Lowe 			sh->sh_size = scncnt;
439deec6be0SRichard Lowe 			eh->e_shnum = 0;
440deec6be0SRichard Lowe 		}
441deec6be0SRichard Lowe 	} else {
4427c478bd9Sstevel@tonic-gate 		eh->e_shentsize = 0;
443deec6be0SRichard Lowe 	}
4447c478bd9Sstevel@tonic-gate 
445deec6be0SRichard Lowe 	if ((sz = eh->e_shoff + eh->e_shentsize * scncnt) > hi)
4467c478bd9Sstevel@tonic-gate 		hi = sz;
4477c478bd9Sstevel@tonic-gate 
448df14233eSab #ifdef TEST_SIZE
449df14233eSab 	if (test_size(hi) == 0)
4507c478bd9Sstevel@tonic-gate 		return (0);
4517c478bd9Sstevel@tonic-gate #endif
4527c478bd9Sstevel@tonic-gate 
4537c478bd9Sstevel@tonic-gate 	return ((size_t)hi);
4547c478bd9Sstevel@tonic-gate }
4557c478bd9Sstevel@tonic-gate 
4567c478bd9Sstevel@tonic-gate 
4577c478bd9Sstevel@tonic-gate static size_t
wrt(Elf * elf,Xword outsz,unsigned fill,int update_cmd)4587c478bd9Sstevel@tonic-gate wrt(Elf * elf, Xword outsz, unsigned fill, int update_cmd)
4597c478bd9Sstevel@tonic-gate {
4603c573fccSAli Bahrami 	Elf_Data		dst, src;
4613c573fccSAli Bahrami 	unsigned		flag;
4623c573fccSAli Bahrami 	Xword			hi, sz;
4633c573fccSAli Bahrami 	char			*image;
4643c573fccSAli Bahrami 	Elf_Scn			*s;
4653c573fccSAli Bahrami 	Ehdr			*eh = elf->ed_ehdr;
4663c573fccSAli Bahrami 	unsigned		ver = eh->e_version;
4673c573fccSAli Bahrami 	unsigned		encode;
4683c573fccSAli Bahrami 	int			byte;
4693c573fccSAli Bahrami 	_elf_execfill_func_t	*execfill_func;
4707c478bd9Sstevel@tonic-gate 
471ba2be530Sab 	/*
472ba2be530Sab 	 * If this is an ELF_C_WRIMAGE write, then we encode into the
473ba2be530Sab 	 * byte order of the system we are running on rather than that of
474ba2be530Sab 	 * of the object. For ld.so.1, this is the same order, but
475ba2be530Sab 	 * for 'ld', it might not be in the case where we are cross
476ba2be530Sab 	 * linking an object for a different target. In this later case,
477ba2be530Sab 	 * the linker-host byte order is necessary so that the linker can
478ba2be530Sab 	 * manipulate the resulting  image. It is expected that the linker
479ba2be530Sab 	 * will call elf_swap_wrimage() if necessary to convert the image
480ba2be530Sab 	 * to the target byte order.
481ba2be530Sab 	 */
482ba2be530Sab 	encode = (update_cmd == ELF_C_WRIMAGE) ? _elf_sys_encoding() :
483ba2be530Sab 	    eh->e_ident[EI_DATA];
484ba2be530Sab 
4857c478bd9Sstevel@tonic-gate 	/*
4867c478bd9Sstevel@tonic-gate 	 * Two issues can cause trouble for the output file.
4877c478bd9Sstevel@tonic-gate 	 * First, begin() with ELF_C_RDWR opens a file for both
4887c478bd9Sstevel@tonic-gate 	 * read and write.  On the write update(), the library
4897c478bd9Sstevel@tonic-gate 	 * has to read everything it needs before truncating
4907c478bd9Sstevel@tonic-gate 	 * the file.  Second, using mmap for both read and write
4917c478bd9Sstevel@tonic-gate 	 * is too tricky.  Consequently, the library disables mmap
4927c478bd9Sstevel@tonic-gate 	 * on the read side.  Using mmap for the output saves swap
4937c478bd9Sstevel@tonic-gate 	 * space, because that mapping is SHARED, not PRIVATE.
4947c478bd9Sstevel@tonic-gate 	 *
4957c478bd9Sstevel@tonic-gate 	 * If the file is write-only, there can be nothing of
4967c478bd9Sstevel@tonic-gate 	 * interest to bother with.
4977c478bd9Sstevel@tonic-gate 	 *
4987c478bd9Sstevel@tonic-gate 	 * The following reads the entire file, which might be
4997c478bd9Sstevel@tonic-gate 	 * more than necessary.  Better safe than sorry.
5007c478bd9Sstevel@tonic-gate 	 */
5017c478bd9Sstevel@tonic-gate 
5027c478bd9Sstevel@tonic-gate 	if ((elf->ed_myflags & EDF_READ) &&
5037c478bd9Sstevel@tonic-gate 	    (_elf_vm(elf, (size_t)0, elf->ed_fsz) != OK_YES))
5047c478bd9Sstevel@tonic-gate 		return (0);
5057c478bd9Sstevel@tonic-gate 
5067c478bd9Sstevel@tonic-gate 	flag = elf->ed_myflags & EDF_WRALLOC;
5077c478bd9Sstevel@tonic-gate 	if ((image = _elf_outmap(elf->ed_fd, outsz, &flag)) == 0)
5087c478bd9Sstevel@tonic-gate 		return (0);
5097c478bd9Sstevel@tonic-gate 
5107c478bd9Sstevel@tonic-gate 	if (flag == 0)
5117c478bd9Sstevel@tonic-gate 		elf->ed_myflags |= EDF_IMALLOC;
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 	/*
5147c478bd9Sstevel@tonic-gate 	 * If an error occurs below, a "dirty" bit may be cleared
5157c478bd9Sstevel@tonic-gate 	 * improperly.  To save a second pass through the file,
5167c478bd9Sstevel@tonic-gate 	 * this code sets the dirty bit on the elf descriptor
5177c478bd9Sstevel@tonic-gate 	 * when an error happens, assuming that will "cover" any
5187c478bd9Sstevel@tonic-gate 	 * accidents.
5197c478bd9Sstevel@tonic-gate 	 */
5207c478bd9Sstevel@tonic-gate 
5217c478bd9Sstevel@tonic-gate 	/*
5227c478bd9Sstevel@tonic-gate 	 * Hi is needed only when 'fill' is non-zero.
5237c478bd9Sstevel@tonic-gate 	 * Fill is non-zero only when the library
5247c478bd9Sstevel@tonic-gate 	 * calculates file/section/data buffer offsets.
5257c478bd9Sstevel@tonic-gate 	 * The lib guarantees they increase monotonically.
5267c478bd9Sstevel@tonic-gate 	 * That guarantees proper filling below.
5277c478bd9Sstevel@tonic-gate 	 */
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate 
5307c478bd9Sstevel@tonic-gate 	/*
5317c478bd9Sstevel@tonic-gate 	 * Ehdr first
5327c478bd9Sstevel@tonic-gate 	 */
5337c478bd9Sstevel@tonic-gate 
5347c478bd9Sstevel@tonic-gate 	src.d_buf = (Elf_Void *)eh;
5357c478bd9Sstevel@tonic-gate 	src.d_type = ELF_T_EHDR;
5367c478bd9Sstevel@tonic-gate 	src.d_size = sizeof (Ehdr);
5377c478bd9Sstevel@tonic-gate 	src.d_version = EV_CURRENT;
5387c478bd9Sstevel@tonic-gate 	dst.d_buf = (Elf_Void *)image;
5397c478bd9Sstevel@tonic-gate 	dst.d_size = eh->e_ehsize;
5407c478bd9Sstevel@tonic-gate 	dst.d_version = ver;
5417c478bd9Sstevel@tonic-gate 	if (elf_xlatetof(&dst, &src, encode) == 0)
5427c478bd9Sstevel@tonic-gate 		return (0);
5437c478bd9Sstevel@tonic-gate 	elf->ed_ehflags &= ~ELF_F_DIRTY;
5447c478bd9Sstevel@tonic-gate 	hi = eh->e_ehsize;
5457c478bd9Sstevel@tonic-gate 
5467c478bd9Sstevel@tonic-gate 	/*
5477c478bd9Sstevel@tonic-gate 	 * Phdr table if one exists
5487c478bd9Sstevel@tonic-gate 	 */
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate 	if (eh->e_phnum != 0) {
5517c478bd9Sstevel@tonic-gate 		unsigned	work;
5527c478bd9Sstevel@tonic-gate 		/*
5537c478bd9Sstevel@tonic-gate 		 * Unlike other library data, phdr table is
5547c478bd9Sstevel@tonic-gate 		 * in the user version.  Change src buffer
5557c478bd9Sstevel@tonic-gate 		 * version here, fix it after translation.
5567c478bd9Sstevel@tonic-gate 		 */
5577c478bd9Sstevel@tonic-gate 
5587c478bd9Sstevel@tonic-gate 		src.d_buf = (Elf_Void *)elf->ed_phdr;
5597c478bd9Sstevel@tonic-gate 		src.d_type = ELF_T_PHDR;
5607c478bd9Sstevel@tonic-gate 		src.d_size = elf->ed_phdrsz;
5617c478bd9Sstevel@tonic-gate 		ELFACCESSDATA(work, _elf_work)
5627c478bd9Sstevel@tonic-gate 		src.d_version = work;
5637c478bd9Sstevel@tonic-gate 		dst.d_buf = (Elf_Void *)(image + eh->e_phoff);
5647c478bd9Sstevel@tonic-gate 		dst.d_size = eh->e_phnum * eh->e_phentsize;
5657c478bd9Sstevel@tonic-gate 		hi = (Xword)(eh->e_phoff + dst.d_size);
5667c478bd9Sstevel@tonic-gate 		if (elf_xlatetof(&dst, &src, encode) == 0) {
5677c478bd9Sstevel@tonic-gate 			elf->ed_uflags |= ELF_F_DIRTY;
5687c478bd9Sstevel@tonic-gate 			return (0);
5697c478bd9Sstevel@tonic-gate 		}
5707c478bd9Sstevel@tonic-gate 		elf->ed_phflags &= ~ELF_F_DIRTY;
5717c478bd9Sstevel@tonic-gate 		src.d_version = EV_CURRENT;
5727c478bd9Sstevel@tonic-gate 	}
5737c478bd9Sstevel@tonic-gate 
5747c478bd9Sstevel@tonic-gate 	/*
5757c478bd9Sstevel@tonic-gate 	 * Loop through sections
5767c478bd9Sstevel@tonic-gate 	 */
5777c478bd9Sstevel@tonic-gate 
5787c478bd9Sstevel@tonic-gate 	ELFACCESSDATA(byte, _elf_byte);
5793c573fccSAli Bahrami 	ELFACCESSDATA(execfill_func, _elf_execfill_func);
5807c478bd9Sstevel@tonic-gate 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
5817c478bd9Sstevel@tonic-gate 		register Dnode	*d, *prevd;
5827c478bd9Sstevel@tonic-gate 		Xword		off = 0;
5837c478bd9Sstevel@tonic-gate 		Shdr		*sh = s->s_shdr;
5847c478bd9Sstevel@tonic-gate 		char		*start = image + sh->sh_offset;
5857c478bd9Sstevel@tonic-gate 		char		*here;
5863c573fccSAli Bahrami 		_elf_execfill_func_t	*execfill;
5873c573fccSAli Bahrami 
5883c573fccSAli Bahrami 		/* Only use the execfill function on SHF_EXECINSTR sections */
5893c573fccSAli Bahrami 		execfill = (sh->sh_flags & SHF_EXECINSTR) ?
5903c573fccSAli Bahrami 		    execfill_func : NULL;
5917c478bd9Sstevel@tonic-gate 
5927c478bd9Sstevel@tonic-gate 		/*
5937c478bd9Sstevel@tonic-gate 		 * Just "clean" DIRTY flag for "empty" sections.  Even if
5947c478bd9Sstevel@tonic-gate 		 * NOBITS needs padding, the next thing in the
5957c478bd9Sstevel@tonic-gate 		 * file will provide it.  (And if this NOBITS is
5967c478bd9Sstevel@tonic-gate 		 * the last thing in the file, no padding needed.)
5977c478bd9Sstevel@tonic-gate 		 */
5987c478bd9Sstevel@tonic-gate 		if ((sh->sh_type == SHT_NOBITS) ||
5997c478bd9Sstevel@tonic-gate 		    (sh->sh_type == SHT_NULL)) {
6007c478bd9Sstevel@tonic-gate 			d = s->s_hdnode, prevd = 0;
6017c478bd9Sstevel@tonic-gate 			for (; d != 0; prevd = d, d = d->db_next)
6027c478bd9Sstevel@tonic-gate 				d->db_uflags &= ~ELF_F_DIRTY;
6037c478bd9Sstevel@tonic-gate 			continue;
6047c478bd9Sstevel@tonic-gate 		}
6057c478bd9Sstevel@tonic-gate 		/*
6067c478bd9Sstevel@tonic-gate 		 * Clear out the memory between the end of the last
6077c478bd9Sstevel@tonic-gate 		 * section and the begining of this section.
6087c478bd9Sstevel@tonic-gate 		 */
6097c478bd9Sstevel@tonic-gate 		if (fill && (sh->sh_offset > hi)) {
6107c478bd9Sstevel@tonic-gate 			sz = sh->sh_offset - hi;
6117c478bd9Sstevel@tonic-gate 			(void) memset(start - sz, byte, sz);
6127c478bd9Sstevel@tonic-gate 		}
6137c478bd9Sstevel@tonic-gate 
6147c478bd9Sstevel@tonic-gate 
6157c478bd9Sstevel@tonic-gate 		for (d = s->s_hdnode, prevd = 0;
6167c478bd9Sstevel@tonic-gate 		    d != 0; prevd = d, d = d->db_next) {
6177c478bd9Sstevel@tonic-gate 			d->db_uflags &= ~ELF_F_DIRTY;
6187c478bd9Sstevel@tonic-gate 			here = start + d->db_data.d_off;
6197c478bd9Sstevel@tonic-gate 
6207c478bd9Sstevel@tonic-gate 			/*
6217c478bd9Sstevel@tonic-gate 			 * Clear out the memory between the end of the
6227c478bd9Sstevel@tonic-gate 			 * last update and the start of this data buffer.
6233c573fccSAli Bahrami 			 *
6243c573fccSAli Bahrami 			 * These buffers represent input sections that have
6253c573fccSAli Bahrami 			 * been concatenated into an output section, so if
6263c573fccSAli Bahrami 			 * the output section is executable (SHF_EXECINSTR)
6273c573fccSAli Bahrami 			 * and a fill function has been registered, use the
6283c573fccSAli Bahrami 			 * function. Otherwise, use the fill byte.
6297c478bd9Sstevel@tonic-gate 			 */
6307c478bd9Sstevel@tonic-gate 			if (fill && (d->db_data.d_off > off)) {
6317c478bd9Sstevel@tonic-gate 				sz = (Xword)(d->db_data.d_off - off);
6323c573fccSAli Bahrami 				if (execfill != NULL)
6333c573fccSAli Bahrami 					(* execfill)(start,
6343c573fccSAli Bahrami 					    here - start - sz, sz);
6353c573fccSAli Bahrami 				else
6363c573fccSAli Bahrami 					(void) memset(here - sz, byte, sz);
6377c478bd9Sstevel@tonic-gate 			}
6387c478bd9Sstevel@tonic-gate 
6397c478bd9Sstevel@tonic-gate 			if ((d->db_myflags & DBF_READY) == 0) {
6407c478bd9Sstevel@tonic-gate 				SCNLOCK(s);
6417c478bd9Sstevel@tonic-gate 				if (_elf_locked_getdata(s, &prevd->db_data) !=
6427c478bd9Sstevel@tonic-gate 				    &d->db_data) {
6437c478bd9Sstevel@tonic-gate 					elf->ed_uflags |= ELF_F_DIRTY;
6447c478bd9Sstevel@tonic-gate 					SCNUNLOCK(s);
6457c478bd9Sstevel@tonic-gate 					return (0);
6467c478bd9Sstevel@tonic-gate 				}
6477c478bd9Sstevel@tonic-gate 				SCNUNLOCK(s);
6487c478bd9Sstevel@tonic-gate 			}
6497c478bd9Sstevel@tonic-gate 			dst.d_buf = (Elf_Void *)here;
6507c478bd9Sstevel@tonic-gate 			dst.d_size = d->db_osz;
6517c478bd9Sstevel@tonic-gate 
6527c478bd9Sstevel@tonic-gate 			/*
6537c478bd9Sstevel@tonic-gate 			 * Copy the translated bits out to the destination
6547c478bd9Sstevel@tonic-gate 			 * image.
6557c478bd9Sstevel@tonic-gate 			 */
6567c478bd9Sstevel@tonic-gate 			if (elf_xlatetof(&dst, &d->db_data, encode) == 0) {
6577c478bd9Sstevel@tonic-gate 				elf->ed_uflags |= ELF_F_DIRTY;
6587c478bd9Sstevel@tonic-gate 				return (0);
6597c478bd9Sstevel@tonic-gate 			}
6607c478bd9Sstevel@tonic-gate 
6617c478bd9Sstevel@tonic-gate 			off = (Xword)(d->db_data.d_off + dst.d_size);
6627c478bd9Sstevel@tonic-gate 		}
6637c478bd9Sstevel@tonic-gate 		hi = sh->sh_offset + sh->sh_size;
6647c478bd9Sstevel@tonic-gate 	}
6657c478bd9Sstevel@tonic-gate 
6667c478bd9Sstevel@tonic-gate 	/*
6677c478bd9Sstevel@tonic-gate 	 * Shdr table last
6687c478bd9Sstevel@tonic-gate 	 */
6697c478bd9Sstevel@tonic-gate 
6707c478bd9Sstevel@tonic-gate 	if (fill && (eh->e_shoff > hi)) {
6717c478bd9Sstevel@tonic-gate 		sz = eh->e_shoff - hi;
6727c478bd9Sstevel@tonic-gate 		(void) memset(image + hi, byte, sz);
6737c478bd9Sstevel@tonic-gate 	}
6747c478bd9Sstevel@tonic-gate 
6757c478bd9Sstevel@tonic-gate 	src.d_type = ELF_T_SHDR;
6767c478bd9Sstevel@tonic-gate 	src.d_size = sizeof (Shdr);
6777c478bd9Sstevel@tonic-gate 	dst.d_buf = (Elf_Void *)(image + eh->e_shoff);
6787c478bd9Sstevel@tonic-gate 	dst.d_size = eh->e_shentsize;
6797c478bd9Sstevel@tonic-gate 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
6807c478bd9Sstevel@tonic-gate 		assert((uintptr_t)dst.d_buf < ((uintptr_t)image + outsz));
6817c478bd9Sstevel@tonic-gate 		s->s_shflags &= ~ELF_F_DIRTY;
6827c478bd9Sstevel@tonic-gate 		s->s_uflags &= ~ELF_F_DIRTY;
6837c478bd9Sstevel@tonic-gate 		src.d_buf = s->s_shdr;
6847c478bd9Sstevel@tonic-gate 
6857c478bd9Sstevel@tonic-gate 		if (elf_xlatetof(&dst, &src, encode) == 0) {
6867c478bd9Sstevel@tonic-gate 			elf->ed_uflags |= ELF_F_DIRTY;
6877c478bd9Sstevel@tonic-gate 			return (0);
6887c478bd9Sstevel@tonic-gate 		}
6897c478bd9Sstevel@tonic-gate 
6907c478bd9Sstevel@tonic-gate 		dst.d_buf = (char *)dst.d_buf + eh->e_shentsize;
6917c478bd9Sstevel@tonic-gate 	}
6927c478bd9Sstevel@tonic-gate 	/*
6937c478bd9Sstevel@tonic-gate 	 * ELF_C_WRIMAGE signifyes that we build the memory image, but
6947c478bd9Sstevel@tonic-gate 	 * that we do not actually write it to disk.  This is used
6957c478bd9Sstevel@tonic-gate 	 * by ld(1) to build up a full image of an elf file and then
6967c478bd9Sstevel@tonic-gate 	 * to process the file before it's actually written out to
6977c478bd9Sstevel@tonic-gate 	 * disk.  This saves ld(1) the overhead of having to write
6987c478bd9Sstevel@tonic-gate 	 * the image out to disk twice.
6997c478bd9Sstevel@tonic-gate 	 */
7007c478bd9Sstevel@tonic-gate 	if (update_cmd == ELF_C_WRIMAGE) {
7017c478bd9Sstevel@tonic-gate 		elf->ed_uflags &= ~ELF_F_DIRTY;
7027c478bd9Sstevel@tonic-gate 		elf->ed_wrimage = image;
7037c478bd9Sstevel@tonic-gate 		elf->ed_wrimagesz = outsz;
7047c478bd9Sstevel@tonic-gate 		return (outsz);
7057c478bd9Sstevel@tonic-gate 	}
7067c478bd9Sstevel@tonic-gate 
7077c478bd9Sstevel@tonic-gate 	if (_elf_outsync(elf->ed_fd, image, outsz,
7087c478bd9Sstevel@tonic-gate 	    ((elf->ed_myflags & EDF_IMALLOC) ? 0 : 1)) != 0) {
7097c478bd9Sstevel@tonic-gate 		elf->ed_uflags &= ~ELF_F_DIRTY;
7107c478bd9Sstevel@tonic-gate 		elf->ed_myflags &= ~EDF_IMALLOC;
7117c478bd9Sstevel@tonic-gate 		return (outsz);
7127c478bd9Sstevel@tonic-gate 	}
7137c478bd9Sstevel@tonic-gate 
7147c478bd9Sstevel@tonic-gate 	elf->ed_uflags |= ELF_F_DIRTY;
7157c478bd9Sstevel@tonic-gate 	return (0);
7167c478bd9Sstevel@tonic-gate }
7177c478bd9Sstevel@tonic-gate 
7187c478bd9Sstevel@tonic-gate 
7197c478bd9Sstevel@tonic-gate 
7207c478bd9Sstevel@tonic-gate 
7217c478bd9Sstevel@tonic-gate /*
7227c478bd9Sstevel@tonic-gate  * The following is a private interface between the linkers (ld & ld.so.1)
7237c478bd9Sstevel@tonic-gate  * and libelf:
7247c478bd9Sstevel@tonic-gate  *
7257c478bd9Sstevel@tonic-gate  * elf_update(elf, ELF_C_WRIMAGE)
7267c478bd9Sstevel@tonic-gate  *	This will cause full image representing the elf file
7277c478bd9Sstevel@tonic-gate  *	described by the elf pointer to be built in memory.  If the
7287c478bd9Sstevel@tonic-gate  *	elf pointer has a valid file descriptor associated with it
7297c478bd9Sstevel@tonic-gate  *	we will attempt to build the memory image from mmap()'ed
7307c478bd9Sstevel@tonic-gate  *	storage.  If the elf descriptor does not have a valid
7317c478bd9Sstevel@tonic-gate  *	file descriptor (opened with elf_begin(0, ELF_C_IMAGE, 0))
7327c478bd9Sstevel@tonic-gate  *	then the image will be allocated from dynamic memory (malloc()).
7337c478bd9Sstevel@tonic-gate  *
7347c478bd9Sstevel@tonic-gate  *	elf_update() will return the size of the memory image built
7357c478bd9Sstevel@tonic-gate  *	when sucessful.
7367c478bd9Sstevel@tonic-gate  *
7377c478bd9Sstevel@tonic-gate  *	When a subsequent call to elf_update() with ELF_C_WRITE as
7387c478bd9Sstevel@tonic-gate  *	the command is performed it will sync the image created
7397c478bd9Sstevel@tonic-gate  *	by ELF_C_WRIMAGE to disk (if fd available) and
7407c478bd9Sstevel@tonic-gate  *	free the memory allocated.
7417c478bd9Sstevel@tonic-gate  */
7427c478bd9Sstevel@tonic-gate 
7437c478bd9Sstevel@tonic-gate off_t
_elfxx_update(Elf * elf,Elf_Cmd cmd)7447c478bd9Sstevel@tonic-gate _elfxx_update(Elf * elf, Elf_Cmd cmd)
7457c478bd9Sstevel@tonic-gate {
7467c478bd9Sstevel@tonic-gate 	size_t		sz;
7477c478bd9Sstevel@tonic-gate 	unsigned	u;
7487c478bd9Sstevel@tonic-gate 	Ehdr		*eh = elf->ed_ehdr;
7497c478bd9Sstevel@tonic-gate 
7507c478bd9Sstevel@tonic-gate 	ELFWLOCK(elf)
7517c478bd9Sstevel@tonic-gate 	switch (cmd) {
7527c478bd9Sstevel@tonic-gate 	default:
7537c478bd9Sstevel@tonic-gate 		_elf_seterr(EREQ_UPDATE, 0);
7547c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
7557c478bd9Sstevel@tonic-gate 		return (-1);
7567c478bd9Sstevel@tonic-gate 
7577c478bd9Sstevel@tonic-gate 	case ELF_C_WRIMAGE:
7587c478bd9Sstevel@tonic-gate 		if ((elf->ed_myflags & EDF_WRITE) == 0) {
7597c478bd9Sstevel@tonic-gate 			_elf_seterr(EREQ_UPDWRT, 0);
7607c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf)
7617c478bd9Sstevel@tonic-gate 			return (-1);
7627c478bd9Sstevel@tonic-gate 		}
7637c478bd9Sstevel@tonic-gate 		break;
7647c478bd9Sstevel@tonic-gate 	case ELF_C_WRITE:
7657c478bd9Sstevel@tonic-gate 		if ((elf->ed_myflags & EDF_WRITE) == 0) {
7667c478bd9Sstevel@tonic-gate 			_elf_seterr(EREQ_UPDWRT, 0);
7677c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf)
7687c478bd9Sstevel@tonic-gate 			return (-1);
7697c478bd9Sstevel@tonic-gate 		}
7707c478bd9Sstevel@tonic-gate 		if (elf->ed_wrimage) {
7717c478bd9Sstevel@tonic-gate 			if (elf->ed_myflags & EDF_WRALLOC) {
7727c478bd9Sstevel@tonic-gate 				free(elf->ed_wrimage);
7737c478bd9Sstevel@tonic-gate 				/*
7747c478bd9Sstevel@tonic-gate 				 * The size is still returned even
7757c478bd9Sstevel@tonic-gate 				 * though nothing is actually written
7767c478bd9Sstevel@tonic-gate 				 * out.  This is just to be consistant
7777c478bd9Sstevel@tonic-gate 				 * with the rest of the interface.
7787c478bd9Sstevel@tonic-gate 				 */
7797c478bd9Sstevel@tonic-gate 				sz = elf->ed_wrimagesz;
7807c478bd9Sstevel@tonic-gate 				elf->ed_wrimage = 0;
7817c478bd9Sstevel@tonic-gate 				elf->ed_wrimagesz = 0;
7827c478bd9Sstevel@tonic-gate 				ELFUNLOCK(elf);
7837c478bd9Sstevel@tonic-gate 				return ((off_t)sz);
7847c478bd9Sstevel@tonic-gate 			}
7857c478bd9Sstevel@tonic-gate 			sz = _elf_outsync(elf->ed_fd, elf->ed_wrimage,
786ba2be530Sab 			    elf->ed_wrimagesz,
787ba2be530Sab 			    (elf->ed_myflags & EDF_IMALLOC ? 0 : 1));
7887c478bd9Sstevel@tonic-gate 			elf->ed_myflags &= ~EDF_IMALLOC;
7897c478bd9Sstevel@tonic-gate 			elf->ed_wrimage = 0;
7907c478bd9Sstevel@tonic-gate 			elf->ed_wrimagesz = 0;
7917c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf);
7927c478bd9Sstevel@tonic-gate 			return ((off_t)sz);
7937c478bd9Sstevel@tonic-gate 		}
7947c478bd9Sstevel@tonic-gate 		/* FALLTHROUGH */
7957c478bd9Sstevel@tonic-gate 	case ELF_C_NULL:
7967c478bd9Sstevel@tonic-gate 		break;
7977c478bd9Sstevel@tonic-gate 	}
7987c478bd9Sstevel@tonic-gate 
7997c478bd9Sstevel@tonic-gate 	if (eh == 0) {
8007c478bd9Sstevel@tonic-gate 		_elf_seterr(ESEQ_EHDR, 0);
8017c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
8027c478bd9Sstevel@tonic-gate 		return (-1);
8037c478bd9Sstevel@tonic-gate 	}
8047c478bd9Sstevel@tonic-gate 
8057c478bd9Sstevel@tonic-gate 	if ((u = eh->e_version) > EV_CURRENT) {
8067c478bd9Sstevel@tonic-gate 		_elf_seterr(EREQ_VER, 0);
8077c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
8087c478bd9Sstevel@tonic-gate 		return (-1);
8097c478bd9Sstevel@tonic-gate 	}
8107c478bd9Sstevel@tonic-gate 
8117c478bd9Sstevel@tonic-gate 	if (u == EV_NONE)
8127c478bd9Sstevel@tonic-gate 		eh->e_version = EV_CURRENT;
8137c478bd9Sstevel@tonic-gate 
8147c478bd9Sstevel@tonic-gate 	if ((u = eh->e_ident[EI_DATA]) == ELFDATANONE) {
8157c478bd9Sstevel@tonic-gate 		unsigned	encode;
8167c478bd9Sstevel@tonic-gate 
8177c478bd9Sstevel@tonic-gate 		ELFACCESSDATA(encode, _elf_encode)
8187c478bd9Sstevel@tonic-gate 		if (encode == ELFDATANONE) {
8197c478bd9Sstevel@tonic-gate 			_elf_seterr(EREQ_ENCODE, 0);
8207c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf)
8217c478bd9Sstevel@tonic-gate 			return (-1);
8227c478bd9Sstevel@tonic-gate 		}
8237c478bd9Sstevel@tonic-gate 		/* LINTED */
8247c478bd9Sstevel@tonic-gate 		eh->e_ident[EI_DATA] = (Byte)encode;
8257c478bd9Sstevel@tonic-gate 	}
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate 	u = 1;
8287c478bd9Sstevel@tonic-gate 	if (elf->ed_uflags & ELF_F_LAYOUT) {
8297c478bd9Sstevel@tonic-gate 		sz = _elf_upd_usr(elf);
8307c478bd9Sstevel@tonic-gate 		u = 0;
8317c478bd9Sstevel@tonic-gate 	} else
8327c478bd9Sstevel@tonic-gate 		sz = _elf_upd_lib(elf);
8337c478bd9Sstevel@tonic-gate 
8347c478bd9Sstevel@tonic-gate 	if ((sz != 0) && ((cmd == ELF_C_WRITE) || (cmd == ELF_C_WRIMAGE)))
8357c478bd9Sstevel@tonic-gate 		sz = wrt(elf, (Xword)sz, u, cmd);
8367c478bd9Sstevel@tonic-gate 
8377c478bd9Sstevel@tonic-gate 	if (sz == 0) {
8387c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
8397c478bd9Sstevel@tonic-gate 		return (-1);
8407c478bd9Sstevel@tonic-gate 	}
8417c478bd9Sstevel@tonic-gate 
8427c478bd9Sstevel@tonic-gate 	ELFUNLOCK(elf)
8437c478bd9Sstevel@tonic-gate 	return ((off_t)sz);
8447c478bd9Sstevel@tonic-gate }
8457c478bd9Sstevel@tonic-gate 
8467c478bd9Sstevel@tonic-gate 
847ba2be530Sab /*
848ba2be530Sab  * When wrt() processes an ELF_C_WRIMAGE request, the resulting image
849ba2be530Sab  * gets the byte order (encoding) of the platform running the linker
850ba2be530Sab  * rather than that of the target host. This allows the linker to modify
851ba2be530Sab  * the image, prior to flushing it to the output file. This routine
852ba2be530Sab  * is used to re-translate such an image into the byte order of the
853ba2be530Sab  * target host.
854ba2be530Sab  */
855ba2be530Sab int
_elfxx_swap_wrimage(Elf * elf)8565b764efaSab _elfxx_swap_wrimage(Elf *elf)
857ba2be530Sab {
858ba2be530Sab 	Elf_Data	dst, src;
859ba2be530Sab 	Elf_Scn		*s;
8605b764efaSab 	Ehdr		*eh;
8615b764efaSab 	Half		e_phnum;
8625b764efaSab 	unsigned	ver;
8635b764efaSab 	unsigned	encode;
864ba2be530Sab 
865ba2be530Sab 	/*
866ba2be530Sab 	 * Ehdr first
867ba2be530Sab 	 */
868ba2be530Sab 
8695b764efaSab 	ELFWLOCK(elf);
8705b764efaSab 	eh = elf->ed_ehdr;
8715b764efaSab 	e_phnum = eh->e_phnum;
8725b764efaSab 	ver = eh->e_version;
8735b764efaSab 	encode = eh->e_ident[EI_DATA];
8745b764efaSab 
875ba2be530Sab 	src.d_buf = dst.d_buf = (Elf_Void *)eh;
876ba2be530Sab 	src.d_type = dst.d_type = ELF_T_EHDR;
877ba2be530Sab 	src.d_size = dst.d_size = sizeof (Ehdr);
878ba2be530Sab 	src.d_version = dst.d_version = ver;
8795b764efaSab 	if (elf_xlatetof(&dst, &src, encode) == 0) {
8805b764efaSab 		ELFUNLOCK(elf);
881ba2be530Sab 		return (1);
8825b764efaSab 	}
883ba2be530Sab 
884ba2be530Sab 	/*
885ba2be530Sab 	 * Phdr table if one exists
886ba2be530Sab 	 */
887ba2be530Sab 
888ba2be530Sab 	if (e_phnum != 0) {
889ba2be530Sab 		unsigned	work;
890ba2be530Sab 		/*
891ba2be530Sab 		 * Unlike other library data, phdr table is
892ba2be530Sab 		 * in the user version.
893ba2be530Sab 		 */
894ba2be530Sab 
895ba2be530Sab 		src.d_buf = dst.d_buf = (Elf_Void *)elf->ed_phdr;
896ba2be530Sab 		src.d_type = dst.d_type = ELF_T_PHDR;
897ba2be530Sab 		src.d_size = dst.d_size = elf->ed_phdrsz;
898ba2be530Sab 		ELFACCESSDATA(work, _elf_work)
899ba2be530Sab 		src.d_version = dst.d_version = work;
900ba2be530Sab 		if (elf_xlatetof(&dst, &src, encode) == 0) {
9015b764efaSab 			ELFUNLOCK(elf);
902ba2be530Sab 			return (1);
903ba2be530Sab 		}
904ba2be530Sab 	}
905ba2be530Sab 
906ba2be530Sab 	/*
907ba2be530Sab 	 * Loop through sections
908ba2be530Sab 	 */
909ba2be530Sab 
910ba2be530Sab 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
911ba2be530Sab 		register Dnode	*d, *prevd;
912ba2be530Sab 		Shdr		*sh = s->s_shdr;
913ba2be530Sab 
914ba2be530Sab 		if ((sh->sh_type == SHT_NOBITS) || (sh->sh_type == SHT_NULL))
915ba2be530Sab 			continue;
916ba2be530Sab 
917ba2be530Sab 		for (d = s->s_hdnode, prevd = 0;
918ba2be530Sab 		    d != 0; prevd = d, d = d->db_next) {
919ba2be530Sab 
920ba2be530Sab 			if ((d->db_myflags & DBF_READY) == 0) {
921ba2be530Sab 				SCNLOCK(s);
922ba2be530Sab 				if (_elf_locked_getdata(s, &prevd->db_data) !=
923ba2be530Sab 				    &d->db_data) {
924ba2be530Sab 					SCNUNLOCK(s);
9255b764efaSab 					ELFUNLOCK(elf);
926ba2be530Sab 					return (1);
927ba2be530Sab 				}
928ba2be530Sab 				SCNUNLOCK(s);
929ba2be530Sab 			}
930ba2be530Sab 
931ba2be530Sab 			dst = d->db_data;
9325b764efaSab 			if (elf_xlatetof(&dst, &d->db_data, encode) == 0) {
9335b764efaSab 				ELFUNLOCK(elf);
934ba2be530Sab 				return (1);
9355b764efaSab 			}
936ba2be530Sab 		}
937ba2be530Sab 	}
938ba2be530Sab 
939ba2be530Sab 	/*
940ba2be530Sab 	 * Shdr table
941ba2be530Sab 	 */
942ba2be530Sab 
943ba2be530Sab 	src.d_type = dst.d_type = ELF_T_SHDR;
944ba2be530Sab 	src.d_version = dst.d_version = ver;
945ba2be530Sab 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
946ba2be530Sab 		src.d_buf = dst.d_buf = s->s_shdr;
947ba2be530Sab 		src.d_size = dst.d_size = sizeof (Shdr);
9485b764efaSab 		if (elf_xlatetof(&dst, &src, encode) == 0) {
9495b764efaSab 			ELFUNLOCK(elf);
950ba2be530Sab 			return (1);
9515b764efaSab 		}
952ba2be530Sab 	}
953ba2be530Sab 
9545b764efaSab 	ELFUNLOCK(elf);
955ba2be530Sab 	return (0);
956ba2be530Sab }
957ba2be530Sab 
958ba2be530Sab 
959ba2be530Sab 
9607c478bd9Sstevel@tonic-gate #ifndef _ELF64
9617c478bd9Sstevel@tonic-gate /* class-independent, only needs to be compiled once */
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate off_t
elf_update(Elf * elf,Elf_Cmd cmd)9647c478bd9Sstevel@tonic-gate elf_update(Elf *elf, Elf_Cmd cmd)
9657c478bd9Sstevel@tonic-gate {
9667c478bd9Sstevel@tonic-gate 	if (elf == 0)
9677c478bd9Sstevel@tonic-gate 		return (-1);
9687c478bd9Sstevel@tonic-gate 
9697c478bd9Sstevel@tonic-gate 	if (elf->ed_class == ELFCLASS32)
9707c478bd9Sstevel@tonic-gate 		return (_elf32_update(elf, cmd));
9717c478bd9Sstevel@tonic-gate 	else if (elf->ed_class == ELFCLASS64) {
9727c478bd9Sstevel@tonic-gate 		return (_elf64_update(elf, cmd));
9737c478bd9Sstevel@tonic-gate 	}
9747c478bd9Sstevel@tonic-gate 
9757c478bd9Sstevel@tonic-gate 	_elf_seterr(EREQ_CLASS, 0);
9767c478bd9Sstevel@tonic-gate 	return (-1);
9777c478bd9Sstevel@tonic-gate }
9787c478bd9Sstevel@tonic-gate 
979ba2be530Sab int
_elf_swap_wrimage(Elf * elf)980ba2be530Sab _elf_swap_wrimage(Elf *elf)
981ba2be530Sab {
982ba2be530Sab 	if (elf == 0)
983ba2be530Sab 		return (0);
984ba2be530Sab 
985ba2be530Sab 	if (elf->ed_class == ELFCLASS32)
986ba2be530Sab 		return (_elf32_swap_wrimage(elf));
987ba2be530Sab 
988ba2be530Sab 	if (elf->ed_class == ELFCLASS64)
989ba2be530Sab 		return (_elf64_swap_wrimage(elf));
990ba2be530Sab 
991ba2be530Sab 	_elf_seterr(EREQ_CLASS, 0);
992ba2be530Sab 	return (0);
993ba2be530Sab }
994ba2be530Sab 
9957c478bd9Sstevel@tonic-gate /*
9967c478bd9Sstevel@tonic-gate  * 4106312, 4106398, This is an ad-hoc means for the 32-bit
9977c478bd9Sstevel@tonic-gate  * Elf64 version of libld.so.3 to get around the limitation
9987c478bd9Sstevel@tonic-gate  * of a 32-bit d_off field.  This is only intended to be
9997c478bd9Sstevel@tonic-gate  * used by libld to relocate symbols in large NOBITS sections.
10007c478bd9Sstevel@tonic-gate  */
10017c478bd9Sstevel@tonic-gate Elf64_Off
_elf_getxoff(Elf_Data * d)10027c478bd9Sstevel@tonic-gate _elf_getxoff(Elf_Data * d)
10037c478bd9Sstevel@tonic-gate {
10047c478bd9Sstevel@tonic-gate 	return (((Dnode *)d)->db_xoff);
10057c478bd9Sstevel@tonic-gate }
10067c478bd9Sstevel@tonic-gate #endif /* !_ELF64 */
1007