Home | History | Annotate | Line # | Download | only in common
linux_sched.c revision 1.31
      1  1.31      manu /*	$NetBSD: linux_sched.c,v 1.31 2006/06/25 16:15:39 manu Exp $	*/
      2   1.1      tron 
      3   1.1      tron /*-
      4   1.1      tron  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5   1.1      tron  * All rights reserved.
      6   1.1      tron  *
      7   1.1      tron  * This code is derived from software contributed to The NetBSD Foundation
      8   1.2   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9   1.1      tron  * NASA Ames Research Center; by Matthias Scheler.
     10   1.1      tron  *
     11   1.1      tron  * Redistribution and use in source and binary forms, with or without
     12   1.1      tron  * modification, are permitted provided that the following conditions
     13   1.1      tron  * are met:
     14   1.1      tron  * 1. Redistributions of source code must retain the above copyright
     15   1.1      tron  *    notice, this list of conditions and the following disclaimer.
     16   1.1      tron  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1      tron  *    notice, this list of conditions and the following disclaimer in the
     18   1.1      tron  *    documentation and/or other materials provided with the distribution.
     19   1.1      tron  * 3. All advertising materials mentioning features or use of this software
     20   1.1      tron  *    must display the following acknowledgement:
     21   1.1      tron  *	This product includes software developed by the NetBSD
     22   1.1      tron  *	Foundation, Inc. and its contributors.
     23   1.1      tron  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24   1.1      tron  *    contributors may be used to endorse or promote products derived
     25   1.1      tron  *    from this software without specific prior written permission.
     26   1.1      tron  *
     27   1.1      tron  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28   1.1      tron  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29   1.1      tron  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30   1.1      tron  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31   1.1      tron  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32   1.1      tron  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33   1.1      tron  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34   1.1      tron  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35   1.1      tron  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36   1.1      tron  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37   1.1      tron  * POSSIBILITY OF SUCH DAMAGE.
     38   1.1      tron  */
     39   1.1      tron 
     40   1.1      tron /*
     41   1.1      tron  * Linux compatibility module. Try to deal with scheduler related syscalls.
     42   1.1      tron  */
     43   1.8     lukem 
     44   1.8     lukem #include <sys/cdefs.h>
     45  1.31      manu __KERNEL_RCSID(0, "$NetBSD: linux_sched.c,v 1.31 2006/06/25 16:15:39 manu Exp $");
     46   1.1      tron 
     47   1.1      tron #include <sys/param.h>
     48   1.1      tron #include <sys/mount.h>
     49   1.1      tron #include <sys/proc.h>
     50   1.1      tron #include <sys/systm.h>
     51  1.22      manu #include <sys/sysctl.h>
     52  1.22      manu #include <sys/malloc.h>
     53  1.12   thorpej #include <sys/sa.h>
     54   1.1      tron #include <sys/syscallargs.h>
     55  1.14  jdolecek #include <sys/wait.h>
     56  1.30      elad #include <sys/kauth.h>
     57   1.3     itohy 
     58   1.3     itohy #include <machine/cpu.h>
     59   1.1      tron 
     60   1.1      tron #include <compat/linux/common/linux_types.h>
     61   1.1      tron #include <compat/linux/common/linux_signal.h>
     62  1.21      manu #include <compat/linux/common/linux_machdep.h> /* For LINUX_NPTL */
     63  1.19      manu #include <compat/linux/common/linux_emuldata.h>
     64   1.1      tron 
     65   1.1      tron #include <compat/linux/linux_syscallargs.h>
     66   1.1      tron 
     67   1.1      tron #include <compat/linux/common/linux_sched.h>
     68   1.1      tron 
     69   1.1      tron int
     70  1.12   thorpej linux_sys_clone(l, v, retval)
     71  1.12   thorpej 	struct lwp *l;
     72   1.1      tron 	void *v;
     73   1.1      tron 	register_t *retval;
     74   1.1      tron {
     75   1.1      tron 	struct linux_sys_clone_args /* {
     76   1.1      tron 		syscallarg(int) flags;
     77   1.1      tron 		syscallarg(void *) stack;
     78  1.21      manu #ifdef LINUX_NPTL
     79  1.19      manu 		syscallarg(void *) parent_tidptr;
     80  1.19      manu 		syscallarg(void *) child_tidptr;
     81  1.19      manu #endif
     82   1.1      tron 	} */ *uap = v;
     83   1.1      tron 	int flags, sig;
     84  1.19      manu 	int error;
     85  1.21      manu #ifdef LINUX_NPTL
     86  1.19      manu 	struct linux_emuldata *led;
     87  1.19      manu #endif
     88   1.1      tron 
     89   1.1      tron 	/*
     90   1.1      tron 	 * We don't support the Linux CLONE_PID or CLONE_PTRACE flags.
     91   1.1      tron 	 */
     92   1.1      tron 	if (SCARG(uap, flags) & (LINUX_CLONE_PID|LINUX_CLONE_PTRACE))
     93   1.1      tron 		return (EINVAL);
     94   1.1      tron 
     95  1.13  jdolecek 	/*
     96  1.13  jdolecek 	 * Thread group implies shared signals. Shared signals
     97  1.13  jdolecek 	 * imply shared VM. This matches what Linux kernel does.
     98  1.13  jdolecek 	 */
     99  1.13  jdolecek 	if (SCARG(uap, flags) & LINUX_CLONE_THREAD
    100  1.13  jdolecek 	    && (SCARG(uap, flags) & LINUX_CLONE_SIGHAND) == 0)
    101  1.13  jdolecek 		return (EINVAL);
    102  1.13  jdolecek 	if (SCARG(uap, flags) & LINUX_CLONE_SIGHAND
    103  1.13  jdolecek 	    && (SCARG(uap, flags) & LINUX_CLONE_VM) == 0)
    104  1.13  jdolecek 		return (EINVAL);
    105  1.13  jdolecek 
    106   1.1      tron 	flags = 0;
    107   1.1      tron 
    108   1.1      tron 	if (SCARG(uap, flags) & LINUX_CLONE_VM)
    109   1.1      tron 		flags |= FORK_SHAREVM;
    110   1.1      tron 	if (SCARG(uap, flags) & LINUX_CLONE_FS)
    111   1.1      tron 		flags |= FORK_SHARECWD;
    112   1.1      tron 	if (SCARG(uap, flags) & LINUX_CLONE_FILES)
    113   1.1      tron 		flags |= FORK_SHAREFILES;
    114   1.1      tron 	if (SCARG(uap, flags) & LINUX_CLONE_SIGHAND)
    115   1.1      tron 		flags |= FORK_SHARESIGS;
    116   1.1      tron 	if (SCARG(uap, flags) & LINUX_CLONE_VFORK)
    117   1.1      tron 		flags |= FORK_PPWAIT;
    118   1.1      tron 
    119  1.28      manu 	/* Thread should not issue a SIGCHLD on termination */
    120  1.28      manu 	if (SCARG(uap, flags) & LINUX_CLONE_THREAD) {
    121  1.28      manu 		sig = 0;
    122  1.28      manu 	} else {
    123  1.28      manu 		sig = SCARG(uap, flags) & LINUX_CLONE_CSIGNAL;
    124  1.28      manu 		if (sig < 0 || sig >= LINUX__NSIG)
    125  1.28      manu 			return (EINVAL);
    126  1.28      manu 		sig = linux_to_native_signo[sig];
    127  1.28      manu 	}
    128   1.1      tron 
    129  1.21      manu #ifdef LINUX_NPTL
    130  1.19      manu 	led = (struct linux_emuldata *)l->l_proc->p_emuldata;
    131  1.19      manu 
    132  1.19      manu 	if (SCARG(uap, flags) & LINUX_CLONE_PARENT_SETTID) {
    133  1.19      manu 		if (SCARG(uap, parent_tidptr) == NULL) {
    134  1.19      manu 			printf("linux_sys_clone: NULL parent_tidptr\n");
    135  1.19      manu 			return EINVAL;
    136  1.19      manu 		}
    137  1.19      manu 
    138  1.19      manu 		if ((error = copyout(&l->l_proc->p_pid,
    139  1.19      manu 		    SCARG(uap, parent_tidptr),
    140  1.19      manu 		    sizeof(l->l_proc->p_pid))) != 0)
    141  1.19      manu 			return error;
    142  1.19      manu 	}
    143  1.19      manu 
    144  1.19      manu 	/* CLONE_CHILD_CLEARTID: TID clear in the child on exit() */
    145  1.19      manu 	if (SCARG(uap, flags) & LINUX_CLONE_CHILD_CLEARTID)
    146  1.19      manu 		led->child_clear_tid = SCARG(uap, child_tidptr);
    147  1.19      manu 	else
    148  1.19      manu 		led->child_clear_tid = NULL;
    149  1.19      manu 
    150  1.19      manu 	/* CLONE_CHILD_SETTID: TID set in the child on clone() */
    151  1.19      manu 	if (SCARG(uap, flags) & LINUX_CLONE_CHILD_SETTID)
    152  1.19      manu 		led->child_set_tid = SCARG(uap, child_tidptr);
    153  1.19      manu 	else
    154  1.19      manu 		led->child_set_tid = NULL;
    155  1.21      manu 
    156  1.21      manu 	/* CLONE_SETTLS: new Thread Local Storage in the child */
    157  1.21      manu 	if (SCARG(uap, flags) & LINUX_CLONE_SETTLS)
    158  1.21      manu 		led->set_tls = linux_get_newtls(l);
    159  1.21      manu 	else
    160  1.21      manu 		led->set_tls = 0;
    161  1.21      manu #endif /* LINUX_NPTL */
    162   1.1      tron 	/*
    163   1.1      tron 	 * Note that Linux does not provide a portable way of specifying
    164   1.1      tron 	 * the stack area; the caller must know if the stack grows up
    165   1.1      tron 	 * or down.  So, we pass a stack size of 0, so that the code
    166   1.1      tron 	 * that makes this adjustment is a noop.
    167   1.1      tron 	 */
    168  1.19      manu 	if ((error = fork1(l, flags, sig, SCARG(uap, stack), 0,
    169  1.19      manu 	    NULL, NULL, retval, NULL)) != 0)
    170  1.19      manu 		return error;
    171  1.19      manu 
    172  1.19      manu 	return 0;
    173   1.1      tron }
    174   1.1      tron 
    175   1.1      tron int
    176  1.12   thorpej linux_sys_sched_setparam(cl, v, retval)
    177  1.12   thorpej 	struct lwp *cl;
    178   1.1      tron 	void *v;
    179   1.1      tron 	register_t *retval;
    180   1.1      tron {
    181   1.1      tron 	struct linux_sys_sched_setparam_args /* {
    182   1.1      tron 		syscallarg(linux_pid_t) pid;
    183   1.1      tron 		syscallarg(const struct linux_sched_param *) sp;
    184   1.1      tron 	} */ *uap = v;
    185  1.12   thorpej 	struct proc *cp = cl->l_proc;
    186   1.1      tron 	int error;
    187   1.1      tron 	struct linux_sched_param lp;
    188   1.5  augustss 	struct proc *p;
    189   1.1      tron 
    190   1.1      tron /*
    191   1.1      tron  * We only check for valid parameters and return afterwards.
    192   1.1      tron  */
    193   1.1      tron 
    194   1.1      tron 	if (SCARG(uap, pid) < 0 || SCARG(uap, sp) == NULL)
    195   1.1      tron 		return EINVAL;
    196   1.1      tron 
    197   1.1      tron 	error = copyin(SCARG(uap, sp), &lp, sizeof(lp));
    198   1.1      tron 	if (error)
    199   1.1      tron 		return error;
    200   1.1      tron 
    201   1.1      tron 	if (SCARG(uap, pid) != 0) {
    202  1.30      elad 		kauth_cred_t pc = cp->p_cred;
    203   1.1      tron 
    204   1.1      tron 		if ((p = pfind(SCARG(uap, pid))) == NULL)
    205   1.1      tron 			return ESRCH;
    206   1.1      tron 		if (!(cp == p ||
    207  1.30      elad 		      kauth_cred_geteuid(pc) == 0 ||
    208  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_getuid(p->p_cred) ||
    209  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_getuid(p->p_cred) ||
    210  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_geteuid(p->p_cred) ||
    211  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_geteuid(p->p_cred)))
    212   1.1      tron 			return EPERM;
    213   1.1      tron 	}
    214   1.1      tron 
    215   1.1      tron 	return 0;
    216   1.1      tron }
    217   1.1      tron 
    218   1.1      tron int
    219  1.12   thorpej linux_sys_sched_getparam(cl, v, retval)
    220  1.12   thorpej 	struct lwp *cl;
    221   1.1      tron 	void *v;
    222   1.1      tron 	register_t *retval;
    223   1.1      tron {
    224   1.1      tron 	struct linux_sys_sched_getparam_args /* {
    225   1.1      tron 		syscallarg(linux_pid_t) pid;
    226   1.1      tron 		syscallarg(struct linux_sched_param *) sp;
    227   1.1      tron 	} */ *uap = v;
    228  1.12   thorpej 	struct proc *cp = cl->l_proc;
    229   1.5  augustss 	struct proc *p;
    230   1.1      tron 	struct linux_sched_param lp;
    231   1.1      tron 
    232   1.1      tron /*
    233   1.1      tron  * We only check for valid parameters and return a dummy priority afterwards.
    234   1.1      tron  */
    235   1.1      tron 	if (SCARG(uap, pid) < 0 || SCARG(uap, sp) == NULL)
    236   1.1      tron 		return EINVAL;
    237   1.1      tron 
    238   1.1      tron 	if (SCARG(uap, pid) != 0) {
    239  1.30      elad 		kauth_cred_t pc = cp->p_cred;
    240   1.1      tron 
    241   1.1      tron 		if ((p = pfind(SCARG(uap, pid))) == NULL)
    242   1.1      tron 			return ESRCH;
    243   1.1      tron 		if (!(cp == p ||
    244  1.30      elad 		      kauth_cred_geteuid(pc) == 0 ||
    245  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_getuid(p->p_cred) ||
    246  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_getuid(p->p_cred) ||
    247  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_geteuid(p->p_cred) ||
    248  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_geteuid(p->p_cred)))
    249   1.1      tron 			return EPERM;
    250   1.1      tron 	}
    251   1.1      tron 
    252   1.1      tron 	lp.sched_priority = 0;
    253   1.1      tron 	return copyout(&lp, SCARG(uap, sp), sizeof(lp));
    254   1.1      tron }
    255   1.1      tron 
    256   1.1      tron int
    257  1.12   thorpej linux_sys_sched_setscheduler(cl, v, retval)
    258  1.12   thorpej 	struct lwp *cl;
    259   1.1      tron 	void *v;
    260   1.1      tron 	register_t *retval;
    261   1.1      tron {
    262   1.1      tron 	struct linux_sys_sched_setscheduler_args /* {
    263   1.1      tron 		syscallarg(linux_pid_t) pid;
    264   1.1      tron 		syscallarg(int) policy;
    265   1.1      tron 		syscallarg(cont struct linux_sched_scheduler *) sp;
    266   1.1      tron 	} */ *uap = v;
    267  1.12   thorpej 	struct proc *cp = cl->l_proc;
    268   1.1      tron 	int error;
    269   1.1      tron 	struct linux_sched_param lp;
    270   1.5  augustss 	struct proc *p;
    271   1.1      tron 
    272   1.1      tron /*
    273   1.1      tron  * We only check for valid parameters and return afterwards.
    274   1.1      tron  */
    275   1.1      tron 
    276   1.1      tron 	if (SCARG(uap, pid) < 0 || SCARG(uap, sp) == NULL)
    277   1.1      tron 		return EINVAL;
    278   1.1      tron 
    279   1.1      tron 	error = copyin(SCARG(uap, sp), &lp, sizeof(lp));
    280   1.1      tron 	if (error)
    281   1.1      tron 		return error;
    282   1.1      tron 
    283   1.1      tron 	if (SCARG(uap, pid) != 0) {
    284  1.30      elad 		kauth_cred_t pc = cp->p_cred;
    285   1.1      tron 
    286   1.1      tron 		if ((p = pfind(SCARG(uap, pid))) == NULL)
    287   1.1      tron 			return ESRCH;
    288   1.1      tron 		if (!(cp == p ||
    289  1.30      elad 		      kauth_cred_geteuid(pc) == 0 ||
    290  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_getuid(p->p_cred) ||
    291  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_getuid(p->p_cred) ||
    292  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_geteuid(p->p_cred) ||
    293  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_geteuid(p->p_cred)))
    294   1.1      tron 			return EPERM;
    295   1.1      tron 	}
    296   1.1      tron 
    297   1.1      tron /*
    298   1.1      tron  * We can't emulate anything put the default scheduling policy.
    299   1.1      tron  */
    300   1.1      tron 	if (SCARG(uap, policy) != LINUX_SCHED_OTHER || lp.sched_priority != 0)
    301   1.1      tron 		return EINVAL;
    302   1.1      tron 
    303   1.1      tron 	return 0;
    304   1.1      tron }
    305   1.1      tron 
    306   1.1      tron int
    307  1.12   thorpej linux_sys_sched_getscheduler(cl, v, retval)
    308  1.12   thorpej 	struct lwp *cl;
    309   1.1      tron 	void *v;
    310   1.1      tron 	register_t *retval;
    311   1.1      tron {
    312   1.1      tron 	struct linux_sys_sched_getscheduler_args /* {
    313   1.1      tron 		syscallarg(linux_pid_t) pid;
    314   1.1      tron 	} */ *uap = v;
    315  1.12   thorpej 	struct proc *cp = cl->l_proc;
    316   1.5  augustss 	struct proc *p;
    317   1.1      tron 
    318   1.1      tron 	*retval = -1;
    319   1.1      tron /*
    320   1.1      tron  * We only check for valid parameters and return afterwards.
    321   1.1      tron  */
    322   1.1      tron 
    323   1.1      tron 	if (SCARG(uap, pid) != 0) {
    324  1.30      elad 		kauth_cred_t pc = cp->p_cred;
    325   1.1      tron 
    326   1.1      tron 		if ((p = pfind(SCARG(uap, pid))) == NULL)
    327   1.1      tron 			return ESRCH;
    328   1.1      tron 		if (!(cp == p ||
    329  1.30      elad 		      kauth_cred_geteuid(pc) == 0 ||
    330  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_getuid(p->p_cred) ||
    331  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_getuid(p->p_cred) ||
    332  1.30      elad 		      kauth_cred_getuid(pc) == kauth_cred_geteuid(p->p_cred) ||
    333  1.30      elad 		      kauth_cred_geteuid(pc) == kauth_cred_geteuid(p->p_cred)))
    334   1.1      tron 			return EPERM;
    335   1.1      tron 	}
    336   1.1      tron 
    337   1.1      tron /*
    338   1.1      tron  * We can't emulate anything put the default scheduling policy.
    339   1.1      tron  */
    340   1.1      tron 	*retval = LINUX_SCHED_OTHER;
    341   1.1      tron 	return 0;
    342   1.1      tron }
    343   1.1      tron 
    344   1.1      tron int
    345  1.12   thorpej linux_sys_sched_yield(cl, v, retval)
    346  1.12   thorpej 	struct lwp *cl;
    347   1.1      tron 	void *v;
    348   1.1      tron 	register_t *retval;
    349   1.1      tron {
    350  1.11  gmcgarry 
    351  1.11  gmcgarry 	yield();
    352   1.1      tron 	return 0;
    353   1.1      tron }
    354   1.1      tron 
    355   1.1      tron int
    356  1.12   thorpej linux_sys_sched_get_priority_max(cl, v, retval)
    357  1.12   thorpej 	struct lwp *cl;
    358   1.1      tron 	void *v;
    359   1.1      tron 	register_t *retval;
    360   1.1      tron {
    361   1.1      tron 	struct linux_sys_sched_get_priority_max_args /* {
    362   1.1      tron 		syscallarg(int) policy;
    363   1.1      tron 	} */ *uap = v;
    364   1.1      tron 
    365   1.1      tron /*
    366   1.1      tron  * We can't emulate anything put the default scheduling policy.
    367   1.1      tron  */
    368   1.1      tron 	if (SCARG(uap, policy) != LINUX_SCHED_OTHER) {
    369   1.1      tron 		*retval = -1;
    370   1.1      tron 		return EINVAL;
    371   1.1      tron 	}
    372   1.1      tron 
    373   1.1      tron 	*retval = 0;
    374   1.1      tron 	return 0;
    375   1.1      tron }
    376   1.1      tron 
    377   1.1      tron int
    378  1.12   thorpej linux_sys_sched_get_priority_min(cl, v, retval)
    379  1.12   thorpej 	struct lwp *cl;
    380   1.1      tron 	void *v;
    381   1.1      tron 	register_t *retval;
    382   1.1      tron {
    383   1.1      tron 	struct linux_sys_sched_get_priority_min_args /* {
    384   1.1      tron 		syscallarg(int) policy;
    385   1.1      tron 	} */ *uap = v;
    386   1.1      tron 
    387   1.1      tron /*
    388   1.1      tron  * We can't emulate anything put the default scheduling policy.
    389   1.1      tron  */
    390   1.1      tron 	if (SCARG(uap, policy) != LINUX_SCHED_OTHER) {
    391   1.1      tron 		*retval = -1;
    392   1.1      tron 		return EINVAL;
    393   1.1      tron 	}
    394   1.1      tron 
    395   1.1      tron 	*retval = 0;
    396   1.1      tron 	return 0;
    397   1.1      tron }
    398  1.14  jdolecek 
    399  1.14  jdolecek #ifndef __m68k__
    400  1.14  jdolecek /* Present on everything but m68k */
    401  1.14  jdolecek int
    402  1.14  jdolecek linux_sys_exit_group(l, v, retval)
    403  1.14  jdolecek 	struct lwp *l;
    404  1.14  jdolecek 	void *v;
    405  1.14  jdolecek 	register_t *retval;
    406  1.14  jdolecek {
    407  1.14  jdolecek 	struct linux_sys_exit_group_args /* {
    408  1.14  jdolecek 		syscallarg(int) error_code;
    409  1.14  jdolecek 	} */ *uap = v;
    410  1.31      manu 	struct proc *p = l->l_proc;
    411  1.31      manu 	struct linux_emuldata *led = p->p_emuldata;
    412  1.31      manu 	struct linux_emuldata *e;
    413  1.31      manu 	struct lwp *sl;
    414  1.31      manu 	struct proc *sp;
    415  1.31      manu 	int s;
    416  1.14  jdolecek 
    417  1.31      manu 	SCHED_LOCK(s);
    418  1.14  jdolecek 	/*
    419  1.31      manu 	 * The calling thread is supposed to kill all threads
    420  1.14  jdolecek 	 * in the same thread group (i.e. all threads created
    421  1.31      manu 	 * via clone(2) with CLONE_THREAD flag set).
    422  1.14  jdolecek 	 */
    423  1.31      manu         LIST_FOREACH(e, &led->s->threads, threads) {
    424  1.31      manu 		sp = e->proc;
    425  1.31      manu 
    426  1.31      manu 		if (sp == p)
    427  1.31      manu 			continue;
    428  1.31      manu #ifdef DEBUG_LINUX
    429  1.31      manu 		printf("linux_sys_exit_group: kill PID %d\n", sp->p_pid);
    430  1.31      manu #endif
    431  1.31      manu 		/* wakeup any waiter */
    432  1.31      manu 		if (sp->p_sigctx.ps_sigwaited &&
    433  1.31      manu 		    sigismember(sp->p_sigctx.ps_sigwait, SIGKILL) &&
    434  1.31      manu 		    sp->p_stat != SSTOP) {
    435  1.31      manu 			sched_wakeup(&sp->p_sigctx.ps_sigwait);
    436  1.31      manu 		}
    437  1.31      manu 
    438  1.31      manu 		/* post SIGKILL */
    439  1.31      manu 		sigaddset(&sp->p_sigctx.ps_siglist, SIGKILL);
    440  1.31      manu 		sp->p_sigctx.ps_sigcheck = 1;
    441  1.31      manu 
    442  1.31      manu 		/* Unblock the process if sleeping or stopped */
    443  1.31      manu 		switch(sp->p_stat) {
    444  1.31      manu 		case SSTOP:
    445  1.31      manu 			sl = proc_unstop(sp);
    446  1.31      manu 			break;
    447  1.31      manu 		case SACTIVE:
    448  1.31      manu 			sl = proc_representative_lwp(sp);
    449  1.31      manu 			break;
    450  1.31      manu 		default:
    451  1.31      manu 			sl = NULL;
    452  1.31      manu 			break;
    453  1.31      manu 		}
    454  1.31      manu 
    455  1.31      manu 		if (sl == NULL) {
    456  1.31      manu 			printf("linux_sys_exit_group: no lwp for process %d\n",
    457  1.31      manu 			    sp->p_pid);
    458  1.31      manu 			continue;
    459  1.31      manu 		}
    460  1.31      manu 
    461  1.31      manu 		if (sl->l_priority > PUSER)
    462  1.31      manu 			sl->l_priority = PUSER;
    463  1.31      manu 
    464  1.31      manu 		switch(sl->l_stat) {
    465  1.31      manu 		case LSSUSPENDED:
    466  1.31      manu 			lwp_continue(sl);
    467  1.31      manu 			/* FALLTHROUGH */
    468  1.31      manu 		case LSSTOP:
    469  1.31      manu 		case LSSLEEP:
    470  1.31      manu 		case LSIDL:
    471  1.31      manu 			setrunnable(sl);
    472  1.31      manu 			/* FALLTHROUGH */
    473  1.31      manu 		default:
    474  1.31      manu 			break;
    475  1.31      manu 		}
    476  1.31      manu 	}
    477  1.31      manu 	SCHED_UNLOCK(s);
    478  1.14  jdolecek 
    479  1.14  jdolecek 	exit1(l, W_EXITCODE(SCARG(uap, error_code), 0));
    480  1.14  jdolecek 	/* NOTREACHED */
    481  1.15      tron 	return 0;
    482  1.14  jdolecek }
    483  1.14  jdolecek #endif /* !__m68k__ */
    484  1.19      manu 
    485  1.21      manu #ifdef LINUX_NPTL
    486  1.19      manu int
    487  1.19      manu linux_sys_set_tid_address(l, v, retval)
    488  1.19      manu 	struct lwp *l;
    489  1.19      manu 	void *v;
    490  1.19      manu 	register_t *retval;
    491  1.19      manu {
    492  1.19      manu 	struct linux_sys_set_tid_address_args /* {
    493  1.19      manu 		syscallarg(int *) tidptr;
    494  1.19      manu 	} */ *uap = v;
    495  1.19      manu 	struct linux_emuldata *led;
    496  1.19      manu 
    497  1.19      manu 	led = (struct linux_emuldata *)l->l_proc->p_emuldata;
    498  1.19      manu 	led->clear_tid = SCARG(uap, tid);
    499  1.19      manu 
    500  1.19      manu 	*retval = l->l_proc->p_pid;
    501  1.19      manu 
    502  1.19      manu 	return 0;
    503  1.19      manu }
    504  1.20      manu 
    505  1.20      manu /* ARGUSED1 */
    506  1.20      manu int
    507  1.20      manu linux_sys_gettid(l, v, retval)
    508  1.20      manu 	struct lwp *l;
    509  1.20      manu 	void *v;
    510  1.20      manu 	register_t *retval;
    511  1.20      manu {
    512  1.31      manu 	/* The Linux kernel does it exactly that way */
    513  1.20      manu 	*retval = l->l_proc->p_pid;
    514  1.20      manu 	return 0;
    515  1.20      manu }
    516  1.22      manu 
    517  1.31      manu #ifdef LINUX_NPTL
    518  1.31      manu /* ARGUSED1 */
    519  1.31      manu int
    520  1.31      manu linux_sys_getpid(l, v, retval)
    521  1.31      manu 	struct lwp *l;
    522  1.31      manu 	void *v;
    523  1.31      manu 	register_t *retval;
    524  1.31      manu {
    525  1.31      manu 	struct linux_emuldata *led;
    526  1.31      manu 
    527  1.31      manu 	led = l->l_proc->p_emuldata;
    528  1.31      manu 
    529  1.31      manu 	/* The Linux kernel does it exactly that way */
    530  1.31      manu 	*retval = led->s->group_pid;
    531  1.31      manu 
    532  1.31      manu 	return 0;
    533  1.31      manu }
    534  1.31      manu 
    535  1.31      manu /* ARGUSED1 */
    536  1.31      manu int
    537  1.31      manu linux_sys_getppid(l, v, retval)
    538  1.31      manu 	struct lwp *l;
    539  1.31      manu 	void *v;
    540  1.31      manu 	register_t *retval;
    541  1.31      manu {
    542  1.31      manu 	struct proc *p = l->l_proc;
    543  1.31      manu 	struct linux_emuldata *led = p->p_emuldata;
    544  1.31      manu 	struct proc *glp;
    545  1.31      manu 	struct proc *pp;
    546  1.31      manu 
    547  1.31      manu 	/* Find the thread group leader's parent */
    548  1.31      manu 	if ((glp = pfind(led->s->group_pid)) == NULL) {
    549  1.31      manu 		/* Maybe panic... */
    550  1.31      manu 		printf("linux_sys_getppid: missing group leader PID %d\n",
    551  1.31      manu 		    led->s->group_pid);
    552  1.31      manu 		return -1;
    553  1.31      manu 	}
    554  1.31      manu 	pp = glp->p_pptr;
    555  1.31      manu 
    556  1.31      manu 	/* If this is a Linux process too, return thread group PID */
    557  1.31      manu 	if (pp->p_emul == p->p_emul) {
    558  1.31      manu 		struct linux_emuldata *pled;
    559  1.31      manu 
    560  1.31      manu 		pled = pp->p_emuldata;
    561  1.31      manu 		*retval = pled->s->group_pid;
    562  1.31      manu 	} else {
    563  1.31      manu 		*retval = pp->p_pid;
    564  1.31      manu 	}
    565  1.31      manu 
    566  1.31      manu 	return 0;
    567  1.31      manu }
    568  1.31      manu #endif /* LINUX_NPTL */
    569  1.31      manu 
    570  1.22      manu int
    571  1.22      manu linux_sys_sched_getaffinity(l, v, retval)
    572  1.22      manu 	struct lwp *l;
    573  1.22      manu 	void *v;
    574  1.22      manu 	register_t *retval;
    575  1.22      manu {
    576  1.22      manu 	struct linux_sys_sched_getaffinity_args /* {
    577  1.22      manu 		syscallarg(pid_t) pid;
    578  1.22      manu 		syscallarg(unsigned int) len;
    579  1.22      manu 		syscallarg(unsigned long *) mask;
    580  1.22      manu 	} */ *uap = v;
    581  1.22      manu 	int error;
    582  1.22      manu 	int ret;
    583  1.22      manu 	int ncpu;
    584  1.22      manu 	int name[2];
    585  1.22      manu 	size_t sz;
    586  1.22      manu 	char *data;
    587  1.22      manu 	int *retp;
    588  1.22      manu 
    589  1.22      manu 	if (SCARG(uap, mask) == NULL)
    590  1.22      manu 		return EINVAL;
    591  1.22      manu 
    592  1.22      manu 	if (SCARG(uap, len) < sizeof(int))
    593  1.22      manu 		return EINVAL;
    594  1.22      manu 
    595  1.22      manu 	if (pfind(SCARG(uap, pid)) == NULL)
    596  1.22      manu 		return ESRCH;
    597  1.22      manu 
    598  1.22      manu 	/*
    599  1.22      manu 	 * return the actual number of CPU, tag all of them as available
    600  1.22      manu 	 * The result is a mask, the first CPU being in the least significant
    601  1.22      manu 	 * bit.
    602  1.22      manu 	 */
    603  1.22      manu 	name[0] = CTL_HW;
    604  1.22      manu 	name[1] = HW_NCPU;
    605  1.22      manu 	sz = sizeof(ncpu);
    606  1.22      manu 
    607  1.22      manu 	if ((error = old_sysctl(&name[0], 2, &ncpu, &sz, NULL, 0, NULL)) != 0)
    608  1.22      manu 		return error;
    609  1.22      manu 
    610  1.22      manu 	ret = (1 << ncpu) - 1;
    611  1.22      manu 
    612  1.22      manu 	data = malloc(SCARG(uap, len), M_TEMP, M_WAITOK|M_ZERO);
    613  1.22      manu 	retp = (int *)&data[SCARG(uap, len) - sizeof(ret)];
    614  1.22      manu 	*retp = ret;
    615  1.22      manu 
    616  1.22      manu 	if ((error = copyout(data, SCARG(uap, mask), SCARG(uap, len))) != 0)
    617  1.22      manu 		return error;
    618  1.22      manu 
    619  1.22      manu 	free(data, M_TEMP);
    620  1.22      manu 
    621  1.22      manu 	return 0;
    622  1.22      manu 
    623  1.22      manu }
    624  1.22      manu 
    625  1.22      manu int
    626  1.22      manu linux_sys_sched_setaffinity(l, v, retval)
    627  1.22      manu 	struct lwp *l;
    628  1.22      manu 	void *v;
    629  1.22      manu 	register_t *retval;
    630  1.22      manu {
    631  1.22      manu 	struct linux_sys_sched_setaffinity_args /* {
    632  1.22      manu 		syscallarg(pid_t) pid;
    633  1.22      manu 		syscallarg(unsigned int) len;
    634  1.22      manu 		syscallarg(unsigned long *) mask;
    635  1.22      manu 	} */ *uap = v;
    636  1.22      manu 
    637  1.22      manu 	if (pfind(SCARG(uap, pid)) == NULL)
    638  1.22      manu 		return ESRCH;
    639  1.22      manu 
    640  1.22      manu 	/* Let's ignore it */
    641  1.22      manu #ifdef DEBUG_LINUX
    642  1.22      manu 	printf("linux_sys_sched_setaffinity\n");
    643  1.22      manu #endif
    644  1.22      manu 	return 0;
    645  1.22      manu };
    646  1.23      manu #endif /* LINUX_NPTL */
    647