sys_lwp.c revision 1.52.14.1 1 1.52.14.1 riz /* $NetBSD: sys_lwp.c,v 1.52.14.1 2012/05/21 15:25:56 riz Exp $ */
2 1.2 ad
3 1.2 ad /*-
4 1.36 ad * Copyright (c) 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc.
5 1.2 ad * All rights reserved.
6 1.2 ad *
7 1.2 ad * This code is derived from software contributed to The NetBSD Foundation
8 1.2 ad * by Nathan J. Williams, and Andrew Doran.
9 1.2 ad *
10 1.2 ad * Redistribution and use in source and binary forms, with or without
11 1.2 ad * modification, are permitted provided that the following conditions
12 1.2 ad * are met:
13 1.2 ad * 1. Redistributions of source code must retain the above copyright
14 1.2 ad * notice, this list of conditions and the following disclaimer.
15 1.2 ad * 2. Redistributions in binary form must reproduce the above copyright
16 1.2 ad * notice, this list of conditions and the following disclaimer in the
17 1.2 ad * documentation and/or other materials provided with the distribution.
18 1.2 ad *
19 1.2 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.2 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.2 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.2 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.2 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.2 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.2 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.2 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.2 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.2 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.2 ad * POSSIBILITY OF SUCH DAMAGE.
30 1.2 ad */
31 1.2 ad
32 1.2 ad /*
33 1.2 ad * Lightweight process (LWP) system calls. See kern_lwp.c for a description
34 1.2 ad * of LWPs.
35 1.2 ad */
36 1.2 ad
37 1.2 ad #include <sys/cdefs.h>
38 1.52.14.1 riz __KERNEL_RCSID(0, "$NetBSD: sys_lwp.c,v 1.52.14.1 2012/05/21 15:25:56 riz Exp $");
39 1.2 ad
40 1.2 ad #include <sys/param.h>
41 1.2 ad #include <sys/systm.h>
42 1.2 ad #include <sys/pool.h>
43 1.2 ad #include <sys/proc.h>
44 1.2 ad #include <sys/types.h>
45 1.2 ad #include <sys/syscallargs.h>
46 1.2 ad #include <sys/kauth.h>
47 1.2 ad #include <sys/kmem.h>
48 1.2 ad #include <sys/sleepq.h>
49 1.30 ad #include <sys/lwpctl.h>
50 1.45 ad #include <sys/cpu.h>
51 1.2 ad
52 1.2 ad #include <uvm/uvm_extern.h>
53 1.2 ad
54 1.42 wrstuden #include "opt_sa.h"
55 1.42 wrstuden
56 1.2 ad #define LWP_UNPARK_MAX 1024
57 1.2 ad
58 1.47 rmind static syncobj_t lwp_park_sobj = {
59 1.26 ad SOBJ_SLEEPQ_LIFO,
60 1.2 ad sleepq_unsleep,
61 1.7 yamt sleepq_changepri,
62 1.7 yamt sleepq_lendpri,
63 1.7 yamt syncobj_noowner,
64 1.2 ad };
65 1.2 ad
66 1.47 rmind static sleeptab_t lwp_park_tab;
67 1.2 ad
68 1.2 ad void
69 1.2 ad lwp_sys_init(void)
70 1.2 ad {
71 1.2 ad sleeptab_init(&lwp_park_tab);
72 1.2 ad }
73 1.2 ad
74 1.2 ad int
75 1.52.14.1 riz do_lwp_create(lwp_t *l, void *arg, u_long flags, lwpid_t *new_lwp)
76 1.2 ad {
77 1.52.14.1 riz struct proc *p = l->l_proc;
78 1.52.14.1 riz struct lwp *l2;
79 1.52.14.1 riz struct schedstate_percpu *spc;
80 1.52.14.1 riz vaddr_t uaddr;
81 1.52.14.1 riz int error;
82 1.2 ad
83 1.42 wrstuden #ifdef KERN_SA
84 1.42 wrstuden mutex_enter(p->p_lock);
85 1.42 wrstuden if ((p->p_sflag & (PS_SA | PS_WEXIT)) != 0 || p->p_sa != NULL) {
86 1.42 wrstuden mutex_exit(p->p_lock);
87 1.42 wrstuden return EINVAL;
88 1.42 wrstuden }
89 1.42 wrstuden mutex_exit(p->p_lock);
90 1.42 wrstuden #endif
91 1.42 wrstuden
92 1.2 ad /* XXX check against resource limits */
93 1.2 ad
94 1.46 rmind uaddr = uvm_uarea_alloc();
95 1.52.14.1 riz if (__predict_false(uaddr == 0))
96 1.2 ad return ENOMEM;
97 1.2 ad
98 1.52.14.1 riz error = lwp_create(l, p, uaddr, flags & LWP_DETACHED,
99 1.52.14.1 riz NULL, 0, p->p_emul->e_startlwp, arg, &l2, l->l_class);
100 1.46 rmind if (__predict_false(error)) {
101 1.46 rmind uvm_uarea_free(uaddr);
102 1.18 rmind return error;
103 1.18 rmind }
104 1.2 ad
105 1.52.14.1 riz *new_lwp = l2->l_lid;
106 1.21 rmind
107 1.2 ad /*
108 1.2 ad * Set the new LWP running, unless the caller has requested that
109 1.2 ad * it be created in suspended state. If the process is stopping,
110 1.2 ad * then the LWP is created stopped.
111 1.2 ad */
112 1.39 ad mutex_enter(p->p_lock);
113 1.2 ad lwp_lock(l2);
114 1.50 skrll spc = &l2->l_cpu->ci_schedstate;
115 1.52.14.1 riz if ((flags & LWP_SUSPENDED) == 0 &&
116 1.4 pavel (l->l_flag & (LW_WREBOOT | LW_WSUSPEND | LW_WEXIT)) == 0) {
117 1.50 skrll if (p->p_stat == SSTOP || (p->p_sflag & PS_STOPPING) != 0) {
118 1.50 skrll KASSERT(l2->l_wchan == NULL);
119 1.2 ad l2->l_stat = LSSTOP;
120 1.51 yamt p->p_nrlwps--;
121 1.50 skrll lwp_unlock_to(l2, spc->spc_lwplock);
122 1.50 skrll } else {
123 1.50 skrll KASSERT(lwp_locked(l2, spc->spc_mutex));
124 1.2 ad l2->l_stat = LSRUN;
125 1.19 yamt sched_enqueue(l2, false);
126 1.50 skrll lwp_unlock(l2);
127 1.2 ad }
128 1.31 ad } else {
129 1.2 ad l2->l_stat = LSSUSPENDED;
130 1.51 yamt p->p_nrlwps--;
131 1.50 skrll lwp_unlock_to(l2, spc->spc_lwplock);
132 1.31 ad }
133 1.39 ad mutex_exit(p->p_lock);
134 1.2 ad
135 1.2 ad return 0;
136 1.2 ad }
137 1.2 ad
138 1.2 ad int
139 1.52.14.1 riz sys__lwp_create(struct lwp *l, const struct sys__lwp_create_args *uap,
140 1.52.14.1 riz register_t *retval)
141 1.52.14.1 riz {
142 1.52.14.1 riz /* {
143 1.52.14.1 riz syscallarg(const ucontext_t *) ucp;
144 1.52.14.1 riz syscallarg(u_long) flags;
145 1.52.14.1 riz syscallarg(lwpid_t *) new_lwp;
146 1.52.14.1 riz } */
147 1.52.14.1 riz struct proc *p = l->l_proc;
148 1.52.14.1 riz ucontext_t *newuc = NULL;
149 1.52.14.1 riz lwpid_t lid;
150 1.52.14.1 riz int error;
151 1.52.14.1 riz
152 1.52.14.1 riz newuc = kmem_alloc(sizeof(ucontext_t), KM_SLEEP);
153 1.52.14.1 riz error = copyin(SCARG(uap, ucp), newuc, p->p_emul->e_ucsize);
154 1.52.14.1 riz if (error)
155 1.52.14.1 riz goto fail;
156 1.52.14.1 riz
157 1.52.14.1 riz /* validate the ucontext */
158 1.52.14.1 riz if ((newuc->uc_flags & _UC_CPU) == 0) {
159 1.52.14.1 riz error = EINVAL;
160 1.52.14.1 riz goto fail;
161 1.52.14.1 riz }
162 1.52.14.1 riz error = cpu_mcontext_validate(l, &newuc->uc_mcontext);
163 1.52.14.1 riz if (error)
164 1.52.14.1 riz goto fail;
165 1.52.14.1 riz
166 1.52.14.1 riz error = do_lwp_create(l, newuc, SCARG(uap, flags), &lid);
167 1.52.14.1 riz if (error)
168 1.52.14.1 riz goto fail;
169 1.52.14.1 riz
170 1.52.14.1 riz /*
171 1.52.14.1 riz * do not free ucontext in case of an error here,
172 1.52.14.1 riz * the lwp will actually run and access it
173 1.52.14.1 riz */
174 1.52.14.1 riz return copyout(&lid, SCARG(uap, new_lwp), sizeof(lid));
175 1.52.14.1 riz
176 1.52.14.1 riz fail:
177 1.52.14.1 riz kmem_free(newuc, sizeof(ucontext_t));
178 1.52.14.1 riz return error;
179 1.52.14.1 riz }
180 1.52.14.1 riz
181 1.52.14.1 riz int
182 1.32 dsl sys__lwp_exit(struct lwp *l, const void *v, register_t *retval)
183 1.2 ad {
184 1.2 ad
185 1.2 ad lwp_exit(l);
186 1.2 ad return 0;
187 1.2 ad }
188 1.2 ad
189 1.2 ad int
190 1.32 dsl sys__lwp_self(struct lwp *l, const void *v, register_t *retval)
191 1.2 ad {
192 1.2 ad
193 1.2 ad *retval = l->l_lid;
194 1.2 ad return 0;
195 1.2 ad }
196 1.2 ad
197 1.2 ad int
198 1.32 dsl sys__lwp_getprivate(struct lwp *l, const void *v, register_t *retval)
199 1.2 ad {
200 1.2 ad
201 1.2 ad *retval = (uintptr_t)l->l_private;
202 1.2 ad return 0;
203 1.2 ad }
204 1.2 ad
205 1.2 ad int
206 1.47 rmind sys__lwp_setprivate(struct lwp *l, const struct sys__lwp_setprivate_args *uap,
207 1.47 rmind register_t *retval)
208 1.2 ad {
209 1.32 dsl /* {
210 1.2 ad syscallarg(void *) ptr;
211 1.32 dsl } */
212 1.2 ad
213 1.52 chs return lwp_setprivate(l, SCARG(uap, ptr));
214 1.2 ad }
215 1.2 ad
216 1.2 ad int
217 1.47 rmind sys__lwp_suspend(struct lwp *l, const struct sys__lwp_suspend_args *uap,
218 1.47 rmind register_t *retval)
219 1.2 ad {
220 1.32 dsl /* {
221 1.2 ad syscallarg(lwpid_t) target;
222 1.32 dsl } */
223 1.2 ad struct proc *p = l->l_proc;
224 1.2 ad struct lwp *t;
225 1.2 ad int error;
226 1.2 ad
227 1.39 ad mutex_enter(p->p_lock);
228 1.42 wrstuden
229 1.42 wrstuden #ifdef KERN_SA
230 1.42 wrstuden if ((p->p_sflag & PS_SA) != 0 || p->p_sa != NULL) {
231 1.42 wrstuden mutex_exit(p->p_lock);
232 1.42 wrstuden return EINVAL;
233 1.42 wrstuden }
234 1.42 wrstuden #endif
235 1.42 wrstuden
236 1.2 ad if ((t = lwp_find(p, SCARG(uap, target))) == NULL) {
237 1.39 ad mutex_exit(p->p_lock);
238 1.2 ad return ESRCH;
239 1.2 ad }
240 1.2 ad
241 1.2 ad /*
242 1.2 ad * Check for deadlock, which is only possible when we're suspending
243 1.2 ad * ourself. XXX There is a short race here, as p_nrlwps is only
244 1.2 ad * incremented when an LWP suspends itself on the kernel/user
245 1.2 ad * boundary. It's still possible to kill -9 the process so we
246 1.2 ad * don't bother checking further.
247 1.2 ad */
248 1.2 ad lwp_lock(t);
249 1.2 ad if ((t == l && p->p_nrlwps == 1) ||
250 1.4 pavel (l->l_flag & (LW_WCORE | LW_WEXIT)) != 0) {
251 1.2 ad lwp_unlock(t);
252 1.39 ad mutex_exit(p->p_lock);
253 1.2 ad return EDEADLK;
254 1.2 ad }
255 1.2 ad
256 1.2 ad /*
257 1.2 ad * Suspend the LWP. XXX If it's on a different CPU, we should wait
258 1.2 ad * for it to be preempted, where it will put itself to sleep.
259 1.2 ad *
260 1.2 ad * Suspension of the current LWP will happen on return to userspace.
261 1.2 ad */
262 1.2 ad error = lwp_suspend(l, t);
263 1.23 rmind if (error) {
264 1.39 ad mutex_exit(p->p_lock);
265 1.23 rmind return error;
266 1.23 rmind }
267 1.23 rmind
268 1.23 rmind /*
269 1.23 rmind * Wait for:
270 1.23 rmind * o process exiting
271 1.23 rmind * o target LWP suspended
272 1.23 rmind * o target LWP not suspended and L_WSUSPEND clear
273 1.23 rmind * o target LWP exited
274 1.23 rmind */
275 1.23 rmind for (;;) {
276 1.39 ad error = cv_wait_sig(&p->p_lwpcv, p->p_lock);
277 1.23 rmind if (error) {
278 1.23 rmind error = ERESTART;
279 1.23 rmind break;
280 1.23 rmind }
281 1.25 rmind if (lwp_find(p, SCARG(uap, target)) == NULL) {
282 1.25 rmind error = ESRCH;
283 1.25 rmind break;
284 1.25 rmind }
285 1.23 rmind if ((l->l_flag | t->l_flag) & (LW_WCORE | LW_WEXIT)) {
286 1.23 rmind error = ERESTART;
287 1.23 rmind break;
288 1.23 rmind }
289 1.23 rmind if (t->l_stat == LSSUSPENDED ||
290 1.23 rmind (t->l_flag & LW_WSUSPEND) == 0)
291 1.23 rmind break;
292 1.23 rmind }
293 1.39 ad mutex_exit(p->p_lock);
294 1.2 ad
295 1.2 ad return error;
296 1.2 ad }
297 1.2 ad
298 1.2 ad int
299 1.47 rmind sys__lwp_continue(struct lwp *l, const struct sys__lwp_continue_args *uap,
300 1.47 rmind register_t *retval)
301 1.2 ad {
302 1.32 dsl /* {
303 1.2 ad syscallarg(lwpid_t) target;
304 1.32 dsl } */
305 1.2 ad int error;
306 1.2 ad struct proc *p = l->l_proc;
307 1.2 ad struct lwp *t;
308 1.2 ad
309 1.2 ad error = 0;
310 1.2 ad
311 1.39 ad mutex_enter(p->p_lock);
312 1.2 ad if ((t = lwp_find(p, SCARG(uap, target))) == NULL) {
313 1.39 ad mutex_exit(p->p_lock);
314 1.2 ad return ESRCH;
315 1.2 ad }
316 1.2 ad
317 1.2 ad lwp_lock(t);
318 1.2 ad lwp_continue(t);
319 1.39 ad mutex_exit(p->p_lock);
320 1.2 ad
321 1.2 ad return error;
322 1.2 ad }
323 1.2 ad
324 1.2 ad int
325 1.47 rmind sys__lwp_wakeup(struct lwp *l, const struct sys__lwp_wakeup_args *uap,
326 1.47 rmind register_t *retval)
327 1.2 ad {
328 1.32 dsl /* {
329 1.2 ad syscallarg(lwpid_t) target;
330 1.32 dsl } */
331 1.2 ad struct lwp *t;
332 1.2 ad struct proc *p;
333 1.2 ad int error;
334 1.2 ad
335 1.2 ad p = l->l_proc;
336 1.39 ad mutex_enter(p->p_lock);
337 1.2 ad
338 1.2 ad if ((t = lwp_find(p, SCARG(uap, target))) == NULL) {
339 1.39 ad mutex_exit(p->p_lock);
340 1.2 ad return ESRCH;
341 1.2 ad }
342 1.2 ad
343 1.2 ad lwp_lock(t);
344 1.15 ad t->l_flag |= (LW_CANCELLED | LW_UNPARKED);
345 1.2 ad
346 1.2 ad if (t->l_stat != LSSLEEP) {
347 1.16 ad lwp_unlock(t);
348 1.2 ad error = ENODEV;
349 1.16 ad } else if ((t->l_flag & LW_SINTR) == 0) {
350 1.16 ad lwp_unlock(t);
351 1.2 ad error = EBUSY;
352 1.16 ad } else {
353 1.16 ad /* Wake it up. lwp_unsleep() will release the LWP lock. */
354 1.46 rmind lwp_unsleep(t, true);
355 1.16 ad error = 0;
356 1.2 ad }
357 1.2 ad
358 1.39 ad mutex_exit(p->p_lock);
359 1.2 ad
360 1.2 ad return error;
361 1.2 ad }
362 1.2 ad
363 1.2 ad int
364 1.47 rmind sys__lwp_wait(struct lwp *l, const struct sys__lwp_wait_args *uap,
365 1.47 rmind register_t *retval)
366 1.2 ad {
367 1.32 dsl /* {
368 1.2 ad syscallarg(lwpid_t) wait_for;
369 1.2 ad syscallarg(lwpid_t *) departed;
370 1.32 dsl } */
371 1.2 ad struct proc *p = l->l_proc;
372 1.2 ad int error;
373 1.2 ad lwpid_t dep;
374 1.2 ad
375 1.39 ad mutex_enter(p->p_lock);
376 1.2 ad error = lwp_wait1(l, SCARG(uap, wait_for), &dep, 0);
377 1.39 ad mutex_exit(p->p_lock);
378 1.2 ad
379 1.2 ad if (error)
380 1.2 ad return error;
381 1.2 ad
382 1.2 ad if (SCARG(uap, departed)) {
383 1.2 ad error = copyout(&dep, SCARG(uap, departed), sizeof(dep));
384 1.2 ad if (error)
385 1.2 ad return error;
386 1.2 ad }
387 1.2 ad
388 1.2 ad return 0;
389 1.2 ad }
390 1.2 ad
391 1.2 ad int
392 1.47 rmind sys__lwp_kill(struct lwp *l, const struct sys__lwp_kill_args *uap,
393 1.47 rmind register_t *retval)
394 1.2 ad {
395 1.32 dsl /* {
396 1.2 ad syscallarg(lwpid_t) target;
397 1.2 ad syscallarg(int) signo;
398 1.32 dsl } */
399 1.2 ad struct proc *p = l->l_proc;
400 1.2 ad struct lwp *t;
401 1.2 ad ksiginfo_t ksi;
402 1.2 ad int signo = SCARG(uap, signo);
403 1.2 ad int error = 0;
404 1.2 ad
405 1.2 ad if ((u_int)signo >= NSIG)
406 1.2 ad return EINVAL;
407 1.2 ad
408 1.2 ad KSI_INIT(&ksi);
409 1.2 ad ksi.ksi_signo = signo;
410 1.43 ad ksi.ksi_code = SI_LWP;
411 1.2 ad ksi.ksi_pid = p->p_pid;
412 1.2 ad ksi.ksi_uid = kauth_cred_geteuid(l->l_cred);
413 1.2 ad ksi.ksi_lid = SCARG(uap, target);
414 1.2 ad
415 1.38 ad mutex_enter(proc_lock);
416 1.39 ad mutex_enter(p->p_lock);
417 1.2 ad if ((t = lwp_find(p, ksi.ksi_lid)) == NULL)
418 1.2 ad error = ESRCH;
419 1.2 ad else if (signo != 0)
420 1.2 ad kpsignal2(p, &ksi);
421 1.39 ad mutex_exit(p->p_lock);
422 1.38 ad mutex_exit(proc_lock);
423 1.2 ad
424 1.2 ad return error;
425 1.2 ad }
426 1.2 ad
427 1.2 ad int
428 1.47 rmind sys__lwp_detach(struct lwp *l, const struct sys__lwp_detach_args *uap,
429 1.47 rmind register_t *retval)
430 1.2 ad {
431 1.32 dsl /* {
432 1.2 ad syscallarg(lwpid_t) target;
433 1.32 dsl } */
434 1.2 ad struct proc *p;
435 1.2 ad struct lwp *t;
436 1.2 ad lwpid_t target;
437 1.2 ad int error;
438 1.2 ad
439 1.2 ad target = SCARG(uap, target);
440 1.2 ad p = l->l_proc;
441 1.2 ad
442 1.39 ad mutex_enter(p->p_lock);
443 1.2 ad
444 1.2 ad if (l->l_lid == target)
445 1.2 ad t = l;
446 1.2 ad else {
447 1.2 ad /*
448 1.2 ad * We can't use lwp_find() here because the target might
449 1.2 ad * be a zombie.
450 1.2 ad */
451 1.2 ad LIST_FOREACH(t, &p->p_lwps, l_sibling)
452 1.2 ad if (t->l_lid == target)
453 1.2 ad break;
454 1.2 ad }
455 1.2 ad
456 1.2 ad /*
457 1.2 ad * If the LWP is already detached, there's nothing to do.
458 1.2 ad * If it's a zombie, we need to clean up after it. LSZOMB
459 1.2 ad * is visible with the proc mutex held.
460 1.2 ad *
461 1.2 ad * After we have detached or released the LWP, kick any
462 1.2 ad * other LWPs that may be sitting in _lwp_wait(), waiting
463 1.2 ad * for the target LWP to exit.
464 1.2 ad */
465 1.2 ad if (t != NULL && t->l_stat != LSIDL) {
466 1.2 ad if ((t->l_prflag & LPR_DETACHED) == 0) {
467 1.2 ad p->p_ndlwps++;
468 1.2 ad t->l_prflag |= LPR_DETACHED;
469 1.2 ad if (t->l_stat == LSZOMB) {
470 1.17 ad /* Releases proc mutex. */
471 1.17 ad lwp_free(t, false, false);
472 1.2 ad return 0;
473 1.2 ad }
474 1.2 ad error = 0;
475 1.17 ad
476 1.17 ad /*
477 1.17 ad * Have any LWPs sleeping in lwp_wait() recheck
478 1.17 ad * for deadlock.
479 1.17 ad */
480 1.17 ad cv_broadcast(&p->p_lwpcv);
481 1.2 ad } else
482 1.2 ad error = EINVAL;
483 1.2 ad } else
484 1.2 ad error = ESRCH;
485 1.2 ad
486 1.39 ad mutex_exit(p->p_lock);
487 1.2 ad
488 1.2 ad return error;
489 1.2 ad }
490 1.2 ad
491 1.2 ad static inline wchan_t
492 1.2 ad lwp_park_wchan(struct proc *p, const void *hint)
493 1.2 ad {
494 1.22 ad
495 1.2 ad return (wchan_t)((uintptr_t)p ^ (uintptr_t)hint);
496 1.2 ad }
497 1.2 ad
498 1.2 ad int
499 1.24 ad lwp_unpark(lwpid_t target, const void *hint)
500 1.2 ad {
501 1.24 ad sleepq_t *sq;
502 1.24 ad wchan_t wchan;
503 1.41 ad kmutex_t *mp;
504 1.24 ad proc_t *p;
505 1.24 ad lwp_t *t;
506 1.24 ad
507 1.24 ad /*
508 1.24 ad * Easy case: search for the LWP on the sleep queue. If
509 1.24 ad * it's parked, remove it from the queue and set running.
510 1.24 ad */
511 1.24 ad p = curproc;
512 1.24 ad wchan = lwp_park_wchan(p, hint);
513 1.41 ad sq = sleeptab_lookup(&lwp_park_tab, wchan, &mp);
514 1.24 ad
515 1.41 ad TAILQ_FOREACH(t, sq, l_sleepchain)
516 1.24 ad if (t->l_proc == p && t->l_lid == target)
517 1.24 ad break;
518 1.24 ad
519 1.24 ad if (__predict_true(t != NULL)) {
520 1.46 rmind sleepq_remove(sq, t);
521 1.41 ad mutex_spin_exit(mp);
522 1.24 ad return 0;
523 1.24 ad }
524 1.24 ad
525 1.24 ad /*
526 1.24 ad * The LWP hasn't parked yet. Take the hit and mark the
527 1.24 ad * operation as pending.
528 1.24 ad */
529 1.41 ad mutex_spin_exit(mp);
530 1.20 dsl
531 1.39 ad mutex_enter(p->p_lock);
532 1.24 ad if ((t = lwp_find(p, target)) == NULL) {
533 1.39 ad mutex_exit(p->p_lock);
534 1.24 ad return ESRCH;
535 1.24 ad }
536 1.20 dsl
537 1.24 ad /*
538 1.24 ad * It may not have parked yet, we may have raced, or it
539 1.24 ad * is parked on a different user sync object.
540 1.24 ad */
541 1.24 ad lwp_lock(t);
542 1.24 ad if (t->l_syncobj == &lwp_park_sobj) {
543 1.24 ad /* Releases the LWP lock. */
544 1.46 rmind lwp_unsleep(t, true);
545 1.24 ad } else {
546 1.24 ad /*
547 1.24 ad * Set the operation pending. The next call to _lwp_park
548 1.24 ad * will return early.
549 1.24 ad */
550 1.24 ad t->l_flag |= LW_UNPARKED;
551 1.24 ad lwp_unlock(t);
552 1.24 ad }
553 1.20 dsl
554 1.39 ad mutex_exit(p->p_lock);
555 1.24 ad return 0;
556 1.20 dsl }
557 1.20 dsl
558 1.20 dsl int
559 1.24 ad lwp_park(struct timespec *ts, const void *hint)
560 1.20 dsl {
561 1.2 ad sleepq_t *sq;
562 1.41 ad kmutex_t *mp;
563 1.2 ad wchan_t wchan;
564 1.2 ad int timo, error;
565 1.24 ad lwp_t *l;
566 1.2 ad
567 1.2 ad /* Fix up the given timeout value. */
568 1.20 dsl if (ts != NULL) {
569 1.48 rmind error = abstimeout2timo(ts, &timo);
570 1.48 rmind if (error) {
571 1.2 ad return error;
572 1.48 rmind }
573 1.24 ad KASSERT(timo != 0);
574 1.48 rmind } else {
575 1.2 ad timo = 0;
576 1.48 rmind }
577 1.2 ad
578 1.2 ad /* Find and lock the sleep queue. */
579 1.24 ad l = curlwp;
580 1.20 dsl wchan = lwp_park_wchan(l->l_proc, hint);
581 1.41 ad sq = sleeptab_lookup(&lwp_park_tab, wchan, &mp);
582 1.2 ad
583 1.2 ad /*
584 1.2 ad * Before going the full route and blocking, check to see if an
585 1.2 ad * unpark op is pending.
586 1.2 ad */
587 1.19 yamt lwp_lock(l);
588 1.8 ad if ((l->l_flag & (LW_CANCELLED | LW_UNPARKED)) != 0) {
589 1.8 ad l->l_flag &= ~(LW_CANCELLED | LW_UNPARKED);
590 1.19 yamt lwp_unlock(l);
591 1.41 ad mutex_spin_exit(mp);
592 1.2 ad return EALREADY;
593 1.2 ad }
594 1.41 ad lwp_unlock_to(l, mp);
595 1.24 ad l->l_biglocks = 0;
596 1.27 ad sleepq_enqueue(sq, wchan, "parked", &lwp_park_sobj);
597 1.19 yamt error = sleepq_block(timo, true);
598 1.13 yamt switch (error) {
599 1.14 yamt case EWOULDBLOCK:
600 1.14 yamt error = ETIMEDOUT;
601 1.14 yamt break;
602 1.14 yamt case ERESTART:
603 1.14 yamt error = EINTR;
604 1.14 yamt break;
605 1.14 yamt default:
606 1.14 yamt /* nothing */
607 1.14 yamt break;
608 1.13 yamt }
609 1.13 yamt return error;
610 1.2 ad }
611 1.2 ad
612 1.24 ad /*
613 1.24 ad * 'park' an LWP waiting on a user-level synchronisation object. The LWP
614 1.24 ad * will remain parked until another LWP in the same process calls in and
615 1.24 ad * requests that it be unparked.
616 1.24 ad */
617 1.2 ad int
618 1.44 christos sys____lwp_park50(struct lwp *l, const struct sys____lwp_park50_args *uap,
619 1.44 christos register_t *retval)
620 1.2 ad {
621 1.32 dsl /* {
622 1.24 ad syscallarg(const struct timespec *) ts;
623 1.24 ad syscallarg(lwpid_t) unpark;
624 1.24 ad syscallarg(const void *) hint;
625 1.24 ad syscallarg(const void *) unparkhint;
626 1.32 dsl } */
627 1.24 ad struct timespec ts, *tsp;
628 1.24 ad int error;
629 1.2 ad
630 1.24 ad if (SCARG(uap, ts) == NULL)
631 1.24 ad tsp = NULL;
632 1.24 ad else {
633 1.24 ad error = copyin(SCARG(uap, ts), &ts, sizeof(ts));
634 1.24 ad if (error != 0)
635 1.24 ad return error;
636 1.24 ad tsp = &ts;
637 1.24 ad }
638 1.2 ad
639 1.24 ad if (SCARG(uap, unpark) != 0) {
640 1.24 ad error = lwp_unpark(SCARG(uap, unpark), SCARG(uap, unparkhint));
641 1.24 ad if (error != 0)
642 1.24 ad return error;
643 1.15 ad }
644 1.15 ad
645 1.24 ad return lwp_park(tsp, SCARG(uap, hint));
646 1.24 ad }
647 1.2 ad
648 1.24 ad int
649 1.47 rmind sys__lwp_unpark(struct lwp *l, const struct sys__lwp_unpark_args *uap,
650 1.47 rmind register_t *retval)
651 1.24 ad {
652 1.32 dsl /* {
653 1.24 ad syscallarg(lwpid_t) target;
654 1.24 ad syscallarg(const void *) hint;
655 1.32 dsl } */
656 1.2 ad
657 1.24 ad return lwp_unpark(SCARG(uap, target), SCARG(uap, hint));
658 1.2 ad }
659 1.2 ad
660 1.2 ad int
661 1.47 rmind sys__lwp_unpark_all(struct lwp *l, const struct sys__lwp_unpark_all_args *uap,
662 1.47 rmind register_t *retval)
663 1.2 ad {
664 1.32 dsl /* {
665 1.2 ad syscallarg(const lwpid_t *) targets;
666 1.2 ad syscallarg(size_t) ntargets;
667 1.2 ad syscallarg(const void *) hint;
668 1.32 dsl } */
669 1.2 ad struct proc *p;
670 1.2 ad struct lwp *t;
671 1.2 ad sleepq_t *sq;
672 1.2 ad wchan_t wchan;
673 1.2 ad lwpid_t targets[32], *tp, *tpp, *tmax, target;
674 1.46 rmind int error;
675 1.41 ad kmutex_t *mp;
676 1.15 ad u_int ntargets;
677 1.2 ad size_t sz;
678 1.2 ad
679 1.2 ad p = l->l_proc;
680 1.2 ad ntargets = SCARG(uap, ntargets);
681 1.2 ad
682 1.2 ad if (SCARG(uap, targets) == NULL) {
683 1.2 ad /*
684 1.2 ad * Let the caller know how much we are willing to do, and
685 1.2 ad * let it unpark the LWPs in blocks.
686 1.2 ad */
687 1.2 ad *retval = LWP_UNPARK_MAX;
688 1.2 ad return 0;
689 1.2 ad }
690 1.2 ad if (ntargets > LWP_UNPARK_MAX || ntargets == 0)
691 1.2 ad return EINVAL;
692 1.2 ad
693 1.2 ad /*
694 1.2 ad * Copy in the target array. If it's a small number of LWPs, then
695 1.2 ad * place the numbers on the stack.
696 1.2 ad */
697 1.2 ad sz = sizeof(target) * ntargets;
698 1.2 ad if (sz <= sizeof(targets))
699 1.2 ad tp = targets;
700 1.2 ad else {
701 1.2 ad tp = kmem_alloc(sz, KM_SLEEP);
702 1.2 ad if (tp == NULL)
703 1.2 ad return ENOMEM;
704 1.2 ad }
705 1.2 ad error = copyin(SCARG(uap, targets), tp, sz);
706 1.2 ad if (error != 0) {
707 1.2 ad if (tp != targets) {
708 1.2 ad kmem_free(tp, sz);
709 1.2 ad }
710 1.2 ad return error;
711 1.2 ad }
712 1.2 ad
713 1.2 ad wchan = lwp_park_wchan(p, SCARG(uap, hint));
714 1.41 ad sq = sleeptab_lookup(&lwp_park_tab, wchan, &mp);
715 1.2 ad
716 1.2 ad for (tmax = tp + ntargets, tpp = tp; tpp < tmax; tpp++) {
717 1.2 ad target = *tpp;
718 1.2 ad
719 1.2 ad /*
720 1.2 ad * Easy case: search for the LWP on the sleep queue. If
721 1.2 ad * it's parked, remove it from the queue and set running.
722 1.2 ad */
723 1.41 ad TAILQ_FOREACH(t, sq, l_sleepchain)
724 1.2 ad if (t->l_proc == p && t->l_lid == target)
725 1.2 ad break;
726 1.2 ad
727 1.2 ad if (t != NULL) {
728 1.46 rmind sleepq_remove(sq, t);
729 1.2 ad continue;
730 1.2 ad }
731 1.2 ad
732 1.2 ad /*
733 1.2 ad * The LWP hasn't parked yet. Take the hit and
734 1.2 ad * mark the operation as pending.
735 1.2 ad */
736 1.41 ad mutex_spin_exit(mp);
737 1.39 ad mutex_enter(p->p_lock);
738 1.2 ad if ((t = lwp_find(p, target)) == NULL) {
739 1.39 ad mutex_exit(p->p_lock);
740 1.41 ad mutex_spin_enter(mp);
741 1.2 ad continue;
742 1.2 ad }
743 1.2 ad lwp_lock(t);
744 1.2 ad
745 1.15 ad /*
746 1.15 ad * It may not have parked yet, we may have raced, or
747 1.15 ad * it is parked on a different user sync object.
748 1.15 ad */
749 1.15 ad if (t->l_syncobj == &lwp_park_sobj) {
750 1.15 ad /* Releases the LWP lock. */
751 1.46 rmind lwp_unsleep(t, true);
752 1.2 ad } else {
753 1.2 ad /*
754 1.15 ad * Set the operation pending. The next call to
755 1.15 ad * _lwp_park will return early.
756 1.2 ad */
757 1.8 ad t->l_flag |= LW_UNPARKED;
758 1.2 ad lwp_unlock(t);
759 1.2 ad }
760 1.15 ad
761 1.39 ad mutex_exit(p->p_lock);
762 1.41 ad mutex_spin_enter(mp);
763 1.2 ad }
764 1.2 ad
765 1.41 ad mutex_spin_exit(mp);
766 1.33 ad if (tp != targets)
767 1.2 ad kmem_free(tp, sz);
768 1.15 ad
769 1.2 ad return 0;
770 1.2 ad }
771 1.28 ad
772 1.28 ad int
773 1.47 rmind sys__lwp_setname(struct lwp *l, const struct sys__lwp_setname_args *uap,
774 1.47 rmind register_t *retval)
775 1.28 ad {
776 1.32 dsl /* {
777 1.28 ad syscallarg(lwpid_t) target;
778 1.28 ad syscallarg(const char *) name;
779 1.32 dsl } */
780 1.28 ad char *name, *oname;
781 1.30 ad lwpid_t target;
782 1.28 ad proc_t *p;
783 1.28 ad lwp_t *t;
784 1.28 ad int error;
785 1.28 ad
786 1.30 ad if ((target = SCARG(uap, target)) == 0)
787 1.30 ad target = l->l_lid;
788 1.30 ad
789 1.28 ad name = kmem_alloc(MAXCOMLEN, KM_SLEEP);
790 1.28 ad if (name == NULL)
791 1.28 ad return ENOMEM;
792 1.28 ad error = copyinstr(SCARG(uap, name), name, MAXCOMLEN, NULL);
793 1.28 ad switch (error) {
794 1.28 ad case ENAMETOOLONG:
795 1.28 ad case 0:
796 1.28 ad name[MAXCOMLEN - 1] = '\0';
797 1.28 ad break;
798 1.28 ad default:
799 1.28 ad kmem_free(name, MAXCOMLEN);
800 1.28 ad return error;
801 1.28 ad }
802 1.28 ad
803 1.28 ad p = curproc;
804 1.39 ad mutex_enter(p->p_lock);
805 1.30 ad if ((t = lwp_find(p, target)) == NULL) {
806 1.39 ad mutex_exit(p->p_lock);
807 1.28 ad kmem_free(name, MAXCOMLEN);
808 1.28 ad return ESRCH;
809 1.28 ad }
810 1.28 ad lwp_lock(t);
811 1.28 ad oname = t->l_name;
812 1.28 ad t->l_name = name;
813 1.28 ad lwp_unlock(t);
814 1.39 ad mutex_exit(p->p_lock);
815 1.28 ad
816 1.28 ad if (oname != NULL)
817 1.28 ad kmem_free(oname, MAXCOMLEN);
818 1.28 ad
819 1.28 ad return 0;
820 1.28 ad }
821 1.28 ad
822 1.28 ad int
823 1.47 rmind sys__lwp_getname(struct lwp *l, const struct sys__lwp_getname_args *uap,
824 1.47 rmind register_t *retval)
825 1.28 ad {
826 1.32 dsl /* {
827 1.28 ad syscallarg(lwpid_t) target;
828 1.28 ad syscallarg(char *) name;
829 1.28 ad syscallarg(size_t) len;
830 1.32 dsl } */
831 1.28 ad char name[MAXCOMLEN];
832 1.30 ad lwpid_t target;
833 1.28 ad proc_t *p;
834 1.28 ad lwp_t *t;
835 1.28 ad
836 1.30 ad if ((target = SCARG(uap, target)) == 0)
837 1.30 ad target = l->l_lid;
838 1.30 ad
839 1.28 ad p = curproc;
840 1.39 ad mutex_enter(p->p_lock);
841 1.30 ad if ((t = lwp_find(p, target)) == NULL) {
842 1.39 ad mutex_exit(p->p_lock);
843 1.28 ad return ESRCH;
844 1.28 ad }
845 1.28 ad lwp_lock(t);
846 1.28 ad if (t->l_name == NULL)
847 1.28 ad name[0] = '\0';
848 1.28 ad else
849 1.28 ad strcpy(name, t->l_name);
850 1.28 ad lwp_unlock(t);
851 1.39 ad mutex_exit(p->p_lock);
852 1.28 ad
853 1.28 ad return copyoutstr(name, SCARG(uap, name), SCARG(uap, len), NULL);
854 1.28 ad }
855 1.30 ad
856 1.30 ad int
857 1.47 rmind sys__lwp_ctl(struct lwp *l, const struct sys__lwp_ctl_args *uap,
858 1.47 rmind register_t *retval)
859 1.30 ad {
860 1.32 dsl /* {
861 1.30 ad syscallarg(int) features;
862 1.30 ad syscallarg(struct lwpctl **) address;
863 1.32 dsl } */
864 1.30 ad int error, features;
865 1.30 ad vaddr_t vaddr;
866 1.30 ad
867 1.30 ad features = SCARG(uap, features);
868 1.35 ad features &= ~(LWPCTL_FEATURE_CURCPU | LWPCTL_FEATURE_PCTR);
869 1.35 ad if (features != 0)
870 1.30 ad return ENODEV;
871 1.30 ad if ((error = lwp_ctl_alloc(&vaddr)) != 0)
872 1.30 ad return error;
873 1.30 ad return copyout(&vaddr, SCARG(uap, address), sizeof(void *));
874 1.30 ad }
875