xref: /illumos-gate/usr/src/uts/common/sys/fasttrap_impl.h (revision 524e558aae3e99de2bdab73592f925ea489fbe07)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef	_FASTTRAP_IMPL_H
28 #define	_FASTTRAP_IMPL_H
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 #include <sys/types.h>
33 #include <sys/dtrace.h>
34 #include <sys/proc.h>
35 #include <sys/fasttrap.h>
36 #include <sys/fasttrap_isa.h>
37 
38 #ifdef	__cplusplus
39 extern "C" {
40 #endif
41 
42 /*
43  * Fasttrap Providers, Probes and Tracepoints
44  *
45  * Each Solaris process can have multiple providers -- the pid provider as
46  * well as any number of user-level statically defined tracing (USDT)
47  * providers. Those providers are each represented by a fasttrap_provider_t.
48  * All providers for a given process have a pointer to a shared
49  * fasttrap_proc_t. The fasttrap_proc_t has two states: active or defunct.
50  * It becomes defunct when the process performs an exit or an exec.
51  *
52  * Each probe is represented by a fasttrap_probe_t which has a pointer to
53  * its associated provider as well as a list of fasttrap_id_tp_t structures
54  * which are tuples combining a fasttrap_id_t and a fasttrap_tracepoint_t.
55  * A fasttrap_tracepoint_t represents the actual point of instrumentation
56  * and it contains two lists of fasttrap_id_t structures (to be fired pre-
57  * and post-instruction emulation) that identify the probes attached to the
58  * tracepoint. Tracepoints also have a pointer to the fasttrap_proc_t for the
59  * process they trace which is used when looking up a tracepoint both at
60  * probe fire time and when enabling and disabling probes.
61  *
62  * It's important to note that probes are preallocated with the necessary
63  * number of tracepoints, but that tracepoints can be shared by probes and
64  * swapped between probes. If a probe's preallocated tracepoint is enabled
65  * (and, therefore, the associated probe is enabled), and that probe is
66  * then disabled, ownership of that tracepoint may be exchanged for an
67  * unused tracepoint belonging to another probe that was attached to the
68  * enabled tracepoint.
69  */
70 
71 typedef struct fasttrap_proc {
72 	pid_t ftpc_pid;				/* process ID for this proc */
73 	uint_t ftpc_defunct;			/* denotes a lame duck proc */
74 	uint64_t ftpc_count;			/* reference count */
75 	kmutex_t ftpc_mtx;			/* proc lock */
76 	struct fasttrap_proc *ftpc_next;	/* next proc in hash chain */
77 } fasttrap_proc_t;
78 
79 typedef struct fasttrap_provider {
80 	pid_t ftp_pid;				/* process ID for this prov */
81 	char ftp_name[DTRACE_PROVNAMELEN];	/* prov name (w/o the pid) */
82 	dtrace_provider_id_t ftp_provid;	/* DTrace provider handle */
83 	uint_t ftp_marked;			/* mark for possible removal */
84 	uint_t ftp_retired;			/* mark when retired */
85 	kmutex_t ftp_mtx;			/* provider lock */
86 	uint64_t ftp_rcount;			/* enabled probes ref count */
87 	uint64_t ftp_ccount;			/* consumers creating probes */
88 	uint64_t ftp_mcount;			/* meta provider count */
89 	fasttrap_proc_t *ftp_proc;		/* shared proc for all provs */
90 	struct fasttrap_provider *ftp_next;	/* next prov in hash chain */
91 } fasttrap_provider_t;
92 
93 typedef struct fasttrap_id fasttrap_id_t;
94 typedef struct fasttrap_probe fasttrap_probe_t;
95 typedef struct fasttrap_tracepoint fasttrap_tracepoint_t;
96 
97 struct fasttrap_id {
98 	fasttrap_probe_t *fti_probe;		/* referrring probe */
99 	fasttrap_id_t *fti_next;		/* enabled probe list on tp */
100 	fasttrap_probe_type_t fti_ptype;	/* probe type */
101 };
102 
103 typedef struct fasttrap_id_tp {
104 	fasttrap_id_t fit_id;
105 	fasttrap_tracepoint_t *fit_tp;
106 } fasttrap_id_tp_t;
107 
108 struct fasttrap_probe {
109 	dtrace_id_t ftp_id;			/* DTrace probe identifier */
110 	pid_t ftp_pid;				/* pid for this probe */
111 	fasttrap_provider_t *ftp_prov;		/* this probe's provider */
112 	uintptr_t ftp_faddr;			/* associated function's addr */
113 	size_t ftp_fsize;			/* associated function's size */
114 	uint64_t ftp_gen;			/* modification generation */
115 	uint64_t ftp_ntps;			/* number of tracepoints */
116 	uint8_t *ftp_argmap;			/* native to translated args */
117 	uint8_t ftp_nargs;			/* translated argument count */
118 	uint8_t ftp_enabled;			/* is this probe enabled */
119 	char *ftp_xtypes;			/* translated types index */
120 	char *ftp_ntypes;			/* native types index */
121 	fasttrap_id_tp_t ftp_tps[1];		/* flexible array */
122 };
123 
124 #define	FASTTRAP_ID_INDEX(id)	\
125 ((fasttrap_id_tp_t *)(((char *)(id) - offsetof(fasttrap_id_tp_t, fit_id))) - \
126 &(id)->fti_probe->ftp_tps[0])
127 
128 struct fasttrap_tracepoint {
129 	fasttrap_proc_t *ftt_proc;		/* associated process struct */
130 	uintptr_t ftt_pc;			/* address of tracepoint */
131 	pid_t ftt_pid;				/* pid of tracepoint */
132 	fasttrap_machtp_t ftt_mtp;		/* ISA-specific portion */
133 	fasttrap_id_t *ftt_ids;			/* NULL-terminated list */
134 	fasttrap_id_t *ftt_retids;		/* NULL-terminated list */
135 	fasttrap_tracepoint_t *ftt_next;	/* link in global hash */
136 };
137 
138 typedef struct fasttrap_bucket {
139 	kmutex_t ftb_mtx;			/* bucket lock */
140 	void *ftb_data;				/* data payload */
141 
142 	uint8_t ftb_pad[64 - sizeof (kmutex_t) - sizeof (void *)];
143 } fasttrap_bucket_t;
144 
145 typedef struct fasttrap_hash {
146 	ulong_t fth_nent;			/* power-of-2 num. of entries */
147 	ulong_t fth_mask;			/* fth_nent - 1 */
148 	fasttrap_bucket_t *fth_table;		/* array of buckets */
149 } fasttrap_hash_t;
150 
151 /*
152  * If at some future point these assembly functions become observable by
153  * DTrace, then these defines should become separate functions so that the
154  * fasttrap provider doesn't trigger probes during internal operations.
155  */
156 #define	fasttrap_copyout	copyout
157 #define	fasttrap_fuword32	fuword32
158 #define	fasttrap_suword32	suword32
159 
160 #define	fasttrap_fulword	fulword
161 #define	fasttrap_sulword	sulword
162 
163 extern void fasttrap_sigtrap(proc_t *, kthread_t *, uintptr_t);
164 
165 extern dtrace_id_t 		fasttrap_probe_id;
166 extern fasttrap_hash_t		fasttrap_tpoints;
167 
168 #define	FASTTRAP_TPOINTS_INDEX(pid, pc) \
169 	(((pc) / sizeof (fasttrap_instr_t) + (pid)) & fasttrap_tpoints.fth_mask)
170 
171 /*
172  * Must be implemented by fasttrap_isa.c
173  */
174 extern int fasttrap_tracepoint_init(proc_t *, fasttrap_tracepoint_t *,
175     uintptr_t, fasttrap_probe_type_t);
176 extern int fasttrap_tracepoint_install(proc_t *, fasttrap_tracepoint_t *);
177 extern int fasttrap_tracepoint_remove(proc_t *, fasttrap_tracepoint_t *);
178 
179 extern int fasttrap_probe(struct regs *);
180 extern int fasttrap_pid_probe(struct regs *);
181 extern int fasttrap_return_probe(struct regs *);
182 
183 extern uint64_t fasttrap_getarg(void *, dtrace_id_t, void *, int, int);
184 extern uint64_t fasttrap_usdt_getarg(void *, dtrace_id_t, void *, int, int);
185 
186 #ifdef	__cplusplus
187 }
188 #endif
189 
190 #endif	/* _FASTTRAP_IMPL_H */
191