xref: /illumos-gate/usr/src/lib/libc/i386/sys/vforkx.S (revision 85dff7a05711e1238299281f8a94d2d40834c775)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
24 * Use is subject to license terms.
25 */
26
27	.file	"vforkx.s"
28
29#include "SYS.h"
30#include <assym.h>
31
32/*
33 * pid = vforkx(flags);
34 * syscall trap: forksys(2, flags)
35 *
36 * pid = vfork();
37 * syscall trap: forksys(2, 0)
38 *
39 * From the syscall:
40 * %edx == 0 in parent process, %edx = 1 in child process.
41 * %eax == pid of child in parent, %eax == pid of parent in child.
42 *
43 * The child gets a zero return value.
44 * The parent gets the pid of the child.
45 */
46
47/*
48 * The child of vfork() will execute in the parent's address space,
49 * thereby changing the stack before the parent runs again.
50 * Therefore we have to be careful how we return from vfork().
51 * Pity the poor debugger developer who has to deal with this kludge.
52 *
53 * We block all blockable signals while performing the vfork() system call
54 * trap.  This enables us to set curthread->ul_vfork safely, so that we
55 * don't end up in a signal handler with curthread->ul_vfork set wrong.
56 */
57
58	ENTRY_NP(vforkx)
59	movl	4(%esp), %eax		/* flags */
60	jmp	0f
61	ENTRY_NP(vfork)
62	xorl	%eax, %eax		/* flags = 0 */
630:
64	popl	%ecx			/* save return %eip in %ecx */
65	pushl	%eax			/* flags */
66	pushl	$MASKSET3		/* block all signals */
67	pushl	$MASKSET2
68	pushl	$MASKSET1
69	pushl	$MASKSET0
70	pushl	$SIG_SETMASK
71	pushl	%ecx
72	__SYSCALLINT(lwp_sigmask)
73	addl	$24, %esp
74
75	pushl	$2
76	pushl	%ecx
77	__SYSCALLINT(forksys)		/* vforkx(flags) */
78	jae 	1f
79
80	/* reconstruct stack before jumping to __cerror */
81	addl	$12, %esp
82	pushl	%ecx
83	pushl	%eax			/* save the vfork() error number */
84
85	pushl	%gs:UL_SIGMASK+12	/* reinstate signals */
86	pushl	%gs:UL_SIGMASK+8
87	pushl	%gs:UL_SIGMASK+4
88	pushl	%gs:UL_SIGMASK
89	pushl	$SIG_SETMASK
90	pushl	%ecx
91	__SYSCALLINT(lwp_sigmask)
92	addl	$24, %esp
93
94	popl	%eax			/* restore the vfork() error number */
95	jmp	__cerror
96
971:
98	addl	$12, %esp
99	/*
100	 * To determine if we are (still) a child of vfork(), the child
101	 * increments curthread->ul_vfork by one and the parent decrements
102	 * it by one.  If the result is zero, then we are not a child of
103	 * vfork(), else we are.  We do this to deal with the case of
104	 * a vfork() child calling vfork().
105	 */
106	cmpl	$0, %edx
107	jne	2f
108	movl	%gs:UL_VFORK, %edx
109	cmpl	$0, %edx		/* don't let it go negative */
110	je	3f
111	subl	$1, %edx		/* curthread->ul_vfork--; */
112	jmp	3f
1132:
114	xorl	%eax, %eax		/* zero the return value in the child */
115	movl	%gs:UL_VFORK, %edx
116	addl	$1, %edx		/* curthread->ul_vfork++; */
1173:
118	movl	%edx, %gs:UL_VFORK
119	/*
120	 * Clear the schedctl interface in both parent and child.
121	 * (The child might have modified the parent.)
122	 */
123	xorl	%edx, %edx
124	movl	%edx, %gs:UL_SCHEDCTL
125	movl	%edx, %gs:UL_SCHEDCTL_CALLED
126	pushl	%eax			/* save the vfork() return value */
127
128	pushl	%gs:UL_SIGMASK+12	/* reinstate signals */
129	pushl	%gs:UL_SIGMASK+8
130	pushl	%gs:UL_SIGMASK+4
131	pushl	%gs:UL_SIGMASK
132	pushl	$SIG_SETMASK
133	pushl	%ecx
134	__SYSCALLINT(lwp_sigmask)
135	addl	$24, %esp
136
137	popl	%eax			/* restore the vfork() return value */
138	jmp	*%ecx			/* jump back to the caller */
139	SET_SIZE(vfork)
140	SET_SIZE(vforkx)
141