xref: /onnv-gate/usr/src/lib/libdtrace/common/dt_link.c (revision 4685:ea7dea986cfb)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
51710Sahl  * Common Development and Distribution License (the "License").
61710Sahl  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
211710Sahl 
220Sstevel@tonic-gate /*
233944Sahl  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #define	ELF_TARGET_ALL
300Sstevel@tonic-gate #include <elf.h>
310Sstevel@tonic-gate 
320Sstevel@tonic-gate #include <sys/types.h>
330Sstevel@tonic-gate #include <sys/sysmacros.h>
340Sstevel@tonic-gate 
350Sstevel@tonic-gate #include <unistd.h>
360Sstevel@tonic-gate #include <strings.h>
370Sstevel@tonic-gate #include <alloca.h>
380Sstevel@tonic-gate #include <limits.h>
390Sstevel@tonic-gate #include <stddef.h>
400Sstevel@tonic-gate #include <stdlib.h>
410Sstevel@tonic-gate #include <stdio.h>
420Sstevel@tonic-gate #include <fcntl.h>
430Sstevel@tonic-gate #include <errno.h>
440Sstevel@tonic-gate #include <wait.h>
450Sstevel@tonic-gate #include <assert.h>
461239Sahl #include <sys/ipc.h>
470Sstevel@tonic-gate 
480Sstevel@tonic-gate #include <dt_impl.h>
490Sstevel@tonic-gate #include <dt_provider.h>
501710Sahl #include <dt_program.h>
510Sstevel@tonic-gate #include <dt_string.h>
520Sstevel@tonic-gate 
530Sstevel@tonic-gate #define	ESHDR_NULL	0
540Sstevel@tonic-gate #define	ESHDR_SHSTRTAB	1
550Sstevel@tonic-gate #define	ESHDR_DOF	2
560Sstevel@tonic-gate #define	ESHDR_STRTAB	3
570Sstevel@tonic-gate #define	ESHDR_SYMTAB	4
580Sstevel@tonic-gate #define	ESHDR_REL	5
590Sstevel@tonic-gate #define	ESHDR_NUM	6
600Sstevel@tonic-gate 
610Sstevel@tonic-gate #define	PWRITE_SCN(index, data) \
620Sstevel@tonic-gate 	(lseek64(fd, (off64_t)elf_file.shdr[(index)].sh_offset, SEEK_SET) != \
630Sstevel@tonic-gate 	(off64_t)elf_file.shdr[(index)].sh_offset || \
640Sstevel@tonic-gate 	dt_write(dtp, fd, (data), elf_file.shdr[(index)].sh_size) != \
650Sstevel@tonic-gate 	elf_file.shdr[(index)].sh_size)
660Sstevel@tonic-gate 
670Sstevel@tonic-gate static const char DTRACE_SHSTRTAB32[] = "\0"
680Sstevel@tonic-gate ".shstrtab\0"		/* 1 */
690Sstevel@tonic-gate ".SUNW_dof\0"		/* 11 */
700Sstevel@tonic-gate ".strtab\0"		/* 21 */
710Sstevel@tonic-gate ".symtab\0"		/* 29 */
720Sstevel@tonic-gate #ifdef __sparc
730Sstevel@tonic-gate ".rela.SUNW_dof";	/* 37 */
740Sstevel@tonic-gate #else
750Sstevel@tonic-gate ".rel.SUNW_dof";	/* 37 */
760Sstevel@tonic-gate #endif
770Sstevel@tonic-gate 
780Sstevel@tonic-gate static const char DTRACE_SHSTRTAB64[] = "\0"
790Sstevel@tonic-gate ".shstrtab\0"		/* 1 */
800Sstevel@tonic-gate ".SUNW_dof\0"		/* 11 */
810Sstevel@tonic-gate ".strtab\0"		/* 21 */
820Sstevel@tonic-gate ".symtab\0"		/* 29 */
830Sstevel@tonic-gate ".rela.SUNW_dof";	/* 37 */
840Sstevel@tonic-gate 
850Sstevel@tonic-gate static const char DOFSTR[] = "__SUNW_dof";
860Sstevel@tonic-gate static const char DOFLAZYSTR[] = "___SUNW_dof";
870Sstevel@tonic-gate 
881239Sahl typedef struct dt_link_pair {
892769Sahl 	struct dt_link_pair *dlp_next;	/* next pair in linked list */
902769Sahl 	void *dlp_str;			/* buffer for string table */
912769Sahl 	void *dlp_sym;			/* buffer for symbol table */
921239Sahl } dt_link_pair_t;
931239Sahl 
940Sstevel@tonic-gate typedef struct dof_elf32 {
952769Sahl 	uint32_t de_nrel;		/* relocation count */
960Sstevel@tonic-gate #ifdef __sparc
972769Sahl 	Elf32_Rela *de_rel;		/* array of relocations for sparc */
980Sstevel@tonic-gate #else
992769Sahl 	Elf32_Rel *de_rel;		/* array of relocations for x86 */
1000Sstevel@tonic-gate #endif
1012769Sahl 	uint32_t de_nsym;		/* symbol count */
1022769Sahl 	Elf32_Sym *de_sym;		/* array of symbols */
1032769Sahl 	uint32_t de_strlen;		/* size of of string table */
1042769Sahl 	char *de_strtab;		/* string table */
1052769Sahl 	uint32_t de_global;		/* index of the first global symbol */
1060Sstevel@tonic-gate } dof_elf32_t;
1070Sstevel@tonic-gate 
1080Sstevel@tonic-gate static int
1090Sstevel@tonic-gate prepare_elf32(dtrace_hdl_t *dtp, const dof_hdr_t *dof, dof_elf32_t *dep)
1100Sstevel@tonic-gate {
1110Sstevel@tonic-gate 	dof_sec_t *dofs, *s;
1120Sstevel@tonic-gate 	dof_relohdr_t *dofrh;
1130Sstevel@tonic-gate 	dof_relodesc_t *dofr;
1140Sstevel@tonic-gate 	char *strtab;
1150Sstevel@tonic-gate 	int i, j, nrel;
1160Sstevel@tonic-gate 	size_t strtabsz = 1;
1170Sstevel@tonic-gate 	uint32_t count = 0;
1180Sstevel@tonic-gate 	size_t base;
1190Sstevel@tonic-gate 	Elf32_Sym *sym;
1200Sstevel@tonic-gate #ifdef __sparc
1210Sstevel@tonic-gate 	Elf32_Rela *rel;
1220Sstevel@tonic-gate #else
1230Sstevel@tonic-gate 	Elf32_Rel *rel;
1240Sstevel@tonic-gate #endif
1250Sstevel@tonic-gate 
1260Sstevel@tonic-gate 	/*LINTED*/
1270Sstevel@tonic-gate 	dofs = (dof_sec_t *)((char *)dof + dof->dofh_secoff);
1280Sstevel@tonic-gate 
1290Sstevel@tonic-gate 	/*
1300Sstevel@tonic-gate 	 * First compute the size of the string table and the number of
1310Sstevel@tonic-gate 	 * relocations present in the DOF.
1320Sstevel@tonic-gate 	 */
1330Sstevel@tonic-gate 	for (i = 0; i < dof->dofh_secnum; i++) {
1340Sstevel@tonic-gate 		if (dofs[i].dofs_type != DOF_SECT_URELHDR)
1350Sstevel@tonic-gate 			continue;
1360Sstevel@tonic-gate 
1370Sstevel@tonic-gate 		/*LINTED*/
1380Sstevel@tonic-gate 		dofrh = (dof_relohdr_t *)((char *)dof + dofs[i].dofs_offset);
1390Sstevel@tonic-gate 
1400Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_strtab];
1410Sstevel@tonic-gate 		strtab = (char *)dof + s->dofs_offset;
1420Sstevel@tonic-gate 		assert(strtab[0] == '\0');
1430Sstevel@tonic-gate 		strtabsz += s->dofs_size - 1;
1440Sstevel@tonic-gate 
1450Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_relsec];
1460Sstevel@tonic-gate 		/*LINTED*/
1470Sstevel@tonic-gate 		dofr = (dof_relodesc_t *)((char *)dof + s->dofs_offset);
1480Sstevel@tonic-gate 		count += s->dofs_size / s->dofs_entsize;
1490Sstevel@tonic-gate 	}
1500Sstevel@tonic-gate 
1510Sstevel@tonic-gate 	dep->de_strlen = strtabsz;
1520Sstevel@tonic-gate 	dep->de_nrel = count;
1530Sstevel@tonic-gate 	dep->de_nsym = count + 1; /* the first symbol is always null */
1540Sstevel@tonic-gate 
1550Sstevel@tonic-gate 	if (dtp->dt_lazyload) {
1560Sstevel@tonic-gate 		dep->de_strlen += sizeof (DOFLAZYSTR);
1570Sstevel@tonic-gate 		dep->de_nsym++;
1580Sstevel@tonic-gate 	} else {
1590Sstevel@tonic-gate 		dep->de_strlen += sizeof (DOFSTR);
1600Sstevel@tonic-gate 		dep->de_nsym++;
1610Sstevel@tonic-gate 	}
1620Sstevel@tonic-gate 
1630Sstevel@tonic-gate 	if ((dep->de_rel = calloc(dep->de_nrel,
1640Sstevel@tonic-gate 	    sizeof (dep->de_rel[0]))) == NULL) {
1650Sstevel@tonic-gate 		return (dt_set_errno(dtp, EDT_NOMEM));
1660Sstevel@tonic-gate 	}
1670Sstevel@tonic-gate 
1680Sstevel@tonic-gate 	if ((dep->de_sym = calloc(dep->de_nsym, sizeof (Elf32_Sym))) == NULL) {
1690Sstevel@tonic-gate 		free(dep->de_rel);
1700Sstevel@tonic-gate 		return (dt_set_errno(dtp, EDT_NOMEM));
1710Sstevel@tonic-gate 	}
1720Sstevel@tonic-gate 
1730Sstevel@tonic-gate 	if ((dep->de_strtab = calloc(dep->de_strlen, 1)) == NULL) {
1740Sstevel@tonic-gate 		free(dep->de_rel);
1750Sstevel@tonic-gate 		free(dep->de_sym);
1760Sstevel@tonic-gate 		return (dt_set_errno(dtp, EDT_NOMEM));
1770Sstevel@tonic-gate 	}
1780Sstevel@tonic-gate 
1790Sstevel@tonic-gate 	count = 0;
1800Sstevel@tonic-gate 	strtabsz = 1;
1810Sstevel@tonic-gate 	dep->de_strtab[0] = '\0';
1820Sstevel@tonic-gate 	rel = dep->de_rel;
1830Sstevel@tonic-gate 	sym = dep->de_sym;
1840Sstevel@tonic-gate 	dep->de_global = 1;
1850Sstevel@tonic-gate 
1860Sstevel@tonic-gate 	/*
1870Sstevel@tonic-gate 	 * The first symbol table entry must be zeroed and is always ignored.
1880Sstevel@tonic-gate 	 */
1890Sstevel@tonic-gate 	bzero(sym, sizeof (Elf32_Sym));
1900Sstevel@tonic-gate 	sym++;
1910Sstevel@tonic-gate 
1920Sstevel@tonic-gate 	/*
1930Sstevel@tonic-gate 	 * Take a second pass through the DOF sections filling in the
1940Sstevel@tonic-gate 	 * memory we allocated.
1950Sstevel@tonic-gate 	 */
1960Sstevel@tonic-gate 	for (i = 0; i < dof->dofh_secnum; i++) {
1970Sstevel@tonic-gate 		if (dofs[i].dofs_type != DOF_SECT_URELHDR)
1980Sstevel@tonic-gate 			continue;
1990Sstevel@tonic-gate 
2000Sstevel@tonic-gate 		/*LINTED*/
2010Sstevel@tonic-gate 		dofrh = (dof_relohdr_t *)((char *)dof + dofs[i].dofs_offset);
2020Sstevel@tonic-gate 
2030Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_strtab];
2040Sstevel@tonic-gate 		strtab = (char *)dof + s->dofs_offset;
2050Sstevel@tonic-gate 		bcopy(strtab + 1, dep->de_strtab + strtabsz, s->dofs_size);
2060Sstevel@tonic-gate 		base = strtabsz;
2070Sstevel@tonic-gate 		strtabsz += s->dofs_size - 1;
2080Sstevel@tonic-gate 
2090Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_relsec];
2100Sstevel@tonic-gate 		/*LINTED*/
2110Sstevel@tonic-gate 		dofr = (dof_relodesc_t *)((char *)dof + s->dofs_offset);
2120Sstevel@tonic-gate 		nrel = s->dofs_size / s->dofs_entsize;
2130Sstevel@tonic-gate 
2140Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_tgtsec];
2150Sstevel@tonic-gate 
2160Sstevel@tonic-gate 		for (j = 0; j < nrel; j++) {
2170Sstevel@tonic-gate #if defined(__i386) || defined(__amd64)
2180Sstevel@tonic-gate 			rel->r_offset = s->dofs_offset +
2190Sstevel@tonic-gate 			    dofr[j].dofr_offset;
2200Sstevel@tonic-gate 			rel->r_info = ELF32_R_INFO(count + dep->de_global,
2210Sstevel@tonic-gate 			    R_386_32);
2220Sstevel@tonic-gate #elif defined(__sparc)
2230Sstevel@tonic-gate 			/*
2240Sstevel@tonic-gate 			 * Add 4 bytes to hit the low half of this 64-bit
2250Sstevel@tonic-gate 			 * big-endian address.
2260Sstevel@tonic-gate 			 */
2270Sstevel@tonic-gate 			rel->r_offset = s->dofs_offset +
2280Sstevel@tonic-gate 			    dofr[j].dofr_offset + 4;
2290Sstevel@tonic-gate 			rel->r_info = ELF32_R_INFO(count + dep->de_global,
2300Sstevel@tonic-gate 			    R_SPARC_32);
2310Sstevel@tonic-gate #else
2320Sstevel@tonic-gate #error unknown ISA
2330Sstevel@tonic-gate #endif
2340Sstevel@tonic-gate 
2350Sstevel@tonic-gate 			sym->st_name = base + dofr[j].dofr_name - 1;
2360Sstevel@tonic-gate 			sym->st_value = 0;
2370Sstevel@tonic-gate 			sym->st_size = 0;
2381239Sahl 			sym->st_info = ELF32_ST_INFO(STB_GLOBAL, STT_FUNC);
2390Sstevel@tonic-gate 			sym->st_other = 0;
2400Sstevel@tonic-gate 			sym->st_shndx = SHN_UNDEF;
2410Sstevel@tonic-gate 
2420Sstevel@tonic-gate 			rel++;
2430Sstevel@tonic-gate 			sym++;
2440Sstevel@tonic-gate 			count++;
2450Sstevel@tonic-gate 		}
2460Sstevel@tonic-gate 	}
2470Sstevel@tonic-gate 
2480Sstevel@tonic-gate 	/*
2490Sstevel@tonic-gate 	 * Add a symbol for the DOF itself. We use a different symbol for
2500Sstevel@tonic-gate 	 * lazily and actively loaded DOF to make them easy to distinguish.
2510Sstevel@tonic-gate 	 */
2520Sstevel@tonic-gate 	sym->st_name = strtabsz;
2530Sstevel@tonic-gate 	sym->st_value = 0;
2540Sstevel@tonic-gate 	sym->st_size = dof->dofh_filesz;
2550Sstevel@tonic-gate 	sym->st_info = ELF32_ST_INFO(STB_GLOBAL, STT_OBJECT);
2560Sstevel@tonic-gate 	sym->st_other = 0;
2570Sstevel@tonic-gate 	sym->st_shndx = ESHDR_DOF;
2580Sstevel@tonic-gate 	sym++;
2590Sstevel@tonic-gate 
2600Sstevel@tonic-gate 	if (dtp->dt_lazyload) {
2610Sstevel@tonic-gate 		bcopy(DOFLAZYSTR, dep->de_strtab + strtabsz,
2620Sstevel@tonic-gate 		    sizeof (DOFLAZYSTR));
2630Sstevel@tonic-gate 		strtabsz += sizeof (DOFLAZYSTR);
2640Sstevel@tonic-gate 	} else {
2650Sstevel@tonic-gate 		bcopy(DOFSTR, dep->de_strtab + strtabsz, sizeof (DOFSTR));
2660Sstevel@tonic-gate 		strtabsz += sizeof (DOFSTR);
2670Sstevel@tonic-gate 	}
2680Sstevel@tonic-gate 
2690Sstevel@tonic-gate 	assert(count == dep->de_nrel);
2700Sstevel@tonic-gate 	assert(strtabsz == dep->de_strlen);
2710Sstevel@tonic-gate 
2720Sstevel@tonic-gate 	return (0);
2730Sstevel@tonic-gate }
2740Sstevel@tonic-gate 
2750Sstevel@tonic-gate 
2760Sstevel@tonic-gate typedef struct dof_elf64 {
2770Sstevel@tonic-gate 	uint32_t de_nrel;
2780Sstevel@tonic-gate 	Elf64_Rela *de_rel;
2790Sstevel@tonic-gate 	uint32_t de_nsym;
2800Sstevel@tonic-gate 	Elf64_Sym *de_sym;
2810Sstevel@tonic-gate 
2820Sstevel@tonic-gate 	uint32_t de_strlen;
2830Sstevel@tonic-gate 	char *de_strtab;
2840Sstevel@tonic-gate 
2850Sstevel@tonic-gate 	uint32_t de_global;
2860Sstevel@tonic-gate } dof_elf64_t;
2870Sstevel@tonic-gate 
2880Sstevel@tonic-gate static int
2890Sstevel@tonic-gate prepare_elf64(dtrace_hdl_t *dtp, const dof_hdr_t *dof, dof_elf64_t *dep)
2900Sstevel@tonic-gate {
2910Sstevel@tonic-gate 	dof_sec_t *dofs, *s;
2920Sstevel@tonic-gate 	dof_relohdr_t *dofrh;
2930Sstevel@tonic-gate 	dof_relodesc_t *dofr;
2940Sstevel@tonic-gate 	char *strtab;
2950Sstevel@tonic-gate 	int i, j, nrel;
2960Sstevel@tonic-gate 	size_t strtabsz = 1;
2970Sstevel@tonic-gate 	uint32_t count = 0;
2980Sstevel@tonic-gate 	size_t base;
2990Sstevel@tonic-gate 	Elf64_Sym *sym;
3000Sstevel@tonic-gate 	Elf64_Rela *rel;
3010Sstevel@tonic-gate 
3020Sstevel@tonic-gate 	/*LINTED*/
3030Sstevel@tonic-gate 	dofs = (dof_sec_t *)((char *)dof + dof->dofh_secoff);
3040Sstevel@tonic-gate 
3050Sstevel@tonic-gate 	/*
3060Sstevel@tonic-gate 	 * First compute the size of the string table and the number of
3070Sstevel@tonic-gate 	 * relocations present in the DOF.
3080Sstevel@tonic-gate 	 */
3090Sstevel@tonic-gate 	for (i = 0; i < dof->dofh_secnum; i++) {
3100Sstevel@tonic-gate 		if (dofs[i].dofs_type != DOF_SECT_URELHDR)
3110Sstevel@tonic-gate 			continue;
3120Sstevel@tonic-gate 
3130Sstevel@tonic-gate 		/*LINTED*/
3140Sstevel@tonic-gate 		dofrh = (dof_relohdr_t *)((char *)dof + dofs[i].dofs_offset);
3150Sstevel@tonic-gate 
3160Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_strtab];
3170Sstevel@tonic-gate 		strtab = (char *)dof + s->dofs_offset;
3180Sstevel@tonic-gate 		assert(strtab[0] == '\0');
3190Sstevel@tonic-gate 		strtabsz += s->dofs_size - 1;
3200Sstevel@tonic-gate 
3210Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_relsec];
3220Sstevel@tonic-gate 		/*LINTED*/
3230Sstevel@tonic-gate 		dofr = (dof_relodesc_t *)((char *)dof + s->dofs_offset);
3240Sstevel@tonic-gate 		count += s->dofs_size / s->dofs_entsize;
3250Sstevel@tonic-gate 	}
3260Sstevel@tonic-gate 
3270Sstevel@tonic-gate 	dep->de_strlen = strtabsz;
3280Sstevel@tonic-gate 	dep->de_nrel = count;
3290Sstevel@tonic-gate 	dep->de_nsym = count + 1; /* the first symbol is always null */
3300Sstevel@tonic-gate 
3310Sstevel@tonic-gate 	if (dtp->dt_lazyload) {
3320Sstevel@tonic-gate 		dep->de_strlen += sizeof (DOFLAZYSTR);
3330Sstevel@tonic-gate 		dep->de_nsym++;
3340Sstevel@tonic-gate 	} else {
3350Sstevel@tonic-gate 		dep->de_strlen += sizeof (DOFSTR);
3360Sstevel@tonic-gate 		dep->de_nsym++;
3370Sstevel@tonic-gate 	}
3380Sstevel@tonic-gate 
3390Sstevel@tonic-gate 	if ((dep->de_rel = calloc(dep->de_nrel,
3400Sstevel@tonic-gate 	    sizeof (dep->de_rel[0]))) == NULL) {
3410Sstevel@tonic-gate 		return (dt_set_errno(dtp, EDT_NOMEM));
3420Sstevel@tonic-gate 	}
3430Sstevel@tonic-gate 
3440Sstevel@tonic-gate 	if ((dep->de_sym = calloc(dep->de_nsym, sizeof (Elf64_Sym))) == NULL) {
3450Sstevel@tonic-gate 		free(dep->de_rel);
3460Sstevel@tonic-gate 		return (dt_set_errno(dtp, EDT_NOMEM));
3470Sstevel@tonic-gate 	}
3480Sstevel@tonic-gate 
3490Sstevel@tonic-gate 	if ((dep->de_strtab = calloc(dep->de_strlen, 1)) == NULL) {
3500Sstevel@tonic-gate 		free(dep->de_rel);
3510Sstevel@tonic-gate 		free(dep->de_sym);
3520Sstevel@tonic-gate 		return (dt_set_errno(dtp, EDT_NOMEM));
3530Sstevel@tonic-gate 	}
3540Sstevel@tonic-gate 
3550Sstevel@tonic-gate 	count = 0;
3560Sstevel@tonic-gate 	strtabsz = 1;
3570Sstevel@tonic-gate 	dep->de_strtab[0] = '\0';
3580Sstevel@tonic-gate 	rel = dep->de_rel;
3590Sstevel@tonic-gate 	sym = dep->de_sym;
3600Sstevel@tonic-gate 	dep->de_global = 1;
3610Sstevel@tonic-gate 
3620Sstevel@tonic-gate 	/*
3630Sstevel@tonic-gate 	 * The first symbol table entry must be zeroed and is always ignored.
3640Sstevel@tonic-gate 	 */
3650Sstevel@tonic-gate 	bzero(sym, sizeof (Elf64_Sym));
3660Sstevel@tonic-gate 	sym++;
3670Sstevel@tonic-gate 
3680Sstevel@tonic-gate 	/*
3690Sstevel@tonic-gate 	 * Take a second pass through the DOF sections filling in the
3700Sstevel@tonic-gate 	 * memory we allocated.
3710Sstevel@tonic-gate 	 */
3720Sstevel@tonic-gate 	for (i = 0; i < dof->dofh_secnum; i++) {
3730Sstevel@tonic-gate 		if (dofs[i].dofs_type != DOF_SECT_URELHDR)
3740Sstevel@tonic-gate 			continue;
3750Sstevel@tonic-gate 
3760Sstevel@tonic-gate 		/*LINTED*/
3770Sstevel@tonic-gate 		dofrh = (dof_relohdr_t *)((char *)dof + dofs[i].dofs_offset);
3780Sstevel@tonic-gate 
3790Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_strtab];
3800Sstevel@tonic-gate 		strtab = (char *)dof + s->dofs_offset;
3810Sstevel@tonic-gate 		bcopy(strtab + 1, dep->de_strtab + strtabsz, s->dofs_size);
3820Sstevel@tonic-gate 		base = strtabsz;
3830Sstevel@tonic-gate 		strtabsz += s->dofs_size - 1;
3840Sstevel@tonic-gate 
3850Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_relsec];
3860Sstevel@tonic-gate 		/*LINTED*/
3870Sstevel@tonic-gate 		dofr = (dof_relodesc_t *)((char *)dof + s->dofs_offset);
3880Sstevel@tonic-gate 		nrel = s->dofs_size / s->dofs_entsize;
3890Sstevel@tonic-gate 
3900Sstevel@tonic-gate 		s = &dofs[dofrh->dofr_tgtsec];
3910Sstevel@tonic-gate 
3920Sstevel@tonic-gate 		for (j = 0; j < nrel; j++) {
3930Sstevel@tonic-gate #if defined(__i386) || defined(__amd64)
3940Sstevel@tonic-gate 			rel->r_offset = s->dofs_offset +
3950Sstevel@tonic-gate 			    dofr[j].dofr_offset;
3960Sstevel@tonic-gate 			rel->r_info = ELF64_R_INFO(count + dep->de_global,
3970Sstevel@tonic-gate 			    R_AMD64_64);
3980Sstevel@tonic-gate #elif defined(__sparc)
3990Sstevel@tonic-gate 			rel->r_offset = s->dofs_offset +
4000Sstevel@tonic-gate 			    dofr[j].dofr_offset;
4010Sstevel@tonic-gate 			rel->r_info = ELF64_R_INFO(count + dep->de_global,
4020Sstevel@tonic-gate 			    R_SPARC_64);
4030Sstevel@tonic-gate #else
4040Sstevel@tonic-gate #error unknown ISA
4050Sstevel@tonic-gate #endif
4060Sstevel@tonic-gate 
4070Sstevel@tonic-gate 			sym->st_name = base + dofr[j].dofr_name - 1;
4080Sstevel@tonic-gate 			sym->st_value = 0;
4090Sstevel@tonic-gate 			sym->st_size = 0;
4101239Sahl 			sym->st_info = GELF_ST_INFO(STB_GLOBAL, STT_FUNC);
4110Sstevel@tonic-gate 			sym->st_other = 0;
4120Sstevel@tonic-gate 			sym->st_shndx = SHN_UNDEF;
4130Sstevel@tonic-gate 
4140Sstevel@tonic-gate 			rel++;
4150Sstevel@tonic-gate 			sym++;
4160Sstevel@tonic-gate 			count++;
4170Sstevel@tonic-gate 		}
4180Sstevel@tonic-gate 	}
4190Sstevel@tonic-gate 
4200Sstevel@tonic-gate 	/*
4210Sstevel@tonic-gate 	 * Add a symbol for the DOF itself. We use a different symbol for
4220Sstevel@tonic-gate 	 * lazily and actively loaded DOF to make them easy to distinguish.
4230Sstevel@tonic-gate 	 */
4240Sstevel@tonic-gate 	sym->st_name = strtabsz;
4250Sstevel@tonic-gate 	sym->st_value = 0;
4260Sstevel@tonic-gate 	sym->st_size = dof->dofh_filesz;
4271239Sahl 	sym->st_info = GELF_ST_INFO(STB_GLOBAL, STT_OBJECT);
4280Sstevel@tonic-gate 	sym->st_other = 0;
4290Sstevel@tonic-gate 	sym->st_shndx = ESHDR_DOF;
4300Sstevel@tonic-gate 	sym++;
4310Sstevel@tonic-gate 
4320Sstevel@tonic-gate 	if (dtp->dt_lazyload) {
4330Sstevel@tonic-gate 		bcopy(DOFLAZYSTR, dep->de_strtab + strtabsz,
4340Sstevel@tonic-gate 		    sizeof (DOFLAZYSTR));
4350Sstevel@tonic-gate 		strtabsz += sizeof (DOFLAZYSTR);
4360Sstevel@tonic-gate 	} else {
4370Sstevel@tonic-gate 		bcopy(DOFSTR, dep->de_strtab + strtabsz, sizeof (DOFSTR));
4380Sstevel@tonic-gate 		strtabsz += sizeof (DOFSTR);
4390Sstevel@tonic-gate 	}
4400Sstevel@tonic-gate 
4410Sstevel@tonic-gate 	assert(count == dep->de_nrel);
4420Sstevel@tonic-gate 	assert(strtabsz == dep->de_strlen);
4430Sstevel@tonic-gate 
4440Sstevel@tonic-gate 	return (0);
4450Sstevel@tonic-gate }
4460Sstevel@tonic-gate 
4470Sstevel@tonic-gate /*
4480Sstevel@tonic-gate  * Write out an ELF32 file prologue consisting of a header, section headers,
4490Sstevel@tonic-gate  * and a section header string table.  The DOF data will follow this prologue
4500Sstevel@tonic-gate  * and complete the contents of the given ELF file.
4510Sstevel@tonic-gate  */
4520Sstevel@tonic-gate static int
4530Sstevel@tonic-gate dump_elf32(dtrace_hdl_t *dtp, const dof_hdr_t *dof, int fd)
4540Sstevel@tonic-gate {
4550Sstevel@tonic-gate 	struct {
4560Sstevel@tonic-gate 		Elf32_Ehdr ehdr;
4570Sstevel@tonic-gate 		Elf32_Shdr shdr[ESHDR_NUM];
4580Sstevel@tonic-gate 	} elf_file;
4590Sstevel@tonic-gate 
4600Sstevel@tonic-gate 	Elf32_Shdr *shp;
4610Sstevel@tonic-gate 	Elf32_Off off;
4620Sstevel@tonic-gate 	dof_elf32_t de;
4630Sstevel@tonic-gate 	int ret = 0;
4640Sstevel@tonic-gate 	uint_t nshdr;
4650Sstevel@tonic-gate 
4660Sstevel@tonic-gate 	if (prepare_elf32(dtp, dof, &de) != 0)
4670Sstevel@tonic-gate 		return (-1); /* errno is set for us */
4680Sstevel@tonic-gate 
4690Sstevel@tonic-gate 	/*
4700Sstevel@tonic-gate 	 * If there are no relocations, we only need enough sections for
4710Sstevel@tonic-gate 	 * the shstrtab and the DOF.
4720Sstevel@tonic-gate 	 */
4730Sstevel@tonic-gate 	nshdr = de.de_nrel == 0 ? ESHDR_SYMTAB + 1 : ESHDR_NUM;
4740Sstevel@tonic-gate 
4750Sstevel@tonic-gate 	bzero(&elf_file, sizeof (elf_file));
4760Sstevel@tonic-gate 
4770Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG0] = ELFMAG0;
4780Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG1] = ELFMAG1;
4790Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG2] = ELFMAG2;
4800Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG3] = ELFMAG3;
4810Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_VERSION] = EV_CURRENT;
4820Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_CLASS] = ELFCLASS32;
4830Sstevel@tonic-gate #if defined(_BIG_ENDIAN)
4840Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_DATA] = ELFDATA2MSB;
4850Sstevel@tonic-gate #elif defined(_LITTLE_ENDIAN)
4860Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_DATA] = ELFDATA2LSB;
4870Sstevel@tonic-gate #endif
4880Sstevel@tonic-gate 	elf_file.ehdr.e_type = ET_REL;
4890Sstevel@tonic-gate #if defined(__sparc)
4900Sstevel@tonic-gate 	elf_file.ehdr.e_machine = EM_SPARC;
4910Sstevel@tonic-gate #elif defined(__i386) || defined(__amd64)
4920Sstevel@tonic-gate 	elf_file.ehdr.e_machine = EM_386;
4930Sstevel@tonic-gate #endif
4940Sstevel@tonic-gate 	elf_file.ehdr.e_version = EV_CURRENT;
4950Sstevel@tonic-gate 	elf_file.ehdr.e_shoff = sizeof (Elf32_Ehdr);
4960Sstevel@tonic-gate 	elf_file.ehdr.e_ehsize = sizeof (Elf32_Ehdr);
4970Sstevel@tonic-gate 	elf_file.ehdr.e_phentsize = sizeof (Elf32_Phdr);
4980Sstevel@tonic-gate 	elf_file.ehdr.e_shentsize = sizeof (Elf32_Shdr);
4990Sstevel@tonic-gate 	elf_file.ehdr.e_shnum = nshdr;
5000Sstevel@tonic-gate 	elf_file.ehdr.e_shstrndx = ESHDR_SHSTRTAB;
5010Sstevel@tonic-gate 	off = sizeof (elf_file) + nshdr * sizeof (Elf32_Shdr);
5020Sstevel@tonic-gate 
5030Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_SHSTRTAB];
5040Sstevel@tonic-gate 	shp->sh_name = 1; /* DTRACE_SHSTRTAB32[1] = ".shstrtab" */
5050Sstevel@tonic-gate 	shp->sh_type = SHT_STRTAB;
5060Sstevel@tonic-gate 	shp->sh_offset = off;
5070Sstevel@tonic-gate 	shp->sh_size = sizeof (DTRACE_SHSTRTAB32);
5080Sstevel@tonic-gate 	shp->sh_addralign = sizeof (char);
5090Sstevel@tonic-gate 	off = P2ROUNDUP(shp->sh_offset + shp->sh_size, 8);
5100Sstevel@tonic-gate 
5110Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_DOF];
5120Sstevel@tonic-gate 	shp->sh_name = 11; /* DTRACE_SHSTRTAB32[11] = ".SUNW_dof" */
5130Sstevel@tonic-gate 	shp->sh_flags = SHF_ALLOC;
5140Sstevel@tonic-gate 	shp->sh_type = SHT_SUNW_dof;
5150Sstevel@tonic-gate 	shp->sh_offset = off;
5160Sstevel@tonic-gate 	shp->sh_size = dof->dofh_filesz;
5170Sstevel@tonic-gate 	shp->sh_addralign = 8;
5180Sstevel@tonic-gate 	off = shp->sh_offset + shp->sh_size;
5190Sstevel@tonic-gate 
5200Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_STRTAB];
5210Sstevel@tonic-gate 	shp->sh_name = 21; /* DTRACE_SHSTRTAB32[21] = ".strtab" */
5220Sstevel@tonic-gate 	shp->sh_flags = SHF_ALLOC;
5230Sstevel@tonic-gate 	shp->sh_type = SHT_STRTAB;
5240Sstevel@tonic-gate 	shp->sh_offset = off;
5250Sstevel@tonic-gate 	shp->sh_size = de.de_strlen;
5260Sstevel@tonic-gate 	shp->sh_addralign = sizeof (char);
5270Sstevel@tonic-gate 	off = P2ROUNDUP(shp->sh_offset + shp->sh_size, 4);
5280Sstevel@tonic-gate 
5290Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_SYMTAB];
5300Sstevel@tonic-gate 	shp->sh_name = 29; /* DTRACE_SHSTRTAB32[29] = ".symtab" */
5310Sstevel@tonic-gate 	shp->sh_flags = SHF_ALLOC;
5320Sstevel@tonic-gate 	shp->sh_type = SHT_SYMTAB;
5330Sstevel@tonic-gate 	shp->sh_entsize = sizeof (Elf32_Sym);
5340Sstevel@tonic-gate 	shp->sh_link = ESHDR_STRTAB;
5350Sstevel@tonic-gate 	shp->sh_offset = off;
5360Sstevel@tonic-gate 	shp->sh_info = de.de_global;
5370Sstevel@tonic-gate 	shp->sh_size = de.de_nsym * sizeof (Elf32_Sym);
5380Sstevel@tonic-gate 	shp->sh_addralign = 4;
5390Sstevel@tonic-gate 	off = P2ROUNDUP(shp->sh_offset + shp->sh_size, 4);
5400Sstevel@tonic-gate 
5410Sstevel@tonic-gate 	if (de.de_nrel == 0) {
5420Sstevel@tonic-gate 		if (dt_write(dtp, fd, &elf_file,
5430Sstevel@tonic-gate 		    sizeof (elf_file)) != sizeof (elf_file) ||
5440Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SHSTRTAB, DTRACE_SHSTRTAB32) ||
5450Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_STRTAB, de.de_strtab) ||
5460Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SYMTAB, de.de_sym) ||
5470Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_DOF, dof)) {
5480Sstevel@tonic-gate 			ret = dt_set_errno(dtp, errno);
5490Sstevel@tonic-gate 		}
5500Sstevel@tonic-gate 	} else {
5510Sstevel@tonic-gate 		shp = &elf_file.shdr[ESHDR_REL];
5520Sstevel@tonic-gate 		shp->sh_name = 37; /* DTRACE_SHSTRTAB32[37] = ".rel.SUNW_dof" */
5530Sstevel@tonic-gate 		shp->sh_flags = SHF_ALLOC;
5540Sstevel@tonic-gate #ifdef __sparc
5550Sstevel@tonic-gate 		shp->sh_type = SHT_RELA;
5560Sstevel@tonic-gate #else
5570Sstevel@tonic-gate 		shp->sh_type = SHT_REL;
5580Sstevel@tonic-gate #endif
5590Sstevel@tonic-gate 		shp->sh_entsize = sizeof (de.de_rel[0]);
5600Sstevel@tonic-gate 		shp->sh_link = ESHDR_SYMTAB;
5610Sstevel@tonic-gate 		shp->sh_info = ESHDR_DOF;
5620Sstevel@tonic-gate 		shp->sh_offset = off;
5630Sstevel@tonic-gate 		shp->sh_size = de.de_nrel * sizeof (de.de_rel[0]);
5640Sstevel@tonic-gate 		shp->sh_addralign = 4;
5650Sstevel@tonic-gate 
5660Sstevel@tonic-gate 		if (dt_write(dtp, fd, &elf_file,
5670Sstevel@tonic-gate 		    sizeof (elf_file)) != sizeof (elf_file) ||
5680Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SHSTRTAB, DTRACE_SHSTRTAB32) ||
5690Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_STRTAB, de.de_strtab) ||
5700Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SYMTAB, de.de_sym) ||
5710Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_REL, de.de_rel) ||
5720Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_DOF, dof)) {
5730Sstevel@tonic-gate 			ret = dt_set_errno(dtp, errno);
5740Sstevel@tonic-gate 		}
5750Sstevel@tonic-gate 	}
5760Sstevel@tonic-gate 
5770Sstevel@tonic-gate 	free(de.de_strtab);
5780Sstevel@tonic-gate 	free(de.de_sym);
5790Sstevel@tonic-gate 	free(de.de_rel);
5800Sstevel@tonic-gate 
5810Sstevel@tonic-gate 	return (ret);
5820Sstevel@tonic-gate }
5830Sstevel@tonic-gate 
5840Sstevel@tonic-gate /*
5850Sstevel@tonic-gate  * Write out an ELF64 file prologue consisting of a header, section headers,
5860Sstevel@tonic-gate  * and a section header string table.  The DOF data will follow this prologue
5870Sstevel@tonic-gate  * and complete the contents of the given ELF file.
5880Sstevel@tonic-gate  */
5890Sstevel@tonic-gate static int
5900Sstevel@tonic-gate dump_elf64(dtrace_hdl_t *dtp, const dof_hdr_t *dof, int fd)
5910Sstevel@tonic-gate {
5920Sstevel@tonic-gate 	struct {
5930Sstevel@tonic-gate 		Elf64_Ehdr ehdr;
5940Sstevel@tonic-gate 		Elf64_Shdr shdr[ESHDR_NUM];
5950Sstevel@tonic-gate 	} elf_file;
5960Sstevel@tonic-gate 
5970Sstevel@tonic-gate 	Elf64_Shdr *shp;
5980Sstevel@tonic-gate 	Elf64_Off off;
5990Sstevel@tonic-gate 	dof_elf64_t de;
6000Sstevel@tonic-gate 	int ret = 0;
6010Sstevel@tonic-gate 	uint_t nshdr;
6020Sstevel@tonic-gate 
6030Sstevel@tonic-gate 	if (prepare_elf64(dtp, dof, &de) != 0)
6040Sstevel@tonic-gate 		return (-1); /* errno is set for us */
6050Sstevel@tonic-gate 
6060Sstevel@tonic-gate 	/*
6070Sstevel@tonic-gate 	 * If there are no relocations, we only need enough sections for
6080Sstevel@tonic-gate 	 * the shstrtab and the DOF.
6090Sstevel@tonic-gate 	 */
6100Sstevel@tonic-gate 	nshdr = de.de_nrel == 0 ? ESHDR_SYMTAB + 1 : ESHDR_NUM;
6110Sstevel@tonic-gate 
6120Sstevel@tonic-gate 	bzero(&elf_file, sizeof (elf_file));
6130Sstevel@tonic-gate 
6140Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG0] = ELFMAG0;
6150Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG1] = ELFMAG1;
6160Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG2] = ELFMAG2;
6170Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_MAG3] = ELFMAG3;
6180Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_VERSION] = EV_CURRENT;
6190Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_CLASS] = ELFCLASS64;
6200Sstevel@tonic-gate #if defined(_BIG_ENDIAN)
6210Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_DATA] = ELFDATA2MSB;
6220Sstevel@tonic-gate #elif defined(_LITTLE_ENDIAN)
6230Sstevel@tonic-gate 	elf_file.ehdr.e_ident[EI_DATA] = ELFDATA2LSB;
6240Sstevel@tonic-gate #endif
6250Sstevel@tonic-gate 	elf_file.ehdr.e_type = ET_REL;
6260Sstevel@tonic-gate #if defined(__sparc)
6270Sstevel@tonic-gate 	elf_file.ehdr.e_machine = EM_SPARCV9;
6280Sstevel@tonic-gate #elif defined(__i386) || defined(__amd64)
6290Sstevel@tonic-gate 	elf_file.ehdr.e_machine = EM_AMD64;
6300Sstevel@tonic-gate #endif
6310Sstevel@tonic-gate 	elf_file.ehdr.e_version = EV_CURRENT;
6320Sstevel@tonic-gate 	elf_file.ehdr.e_shoff = sizeof (Elf64_Ehdr);
6330Sstevel@tonic-gate 	elf_file.ehdr.e_ehsize = sizeof (Elf64_Ehdr);
6340Sstevel@tonic-gate 	elf_file.ehdr.e_phentsize = sizeof (Elf64_Phdr);
6350Sstevel@tonic-gate 	elf_file.ehdr.e_shentsize = sizeof (Elf64_Shdr);
6360Sstevel@tonic-gate 	elf_file.ehdr.e_shnum = nshdr;
6370Sstevel@tonic-gate 	elf_file.ehdr.e_shstrndx = ESHDR_SHSTRTAB;
6380Sstevel@tonic-gate 	off = sizeof (elf_file) + nshdr * sizeof (Elf64_Shdr);
6390Sstevel@tonic-gate 
6400Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_SHSTRTAB];
6410Sstevel@tonic-gate 	shp->sh_name = 1; /* DTRACE_SHSTRTAB64[1] = ".shstrtab" */
6420Sstevel@tonic-gate 	shp->sh_type = SHT_STRTAB;
6430Sstevel@tonic-gate 	shp->sh_offset = off;
6440Sstevel@tonic-gate 	shp->sh_size = sizeof (DTRACE_SHSTRTAB64);
6450Sstevel@tonic-gate 	shp->sh_addralign = sizeof (char);
6460Sstevel@tonic-gate 	off = P2ROUNDUP(shp->sh_offset + shp->sh_size, 8);
6470Sstevel@tonic-gate 
6480Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_DOF];
6490Sstevel@tonic-gate 	shp->sh_name = 11; /* DTRACE_SHSTRTAB64[11] = ".SUNW_dof" */
6500Sstevel@tonic-gate 	shp->sh_flags = SHF_ALLOC;
6510Sstevel@tonic-gate 	shp->sh_type = SHT_SUNW_dof;
6520Sstevel@tonic-gate 	shp->sh_offset = off;
6530Sstevel@tonic-gate 	shp->sh_size = dof->dofh_filesz;
6540Sstevel@tonic-gate 	shp->sh_addralign = 8;
6550Sstevel@tonic-gate 	off = shp->sh_offset + shp->sh_size;
6560Sstevel@tonic-gate 
6570Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_STRTAB];
6580Sstevel@tonic-gate 	shp->sh_name = 21; /* DTRACE_SHSTRTAB64[21] = ".strtab" */
6590Sstevel@tonic-gate 	shp->sh_flags = SHF_ALLOC;
6600Sstevel@tonic-gate 	shp->sh_type = SHT_STRTAB;
6610Sstevel@tonic-gate 	shp->sh_offset = off;
6620Sstevel@tonic-gate 	shp->sh_size = de.de_strlen;
6630Sstevel@tonic-gate 	shp->sh_addralign = sizeof (char);
6640Sstevel@tonic-gate 	off = P2ROUNDUP(shp->sh_offset + shp->sh_size, 8);
6650Sstevel@tonic-gate 
6660Sstevel@tonic-gate 	shp = &elf_file.shdr[ESHDR_SYMTAB];
6670Sstevel@tonic-gate 	shp->sh_name = 29; /* DTRACE_SHSTRTAB64[29] = ".symtab" */
6680Sstevel@tonic-gate 	shp->sh_flags = SHF_ALLOC;
6690Sstevel@tonic-gate 	shp->sh_type = SHT_SYMTAB;
6700Sstevel@tonic-gate 	shp->sh_entsize = sizeof (Elf64_Sym);
6710Sstevel@tonic-gate 	shp->sh_link = ESHDR_STRTAB;
6720Sstevel@tonic-gate 	shp->sh_offset = off;
6730Sstevel@tonic-gate 	shp->sh_info = de.de_global;
6740Sstevel@tonic-gate 	shp->sh_size = de.de_nsym * sizeof (Elf64_Sym);
6750Sstevel@tonic-gate 	shp->sh_addralign = 8;
6760Sstevel@tonic-gate 	off = P2ROUNDUP(shp->sh_offset + shp->sh_size, 8);
6770Sstevel@tonic-gate 
6780Sstevel@tonic-gate 	if (de.de_nrel == 0) {
6790Sstevel@tonic-gate 		if (dt_write(dtp, fd, &elf_file,
6800Sstevel@tonic-gate 		    sizeof (elf_file)) != sizeof (elf_file) ||
6810Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SHSTRTAB, DTRACE_SHSTRTAB64) ||
6820Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_STRTAB, de.de_strtab) ||
6830Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SYMTAB, de.de_sym) ||
6840Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_DOF, dof)) {
6850Sstevel@tonic-gate 			ret = dt_set_errno(dtp, errno);
6860Sstevel@tonic-gate 		}
6870Sstevel@tonic-gate 	} else {
6880Sstevel@tonic-gate 		shp = &elf_file.shdr[ESHDR_REL];
6890Sstevel@tonic-gate 		shp->sh_name = 37; /* DTRACE_SHSTRTAB64[37] = ".rel.SUNW_dof" */
6900Sstevel@tonic-gate 		shp->sh_flags = SHF_ALLOC;
6910Sstevel@tonic-gate 		shp->sh_type = SHT_RELA;
6920Sstevel@tonic-gate 		shp->sh_entsize = sizeof (de.de_rel[0]);
6930Sstevel@tonic-gate 		shp->sh_link = ESHDR_SYMTAB;
6940Sstevel@tonic-gate 		shp->sh_info = ESHDR_DOF;
6950Sstevel@tonic-gate 		shp->sh_offset = off;
6960Sstevel@tonic-gate 		shp->sh_size = de.de_nrel * sizeof (de.de_rel[0]);
6970Sstevel@tonic-gate 		shp->sh_addralign = 8;
6980Sstevel@tonic-gate 
6990Sstevel@tonic-gate 		if (dt_write(dtp, fd, &elf_file,
7000Sstevel@tonic-gate 		    sizeof (elf_file)) != sizeof (elf_file) ||
7010Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SHSTRTAB, DTRACE_SHSTRTAB64) ||
7020Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_STRTAB, de.de_strtab) ||
7030Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_SYMTAB, de.de_sym) ||
7040Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_REL, de.de_rel) ||
7050Sstevel@tonic-gate 		    PWRITE_SCN(ESHDR_DOF, dof)) {
7060Sstevel@tonic-gate 			ret = dt_set_errno(dtp, errno);
7070Sstevel@tonic-gate 		}
7080Sstevel@tonic-gate 	}
7090Sstevel@tonic-gate 
7100Sstevel@tonic-gate 	free(de.de_strtab);
7110Sstevel@tonic-gate 	free(de.de_sym);
7120Sstevel@tonic-gate 	free(de.de_rel);
7130Sstevel@tonic-gate 
7140Sstevel@tonic-gate 	return (ret);
7150Sstevel@tonic-gate }
7160Sstevel@tonic-gate 
7170Sstevel@tonic-gate static int
7183944Sahl dt_symtab_lookup(Elf_Data *data_sym, int nsym, uintptr_t addr, uint_t shn,
7193944Sahl     GElf_Sym *sym)
7200Sstevel@tonic-gate {
7210Sstevel@tonic-gate 	int i, ret = -1;
7220Sstevel@tonic-gate 	GElf_Sym s;
7230Sstevel@tonic-gate 
7243944Sahl 	for (i = 0; i < nsym && gelf_getsym(data_sym, i, sym) != NULL; i++) {
7250Sstevel@tonic-gate 		if (GELF_ST_TYPE(sym->st_info) == STT_FUNC &&
7260Sstevel@tonic-gate 		    shn == sym->st_shndx &&
7270Sstevel@tonic-gate 		    sym->st_value <= addr &&
7280Sstevel@tonic-gate 		    addr < sym->st_value + sym->st_size) {
7290Sstevel@tonic-gate 			if (GELF_ST_BIND(sym->st_info) == STB_GLOBAL)
7300Sstevel@tonic-gate 				return (0);
7310Sstevel@tonic-gate 
7320Sstevel@tonic-gate 			ret = 0;
7330Sstevel@tonic-gate 			s = *sym;
7340Sstevel@tonic-gate 		}
7350Sstevel@tonic-gate 	}
7360Sstevel@tonic-gate 
7370Sstevel@tonic-gate 	if (ret == 0)
7380Sstevel@tonic-gate 		*sym = s;
7390Sstevel@tonic-gate 	return (ret);
7400Sstevel@tonic-gate }
7410Sstevel@tonic-gate 
7420Sstevel@tonic-gate #if defined(__sparc)
7430Sstevel@tonic-gate 
7440Sstevel@tonic-gate #define	DT_OP_RET		0x81c7e008
7450Sstevel@tonic-gate #define	DT_OP_NOP		0x01000000
7460Sstevel@tonic-gate #define	DT_OP_CALL		0x40000000
7471710Sahl #define	DT_OP_CLR_O0		0x90102000
7480Sstevel@tonic-gate 
7490Sstevel@tonic-gate #define	DT_IS_MOV_O7(inst)	(((inst) & 0xffffe000) == 0x9e100000)
7500Sstevel@tonic-gate #define	DT_IS_RESTORE(inst)	(((inst) & 0xc1f80000) == 0x81e80000)
7510Sstevel@tonic-gate #define	DT_IS_RETL(inst)	(((inst) & 0xfff83fff) == 0x81c02008)
7520Sstevel@tonic-gate 
7530Sstevel@tonic-gate #define	DT_RS2(inst)		((inst) & 0x1f)
7540Sstevel@tonic-gate #define	DT_MAKE_RETL(reg)	(0x81c02008 | ((reg) << 14))
7550Sstevel@tonic-gate 
7561710Sahl /*ARGSUSED*/
7570Sstevel@tonic-gate static int
7581710Sahl dt_modtext(dtrace_hdl_t *dtp, char *p, int isenabled, GElf_Rela *rela,
7591710Sahl     uint32_t *off)
7600Sstevel@tonic-gate {
7610Sstevel@tonic-gate 	uint32_t *ip;
7620Sstevel@tonic-gate 
7630Sstevel@tonic-gate 	if ((rela->r_offset & (sizeof (uint32_t) - 1)) != 0)
7640Sstevel@tonic-gate 		return (-1);
7650Sstevel@tonic-gate 
7660Sstevel@tonic-gate 	/*LINTED*/
7670Sstevel@tonic-gate 	ip = (uint32_t *)(p + rela->r_offset);
7680Sstevel@tonic-gate 
7690Sstevel@tonic-gate 	/*
7700Sstevel@tonic-gate 	 * We only know about some specific relocation types.
7710Sstevel@tonic-gate 	 */
7720Sstevel@tonic-gate 	if (GELF_R_TYPE(rela->r_info) != R_SPARC_WDISP30 &&
7730Sstevel@tonic-gate 	    GELF_R_TYPE(rela->r_info) != R_SPARC_WPLT30)
7740Sstevel@tonic-gate 		return (-1);
7750Sstevel@tonic-gate 
7760Sstevel@tonic-gate 	/*
7771710Sahl 	 * We may have already processed this object file in an earlier linker
7781710Sahl 	 * invocation. Check to see if the present instruction sequence matches
7791710Sahl 	 * the one we would install.
7800Sstevel@tonic-gate 	 */
7811710Sahl 	if (isenabled) {
7821710Sahl 		if (ip[0] == DT_OP_CLR_O0)
7830Sstevel@tonic-gate 			return (0);
7840Sstevel@tonic-gate 	} else {
7851710Sahl 		if (DT_IS_RESTORE(ip[1])) {
7861710Sahl 			if (ip[0] == DT_OP_RET)
7871710Sahl 				return (0);
7881710Sahl 		} else if (DT_IS_MOV_O7(ip[1])) {
7891710Sahl 			if (DT_IS_RETL(ip[0]))
7901710Sahl 				return (0);
7911710Sahl 		} else {
7921710Sahl 			if (ip[0] == DT_OP_NOP) {
7931710Sahl 				(*off) += sizeof (ip[0]);
7941710Sahl 				return (0);
7951710Sahl 			}
7960Sstevel@tonic-gate 		}
7970Sstevel@tonic-gate 	}
7980Sstevel@tonic-gate 
7990Sstevel@tonic-gate 	/*
8000Sstevel@tonic-gate 	 * We only expect call instructions with a displacement of 0.
8010Sstevel@tonic-gate 	 */
8020Sstevel@tonic-gate 	if (ip[0] != DT_OP_CALL) {
8030Sstevel@tonic-gate 		dt_dprintf("found %x instead of a call instruction at %llx\n",
8040Sstevel@tonic-gate 		    ip[0], (u_longlong_t)rela->r_offset);
8050Sstevel@tonic-gate 		return (-1);
8060Sstevel@tonic-gate 	}
8070Sstevel@tonic-gate 
8081710Sahl 	if (isenabled) {
8091710Sahl 		/*
8101710Sahl 		 * It would necessarily indicate incorrect usage if an is-
8111710Sahl 		 * enabled probe were tail-called so flag that as an error.
8121710Sahl 		 * It's also potentially (very) tricky to handle gracefully,
8131710Sahl 		 * but could be done if this were a desired use scenario.
8141710Sahl 		 */
8151710Sahl 		if (DT_IS_RESTORE(ip[1]) || DT_IS_MOV_O7(ip[1])) {
8161710Sahl 			dt_dprintf("tail call to is-enabled probe at %llx\n",
8171710Sahl 			    (u_longlong_t)rela->r_offset);
8181710Sahl 			return (-1);
8191710Sahl 		}
8201710Sahl 
8211710Sahl 		ip[0] = DT_OP_CLR_O0;
8220Sstevel@tonic-gate 	} else {
8231710Sahl 		/*
8241710Sahl 		 * If the call is followed by a restore, it's a tail call so
8251710Sahl 		 * change the call to a ret. If the call if followed by a mov
8261710Sahl 		 * of a register into %o7, it's a tail call in leaf context
8271710Sahl 		 * so change the call to a retl-like instruction that returns
8281710Sahl 		 * to that register value + 8 (rather than the typical %o7 +
829*4685Sahl 		 * 8); the delay slot instruction is left, but should have no
830*4685Sahl 		 * effect. Otherwise we change the call to be a nop. In the
831*4685Sahl 		 * first and the last case we adjust the offset to land on what
832*4685Sahl 		 * was once the delay slot of the call so we correctly get all
833*4685Sahl 		 * the arguments as they would have been passed in a normal
834*4685Sahl 		 * function call.
8351710Sahl 		 */
8361710Sahl 		if (DT_IS_RESTORE(ip[1])) {
8371710Sahl 			ip[0] = DT_OP_RET;
838*4685Sahl 			(*off) += sizeof (ip[0]);
8391710Sahl 		} else if (DT_IS_MOV_O7(ip[1])) {
8401710Sahl 			ip[0] = DT_MAKE_RETL(DT_RS2(ip[1]));
8411710Sahl 		} else {
8421710Sahl 			ip[0] = DT_OP_NOP;
8431710Sahl 			(*off) += sizeof (ip[0]);
8441710Sahl 		}
8450Sstevel@tonic-gate 	}
8460Sstevel@tonic-gate 
8470Sstevel@tonic-gate 	return (0);
8480Sstevel@tonic-gate }
8490Sstevel@tonic-gate 
8500Sstevel@tonic-gate #elif defined(__i386) || defined(__amd64)
8510Sstevel@tonic-gate 
8520Sstevel@tonic-gate #define	DT_OP_NOP		0x90
8530Sstevel@tonic-gate #define	DT_OP_CALL		0xe8
8541710Sahl #define	DT_OP_REX_RAX		0x48
8551710Sahl #define	DT_OP_XOR_EAX_0		0x33
8561710Sahl #define	DT_OP_XOR_EAX_1		0xc0
8570Sstevel@tonic-gate 
8580Sstevel@tonic-gate static int
8591710Sahl dt_modtext(dtrace_hdl_t *dtp, char *p, int isenabled, GElf_Rela *rela,
8601710Sahl     uint32_t *off)
8610Sstevel@tonic-gate {
8620Sstevel@tonic-gate 	uint8_t *ip = (uint8_t *)(p + rela->r_offset - 1);
8630Sstevel@tonic-gate 
8640Sstevel@tonic-gate 	/*
8650Sstevel@tonic-gate 	 * On x86, the first byte of the instruction is the call opcode and
8660Sstevel@tonic-gate 	 * the next four bytes are the 32-bit address; the relocation is for
8671710Sahl 	 * the address operand. We back up the offset to the first byte of
8681710Sahl 	 * the instruction. For is-enabled probes, we later advance the offset
8691710Sahl 	 * so that it hits the first nop in the instruction sequence.
8700Sstevel@tonic-gate 	 */
8710Sstevel@tonic-gate 	(*off) -= 1;
8720Sstevel@tonic-gate 
8730Sstevel@tonic-gate 	/*
8740Sstevel@tonic-gate 	 * We only know about some specific relocation types. Luckily
8750Sstevel@tonic-gate 	 * these types have the same values on both 32-bit and 64-bit
8760Sstevel@tonic-gate 	 * x86 architectures.
8770Sstevel@tonic-gate 	 */
8780Sstevel@tonic-gate 	if (GELF_R_TYPE(rela->r_info) != R_386_PC32 &&
8790Sstevel@tonic-gate 	    GELF_R_TYPE(rela->r_info) != R_386_PLT32)
8800Sstevel@tonic-gate 		return (-1);
8810Sstevel@tonic-gate 
8820Sstevel@tonic-gate 	/*
8831710Sahl 	 * We may have already processed this object file in an earlier linker
8841710Sahl 	 * invocation. Check to see if the present instruction sequence matches
8851710Sahl 	 * the one we would install. For is-enabled probes, we advance the
8861710Sahl 	 * offset to the first nop instruction in the sequence.
8870Sstevel@tonic-gate 	 */
8881710Sahl 	if (!isenabled) {
8891710Sahl 		if (ip[0] == DT_OP_NOP && ip[1] == DT_OP_NOP &&
8901710Sahl 		    ip[2] == DT_OP_NOP && ip[3] == DT_OP_NOP &&
8911710Sahl 		    ip[4] == DT_OP_NOP)
8921710Sahl 			return (0);
8931710Sahl 	} else if (dtp->dt_oflags & DTRACE_O_LP64) {
8941710Sahl 		if (ip[0] == DT_OP_REX_RAX &&
8951710Sahl 		    ip[1] == DT_OP_XOR_EAX_0 && ip[2] == DT_OP_XOR_EAX_1 &&
8961710Sahl 		    ip[3] == DT_OP_NOP && ip[4] == DT_OP_NOP) {
8971710Sahl 			(*off) += 3;
8981710Sahl 			return (0);
8991710Sahl 		}
9001710Sahl 	} else {
9011710Sahl 		if (ip[0] == DT_OP_XOR_EAX_0 && ip[1] == DT_OP_XOR_EAX_1 &&
9021710Sahl 		    ip[2] == DT_OP_NOP && ip[3] == DT_OP_NOP &&
9031710Sahl 		    ip[4] == DT_OP_NOP) {
9041710Sahl 			(*off) += 2;
9051710Sahl 			return (0);
9061710Sahl 		}
9071710Sahl 	}
9080Sstevel@tonic-gate 
9090Sstevel@tonic-gate 	/*
9100Sstevel@tonic-gate 	 * We only expect a call instrution with a 32-bit displacement.
9110Sstevel@tonic-gate 	 */
9120Sstevel@tonic-gate 	if (ip[0] != DT_OP_CALL) {
9130Sstevel@tonic-gate 		dt_dprintf("found %x instead of a call instruction at %llx\n",
9140Sstevel@tonic-gate 		    ip[0], (u_longlong_t)rela->r_offset);
9150Sstevel@tonic-gate 		return (-1);
9160Sstevel@tonic-gate 	}
9170Sstevel@tonic-gate 
9181710Sahl 	/*
9191710Sahl 	 * Establish the instruction sequence -- all nops for probes, and an
9201710Sahl 	 * instruction to clear the return value register (%eax/%rax) followed
9211710Sahl 	 * by nops for is-enabled probes. For is-enabled probes, we advance
9221710Sahl 	 * the offset to the first nop. This isn't stricly necessary but makes
9231710Sahl 	 * for more readable disassembly when the probe is enabled.
9241710Sahl 	 */
9251710Sahl 	if (!isenabled) {
9261710Sahl 		ip[0] = DT_OP_NOP;
9271710Sahl 		ip[1] = DT_OP_NOP;
9281710Sahl 		ip[2] = DT_OP_NOP;
9291710Sahl 		ip[3] = DT_OP_NOP;
9301710Sahl 		ip[4] = DT_OP_NOP;
9311710Sahl 	} else if (dtp->dt_oflags & DTRACE_O_LP64) {
9321710Sahl 		ip[0] = DT_OP_REX_RAX;
9331710Sahl 		ip[1] = DT_OP_XOR_EAX_0;
9341710Sahl 		ip[2] = DT_OP_XOR_EAX_1;
9351710Sahl 		ip[3] = DT_OP_NOP;
9361710Sahl 		ip[4] = DT_OP_NOP;
9371710Sahl 		(*off) += 3;
9381710Sahl 	} else {
9391710Sahl 		ip[0] = DT_OP_XOR_EAX_0;
9401710Sahl 		ip[1] = DT_OP_XOR_EAX_1;
9411710Sahl 		ip[2] = DT_OP_NOP;
9421710Sahl 		ip[3] = DT_OP_NOP;
9431710Sahl 		ip[4] = DT_OP_NOP;
9441710Sahl 		(*off) += 2;
9451710Sahl 	}
9460Sstevel@tonic-gate 
9470Sstevel@tonic-gate 	return (0);
9480Sstevel@tonic-gate }
9490Sstevel@tonic-gate 
9500Sstevel@tonic-gate #else
9510Sstevel@tonic-gate #error unknown ISA
9520Sstevel@tonic-gate #endif
9530Sstevel@tonic-gate 
9541239Sahl /*PRINTFLIKE5*/
9550Sstevel@tonic-gate static int
9561239Sahl dt_link_error(dtrace_hdl_t *dtp, Elf *elf, int fd, dt_link_pair_t *bufs,
9571239Sahl     const char *format, ...)
9580Sstevel@tonic-gate {
9590Sstevel@tonic-gate 	va_list ap;
9601239Sahl 	dt_link_pair_t *pair;
9610Sstevel@tonic-gate 
9620Sstevel@tonic-gate 	va_start(ap, format);
9630Sstevel@tonic-gate 	dt_set_errmsg(dtp, NULL, NULL, NULL, 0, format, ap);
9640Sstevel@tonic-gate 	va_end(ap);
9650Sstevel@tonic-gate 
966265Smws 	if (elf != NULL)
967265Smws 		(void) elf_end(elf);
968265Smws 
9691239Sahl 	if (fd >= 0)
9701239Sahl 		(void) close(fd);
9711239Sahl 
9721239Sahl 	while ((pair = bufs) != NULL) {
9731239Sahl 		bufs = pair->dlp_next;
9741239Sahl 		dt_free(dtp, pair->dlp_str);
9751239Sahl 		dt_free(dtp, pair->dlp_sym);
9761239Sahl 		dt_free(dtp, pair);
9771239Sahl 	}
9781239Sahl 
9790Sstevel@tonic-gate 	return (dt_set_errno(dtp, EDT_COMPILER));
9800Sstevel@tonic-gate }
9810Sstevel@tonic-gate 
9820Sstevel@tonic-gate static int
9831710Sahl process_obj(dtrace_hdl_t *dtp, const char *obj, int *eprobesp)
9840Sstevel@tonic-gate {
9851710Sahl 	static const char dt_prefix[] = "__dtrace";
9861710Sahl 	static const char dt_enabled[] = "enabled";
9871239Sahl 	static const char dt_symprefix[] = "$dtrace";
9881239Sahl 	static const char dt_symfmt[] = "%s%d.%s";
9891710Sahl 	int fd, i, ndx, eprobe, mod = 0;
990265Smws 	Elf *elf = NULL;
9910Sstevel@tonic-gate 	GElf_Ehdr ehdr;
9921239Sahl 	Elf_Scn *scn_rel, *scn_sym, *scn_str, *scn_tgt;
9931239Sahl 	Elf_Data *data_rel, *data_sym, *data_str, *data_tgt;
9941239Sahl 	GElf_Shdr shdr_rel, shdr_sym, shdr_str, shdr_tgt;
9951239Sahl 	GElf_Sym rsym, fsym, dsym;
9960Sstevel@tonic-gate 	GElf_Rela rela;
9971239Sahl 	char *s, *p, *r;
9980Sstevel@tonic-gate 	char pname[DTRACE_PROVNAMELEN];
9990Sstevel@tonic-gate 	dt_provider_t *pvp;
10000Sstevel@tonic-gate 	dt_probe_t *prp;
10010Sstevel@tonic-gate 	uint32_t off, eclass, emachine1, emachine2;
10022769Sahl 	size_t symsize, nsym, isym, istr, len;
10031239Sahl 	key_t objkey;
10041239Sahl 	dt_link_pair_t *pair, *bufs = NULL;
10052769Sahl 	dt_strtab_t *strtab;
10060Sstevel@tonic-gate 
10070Sstevel@tonic-gate 	if ((fd = open64(obj, O_RDWR)) == -1) {
10081239Sahl 		return (dt_link_error(dtp, elf, fd, bufs,
10091239Sahl 		    "failed to open %s: %s", obj, strerror(errno)));
10100Sstevel@tonic-gate 	}
10110Sstevel@tonic-gate 
1012265Smws 	if ((elf = elf_begin(fd, ELF_C_RDWR, NULL)) == NULL) {
10131239Sahl 		return (dt_link_error(dtp, elf, fd, bufs,
10141239Sahl 		    "failed to process %s: %s", obj, elf_errmsg(elf_errno())));
10150Sstevel@tonic-gate 	}
10160Sstevel@tonic-gate 
10170Sstevel@tonic-gate 	switch (elf_kind(elf)) {
10180Sstevel@tonic-gate 	case ELF_K_ELF:
10190Sstevel@tonic-gate 		break;
10200Sstevel@tonic-gate 	case ELF_K_AR:
10211239Sahl 		return (dt_link_error(dtp, elf, fd, bufs, "archives are not "
10221239Sahl 		    "permitted; use the contents of the archive instead: %s",
10231239Sahl 		    obj));
10240Sstevel@tonic-gate 	default:
10251239Sahl 		return (dt_link_error(dtp, elf, fd, bufs,
10261239Sahl 		    "invalid file type: %s", obj));
10270Sstevel@tonic-gate 	}
10280Sstevel@tonic-gate 
10291239Sahl 	if (gelf_getehdr(elf, &ehdr) == NULL) {
10301239Sahl 		return (dt_link_error(dtp, elf, fd, bufs, "corrupt file: %s",
10311239Sahl 		    obj));
10321239Sahl 	}
10330Sstevel@tonic-gate 
10340Sstevel@tonic-gate 	if (dtp->dt_oflags & DTRACE_O_LP64) {
10350Sstevel@tonic-gate 		eclass = ELFCLASS64;
10360Sstevel@tonic-gate #if defined(__sparc)
10370Sstevel@tonic-gate 		emachine1 = emachine2 = EM_SPARCV9;
10380Sstevel@tonic-gate #elif defined(__i386) || defined(__amd64)
10390Sstevel@tonic-gate 		emachine1 = emachine2 = EM_AMD64;
10400Sstevel@tonic-gate #endif
10411239Sahl 		symsize = sizeof (Elf64_Sym);
10420Sstevel@tonic-gate 	} else {
10430Sstevel@tonic-gate 		eclass = ELFCLASS32;
10440Sstevel@tonic-gate #if defined(__sparc)
10450Sstevel@tonic-gate 		emachine1 = EM_SPARC;
10460Sstevel@tonic-gate 		emachine2 = EM_SPARC32PLUS;
10470Sstevel@tonic-gate #elif defined(__i386) || defined(__amd64)
10480Sstevel@tonic-gate 		emachine1 = emachine2 = EM_386;
10490Sstevel@tonic-gate #endif
10501239Sahl 		symsize = sizeof (Elf32_Sym);
10510Sstevel@tonic-gate 	}
10520Sstevel@tonic-gate 
1053265Smws 	if (ehdr.e_ident[EI_CLASS] != eclass) {
10541239Sahl 		return (dt_link_error(dtp, elf, fd, bufs,
1055265Smws 		    "incorrect ELF class for object file: %s", obj));
1056265Smws 	}
10570Sstevel@tonic-gate 
10581239Sahl 	if (ehdr.e_machine != emachine1 && ehdr.e_machine != emachine2) {
10591239Sahl 		return (dt_link_error(dtp, elf, fd, bufs,
10601239Sahl 		    "incorrect ELF machine type for object file: %s", obj));
10611239Sahl 	}
10621239Sahl 
10631239Sahl 	/*
10641239Sahl 	 * We use this token as a relatively unique handle for this file on the
10651239Sahl 	 * system in order to disambiguate potential conflicts between files of
10661239Sahl 	 * the same name which contain identially named local symbols.
10671239Sahl 	 */
10681239Sahl 	if ((objkey = ftok(obj, 0)) == (key_t)-1) {
10691239Sahl 		return (dt_link_error(dtp, elf, fd, bufs,
10701239Sahl 		    "failed to generate unique key for object file: %s", obj));
10711239Sahl 	}
10720Sstevel@tonic-gate 
10730Sstevel@tonic-gate 	scn_rel = NULL;
10740Sstevel@tonic-gate 	while ((scn_rel = elf_nextscn(elf, scn_rel)) != NULL) {
10750Sstevel@tonic-gate 		if (gelf_getshdr(scn_rel, &shdr_rel) == NULL)
10760Sstevel@tonic-gate 			goto err;
10770Sstevel@tonic-gate 
10781239Sahl 		/*
10791239Sahl 		 * Skip any non-relocation sections.
10801239Sahl 		 */
10810Sstevel@tonic-gate 		if (shdr_rel.sh_type != SHT_RELA && shdr_rel.sh_type != SHT_REL)
10820Sstevel@tonic-gate 			continue;
10830Sstevel@tonic-gate 
10840Sstevel@tonic-gate 		if ((data_rel = elf_getdata(scn_rel, NULL)) == NULL)
10850Sstevel@tonic-gate 			goto err;
10860Sstevel@tonic-gate 
10871239Sahl 		/*
10881239Sahl 		 * Grab the section, section header and section data for the
10891239Sahl 		 * symbol table that this relocation section references.
10901239Sahl 		 */
10910Sstevel@tonic-gate 		if ((scn_sym = elf_getscn(elf, shdr_rel.sh_link)) == NULL ||
10920Sstevel@tonic-gate 		    gelf_getshdr(scn_sym, &shdr_sym) == NULL ||
10930Sstevel@tonic-gate 		    (data_sym = elf_getdata(scn_sym, NULL)) == NULL)
10940Sstevel@tonic-gate 			goto err;
10950Sstevel@tonic-gate 
10961239Sahl 		/*
10971239Sahl 		 * Ditto for that symbol table's string table.
10981239Sahl 		 */
10991239Sahl 		if ((scn_str = elf_getscn(elf, shdr_sym.sh_link)) == NULL ||
11001239Sahl 		    gelf_getshdr(scn_str, &shdr_str) == NULL ||
11011239Sahl 		    (data_str = elf_getdata(scn_str, NULL)) == NULL)
11021239Sahl 			goto err;
11031239Sahl 
11041239Sahl 		/*
11051239Sahl 		 * Grab the section, section header and section data for the
11061239Sahl 		 * target section for the relocations. For the relocations
11071239Sahl 		 * we're looking for -- this will typically be the text of the
11081239Sahl 		 * object file.
11091239Sahl 		 */
11100Sstevel@tonic-gate 		if ((scn_tgt = elf_getscn(elf, shdr_rel.sh_info)) == NULL ||
11110Sstevel@tonic-gate 		    gelf_getshdr(scn_tgt, &shdr_tgt) == NULL ||
11120Sstevel@tonic-gate 		    (data_tgt = elf_getdata(scn_tgt, NULL)) == NULL)
11130Sstevel@tonic-gate 			goto err;
11140Sstevel@tonic-gate 
11151239Sahl 		/*
11161239Sahl 		 * We're looking for relocations to symbols matching this form:
11171239Sahl 		 *
11181710Sahl 		 *   __dtrace[enabled]_<prov>___<probe>
11191239Sahl 		 *
11201239Sahl 		 * For the generated object, we need to record the location
11211239Sahl 		 * identified by the relocation, and create a new relocation
11221239Sahl 		 * in the generated object that will be resolved at link time
11231239Sahl 		 * to the location of the function in which the probe is
11241239Sahl 		 * embedded. In the target object, we change the matched symbol
11251239Sahl 		 * so that it will be ignored at link time, and we modify the
11261239Sahl 		 * target (text) section to replace the call instruction with
11271239Sahl 		 * one or more nops.
11281239Sahl 		 *
11291239Sahl 		 * If the function containing the probe is locally scoped
11301239Sahl 		 * (static), we create an alias used by the relocation in the
11311239Sahl 		 * generated object. The alias, a new symbol, will be global
11321239Sahl 		 * (so that the relocation from the generated object can be
11331239Sahl 		 * resolved), and hidden (so that it is converted to a local
11341239Sahl 		 * symbol at link time). Such aliases have this form:
11351239Sahl 		 *
11361239Sahl 		 *   $dtrace<key>.<function>
11371239Sahl 		 *
11381239Sahl 		 * We take a first pass through all the relocations to
11392769Sahl 		 * populate our string table and count the number of extra
11402769Sahl 		 * symbols we'll require.
11411239Sahl 		 */
11422769Sahl 		strtab = dt_strtab_create(1);
11432769Sahl 		nsym = 0;
11443944Sahl 		isym = data_sym->d_size / symsize;
11453944Sahl 		istr = data_str->d_size;
11462769Sahl 
11470Sstevel@tonic-gate 		for (i = 0; i < shdr_rel.sh_size / shdr_rel.sh_entsize; i++) {
11480Sstevel@tonic-gate 
11490Sstevel@tonic-gate 			if (shdr_rel.sh_type == SHT_RELA) {
11500Sstevel@tonic-gate 				if (gelf_getrela(data_rel, i, &rela) == NULL)
11510Sstevel@tonic-gate 					continue;
11520Sstevel@tonic-gate 			} else {
11531239Sahl 				GElf_Rel rel;
11541239Sahl 				if (gelf_getrel(data_rel, i, &rel) == NULL)
11551239Sahl 					continue;
11561239Sahl 				rela.r_offset = rel.r_offset;
11571239Sahl 				rela.r_info = rel.r_info;
11581239Sahl 				rela.r_addend = 0;
11591239Sahl 			}
11601239Sahl 
11611239Sahl 			if (gelf_getsym(data_sym, GELF_R_SYM(rela.r_info),
11622769Sahl 			    &rsym) == NULL) {
11632769Sahl 				dt_strtab_destroy(strtab);
11641239Sahl 				goto err;
11652769Sahl 			}
11661239Sahl 
11671239Sahl 			s = (char *)data_str->d_buf + rsym.st_name;
11681239Sahl 
11691239Sahl 			if (strncmp(s, dt_prefix, sizeof (dt_prefix) - 1) != 0)
11701239Sahl 				continue;
11711239Sahl 
11723944Sahl 			if (dt_symtab_lookup(data_sym, isym, rela.r_offset,
11732769Sahl 			    shdr_rel.sh_info, &fsym) != 0) {
11742769Sahl 				dt_strtab_destroy(strtab);
11751239Sahl 				goto err;
11762769Sahl 			}
11771239Sahl 
11781239Sahl 			if (GELF_ST_BIND(fsym.st_info) != STB_LOCAL)
11791239Sahl 				continue;
11801239Sahl 
11812769Sahl 			if (fsym.st_name > data_str->d_size) {
11822769Sahl 				dt_strtab_destroy(strtab);
11831239Sahl 				goto err;
11842769Sahl 			}
11851239Sahl 
11861239Sahl 			s = (char *)data_str->d_buf + fsym.st_name;
11871239Sahl 
11881239Sahl 			/*
11891239Sahl 			 * If this symbol isn't of type function, we've really
11901239Sahl 			 * driven off the rails or the object file is corrupt.
11911239Sahl 			 */
11921239Sahl 			if (GELF_ST_TYPE(fsym.st_info) != STT_FUNC) {
11932769Sahl 				dt_strtab_destroy(strtab);
11941239Sahl 				return (dt_link_error(dtp, elf, fd, bufs,
11951239Sahl 				    "expected %s to be of type function", s));
11961239Sahl 			}
11971239Sahl 
11982769Sahl 			len = snprintf(NULL, 0, dt_symfmt, dt_symprefix,
11992769Sahl 			    objkey, s) + 1;
12002769Sahl 			if ((p = dt_alloc(dtp, len)) == NULL) {
12012769Sahl 				dt_strtab_destroy(strtab);
12022769Sahl 				goto err;
12032769Sahl 			}
12042769Sahl 			(void) snprintf(p, len, dt_symfmt, dt_symprefix,
12052769Sahl 			    objkey, s);
12062769Sahl 
12072769Sahl 			if (dt_strtab_index(strtab, p) == -1) {
12082769Sahl 				nsym++;
12092769Sahl 				(void) dt_strtab_insert(strtab, p);
12102769Sahl 			}
12112769Sahl 
12122769Sahl 			dt_free(dtp, p);
12131239Sahl 		}
12141239Sahl 
12151239Sahl 		/*
12161239Sahl 		 * If needed, allocate the additional space for the symbol
12171239Sahl 		 * table and string table copying the old data into the new
12181239Sahl 		 * buffers, and marking the buffers as dirty. We inject those
12191239Sahl 		 * newly allocated buffers into the libelf data structures, but
12201239Sahl 		 * are still responsible for freeing them once we're done with
12211239Sahl 		 * the elf handle.
12221239Sahl 		 */
12232769Sahl 		if (nsym > 0) {
12242769Sahl 			/*
12252769Sahl 			 * The first byte of the string table is reserved for
12262769Sahl 			 * the \0 entry.
12272769Sahl 			 */
12282769Sahl 			len = dt_strtab_size(strtab) - 1;
12292769Sahl 
12302769Sahl 			assert(len > 0);
12312769Sahl 			assert(dt_strtab_index(strtab, "") == 0);
12322769Sahl 
12332769Sahl 			dt_strtab_destroy(strtab);
12341239Sahl 
12351239Sahl 			if ((pair = dt_alloc(dtp, sizeof (*pair))) == NULL)
12361239Sahl 				goto err;
12371239Sahl 
12381239Sahl 			if ((pair->dlp_str = dt_alloc(dtp, data_str->d_size +
12392769Sahl 			    len)) == NULL) {
12401239Sahl 				dt_free(dtp, pair);
12411239Sahl 				goto err;
12421239Sahl 			}
12431239Sahl 
12441239Sahl 			if ((pair->dlp_sym = dt_alloc(dtp, data_sym->d_size +
12452769Sahl 			    nsym * symsize)) == NULL) {
12461239Sahl 				dt_free(dtp, pair->dlp_str);
12471239Sahl 				dt_free(dtp, pair);
12481239Sahl 				goto err;
12491239Sahl 			}
12501239Sahl 
12511239Sahl 			pair->dlp_next = bufs;
12521239Sahl 			bufs = pair;
12531239Sahl 
12541239Sahl 			bcopy(data_str->d_buf, pair->dlp_str, data_str->d_size);
12551239Sahl 			data_str->d_buf = pair->dlp_str;
12562769Sahl 			data_str->d_size += len;
12571239Sahl 			(void) elf_flagdata(data_str, ELF_C_SET, ELF_F_DIRTY);
12581239Sahl 
12592769Sahl 			shdr_str.sh_size += len;
12601239Sahl 			(void) gelf_update_shdr(scn_str, &shdr_str);
12611239Sahl 
12621239Sahl 			bcopy(data_sym->d_buf, pair->dlp_sym, data_sym->d_size);
12631239Sahl 			data_sym->d_buf = pair->dlp_sym;
12642769Sahl 			data_sym->d_size += nsym * symsize;
12651239Sahl 			(void) elf_flagdata(data_sym, ELF_C_SET, ELF_F_DIRTY);
12661239Sahl 
12672769Sahl 			shdr_sym.sh_size += nsym * symsize;
12681239Sahl 			(void) gelf_update_shdr(scn_sym, &shdr_sym);
12692769Sahl 
12702769Sahl 			nsym += isym;
12712769Sahl 		} else {
12722769Sahl 			dt_strtab_destroy(strtab);
12731239Sahl 		}
12741239Sahl 
12751239Sahl 		/*
12761239Sahl 		 * Now that the tables have been allocated, perform the
12771239Sahl 		 * modifications described above.
12781239Sahl 		 */
12791239Sahl 		for (i = 0; i < shdr_rel.sh_size / shdr_rel.sh_entsize; i++) {
12801239Sahl 
12811239Sahl 			if (shdr_rel.sh_type == SHT_RELA) {
12821239Sahl 				if (gelf_getrela(data_rel, i, &rela) == NULL)
12831239Sahl 					continue;
12841239Sahl 			} else {
12851239Sahl 				GElf_Rel rel;
12860Sstevel@tonic-gate 				if (gelf_getrel(data_rel, i, &rel) == NULL)
12870Sstevel@tonic-gate 					continue;
12880Sstevel@tonic-gate 				rela.r_offset = rel.r_offset;
12890Sstevel@tonic-gate 				rela.r_info = rel.r_info;
12900Sstevel@tonic-gate 				rela.r_addend = 0;
12910Sstevel@tonic-gate 			}
12920Sstevel@tonic-gate 
12930Sstevel@tonic-gate 			ndx = GELF_R_SYM(rela.r_info);
12940Sstevel@tonic-gate 
12950Sstevel@tonic-gate 			if (gelf_getsym(data_sym, ndx, &rsym) == NULL ||
12961239Sahl 			    rsym.st_name > data_str->d_size)
12970Sstevel@tonic-gate 				goto err;
12980Sstevel@tonic-gate 
12991239Sahl 			s = (char *)data_str->d_buf + rsym.st_name;
13001239Sahl 
13010Sstevel@tonic-gate 			if (strncmp(s, dt_prefix, sizeof (dt_prefix) - 1) != 0)
13020Sstevel@tonic-gate 				continue;
13030Sstevel@tonic-gate 
13040Sstevel@tonic-gate 			s += sizeof (dt_prefix) - 1;
13051710Sahl 
13061710Sahl 			/*
13071710Sahl 			 * Check to see if this is an 'is-enabled' check as
13081710Sahl 			 * opposed to a normal probe.
13091710Sahl 			 */
13101710Sahl 			if (strncmp(s, dt_enabled,
13111710Sahl 			    sizeof (dt_enabled) - 1) == 0) {
13121710Sahl 				s += sizeof (dt_enabled) - 1;
13131710Sahl 				eprobe = 1;
13141710Sahl 				*eprobesp = 1;
13151710Sahl 				dt_dprintf("is-enabled probe\n");
13161710Sahl 			} else {
13171710Sahl 				eprobe = 0;
13181710Sahl 				dt_dprintf("normal probe\n");
13191710Sahl 			}
13201710Sahl 
13211710Sahl 			if (*s++ != '_')
13221710Sahl 				goto err;
13231710Sahl 
13240Sstevel@tonic-gate 			if ((p = strstr(s, "___")) == NULL ||
13250Sstevel@tonic-gate 			    p - s >= sizeof (pname))
13260Sstevel@tonic-gate 				goto err;
13270Sstevel@tonic-gate 
13281239Sahl 			bcopy(s, pname, p - s);
13290Sstevel@tonic-gate 			pname[p - s] = '\0';
13300Sstevel@tonic-gate 
13310Sstevel@tonic-gate 			p = strhyphenate(p + 3); /* strlen("___") */
13320Sstevel@tonic-gate 
13333944Sahl 			if (dt_symtab_lookup(data_sym, isym, rela.r_offset,
13341239Sahl 			    shdr_rel.sh_info, &fsym) != 0)
13351239Sahl 				goto err;
13361239Sahl 
13371239Sahl 			if (fsym.st_name > data_str->d_size)
13380Sstevel@tonic-gate 				goto err;
13390Sstevel@tonic-gate 
13401239Sahl 			assert(GELF_ST_TYPE(fsym.st_info) == STT_FUNC);
13411239Sahl 
13421239Sahl 			/*
13431239Sahl 			 * If a NULL relocation name is passed to
13441239Sahl 			 * dt_probe_define(), the function name is used for the
13451239Sahl 			 * relocation. The relocation needs to use a mangled
13461239Sahl 			 * name if the symbol is locally scoped; the function
13471239Sahl 			 * name may need to change if we've found the global
13481239Sahl 			 * alias for the locally scoped symbol (we prefer
13491239Sahl 			 * global symbols to locals in dt_symtab_lookup()).
13501239Sahl 			 */
13511239Sahl 			s = (char *)data_str->d_buf + fsym.st_name;
13521239Sahl 			r = NULL;
13531239Sahl 
13541239Sahl 			if (GELF_ST_BIND(fsym.st_info) == STB_LOCAL) {
13551239Sahl 				dsym = fsym;
13562769Sahl 				dsym.st_name = istr;
13571239Sahl 				dsym.st_info = GELF_ST_INFO(STB_GLOBAL,
13581239Sahl 				    STT_FUNC);
13591239Sahl 				dsym.st_other = ELF64_ST_VISIBILITY(STV_HIDDEN);
13602769Sahl 				(void) gelf_update_sym(data_sym, isym, &dsym);
13611239Sahl 
13622769Sahl 				r = (char *)data_str->d_buf + istr;
13632769Sahl 				istr += 1 + sprintf(r, dt_symfmt,
13641239Sahl 				    dt_symprefix, objkey, s);
13652769Sahl 				isym++;
13662769Sahl 				assert(isym <= nsym);
13671239Sahl 
13681239Sahl 			} else if (strncmp(s, dt_symprefix,
13691239Sahl 			    strlen(dt_symprefix)) == 0) {
13701239Sahl 				r = s;
13711239Sahl 				if ((s = strchr(s, '.')) == NULL)
13721239Sahl 					goto err;
13731239Sahl 				s++;
13741239Sahl 			}
13751239Sahl 
13760Sstevel@tonic-gate 			if ((pvp = dt_provider_lookup(dtp, pname)) == NULL) {
13771239Sahl 				return (dt_link_error(dtp, elf, fd, bufs,
13780Sstevel@tonic-gate 				    "no such provider %s", pname));
13790Sstevel@tonic-gate 			}
13800Sstevel@tonic-gate 
13810Sstevel@tonic-gate 			if ((prp = dt_probe_lookup(pvp, p)) == NULL) {
13821239Sahl 				return (dt_link_error(dtp, elf, fd, bufs,
13830Sstevel@tonic-gate 				    "no such probe %s", p));
13840Sstevel@tonic-gate 			}
13850Sstevel@tonic-gate 
13860Sstevel@tonic-gate 			assert(fsym.st_value <= rela.r_offset);
13870Sstevel@tonic-gate 
13880Sstevel@tonic-gate 			off = rela.r_offset - fsym.st_value;
13891710Sahl 			if (dt_modtext(dtp, data_tgt->d_buf, eprobe,
13901710Sahl 			    &rela, &off) != 0) {
13910Sstevel@tonic-gate 				goto err;
13921710Sahl 			}
13930Sstevel@tonic-gate 
13941710Sahl 			if (dt_probe_define(pvp, prp, s, r, off, eprobe) != 0) {
13951239Sahl 				return (dt_link_error(dtp, elf, fd, bufs,
13961239Sahl 				    "failed to allocate space for probe"));
13971239Sahl 			}
13980Sstevel@tonic-gate 
13990Sstevel@tonic-gate 			mod = 1;
14001239Sahl 			(void) elf_flagdata(data_tgt, ELF_C_SET, ELF_F_DIRTY);
14010Sstevel@tonic-gate 
14020Sstevel@tonic-gate 			/*
14030Sstevel@tonic-gate 			 * This symbol may already have been marked to
14040Sstevel@tonic-gate 			 * be ignored by another relocation referencing
14050Sstevel@tonic-gate 			 * the same symbol or if this object file has
14060Sstevel@tonic-gate 			 * already been processed by an earlier link
14070Sstevel@tonic-gate 			 * invocation.
14080Sstevel@tonic-gate 			 */
14090Sstevel@tonic-gate 			if (rsym.st_shndx != SHN_SUNW_IGNORE) {
14100Sstevel@tonic-gate 				rsym.st_shndx = SHN_SUNW_IGNORE;
14110Sstevel@tonic-gate 				(void) gelf_update_sym(data_sym, ndx, &rsym);
14120Sstevel@tonic-gate 			}
14130Sstevel@tonic-gate 		}
14140Sstevel@tonic-gate 	}
14150Sstevel@tonic-gate 
14160Sstevel@tonic-gate 	if (mod && elf_update(elf, ELF_C_WRITE) == -1)
14170Sstevel@tonic-gate 		goto err;
14180Sstevel@tonic-gate 
1419265Smws 	(void) elf_end(elf);
14201239Sahl 	(void) close(fd);
14211239Sahl 
14221239Sahl 	while ((pair = bufs) != NULL) {
14231239Sahl 		bufs = pair->dlp_next;
14241239Sahl 		dt_free(dtp, pair->dlp_str);
14251239Sahl 		dt_free(dtp, pair->dlp_sym);
14261239Sahl 		dt_free(dtp, pair);
14271239Sahl 	}
14281239Sahl 
14290Sstevel@tonic-gate 	return (0);
14300Sstevel@tonic-gate 
14310Sstevel@tonic-gate err:
14321239Sahl 	return (dt_link_error(dtp, elf, fd, bufs,
14330Sstevel@tonic-gate 	    "an error was encountered while processing %s", obj));
14340Sstevel@tonic-gate }
14350Sstevel@tonic-gate 
14360Sstevel@tonic-gate int
14370Sstevel@tonic-gate dtrace_program_link(dtrace_hdl_t *dtp, dtrace_prog_t *pgp, uint_t dflags,
14380Sstevel@tonic-gate     const char *file, int objc, char *const objv[])
14390Sstevel@tonic-gate {
14400Sstevel@tonic-gate 	char drti[PATH_MAX];
14410Sstevel@tonic-gate 	dof_hdr_t *dof;
1442191Sahl 	int fd, status, i, cur;
14430Sstevel@tonic-gate 	char *cmd, tmp;
14440Sstevel@tonic-gate 	size_t len;
14451710Sahl 	int eprobes = 0, ret = 0;
14460Sstevel@tonic-gate 
1447191Sahl 	/*
1448191Sahl 	 * A NULL program indicates a special use in which we just link
1449191Sahl 	 * together a bunch of object files specified in objv and then
1450191Sahl 	 * unlink(2) those object files.
1451191Sahl 	 */
1452191Sahl 	if (pgp == NULL) {
1453191Sahl 		const char *fmt = "%s -o %s -r";
1454191Sahl 
1455191Sahl 		len = snprintf(&tmp, 1, fmt, dtp->dt_ld_path, file) + 1;
1456191Sahl 
1457191Sahl 		for (i = 0; i < objc; i++)
1458191Sahl 			len += strlen(objv[i]) + 1;
1459191Sahl 
1460191Sahl 		cmd = alloca(len);
1461191Sahl 
1462191Sahl 		cur = snprintf(cmd, len, fmt, dtp->dt_ld_path, file);
1463191Sahl 
1464191Sahl 		for (i = 0; i < objc; i++)
1465191Sahl 			cur += snprintf(cmd + cur, len - cur, " %s", objv[i]);
1466191Sahl 
1467191Sahl 		if ((status = system(cmd)) == -1) {
14681239Sahl 			return (dt_link_error(dtp, NULL, -1, NULL,
14691239Sahl 			    "failed to run %s: %s", dtp->dt_ld_path,
14701239Sahl 			    strerror(errno)));
1471191Sahl 		}
1472191Sahl 
1473191Sahl 		if (WIFSIGNALED(status)) {
14741239Sahl 			return (dt_link_error(dtp, NULL, -1, NULL,
1475191Sahl 			    "failed to link %s: %s failed due to signal %d",
1476191Sahl 			    file, dtp->dt_ld_path, WTERMSIG(status)));
1477191Sahl 		}
1478191Sahl 
1479191Sahl 		if (WEXITSTATUS(status) != 0) {
14801239Sahl 			return (dt_link_error(dtp, NULL, -1, NULL,
1481191Sahl 			    "failed to link %s: %s exited with status %d\n",
1482191Sahl 			    file, dtp->dt_ld_path, WEXITSTATUS(status)));
1483191Sahl 		}
1484191Sahl 
1485191Sahl 		for (i = 0; i < objc; i++) {
1486191Sahl 			if (strcmp(objv[i], file) != 0)
1487191Sahl 				(void) unlink(objv[i]);
1488191Sahl 		}
1489191Sahl 
1490191Sahl 		return (0);
1491191Sahl 	}
1492191Sahl 
14930Sstevel@tonic-gate 	for (i = 0; i < objc; i++) {
14941710Sahl 		if (process_obj(dtp, objv[i], &eprobes) != 0)
14950Sstevel@tonic-gate 			return (-1); /* errno is set for us */
14960Sstevel@tonic-gate 	}
14970Sstevel@tonic-gate 
14981710Sahl 	/*
14991710Sahl 	 * If there are is-enabled probes then we need to force use of DOF
15001710Sahl 	 * version 2.
15011710Sahl 	 */
15021710Sahl 	if (eprobes && pgp->dp_dofversion < DOF_VERSION_2)
15031710Sahl 		pgp->dp_dofversion = DOF_VERSION_2;
15041710Sahl 
15050Sstevel@tonic-gate 	if ((dof = dtrace_dof_create(dtp, pgp, dflags)) == NULL)
15060Sstevel@tonic-gate 		return (-1); /* errno is set for us */
15070Sstevel@tonic-gate 
15080Sstevel@tonic-gate 	/*
15090Sstevel@tonic-gate 	 * Create a temporary file and then unlink it if we're going to
15100Sstevel@tonic-gate 	 * combine it with drti.o later.  We can still refer to it in child
15110Sstevel@tonic-gate 	 * processes as /dev/fd/<fd>.
15120Sstevel@tonic-gate 	 */
15130Sstevel@tonic-gate 	if ((fd = open64(file, O_RDWR | O_CREAT | O_TRUNC, 0666)) == -1) {
15141239Sahl 		return (dt_link_error(dtp, NULL, -1, NULL,
15150Sstevel@tonic-gate 		    "failed to open %s: %s", file, strerror(errno)));
15160Sstevel@tonic-gate 	}
15170Sstevel@tonic-gate 
15180Sstevel@tonic-gate 	/*
15190Sstevel@tonic-gate 	 * If -xlinktype=DOF has been selected, just write out the DOF.
15200Sstevel@tonic-gate 	 * Otherwise proceed to the default of generating and linking ELF.
15210Sstevel@tonic-gate 	 */
15220Sstevel@tonic-gate 	switch (dtp->dt_linktype) {
15230Sstevel@tonic-gate 	case DT_LTYP_DOF:
15240Sstevel@tonic-gate 		if (dt_write(dtp, fd, dof, dof->dofh_filesz) < dof->dofh_filesz)
15250Sstevel@tonic-gate 			ret = errno;
15260Sstevel@tonic-gate 
15270Sstevel@tonic-gate 		if (close(fd) != 0 && ret == 0)
15280Sstevel@tonic-gate 			ret = errno;
15290Sstevel@tonic-gate 
15300Sstevel@tonic-gate 		if (ret != 0) {
15311239Sahl 			return (dt_link_error(dtp, NULL, -1, NULL,
15320Sstevel@tonic-gate 			    "failed to write %s: %s", file, strerror(ret)));
15330Sstevel@tonic-gate 		}
15340Sstevel@tonic-gate 
15350Sstevel@tonic-gate 		return (0);
15360Sstevel@tonic-gate 
15370Sstevel@tonic-gate 	case DT_LTYP_ELF:
15380Sstevel@tonic-gate 		break; /* fall through to the rest of dtrace_program_link() */
15390Sstevel@tonic-gate 
15400Sstevel@tonic-gate 	default:
15411239Sahl 		return (dt_link_error(dtp, NULL, -1, NULL,
15420Sstevel@tonic-gate 		    "invalid link type %u\n", dtp->dt_linktype));
15430Sstevel@tonic-gate 	}
15440Sstevel@tonic-gate 
15450Sstevel@tonic-gate 
15460Sstevel@tonic-gate 	if (!dtp->dt_lazyload)
15470Sstevel@tonic-gate 		(void) unlink(file);
15480Sstevel@tonic-gate 
15490Sstevel@tonic-gate 	if (dtp->dt_oflags & DTRACE_O_LP64)
15500Sstevel@tonic-gate 		status = dump_elf64(dtp, dof, fd);
15510Sstevel@tonic-gate 	else
15520Sstevel@tonic-gate 		status = dump_elf32(dtp, dof, fd);
15530Sstevel@tonic-gate 
15540Sstevel@tonic-gate 	if (status != 0 || lseek(fd, 0, SEEK_SET) != 0) {
15551239Sahl 		return (dt_link_error(dtp, NULL, -1, NULL,
15560Sstevel@tonic-gate 		    "failed to write %s: %s", file, strerror(errno)));
15570Sstevel@tonic-gate 	}
15580Sstevel@tonic-gate 
15590Sstevel@tonic-gate 	if (!dtp->dt_lazyload) {
1560191Sahl 		const char *fmt = "%s -o %s -r -Blocal -Breduce /dev/fd/%d %s";
1561191Sahl 
15620Sstevel@tonic-gate 		if (dtp->dt_oflags & DTRACE_O_LP64) {
15630Sstevel@tonic-gate 			(void) snprintf(drti, sizeof (drti),
15640Sstevel@tonic-gate 			    "%s/64/drti.o", _dtrace_libdir);
15650Sstevel@tonic-gate 		} else {
15660Sstevel@tonic-gate 			(void) snprintf(drti, sizeof (drti),
15670Sstevel@tonic-gate 			    "%s/drti.o", _dtrace_libdir);
15680Sstevel@tonic-gate 		}
15690Sstevel@tonic-gate 
1570191Sahl 		len = snprintf(&tmp, 1, fmt, dtp->dt_ld_path, file, fd,
1571191Sahl 		    drti) + 1;
15720Sstevel@tonic-gate 
15730Sstevel@tonic-gate 		cmd = alloca(len);
15740Sstevel@tonic-gate 
1575191Sahl 		(void) snprintf(cmd, len, fmt, dtp->dt_ld_path, file, fd, drti);
15760Sstevel@tonic-gate 
15770Sstevel@tonic-gate 		if ((status = system(cmd)) == -1) {
15781239Sahl 			ret = dt_link_error(dtp, NULL, -1, NULL,
15791239Sahl 			    "failed to run %s: %s", dtp->dt_ld_path,
15801239Sahl 			    strerror(errno));
15810Sstevel@tonic-gate 			goto done;
15820Sstevel@tonic-gate 		}
15830Sstevel@tonic-gate 
15840Sstevel@tonic-gate 		(void) close(fd); /* release temporary file */
15850Sstevel@tonic-gate 
15860Sstevel@tonic-gate 		if (WIFSIGNALED(status)) {
15871239Sahl 			ret = dt_link_error(dtp, NULL, -1, NULL,
15880Sstevel@tonic-gate 			    "failed to link %s: %s failed due to signal %d",
15890Sstevel@tonic-gate 			    file, dtp->dt_ld_path, WTERMSIG(status));
15900Sstevel@tonic-gate 			goto done;
15910Sstevel@tonic-gate 		}
15920Sstevel@tonic-gate 
15930Sstevel@tonic-gate 		if (WEXITSTATUS(status) != 0) {
15941239Sahl 			ret = dt_link_error(dtp, NULL, -1, NULL,
15950Sstevel@tonic-gate 			    "failed to link %s: %s exited with status %d\n",
15960Sstevel@tonic-gate 			    file, dtp->dt_ld_path, WEXITSTATUS(status));
15970Sstevel@tonic-gate 			goto done;
15980Sstevel@tonic-gate 		}
15990Sstevel@tonic-gate 	} else {
16000Sstevel@tonic-gate 		(void) close(fd);
16010Sstevel@tonic-gate 	}
16020Sstevel@tonic-gate 
16030Sstevel@tonic-gate done:
16040Sstevel@tonic-gate 	dtrace_dof_destroy(dtp, dof);
16050Sstevel@tonic-gate 	return (ret);
16060Sstevel@tonic-gate }
1607