]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/kern/subr_syscall.c
Merge the optimizations for the syscall entry and leave.
[FreeBSD/stable/8.git] / sys / kern / subr_syscall.c
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) 2010 Konstantin Belousov <kib@freebsd.org>
6  *
7  * This code is derived from software contributed to Berkeley by
8  * the University of Utah, and William Jolitz.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      from: @(#)trap.c        7.4 (Berkeley) 5/13/91
39  */
40
41 #include "opt_ktrace.h"
42 #include "opt_kdtrace.h"
43
44 __FBSDID("$FreeBSD$");
45
46 #include <sys/ktr.h>
47 #ifdef KTRACE
48 #include <sys/uio.h>
49 #include <sys/ktrace.h>
50 #endif
51 #include <security/audit/audit.h>
52
53 static inline int
54 syscallenter(struct thread *td, struct syscall_args *sa)
55 {
56         struct proc *p;
57         int error, traced;
58
59         PCPU_INC(cnt.v_syscall);
60         p = td->td_proc;
61
62         td->td_pticks = 0;
63         if (td->td_ucred != p->p_ucred)
64                 cred_update_thread(td);
65         if (p->p_flag & P_TRACED) {
66                 traced = 1;
67                 PROC_LOCK(p);
68                 td->td_dbgflags &= ~TDB_USERWR;
69                 td->td_dbgflags |= TDB_SCE;
70                 PROC_UNLOCK(p);
71         } else
72                 traced = 0;
73         error = (p->p_sysent->sv_fetch_syscall_args)(td, sa);
74 #ifdef KTRACE
75         if (KTRPOINT(td, KTR_SYSCALL))
76                 ktrsyscall(sa->code, sa->narg, sa->args);
77 #endif
78
79         CTR6(KTR_SYSC,
80 "syscall: td=%p pid %d %s (%#lx, %#lx, %#lx)",
81             td, td->td_proc->p_pid, syscallname(p, sa->code),
82             sa->args[0], sa->args[1], sa->args[2]);
83
84         if (error == 0) {
85                 STOPEVENT(p, S_SCE, sa->narg);
86                 PTRACESTOP_SC(p, td, S_PT_SCE);
87                 if (td->td_dbgflags & TDB_USERWR) {
88                         /*
89                          * Reread syscall number and arguments if
90                          * debugger modified registers or memory.
91                          */
92                         error = (p->p_sysent->sv_fetch_syscall_args)(td, sa);
93 #ifdef KTRACE
94                         if (KTRPOINT(td, KTR_SYSCALL))
95                                 ktrsyscall(sa->code, sa->narg, sa->args);
96 #endif
97                         if (error != 0)
98                                 goto retval;
99                 }
100
101 #ifdef KDTRACE_HOOKS
102                 /*
103                  * If the systrace module has registered it's probe
104                  * callback and if there is a probe active for the
105                  * syscall 'entry', process the probe.
106                  */
107                 if (systrace_probe_func != NULL && sa->callp->sy_entry != 0)
108                         (*systrace_probe_func)(sa->callp->sy_entry, sa->code,
109                             sa->callp, sa->args, 0);
110 #endif
111
112                 AUDIT_SYSCALL_ENTER(sa->code, td);
113                 error = (sa->callp->sy_call)(td, sa->args);
114                 AUDIT_SYSCALL_EXIT(error, td);
115
116                 /* Save the latest error return value. */
117                 td->td_errno = error;
118
119 #ifdef KDTRACE_HOOKS
120                 /*
121                  * If the systrace module has registered it's probe
122                  * callback and if there is a probe active for the
123                  * syscall 'return', process the probe.
124                  */
125                 if (systrace_probe_func != NULL && sa->callp->sy_return != 0)
126                         (*systrace_probe_func)(sa->callp->sy_return, sa->code,
127                             sa->callp, NULL, (error) ? -1 : td->td_retval[0]);
128 #endif
129                 CTR4(KTR_SYSC, "syscall: p=%p error=%d return %#lx %#lx",
130                     p, error, td->td_retval[0], td->td_retval[1]);
131         }
132  retval:
133         if (traced) {
134                 PROC_LOCK(p);
135                 td->td_dbgflags &= ~TDB_SCE;
136                 PROC_UNLOCK(p);
137         }
138         (p->p_sysent->sv_set_syscall_retval)(td, error);
139         return (error);
140 }
141
142 static inline void
143 syscallret(struct thread *td, int error, struct syscall_args *sa __unused)
144 {
145         struct proc *p;
146         int traced;
147
148         p = td->td_proc;
149
150         /*
151          * Check for misbehavior.
152          */
153         WITNESS_WARN(WARN_PANIC, NULL, "System call %s returning",
154             syscallname(p, sa->code));
155         KASSERT(td->td_critnest == 0,
156             ("System call %s returning in a critical section",
157             syscallname(p, sa->code)));
158         KASSERT(td->td_locks == 0,
159             ("System call %s returning with %d locks held",
160              syscallname(p, sa->code), td->td_locks));
161
162         /*
163          * Handle reschedule and other end-of-syscall issues
164          */
165         userret(td, td->td_frame);
166
167         CTR4(KTR_SYSC, "syscall %s exit thread %p pid %d proc %s",
168             syscallname(p, sa->code), td, td->td_proc->p_pid, td->td_name);
169
170 #ifdef KTRACE
171         if (KTRPOINT(td, KTR_SYSRET))
172                 ktrsysret(sa->code, error, td->td_retval[0]);
173 #endif
174
175         if (p->p_flag & P_TRACED) {
176                 traced = 1;
177                 PROC_LOCK(p);
178                 td->td_dbgflags |= TDB_SCX;
179                 PROC_UNLOCK(p);
180         } else
181                 traced = 0;
182         /*
183          * This works because errno is findable through the
184          * register set.  If we ever support an emulation where this
185          * is not the case, this code will need to be revisited.
186          */
187         STOPEVENT(p, S_SCX, sa->code);
188         PTRACESTOP_SC(p, td, S_PT_SCX);
189         if (traced || (td->td_dbgflags & (TDB_EXEC | TDB_FORK)) != 0) {
190                 PROC_LOCK(p);
191                 td->td_dbgflags &= ~(TDB_SCX | TDB_EXEC | TDB_FORK);
192                 PROC_UNLOCK(p);
193         }
194 }