-
Notifications
You must be signed in to change notification settings - Fork 0
/
myshell.c
427 lines (320 loc) · 8.86 KB
/
myshell.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
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#include <stdio.h> //for all I-O ops (including stderr, perror)
#include <unistd.h> //chdir(), fork(), exec(), pid_t
#include <sys/wait.h> //waitpid() and other associated macros
#include <stdlib.h> //malloc(+ related) free() exit() execvp(check coz exec in unistd.h) EXIT_SUCCESS, EXIT_FAILURE
#include <string.h> //strcmp, strtok
#include <sys/types.h> //for pid_t and fork()
#include <ctype.h> //for tolower()
#include <stdbool.h> //to use bool variable
#include <limits.h> //for PATH_MAX etc.
#define sz 100
int num_cmds = 0;
char** extract_cmds(char *input)
{
num_cmds = 0;
if (strcmp(input,"") == 0)
return NULL;
int ptr = 0;
while(input[ptr] != '\0' && input[ptr] == ' ') //ignore leading spaces
ptr++;
char **commands = (char**)malloc(sz * sizeof(char*)); //to store all cmds separated by '+'
char *token = strtok(input, "+");
while (token != NULL){
commands[num_cmds] = token;
num_cmds++;
token = strtok(NULL, "+");
}
return commands;
}
void ext_cmds(char *cmd, char *flag, char *args)
{
//handle all external cmds here by creating child processes
int process;
if ((process = fork()) == 0){
if (strcmp(cmd, "makedir") == 0){ //mkdir
execl("mkdir", cmd, flag, args, NULL);
}
else if (strcmp(cmd, "remove") == 0){ //rm
execl("rm", cmd, flag, args, NULL);
}
else if (strcmp(cmd, "kat") == 0){ //cat
execl("cat", cmd, flag, args, NULL);
}
else if (strcmp(cmd, "list") == 0){ //ls
execl("ls", cmd, flag, args, NULL);
}
else if (strcmp(cmd, "datetime") == 0){ //date
execl("date", cmd, flag, args, NULL);
}
else if (strlen(cmd) == 0){
return;
}
else {
printf("Invalid command!\nType 'hellp' to see the list of valid commands\n");
}
exit(0);
}
else if (process < 0){
//error forking
perror("Error");
}
else{
//parent process
int x;
waitpid(process, &x, 0);
}
}
int execute(char *cmd, char *flag, char *args) //all builtins here
{
//-------------exit command-------------//
if (strcmp(cmd, "quit") == 0){
if (strlen(flag) || strlen(args)){
printf("Error: Invalid command entered!");
return 1;
}
return 0;
}
//-------------cd command--------------//
else if (strcmp(cmd, "chd") == 0){
if (strlen(flag) != 0){
printf("Error: No flags for this command!\n\n");
return 1;
}
if (strlen(args) == 0) //cd => go to HOME
chdir(getenv("HOME"));
else{ //cd path_name
int res = chdir(args);
if (res == -1)
perror("Error");
}
}
//------------echo command--------------//
else if (strcmp(cmd, "ecko") == 0){
if (args[0] != '"'){
printf("Error: Enclose string in quotes!\n\n");
return 1;
}
if (args[strlen(args) - 1] != '"'){
printf("Error: Expected end quotes!\n\n");
return 1;
}
int len = 0;
for(int i = 0; args[i] != '\0'; i++){
len++;
}
len--;
while(len >= 0 && args[len] == ' '){ //removing trailing spaces
args[len] = '\0';
len--;
}
if(strlen(flag) == 0){ //echo "..."
for(int i = 0; args[i] != '\0'; i++){
if((i == 0 && args[i] == '"') || (args[i + 1] == '\0' && args[i] == '"'))
continue;
printf("%c", args[i]);
}
printf("\n");
}
else if (strlen(flag) == 1){
if (flag[0] == 'n'){ //echo -n "..."
for(int i = 0; args[i] != '\0'; i++){
if((i == 0 && args[i] == '"') || (args[i + 1] == '\0' && args[i] == '"'))
continue;
printf("%c", args[i]);
}
}
else if (flag[0] == 'e'){ //echo -e "..."
char *line = (char*)malloc(sz * sizeof(char));
int ptr = 0;
for(int i = 0; args[i] != '\0'; i++){
if((i == 0 && args[i] == '"') || (args[i + 1] == '\0' && args[i] == '"'))
continue;
if(args[i] == '\\' && args[i + 1] == 'n'){ //"...\n..."
line[ptr] = '\n';
i++;
}
else if (args[i] == '\\' && args[i + 1] == 't'){ //"...\t..."
line[ptr] = '\t';
i++;
}
else
line[ptr] = args[i];
ptr++;
}
printf("%s\n", line);
}
else{
printf("Error: Invalid flag!\n\n");
return 1;
}
}
else{
printf("Error: Invalid flag!\n\n");
return 1;
}
}
//------------help command---------------//
else if (strcmp(cmd, "hellp") == 0){
FILE *help = fopen("help.txt", "r");
if (help == NULL){
perror("Error");
printf("\n");
return 1;
}
char *data = (char*)malloc(sz * sizeof(char));
while (fgets(data, sz, help) != NULL){
printf("%s", data);
}
fclose(help);
}
//------------history command-------------//
else if (strcmp(cmd, "hisstory") == 0){ //2 flags - history -clear & history -write
if (strlen(flag) == 0){
if (strlen(args) != 0){
printf("Error: Invalid command!\n");
return 1;
}
FILE *history = fopen("history.txt", "r");
if(history == NULL){
perror("Error");
return 1;
}
char *line = (char*)malloc(sz * sizeof(char));
while(fgets(line, sz, history) != NULL){
printf("%s", line);
}
fclose(history);
}
else{
if (strcmp(flag, "clear") == 0){ //history -clear
if (strlen(args) != 0){
printf("Error: No arguments expected for this command!\n");
return 1;
}
FILE *history = fopen("history.txt", "w");
if(history == NULL){
perror("Error");
printf("\n");
return 1;
}
fprintf(history, "%c", ' ');
fclose(history);
}
else if (strcmp(flag, "write") == 0){ //history -write
FILE *history = fopen("history.txt", "a+");
fprintf(history, "%s\n", args);
fclose(history);
}
else
printf("Error: Invalid command!\n");
}
}
//-------------pwd command---------------//
else if (strcmp(cmd, "cwd") == 0){
if (strlen(flag) != 0 || strlen(args) != 0){
printf("Error: Invalid command!\n");
return 1;
}
char *dir = (char*)malloc(PATH_MAX * sizeof(char));
if (getcwd(dir, PATH_MAX) == NULL){
perror("Error");
printf("\n");
return 1;
}
printf("%s\n", dir);
}
else
ext_cmds(cmd, flag, args);
return 1;
}
void shell() //contains implementation of all builtins
{
int status;
do {
char *curr_dir = (char*)malloc(PATH_MAX * sizeof(char));
getcwd(curr_dir, PATH_MAX);
printf("\033[0;33m");
printf("%s", curr_dir);
printf("\033[0m");
printf("$ ");
char *input = (char*)malloc(sz * sizeof(char));
fgets(input, sz, stdin);
char *cmd, *flag, *args;
char **commands = (char**)malloc(sz * sizeof(char*));
commands = extract_cmds(input);
char *dir = (char*)malloc(PATH_MAX * sizeof(char));
getcwd(dir, PATH_MAX);
FILE *history = fopen("history.txt", "a+");
if(history == NULL) {
printf("%s\n", "Error: Couldn't load history.\n");
}
else {
fprintf(history, "%s", input);
fclose(history);
}
for (int i = 0; i < num_cmds; i++){
cmd = (char*)malloc(sz * sizeof(char));
flag = (char*)malloc(sz * sizeof(char));
args = (char*)malloc(sz * sizeof(char));
int token_ptr = 0, cmd_ptr = 0, flag_ptr = 0, args_ptr = 0;
char* token = commands[i];
while(token[token_ptr] != '\0' && token[token_ptr] == ' '){ //ignoring leading spaces in the token
token_ptr++;
}
while (token[token_ptr] != '\0' && token[token_ptr] != ' '){
cmd[cmd_ptr] = token[token_ptr];
cmd_ptr++;
token_ptr++;
}
cmd[cmd_ptr] = '\0';
if (cmd_ptr > 0){
if (cmd[cmd_ptr - 1] == '\n')
cmd[cmd_ptr - 1] = '\0';
}
for (int i = 0; cmd[i] != '\0'; i++)
cmd[i] = tolower(cmd[i]);
while (token[token_ptr] != '\0' && token[token_ptr] == ' ') //ignoring spaces bw cmd and flag
token_ptr++;
if (token[token_ptr] == '-'){ //flag found
token_ptr++;
while (token[token_ptr] != '\0' && token[token_ptr] != ' '){
flag[flag_ptr] = token[token_ptr];
flag_ptr++;
token_ptr++;
}
}
while(token[token_ptr] != '\0' && token[token_ptr] == ' ') //ignoring spaces b/w flag and args
token_ptr++;
while(token[token_ptr] != '\0'){ //retrieving args
args[args_ptr] = token[token_ptr];
token_ptr++;
args_ptr++;
}
if(args_ptr > 0){
if(args[args_ptr - 1] == '\n'){
args[args_ptr - 1] = '\0';
}
}
if(flag_ptr > 0){
if(flag[flag_ptr - 1] == '\n'){
flag[flag_ptr - 1] = '\0';
}
}
for (int i = 0; flag[i] != '\0'; i++)
flag[i] = tolower(flag[i]);
status = execute(cmd, flag, args);
if (status == 0)
break;
}
} while (status);
}
int main(int argc, char *argv[])
{
printf("\n-------------------------------------\n");
printf("Welcome to my Linux Shell Interpreter\n");
printf("-------------------------------------\n\n");
printf("-> Type commands and arguments, and hit enter.\n");
printf("-> Type 'hellp' command to see the list of all commands that can be executed here.\n\n");
shell();
return 0;
}