VirtualBox

source: kBuild/trunk/src/ash-messup/main.c@ 880

Last change on this file since 880 was 880, checked in by bird, 18 years ago

hacking...

  • Property svn:eol-style set to native
File size: 9.1 KB
Line 
1/* $NetBSD: main.c,v 1.48 2003/09/14 12:09:29 jmmv Exp $ */
2
3/*-
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Kenneth Almquist.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#ifdef HAVE_SYS_CDEFS_H
36#include <sys/cdefs.h>
37#endif
38#ifndef lint
39__COPYRIGHT("@(#) Copyright (c) 1991, 1993\n\
40 The Regents of the University of California. All rights reserved.\n");
41#endif /* not lint */
42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)main.c 8.7 (Berkeley) 7/19/95";
46#else
47__RCSID("$NetBSD: main.c,v 1.48 2003/09/14 12:09:29 jmmv Exp $");
48#endif
49#endif /* not lint */
50
51#include <errno.h>
52#include <stdio.h>
53#include <signal.h>
54#include <sys/stat.h>
55#include <unistd.h>
56#include <locale.h>
57#include <fcntl.h>
58
59
60#include "shell.h"
61#include "main.h"
62#include "mail.h"
63#include "options.h"
64#include "output.h"
65#include "parser.h"
66#include "nodes.h"
67#include "expand.h"
68#include "eval.h"
69#include "jobs.h"
70#include "input.h"
71#include "trap.h"
72#include "var.h"
73#include "show.h"
74#include "memalloc.h"
75#include "error.h"
76#include "init.h"
77#include "mystring.h"
78#include "exec.h"
79#include "cd.h"
80
81#define PROFILE 0
82
83/*int rootpid;
84int rootshell;*/
85STATIC union node *curcmd;
86STATIC union node *prevcmd;
87
88STATIC void read_profile(const char *);
89STATIC char *find_dot_file(char *);
90int main(int, char **);
91int shell_main(shinstance *, int, char **);
92#ifdef _MSC_VER
93extern void init_syntax(void);
94#endif
95
96/*
97 * Main routine. We initialize things, parse the arguments, execute
98 * profiles if we're a login shell, and then call cmdloop to execute
99 * commands. The setjmp call sets up the location to jump to when an
100 * exception occurs. When an exception occurs the variable "state"
101 * is used to figure out how far we had gotten.
102 */
103
104int
105main(int argc, char **argv)
106{
107 shinstance *psh;
108
109 /*
110 * Global initializations.
111 */
112 setlocale(LC_ALL, "");
113#ifdef _MSC_VER
114 init_syntax();
115#endif
116 /*
117 * Create the root shell instance.
118 */
119 psh = create_root_shell(NULL, argc, argv);
120 if (!psh)
121 return 2;
122 shthread_set_shell(psh);
123 return shell_main(psh, argc);
124}
125
126int
127shell_main(shinstance *psh, int argc, char **argv)
128{
129 struct jmploc jmploc;
130 struct stackmark smark;
131 volatile int state;
132 char *shinit;
133
134 state = 0;
135 if (setjmp(jmploc.loc)) {
136 /*
137 * When a shell procedure is executed, we raise the
138 * exception EXSHELLPROC to clean up before executing
139 * the shell procedure.
140 */
141 switch (psh->exception) {
142 case EXSHELLPROC:
143 psh->rootpid = /*getpid()*/ psh->pid;
144 psh->rootshell = 1;
145 psh->minusc = NULL;
146 psh->state = 3;
147 break;
148
149 case EXEXEC:
150 psh->exitstatus = psh->exerrno;
151 break;
152
153 case EXERROR:
154 psh->exitstatus = 2;
155 break;
156
157 default:
158 break;
159 }
160
161 if (psh->exception != EXSHELLPROC) {
162 if (state == 0 || iflag == 0 || ! psh->rootshell)
163 exitshell(psh, exitstatus);
164 }
165 reset(psh);
166 if (psh->exception == EXINT
167#if ATTY
168 && (! attyset(psh) || equal(termval(psh), "emacs"))
169#endif
170 ) {
171 out2c(psh, '\n');
172 flushout(&errout);
173 }
174 popstackmark(psh, &smark);
175 FORCEINTON; /* enable interrupts */
176 if (state == 1)
177 goto state1;
178 else if (state == 2)
179 goto state2;
180 else if (state == 3)
181 goto state3;
182 else
183 goto state4;
184 }
185 psh->handler = &jmploc;
186 psh->rootpid = /*getpid()*/ psh->pid;
187 psh->rootshell = 1;
188#ifdef DEBUG
189#if DEBUG == 2
190 debug = 1;
191#endif
192 opentrace(psh);
193 trputs("Shell args: "); trargs(argv);
194#endif
195
196 init(psh);
197 setstackmark(psh, &smark);
198 procargs(psh, argc, argv);
199 if (argv[0] && argv[0][0] == '-') {
200 state = 1;
201 read_profile(psh, "/etc/profile");
202state1:
203 state = 2;
204 read_profile(psh, ".profile");
205 }
206state2:
207 state = 3;
208 if (getuid() == geteuid() && getgid() == getegid()) {
209 if ((shinit = lookupvar(psh, "ENV")) != NULL && *shinit != '\0') {
210 state = 3;
211 read_profile(psh, shinit);
212 }
213 }
214state3:
215 state = 4;
216 if (psh->sflag == 0 || psh->minusc) {
217 static int sigs[] = {
218 SIGINT, SIGQUIT, SIGHUP,
219#ifdef SIGTSTP
220 SIGTSTP,
221#endif
222 SIGPIPE
223 };
224#define SIGSSIZE (sizeof(sigs)/sizeof(sigs[0]))
225 int i;
226
227 for (i = 0; i < SIGSSIZE; i++)
228 setsignal(psh, sigs[i], 0);
229 }
230
231 if (psh->minusc)
232 evalstring(psh, psh->minusc, 0);
233
234 if (psh->sflag || minusc == NULL) {
235state4: /* XXX ??? - why isn't this before the "if" statement */
236 cmdloop(psh, 1);
237 }
238 exitshell(psh, psh->exitstatus);
239 /* NOTREACHED */
240}
241
242
243/*
244 * Read and execute commands. "Top" is nonzero for the top level command
245 * loop; it turns on prompting if the shell is interactive.
246 */
247
248void
249cmdloop(struct shinstance *psh, int top)
250{
251 union node *n;
252 struct stackmark smark;
253 int inter;
254 int numeof = 0;
255
256 TRACE(("cmdloop(%d) called\n", top));
257 setstackmark(psh, &smark);
258 for (;;) {
259 if (psh->pendingsigs)
260 dotrap(psh);
261 inter = 0;
262 if (psh->iflag && top) {
263 inter = 1;
264 showjobs(psh, psh->out2, SHOW_CHANGED);
265 chkmail(psh, 0);
266 flushout(&psh->errout);
267 }
268 n = parsecmd(psh, inter);
269 /* showtree(n); DEBUG */
270 if (n == NEOF) {
271 if (!top || numeof >= 50)
272 break;
273 if (!stoppedjobs(psh)) {
274 if (!psh->Iflag)
275 break;
276 out2str(psh, "\nUse \"exit\" to leave shell.\n");
277 }
278 numeof++;
279 } else if (n != NULL && psh->nflag == 0) {
280 psh->job_warning = (psh->job_warning == 2) ? 1 : 0;
281 numeof = 0;
282 evaltree(psh, n, 0);
283 }
284 popstackmark(psh, &smark);
285 setstackmark(psh, &smark);
286 if (psh->evalskip == SKIPFILE) {
287 psh->evalskip = 0;
288 break;
289 }
290 }
291 popstackmark(psh, &smark);
292}
293
294
295
296/*
297 * Read /etc/profile or .profile. Return on error.
298 */
299
300STATIC void
301read_profile(struct shinstance *psh, const char *name)
302{
303 int fd;
304 int xflag_set = 0;
305 int vflag_set = 0;
306
307 INTOFF;
308 if ((fd = shfile_open(psh, name, O_RDONLY)) >= 0)
309 setinputfd(psh, fd, 1);
310 INTON;
311 if (fd < 0)
312 return;
313 /* -q turns off -x and -v just when executing init files */
314 if (psh->qflag) {
315 if (psh->xflag)
316 psh->xflag = 0, xflag_set = 1;
317 if (psh->vflag)
318 psh->vflag = 0, vflag_set = 1;
319 }
320 cmdloop(psh, 0);
321 if (psh->qflag) {
322 if (xflag_set)
323 psh->xflag = 1;
324 if (vflag_set)
325 psh->vflag = 1;
326 }
327 popfile(psh);
328}
329
330
331
332/*
333 * Read a file containing shell functions.
334 */
335
336void
337readcmdfile(struct shinstance *psh, char *name)
338{
339 int fd;
340
341 INTOFF;
342 if ((fd = open(name, O_RDONLY)) >= 0)
343 setinputfd(psh, fd, 1);
344 else
345 error("Can't open %s", name);
346 INTON;
347 cmdloop(psh, 0);
348 popfile(psh);
349}
350
351
352
353/*
354 * Take commands from a file. To be compatible we should do a path
355 * search for the file, which is necessary to find sub-commands.
356 */
357
358
359STATIC char *
360find_dot_file(struct shinstance *psh, char *basename)
361{
362 char *fullname;
363 const char *path = pathval(psh);
364 struct stat statb;
365
366 /* don't try this for absolute or relative paths */
367 if (strchr(basename, '/'))
368 return basename;
369
370 while ((fullname = padvance(psh, &path, basename)) != NULL) {
371 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
372 /*
373 * Don't bother freeing here, since it will
374 * be freed by the caller.
375 */
376 return fullname;
377 }
378 stunalloc(psh, fullname);
379 }
380
381 /* not found in the PATH */
382 error("%s: not found", basename);
383 /* NOTREACHED */
384}
385
386int
387dotcmd(struct shinstance *psh, int argc, char **argv)
388{
389 psh->exitstatus = 0;
390
391 if (argc >= 2) { /* That's what SVR2 does */
392 char *fullname;
393 struct stackmark smark;
394
395 setstackmark(psh, &smark);
396 fullname = find_dot_file(psh, argv[1]);
397 setinputfile(psh, fullname, 1);
398 psh->commandname = fullname;
399 cmdloop(psh, 0);
400 popfile(psh);
401 popstackmark(psh, &smark);
402 }
403 return psh->exitstatus;
404}
405
406
407int
408exitcmd(struct shinstance *psh, int argc, char **argv)
409{
410 if (stoppedjobs(psh))
411 return 0;
412 if (argc > 1)
413 psh->exitstatus = number(argv[1]);
414 exitshell(psh, exitstatus);
415 /* NOTREACHED */
416}
417
418/*
419 * Local Variables:
420 * c-file-style: bsd
421 * End:
422 */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette