]> git.saurik.com Git - apple/xnu.git/blame - bsd/dev/arm/dtrace_subr_arm.c
xnu-7195.81.3.tar.gz
[apple/xnu.git] / bsd / dev / arm / dtrace_subr_arm.c
CommitLineData
5ba3f43e
A
1/*
2 * Copyright (c) 2007 Apple Inc. All rights reserved.
3 */
4/*
5 * CDDL HEADER START
6 *
7 * The contents of this file are subject to the terms of the
8 * Common Development and Distribution License, Version 1.0 only
9 * (the "License"). You may not use this file except in compliance
10 * with the License.
11 *
12 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
13 * or http://www.opensolaris.org/os/licensing.
14 * See the License for the specific language governing permissions
15 * and limitations under the License.
16 *
17 * When distributing Covered Code, include this CDDL HEADER in each
18 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
19 * If applicable, add the following below this CDDL HEADER, with the
20 * fields enclosed by brackets "[]" replaced with your own identifying
21 * information: Portions Copyright [yyyy] [name of copyright owner]
22 *
23 * CDDL HEADER END
24 */
25/*
26 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
27 * Use is subject to license terms.
28 */
29
5ba3f43e
A
30#include <sys/dtrace.h>
31#include <sys/dtrace_glue.h>
32#include <sys/dtrace_impl.h>
33#include <sys/fasttrap.h>
34#include <sys/vm.h>
35#include <sys/user.h>
36#include <sys/kauth.h>
37#include <kern/debug.h>
38#include <arm/proc_reg.h>
39
0a7de745 40int (*dtrace_pid_probe_ptr)(arm_saved_state_t *);
5ba3f43e
A
41int (*dtrace_return_probe_ptr) (arm_saved_state_t *);
42
43kern_return_t
44dtrace_user_probe(arm_saved_state_t *, unsigned int);
45
46kern_return_t
47dtrace_user_probe(arm_saved_state_t *regs, unsigned int instr)
48{
49 /*
50 * FIXME
51 *
52 * The only call path into this method is always a user trap.
53 * We don't need to test for user trap, but should assert it.
54 */
55
56 lck_rw_t *rwp;
57 struct proc *p = current_proc();
58
59 uthread_t uthread = (uthread_t)get_bsdthread_info(current_thread());
60
61 kauth_cred_uthread_update(uthread, p);
62
63 if (((regs->cpsr & PSR_TF) && ((uint16_t) instr) == FASTTRAP_THUMB_RET_INSTR) ||
64 ((uint32_t) instr == FASTTRAP_ARM_RET_INSTR)) {
65 uint8_t step = uthread->t_dtrace_step;
66 uint8_t ret = uthread->t_dtrace_ret;
67 user_addr_t npc = uthread->t_dtrace_npc;
68
69 if (uthread->t_dtrace_ast) {
70 printf("dtrace_user_probe() should be calling aston()\n");
71 // aston(thread);
72 // uthread->t_sig_check = 1;
73 }
74
75 /*
76 * Clear all user tracing flags.
77 */
78 uthread->t_dtrace_ft = 0;
79
80 /*
81 * If we weren't expecting to take a return probe trap, kill
82 * the process as though it had just executed an unassigned
83 * trap instruction.
84 */
85 if (step == 0) {
86 /*
0a7de745 87 * APPLE NOTE: We're returning KERN_FAILURE, which causes
5ba3f43e
A
88 * the generic signal handling code to take over, which will effectively
89 * deliver a EXC_BAD_INSTRUCTION to the user process.
90 */
91 return KERN_FAILURE;
0a7de745 92 }
5ba3f43e
A
93
94 /*
95 * If we hit this trap unrelated to a return probe, we're
96 * just here to reset the AST flag since we deferred a signal
97 * until after we logically single-stepped the instruction we
98 * copied out.
99 */
100 if (ret == 0) {
101 regs->pc = npc;
102 return KERN_SUCCESS;
103 }
104
105 /*
106 * We need to wait until after we've called the
107 * dtrace_return_probe_ptr function pointer to step the pc.
108 */
109 rwp = &CPU->cpu_ft_lock;
110 lck_rw_lock_shared(rwp);
111
0a7de745 112 if (dtrace_return_probe_ptr != NULL) {
5ba3f43e 113 (void) (*dtrace_return_probe_ptr)(regs);
0a7de745 114 }
5ba3f43e
A
115 lck_rw_unlock_shared(rwp);
116
117 regs->pc = npc;
118
119 return KERN_SUCCESS;
120 } else {
121 rwp = &CPU->cpu_ft_lock;
122
123 /*
124 * The DTrace fasttrap provider uses a trap,
125 * FASTTRAP_{ARM,THUMB}_INSTR. We let
126 * DTrace take the first crack at handling
127 * this trap; if it's not a probe that DTrace knows about,
128 * we call into the trap() routine to handle it like a
129 * breakpoint placed by a conventional debugger.
130 */
131
132 /*
133 * APPLE NOTE: I believe the purpose of the reader/writers lock
134 * is thus: There are times which dtrace needs to prevent calling
135 * dtrace_pid_probe_ptr(). Sun's original impl grabbed a plain
136 * mutex here. However, that serialized all probe calls, and
137 * destroyed MP behavior. So now they use a RW lock, with probes
138 * as readers, and the top level synchronization as a writer.
139 */
140 lck_rw_lock_shared(rwp);
141 if (dtrace_pid_probe_ptr != NULL &&
142 (*dtrace_pid_probe_ptr)(regs) == 0) {
143 lck_rw_unlock_shared(rwp);
144 return KERN_SUCCESS;
145 }
146 lck_rw_unlock_shared(rwp);
147
148 /*
149 * If the instruction that caused the breakpoint trap doesn't
150 * look like our trap anymore, it may be that this tracepoint
151 * was removed just after the user thread executed it. In
152 * that case, return to user land to retry the instuction.
153 *
154 * Note that the PC points to the instruction that caused the fault.
155 */
156 if (regs->cpsr & PSR_TF) {
157 uint16_t instr_check;
158 if (fuword16(regs->pc, &instr_check) == 0 && instr_check != FASTTRAP_THUMB_INSTR) {
159 return KERN_SUCCESS;
160 }
161 } else {
162 uint32_t instr_check;
163 if (fuword32(regs->pc, &instr_check) == 0 && instr_check != FASTTRAP_ARM_INSTR) {
164 return KERN_SUCCESS;
165 }
166 }
167 }
168
169 return KERN_FAILURE;
170}