Home | History | Annotate | Line # | Download | only in freebsd
freebsd_fork.c revision 1.4
      1  1.4  christos /*	$NetBSD: freebsd_fork.c,v 1.4 2005/09/13 01:42:32 christos Exp $	*/
      2  1.1     pooka 
      3  1.1     pooka /*-
      4  1.1     pooka  * Copyright (c) 2002 The NetBSD Foundation, Inc.
      5  1.1     pooka  * All rights reserved.
      6  1.1     pooka  *
      7  1.3     perry  * Redistribution and use in source and binary forms, with or without
      8  1.1     pooka  * modification, are permitted provided that the following conditions
      9  1.1     pooka  * are met:
     10  1.1     pooka  * 1. Redistributions of source code must retain the above copyright
     11  1.1     pooka  *    notice, this list of conditions and the following disclaimer.
     12  1.1     pooka  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1     pooka  *    notice, this list of conditions and the following disclaimer in the
     14  1.1     pooka  *    documentation and/or other materials provided with the distribution.
     15  1.1     pooka  * 3. All advertising materials mentioning features or use of this software
     16  1.1     pooka  *    must display the following acknowledgement:
     17  1.1     pooka  *	This product includes software developed by the NetBSD
     18  1.1     pooka  *	Foundation, Inc. and its contributors.
     19  1.1     pooka  * 4. Neither the name of The NetBSD Foundation nor the names of its
     20  1.1     pooka  *    contributors may be used to endorse or promote products derived
     21  1.1     pooka  *    from this software without specific prior written permission.
     22  1.3     perry  *
     23  1.1     pooka  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     24  1.1     pooka  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25  1.1     pooka  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26  1.1     pooka  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     27  1.1     pooka  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28  1.1     pooka  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29  1.1     pooka  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30  1.1     pooka  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31  1.1     pooka  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32  1.1     pooka  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33  1.1     pooka  * POSSIBILITY OF SUCH DAMAGE.
     34  1.3     perry  */
     35  1.1     pooka 
     36  1.1     pooka #include <sys/cdefs.h>
     37  1.4  christos __KERNEL_RCSID(0, "$NetBSD: freebsd_fork.c,v 1.4 2005/09/13 01:42:32 christos Exp $");
     38  1.1     pooka 
     39  1.1     pooka #include <sys/param.h>
     40  1.1     pooka #include <sys/systm.h>
     41  1.1     pooka #include <sys/proc.h>
     42  1.1     pooka #include <sys/errno.h>
     43  1.1     pooka #include <sys/uio.h>
     44  1.1     pooka #include <sys/signal.h>
     45  1.1     pooka #include <sys/mount.h>
     46  1.1     pooka #include <sys/syscallargs.h>
     47  1.1     pooka 
     48  1.4  christos #include <compat/sys/signal.h>
     49  1.4  christos #include <compat/sys/signalvar.h>
     50  1.1     pooka 
     51  1.1     pooka #include <compat/freebsd/freebsd_syscallargs.h>
     52  1.1     pooka #include <compat/freebsd/freebsd_fork.h>
     53  1.1     pooka 
     54  1.4  christos #include <machine/freebsd_machdep.h>
     55  1.4  christos 
     56  1.1     pooka /*
     57  1.1     pooka  * rfork()
     58  1.1     pooka  */
     59  1.1     pooka int
     60  1.2   thorpej freebsd_sys_rfork(struct lwp *l, void *v, register_t *retval)
     61  1.1     pooka {
     62  1.1     pooka 	struct freebsd_sys_rfork_args /* {
     63  1.1     pooka 		syscallargs(int) flags;
     64  1.1     pooka 	} */ *uap = v;
     65  1.1     pooka 	int flags;
     66  1.1     pooka 
     67  1.1     pooka 	flags = 0;
     68  1.1     pooka 
     69  1.1     pooka 	if ((SCARG(uap, flags)
     70  1.1     pooka 	    & (FREEBSD_RFFDG | FREEBSD_RFCFDG))
     71  1.1     pooka 	    == (FREEBSD_RFFDG | FREEBSD_RFCFDG))
     72  1.1     pooka 		return (EINVAL);
     73  1.1     pooka 
     74  1.1     pooka 	if ((SCARG(uap, flags) & FREEBSD_RFPROC) == 0)
     75  1.1     pooka 		return (EINVAL);
     76  1.1     pooka 
     77  1.1     pooka 	if (SCARG(uap, flags) & FREEBSD_RFNOWAIT)
     78  1.1     pooka 		flags |= FORK_NOWAIT;
     79  1.1     pooka 	if (SCARG(uap, flags) & FREEBSD_RFMEM)
     80  1.1     pooka 		flags |= FORK_SHAREVM;
     81  1.1     pooka 	if (SCARG(uap, flags) & FREEBSD_RFSIGSHARE)
     82  1.1     pooka 		flags |= FORK_SHARESIGS;
     83  1.1     pooka 
     84  1.1     pooka 	if (SCARG(uap, flags) & FREEBSD_RFCFDG)
     85  1.1     pooka 		flags |= FORK_CLEANFILES;
     86  1.1     pooka 	else if ((SCARG(uap, flags) & FREEBSD_RFFDG) == 0)
     87  1.1     pooka 		flags |= FORK_SHAREFILES;
     88  1.1     pooka 
     89  1.2   thorpej 	return (fork1(l, flags,
     90  1.1     pooka 	    SCARG(uap, flags) & FREEBSD_RFLINUXTHPN ? SIGUSR1 : SIGCHLD,
     91  1.1     pooka 	    NULL, 0, NULL, NULL, retval, NULL));
     92  1.1     pooka }
     93