-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyshell.c
More file actions
392 lines (327 loc) · 8.62 KB
/
myshell.c
File metadata and controls
392 lines (327 loc) · 8.62 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
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* MyShell - basic C shell that emulates the unix bash *
* Author - Danju Visvanthan *
* SID - 312095252 *
* Written for COMP3520 Assignment 1 2015 Semester 1. *
* *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#define MAX_BUFFER 1024 // max line buffer
#define MAX_ARGS 64 // max # args
#define SEPARATORS " \t\n" // token sparators
extern int errno;
int bg = 0;
static char * shell_path [1024];
void syserr(char*);
void to_wait(pid_t pid)
{
//waits if program is operating in foreground.
if(bg == 0)
{
waitpid(pid, NULL, WUNTRACED);
}
bg = 0;
}
void pipe_io(FILE * fp, int io)
{
/**
pipes file stream stdin = 1, stdout = 2
supports redirecting back to stdin.
**/
if(fp != NULL)
{
dup2(fileno(fp), io);
close(fileno(fp));
}
}
void catch_signal(int num)
{
printf("");
}
int main (int argc, char ** argv) {
signal(SIGINT, catch_signal);
signal(SIGTSTP, catch_signal);
FILE * fp_in = 0;
FILE * fp_out = 0;
FILE * batch = 0;
char * args[MAX_ARGS]; // pointers to arg strings
char ** arg; // working pointer thru args
getcwd(shell_path, sizeof(shell_path));
char * shell[256];
strcpy(shell, "SHELL=");
strcat(shell, getenv("PWD"));
strcat(shell, ++argv[0]); // remove the '.' at start of executable name.
putenv(shell); // set shell env
pid_t pid;
char * prompt = " ==> " ;
if(argv[1])
{
//check if batch file exists
if(access(argv[1], F_OK) == -1)
{
fprintf(stderr, "ERROR: opening script file; %s; No such file or directory\n", argv[1]);
//proceed normally if it doesn't.
}
else
{
batch = fopen(argv[1], "r");
}
}
/* keep reading input until "quit" command or eof of redirected input */
while (1)
{
/* get command line from input */
// prompt = getenv("PWD")
char line[MAX_BUFFER];
if(batch == NULL) // check if we're using a batch file
{
char cwd[1024];
getcwd(cwd, sizeof(cwd));
fputs(cwd, stdout);
fputs (prompt, stdout); // write prompt
fgets (line, MAX_BUFFER, stdin);
}
else
{
//check if eof
if(fgets(line, MAX_BUFFER, batch) == NULL) //next command in batch file
{
fclose(batch);
exit(1);
}
}
//everything proceeds identically from here
if (line) {
arg = args;
*arg++ = strtok (line,SEPARATORS); // tokenize input
while ((*arg++ = strtok (NULL,SEPARATORS)));
// last entry will be NULL
if (args[0]) {
if (!strcmp (args[0], "clr")) {
system ("clear");
}
else if (!strcmp (args[0], "quit")) {
break; // break out of "while" loop to quit
}
/* else pass command onto OS (or in this instance, print them out) */
else {
int i = 0;
char * input = 0;
char * output = 0;
for(i = 0; args[i] != NULL; i++)
{
//check for i/o redirection or bg execution
if(!strcmp(args[i], "<"))
{
args[i] = NULL; // "delete" the element
input = args[++i];
if(access(input, F_OK) == -1)
{
printf("ERROR: %s; does not exist for i/p redirection.;\n", input);
//proceed normally (no input file) if it doesn't.
}
fp_in = fopen(input, "r"); //only read
}
else if(!strcmp(args[i], ">"))
{
args[i] = NULL;
output = args[++i];
fp_out = fopen(output, "w"); //write and replace
}
else if(!strcmp(args[i], ">>"))
{
args[i] = NULL;
output = args[++i];
fp_out = fopen(output, "a"); //write and append
}
else if(!strcmp(args[i], "&")) //background execution
{
args[i] = '\0';
bg = 1;
}
}
arg = args;
while (*arg) {
if (!strcmp(args[0], "pause"))
{
// only need to supress input
// doesn't matter how
getpass("Press Enter to continue...");
break;
}
else if (!strcmp(*arg, "cd"))
{
char * cd = *arg++;
static char pwd[1024];
static char final_pwd[1024];
getcwd(pwd, sizeof(pwd));
if(!args[1]) {
printf("%s\n", pwd); //print working directory if no arg
}
while(*arg)
{
if(chdir(*arg++) == 0) //change directory, check for error
{
getcwd(pwd, sizeof(pwd));
if(pwd != NULL)
{
setenv("PWD", pwd, 1); //update PWD env
break;
}
}
else
{
printf("ERROR: change directory failed; No such file or directory\n");
}
}
}
else if (!strcmp (*arg, "environ"))
{
int std_out = dup(STDOUT_FILENO);
pipe_io(fp_out, 1);
extern char ** environ;
char ** env = environ;
while(*env) {
printf("%s\n", *env++);
}
pipe_io(fdopen(std_out, "r"), 1);
fp_out = 0;
break;
}
else if(!strcmp(*arg, "echo"))
{
int std_out = dup(STDOUT_FILENO);
pipe_io(fp_out, 1);
int i = 1;
while(1)
{
if(args[i] == NULL)
{
printf("\n"); //blank line if no arguments or \n if new element
break;
}
printf("%s ", (char *)args[i]);
i++;
}
pipe_io(fdopen(std_out, "r"), 1);
fp_out = 0;
break;
}
else if (!strcmp(*arg, "dir"))
{
static char parent[1024];
char * eargs[1024];
eargs[0] = "ls";
eargs[1] = "-al"; //hardcode values that are const for every dir
int i = 1;
while(1)
{
// create execution array for each directory specified in dir.
if(args[i]==NULL)
{
//no directory specified
eargs[i+1] = NULL;
break;
}
eargs[i+1] = args[i];
i++;
}
switch (pid = fork())
{
case -1:
fprintf(stderr, "bad fork");
case 0:
;
setenv("PARENT", getenv("SHELL"), 1);
int std_out = dup(STDOUT_FILENO);
pipe_io(fp_out, 1);
if(!args[1])
{
char * earg[] = {"ls", "-al", ".", NULL };
execvp("ls", earg);
}
else
{
execvp("ls", eargs);
continue;
}
pipe_io(fdopen(std_out, "r"), 1);
exit(1);
default:
//printf("Test\n");
to_wait(pid);
}
//fputs(directory, stdout);
fp_out = NULL;
*arg++;
break;
}
else if(!strcmp(*arg, "help"))
{
char * std_out = STDOUT_FILENO;
char tmp[1024];
switch(pid=fork())
{
case -1:
fprintf(stderr, "bad fork");
case 0:
setenv("PARENT", getenv("SHELL"), 1);
pipe_io(fp_out, 1);
strcpy(tmp, shell_path);
strcat(tmp, "/readme");
execlp("more", "more", tmp, NULL); //load readme with more filter
pipe_io(fdopen(std_out, "r"), 1); //redirect input back to stdout
exit(1);
default:
to_wait(pid);
}
fp_out = 0;
break;
}
else
{
//external commands, feed to execvp
switch(pid = fork())
{
case -1:
fprintf(stderr, "bad fork");
case 0:
;
setenv("PARENT", getenv("SHELL"), 1);
//duplicate to reuse later
int std_in = dup(STDIN_FILENO);
int std_out = dup(STDOUT_FILENO);
pipe_io(fp_out, 1);
pipe_io(fp_in, STDIN_FILENO);
if(execvp(args[0], args) < 0)
{
printf("ERROR: exec failed -; %s; no such file or directory\n", args[0]);
}
exit(1);
default:
to_wait(pid);
}
fp_in = NULL;
fp_out = NULL;
break;
}
}
//fputs ("\n", stdout);
}
}
}
else { // user presses control-D or EOF has been reached
puts (""); // ensure that there is a newline after shell exits
break; // break out of "while" loop to quit
}
}
return 0;
}