optional added
This commit is contained in:
1
Makefile
1
Makefile
@ -189,6 +189,7 @@ UPROGS=\
|
|||||||
$U/_wc\
|
$U/_wc\
|
||||||
$U/_zombie\
|
$U/_zombie\
|
||||||
$U/_sleep\
|
$U/_sleep\
|
||||||
|
$U/_uptime\
|
||||||
$U/_pingpong\
|
$U/_pingpong\
|
||||||
$U/_primes\
|
$U/_primes\
|
||||||
$U/_find\
|
$U/_find\
|
||||||
|
|||||||
66
user/find.c
66
user/find.c
@ -3,20 +3,48 @@
|
|||||||
#include "kernel/types.h"
|
#include "kernel/types.h"
|
||||||
#include "user/user.h"
|
#include "user/user.h"
|
||||||
|
|
||||||
void find(char *path, char *filename) {
|
int match_pattern(const char *name, const char *pattern) {
|
||||||
int fd = open(path, 0);
|
const char *star = 0;
|
||||||
|
const char *name_ptr = name;
|
||||||
|
const char *pattern_ptr = pattern;
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
if (*pattern_ptr == '*') {
|
||||||
|
star = pattern_ptr++;
|
||||||
|
name_ptr = name;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!*name)
|
||||||
|
return (!*pattern_ptr || (star && !*++pattern_ptr));
|
||||||
|
if (*pattern_ptr == '?' || *pattern_ptr == *name) {
|
||||||
|
pattern_ptr++;
|
||||||
|
name++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (star) {
|
||||||
|
pattern_ptr = star + 1;
|
||||||
|
name = ++name_ptr;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void find(char *path, char *pattern) {
|
||||||
char buf[512], *p;
|
char buf[512], *p;
|
||||||
|
int fd;
|
||||||
struct dirent de;
|
struct dirent de;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
|
|
||||||
if (fd < 0 || strlen(path) + 1 + DIRSIZ + 1 >= sizeof(buf)) {
|
if ((fd = open(path, 0)) < 0) {
|
||||||
fprintf(2, "find: Invalid path: %s\n", path);
|
fprintf(2, "find: cannot open %s\n", path);
|
||||||
// close(fd);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fstat(fd, &st) < 0) {
|
if (fstat(fd, &st) < 0) {
|
||||||
fprintf(2, "find: Failed to stat %s\n", path);
|
fprintf(2, "find: cannot stat %s\n", path);
|
||||||
close(fd);
|
close(fd);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -27,36 +55,42 @@ void find(char *path, char *filename) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
strncpy(buf, path, strlen(path) + 1);
|
if (strlen(path) + 1 + DIRSIZ + 1 > sizeof buf) {
|
||||||
p = buf + strlen(path);
|
fprintf(2, "find: path too long\n");
|
||||||
|
close(fd);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
strcpy(buf, path);
|
||||||
|
p = buf + strlen(buf);
|
||||||
*p++ = '/';
|
*p++ = '/';
|
||||||
|
|
||||||
while (read(fd, &de, sizeof(de)) == sizeof(de)) {
|
while (read(fd, &de, sizeof(de)) == sizeof(de)) {
|
||||||
if (de.inum == 0)
|
if (de.inum == 0 || !strcmp(de.name, ".") || !strcmp(de.name, ".."))
|
||||||
continue;
|
|
||||||
if (!strcmp(de.name, ".") || !strcmp(de.name, ".."))
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
memmove(p, de.name, DIRSIZ);
|
memmove(p, de.name, DIRSIZ);
|
||||||
p[DIRSIZ] = 0;
|
p[DIRSIZ] = 0;
|
||||||
|
|
||||||
if (stat(buf, &st) < 0) {
|
if (stat(buf, &st) < 0) {
|
||||||
fprintf(2, "find: Failed to stat %s\n", buf);
|
fprintf(2, "find: cannot stat %s\n", buf);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (st.type == T_DIR) {
|
if (st.type == T_DIR) {
|
||||||
find(buf, filename);
|
find(buf, pattern);
|
||||||
} else if (st.type == T_FILE) {
|
} else if (st.type == T_FILE) {
|
||||||
if (!strcmp(filename, "*") || !strcmp(filename, de.name)) {
|
if (match_pattern(de.name, pattern)) {
|
||||||
printf("%s\n", buf);
|
fprintf(1, "%s\n", buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
close(fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
if (argc != 3) {
|
if (argc != 3) {
|
||||||
printf("Usage: find path filename\n");
|
fprintf(2, "Usage: find <path> <pattern>\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
find(argv[1], argv[2]);
|
find(argv[1], argv[2]);
|
||||||
|
|||||||
243
user/sh.c
243
user/sh.c
@ -1,15 +1,16 @@
|
|||||||
// Shell.
|
// Shell.
|
||||||
|
|
||||||
|
#include "kernel/fcntl.h"
|
||||||
|
#include "kernel/fs.h"
|
||||||
#include "kernel/types.h"
|
#include "kernel/types.h"
|
||||||
#include "user/user.h"
|
#include "user/user.h"
|
||||||
#include "kernel/fcntl.h"
|
|
||||||
|
|
||||||
// Parsed command representation
|
// Parsed command representation
|
||||||
#define EXEC 1
|
#define EXEC 1
|
||||||
#define REDIR 2
|
#define REDIR 2
|
||||||
#define PIPE 3
|
#define PIPE 3
|
||||||
#define LIST 4
|
#define LIST 4
|
||||||
#define BACK 5
|
#define BACK 5
|
||||||
|
|
||||||
#define MAXARGS 10
|
#define MAXARGS 10
|
||||||
|
|
||||||
@ -49,15 +50,15 @@ struct backcmd {
|
|||||||
struct cmd *cmd;
|
struct cmd *cmd;
|
||||||
};
|
};
|
||||||
|
|
||||||
int fork1(void); // Fork but panics on failure.
|
int fork1(void); // Fork but panics on failure.
|
||||||
void panic(char*);
|
void panic(char *);
|
||||||
struct cmd *parsecmd(char*);
|
struct cmd *parsecmd(char *);
|
||||||
void runcmd(struct cmd*) __attribute__((noreturn));
|
void runcmd(struct cmd *) __attribute__((noreturn));
|
||||||
|
// void handle_tab_completion(char *buf, int *i, int nbuf);
|
||||||
|
// 尝试添加tab补全功能
|
||||||
|
|
||||||
// Execute cmd. Never returns.
|
// Execute cmd. Never returns.
|
||||||
void
|
void runcmd(struct cmd *cmd) {
|
||||||
runcmd(struct cmd *cmd)
|
|
||||||
{
|
|
||||||
int p[2];
|
int p[2];
|
||||||
struct backcmd *bcmd;
|
struct backcmd *bcmd;
|
||||||
struct execcmd *ecmd;
|
struct execcmd *ecmd;
|
||||||
@ -65,25 +66,25 @@ runcmd(struct cmd *cmd)
|
|||||||
struct pipecmd *pcmd;
|
struct pipecmd *pcmd;
|
||||||
struct redircmd *rcmd;
|
struct redircmd *rcmd;
|
||||||
|
|
||||||
if(cmd == 0)
|
if (cmd == 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
||||||
switch(cmd->type){
|
switch (cmd->type) {
|
||||||
default:
|
default:
|
||||||
panic("runcmd");
|
panic("runcmd");
|
||||||
|
|
||||||
case EXEC:
|
case EXEC:
|
||||||
ecmd = (struct execcmd*)cmd;
|
ecmd = (struct execcmd *)cmd;
|
||||||
if(ecmd->argv[0] == 0)
|
if (ecmd->argv[0] == 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
exec(ecmd->argv[0], ecmd->argv);
|
exec(ecmd->argv[0], ecmd->argv);
|
||||||
fprintf(2, "exec %s failed\n", ecmd->argv[0]);
|
fprintf(2, "exec %s failed\n", ecmd->argv[0]);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case REDIR:
|
case REDIR:
|
||||||
rcmd = (struct redircmd*)cmd;
|
rcmd = (struct redircmd *)cmd;
|
||||||
close(rcmd->fd);
|
close(rcmd->fd);
|
||||||
if(open(rcmd->file, rcmd->mode) < 0){
|
if (open(rcmd->file, rcmd->mode) < 0) {
|
||||||
fprintf(2, "open %s failed\n", rcmd->file);
|
fprintf(2, "open %s failed\n", rcmd->file);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
@ -91,25 +92,25 @@ runcmd(struct cmd *cmd)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case LIST:
|
case LIST:
|
||||||
lcmd = (struct listcmd*)cmd;
|
lcmd = (struct listcmd *)cmd;
|
||||||
if(fork1() == 0)
|
if (fork1() == 0)
|
||||||
runcmd(lcmd->left);
|
runcmd(lcmd->left);
|
||||||
wait(0);
|
wait(0);
|
||||||
runcmd(lcmd->right);
|
runcmd(lcmd->right);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PIPE:
|
case PIPE:
|
||||||
pcmd = (struct pipecmd*)cmd;
|
pcmd = (struct pipecmd *)cmd;
|
||||||
if(pipe(p) < 0)
|
if (pipe(p) < 0)
|
||||||
panic("pipe");
|
panic("pipe");
|
||||||
if(fork1() == 0){
|
if (fork1() == 0) {
|
||||||
close(1);
|
close(1);
|
||||||
dup(p[1]);
|
dup(p[1]);
|
||||||
close(p[0]);
|
close(p[0]);
|
||||||
close(p[1]);
|
close(p[1]);
|
||||||
runcmd(pcmd->left);
|
runcmd(pcmd->left);
|
||||||
}
|
}
|
||||||
if(fork1() == 0){
|
if (fork1() == 0) {
|
||||||
close(0);
|
close(0);
|
||||||
dup(p[0]);
|
dup(p[0]);
|
||||||
close(p[0]);
|
close(p[0]);
|
||||||
@ -123,90 +124,82 @@ runcmd(struct cmd *cmd)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case BACK:
|
case BACK:
|
||||||
bcmd = (struct backcmd*)cmd;
|
bcmd = (struct backcmd *)cmd;
|
||||||
if(fork1() == 0)
|
if (fork1() == 0)
|
||||||
runcmd(bcmd->cmd);
|
runcmd(bcmd->cmd);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int getcmd(char *buf, int nbuf) {
|
||||||
getcmd(char *buf, int nbuf)
|
|
||||||
{
|
|
||||||
write(2, "$ ", 2);
|
write(2, "$ ", 2);
|
||||||
memset(buf, 0, nbuf);
|
memset(buf, 0, nbuf);
|
||||||
gets(buf, nbuf);
|
gets(buf, nbuf);
|
||||||
if(buf[0] == 0) // EOF
|
if (buf[0] == 0) // EOF
|
||||||
return -1;
|
return -1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int main(void) {
|
||||||
main(void)
|
|
||||||
{
|
|
||||||
static char buf[100];
|
static char buf[100];
|
||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
// Ensure that three file descriptors are open.
|
// Ensure that three file descriptors are open.
|
||||||
while((fd = open("console", O_RDWR)) >= 0){
|
while ((fd = open("console", O_RDWR)) >= 0) {
|
||||||
if(fd >= 3){
|
if (fd >= 3) {
|
||||||
close(fd);
|
close(fd);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read and run input commands.
|
// Read and run input commands.
|
||||||
while(getcmd(buf, sizeof(buf)) >= 0){
|
while (getcmd(buf, sizeof(buf)) >= 0) {
|
||||||
if(buf[0] == 'c' && buf[1] == 'd' && buf[2] == ' '){
|
if (strcmp(buf, "exit\n") == 0) {
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
if (buf[0] == 'c' && buf[1] == 'd' && buf[2] == ' ') {
|
||||||
// Chdir must be called by the parent, not the child.
|
// Chdir must be called by the parent, not the child.
|
||||||
buf[strlen(buf)-1] = 0; // chop \n
|
buf[strlen(buf) - 1] = 0; // chop \n
|
||||||
if(chdir(buf+3) < 0)
|
if (chdir(buf + 3) < 0)
|
||||||
fprintf(2, "cannot cd %s\n", buf+3);
|
fprintf(2, "cannot cd %s\n", buf + 3);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if(fork1() == 0)
|
if (fork1() == 0)
|
||||||
runcmd(parsecmd(buf));
|
runcmd(parsecmd(buf));
|
||||||
wait(0);
|
wait(0);
|
||||||
}
|
}
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void panic(char *s) {
|
||||||
panic(char *s)
|
|
||||||
{
|
|
||||||
fprintf(2, "%s\n", s);
|
fprintf(2, "%s\n", s);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int fork1(void) {
|
||||||
fork1(void)
|
|
||||||
{
|
|
||||||
int pid;
|
int pid;
|
||||||
|
|
||||||
pid = fork();
|
pid = fork();
|
||||||
if(pid == -1)
|
if (pid == -1)
|
||||||
panic("fork");
|
panic("fork");
|
||||||
return pid;
|
return pid;
|
||||||
}
|
}
|
||||||
|
|
||||||
//PAGEBREAK!
|
// PAGEBREAK!
|
||||||
// Constructors
|
// Constructors
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *execcmd(void) {
|
||||||
execcmd(void)
|
|
||||||
{
|
|
||||||
struct execcmd *cmd;
|
struct execcmd *cmd;
|
||||||
|
|
||||||
cmd = malloc(sizeof(*cmd));
|
cmd = malloc(sizeof(*cmd));
|
||||||
memset(cmd, 0, sizeof(*cmd));
|
memset(cmd, 0, sizeof(*cmd));
|
||||||
cmd->type = EXEC;
|
cmd->type = EXEC;
|
||||||
return (struct cmd*)cmd;
|
return (struct cmd *)cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *redircmd(struct cmd *subcmd, char *file, char *efile, int mode,
|
||||||
redircmd(struct cmd *subcmd, char *file, char *efile, int mode, int fd)
|
int fd) {
|
||||||
{
|
|
||||||
struct redircmd *cmd;
|
struct redircmd *cmd;
|
||||||
|
|
||||||
cmd = malloc(sizeof(*cmd));
|
cmd = malloc(sizeof(*cmd));
|
||||||
@ -217,12 +210,10 @@ redircmd(struct cmd *subcmd, char *file, char *efile, int mode, int fd)
|
|||||||
cmd->efile = efile;
|
cmd->efile = efile;
|
||||||
cmd->mode = mode;
|
cmd->mode = mode;
|
||||||
cmd->fd = fd;
|
cmd->fd = fd;
|
||||||
return (struct cmd*)cmd;
|
return (struct cmd *)cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *pipecmd(struct cmd *left, struct cmd *right) {
|
||||||
pipecmd(struct cmd *left, struct cmd *right)
|
|
||||||
{
|
|
||||||
struct pipecmd *cmd;
|
struct pipecmd *cmd;
|
||||||
|
|
||||||
cmd = malloc(sizeof(*cmd));
|
cmd = malloc(sizeof(*cmd));
|
||||||
@ -230,12 +221,10 @@ pipecmd(struct cmd *left, struct cmd *right)
|
|||||||
cmd->type = PIPE;
|
cmd->type = PIPE;
|
||||||
cmd->left = left;
|
cmd->left = left;
|
||||||
cmd->right = right;
|
cmd->right = right;
|
||||||
return (struct cmd*)cmd;
|
return (struct cmd *)cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *listcmd(struct cmd *left, struct cmd *right) {
|
||||||
listcmd(struct cmd *left, struct cmd *right)
|
|
||||||
{
|
|
||||||
struct listcmd *cmd;
|
struct listcmd *cmd;
|
||||||
|
|
||||||
cmd = malloc(sizeof(*cmd));
|
cmd = malloc(sizeof(*cmd));
|
||||||
@ -243,39 +232,35 @@ listcmd(struct cmd *left, struct cmd *right)
|
|||||||
cmd->type = LIST;
|
cmd->type = LIST;
|
||||||
cmd->left = left;
|
cmd->left = left;
|
||||||
cmd->right = right;
|
cmd->right = right;
|
||||||
return (struct cmd*)cmd;
|
return (struct cmd *)cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *backcmd(struct cmd *subcmd) {
|
||||||
backcmd(struct cmd *subcmd)
|
|
||||||
{
|
|
||||||
struct backcmd *cmd;
|
struct backcmd *cmd;
|
||||||
|
|
||||||
cmd = malloc(sizeof(*cmd));
|
cmd = malloc(sizeof(*cmd));
|
||||||
memset(cmd, 0, sizeof(*cmd));
|
memset(cmd, 0, sizeof(*cmd));
|
||||||
cmd->type = BACK;
|
cmd->type = BACK;
|
||||||
cmd->cmd = subcmd;
|
cmd->cmd = subcmd;
|
||||||
return (struct cmd*)cmd;
|
return (struct cmd *)cmd;
|
||||||
}
|
}
|
||||||
//PAGEBREAK!
|
// PAGEBREAK!
|
||||||
// Parsing
|
// Parsing
|
||||||
|
|
||||||
char whitespace[] = " \t\r\n\v";
|
char whitespace[] = " \t\r\n\v";
|
||||||
char symbols[] = "<|>&;()";
|
char symbols[] = "<|>&;()";
|
||||||
|
|
||||||
int
|
int gettoken(char **ps, char *es, char **q, char **eq) {
|
||||||
gettoken(char **ps, char *es, char **q, char **eq)
|
|
||||||
{
|
|
||||||
char *s;
|
char *s;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
s = *ps;
|
s = *ps;
|
||||||
while(s < es && strchr(whitespace, *s))
|
while (s < es && strchr(whitespace, *s))
|
||||||
s++;
|
s++;
|
||||||
if(q)
|
if (q)
|
||||||
*q = s;
|
*q = s;
|
||||||
ret = *s;
|
ret = *s;
|
||||||
switch(*s){
|
switch (*s) {
|
||||||
case 0:
|
case 0:
|
||||||
break;
|
break;
|
||||||
case '|':
|
case '|':
|
||||||
@ -288,53 +273,49 @@ gettoken(char **ps, char *es, char **q, char **eq)
|
|||||||
break;
|
break;
|
||||||
case '>':
|
case '>':
|
||||||
s++;
|
s++;
|
||||||
if(*s == '>'){
|
if (*s == '>') {
|
||||||
ret = '+';
|
ret = '+';
|
||||||
s++;
|
s++;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ret = 'a';
|
ret = 'a';
|
||||||
while(s < es && !strchr(whitespace, *s) && !strchr(symbols, *s))
|
while (s < es && !strchr(whitespace, *s) && !strchr(symbols, *s))
|
||||||
s++;
|
s++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if(eq)
|
if (eq)
|
||||||
*eq = s;
|
*eq = s;
|
||||||
|
|
||||||
while(s < es && strchr(whitespace, *s))
|
while (s < es && strchr(whitespace, *s))
|
||||||
s++;
|
s++;
|
||||||
*ps = s;
|
*ps = s;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int peek(char **ps, char *es, char *toks) {
|
||||||
peek(char **ps, char *es, char *toks)
|
|
||||||
{
|
|
||||||
char *s;
|
char *s;
|
||||||
|
|
||||||
s = *ps;
|
s = *ps;
|
||||||
while(s < es && strchr(whitespace, *s))
|
while (s < es && strchr(whitespace, *s))
|
||||||
s++;
|
s++;
|
||||||
*ps = s;
|
*ps = s;
|
||||||
return *s && strchr(toks, *s);
|
return *s && strchr(toks, *s);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd *parseline(char**, char*);
|
struct cmd *parseline(char **, char *);
|
||||||
struct cmd *parsepipe(char**, char*);
|
struct cmd *parsepipe(char **, char *);
|
||||||
struct cmd *parseexec(char**, char*);
|
struct cmd *parseexec(char **, char *);
|
||||||
struct cmd *nulterminate(struct cmd*);
|
struct cmd *nulterminate(struct cmd *);
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *parsecmd(char *s) {
|
||||||
parsecmd(char *s)
|
|
||||||
{
|
|
||||||
char *es;
|
char *es;
|
||||||
struct cmd *cmd;
|
struct cmd *cmd;
|
||||||
|
|
||||||
es = s + strlen(s);
|
es = s + strlen(s);
|
||||||
cmd = parseline(&s, es);
|
cmd = parseline(&s, es);
|
||||||
peek(&s, es, "");
|
peek(&s, es, "");
|
||||||
if(s != es){
|
if (s != es) {
|
||||||
fprintf(2, "leftovers: %s\n", s);
|
fprintf(2, "leftovers: %s\n", s);
|
||||||
panic("syntax");
|
panic("syntax");
|
||||||
}
|
}
|
||||||
@ -342,102 +323,92 @@ parsecmd(char *s)
|
|||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *parseline(char **ps, char *es) {
|
||||||
parseline(char **ps, char *es)
|
|
||||||
{
|
|
||||||
struct cmd *cmd;
|
struct cmd *cmd;
|
||||||
|
|
||||||
cmd = parsepipe(ps, es);
|
cmd = parsepipe(ps, es);
|
||||||
while(peek(ps, es, "&")){
|
while (peek(ps, es, "&")) {
|
||||||
gettoken(ps, es, 0, 0);
|
gettoken(ps, es, 0, 0);
|
||||||
cmd = backcmd(cmd);
|
cmd = backcmd(cmd);
|
||||||
}
|
}
|
||||||
if(peek(ps, es, ";")){
|
if (peek(ps, es, ";")) {
|
||||||
gettoken(ps, es, 0, 0);
|
gettoken(ps, es, 0, 0);
|
||||||
cmd = listcmd(cmd, parseline(ps, es));
|
cmd = listcmd(cmd, parseline(ps, es));
|
||||||
}
|
}
|
||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *parsepipe(char **ps, char *es) {
|
||||||
parsepipe(char **ps, char *es)
|
|
||||||
{
|
|
||||||
struct cmd *cmd;
|
struct cmd *cmd;
|
||||||
|
|
||||||
cmd = parseexec(ps, es);
|
cmd = parseexec(ps, es);
|
||||||
if(peek(ps, es, "|")){
|
if (peek(ps, es, "|")) {
|
||||||
gettoken(ps, es, 0, 0);
|
gettoken(ps, es, 0, 0);
|
||||||
cmd = pipecmd(cmd, parsepipe(ps, es));
|
cmd = pipecmd(cmd, parsepipe(ps, es));
|
||||||
}
|
}
|
||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *parseredirs(struct cmd *cmd, char **ps, char *es) {
|
||||||
parseredirs(struct cmd *cmd, char **ps, char *es)
|
|
||||||
{
|
|
||||||
int tok;
|
int tok;
|
||||||
char *q, *eq;
|
char *q, *eq;
|
||||||
|
|
||||||
while(peek(ps, es, "<>")){
|
while (peek(ps, es, "<>")) {
|
||||||
tok = gettoken(ps, es, 0, 0);
|
tok = gettoken(ps, es, 0, 0);
|
||||||
if(gettoken(ps, es, &q, &eq) != 'a')
|
if (gettoken(ps, es, &q, &eq) != 'a')
|
||||||
panic("missing file for redirection");
|
panic("missing file for redirection");
|
||||||
switch(tok){
|
switch (tok) {
|
||||||
case '<':
|
case '<':
|
||||||
cmd = redircmd(cmd, q, eq, O_RDONLY, 0);
|
cmd = redircmd(cmd, q, eq, O_RDONLY, 0);
|
||||||
break;
|
break;
|
||||||
case '>':
|
case '>':
|
||||||
cmd = redircmd(cmd, q, eq, O_WRONLY|O_CREATE|O_TRUNC, 1);
|
cmd = redircmd(cmd, q, eq, O_WRONLY | O_CREATE | O_TRUNC, 1);
|
||||||
break;
|
break;
|
||||||
case '+': // >>
|
case '+': // >>
|
||||||
cmd = redircmd(cmd, q, eq, O_WRONLY|O_CREATE, 1);
|
cmd = redircmd(cmd, q, eq, O_WRONLY | O_CREATE, 1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *parseblock(char **ps, char *es) {
|
||||||
parseblock(char **ps, char *es)
|
|
||||||
{
|
|
||||||
struct cmd *cmd;
|
struct cmd *cmd;
|
||||||
|
|
||||||
if(!peek(ps, es, "("))
|
if (!peek(ps, es, "("))
|
||||||
panic("parseblock");
|
panic("parseblock");
|
||||||
gettoken(ps, es, 0, 0);
|
gettoken(ps, es, 0, 0);
|
||||||
cmd = parseline(ps, es);
|
cmd = parseline(ps, es);
|
||||||
if(!peek(ps, es, ")"))
|
if (!peek(ps, es, ")"))
|
||||||
panic("syntax - missing )");
|
panic("syntax - missing )");
|
||||||
gettoken(ps, es, 0, 0);
|
gettoken(ps, es, 0, 0);
|
||||||
cmd = parseredirs(cmd, ps, es);
|
cmd = parseredirs(cmd, ps, es);
|
||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct cmd*
|
struct cmd *parseexec(char **ps, char *es) {
|
||||||
parseexec(char **ps, char *es)
|
|
||||||
{
|
|
||||||
char *q, *eq;
|
char *q, *eq;
|
||||||
int tok, argc;
|
int tok, argc;
|
||||||
struct execcmd *cmd;
|
struct execcmd *cmd;
|
||||||
struct cmd *ret;
|
struct cmd *ret;
|
||||||
|
|
||||||
if(peek(ps, es, "("))
|
if (peek(ps, es, "("))
|
||||||
return parseblock(ps, es);
|
return parseblock(ps, es);
|
||||||
|
|
||||||
ret = execcmd();
|
ret = execcmd();
|
||||||
cmd = (struct execcmd*)ret;
|
cmd = (struct execcmd *)ret;
|
||||||
|
|
||||||
argc = 0;
|
argc = 0;
|
||||||
ret = parseredirs(ret, ps, es);
|
ret = parseredirs(ret, ps, es);
|
||||||
while(!peek(ps, es, "|)&;")){
|
while (!peek(ps, es, "|)&;")) {
|
||||||
if((tok=gettoken(ps, es, &q, &eq)) == 0)
|
if ((tok = gettoken(ps, es, &q, &eq)) == 0)
|
||||||
break;
|
break;
|
||||||
if(tok != 'a')
|
if (tok != 'a')
|
||||||
panic("syntax");
|
panic("syntax");
|
||||||
cmd->argv[argc] = q;
|
cmd->argv[argc] = q;
|
||||||
cmd->eargv[argc] = eq;
|
cmd->eargv[argc] = eq;
|
||||||
argc++;
|
argc++;
|
||||||
if(argc >= MAXARGS)
|
if (argc >= MAXARGS)
|
||||||
panic("too many args");
|
panic("too many args");
|
||||||
ret = parseredirs(ret, ps, es);
|
ret = parseredirs(ret, ps, es);
|
||||||
}
|
}
|
||||||
@ -447,9 +418,7 @@ parseexec(char **ps, char *es)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NUL-terminate all the counted strings.
|
// NUL-terminate all the counted strings.
|
||||||
struct cmd*
|
struct cmd *nulterminate(struct cmd *cmd) {
|
||||||
nulterminate(struct cmd *cmd)
|
|
||||||
{
|
|
||||||
int i;
|
int i;
|
||||||
struct backcmd *bcmd;
|
struct backcmd *bcmd;
|
||||||
struct execcmd *ecmd;
|
struct execcmd *ecmd;
|
||||||
@ -457,36 +426,36 @@ nulterminate(struct cmd *cmd)
|
|||||||
struct pipecmd *pcmd;
|
struct pipecmd *pcmd;
|
||||||
struct redircmd *rcmd;
|
struct redircmd *rcmd;
|
||||||
|
|
||||||
if(cmd == 0)
|
if (cmd == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
switch(cmd->type){
|
switch (cmd->type) {
|
||||||
case EXEC:
|
case EXEC:
|
||||||
ecmd = (struct execcmd*)cmd;
|
ecmd = (struct execcmd *)cmd;
|
||||||
for(i=0; ecmd->argv[i]; i++)
|
for (i = 0; ecmd->argv[i]; i++)
|
||||||
*ecmd->eargv[i] = 0;
|
*ecmd->eargv[i] = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case REDIR:
|
case REDIR:
|
||||||
rcmd = (struct redircmd*)cmd;
|
rcmd = (struct redircmd *)cmd;
|
||||||
nulterminate(rcmd->cmd);
|
nulterminate(rcmd->cmd);
|
||||||
*rcmd->efile = 0;
|
*rcmd->efile = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PIPE:
|
case PIPE:
|
||||||
pcmd = (struct pipecmd*)cmd;
|
pcmd = (struct pipecmd *)cmd;
|
||||||
nulterminate(pcmd->left);
|
nulterminate(pcmd->left);
|
||||||
nulterminate(pcmd->right);
|
nulterminate(pcmd->right);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LIST:
|
case LIST:
|
||||||
lcmd = (struct listcmd*)cmd;
|
lcmd = (struct listcmd *)cmd;
|
||||||
nulterminate(lcmd->left);
|
nulterminate(lcmd->left);
|
||||||
nulterminate(lcmd->right);
|
nulterminate(lcmd->right);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BACK:
|
case BACK:
|
||||||
bcmd = (struct backcmd*)cmd;
|
bcmd = (struct backcmd *)cmd;
|
||||||
nulterminate(bcmd->cmd);
|
nulterminate(bcmd->cmd);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
15
user/uptime.c
Normal file
15
user/uptime.c
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#include "kernel/types.h"
|
||||||
|
#include "user/user.h"
|
||||||
|
|
||||||
|
int main(int argc, char *argv[]) {
|
||||||
|
if (argc != 1) {
|
||||||
|
// 错误输出到stderr(文件描述符2)
|
||||||
|
fprintf(2, "Usage: uptime\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
fprintf(1,"up: %d\n",uptime());
|
||||||
|
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user