xref: /titanic_44/usr/src/uts/common/sys/sdt_impl.h (revision b0f673c4626e4cb1db7785287eaeed2731dfefe8)
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 2004 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
27*b0f673c4SBryan Cantrill /*
28*b0f673c4SBryan Cantrill  * Copyright (c) 2012, Joyent, Inc. All rights reserved.
29*b0f673c4SBryan Cantrill  */
30*b0f673c4SBryan Cantrill 
317c478bd9Sstevel@tonic-gate #ifndef _SYS_SDT_IMPL_H
327c478bd9Sstevel@tonic-gate #define	_SYS_SDT_IMPL_H
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
357c478bd9Sstevel@tonic-gate extern "C" {
367c478bd9Sstevel@tonic-gate #endif
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate #include <sys/dtrace.h>
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate #if defined(__i386) || defined(__amd64)
417c478bd9Sstevel@tonic-gate typedef uint8_t sdt_instr_t;
427c478bd9Sstevel@tonic-gate #else
437c478bd9Sstevel@tonic-gate typedef uint32_t sdt_instr_t;
447c478bd9Sstevel@tonic-gate #endif
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate typedef struct sdt_provider {
477c478bd9Sstevel@tonic-gate 	char			*sdtp_name;	/* name of provider */
487c478bd9Sstevel@tonic-gate 	char			*sdtp_prefix;	/* prefix for probe names */
497c478bd9Sstevel@tonic-gate 	dtrace_pattr_t		*sdtp_attr;	/* stability attributes */
50*b0f673c4SBryan Cantrill 	uint32_t		sdtp_priv;	/* privilege, if any */
517c478bd9Sstevel@tonic-gate 	dtrace_provider_id_t	sdtp_id;	/* provider ID */
527c478bd9Sstevel@tonic-gate } sdt_provider_t;
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate extern sdt_provider_t sdt_providers[];		/* array of providers */
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate typedef struct sdt_probe {
577c478bd9Sstevel@tonic-gate 	sdt_provider_t	*sdp_provider;		/* provider */
587c478bd9Sstevel@tonic-gate 	char		*sdp_name;		/* name of probe */
597c478bd9Sstevel@tonic-gate 	int		sdp_namelen;		/* length of allocated name */
607c478bd9Sstevel@tonic-gate 	dtrace_id_t	sdp_id;			/* probe ID */
617c478bd9Sstevel@tonic-gate 	struct modctl	*sdp_ctl;		/* modctl for module */
627c478bd9Sstevel@tonic-gate 	int		sdp_loadcnt;		/* load count for module */
637c478bd9Sstevel@tonic-gate 	int		sdp_primary;		/* non-zero if primary mod */
647c478bd9Sstevel@tonic-gate 	sdt_instr_t	*sdp_patchpoint;	/* patch point */
657c478bd9Sstevel@tonic-gate 	sdt_instr_t	sdp_patchval;		/* instruction to patch */
667c478bd9Sstevel@tonic-gate 	sdt_instr_t	sdp_savedval;		/* saved instruction value */
677c478bd9Sstevel@tonic-gate 	struct sdt_probe *sdp_next;		/* next probe */
687c478bd9Sstevel@tonic-gate 	struct sdt_probe *sdp_hashnext;		/* next on hash */
697c478bd9Sstevel@tonic-gate } sdt_probe_t;
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate typedef struct sdt_argdesc {
727c478bd9Sstevel@tonic-gate 	const char *sda_provider;		/* provider for arg */
737c478bd9Sstevel@tonic-gate 	const char *sda_name;			/* name of probe */
747c478bd9Sstevel@tonic-gate 	const int sda_ndx;			/* argument index */
757c478bd9Sstevel@tonic-gate 	const int sda_mapping;			/* mapping of argument */
767c478bd9Sstevel@tonic-gate 	const char *sda_native;			/* native type of argument */
777c478bd9Sstevel@tonic-gate 	const char *sda_xlate;			/* translated type of arg */
787c478bd9Sstevel@tonic-gate } sdt_argdesc_t;
797c478bd9Sstevel@tonic-gate 
807c478bd9Sstevel@tonic-gate extern void sdt_getargdesc(void *, dtrace_id_t, void *, dtrace_argdesc_t *);
81*b0f673c4SBryan Cantrill extern int sdt_mode(void *, dtrace_id_t, void *);
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
847c478bd9Sstevel@tonic-gate }
857c478bd9Sstevel@tonic-gate #endif
867c478bd9Sstevel@tonic-gate 
877c478bd9Sstevel@tonic-gate #endif	/* _SYS_SDT_IMPL_H */
88