-
Notifications
You must be signed in to change notification settings - Fork 0
/
sh.c
406 lines (354 loc) · 8.02 KB
/
sh.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
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
/* MARK NAME Seu Nome Aqui */
/* MARK NAME Nome de Outro Integrante Aqui */
/* MARK NAME E Etc */
/****************************************************************
* Shell xv6 simplificado
*
* Este codigo foi adaptado do codigo do UNIX xv6 e do material do
* curso de sistemas operacionais do MIT (6.828).
***************************************************************/
#define MAXARGS 10
/* Todos comandos tem um tipo. Depois de olhar para o tipo do
* comando, o código converte um *cmd para o tipo específico de
* comando. */
struct cmd {
int type; /* ' ' (exec)
'|' (pipe)
'<' or '>' (redirection) */
};
struct execcmd {
int type; // ' '
char *argv[MAXARGS]; // argumentos do comando a ser executado
};
struct redircmd {
int type; // < ou >
struct cmd *cmd; // o comando a rodar (ex.: um execcmd)
char *file; // o arquivo de entrada ou saída
int mode; // o modo no qual o arquivo deve ser aberto
int fd; // o número de descritor de arquivo que deve ser usado
};
struct pipecmd {
int type; // |
struct cmd *left; // lado esquerdo do pipe
struct cmd *right; // lado direito do pipe
};
void runcmd(struct cmd *cmd);
int fork1(void); // Fork mas fechar se ocorrer erro.
struct cmd *parsecmd(char*); // Processar o linha de comando.
void
exec(struct execcmd* cmd){
if(execvp(cmd->argv[0], cmd->argv) != 0){
fprintf(stderr, "%s: comando não encontrado\n", cmd->argv[0]);
}
}
void
execpipe(struct pipecmd* pcmd){
int fd[2];
if(pipe(fd) >= 0){
if(fork1() == 0){
// int stdoutfd = dup(STDOUT_FILENO);
close(STDOUT_FILENO);
dup(fd[1]);
close(fd[0]);
close(fd[1]);
runcmd(pcmd->left);
// dup2(stdoutfd, STDOUT_FILENO);
}
else{
close(STDIN_FILENO);
dup(fd[0]);
close(fd[0]);
close(fd[1]);
runcmd(pcmd->right);
}
close(fd[0]);
close(fd[1]);
}
}
void
execredirect (struct redircmd* rcmd){
close(rcmd->fd);
if(open(rcmd->file, rcmd->mode) >= 0){
runcmd(rcmd->cmd);
}
else{
fprintf(stderr, "Erro ao abrir arquivo %s\n", rcmd->file);
}
}
/* Executar comando cmd. Nunca retorna. */
void
runcmd(struct cmd *cmd)
{
// int p[2], r;
struct execcmd *ecmd;
struct pipecmd *pcmd;
struct redircmd *rcmd;
if(cmd == 0)
exit(0);
switch(cmd->type){
default:
fprintf(stderr, "tipo de comando desconhecido\n");
exit(-1);
case ' ':
ecmd = (struct execcmd*)cmd;
if(ecmd->argv[0] == 0)
exit(0);
exec(ecmd);
break;
case '>':
case '<':
rcmd = (struct redircmd*)cmd;
execredirect(rcmd);
break;
case '|':
pcmd = (struct pipecmd*)cmd;
execpipe(pcmd);
break;
}
exit(0);
}
int
getcmd(char *buf, int nbuf)
{
if (isatty(fileno(stdin)))
fprintf(stdout, "$ ");
memset(buf, 0, nbuf);
fgets(buf, nbuf, stdin);
if(buf[0] == 0) // EOF
return -1;
return 0;
}
int
main(void)
{
static char buf[100];
int r;
// Ler e rodar comandos.
while(getcmd(buf, sizeof(buf)) >= 0){
/* MARK START task1 */
/* TAREFA1: O que faz o if abaixo e por que ele é necessário?
* Insira sua resposta no código e modifique o fprintf abaixo
* para reportar o erro corretamente.
*
* O if mais acima verifica se o comando recebido é um comando change directory,
* caso positivo, executa o system call chdir para completar a ação.
*
* O if mais interno, verifica se o retorno do chdir é maior que 0,
* isso porque o system call retorna -1 em caso de falha, caso essa falha
* tenha occorrido, é exibida uma mensagem de erro.
*/
if(buf[0] == 'c' && buf[1] == 'd' && buf[2] == ' '){
buf[strlen(buf)-1] = 0;
if(chdir(buf+3) < 0)
fprintf(stderr, "diretório inexistente ou inacessível\n");
continue;
}
/* MARK END task1 */
if(fork1() == 0)
runcmd(parsecmd(buf));
wait(&r);
}
exit(0);
}
int
fork1(void)
{
int pid;
pid = fork();
if(pid == -1)
perror("fork");
return pid;
}
/****************************************************************
* Funcoes auxiliares para criar estruturas de comando
***************************************************************/
struct cmd*
execcmd(void)
{
struct execcmd *cmd;
cmd = malloc(sizeof(*cmd));
memset(cmd, 0, sizeof(*cmd));
cmd->type = ' ';
return (struct cmd*)cmd;
}
struct cmd*
redircmd(struct cmd *subcmd, char *file, int type)
{
struct redircmd *cmd;
cmd = malloc(sizeof(*cmd));
memset(cmd, 0, sizeof(*cmd));
cmd->type = type;
cmd->cmd = subcmd;
cmd->file = file;
cmd->mode = (type == '<') ? O_RDONLY : O_WRONLY|O_CREAT|O_TRUNC;
cmd->fd = (type == '<') ? 0 : 1;
return (struct cmd*)cmd;
}
struct cmd*
pipecmd(struct cmd *left, struct cmd *right)
{
struct pipecmd *cmd;
cmd = malloc(sizeof(*cmd));
memset(cmd, 0, sizeof(*cmd));
cmd->type = '|';
cmd->left = left;
cmd->right = right;
return (struct cmd*)cmd;
}
/****************************************************************
* Processamento da linha de comando
***************************************************************/
char whitespace[] = " \t\r\n\v";
char symbols[] = "<|>";
int
gettoken(char **ps, char *es, char **q, char **eq)
{
char *s;
int ret;
s = *ps;
while(s < es && strchr(whitespace, *s))
s++;
if(q)
*q = s;
ret = *s;
switch(*s){
case 0:
break;
case '|':
case '<':
s++;
break;
case '>':
s++;
break;
default:
ret = 'a';
while(s < es && !strchr(whitespace, *s) && !strchr(symbols, *s))
s++;
break;
}
if(eq)
*eq = s;
while(s < es && strchr(whitespace, *s))
s++;
*ps = s;
return ret;
}
int
peek(char **ps, char *es, char *toks)
{
char *s;
s = *ps;
while(s < es && strchr(whitespace, *s))
s++;
*ps = s;
return *s && strchr(toks, *s);
}
struct cmd *parseline(char**, char*);
struct cmd *parsepipe(char**, char*);
struct cmd *parseexec(char**, char*);
/* Copiar os caracteres no buffer de entrada, comeando de s ate es.
* Colocar terminador zero no final para obter um string valido. */
char
*mkcopy(char *s, char *es)
{
int n = es - s;
char *c = malloc(n+1);
assert(c);
strncpy(c, s, n);
c[n] = 0;
return c;
}
struct cmd*
parsecmd(char *s)
{
char *es;
struct cmd *cmd;
es = s + strlen(s);
cmd = parseline(&s, es);
peek(&s, es, "");
if(s != es){
fprintf(stderr, "leftovers: %s\n", s);
exit(-1);
}
return cmd;
}
struct cmd*
parseline(char **ps, char *es)
{
struct cmd *cmd;
cmd = parsepipe(ps, es);
return cmd;
}
struct cmd*
parsepipe(char **ps, char *es)
{
struct cmd *cmd;
cmd = parseexec(ps, es);
if(peek(ps, es, "|")){
gettoken(ps, es, 0, 0);
cmd = pipecmd(cmd, parsepipe(ps, es));
}
return cmd;
}
struct cmd*
parseredirs(struct cmd *cmd, char **ps, char *es)
{
int tok;
char *q, *eq;
while(peek(ps, es, "<>")){
tok = gettoken(ps, es, 0, 0);
if(gettoken(ps, es, &q, &eq) != 'a') {
fprintf(stderr, "missing file for redirection\n");
exit(-1);
}
switch(tok){
case '<':
cmd = redircmd(cmd, mkcopy(q, eq), '<');
break;
case '>':
cmd = redircmd(cmd, mkcopy(q, eq), '>');
break;
}
}
return cmd;
}
struct cmd*
parseexec(char **ps, char *es)
{
char *q, *eq;
int tok, argc;
struct execcmd *cmd;
struct cmd *ret;
ret = execcmd();
cmd = (struct execcmd*)ret;
argc = 0;
ret = parseredirs(ret, ps, es);
while(!peek(ps, es, "|")){
if((tok=gettoken(ps, es, &q, &eq)) == 0)
break;
if(tok != 'a') {
fprintf(stderr, "syntax error\n");
exit(-1);
}
cmd->argv[argc] = mkcopy(q, eq);
argc++;
if(argc >= MAXARGS) {
fprintf(stderr, "too many args\n");
exit(-1);
}
ret = parseredirs(ret, ps, es);
}
cmd->argv[argc] = 0;
return ret;
}
// vim: expandtab:ts=2:sw=2:sts=2