aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@driftwood>2006-10-18 18:38:16 -0400
committerlandley <landley@driftwood>2006-10-18 18:38:16 -0400
commitcd9dfc3b7b73715840b63180e2e4bfdb6e7ca9a4 (patch)
treea4e4932ecc15140ed48761ca8d32d5a0edc53bf7
parent4f344e356d2c36c4b1df46917eaef25f82ca79a9 (diff)
downloadtoybox-cd9dfc3b7b73715840b63180e2e4bfdb6e7ca9a4.tar.gz
Next drop of toysh, plus more infratructure.
-rw-r--r--Makefile2
-rw-r--r--lib/functions.c33
-rw-r--r--lib/getmountlist.c2
-rw-r--r--lib/lib.h7
-rw-r--r--main.c18
-rw-r--r--toys.h16
-rw-r--r--toys/toysh.c180
7 files changed, 213 insertions, 45 deletions
diff --git a/Makefile b/Makefile
index 984cdeb0..1bb256b3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
all:
- gcc -Os -s $(CFLAGS) -I . main.c toys/*.c lib/*.c -o toybox
+ $(CC) -Os -s $(CFLAGS) -I . main.c toys/*.c lib/*.c -o toybox
clean:
rm toybox
diff --git a/lib/functions.c b/lib/functions.c
index 3d9a8aca..dd7c6c52 100644
--- a/lib/functions.c
+++ b/lib/functions.c
@@ -1,8 +1,10 @@
-/* vi: set ts=4 :*/
+/* vi: set sw=4 ts=4 :*/
/* functions.c - reusable stuff.
*
- * Functions with the x prefix never return failure, they either succeed or
- * kill the program with an error message.
+ * Functions with the x prefix are wrappers for library functions. They either
+ * succeed or kill the program with an error message, but never return failure.
+ * They usually have the same arguments and return value as the function they
+ * wrap.
*/
#include "toys.h"
@@ -19,6 +21,7 @@ void error_exit(char *msg, ...)
exit(toys.exitval);
}
+// Like strncpy but always null terminated.
void strlcpy(char *dest, char *src, size_t size)
{
strncpy(dest,src,size);
@@ -30,9 +33,27 @@ void *xmalloc(size_t size)
{
void *ret = malloc(size);
if (!ret) error_exit("xmalloc");
+
+ return ret;
+}
+
+// Die unless we can allocate prezeroed memory.
+void *xzalloc(size_t size)
+{
+ void *ret = xmalloc(size);
+ bzero(ret,size);
+ return ret;
+}
+
+// Die unless we can change the size of an existing allocation, possibly
+// moving it. (Notice different arguments from libc function.)
+void xrealloc(void **ptr, size_t size)
+{
+ *ptr = realloc(*ptr, size);
+ if (!*ptr) error_exit("xrealloc");
}
-// Die unless we can copy this string.
+// Die unless we can allocate a copy of this string.
void *xstrndup(char *s, size_t n)
{
void *ret = xmalloc(++n);
@@ -41,9 +62,11 @@ void *xstrndup(char *s, size_t n)
return ret;
}
-// Die unless we can exec argv[]
+// Die unless we can exec argv[] (or run builtin command). Note that anything
+// with a path isn't a builtin, so /bin/sh won't match the builtin sh.
void *xexec(char **argv)
{
+ toy_exec(argv);
execvp(argv[0], argv);
error_exit("No %s", argv[0]);
}
diff --git a/lib/getmountlist.c b/lib/getmountlist.c
index a2b0698d..16b828bf 100644
--- a/lib/getmountlist.c
+++ b/lib/getmountlist.c
@@ -1,4 +1,4 @@
-/* vi: set ts=4 : */
+/* vi: set sw=4 ts=4 : */
#include "toys.h"
diff --git a/lib/lib.h b/lib/lib.h
index fa24c8d5..157db343 100644
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -1,13 +1,20 @@
/* vi: set ts=4 :*/
+// functions.c
void error_exit(char *msg, ...);
void strlcpy(char *dest, char *src, size_t size);
void *xmalloc(size_t size);
+void *xzalloc(size_t size);
+void xrealloc(void **ptr, size_t size);
void *xstrndup(char *s, size_t n);
void *xexec(char **argv);
int xopen(char *path, int flags, int mode);
FILE *xfopen(char *path, char *mode);
+// llist.c
+void llist_free(void *list, void (*freeit)(void *data));
+
+// getmountlist.c
struct mtab_list {
struct mtab_list *next;
char *dir;
diff --git a/main.c b/main.c
index 90d80c78..57fb7f4e 100644
--- a/main.c
+++ b/main.c
@@ -17,6 +17,7 @@ struct toy_list toy_list[] = {
{"cd", cd_main, TOYFLAG_NOFORK},
{"df", df_main, TOYFLAG_USR|TOYFLAG_SBIN},
{"exit", exit_main, TOYFLAG_NOFORK},
+ {"sh", toysh_main, TOYFLAG_BIN},
{"toysh", toysh_main, TOYFLAG_BIN}
};
@@ -51,6 +52,16 @@ struct toy_list *toy_find(char *name)
}
}
+void toy_init(struct toy_list *which, char *argv[])
+{
+ // Free old toys contents here?
+
+ toys.which = which;
+ toys.argv = argv;
+ for (toys.argc = 0; argv[toys.argc]; toys.argc++);
+ toys.exitval = 1;
+}
+
// Run a toy.
void toy_exec(char *argv[])
{
@@ -59,12 +70,7 @@ void toy_exec(char *argv[])
which = toy_find(argv[0]);
if (!which) return;
- // Free old toys contents here?
-
- toys.which = which;
- toys.argv = argv;
- for (toys.argc = 0; argv[toys.argc]; toys.argc++);
- toys.exitval = 1;
+ toy_init(which, argv);
exit(toys.which->toy_main());
}
diff --git a/toys.h b/toys.h
index 4bf29b70..9460d368 100644
--- a/toys.h
+++ b/toys.h
@@ -17,10 +17,10 @@
#include "lib/lib.h"
int cd_main(void);
+int df_main(void);
int exit_main(void);
int toybox_main(void);
int toysh_main(void);
-int df_main(void);
#define TOYFLAG_USR (1<<0)
#define TOYFLAG_BIN (1<<1)
@@ -35,6 +35,8 @@ extern struct toy_list {
int flags;
} toy_list[];
struct toy_list *toy_find(char *name);
+void toy_init(struct toy_list *which, char *argv[]);
+void toy_exec(char *argv[]);
// Global context for this applet.
@@ -60,5 +62,13 @@ union toy_union {
struct df_data df;
} toy;
-// I need a real config system.
-#define CFG_TOYS_FREE 0
+// Pending the addition of menuconfig...
+
+#define CFG_TOYS_FREE 0
+
+#define CFG_TOYSH_TTY 0 // Terminal control
+#define CFG_TOYSH_JOBCTL 0 // &, fg, bg, jobs. ctrl-z with tty.
+#define CFG_TOYSH_FLOWCTL 0 // if, while, for, functions { }
+#define CFG_TOYSH_ENVVARS 0 // Environment variables
+#define CFG_TOYSH_LOCVARS 0 // Local, synthetic, fancy prompts, set, $?
+#define CFG_TOYSH_PIPES 0 // Pipes and redirects: | > < >> << && || & () ;
diff --git a/toys/toysh.c b/toys/toysh.c
index 77db82db..1d792f1f 100644
--- a/toys/toysh.c
+++ b/toys/toysh.c
@@ -14,47 +14,169 @@
#include "toys.h"
-static int handle(char *command)
+// A single executable, its arguments, and other information we know about it.
+#define TOYSH_FLAG_EXIT 1
+#define TOYSH_FLAG_SUSPEND 2
+#define TOYSH_FLAG_PIPE 4
+#define TOYSH_FLAG_AND 8
+#define TOYSH_FLAG_OR 16
+#define TOYSH_FLAG_AMP 32
+#define TOYSH_FLAG_SEMI 64
+#define TOYSH_FLAG_PAREN 128
+
+// What we know about a single process.
+struct command {
+ struct command *next;
+ int flags; // exit, suspend, && ||
+ int pid; // pid (or exit code)
+ int argc;
+ char *argv[0];
+};
+
+// A collection of processes piped into/waiting on each other.
+struct pipeline {
+ struct pipeline *next;
+ int job_id;
+ struct command *cmd;
+ char *cmdline; // Unparsed line for display purposes
+ int cmdlinelen; // How long is cmdline?
+};
+
+// Parse one word from the command line, appending one or more argv[] entries
+// to struct command. Handles environment variable substitution and
+// substrings. Returns pointer to next used byte, or NULL if it
+// hit an ending token.
+static char *parse_word(char *start, struct command **cmd)
{
- int argc = 0, status;
- char *argv[10], *start = command;
- pid_t pid;
- struct toy_list *tl;
+ char *end;
+
+ // Detect end of line (and truncate line at comment)
+ if (CFG_TOYSH_PIPES && strchr("><&|(;", *start)) return 0;
+
+ // Grab next word. (Add dequote and envvar logic here)
+ end = start;
+ while (*end && !isspace(*end)) end++;
+ (*cmd)->argv[(*cmd)->argc++] = xstrndup(start, end-start);
+
+ // Allocate more space if there's no room for NULL terminator.
+
+ if (!((*cmd)->argc & 7))
+ xrealloc((void **)cmd,
+ sizeof(struct command) + ((*cmd)->argc+8)*sizeof(char *));
+ (*cmd)->argv[(*cmd)->argc] = 0;
+ return end;
+}
+
+// Parse a line of text into a pipeline.
+// Returns a pointer to the next line.
+
+static char *parse_pipeline(char *cmdline, struct pipeline *line)
+{
+ struct command **cmd = &(line->cmd);
+ char *start = line->cmdline = cmdline;
+ if (!cmdline) return 0;
+
+ if (CFG_TOYSH_JOBCTL) line->cmdline = cmdline;
+
// Parse command into argv[]
for (;;) {
char *end;
+
+ // Skip leading whitespace and detect end of line.
+ while (isspace(*start)) start++;
+ if (!*start || *start=='#') {
+ if (CFG_TOYSH_JOBCTL) line->cmdlinelen = start-cmdline;
+ return 0;
+ }
+
+ // Allocate next command structure if necessary
+ if (!*cmd) *cmd = xzalloc(sizeof(struct command)+8*sizeof(char *));
- // Skip leading whitespace and detect EOL.
- while(isspace(*start)) start++;
- if (!*start || *start=='#') break;
+ // Parse next argument and add the results to argv[]
+ end = parse_word(start, cmd);
- // Grab next word. (Add dequote and envvar logic here)
- end = start;
- while (*end && !isspace(*end)) end++;
- argv[argc++] = xstrndup(start, end-start);
- start=end;
+ // If we hit the end of this command, how did it end?
+ if (!end) {
+ if (CFG_TOYSH_PIPES && *start) {
+ if (*start==';') {
+ start++;
+ break;
+ }
+ // handle | & < > >> << || &&
+ }
+ break;
+ }
+ start = end;
}
- argv[argc]=0;
- if (!argc) return 0;
+ if (CFG_TOYSH_JOBCTL) line->cmdlinelen = start-cmdline;
- tl = toy_find(argv[0]);
- // This is a bit awkward, next design cycle should clean it up.
- // Should vfork(), move to tryspawn()?
- pid = 0;
- if (tl && (tl->flags & TOYFLAG_NOFORK))
- status = tl->toy_main();
- else {
- pid=fork();
- if(!pid) {
- toy_exec(argv);
- xexec(argv);
- } else waitpid(pid, &status, 0);
+ return start;
+}
+
+// Execute the commands in a pipeline
+static void run_pipeline(struct pipeline *line)
+{
+ struct toy_list *tl;
+ struct command *cmd = line->cmd;
+ if (!cmd || !cmd->argc) return;
+
+ tl = toy_find(cmd->argv[0]);
+ // Is this command a builtin that should run in this process?
+ if (tl && (tl->flags & TOYFLAG_NOFORK)) {
+ struct toy_list *which = toys.which;
+ char **argv = toys.argv;
+
+ toy_init(tl, cmd->argv);
+ cmd->pid = tl->toy_main();
+ toy_init(which, argv);
+ } else {
+ int status;
+
+ cmd->pid = vfork();
+ if (!cmd->pid) xexec(cmd->argv);
+ else waitpid(cmd->pid, &status, 0);
+
+ if (CFG_TOYSH_FLOWCTL || CFG_TOYSH_PIPES) {
+ if (WIFEXITED(status)) cmd->pid = WEXITSTATUS(status);
+ if (WIFSIGNALED(status)) cmd->pid = WTERMSIG(status);
+ }
}
- while(argc) free(argv[--argc]);
- return 0;
+ return;
+}
+
+// Free the contents of a command structure
+static void free_cmd(void *data)
+{
+ struct command *cmd=(struct command *)data;
+
+ while(cmd->argc) free(cmd->argv[--cmd->argc]);
+}
+
+
+// Parse a command line and do what it says to do.
+static void handle(char *command)
+{
+ struct pipeline line;
+ char *start = command;
+
+ // Loop through commands in this line
+
+ for (;;) {
+
+ // Parse a group of connected commands
+
+ memset(&line,0,sizeof(struct pipeline));
+ start = parse_pipeline(start, &line);
+ if (!line.cmd) break;
+
+ // Run those commands
+
+ run_pipeline(&line);
+ llist_free(line.cmd, free_cmd);
+ }
}
int cd_main(void)