xref: /illumos-gate/usr/src/cmd/sgs/libelf/common/update.c (revision 5b764efa)
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 /*
230bc07c75Srie  *	Copyright (c) 1988 AT&T
240bc07c75Srie  *	  All Rights Reserved
250bc07c75Srie  *
260bc07c75Srie  *
27ba2be530Sab  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
287c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
297c478bd9Sstevel@tonic-gate  */
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate #if !defined(_ELF64)
347c478bd9Sstevel@tonic-gate #pragma weak elf_update = _elf_update
357c478bd9Sstevel@tonic-gate #endif
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate #include "syn.h"
387c478bd9Sstevel@tonic-gate #include <memory.h>
397c478bd9Sstevel@tonic-gate #include <malloc.h>
407c478bd9Sstevel@tonic-gate #include <limits.h>
417c478bd9Sstevel@tonic-gate 
427c478bd9Sstevel@tonic-gate #include <sgs.h>
437c478bd9Sstevel@tonic-gate #include "decl.h"
447c478bd9Sstevel@tonic-gate #include "msg.h"
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate /*
477c478bd9Sstevel@tonic-gate  * This module is compiled twice, the second time having
487c478bd9Sstevel@tonic-gate  * -D_ELF64 defined.  The following set of macros, along
497c478bd9Sstevel@tonic-gate  * with machelf.h, represent the differences between the
507c478bd9Sstevel@tonic-gate  * two compilations.  Be careful *not* to add any class-
517c478bd9Sstevel@tonic-gate  * dependent code (anything that has elf32 or elf64 in the
527c478bd9Sstevel@tonic-gate  * name) to this code without hiding it behind a switch-
537c478bd9Sstevel@tonic-gate  * able macro like these.
547c478bd9Sstevel@tonic-gate  */
557c478bd9Sstevel@tonic-gate #if	defined(_ELF64)
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate #define	FSZ_LONG	ELF64_FSZ_XWORD
587c478bd9Sstevel@tonic-gate #define	ELFCLASS	ELFCLASS64
597c478bd9Sstevel@tonic-gate #define	_elf_snode_init	_elf64_snode_init
607c478bd9Sstevel@tonic-gate #define	_elfxx_cookscn	_elf64_cookscn
617c478bd9Sstevel@tonic-gate #define	_elf_upd_lib	_elf64_upd_lib
627c478bd9Sstevel@tonic-gate #define	elf_fsize	elf64_fsize
637c478bd9Sstevel@tonic-gate #define	_elf_entsz	_elf64_entsz
647c478bd9Sstevel@tonic-gate #define	_elf_msize	_elf64_msize
657c478bd9Sstevel@tonic-gate #define	_elf_upd_usr	_elf64_upd_usr
667c478bd9Sstevel@tonic-gate #define	wrt		wrt64
677c478bd9Sstevel@tonic-gate #define	elf_xlatetof	elf64_xlatetof
687c478bd9Sstevel@tonic-gate #define	_elfxx_update	_elf64_update
69ba2be530Sab #define	_elfxx_swap_wrimage	_elf64_swap_wrimage
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate #else	/* ELF32 */
727c478bd9Sstevel@tonic-gate 
737c478bd9Sstevel@tonic-gate #define	FSZ_LONG	ELF32_FSZ_WORD
747c478bd9Sstevel@tonic-gate #define	ELFCLASS	ELFCLASS32
757c478bd9Sstevel@tonic-gate #define	_elf_snode_init	_elf32_snode_init
767c478bd9Sstevel@tonic-gate #define	_elfxx_cookscn	_elf32_cookscn
777c478bd9Sstevel@tonic-gate #define	_elf_upd_lib	_elf32_upd_lib
787c478bd9Sstevel@tonic-gate #define	elf_fsize	elf32_fsize
797c478bd9Sstevel@tonic-gate #define	_elf_entsz	_elf32_entsz
807c478bd9Sstevel@tonic-gate #define	_elf_msize	_elf32_msize
817c478bd9Sstevel@tonic-gate #define	_elf_upd_usr	_elf32_upd_usr
827c478bd9Sstevel@tonic-gate #define	wrt		wrt32
837c478bd9Sstevel@tonic-gate #define	elf_xlatetof	elf32_xlatetof
847c478bd9Sstevel@tonic-gate #define	_elfxx_update	_elf32_update
85ba2be530Sab #define	_elfxx_swap_wrimage	_elf32_swap_wrimage
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate #endif /* ELF64 */
887c478bd9Sstevel@tonic-gate 
897c478bd9Sstevel@tonic-gate 
90df14233eSab #if	!(defined(_LP64) && defined(_ELF64))
91df14233eSab #define	TEST_SIZE
92df14233eSab 
93df14233eSab /*
94df14233eSab  * Handle the decision of whether the current linker can handle the
95df14233eSab  * desired object size, and if not, which error to issue.
96df14233eSab  *
97df14233eSab  * Input is the desired size. On failure, an error has been issued
98df14233eSab  * and 0 is returned. On success, 1 is returned.
99df14233eSab  */
100df14233eSab static int
101df14233eSab test_size(Lword hi)
102df14233eSab {
103df14233eSab #ifndef _LP64			/* 32-bit linker */
104df14233eSab 	/*
105df14233eSab 	 * A 32-bit libelf is limited to a 2GB output file. This limit
106df14233eSab 	 * is due to the fact that off_t is a signed value, and that
107df14233eSab 	 * libelf cannot support large file support:
108df14233eSab 	 *	- ABI reasons
109df14233eSab 	 *	- Memory use generally is 2x output file size anyway,
110df14233eSab 	 *		so lifting the file size limit will just send
111df14233eSab 	 *		you crashing into the 32-bit VM limit.
112df14233eSab 	 * If the output is an ELFCLASS64 object, or an ELFCLASS32 object
113df14233eSab 	 * under 4GB, switching to the 64-bit version of libelf will help.
114df14233eSab 	 * However, an ELFCLASS32 object must not exceed 4GB.
115df14233eSab 	 */
116df14233eSab 	if (hi > INT_MAX) {	/* Bigger than 2GB */
117df14233eSab #ifndef _ELF64
118df14233eSab 		/* ELFCLASS32 object is fundamentally too big? */
119df14233eSab 		if (hi > UINT_MAX) {
120df14233eSab 			_elf_seterr(EFMT_FBIG_CLASS32, 0);
121df14233eSab 			return (0);
122df14233eSab 		}
123df14233eSab #endif				/* _ELF64 */
124df14233eSab 
125df14233eSab 		/* Should switch to the 64-bit libelf? */
126df14233eSab 		_elf_seterr(EFMT_FBIG_LARGEFILE, 0);
127df14233eSab 		return (0);
128df14233eSab 	}
129df14233eSab #endif				/* !_LP64 */
130df14233eSab 
131df14233eSab 
132df14233eSab #if	defined(_LP64) && !defined(_ELF64)   /* 64-bit linker, ELFCLASS32 */
133df14233eSab 	/*
134df14233eSab 	 * A 64-bit linker can produce any size output
135df14233eSab 	 * file, but if the resulting file is ELFCLASS32,
136df14233eSab 	 * it must not exceed 4GB.
137df14233eSab 	 */
138df14233eSab 	if (hi > UINT_MAX) {
139df14233eSab 		_elf_seterr(EFMT_FBIG_CLASS32, 0);
140df14233eSab 		return (0);
141df14233eSab 	}
142df14233eSab #endif
143df14233eSab 
144df14233eSab 	return (1);
145df14233eSab }
146df14233eSab #endif				/* TEST_SIZE */
147df14233eSab 
1487c478bd9Sstevel@tonic-gate /*
1497c478bd9Sstevel@tonic-gate  * Output file update
1507c478bd9Sstevel@tonic-gate  *	These functions walk an Elf structure, update its information,
1517c478bd9Sstevel@tonic-gate  *	and optionally write the output file.  Because the application
1527c478bd9Sstevel@tonic-gate  *	may control of the output file layout, two upd_... routines
1537c478bd9Sstevel@tonic-gate  *	exist.  They're similar but too different to merge cleanly.
1547c478bd9Sstevel@tonic-gate  *
1557c478bd9Sstevel@tonic-gate  *	The library defines a "dirty" bit to force parts of the file
1567c478bd9Sstevel@tonic-gate  *	to be written on update.  These routines ignore the dirty bit
1577c478bd9Sstevel@tonic-gate  *	and do everything.  A minimal update routine might be useful
1587c478bd9Sstevel@tonic-gate  *	someday.
1597c478bd9Sstevel@tonic-gate  */
1607c478bd9Sstevel@tonic-gate 
1617c478bd9Sstevel@tonic-gate static size_t
1627c478bd9Sstevel@tonic-gate _elf_upd_lib(Elf * elf)
1637c478bd9Sstevel@tonic-gate {
1647c478bd9Sstevel@tonic-gate 	NOTE(ASSUMING_PROTECTED(*elf))
1657c478bd9Sstevel@tonic-gate 	Lword		hi;
1667c478bd9Sstevel@tonic-gate 	Lword		hibit;
1677c478bd9Sstevel@tonic-gate 	Elf_Scn *	s;
168df14233eSab 	register Lword	sz;
1697c478bd9Sstevel@tonic-gate 	Ehdr *		eh = elf->ed_ehdr;
1707c478bd9Sstevel@tonic-gate 	unsigned	ver = eh->e_version;
1717c478bd9Sstevel@tonic-gate 	register char	*p = (char *)eh->e_ident;
1727c478bd9Sstevel@tonic-gate 	size_t		scncnt;
1737c478bd9Sstevel@tonic-gate 
1747c478bd9Sstevel@tonic-gate 	/*
1757c478bd9Sstevel@tonic-gate 	 * Ehdr and Phdr table go first
1767c478bd9Sstevel@tonic-gate 	 */
1777c478bd9Sstevel@tonic-gate 	p[EI_MAG0] = ELFMAG0;
1787c478bd9Sstevel@tonic-gate 	p[EI_MAG1] = ELFMAG1;
1797c478bd9Sstevel@tonic-gate 	p[EI_MAG2] = ELFMAG2;
1807c478bd9Sstevel@tonic-gate 	p[EI_MAG3] = ELFMAG3;
1817c478bd9Sstevel@tonic-gate 	p[EI_CLASS] = ELFCLASS;
1827c478bd9Sstevel@tonic-gate 	/* LINTED */
1837c478bd9Sstevel@tonic-gate 	p[EI_VERSION] = (Byte)ver;
1847c478bd9Sstevel@tonic-gate 	hi = elf_fsize(ELF_T_EHDR, 1, ver);
1857c478bd9Sstevel@tonic-gate 	/* LINTED */
1867c478bd9Sstevel@tonic-gate 	eh->e_ehsize = (Half)hi;
1877c478bd9Sstevel@tonic-gate 	if (eh->e_phnum != 0) {
1887c478bd9Sstevel@tonic-gate 		/* LINTED */
1897c478bd9Sstevel@tonic-gate 		eh->e_phentsize = (Half)elf_fsize(ELF_T_PHDR, 1, ver);
1907c478bd9Sstevel@tonic-gate 		/* LINTED */
1917c478bd9Sstevel@tonic-gate 		eh->e_phoff = (Off)hi;
1927c478bd9Sstevel@tonic-gate 		hi += eh->e_phentsize * eh->e_phnum;
1937c478bd9Sstevel@tonic-gate 	} else {
1947c478bd9Sstevel@tonic-gate 		eh->e_phoff = 0;
1957c478bd9Sstevel@tonic-gate 		eh->e_phentsize = 0;
1967c478bd9Sstevel@tonic-gate 	}
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate 	/*
1990bc07c75Srie 	 * Obtain the first section header.  Typically, this section has NULL
2000bc07c75Srie 	 * contents, however in the case of Extended ELF Sections this section
2010bc07c75Srie 	 * is used to hold an alternative e_shnum, e_shstrndx and e_phnum.
2020bc07c75Srie 	 * On initial allocation (see _elf_snode) the elements of this section
2030bc07c75Srie 	 * would have been zeroed.  The e_shnum is initialized later, after the
2040bc07c75Srie 	 * section header count has been determined.  The e_shstrndx and
2050bc07c75Srie 	 * e_phnum may have already been initialized by the caller (for example,
2060bc07c75Srie 	 * gelf_update_shdr() in mcs(1)).
2077c478bd9Sstevel@tonic-gate 	 */
2087c478bd9Sstevel@tonic-gate 	if ((s = elf->ed_hdscn) == 0) {
2097c478bd9Sstevel@tonic-gate 		eh->e_shnum = 0;
2107c478bd9Sstevel@tonic-gate 		scncnt = 0;
2117c478bd9Sstevel@tonic-gate 	} else {
2127c478bd9Sstevel@tonic-gate 		s = s->s_next;
2130bc07c75Srie 		scncnt = 1;
2147c478bd9Sstevel@tonic-gate 	}
2157c478bd9Sstevel@tonic-gate 
2160bc07c75Srie 	/*
2170bc07c75Srie 	 * Loop through sections.  Compute section size before changing hi.
2180bc07c75Srie 	 * Allow null buffers for NOBITS.
2190bc07c75Srie 	 */
2207c478bd9Sstevel@tonic-gate 	hibit = 0;
2217c478bd9Sstevel@tonic-gate 	for (; s != 0; s = s->s_next) {
2227c478bd9Sstevel@tonic-gate 		register Dnode	*d;
2237c478bd9Sstevel@tonic-gate 		register Lword	fsz, j;
2247c478bd9Sstevel@tonic-gate 		Shdr *sh = s->s_shdr;
2257c478bd9Sstevel@tonic-gate 
2267c478bd9Sstevel@tonic-gate 		scncnt++;
2277c478bd9Sstevel@tonic-gate 		if (sh->sh_type == SHT_NULL) {
2287c478bd9Sstevel@tonic-gate 			*sh = _elf_snode_init.sb_shdr;
2297c478bd9Sstevel@tonic-gate 			continue;
2307c478bd9Sstevel@tonic-gate 		}
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate 		if ((s->s_myflags & SF_READY) == 0)
2337c478bd9Sstevel@tonic-gate 			(void) _elfxx_cookscn(s);
2347c478bd9Sstevel@tonic-gate 
2357c478bd9Sstevel@tonic-gate 		sh->sh_addralign = 1;
236df14233eSab 		if ((sz = (Lword)_elf_entsz(elf, sh->sh_type, ver)) != 0)
2377c478bd9Sstevel@tonic-gate 			/* LINTED */
2387c478bd9Sstevel@tonic-gate 			sh->sh_entsize = (Half)sz;
2397c478bd9Sstevel@tonic-gate 		sz = 0;
2407c478bd9Sstevel@tonic-gate 		for (d = s->s_hdnode; d != 0; d = d->db_next) {
2417c478bd9Sstevel@tonic-gate 			if ((fsz = elf_fsize(d->db_data.d_type,
2427c478bd9Sstevel@tonic-gate 			    1, ver)) == 0)
2437c478bd9Sstevel@tonic-gate 				return (0);
2447c478bd9Sstevel@tonic-gate 
2457c478bd9Sstevel@tonic-gate 			j = _elf_msize(d->db_data.d_type, ver);
2467c478bd9Sstevel@tonic-gate 			fsz *= (d->db_data.d_size / j);
2477c478bd9Sstevel@tonic-gate 			d->db_osz = (size_t)fsz;
2487c478bd9Sstevel@tonic-gate 			if ((j = d->db_data.d_align) > 1) {
2497c478bd9Sstevel@tonic-gate 				if (j > sh->sh_addralign)
2507c478bd9Sstevel@tonic-gate 					sh->sh_addralign = (Xword)j;
2517c478bd9Sstevel@tonic-gate 
2527c478bd9Sstevel@tonic-gate 				if (sz % j != 0)
2537c478bd9Sstevel@tonic-gate 					sz += j - sz % j;
2547c478bd9Sstevel@tonic-gate 			}
2557c478bd9Sstevel@tonic-gate 			d->db_data.d_off = (off_t)sz;
2567c478bd9Sstevel@tonic-gate 			d->db_xoff = sz;
257df14233eSab 			sz += fsz;
2587c478bd9Sstevel@tonic-gate 		}
2597c478bd9Sstevel@tonic-gate 
260df14233eSab 		sh->sh_size = (Xword) sz;
2617c478bd9Sstevel@tonic-gate 		/*
2627c478bd9Sstevel@tonic-gate 		 * We want to take into account the offsets for NOBITS
2637c478bd9Sstevel@tonic-gate 		 * sections and let the "sh_offsets" point to where
2647c478bd9Sstevel@tonic-gate 		 * the section would 'conceptually' fit within
2657c478bd9Sstevel@tonic-gate 		 * the file (as required by the ABI).
2667c478bd9Sstevel@tonic-gate 		 *
2677c478bd9Sstevel@tonic-gate 		 * But - we must also make sure that the NOBITS does
2687c478bd9Sstevel@tonic-gate 		 * not take up any actual space in the file.  We preserve
2697c478bd9Sstevel@tonic-gate 		 * the actual offset into the file in the 'hibit' variable.
2707c478bd9Sstevel@tonic-gate 		 * When we come to the first non-NOBITS section after a
2717c478bd9Sstevel@tonic-gate 		 * encountering a NOBITS section the hi counter is restored
2727c478bd9Sstevel@tonic-gate 		 * to its proper place in the file.
2737c478bd9Sstevel@tonic-gate 		 */
2747c478bd9Sstevel@tonic-gate 		if (sh->sh_type == SHT_NOBITS) {
2757c478bd9Sstevel@tonic-gate 			if (hibit == 0)
2767c478bd9Sstevel@tonic-gate 				hibit = hi;
2777c478bd9Sstevel@tonic-gate 		} else {
2787c478bd9Sstevel@tonic-gate 			if (hibit) {
2797c478bd9Sstevel@tonic-gate 				hi = hibit;
2807c478bd9Sstevel@tonic-gate 				hibit = 0;
2817c478bd9Sstevel@tonic-gate 			}
2827c478bd9Sstevel@tonic-gate 		}
2837c478bd9Sstevel@tonic-gate 		j = sh->sh_addralign;
2847c478bd9Sstevel@tonic-gate 		if ((fsz = hi % j) != 0)
2857c478bd9Sstevel@tonic-gate 			hi += j - fsz;
2867c478bd9Sstevel@tonic-gate 
2877c478bd9Sstevel@tonic-gate 		/* LINTED */
2887c478bd9Sstevel@tonic-gate 		sh->sh_offset = (Off)hi;
2897c478bd9Sstevel@tonic-gate 		hi += sz;
2907c478bd9Sstevel@tonic-gate 	}
2917c478bd9Sstevel@tonic-gate 
2927c478bd9Sstevel@tonic-gate 	/*
2937c478bd9Sstevel@tonic-gate 	 * if last section was a 'NOBITS' section then we need to
2947c478bd9Sstevel@tonic-gate 	 * restore the 'hi' counter to point to the end of the last
2957c478bd9Sstevel@tonic-gate 	 * non 'NOBITS' section.
2967c478bd9Sstevel@tonic-gate 	 */
2977c478bd9Sstevel@tonic-gate 	if (hibit) {
2987c478bd9Sstevel@tonic-gate 		hi = hibit;
2997c478bd9Sstevel@tonic-gate 		hibit = 0;
3007c478bd9Sstevel@tonic-gate 	}
3017c478bd9Sstevel@tonic-gate 
3027c478bd9Sstevel@tonic-gate 	/*
3037c478bd9Sstevel@tonic-gate 	 * Shdr table last
3047c478bd9Sstevel@tonic-gate 	 */
3057c478bd9Sstevel@tonic-gate 	if (scncnt != 0) {
3067c478bd9Sstevel@tonic-gate 		if (hi % FSZ_LONG != 0)
3077c478bd9Sstevel@tonic-gate 			hi += FSZ_LONG - hi % FSZ_LONG;
3087c478bd9Sstevel@tonic-gate 		/* LINTED */
3097c478bd9Sstevel@tonic-gate 		eh->e_shoff = (Off)hi;
3107c478bd9Sstevel@tonic-gate 		/*
3117c478bd9Sstevel@tonic-gate 		 * If we are using 'extended sections' then the
3127c478bd9Sstevel@tonic-gate 		 * e_shnum is stored in the sh_size field of the
3137c478bd9Sstevel@tonic-gate 		 * first section header.
3147c478bd9Sstevel@tonic-gate 		 *
3157c478bd9Sstevel@tonic-gate 		 * NOTE: we set e_shnum to '0' because it's specified
3167c478bd9Sstevel@tonic-gate 		 * this way in the gABI, and in the hopes that
3177c478bd9Sstevel@tonic-gate 		 * this will cause less problems to unaware
3187c478bd9Sstevel@tonic-gate 		 * tools then if we'd set it to SHN_XINDEX (0xffff).
3197c478bd9Sstevel@tonic-gate 		 */
3207c478bd9Sstevel@tonic-gate 		if (scncnt < SHN_LORESERVE)
3217c478bd9Sstevel@tonic-gate 			eh->e_shnum = scncnt;
3227c478bd9Sstevel@tonic-gate 		else {
3237c478bd9Sstevel@tonic-gate 			Shdr	*sh;
3247c478bd9Sstevel@tonic-gate 			sh = (Shdr *)elf->ed_hdscn->s_shdr;
3257c478bd9Sstevel@tonic-gate 			sh->sh_size = scncnt;
3267c478bd9Sstevel@tonic-gate 			eh->e_shnum = 0;
3277c478bd9Sstevel@tonic-gate 		}
3287c478bd9Sstevel@tonic-gate 		/* LINTED */
3297c478bd9Sstevel@tonic-gate 		eh->e_shentsize = (Half)elf_fsize(ELF_T_SHDR, 1, ver);
3307c478bd9Sstevel@tonic-gate 		hi += eh->e_shentsize * scncnt;
3317c478bd9Sstevel@tonic-gate 	} else {
3327c478bd9Sstevel@tonic-gate 		eh->e_shoff = 0;
3337c478bd9Sstevel@tonic-gate 		eh->e_shentsize = 0;
3347c478bd9Sstevel@tonic-gate 	}
3357c478bd9Sstevel@tonic-gate 
336df14233eSab #ifdef TEST_SIZE
337df14233eSab 	if (test_size(hi) == 0)
3387c478bd9Sstevel@tonic-gate 		return (0);
3397c478bd9Sstevel@tonic-gate #endif
3407c478bd9Sstevel@tonic-gate 
3417c478bd9Sstevel@tonic-gate 	return ((size_t)hi);
3427c478bd9Sstevel@tonic-gate }
3437c478bd9Sstevel@tonic-gate 
3447c478bd9Sstevel@tonic-gate 
3457c478bd9Sstevel@tonic-gate 
3467c478bd9Sstevel@tonic-gate static size_t
3477c478bd9Sstevel@tonic-gate _elf_upd_usr(Elf * elf)
3487c478bd9Sstevel@tonic-gate {
3497c478bd9Sstevel@tonic-gate 	NOTE(ASSUMING_PROTECTED(*elf))
3507c478bd9Sstevel@tonic-gate 	Lword		hi;
3517c478bd9Sstevel@tonic-gate 	Elf_Scn *	s;
352df14233eSab 	register Lword	sz;
3537c478bd9Sstevel@tonic-gate 	Ehdr *		eh = elf->ed_ehdr;
3547c478bd9Sstevel@tonic-gate 	unsigned	ver = eh->e_version;
3557c478bd9Sstevel@tonic-gate 	register char	*p = (char *)eh->e_ident;
3567c478bd9Sstevel@tonic-gate 
3577c478bd9Sstevel@tonic-gate 
3587c478bd9Sstevel@tonic-gate 	/*
3597c478bd9Sstevel@tonic-gate 	 * Ehdr and Phdr table go first
3607c478bd9Sstevel@tonic-gate 	 */
3617c478bd9Sstevel@tonic-gate 	p[EI_MAG0] = ELFMAG0;
3627c478bd9Sstevel@tonic-gate 	p[EI_MAG1] = ELFMAG1;
3637c478bd9Sstevel@tonic-gate 	p[EI_MAG2] = ELFMAG2;
3647c478bd9Sstevel@tonic-gate 	p[EI_MAG3] = ELFMAG3;
3657c478bd9Sstevel@tonic-gate 	p[EI_CLASS] = ELFCLASS;
3667c478bd9Sstevel@tonic-gate 	/* LINTED */
3677c478bd9Sstevel@tonic-gate 	p[EI_VERSION] = (Byte)ver;
3687c478bd9Sstevel@tonic-gate 	hi = elf_fsize(ELF_T_EHDR, 1, ver);
3697c478bd9Sstevel@tonic-gate 	/* LINTED */
3707c478bd9Sstevel@tonic-gate 	eh->e_ehsize = (Half)hi;
3717c478bd9Sstevel@tonic-gate 
3727c478bd9Sstevel@tonic-gate 	/*
3737c478bd9Sstevel@tonic-gate 	 * If phnum is zero, phoff "should" be zero too,
3747c478bd9Sstevel@tonic-gate 	 * but the application is responsible for it.
3757c478bd9Sstevel@tonic-gate 	 * Allow a non-zero value here and update the
3767c478bd9Sstevel@tonic-gate 	 * hi water mark accordingly.
3777c478bd9Sstevel@tonic-gate 	 */
3787c478bd9Sstevel@tonic-gate 
3797c478bd9Sstevel@tonic-gate 	if (eh->e_phnum != 0)
3807c478bd9Sstevel@tonic-gate 		/* LINTED */
3817c478bd9Sstevel@tonic-gate 		eh->e_phentsize = (Half)elf_fsize(ELF_T_PHDR, 1, ver);
3827c478bd9Sstevel@tonic-gate 	else
3837c478bd9Sstevel@tonic-gate 		eh->e_phentsize = 0;
3847c478bd9Sstevel@tonic-gate 	if ((sz = eh->e_phoff + eh->e_phentsize * eh->e_phnum) > hi)
3857c478bd9Sstevel@tonic-gate 		hi = sz;
3867c478bd9Sstevel@tonic-gate 
3877c478bd9Sstevel@tonic-gate 	/*
3887c478bd9Sstevel@tonic-gate 	 * Loop through sections, skipping index zero.
3897c478bd9Sstevel@tonic-gate 	 * Compute section size before changing hi.
3907c478bd9Sstevel@tonic-gate 	 * Allow null buffers for NOBITS.
3917c478bd9Sstevel@tonic-gate 	 */
3927c478bd9Sstevel@tonic-gate 
3937c478bd9Sstevel@tonic-gate 	if ((s = elf->ed_hdscn) == 0)
3947c478bd9Sstevel@tonic-gate 		eh->e_shnum = 0;
3957c478bd9Sstevel@tonic-gate 	else {
3967c478bd9Sstevel@tonic-gate 		eh->e_shnum = 1;
3977c478bd9Sstevel@tonic-gate 		*(Shdr*)s->s_shdr = _elf_snode_init.sb_shdr;
3987c478bd9Sstevel@tonic-gate 		s = s->s_next;
3997c478bd9Sstevel@tonic-gate 	}
4007c478bd9Sstevel@tonic-gate 	for (; s != 0; s = s->s_next) {
4017c478bd9Sstevel@tonic-gate 		register Dnode	*d;
402df14233eSab 		register Lword	fsz, j;
4037c478bd9Sstevel@tonic-gate 		Shdr *sh = s->s_shdr;
4047c478bd9Sstevel@tonic-gate 
4057c478bd9Sstevel@tonic-gate 		if ((s->s_myflags & SF_READY) == 0)
4067c478bd9Sstevel@tonic-gate 			(void) _elfxx_cookscn(s);
4077c478bd9Sstevel@tonic-gate 
4087c478bd9Sstevel@tonic-gate 		++eh->e_shnum;
4097c478bd9Sstevel@tonic-gate 		sz = 0;
4107c478bd9Sstevel@tonic-gate 		for (d = s->s_hdnode; d != 0; d = d->db_next) {
411df14233eSab 			if ((fsz = elf_fsize(d->db_data.d_type, 1,
4127c478bd9Sstevel@tonic-gate 			    ver)) == 0)
4137c478bd9Sstevel@tonic-gate 				return (0);
414df14233eSab 			j = _elf_msize(d->db_data.d_type, ver);
415df14233eSab 			fsz *= (d->db_data.d_size / j);
4167c478bd9Sstevel@tonic-gate 			d->db_osz = (size_t)fsz;
4177c478bd9Sstevel@tonic-gate 
4187c478bd9Sstevel@tonic-gate 			if ((sh->sh_type != SHT_NOBITS) &&
419df14233eSab 			    ((j = (d->db_data.d_off + d->db_osz)) > sz))
4207c478bd9Sstevel@tonic-gate 				sz = j;
4217c478bd9Sstevel@tonic-gate 		}
4227c478bd9Sstevel@tonic-gate 		if (sh->sh_size < sz) {
4237c478bd9Sstevel@tonic-gate 			_elf_seterr(EFMT_SCNSZ, 0);
4247c478bd9Sstevel@tonic-gate 			return (0);
4257c478bd9Sstevel@tonic-gate 		}
4267c478bd9Sstevel@tonic-gate 		if ((sh->sh_type != SHT_NOBITS) &&
4277c478bd9Sstevel@tonic-gate 		    (hi < sh->sh_offset + sh->sh_size))
4287c478bd9Sstevel@tonic-gate 			hi = sh->sh_offset + sh->sh_size;
4297c478bd9Sstevel@tonic-gate 	}
4307c478bd9Sstevel@tonic-gate 
4317c478bd9Sstevel@tonic-gate 	/*
4327c478bd9Sstevel@tonic-gate 	 * Shdr table last.  Comment above for phnum/phoff applies here.
4337c478bd9Sstevel@tonic-gate 	 */
4347c478bd9Sstevel@tonic-gate 	if (eh->e_shnum != 0)
4357c478bd9Sstevel@tonic-gate 		/* LINTED */
4367c478bd9Sstevel@tonic-gate 		eh->e_shentsize = (Half)elf_fsize(ELF_T_SHDR, 1, ver);
4377c478bd9Sstevel@tonic-gate 	else
4387c478bd9Sstevel@tonic-gate 		eh->e_shentsize = 0;
4397c478bd9Sstevel@tonic-gate 
4407c478bd9Sstevel@tonic-gate 	if ((sz = eh->e_shoff + eh->e_shentsize * eh->e_shnum) > hi)
4417c478bd9Sstevel@tonic-gate 		hi = sz;
4427c478bd9Sstevel@tonic-gate 
443df14233eSab #ifdef TEST_SIZE
444df14233eSab 	if (test_size(hi) == 0)
4457c478bd9Sstevel@tonic-gate 		return (0);
4467c478bd9Sstevel@tonic-gate #endif
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate 	return ((size_t)hi);
4497c478bd9Sstevel@tonic-gate }
4507c478bd9Sstevel@tonic-gate 
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate static size_t
4537c478bd9Sstevel@tonic-gate wrt(Elf * elf, Xword outsz, unsigned fill, int update_cmd)
4547c478bd9Sstevel@tonic-gate {
4557c478bd9Sstevel@tonic-gate 	NOTE(ASSUMING_PROTECTED(*elf))
4567c478bd9Sstevel@tonic-gate 	Elf_Data	dst, src;
4577c478bd9Sstevel@tonic-gate 	unsigned	flag;
4587c478bd9Sstevel@tonic-gate 	Xword		hi, sz;
4597c478bd9Sstevel@tonic-gate 	char		*image;
4607c478bd9Sstevel@tonic-gate 	Elf_Scn		*s;
4617c478bd9Sstevel@tonic-gate 	Ehdr		*eh = elf->ed_ehdr;
4627c478bd9Sstevel@tonic-gate 	unsigned	ver = eh->e_version;
463ba2be530Sab 	unsigned	encode;
4647c478bd9Sstevel@tonic-gate 	int		byte;
4657c478bd9Sstevel@tonic-gate 
466ba2be530Sab 	/*
467ba2be530Sab 	 * If this is an ELF_C_WRIMAGE write, then we encode into the
468ba2be530Sab 	 * byte order of the system we are running on rather than that of
469ba2be530Sab 	 * of the object. For ld.so.1, this is the same order, but
470ba2be530Sab 	 * for 'ld', it might not be in the case where we are cross
471ba2be530Sab 	 * linking an object for a different target. In this later case,
472ba2be530Sab 	 * the linker-host byte order is necessary so that the linker can
473ba2be530Sab 	 * manipulate the resulting  image. It is expected that the linker
474ba2be530Sab 	 * will call elf_swap_wrimage() if necessary to convert the image
475ba2be530Sab 	 * to the target byte order.
476ba2be530Sab 	 */
477ba2be530Sab 	encode = (update_cmd == ELF_C_WRIMAGE) ? _elf_sys_encoding() :
478ba2be530Sab 	    eh->e_ident[EI_DATA];
479ba2be530Sab 
4807c478bd9Sstevel@tonic-gate 	/*
4817c478bd9Sstevel@tonic-gate 	 * Two issues can cause trouble for the output file.
4827c478bd9Sstevel@tonic-gate 	 * First, begin() with ELF_C_RDWR opens a file for both
4837c478bd9Sstevel@tonic-gate 	 * read and write.  On the write update(), the library
4847c478bd9Sstevel@tonic-gate 	 * has to read everything it needs before truncating
4857c478bd9Sstevel@tonic-gate 	 * the file.  Second, using mmap for both read and write
4867c478bd9Sstevel@tonic-gate 	 * is too tricky.  Consequently, the library disables mmap
4877c478bd9Sstevel@tonic-gate 	 * on the read side.  Using mmap for the output saves swap
4887c478bd9Sstevel@tonic-gate 	 * space, because that mapping is SHARED, not PRIVATE.
4897c478bd9Sstevel@tonic-gate 	 *
4907c478bd9Sstevel@tonic-gate 	 * If the file is write-only, there can be nothing of
4917c478bd9Sstevel@tonic-gate 	 * interest to bother with.
4927c478bd9Sstevel@tonic-gate 	 *
4937c478bd9Sstevel@tonic-gate 	 * The following reads the entire file, which might be
4947c478bd9Sstevel@tonic-gate 	 * more than necessary.  Better safe than sorry.
4957c478bd9Sstevel@tonic-gate 	 */
4967c478bd9Sstevel@tonic-gate 
4977c478bd9Sstevel@tonic-gate 	if ((elf->ed_myflags & EDF_READ) &&
4987c478bd9Sstevel@tonic-gate 	    (_elf_vm(elf, (size_t)0, elf->ed_fsz) != OK_YES))
4997c478bd9Sstevel@tonic-gate 		return (0);
5007c478bd9Sstevel@tonic-gate 
5017c478bd9Sstevel@tonic-gate 	flag = elf->ed_myflags & EDF_WRALLOC;
5027c478bd9Sstevel@tonic-gate 	if ((image = _elf_outmap(elf->ed_fd, outsz, &flag)) == 0)
5037c478bd9Sstevel@tonic-gate 		return (0);
5047c478bd9Sstevel@tonic-gate 
5057c478bd9Sstevel@tonic-gate 	if (flag == 0)
5067c478bd9Sstevel@tonic-gate 		elf->ed_myflags |= EDF_IMALLOC;
5077c478bd9Sstevel@tonic-gate 
5087c478bd9Sstevel@tonic-gate 	/*
5097c478bd9Sstevel@tonic-gate 	 * If an error occurs below, a "dirty" bit may be cleared
5107c478bd9Sstevel@tonic-gate 	 * improperly.  To save a second pass through the file,
5117c478bd9Sstevel@tonic-gate 	 * this code sets the dirty bit on the elf descriptor
5127c478bd9Sstevel@tonic-gate 	 * when an error happens, assuming that will "cover" any
5137c478bd9Sstevel@tonic-gate 	 * accidents.
5147c478bd9Sstevel@tonic-gate 	 */
5157c478bd9Sstevel@tonic-gate 
5167c478bd9Sstevel@tonic-gate 	/*
5177c478bd9Sstevel@tonic-gate 	 * Hi is needed only when 'fill' is non-zero.
5187c478bd9Sstevel@tonic-gate 	 * Fill is non-zero only when the library
5197c478bd9Sstevel@tonic-gate 	 * calculates file/section/data buffer offsets.
5207c478bd9Sstevel@tonic-gate 	 * The lib guarantees they increase monotonically.
5217c478bd9Sstevel@tonic-gate 	 * That guarantees proper filling below.
5227c478bd9Sstevel@tonic-gate 	 */
5237c478bd9Sstevel@tonic-gate 
5247c478bd9Sstevel@tonic-gate 
5257c478bd9Sstevel@tonic-gate 	/*
5267c478bd9Sstevel@tonic-gate 	 * Ehdr first
5277c478bd9Sstevel@tonic-gate 	 */
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate 	src.d_buf = (Elf_Void *)eh;
5307c478bd9Sstevel@tonic-gate 	src.d_type = ELF_T_EHDR;
5317c478bd9Sstevel@tonic-gate 	src.d_size = sizeof (Ehdr);
5327c478bd9Sstevel@tonic-gate 	src.d_version = EV_CURRENT;
5337c478bd9Sstevel@tonic-gate 	dst.d_buf = (Elf_Void *)image;
5347c478bd9Sstevel@tonic-gate 	dst.d_size = eh->e_ehsize;
5357c478bd9Sstevel@tonic-gate 	dst.d_version = ver;
5367c478bd9Sstevel@tonic-gate 	if (elf_xlatetof(&dst, &src, encode) == 0)
5377c478bd9Sstevel@tonic-gate 		return (0);
5387c478bd9Sstevel@tonic-gate 	elf->ed_ehflags &= ~ELF_F_DIRTY;
5397c478bd9Sstevel@tonic-gate 	hi = eh->e_ehsize;
5407c478bd9Sstevel@tonic-gate 
5417c478bd9Sstevel@tonic-gate 	/*
5427c478bd9Sstevel@tonic-gate 	 * Phdr table if one exists
5437c478bd9Sstevel@tonic-gate 	 */
5447c478bd9Sstevel@tonic-gate 
5457c478bd9Sstevel@tonic-gate 	if (eh->e_phnum != 0) {
5467c478bd9Sstevel@tonic-gate 		unsigned	work;
5477c478bd9Sstevel@tonic-gate 		/*
5487c478bd9Sstevel@tonic-gate 		 * Unlike other library data, phdr table is
5497c478bd9Sstevel@tonic-gate 		 * in the user version.  Change src buffer
5507c478bd9Sstevel@tonic-gate 		 * version here, fix it after translation.
5517c478bd9Sstevel@tonic-gate 		 */
5527c478bd9Sstevel@tonic-gate 
5537c478bd9Sstevel@tonic-gate 		src.d_buf = (Elf_Void *)elf->ed_phdr;
5547c478bd9Sstevel@tonic-gate 		src.d_type = ELF_T_PHDR;
5557c478bd9Sstevel@tonic-gate 		src.d_size = elf->ed_phdrsz;
5567c478bd9Sstevel@tonic-gate 		ELFACCESSDATA(work, _elf_work)
5577c478bd9Sstevel@tonic-gate 		src.d_version = work;
5587c478bd9Sstevel@tonic-gate 		dst.d_buf = (Elf_Void *)(image + eh->e_phoff);
5597c478bd9Sstevel@tonic-gate 		dst.d_size = eh->e_phnum * eh->e_phentsize;
5607c478bd9Sstevel@tonic-gate 		hi = (Xword)(eh->e_phoff + dst.d_size);
5617c478bd9Sstevel@tonic-gate 		if (elf_xlatetof(&dst, &src, encode) == 0) {
5627c478bd9Sstevel@tonic-gate 			elf->ed_uflags |= ELF_F_DIRTY;
5637c478bd9Sstevel@tonic-gate 			return (0);
5647c478bd9Sstevel@tonic-gate 		}
5657c478bd9Sstevel@tonic-gate 		elf->ed_phflags &= ~ELF_F_DIRTY;
5667c478bd9Sstevel@tonic-gate 		src.d_version = EV_CURRENT;
5677c478bd9Sstevel@tonic-gate 	}
5687c478bd9Sstevel@tonic-gate 
5697c478bd9Sstevel@tonic-gate 	/*
5707c478bd9Sstevel@tonic-gate 	 * Loop through sections
5717c478bd9Sstevel@tonic-gate 	 */
5727c478bd9Sstevel@tonic-gate 
5737c478bd9Sstevel@tonic-gate 	ELFACCESSDATA(byte, _elf_byte);
5747c478bd9Sstevel@tonic-gate 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
5757c478bd9Sstevel@tonic-gate 		register Dnode	*d, *prevd;
5767c478bd9Sstevel@tonic-gate 		Xword		off = 0;
5777c478bd9Sstevel@tonic-gate 		Shdr		*sh = s->s_shdr;
5787c478bd9Sstevel@tonic-gate 		char		*start = image + sh->sh_offset;
5797c478bd9Sstevel@tonic-gate 		char		*here;
5807c478bd9Sstevel@tonic-gate 
5817c478bd9Sstevel@tonic-gate 		/*
5827c478bd9Sstevel@tonic-gate 		 * Just "clean" DIRTY flag for "empty" sections.  Even if
5837c478bd9Sstevel@tonic-gate 		 * NOBITS needs padding, the next thing in the
5847c478bd9Sstevel@tonic-gate 		 * file will provide it.  (And if this NOBITS is
5857c478bd9Sstevel@tonic-gate 		 * the last thing in the file, no padding needed.)
5867c478bd9Sstevel@tonic-gate 		 */
5877c478bd9Sstevel@tonic-gate 		if ((sh->sh_type == SHT_NOBITS) ||
5887c478bd9Sstevel@tonic-gate 		    (sh->sh_type == SHT_NULL)) {
5897c478bd9Sstevel@tonic-gate 			d = s->s_hdnode, prevd = 0;
5907c478bd9Sstevel@tonic-gate 			for (; d != 0; prevd = d, d = d->db_next)
5917c478bd9Sstevel@tonic-gate 				d->db_uflags &= ~ELF_F_DIRTY;
5927c478bd9Sstevel@tonic-gate 			continue;
5937c478bd9Sstevel@tonic-gate 		}
5947c478bd9Sstevel@tonic-gate 		/*
5957c478bd9Sstevel@tonic-gate 		 * Clear out the memory between the end of the last
5967c478bd9Sstevel@tonic-gate 		 * section and the begining of this section.
5977c478bd9Sstevel@tonic-gate 		 */
5987c478bd9Sstevel@tonic-gate 		if (fill && (sh->sh_offset > hi)) {
5997c478bd9Sstevel@tonic-gate 			sz = sh->sh_offset - hi;
6007c478bd9Sstevel@tonic-gate 			(void) memset(start - sz, byte, sz);
6017c478bd9Sstevel@tonic-gate 		}
6027c478bd9Sstevel@tonic-gate 
6037c478bd9Sstevel@tonic-gate 
6047c478bd9Sstevel@tonic-gate 		for (d = s->s_hdnode, prevd = 0;
6057c478bd9Sstevel@tonic-gate 		    d != 0; prevd = d, d = d->db_next) {
6067c478bd9Sstevel@tonic-gate 			d->db_uflags &= ~ELF_F_DIRTY;
6077c478bd9Sstevel@tonic-gate 			here = start + d->db_data.d_off;
6087c478bd9Sstevel@tonic-gate 
6097c478bd9Sstevel@tonic-gate 			/*
6107c478bd9Sstevel@tonic-gate 			 * Clear out the memory between the end of the
6117c478bd9Sstevel@tonic-gate 			 * last update and the start of this data buffer.
6127c478bd9Sstevel@tonic-gate 			 */
6137c478bd9Sstevel@tonic-gate 			if (fill && (d->db_data.d_off > off)) {
6147c478bd9Sstevel@tonic-gate 				sz = (Xword)(d->db_data.d_off - off);
6157c478bd9Sstevel@tonic-gate 				(void) memset(here - sz, byte, sz);
6167c478bd9Sstevel@tonic-gate 			}
6177c478bd9Sstevel@tonic-gate 
6187c478bd9Sstevel@tonic-gate 			if ((d->db_myflags & DBF_READY) == 0) {
6197c478bd9Sstevel@tonic-gate 				SCNLOCK(s);
6207c478bd9Sstevel@tonic-gate 				if (_elf_locked_getdata(s, &prevd->db_data) !=
6217c478bd9Sstevel@tonic-gate 				    &d->db_data) {
6227c478bd9Sstevel@tonic-gate 					elf->ed_uflags |= ELF_F_DIRTY;
6237c478bd9Sstevel@tonic-gate 					SCNUNLOCK(s);
6247c478bd9Sstevel@tonic-gate 					return (0);
6257c478bd9Sstevel@tonic-gate 				}
6267c478bd9Sstevel@tonic-gate 				SCNUNLOCK(s);
6277c478bd9Sstevel@tonic-gate 			}
6287c478bd9Sstevel@tonic-gate 			dst.d_buf = (Elf_Void *)here;
6297c478bd9Sstevel@tonic-gate 			dst.d_size = d->db_osz;
6307c478bd9Sstevel@tonic-gate 
6317c478bd9Sstevel@tonic-gate 			/*
6327c478bd9Sstevel@tonic-gate 			 * Copy the translated bits out to the destination
6337c478bd9Sstevel@tonic-gate 			 * image.
6347c478bd9Sstevel@tonic-gate 			 */
6357c478bd9Sstevel@tonic-gate 			if (elf_xlatetof(&dst, &d->db_data, encode) == 0) {
6367c478bd9Sstevel@tonic-gate 				elf->ed_uflags |= ELF_F_DIRTY;
6377c478bd9Sstevel@tonic-gate 				return (0);
6387c478bd9Sstevel@tonic-gate 			}
6397c478bd9Sstevel@tonic-gate 
6407c478bd9Sstevel@tonic-gate 			off = (Xword)(d->db_data.d_off + dst.d_size);
6417c478bd9Sstevel@tonic-gate 		}
6427c478bd9Sstevel@tonic-gate 		hi = sh->sh_offset + sh->sh_size;
6437c478bd9Sstevel@tonic-gate 	}
6447c478bd9Sstevel@tonic-gate 
6457c478bd9Sstevel@tonic-gate 	/*
6467c478bd9Sstevel@tonic-gate 	 * Shdr table last
6477c478bd9Sstevel@tonic-gate 	 */
6487c478bd9Sstevel@tonic-gate 
6497c478bd9Sstevel@tonic-gate 	if (fill && (eh->e_shoff > hi)) {
6507c478bd9Sstevel@tonic-gate 		sz = eh->e_shoff - hi;
6517c478bd9Sstevel@tonic-gate 		(void) memset(image + hi, byte, sz);
6527c478bd9Sstevel@tonic-gate 	}
6537c478bd9Sstevel@tonic-gate 
6547c478bd9Sstevel@tonic-gate 	src.d_type = ELF_T_SHDR;
6557c478bd9Sstevel@tonic-gate 	src.d_size = sizeof (Shdr);
6567c478bd9Sstevel@tonic-gate 	dst.d_buf = (Elf_Void *)(image + eh->e_shoff);
6577c478bd9Sstevel@tonic-gate 	dst.d_size = eh->e_shentsize;
6587c478bd9Sstevel@tonic-gate 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
6597c478bd9Sstevel@tonic-gate 		assert((uintptr_t)dst.d_buf < ((uintptr_t)image + outsz));
6607c478bd9Sstevel@tonic-gate 		s->s_shflags &= ~ELF_F_DIRTY;
6617c478bd9Sstevel@tonic-gate 		s->s_uflags &= ~ELF_F_DIRTY;
6627c478bd9Sstevel@tonic-gate 		src.d_buf = s->s_shdr;
6637c478bd9Sstevel@tonic-gate 
6647c478bd9Sstevel@tonic-gate 		if (elf_xlatetof(&dst, &src, encode) == 0) {
6657c478bd9Sstevel@tonic-gate 			elf->ed_uflags |= ELF_F_DIRTY;
6667c478bd9Sstevel@tonic-gate 			return (0);
6677c478bd9Sstevel@tonic-gate 		}
6687c478bd9Sstevel@tonic-gate 
6697c478bd9Sstevel@tonic-gate 		dst.d_buf = (char *)dst.d_buf + eh->e_shentsize;
6707c478bd9Sstevel@tonic-gate 	}
6717c478bd9Sstevel@tonic-gate 	/*
6727c478bd9Sstevel@tonic-gate 	 * ELF_C_WRIMAGE signifyes that we build the memory image, but
6737c478bd9Sstevel@tonic-gate 	 * that we do not actually write it to disk.  This is used
6747c478bd9Sstevel@tonic-gate 	 * by ld(1) to build up a full image of an elf file and then
6757c478bd9Sstevel@tonic-gate 	 * to process the file before it's actually written out to
6767c478bd9Sstevel@tonic-gate 	 * disk.  This saves ld(1) the overhead of having to write
6777c478bd9Sstevel@tonic-gate 	 * the image out to disk twice.
6787c478bd9Sstevel@tonic-gate 	 */
6797c478bd9Sstevel@tonic-gate 	if (update_cmd == ELF_C_WRIMAGE) {
6807c478bd9Sstevel@tonic-gate 		elf->ed_uflags &= ~ELF_F_DIRTY;
6817c478bd9Sstevel@tonic-gate 		elf->ed_wrimage = image;
6827c478bd9Sstevel@tonic-gate 		elf->ed_wrimagesz = outsz;
6837c478bd9Sstevel@tonic-gate 		return (outsz);
6847c478bd9Sstevel@tonic-gate 	}
6857c478bd9Sstevel@tonic-gate 
6867c478bd9Sstevel@tonic-gate 	if (_elf_outsync(elf->ed_fd, image, outsz,
6877c478bd9Sstevel@tonic-gate 	    ((elf->ed_myflags & EDF_IMALLOC) ? 0 : 1)) != 0) {
6887c478bd9Sstevel@tonic-gate 		elf->ed_uflags &= ~ELF_F_DIRTY;
6897c478bd9Sstevel@tonic-gate 		elf->ed_myflags &= ~EDF_IMALLOC;
6907c478bd9Sstevel@tonic-gate 		return (outsz);
6917c478bd9Sstevel@tonic-gate 	}
6927c478bd9Sstevel@tonic-gate 
6937c478bd9Sstevel@tonic-gate 	elf->ed_uflags |= ELF_F_DIRTY;
6947c478bd9Sstevel@tonic-gate 	return (0);
6957c478bd9Sstevel@tonic-gate }
6967c478bd9Sstevel@tonic-gate 
6977c478bd9Sstevel@tonic-gate 
6987c478bd9Sstevel@tonic-gate 
6997c478bd9Sstevel@tonic-gate 
7007c478bd9Sstevel@tonic-gate /*
7017c478bd9Sstevel@tonic-gate  * The following is a private interface between the linkers (ld & ld.so.1)
7027c478bd9Sstevel@tonic-gate  * and libelf:
7037c478bd9Sstevel@tonic-gate  *
7047c478bd9Sstevel@tonic-gate  * elf_update(elf, ELF_C_WRIMAGE)
7057c478bd9Sstevel@tonic-gate  *	This will cause full image representing the elf file
7067c478bd9Sstevel@tonic-gate  *	described by the elf pointer to be built in memory.  If the
7077c478bd9Sstevel@tonic-gate  *	elf pointer has a valid file descriptor associated with it
7087c478bd9Sstevel@tonic-gate  *	we will attempt to build the memory image from mmap()'ed
7097c478bd9Sstevel@tonic-gate  *	storage.  If the elf descriptor does not have a valid
7107c478bd9Sstevel@tonic-gate  *	file descriptor (opened with elf_begin(0, ELF_C_IMAGE, 0))
7117c478bd9Sstevel@tonic-gate  *	then the image will be allocated from dynamic memory (malloc()).
7127c478bd9Sstevel@tonic-gate  *
7137c478bd9Sstevel@tonic-gate  *	elf_update() will return the size of the memory image built
7147c478bd9Sstevel@tonic-gate  *	when sucessful.
7157c478bd9Sstevel@tonic-gate  *
7167c478bd9Sstevel@tonic-gate  *	When a subsequent call to elf_update() with ELF_C_WRITE as
7177c478bd9Sstevel@tonic-gate  *	the command is performed it will sync the image created
7187c478bd9Sstevel@tonic-gate  *	by ELF_C_WRIMAGE to disk (if fd available) and
7197c478bd9Sstevel@tonic-gate  *	free the memory allocated.
7207c478bd9Sstevel@tonic-gate  */
7217c478bd9Sstevel@tonic-gate 
7227c478bd9Sstevel@tonic-gate off_t
7237c478bd9Sstevel@tonic-gate _elfxx_update(Elf * elf, Elf_Cmd cmd)
7247c478bd9Sstevel@tonic-gate {
7257c478bd9Sstevel@tonic-gate 	size_t		sz;
7267c478bd9Sstevel@tonic-gate 	unsigned	u;
7277c478bd9Sstevel@tonic-gate 	Ehdr		*eh = elf->ed_ehdr;
7287c478bd9Sstevel@tonic-gate 
7297c478bd9Sstevel@tonic-gate 	if (elf == 0)
7307c478bd9Sstevel@tonic-gate 		return (-1);
7317c478bd9Sstevel@tonic-gate 
7327c478bd9Sstevel@tonic-gate 	ELFWLOCK(elf)
7337c478bd9Sstevel@tonic-gate 	switch (cmd) {
7347c478bd9Sstevel@tonic-gate 	default:
7357c478bd9Sstevel@tonic-gate 		_elf_seterr(EREQ_UPDATE, 0);
7367c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
7377c478bd9Sstevel@tonic-gate 		return (-1);
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate 	case ELF_C_WRIMAGE:
7407c478bd9Sstevel@tonic-gate 		if ((elf->ed_myflags & EDF_WRITE) == 0) {
7417c478bd9Sstevel@tonic-gate 			_elf_seterr(EREQ_UPDWRT, 0);
7427c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf)
7437c478bd9Sstevel@tonic-gate 			return (-1);
7447c478bd9Sstevel@tonic-gate 		}
7457c478bd9Sstevel@tonic-gate 		break;
7467c478bd9Sstevel@tonic-gate 	case ELF_C_WRITE:
7477c478bd9Sstevel@tonic-gate 		if ((elf->ed_myflags & EDF_WRITE) == 0) {
7487c478bd9Sstevel@tonic-gate 			_elf_seterr(EREQ_UPDWRT, 0);
7497c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf)
7507c478bd9Sstevel@tonic-gate 			return (-1);
7517c478bd9Sstevel@tonic-gate 		}
7527c478bd9Sstevel@tonic-gate 		if (elf->ed_wrimage) {
7537c478bd9Sstevel@tonic-gate 			if (elf->ed_myflags & EDF_WRALLOC) {
7547c478bd9Sstevel@tonic-gate 				free(elf->ed_wrimage);
7557c478bd9Sstevel@tonic-gate 				/*
7567c478bd9Sstevel@tonic-gate 				 * The size is still returned even
7577c478bd9Sstevel@tonic-gate 				 * though nothing is actually written
7587c478bd9Sstevel@tonic-gate 				 * out.  This is just to be consistant
7597c478bd9Sstevel@tonic-gate 				 * with the rest of the interface.
7607c478bd9Sstevel@tonic-gate 				 */
7617c478bd9Sstevel@tonic-gate 				sz = elf->ed_wrimagesz;
7627c478bd9Sstevel@tonic-gate 				elf->ed_wrimage = 0;
7637c478bd9Sstevel@tonic-gate 				elf->ed_wrimagesz = 0;
7647c478bd9Sstevel@tonic-gate 				ELFUNLOCK(elf);
7657c478bd9Sstevel@tonic-gate 				return ((off_t)sz);
7667c478bd9Sstevel@tonic-gate 			}
7677c478bd9Sstevel@tonic-gate 			sz = _elf_outsync(elf->ed_fd, elf->ed_wrimage,
768ba2be530Sab 			    elf->ed_wrimagesz,
769ba2be530Sab 			    (elf->ed_myflags & EDF_IMALLOC ? 0 : 1));
7707c478bd9Sstevel@tonic-gate 			elf->ed_myflags &= ~EDF_IMALLOC;
7717c478bd9Sstevel@tonic-gate 			elf->ed_wrimage = 0;
7727c478bd9Sstevel@tonic-gate 			elf->ed_wrimagesz = 0;
7737c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf);
7747c478bd9Sstevel@tonic-gate 			return ((off_t)sz);
7757c478bd9Sstevel@tonic-gate 		}
7767c478bd9Sstevel@tonic-gate 		/* FALLTHROUGH */
7777c478bd9Sstevel@tonic-gate 	case ELF_C_NULL:
7787c478bd9Sstevel@tonic-gate 		break;
7797c478bd9Sstevel@tonic-gate 	}
7807c478bd9Sstevel@tonic-gate 
7817c478bd9Sstevel@tonic-gate 	if (eh == 0) {
7827c478bd9Sstevel@tonic-gate 		_elf_seterr(ESEQ_EHDR, 0);
7837c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
7847c478bd9Sstevel@tonic-gate 		return (-1);
7857c478bd9Sstevel@tonic-gate 	}
7867c478bd9Sstevel@tonic-gate 
7877c478bd9Sstevel@tonic-gate 	if ((u = eh->e_version) > EV_CURRENT) {
7887c478bd9Sstevel@tonic-gate 		_elf_seterr(EREQ_VER, 0);
7897c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
7907c478bd9Sstevel@tonic-gate 		return (-1);
7917c478bd9Sstevel@tonic-gate 	}
7927c478bd9Sstevel@tonic-gate 
7937c478bd9Sstevel@tonic-gate 	if (u == EV_NONE)
7947c478bd9Sstevel@tonic-gate 		eh->e_version = EV_CURRENT;
7957c478bd9Sstevel@tonic-gate 
7967c478bd9Sstevel@tonic-gate 	if ((u = eh->e_ident[EI_DATA]) == ELFDATANONE) {
7977c478bd9Sstevel@tonic-gate 		unsigned	encode;
7987c478bd9Sstevel@tonic-gate 
7997c478bd9Sstevel@tonic-gate 		ELFACCESSDATA(encode, _elf_encode)
8007c478bd9Sstevel@tonic-gate 		if (encode == ELFDATANONE) {
8017c478bd9Sstevel@tonic-gate 			_elf_seterr(EREQ_ENCODE, 0);
8027c478bd9Sstevel@tonic-gate 			ELFUNLOCK(elf)
8037c478bd9Sstevel@tonic-gate 			return (-1);
8047c478bd9Sstevel@tonic-gate 		}
8057c478bd9Sstevel@tonic-gate 		/* LINTED */
8067c478bd9Sstevel@tonic-gate 		eh->e_ident[EI_DATA] = (Byte)encode;
8077c478bd9Sstevel@tonic-gate 	}
8087c478bd9Sstevel@tonic-gate 
8097c478bd9Sstevel@tonic-gate 	u = 1;
8107c478bd9Sstevel@tonic-gate 	if (elf->ed_uflags & ELF_F_LAYOUT) {
8117c478bd9Sstevel@tonic-gate 		sz = _elf_upd_usr(elf);
8127c478bd9Sstevel@tonic-gate 		u = 0;
8137c478bd9Sstevel@tonic-gate 	} else
8147c478bd9Sstevel@tonic-gate 		sz = _elf_upd_lib(elf);
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate 	if ((sz != 0) && ((cmd == ELF_C_WRITE) || (cmd == ELF_C_WRIMAGE)))
8177c478bd9Sstevel@tonic-gate 		sz = wrt(elf, (Xword)sz, u, cmd);
8187c478bd9Sstevel@tonic-gate 
8197c478bd9Sstevel@tonic-gate 	if (sz == 0) {
8207c478bd9Sstevel@tonic-gate 		ELFUNLOCK(elf)
8217c478bd9Sstevel@tonic-gate 		return (-1);
8227c478bd9Sstevel@tonic-gate 	}
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate 	ELFUNLOCK(elf)
8257c478bd9Sstevel@tonic-gate 	return ((off_t)sz);
8267c478bd9Sstevel@tonic-gate }
8277c478bd9Sstevel@tonic-gate 
8287c478bd9Sstevel@tonic-gate 
829ba2be530Sab /*
830ba2be530Sab  * When wrt() processes an ELF_C_WRIMAGE request, the resulting image
831ba2be530Sab  * gets the byte order (encoding) of the platform running the linker
832ba2be530Sab  * rather than that of the target host. This allows the linker to modify
833ba2be530Sab  * the image, prior to flushing it to the output file. This routine
834ba2be530Sab  * is used to re-translate such an image into the byte order of the
835ba2be530Sab  * target host.
836ba2be530Sab  */
837ba2be530Sab int
838*5b764efaSab _elfxx_swap_wrimage(Elf *elf)
839ba2be530Sab {
840ba2be530Sab 	Elf_Data	dst, src;
841ba2be530Sab 	Elf_Scn		*s;
842*5b764efaSab 	Ehdr		*eh;
843*5b764efaSab 	Half		e_phnum;
844*5b764efaSab 	unsigned	ver;
845*5b764efaSab 	unsigned	encode;
846ba2be530Sab 
847ba2be530Sab 	/*
848ba2be530Sab 	 * Ehdr first
849ba2be530Sab 	 */
850ba2be530Sab 
851*5b764efaSab 	ELFWLOCK(elf);
852*5b764efaSab 	eh = elf->ed_ehdr;
853*5b764efaSab 	e_phnum = eh->e_phnum;
854*5b764efaSab 	ver = eh->e_version;
855*5b764efaSab 	encode = eh->e_ident[EI_DATA];
856*5b764efaSab 
857ba2be530Sab 	src.d_buf = dst.d_buf = (Elf_Void *)eh;
858ba2be530Sab 	src.d_type = dst.d_type = ELF_T_EHDR;
859ba2be530Sab 	src.d_size = dst.d_size = sizeof (Ehdr);
860ba2be530Sab 	src.d_version = dst.d_version = ver;
861*5b764efaSab 	if (elf_xlatetof(&dst, &src, encode) == 0) {
862*5b764efaSab 		ELFUNLOCK(elf);
863ba2be530Sab 		return (1);
864*5b764efaSab 	}
865ba2be530Sab 
866ba2be530Sab 	/*
867ba2be530Sab 	 * Phdr table if one exists
868ba2be530Sab 	 */
869ba2be530Sab 
870ba2be530Sab 	if (e_phnum != 0) {
871ba2be530Sab 		unsigned	work;
872ba2be530Sab 		/*
873ba2be530Sab 		 * Unlike other library data, phdr table is
874ba2be530Sab 		 * in the user version.
875ba2be530Sab 		 */
876ba2be530Sab 
877ba2be530Sab 		src.d_buf = dst.d_buf = (Elf_Void *)elf->ed_phdr;
878ba2be530Sab 		src.d_type = dst.d_type = ELF_T_PHDR;
879ba2be530Sab 		src.d_size = dst.d_size = elf->ed_phdrsz;
880ba2be530Sab 		ELFACCESSDATA(work, _elf_work)
881ba2be530Sab 		src.d_version = dst.d_version = work;
882ba2be530Sab 		if (elf_xlatetof(&dst, &src, encode) == 0) {
883*5b764efaSab 			ELFUNLOCK(elf);
884ba2be530Sab 			return (1);
885ba2be530Sab 		}
886ba2be530Sab 	}
887ba2be530Sab 
888ba2be530Sab 	/*
889ba2be530Sab 	 * Loop through sections
890ba2be530Sab 	 */
891ba2be530Sab 
892ba2be530Sab 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
893ba2be530Sab 		register Dnode	*d, *prevd;
894ba2be530Sab 		Shdr		*sh = s->s_shdr;
895ba2be530Sab 
896ba2be530Sab 		if ((sh->sh_type == SHT_NOBITS) || (sh->sh_type == SHT_NULL))
897ba2be530Sab 			continue;
898ba2be530Sab 
899ba2be530Sab 		for (d = s->s_hdnode, prevd = 0;
900ba2be530Sab 		    d != 0; prevd = d, d = d->db_next) {
901ba2be530Sab 
902ba2be530Sab 			if ((d->db_myflags & DBF_READY) == 0) {
903ba2be530Sab 				SCNLOCK(s);
904ba2be530Sab 				if (_elf_locked_getdata(s, &prevd->db_data) !=
905ba2be530Sab 				    &d->db_data) {
906ba2be530Sab 					SCNUNLOCK(s);
907*5b764efaSab 					ELFUNLOCK(elf);
908ba2be530Sab 					return (1);
909ba2be530Sab 				}
910ba2be530Sab 				SCNUNLOCK(s);
911ba2be530Sab 			}
912ba2be530Sab 
913ba2be530Sab 			dst = d->db_data;
914*5b764efaSab 			if (elf_xlatetof(&dst, &d->db_data, encode) == 0) {
915*5b764efaSab 				ELFUNLOCK(elf);
916ba2be530Sab 				return (1);
917*5b764efaSab 			}
918ba2be530Sab 		}
919ba2be530Sab 	}
920ba2be530Sab 
921ba2be530Sab 	/*
922ba2be530Sab 	 * Shdr table
923ba2be530Sab 	 */
924ba2be530Sab 
925ba2be530Sab 	src.d_type = dst.d_type = ELF_T_SHDR;
926ba2be530Sab 	src.d_version = dst.d_version = ver;
927ba2be530Sab 	for (s = elf->ed_hdscn; s != 0; s = s->s_next) {
928ba2be530Sab 		src.d_buf = dst.d_buf = s->s_shdr;
929ba2be530Sab 		src.d_size = dst.d_size = sizeof (Shdr);
930*5b764efaSab 		if (elf_xlatetof(&dst, &src, encode) == 0) {
931*5b764efaSab 			ELFUNLOCK(elf);
932ba2be530Sab 			return (1);
933*5b764efaSab 		}
934ba2be530Sab 	}
935ba2be530Sab 
936*5b764efaSab 	ELFUNLOCK(elf);
937ba2be530Sab 	return (0);
938ba2be530Sab }
939ba2be530Sab 
940ba2be530Sab 
941ba2be530Sab 
9427c478bd9Sstevel@tonic-gate #ifndef _ELF64
9437c478bd9Sstevel@tonic-gate /* class-independent, only needs to be compiled once */
9447c478bd9Sstevel@tonic-gate 
9457c478bd9Sstevel@tonic-gate off_t
9467c478bd9Sstevel@tonic-gate elf_update(Elf *elf, Elf_Cmd cmd)
9477c478bd9Sstevel@tonic-gate {
9487c478bd9Sstevel@tonic-gate 	if (elf == 0)
9497c478bd9Sstevel@tonic-gate 		return (-1);
9507c478bd9Sstevel@tonic-gate 
9517c478bd9Sstevel@tonic-gate 	if (elf->ed_class == ELFCLASS32)
9527c478bd9Sstevel@tonic-gate 		return (_elf32_update(elf, cmd));
9537c478bd9Sstevel@tonic-gate 	else if (elf->ed_class == ELFCLASS64) {
9547c478bd9Sstevel@tonic-gate 		return (_elf64_update(elf, cmd));
9557c478bd9Sstevel@tonic-gate 	}
9567c478bd9Sstevel@tonic-gate 
9577c478bd9Sstevel@tonic-gate 	_elf_seterr(EREQ_CLASS, 0);
9587c478bd9Sstevel@tonic-gate 	return (-1);
9597c478bd9Sstevel@tonic-gate }
9607c478bd9Sstevel@tonic-gate 
961ba2be530Sab int
962ba2be530Sab _elf_swap_wrimage(Elf *elf)
963ba2be530Sab {
964ba2be530Sab 	if (elf == 0)
965ba2be530Sab 		return (0);
966ba2be530Sab 
967ba2be530Sab 	if (elf->ed_class == ELFCLASS32)
968ba2be530Sab 		return (_elf32_swap_wrimage(elf));
969ba2be530Sab 
970ba2be530Sab 	if (elf->ed_class == ELFCLASS64)
971ba2be530Sab 		return (_elf64_swap_wrimage(elf));
972ba2be530Sab 
973ba2be530Sab 	_elf_seterr(EREQ_CLASS, 0);
974ba2be530Sab 	return (0);
975ba2be530Sab }
976ba2be530Sab 
9777c478bd9Sstevel@tonic-gate /*
9787c478bd9Sstevel@tonic-gate  * 4106312, 4106398, This is an ad-hoc means for the 32-bit
9797c478bd9Sstevel@tonic-gate  * Elf64 version of libld.so.3 to get around the limitation
9807c478bd9Sstevel@tonic-gate  * of a 32-bit d_off field.  This is only intended to be
9817c478bd9Sstevel@tonic-gate  * used by libld to relocate symbols in large NOBITS sections.
9827c478bd9Sstevel@tonic-gate  */
9837c478bd9Sstevel@tonic-gate Elf64_Off
9847c478bd9Sstevel@tonic-gate _elf_getxoff(Elf_Data * d)
9857c478bd9Sstevel@tonic-gate {
9867c478bd9Sstevel@tonic-gate 	return (((Dnode *)d)->db_xoff);
9877c478bd9Sstevel@tonic-gate }
9887c478bd9Sstevel@tonic-gate #endif /* !_ELF64 */
989