-
Notifications
You must be signed in to change notification settings - Fork 46
/
do_exit_wait.c
278 lines (237 loc) · 7.83 KB
/
do_exit_wait.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/**
* Syscall in this file: exit, waitpid
*
* do_exit()
* Input: m1_i1: exit status
*
* do_waitpid()
* Input: m1_i1: pid
* m1_i2: options
*
* Return: reply_res: pid of the child process
* m1_i2: wstatus value
*
* if no child is found, this process is blocked
*
* @author Bruce Tan
* @email brucetansh@gmail.com
*
* @author Paul Monigatti
* @email paulmoni@waikato.ac.nz
*
* @create date 2017-08-23 06:09:19
*
*/
#include <kernel/kernel.h>
#include <winix/list.h>
#include <sys/wait.h>
#include <winix/dev.h>
#include <fs/inode.h>
#include <fs/fs_methods.h>
#include <winix/ksignal.h>
int get_wstats(struct proc* child){
int ret = (child->exit_status << 8) | (child->sig_status & 0x7f);
// klog("return wstatus %d for %d\n", ret, child->proc_nr);
return ret;
}
int do_waitpid(struct proc *parent, struct message *mesg){
struct proc *child;
pid_t pid;
vptr_t* vptr;
ptr_t *ptr;
int options;
int children = 0;
pid = mesg->m1_i1;
options = mesg->m1_i2;
vptr = mesg->m1_p1;
// kdebug("waitpid by %d, arg %d %d %x\n", parent->proc_nr, pid, options, vptr);
if(vptr && !is_vaddr_accessible(vptr, parent))
return -EFAULT;
foreach_child(child, parent){
/**
* The value of pid can be:
*
* < -1 meaning wait for any child process whose process group ID is
* equal to the absolute value of pid.
*
* -1 meaning wait for any child process.
*
* 0 meaning wait for any child process whose process group ID is
* equal to that of the calling process.
*
* > 0 meaning wait for the child whose process ID is equal to the
* value of pid.
**/
if (pid > 0 && pid != child->pid) continue;
if (pid < -1 && -pid != child->procgrp) continue;
if (pid == 0 && child->procgrp != parent->procgrp) continue;
// if it's a zombie, or a stopped process while WUNTRACED is set
if( (child->state & STATE_ZOMBIE) ||
(options & WUNTRACED && child->state & STATE_STOPPED) ){
if(vptr){
ptr = get_physical_addr(vptr, parent);
*ptr = get_wstats(child);
}
release_zombie(child);
return child->pid;
}
// kdebug("%d wait for %d\n", parent->proc_nr, child->proc_nr);
children++;
}
if(options & WNOHANG)
return 0;
// if this process has no valid children
if(children == 0)
return -ECHILD;
parent->wpid = pid;
parent->woptions = options;
parent->varg = vptr;
parent->state |= STATE_WAITING;
return SUSPEND;
}
/**
* Clear all the messages this process is sending
* @param who
*/
void clear_sending_mesg(struct proc *who){
struct proc *rp; // iterate over the process table
struct proc **xp; // iterate over the process's queue
foreach_proc_and_task(rp){
if((xp = &(rp->sender_q)) != NULL && *xp){
// walk through the message queues
while(*xp && *xp != who){
xp = &(*xp)->next_sender;
}
// remove it
if(*xp)
*xp = (*xp)->next_sender;
}
}
}
void clear_proc_mesg(struct proc *who){
clear_sending_mesg(who);
}
int check_waiting(struct proc* who){
struct proc* parent = get_proc(who->parent);
ptr_t *ptr;
struct message* mesg = get_ipc_mesg();
// if this process if waiting for the current to be exited process
// kreport_proc(parent);
// kreport_proc(who);
// kdebug(" curr %d check waiting %d state %x parent %d wpid %d state %x\n",
// who->proc_nr, who->proc_nr, who->state, parent->proc_nr, parent->wpid, parent->state);
if(parent && parent->state & STATE_WAITING){
pid_t pid = parent->wpid;
if( (pid > 0 && pid == who->pid) ||
(pid < -1 && -pid == who->procgrp) ||
(pid == 0 && parent->procgrp == who->procgrp) ||
(pid == -1)){
// stopped process is only reported if WUNTRACED is set
if(who->state & STATE_STOPPED && !(parent->woptions & WUNTRACED))
return -EINVAL;
if(parent->varg){
ptr = get_physical_addr(parent->varg, parent);
*ptr = get_wstats(who);
}
parent->state &= ~STATE_WAITING;
parent->wpid = 0;
syscall_reply2(WAITPID ,who->pid, parent->proc_nr, mesg);
if(who->state & STATE_ZOMBIE){
release_zombie(who);
}
return 0;
}
}else if(parent->state & STATE_VFORKING){
parent->state &= ~STATE_VFORKING;
syscall_reply2(VFORK, who->pid, parent->proc_nr, mesg);
}
return -ESRCH;
}
void exit_proc_in_interrupt(struct proc* who, int exit_val,int signum){
struct message em;
vptr_t *vptr;
ptr_t* ptr;
if(!in_interrupt())
return;
// if we are in interrupt, send a EXIT system call
// to the system on behalf of this process
// if most cases, this function is triggered when a signal
// is sent during exception, refer to kernel/exception.c for
// more detail e.g. send_sig(geduling_proc, SIGSEGV)
em.type = EXIT;
em.m1_i1 = exit_val;
em.m1_i2 = signum;
em.src = who->proc_nr;
vptr = copyto_user_heap(who, &em, sizeof(struct message));
ptr = get_physical_addr(vptr, who);
zombify(who);
// kdebug("exit interrupt who %d, curr %d\n", who->proc_nr, curr_scheduling_proc->proc_nr);
do_send(who, SYSTEM, (struct message*) ptr);
}
void exit_proc(struct proc *who, int status, int signum){
struct proc *mp;
int i;
struct filp* file;
struct message* mesg;
struct proc* parent;
if(in_interrupt()){
exit_proc_in_interrupt(who, status, signum);
return;
}
if(trace_syscall){
klog("%s[%d] exit status %d signal %d\n",who->name, who->pid, status, signum);
}
if(signum == SIGSEGV){
kreport_proc_sigsegv(who);
}
mesg = get_ipc_mesg();
parent = get_proc(who->parent);
zombify(who);
clear_proc_mesg(who);
who->exit_status = status;
who->sig_status = signum;
// When process is created by vfork, parent will be blocked
// until child _exit(2) or execve(2), to prevent race condition
// between the parent and child. Since both child and parent share
// the same memories, so this is special case where we do not release
// the process memory of the child
if(parent->state & STATE_VFORKING){
// parent is blocked by vfork(2)
parent->state &= ~STATE_VFORKING;
mesg->type = VFORK;
syscall_reply2(VFORK, who->pid, parent->proc_nr, mesg);
}else{
release_proc_mem(who);
}
// child will be adopted by INIT
foreach_child(mp, who){
mp->parent = INIT;
}
for(i = 0; i < OPEN_MAX; i++){
file = who->fp_filp[i];
if(file){
filp_close(file);
who->fp_filp[i] = NULL;
}
}
put_inode(who->fp_workdir, false);
put_inode(who->fp_rootdir, false);
// if No process is waiting for this process, send SIGCHLD to parent
check_waiting(who);
if (parent->sig_table[SIGCHLD].sa_handler != SIG_DFL){
send_sig(parent, SIGCHLD);
}
}
int do_exit(struct proc *who, struct message *m){
int status = m->m1_i1;
int signum = m->m1_i2;
// if exit_magic, this means process is returned
// from main, and exit syscall is triggered by
// epilogue ( see system/execve.c). The return value
// in winix is stored in register 1
if(status == EXIT_MAGIC){
status = who->ctx.m.regs[0];
}
exit_proc(who, status, signum);
return SUSPEND;
}