1 /* The kernel call implemented in this file:
4 * The parameters for this kernel call are:
5 * m1_i1: PR_ENDPT (parent, process that forked)
6 * m1_i2: PR_SLOT (child's process table slot)
7 * m1_p1: PR_MEM_PTR (new memory map for the child)
8 * m1_i3: PR_FORK_FLAGS (fork flags)
11 #include "kernel/system.h"
12 #include "kernel/vm.h"
17 #include <minix/endpoint.h>
18 #include <minix/u64.h>
22 /*===========================================================================*
24 *===========================================================================*/
25 int do_fork(struct proc
* caller
, message
* m_ptr
)
27 /* Handle sys_fork(). PR_ENDPT has forked. The child is PR_SLOT. */
29 char *old_fpu_save_area_p
;
31 register struct proc
*rpc
; /* child process pointer */
32 struct proc
*rpp
; /* parent process pointer */
37 if(!isokendpt(m_ptr
->PR_ENDPT
, &p_proc
))
40 rpp
= proc_addr(p_proc
);
41 rpc
= proc_addr(m_ptr
->PR_SLOT
);
42 if (isemptyp(rpp
) || ! isemptyp(rpc
)) return(EINVAL
);
44 assert(!(rpp
->p_misc_flags
& MF_DELIVERMSG
));
46 /* needs to be receiving so we know where the message buffer is */
47 if(!RTS_ISSET(rpp
, RTS_RECEIVING
)) {
48 printf("kernel: fork not done synchronously?\n");
52 /* make sure that the FPU context is saved in parent before copy */
54 /* Copy parent 'proc' struct to child. And reinitialize some fields. */
55 gen
= _ENDPOINT_G(rpc
->p_endpoint
);
57 old_fpu_save_area_p
= rpc
->p_seg
.fpu_state
;
59 *rpc
= *rpp
; /* copy 'proc' struct */
61 rpc
->p_seg
.fpu_state
= old_fpu_save_area_p
;
62 if(proc_used_fpu(rpp
))
63 memcpy(rpc
->p_seg
.fpu_state
, rpp
->p_seg
.fpu_state
, FPU_XFP_SIZE
);
65 if(++gen
>= _ENDPOINT_MAX_GENERATION
) /* increase generation */
66 gen
= 1; /* generation number wraparound */
67 rpc
->p_nr
= m_ptr
->PR_SLOT
; /* this was obliterated by copy */
68 rpc
->p_endpoint
= _ENDPOINT(gen
, rpc
->p_nr
); /* new endpoint of slot */
70 rpc
->p_reg
.retreg
= 0; /* child sees pid = 0 to know it is child */
71 rpc
->p_user_time
= 0; /* set all the accounting times to 0 */
74 rpc
->p_reg
.psw
&= ~TRACEBIT
; /* clear trace bit */
76 ~(MF_VIRT_TIMER
| MF_PROF_TIMER
| MF_SC_TRACE
| MF_SPROF_SEEN
);
77 rpc
->p_virt_left
= 0; /* disable, clear the process-virtual timers */
80 /* Mark process name as being a forked copy */
81 namelen
= strlen(rpc
->p_name
);
83 if(namelen
+strlen(FORKSTR
) < sizeof(rpc
->p_name
))
84 strcat(rpc
->p_name
, FORKSTR
);
86 /* the child process is not runnable until it's scheduled. */
87 RTS_SET(rpc
, RTS_NO_QUANTUM
);
88 reset_proc_accounting(rpc
);
90 make_zero64(rpc
->p_cpu_time_left
);
91 make_zero64(rpc
->p_cycles
);
92 make_zero64(rpc
->p_kcall_cycles
);
93 make_zero64(rpc
->p_kipc_cycles
);
95 /* If the parent is a privileged process, take away the privileges from the
96 * child process and inhibit it from running by setting the NO_PRIV flag.
97 * The caller should explicitely set the new privileges before executing.
99 if (priv(rpp
)->s_flags
& SYS_PROC
) {
100 rpc
->p_priv
= priv_addr(USER_PRIV_ID
);
101 rpc
->p_rts_flags
|= RTS_NO_PRIV
;
104 /* Calculate endpoint identifier, so caller knows what it is. */
105 m_ptr
->PR_ENDPT
= rpc
->p_endpoint
;
106 m_ptr
->PR_FORK_MSGADDR
= (char *) rpp
->p_delivermsg_vir
;
108 /* Don't schedule process in VM mode until it has a new pagetable. */
109 if(m_ptr
->PR_FORK_FLAGS
& PFF_VMINHIBIT
) {
110 RTS_SET(rpc
, RTS_VMINHIBIT
);
114 * Only one in group should have RTS_SIGNALED, child doesn't inherit tracing.
116 RTS_UNSET(rpc
, (RTS_SIGNALED
| RTS_SIG_PENDING
| RTS_P_STOP
));
117 (void) sigemptyset(&rpc
->p_pending
);
119 rpc
->p_seg
.p_cr3
= 0;
120 rpc
->p_seg
.p_cr3_v
= NULL
;
125 #endif /* USE_FORK */