VirtualBox

source: kBuild/trunk/src/kash/main.c@ 1203

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

moving globals into shinstance...

  • Property svn:eol-style set to native
File size: 10.9 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#include "shinstance.h"
81
82#define PROFILE 0
83
84/*int rootpid;
85int rootshell;*/
86#ifdef unused_variables
87STATIC union node *curcmd;
88STATIC union node *prevcmd;
89#endif
90
91STATIC void read_profile(struct shinstance *, const char *);
92STATIC char *find_dot_file(struct shinstance *, char *);
93int main(int, char **);
94int shell_main(shinstance *, int, char **);
95#ifdef _MSC_VER
96extern void init_syntax(void);
97#endif
98STATIC int usage(const char *argv0);
99STATIC int version(const char *argv0);
100
101/*
102 * Main routine. We initialize things, parse the arguments, execute
103 * profiles if we're a login shell, and then call cmdloop to execute
104 * commands. The setjmp call sets up the location to jump to when an
105 * exception occurs. When an exception occurs the variable "state"
106 * is used to figure out how far we had gotten.
107 */
108
109int
110main(int argc, char **argv)
111{
112 shinstance *psh;
113
114 /*
115 * Global initializations.
116 */
117 setlocale(LC_ALL, "");
118#ifdef _MSC_VER
119 init_syntax();
120#endif
121
122 /*
123 * Check for --version and --help.
124 */
125 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == '-') {
126 if (!strcmp(argv[1], "--help"))
127 return usage(argv[0]);
128 if (!strcmp(argv[1], "--version"))
129 return version(argv[0]);
130 }
131
132 /*
133 * Create the root shell instance.
134 */
135 psh = sh_create_root_shell(NULL, argc, argv);
136 if (!psh)
137 return 2;
138 shthread_set_shell(psh);
139 return shell_main(psh, argc, argv);
140}
141
142int
143shell_main(shinstance *psh, int argc, char **argv)
144{
145 struct jmploc jmploc;
146 struct stackmark smark;
147 volatile int state;
148 char *shinit;
149
150 state = 0;
151 if (setjmp(jmploc.loc)) {
152 /*
153 * When a shell procedure is executed, we raise the
154 * exception EXSHELLPROC to clean up before executing
155 * the shell procedure.
156 */
157 switch (psh->exception) {
158 case EXSHELLPROC:
159 psh->rootpid = /*getpid()*/ psh->pid;
160 psh->rootshell = 1;
161 psh->minusc = NULL;
162 state = 3;
163 break;
164
165 case EXEXEC:
166 psh->exitstatus = psh->exerrno;
167 break;
168
169 case EXERROR:
170 psh->exitstatus = 2;
171 break;
172
173 default:
174 break;
175 }
176
177 if (psh->exception != EXSHELLPROC) {
178 if (state == 0 || iflag(psh) == 0 || ! psh->rootshell)
179 exitshell(psh, psh->exitstatus);
180 }
181 reset(psh);
182 if (psh->exception == EXINT
183#if ATTY
184 && (! attyset(psh) || equal(termval(psh), "emacs"))
185#endif
186 ) {
187 out2c(psh, '\n');
188 flushout(&psh->errout);
189 }
190 popstackmark(psh, &smark);
191 FORCEINTON; /* enable interrupts */
192 if (state == 1)
193 goto state1;
194 else if (state == 2)
195 goto state2;
196 else if (state == 3)
197 goto state3;
198 else
199 goto state4;
200 }
201 psh->handler = &jmploc;
202 psh->rootpid = /*getpid()*/ psh->pid;
203 psh->rootshell = 1;
204#ifdef DEBUG
205#if DEBUG == 2
206 debug(psh) = 1;
207#endif
208 opentrace(psh);
209 trputs(psh, "Shell args: "); trargs(psh, argv);
210#endif
211
212 init(psh);
213 setstackmark(psh, &smark);
214 procargs(psh, argc, argv);
215 if (argv[0] && argv[0][0] == '-') {
216 state = 1;
217 read_profile(psh, "/etc/profile");
218state1:
219 state = 2;
220 read_profile(psh, ".profile");
221 }
222state2:
223 state = 3;
224 if (getuid() == geteuid() && getgid() == getegid()) {
225 if ((shinit = lookupvar(psh, "ENV")) != NULL && *shinit != '\0') {
226 state = 3;
227 read_profile(psh, shinit);
228 }
229 }
230state3:
231 state = 4;
232 if (sflag(psh) == 0 || psh->minusc) {
233 static int sigs[] = {
234 SIGINT, SIGQUIT, SIGHUP,
235#ifdef SIGTSTP
236 SIGTSTP,
237#endif
238 SIGPIPE
239 };
240#define SIGSSIZE (sizeof(sigs)/sizeof(sigs[0]))
241 int i;
242
243 for (i = 0; i < SIGSSIZE; i++)
244 setsignal(psh, sigs[i], 0);
245 }
246
247 if (psh->minusc)
248 evalstring(psh, psh->minusc, 0);
249
250 if (sflag(psh) || psh->minusc == NULL) {
251state4: /* XXX ??? - why isn't this before the "if" statement */
252 cmdloop(psh, 1);
253 }
254 exitshell(psh, psh->exitstatus);
255 /* NOTREACHED */
256 return 1;
257}
258
259
260/*
261 * Read and execute commands. "Top" is nonzero for the top level command
262 * loop; it turns on prompting if the shell is interactive.
263 */
264
265void
266cmdloop(struct shinstance *psh, int top)
267{
268 union node *n;
269 struct stackmark smark;
270 int inter;
271 int numeof = 0;
272
273 TRACE((psh, "cmdloop(%d) called\n", top));
274 setstackmark(psh, &smark);
275 for (;;) {
276 if (psh->pendingsigs)
277 dotrap(psh);
278 inter = 0;
279 if (iflag(psh) && top) {
280 inter = 1;
281 showjobs(psh, psh->out2, SHOW_CHANGED);
282 chkmail(psh, 0);
283 flushout(&psh->errout);
284 }
285 n = parsecmd(psh, inter);
286 /* showtree(n); DEBUG */
287 if (n == NEOF) {
288 if (!top || numeof >= 50)
289 break;
290 if (!stoppedjobs(psh)) {
291 if (!Iflag(psh))
292 break;
293 out2str(psh, "\nUse \"exit\" to leave shell.\n");
294 }
295 numeof++;
296 } else if (n != NULL && nflag(psh) == 0) {
297 psh->job_warning = (psh->job_warning == 2) ? 1 : 0;
298 numeof = 0;
299 evaltree(psh, n, 0);
300 }
301 popstackmark(psh, &smark);
302 setstackmark(psh, &smark);
303 if (psh->evalskip == SKIPFILE) {
304 psh->evalskip = 0;
305 break;
306 }
307 }
308 popstackmark(psh, &smark);
309}
310
311
312
313/*
314 * Read /etc/profile or .profile. Return on error.
315 */
316
317STATIC void
318read_profile(struct shinstance *psh, const char *name)
319{
320 int fd;
321 int xflag_set = 0;
322 int vflag_set = 0;
323
324 INTOFF;
325 if ((fd = shfile_open(&psh->fdtab, name, O_RDONLY)) >= 0)
326 setinputfd(psh, fd, 1);
327 INTON;
328 if (fd < 0)
329 return;
330 /* -q turns off -x and -v just when executing init files */
331 if (qflag(psh)) {
332 if (xflag(psh))
333 xflag(psh) = 0, xflag_set = 1;
334 if (vflag(psh))
335 vflag(psh) = 0, vflag_set = 1;
336 }
337 cmdloop(psh, 0);
338 if (qflag(psh)) {
339 if (xflag_set)
340 xflag(psh) = 1;
341 if (vflag_set)
342 vflag(psh) = 1;
343 }
344 popfile(psh);
345}
346
347
348
349/*
350 * Read a file containing shell functions.
351 */
352
353void
354readcmdfile(struct shinstance *psh, char *name)
355{
356 int fd;
357
358 INTOFF;
359 if ((fd = shfile_open(&psh->fdtab, name, O_RDONLY)) >= 0)
360 setinputfd(psh, fd, 1);
361 else
362 error(psh, "Can't open %s", name);
363 INTON;
364 cmdloop(psh, 0);
365 popfile(psh);
366}
367
368
369
370/*
371 * Take commands from a file. To be compatible we should do a path
372 * search for the file, which is necessary to find sub-commands.
373 */
374
375
376STATIC char *
377find_dot_file(struct shinstance *psh, char *basename)
378{
379 char *fullname;
380 const char *path = pathval(psh);
381 struct stat statb;
382
383 /* don't try this for absolute or relative paths */
384 if (strchr(basename, '/'))
385 return basename;
386
387 while ((fullname = padvance(psh, &path, basename)) != NULL) {
388 if ((shfile_stat(&psh->fdtab, fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
389 /*
390 * Don't bother freeing here, since it will
391 * be freed by the caller.
392 */
393 return fullname;
394 }
395 stunalloc(psh, fullname);
396 }
397
398 /* not found in the PATH */
399 error(psh, "%s: not found", basename);
400 /* NOTREACHED */
401 return NULL;
402}
403
404int
405dotcmd(struct shinstance *psh, int argc, char **argv)
406{
407 psh->exitstatus = 0;
408
409 if (argc >= 2) { /* That's what SVR2 does */
410 char *fullname;
411 struct stackmark smark;
412
413 setstackmark(psh, &smark);
414 fullname = find_dot_file(psh, argv[1]);
415 setinputfile(psh, fullname, 1);
416 psh->commandname = fullname;
417 cmdloop(psh, 0);
418 popfile(psh);
419 popstackmark(psh, &smark);
420 }
421 return psh->exitstatus;
422}
423
424
425int
426exitcmd(struct shinstance *psh, int argc, char **argv)
427{
428 if (stoppedjobs(psh))
429 return 0;
430 if (argc > 1)
431 psh->exitstatus = number(psh, argv[1]);
432 exitshell(psh, psh->exitstatus);
433 /* NOTREACHED */
434 return 1;
435}
436
437
438STATIC const char *
439strip_argv0(const char *argv0, size_t *lenp)
440{
441 const char *tmp;
442
443 /* skip the path */
444 for (tmp = strpbrk(argv0, "\\/:"); tmp; tmp = strpbrk(argv0, "\\/:"))
445 argv0 = tmp + 1;
446
447 /* find the end, ignoring extenions */
448 tmp = strrchr(argv0, '.');
449 if (!tmp)
450 tmp = strchr(argv0, '\0');
451 *lenp = tmp - argv0;
452 return argv0;
453}
454
455STATIC int
456usage(const char *argv0)
457{
458 size_t len;
459 strip_argv0(argv0, &len);
460
461 fprintf(stdout,
462 "usage: %.*s [-aCefnuvxIimqVEb] [+aCefnuvxIimqVEb] [-o option_name]\n"
463 " [+o option_name] [command_file [argument ...]]\n"
464 " or: %.*s -c [-aCefnuvxIimqVEb] [+aCefnuvxIimqVEb] [-o option_name]\n"
465 " [+o option_name] command_string [command_name [argument ...]]\n"
466 " or: %.*s -s [-aCefnuvxIimqVEb] [+aCefnuvxIimqVEb] [-o option_name]\n"
467 " [+o option_name] [argument ...]\n"
468 " or: %.*s --help\n"
469 " or: %.*s --version\n",
470 len, argv0, len, argv0, len, argv0, len, argv0, len, argv0);
471 return 0;
472}
473
474STATIC int
475version(const char *argv0)
476{
477 size_t len;
478 strip_argv0(argv0, &len);
479
480 fprintf(stdout,
481 "%.*s - kBuild version %d.%d.%d\n",
482 len, argv0,
483 KBUILD_VERSION_MAJOR, KBUILD_VERSION_MINOR, KBUILD_VERSION_PATCH);
484 return 0;
485}
486
487
488/*
489 * Local Variables:
490 * c-file-style: bsd
491 * End:
492 */
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