Newer
Older
#define BUFSIZ 512
#define MAXARGS 10
#define MAXNODE 2
// an embarrassingly naive shell
// some day a real parse tree; for now ad-hoc
struct ionode {
struct cmd {
char *argv[MAXARGS];
char argv0buf[BUFSIZ];
int argc;
int token;
};
int parse(char *s);
void runcmd(void);
int ioredirection(void);
int gettoken(char *s, char **token);
int _gettoken(char *s, char **p1, char **p2);
printf(2, "too many arguments\n");
return -1;
printf(2, "syntax error: < not followed by word\n");
return -1;
printf(2, "syntax error: > not followed by word\n");
return -1;
addio('>', t);
break;
case ';': // command sequence
case '|': // pipe
cmdlist[nextcmd].token = c;
nextcmd++;
default:
printf(2, "syntax error: bad return %d from gettoken", c);
return -1;
// Clean up command line.
// Read all commands from the filesystem: add an initial '/' to
// the command name.
// This essentially acts like 'PATH=/'.
cmdlist[c].argv0buf[0] = '/';
strcpy(cmdlist[c].argv0buf + 1, cmdlist[c].argv[0]);
cmdlist[c].argv[0] = cmdlist[c].argv0buf;
}
cmdlist[c].argv[cmdlist[c].argc] = 0;
printf(2, " %s", cmdlist[c].argv[i]);
printf(2, "%c %s", iolist[i].token, iolist[i].s);
if(strcmp(cmdlist[c].argv[0], "/cd") == 0) {
if(debug) printf (2, "/cd %s is build in\n", cmdlist[c].argv[1]);
if(cmdlist[c].token == '|')
if(pipe(fdarray) < 0)
printf(2, "cmd %d pipe failed\n", c);
if(pid == 0) {
if(cmdlist[c].token == '|') {
if(close(1) < 0)
printf(2, "close fdarray[0] failed\n");
printf(2, "close fdarray[1] failed\n");
if(c > 0 && cmdlist[c-1].token == '|') {
if(close(0) < 0)
printf(2, "close fdarray[0] failed\n");
printf(2, "close fdarray[1] failed\n");
if((r = exec(cmdlist[c].argv0buf, (char**) cmdlist[c].argv)) < 0) {
printf(2, "exec %s: %d\n", cmdlist[c].argv[0], r);
exit();
printf(2, "[%d] FORKED child %d\n", getpid(), pid);
close(fdarray[0]);
close(fdarray[1]);
printf(2, "[%d] WAIT for children\n", getpid());
do {
p = wait();
printf(2, "[%d] WAIT child %d finished\n", getpid(), p);
printf(2, "[%d] wait finished\n", getpid());
for(i = 0; i < nextio; i++) {
switch(iolist[i].token) {
printf(2, "failed to open %s for read: %d", iolist[i].s, fd);
return -1;
printf(2, "redirect 0 from %s\n", iolist[i].s);
if((fd = open(iolist[i].s, O_WRONLY|O_CREATE)) < 0) {
printf(2, "failed to open %s for write: %d", iolist[i].s, fd);
exit();
printf(2, "redirect 1 to %s\n", iolist[i].s);
iolist[nextio].token = token;
iolist[nextio].s = s;
nextio++;
}
// gettoken(s, 0) prepares gettoken for subsequent calls and returns 0.
// gettoken(0, token) parses a shell token from the previously set string,
// null-terminates that token, stores the token pointer in '*token',
// and returns a token ID (0, '<', '>', '|', or 'w').
// Subsequent calls to 'gettoken(0, token)' will return subsequent
// tokens from the string.
int
gettoken(char *s, char **p1)
{
static int c, nc;
nc = _gettoken(s, &np1, &np2);
return 0;
}
c = nc;
*p1 = np1;
nc = _gettoken(np2, &np1, &np2);
return c;
// Get the next token from string s.
// Set *p1 to the beginning of the token and *p2 just past the token.
// Returns
// 0 for end-of-string;
// < for <;
// > for >;
// | for |;
// w for a word.
//
// Eventually (once we parse the space where the \0 will go),
// words get nul-terminated.
#define WHITESPACE " \t\r\n"
#define SYMBOLS "<|>&;()"
int
_gettoken(char *s, char **p1, char **p2)
{
int t;
printf(2, "GETTOKEN: %s\n", s);
*p1 = 0;
*p2 = 0;
printf(2, "TOK %c\n", t);
return t;
}
*p1 = s;