summaryrefslogtreecommitdiff
path: root/src/cmd/shell/shell.c
blob: 9afdb5cd83655fc686a5fb2e14d0eea537f7f2fb (plain)
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
#include "builtins.h"
#include "shell.h"
#include <camellia.h>
#include <camellia/compat.h>
#include <camellia/flags.h>
#include <camellia/fs/misc.h>
#include <camellia/intr.h>
#include <camellia/syscalls.h>
#include <err.h>
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>
#include <x86intrin.h>

int main();

static void execp(char **argv) {
	if (!argv || !*argv) return;
	if (strncmp(argv[0], "/", 1) == 0 ||
		strncmp(argv[0], "./", 2) == 0 ||
		strncmp(argv[0], "../", 3) == 0)
	{
		execv(argv[0], argv);
	} else {
		size_t cmdlen = strlen(argv[0]);
		char *s = malloc(cmdlen + 6);
		if (!s) err(1, "malloc");
		memcpy(s, "/bin/", 5);
		memcpy(s + 5, argv[0], cmdlen + 1);
		execv(s, argv);
		free(s);
	}
}

void run_args(int argc, char **argv, struct redir *redir) {
	if (!*argv) return;

	/* "special" commands that can't be handled in a subprocess */
	if (!strcmp(argv[0], "mount")) {
		if (argc < 3) {
			fprintf(stderr, "mount: not enough arguments\n");
			return;
		}
		MOUNT_AT("/") {
			fs_dirinject(argv[1]);
		}
		MOUNT_AT(argv[1]) {
			run_args(argc - 2, argv + 2, redir);
			exit(1);
		}
		return;
	} else if (!strcmp(argv[0], "shadow")) {
		if (argc < 2) {
			fprintf(stderr, "shadow: missing path\n");
		} else {
			_sys_mount(-1, argv[1], strlen(argv[1]));
		}
	} else if (!strcmp(argv[0], "procmnt")) {
		if (argc < 2) {
			fprintf(stderr, "procmnt: missing mountpoint\n");
			return;
		}
		camellia_procfs(argv[1]);
		/*
		if (!(3 <= argc && !strcmp(argv[2], "raw"))) {
			if (!mount_at("/")) {
				fs_dirinject(argv[1]);
				exit(1);
			}
		}
		*/
		return;
	} else if (!strcmp(argv[0], "cd")) {
		if (chdir(argc > 1 ? argv[1] : "/") < 0)
			perror("cd");
		return;
	} else if (!strcmp(argv[0], "time")) {
		uint64_t time = __rdtsc();
		uint64_t div = 3000;
		run_args(argc - 1, argv + 1, redir);
		time = __rdtsc() - time;
		printf("%lu ns (assuming 3GHz)\n", time / div);
		return;
	} else if (!strcmp(argv[0], "exit")) {
		exit(0);
	} else if (!strcmp(argv[0], "getpid")) {
		printf("my\t%d\nparent\t%d\n", getpid(), getppid());
		return;
	}

	int pid = fork();
	if (pid < 0) {
		warn("fork");
		return;
	} else if (pid == 0) {
		if (redir && redir->stdout) {
			FILE *f = fopen(redir->stdout, redir->append ? "a" : "w");
			if (!f) {
				err(1, "couldn't open %s for redirection", redir->stdout);
			}
			// TODO fileno error checking
			if (_sys_dup(fileno(f), 1, 0) < 0) {
				errx(1, "dup() failed when redirecting");
			}
		}

		for (struct builtin *iter = builtins; iter->name; iter++) {
			if (!strcmp(argv[0], iter->name)) {
				setprogname(argv[0]);
				iter->fn(argc, argv);
				exit(0);
			}
		}

		execp(argv);
		if (errno == EINVAL) {
			errx(1, "%s isn't a valid executable", argv[0]);
		} else {
			errx(1, "unknown command: %s", argv[0]);
		}
	} else {
		waitpid(pid, NULL, 0);
	}
}

static void run(char *cmd) {
#define ARGV_MAX 16
	char *argv[ARGV_MAX];
	struct redir redir;
	int argc = parse(cmd, argv, ARGV_MAX, &redir);
	if (argc < 0) {
		warn("parsing error");
	} else {
		run_args(argc, argv, &redir);
	}
}

int main(int argc, char **argv) {
	static char buf[256];
	FILE *f = stdin;
	intr_set(NULL);

	if (argc > 1) {
		f = fopen(argv[1], "r");
		if (!f) {
			err(1, "couldn't open %s", argv[1]);
			return 1;
		}
	}

	for (;;) {
		if (f == stdin) {
			printf("%s $ ", getcwd(buf, sizeof buf));
		}
		if (!fgets(buf, 256, f)) {
			return 0;
		}
		run(buf);
	}
}