]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/subr_syscall.c
MFC 349871: Use 'retval' label for first error in syscallenter().
[FreeBSD/FreeBSD.git] / sys / kern / subr_syscall.c
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
4  * Copyright (C) 1994, David Greenman
5  * Copyright (c) 1990, 1993
6  *      The Regents of the University of California.  All rights reserved.
7  * Copyright (C) 2010 Konstantin Belousov <kib@freebsd.org>
8  *
9  * This code is derived from software contributed to Berkeley by
10  * the University of Utah, and William Jolitz.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *      This product includes software developed by the University of
23  *      California, Berkeley and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *      from: @(#)trap.c        7.4 (Berkeley) 5/13/91
41  */
42
43 #include "opt_capsicum.h"
44 #include "opt_ktrace.h"
45
46 __FBSDID("$FreeBSD$");
47
48 #include <sys/capsicum.h>
49 #include <sys/ktr.h>
50 #include <sys/vmmeter.h>
51 #ifdef KTRACE
52 #include <sys/uio.h>
53 #include <sys/ktrace.h>
54 #endif
55 #include <security/audit/audit.h>
56
57 static inline int
58 syscallenter(struct thread *td)
59 {
60         struct proc *p;
61         struct syscall_args *sa;
62         int error, traced;
63
64         VM_CNT_INC(v_syscall);
65         p = td->td_proc;
66         sa = &td->td_sa;
67
68         td->td_pticks = 0;
69         if (td->td_cowgen != p->p_cowgen)
70                 thread_cow_update(td);
71         traced = (p->p_flag & P_TRACED) != 0;
72         if (traced || td->td_dbgflags & TDB_USERWR) {
73                 PROC_LOCK(p);
74                 td->td_dbgflags &= ~TDB_USERWR;
75                 if (traced)
76                         td->td_dbgflags |= TDB_SCE;
77                 PROC_UNLOCK(p);
78         }
79         error = (p->p_sysent->sv_fetch_syscall_args)(td);
80 #ifdef KTRACE
81         if (KTRPOINT(td, KTR_SYSCALL))
82                 ktrsyscall(sa->code, sa->narg, sa->args);
83 #endif
84         KTR_START4(KTR_SYSC, "syscall", syscallname(p, sa->code),
85             (uintptr_t)td, "pid:%d", td->td_proc->p_pid, "arg0:%p", sa->args[0],
86             "arg1:%p", sa->args[1], "arg2:%p", sa->args[2]);
87
88         if (error != 0)
89                 goto retval;
90
91         STOPEVENT(p, S_SCE, sa->narg);
92         if ((p->p_flag & P_TRACED) != 0) {
93                 PROC_LOCK(p);
94                 if (p->p_ptevents & PTRACE_SCE)
95                         ptracestop((td), SIGTRAP, NULL);
96                 PROC_UNLOCK(p);
97         }
98         if ((td->td_dbgflags & TDB_USERWR) != 0) {
99                 /*
100                  * Reread syscall number and arguments if debugger
101                  * modified registers or memory.
102                  */
103                 error = (p->p_sysent->sv_fetch_syscall_args)(td);
104 #ifdef KTRACE
105                 if (KTRPOINT(td, KTR_SYSCALL))
106                         ktrsyscall(sa->code, sa->narg, sa->args);
107 #endif
108                 if (error != 0)
109                         goto retval;
110         }
111
112 #ifdef CAPABILITY_MODE
113         /*
114          * In capability mode, we only allow access to system calls
115          * flagged with SYF_CAPENABLED.
116          */
117         if (IN_CAPABILITY_MODE(td) &&
118             !(sa->callp->sy_flags & SYF_CAPENABLED)) {
119                 error = ECAPMODE;
120                 goto retval;
121         }
122 #endif
123
124         error = syscall_thread_enter(td, sa->callp);
125         if (error != 0)
126                 goto retval;
127
128 #ifdef KDTRACE_HOOKS
129         /* Give the syscall:::entry DTrace probe a chance to fire. */
130         if (__predict_false(systrace_enabled && sa->callp->sy_entry != 0))
131                 (*systrace_probe_func)(sa, SYSTRACE_ENTRY, 0);
132 #endif
133
134         AUDIT_SYSCALL_ENTER(sa->code, td);
135         error = (sa->callp->sy_call)(td, sa->args);
136         AUDIT_SYSCALL_EXIT(error, td);
137
138         /* Save the latest error return value. */
139         if ((td->td_pflags & TDP_NERRNO) == 0)
140                 td->td_errno = error;
141
142 #ifdef KDTRACE_HOOKS
143         /* Give the syscall:::return DTrace probe a chance to fire. */
144         if (__predict_false(systrace_enabled && sa->callp->sy_return != 0))
145                 (*systrace_probe_func)(sa, SYSTRACE_RETURN,
146                     error ? -1 : td->td_retval[0]);
147 #endif
148         syscall_thread_exit(td, sa->callp);
149
150  retval:
151         KTR_STOP4(KTR_SYSC, "syscall", syscallname(p, sa->code),
152             (uintptr_t)td, "pid:%d", td->td_proc->p_pid, "error:%d", error,
153             "retval0:%#lx", td->td_retval[0], "retval1:%#lx",
154             td->td_retval[1]);
155         if (traced) {
156                 PROC_LOCK(p);
157                 td->td_dbgflags &= ~TDB_SCE;
158                 PROC_UNLOCK(p);
159         }
160         (p->p_sysent->sv_set_syscall_retval)(td, error);
161         return (error);
162 }
163
164 static inline void
165 syscallret(struct thread *td, int error)
166 {
167         struct proc *p, *p2;
168         struct syscall_args *sa;
169         ksiginfo_t ksi;
170         int traced, error1;
171
172         KASSERT((td->td_pflags & TDP_FORKING) == 0,
173             ("fork() did not clear TDP_FORKING upon completion"));
174
175         p = td->td_proc;
176         sa = &td->td_sa;
177         if ((trap_enotcap || (p->p_flag2 & P2_TRAPCAP) != 0) &&
178             IN_CAPABILITY_MODE(td)) {
179                 error1 = (td->td_pflags & TDP_NERRNO) == 0 ? error :
180                     td->td_errno;
181                 if (error1 == ENOTCAPABLE || error1 == ECAPMODE) {
182                         ksiginfo_init_trap(&ksi);
183                         ksi.ksi_signo = SIGTRAP;
184                         ksi.ksi_errno = error1;
185                         ksi.ksi_code = TRAP_CAP;
186                         trapsignal(td, &ksi);
187                 }
188         }
189
190         /*
191          * Handle reschedule and other end-of-syscall issues
192          */
193         userret(td, td->td_frame);
194
195 #ifdef KTRACE
196         if (KTRPOINT(td, KTR_SYSRET)) {
197                 ktrsysret(sa->code, (td->td_pflags & TDP_NERRNO) == 0 ?
198                     error : td->td_errno, td->td_retval[0]);
199         }
200 #endif
201         td->td_pflags &= ~TDP_NERRNO;
202
203         if (p->p_flag & P_TRACED) {
204                 traced = 1;
205                 PROC_LOCK(p);
206                 td->td_dbgflags |= TDB_SCX;
207                 PROC_UNLOCK(p);
208         } else
209                 traced = 0;
210         /*
211          * This works because errno is findable through the
212          * register set.  If we ever support an emulation where this
213          * is not the case, this code will need to be revisited.
214          */
215         STOPEVENT(p, S_SCX, sa->code);
216         if (traced || (td->td_dbgflags & (TDB_EXEC | TDB_FORK)) != 0) {
217                 PROC_LOCK(p);
218                 /*
219                  * If tracing the execed process, trap to the debugger
220                  * so that breakpoints can be set before the program
221                  * executes.  If debugger requested tracing of syscall
222                  * returns, do it now too.
223                  */
224                 if (traced &&
225                     ((td->td_dbgflags & (TDB_FORK | TDB_EXEC)) != 0 ||
226                     (p->p_ptevents & PTRACE_SCX) != 0))
227                         ptracestop(td, SIGTRAP, NULL);
228                 td->td_dbgflags &= ~(TDB_SCX | TDB_EXEC | TDB_FORK);
229                 PROC_UNLOCK(p);
230         }
231
232         if (td->td_pflags & TDP_RFPPWAIT) {
233                 /*
234                  * Preserve synchronization semantics of vfork.  If
235                  * waiting for child to exec or exit, fork set
236                  * P_PPWAIT on child, and there we sleep on our proc
237                  * (in case of exit).
238                  *
239                  * Do it after the ptracestop() above is finished, to
240                  * not block our debugger until child execs or exits
241                  * to finish vfork wait.
242                  */
243                 td->td_pflags &= ~TDP_RFPPWAIT;
244                 p2 = td->td_rfppwait_p;
245 again:
246                 PROC_LOCK(p2);
247                 while (p2->p_flag & P_PPWAIT) {
248                         PROC_LOCK(p);
249                         if (thread_suspend_check_needed()) {
250                                 PROC_UNLOCK(p2);
251                                 thread_suspend_check(0);
252                                 PROC_UNLOCK(p);
253                                 goto again;
254                         } else {
255                                 PROC_UNLOCK(p);
256                         }
257                         cv_timedwait(&p2->p_pwait, &p2->p_mtx, hz);
258                 }
259                 PROC_UNLOCK(p2);
260
261                 if (td->td_dbgflags & TDB_VFORK) {
262                         PROC_LOCK(p);
263                         if (p->p_ptevents & PTRACE_VFORK)
264                                 ptracestop(td, SIGTRAP, NULL);
265                         td->td_dbgflags &= ~TDB_VFORK;
266                         PROC_UNLOCK(p);
267                 }
268         }
269 }