-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainshell.c
More file actions
392 lines (336 loc) · 9.06 KB
/
mainshell.c
File metadata and controls
392 lines (336 loc) · 9.06 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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h>
#include <wordexp.h>
#include "mainshell.h"
char home[1024];
int StdIn, StdOut = -1;
//************************************************
// strip(char * str)
// removes white space from strings
// args: str - the string to be stripped
// output: stripped string
//
//************************************************
char * strip(char * str) {
char * end;
while(isspace(*str)) str++;
if(*str == 0) return str;
end = str + strlen(str) - 1;
while(end > str && isspace(*end)) end--;
*(end+1) = 0;
return str;
}
//*********************************************************
// parse(char ** cmd, char * arg, char ** parent)
// splits the line across all semicolons
// args:
// cmd = array of arguments
// str = string with unparsed line args
// parent = pointer to str
// output: new value of str
//
//*********************************************************
char * parse(char ** cmd, char * str, char ** parent) {
// Pre-parsing
char * token = strsep(&str, ";");
token = strip(token); // Command, Ready For Parsing
if (token == NULL || str == NULL) return 0; // No Commands
// Parsing into cmd
int i = 0;
while (token) {
cmd[i] = strsep(&token, " ");
if (strcmp(cmd[i], "") == 0) i--; // Ignore extra spaces
i++;
}
cmd[i] = 0;
*parent = str;
return str;
}
//*********************************************************
// verify(char * in)
// reads a string and catches any bad tokens
// args: str - the string to be verified
// output: any bad tokens in the string
//
//*********************************************************
char * verify(char * str) {
if (strstr(str, ";;")) return strcpy(str, ";;");
if (strstr(str, "&;")) return strcpy(str, "&;");
if (strstr(str, ";&")) return strcpy(str, ";&");
while (*str) {
if (isspace(*str))
;
else if (*str == ';')
return strcpy(str, "leading ;");
str++;
}
return NULL;
}
//************************************************
// sighandler(int signo)
// handles and interprets signals
// args: signo - the signal value
// output: none
//
//************************************************
static void sighandler(int signo) {
if (signo == SIGINT) exit(0);
}
//************************************************
// resetIO(int fd, int type)
// resets stdin/stdout to place on file table
// args:
// fd - standard file descriptor
// type:
// 0 = stdin
// 1 = stdout
// output: none
//
//************************************************
void resetIO(int fd, int type){
int a = dup2(fd, type);
}
//************************************************
// resetStdIO()
// resets stdin/stdout to fd 0 and 1
// args: none
// output: none
//
//************************************************
void resetStdIO(){
if (StdIn != -1) resetIO(StdIn, 0);
if (StdOut != -1) resetIO(StdOut, 1);
StdIn = -1;
StdOut = -1;
}
//************************************************
// redirect(char * redirectTo, int type)
// redirects the input depending on the sign
// where:
// 0 = input
// 1 = output
// args:
// redirectTo - pointer to where to be redirected
// type - how the redirection occurs
// output: int - new fd of stdin/stdout
//
//************************************************
int redirect(char * redirectTo, int type){
int fd;
int fdToReplace;
if (type == 0){
fd = open(redirectTo, O_CREAT | O_RDWR, 0644);
fdToReplace = 0;
}
else {
fd = open(redirectTo, O_CREAT | O_RDWR, 0644);
fdToReplace = 1;
}
int ret = dup(fdToReplace);
dup2(fd, fdToReplace);
return ret;
}
//************************************************
// redirCheck(char ** command, int type)
// checks for redirects in line
// 0 = <
// 1 = >
// args:
// command - pointer to commands
// type - type of redirection
// output: index of redir symbol
//
//************************************************
int redirCheck(char ** command, int type){
char sign[2];
if (type == 0) strcpy(sign, "<");
else strcpy(sign, ">");
int index = 0;
while(* command) {
if (strcmp(* command, sign) == 0) return index;
index++;
command++;
}
return -1;
}
//************************************************
// handleRedir(char ** cmd)
// redirects stdin/stdout
// args: cmd - pointer to commands
// output: command with NULL in place of symbol
//
//************************************************
char ** handleRedir(char ** cmd){
int redirInput = redirCheck(cmd, 0); // index of the input
int redirOutput = redirCheck(cmd, 1); // index of the outputr
if (redirInput != -1){
StdIn = redirect(cmd[redirInput + 1], 0);
cmd[redirInput] = 0;
}
if (redirOutput != -1){
StdOut = redirect(cmd[redirOutput + 1], 1);
cmd[redirOutput] = 0;
}
return cmd;
}
//************************************************
// pipeCheck(char ** cmd)
// searches for pipe symbol in command
// args: cmd - pointer to commands
// output: index of "|"
//
//************************************************
int pipeCheck(char ** cmd){
int index = 0;
while(* cmd) {
if (strcmp(* cmd, "|") == 0) return index;
index++;
cmd++;
}
return -1;
}
//************************************************
// pipeExec(char ** cmd)
// pipes and executes command
// args: cmd - pointer to commands
// output: 1 if ran, 0 if no pipe
//
//************************************************
int pipeExec(char ** cmd){
int index = pipeCheck(cmd);
if (index == -1) return 0;
//pointer to beginning of command after the pipe
char ** secondCommand = (cmd + index + 1);
cmd[index] = 0;
int pipefd[2];
pipe(pipefd);
int status;
int j = -1;
int fd = fork();
if (fd == 0) { //chlild
close(pipefd[0]);
StdOut = dup(1);
dup2(pipefd[1], 1);
execute(cmd); // Execute First Command
close(pipefd[1]);
exit(0);
}
else {
wait(&status);
close(pipefd[1]);
StdIn = dup(0);
dup2(pipefd[0], 0);
execute(secondCommand); // Execute Second Command
close(pipefd[0]);
}
return 1; //boolean
}
//************************************************
// cd(char ** cmd)
// changes directory
// args: cmd - pointer to commands
// output: none
//
//************************************************
void cd(char ** cmd) {
int res;
if (!cmd[1] || strcmp(cmd[1], "~") == 0) //cd to the home dir
res = chdir(home);
else
res = chdir(cmd[1]);
if (res == -1)
printf("This directory does not exist\n");
}
//****************************************************
// convTildes(char ** cmd)
// converts ~ to home dir path
// args: cmd - pointer to commands
// output: command with home path in place of ~
//
//****************************************************
char ** convTildes(char ** cmd){
char ** ret = cmd;
while (* cmd){
if (* cmd[0] == '~') {
char path[1024];
strncpy(path, home, 1023);
strncat(path, ++*cmd, 1023);
* cmd = path;
}
cmd++;
}
return ret;
}
//****************************************************
// execute(char ** cmd)
// forks and executes the command
// args: cmd - pointer to commands
// output: none
//
//****************************************************
void execute(char ** cmd) {
// Forks and executes
int f = fork();
int j = -1;
int status;
if (f == 0) {
j = execvp(cmd[0], cmd);
if (j == -1)
printf("%s: command not found\n", cmd[0]);
exit(0);
} else {
wait(&status);
}
}
int main() {
umask(0000);
signal (SIGINT, sighandler);
char cwd[1024];
strncpy(home, getenv("HOME"), 1024);
char d[1024];
char * dest = d;
char ** pdest = &dest;
char * cmd[1024];
char ** command = cmd;
while (1) {
getcwd(cwd, sizeof(cwd));
printf("%s> ", cwd);
fgets(dest, 256, stdin);
if (!*(dest+1)) continue;
if (verify(dest) != 0) {
printf("Bad Token: %s\n", dest); // Verify input
continue;
}
// Preparsing
dest = strip(dest);
dest[strlen(dest)+1] = 0; // Move terminating char one down
dest[strlen(dest)] = ';'; // Add semicolon to end for efficient parsing
//************************************
// Start of loop
//************************************
while (1) {
if (!parse(cmd, dest, pdest)) break;
command = convTildes(command);
command = handleRedir(command);
//cd
if (strcmp(cmd[0], "cd") == 0) cd(command);
//exit
else if (strcmp(cmd[0], "exit") == 0) exit(0);
//piping
else if (! pipeExec(command)) execute(command);
}
resetStdIO();
}
//************************************
// End of loop
//************************************
return 0;
}