-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoscode.c
422 lines (386 loc) · 10.4 KB
/
oscode.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
/*
Anna JOLLY
260447198
*/
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <fcntl.h>
#include <sys/wait.h>
#include <signal.h>
struct JOB;
typedef struct JOB
{
int pid;
char *cmd;
struct JOB *next;
struct JOB *previous;
}JOB;
JOB *addJob(JOB *head, int newpid, char *newcmd)
{
JOB *temp;
JOB *holder;
holder = (JOB *)malloc(sizeof(JOB));
holder = head;
temp = (JOB *)malloc(sizeof(JOB));
temp->pid = newpid;
temp->cmd = newcmd;
if(head == NULL)
{
head=temp;
head->previous = NULL;
head->next = NULL;
}
else
{
//find last job
while(holder->next != NULL)
{
holder = holder->next;
}
holder->next = temp;
//add new job
temp->next = NULL;
temp->previous = holder;
}
return head;
}
JOB *jobs(JOB *head)
{
int status;
JOB *holder;
holder = (JOB *)malloc(sizeof(JOB));
//print jobs
holder = head;
printf("Background jobs:\n");
if (holder == NULL) {
printf("\tNone.\n");
}
else {
while(holder != NULL) {
if(waitpid(holder->pid, &status, WNOHANG) == 0) {
printf("\tpid #%d: %s\n",holder->pid, holder->cmd);
}
holder=holder->next;
}
}
return head;
}
void sendToFG(int pid)
{
int status;
waitpid(pid, &status, WUNTRACED);
}
int getcmd(char *prompt, char *args[], int *background)
{
int length, i = 0;
char *token, *loc;
char *line;
size_t linecap = 0;
printf("%s", prompt);
//allocate memory block
line = (char *) malloc (101);
length = getline(&line, &linecap, stdin);
if (length <= 0) {
exit(-1);
}
// Check if background is specified..
if ((loc = index(line, '&')) != NULL) {
*background = 1;
*loc = ' ';
}
else {
*background = 0;
}
while ((token = strsep(&line, " \t\n")) != NULL) {
for (int j = 0; j < strlen(token); j++)
if (token[j] <= 32)
token[j] = '\0';
if (strlen(token) > 0)
args[i++] = token;
}
args[i++] = '\0';
return i;
}
void freecmd(char *args[], int cnt)
{
//reset args/history values to 0
for(int i=0; i<cnt; i++) {
args[i] = NULL;
}
}
int getHistCmd(char *args[], char *history[], int *bg)
{
int found = 0;
char *token, *loc;
int i = 0;
//traverse last 10 entries of history looking for request
for (int k=0; k < 10; k++) {
//pull out the number corresponsing to that history entry
if( history[k] != NULL) {
char *entry = strdup(history[k]);
char *entryNo = strsep(&entry, " ");
//compare history request number to number of this history entry
if ( strcmp(args[0], entryNo) == 0 ) {
//indicate that we have found the entry
found = 1;
//if correct entry, re-populate args
// Check if background is specified..
if ((loc = index(entry, '&')) != NULL) {
*bg = 1;
*loc = ' ';
}
else {
*bg = 0;
}
while ((token = strsep(&entry, " \t\n")) != NULL) {
for (int j = 0; j < strlen(token); j++)
if (token[j] <= 32)
token[j] = '\0';
if (strlen(token) > 0)
args[i++] = token;
}
args[i++] = '\0';
return i;
}
//if k=9 and we haven't found the command, return -1
else if(k==9 && !found) {
return -1;
}
}
//if we reach a null value and we haven't found the command, return -1
else if(k==9 && !found) {
return -1;
}
}
return i;
}
int addToHistory(char *args[], char *history[], int *count, int *mostRecent, int *bg)
{
char *countStr;
countStr = (char *) malloc (4);
//increment count
*count = *count + 1;
//increment or loop mostRecent count
if (*mostRecent<9) {
*mostRecent = *mostRecent + 1;
}
else {
*mostRecent = 0;
}
int l = 0;
while (args[l] != NULL) {
//if first loop, put count in before args
if (l == 0) {
sprintf(countStr, "%d", *count);
history[*mostRecent] = countStr;
}
//add in argument
strcat(history[*mostRecent], " ");
strcat(history[*mostRecent], args[l]);
l++;
}
//if command has ampersand, add it in
if (*bg) {
strcat(history[*mostRecent], " ");
strcat(history[*mostRecent], "&");
}
return 0;
}
int main()
{
char *args[20];
int bg;
int status;
int pid, pid2;
char *history[10];
int count=0;
int mostRecent=-1;
int stdoutFD, skipFork, doNotAdd;
int i = 0;
freecmd(args, 20);
freecmd(history, 10);
JOB *head = NULL;
while(1)
{
bg=0;
i = 0;
doNotAdd = 0;
skipFork = 0;
int cnt = getcmd("\n>> ", args, &bg);
//check if command was empty command
if (args[0] == NULL) {
doNotAdd = 1;
skipFork = 1;
}
//if command is a history request (ie command is a number)
//repopulate args with command from history
//if command not found, -1 is returned
if (cnt > 1) {
if ( atoi(args[0]) != 0 && args[1] == NULL ) {
cnt = getHistCmd(args, history, &bg);
if (cnt < 0) {
printf("No command found in history.\n");
}
}
}
//if command is cd
if (cnt > 1) {
if (strcmp(args[0], "cd") == 0) {
skipFork = 1;
//if correctly call cd
if (args[2] == NULL && args[1] != NULL) {
if (chdir(args[1]) < -1) {
printf("Error changing directory.\n");
doNotAdd = 1;
}
}
else {
printf("Correct syntax is \"cd filepath\".\n");
doNotAdd = 1;
}
}
}
//if command is pwd
if (cnt > 1) {
if (strcmp(args[0], "pwd") == 0) {
skipFork = 1;
//if correctly call cd
if (args[3] == NULL) {
char *buffer = (char *) malloc (50);
char *ptr = getcwd(buffer, 50);
printf("Current working directory: %s\n", ptr);
}
else {
printf("Correct syntax is \"pwd filepath\".\n");
doNotAdd = 1;
}
}
}
//if command is history
if (cnt > 1) {
if (strcmp(args[0], "history") == 0) {
printf("History:\n");
for(int z=0; z<10; z++) {
if(history[z] != NULL) {
printf("\t%s\n", history[z]);
}
}
}
}
//if command is fg
if (cnt > 1) {
if (strcmp(args[0], "fg") == 0) {
if (args[1] == NULL) {
printf("Correct syntax is \"fg p_id\"\n");
}
else {
sendToFG(atoi(args[1]));
}
}
}
//if command is jobs
if (cnt > 1) {
if (strcmp(args[0], "jobs") == 0) {
if (args[1] != NULL) {
printf("Correct syntax is \"jobs\".\n");
doNotAdd = 1;
}
else {
jobs(head);
}
}
}
//if command is exit
if (cnt > 1) {
if (strcmp(args[0], "exit") == 0) {
exit(0);
}
}
//if user enters CTRL+D
if (cnt > 1) {
if (strcmp(args[0], "^D") == 0) {
exit(0);
}
}
//Add command to history if command was found
if (cnt > 1 && !doNotAdd) {
addToHistory(args, history, &count, &mostRecent, &bg);
}
//output redirection if necessary
if (cnt > 1) {
for (int c = 0; c<cnt-1; c++) {
if (strcmp(args[c], ">") == 0) {
skipFork = 1;
//redirect to file
//save stdout file descriptor
stdoutFD = dup(1);
close(1);
//open file
int fd = open(args[c+1], O_RDWR|O_CREAT|O_APPEND|O_TRUNC,0666);
args[c] = '\0';
if ((pid2=fork()) == 0) {
execvp(args[0], args);
}
else {
//if bg
if(strcmp(args[c-1], "&") == 0) {
char *cmd = (char *) malloc (40);
int a=0;
while(args[a] != NULL) {
strcat(cmd, " ");
strcat(cmd, args[a]);
a++;
}
head = addJob(head, pid2, args[0]);
}
else {
//while child has not terminated
while (waitpid(pid2, &status, WUNTRACED) != pid2)
{
//wait
;
}
}
}
//redirect stdout to terminal
close(fd);
dup2(stdoutFD, 1);
close(stdoutFD);
skipFork = 1;
}
}
}
if (skipFork == 0) {
if( ( pid = fork() ) == 0)
{
//child does this
execvp(args[0], args);
exit(0);
}
else
{
//parent does this
if (bg) {
char *cmd = (char *) malloc (40);
int a=0;
while(args[a] != NULL) {
strcat(cmd, " ");
strcat(cmd, args[a]);
a++;
}
head = addJob(head, pid, cmd);
}
else
{
//while child has not terminated
waitpid(pid, &status, WUNTRACED);
}
}
}
freecmd(args, 20);
}
return 0;
}