xref: /freebsd/sys/kern/subr_trap.c (revision 7cd2dcf07629713e5a3d60472cfe4701b705a167)
1 /*-
2  * Copyright (C) 1994, David Greenman
3  * Copyright (c) 1990, 1993
4  *	The Regents of the University of California.  All rights reserved.
5  * Copyright (c) 2007 The FreeBSD Foundation
6  *
7  * This code is derived from software contributed to Berkeley by
8  * the University of Utah, and William Jolitz.
9  *
10  * Portions of this software were developed by A. Joseph Koshy under
11  * sponsorship from the FreeBSD Foundation and Google, Inc.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. All advertising materials mentioning features or use of this software
22  *    must display the following acknowledgement:
23  *	This product includes software developed by the University of
24  *	California, Berkeley and its contributors.
25  * 4. Neither the name of the University nor the names of its contributors
26  *    may be used to endorse or promote products derived from this software
27  *    without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39  * SUCH DAMAGE.
40  *
41  *	from: @(#)trap.c	7.4 (Berkeley) 5/13/91
42  */
43 
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
46 
47 #include "opt_hwpmc_hooks.h"
48 #include "opt_ktrace.h"
49 #include "opt_kdtrace.h"
50 #include "opt_sched.h"
51 
52 #include <sys/param.h>
53 #include <sys/bus.h>
54 #include <sys/capability.h>
55 #include <sys/kernel.h>
56 #include <sys/lock.h>
57 #include <sys/mutex.h>
58 #include <sys/pmckern.h>
59 #include <sys/proc.h>
60 #include <sys/ktr.h>
61 #include <sys/pioctl.h>
62 #include <sys/ptrace.h>
63 #include <sys/resourcevar.h>
64 #include <sys/sched.h>
65 #include <sys/signalvar.h>
66 #include <sys/syscall.h>
67 #include <sys/syscallsubr.h>
68 #include <sys/sysent.h>
69 #include <sys/systm.h>
70 #include <sys/vmmeter.h>
71 #ifdef KTRACE
72 #include <sys/uio.h>
73 #include <sys/ktrace.h>
74 #endif
75 #include <security/audit/audit.h>
76 
77 #include <machine/cpu.h>
78 
79 #ifdef VIMAGE
80 #include <net/vnet.h>
81 #endif
82 
83 #ifdef XEN
84 #include <vm/vm.h>
85 #include <vm/vm_param.h>
86 #include <vm/pmap.h>
87 #endif
88 
89 #ifdef	HWPMC_HOOKS
90 #include <sys/pmckern.h>
91 #endif
92 
93 #include <security/mac/mac_framework.h>
94 
95 /*
96  * Define the code needed before returning to user mode, for trap and
97  * syscall.
98  */
99 void
100 userret(struct thread *td, struct trapframe *frame)
101 {
102 	struct proc *p = td->td_proc;
103 #ifdef	RACCT
104 	int sig;
105 #endif
106 
107 	CTR3(KTR_SYSC, "userret: thread %p (pid %d, %s)", td, p->p_pid,
108             td->td_name);
109 	KASSERT((p->p_flag & P_WEXIT) == 0,
110 	    ("Exiting process returns to usermode"));
111 #if 0
112 #ifdef DIAGNOSTIC
113 	/* Check that we called signotify() enough. */
114 	PROC_LOCK(p);
115 	thread_lock(td);
116 	if (SIGPENDING(td) && ((td->td_flags & TDF_NEEDSIGCHK) == 0 ||
117 	    (td->td_flags & TDF_ASTPENDING) == 0))
118 		printf("failed to set signal flags properly for ast()\n");
119 	thread_unlock(td);
120 	PROC_UNLOCK(p);
121 #endif
122 #endif
123 #ifdef KTRACE
124 	KTRUSERRET(td);
125 #endif
126 	/*
127 	 * If this thread tickled GEOM, we need to wait for the giggling to
128 	 * stop before we return to userland
129 	 */
130 	if (td->td_pflags & TDP_GEOM)
131 		g_waitidle();
132 
133 	/*
134 	 * Charge system time if profiling.
135 	 */
136 	if (p->p_flag & P_PROFIL)
137 		addupc_task(td, TRAPF_PC(frame), td->td_pticks * psratio);
138 	/*
139 	 * Let the scheduler adjust our priority etc.
140 	 */
141 	sched_userret(td);
142 #ifdef XEN
143 	PT_UPDATES_FLUSH();
144 #endif
145 
146 	/*
147 	 * Check for misbehavior.
148 	 *
149 	 * In case there is a callchain tracing ongoing because of
150 	 * hwpmc(4), skip the scheduler pinning check.
151 	 * hwpmc(4) subsystem, infact, will collect callchain informations
152 	 * at ast() checkpoint, which is past userret().
153 	 */
154 	WITNESS_WARN(WARN_PANIC, NULL, "userret: returning");
155 	KASSERT(td->td_critnest == 0,
156 	    ("userret: Returning in a critical section"));
157 	KASSERT(td->td_locks == 0,
158 	    ("userret: Returning with %d locks held", td->td_locks));
159 	KASSERT((td->td_pflags & TDP_NOFAULTING) == 0,
160 	    ("userret: Returning with pagefaults disabled"));
161 	KASSERT((td->td_pflags & TDP_NOSLEEPING) == 0,
162 	    ("userret: Returning with sleep disabled"));
163 	KASSERT(td->td_pinned == 0 || (td->td_pflags & TDP_CALLCHAIN) != 0,
164 	    ("userret: Returning with with pinned thread"));
165 	KASSERT(td->td_vp_reserv == 0,
166 	    ("userret: Returning while holding vnode reservation"));
167 #ifdef VIMAGE
168 	/* Unfortunately td_vnet_lpush needs VNET_DEBUG. */
169 	VNET_ASSERT(curvnet == NULL,
170 	    ("%s: Returning on td %p (pid %d, %s) with vnet %p set in %s",
171 	    __func__, td, p->p_pid, td->td_name, curvnet,
172 	    (td->td_vnet_lpush != NULL) ? td->td_vnet_lpush : "N/A"));
173 #endif
174 #ifdef	RACCT
175 	PROC_LOCK(p);
176 	while (p->p_throttled == 1) {
177 		sig = msleep(p->p_racct, &p->p_mtx, PCATCH | PBDRY, "racct",
178 		    hz);
179 		if ((sig == EINTR) || (sig == ERESTART))
180 			break;
181 	}
182 	PROC_UNLOCK(p);
183 #endif
184 }
185 
186 /*
187  * Process an asynchronous software trap.
188  * This is relatively easy.
189  * This function will return with preemption disabled.
190  */
191 void
192 ast(struct trapframe *framep)
193 {
194 	struct thread *td;
195 	struct proc *p;
196 	int flags;
197 	int sig;
198 
199 	td = curthread;
200 	p = td->td_proc;
201 
202 	CTR3(KTR_SYSC, "ast: thread %p (pid %d, %s)", td, p->p_pid,
203             p->p_comm);
204 	KASSERT(TRAPF_USERMODE(framep), ("ast in kernel mode"));
205 	WITNESS_WARN(WARN_PANIC, NULL, "Returning to user mode");
206 	mtx_assert(&Giant, MA_NOTOWNED);
207 	THREAD_LOCK_ASSERT(td, MA_NOTOWNED);
208 	td->td_frame = framep;
209 	td->td_pticks = 0;
210 
211 	/*
212 	 * This updates the td_flag's for the checks below in one
213 	 * "atomic" operation with turning off the astpending flag.
214 	 * If another AST is triggered while we are handling the
215 	 * AST's saved in flags, the astpending flag will be set and
216 	 * ast() will be called again.
217 	 */
218 	thread_lock(td);
219 	flags = td->td_flags;
220 	td->td_flags &= ~(TDF_ASTPENDING | TDF_NEEDSIGCHK | TDF_NEEDSUSPCHK |
221 	    TDF_NEEDRESCHED | TDF_ALRMPEND | TDF_PROFPEND | TDF_MACPEND);
222 	thread_unlock(td);
223 	PCPU_INC(cnt.v_trap);
224 
225 	if (td->td_ucred != p->p_ucred)
226 		cred_update_thread(td);
227 	if (td->td_pflags & TDP_OWEUPC && p->p_flag & P_PROFIL) {
228 		addupc_task(td, td->td_profil_addr, td->td_profil_ticks);
229 		td->td_profil_ticks = 0;
230 		td->td_pflags &= ~TDP_OWEUPC;
231 	}
232 #ifdef HWPMC_HOOKS
233 	/* Handle Software PMC callchain capture. */
234 	if (PMC_IS_PENDING_CALLCHAIN(td))
235 		PMC_CALL_HOOK_UNLOCKED(td, PMC_FN_USER_CALLCHAIN_SOFT, (void *) framep);
236 #endif
237 	if (flags & TDF_ALRMPEND) {
238 		PROC_LOCK(p);
239 		kern_psignal(p, SIGVTALRM);
240 		PROC_UNLOCK(p);
241 	}
242 	if (flags & TDF_PROFPEND) {
243 		PROC_LOCK(p);
244 		kern_psignal(p, SIGPROF);
245 		PROC_UNLOCK(p);
246 	}
247 #ifdef MAC
248 	if (flags & TDF_MACPEND)
249 		mac_thread_userret(td);
250 #endif
251 	if (flags & TDF_NEEDRESCHED) {
252 #ifdef KTRACE
253 		if (KTRPOINT(td, KTR_CSW))
254 			ktrcsw(1, 1, __func__);
255 #endif
256 		thread_lock(td);
257 		sched_prio(td, td->td_user_pri);
258 		mi_switch(SW_INVOL | SWT_NEEDRESCHED, NULL);
259 		thread_unlock(td);
260 #ifdef KTRACE
261 		if (KTRPOINT(td, KTR_CSW))
262 			ktrcsw(0, 1, __func__);
263 #endif
264 	}
265 
266 	/*
267 	 * Check for signals. Unlocked reads of p_pendingcnt or
268 	 * p_siglist might cause process-directed signal to be handled
269 	 * later.
270 	 */
271 	if (flags & TDF_NEEDSIGCHK || p->p_pendingcnt > 0 ||
272 	    !SIGISEMPTY(p->p_siglist)) {
273 		PROC_LOCK(p);
274 		mtx_lock(&p->p_sigacts->ps_mtx);
275 		while ((sig = cursig(td, SIG_STOP_ALLOWED)) != 0)
276 			postsig(sig);
277 		mtx_unlock(&p->p_sigacts->ps_mtx);
278 		PROC_UNLOCK(p);
279 	}
280 	/*
281 	 * We need to check to see if we have to exit or wait due to a
282 	 * single threading requirement or some other STOP condition.
283 	 */
284 	if (flags & TDF_NEEDSUSPCHK) {
285 		PROC_LOCK(p);
286 		thread_suspend_check(0);
287 		PROC_UNLOCK(p);
288 	}
289 
290 	if (td->td_pflags & TDP_OLDMASK) {
291 		td->td_pflags &= ~TDP_OLDMASK;
292 		kern_sigprocmask(td, SIG_SETMASK, &td->td_oldsigmask, NULL, 0);
293 	}
294 
295 	userret(td, framep);
296 }
297 
298 const char *
299 syscallname(struct proc *p, u_int code)
300 {
301 	static const char unknown[] = "unknown";
302 	struct sysentvec *sv;
303 
304 	sv = p->p_sysent;
305 	if (sv->sv_syscallnames == NULL || code >= sv->sv_size)
306 		return (unknown);
307 	return (sv->sv_syscallnames[code]);
308 }
309