xref: /xnu-8792.41.9/libsyscall/custom/__fork.s (revision 5c2921b07a2480ab43ec66f5b9e41cb872bc554f)
1*5c2921b0SApple OSS Distributions/*
2*5c2921b0SApple OSS Distributions * Copyright (c) 1999-2010 Apple Inc. All rights reserved.
3*5c2921b0SApple OSS Distributions *
4*5c2921b0SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*5c2921b0SApple OSS Distributions *
6*5c2921b0SApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code
7*5c2921b0SApple OSS Distributions * as defined in and that are subject to the Apple Public Source License
8*5c2921b0SApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in
9*5c2921b0SApple OSS Distributions * compliance with the License. The rights granted to you under the License
10*5c2921b0SApple OSS Distributions * may not be used to create, or enable the creation or redistribution of,
11*5c2921b0SApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to
12*5c2921b0SApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any
13*5c2921b0SApple OSS Distributions * terms of an Apple operating system software license agreement.
14*5c2921b0SApple OSS Distributions *
15*5c2921b0SApple OSS Distributions * Please obtain a copy of the License at
16*5c2921b0SApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*5c2921b0SApple OSS Distributions *
18*5c2921b0SApple OSS Distributions * The Original Code and all software distributed under the License are
19*5c2921b0SApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*5c2921b0SApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*5c2921b0SApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*5c2921b0SApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*5c2921b0SApple OSS Distributions * Please see the License for the specific language governing rights and
24*5c2921b0SApple OSS Distributions * limitations under the License.
25*5c2921b0SApple OSS Distributions *
26*5c2921b0SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*5c2921b0SApple OSS Distributions */
28*5c2921b0SApple OSS Distributions/* Copyright (c) 1992 NeXT Computer, Inc.  All rights reserved.
29*5c2921b0SApple OSS Distributions *
30*5c2921b0SApple OSS Distributions *	File:	libc/ppc/sys/fork.s
31*5c2921b0SApple OSS Distributions *
32*5c2921b0SApple OSS Distributions * HISTORY
33*5c2921b0SApple OSS Distributions * 18-Nov-92  Ben Fathi ([email protected])
34*5c2921b0SApple OSS Distributions *	Created from M88K sources
35*5c2921b0SApple OSS Distributions *
36*5c2921b0SApple OSS Distributions * 11-Jan-92  Peter King ([email protected])
37*5c2921b0SApple OSS Distributions *	Created from M68K sources
38*5c2921b0SApple OSS Distributions */
39*5c2921b0SApple OSS Distributions
40*5c2921b0SApple OSS Distributions/*
41*5c2921b0SApple OSS Distributions * All of the asm stubs in this file have been adjusted so the pre/post
42*5c2921b0SApple OSS Distributions * fork handlers and dyld fixup are done in C inside Libc. As such, Libc
43*5c2921b0SApple OSS Distributions * expects the __fork asm to fix up the return code to be -1, 0 or pid
44*5c2921b0SApple OSS Distributions * and errno if needed.
45*5c2921b0SApple OSS Distributions */
46*5c2921b0SApple OSS Distributions
47*5c2921b0SApple OSS Distributions#include "SYS.h"
48*5c2921b0SApple OSS Distributions
49*5c2921b0SApple OSS Distributions#if defined(__i386__)
50*5c2921b0SApple OSS Distributions
51*5c2921b0SApple OSS DistributionsLEAF(___fork, 0)
52*5c2921b0SApple OSS Distributions	subl  $28, %esp   // Align the stack, with 16 bytes of extra padding that we'll need
53*5c2921b0SApple OSS Distributions
54*5c2921b0SApple OSS Distributions	movl 	$ SYS_fork,%eax; 	// code for fork -> eax
55*5c2921b0SApple OSS Distributions	UNIX_SYSCALL_TRAP		// do the system call
56*5c2921b0SApple OSS Distributions	jnc	L1			// jump if CF==0
57*5c2921b0SApple OSS Distributions
58*5c2921b0SApple OSS Distributions	CALL_EXTERN(tramp_cerror)
59*5c2921b0SApple OSS Distributions	movl	$-1,%eax
60*5c2921b0SApple OSS Distributions	addl	$28, %esp   // restore the stack
61*5c2921b0SApple OSS Distributions	ret
62*5c2921b0SApple OSS Distributions
63*5c2921b0SApple OSS DistributionsL1:
64*5c2921b0SApple OSS Distributions	orl	%edx,%edx	// CF=OF=0,  ZF set if zero result
65*5c2921b0SApple OSS Distributions	jz	L2		// parent, since r1 == 0 in parent, 1 in child
66*5c2921b0SApple OSS Distributions
67*5c2921b0SApple OSS Distributions	//child here...
68*5c2921b0SApple OSS Distributions	xorl	%eax,%eax	// zero eax
69*5c2921b0SApple OSS Distributions	REG_TO_EXTERN(%eax, __current_pid);
70*5c2921b0SApple OSS DistributionsL2:
71*5c2921b0SApple OSS Distributions	addl	$28, %esp   // restore the stack
72*5c2921b0SApple OSS Distributions	// parent ends up here skipping child portion
73*5c2921b0SApple OSS Distributions	ret
74*5c2921b0SApple OSS Distributions
75*5c2921b0SApple OSS Distributions#elif defined(__x86_64__)
76*5c2921b0SApple OSS Distributions
77*5c2921b0SApple OSS DistributionsLEAF(___fork, 0)
78*5c2921b0SApple OSS Distributions	subq  $24, %rsp   // Align the stack, plus room for local storage
79*5c2921b0SApple OSS Distributions
80*5c2921b0SApple OSS Distributions	movl 	$ SYSCALL_CONSTRUCT_UNIX(SYS_fork),%eax; // code for fork -> rax
81*5c2921b0SApple OSS Distributions	UNIX_SYSCALL_TRAP		// do the system call
82*5c2921b0SApple OSS Distributions	jnc	L1			// jump if CF==0
83*5c2921b0SApple OSS Distributions
84*5c2921b0SApple OSS Distributions	movq	%rax, %rdi
85*5c2921b0SApple OSS Distributions	CALL_EXTERN(_cerror)
86*5c2921b0SApple OSS Distributions	movq	$-1, %rax
87*5c2921b0SApple OSS Distributions	addq	$24, %rsp   // restore the stack
88*5c2921b0SApple OSS Distributions	ret
89*5c2921b0SApple OSS Distributions
90*5c2921b0SApple OSS DistributionsL1:
91*5c2921b0SApple OSS Distributions	orl	%edx,%edx	// CF=OF=0,  ZF set if zero result
92*5c2921b0SApple OSS Distributions	jz	L2		// parent, since r1 == 0 in parent, 1 in child
93*5c2921b0SApple OSS Distributions
94*5c2921b0SApple OSS Distributions	//child here...
95*5c2921b0SApple OSS Distributions	xorq	%rax, %rax
96*5c2921b0SApple OSS Distributions	PICIFY(__current_pid)
97*5c2921b0SApple OSS Distributions	movl	%eax,(%r11)
98*5c2921b0SApple OSS DistributionsL2:
99*5c2921b0SApple OSS Distributions	// parent ends up here skipping child portion
100*5c2921b0SApple OSS Distributions	addq	$24, %rsp   // restore the stack
101*5c2921b0SApple OSS Distributions	ret
102*5c2921b0SApple OSS Distributions	UNWIND_EPILOGUE
103*5c2921b0SApple OSS Distributions
104*5c2921b0SApple OSS Distributions#elif defined(__arm__)
105*5c2921b0SApple OSS Distributions
106*5c2921b0SApple OSS DistributionsMI_ENTRY_POINT(___fork)
107*5c2921b0SApple OSS Distributions	stmfd	sp!, {r4, r7, lr}
108*5c2921b0SApple OSS Distributions	add	r7, sp, #4
109*5c2921b0SApple OSS Distributions
110*5c2921b0SApple OSS Distributions	mov	r1, #1					// prime results
111*5c2921b0SApple OSS Distributions	mov	r12, #SYS_fork
112*5c2921b0SApple OSS Distributions	swi	#SWI_SYSCALL				// make the syscall
113*5c2921b0SApple OSS Distributions	bcs	Lbotch					// error?
114*5c2921b0SApple OSS Distributions
115*5c2921b0SApple OSS Distributions	cmp	r1, #0					// parent (r1=0) or child(r1=1)
116*5c2921b0SApple OSS Distributions	beq	Lparent
117*5c2921b0SApple OSS Distributions
118*5c2921b0SApple OSS Distributions	//child here...
119*5c2921b0SApple OSS Distributions	MI_GET_ADDRESS(r3, __current_pid)
120*5c2921b0SApple OSS Distributions	mov	r0, #0
121*5c2921b0SApple OSS Distributions	str	r0, [r3]		// clear cached pid in child
122*5c2921b0SApple OSS Distributions	ldmfd   sp!, {r4, r7, pc}
123*5c2921b0SApple OSS Distributions
124*5c2921b0SApple OSS DistributionsLbotch:
125*5c2921b0SApple OSS Distributions	MI_CALL_EXTERNAL(_cerror)			// jump here on error
126*5c2921b0SApple OSS Distributions	mov	r0,#-1					// set the error
127*5c2921b0SApple OSS Distributions	// fall thru
128*5c2921b0SApple OSS DistributionsLparent:
129*5c2921b0SApple OSS Distributions	ldmfd   sp!, {r4, r7, pc}			// pop and return
130*5c2921b0SApple OSS Distributions
131*5c2921b0SApple OSS Distributions#elif defined(__arm64__)
132*5c2921b0SApple OSS Distributions
133*5c2921b0SApple OSS Distributions#include <mach/arm64/asm.h>
134*5c2921b0SApple OSS Distributions
135*5c2921b0SApple OSS DistributionsMI_ENTRY_POINT(___fork)
136*5c2921b0SApple OSS Distributions	ARM64_STACK_PROLOG
137*5c2921b0SApple OSS Distributions	PUSH_FRAME
138*5c2921b0SApple OSS Distributions	// ARM moves a 1 in to r1 here, but I can't see why.
139*5c2921b0SApple OSS Distributions	mov		x16, #SYS_fork				// Syscall code
140*5c2921b0SApple OSS Distributions	svc		#SWI_SYSCALL				// Trap to kernel
141*5c2921b0SApple OSS Distributions	b.cs	Lbotch						// Carry bit indicates failure
142*5c2921b0SApple OSS Distributions	cbz		x1, Lparent					// x1 == 0 indicates that we are the parent
143*5c2921b0SApple OSS Distributions
144*5c2921b0SApple OSS Distributions	// Child
145*5c2921b0SApple OSS Distributions	MI_GET_ADDRESS(x9, __current_pid)	// Get address of cached "current pid"
146*5c2921b0SApple OSS Distributions	mov		w0, #0
147*5c2921b0SApple OSS Distributions	str		w0, [x9]					// Clear cached current pid
148*5c2921b0SApple OSS Distributions	POP_FRAME							// And done
149*5c2921b0SApple OSS Distributions	ARM64_STACK_EPILOG
150*5c2921b0SApple OSS Distributions
151*5c2921b0SApple OSS DistributionsLbotch:
152*5c2921b0SApple OSS Distributions	MI_CALL_EXTERNAL(_cerror)			// Handle error
153*5c2921b0SApple OSS Distributions	mov		w0, #-1						// Return value is -1
154*5c2921b0SApple OSS DistributionsLparent:
155*5c2921b0SApple OSS Distributions	POP_FRAME							// Return
156*5c2921b0SApple OSS Distributions	ARM64_STACK_EPILOG
157*5c2921b0SApple OSS Distributions
158*5c2921b0SApple OSS Distributions#else
159*5c2921b0SApple OSS Distributions#error Unsupported architecture
160*5c2921b0SApple OSS Distributions#endif
161