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
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #include <sys/types.h>
307c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
317c478bd9Sstevel@tonic-gate #include <sys/systeminfo.h>
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate #include <libelf.h>
347c478bd9Sstevel@tonic-gate #include <strings.h>
357c478bd9Sstevel@tonic-gate #include <alloca.h>
367c478bd9Sstevel@tonic-gate #include <limits.h>
377c478bd9Sstevel@tonic-gate #include <unistd.h>
387c478bd9Sstevel@tonic-gate #include <stdlib.h>
397c478bd9Sstevel@tonic-gate #include <stdio.h>
407c478bd9Sstevel@tonic-gate #include <fcntl.h>
417c478bd9Sstevel@tonic-gate #include <errno.h>
427c478bd9Sstevel@tonic-gate #include <zone.h>
437c478bd9Sstevel@tonic-gate #include <assert.h>
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate #define	_POSIX_PTHREAD_SEMANTICS
467c478bd9Sstevel@tonic-gate #include <dirent.h>
477c478bd9Sstevel@tonic-gate #undef	_POSIX_PTHREAD_SEMANTICS
487c478bd9Sstevel@tonic-gate 
497c478bd9Sstevel@tonic-gate #include <dt_impl.h>
501a7c1b72Smws #include <dt_program.h>
517c478bd9Sstevel@tonic-gate #include <dt_module.h>
527c478bd9Sstevel@tonic-gate #include <dt_printf.h>
537c478bd9Sstevel@tonic-gate #include <dt_string.h>
547c478bd9Sstevel@tonic-gate #include <dt_provider.h>
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate /*
577c478bd9Sstevel@tonic-gate  * Stability and versioning definitions.  These #defines are used in the tables
587c478bd9Sstevel@tonic-gate  * of identifiers below to fill in the attribute and version fields associated
597c478bd9Sstevel@tonic-gate  * with each identifier.  The DT_ATTR_* macros are a convenience to permit more
607c478bd9Sstevel@tonic-gate  * concise declarations of common attributes such as Stable/Stable/Common.  The
617c478bd9Sstevel@tonic-gate  * DT_VERS_* macros declare the encoded integer values of all versions used so
627c478bd9Sstevel@tonic-gate  * far.  DT_VERS_LATEST must correspond to the latest version value among all
637c478bd9Sstevel@tonic-gate  * versions exported by the D compiler.  DT_VERS_STRING must be an ASCII string
647c478bd9Sstevel@tonic-gate  * that contains DT_VERS_LATEST within it along with any suffixes (e.g. Beta).
657c478bd9Sstevel@tonic-gate  * You must update DT_VERS_LATEST and DT_VERS_STRING when adding a new version,
667c478bd9Sstevel@tonic-gate  * and then add the new version to the _dtrace_versions[] array declared below.
677c478bd9Sstevel@tonic-gate  * Refer to the Solaris Dynamic Tracing Guide Stability and Versioning chapters
687c478bd9Sstevel@tonic-gate  * respectively for an explanation of these DTrace features and their values.
697c478bd9Sstevel@tonic-gate  *
707c478bd9Sstevel@tonic-gate  * NOTE: Although the DTrace versioning scheme supports the labeling and
717c478bd9Sstevel@tonic-gate  *       introduction of incompatible changes (e.g. dropping an interface in a
727c478bd9Sstevel@tonic-gate  *       major release), the libdtrace code does not currently support this.
737c478bd9Sstevel@tonic-gate  *       All versions are assumed to strictly inherit from one another.  If
747c478bd9Sstevel@tonic-gate  *       we ever need to provide divergent interfaces, this will need work.
757c478bd9Sstevel@tonic-gate  */
767c478bd9Sstevel@tonic-gate #define	DT_ATTR_STABCMN	{ DTRACE_STABILITY_STABLE, \
777c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_STABLE, DTRACE_CLASS_COMMON }
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate #define	DT_ATTR_EVOLCMN { DTRACE_STABILITY_EVOLVING, \
807c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_EVOLVING, DTRACE_CLASS_COMMON \
817c478bd9Sstevel@tonic-gate }
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate #define	DT_VERS_1_0	DT_VERSION_NUMBER(1, 0, 0)
847c478bd9Sstevel@tonic-gate #define	DT_VERS_1_1	DT_VERSION_NUMBER(1, 1, 0)
850b38a8bdSahl #define	DT_VERS_1_2	DT_VERSION_NUMBER(1, 2, 0)
860b38a8bdSahl #define	DT_VERS_LATEST	DT_VERS_1_2
870b38a8bdSahl #define	DT_VERS_STRING	"Sun D 1.2"
887c478bd9Sstevel@tonic-gate 
897c478bd9Sstevel@tonic-gate const dt_version_t _dtrace_versions[] = {
907c478bd9Sstevel@tonic-gate 	DT_VERS_1_0,	/* D API 1.0.0 (PSARC 2001/466) Solaris 10 FCS */
910b38a8bdSahl 	DT_VERS_1_1,	/* D API 1.1.0 Solaris Express 6/05 */
920b38a8bdSahl 	DT_VERS_1_2,	/* D API 1.2.0 Solaris 10 Update 1 */
937c478bd9Sstevel@tonic-gate 	0
947c478bd9Sstevel@tonic-gate };
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate /*
977c478bd9Sstevel@tonic-gate  * Table of global identifiers.  This is used to populate the global identifier
987c478bd9Sstevel@tonic-gate  * hash when a new dtrace client open occurs.  For more info see dt_ident.h.
997c478bd9Sstevel@tonic-gate  * The global identifiers that represent functions use the dt_idops_func ops
1007c478bd9Sstevel@tonic-gate  * and specify the private data pointer as a prototype string which is parsed
1017c478bd9Sstevel@tonic-gate  * when the identifier is first encountered.  These prototypes look like ANSI
1027c478bd9Sstevel@tonic-gate  * C function prototypes except that the special symbol "@" can be used as a
1037c478bd9Sstevel@tonic-gate  * wildcard to represent a single parameter of any type (i.e. any dt_node_t).
1047c478bd9Sstevel@tonic-gate  * The standard "..." notation can also be used to represent varargs.  An empty
1057c478bd9Sstevel@tonic-gate  * parameter list is taken to mean void (that is, no arguments are permitted).
1067c478bd9Sstevel@tonic-gate  * A parameter enclosed in square brackets (e.g. "[int]") denotes an optional
1077c478bd9Sstevel@tonic-gate  * argument.
1087c478bd9Sstevel@tonic-gate  */
1097c478bd9Sstevel@tonic-gate static const dt_ident_t _dtrace_globals[] = {
1107c478bd9Sstevel@tonic-gate { "alloca", DT_IDENT_FUNC, 0, DIF_SUBR_ALLOCA, DT_ATTR_STABCMN, DT_VERS_1_0,
1117c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void *(size_t)" },
1127c478bd9Sstevel@tonic-gate { "arg0", DT_IDENT_SCALAR, 0, DIF_VAR_ARG0, DT_ATTR_STABCMN, DT_VERS_1_0,
1137c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1147c478bd9Sstevel@tonic-gate { "arg1", DT_IDENT_SCALAR, 0, DIF_VAR_ARG1, DT_ATTR_STABCMN, DT_VERS_1_0,
1157c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1167c478bd9Sstevel@tonic-gate { "arg2", DT_IDENT_SCALAR, 0, DIF_VAR_ARG2, DT_ATTR_STABCMN, DT_VERS_1_0,
1177c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1187c478bd9Sstevel@tonic-gate { "arg3", DT_IDENT_SCALAR, 0, DIF_VAR_ARG3, DT_ATTR_STABCMN, DT_VERS_1_0,
1197c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1207c478bd9Sstevel@tonic-gate { "arg4", DT_IDENT_SCALAR, 0, DIF_VAR_ARG4, DT_ATTR_STABCMN, DT_VERS_1_0,
1217c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1227c478bd9Sstevel@tonic-gate { "arg5", DT_IDENT_SCALAR, 0, DIF_VAR_ARG5, DT_ATTR_STABCMN, DT_VERS_1_0,
1237c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1247c478bd9Sstevel@tonic-gate { "arg6", DT_IDENT_SCALAR, 0, DIF_VAR_ARG6, DT_ATTR_STABCMN, DT_VERS_1_0,
1257c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1267c478bd9Sstevel@tonic-gate { "arg7", DT_IDENT_SCALAR, 0, DIF_VAR_ARG7, DT_ATTR_STABCMN, DT_VERS_1_0,
1277c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1287c478bd9Sstevel@tonic-gate { "arg8", DT_IDENT_SCALAR, 0, DIF_VAR_ARG8, DT_ATTR_STABCMN, DT_VERS_1_0,
1297c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1307c478bd9Sstevel@tonic-gate { "arg9", DT_IDENT_SCALAR, 0, DIF_VAR_ARG9, DT_ATTR_STABCMN, DT_VERS_1_0,
1317c478bd9Sstevel@tonic-gate 	&dt_idops_type, "int64_t" },
1327c478bd9Sstevel@tonic-gate { "args", DT_IDENT_ARRAY, 0, DIF_VAR_ARGS, DT_ATTR_STABCMN, DT_VERS_1_0,
1337c478bd9Sstevel@tonic-gate 	&dt_idops_args, NULL },
1347c478bd9Sstevel@tonic-gate { "avg", DT_IDENT_AGGFUNC, 0, DTRACEAGG_AVG, DT_ATTR_STABCMN, DT_VERS_1_0,
1357c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@)" },
1367c478bd9Sstevel@tonic-gate { "basename", DT_IDENT_FUNC, 0, DIF_SUBR_BASENAME, DT_ATTR_STABCMN, DT_VERS_1_0,
1377c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *)" },
1387c478bd9Sstevel@tonic-gate { "bcopy", DT_IDENT_FUNC, 0, DIF_SUBR_BCOPY, DT_ATTR_STABCMN, DT_VERS_1_0,
1397c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(void *, void *, size_t)" },
1407c478bd9Sstevel@tonic-gate { "breakpoint", DT_IDENT_ACTFUNC, 0, DT_ACT_BREAKPOINT,
1417c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
1427c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void()" },
1437c478bd9Sstevel@tonic-gate { "caller", DT_IDENT_SCALAR, 0, DIF_VAR_CALLER, DT_ATTR_STABCMN, DT_VERS_1_0,
1447c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uintptr_t" },
1457c478bd9Sstevel@tonic-gate { "chill", DT_IDENT_ACTFUNC, 0, DT_ACT_CHILL, DT_ATTR_STABCMN, DT_VERS_1_0,
1467c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(int)" },
1477c478bd9Sstevel@tonic-gate { "cleanpath", DT_IDENT_FUNC, 0, DIF_SUBR_CLEANPATH, DT_ATTR_STABCMN,
1487c478bd9Sstevel@tonic-gate 	DT_VERS_1_0, &dt_idops_func, "string(const char *)" },
1497c478bd9Sstevel@tonic-gate { "clear", DT_IDENT_ACTFUNC, 0, DT_ACT_CLEAR, DT_ATTR_STABCMN, DT_VERS_1_0,
1507c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(...)" },
1517c478bd9Sstevel@tonic-gate { "commit", DT_IDENT_ACTFUNC, 0, DT_ACT_COMMIT, DT_ATTR_STABCMN, DT_VERS_1_0,
1527c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(int)" },
1537c478bd9Sstevel@tonic-gate { "copyin", DT_IDENT_FUNC, 0, DIF_SUBR_COPYIN, DT_ATTR_STABCMN, DT_VERS_1_0,
1547c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void *(uintptr_t, size_t)" },
1557c478bd9Sstevel@tonic-gate { "copyinstr", DT_IDENT_FUNC, 0, DIF_SUBR_COPYINSTR,
1567c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
1577c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(uintptr_t, [size_t])" },
1587c478bd9Sstevel@tonic-gate { "copyinto", DT_IDENT_FUNC, 0, DIF_SUBR_COPYINTO, DT_ATTR_STABCMN,
1597c478bd9Sstevel@tonic-gate 	DT_VERS_1_0, &dt_idops_func, "void(uintptr_t, size_t, void *)" },
1607c478bd9Sstevel@tonic-gate { "copyout", DT_IDENT_FUNC, 0, DIF_SUBR_COPYOUT, DT_ATTR_STABCMN, DT_VERS_1_0,
1617c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(void *, uintptr_t, size_t)" },
1627c478bd9Sstevel@tonic-gate { "copyoutstr", DT_IDENT_FUNC, 0, DIF_SUBR_COPYOUTSTR,
1637c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
1647c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(char *, uintptr_t, size_t)" },
1657c478bd9Sstevel@tonic-gate { "count", DT_IDENT_AGGFUNC, 0, DTRACEAGG_COUNT, DT_ATTR_STABCMN, DT_VERS_1_0,
1667c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void()" },
1677c478bd9Sstevel@tonic-gate { "curthread", DT_IDENT_SCALAR, 0, DIF_VAR_CURTHREAD,
1687c478bd9Sstevel@tonic-gate 	{ DTRACE_STABILITY_STABLE, DTRACE_STABILITY_PRIVATE,
1697c478bd9Sstevel@tonic-gate 	DTRACE_CLASS_COMMON }, DT_VERS_1_0,
1707c478bd9Sstevel@tonic-gate 	&dt_idops_type, "genunix`kthread_t *" },
1717c478bd9Sstevel@tonic-gate { "ddi_pathname", DT_IDENT_FUNC, 0, DIF_SUBR_DDI_PATHNAME,
1727c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
1737c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(void *, int64_t)" },
1747c478bd9Sstevel@tonic-gate { "denormalize", DT_IDENT_ACTFUNC, 0, DT_ACT_DENORMALIZE, DT_ATTR_STABCMN,
1757c478bd9Sstevel@tonic-gate 	DT_VERS_1_0, &dt_idops_func, "void(...)" },
1767c478bd9Sstevel@tonic-gate { "dirname", DT_IDENT_FUNC, 0, DIF_SUBR_DIRNAME, DT_ATTR_STABCMN, DT_VERS_1_0,
1777c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *)" },
1787c478bd9Sstevel@tonic-gate { "discard", DT_IDENT_ACTFUNC, 0, DT_ACT_DISCARD, DT_ATTR_STABCMN, DT_VERS_1_0,
1797c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(int)" },
1807c478bd9Sstevel@tonic-gate { "epid", DT_IDENT_SCALAR, 0, DIF_VAR_EPID, DT_ATTR_STABCMN, DT_VERS_1_0,
1817c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uint_t" },
1827c478bd9Sstevel@tonic-gate { "execname", DT_IDENT_SCALAR, 0, DIF_VAR_EXECNAME,
1837c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0, &dt_idops_type, "string" },
1847c478bd9Sstevel@tonic-gate { "exit", DT_IDENT_ACTFUNC, 0, DT_ACT_EXIT, DT_ATTR_STABCMN, DT_VERS_1_0,
1857c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(int)" },
1867c478bd9Sstevel@tonic-gate { "freopen", DT_IDENT_ACTFUNC, 0, DT_ACT_FREOPEN, DT_ATTR_STABCMN,
1877c478bd9Sstevel@tonic-gate 	DT_VERS_1_1, &dt_idops_func, "void(@, ...)" },
1887c478bd9Sstevel@tonic-gate { "ftruncate", DT_IDENT_ACTFUNC, 0, DT_ACT_FTRUNCATE, DT_ATTR_STABCMN,
1897c478bd9Sstevel@tonic-gate 	DT_VERS_1_0, &dt_idops_func, "void()" },
190*a1b5e537Sbmc { "func", DT_IDENT_ACTFUNC, 0, DT_ACT_SYM, DT_ATTR_STABCMN,
191*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "_symaddr(uintptr_t)" },
1927c478bd9Sstevel@tonic-gate { "getmajor", DT_IDENT_FUNC, 0, DIF_SUBR_GETMAJOR,
1937c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
1947c478bd9Sstevel@tonic-gate 	&dt_idops_func, "genunix`major_t(genunix`dev_t)" },
1957c478bd9Sstevel@tonic-gate { "getminor", DT_IDENT_FUNC, 0, DIF_SUBR_GETMINOR,
1967c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
1977c478bd9Sstevel@tonic-gate 	&dt_idops_func, "genunix`minor_t(genunix`dev_t)" },
1987c478bd9Sstevel@tonic-gate { "id", DT_IDENT_SCALAR, 0, DIF_VAR_ID, DT_ATTR_STABCMN, DT_VERS_1_0,
1997c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uint_t" },
2007c478bd9Sstevel@tonic-gate { "index", DT_IDENT_FUNC, 0, DIF_SUBR_INDEX, DT_ATTR_STABCMN, DT_VERS_1_1,
2017c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(const char *, const char *, [int])" },
2027c478bd9Sstevel@tonic-gate { "ipl", DT_IDENT_SCALAR, 0, DIF_VAR_IPL, DT_ATTR_STABCMN, DT_VERS_1_0,
2037c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uint_t" },
2047c478bd9Sstevel@tonic-gate { "jstack", DT_IDENT_ACTFUNC, 0, DT_ACT_JSTACK, DT_ATTR_STABCMN, DT_VERS_1_0,
2057c478bd9Sstevel@tonic-gate 	&dt_idops_func, "stack(...)" },
2067c478bd9Sstevel@tonic-gate { "lltostr", DT_IDENT_FUNC, 0, DIF_SUBR_LLTOSTR, DT_ATTR_STABCMN, DT_VERS_1_0,
2077c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(int64_t)" },
2087c478bd9Sstevel@tonic-gate { "lquantize", DT_IDENT_AGGFUNC, 0, DTRACEAGG_LQUANTIZE,
2097c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
2107c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@, int32_t, int32_t, ...)" },
2117c478bd9Sstevel@tonic-gate { "max", DT_IDENT_AGGFUNC, 0, DTRACEAGG_MAX, DT_ATTR_STABCMN, DT_VERS_1_0,
2127c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@)" },
2137c478bd9Sstevel@tonic-gate { "min", DT_IDENT_AGGFUNC, 0, DTRACEAGG_MIN, DT_ATTR_STABCMN, DT_VERS_1_0,
2147c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@)" },
215*a1b5e537Sbmc { "mod", DT_IDENT_ACTFUNC, 0, DT_ACT_MOD, DT_ATTR_STABCMN,
216*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "_symaddr(uintptr_t)" },
2177c478bd9Sstevel@tonic-gate { "msgdsize", DT_IDENT_FUNC, 0, DIF_SUBR_MSGDSIZE,
2187c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
2197c478bd9Sstevel@tonic-gate 	&dt_idops_func, "size_t(mblk_t *)" },
2207c478bd9Sstevel@tonic-gate { "msgsize", DT_IDENT_FUNC, 0, DIF_SUBR_MSGSIZE,
2217c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
2227c478bd9Sstevel@tonic-gate 	&dt_idops_func, "size_t(mblk_t *)" },
2237c478bd9Sstevel@tonic-gate { "mutex_owned", DT_IDENT_FUNC, 0, DIF_SUBR_MUTEX_OWNED,
2247c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
2257c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(genunix`kmutex_t *)" },
2267c478bd9Sstevel@tonic-gate { "mutex_owner", DT_IDENT_FUNC, 0, DIF_SUBR_MUTEX_OWNER,
2277c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
2287c478bd9Sstevel@tonic-gate 	&dt_idops_func, "genunix`kthread_t *(genunix`kmutex_t *)" },
2297c478bd9Sstevel@tonic-gate { "mutex_type_adaptive", DT_IDENT_FUNC, 0, DIF_SUBR_MUTEX_TYPE_ADAPTIVE,
2307c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
2317c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(genunix`kmutex_t *)" },
2327c478bd9Sstevel@tonic-gate { "mutex_type_spin", DT_IDENT_FUNC, 0, DIF_SUBR_MUTEX_TYPE_SPIN,
2337c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
2347c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(genunix`kmutex_t *)" },
2357c478bd9Sstevel@tonic-gate { "normalize", DT_IDENT_ACTFUNC, 0, DT_ACT_NORMALIZE, DT_ATTR_STABCMN,
2367c478bd9Sstevel@tonic-gate 	DT_VERS_1_0, &dt_idops_func, "void(...)" },
2377c478bd9Sstevel@tonic-gate { "panic", DT_IDENT_ACTFUNC, 0, DT_ACT_PANIC, DT_ATTR_STABCMN, DT_VERS_1_0,
2387c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void()" },
2397c478bd9Sstevel@tonic-gate { "pid", DT_IDENT_SCALAR, 0, DIF_VAR_PID, DT_ATTR_STABCMN, DT_VERS_1_0,
2407c478bd9Sstevel@tonic-gate 	&dt_idops_type, "pid_t" },
2417c478bd9Sstevel@tonic-gate { "printa", DT_IDENT_ACTFUNC, 0, DT_ACT_PRINTA, DT_ATTR_STABCMN, DT_VERS_1_0,
2427c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@, ...)" },
2437c478bd9Sstevel@tonic-gate { "printf", DT_IDENT_ACTFUNC, 0, DT_ACT_PRINTF, DT_ATTR_STABCMN, DT_VERS_1_0,
2447c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@, ...)" },
2457c478bd9Sstevel@tonic-gate { "probefunc", DT_IDENT_SCALAR, 0, DIF_VAR_PROBEFUNC,
2467c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0, &dt_idops_type, "string" },
2477c478bd9Sstevel@tonic-gate { "probemod", DT_IDENT_SCALAR, 0, DIF_VAR_PROBEMOD,
2487c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0, &dt_idops_type, "string" },
2497c478bd9Sstevel@tonic-gate { "probename", DT_IDENT_SCALAR, 0, DIF_VAR_PROBENAME,
2507c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0, &dt_idops_type, "string" },
2517c478bd9Sstevel@tonic-gate { "probeprov", DT_IDENT_SCALAR, 0, DIF_VAR_PROBEPROV,
2527c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0, &dt_idops_type, "string" },
2537c478bd9Sstevel@tonic-gate { "progenyof", DT_IDENT_FUNC, 0, DIF_SUBR_PROGENYOF,
2547c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
2557c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(pid_t)" },
2567c478bd9Sstevel@tonic-gate { "quantize", DT_IDENT_AGGFUNC, 0, DTRACEAGG_QUANTIZE,
2577c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
258*a1b5e537Sbmc 	&dt_idops_func, "void(@, ...)" },
2597c478bd9Sstevel@tonic-gate { "raise", DT_IDENT_ACTFUNC, 0, DT_ACT_RAISE, DT_ATTR_STABCMN, DT_VERS_1_0,
2607c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(int)" },
2617c478bd9Sstevel@tonic-gate { "rand", DT_IDENT_FUNC, 0, DIF_SUBR_RAND, DT_ATTR_STABCMN, DT_VERS_1_0,
2627c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int()" },
2637c478bd9Sstevel@tonic-gate { "rindex", DT_IDENT_FUNC, 0, DIF_SUBR_RINDEX, DT_ATTR_STABCMN, DT_VERS_1_1,
2647c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(const char *, const char *, [int])" },
2657c478bd9Sstevel@tonic-gate { "rw_iswriter", DT_IDENT_FUNC, 0, DIF_SUBR_RW_ISWRITER,
2667c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
2677c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(genunix`krwlock_t *)" },
2687c478bd9Sstevel@tonic-gate { "rw_read_held", DT_IDENT_FUNC, 0, DIF_SUBR_RW_READ_HELD,
2697c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
2707c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(genunix`krwlock_t *)" },
2717c478bd9Sstevel@tonic-gate { "rw_write_held", DT_IDENT_FUNC, 0, DIF_SUBR_RW_WRITE_HELD,
2727c478bd9Sstevel@tonic-gate 	DT_ATTR_EVOLCMN, DT_VERS_1_0,
2737c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int(genunix`krwlock_t *)" },
2747c478bd9Sstevel@tonic-gate { "self", DT_IDENT_PTR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0,
2757c478bd9Sstevel@tonic-gate 	&dt_idops_type, "void" },
276*a1b5e537Sbmc { "setopt", DT_IDENT_ACTFUNC, 0, DT_ACT_SETOPT, DT_ATTR_STABCMN,
277*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "void(const char *, [const char *])" },
2787c478bd9Sstevel@tonic-gate { "speculate", DT_IDENT_ACTFUNC, 0, DT_ACT_SPECULATE,
2797c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
2807c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(int)" },
2817c478bd9Sstevel@tonic-gate { "speculation", DT_IDENT_FUNC, 0, DIF_SUBR_SPECULATION,
2827c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
2837c478bd9Sstevel@tonic-gate 	&dt_idops_func, "int()" },
2847c478bd9Sstevel@tonic-gate { "stack", DT_IDENT_ACTFUNC, 0, DT_ACT_STACK, DT_ATTR_STABCMN, DT_VERS_1_0,
2857c478bd9Sstevel@tonic-gate 	&dt_idops_func, "stack(...)" },
2867c478bd9Sstevel@tonic-gate { "stackdepth", DT_IDENT_SCALAR, 0, DIF_VAR_STACKDEPTH,
2877c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
2887c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uint32_t" },
2897c478bd9Sstevel@tonic-gate { "stop", DT_IDENT_ACTFUNC, 0, DT_ACT_STOP, DT_ATTR_STABCMN, DT_VERS_1_0,
2907c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void()" },
2917c478bd9Sstevel@tonic-gate { "strchr", DT_IDENT_FUNC, 0, DIF_SUBR_STRCHR, DT_ATTR_STABCMN, DT_VERS_1_1,
2927c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *, char)" },
2937c478bd9Sstevel@tonic-gate { "strlen", DT_IDENT_FUNC, 0, DIF_SUBR_STRLEN, DT_ATTR_STABCMN, DT_VERS_1_0,
2947c478bd9Sstevel@tonic-gate 	&dt_idops_func, "size_t(const char *)" },
2957c478bd9Sstevel@tonic-gate { "strjoin", DT_IDENT_FUNC, 0, DIF_SUBR_STRJOIN, DT_ATTR_STABCMN, DT_VERS_1_0,
2967c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *, const char *)" },
2977c478bd9Sstevel@tonic-gate { "strrchr", DT_IDENT_FUNC, 0, DIF_SUBR_STRRCHR, DT_ATTR_STABCMN, DT_VERS_1_1,
2987c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *, char)" },
2997c478bd9Sstevel@tonic-gate { "strstr", DT_IDENT_FUNC, 0, DIF_SUBR_STRSTR, DT_ATTR_STABCMN, DT_VERS_1_1,
3007c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *, const char *)" },
3017c478bd9Sstevel@tonic-gate { "strtok", DT_IDENT_FUNC, 0, DIF_SUBR_STRTOK, DT_ATTR_STABCMN, DT_VERS_1_1,
3027c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *, const char *)" },
3037c478bd9Sstevel@tonic-gate { "substr", DT_IDENT_FUNC, 0, DIF_SUBR_SUBSTR, DT_ATTR_STABCMN, DT_VERS_1_1,
3047c478bd9Sstevel@tonic-gate 	&dt_idops_func, "string(const char *, int, [int])" },
3057c478bd9Sstevel@tonic-gate { "sum", DT_IDENT_AGGFUNC, 0, DTRACEAGG_SUM, DT_ATTR_STABCMN, DT_VERS_1_0,
3067c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@)" },
307*a1b5e537Sbmc { "sym", DT_IDENT_ACTFUNC, 0, DT_ACT_SYM, DT_ATTR_STABCMN,
308*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "_symaddr(uintptr_t)" },
3097c478bd9Sstevel@tonic-gate { "system", DT_IDENT_ACTFUNC, 0, DT_ACT_SYSTEM, DT_ATTR_STABCMN, DT_VERS_1_0,
3107c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@, ...)" },
3117c478bd9Sstevel@tonic-gate { "this", DT_IDENT_PTR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0,
3127c478bd9Sstevel@tonic-gate 	&dt_idops_type, "void" },
3137c478bd9Sstevel@tonic-gate { "tid", DT_IDENT_SCALAR, 0, DIF_VAR_TID, DT_ATTR_STABCMN, DT_VERS_1_0,
3147c478bd9Sstevel@tonic-gate 	&dt_idops_type, "id_t" },
3157c478bd9Sstevel@tonic-gate { "timestamp", DT_IDENT_SCALAR, 0, DIF_VAR_TIMESTAMP,
3167c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
3177c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uint64_t" },
3187c478bd9Sstevel@tonic-gate { "trace", DT_IDENT_ACTFUNC, 0, DT_ACT_TRACE, DT_ATTR_STABCMN, DT_VERS_1_0,
3197c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@)" },
3207c478bd9Sstevel@tonic-gate { "tracemem", DT_IDENT_ACTFUNC, 0, DT_ACT_TRACEMEM,
3217c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
3227c478bd9Sstevel@tonic-gate 	&dt_idops_func, "void(@, size_t)" },
3237c478bd9Sstevel@tonic-gate { "trunc", DT_IDENT_ACTFUNC, 0, DT_ACT_TRUNC, DT_ATTR_STABCMN,
3247c478bd9Sstevel@tonic-gate 	DT_VERS_1_0, &dt_idops_func, "void(...)" },
325*a1b5e537Sbmc { "uaddr", DT_IDENT_ACTFUNC, 0, DT_ACT_UADDR, DT_ATTR_STABCMN,
326*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "_usymaddr(uintptr_t)" },
327*a1b5e537Sbmc { "ucaller", DT_IDENT_SCALAR, 0, DIF_VAR_UCALLER, DT_ATTR_STABCMN,
328*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_type, "uint64_t" },
329*a1b5e537Sbmc { "ufunc", DT_IDENT_ACTFUNC, 0, DT_ACT_USYM, DT_ATTR_STABCMN,
330*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "_usymaddr(uintptr_t)" },
331*a1b5e537Sbmc { "umod", DT_IDENT_ACTFUNC, 0, DT_ACT_UMOD, DT_ATTR_STABCMN,
332*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "_usymaddr(uintptr_t)" },
3337c478bd9Sstevel@tonic-gate { "uregs", DT_IDENT_ARRAY, 0, DIF_VAR_UREGS, DT_ATTR_STABCMN, DT_VERS_1_0,
3347c478bd9Sstevel@tonic-gate 	&dt_idops_regs, NULL },
3357c478bd9Sstevel@tonic-gate { "ustack", DT_IDENT_ACTFUNC, 0, DT_ACT_USTACK, DT_ATTR_STABCMN, DT_VERS_1_0,
3367c478bd9Sstevel@tonic-gate 	&dt_idops_func, "stack(...)" },
3370b38a8bdSahl { "ustackdepth", DT_IDENT_SCALAR, 0, DIF_VAR_USTACKDEPTH,
3380b38a8bdSahl 	DT_ATTR_STABCMN, DT_VERS_1_2,
3390b38a8bdSahl 	&dt_idops_type, "uint32_t" },
340*a1b5e537Sbmc { "usym", DT_IDENT_ACTFUNC, 0, DT_ACT_USYM, DT_ATTR_STABCMN,
341*a1b5e537Sbmc 	DT_VERS_1_2, &dt_idops_func, "_usymaddr(uintptr_t)" },
3427c478bd9Sstevel@tonic-gate { "vtimestamp", DT_IDENT_SCALAR, 0, DIF_VAR_VTIMESTAMP,
3437c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
3447c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uint64_t" },
3457c478bd9Sstevel@tonic-gate { "walltimestamp", DT_IDENT_SCALAR, 0, DIF_VAR_WALLTIMESTAMP,
3467c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0,
3477c478bd9Sstevel@tonic-gate 	&dt_idops_type, "uint64_t" },
3487c478bd9Sstevel@tonic-gate { "zonename", DT_IDENT_SCALAR, 0, DIF_VAR_ZONENAME,
3497c478bd9Sstevel@tonic-gate 	DT_ATTR_STABCMN, DT_VERS_1_0, &dt_idops_type, "string" },
3507c478bd9Sstevel@tonic-gate { NULL, 0, 0, 0, { 0, 0, 0 }, 0, NULL, NULL }
3517c478bd9Sstevel@tonic-gate };
3527c478bd9Sstevel@tonic-gate 
3537c478bd9Sstevel@tonic-gate /*
3547c478bd9Sstevel@tonic-gate  * Tables of ILP32 intrinsic integer and floating-point type templates to use
3557c478bd9Sstevel@tonic-gate  * to populate the dynamic "C" CTF type container.
3567c478bd9Sstevel@tonic-gate  */
3577c478bd9Sstevel@tonic-gate static const dt_intrinsic_t _dtrace_intrinsics_32[] = {
3587c478bd9Sstevel@tonic-gate { "void", { CTF_INT_SIGNED, 0, 0 }, CTF_K_INTEGER },
3597c478bd9Sstevel@tonic-gate { "signed", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
3607c478bd9Sstevel@tonic-gate { "unsigned", { 0, 0, 32 }, CTF_K_INTEGER },
3617c478bd9Sstevel@tonic-gate { "char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
3627c478bd9Sstevel@tonic-gate { "short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
3637c478bd9Sstevel@tonic-gate { "int", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
3647c478bd9Sstevel@tonic-gate { "long", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
3657c478bd9Sstevel@tonic-gate { "long long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
3667c478bd9Sstevel@tonic-gate { "signed char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
3677c478bd9Sstevel@tonic-gate { "signed short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
3687c478bd9Sstevel@tonic-gate { "signed int", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
3697c478bd9Sstevel@tonic-gate { "signed long", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
3707c478bd9Sstevel@tonic-gate { "signed long long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
3717c478bd9Sstevel@tonic-gate { "unsigned char", { CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
3727c478bd9Sstevel@tonic-gate { "unsigned short", { 0, 0, 16 }, CTF_K_INTEGER },
3737c478bd9Sstevel@tonic-gate { "unsigned int", { 0, 0, 32 }, CTF_K_INTEGER },
3747c478bd9Sstevel@tonic-gate { "unsigned long", { 0, 0, 32 }, CTF_K_INTEGER },
3757c478bd9Sstevel@tonic-gate { "unsigned long long", { 0, 0, 64 }, CTF_K_INTEGER },
3767c478bd9Sstevel@tonic-gate { "_Bool", { CTF_INT_BOOL, 0, 8 }, CTF_K_INTEGER },
3777c478bd9Sstevel@tonic-gate { "float", { CTF_FP_SINGLE, 0, 32 }, CTF_K_FLOAT },
3787c478bd9Sstevel@tonic-gate { "double", { CTF_FP_DOUBLE, 0, 64 }, CTF_K_FLOAT },
3797c478bd9Sstevel@tonic-gate { "long double", { CTF_FP_LDOUBLE, 0, 128 }, CTF_K_FLOAT },
3807c478bd9Sstevel@tonic-gate { "float imaginary", { CTF_FP_IMAGRY, 0, 32 }, CTF_K_FLOAT },
3817c478bd9Sstevel@tonic-gate { "double imaginary", { CTF_FP_DIMAGRY, 0, 64 }, CTF_K_FLOAT },
3827c478bd9Sstevel@tonic-gate { "long double imaginary", { CTF_FP_LDIMAGRY, 0, 128 }, CTF_K_FLOAT },
3837c478bd9Sstevel@tonic-gate { "float complex", { CTF_FP_CPLX, 0, 64 }, CTF_K_FLOAT },
3847c478bd9Sstevel@tonic-gate { "double complex", { CTF_FP_DCPLX, 0, 128 }, CTF_K_FLOAT },
3857c478bd9Sstevel@tonic-gate { "long double complex", { CTF_FP_LDCPLX, 0, 256 }, CTF_K_FLOAT },
3867c478bd9Sstevel@tonic-gate { NULL, { 0, 0, 0 }, 0 }
3877c478bd9Sstevel@tonic-gate };
3887c478bd9Sstevel@tonic-gate 
3897c478bd9Sstevel@tonic-gate /*
3907c478bd9Sstevel@tonic-gate  * Tables of LP64 intrinsic integer and floating-point type templates to use
3917c478bd9Sstevel@tonic-gate  * to populate the dynamic "C" CTF type container.
3927c478bd9Sstevel@tonic-gate  */
3937c478bd9Sstevel@tonic-gate static const dt_intrinsic_t _dtrace_intrinsics_64[] = {
3947c478bd9Sstevel@tonic-gate { "void", { CTF_INT_SIGNED, 0, 0 }, CTF_K_INTEGER },
3957c478bd9Sstevel@tonic-gate { "signed", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
3967c478bd9Sstevel@tonic-gate { "unsigned", { 0, 0, 32 }, CTF_K_INTEGER },
3977c478bd9Sstevel@tonic-gate { "char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
3987c478bd9Sstevel@tonic-gate { "short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
3997c478bd9Sstevel@tonic-gate { "int", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
4007c478bd9Sstevel@tonic-gate { "long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
4017c478bd9Sstevel@tonic-gate { "long long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
4027c478bd9Sstevel@tonic-gate { "signed char", { CTF_INT_SIGNED | CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
4037c478bd9Sstevel@tonic-gate { "signed short", { CTF_INT_SIGNED, 0, 16 }, CTF_K_INTEGER },
4047c478bd9Sstevel@tonic-gate { "signed int", { CTF_INT_SIGNED, 0, 32 }, CTF_K_INTEGER },
4057c478bd9Sstevel@tonic-gate { "signed long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
4067c478bd9Sstevel@tonic-gate { "signed long long", { CTF_INT_SIGNED, 0, 64 }, CTF_K_INTEGER },
4077c478bd9Sstevel@tonic-gate { "unsigned char", { CTF_INT_CHAR, 0, 8 }, CTF_K_INTEGER },
4087c478bd9Sstevel@tonic-gate { "unsigned short", { 0, 0, 16 }, CTF_K_INTEGER },
4097c478bd9Sstevel@tonic-gate { "unsigned int", { 0, 0, 32 }, CTF_K_INTEGER },
4107c478bd9Sstevel@tonic-gate { "unsigned long", { 0, 0, 64 }, CTF_K_INTEGER },
4117c478bd9Sstevel@tonic-gate { "unsigned long long", { 0, 0, 64 }, CTF_K_INTEGER },
4127c478bd9Sstevel@tonic-gate { "_Bool", { CTF_INT_BOOL, 0, 8 }, CTF_K_INTEGER },
4137c478bd9Sstevel@tonic-gate { "float", { CTF_FP_SINGLE, 0, 32 }, CTF_K_FLOAT },
4147c478bd9Sstevel@tonic-gate { "double", { CTF_FP_DOUBLE, 0, 64 }, CTF_K_FLOAT },
4157c478bd9Sstevel@tonic-gate { "long double", { CTF_FP_LDOUBLE, 0, 128 }, CTF_K_FLOAT },
4167c478bd9Sstevel@tonic-gate { "float imaginary", { CTF_FP_IMAGRY, 0, 32 }, CTF_K_FLOAT },
4177c478bd9Sstevel@tonic-gate { "double imaginary", { CTF_FP_DIMAGRY, 0, 64 }, CTF_K_FLOAT },
4187c478bd9Sstevel@tonic-gate { "long double imaginary", { CTF_FP_LDIMAGRY, 0, 128 }, CTF_K_FLOAT },
4197c478bd9Sstevel@tonic-gate { "float complex", { CTF_FP_CPLX, 0, 64 }, CTF_K_FLOAT },
4207c478bd9Sstevel@tonic-gate { "double complex", { CTF_FP_DCPLX, 0, 128 }, CTF_K_FLOAT },
4217c478bd9Sstevel@tonic-gate { "long double complex", { CTF_FP_LDCPLX, 0, 256 }, CTF_K_FLOAT },
4227c478bd9Sstevel@tonic-gate { NULL, { 0, 0, 0 }, 0 }
4237c478bd9Sstevel@tonic-gate };
4247c478bd9Sstevel@tonic-gate 
4257c478bd9Sstevel@tonic-gate /*
4267c478bd9Sstevel@tonic-gate  * Tables of ILP32 typedefs to use to populate the dynamic "D" CTF container.
4277c478bd9Sstevel@tonic-gate  * These aliases ensure that D definitions can use typical <sys/types.h> names.
4287c478bd9Sstevel@tonic-gate  */
4297c478bd9Sstevel@tonic-gate static const dt_typedef_t _dtrace_typedefs_32[] = {
4307c478bd9Sstevel@tonic-gate { "char", "int8_t" },
4317c478bd9Sstevel@tonic-gate { "short", "int16_t" },
4327c478bd9Sstevel@tonic-gate { "int", "int32_t" },
4337c478bd9Sstevel@tonic-gate { "long long", "int64_t" },
4347c478bd9Sstevel@tonic-gate { "int", "intptr_t" },
4357c478bd9Sstevel@tonic-gate { "int", "ssize_t" },
4367c478bd9Sstevel@tonic-gate { "unsigned char", "uint8_t" },
4377c478bd9Sstevel@tonic-gate { "unsigned short", "uint16_t" },
4387c478bd9Sstevel@tonic-gate { "unsigned", "uint32_t" },
4397c478bd9Sstevel@tonic-gate { "unsigned long long", "uint64_t" },
4407c478bd9Sstevel@tonic-gate { "unsigned char", "uchar_t" },
4417c478bd9Sstevel@tonic-gate { "unsigned short", "ushort_t" },
4427c478bd9Sstevel@tonic-gate { "unsigned", "uint_t" },
4437c478bd9Sstevel@tonic-gate { "unsigned long", "ulong_t" },
4447c478bd9Sstevel@tonic-gate { "unsigned long long", "u_longlong_t" },
4457c478bd9Sstevel@tonic-gate { "int", "ptrdiff_t" },
4467c478bd9Sstevel@tonic-gate { "unsigned", "uintptr_t" },
4477c478bd9Sstevel@tonic-gate { "unsigned", "size_t" },
4487c478bd9Sstevel@tonic-gate { "long", "id_t" },
4497c478bd9Sstevel@tonic-gate { "long", "pid_t" },
4507c478bd9Sstevel@tonic-gate { NULL, NULL }
4517c478bd9Sstevel@tonic-gate };
4527c478bd9Sstevel@tonic-gate 
4537c478bd9Sstevel@tonic-gate /*
4547c478bd9Sstevel@tonic-gate  * Tables of LP64 typedefs to use to populate the dynamic "D" CTF container.
4557c478bd9Sstevel@tonic-gate  * These aliases ensure that D definitions can use typical <sys/types.h> names.
4567c478bd9Sstevel@tonic-gate  */
4577c478bd9Sstevel@tonic-gate static const dt_typedef_t _dtrace_typedefs_64[] = {
4587c478bd9Sstevel@tonic-gate { "char", "int8_t" },
4597c478bd9Sstevel@tonic-gate { "short", "int16_t" },
4607c478bd9Sstevel@tonic-gate { "int", "int32_t" },
4617c478bd9Sstevel@tonic-gate { "long", "int64_t" },
4627c478bd9Sstevel@tonic-gate { "long", "intptr_t" },
4637c478bd9Sstevel@tonic-gate { "long", "ssize_t" },
4647c478bd9Sstevel@tonic-gate { "unsigned char", "uint8_t" },
4657c478bd9Sstevel@tonic-gate { "unsigned short", "uint16_t" },
4667c478bd9Sstevel@tonic-gate { "unsigned", "uint32_t" },
4677c478bd9Sstevel@tonic-gate { "unsigned long", "uint64_t" },
4687c478bd9Sstevel@tonic-gate { "unsigned char", "uchar_t" },
4697c478bd9Sstevel@tonic-gate { "unsigned short", "ushort_t" },
4707c478bd9Sstevel@tonic-gate { "unsigned", "uint_t" },
4717c478bd9Sstevel@tonic-gate { "unsigned long", "ulong_t" },
4727c478bd9Sstevel@tonic-gate { "unsigned long long", "u_longlong_t" },
4737c478bd9Sstevel@tonic-gate { "long", "ptrdiff_t" },
4747c478bd9Sstevel@tonic-gate { "unsigned long", "uintptr_t" },
4757c478bd9Sstevel@tonic-gate { "unsigned long", "size_t" },
4767c478bd9Sstevel@tonic-gate { "int", "id_t" },
4777c478bd9Sstevel@tonic-gate { "int", "pid_t" },
4787c478bd9Sstevel@tonic-gate { NULL, NULL }
4797c478bd9Sstevel@tonic-gate };
4807c478bd9Sstevel@tonic-gate 
4817c478bd9Sstevel@tonic-gate /*
4827c478bd9Sstevel@tonic-gate  * Tables of ILP32 integer type templates used to populate the dtp->dt_ints[]
4837c478bd9Sstevel@tonic-gate  * cache when a new dtrace client open occurs.  Values are set by dtrace_open().
4847c478bd9Sstevel@tonic-gate  */
4857c478bd9Sstevel@tonic-gate static const dt_intdesc_t _dtrace_ints_32[] = {
4867c478bd9Sstevel@tonic-gate { "int", NULL, CTF_ERR, 0x7fffffffULL },
4877c478bd9Sstevel@tonic-gate { "unsigned int", NULL, CTF_ERR, 0xffffffffULL },
4887c478bd9Sstevel@tonic-gate { "long", NULL, CTF_ERR, 0x7fffffffULL },
4897c478bd9Sstevel@tonic-gate { "unsigned long", NULL, CTF_ERR, 0xffffffffULL },
4907c478bd9Sstevel@tonic-gate { "long long", NULL, CTF_ERR, 0x7fffffffffffffffULL },
4917c478bd9Sstevel@tonic-gate { "unsigned long long", NULL, CTF_ERR, 0xffffffffffffffffULL }
4927c478bd9Sstevel@tonic-gate };
4937c478bd9Sstevel@tonic-gate 
4947c478bd9Sstevel@tonic-gate /*
4957c478bd9Sstevel@tonic-gate  * Tables of LP64 integer type templates used to populate the dtp->dt_ints[]
4967c478bd9Sstevel@tonic-gate  * cache when a new dtrace client open occurs.  Values are set by dtrace_open().
4977c478bd9Sstevel@tonic-gate  */
4987c478bd9Sstevel@tonic-gate static const dt_intdesc_t _dtrace_ints_64[] = {
4997c478bd9Sstevel@tonic-gate { "int", NULL, CTF_ERR, 0x7fffffffULL },
5007c478bd9Sstevel@tonic-gate { "unsigned int", NULL, CTF_ERR, 0xffffffffULL },
5017c478bd9Sstevel@tonic-gate { "long", NULL, CTF_ERR, 0x7fffffffffffffffULL },
5027c478bd9Sstevel@tonic-gate { "unsigned long", NULL, CTF_ERR, 0xffffffffffffffffULL },
5037c478bd9Sstevel@tonic-gate { "long long", NULL, CTF_ERR, 0x7fffffffffffffffULL },
5047c478bd9Sstevel@tonic-gate { "unsigned long long", NULL, CTF_ERR, 0xffffffffffffffffULL }
5057c478bd9Sstevel@tonic-gate };
5067c478bd9Sstevel@tonic-gate 
5077c478bd9Sstevel@tonic-gate /*
5087c478bd9Sstevel@tonic-gate  * Table of macro variable templates used to populate the macro identifier hash
5097c478bd9Sstevel@tonic-gate  * when a new dtrace client open occurs.  Values are set by dtrace_update().
5107c478bd9Sstevel@tonic-gate  */
5117c478bd9Sstevel@tonic-gate static const dt_ident_t _dtrace_macros[] = {
5127c478bd9Sstevel@tonic-gate { "egid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5137c478bd9Sstevel@tonic-gate { "euid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5147c478bd9Sstevel@tonic-gate { "gid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5157c478bd9Sstevel@tonic-gate { "pid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5167c478bd9Sstevel@tonic-gate { "pgid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5177c478bd9Sstevel@tonic-gate { "ppid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5187c478bd9Sstevel@tonic-gate { "projid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5197c478bd9Sstevel@tonic-gate { "sid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5207c478bd9Sstevel@tonic-gate { "taskid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5217c478bd9Sstevel@tonic-gate { "target", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5227c478bd9Sstevel@tonic-gate { "uid", DT_IDENT_SCALAR, 0, 0, DT_ATTR_STABCMN, DT_VERS_1_0 },
5237c478bd9Sstevel@tonic-gate { NULL, 0, 0, 0, { 0, 0, 0 }, 0 }
5247c478bd9Sstevel@tonic-gate };
5257c478bd9Sstevel@tonic-gate 
5267c478bd9Sstevel@tonic-gate /*
5277c478bd9Sstevel@tonic-gate  * Hard-wired definition string to be compiled and cached every time a new
5287c478bd9Sstevel@tonic-gate  * DTrace library handle is initialized.  This string should only be used to
5297c478bd9Sstevel@tonic-gate  * contain definitions that should be present regardless of DTRACE_O_NOLIBS.
5307c478bd9Sstevel@tonic-gate  */
5317c478bd9Sstevel@tonic-gate static const char _dtrace_hardwire[] = "\
5327c478bd9Sstevel@tonic-gate inline long NULL = 0; \n\
5337c478bd9Sstevel@tonic-gate #pragma D binding \"1.0\" NULL\n\
5347c478bd9Sstevel@tonic-gate ";
5357c478bd9Sstevel@tonic-gate 
5367c478bd9Sstevel@tonic-gate /*
5377c478bd9Sstevel@tonic-gate  * Default DTrace configuration to use when opening libdtrace DTRACE_O_NODEV.
5387c478bd9Sstevel@tonic-gate  * If DTRACE_O_NODEV is not set, we load the configuration from the kernel.
5397c478bd9Sstevel@tonic-gate  * The use of CTF_MODEL_NATIVE is more subtle than it might appear: we are
5407c478bd9Sstevel@tonic-gate  * relying on the fact that when running dtrace(1M), isaexec will invoke the
5417c478bd9Sstevel@tonic-gate  * binary with the same bitness as the kernel, which is what we want by default
5427c478bd9Sstevel@tonic-gate  * when generating our DIF.  The user can override the choice using oflags.
5437c478bd9Sstevel@tonic-gate  */
5447c478bd9Sstevel@tonic-gate static const dtrace_conf_t _dtrace_conf = {
5457c478bd9Sstevel@tonic-gate 	DIF_VERSION,		/* dtc_difversion */
5467c478bd9Sstevel@tonic-gate 	DIF_DIR_NREGS,		/* dtc_difintregs */
5477c478bd9Sstevel@tonic-gate 	DIF_DTR_NREGS,		/* dtc_diftupregs */
5487c478bd9Sstevel@tonic-gate 	CTF_MODEL_NATIVE	/* dtc_ctfmodel */
5497c478bd9Sstevel@tonic-gate };
5507c478bd9Sstevel@tonic-gate 
5517c478bd9Sstevel@tonic-gate const dtrace_attribute_t _dtrace_maxattr = {
5527c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_MAX,
5537c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_MAX,
5547c478bd9Sstevel@tonic-gate 	DTRACE_CLASS_MAX
5557c478bd9Sstevel@tonic-gate };
5567c478bd9Sstevel@tonic-gate 
5577c478bd9Sstevel@tonic-gate const dtrace_attribute_t _dtrace_defattr = {
5587c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_STABLE,
5597c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_STABLE,
5607c478bd9Sstevel@tonic-gate 	DTRACE_CLASS_COMMON
5617c478bd9Sstevel@tonic-gate };
5627c478bd9Sstevel@tonic-gate 
5637c478bd9Sstevel@tonic-gate const dtrace_attribute_t _dtrace_symattr = {
5647c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_PRIVATE,
5657c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_PRIVATE,
5667c478bd9Sstevel@tonic-gate 	DTRACE_CLASS_UNKNOWN
5677c478bd9Sstevel@tonic-gate };
5687c478bd9Sstevel@tonic-gate 
5697c478bd9Sstevel@tonic-gate const dtrace_attribute_t _dtrace_typattr = {
5707c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_PRIVATE,
5717c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_PRIVATE,
5727c478bd9Sstevel@tonic-gate 	DTRACE_CLASS_UNKNOWN
5737c478bd9Sstevel@tonic-gate };
5747c478bd9Sstevel@tonic-gate 
5757c478bd9Sstevel@tonic-gate const dtrace_attribute_t _dtrace_prvattr = {
5767c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_PRIVATE,
5777c478bd9Sstevel@tonic-gate 	DTRACE_STABILITY_PRIVATE,
5787c478bd9Sstevel@tonic-gate 	DTRACE_CLASS_UNKNOWN
5797c478bd9Sstevel@tonic-gate };
5807c478bd9Sstevel@tonic-gate 
5817c478bd9Sstevel@tonic-gate const dtrace_pattr_t _dtrace_prvdesc = {
5827c478bd9Sstevel@tonic-gate { DTRACE_STABILITY_UNSTABLE, DTRACE_STABILITY_UNSTABLE, DTRACE_CLASS_COMMON },
5837c478bd9Sstevel@tonic-gate { DTRACE_STABILITY_UNSTABLE, DTRACE_STABILITY_UNSTABLE, DTRACE_CLASS_COMMON },
5847c478bd9Sstevel@tonic-gate { DTRACE_STABILITY_UNSTABLE, DTRACE_STABILITY_UNSTABLE, DTRACE_CLASS_COMMON },
5857c478bd9Sstevel@tonic-gate { DTRACE_STABILITY_UNSTABLE, DTRACE_STABILITY_UNSTABLE, DTRACE_CLASS_COMMON },
5867c478bd9Sstevel@tonic-gate { DTRACE_STABILITY_UNSTABLE, DTRACE_STABILITY_UNSTABLE, DTRACE_CLASS_COMMON },
5877c478bd9Sstevel@tonic-gate };
5887c478bd9Sstevel@tonic-gate 
5897c478bd9Sstevel@tonic-gate const char *_dtrace_defcpp = "/usr/ccs/lib/cpp"; /* default cpp(1) to invoke */
5907c478bd9Sstevel@tonic-gate const char *_dtrace_defld = "/usr/ccs/bin/ld";   /* default ld(1) to invoke */
5917c478bd9Sstevel@tonic-gate 
5927c478bd9Sstevel@tonic-gate const char *_dtrace_libdir = "/usr/lib/dtrace"; /* default library directory */
5937c478bd9Sstevel@tonic-gate const char *_dtrace_moddir = "dtrace";		/* kernel module directory */
5947c478bd9Sstevel@tonic-gate 
5957c478bd9Sstevel@tonic-gate int _dtrace_strbuckets = 211;	/* default number of hash buckets (prime) */
5967c478bd9Sstevel@tonic-gate int _dtrace_intbuckets = 256;	/* default number of integer buckets (Pof2) */
5977c478bd9Sstevel@tonic-gate uint_t _dtrace_strsize = 256;	/* default size of string intrinsic type */
5987c478bd9Sstevel@tonic-gate uint_t _dtrace_stkindent = 14;	/* default whitespace indent for stack/ustack */
5997c478bd9Sstevel@tonic-gate uint_t _dtrace_pidbuckets = 64; /* default number of pid hash buckets */
6007c478bd9Sstevel@tonic-gate uint_t _dtrace_pidlrulim = 8;	/* default number of pid handles to cache */
6017c478bd9Sstevel@tonic-gate size_t _dtrace_bufsize = 512;	/* default dt_buf_create() size */
6027c478bd9Sstevel@tonic-gate int _dtrace_argmax = 32;	/* default maximum number of probe arguments */
6037c478bd9Sstevel@tonic-gate 
6047c478bd9Sstevel@tonic-gate int _dtrace_debug = 0;		/* debug messages enabled (off) */
6057c478bd9Sstevel@tonic-gate const char *const _dtrace_version = DT_VERS_STRING; /* API version string */
6067c478bd9Sstevel@tonic-gate int _dtrace_rdvers = RD_VERSION; /* rtld_db feature version */
6077c478bd9Sstevel@tonic-gate 
6087c478bd9Sstevel@tonic-gate typedef struct dt_fdlist {
6097c478bd9Sstevel@tonic-gate 	int *df_fds;		/* array of provider driver file descriptors */
6107c478bd9Sstevel@tonic-gate 	uint_t df_ents;		/* number of valid elements in df_fds[] */
6117c478bd9Sstevel@tonic-gate 	uint_t df_size;		/* size of df_fds[] */
6127c478bd9Sstevel@tonic-gate } dt_fdlist_t;
6137c478bd9Sstevel@tonic-gate 
6147c478bd9Sstevel@tonic-gate #pragma init(_dtrace_init)
6157c478bd9Sstevel@tonic-gate void
6167c478bd9Sstevel@tonic-gate _dtrace_init(void)
6177c478bd9Sstevel@tonic-gate {
6187c478bd9Sstevel@tonic-gate 	_dtrace_debug = getenv("DTRACE_DEBUG") != NULL;
6197c478bd9Sstevel@tonic-gate 
6207c478bd9Sstevel@tonic-gate 	for (; _dtrace_rdvers > 0; _dtrace_rdvers--) {
6217c478bd9Sstevel@tonic-gate 		if (rd_init(_dtrace_rdvers) == RD_OK)
6227c478bd9Sstevel@tonic-gate 			break;
6237c478bd9Sstevel@tonic-gate 	}
6247c478bd9Sstevel@tonic-gate }
6257c478bd9Sstevel@tonic-gate 
6267c478bd9Sstevel@tonic-gate static dtrace_hdl_t *
6277c478bd9Sstevel@tonic-gate set_open_errno(dtrace_hdl_t *dtp, int *errp, int err)
6287c478bd9Sstevel@tonic-gate {
6297c478bd9Sstevel@tonic-gate 	if (dtp != NULL)
6307c478bd9Sstevel@tonic-gate 		dtrace_close(dtp);
6317c478bd9Sstevel@tonic-gate 	if (errp != NULL)
6327c478bd9Sstevel@tonic-gate 		*errp = err;
6337c478bd9Sstevel@tonic-gate 	return (NULL);
6347c478bd9Sstevel@tonic-gate }
6357c478bd9Sstevel@tonic-gate 
6367c478bd9Sstevel@tonic-gate static void
6377c478bd9Sstevel@tonic-gate dt_provmod_open(dt_provmod_t **provmod, dt_fdlist_t *dfp, const char *dirname,
6387c478bd9Sstevel@tonic-gate     const char *subdir, const char *isadir)
6397c478bd9Sstevel@tonic-gate {
6407c478bd9Sstevel@tonic-gate 	dt_provmod_t *prov;
6417c478bd9Sstevel@tonic-gate 	char path[PATH_MAX];
6427c478bd9Sstevel@tonic-gate 	struct dirent *dp, *ep;
6437c478bd9Sstevel@tonic-gate 	DIR *dirp;
6447c478bd9Sstevel@tonic-gate 	int fd;
6457c478bd9Sstevel@tonic-gate 
6467c478bd9Sstevel@tonic-gate 	if (isadir) {
6477c478bd9Sstevel@tonic-gate 		(void) snprintf(path, sizeof (path), "%s/%s/%s",
6487c478bd9Sstevel@tonic-gate 		    dirname, subdir, isadir);
6497c478bd9Sstevel@tonic-gate 	} else {
6507c478bd9Sstevel@tonic-gate 		(void) snprintf(path, sizeof (path), "%s/%s",
6517c478bd9Sstevel@tonic-gate 		    dirname, subdir);
6527c478bd9Sstevel@tonic-gate 	}
6537c478bd9Sstevel@tonic-gate 
6547c478bd9Sstevel@tonic-gate 	if ((dirp = opendir(path)) == NULL)
6557c478bd9Sstevel@tonic-gate 		return; /* failed to open directory; just skip it */
6567c478bd9Sstevel@tonic-gate 
6577c478bd9Sstevel@tonic-gate 	ep = alloca(sizeof (struct dirent) + PATH_MAX + 1);
6587c478bd9Sstevel@tonic-gate 	bzero(ep, sizeof (struct dirent) + PATH_MAX + 1);
6597c478bd9Sstevel@tonic-gate 
6607c478bd9Sstevel@tonic-gate 	while (readdir_r(dirp, ep, &dp) == 0 && dp != NULL) {
6617c478bd9Sstevel@tonic-gate 		if (dp->d_name[0] == '.')
6627c478bd9Sstevel@tonic-gate 			continue; /* skip "." and ".." */
6637c478bd9Sstevel@tonic-gate 
6647c478bd9Sstevel@tonic-gate 		if (dfp->df_ents == dfp->df_size) {
6657c478bd9Sstevel@tonic-gate 			uint_t size = dfp->df_size ? dfp->df_size * 2 : 16;
6667c478bd9Sstevel@tonic-gate 			int *fds = realloc(dfp->df_fds, size * sizeof (int));
6677c478bd9Sstevel@tonic-gate 
6687c478bd9Sstevel@tonic-gate 			if (fds == NULL)
6697c478bd9Sstevel@tonic-gate 				break; /* skip the rest of this directory */
6707c478bd9Sstevel@tonic-gate 
6717c478bd9Sstevel@tonic-gate 			dfp->df_fds = fds;
6727c478bd9Sstevel@tonic-gate 			dfp->df_size = size;
6737c478bd9Sstevel@tonic-gate 		}
6747c478bd9Sstevel@tonic-gate 
6757c478bd9Sstevel@tonic-gate 		(void) snprintf(path, sizeof (path),
6767c478bd9Sstevel@tonic-gate 		    "/devices/pseudo/%s@0:%s", dp->d_name, dp->d_name);
6777c478bd9Sstevel@tonic-gate 
6787c478bd9Sstevel@tonic-gate 		if ((fd = open(path, O_RDONLY)) == -1)
6797c478bd9Sstevel@tonic-gate 			continue; /* failed to open driver; just skip it */
6807c478bd9Sstevel@tonic-gate 
6817c478bd9Sstevel@tonic-gate 		if (((prov = malloc(sizeof (dt_provmod_t))) == NULL) ||
6827c478bd9Sstevel@tonic-gate 		    (prov->dp_name = malloc(strlen(dp->d_name) + 1)) == NULL) {
6837c478bd9Sstevel@tonic-gate 			free(prov);
6847c478bd9Sstevel@tonic-gate 			(void) close(fd);
6857c478bd9Sstevel@tonic-gate 			break;
6867c478bd9Sstevel@tonic-gate 		}
6877c478bd9Sstevel@tonic-gate 
6887c478bd9Sstevel@tonic-gate 		(void) strcpy(prov->dp_name, dp->d_name);
6897c478bd9Sstevel@tonic-gate 		prov->dp_next = *provmod;
6907c478bd9Sstevel@tonic-gate 		*provmod = prov;
6917c478bd9Sstevel@tonic-gate 
6927c478bd9Sstevel@tonic-gate 		dt_dprintf("opened provider %s\n", dp->d_name);
6937c478bd9Sstevel@tonic-gate 		dfp->df_fds[dfp->df_ents++] = fd;
6947c478bd9Sstevel@tonic-gate 	}
6957c478bd9Sstevel@tonic-gate 
6967c478bd9Sstevel@tonic-gate 	(void) closedir(dirp);
6977c478bd9Sstevel@tonic-gate }
6987c478bd9Sstevel@tonic-gate 
6997c478bd9Sstevel@tonic-gate static void
7007c478bd9Sstevel@tonic-gate dt_provmod_destroy(dt_provmod_t **provmod)
7017c478bd9Sstevel@tonic-gate {
7027c478bd9Sstevel@tonic-gate 	dt_provmod_t *next, *current;
7037c478bd9Sstevel@tonic-gate 
7047c478bd9Sstevel@tonic-gate 	for (current = *provmod; current != NULL; current = next) {
7057c478bd9Sstevel@tonic-gate 		next = current->dp_next;
7067c478bd9Sstevel@tonic-gate 		free(current->dp_name);
7077c478bd9Sstevel@tonic-gate 		free(current);
7087c478bd9Sstevel@tonic-gate 	}
7097c478bd9Sstevel@tonic-gate 
7107c478bd9Sstevel@tonic-gate 	*provmod = NULL;
7117c478bd9Sstevel@tonic-gate }
7127c478bd9Sstevel@tonic-gate 
7137c478bd9Sstevel@tonic-gate static const char *
7147c478bd9Sstevel@tonic-gate dt_get_sysinfo(int cmd, char *buf, size_t len)
7157c478bd9Sstevel@tonic-gate {
7167c478bd9Sstevel@tonic-gate 	ssize_t rv = sysinfo(cmd, buf, len);
7177c478bd9Sstevel@tonic-gate 	char *p = buf;
7187c478bd9Sstevel@tonic-gate 
7197c478bd9Sstevel@tonic-gate 	if (rv < 0 || rv > len)
7207c478bd9Sstevel@tonic-gate 		(void) snprintf(buf, len, "%s", "Unknown");
7217c478bd9Sstevel@tonic-gate 
7227c478bd9Sstevel@tonic-gate 	while ((p = strchr(p, '.')) != NULL)
7237c478bd9Sstevel@tonic-gate 		*p++ = '_';
7247c478bd9Sstevel@tonic-gate 
7257c478bd9Sstevel@tonic-gate 	return (buf);
7267c478bd9Sstevel@tonic-gate }
7277c478bd9Sstevel@tonic-gate 
7287c478bd9Sstevel@tonic-gate static dtrace_hdl_t *
7297c478bd9Sstevel@tonic-gate dt_vopen(int version, int flags, int *errp,
7307c478bd9Sstevel@tonic-gate     const dtrace_vector_t *vector, void *arg)
7317c478bd9Sstevel@tonic-gate {
7327c478bd9Sstevel@tonic-gate 	dtrace_hdl_t *dtp = NULL;
7337c478bd9Sstevel@tonic-gate 	int dtfd = -1, ftfd = -1, fterr = 0;
7347c478bd9Sstevel@tonic-gate 	dtrace_prog_t *pgp;
7357c478bd9Sstevel@tonic-gate 	dt_module_t *dmp;
7367c478bd9Sstevel@tonic-gate 	dt_provmod_t *provmod = NULL;
7377c478bd9Sstevel@tonic-gate 	int i, err;
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate 	const dt_intrinsic_t *dinp;
7407c478bd9Sstevel@tonic-gate 	const dt_typedef_t *dtyp;
7417c478bd9Sstevel@tonic-gate 	const dt_ident_t *idp;
7427c478bd9Sstevel@tonic-gate 
7437c478bd9Sstevel@tonic-gate 	dtrace_typeinfo_t dtt;
7447c478bd9Sstevel@tonic-gate 	ctf_funcinfo_t ctc;
7457c478bd9Sstevel@tonic-gate 	ctf_arinfo_t ctr;
7467c478bd9Sstevel@tonic-gate 
7477c478bd9Sstevel@tonic-gate 	dt_fdlist_t df = { NULL, 0, 0 };
7487c478bd9Sstevel@tonic-gate 	char *p, *q, *path = NULL;
7497c478bd9Sstevel@tonic-gate 	const char *isadir = NULL;
7507c478bd9Sstevel@tonic-gate 	int pathlen;
7517c478bd9Sstevel@tonic-gate 
7527c478bd9Sstevel@tonic-gate 	char isadef[32], utsdef[32];
7537c478bd9Sstevel@tonic-gate 	char s1[64], s2[64];
7547c478bd9Sstevel@tonic-gate 
7557c478bd9Sstevel@tonic-gate 	if (version <= 0)
7567c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EINVAL));
7577c478bd9Sstevel@tonic-gate 
7587c478bd9Sstevel@tonic-gate 	if (version > DTRACE_VERSION)
7597c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_VERSION));
7607c478bd9Sstevel@tonic-gate 
7617c478bd9Sstevel@tonic-gate 	if (flags & ~DTRACE_O_MASK)
7627c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EINVAL));
7637c478bd9Sstevel@tonic-gate 
7647c478bd9Sstevel@tonic-gate 	if ((flags & DTRACE_O_LP64) && (flags & DTRACE_O_ILP32))
7657c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EINVAL));
7667c478bd9Sstevel@tonic-gate 
7677c478bd9Sstevel@tonic-gate 	if (vector == NULL && arg != NULL)
7687c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EINVAL));
7697c478bd9Sstevel@tonic-gate 
7707c478bd9Sstevel@tonic-gate 	if (elf_version(EV_CURRENT) == EV_NONE)
7717c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_ELFVERSION));
7727c478bd9Sstevel@tonic-gate 
7737c478bd9Sstevel@tonic-gate 	if (vector != NULL || (flags & DTRACE_O_NODEV))
7747c478bd9Sstevel@tonic-gate 		goto alloc; /* do not attempt to open dtrace device */
7757c478bd9Sstevel@tonic-gate 
7767c478bd9Sstevel@tonic-gate 	/*
7777c478bd9Sstevel@tonic-gate 	 * For each directory in the kernel's module path, build the name of
7787c478bd9Sstevel@tonic-gate 	 * the corresponding dtrace provider subdirectory and attempt to open a
7797c478bd9Sstevel@tonic-gate 	 * pseudo-driver whose name matches the name of each provider therein.
7807c478bd9Sstevel@tonic-gate 	 * We hold them open in the df.df_fds list until we open the DTrace
7817c478bd9Sstevel@tonic-gate 	 * driver itself, allowing us to see all of the probes provided on this
7827c478bd9Sstevel@tonic-gate 	 * system.  Once we have the DTrace driver open, we can safely close
7837c478bd9Sstevel@tonic-gate 	 * all the providers now that they have registered with the framework.
7847c478bd9Sstevel@tonic-gate 	 */
7857c478bd9Sstevel@tonic-gate 	if (sysinfo(SI_ISALIST, isadef, sizeof (isadef)) > 0) {
7867c478bd9Sstevel@tonic-gate 		if (strstr(isadef, "sparcv9") != NULL)
7877c478bd9Sstevel@tonic-gate 			isadir = "sparcv9";
7887c478bd9Sstevel@tonic-gate 		else if (strstr(isadef, "amd64") != NULL)
7897c478bd9Sstevel@tonic-gate 			isadir = "amd64";
7907c478bd9Sstevel@tonic-gate 	}
7917c478bd9Sstevel@tonic-gate 
7927c478bd9Sstevel@tonic-gate 	if (modctl(MODGETPATHLEN, NULL, &pathlen) == 0 &&
7937c478bd9Sstevel@tonic-gate 	    (path = malloc(pathlen + 1)) != NULL &&
7947c478bd9Sstevel@tonic-gate 	    modctl(MODGETPATH, NULL, path) == 0) {
7957c478bd9Sstevel@tonic-gate 		for (p = path; *p != '\0'; p = q) {
7967c478bd9Sstevel@tonic-gate 			if ((q = strchr(p, ' ')) != NULL)
7977c478bd9Sstevel@tonic-gate 				*q++ = '\0';
7987c478bd9Sstevel@tonic-gate 			else
7997c478bd9Sstevel@tonic-gate 				q = p + strlen(p);
8007c478bd9Sstevel@tonic-gate 			dt_provmod_open(&provmod, &df, p,
8017c478bd9Sstevel@tonic-gate 			    _dtrace_moddir, isadir);
8027c478bd9Sstevel@tonic-gate 		}
8037c478bd9Sstevel@tonic-gate 	}
8047c478bd9Sstevel@tonic-gate 
8057c478bd9Sstevel@tonic-gate 	dtfd = open("/devices/pseudo/dtrace@0:dtrace", O_RDWR);
8067c478bd9Sstevel@tonic-gate 	err = errno; /* save errno from opening dtfd */
8077c478bd9Sstevel@tonic-gate 
8087c478bd9Sstevel@tonic-gate 	ftfd = open("/devices/pseudo/fasttrap@0:fasttrap", O_RDWR);
8097c478bd9Sstevel@tonic-gate 	fterr = ftfd == -1 ? errno : 0; /* save errno from open ftfd */
8107c478bd9Sstevel@tonic-gate 
8117c478bd9Sstevel@tonic-gate 	while (df.df_ents-- != 0)
8127c478bd9Sstevel@tonic-gate 		(void) close(df.df_fds[df.df_ents]);
8137c478bd9Sstevel@tonic-gate 
8147c478bd9Sstevel@tonic-gate 	free(df.df_fds);
8157c478bd9Sstevel@tonic-gate 	free(path);
8167c478bd9Sstevel@tonic-gate 
8177c478bd9Sstevel@tonic-gate 	/*
8187c478bd9Sstevel@tonic-gate 	 * If we failed to open the dtrace device, fail dtrace_open().
8197c478bd9Sstevel@tonic-gate 	 * We convert some kernel errnos to custom libdtrace errnos to
8207c478bd9Sstevel@tonic-gate 	 * improve the resulting message from the usual strerror().
8217c478bd9Sstevel@tonic-gate 	 */
8227c478bd9Sstevel@tonic-gate 	if (dtfd == -1) {
8237c478bd9Sstevel@tonic-gate 		dt_provmod_destroy(&provmod);
8247c478bd9Sstevel@tonic-gate 		switch (err) {
8257c478bd9Sstevel@tonic-gate 		case ENOENT:
8267c478bd9Sstevel@tonic-gate 			if (getzoneid() != GLOBAL_ZONEID)
8277c478bd9Sstevel@tonic-gate 				err = EDT_ZNOENT;
8287c478bd9Sstevel@tonic-gate 			else
8297c478bd9Sstevel@tonic-gate 				err = EDT_GNOENT;
8307c478bd9Sstevel@tonic-gate 			break;
8317c478bd9Sstevel@tonic-gate 		case EBUSY:
8327c478bd9Sstevel@tonic-gate 			err = EDT_BUSY;
8337c478bd9Sstevel@tonic-gate 			break;
8347c478bd9Sstevel@tonic-gate 		case EACCES:
8357c478bd9Sstevel@tonic-gate 			err = EDT_ACCESS;
8367c478bd9Sstevel@tonic-gate 			break;
8377c478bd9Sstevel@tonic-gate 		}
8387c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, err));
8397c478bd9Sstevel@tonic-gate 	}
8407c478bd9Sstevel@tonic-gate 
8417c478bd9Sstevel@tonic-gate 	(void) fcntl(dtfd, F_SETFD, FD_CLOEXEC);
8427c478bd9Sstevel@tonic-gate 	(void) fcntl(ftfd, F_SETFD, FD_CLOEXEC);
8437c478bd9Sstevel@tonic-gate 
8447c478bd9Sstevel@tonic-gate alloc:
8457c478bd9Sstevel@tonic-gate 	if ((dtp = malloc(sizeof (dtrace_hdl_t))) == NULL)
8467c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
8477c478bd9Sstevel@tonic-gate 
8487c478bd9Sstevel@tonic-gate 	bzero(dtp, sizeof (dtrace_hdl_t));
8497c478bd9Sstevel@tonic-gate 	dtp->dt_oflags = flags;
8507c478bd9Sstevel@tonic-gate 	dtp->dt_prcmode = DT_PROC_STOP_PREINIT;
8517c478bd9Sstevel@tonic-gate 	dtp->dt_linkmode = DT_LINK_KERNEL;
8527c478bd9Sstevel@tonic-gate 	dtp->dt_linktype = DT_LTYP_ELF;
8531a7c1b72Smws 	dtp->dt_xlatemode = DT_XL_STATIC;
8547c478bd9Sstevel@tonic-gate 	dtp->dt_stdcmode = DT_STDC_XA;
8557c478bd9Sstevel@tonic-gate 	dtp->dt_version = version;
8567c478bd9Sstevel@tonic-gate 	dtp->dt_fd = dtfd;
8577c478bd9Sstevel@tonic-gate 	dtp->dt_ftfd = ftfd;
8587c478bd9Sstevel@tonic-gate 	dtp->dt_fterr = fterr;
8597c478bd9Sstevel@tonic-gate 	dtp->dt_cdefs_fd = -1;
8607c478bd9Sstevel@tonic-gate 	dtp->dt_ddefs_fd = -1;
8617c478bd9Sstevel@tonic-gate 	dtp->dt_stdout_fd = -1;
8627c478bd9Sstevel@tonic-gate 	dtp->dt_modbuckets = _dtrace_strbuckets;
8637c478bd9Sstevel@tonic-gate 	dtp->dt_mods = calloc(dtp->dt_modbuckets, sizeof (dt_module_t *));
8647c478bd9Sstevel@tonic-gate 	dtp->dt_provbuckets = _dtrace_strbuckets;
8657c478bd9Sstevel@tonic-gate 	dtp->dt_provs = calloc(dtp->dt_provbuckets, sizeof (dt_provider_t *));
8667c478bd9Sstevel@tonic-gate 	dt_proc_hash_create(dtp);
8677c478bd9Sstevel@tonic-gate 	dtp->dt_vmax = DT_VERS_LATEST;
8687c478bd9Sstevel@tonic-gate 	dtp->dt_cpp_path = strdup(_dtrace_defcpp);
8697c478bd9Sstevel@tonic-gate 	dtp->dt_cpp_argv = malloc(sizeof (char *));
8707c478bd9Sstevel@tonic-gate 	dtp->dt_cpp_argc = 1;
8717c478bd9Sstevel@tonic-gate 	dtp->dt_cpp_args = 1;
8727c478bd9Sstevel@tonic-gate 	dtp->dt_ld_path = strdup(_dtrace_defld);
8737c478bd9Sstevel@tonic-gate 	dtp->dt_provmod = provmod;
8747c478bd9Sstevel@tonic-gate 	dtp->dt_vector = vector;
8757c478bd9Sstevel@tonic-gate 	dtp->dt_varg = arg;
8767c478bd9Sstevel@tonic-gate 	dt_dof_init(dtp);
8777c478bd9Sstevel@tonic-gate 	(void) uname(&dtp->dt_uts);
8787c478bd9Sstevel@tonic-gate 
8797c478bd9Sstevel@tonic-gate 	if (dtp->dt_mods == NULL || dtp->dt_provs == NULL ||
8807c478bd9Sstevel@tonic-gate 	    dtp->dt_procs == NULL || dtp->dt_ld_path == NULL ||
8817c478bd9Sstevel@tonic-gate 	    dtp->dt_cpp_path == NULL || dtp->dt_cpp_argv == NULL)
8827c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
8837c478bd9Sstevel@tonic-gate 
8847c478bd9Sstevel@tonic-gate 	for (i = 0; i < DTRACEOPT_MAX; i++)
8857c478bd9Sstevel@tonic-gate 		dtp->dt_options[i] = DTRACEOPT_UNSET;
8867c478bd9Sstevel@tonic-gate 
8877c478bd9Sstevel@tonic-gate 	dtp->dt_cpp_argv[0] = (char *)strbasename(dtp->dt_cpp_path);
8887c478bd9Sstevel@tonic-gate 
8897c478bd9Sstevel@tonic-gate 	(void) snprintf(isadef, sizeof (isadef), "-D__SUNW_D_%u",
8907c478bd9Sstevel@tonic-gate 	    (uint_t)(sizeof (void *) * NBBY));
8917c478bd9Sstevel@tonic-gate 
8927c478bd9Sstevel@tonic-gate 	(void) snprintf(utsdef, sizeof (utsdef), "-D__%s_%s",
8937c478bd9Sstevel@tonic-gate 	    dt_get_sysinfo(SI_SYSNAME, s1, sizeof (s1)),
8947c478bd9Sstevel@tonic-gate 	    dt_get_sysinfo(SI_RELEASE, s2, sizeof (s2)));
8957c478bd9Sstevel@tonic-gate 
8967c478bd9Sstevel@tonic-gate 	if (dt_cpp_add_arg(dtp, "-D__sun") == NULL ||
8977c478bd9Sstevel@tonic-gate 	    dt_cpp_add_arg(dtp, "-D__unix") == NULL ||
8987c478bd9Sstevel@tonic-gate 	    dt_cpp_add_arg(dtp, "-D__SVR4") == NULL ||
8997c478bd9Sstevel@tonic-gate 	    dt_cpp_add_arg(dtp, "-D__SUNW_D=1") == NULL ||
9007c478bd9Sstevel@tonic-gate 	    dt_cpp_add_arg(dtp, isadef) == NULL ||
9017c478bd9Sstevel@tonic-gate 	    dt_cpp_add_arg(dtp, utsdef) == NULL)
9027c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
9037c478bd9Sstevel@tonic-gate 
9047c478bd9Sstevel@tonic-gate 	if (flags & DTRACE_O_NODEV)
9057c478bd9Sstevel@tonic-gate 		bcopy(&_dtrace_conf, &dtp->dt_conf, sizeof (_dtrace_conf));
9067c478bd9Sstevel@tonic-gate 	else if (dt_ioctl(dtp, DTRACEIOC_CONF, &dtp->dt_conf) != 0)
9077c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, errno));
9087c478bd9Sstevel@tonic-gate 
9097c478bd9Sstevel@tonic-gate 	if (flags & DTRACE_O_LP64)
9107c478bd9Sstevel@tonic-gate 		dtp->dt_conf.dtc_ctfmodel = CTF_MODEL_LP64;
9117c478bd9Sstevel@tonic-gate 	else if (flags & DTRACE_O_ILP32)
9127c478bd9Sstevel@tonic-gate 		dtp->dt_conf.dtc_ctfmodel = CTF_MODEL_ILP32;
9137c478bd9Sstevel@tonic-gate 
9147c478bd9Sstevel@tonic-gate #ifdef __sparc
9157c478bd9Sstevel@tonic-gate 	/*
9167c478bd9Sstevel@tonic-gate 	 * On SPARC systems, __sparc is always defined for <sys/isa_defs.h>
9177c478bd9Sstevel@tonic-gate 	 * and __sparcv9 is defined if we are doing a 64-bit compile.
9187c478bd9Sstevel@tonic-gate 	 */
9197c478bd9Sstevel@tonic-gate 	if (dt_cpp_add_arg(dtp, "-D__sparc") == NULL)
9207c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
9217c478bd9Sstevel@tonic-gate 
9227c478bd9Sstevel@tonic-gate 	if (dtp->dt_conf.dtc_ctfmodel == CTF_MODEL_LP64 &&
9237c478bd9Sstevel@tonic-gate 	    dt_cpp_add_arg(dtp, "-D__sparcv9") == NULL)
9247c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
9257c478bd9Sstevel@tonic-gate #endif
9267c478bd9Sstevel@tonic-gate 
9277c478bd9Sstevel@tonic-gate #ifdef __x86
9287c478bd9Sstevel@tonic-gate 	/*
9297c478bd9Sstevel@tonic-gate 	 * On x86 systems, __i386 is defined for <sys/isa_defs.h> for 32-bit
9307c478bd9Sstevel@tonic-gate 	 * compiles and __amd64 is defined for 64-bit compiles.  Unlike SPARC,
9317c478bd9Sstevel@tonic-gate 	 * they are defined exclusive of one another (see PSARC 2004/619).
9327c478bd9Sstevel@tonic-gate 	 */
9337c478bd9Sstevel@tonic-gate 	if (dtp->dt_conf.dtc_ctfmodel == CTF_MODEL_LP64)
9347c478bd9Sstevel@tonic-gate 		p = dt_cpp_add_arg(dtp, "-D__amd64");
9357c478bd9Sstevel@tonic-gate 	else
9367c478bd9Sstevel@tonic-gate 		p = dt_cpp_add_arg(dtp, "-D__i386");
9377c478bd9Sstevel@tonic-gate 
9387c478bd9Sstevel@tonic-gate 	if (p == NULL)
9397c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
9407c478bd9Sstevel@tonic-gate #endif
9417c478bd9Sstevel@tonic-gate 
9427c478bd9Sstevel@tonic-gate 	if (dtp->dt_conf.dtc_difversion < DIF_VERSION)
9437c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_DIFVERS));
9447c478bd9Sstevel@tonic-gate 
9457c478bd9Sstevel@tonic-gate 	if (dtp->dt_conf.dtc_ctfmodel == CTF_MODEL_ILP32)
9467c478bd9Sstevel@tonic-gate 		bcopy(_dtrace_ints_32, dtp->dt_ints, sizeof (_dtrace_ints_32));
9477c478bd9Sstevel@tonic-gate 	else
9487c478bd9Sstevel@tonic-gate 		bcopy(_dtrace_ints_64, dtp->dt_ints, sizeof (_dtrace_ints_64));
9497c478bd9Sstevel@tonic-gate 
9507c478bd9Sstevel@tonic-gate 	dtp->dt_macros = dt_idhash_create("macro", NULL, 0, UINT_MAX);
9517c478bd9Sstevel@tonic-gate 	dtp->dt_aggs = dt_idhash_create("aggregation", NULL, 0, UINT_MAX);
9527c478bd9Sstevel@tonic-gate 
9537c478bd9Sstevel@tonic-gate 	dtp->dt_globals = dt_idhash_create("global", _dtrace_globals,
9547c478bd9Sstevel@tonic-gate 	    DIF_VAR_OTHER_UBASE, DIF_VAR_OTHER_MAX);
9557c478bd9Sstevel@tonic-gate 
9567c478bd9Sstevel@tonic-gate 	dtp->dt_tls = dt_idhash_create("thread local", NULL,
9577c478bd9Sstevel@tonic-gate 	    DIF_VAR_OTHER_UBASE, DIF_VAR_OTHER_MAX);
9587c478bd9Sstevel@tonic-gate 
9597c478bd9Sstevel@tonic-gate 	if (dtp->dt_macros == NULL || dtp->dt_aggs == NULL ||
9607c478bd9Sstevel@tonic-gate 	    dtp->dt_globals == NULL || dtp->dt_tls == NULL)
9617c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate 	/*
9647c478bd9Sstevel@tonic-gate 	 * Populate the dt_macros identifier hash table by hand: we can't use
9657c478bd9Sstevel@tonic-gate 	 * the dt_idhash_populate() mechanism because we're not yet compiling
9667c478bd9Sstevel@tonic-gate 	 * and dtrace_update() needs to immediately reference these idents.
9677c478bd9Sstevel@tonic-gate 	 */
9687c478bd9Sstevel@tonic-gate 	for (idp = _dtrace_macros; idp->di_name != NULL; idp++) {
9697c478bd9Sstevel@tonic-gate 		if (dt_idhash_insert(dtp->dt_macros, idp->di_name,
9707c478bd9Sstevel@tonic-gate 		    idp->di_kind, idp->di_flags, idp->di_id, idp->di_attr,
9717c478bd9Sstevel@tonic-gate 		    idp->di_vers, idp->di_ops ? idp->di_ops : &dt_idops_thaw,
9727c478bd9Sstevel@tonic-gate 		    idp->di_iarg, 0) == NULL)
9737c478bd9Sstevel@tonic-gate 			return (set_open_errno(dtp, errp, EDT_NOMEM));
9747c478bd9Sstevel@tonic-gate 	}
9757c478bd9Sstevel@tonic-gate 
9767c478bd9Sstevel@tonic-gate 	/*
9777c478bd9Sstevel@tonic-gate 	 * Update the module list using /system/object and load the values for
9787c478bd9Sstevel@tonic-gate 	 * the macro variable definitions according to the current process.
9797c478bd9Sstevel@tonic-gate 	 */
9807c478bd9Sstevel@tonic-gate 	dtrace_update(dtp);
9817c478bd9Sstevel@tonic-gate 
9827c478bd9Sstevel@tonic-gate 	/*
9837c478bd9Sstevel@tonic-gate 	 * Select the intrinsics and typedefs we want based on the data model.
9847c478bd9Sstevel@tonic-gate 	 * The intrinsics are under "C".  The typedefs are added under "D".
9857c478bd9Sstevel@tonic-gate 	 */
9867c478bd9Sstevel@tonic-gate 	if (dtp->dt_conf.dtc_ctfmodel == CTF_MODEL_ILP32) {
9877c478bd9Sstevel@tonic-gate 		dinp = _dtrace_intrinsics_32;
9887c478bd9Sstevel@tonic-gate 		dtyp = _dtrace_typedefs_32;
9897c478bd9Sstevel@tonic-gate 	} else {
9907c478bd9Sstevel@tonic-gate 		dinp = _dtrace_intrinsics_64;
9917c478bd9Sstevel@tonic-gate 		dtyp = _dtrace_typedefs_64;
9927c478bd9Sstevel@tonic-gate 	}
9937c478bd9Sstevel@tonic-gate 
9947c478bd9Sstevel@tonic-gate 	/*
9957c478bd9Sstevel@tonic-gate 	 * Create a dynamic CTF container under the "C" scope for intrinsic
9967c478bd9Sstevel@tonic-gate 	 * types and types defined in ANSI-C header files that are included.
9977c478bd9Sstevel@tonic-gate 	 */
9987c478bd9Sstevel@tonic-gate 	if ((dmp = dtp->dt_cdefs = dt_module_create(dtp, "C")) == NULL)
9997c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
10007c478bd9Sstevel@tonic-gate 
10017c478bd9Sstevel@tonic-gate 	if ((dmp->dm_ctfp = ctf_create(&dtp->dt_ctferr)) == NULL)
10027c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_CTF));
10037c478bd9Sstevel@tonic-gate 
10047c478bd9Sstevel@tonic-gate 	dt_dprintf("created CTF container for %s (%p)\n",
10057c478bd9Sstevel@tonic-gate 	    dmp->dm_name, (void *)dmp->dm_ctfp);
10067c478bd9Sstevel@tonic-gate 
10077c478bd9Sstevel@tonic-gate 	(void) ctf_setmodel(dmp->dm_ctfp, dtp->dt_conf.dtc_ctfmodel);
10087c478bd9Sstevel@tonic-gate 	ctf_setspecific(dmp->dm_ctfp, dmp);
10097c478bd9Sstevel@tonic-gate 
10107c478bd9Sstevel@tonic-gate 	dmp->dm_flags = DT_DM_LOADED; /* fake up loaded bit */
10117c478bd9Sstevel@tonic-gate 	dmp->dm_modid = -1; /* no module ID */
10127c478bd9Sstevel@tonic-gate 
10137c478bd9Sstevel@tonic-gate 	/*
10147c478bd9Sstevel@tonic-gate 	 * Fill the dynamic "C" CTF container with all of the intrinsic
10157c478bd9Sstevel@tonic-gate 	 * integer and floating-point types appropriate for this data model.
10167c478bd9Sstevel@tonic-gate 	 */
10177c478bd9Sstevel@tonic-gate 	for (; dinp->din_name != NULL; dinp++) {
10187c478bd9Sstevel@tonic-gate 		if (dinp->din_kind == CTF_K_INTEGER) {
10197c478bd9Sstevel@tonic-gate 			err = ctf_add_integer(dmp->dm_ctfp, CTF_ADD_ROOT,
10207c478bd9Sstevel@tonic-gate 			    dinp->din_name, &dinp->din_data);
10217c478bd9Sstevel@tonic-gate 		} else {
10227c478bd9Sstevel@tonic-gate 			err = ctf_add_float(dmp->dm_ctfp, CTF_ADD_ROOT,
10237c478bd9Sstevel@tonic-gate 			    dinp->din_name, &dinp->din_data);
10247c478bd9Sstevel@tonic-gate 		}
10257c478bd9Sstevel@tonic-gate 
10267c478bd9Sstevel@tonic-gate 		if (err == CTF_ERR) {
10277c478bd9Sstevel@tonic-gate 			dt_dprintf("failed to add %s to C container: %s\n",
10287c478bd9Sstevel@tonic-gate 			    dinp->din_name, ctf_errmsg(
10297c478bd9Sstevel@tonic-gate 			    ctf_errno(dmp->dm_ctfp)));
10307c478bd9Sstevel@tonic-gate 			return (set_open_errno(dtp, errp, EDT_CTF));
10317c478bd9Sstevel@tonic-gate 		}
10327c478bd9Sstevel@tonic-gate 	}
10337c478bd9Sstevel@tonic-gate 
10347c478bd9Sstevel@tonic-gate 	if (ctf_update(dmp->dm_ctfp) != 0) {
10357c478bd9Sstevel@tonic-gate 		dt_dprintf("failed to update C container: %s\n",
10367c478bd9Sstevel@tonic-gate 		    ctf_errmsg(ctf_errno(dmp->dm_ctfp)));
10377c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_CTF));
10387c478bd9Sstevel@tonic-gate 	}
10397c478bd9Sstevel@tonic-gate 
10407c478bd9Sstevel@tonic-gate 	/*
10417c478bd9Sstevel@tonic-gate 	 * Add intrinsic pointer types that are needed to initialize printf
10427c478bd9Sstevel@tonic-gate 	 * format dictionary types (see table in dt_printf.c).
10437c478bd9Sstevel@tonic-gate 	 */
10447c478bd9Sstevel@tonic-gate 	(void) ctf_add_pointer(dmp->dm_ctfp, CTF_ADD_ROOT,
10457c478bd9Sstevel@tonic-gate 	    ctf_lookup_by_name(dmp->dm_ctfp, "void"));
10467c478bd9Sstevel@tonic-gate 
10477c478bd9Sstevel@tonic-gate 	(void) ctf_add_pointer(dmp->dm_ctfp, CTF_ADD_ROOT,
10487c478bd9Sstevel@tonic-gate 	    ctf_lookup_by_name(dmp->dm_ctfp, "char"));
10497c478bd9Sstevel@tonic-gate 
10507c478bd9Sstevel@tonic-gate 	(void) ctf_add_pointer(dmp->dm_ctfp, CTF_ADD_ROOT,
10517c478bd9Sstevel@tonic-gate 	    ctf_lookup_by_name(dmp->dm_ctfp, "int"));
10527c478bd9Sstevel@tonic-gate 
10537c478bd9Sstevel@tonic-gate 	if (ctf_update(dmp->dm_ctfp) != 0) {
10547c478bd9Sstevel@tonic-gate 		dt_dprintf("failed to update C container: %s\n",
10557c478bd9Sstevel@tonic-gate 		    ctf_errmsg(ctf_errno(dmp->dm_ctfp)));
10567c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_CTF));
10577c478bd9Sstevel@tonic-gate 	}
10587c478bd9Sstevel@tonic-gate 
10597c478bd9Sstevel@tonic-gate 	/*
10607c478bd9Sstevel@tonic-gate 	 * Create a dynamic CTF container under the "D" scope for types that
10617c478bd9Sstevel@tonic-gate 	 * are defined by the D program itself or on-the-fly by the D compiler.
10627c478bd9Sstevel@tonic-gate 	 * The "D" CTF container is a child of the "C" CTF container.
10637c478bd9Sstevel@tonic-gate 	 */
10647c478bd9Sstevel@tonic-gate 	if ((dmp = dtp->dt_ddefs = dt_module_create(dtp, "D")) == NULL)
10657c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_NOMEM));
10667c478bd9Sstevel@tonic-gate 
10677c478bd9Sstevel@tonic-gate 	if ((dmp->dm_ctfp = ctf_create(&dtp->dt_ctferr)) == NULL)
10687c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_CTF));
10697c478bd9Sstevel@tonic-gate 
10707c478bd9Sstevel@tonic-gate 	dt_dprintf("created CTF container for %s (%p)\n",
10717c478bd9Sstevel@tonic-gate 	    dmp->dm_name, (void *)dmp->dm_ctfp);
10727c478bd9Sstevel@tonic-gate 
10737c478bd9Sstevel@tonic-gate 	(void) ctf_setmodel(dmp->dm_ctfp, dtp->dt_conf.dtc_ctfmodel);
10747c478bd9Sstevel@tonic-gate 	ctf_setspecific(dmp->dm_ctfp, dmp);
10757c478bd9Sstevel@tonic-gate 
10767c478bd9Sstevel@tonic-gate 	dmp->dm_flags = DT_DM_LOADED; /* fake up loaded bit */
10777c478bd9Sstevel@tonic-gate 	dmp->dm_modid = -1; /* no module ID */
10787c478bd9Sstevel@tonic-gate 
10797c478bd9Sstevel@tonic-gate 	if (ctf_import(dmp->dm_ctfp, dtp->dt_cdefs->dm_ctfp) == CTF_ERR) {
10807c478bd9Sstevel@tonic-gate 		dt_dprintf("failed to import D parent container: %s\n",
10817c478bd9Sstevel@tonic-gate 		    ctf_errmsg(ctf_errno(dmp->dm_ctfp)));
10827c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_CTF));
10837c478bd9Sstevel@tonic-gate 	}
10847c478bd9Sstevel@tonic-gate 
10857c478bd9Sstevel@tonic-gate 	/*
10867c478bd9Sstevel@tonic-gate 	 * Fill the dynamic "D" CTF container with all of the built-in typedefs
10877c478bd9Sstevel@tonic-gate 	 * that we need to use for our D variable and function definitions.
10887c478bd9Sstevel@tonic-gate 	 * This ensures that basic inttypes.h names are always available to us.
10897c478bd9Sstevel@tonic-gate 	 */
10907c478bd9Sstevel@tonic-gate 	for (; dtyp->dty_src != NULL; dtyp++) {
10917c478bd9Sstevel@tonic-gate 		if (ctf_add_typedef(dmp->dm_ctfp, CTF_ADD_ROOT,
10927c478bd9Sstevel@tonic-gate 		    dtyp->dty_dst, ctf_lookup_by_name(dmp->dm_ctfp,
10937c478bd9Sstevel@tonic-gate 		    dtyp->dty_src)) == CTF_ERR) {
10947c478bd9Sstevel@tonic-gate 			dt_dprintf("failed to add typedef %s %s to D "
10957c478bd9Sstevel@tonic-gate 			    "container: %s", dtyp->dty_src, dtyp->dty_dst,
10967c478bd9Sstevel@tonic-gate 			    ctf_errmsg(ctf_errno(dmp->dm_ctfp)));
10977c478bd9Sstevel@tonic-gate 			return (set_open_errno(dtp, errp, EDT_CTF));
10987c478bd9Sstevel@tonic-gate 		}
10997c478bd9Sstevel@tonic-gate 	}
11007c478bd9Sstevel@tonic-gate 
11017c478bd9Sstevel@tonic-gate 	/*
11027c478bd9Sstevel@tonic-gate 	 * Insert a CTF ID corresponding to a pointer to a type of kind
11037c478bd9Sstevel@tonic-gate 	 * CTF_K_FUNCTION we can use in the compiler for function pointers.
11047c478bd9Sstevel@tonic-gate 	 * CTF treats all function pointers as "int (*)()" so we only need one.
11057c478bd9Sstevel@tonic-gate 	 */
11067c478bd9Sstevel@tonic-gate 	ctc.ctc_return = ctf_lookup_by_name(dmp->dm_ctfp, "int");
11077c478bd9Sstevel@tonic-gate 	ctc.ctc_argc = 0;
11087c478bd9Sstevel@tonic-gate 	ctc.ctc_flags = 0;
11097c478bd9Sstevel@tonic-gate 
11107c478bd9Sstevel@tonic-gate 	dtp->dt_type_func = ctf_add_function(dmp->dm_ctfp,
11117c478bd9Sstevel@tonic-gate 	    CTF_ADD_ROOT, &ctc, NULL);
11127c478bd9Sstevel@tonic-gate 
11137c478bd9Sstevel@tonic-gate 	dtp->dt_type_fptr = ctf_add_pointer(dmp->dm_ctfp,
11147c478bd9Sstevel@tonic-gate 	    CTF_ADD_ROOT, dtp->dt_type_func);
11157c478bd9Sstevel@tonic-gate 
11167c478bd9Sstevel@tonic-gate 	/*
11177c478bd9Sstevel@tonic-gate 	 * We also insert CTF definitions for the special D intrinsic types
11187c478bd9Sstevel@tonic-gate 	 * string and <DYN> into the D container.  The string type is added
11197c478bd9Sstevel@tonic-gate 	 * as a typedef of char[n].  The <DYN> type is an alias for void.
11207c478bd9Sstevel@tonic-gate 	 * We compare types to these special CTF ids throughout the compiler.
11217c478bd9Sstevel@tonic-gate 	 */
11227c478bd9Sstevel@tonic-gate 	ctr.ctr_contents = ctf_lookup_by_name(dmp->dm_ctfp, "char");
11237c478bd9Sstevel@tonic-gate 	ctr.ctr_index = ctf_lookup_by_name(dmp->dm_ctfp, "long");
11247c478bd9Sstevel@tonic-gate 	ctr.ctr_nelems = _dtrace_strsize;
11257c478bd9Sstevel@tonic-gate 
11267c478bd9Sstevel@tonic-gate 	dtp->dt_type_str = ctf_add_typedef(dmp->dm_ctfp, CTF_ADD_ROOT,
11277c478bd9Sstevel@tonic-gate 	    "string", ctf_add_array(dmp->dm_ctfp, CTF_ADD_ROOT, &ctr));
11287c478bd9Sstevel@tonic-gate 
11297c478bd9Sstevel@tonic-gate 	dtp->dt_type_dyn = ctf_add_typedef(dmp->dm_ctfp, CTF_ADD_ROOT,
11307c478bd9Sstevel@tonic-gate 	    "<DYN>", ctf_lookup_by_name(dmp->dm_ctfp, "void"));
11317c478bd9Sstevel@tonic-gate 
11327c478bd9Sstevel@tonic-gate 	dtp->dt_type_stack = ctf_add_typedef(dmp->dm_ctfp, CTF_ADD_ROOT,
11337c478bd9Sstevel@tonic-gate 	    "stack", ctf_lookup_by_name(dmp->dm_ctfp, "void"));
11347c478bd9Sstevel@tonic-gate 
1135*a1b5e537Sbmc 	dtp->dt_type_symaddr = ctf_add_typedef(dmp->dm_ctfp, CTF_ADD_ROOT,
1136*a1b5e537Sbmc 	    "_symaddr", ctf_lookup_by_name(dmp->dm_ctfp, "void"));
1137*a1b5e537Sbmc 
1138*a1b5e537Sbmc 	dtp->dt_type_usymaddr = ctf_add_typedef(dmp->dm_ctfp, CTF_ADD_ROOT,
1139*a1b5e537Sbmc 	    "_usymaddr", ctf_lookup_by_name(dmp->dm_ctfp, "void"));
1140*a1b5e537Sbmc 
11417c478bd9Sstevel@tonic-gate 	if (dtp->dt_type_func == CTF_ERR || dtp->dt_type_fptr == CTF_ERR ||
11427c478bd9Sstevel@tonic-gate 	    dtp->dt_type_str == CTF_ERR || dtp->dt_type_dyn == CTF_ERR ||
1143*a1b5e537Sbmc 	    dtp->dt_type_stack == CTF_ERR || dtp->dt_type_symaddr == CTF_ERR ||
1144*a1b5e537Sbmc 	    dtp->dt_type_usymaddr == CTF_ERR) {
11457c478bd9Sstevel@tonic-gate 		dt_dprintf("failed to add intrinsic to D container: %s\n",
11467c478bd9Sstevel@tonic-gate 		    ctf_errmsg(ctf_errno(dmp->dm_ctfp)));
11477c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_CTF));
11487c478bd9Sstevel@tonic-gate 	}
11497c478bd9Sstevel@tonic-gate 
11507c478bd9Sstevel@tonic-gate 	if (ctf_update(dmp->dm_ctfp) != 0) {
11517c478bd9Sstevel@tonic-gate 		dt_dprintf("failed update D container: %s\n",
11527c478bd9Sstevel@tonic-gate 		    ctf_errmsg(ctf_errno(dmp->dm_ctfp)));
11537c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_CTF));
11547c478bd9Sstevel@tonic-gate 	}
11557c478bd9Sstevel@tonic-gate 
11567c478bd9Sstevel@tonic-gate 	/*
11577c478bd9Sstevel@tonic-gate 	 * Initialize the integer description table used to convert integer
11587c478bd9Sstevel@tonic-gate 	 * constants to the appropriate types.  Refer to the comments above
11597c478bd9Sstevel@tonic-gate 	 * dt_node_int() for a complete description of how this table is used.
11607c478bd9Sstevel@tonic-gate 	 */
11617c478bd9Sstevel@tonic-gate 	for (i = 0; i < sizeof (dtp->dt_ints) / sizeof (dtp->dt_ints[0]); i++) {
11627c478bd9Sstevel@tonic-gate 		if (dtrace_lookup_by_type(dtp, DTRACE_OBJ_EVERY,
11637c478bd9Sstevel@tonic-gate 		    dtp->dt_ints[i].did_name, &dtt) != 0) {
11647c478bd9Sstevel@tonic-gate 			dt_dprintf("failed to lookup integer type %s: %s\n",
11657c478bd9Sstevel@tonic-gate 			    dtp->dt_ints[i].did_name,
11667c478bd9Sstevel@tonic-gate 			    dtrace_errmsg(dtp, dtrace_errno(dtp)));
11677c478bd9Sstevel@tonic-gate 			return (set_open_errno(dtp, errp, dtp->dt_errno));
11687c478bd9Sstevel@tonic-gate 		}
11697c478bd9Sstevel@tonic-gate 		dtp->dt_ints[i].did_ctfp = dtt.dtt_ctfp;
11707c478bd9Sstevel@tonic-gate 		dtp->dt_ints[i].did_type = dtt.dtt_type;
11717c478bd9Sstevel@tonic-gate 	}
11727c478bd9Sstevel@tonic-gate 
11737c478bd9Sstevel@tonic-gate 	/*
11747c478bd9Sstevel@tonic-gate 	 * Now that we've created the "C" and "D" containers, move them to the
11757c478bd9Sstevel@tonic-gate 	 * start of the module list so that these types and symbols are found
11767c478bd9Sstevel@tonic-gate 	 * first (for stability) when iterating through the module list.
11777c478bd9Sstevel@tonic-gate 	 */
11787c478bd9Sstevel@tonic-gate 	dt_list_delete(&dtp->dt_modlist, dtp->dt_ddefs);
11797c478bd9Sstevel@tonic-gate 	dt_list_prepend(&dtp->dt_modlist, dtp->dt_ddefs);
11807c478bd9Sstevel@tonic-gate 
11817c478bd9Sstevel@tonic-gate 	dt_list_delete(&dtp->dt_modlist, dtp->dt_cdefs);
11827c478bd9Sstevel@tonic-gate 	dt_list_prepend(&dtp->dt_modlist, dtp->dt_cdefs);
11837c478bd9Sstevel@tonic-gate 
11847c478bd9Sstevel@tonic-gate 	if (dt_pfdict_create(dtp) == -1)
11857c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, dtp->dt_errno));
11867c478bd9Sstevel@tonic-gate 
11877c478bd9Sstevel@tonic-gate 	/*
11887c478bd9Sstevel@tonic-gate 	 * If we are opening libdtrace DTRACE_O_NODEV enable C_ZDEFS by default
11897c478bd9Sstevel@tonic-gate 	 * because without /dev/dtrace open, we will not be able to load the
11907c478bd9Sstevel@tonic-gate 	 * names and attributes of any providers or probes from the kernel.
11917c478bd9Sstevel@tonic-gate 	 */
11927c478bd9Sstevel@tonic-gate 	if (flags & DTRACE_O_NODEV)
11937c478bd9Sstevel@tonic-gate 		dtp->dt_cflags |= DTRACE_C_ZDEFS;
11947c478bd9Sstevel@tonic-gate 
11957c478bd9Sstevel@tonic-gate 	/*
11967c478bd9Sstevel@tonic-gate 	 * Load hard-wired inlines into the definition cache by calling the
11977c478bd9Sstevel@tonic-gate 	 * compiler on the raw definition string defined above.
11987c478bd9Sstevel@tonic-gate 	 */
11997c478bd9Sstevel@tonic-gate 	if ((pgp = dtrace_program_strcompile(dtp, _dtrace_hardwire,
12007c478bd9Sstevel@tonic-gate 	    DTRACE_PROBESPEC_NONE, DTRACE_C_EMPTY, 0, NULL)) == NULL) {
12017c478bd9Sstevel@tonic-gate 		dt_dprintf("failed to load hard-wired definitions: %s\n",
12027c478bd9Sstevel@tonic-gate 		    dtrace_errmsg(dtp, dtrace_errno(dtp)));
12037c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, EDT_HARDWIRE));
12047c478bd9Sstevel@tonic-gate 	}
12057c478bd9Sstevel@tonic-gate 
12061a7c1b72Smws 	dt_program_destroy(dtp, pgp);
12077c478bd9Sstevel@tonic-gate 
12087c478bd9Sstevel@tonic-gate 	/*
12097c478bd9Sstevel@tonic-gate 	 * Set up the default DTrace library path.  Once set, the next call to
12107c478bd9Sstevel@tonic-gate 	 * dt_compile() will compile all the libraries.  We intentionally defer
12117c478bd9Sstevel@tonic-gate 	 * library processing to improve overhead for clients that don't ever
12127c478bd9Sstevel@tonic-gate 	 * compile, and to provide better error reporting (because the full
12137c478bd9Sstevel@tonic-gate 	 * reporting of compiler errors requires dtrace_open() to succeed).
12147c478bd9Sstevel@tonic-gate 	 */
12157c478bd9Sstevel@tonic-gate 	if (dtrace_setopt(dtp, "libdir", _dtrace_libdir) != 0)
12167c478bd9Sstevel@tonic-gate 		return (set_open_errno(dtp, errp, dtp->dt_errno));
12177c478bd9Sstevel@tonic-gate 
12187c478bd9Sstevel@tonic-gate 	return (dtp);
12197c478bd9Sstevel@tonic-gate }
12207c478bd9Sstevel@tonic-gate 
12217c478bd9Sstevel@tonic-gate dtrace_hdl_t *
12227c478bd9Sstevel@tonic-gate dtrace_open(int version, int flags, int *errp)
12237c478bd9Sstevel@tonic-gate {
12247c478bd9Sstevel@tonic-gate 	return (dt_vopen(version, flags, errp, NULL, NULL));
12257c478bd9Sstevel@tonic-gate }
12267c478bd9Sstevel@tonic-gate 
12277c478bd9Sstevel@tonic-gate dtrace_hdl_t *
12287c478bd9Sstevel@tonic-gate dtrace_vopen(int version, int flags, int *errp,
12297c478bd9Sstevel@tonic-gate     const dtrace_vector_t *vector, void *arg)
12307c478bd9Sstevel@tonic-gate {
12317c478bd9Sstevel@tonic-gate 	return (dt_vopen(version, flags, errp, vector, arg));
12327c478bd9Sstevel@tonic-gate }
12337c478bd9Sstevel@tonic-gate 
12347c478bd9Sstevel@tonic-gate void
12357c478bd9Sstevel@tonic-gate dtrace_close(dtrace_hdl_t *dtp)
12367c478bd9Sstevel@tonic-gate {
12377c478bd9Sstevel@tonic-gate 	dt_ident_t *idp, *ndp;
12387c478bd9Sstevel@tonic-gate 	dt_module_t *dmp;
12397c478bd9Sstevel@tonic-gate 	dt_provider_t *pvp;
12407c478bd9Sstevel@tonic-gate 	dtrace_prog_t *pgp;
12417c478bd9Sstevel@tonic-gate 	dt_xlator_t *dxp;
12427c478bd9Sstevel@tonic-gate 	dt_dirpath_t *dirp;
12437c478bd9Sstevel@tonic-gate 	int i;
12447c478bd9Sstevel@tonic-gate 
12457c478bd9Sstevel@tonic-gate 	while ((pgp = dt_list_next(&dtp->dt_programs)) != NULL)
12461a7c1b72Smws 		dt_program_destroy(dtp, pgp);
12477c478bd9Sstevel@tonic-gate 
12487c478bd9Sstevel@tonic-gate 	while ((dxp = dt_list_next(&dtp->dt_xlators)) != NULL)
12497c478bd9Sstevel@tonic-gate 		dt_xlator_destroy(dtp, dxp);
12507c478bd9Sstevel@tonic-gate 
12511a7c1b72Smws 	dt_free(dtp, dtp->dt_xlatormap);
12521a7c1b72Smws 
12537c478bd9Sstevel@tonic-gate 	for (idp = dtp->dt_externs; idp != NULL; idp = ndp) {
12547c478bd9Sstevel@tonic-gate 		ndp = idp->di_next;
12557c478bd9Sstevel@tonic-gate 		dt_ident_destroy(idp);
12567c478bd9Sstevel@tonic-gate 	}
12577c478bd9Sstevel@tonic-gate 
12587c478bd9Sstevel@tonic-gate 	if (dtp->dt_macros != NULL)
12597c478bd9Sstevel@tonic-gate 		dt_idhash_destroy(dtp->dt_macros);
12607c478bd9Sstevel@tonic-gate 	if (dtp->dt_aggs != NULL)
12617c478bd9Sstevel@tonic-gate 		dt_idhash_destroy(dtp->dt_aggs);
12627c478bd9Sstevel@tonic-gate 	if (dtp->dt_globals != NULL)
12637c478bd9Sstevel@tonic-gate 		dt_idhash_destroy(dtp->dt_globals);
12647c478bd9Sstevel@tonic-gate 	if (dtp->dt_tls != NULL)
12657c478bd9Sstevel@tonic-gate 		dt_idhash_destroy(dtp->dt_tls);
12667c478bd9Sstevel@tonic-gate 
12677c478bd9Sstevel@tonic-gate 	while ((dmp = dt_list_next(&dtp->dt_modlist)) != NULL)
12687c478bd9Sstevel@tonic-gate 		dt_module_destroy(dtp, dmp);
12697c478bd9Sstevel@tonic-gate 
12707c478bd9Sstevel@tonic-gate 	while ((pvp = dt_list_next(&dtp->dt_provlist)) != NULL)
12717c478bd9Sstevel@tonic-gate 		dt_provider_destroy(dtp, pvp);
12727c478bd9Sstevel@tonic-gate 
12737c478bd9Sstevel@tonic-gate 	if (dtp->dt_procs != NULL)
12747c478bd9Sstevel@tonic-gate 		dt_proc_hash_destroy(dtp);
12757c478bd9Sstevel@tonic-gate 
12767c478bd9Sstevel@tonic-gate 	if (dtp->dt_fd != -1)
12777c478bd9Sstevel@tonic-gate 		(void) close(dtp->dt_fd);
12787c478bd9Sstevel@tonic-gate 	if (dtp->dt_ftfd != -1)
12797c478bd9Sstevel@tonic-gate 		(void) close(dtp->dt_ftfd);
12807c478bd9Sstevel@tonic-gate 	if (dtp->dt_cdefs_fd != -1)
12817c478bd9Sstevel@tonic-gate 		(void) close(dtp->dt_cdefs_fd);
12827c478bd9Sstevel@tonic-gate 	if (dtp->dt_ddefs_fd != -1)
12837c478bd9Sstevel@tonic-gate 		(void) close(dtp->dt_ddefs_fd);
12847c478bd9Sstevel@tonic-gate 	if (dtp->dt_stdout_fd != -1)
12857c478bd9Sstevel@tonic-gate 		(void) close(dtp->dt_stdout_fd);
12867c478bd9Sstevel@tonic-gate 
12877c478bd9Sstevel@tonic-gate 	dt_epid_destroy(dtp);
12887c478bd9Sstevel@tonic-gate 	dt_aggid_destroy(dtp);
12897c478bd9Sstevel@tonic-gate 	dt_format_destroy(dtp);
12907c478bd9Sstevel@tonic-gate 	dt_buffered_destroy(dtp);
12917c478bd9Sstevel@tonic-gate 	dt_aggregate_destroy(dtp);
12927c478bd9Sstevel@tonic-gate 	free(dtp->dt_buf.dtbd_data);
12937c478bd9Sstevel@tonic-gate 	dt_pfdict_destroy(dtp);
12947c478bd9Sstevel@tonic-gate 	dt_provmod_destroy(&dtp->dt_provmod);
12957c478bd9Sstevel@tonic-gate 	dt_dof_fini(dtp);
12967c478bd9Sstevel@tonic-gate 
12977c478bd9Sstevel@tonic-gate 	for (i = 1; i < dtp->dt_cpp_argc; i++)
12987c478bd9Sstevel@tonic-gate 		free(dtp->dt_cpp_argv[i]);
12997c478bd9Sstevel@tonic-gate 
13007c478bd9Sstevel@tonic-gate 	while ((dirp = dt_list_next(&dtp->dt_lib_path)) != NULL) {
13017c478bd9Sstevel@tonic-gate 		dt_list_delete(&dtp->dt_lib_path, dirp);
13027c478bd9Sstevel@tonic-gate 		free(dirp->dir_path);
13037c478bd9Sstevel@tonic-gate 		free(dirp);
13047c478bd9Sstevel@tonic-gate 	}
13057c478bd9Sstevel@tonic-gate 
13067c478bd9Sstevel@tonic-gate 	free(dtp->dt_cpp_argv);
13077c478bd9Sstevel@tonic-gate 	free(dtp->dt_cpp_path);
13087c478bd9Sstevel@tonic-gate 	free(dtp->dt_ld_path);
13097c478bd9Sstevel@tonic-gate 
13107c478bd9Sstevel@tonic-gate 	free(dtp->dt_mods);
13117c478bd9Sstevel@tonic-gate 	free(dtp->dt_provs);
13127c478bd9Sstevel@tonic-gate 	free(dtp);
13137c478bd9Sstevel@tonic-gate }
13147c478bd9Sstevel@tonic-gate 
13157c478bd9Sstevel@tonic-gate int
13167c478bd9Sstevel@tonic-gate dtrace_provider_modules(dtrace_hdl_t *dtp, const char **mods, int nmods)
13177c478bd9Sstevel@tonic-gate {
13187c478bd9Sstevel@tonic-gate 	dt_provmod_t *prov;
13197c478bd9Sstevel@tonic-gate 	int i = 0;
13207c478bd9Sstevel@tonic-gate 
13217c478bd9Sstevel@tonic-gate 	for (prov = dtp->dt_provmod; prov != NULL; prov = prov->dp_next, i++) {
13227c478bd9Sstevel@tonic-gate 		if (i < nmods)
13237c478bd9Sstevel@tonic-gate 			mods[i] = prov->dp_name;
13247c478bd9Sstevel@tonic-gate 	}
13257c478bd9Sstevel@tonic-gate 
13267c478bd9Sstevel@tonic-gate 	return (i);
13277c478bd9Sstevel@tonic-gate }
13287c478bd9Sstevel@tonic-gate 
13297c478bd9Sstevel@tonic-gate int
13307c478bd9Sstevel@tonic-gate dtrace_ctlfd(dtrace_hdl_t *dtp)
13317c478bd9Sstevel@tonic-gate {
13327c478bd9Sstevel@tonic-gate 	return (dtp->dt_fd);
13337c478bd9Sstevel@tonic-gate }
1334