-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsh.c
More file actions
396 lines (307 loc) · 9 KB
/
tsh.c
File metadata and controls
396 lines (307 loc) · 9 KB
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
* tsh - A tiny shell program with job control
*
* <Kyle Mullen CSCI ID: 011852231>
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>
#include "globals.h"
#include "jobs.h"
#include "helper-routines.h"
/* Global variables */
char prompt[] = "tsh> "; /* command line prompt (DO NOT CHANGE) */
int verbose = 0; /* if true, print additional output */
/* Function prototypes */
/* Here are the functions that you will implement */
void eval(char *cmdline);
int builtin_cmd(char **argv);
void do_bgfg(char **argv);
void waitfg(pid_t pid);
void sigchld_handler(int sig);
void sigtstp_handler(int sig);
void sigint_handler(int sig);
/*
* main - The shell's main routine
*/
int main(int argc, char **argv)
{
char c;
char cmdline[MAXLINE];
int emit_prompt = 1; /* emit prompt (default) */
/* Redirect stderr to stdout (so that driver will get all output
* on the pipe connected to stdout) */
dup2(1, 2);
/* Parse the command line */
while ((c = getopt(argc, argv, "hvp")) != EOF) {
switch (c) {
case 'h': /* print help message */
usage();
break;
case 'v': /* emit additional diagnostic info */
verbose = 1;
break;
case 'p': /* don't print a prompt */
emit_prompt = 0; /* handy for automatic testing */
break;
default:
usage();
}
}
/* Install the signal handlers */
/* These are the ones you will need to implement */
Signal(SIGINT, sigint_handler); /* ctrl-c */
Signal(SIGTSTP, sigtstp_handler); /* ctrl-z */
Signal(SIGCHLD, sigchld_handler); /* Terminated or stopped child */
/* This one provides a clean way to kill the shell */
Signal(SIGQUIT, sigquit_handler);
/* Initialize the job list */
initjobs(jobs);
/* Execute the shell's read/eval loop */
while (1) {
/* Read command line */
if (emit_prompt) {
printf("%s", prompt);
fflush(stdout);
}
if ((fgets(cmdline, MAXLINE, stdin) == NULL) && ferror(stdin))
app_error("fgets error");
if (feof(stdin)) { /* End of file (ctrl-d) */
fflush(stdout);
exit(0);
}
/* Evaluate the command line */
eval(cmdline);
fflush(stdout);
fflush(stdout);
}
exit(0); /* control never reaches here */
}
/*
* eval - Evaluate the command line that the user has just typed in
*
* If the user has requested a built-in command (quit, jobs, bg or fg)
* then execute it immediately. Otherwise, fork a child process and
* run the job in the context of the child. If the job is running in
* the foreground, wait for it to terminate and then return. Note:
* each child process must have a unique process group ID so that our
* background children don't receive SIGINT (SIGTSTP) from the kernel
* when we type ctrl-c (ctrl-z) at the keyboard.
*/
void eval(char *cmdline)
{
char *argv[MAXARGS];
char buf[MAXLINE];
int bg;
pid_t pid;
sigset_t mask;
/* Declare and initialize a signal set */
sigemptyset(&mask);
sigaddset(&mask, SIGCHLD);
strcpy(buf, cmdline);
bg = parseline(buf, argv);
if (argv[0] == NULL)
return; /* Ignore empty lines */
if (!builtin_cmd(argv)) { /* If user input is not a built in command, fork() */
/* Parent blocks SIGCHLD signal temporarily */
sigprocmask(SIG_BLOCK, &mask, 0);
if ((pid = fork()) < 0) { /* Child runs user job */
printf("fork(): forking error\n");
return;
}
if (pid == 0) {
setpgid(0,0); /* Change child process group id */
if (execvp(argv[0], argv) < 0) {
printf("%s: Command not found. \n", argv[0]);
exit(0);
}
} else {
/* Parent waits for foreground job to terminate */
if (bg == 1) {
addjob(jobs, pid, BG, cmdline); /* If bg, add job to job list as bg */
printf("[%d] (%d) %s", pid2jid(pid), pid, cmdline);
} else {
addjob(jobs, pid, FG, cmdline); /* If !bg, add job to job list as fg */
}
sigprocmask(SIG_UNBLOCK, &mask, 0); /* Parent unblocks SIGCHLD */
waitfg(pid);
}
}
return;
}
/////////////////////////////////////////////////////////////////////////////
//
// builtin_cmd - If the user has typed a built-in command, then execute
// it immediately. The command name would be in argv[0] and
// is a C string (do not convert to a C++ string type). The do_bgfg routine
// will need to use the argv array to look for a job number.
//
int builtin_cmd(char **argv)
{
if (!strcmp(argv[0], "quit")) {
int i;
int stopped = 0;
/* Check the state of jobs before exiting */
for (i=0; i<16; i++) {
if (jobs[i].state == ST)
stopped = 1;
}
if (stopped == 1) {
printf("There are stopped jobs\n");
return 1;
} else {
exit(0);
}
}
if (!strcmp(argv[0], "jobs")) {
listjobs(jobs);
return 1;
}
if (!strcmp(argv[0], "fg") || !strcmp(argv[0], "bg")) {
do_bgfg(argv);
return 1;
}
if (!strcmp(argv[0], "&")) /* Ignore singleton & */
return 1;
return 0; /* not a builtin command */
}
/////////////////////////////////////////////////////////////////////////////
//
// do_bgfg - Execute the builtin bg and fg commands
//
void do_bgfg(char **argv)
{
int jid, pid;
char *args = argv[1];
struct job_t *job;
if (args != NULL) { /* if arguments are passed to bg or fg */
if (args[0] == '%' && isdigit(args[1])) { /* is it a job id? */
jid = atoi(&args[1]);
if (!(job = getjobjid(jobs, jid))) {
printf("%s: No such job\n", args);
return;
}
} else if (isdigit(*argv[1])) { /* is it a process id? */
pid = atoi(&args[0]);
if (!(job = getjobpid(jobs, pid))) {
printf("(%s): No such process\n", argv[1]);
return;
}
} else {
printf("%s: argument must be a PID or %%jobid\n", argv[0]);
return;
}
} else {
printf("%s command requires PID or %%jobid argument\n", argv[0]);
return;
}
if (job != NULL) {
pid = job->pid;
if (job->state == ST) {
if (!strcmp(argv[0], "bg")) {
printf("[%d] (%d) %s", job->jid, job->pid, job->cmdline);
job->state = BG;
kill(-pid, SIGCONT);
}
if (!strcmp(argv[0], "fg")) {
job->state = FG;
kill(-pid, SIGCONT);
waitfg(job->pid);
}
}
if (job->state == BG) {
if (!strcmp(argv[0], "fg")) {
job->state = FG;
waitfg(job->pid);
}
}
}
return;
}
//
// You need to complete rest. At this point,
// the variable 'jobp' is the job pointer
// for the job ID specified as an argument.
//
/////////////////////////////////////////////////////////////////////////////
//
// waitfg - Block until process pid is no longer the foreground process
//
void waitfg(pid_t pid)
{
struct job_t *p = getjobpid(jobs, pid);
while (p->state == FG)
sleep(1);
return;
}
/////////////////////////////////////////////////////////////////////////////
//
// Signal handlers
//
/////////////////////////////////////////////////////////////////////////////
//
// sigchld_handler - The kernel sends a SIGCHLD to the shell whenever
// a child job terminates (becomes a zombie), or stops because it
// received a SIGSTOP or SIGTSTP signal. The handler reaps all
// available zombie children, but doesn't wait for any other
// currently running children to terminate.
//
void sigchld_handler(int sig)
{
int status;
pid_t pid;
while ((pid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0 ) {
if (WIFEXITED(status)) { /*checks if child terminated normally */
deletejob(jobs, pid);
}
if (WIFSIGNALED(status)) { /*checks if child was terminated by a signal that was not caught */
printf("Job [%d] (%d) terminated by signal %d\n", pid2jid(pid), pid, WTERMSIG(status));
deletejob(jobs,pid);
}
if (WIFSTOPPED(status)) { /*checks if child process that caused return is currently stopped */
getjobpid(jobs, pid)->state = ST;
printf("[%d] Stopped %s\n", pid2jid(pid), jobs->cmdline);
}
}
if (pid < 0 && errno != ECHILD) {
printf("waitpid error: %s\n", strerror(errno));
}
return;
}
/////////////////////////////////////////////////////////////////////////////
//
// sigint_handler - The kernel sends a SIGINT to the shell whenver the
// user types ctrl-c at the keyboard. Catch it and send it along
// to the foreground job.
//
void sigint_handler(int sig)
{
pid_t pid = fgpid(jobs);
if (fgpid(jobs) != 0) {
kill(-pid, SIGINT);
}
return;
}
/////////////////////////////////////////////////////////////////////////////
//
// sigtstp_handler - The kernel sends a SIGTSTP to the shell whenever
// the user types ctrl-z at the keyboard. Catch it and suspend the
// foreground job by sending it a SIGTSTP.
//
void sigtstp_handler(int sig)
{
pid_t pid = fgpid(jobs);
if (fgpid(jobs) != 0) {
kill(-pid, SIGTSTP);
}
return;
}
/*********************
* End signal handlers
*********************/