New shell.
This commit is contained in:
parent
f0d11fea82
commit
1b25f3b057
1 changed files with 407 additions and 272 deletions
679
sh.c
679
sh.c
|
@ -1,48 +1,141 @@
|
||||||
|
// Shell.
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "stat.h"
|
|
||||||
#include "user.h"
|
#include "user.h"
|
||||||
#include "fcntl.h"
|
#include "fcntl.h"
|
||||||
|
|
||||||
#define BUFSIZ 512
|
// Parsed command representation
|
||||||
#define MAXARGS 10
|
#define EXEC 1
|
||||||
#define MAXIO 2
|
#define REDIR 2
|
||||||
#define MAXCMD 2
|
#define PIPE 3
|
||||||
|
#define LIST 4
|
||||||
|
#define BACK 5
|
||||||
|
|
||||||
// an embarrassingly naive shell
|
#define MAXARGS 10
|
||||||
|
|
||||||
// some day a real parse tree; for now ad-hoc
|
|
||||||
struct ionode {
|
|
||||||
int token;
|
|
||||||
char *s;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct cmd {
|
struct cmd {
|
||||||
char *argv[MAXARGS];
|
int type;
|
||||||
char argv0buf[BUFSIZ];
|
|
||||||
int argc;
|
|
||||||
int token;
|
|
||||||
struct ionode iolist[MAXIO];
|
|
||||||
struct ionode *io;
|
|
||||||
};
|
};
|
||||||
struct cmd cmdlist[MAXCMD];
|
|
||||||
struct cmd *cmd;
|
|
||||||
|
|
||||||
char buf[BUFSIZ];
|
struct execcmd {
|
||||||
int debug;
|
int type;
|
||||||
|
char *argv[MAXARGS];
|
||||||
|
char *eargv[MAXARGS];
|
||||||
|
};
|
||||||
|
|
||||||
int parse(char *s);
|
struct redircmd {
|
||||||
void runcmd(void);
|
int type;
|
||||||
int getcmd(char *buf, int nbuf);
|
struct cmd *cmd;
|
||||||
int ioredirection(struct ionode *iolist, int nio);
|
char *file;
|
||||||
int gettoken(char *s, char **token);
|
char *efile;
|
||||||
int _gettoken(char *s, char **p1, char **p2);
|
int mode;
|
||||||
|
int fd;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct pipecmd {
|
||||||
|
int type;
|
||||||
|
struct cmd *left;
|
||||||
|
struct cmd *right;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct listcmd {
|
||||||
|
int type;
|
||||||
|
struct cmd *left;
|
||||||
|
struct cmd *right;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct backcmd {
|
||||||
|
int type;
|
||||||
|
struct cmd *cmd;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct cmd *parsecmd(char*);
|
||||||
|
void panic(char*);
|
||||||
|
|
||||||
int
|
int
|
||||||
main(void)
|
fork1(void)
|
||||||
{
|
{
|
||||||
while(getcmd(buf, sizeof(buf)) >= 0) {
|
int pid;
|
||||||
if(parse(buf) >= 0)
|
|
||||||
runcmd();
|
pid = fork();
|
||||||
|
if(pid == -1)
|
||||||
|
panic("fork");
|
||||||
|
return pid;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Execute cmd. Never returns.
|
||||||
|
void
|
||||||
|
runcmd(struct cmd *cmd)
|
||||||
|
{
|
||||||
|
int p[2];
|
||||||
|
struct backcmd *bcmd;
|
||||||
|
struct execcmd *ecmd;
|
||||||
|
struct listcmd *lcmd;
|
||||||
|
struct pipecmd *pcmd;
|
||||||
|
struct redircmd *rcmd;
|
||||||
|
|
||||||
|
if(cmd == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
switch(cmd->type){
|
||||||
|
default:
|
||||||
|
panic("runcmd");
|
||||||
|
|
||||||
|
case EXEC:
|
||||||
|
ecmd = (struct execcmd*)cmd;
|
||||||
|
if(ecmd->argv[0] == 0)
|
||||||
|
exit();
|
||||||
|
exec(ecmd->argv[0], ecmd->argv);
|
||||||
|
printf(2, "exec %s failed\n", ecmd->argv[0]);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case REDIR:
|
||||||
|
rcmd = (struct redircmd*)cmd;
|
||||||
|
close(rcmd->fd);
|
||||||
|
if(open(rcmd->file, rcmd->mode) < 0){
|
||||||
|
printf(2, "open %s failed\n", rcmd->file);
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
runcmd(rcmd->cmd);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case PIPE:
|
||||||
|
pcmd = (struct pipecmd*)cmd;
|
||||||
|
if(pipe(p) < 0)
|
||||||
|
panic("pipe");
|
||||||
|
if(fork1() == 0){
|
||||||
|
close(1);
|
||||||
|
dup(p[1]);
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
runcmd(pcmd->left);
|
||||||
|
}
|
||||||
|
if(fork1() == 0){
|
||||||
|
close(0);
|
||||||
|
dup(p[0]);
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
runcmd(pcmd->right);
|
||||||
|
}
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
wait();
|
||||||
|
wait();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case LIST:
|
||||||
|
lcmd = (struct listcmd*)cmd;
|
||||||
|
if(fork1() == 0)
|
||||||
|
runcmd(lcmd->left);
|
||||||
|
wait();
|
||||||
|
runcmd(lcmd->right);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BACK:
|
||||||
|
bcmd = (struct backcmd*)cmd;
|
||||||
|
if(fork1() == 0)
|
||||||
|
runcmd(bcmd->cmd);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
@ -59,282 +152,324 @@ getcmd(char *buf, int nbuf)
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
parse(char *s)
|
main(void)
|
||||||
{
|
{
|
||||||
char *t;
|
static char buf[100];
|
||||||
int c, i;
|
|
||||||
|
|
||||||
gettoken(s, 0);
|
while(getcmd(buf, sizeof(buf)) >= 0) {
|
||||||
|
if(fork1() == 0)
|
||||||
cmd = &cmdlist[0];
|
runcmd(parsecmd(buf));
|
||||||
for(i = 0; i < MAXCMD; i++) {
|
wait();
|
||||||
cmdlist[i].argc = 0;
|
|
||||||
cmdlist[i].token = 0;
|
|
||||||
cmdlist[i].io = cmdlist[i].iolist;
|
|
||||||
}
|
|
||||||
for(;;){
|
|
||||||
switch((c = gettoken(0, &t))) {
|
|
||||||
|
|
||||||
case 'w': // Add an argument
|
|
||||||
if(cmd->argc >= MAXARGS) {
|
|
||||||
printf(2, "too many arguments\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
cmd->argv[cmd->argc++] = t;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case '>': // Input and output redirection
|
|
||||||
case '<':
|
|
||||||
// Grab the filename from the argument list
|
|
||||||
if(gettoken(0, &t) != 'w') {
|
|
||||||
printf(2, "syntax error: > not followed by word\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if(cmd->io - cmd->iolist >= MAXIO) {
|
|
||||||
printf(2, "too many redirections\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
cmd->io->token = c;
|
|
||||||
cmd->io->s = t;
|
|
||||||
cmd->io++;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ';': // command sequence
|
|
||||||
case '|': // pipe
|
|
||||||
if(cmd->io - cmd->iolist >= MAXIO) {
|
|
||||||
printf(2, "too many redirections\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
cmd->token = c;
|
|
||||||
cmd++;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 0: // String is complete
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
default:
|
|
||||||
printf(2, "syntax error: bad return %d from gettoken", c);
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
runcmd(void)
|
panic(char *s)
|
||||||
{
|
{
|
||||||
int i, r, pid, tfd;
|
printf(2, "%s\n", s);
|
||||||
int fdarray[2];
|
exit();
|
||||||
struct cmd *c;
|
}
|
||||||
struct ionode *io;
|
|
||||||
|
|
||||||
// Return immediately if command line was empty.
|
// Constructors
|
||||||
if(cmdlist[0].argc == 0) {
|
|
||||||
if(debug)
|
|
||||||
printf(2, "EMPTY COMMAND\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for(c = &cmdlist[0]; c <= cmd; c++) {
|
struct cmd*
|
||||||
// Clean up command line.
|
execcmd(void)
|
||||||
// Read all commands from the filesystem: add an initial '/' to
|
{
|
||||||
// the command name.
|
struct execcmd *cmd;
|
||||||
// This essentially acts like 'PATH=/'.
|
|
||||||
if(c->argv[0][0] != '/') {
|
|
||||||
c->argv0buf[0] = '/';
|
|
||||||
strcpy(c->argv0buf + 1, c->argv[0]);
|
|
||||||
c->argv[0] = c->argv0buf;
|
|
||||||
}
|
|
||||||
c->argv[c->argc] = 0;
|
|
||||||
|
|
||||||
// Print the command.
|
cmd = malloc(sizeof(*cmd));
|
||||||
if(debug) {
|
memset(cmd, 0, sizeof(*cmd));
|
||||||
printf(2, "[%d] SPAWN:", getpid());
|
cmd->type = EXEC;
|
||||||
for(i = 0; c->argv[i]; i++)
|
return (struct cmd*)cmd;
|
||||||
printf(2, " %s", c->argv[i]);
|
}
|
||||||
for(io = c->iolist; io <= c->io; io++) {
|
|
||||||
printf(2, "%c %s", io->token, io->s);
|
|
||||||
}
|
|
||||||
printf(2, "\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
if(strcmp(c->argv[0], "/cd") == 0) {
|
struct cmd*
|
||||||
if(debug)
|
redircmd(struct cmd *subcmd, char *file, char *efile, int mode, int fd)
|
||||||
printf (2, "/cd %s is build in\n", c->argv[1]);
|
{
|
||||||
chdir(c->argv[1]);
|
struct redircmd *cmd;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(c->token == '|')
|
cmd = malloc(sizeof(*cmd));
|
||||||
if(pipe(fdarray) < 0)
|
memset(cmd, 0, sizeof(*cmd));
|
||||||
printf(2, "cmd %d pipe failed\n", c);
|
cmd->type = REDIR;
|
||||||
|
cmd->cmd = subcmd;
|
||||||
|
cmd->file = file;
|
||||||
|
cmd->efile = efile;
|
||||||
|
cmd->mode = mode;
|
||||||
|
cmd->fd = fd;
|
||||||
|
return (struct cmd*)cmd;
|
||||||
|
}
|
||||||
|
|
||||||
pid = fork();
|
struct cmd*
|
||||||
if(pid == 0) {
|
pipecmd(struct cmd *left, struct cmd *right)
|
||||||
if(c->token == '|') {
|
{
|
||||||
if(close(1) < 0)
|
struct pipecmd *cmd;
|
||||||
printf(2, "close 1 failed\n");
|
|
||||||
if((tfd = dup(fdarray[1])) < 0)
|
|
||||||
printf(2, "dup failed\n");
|
|
||||||
if(close(fdarray[0]) < 0)
|
|
||||||
printf(2, "close fdarray[0] failed\n");
|
|
||||||
if(close(fdarray[1]) < 0)
|
|
||||||
printf(2, "close fdarray[1] failed\n");
|
|
||||||
}
|
|
||||||
if(c > cmdlist && (c-1)->token == '|') {
|
|
||||||
if(close(0) < 0)
|
|
||||||
printf(2, "close 0 failed\n");
|
|
||||||
if((tfd = dup(fdarray[0])) < 0)
|
|
||||||
printf(2, "dup failed\n");
|
|
||||||
if(close(fdarray[0]) < 0)
|
|
||||||
printf(2, "close fdarray[0] failed\n");
|
|
||||||
if(close(fdarray[1]) < 0)
|
|
||||||
printf(2, "close fdarray[1] failed\n");
|
|
||||||
}
|
|
||||||
if(ioredirection(c->iolist, c->io - c->iolist) < 0)
|
|
||||||
exit();
|
|
||||||
if((r = exec(c->argv0buf, (char**) c->argv)) < 0) {
|
|
||||||
printf(2, "exec %s: %d\n", c->argv[0], r);
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
} else if(pid > 0) {
|
|
||||||
int p;
|
|
||||||
if(debug)
|
|
||||||
printf(2, "[%d] FORKED child %d\n", getpid(), pid);
|
|
||||||
|
|
||||||
if(c > cmdlist && (c-1)->token == '|') {
|
cmd = malloc(sizeof(*cmd));
|
||||||
close(fdarray[0]);
|
memset(cmd, 0, sizeof(*cmd));
|
||||||
close(fdarray[1]);
|
cmd->type = PIPE;
|
||||||
}
|
cmd->left = left;
|
||||||
if(c->token != '|') {
|
cmd->right = right;
|
||||||
if(debug)
|
return (struct cmd*)cmd;
|
||||||
printf(2, "[%d] WAIT for children\n", getpid());
|
}
|
||||||
do {
|
|
||||||
p = wait();
|
struct cmd*
|
||||||
if(debug)
|
listcmd(struct cmd *left, struct cmd *right)
|
||||||
printf(2, "[%d] WAIT child %d finished\n", getpid(), p);
|
{
|
||||||
} while(p > 0);
|
struct listcmd *cmd;
|
||||||
if(debug)
|
|
||||||
printf(2, "[%d] wait finished\n", getpid());
|
cmd = malloc(sizeof(*cmd));
|
||||||
}
|
memset(cmd, 0, sizeof(*cmd));
|
||||||
}
|
cmd->type = LIST;
|
||||||
}
|
cmd->left = left;
|
||||||
|
cmd->right = right;
|
||||||
|
return (struct cmd*)cmd;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct cmd*
|
||||||
|
backcmd(struct cmd *subcmd)
|
||||||
|
{
|
||||||
|
struct backcmd *cmd;
|
||||||
|
|
||||||
|
cmd = malloc(sizeof(*cmd));
|
||||||
|
memset(cmd, 0, sizeof(*cmd));
|
||||||
|
cmd->type = BACK;
|
||||||
|
cmd->cmd = subcmd;
|
||||||
|
return (struct cmd*)cmd;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parsing
|
||||||
|
|
||||||
|
char whitespace[] = " \t\r\n\v";
|
||||||
|
char symbols[] = "<|>&;()";
|
||||||
|
|
||||||
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
ioredirection(struct ionode *iolist, int nio)
|
gettoken(char **ps, char *es, char **q, char **eq)
|
||||||
{
|
{
|
||||||
int fd;
|
char *s;
|
||||||
struct ionode *io;
|
int ret;
|
||||||
|
|
||||||
|
s = *ps;
|
||||||
|
while(s < es && strchr(whitespace, *s))
|
||||||
|
s++;
|
||||||
|
if(q)
|
||||||
|
*q = s;
|
||||||
|
ret = *s;
|
||||||
|
switch(*s){
|
||||||
|
case 0:
|
||||||
|
break;
|
||||||
|
case '|':
|
||||||
|
case '(':
|
||||||
|
case ')':
|
||||||
|
case ';':
|
||||||
|
case '&':
|
||||||
|
case '<':
|
||||||
|
s++;
|
||||||
|
break;
|
||||||
|
case '>':
|
||||||
|
s++;
|
||||||
|
if(*s == '>'){
|
||||||
|
ret = '+';
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
for(io = iolist; io < &iolist[nio]; io++) {
|
void nulterminate(struct cmd*);
|
||||||
switch(io->token) {
|
struct cmd *parseline(char**, char*);
|
||||||
|
struct cmd *parsepipe(char**, char*);
|
||||||
|
struct cmd *parseredirs(struct cmd*, char**, char*);
|
||||||
|
struct cmd *parseblock(char**, char*);
|
||||||
|
struct cmd *parseexec(char**, char*);
|
||||||
|
|
||||||
|
struct cmd*
|
||||||
|
parsecmd(char *s)
|
||||||
|
{
|
||||||
|
char *es;
|
||||||
|
struct cmd *cmd;
|
||||||
|
|
||||||
|
es = s + strlen(s);
|
||||||
|
cmd = parseline(&s, es);
|
||||||
|
peek(&s, es, "");
|
||||||
|
if(s != es){
|
||||||
|
printf(2, "leftovers: %s\n", s);
|
||||||
|
panic("syntax");
|
||||||
|
}
|
||||||
|
nulterminate(cmd);
|
||||||
|
return cmd;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct cmd*
|
||||||
|
parseline(char **ps, char *es)
|
||||||
|
{
|
||||||
|
struct cmd *cmd;
|
||||||
|
|
||||||
|
cmd = parsepipe(ps, es);
|
||||||
|
while(peek(ps, es, "&")){
|
||||||
|
gettoken(ps, es, 0, 0);
|
||||||
|
cmd = backcmd(cmd);
|
||||||
|
}
|
||||||
|
if(peek(ps, es, ";")){
|
||||||
|
gettoken(ps, es, 0, 0);
|
||||||
|
cmd = listcmd(cmd, parseline(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*
|
||||||
|
parseblock(char **ps, char *es)
|
||||||
|
{
|
||||||
|
struct cmd *cmd;
|
||||||
|
|
||||||
|
if(!peek(ps, es, "("))
|
||||||
|
panic("parseblock");
|
||||||
|
gettoken(ps, es, 0, 0);
|
||||||
|
cmd = parseline(ps, es);
|
||||||
|
if(!peek(ps, es, ")"))
|
||||||
|
panic("syntax - missing )");
|
||||||
|
gettoken(ps, es, 0, 0);
|
||||||
|
cmd = parseredirs(cmd, 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')
|
||||||
|
panic("missing file for redirection");
|
||||||
|
switch(tok){
|
||||||
case '<':
|
case '<':
|
||||||
if(close(0) < 0)
|
cmd = redircmd(cmd, q, eq, O_RDONLY, 0);
|
||||||
printf(2, "close 0 failed\n");
|
|
||||||
if((fd = open(io->s, O_RDONLY)) < 0) {
|
|
||||||
printf(2, "failed to open %s for read: %d", io->s, fd);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if(debug)
|
|
||||||
printf(2, "redirect 0 from %s\n", io->s);
|
|
||||||
break;
|
break;
|
||||||
case '>':
|
case '>':
|
||||||
if(close(1) < 0)
|
cmd = redircmd(cmd, q, eq, O_WRONLY|O_CREATE, 1);
|
||||||
printf(2, "close 1 failed\n");
|
break;
|
||||||
if((fd = open(io->s, O_WRONLY|O_CREATE)) < 0) {
|
case '+': // >>
|
||||||
printf(2, "failed to open %s for write: %d", io->s, fd);
|
cmd = redircmd(cmd, q, eq, O_WRONLY|O_CREATE, 1);
|
||||||
exit();
|
|
||||||
}
|
|
||||||
if(debug)
|
|
||||||
printf(2, "redirect 1 to %s\n", io->s);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
// gettoken(s, 0) prepares gettoken for subsequent calls and returns 0.
|
struct cmd*
|
||||||
// gettoken(0, token) parses a shell token from the previously set string,
|
parseexec(char **ps, char *es)
|
||||||
// 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;
|
char *q, *eq;
|
||||||
static char *np1, *np2;
|
int tok, argc;
|
||||||
|
struct execcmd *cmd;
|
||||||
|
struct cmd *ret;
|
||||||
|
|
||||||
|
if(peek(ps, es, "("))
|
||||||
|
return parseblock(ps, es);
|
||||||
|
|
||||||
if(s) {
|
ret = execcmd();
|
||||||
nc = _gettoken(s, &np1, &np2);
|
cmd = (struct execcmd*)ret;
|
||||||
return 0;
|
|
||||||
|
argc = 0;
|
||||||
|
ret = parseredirs(ret, ps, es);
|
||||||
|
while(!peek(ps, es, "|)&;")){
|
||||||
|
if((tok=gettoken(ps, es, &q, &eq)) == 0)
|
||||||
|
break;
|
||||||
|
if(tok != 'a')
|
||||||
|
panic("syntax");
|
||||||
|
cmd->argv[argc] = q;
|
||||||
|
cmd->eargv[argc] = eq;
|
||||||
|
argc++;
|
||||||
|
if(argc >= MAXARGS)
|
||||||
|
panic("too many args");
|
||||||
|
ret = parseredirs(ret, ps, es);
|
||||||
}
|
}
|
||||||
c = nc;
|
cmd->argv[argc] = 0;
|
||||||
*p1 = np1;
|
cmd->eargv[argc] = 0;
|
||||||
nc = _gettoken(np2, &np1, &np2);
|
return ret;
|
||||||
return c;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NUL-terminate all the counted strings.
|
||||||
// Get the next token from string s.
|
void
|
||||||
// Set *p1 to the beginning of the token and *p2 just past the token.
|
nulterminate(struct cmd *cmd)
|
||||||
// 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;
|
int i;
|
||||||
|
struct backcmd *bcmd;
|
||||||
|
struct execcmd *ecmd;
|
||||||
|
struct listcmd *lcmd;
|
||||||
|
struct pipecmd *pcmd;
|
||||||
|
struct redircmd *rcmd;
|
||||||
|
|
||||||
if(s == 0) {
|
if(cmd == 0)
|
||||||
if(debug > 1)
|
return;
|
||||||
printf(2, "GETTOKEN 0\n");
|
|
||||||
return 0;
|
switch(cmd->type){
|
||||||
}
|
case EXEC:
|
||||||
|
ecmd = (struct execcmd*)cmd;
|
||||||
|
for(i=0; ecmd->argv[i]; i++)
|
||||||
|
*ecmd->eargv[i] = 0;
|
||||||
|
break;
|
||||||
|
|
||||||
if(debug > 1)
|
case REDIR:
|
||||||
printf(2, "GETTOKEN: %s\n", s);
|
rcmd = (struct redircmd*)cmd;
|
||||||
|
nulterminate(rcmd->cmd);
|
||||||
|
*rcmd->efile = 0;
|
||||||
|
break;
|
||||||
|
|
||||||
*p1 = 0;
|
case PIPE:
|
||||||
*p2 = 0;
|
pcmd = (struct pipecmd*)cmd;
|
||||||
|
nulterminate(pcmd->left);
|
||||||
|
nulterminate(pcmd->right);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case LIST:
|
||||||
|
lcmd = (struct listcmd*)cmd;
|
||||||
|
nulterminate(lcmd->left);
|
||||||
|
nulterminate(lcmd->right);
|
||||||
|
break;
|
||||||
|
|
||||||
while(strchr(WHITESPACE, *s))
|
case BACK:
|
||||||
*s++ = 0;
|
bcmd = (struct backcmd*)cmd;
|
||||||
if(*s == 0) {
|
nulterminate(bcmd->cmd);
|
||||||
if(debug > 1)
|
break;
|
||||||
printf(2, "EOL\n");
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
if(strchr(SYMBOLS, *s)) {
|
|
||||||
t = *s;
|
|
||||||
*p1 = s;
|
|
||||||
*s++ = 0;
|
|
||||||
*p2 = s;
|
|
||||||
if(debug > 1)
|
|
||||||
printf(2, "TOK %c\n", t);
|
|
||||||
return t;
|
|
||||||
}
|
|
||||||
*p1 = s;
|
|
||||||
while(*s && !strchr(WHITESPACE SYMBOLS, *s))
|
|
||||||
s++;
|
|
||||||
*p2 = s;
|
|
||||||
if(debug > 1) {
|
|
||||||
t = **p2;
|
|
||||||
**p2 = 0;
|
|
||||||
printf(2, "WORD: %s\n", *p1);
|
|
||||||
**p2 = t;
|
|
||||||
}
|
|
||||||
return 'w';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue