-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.c
225 lines (194 loc) · 5.48 KB
/
main.c
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/* main.c -- initialization for es ($Revision: 1.3 $) */
#include "es.h"
#if GCVERBOSE
Boolean gcverbose = FALSE; /* -G */
#endif
#if GCINFO
Boolean gcinfo = FALSE; /* -I */
#endif
/* #if 0 && !HPUX && !defined(linux) && !defined(sgi) */
/* extern int getopt (int argc, char **argv, const char *optstring); */
/* #endif */
/* extern int isatty(int fd); */
extern char **environ;
/* checkfd -- open /dev/null on an fd if it is closed */
static void checkfd(int fd, OpenKind r) {
int new;
new = dup(fd);
if (new != -1)
close(new);
else if (errno == EBADF && (new = eopen("/dev/null", r)) != -1)
mvfd(new, fd);
}
/* initpath -- set $path based on the configuration default */
static void initpath(void) {
int i;
static const char * const path[] = { INITIAL_PATH };
Ref(List *, list, NULL);
for (i = arraysize(path); i-- > 0;) {
Term *t = mkstr((char *) path[i]);
list = mklist(t, list);
}
vardef("path", NULL, list);
RefEnd(list);
}
/* initpid -- set $pid for this shell */
static void initpid(void) {
vardef("pid", NULL, mklist(mkstr(str("%d", getpid())), NULL));
}
/* runesrc -- run the user's profile, if it exists */
static void runesrc(void) {
char *esrc = str("%L/.esrc", varlookup("home", NULL), "\001");
int fd = eopen(esrc, oOpen);
if (fd != -1) {
ExceptionHandler
runfd(fd, esrc, 0);
CatchException (e)
if (termeq(e->term, "exit"))
exit(exitstatus(e->next));
else if (termeq(e->term, "error"))
eprint("%L\n",
e->next == NULL ? NULL : e->next->next,
" ");
else if (!issilentsignal(e))
eprint("uncaught exception: %L\n", e, " ");
return;
EndExceptionHandler
}
}
/* usage -- print usage message and die */
static Noreturn usage(void) {
eprint(
"usage: es [-c command] [-silevxnpo] [file [args ...]]\n"
" -c cmd execute argument\n"
" -s read commands from standard input; stop option parsing\n"
" -i interactive shell\n"
" -l login shell\n"
" -e exit if any command exits with false status\n"
" -v print input to standard error\n"
" -x print commands to standard error before executing\n"
" -n just parse; don't execute\n"
" -p don't load functions from the environment\n"
" -o don't open stdin, stdout, and stderr if they were closed\n"
" -d don't ignore SIGQUIT or SIGTERM\n"
#if GCINFO
" -I print garbage collector information\n"
#endif
#if GCVERBOSE
" -G print verbose garbage collector information\n"
#endif
#if LISPTREES
" -L print parser results in LISP format\n"
#endif
);
exit(1);
}
/* main -- initialize, parse command arguments, and start running */
int main(int argc, char **argv0) {
int c;
char **volatile argv = argv0;
volatile int runflags = 0; /* -[einvxL] */
volatile Boolean protected = FALSE; /* -p */
volatile Boolean allowquit = FALSE; /* -d */
volatile Boolean cmd_stdin = FALSE; /* -s */
volatile Boolean loginshell = FALSE; /* -l or $0[0] == '-' */
Boolean keepclosed = FALSE; /* -o */
Ref(const char *volatile, cmd, NULL); /* -c */
initgc();
initconv();
if (argc == 0) {
argc = 1;
argv = ealloc(2 * sizeof (char *));
argv[0] = "es";
argv[1] = NULL;
}
if (*argv[0] == '-')
loginshell = TRUE;
Ref(List *, args, listify(argc, argv));
esoptbegin(args->next, NULL, NULL, FALSE);
while ((c = esopt("eilxvnpodsc:?GIL")) != EOF)
switch (c) {
case 'c': cmd = getstr(esoptarg()); break;
case 'e': runflags |= eval_exitonfalse; break;
case 'i': runflags |= run_interactive; break;
case 'n': runflags |= run_noexec; break;
case 'v': runflags |= run_echoinput; break;
case 'x': runflags |= run_printcmds; break;
#if LISPTREES
case 'L': runflags |= run_lisptrees; break;
#endif
case 'l': loginshell = TRUE; break;
case 'p': protected = TRUE; break;
case 'o': keepclosed = TRUE; break;
case 'd': allowquit = TRUE; break;
case 's': cmd_stdin = TRUE; goto getopt_done;
#if GCVERBOSE
case 'G': gcverbose = TRUE; break;
#endif
#if GCINFO
case 'I': gcinfo = TRUE; break;
#endif
default:
usage();
}
getopt_done:
Ref(List *, argp, esoptend());
if (cmd_stdin && cmd != NULL) {
eprint("es: -s and -c are incompatible\n");
exit(1);
}
if (!keepclosed) {
checkfd(0, oOpen);
checkfd(1, oCreate);
checkfd(2, oCreate);
}
if (
cmd == NULL
&& (argp == NULL || cmd_stdin)
&& (runflags & run_interactive) == 0
&& isatty(0)
)
runflags |= run_interactive;
ExceptionHandler
roothandler = &_localhandler; /* unhygeinic */
initinput();
initprims();
initvars();
runinitial();
initpath();
initpid();
initsignals(runflags & run_interactive, allowquit);
hidevariables();
initenv(environ, protected);
if (loginshell)
runesrc();
if (cmd == NULL && !cmd_stdin && argp != NULL) {
int fd;
char *file = getstr(argp->term);
argp = argp->next;
if ((fd = eopen(file, oOpen)) == -1) {
eprint("%s: %s\n", file, esstrerror(errno));
return 1;
}
vardef("*", NULL, argp);
vardef("0", NULL, mklist(mkstr(file), NULL));
return exitstatus(runfd(fd, file, runflags));
}
vardef("*", NULL, argp);
vardef("0", NULL, mklist(mkstr(argv[0]), NULL));
if (cmd != NULL)
return exitstatus(runstring(cmd, NULL, runflags));
return exitstatus(runfd(0, "stdin", runflags));
CatchException (e)
if (termeq(e->term, "exit"))
return exitstatus(e->next);
else if (termeq(e->term, "error"))
eprint("%L\n",
e->next == NULL ? NULL : e->next->next,
" ");
else if (!issilentsignal(e))
eprint("uncaught exception: %L\n", e, " ");
return 1;
EndExceptionHandler
RefEnd3(argp, args, cmd);
}