xref: /freebsd/sys/kern/kern_syscalls.c (revision eca26803d880060555393ab89b44b967cd467a0e)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 1999 Assar Westerlund
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/param.h>
30 #include <sys/kernel.h>
31 #include <sys/lock.h>
32 #include <sys/module.h>
33 #include <sys/mutex.h>
34 #include <sys/proc.h>
35 #include <sys/resourcevar.h>
36 #include <sys/sx.h>
37 #include <sys/syscall.h>
38 #include <sys/syscallsubr.h>
39 #include <sys/sysent.h>
40 #include <sys/sysproto.h>
41 #include <sys/systm.h>
42 #include <machine/atomic.h>
43 
44 /*
45  * Acts like "nosys" but can be identified in sysent for dynamic call
46  * number assignment for a limited number of calls.
47  *
48  * Place holder for system call slots reserved for loadable modules.
49  */
50 int
lkmnosys(struct thread * td,struct nosys_args * args)51 lkmnosys(struct thread *td, struct nosys_args *args)
52 {
53 
54 	return (kern_nosys(td, 0));
55 }
56 
57 int
lkmressys(struct thread * td,struct nosys_args * args)58 lkmressys(struct thread *td, struct nosys_args *args)
59 {
60 
61 	return (kern_nosys(td, 0));
62 }
63 
64 struct sysent nosys_sysent = {
65 	.sy_call =	(sy_call_t *)nosys,
66 	.sy_systrace_args_func = NULL,
67 	.sy_narg =	0,
68 	.sy_flags =	SYF_CAPENABLED,
69 	.sy_auevent =	AUE_NULL,
70 	.sy_entry =	0, /* DTRACE_IDNONE */
71 	.sy_return =	0,
72 	.sy_thrcnt =	SY_THR_STATIC,
73 };
74 
75 static void
syscall_thread_drain(struct sysent * se)76 syscall_thread_drain(struct sysent *se)
77 {
78 	uint32_t cnt, oldcnt;
79 
80 	do {
81 		oldcnt = se->sy_thrcnt;
82 		KASSERT((oldcnt & SY_THR_STATIC) == 0,
83 		    ("drain on static syscall"));
84 		cnt = oldcnt | SY_THR_DRAINING;
85 	} while (atomic_cmpset_acq_32(&se->sy_thrcnt, oldcnt, cnt) == 0);
86 	while (atomic_cmpset_32(&se->sy_thrcnt, SY_THR_DRAINING,
87 	    SY_THR_ABSENT) == 0)
88 		pause("scdrn", hz/2);
89 }
90 
91 void
syscall_thread_enter(struct thread * td,struct sysent ** se)92 syscall_thread_enter(struct thread *td, struct sysent **se)
93 {
94 	uint32_t cnt, oldcnt;
95 
96 	KASSERT(((*se)->sy_thrcnt & SY_THR_STATIC) == 0,
97 	    ("%s: not a static syscall", __func__));
98 
99 	do {
100 		oldcnt = (*se)->sy_thrcnt;
101 		if ((oldcnt & (SY_THR_DRAINING | SY_THR_ABSENT)) != 0) {
102 			*se = &nosys_sysent;
103 			break;
104 		}
105 		cnt = oldcnt + SY_THR_INCR;
106 	} while (atomic_cmpset_acq_32(&(*se)->sy_thrcnt, oldcnt, cnt) == 0);
107 }
108 
109 void
syscall_thread_exit(struct thread * td,struct sysent * se)110 syscall_thread_exit(struct thread *td, struct sysent *se)
111 {
112 	uint32_t cnt, oldcnt;
113 
114 	KASSERT((se->sy_thrcnt & SY_THR_STATIC) == 0,
115 	    ("%s: not a static syscall", __func__));
116 
117 	do {
118 		oldcnt = se->sy_thrcnt;
119 		cnt = oldcnt - SY_THR_INCR;
120 	} while (atomic_cmpset_rel_32(&se->sy_thrcnt, oldcnt, cnt) == 0);
121 }
122 
123 int
kern_syscall_register(struct sysent * sysents,int * offset,struct sysent * new_sysent,struct sysent * old_sysent,int flags)124 kern_syscall_register(struct sysent *sysents, int *offset,
125     struct sysent *new_sysent, struct sysent *old_sysent, int flags)
126 {
127 	int i;
128 
129 	if ((flags & ~SY_THR_STATIC) != 0)
130 		return (EINVAL);
131 
132 	if (*offset == NO_SYSCALL) {
133 		for (i = 1; i < SYS_MAXSYSCALL; ++i)
134 			if (sysents[i].sy_call == (sy_call_t *)lkmnosys)
135 				break;
136 		if (i == SYS_MAXSYSCALL)
137 			return (ENFILE);
138 		*offset = i;
139 	} else if (*offset < 0 || *offset >= SYS_MAXSYSCALL) {
140 		return (EINVAL);
141 	} else if (sysents[*offset].sy_call != (sy_call_t *)lkmnosys &&
142 	    sysents[*offset].sy_call != (sy_call_t *)lkmressys) {
143 		KASSERT(sysents[*offset].sy_call != NULL,
144 		    ("undefined syscall %d", *offset));
145 		return (EEXIST);
146 	}
147 
148 	KASSERT(sysents[*offset].sy_thrcnt == SY_THR_ABSENT,
149 	    ("dynamic syscall is not protected"));
150 	*old_sysent = sysents[*offset];
151 	new_sysent->sy_thrcnt = SY_THR_ABSENT;
152 	sysents[*offset] = *new_sysent;
153 	atomic_store_rel_32(&sysents[*offset].sy_thrcnt, flags);
154 	return (0);
155 }
156 
157 int
kern_syscall_deregister(struct sysent * sysents,int offset,const struct sysent * old_sysent)158 kern_syscall_deregister(struct sysent *sysents, int offset,
159     const struct sysent *old_sysent)
160 {
161 	struct sysent *se;
162 
163 	if (offset == 0) {
164 		/*
165 		 * Syscall #0 is reserved and is not dynamically registered.
166 		 * Treat deregistration as a no-op to simplify module unload
167 		 * paths.
168 		 */
169 		return (0);
170 	}
171 
172 	se = &sysents[offset];
173 	if ((se->sy_thrcnt & SY_THR_STATIC) != 0)
174 		return (EINVAL);
175 	syscall_thread_drain(se);
176 	sysents[offset] = *old_sysent;
177 	return (0);
178 }
179 
180 int
syscall_module_handler(struct module * mod,int what,void * arg)181 syscall_module_handler(struct module *mod, int what, void *arg)
182 {
183 
184 	return (kern_syscall_module_handler(sysent, mod, what, arg));
185 }
186 
187 int
kern_syscall_module_handler(struct sysent * sysents,struct module * mod,int what,void * arg)188 kern_syscall_module_handler(struct sysent *sysents, struct module *mod,
189     int what, void *arg)
190 {
191 	struct syscall_module_data *data = arg;
192 	modspecific_t ms;
193 	int error;
194 
195 	bzero(&ms, sizeof(ms));
196 	switch (what) {
197 	case MOD_LOAD:
198 		error = kern_syscall_register(sysents, data->offset,
199 		    data->new_sysent, &data->old_sysent, data->flags);
200 		if (error) {
201 			/* Leave a mark so we know to safely unload below. */
202 			data->offset = NULL;
203 			return (error);
204 		}
205 		ms.intval = *data->offset;
206 		MOD_XLOCK;
207 		module_setspecific(mod, &ms);
208 		MOD_XUNLOCK;
209 		if (data->chainevh)
210 			error = data->chainevh(mod, what, data->chainarg);
211 		return (error);
212 	case MOD_UNLOAD:
213 		/*
214 		 * MOD_LOAD failed, so just return without calling the
215 		 * chained handler since we didn't pass along the MOD_LOAD
216 		 * event.
217 		 */
218 		if (data->offset == NULL)
219 			return (0);
220 		if (data->chainevh) {
221 			error = data->chainevh(mod, what, data->chainarg);
222 			if (error)
223 				return error;
224 		}
225 		error = kern_syscall_deregister(sysents, *data->offset,
226 		    &data->old_sysent);
227 		return (error);
228 	default:
229 		if (data->chainevh)
230 			return (data->chainevh(mod, what, data->chainarg));
231 		return (EOPNOTSUPP);
232 	}
233 
234 	/* NOTREACHED */
235 }
236 
237 int
syscall_helper_register(struct syscall_helper_data * sd,int flags)238 syscall_helper_register(struct syscall_helper_data *sd, int flags)
239 {
240 
241 	return (kern_syscall_helper_register(sysent, sd, flags));
242 }
243 
244 int
kern_syscall_helper_register(struct sysent * sysents,struct syscall_helper_data * sd,int flags)245 kern_syscall_helper_register(struct sysent *sysents,
246     struct syscall_helper_data *sd, int flags)
247 {
248 	struct syscall_helper_data *sd1;
249 	int error;
250 
251 	for (sd1 = sd; sd1->syscall_no != NO_SYSCALL; sd1++) {
252 		error = kern_syscall_register(sysents, &sd1->syscall_no,
253 		    &sd1->new_sysent, &sd1->old_sysent, flags);
254 		if (error != 0) {
255 			kern_syscall_helper_unregister(sysents, sd);
256 			return (error);
257 		}
258 		sd1->registered = 1;
259 	}
260 	return (0);
261 }
262 
263 int
syscall_helper_unregister(struct syscall_helper_data * sd)264 syscall_helper_unregister(struct syscall_helper_data *sd)
265 {
266 
267 	return (kern_syscall_helper_unregister(sysent, sd));
268 }
269 
270 int
kern_syscall_helper_unregister(struct sysent * sysents,struct syscall_helper_data * sd)271 kern_syscall_helper_unregister(struct sysent *sysents,
272     struct syscall_helper_data *sd)
273 {
274 	struct syscall_helper_data *sd1;
275 
276 	for (sd1 = sd; sd1->registered != 0; sd1++) {
277 		kern_syscall_deregister(sysents, sd1->syscall_no,
278 		    &sd1->old_sysent);
279 		sd1->registered = 0;
280 	}
281 	return (0);
282 }
283