xref: /illumos-gate/usr/src/uts/common/dtrace/fasttrap.c (revision d0fccfcda73f8b52d101bd2b0f7885a766f7e354)
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 2009 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*
28  * Copyright (c) 2011, Joyent, Inc. All rights reserved.
29  */
30 
31 #include <sys/atomic.h>
32 #include <sys/errno.h>
33 #include <sys/stat.h>
34 #include <sys/modctl.h>
35 #include <sys/conf.h>
36 #include <sys/systm.h>
37 #include <sys/ddi.h>
38 #include <sys/sunddi.h>
39 #include <sys/cpuvar.h>
40 #include <sys/kmem.h>
41 #include <sys/strsubr.h>
42 #include <sys/fasttrap.h>
43 #include <sys/fasttrap_impl.h>
44 #include <sys/fasttrap_isa.h>
45 #include <sys/dtrace.h>
46 #include <sys/dtrace_impl.h>
47 #include <sys/sysmacros.h>
48 #include <sys/proc.h>
49 #include <sys/priv.h>
50 #include <sys/policy.h>
51 #include <util/qsort.h>
52 
53 /*
54  * User-Land Trap-Based Tracing
55  * ----------------------------
56  *
57  * The fasttrap provider allows DTrace consumers to instrument any user-level
58  * instruction to gather data; this includes probes with semantic
59  * signifigance like entry and return as well as simple offsets into the
60  * function. While the specific techniques used are very ISA specific, the
61  * methodology is generalizable to any architecture.
62  *
63  *
64  * The General Methodology
65  * -----------------------
66  *
67  * With the primary goal of tracing every user-land instruction and the
68  * limitation that we can't trust user space so don't want to rely on much
69  * information there, we begin by replacing the instructions we want to trace
70  * with trap instructions. Each instruction we overwrite is saved into a hash
71  * table keyed by process ID and pc address. When we enter the kernel due to
72  * this trap instruction, we need the effects of the replaced instruction to
73  * appear to have occurred before we proceed with the user thread's
74  * execution.
75  *
76  * Each user level thread is represented by a ulwp_t structure which is
77  * always easily accessible through a register. The most basic way to produce
78  * the effects of the instruction we replaced is to copy that instruction out
79  * to a bit of scratch space reserved in the user thread's ulwp_t structure
80  * (a sort of kernel-private thread local storage), set the PC to that
81  * scratch space and single step. When we reenter the kernel after single
82  * stepping the instruction we must then adjust the PC to point to what would
83  * normally be the next instruction. Of course, special care must be taken
84  * for branches and jumps, but these represent such a small fraction of any
85  * instruction set that writing the code to emulate these in the kernel is
86  * not too difficult.
87  *
88  * Return probes may require several tracepoints to trace every return site,
89  * and, conversely, each tracepoint may activate several probes (the entry
90  * and offset 0 probes, for example). To solve this muliplexing problem,
91  * tracepoints contain lists of probes to activate and probes contain lists
92  * of tracepoints to enable. If a probe is activated, it adds its ID to
93  * existing tracepoints or creates new ones as necessary.
94  *
95  * Most probes are activated _before_ the instruction is executed, but return
96  * probes are activated _after_ the effects of the last instruction of the
97  * function are visible. Return probes must be fired _after_ we have
98  * single-stepped the instruction whereas all other probes are fired
99  * beforehand.
100  *
101  *
102  * Lock Ordering
103  * -------------
104  *
105  * The lock ordering below -- both internally and with respect to the DTrace
106  * framework -- is a little tricky and bears some explanation. Each provider
107  * has a lock (ftp_mtx) that protects its members including reference counts
108  * for enabled probes (ftp_rcount), consumers actively creating probes
109  * (ftp_ccount) and USDT consumers (ftp_mcount); all three prevent a provider
110  * from being freed. A provider is looked up by taking the bucket lock for the
111  * provider hash table, and is returned with its lock held. The provider lock
112  * may be taken in functions invoked by the DTrace framework, but may not be
113  * held while calling functions in the DTrace framework.
114  *
115  * To ensure consistency over multiple calls to the DTrace framework, the
116  * creation lock (ftp_cmtx) should be held. Naturally, the creation lock may
117  * not be taken when holding the provider lock as that would create a cyclic
118  * lock ordering. In situations where one would naturally take the provider
119  * lock and then the creation lock, we instead up a reference count to prevent
120  * the provider from disappearing, drop the provider lock, and acquire the
121  * creation lock.
122  *
123  * Briefly:
124  * 	bucket lock before provider lock
125  *	DTrace before provider lock
126  *	creation lock before DTrace
127  *	never hold the provider lock and creation lock simultaneously
128  */
129 
130 static dev_info_t *fasttrap_devi;
131 static dtrace_meta_provider_id_t fasttrap_meta_id;
132 
133 static timeout_id_t fasttrap_timeout;
134 static kmutex_t fasttrap_cleanup_mtx;
135 static uint_t fasttrap_cleanup_work;
136 
137 /*
138  * Generation count on modifications to the global tracepoint lookup table.
139  */
140 static volatile uint64_t fasttrap_mod_gen;
141 
142 /*
143  * When the fasttrap provider is loaded, fasttrap_max is set to either
144  * FASTTRAP_MAX_DEFAULT or the value for fasttrap-max-probes in the
145  * fasttrap.conf file. Each time a probe is created, fasttrap_total is
146  * incremented by the number of tracepoints that may be associated with that
147  * probe; fasttrap_total is capped at fasttrap_max.
148  */
149 #define	FASTTRAP_MAX_DEFAULT		250000
150 static uint32_t fasttrap_max;
151 static uint32_t fasttrap_total;
152 
153 
154 #define	FASTTRAP_TPOINTS_DEFAULT_SIZE	0x4000
155 #define	FASTTRAP_PROVIDERS_DEFAULT_SIZE	0x100
156 #define	FASTTRAP_PROCS_DEFAULT_SIZE	0x100
157 
158 #define	FASTTRAP_PID_NAME		"pid"
159 
160 fasttrap_hash_t			fasttrap_tpoints;
161 static fasttrap_hash_t		fasttrap_provs;
162 static fasttrap_hash_t		fasttrap_procs;
163 
164 static uint64_t			fasttrap_pid_count;	/* pid ref count */
165 static kmutex_t			fasttrap_count_mtx;	/* lock on ref count */
166 
167 #define	FASTTRAP_ENABLE_FAIL	1
168 #define	FASTTRAP_ENABLE_PARTIAL	2
169 
170 static int fasttrap_tracepoint_enable(proc_t *, fasttrap_probe_t *, uint_t);
171 static void fasttrap_tracepoint_disable(proc_t *, fasttrap_probe_t *, uint_t);
172 
173 static fasttrap_provider_t *fasttrap_provider_lookup(pid_t, const char *,
174     const dtrace_pattr_t *);
175 static void fasttrap_provider_retire(pid_t, const char *, int);
176 static void fasttrap_provider_free(fasttrap_provider_t *);
177 
178 static fasttrap_proc_t *fasttrap_proc_lookup(pid_t);
179 static void fasttrap_proc_release(fasttrap_proc_t *);
180 
181 #define	FASTTRAP_PROVS_INDEX(pid, name) \
182 	((fasttrap_hash_str(name) + (pid)) & fasttrap_provs.fth_mask)
183 
184 #define	FASTTRAP_PROCS_INDEX(pid) ((pid) & fasttrap_procs.fth_mask)
185 
186 static int
187 fasttrap_highbit(ulong_t i)
188 {
189 	int h = 1;
190 
191 	if (i == 0)
192 		return (0);
193 #ifdef _LP64
194 	if (i & 0xffffffff00000000ul) {
195 		h += 32; i >>= 32;
196 	}
197 #endif
198 	if (i & 0xffff0000) {
199 		h += 16; i >>= 16;
200 	}
201 	if (i & 0xff00) {
202 		h += 8; i >>= 8;
203 	}
204 	if (i & 0xf0) {
205 		h += 4; i >>= 4;
206 	}
207 	if (i & 0xc) {
208 		h += 2; i >>= 2;
209 	}
210 	if (i & 0x2) {
211 		h += 1;
212 	}
213 	return (h);
214 }
215 
216 static uint_t
217 fasttrap_hash_str(const char *p)
218 {
219 	unsigned int g;
220 	uint_t hval = 0;
221 
222 	while (*p) {
223 		hval = (hval << 4) + *p++;
224 		if ((g = (hval & 0xf0000000)) != 0)
225 			hval ^= g >> 24;
226 		hval &= ~g;
227 	}
228 	return (hval);
229 }
230 
231 void
232 fasttrap_sigtrap(proc_t *p, kthread_t *t, uintptr_t pc)
233 {
234 	sigqueue_t *sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
235 
236 	sqp->sq_info.si_signo = SIGTRAP;
237 	sqp->sq_info.si_code = TRAP_DTRACE;
238 	sqp->sq_info.si_addr = (caddr_t)pc;
239 
240 	mutex_enter(&p->p_lock);
241 	sigaddqa(p, t, sqp);
242 	mutex_exit(&p->p_lock);
243 
244 	if (t != NULL)
245 		aston(t);
246 }
247 
248 /*
249  * This function ensures that no threads are actively using the memory
250  * associated with probes that were formerly live.
251  */
252 static void
253 fasttrap_mod_barrier(uint64_t gen)
254 {
255 	int i;
256 
257 	if (gen < fasttrap_mod_gen)
258 		return;
259 
260 	fasttrap_mod_gen++;
261 
262 	for (i = 0; i < NCPU; i++) {
263 		mutex_enter(&cpu_core[i].cpuc_pid_lock);
264 		mutex_exit(&cpu_core[i].cpuc_pid_lock);
265 	}
266 }
267 
268 /*
269  * This is the timeout's callback for cleaning up the providers and their
270  * probes.
271  */
272 /*ARGSUSED*/
273 static void
274 fasttrap_pid_cleanup_cb(void *data)
275 {
276 	fasttrap_provider_t **fpp, *fp;
277 	fasttrap_bucket_t *bucket;
278 	dtrace_provider_id_t provid;
279 	int i, later, rval;
280 
281 	static volatile int in = 0;
282 	ASSERT(in == 0);
283 	in = 1;
284 
285 	mutex_enter(&fasttrap_cleanup_mtx);
286 	while (fasttrap_cleanup_work) {
287 		fasttrap_cleanup_work = 0;
288 		mutex_exit(&fasttrap_cleanup_mtx);
289 
290 		later = 0;
291 
292 		/*
293 		 * Iterate over all the providers trying to remove the marked
294 		 * ones. If a provider is marked but not retired, we just
295 		 * have to take a crack at removing it -- it's no big deal if
296 		 * we can't.
297 		 */
298 		for (i = 0; i < fasttrap_provs.fth_nent; i++) {
299 			bucket = &fasttrap_provs.fth_table[i];
300 			mutex_enter(&bucket->ftb_mtx);
301 			fpp = (fasttrap_provider_t **)&bucket->ftb_data;
302 
303 			while ((fp = *fpp) != NULL) {
304 				if (!fp->ftp_marked) {
305 					fpp = &fp->ftp_next;
306 					continue;
307 				}
308 
309 				mutex_enter(&fp->ftp_mtx);
310 
311 				/*
312 				 * If this provider has consumers actively
313 				 * creating probes (ftp_ccount) or is a USDT
314 				 * provider (ftp_mcount), we can't unregister
315 				 * or even condense.
316 				 */
317 				if (fp->ftp_ccount != 0 ||
318 				    fp->ftp_mcount != 0) {
319 					mutex_exit(&fp->ftp_mtx);
320 					fp->ftp_marked = 0;
321 					continue;
322 				}
323 
324 				if (!fp->ftp_retired || fp->ftp_rcount != 0)
325 					fp->ftp_marked = 0;
326 
327 				mutex_exit(&fp->ftp_mtx);
328 
329 				/*
330 				 * If we successfully unregister this
331 				 * provider we can remove it from the hash
332 				 * chain and free the memory. If our attempt
333 				 * to unregister fails and this is a retired
334 				 * provider, increment our flag to try again
335 				 * pretty soon. If we've consumed more than
336 				 * half of our total permitted number of
337 				 * probes call dtrace_condense() to try to
338 				 * clean out the unenabled probes.
339 				 */
340 				provid = fp->ftp_provid;
341 				if ((rval = dtrace_unregister(provid)) != 0) {
342 					if (fasttrap_total > fasttrap_max / 2)
343 						(void) dtrace_condense(provid);
344 
345 					if (rval == EAGAIN)
346 						fp->ftp_marked = 1;
347 
348 					later += fp->ftp_marked;
349 					fpp = &fp->ftp_next;
350 				} else {
351 					*fpp = fp->ftp_next;
352 					fasttrap_provider_free(fp);
353 				}
354 			}
355 			mutex_exit(&bucket->ftb_mtx);
356 		}
357 
358 		mutex_enter(&fasttrap_cleanup_mtx);
359 	}
360 
361 	ASSERT(fasttrap_timeout != 0);
362 
363 	/*
364 	 * If we were unable to remove a retired provider, try again after
365 	 * a second. This situation can occur in certain circumstances where
366 	 * providers cannot be unregistered even though they have no probes
367 	 * enabled because of an execution of dtrace -l or something similar.
368 	 * If the timeout has been disabled (set to 1 because we're trying
369 	 * to detach), we set fasttrap_cleanup_work to ensure that we'll
370 	 * get a chance to do that work if and when the timeout is reenabled
371 	 * (if detach fails).
372 	 */
373 	if (later > 0) {
374 		if (fasttrap_timeout != (timeout_id_t)1) {
375 			fasttrap_timeout =
376 			    timeout(&fasttrap_pid_cleanup_cb, NULL, hz);
377 		}
378 
379 		fasttrap_cleanup_work = 1;
380 	} else {
381 		fasttrap_timeout = 0;
382 	}
383 
384 	mutex_exit(&fasttrap_cleanup_mtx);
385 	in = 0;
386 }
387 
388 /*
389  * Activates the asynchronous cleanup mechanism.
390  */
391 static void
392 fasttrap_pid_cleanup(void)
393 {
394 	mutex_enter(&fasttrap_cleanup_mtx);
395 	fasttrap_cleanup_work = 1;
396 	if (fasttrap_timeout == 0)
397 		fasttrap_timeout = timeout(&fasttrap_pid_cleanup_cb, NULL, 1);
398 	mutex_exit(&fasttrap_cleanup_mtx);
399 }
400 
401 /*
402  * This is called from cfork() via dtrace_fasttrap_fork(). The child
403  * process's address space is (roughly) a copy of the parent process's so
404  * we have to remove all the instrumentation we had previously enabled in the
405  * parent.
406  */
407 static void
408 fasttrap_fork(proc_t *p, proc_t *cp)
409 {
410 	pid_t ppid = p->p_pid;
411 	int i;
412 
413 	ASSERT(curproc == p);
414 	ASSERT(p->p_proc_flag & P_PR_LOCK);
415 	ASSERT(p->p_dtrace_count > 0);
416 	ASSERT(cp->p_dtrace_count == 0);
417 
418 	/*
419 	 * This would be simpler and faster if we maintained per-process
420 	 * hash tables of enabled tracepoints. It could, however, potentially
421 	 * slow down execution of a tracepoint since we'd need to go
422 	 * through two levels of indirection. In the future, we should
423 	 * consider either maintaining per-process ancillary lists of
424 	 * enabled tracepoints or hanging a pointer to a per-process hash
425 	 * table of enabled tracepoints off the proc structure.
426 	 */
427 
428 	/*
429 	 * We don't have to worry about the child process disappearing
430 	 * because we're in fork().
431 	 */
432 	mutex_enter(&cp->p_lock);
433 	sprlock_proc(cp);
434 	mutex_exit(&cp->p_lock);
435 
436 	/*
437 	 * Iterate over every tracepoint looking for ones that belong to the
438 	 * parent process, and remove each from the child process.
439 	 */
440 	for (i = 0; i < fasttrap_tpoints.fth_nent; i++) {
441 		fasttrap_tracepoint_t *tp;
442 		fasttrap_bucket_t *bucket = &fasttrap_tpoints.fth_table[i];
443 
444 		mutex_enter(&bucket->ftb_mtx);
445 		for (tp = bucket->ftb_data; tp != NULL; tp = tp->ftt_next) {
446 			if (tp->ftt_pid == ppid &&
447 			    tp->ftt_proc->ftpc_acount != 0) {
448 				int ret = fasttrap_tracepoint_remove(cp, tp);
449 				ASSERT(ret == 0);
450 
451 				/*
452 				 * The count of active providers can only be
453 				 * decremented (i.e. to zero) during exec,
454 				 * exit, and removal of a meta provider so it
455 				 * should be impossible to drop the count
456 				 * mid-fork.
457 				 */
458 				ASSERT(tp->ftt_proc->ftpc_acount != 0);
459 			}
460 		}
461 		mutex_exit(&bucket->ftb_mtx);
462 	}
463 
464 	mutex_enter(&cp->p_lock);
465 	sprunlock(cp);
466 }
467 
468 /*
469  * This is called from proc_exit() or from exec_common() if p_dtrace_probes
470  * is set on the proc structure to indicate that there is a pid provider
471  * associated with this process.
472  */
473 static void
474 fasttrap_exec_exit(proc_t *p)
475 {
476 	ASSERT(p == curproc);
477 	ASSERT(MUTEX_HELD(&p->p_lock));
478 
479 	mutex_exit(&p->p_lock);
480 
481 	/*
482 	 * We clean up the pid provider for this process here; user-land
483 	 * static probes are handled by the meta-provider remove entry point.
484 	 */
485 	fasttrap_provider_retire(p->p_pid, FASTTRAP_PID_NAME, 0);
486 
487 	mutex_enter(&p->p_lock);
488 }
489 
490 
491 /*ARGSUSED*/
492 static void
493 fasttrap_pid_provide(void *arg, const dtrace_probedesc_t *desc)
494 {
495 	/*
496 	 * There are no "default" pid probes.
497 	 */
498 }
499 
500 static int
501 fasttrap_tracepoint_enable(proc_t *p, fasttrap_probe_t *probe, uint_t index)
502 {
503 	fasttrap_tracepoint_t *tp, *new_tp = NULL;
504 	fasttrap_bucket_t *bucket;
505 	fasttrap_id_t *id;
506 	pid_t pid;
507 	uintptr_t pc;
508 
509 	ASSERT(index < probe->ftp_ntps);
510 
511 	pid = probe->ftp_pid;
512 	pc = probe->ftp_tps[index].fit_tp->ftt_pc;
513 	id = &probe->ftp_tps[index].fit_id;
514 
515 	ASSERT(probe->ftp_tps[index].fit_tp->ftt_pid == pid);
516 
517 	ASSERT(!(p->p_flag & SVFORK));
518 
519 	/*
520 	 * Before we make any modifications, make sure we've imposed a barrier
521 	 * on the generation in which this probe was last modified.
522 	 */
523 	fasttrap_mod_barrier(probe->ftp_gen);
524 
525 	bucket = &fasttrap_tpoints.fth_table[FASTTRAP_TPOINTS_INDEX(pid, pc)];
526 
527 	/*
528 	 * If the tracepoint has already been enabled, just add our id to the
529 	 * list of interested probes. This may be our second time through
530 	 * this path in which case we'll have constructed the tracepoint we'd
531 	 * like to install. If we can't find a match, and have an allocated
532 	 * tracepoint ready to go, enable that one now.
533 	 *
534 	 * A tracepoint whose process is defunct is also considered defunct.
535 	 */
536 again:
537 	mutex_enter(&bucket->ftb_mtx);
538 	for (tp = bucket->ftb_data; tp != NULL; tp = tp->ftt_next) {
539 		/*
540 		 * Note that it's safe to access the active count on the
541 		 * associated proc structure because we know that at least one
542 		 * provider (this one) will still be around throughout this
543 		 * operation.
544 		 */
545 		if (tp->ftt_pid != pid || tp->ftt_pc != pc ||
546 		    tp->ftt_proc->ftpc_acount == 0)
547 			continue;
548 
549 		/*
550 		 * Now that we've found a matching tracepoint, it would be
551 		 * a decent idea to confirm that the tracepoint is still
552 		 * enabled and the trap instruction hasn't been overwritten.
553 		 * Since this is a little hairy, we'll punt for now.
554 		 */
555 
556 		/*
557 		 * This can't be the first interested probe. We don't have
558 		 * to worry about another thread being in the midst of
559 		 * deleting this tracepoint (which would be the only valid
560 		 * reason for a tracepoint to have no interested probes)
561 		 * since we're holding P_PR_LOCK for this process.
562 		 */
563 		ASSERT(tp->ftt_ids != NULL || tp->ftt_retids != NULL);
564 
565 		switch (id->fti_ptype) {
566 		case DTFTP_ENTRY:
567 		case DTFTP_OFFSETS:
568 		case DTFTP_IS_ENABLED:
569 			id->fti_next = tp->ftt_ids;
570 			membar_producer();
571 			tp->ftt_ids = id;
572 			membar_producer();
573 			break;
574 
575 		case DTFTP_RETURN:
576 		case DTFTP_POST_OFFSETS:
577 			id->fti_next = tp->ftt_retids;
578 			membar_producer();
579 			tp->ftt_retids = id;
580 			membar_producer();
581 			break;
582 
583 		default:
584 			ASSERT(0);
585 		}
586 
587 		mutex_exit(&bucket->ftb_mtx);
588 
589 		if (new_tp != NULL) {
590 			new_tp->ftt_ids = NULL;
591 			new_tp->ftt_retids = NULL;
592 		}
593 
594 		return (0);
595 	}
596 
597 	/*
598 	 * If we have a good tracepoint ready to go, install it now while
599 	 * we have the lock held and no one can screw with us.
600 	 */
601 	if (new_tp != NULL) {
602 		int rc = 0;
603 
604 		new_tp->ftt_next = bucket->ftb_data;
605 		membar_producer();
606 		bucket->ftb_data = new_tp;
607 		membar_producer();
608 		mutex_exit(&bucket->ftb_mtx);
609 
610 		/*
611 		 * Activate the tracepoint in the ISA-specific manner.
612 		 * If this fails, we need to report the failure, but
613 		 * indicate that this tracepoint must still be disabled
614 		 * by calling fasttrap_tracepoint_disable().
615 		 */
616 		if (fasttrap_tracepoint_install(p, new_tp) != 0)
617 			rc = FASTTRAP_ENABLE_PARTIAL;
618 
619 		/*
620 		 * Increment the count of the number of tracepoints active in
621 		 * the victim process.
622 		 */
623 		ASSERT(p->p_proc_flag & P_PR_LOCK);
624 		p->p_dtrace_count++;
625 
626 		return (rc);
627 	}
628 
629 	mutex_exit(&bucket->ftb_mtx);
630 
631 	/*
632 	 * Initialize the tracepoint that's been preallocated with the probe.
633 	 */
634 	new_tp = probe->ftp_tps[index].fit_tp;
635 
636 	ASSERT(new_tp->ftt_pid == pid);
637 	ASSERT(new_tp->ftt_pc == pc);
638 	ASSERT(new_tp->ftt_proc == probe->ftp_prov->ftp_proc);
639 	ASSERT(new_tp->ftt_ids == NULL);
640 	ASSERT(new_tp->ftt_retids == NULL);
641 
642 	switch (id->fti_ptype) {
643 	case DTFTP_ENTRY:
644 	case DTFTP_OFFSETS:
645 	case DTFTP_IS_ENABLED:
646 		id->fti_next = NULL;
647 		new_tp->ftt_ids = id;
648 		break;
649 
650 	case DTFTP_RETURN:
651 	case DTFTP_POST_OFFSETS:
652 		id->fti_next = NULL;
653 		new_tp->ftt_retids = id;
654 		break;
655 
656 	default:
657 		ASSERT(0);
658 	}
659 
660 	/*
661 	 * If the ISA-dependent initialization goes to plan, go back to the
662 	 * beginning and try to install this freshly made tracepoint.
663 	 */
664 	if (fasttrap_tracepoint_init(p, new_tp, pc, id->fti_ptype) == 0)
665 		goto again;
666 
667 	new_tp->ftt_ids = NULL;
668 	new_tp->ftt_retids = NULL;
669 
670 	return (FASTTRAP_ENABLE_FAIL);
671 }
672 
673 static void
674 fasttrap_tracepoint_disable(proc_t *p, fasttrap_probe_t *probe, uint_t index)
675 {
676 	fasttrap_bucket_t *bucket;
677 	fasttrap_provider_t *provider = probe->ftp_prov;
678 	fasttrap_tracepoint_t **pp, *tp;
679 	fasttrap_id_t *id, **idp;
680 	pid_t pid;
681 	uintptr_t pc;
682 
683 	ASSERT(index < probe->ftp_ntps);
684 
685 	pid = probe->ftp_pid;
686 	pc = probe->ftp_tps[index].fit_tp->ftt_pc;
687 	id = &probe->ftp_tps[index].fit_id;
688 
689 	ASSERT(probe->ftp_tps[index].fit_tp->ftt_pid == pid);
690 
691 	/*
692 	 * Find the tracepoint and make sure that our id is one of the
693 	 * ones registered with it.
694 	 */
695 	bucket = &fasttrap_tpoints.fth_table[FASTTRAP_TPOINTS_INDEX(pid, pc)];
696 	mutex_enter(&bucket->ftb_mtx);
697 	for (tp = bucket->ftb_data; tp != NULL; tp = tp->ftt_next) {
698 		if (tp->ftt_pid == pid && tp->ftt_pc == pc &&
699 		    tp->ftt_proc == provider->ftp_proc)
700 			break;
701 	}
702 
703 	/*
704 	 * If we somehow lost this tracepoint, we're in a world of hurt.
705 	 */
706 	ASSERT(tp != NULL);
707 
708 	switch (id->fti_ptype) {
709 	case DTFTP_ENTRY:
710 	case DTFTP_OFFSETS:
711 	case DTFTP_IS_ENABLED:
712 		ASSERT(tp->ftt_ids != NULL);
713 		idp = &tp->ftt_ids;
714 		break;
715 
716 	case DTFTP_RETURN:
717 	case DTFTP_POST_OFFSETS:
718 		ASSERT(tp->ftt_retids != NULL);
719 		idp = &tp->ftt_retids;
720 		break;
721 
722 	default:
723 		ASSERT(0);
724 	}
725 
726 	while ((*idp)->fti_probe != probe) {
727 		idp = &(*idp)->fti_next;
728 		ASSERT(*idp != NULL);
729 	}
730 
731 	id = *idp;
732 	*idp = id->fti_next;
733 	membar_producer();
734 
735 	ASSERT(id->fti_probe == probe);
736 
737 	/*
738 	 * If there are other registered enablings of this tracepoint, we're
739 	 * all done, but if this was the last probe assocated with this
740 	 * this tracepoint, we need to remove and free it.
741 	 */
742 	if (tp->ftt_ids != NULL || tp->ftt_retids != NULL) {
743 
744 		/*
745 		 * If the current probe's tracepoint is in use, swap it
746 		 * for an unused tracepoint.
747 		 */
748 		if (tp == probe->ftp_tps[index].fit_tp) {
749 			fasttrap_probe_t *tmp_probe;
750 			fasttrap_tracepoint_t **tmp_tp;
751 			uint_t tmp_index;
752 
753 			if (tp->ftt_ids != NULL) {
754 				tmp_probe = tp->ftt_ids->fti_probe;
755 				/* LINTED - alignment */
756 				tmp_index = FASTTRAP_ID_INDEX(tp->ftt_ids);
757 				tmp_tp = &tmp_probe->ftp_tps[tmp_index].fit_tp;
758 			} else {
759 				tmp_probe = tp->ftt_retids->fti_probe;
760 				/* LINTED - alignment */
761 				tmp_index = FASTTRAP_ID_INDEX(tp->ftt_retids);
762 				tmp_tp = &tmp_probe->ftp_tps[tmp_index].fit_tp;
763 			}
764 
765 			ASSERT(*tmp_tp != NULL);
766 			ASSERT(*tmp_tp != probe->ftp_tps[index].fit_tp);
767 			ASSERT((*tmp_tp)->ftt_ids == NULL);
768 			ASSERT((*tmp_tp)->ftt_retids == NULL);
769 
770 			probe->ftp_tps[index].fit_tp = *tmp_tp;
771 			*tmp_tp = tp;
772 		}
773 
774 		mutex_exit(&bucket->ftb_mtx);
775 
776 		/*
777 		 * Tag the modified probe with the generation in which it was
778 		 * changed.
779 		 */
780 		probe->ftp_gen = fasttrap_mod_gen;
781 		return;
782 	}
783 
784 	mutex_exit(&bucket->ftb_mtx);
785 
786 	/*
787 	 * We can't safely remove the tracepoint from the set of active
788 	 * tracepoints until we've actually removed the fasttrap instruction
789 	 * from the process's text. We can, however, operate on this
790 	 * tracepoint secure in the knowledge that no other thread is going to
791 	 * be looking at it since we hold P_PR_LOCK on the process if it's
792 	 * live or we hold the provider lock on the process if it's dead and
793 	 * gone.
794 	 */
795 
796 	/*
797 	 * We only need to remove the actual instruction if we're looking
798 	 * at an existing process
799 	 */
800 	if (p != NULL) {
801 		/*
802 		 * If we fail to restore the instruction we need to kill
803 		 * this process since it's in a completely unrecoverable
804 		 * state.
805 		 */
806 		if (fasttrap_tracepoint_remove(p, tp) != 0)
807 			fasttrap_sigtrap(p, NULL, pc);
808 
809 		/*
810 		 * Decrement the count of the number of tracepoints active
811 		 * in the victim process.
812 		 */
813 		ASSERT(p->p_proc_flag & P_PR_LOCK);
814 		p->p_dtrace_count--;
815 	}
816 
817 	/*
818 	 * Remove the probe from the hash table of active tracepoints.
819 	 */
820 	mutex_enter(&bucket->ftb_mtx);
821 	pp = (fasttrap_tracepoint_t **)&bucket->ftb_data;
822 	ASSERT(*pp != NULL);
823 	while (*pp != tp) {
824 		pp = &(*pp)->ftt_next;
825 		ASSERT(*pp != NULL);
826 	}
827 
828 	*pp = tp->ftt_next;
829 	membar_producer();
830 
831 	mutex_exit(&bucket->ftb_mtx);
832 
833 	/*
834 	 * Tag the modified probe with the generation in which it was changed.
835 	 */
836 	probe->ftp_gen = fasttrap_mod_gen;
837 }
838 
839 static void
840 fasttrap_enable_callbacks(void)
841 {
842 	/*
843 	 * We don't have to play the rw lock game here because we're
844 	 * providing something rather than taking something away --
845 	 * we can be sure that no threads have tried to follow this
846 	 * function pointer yet.
847 	 */
848 	mutex_enter(&fasttrap_count_mtx);
849 	if (fasttrap_pid_count == 0) {
850 		ASSERT(dtrace_pid_probe_ptr == NULL);
851 		ASSERT(dtrace_return_probe_ptr == NULL);
852 		dtrace_pid_probe_ptr = &fasttrap_pid_probe;
853 		dtrace_return_probe_ptr = &fasttrap_return_probe;
854 	}
855 	ASSERT(dtrace_pid_probe_ptr == &fasttrap_pid_probe);
856 	ASSERT(dtrace_return_probe_ptr == &fasttrap_return_probe);
857 	fasttrap_pid_count++;
858 	mutex_exit(&fasttrap_count_mtx);
859 }
860 
861 static void
862 fasttrap_disable_callbacks(void)
863 {
864 	ASSERT(MUTEX_HELD(&cpu_lock));
865 
866 	mutex_enter(&fasttrap_count_mtx);
867 	ASSERT(fasttrap_pid_count > 0);
868 	fasttrap_pid_count--;
869 	if (fasttrap_pid_count == 0) {
870 		cpu_t *cur, *cpu = CPU;
871 
872 		for (cur = cpu->cpu_next_onln; cur != cpu;
873 		    cur = cur->cpu_next_onln) {
874 			rw_enter(&cur->cpu_ft_lock, RW_WRITER);
875 		}
876 
877 		dtrace_pid_probe_ptr = NULL;
878 		dtrace_return_probe_ptr = NULL;
879 
880 		for (cur = cpu->cpu_next_onln; cur != cpu;
881 		    cur = cur->cpu_next_onln) {
882 			rw_exit(&cur->cpu_ft_lock);
883 		}
884 	}
885 	mutex_exit(&fasttrap_count_mtx);
886 }
887 
888 /*ARGSUSED*/
889 static int
890 fasttrap_pid_enable(void *arg, dtrace_id_t id, void *parg)
891 {
892 	fasttrap_probe_t *probe = parg;
893 	proc_t *p;
894 	int i, rc;
895 
896 	ASSERT(probe != NULL);
897 	ASSERT(!probe->ftp_enabled);
898 	ASSERT(id == probe->ftp_id);
899 	ASSERT(MUTEX_HELD(&cpu_lock));
900 
901 	/*
902 	 * Increment the count of enabled probes on this probe's provider;
903 	 * the provider can't go away while the probe still exists. We
904 	 * must increment this even if we aren't able to properly enable
905 	 * this probe.
906 	 */
907 	mutex_enter(&probe->ftp_prov->ftp_mtx);
908 	probe->ftp_prov->ftp_rcount++;
909 	mutex_exit(&probe->ftp_prov->ftp_mtx);
910 
911 	/*
912 	 * If this probe's provider is retired (meaning it was valid in a
913 	 * previously exec'ed incarnation of this address space), bail out. The
914 	 * provider can't go away while we're in this code path.
915 	 */
916 	if (probe->ftp_prov->ftp_retired)
917 		return (0);
918 
919 	/*
920 	 * If we can't find the process, it may be that we're in the context of
921 	 * a fork in which the traced process is being born and we're copying
922 	 * USDT probes. Otherwise, the process is gone so bail.
923 	 */
924 	if ((p = sprlock(probe->ftp_pid)) == NULL) {
925 		if ((curproc->p_flag & SFORKING) == 0)
926 			return (0);
927 
928 		mutex_enter(&pidlock);
929 		p = prfind(probe->ftp_pid);
930 
931 		/*
932 		 * Confirm that curproc is indeed forking the process in which
933 		 * we're trying to enable probes.
934 		 */
935 		ASSERT(p != NULL);
936 		ASSERT(p->p_parent == curproc);
937 		ASSERT(p->p_stat == SIDL);
938 
939 		mutex_enter(&p->p_lock);
940 		mutex_exit(&pidlock);
941 
942 		sprlock_proc(p);
943 	}
944 
945 	ASSERT(!(p->p_flag & SVFORK));
946 	mutex_exit(&p->p_lock);
947 
948 	/*
949 	 * We have to enable the trap entry point before any user threads have
950 	 * the chance to execute the trap instruction we're about to place
951 	 * in their process's text.
952 	 */
953 	fasttrap_enable_callbacks();
954 
955 	/*
956 	 * Enable all the tracepoints and add this probe's id to each
957 	 * tracepoint's list of active probes.
958 	 */
959 	for (i = 0; i < probe->ftp_ntps; i++) {
960 		if ((rc = fasttrap_tracepoint_enable(p, probe, i)) != 0) {
961 			/*
962 			 * If enabling the tracepoint failed completely,
963 			 * we don't have to disable it; if the failure
964 			 * was only partial we must disable it.
965 			 */
966 			if (rc == FASTTRAP_ENABLE_FAIL)
967 				i--;
968 			else
969 				ASSERT(rc == FASTTRAP_ENABLE_PARTIAL);
970 
971 			/*
972 			 * Back up and pull out all the tracepoints we've
973 			 * created so far for this probe.
974 			 */
975 			while (i >= 0) {
976 				fasttrap_tracepoint_disable(p, probe, i);
977 				i--;
978 			}
979 
980 			mutex_enter(&p->p_lock);
981 			sprunlock(p);
982 
983 			/*
984 			 * Since we're not actually enabling this probe,
985 			 * drop our reference on the trap table entry.
986 			 */
987 			fasttrap_disable_callbacks();
988 			return (0);
989 		}
990 	}
991 
992 	mutex_enter(&p->p_lock);
993 	sprunlock(p);
994 
995 	probe->ftp_enabled = 1;
996 	return (0);
997 }
998 
999 /*ARGSUSED*/
1000 static void
1001 fasttrap_pid_disable(void *arg, dtrace_id_t id, void *parg)
1002 {
1003 	fasttrap_probe_t *probe = parg;
1004 	fasttrap_provider_t *provider = probe->ftp_prov;
1005 	proc_t *p;
1006 	int i, whack = 0;
1007 
1008 	ASSERT(id == probe->ftp_id);
1009 
1010 	/*
1011 	 * We won't be able to acquire a /proc-esque lock on the process
1012 	 * iff the process is dead and gone. In this case, we rely on the
1013 	 * provider lock as a point of mutual exclusion to prevent other
1014 	 * DTrace consumers from disabling this probe.
1015 	 */
1016 	if ((p = sprlock(probe->ftp_pid)) != NULL) {
1017 		ASSERT(!(p->p_flag & SVFORK));
1018 		mutex_exit(&p->p_lock);
1019 	}
1020 
1021 	mutex_enter(&provider->ftp_mtx);
1022 
1023 	/*
1024 	 * Disable all the associated tracepoints (for fully enabled probes).
1025 	 */
1026 	if (probe->ftp_enabled) {
1027 		for (i = 0; i < probe->ftp_ntps; i++) {
1028 			fasttrap_tracepoint_disable(p, probe, i);
1029 		}
1030 	}
1031 
1032 	ASSERT(provider->ftp_rcount > 0);
1033 	provider->ftp_rcount--;
1034 
1035 	if (p != NULL) {
1036 		/*
1037 		 * Even though we may not be able to remove it entirely, we
1038 		 * mark this retired provider to get a chance to remove some
1039 		 * of the associated probes.
1040 		 */
1041 		if (provider->ftp_retired && !provider->ftp_marked)
1042 			whack = provider->ftp_marked = 1;
1043 		mutex_exit(&provider->ftp_mtx);
1044 
1045 		mutex_enter(&p->p_lock);
1046 		sprunlock(p);
1047 	} else {
1048 		/*
1049 		 * If the process is dead, we're just waiting for the
1050 		 * last probe to be disabled to be able to free it.
1051 		 */
1052 		if (provider->ftp_rcount == 0 && !provider->ftp_marked)
1053 			whack = provider->ftp_marked = 1;
1054 		mutex_exit(&provider->ftp_mtx);
1055 	}
1056 
1057 	if (whack)
1058 		fasttrap_pid_cleanup();
1059 
1060 	if (!probe->ftp_enabled)
1061 		return;
1062 
1063 	probe->ftp_enabled = 0;
1064 
1065 	ASSERT(MUTEX_HELD(&cpu_lock));
1066 	fasttrap_disable_callbacks();
1067 }
1068 
1069 /*ARGSUSED*/
1070 static void
1071 fasttrap_pid_getargdesc(void *arg, dtrace_id_t id, void *parg,
1072     dtrace_argdesc_t *desc)
1073 {
1074 	fasttrap_probe_t *probe = parg;
1075 	char *str;
1076 	int i, ndx;
1077 
1078 	desc->dtargd_native[0] = '\0';
1079 	desc->dtargd_xlate[0] = '\0';
1080 
1081 	if (probe->ftp_prov->ftp_retired != 0 ||
1082 	    desc->dtargd_ndx >= probe->ftp_nargs) {
1083 		desc->dtargd_ndx = DTRACE_ARGNONE;
1084 		return;
1085 	}
1086 
1087 	ndx = (probe->ftp_argmap != NULL) ?
1088 	    probe->ftp_argmap[desc->dtargd_ndx] : desc->dtargd_ndx;
1089 
1090 	str = probe->ftp_ntypes;
1091 	for (i = 0; i < ndx; i++) {
1092 		str += strlen(str) + 1;
1093 	}
1094 
1095 	ASSERT(strlen(str + 1) < sizeof (desc->dtargd_native));
1096 	(void) strcpy(desc->dtargd_native, str);
1097 
1098 	if (probe->ftp_xtypes == NULL)
1099 		return;
1100 
1101 	str = probe->ftp_xtypes;
1102 	for (i = 0; i < desc->dtargd_ndx; i++) {
1103 		str += strlen(str) + 1;
1104 	}
1105 
1106 	ASSERT(strlen(str + 1) < sizeof (desc->dtargd_xlate));
1107 	(void) strcpy(desc->dtargd_xlate, str);
1108 }
1109 
1110 /*ARGSUSED*/
1111 static void
1112 fasttrap_pid_destroy(void *arg, dtrace_id_t id, void *parg)
1113 {
1114 	fasttrap_probe_t *probe = parg;
1115 	int i;
1116 	size_t size;
1117 
1118 	ASSERT(probe != NULL);
1119 	ASSERT(!probe->ftp_enabled);
1120 	ASSERT(fasttrap_total >= probe->ftp_ntps);
1121 
1122 	atomic_add_32(&fasttrap_total, -probe->ftp_ntps);
1123 	size = offsetof(fasttrap_probe_t, ftp_tps[probe->ftp_ntps]);
1124 
1125 	if (probe->ftp_gen + 1 >= fasttrap_mod_gen)
1126 		fasttrap_mod_barrier(probe->ftp_gen);
1127 
1128 	for (i = 0; i < probe->ftp_ntps; i++) {
1129 		kmem_free(probe->ftp_tps[i].fit_tp,
1130 		    sizeof (fasttrap_tracepoint_t));
1131 	}
1132 
1133 	kmem_free(probe, size);
1134 }
1135 
1136 
1137 static const dtrace_pattr_t pid_attr = {
1138 { DTRACE_STABILITY_EVOLVING, DTRACE_STABILITY_EVOLVING, DTRACE_CLASS_ISA },
1139 { DTRACE_STABILITY_PRIVATE, DTRACE_STABILITY_PRIVATE, DTRACE_CLASS_UNKNOWN },
1140 { DTRACE_STABILITY_PRIVATE, DTRACE_STABILITY_PRIVATE, DTRACE_CLASS_UNKNOWN },
1141 { DTRACE_STABILITY_EVOLVING, DTRACE_STABILITY_EVOLVING, DTRACE_CLASS_ISA },
1142 { DTRACE_STABILITY_PRIVATE, DTRACE_STABILITY_PRIVATE, DTRACE_CLASS_UNKNOWN },
1143 };
1144 
1145 static dtrace_pops_t pid_pops = {
1146 	fasttrap_pid_provide,
1147 	NULL,
1148 	fasttrap_pid_enable,
1149 	fasttrap_pid_disable,
1150 	NULL,
1151 	NULL,
1152 	fasttrap_pid_getargdesc,
1153 	fasttrap_pid_getarg,
1154 	NULL,
1155 	fasttrap_pid_destroy
1156 };
1157 
1158 static dtrace_pops_t usdt_pops = {
1159 	fasttrap_pid_provide,
1160 	NULL,
1161 	fasttrap_pid_enable,
1162 	fasttrap_pid_disable,
1163 	NULL,
1164 	NULL,
1165 	fasttrap_pid_getargdesc,
1166 	fasttrap_usdt_getarg,
1167 	NULL,
1168 	fasttrap_pid_destroy
1169 };
1170 
1171 static fasttrap_proc_t *
1172 fasttrap_proc_lookup(pid_t pid)
1173 {
1174 	fasttrap_bucket_t *bucket;
1175 	fasttrap_proc_t *fprc, *new_fprc;
1176 
1177 	bucket = &fasttrap_procs.fth_table[FASTTRAP_PROCS_INDEX(pid)];
1178 	mutex_enter(&bucket->ftb_mtx);
1179 
1180 	for (fprc = bucket->ftb_data; fprc != NULL; fprc = fprc->ftpc_next) {
1181 		if (fprc->ftpc_pid == pid && fprc->ftpc_acount != 0) {
1182 			mutex_enter(&fprc->ftpc_mtx);
1183 			mutex_exit(&bucket->ftb_mtx);
1184 			fprc->ftpc_rcount++;
1185 			atomic_add_64(&fprc->ftpc_acount, 1);
1186 			ASSERT(fprc->ftpc_acount <= fprc->ftpc_rcount);
1187 			mutex_exit(&fprc->ftpc_mtx);
1188 
1189 			return (fprc);
1190 		}
1191 	}
1192 
1193 	/*
1194 	 * Drop the bucket lock so we don't try to perform a sleeping
1195 	 * allocation under it.
1196 	 */
1197 	mutex_exit(&bucket->ftb_mtx);
1198 
1199 	new_fprc = kmem_zalloc(sizeof (fasttrap_proc_t), KM_SLEEP);
1200 	new_fprc->ftpc_pid = pid;
1201 	new_fprc->ftpc_rcount = 1;
1202 	new_fprc->ftpc_acount = 1;
1203 
1204 	mutex_enter(&bucket->ftb_mtx);
1205 
1206 	/*
1207 	 * Take another lap through the list to make sure a proc hasn't
1208 	 * been created for this pid while we weren't under the bucket lock.
1209 	 */
1210 	for (fprc = bucket->ftb_data; fprc != NULL; fprc = fprc->ftpc_next) {
1211 		if (fprc->ftpc_pid == pid && fprc->ftpc_acount != 0) {
1212 			mutex_enter(&fprc->ftpc_mtx);
1213 			mutex_exit(&bucket->ftb_mtx);
1214 			fprc->ftpc_rcount++;
1215 			atomic_add_64(&fprc->ftpc_acount, 1);
1216 			ASSERT(fprc->ftpc_acount <= fprc->ftpc_rcount);
1217 			mutex_exit(&fprc->ftpc_mtx);
1218 
1219 			kmem_free(new_fprc, sizeof (fasttrap_proc_t));
1220 
1221 			return (fprc);
1222 		}
1223 	}
1224 
1225 	new_fprc->ftpc_next = bucket->ftb_data;
1226 	bucket->ftb_data = new_fprc;
1227 
1228 	mutex_exit(&bucket->ftb_mtx);
1229 
1230 	return (new_fprc);
1231 }
1232 
1233 static void
1234 fasttrap_proc_release(fasttrap_proc_t *proc)
1235 {
1236 	fasttrap_bucket_t *bucket;
1237 	fasttrap_proc_t *fprc, **fprcp;
1238 	pid_t pid = proc->ftpc_pid;
1239 
1240 	mutex_enter(&proc->ftpc_mtx);
1241 
1242 	ASSERT(proc->ftpc_rcount != 0);
1243 	ASSERT(proc->ftpc_acount <= proc->ftpc_rcount);
1244 
1245 	if (--proc->ftpc_rcount != 0) {
1246 		mutex_exit(&proc->ftpc_mtx);
1247 		return;
1248 	}
1249 
1250 	mutex_exit(&proc->ftpc_mtx);
1251 
1252 	/*
1253 	 * There should definitely be no live providers associated with this
1254 	 * process at this point.
1255 	 */
1256 	ASSERT(proc->ftpc_acount == 0);
1257 
1258 	bucket = &fasttrap_procs.fth_table[FASTTRAP_PROCS_INDEX(pid)];
1259 	mutex_enter(&bucket->ftb_mtx);
1260 
1261 	fprcp = (fasttrap_proc_t **)&bucket->ftb_data;
1262 	while ((fprc = *fprcp) != NULL) {
1263 		if (fprc == proc)
1264 			break;
1265 
1266 		fprcp = &fprc->ftpc_next;
1267 	}
1268 
1269 	/*
1270 	 * Something strange has happened if we can't find the proc.
1271 	 */
1272 	ASSERT(fprc != NULL);
1273 
1274 	*fprcp = fprc->ftpc_next;
1275 
1276 	mutex_exit(&bucket->ftb_mtx);
1277 
1278 	kmem_free(fprc, sizeof (fasttrap_proc_t));
1279 }
1280 
1281 /*
1282  * Lookup a fasttrap-managed provider based on its name and associated pid.
1283  * If the pattr argument is non-NULL, this function instantiates the provider
1284  * if it doesn't exist otherwise it returns NULL. The provider is returned
1285  * with its lock held.
1286  */
1287 static fasttrap_provider_t *
1288 fasttrap_provider_lookup(pid_t pid, const char *name,
1289     const dtrace_pattr_t *pattr)
1290 {
1291 	fasttrap_provider_t *fp, *new_fp = NULL;
1292 	fasttrap_bucket_t *bucket;
1293 	char provname[DTRACE_PROVNAMELEN];
1294 	proc_t *p;
1295 	cred_t *cred;
1296 
1297 	ASSERT(strlen(name) < sizeof (fp->ftp_name));
1298 	ASSERT(pattr != NULL);
1299 
1300 	bucket = &fasttrap_provs.fth_table[FASTTRAP_PROVS_INDEX(pid, name)];
1301 	mutex_enter(&bucket->ftb_mtx);
1302 
1303 	/*
1304 	 * Take a lap through the list and return the match if we find it.
1305 	 */
1306 	for (fp = bucket->ftb_data; fp != NULL; fp = fp->ftp_next) {
1307 		if (fp->ftp_pid == pid && strcmp(fp->ftp_name, name) == 0 &&
1308 		    !fp->ftp_retired) {
1309 			mutex_enter(&fp->ftp_mtx);
1310 			mutex_exit(&bucket->ftb_mtx);
1311 			return (fp);
1312 		}
1313 	}
1314 
1315 	/*
1316 	 * Drop the bucket lock so we don't try to perform a sleeping
1317 	 * allocation under it.
1318 	 */
1319 	mutex_exit(&bucket->ftb_mtx);
1320 
1321 	/*
1322 	 * Make sure the process exists, isn't a child created as the result
1323 	 * of a vfork(2), and isn't a zombie (but may be in fork).
1324 	 */
1325 	mutex_enter(&pidlock);
1326 	if ((p = prfind(pid)) == NULL) {
1327 		mutex_exit(&pidlock);
1328 		return (NULL);
1329 	}
1330 	mutex_enter(&p->p_lock);
1331 	mutex_exit(&pidlock);
1332 	if (p->p_flag & (SVFORK | SEXITING)) {
1333 		mutex_exit(&p->p_lock);
1334 		return (NULL);
1335 	}
1336 
1337 	/*
1338 	 * Increment p_dtrace_probes so that the process knows to inform us
1339 	 * when it exits or execs. fasttrap_provider_free() decrements this
1340 	 * when we're done with this provider.
1341 	 */
1342 	p->p_dtrace_probes++;
1343 
1344 	/*
1345 	 * Grab the credentials for this process so we have
1346 	 * something to pass to dtrace_register().
1347 	 */
1348 	mutex_enter(&p->p_crlock);
1349 	crhold(p->p_cred);
1350 	cred = p->p_cred;
1351 	mutex_exit(&p->p_crlock);
1352 	mutex_exit(&p->p_lock);
1353 
1354 	new_fp = kmem_zalloc(sizeof (fasttrap_provider_t), KM_SLEEP);
1355 	new_fp->ftp_pid = pid;
1356 	new_fp->ftp_proc = fasttrap_proc_lookup(pid);
1357 
1358 	ASSERT(new_fp->ftp_proc != NULL);
1359 
1360 	mutex_enter(&bucket->ftb_mtx);
1361 
1362 	/*
1363 	 * Take another lap through the list to make sure a provider hasn't
1364 	 * been created for this pid while we weren't under the bucket lock.
1365 	 */
1366 	for (fp = bucket->ftb_data; fp != NULL; fp = fp->ftp_next) {
1367 		if (fp->ftp_pid == pid && strcmp(fp->ftp_name, name) == 0 &&
1368 		    !fp->ftp_retired) {
1369 			mutex_enter(&fp->ftp_mtx);
1370 			mutex_exit(&bucket->ftb_mtx);
1371 			fasttrap_provider_free(new_fp);
1372 			crfree(cred);
1373 			return (fp);
1374 		}
1375 	}
1376 
1377 	(void) strcpy(new_fp->ftp_name, name);
1378 
1379 	/*
1380 	 * Fail and return NULL if either the provider name is too long
1381 	 * or we fail to register this new provider with the DTrace
1382 	 * framework. Note that this is the only place we ever construct
1383 	 * the full provider name -- we keep it in pieces in the provider
1384 	 * structure.
1385 	 */
1386 	if (snprintf(provname, sizeof (provname), "%s%u", name, (uint_t)pid) >=
1387 	    sizeof (provname) ||
1388 	    dtrace_register(provname, pattr,
1389 	    DTRACE_PRIV_PROC | DTRACE_PRIV_OWNER | DTRACE_PRIV_ZONEOWNER, cred,
1390 	    pattr == &pid_attr ? &pid_pops : &usdt_pops, new_fp,
1391 	    &new_fp->ftp_provid) != 0) {
1392 		mutex_exit(&bucket->ftb_mtx);
1393 		fasttrap_provider_free(new_fp);
1394 		crfree(cred);
1395 		return (NULL);
1396 	}
1397 
1398 	new_fp->ftp_next = bucket->ftb_data;
1399 	bucket->ftb_data = new_fp;
1400 
1401 	mutex_enter(&new_fp->ftp_mtx);
1402 	mutex_exit(&bucket->ftb_mtx);
1403 
1404 	crfree(cred);
1405 	return (new_fp);
1406 }
1407 
1408 static void
1409 fasttrap_provider_free(fasttrap_provider_t *provider)
1410 {
1411 	pid_t pid = provider->ftp_pid;
1412 	proc_t *p;
1413 
1414 	/*
1415 	 * There need to be no associated enabled probes, no consumers
1416 	 * creating probes, and no meta providers referencing this provider.
1417 	 */
1418 	ASSERT(provider->ftp_rcount == 0);
1419 	ASSERT(provider->ftp_ccount == 0);
1420 	ASSERT(provider->ftp_mcount == 0);
1421 
1422 	/*
1423 	 * If this provider hasn't been retired, we need to explicitly drop the
1424 	 * count of active providers on the associated process structure.
1425 	 */
1426 	if (!provider->ftp_retired) {
1427 		atomic_add_64(&provider->ftp_proc->ftpc_acount, -1);
1428 		ASSERT(provider->ftp_proc->ftpc_acount <
1429 		    provider->ftp_proc->ftpc_rcount);
1430 	}
1431 
1432 	fasttrap_proc_release(provider->ftp_proc);
1433 
1434 	kmem_free(provider, sizeof (fasttrap_provider_t));
1435 
1436 	/*
1437 	 * Decrement p_dtrace_probes on the process whose provider we're
1438 	 * freeing. We don't have to worry about clobbering somone else's
1439 	 * modifications to it because we have locked the bucket that
1440 	 * corresponds to this process's hash chain in the provider hash
1441 	 * table. Don't sweat it if we can't find the process.
1442 	 */
1443 	mutex_enter(&pidlock);
1444 	if ((p = prfind(pid)) == NULL) {
1445 		mutex_exit(&pidlock);
1446 		return;
1447 	}
1448 
1449 	mutex_enter(&p->p_lock);
1450 	mutex_exit(&pidlock);
1451 
1452 	p->p_dtrace_probes--;
1453 	mutex_exit(&p->p_lock);
1454 }
1455 
1456 static void
1457 fasttrap_provider_retire(pid_t pid, const char *name, int mprov)
1458 {
1459 	fasttrap_provider_t *fp;
1460 	fasttrap_bucket_t *bucket;
1461 	dtrace_provider_id_t provid;
1462 
1463 	ASSERT(strlen(name) < sizeof (fp->ftp_name));
1464 
1465 	bucket = &fasttrap_provs.fth_table[FASTTRAP_PROVS_INDEX(pid, name)];
1466 	mutex_enter(&bucket->ftb_mtx);
1467 
1468 	for (fp = bucket->ftb_data; fp != NULL; fp = fp->ftp_next) {
1469 		if (fp->ftp_pid == pid && strcmp(fp->ftp_name, name) == 0 &&
1470 		    !fp->ftp_retired)
1471 			break;
1472 	}
1473 
1474 	if (fp == NULL) {
1475 		mutex_exit(&bucket->ftb_mtx);
1476 		return;
1477 	}
1478 
1479 	mutex_enter(&fp->ftp_mtx);
1480 	ASSERT(!mprov || fp->ftp_mcount > 0);
1481 	if (mprov && --fp->ftp_mcount != 0)  {
1482 		mutex_exit(&fp->ftp_mtx);
1483 		mutex_exit(&bucket->ftb_mtx);
1484 		return;
1485 	}
1486 
1487 	/*
1488 	 * Mark the provider to be removed in our post-processing step, mark it
1489 	 * retired, and drop the active count on its proc. Marking it indicates
1490 	 * that we should try to remove it; setting the retired flag indicates
1491 	 * that we're done with this provider; dropping the active the proc
1492 	 * releases our hold, and when this reaches zero (as it will during
1493 	 * exit or exec) the proc and associated providers become defunct.
1494 	 *
1495 	 * We obviously need to take the bucket lock before the provider lock
1496 	 * to perform the lookup, but we need to drop the provider lock
1497 	 * before calling into the DTrace framework since we acquire the
1498 	 * provider lock in callbacks invoked from the DTrace framework. The
1499 	 * bucket lock therefore protects the integrity of the provider hash
1500 	 * table.
1501 	 */
1502 	atomic_add_64(&fp->ftp_proc->ftpc_acount, -1);
1503 	ASSERT(fp->ftp_proc->ftpc_acount < fp->ftp_proc->ftpc_rcount);
1504 
1505 	fp->ftp_retired = 1;
1506 	fp->ftp_marked = 1;
1507 	provid = fp->ftp_provid;
1508 	mutex_exit(&fp->ftp_mtx);
1509 
1510 	/*
1511 	 * We don't have to worry about invalidating the same provider twice
1512 	 * since fasttrap_provider_lookup() will ignore provider that have
1513 	 * been marked as retired.
1514 	 */
1515 	dtrace_invalidate(provid);
1516 
1517 	mutex_exit(&bucket->ftb_mtx);
1518 
1519 	fasttrap_pid_cleanup();
1520 }
1521 
1522 static int
1523 fasttrap_uint32_cmp(const void *ap, const void *bp)
1524 {
1525 	return (*(const uint32_t *)ap - *(const uint32_t *)bp);
1526 }
1527 
1528 static int
1529 fasttrap_uint64_cmp(const void *ap, const void *bp)
1530 {
1531 	return (*(const uint64_t *)ap - *(const uint64_t *)bp);
1532 }
1533 
1534 static int
1535 fasttrap_add_probe(fasttrap_probe_spec_t *pdata)
1536 {
1537 	fasttrap_provider_t *provider;
1538 	fasttrap_probe_t *pp;
1539 	fasttrap_tracepoint_t *tp;
1540 	char *name;
1541 	int i, aframes, whack;
1542 
1543 	/*
1544 	 * There needs to be at least one desired trace point.
1545 	 */
1546 	if (pdata->ftps_noffs == 0)
1547 		return (EINVAL);
1548 
1549 	switch (pdata->ftps_type) {
1550 	case DTFTP_ENTRY:
1551 		name = "entry";
1552 		aframes = FASTTRAP_ENTRY_AFRAMES;
1553 		break;
1554 	case DTFTP_RETURN:
1555 		name = "return";
1556 		aframes = FASTTRAP_RETURN_AFRAMES;
1557 		break;
1558 	case DTFTP_OFFSETS:
1559 		name = NULL;
1560 		break;
1561 	default:
1562 		return (EINVAL);
1563 	}
1564 
1565 	if ((provider = fasttrap_provider_lookup(pdata->ftps_pid,
1566 	    FASTTRAP_PID_NAME, &pid_attr)) == NULL)
1567 		return (ESRCH);
1568 
1569 	/*
1570 	 * Increment this reference count to indicate that a consumer is
1571 	 * actively adding a new probe associated with this provider. This
1572 	 * prevents the provider from being deleted -- we'll need to check
1573 	 * for pending deletions when we drop this reference count.
1574 	 */
1575 	provider->ftp_ccount++;
1576 	mutex_exit(&provider->ftp_mtx);
1577 
1578 	/*
1579 	 * Grab the creation lock to ensure consistency between calls to
1580 	 * dtrace_probe_lookup() and dtrace_probe_create() in the face of
1581 	 * other threads creating probes. We must drop the provider lock
1582 	 * before taking this lock to avoid a three-way deadlock with the
1583 	 * DTrace framework.
1584 	 */
1585 	mutex_enter(&provider->ftp_cmtx);
1586 
1587 	if (name == NULL) {
1588 		for (i = 0; i < pdata->ftps_noffs; i++) {
1589 			char name_str[17];
1590 
1591 			(void) sprintf(name_str, "%llx",
1592 			    (unsigned long long)pdata->ftps_offs[i]);
1593 
1594 			if (dtrace_probe_lookup(provider->ftp_provid,
1595 			    pdata->ftps_mod, pdata->ftps_func, name_str) != 0)
1596 				continue;
1597 
1598 			atomic_add_32(&fasttrap_total, 1);
1599 
1600 			if (fasttrap_total > fasttrap_max) {
1601 				atomic_add_32(&fasttrap_total, -1);
1602 				goto no_mem;
1603 			}
1604 
1605 			pp = kmem_zalloc(sizeof (fasttrap_probe_t), KM_SLEEP);
1606 
1607 			pp->ftp_prov = provider;
1608 			pp->ftp_faddr = pdata->ftps_pc;
1609 			pp->ftp_fsize = pdata->ftps_size;
1610 			pp->ftp_pid = pdata->ftps_pid;
1611 			pp->ftp_ntps = 1;
1612 
1613 			tp = kmem_zalloc(sizeof (fasttrap_tracepoint_t),
1614 			    KM_SLEEP);
1615 
1616 			tp->ftt_proc = provider->ftp_proc;
1617 			tp->ftt_pc = pdata->ftps_offs[i] + pdata->ftps_pc;
1618 			tp->ftt_pid = pdata->ftps_pid;
1619 
1620 			pp->ftp_tps[0].fit_tp = tp;
1621 			pp->ftp_tps[0].fit_id.fti_probe = pp;
1622 			pp->ftp_tps[0].fit_id.fti_ptype = pdata->ftps_type;
1623 
1624 			pp->ftp_id = dtrace_probe_create(provider->ftp_provid,
1625 			    pdata->ftps_mod, pdata->ftps_func, name_str,
1626 			    FASTTRAP_OFFSET_AFRAMES, pp);
1627 		}
1628 
1629 	} else if (dtrace_probe_lookup(provider->ftp_provid, pdata->ftps_mod,
1630 	    pdata->ftps_func, name) == 0) {
1631 		atomic_add_32(&fasttrap_total, pdata->ftps_noffs);
1632 
1633 		if (fasttrap_total > fasttrap_max) {
1634 			atomic_add_32(&fasttrap_total, -pdata->ftps_noffs);
1635 			goto no_mem;
1636 		}
1637 
1638 		/*
1639 		 * Make sure all tracepoint program counter values are unique.
1640 		 * We later assume that each probe has exactly one tracepoint
1641 		 * for a given pc.
1642 		 */
1643 		qsort(pdata->ftps_offs, pdata->ftps_noffs,
1644 		    sizeof (uint64_t), fasttrap_uint64_cmp);
1645 		for (i = 1; i < pdata->ftps_noffs; i++) {
1646 			if (pdata->ftps_offs[i] > pdata->ftps_offs[i - 1])
1647 				continue;
1648 
1649 			atomic_add_32(&fasttrap_total, -pdata->ftps_noffs);
1650 			goto no_mem;
1651 		}
1652 
1653 		ASSERT(pdata->ftps_noffs > 0);
1654 		pp = kmem_zalloc(offsetof(fasttrap_probe_t,
1655 		    ftp_tps[pdata->ftps_noffs]), KM_SLEEP);
1656 
1657 		pp->ftp_prov = provider;
1658 		pp->ftp_faddr = pdata->ftps_pc;
1659 		pp->ftp_fsize = pdata->ftps_size;
1660 		pp->ftp_pid = pdata->ftps_pid;
1661 		pp->ftp_ntps = pdata->ftps_noffs;
1662 
1663 		for (i = 0; i < pdata->ftps_noffs; i++) {
1664 			tp = kmem_zalloc(sizeof (fasttrap_tracepoint_t),
1665 			    KM_SLEEP);
1666 
1667 			tp->ftt_proc = provider->ftp_proc;
1668 			tp->ftt_pc = pdata->ftps_offs[i] + pdata->ftps_pc;
1669 			tp->ftt_pid = pdata->ftps_pid;
1670 
1671 			pp->ftp_tps[i].fit_tp = tp;
1672 			pp->ftp_tps[i].fit_id.fti_probe = pp;
1673 			pp->ftp_tps[i].fit_id.fti_ptype = pdata->ftps_type;
1674 		}
1675 
1676 		pp->ftp_id = dtrace_probe_create(provider->ftp_provid,
1677 		    pdata->ftps_mod, pdata->ftps_func, name, aframes, pp);
1678 	}
1679 
1680 	mutex_exit(&provider->ftp_cmtx);
1681 
1682 	/*
1683 	 * We know that the provider is still valid since we incremented the
1684 	 * creation reference count. If someone tried to clean up this provider
1685 	 * while we were using it (e.g. because the process called exec(2) or
1686 	 * exit(2)), take note of that and try to clean it up now.
1687 	 */
1688 	mutex_enter(&provider->ftp_mtx);
1689 	provider->ftp_ccount--;
1690 	whack = provider->ftp_retired;
1691 	mutex_exit(&provider->ftp_mtx);
1692 
1693 	if (whack)
1694 		fasttrap_pid_cleanup();
1695 
1696 	return (0);
1697 
1698 no_mem:
1699 	/*
1700 	 * If we've exhausted the allowable resources, we'll try to remove
1701 	 * this provider to free some up. This is to cover the case where
1702 	 * the user has accidentally created many more probes than was
1703 	 * intended (e.g. pid123:::).
1704 	 */
1705 	mutex_exit(&provider->ftp_cmtx);
1706 	mutex_enter(&provider->ftp_mtx);
1707 	provider->ftp_ccount--;
1708 	provider->ftp_marked = 1;
1709 	mutex_exit(&provider->ftp_mtx);
1710 
1711 	fasttrap_pid_cleanup();
1712 
1713 	return (ENOMEM);
1714 }
1715 
1716 /*ARGSUSED*/
1717 static void *
1718 fasttrap_meta_provide(void *arg, dtrace_helper_provdesc_t *dhpv, pid_t pid)
1719 {
1720 	fasttrap_provider_t *provider;
1721 
1722 	/*
1723 	 * A 32-bit unsigned integer (like a pid for example) can be
1724 	 * expressed in 10 or fewer decimal digits. Make sure that we'll
1725 	 * have enough space for the provider name.
1726 	 */
1727 	if (strlen(dhpv->dthpv_provname) + 10 >=
1728 	    sizeof (provider->ftp_name)) {
1729 		cmn_err(CE_WARN, "failed to instantiate provider %s: "
1730 		    "name too long to accomodate pid", dhpv->dthpv_provname);
1731 		return (NULL);
1732 	}
1733 
1734 	/*
1735 	 * Don't let folks spoof the true pid provider.
1736 	 */
1737 	if (strcmp(dhpv->dthpv_provname, FASTTRAP_PID_NAME) == 0) {
1738 		cmn_err(CE_WARN, "failed to instantiate provider %s: "
1739 		    "%s is an invalid name", dhpv->dthpv_provname,
1740 		    FASTTRAP_PID_NAME);
1741 		return (NULL);
1742 	}
1743 
1744 	/*
1745 	 * The highest stability class that fasttrap supports is ISA; cap
1746 	 * the stability of the new provider accordingly.
1747 	 */
1748 	if (dhpv->dthpv_pattr.dtpa_provider.dtat_class > DTRACE_CLASS_ISA)
1749 		dhpv->dthpv_pattr.dtpa_provider.dtat_class = DTRACE_CLASS_ISA;
1750 	if (dhpv->dthpv_pattr.dtpa_mod.dtat_class > DTRACE_CLASS_ISA)
1751 		dhpv->dthpv_pattr.dtpa_mod.dtat_class = DTRACE_CLASS_ISA;
1752 	if (dhpv->dthpv_pattr.dtpa_func.dtat_class > DTRACE_CLASS_ISA)
1753 		dhpv->dthpv_pattr.dtpa_func.dtat_class = DTRACE_CLASS_ISA;
1754 	if (dhpv->dthpv_pattr.dtpa_name.dtat_class > DTRACE_CLASS_ISA)
1755 		dhpv->dthpv_pattr.dtpa_name.dtat_class = DTRACE_CLASS_ISA;
1756 	if (dhpv->dthpv_pattr.dtpa_args.dtat_class > DTRACE_CLASS_ISA)
1757 		dhpv->dthpv_pattr.dtpa_args.dtat_class = DTRACE_CLASS_ISA;
1758 
1759 	if ((provider = fasttrap_provider_lookup(pid, dhpv->dthpv_provname,
1760 	    &dhpv->dthpv_pattr)) == NULL) {
1761 		cmn_err(CE_WARN, "failed to instantiate provider %s for "
1762 		    "process %u",  dhpv->dthpv_provname, (uint_t)pid);
1763 		return (NULL);
1764 	}
1765 
1766 	/*
1767 	 * Up the meta provider count so this provider isn't removed until
1768 	 * the meta provider has been told to remove it.
1769 	 */
1770 	provider->ftp_mcount++;
1771 
1772 	mutex_exit(&provider->ftp_mtx);
1773 
1774 	return (provider);
1775 }
1776 
1777 /*ARGSUSED*/
1778 static void
1779 fasttrap_meta_create_probe(void *arg, void *parg,
1780     dtrace_helper_probedesc_t *dhpb)
1781 {
1782 	fasttrap_provider_t *provider = parg;
1783 	fasttrap_probe_t *pp;
1784 	fasttrap_tracepoint_t *tp;
1785 	int i, j;
1786 	uint32_t ntps;
1787 
1788 	/*
1789 	 * Since the meta provider count is non-zero we don't have to worry
1790 	 * about this provider disappearing.
1791 	 */
1792 	ASSERT(provider->ftp_mcount > 0);
1793 
1794 	/*
1795 	 * The offsets must be unique.
1796 	 */
1797 	qsort(dhpb->dthpb_offs, dhpb->dthpb_noffs, sizeof (uint32_t),
1798 	    fasttrap_uint32_cmp);
1799 	for (i = 1; i < dhpb->dthpb_noffs; i++) {
1800 		if (dhpb->dthpb_base + dhpb->dthpb_offs[i] <=
1801 		    dhpb->dthpb_base + dhpb->dthpb_offs[i - 1])
1802 			return;
1803 	}
1804 
1805 	qsort(dhpb->dthpb_enoffs, dhpb->dthpb_nenoffs, sizeof (uint32_t),
1806 	    fasttrap_uint32_cmp);
1807 	for (i = 1; i < dhpb->dthpb_nenoffs; i++) {
1808 		if (dhpb->dthpb_base + dhpb->dthpb_enoffs[i] <=
1809 		    dhpb->dthpb_base + dhpb->dthpb_enoffs[i - 1])
1810 			return;
1811 	}
1812 
1813 	/*
1814 	 * Grab the creation lock to ensure consistency between calls to
1815 	 * dtrace_probe_lookup() and dtrace_probe_create() in the face of
1816 	 * other threads creating probes.
1817 	 */
1818 	mutex_enter(&provider->ftp_cmtx);
1819 
1820 	if (dtrace_probe_lookup(provider->ftp_provid, dhpb->dthpb_mod,
1821 	    dhpb->dthpb_func, dhpb->dthpb_name) != 0) {
1822 		mutex_exit(&provider->ftp_cmtx);
1823 		return;
1824 	}
1825 
1826 	ntps = dhpb->dthpb_noffs + dhpb->dthpb_nenoffs;
1827 	ASSERT(ntps > 0);
1828 
1829 	atomic_add_32(&fasttrap_total, ntps);
1830 
1831 	if (fasttrap_total > fasttrap_max) {
1832 		atomic_add_32(&fasttrap_total, -ntps);
1833 		mutex_exit(&provider->ftp_cmtx);
1834 		return;
1835 	}
1836 
1837 	pp = kmem_zalloc(offsetof(fasttrap_probe_t, ftp_tps[ntps]), KM_SLEEP);
1838 
1839 	pp->ftp_prov = provider;
1840 	pp->ftp_pid = provider->ftp_pid;
1841 	pp->ftp_ntps = ntps;
1842 	pp->ftp_nargs = dhpb->dthpb_xargc;
1843 	pp->ftp_xtypes = dhpb->dthpb_xtypes;
1844 	pp->ftp_ntypes = dhpb->dthpb_ntypes;
1845 
1846 	/*
1847 	 * First create a tracepoint for each actual point of interest.
1848 	 */
1849 	for (i = 0; i < dhpb->dthpb_noffs; i++) {
1850 		tp = kmem_zalloc(sizeof (fasttrap_tracepoint_t), KM_SLEEP);
1851 
1852 		tp->ftt_proc = provider->ftp_proc;
1853 		tp->ftt_pc = dhpb->dthpb_base + dhpb->dthpb_offs[i];
1854 		tp->ftt_pid = provider->ftp_pid;
1855 
1856 		pp->ftp_tps[i].fit_tp = tp;
1857 		pp->ftp_tps[i].fit_id.fti_probe = pp;
1858 #ifdef __sparc
1859 		pp->ftp_tps[i].fit_id.fti_ptype = DTFTP_POST_OFFSETS;
1860 #else
1861 		pp->ftp_tps[i].fit_id.fti_ptype = DTFTP_OFFSETS;
1862 #endif
1863 	}
1864 
1865 	/*
1866 	 * Then create a tracepoint for each is-enabled point.
1867 	 */
1868 	for (j = 0; i < ntps; i++, j++) {
1869 		tp = kmem_zalloc(sizeof (fasttrap_tracepoint_t), KM_SLEEP);
1870 
1871 		tp->ftt_proc = provider->ftp_proc;
1872 		tp->ftt_pc = dhpb->dthpb_base + dhpb->dthpb_enoffs[j];
1873 		tp->ftt_pid = provider->ftp_pid;
1874 
1875 		pp->ftp_tps[i].fit_tp = tp;
1876 		pp->ftp_tps[i].fit_id.fti_probe = pp;
1877 		pp->ftp_tps[i].fit_id.fti_ptype = DTFTP_IS_ENABLED;
1878 	}
1879 
1880 	/*
1881 	 * If the arguments are shuffled around we set the argument remapping
1882 	 * table. Later, when the probe fires, we only remap the arguments
1883 	 * if the table is non-NULL.
1884 	 */
1885 	for (i = 0; i < dhpb->dthpb_xargc; i++) {
1886 		if (dhpb->dthpb_args[i] != i) {
1887 			pp->ftp_argmap = dhpb->dthpb_args;
1888 			break;
1889 		}
1890 	}
1891 
1892 	/*
1893 	 * The probe is fully constructed -- register it with DTrace.
1894 	 */
1895 	pp->ftp_id = dtrace_probe_create(provider->ftp_provid, dhpb->dthpb_mod,
1896 	    dhpb->dthpb_func, dhpb->dthpb_name, FASTTRAP_OFFSET_AFRAMES, pp);
1897 
1898 	mutex_exit(&provider->ftp_cmtx);
1899 }
1900 
1901 /*ARGSUSED*/
1902 static void
1903 fasttrap_meta_remove(void *arg, dtrace_helper_provdesc_t *dhpv, pid_t pid)
1904 {
1905 	/*
1906 	 * Clean up the USDT provider. There may be active consumers of the
1907 	 * provider busy adding probes, no damage will actually befall the
1908 	 * provider until that count has dropped to zero. This just puts
1909 	 * the provider on death row.
1910 	 */
1911 	fasttrap_provider_retire(pid, dhpv->dthpv_provname, 1);
1912 }
1913 
1914 static dtrace_mops_t fasttrap_mops = {
1915 	fasttrap_meta_create_probe,
1916 	fasttrap_meta_provide,
1917 	fasttrap_meta_remove
1918 };
1919 
1920 /*ARGSUSED*/
1921 static int
1922 fasttrap_open(dev_t *devp, int flag, int otyp, cred_t *cred_p)
1923 {
1924 	return (0);
1925 }
1926 
1927 /*ARGSUSED*/
1928 static int
1929 fasttrap_ioctl(dev_t dev, int cmd, intptr_t arg, int md, cred_t *cr, int *rv)
1930 {
1931 	if (!dtrace_attached())
1932 		return (EAGAIN);
1933 
1934 	if (cmd == FASTTRAPIOC_MAKEPROBE) {
1935 		fasttrap_probe_spec_t *uprobe = (void *)arg;
1936 		fasttrap_probe_spec_t *probe;
1937 		uint64_t noffs;
1938 		size_t size;
1939 		int ret;
1940 		char *c;
1941 
1942 		if (copyin(&uprobe->ftps_noffs, &noffs,
1943 		    sizeof (uprobe->ftps_noffs)))
1944 			return (EFAULT);
1945 
1946 		/*
1947 		 * Probes must have at least one tracepoint.
1948 		 */
1949 		if (noffs == 0)
1950 			return (EINVAL);
1951 
1952 		size = sizeof (fasttrap_probe_spec_t) +
1953 		    sizeof (probe->ftps_offs[0]) * (noffs - 1);
1954 
1955 		if (size > 1024 * 1024)
1956 			return (ENOMEM);
1957 
1958 		probe = kmem_alloc(size, KM_SLEEP);
1959 
1960 		if (copyin(uprobe, probe, size) != 0 ||
1961 		    probe->ftps_noffs != noffs) {
1962 			kmem_free(probe, size);
1963 			return (EFAULT);
1964 		}
1965 
1966 		/*
1967 		 * Verify that the function and module strings contain no
1968 		 * funny characters.
1969 		 */
1970 		for (c = &probe->ftps_func[0]; *c != '\0'; c++) {
1971 			if (*c < 0x20 || 0x7f <= *c) {
1972 				ret = EINVAL;
1973 				goto err;
1974 			}
1975 		}
1976 
1977 		for (c = &probe->ftps_mod[0]; *c != '\0'; c++) {
1978 			if (*c < 0x20 || 0x7f <= *c) {
1979 				ret = EINVAL;
1980 				goto err;
1981 			}
1982 		}
1983 
1984 		if (!PRIV_POLICY_CHOICE(cr, PRIV_ALL, B_FALSE)) {
1985 			proc_t *p;
1986 			pid_t pid = probe->ftps_pid;
1987 
1988 			mutex_enter(&pidlock);
1989 			/*
1990 			 * Report an error if the process doesn't exist
1991 			 * or is actively being birthed.
1992 			 */
1993 			if ((p = prfind(pid)) == NULL || p->p_stat == SIDL) {
1994 				mutex_exit(&pidlock);
1995 				return (ESRCH);
1996 			}
1997 			mutex_enter(&p->p_lock);
1998 			mutex_exit(&pidlock);
1999 
2000 			if ((ret = priv_proc_cred_perm(cr, p, NULL,
2001 			    VREAD | VWRITE)) != 0) {
2002 				mutex_exit(&p->p_lock);
2003 				return (ret);
2004 			}
2005 
2006 			mutex_exit(&p->p_lock);
2007 		}
2008 
2009 		ret = fasttrap_add_probe(probe);
2010 err:
2011 		kmem_free(probe, size);
2012 
2013 		return (ret);
2014 
2015 	} else if (cmd == FASTTRAPIOC_GETINSTR) {
2016 		fasttrap_instr_query_t instr;
2017 		fasttrap_tracepoint_t *tp;
2018 		uint_t index;
2019 		int ret;
2020 
2021 		if (copyin((void *)arg, &instr, sizeof (instr)) != 0)
2022 			return (EFAULT);
2023 
2024 		if (!PRIV_POLICY_CHOICE(cr, PRIV_ALL, B_FALSE)) {
2025 			proc_t *p;
2026 			pid_t pid = instr.ftiq_pid;
2027 
2028 			mutex_enter(&pidlock);
2029 			/*
2030 			 * Report an error if the process doesn't exist
2031 			 * or is actively being birthed.
2032 			 */
2033 			if ((p = prfind(pid)) == NULL || p->p_stat == SIDL) {
2034 				mutex_exit(&pidlock);
2035 				return (ESRCH);
2036 			}
2037 			mutex_enter(&p->p_lock);
2038 			mutex_exit(&pidlock);
2039 
2040 			if ((ret = priv_proc_cred_perm(cr, p, NULL,
2041 			    VREAD)) != 0) {
2042 				mutex_exit(&p->p_lock);
2043 				return (ret);
2044 			}
2045 
2046 			mutex_exit(&p->p_lock);
2047 		}
2048 
2049 		index = FASTTRAP_TPOINTS_INDEX(instr.ftiq_pid, instr.ftiq_pc);
2050 
2051 		mutex_enter(&fasttrap_tpoints.fth_table[index].ftb_mtx);
2052 		tp = fasttrap_tpoints.fth_table[index].ftb_data;
2053 		while (tp != NULL) {
2054 			if (instr.ftiq_pid == tp->ftt_pid &&
2055 			    instr.ftiq_pc == tp->ftt_pc &&
2056 			    tp->ftt_proc->ftpc_acount != 0)
2057 				break;
2058 
2059 			tp = tp->ftt_next;
2060 		}
2061 
2062 		if (tp == NULL) {
2063 			mutex_exit(&fasttrap_tpoints.fth_table[index].ftb_mtx);
2064 			return (ENOENT);
2065 		}
2066 
2067 		bcopy(&tp->ftt_instr, &instr.ftiq_instr,
2068 		    sizeof (instr.ftiq_instr));
2069 		mutex_exit(&fasttrap_tpoints.fth_table[index].ftb_mtx);
2070 
2071 		if (copyout(&instr, (void *)arg, sizeof (instr)) != 0)
2072 			return (EFAULT);
2073 
2074 		return (0);
2075 	}
2076 
2077 	return (EINVAL);
2078 }
2079 
2080 static struct cb_ops fasttrap_cb_ops = {
2081 	fasttrap_open,		/* open */
2082 	nodev,			/* close */
2083 	nulldev,		/* strategy */
2084 	nulldev,		/* print */
2085 	nodev,			/* dump */
2086 	nodev,			/* read */
2087 	nodev,			/* write */
2088 	fasttrap_ioctl,		/* ioctl */
2089 	nodev,			/* devmap */
2090 	nodev,			/* mmap */
2091 	nodev,			/* segmap */
2092 	nochpoll,		/* poll */
2093 	ddi_prop_op,		/* cb_prop_op */
2094 	0,			/* streamtab  */
2095 	D_NEW | D_MP		/* Driver compatibility flag */
2096 };
2097 
2098 /*ARGSUSED*/
2099 static int
2100 fasttrap_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
2101 {
2102 	int error;
2103 
2104 	switch (infocmd) {
2105 	case DDI_INFO_DEVT2DEVINFO:
2106 		*result = (void *)fasttrap_devi;
2107 		error = DDI_SUCCESS;
2108 		break;
2109 	case DDI_INFO_DEVT2INSTANCE:
2110 		*result = (void *)0;
2111 		error = DDI_SUCCESS;
2112 		break;
2113 	default:
2114 		error = DDI_FAILURE;
2115 	}
2116 	return (error);
2117 }
2118 
2119 static int
2120 fasttrap_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
2121 {
2122 	ulong_t nent;
2123 
2124 	switch (cmd) {
2125 	case DDI_ATTACH:
2126 		break;
2127 	case DDI_RESUME:
2128 		return (DDI_SUCCESS);
2129 	default:
2130 		return (DDI_FAILURE);
2131 	}
2132 
2133 	if (ddi_create_minor_node(devi, "fasttrap", S_IFCHR, 0,
2134 	    DDI_PSEUDO, NULL) == DDI_FAILURE) {
2135 		ddi_remove_minor_node(devi, NULL);
2136 		return (DDI_FAILURE);
2137 	}
2138 
2139 	ddi_report_dev(devi);
2140 	fasttrap_devi = devi;
2141 
2142 	/*
2143 	 * Install our hooks into fork(2), exec(2), and exit(2).
2144 	 */
2145 	dtrace_fasttrap_fork_ptr = &fasttrap_fork;
2146 	dtrace_fasttrap_exit_ptr = &fasttrap_exec_exit;
2147 	dtrace_fasttrap_exec_ptr = &fasttrap_exec_exit;
2148 
2149 	fasttrap_max = ddi_getprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
2150 	    "fasttrap-max-probes", FASTTRAP_MAX_DEFAULT);
2151 	fasttrap_total = 0;
2152 
2153 	/*
2154 	 * Conjure up the tracepoints hashtable...
2155 	 */
2156 	nent = ddi_getprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
2157 	    "fasttrap-hash-size", FASTTRAP_TPOINTS_DEFAULT_SIZE);
2158 
2159 	if (nent == 0 || nent > 0x1000000)
2160 		nent = FASTTRAP_TPOINTS_DEFAULT_SIZE;
2161 
2162 	if ((nent & (nent - 1)) == 0)
2163 		fasttrap_tpoints.fth_nent = nent;
2164 	else
2165 		fasttrap_tpoints.fth_nent = 1 << fasttrap_highbit(nent);
2166 	ASSERT(fasttrap_tpoints.fth_nent > 0);
2167 	fasttrap_tpoints.fth_mask = fasttrap_tpoints.fth_nent - 1;
2168 	fasttrap_tpoints.fth_table = kmem_zalloc(fasttrap_tpoints.fth_nent *
2169 	    sizeof (fasttrap_bucket_t), KM_SLEEP);
2170 
2171 	/*
2172 	 * ... and the providers hash table...
2173 	 */
2174 	nent = FASTTRAP_PROVIDERS_DEFAULT_SIZE;
2175 	if ((nent & (nent - 1)) == 0)
2176 		fasttrap_provs.fth_nent = nent;
2177 	else
2178 		fasttrap_provs.fth_nent = 1 << fasttrap_highbit(nent);
2179 	ASSERT(fasttrap_provs.fth_nent > 0);
2180 	fasttrap_provs.fth_mask = fasttrap_provs.fth_nent - 1;
2181 	fasttrap_provs.fth_table = kmem_zalloc(fasttrap_provs.fth_nent *
2182 	    sizeof (fasttrap_bucket_t), KM_SLEEP);
2183 
2184 	/*
2185 	 * ... and the procs hash table.
2186 	 */
2187 	nent = FASTTRAP_PROCS_DEFAULT_SIZE;
2188 	if ((nent & (nent - 1)) == 0)
2189 		fasttrap_procs.fth_nent = nent;
2190 	else
2191 		fasttrap_procs.fth_nent = 1 << fasttrap_highbit(nent);
2192 	ASSERT(fasttrap_procs.fth_nent > 0);
2193 	fasttrap_procs.fth_mask = fasttrap_procs.fth_nent - 1;
2194 	fasttrap_procs.fth_table = kmem_zalloc(fasttrap_procs.fth_nent *
2195 	    sizeof (fasttrap_bucket_t), KM_SLEEP);
2196 
2197 	(void) dtrace_meta_register("fasttrap", &fasttrap_mops, NULL,
2198 	    &fasttrap_meta_id);
2199 
2200 	return (DDI_SUCCESS);
2201 }
2202 
2203 static int
2204 fasttrap_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
2205 {
2206 	int i, fail = 0;
2207 	timeout_id_t tmp;
2208 
2209 	switch (cmd) {
2210 	case DDI_DETACH:
2211 		break;
2212 	case DDI_SUSPEND:
2213 		return (DDI_SUCCESS);
2214 	default:
2215 		return (DDI_FAILURE);
2216 	}
2217 
2218 	/*
2219 	 * Unregister the meta-provider to make sure no new fasttrap-
2220 	 * managed providers come along while we're trying to close up
2221 	 * shop. If we fail to detach, we'll need to re-register as a
2222 	 * meta-provider. We can fail to unregister as a meta-provider
2223 	 * if providers we manage still exist.
2224 	 */
2225 	if (fasttrap_meta_id != DTRACE_METAPROVNONE &&
2226 	    dtrace_meta_unregister(fasttrap_meta_id) != 0)
2227 		return (DDI_FAILURE);
2228 
2229 	/*
2230 	 * Prevent any new timeouts from running by setting fasttrap_timeout
2231 	 * to a non-zero value, and wait for the current timeout to complete.
2232 	 */
2233 	mutex_enter(&fasttrap_cleanup_mtx);
2234 	fasttrap_cleanup_work = 0;
2235 
2236 	while (fasttrap_timeout != (timeout_id_t)1) {
2237 		tmp = fasttrap_timeout;
2238 		fasttrap_timeout = (timeout_id_t)1;
2239 
2240 		if (tmp != 0) {
2241 			mutex_exit(&fasttrap_cleanup_mtx);
2242 			(void) untimeout(tmp);
2243 			mutex_enter(&fasttrap_cleanup_mtx);
2244 		}
2245 	}
2246 
2247 	fasttrap_cleanup_work = 0;
2248 	mutex_exit(&fasttrap_cleanup_mtx);
2249 
2250 	/*
2251 	 * Iterate over all of our providers. If there's still a process
2252 	 * that corresponds to that pid, fail to detach.
2253 	 */
2254 	for (i = 0; i < fasttrap_provs.fth_nent; i++) {
2255 		fasttrap_provider_t **fpp, *fp;
2256 		fasttrap_bucket_t *bucket = &fasttrap_provs.fth_table[i];
2257 
2258 		mutex_enter(&bucket->ftb_mtx);
2259 		fpp = (fasttrap_provider_t **)&bucket->ftb_data;
2260 		while ((fp = *fpp) != NULL) {
2261 			/*
2262 			 * Acquire and release the lock as a simple way of
2263 			 * waiting for any other consumer to finish with
2264 			 * this provider. A thread must first acquire the
2265 			 * bucket lock so there's no chance of another thread
2266 			 * blocking on the provider's lock.
2267 			 */
2268 			mutex_enter(&fp->ftp_mtx);
2269 			mutex_exit(&fp->ftp_mtx);
2270 
2271 			if (dtrace_unregister(fp->ftp_provid) != 0) {
2272 				fail = 1;
2273 				fpp = &fp->ftp_next;
2274 			} else {
2275 				*fpp = fp->ftp_next;
2276 				fasttrap_provider_free(fp);
2277 			}
2278 		}
2279 
2280 		mutex_exit(&bucket->ftb_mtx);
2281 	}
2282 
2283 	if (fail) {
2284 		uint_t work;
2285 		/*
2286 		 * If we're failing to detach, we need to unblock timeouts
2287 		 * and start a new timeout if any work has accumulated while
2288 		 * we've been unsuccessfully trying to detach.
2289 		 */
2290 		mutex_enter(&fasttrap_cleanup_mtx);
2291 		fasttrap_timeout = 0;
2292 		work = fasttrap_cleanup_work;
2293 		mutex_exit(&fasttrap_cleanup_mtx);
2294 
2295 		if (work)
2296 			fasttrap_pid_cleanup();
2297 
2298 		(void) dtrace_meta_register("fasttrap", &fasttrap_mops, NULL,
2299 		    &fasttrap_meta_id);
2300 
2301 		return (DDI_FAILURE);
2302 	}
2303 
2304 #ifdef DEBUG
2305 	mutex_enter(&fasttrap_count_mtx);
2306 	ASSERT(fasttrap_pid_count == 0);
2307 	mutex_exit(&fasttrap_count_mtx);
2308 #endif
2309 
2310 	kmem_free(fasttrap_tpoints.fth_table,
2311 	    fasttrap_tpoints.fth_nent * sizeof (fasttrap_bucket_t));
2312 	fasttrap_tpoints.fth_nent = 0;
2313 
2314 	kmem_free(fasttrap_provs.fth_table,
2315 	    fasttrap_provs.fth_nent * sizeof (fasttrap_bucket_t));
2316 	fasttrap_provs.fth_nent = 0;
2317 
2318 	kmem_free(fasttrap_procs.fth_table,
2319 	    fasttrap_procs.fth_nent * sizeof (fasttrap_bucket_t));
2320 	fasttrap_procs.fth_nent = 0;
2321 
2322 	/*
2323 	 * We know there are no tracepoints in any process anywhere in
2324 	 * the system so there is no process which has its p_dtrace_count
2325 	 * greater than zero, therefore we know that no thread can actively
2326 	 * be executing code in fasttrap_fork(). Similarly for p_dtrace_probes
2327 	 * and fasttrap_exec() and fasttrap_exit().
2328 	 */
2329 	ASSERT(dtrace_fasttrap_fork_ptr == &fasttrap_fork);
2330 	dtrace_fasttrap_fork_ptr = NULL;
2331 
2332 	ASSERT(dtrace_fasttrap_exec_ptr == &fasttrap_exec_exit);
2333 	dtrace_fasttrap_exec_ptr = NULL;
2334 
2335 	ASSERT(dtrace_fasttrap_exit_ptr == &fasttrap_exec_exit);
2336 	dtrace_fasttrap_exit_ptr = NULL;
2337 
2338 	ddi_remove_minor_node(devi, NULL);
2339 
2340 	return (DDI_SUCCESS);
2341 }
2342 
2343 static struct dev_ops fasttrap_ops = {
2344 	DEVO_REV,		/* devo_rev */
2345 	0,			/* refcnt */
2346 	fasttrap_info,		/* get_dev_info */
2347 	nulldev,		/* identify */
2348 	nulldev,		/* probe */
2349 	fasttrap_attach,	/* attach */
2350 	fasttrap_detach,	/* detach */
2351 	nodev,			/* reset */
2352 	&fasttrap_cb_ops,	/* driver operations */
2353 	NULL,			/* bus operations */
2354 	nodev,			/* dev power */
2355 	ddi_quiesce_not_needed,		/* quiesce */
2356 };
2357 
2358 /*
2359  * Module linkage information for the kernel.
2360  */
2361 static struct modldrv modldrv = {
2362 	&mod_driverops,		/* module type (this is a pseudo driver) */
2363 	"Fasttrap Tracing",	/* name of module */
2364 	&fasttrap_ops,		/* driver ops */
2365 };
2366 
2367 static struct modlinkage modlinkage = {
2368 	MODREV_1,
2369 	(void *)&modldrv,
2370 	NULL
2371 };
2372 
2373 int
2374 _init(void)
2375 {
2376 	return (mod_install(&modlinkage));
2377 }
2378 
2379 int
2380 _info(struct modinfo *modinfop)
2381 {
2382 	return (mod_info(&modlinkage, modinfop));
2383 }
2384 
2385 int
2386 _fini(void)
2387 {
2388 	return (mod_remove(&modlinkage));
2389 }
2390