cleaning up after bozos
[unix-history] / usr / src / bin / csh / csh.c
CommitLineData
b79f4fa9
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
094e80ed 3 * All rights reserved. The Berkeley Software License Agreement
b79f4fa9
DF
4 * specifies the terms and conditions for redistribution.
5 */
6
35371dec 7#ifndef lint
094e80ed
EW
8static char *sccsid = "@(#)csh.c 5.2 (Berkeley) %G%";
9#endif
04d3b78c
BJ
10
11#include "sh.h"
12#include <sys/ioctl.h>
13/*
14 * C Shell
15 *
16 * Bill Joy, UC Berkeley, California, USA
17 * October 1978, May 1980
18 *
19 * Jim Kulp, IIASA, Laxenburg, Austria
20 * April 1980
21 */
22
23char *pathlist[] = { ".", "/usr/ucb", "/bin", "/usr/bin", 0 };
6ea8dfee 24char *dumphist[] = { "history", "-h", 0, 0 };
d7929fa7 25char *loadhist[] = { "source", "-h", "~/.history", 0 };
04d3b78c
BJ
26char HIST = '!';
27char HISTSUB = '^';
28bool nofile;
29bool reenter;
30bool nverbose;
31bool nexececho;
32bool quitit;
33bool fast;
f0bb61e3 34bool batch;
04d3b78c 35bool prompt = 1;
63af20f7 36bool enterhist = 0;
04d3b78c
BJ
37
38main(c, av)
39 int c;
40 char **av;
41{
42 register char **v, *cp;
43 register int f;
d33af40e 44 struct sigvec osv;
04d3b78c
BJ
45
46 settimes(); /* Immed. estab. timing base */
47 v = av;
48 if (eq(v[0], "a.out")) /* A.out's are quittable */
49 quitit = 1;
50 uid = getuid();
d33af40e 51 loginsh = **v == '-' && c == 1;
04d3b78c 52 if (loginsh)
35371dec 53 (void) time(&chktim);
04d3b78c
BJ
54
55 /*
56 * Move the descriptors to safe places.
57 * The variable didfds is 0 while we have only FSH* to work with.
58 * When didfds is true, we have 0,1,2 and prefer to use these.
59 */
60 initdesc();
61
62 /*
63 * Initialize the shell variables.
64 * ARGV and PROMPT are initialized later.
65 * STATUS is also munged in several places.
66 * CHILD is munged when forking/waiting
67 */
68
69 set("status", "0");
70 dinit(cp = getenv("HOME")); /* dinit thinks that HOME == cwd in a
71 * login shell */
72 if (cp == NOSTR)
73 fast++; /* No home -> can't read scripts */
74 else
75 set("home", savestr(cp));
76 /*
77 * Grab other useful things from the environment.
78 * Should we grab everything??
79 */
80 if ((cp = getenv("USER")) != NOSTR)
81 set("user", savestr(cp));
82 if ((cp = getenv("TERM")) != NOSTR)
83 set("term", savestr(cp));
84 /*
85 * Re-initialize path if set in environment
86 */
87 if ((cp = getenv("PATH")) == NOSTR)
88 set1("path", saveblk(pathlist), &shvhed);
35371dec
EW
89 else
90 importpath(cp);
ccf0e0f5 91 set("shell", SHELLPATH);
04d3b78c
BJ
92
93 doldol = putn(getpid()); /* For $$ */
94 shtemp = strspl("/tmp/sh", doldol); /* For << */
95
96 /*
97 * Record the interrupt states from the parent process.
98 * If the parent is non-interruptible our hand must be forced
99 * or we (and our children) won't be either.
100 * Our children inherit termination from our parent.
101 * We catch it only if we are the login shell.
102 */
35371dec
EW
103 /* parents interruptibility */
104 (void) sigvec(SIGINT, (struct sigvec *)0, &osv);
d33af40e 105 parintr = osv.sv_handler;
35371dec
EW
106 /* parents terminability */
107 (void) sigvec(SIGTERM, (struct sigvec *)0, &osv);
d33af40e 108 parterm = osv.sv_handler;
f66d6be5 109 if (loginsh) {
35371dec
EW
110 (void) signal(SIGHUP, phup); /* exit processing on HUP */
111 (void) signal(SIGXCPU, phup); /* ...and on XCPU */
112 (void) signal(SIGXFSZ, phup); /* ...and on XFSZ */
f66d6be5 113 }
04d3b78c
BJ
114
115 /*
116 * Process the arguments.
117 *
118 * Note that processing of -v/-x is actually delayed till after
119 * script processing.
04d3b78c
BJ
120 */
121 c--, v++;
f0bb61e3 122 while (c > 0 && (cp = v[0])[0] == '-' && *++cp != '\0' && !batch) {
04d3b78c
BJ
123 do switch (*cp++) {
124
f0bb61e3
RC
125 case 'b': /* -b Next arg is input file */
126 batch++;
127 break;
128
04d3b78c
BJ
129 case 'c': /* -c Command input from arg */
130 if (c == 1)
131 exit(0);
132 c--, v++;
133 arginp = v[0];
134 prompt = 0;
135 nofile++;
136 break;
137
138 case 'e': /* -e Exit on any error */
139 exiterr++;
140 break;
141
142 case 'f': /* -f Fast start */
143 fast++;
144 break;
145
146 case 'i': /* -i Interactive, even if !intty */
147 intact++;
148 nofile++;
149 break;
150
151 case 'n': /* -n Don't execute */
152 noexec++;
153 break;
154
155 case 'q': /* -q (Undoc'd) ... die on quit */
156 quitit = 1;
157 break;
158
159 case 's': /* -s Read from std input */
160 nofile++;
161 break;
162
163 case 't': /* -t Read one line from input */
164 onelflg = 2;
165 prompt = 0;
166 nofile++;
167 break;
168
169 case 'v': /* -v Echo hist expanded input */
170 nverbose = 1; /* ... later */
171 break;
172
173 case 'x': /* -x Echo just before execution */
174 nexececho = 1; /* ... later */
175 break;
176
177 case 'V': /* -V Echo hist expanded input */
178 setNS("verbose"); /* NOW! */
179 break;
180
181 case 'X': /* -X Echo just before execution */
182 setNS("echo"); /* NOW! */
183 break;
184
185 } while (*cp);
186 v++, c--;
187 }
188
189 if (quitit) /* With all due haste, for debugging */
35371dec 190 (void) signal(SIGQUIT, SIG_DFL);
04d3b78c
BJ
191
192 /*
f0bb61e3 193 * Unless prevented by -c, -i, -s, or -t, if there
04d3b78c
BJ
194 * are remaining arguments the first of them is the name
195 * of a shell file from which to read commands.
196 */
197 if (nofile == 0 && c > 0) {
198 nofile = open(v[0], 0);
199 if (nofile < 0) {
200 child++; /* So this ... */
201 Perror(v[0]); /* ... doesn't return */
202 }
203 file = v[0];
204 SHIN = dmove(nofile, FSHIN); /* Replace FSHIN */
35371dec 205 (void) ioctl(SHIN, FIOCLEX, (char *)0);
04d3b78c
BJ
206 prompt = 0;
207 c--, v++;
208 }
dee2e6bb 209 if (!batch && (uid != geteuid() || getgid() != getegid())) {
f0bb61e3
RC
210 errno = EACCES;
211 child++; /* So this ... */
212 Perror("csh"); /* ... doesn't return */
213 }
04d3b78c
BJ
214 /*
215 * Consider input a tty if it really is or we are interactive.
216 */
217 intty = intact || isatty(SHIN);
218 /*
219 * Decide whether we should play with signals or not.
220 * If we are explicitly told (via -i, or -) or we are a login
221 * shell (arg0 starts with -) or the input and output are both
222 * the ttys("csh", or "csh</dev/ttyx>/dev/ttyx")
223 * Note that in only the login shell is it likely that parent
224 * may have set signals to be ignored
225 */
3b1a0a1e 226 if (loginsh || intact || intty && isatty(SHOUT))
04d3b78c
BJ
227 setintr = 1;
228#ifdef TELL
229 settell();
230#endif
231 /*
232 * Save the remaining arguments in argv.
233 */
234 setq("argv", v, &shvhed);
235
236 /*
237 * Set up the prompt.
238 */
239 if (prompt)
240 set("prompt", uid == 0 ? "# " : "% ");
241
242 /*
243 * If we are an interactive shell, then start fiddling
244 * with the signals; this is a tricky game.
245 */
246 shpgrp = getpgrp(0);
247 opgrp = tpgrp = -1;
248 oldisc = -1;
249 if (setintr) {
250 **av = '-';
251 if (!quitit) /* Wary! */
35371dec
EW
252 (void) signal(SIGQUIT, SIG_IGN);
253 (void) signal(SIGINT, pintr);
254 (void) sigblock(sigmask(SIGINT));
255 (void) signal(SIGTERM, SIG_IGN);
04d3b78c 256 if (quitit == 0 && arginp == 0) {
35371dec
EW
257 (void) signal(SIGTSTP, SIG_IGN);
258 (void) signal(SIGTTIN, SIG_IGN);
259 (void) signal(SIGTTOU, SIG_IGN);
04d3b78c
BJ
260 /*
261 * Wait till in foreground, in case someone
262 * stupidly runs
263 * csh &
264 * dont want to try to grab away the tty.
265 */
266 if (isatty(FSHDIAG))
267 f = FSHDIAG;
268 else if (isatty(FSHOUT))
269 f = FSHOUT;
270 else if (isatty(OLDSTD))
271 f = OLDSTD;
272 else
273 f = -1;
274retry:
35371dec
EW
275 if (ioctl(f, TIOCGPGRP, (char *)&tpgrp) == 0 &&
276 tpgrp != -1) {
04d3b78c
BJ
277 int ldisc;
278 if (tpgrp != shpgrp) {
d33af40e 279 int (*old)() = signal(SIGTTIN, SIG_DFL);
35371dec
EW
280 (void) kill(0, SIGTTIN);
281 (void) signal(SIGTTIN, old);
04d3b78c
BJ
282 goto retry;
283 }
35371dec 284 if (ioctl(f, TIOCGETD, (char *)&oldisc) != 0)
04d3b78c
BJ
285 goto notty;
286 if (oldisc != NTTYDISC) {
d7929fa7
KM
287#ifdef DEBUG
288 printf("Switching to new tty driver...\n");
289#endif DEBUG
04d3b78c 290 ldisc = NTTYDISC;
35371dec
EW
291 (void) ioctl(f, TIOCSETD,
292 (char *)&ldisc);
04d3b78c
BJ
293 } else
294 oldisc = -1;
295 opgrp = shpgrp;
296 shpgrp = getpid();
297 tpgrp = shpgrp;
35371dec
EW
298 (void) ioctl(f, TIOCSPGRP, (char *)&shpgrp);
299 (void) setpgrp(0, shpgrp);
300 (void) ioctl(dcopy(f, FSHTTY), FIOCLEX,
301 (char *)0);
04d3b78c
BJ
302 } else {
303notty:
304 printf("Warning: no access to tty; thus no job control in this shell...\n");
305 tpgrp = -1;
306 }
307 }
308 }
3b1a0a1e
KM
309 if (setintr == 0 && parintr == SIG_DFL)
310 setintr++;
35371dec 311 (void) signal(SIGCHLD, pchild); /* while signals not ready */
04d3b78c
BJ
312
313 /*
314 * Set an exit here in case of an interrupt or error reading
315 * the shell start-up scripts.
316 */
317 setexit();
318 haderr = 0; /* In case second time through */
319 if (!fast && reenter == 0) {
320 reenter++;
321 /* Will have value("home") here because set fast if don't */
322 srccat(value("home"), "/.cshrc");
35371dec 323 if (!fast && !arginp && !onelflg && !havhash)
04d3b78c
BJ
324 dohash();
325 if (loginsh) {
04d3b78c
BJ
326 srccat(value("home"), "/.login");
327 }
5eaf2044 328 dosource(loadhist);
04d3b78c
BJ
329 }
330
331 /*
332 * Now are ready for the -v and -x flags
333 */
334 if (nverbose)
335 setNS("verbose");
336 if (nexececho)
337 setNS("echo");
338
339 /*
340 * All the rest of the world is inside this call.
341 * The argument to process indicates whether it should
342 * catch "error unwinds". Thus if we are a interactive shell
343 * our call here will never return by being blown past on an error.
344 */
345 process(setintr);
346
347 /*
348 * Mop-up.
349 */
350 if (loginsh) {
351 printf("logout\n");
35371dec 352 (void) close(SHIN);
04d3b78c
BJ
353 child++;
354 goodbye();
355 }
d7929fa7 356 rechist();
04d3b78c
BJ
357 exitstat();
358}
359
360untty()
361{
362
363 if (tpgrp > 0) {
35371dec
EW
364 (void) setpgrp(0, opgrp);
365 (void) ioctl(FSHTTY, TIOCSPGRP, (char *)&opgrp);
04d3b78c 366 if (oldisc != -1 && oldisc != NTTYDISC) {
d7929fa7 367#ifdef DEBUG
04d3b78c 368 printf("\nReverting to old tty driver...\n");
d7929fa7 369#endif DEBUG
35371dec 370 (void) ioctl(FSHTTY, TIOCSETD, (char *)&oldisc);
04d3b78c
BJ
371 }
372 }
373}
374
375importpath(cp)
ec1a81af 376 char *cp;
04d3b78c
BJ
377{
378 register int i = 0;
379 register char *dp;
380 register char **pv;
381 int c;
382 static char dot[2] = {'.', 0};
383
384 for (dp = cp; *dp; dp++)
385 if (*dp == ':')
386 i++;
387 /*
388 * i+2 where i is the number of colons in the path.
389 * There are i+1 directories in the path plus we need
390 * room for a zero terminator.
391 */
35371dec 392 pv = (char **) calloc((unsigned) (i + 2), sizeof (char **));
04d3b78c
BJ
393 dp = cp;
394 i = 0;
395 if (*dp)
396 for (;;) {
397 if ((c = *dp) == ':' || c == 0) {
398 *dp = 0;
399 pv[i++] = savestr(*cp ? cp : dot);
400 if (c) {
401 cp = dp + 1;
402 *dp = ':';
403 } else
404 break;
405 }
406 dp++;
407 }
408 pv[i] = 0;
409 set1("path", pv, &shvhed);
410}
411
412/*
413 * Source to the file which is the catenation of the argument names.
414 */
415srccat(cp, dp)
416 char *cp, *dp;
417{
418 register char *ep = strspl(cp, dp);
419 register int unit = dmove(open(ep, 0), -1);
420
35371dec 421 (void) ioctl(unit, FIOCLEX, (char *)0);
04d3b78c
BJ
422 xfree(ep);
423#ifdef INGRES
d7929fa7 424 srcunit(unit, 0, 0);
04d3b78c 425#else
d7929fa7 426 srcunit(unit, 1, 0);
04d3b78c
BJ
427#endif
428}
429
430/*
431 * Source to a unit. If onlyown it must be our file or our group or
432 * we don't chance it. This occurs on ".cshrc"s and the like.
433 */
d7929fa7 434srcunit(unit, onlyown, hflg)
04d3b78c
BJ
435 register int unit;
436 bool onlyown;
d7929fa7 437 bool hflg;
04d3b78c
BJ
438{
439 /* We have to push down a lot of state here */
440 /* All this could go into a structure */
441 int oSHIN = -1, oldintty = intty;
442 struct whyle *oldwhyl = whyles;
443 char *ogointr = gointr, *oarginp = arginp;
444 char *oevalp = evalp, **oevalvec = evalvec;
445 int oonelflg = onelflg;
d7929fa7
KM
446 bool oenterhist = enterhist;
447 char OHIST = HIST;
04d3b78c
BJ
448#ifdef TELL
449 bool otell = cantell;
450#endif
451 struct Bin saveB;
452
453 /* The (few) real local variables */
454 jmp_buf oldexit;
d33af40e 455 int reenter, omask;
04d3b78c
BJ
456
457 if (unit < 0)
458 return;
459 if (didfds)
460 donefds();
461 if (onlyown) {
462 struct stat stb;
463
ec1a81af
SL
464 if (fstat(unit, &stb) < 0 ||
465 (stb.st_uid != uid && stb.st_gid != getgid())) {
35371dec 466 (void) close(unit);
04d3b78c
BJ
467 return;
468 }
469 }
470
471 /*
472 * There is a critical section here while we are pushing down the
473 * input stream since we have stuff in different structures.
474 * If we weren't careful an interrupt could corrupt SHIN's Bin
475 * structure and kill the shell.
476 *
477 * We could avoid the critical region by grouping all the stuff
478 * in a single structure and pointing at it to move it all at
479 * once. This is less efficient globally on many variable references
480 * however.
481 */
482 getexit(oldexit);
483 reenter = 0;
484 if (setintr)
d33af40e 485 omask = sigblock(sigmask(SIGINT));
04d3b78c
BJ
486 setexit();
487 reenter++;
488 if (reenter == 1) {
489 /* Setup the new values of the state stuff saved above */
490 copy((char *)&saveB, (char *)&B, sizeof saveB);
491 fbuf = (char **) 0;
492 fseekp = feobp = fblocks = 0;
493 oSHIN = SHIN, SHIN = unit, arginp = 0, onelflg = 0;
494 intty = isatty(SHIN), whyles = 0, gointr = 0;
495 evalvec = 0; evalp = 0;
d7929fa7
KM
496 enterhist = hflg;
497 if (enterhist)
498 HIST = '\0';
04d3b78c
BJ
499 /*
500 * Now if we are allowing commands to be interrupted,
501 * we let ourselves be interrupted.
502 */
503 if (setintr)
35371dec 504 (void) sigsetmask(omask);
04d3b78c
BJ
505#ifdef TELL
506 settell();
507#endif
508 process(0); /* 0 -> blow away on errors */
509 }
510 if (setintr)
35371dec 511 (void) sigsetmask(omask);
04d3b78c
BJ
512 if (oSHIN >= 0) {
513 register int i;
514
515 /* We made it to the new state... free up its storage */
516 /* This code could get run twice but xfree doesn't care */
517 for (i = 0; i < fblocks; i++)
518 xfree(fbuf[i]);
519 xfree((char *)fbuf);
520
521 /* Reset input arena */
522 copy((char *)&B, (char *)&saveB, sizeof B);
523
35371dec 524 (void) close(SHIN), SHIN = oSHIN;
04d3b78c
BJ
525 arginp = oarginp, onelflg = oonelflg;
526 evalp = oevalp, evalvec = oevalvec;
527 intty = oldintty, whyles = oldwhyl, gointr = ogointr;
020d9a25
KM
528 if (enterhist)
529 HIST = OHIST;
d7929fa7 530 enterhist = oenterhist;
04d3b78c
BJ
531#ifdef TELL
532 cantell = otell;
533#endif
534 }
535
536 resexit(oldexit);
537 /*
538 * If process reset() (effectively an unwind) then
539 * we must also unwind.
540 */
541 if (reenter >= 2)
542 error(NOSTR);
543}
544
d7929fa7 545rechist()
04d3b78c 546{
63af20f7
KM
547 char buf[BUFSIZ];
548 int fp, ftmp, oldidfds;
04d3b78c 549
d7929fa7 550 if (!fast) {
6ea8dfee
KM
551 if (value("savehist")[0] == '\0')
552 return;
35371dec
EW
553 (void) strcpy(buf, value("home"));
554 (void) strcat(buf, "/.history");
14f52162 555 fp = creat(buf, 0666);
6ea8dfee
KM
556 if (fp == -1)
557 return;
558 oldidfds = didfds;
559 didfds = 0;
560 ftmp = SHOUT;
561 SHOUT = fp;
35371dec 562 (void) strcpy(buf, value("savehist"));
6ea8dfee
KM
563 dumphist[2] = buf;
564 dohist(dumphist);
35371dec 565 (void) close(fp);
6ea8dfee
KM
566 SHOUT = ftmp;
567 didfds = oldidfds;
d7929fa7
KM
568 }
569}
570
571goodbye()
572{
573 if (loginsh) {
35371dec
EW
574 (void) signal(SIGQUIT, SIG_IGN);
575 (void) signal(SIGINT, SIG_IGN);
576 (void) signal(SIGTERM, SIG_IGN);
04d3b78c
BJ
577 setintr = 0; /* No interrupts after "logout" */
578 if (adrof("home"))
579 srccat(value("home"), "/.logout");
580 }
d7929fa7 581 rechist();
04d3b78c
BJ
582 exitstat();
583}
584
585exitstat()
586{
587
35371dec
EW
588#ifdef PROF
589 monitor(0);
590#endif
04d3b78c
BJ
591 /*
592 * Note that if STATUS is corrupted (i.e. getn bombs)
593 * then error will exit directly because we poke child here.
594 * Otherwise we might continue unwarrantedly (sic).
595 */
596 child++;
597 exit(getn(value("status")));
598}
599
d7929fa7
KM
600/*
601 * in the event of a HUP we want to save the history
602 */
603phup()
604{
605 rechist();
606 exit(1);
607}
608
04d3b78c
BJ
609char *jobargv[2] = { "jobs", 0 };
610/*
611 * Catch an interrupt, e.g. during lexical input.
612 * If we are an interactive shell, we reset the interrupt catch
613 * immediately. In any case we drain the shell output,
614 * and finally go through the normal error mechanism, which
615 * gets a chance to make the shell go away.
616 */
617pintr()
401149be
BJ
618{
619 pintr1(1);
620}
621
622pintr1(wantnl)
623 bool wantnl;
04d3b78c
BJ
624{
625 register char **v;
d33af40e 626 int omask;
04d3b78c 627
d33af40e 628 omask = sigblock(0);
04d3b78c 629 if (setintr) {
35371dec 630 (void) sigsetmask(omask & ~sigmask(SIGINT));
04d3b78c
BJ
631 if (pjobs) {
632 pjobs = 0;
633 printf("\n");
634 dojobs(jobargv);
635 bferr("Interrupted");
636 }
637 }
35371dec 638 (void) sigsetmask(omask & ~sigmask(SIGCHLD));
04d3b78c
BJ
639 draino();
640
641 /*
642 * If we have an active "onintr" then we search for the label.
643 * Note that if one does "onintr -" then we shan't be interruptible
644 * so we needn't worry about that here.
645 */
646 if (gointr) {
647 search(ZGOTO, 0, gointr);
648 timflg = 0;
649 if (v = pargv)
650 pargv = 0, blkfree(v);
651 if (v = gargv)
652 gargv = 0, blkfree(v);
653 reset();
401149be 654 } else if (intty && wantnl)
04d3b78c
BJ
655 printf("\n"); /* Some like this, others don't */
656 error(NOSTR);
657}
658
659/*
660 * Process is the main driving routine for the shell.
661 * It runs all command processing, except for those within { ... }
662 * in expressions (which is run by a routine evalav in sh.exp.c which
663 * is a stripped down process), and `...` evaluation which is run
664 * also by a subset of this code in sh.glob.c in the routine backeval.
665 *
666 * The code here is a little strange because part of it is interruptible
667 * and hence freeing of structures appears to occur when none is necessary
668 * if this is ignored.
669 *
670 * Note that if catch is not set then we will unwind on any error.
671 * If an end-of-file occurs, we return.
672 */
673process(catch)
674 bool catch;
675{
04d3b78c 676 jmp_buf osetexit;
35371dec 677 register struct command *t;
04d3b78c
BJ
678
679 getexit(osetexit);
680 for (;;) {
681 pendjob();
682 paraml.next = paraml.prev = &paraml;
683 paraml.word = "";
684 t = 0;
685 setexit();
63af20f7 686 justpr = enterhist; /* execute if not entering history */
04d3b78c
BJ
687
688 /*
689 * Interruptible during interactive reads
690 */
691 if (setintr)
35371dec 692 (void) sigsetmask(sigblock(0) & ~sigmask(SIGINT));
04d3b78c
BJ
693
694 /*
695 * For the sake of reset()
696 */
697 freelex(&paraml), freesyn(t), t = 0;
698
699 if (haderr) {
700 if (!catch) {
701 /* unwind */
702 doneinp = 0;
703 resexit(osetexit);
704 reset();
705 }
706 haderr = 0;
707 /*
708 * Every error is eventually caught here or
709 * the shell dies. It is at this
710 * point that we clean up any left-over open
711 * files, by closing all but a fixed number
712 * of pre-defined files. Thus routines don't
713 * have to worry about leaving files open due
714 * to deeper errors... they will get closed here.
715 */
716 closem();
717 continue;
718 }
719 if (doneinp) {
720 doneinp = 0;
721 break;
722 }
723 if (chkstop)
724 chkstop--;
725 if (neednote)
726 pnote();
c9166193 727 if (intty && prompt && evalvec == 0) {
04d3b78c
BJ
728 mailchk();
729 /*
730 * If we are at the end of the input buffer
731 * then we are going to read fresh stuff.
732 * Otherwise, we are rereading input and don't
733 * need or want to prompt.
734 */
735 if (fseekp == feobp)
544d4ed6 736 printprompt();
04d3b78c
BJ
737 }
738 err = 0;
739
740 /*
741 * Echo not only on VERBOSE, but also with history expansion.
742 * If there is a lexical error then we forego history echo.
743 */
d7929fa7
KM
744 if (lex(&paraml) && !err && intty ||
745 adrof("verbose")) {
04d3b78c
BJ
746 haderr = 1;
747 prlex(&paraml);
748 haderr = 0;
749 }
750
751 /*
752 * The parser may lose space if interrupted.
753 */
754 if (setintr)
35371dec 755 (void) sigblock(sigmask(SIGINT));
04d3b78c
BJ
756
757 /*
63af20f7
KM
758 * Save input text on the history list if
759 * reading in old history, or it
04d3b78c
BJ
760 * is from the terminal at the top level and not
761 * in a loop.
762 */
63af20f7 763 if (enterhist || catch && intty && !whyles)
04d3b78c
BJ
764 savehist(&paraml);
765
766 /*
d7929fa7
KM
767 * Print lexical error messages, except when sourcing
768 * history lists.
04d3b78c 769 */
d7929fa7 770 if (!enterhist && err)
04d3b78c
BJ
771 error(err);
772
773 /*
774 * If had a history command :p modifier then
775 * this is as far as we should go
776 */
777 if (justpr)
778 reset();
779
780 alias(&paraml);
781
782 /*
783 * Parse the words of the input into a parse tree.
784 */
785 t = syntax(paraml.next, &paraml, 0);
786 if (err)
787 error(err);
788
789 /*
790 * Execute the parse tree
791 */
792 execute(t, tpgrp);
793
794 /*
795 * Made it!
796 */
797 freelex(&paraml), freesyn(t);
798 }
799 resexit(osetexit);
800}
801
802dosource(t)
803 register char **t;
804{
805 register char *f;
806 register int u;
d7929fa7
KM
807 bool hflg = 0;
808 char buf[BUFSIZ];
04d3b78c
BJ
809
810 t++;
d7929fa7
KM
811 if (*t && eq(*t, "-h")) {
812 t++;
813 hflg++;
814 }
35371dec 815 (void) strcpy(buf, *t);
d7929fa7 816 f = globone(buf);
04d3b78c
BJ
817 u = dmove(open(f, 0), -1);
818 xfree(f);
d7929fa7 819 if (u < 0 && !hflg)
04d3b78c 820 Perror(f);
35371dec 821 (void) ioctl(u, FIOCLEX, (char *)0);
d7929fa7 822 srcunit(u, 0, hflg);
04d3b78c
BJ
823}
824
825/*
826 * Check for mail.
827 * If we are a login shell, then we don't want to tell
828 * about any mail file unless its been modified
829 * after the time we started.
830 * This prevents us from telling the user things he already
831 * knows, since the login program insists on saying
832 * "You have mail."
833 */
834mailchk()
835{
836 register struct varent *v;
837 register char **vp;
838 time_t t;
839 int intvl, cnt;
840 struct stat stb;
841 bool new;
842
843 v = adrof("mail");
844 if (v == 0)
845 return;
35371dec 846 (void) time(&t);
04d3b78c
BJ
847 vp = v->vec;
848 cnt = blklen(vp);
849 intvl = (cnt && number(*vp)) ? (--cnt, getn(*vp++)) : MAILINTVL;
850 if (intvl < 1)
851 intvl = 1;
852 if (chktim + intvl > t)
853 return;
854 for (; *vp; vp++) {
855 if (stat(*vp, &stb) < 0)
856 continue;
ae3d9709 857 new = stb.st_mtime > time0.tv_sec;
04d3b78c
BJ
858 if (stb.st_size == 0 || stb.st_atime > stb.st_mtime ||
859 (stb.st_atime < chktim && stb.st_mtime < chktim) ||
860 loginsh && !new)
861 continue;
862 if (cnt == 1)
863 printf("You have %smail.\n", new ? "new " : "");
864 else
865 printf("%s in %s.\n", new ? "New mail" : "Mail", *vp);
866 }
867 chktim = t;
868}
869
870#include <pwd.h>
871/*
872 * Extract a home directory from the password file
873 * The argument points to a buffer where the name of the
874 * user whose home directory is sought is currently.
875 * We write the home directory of the user back there.
876 */
877gethdir(home)
878 char *home;
879{
880 register struct passwd *pp = getpwnam(home);
881
882 if (pp == 0)
883 return (1);
35371dec 884 (void) strcpy(home, pp->pw_dir);
04d3b78c
BJ
885 return (0);
886}
887
888/*
889 * Move the initial descriptors to their eventual
890 * resting places, closin all other units.
891 */
892initdesc()
893{
894
04d3b78c 895 didfds = 0; /* 0, 1, 2 aren't set up */
35371dec
EW
896 (void) ioctl(SHIN = dcopy(0, FSHIN), FIOCLEX, (char *)0);
897 (void) ioctl(SHOUT = dcopy(1, FSHOUT), FIOCLEX, (char *)0);
898 (void) ioctl(SHDIAG = dcopy(2, FSHDIAG), FIOCLEX, (char *)0);
899 (void) ioctl(OLDSTD = dcopy(SHIN, FOLDSTD), FIOCLEX, (char *)0);
04d3b78c
BJ
900 closem();
901}
902
e31125a2
SL
903#ifdef PROF
904done(i)
905#else
04d3b78c 906exit(i)
e31125a2 907#endif
04d3b78c
BJ
908 int i;
909{
910
911 untty();
04d3b78c 912 _exit(i);
04d3b78c 913}
19d39288 914
544d4ed6 915printprompt()
19d39288 916{
544d4ed6
SL
917 register char *cp;
918
e31125a2 919 if (!whyles) {
544d4ed6
SL
920 for (cp = value("prompt"); *cp; cp++)
921 if (*cp == HIST)
922 printf("%d", eventno + 1);
923 else {
924 if (*cp == '\\' && cp[1] == HIST)
925 cp++;
926 putchar(*cp | QUOTE);
927 }
928 } else
929 /*
930 * Prompt for forward reading loop
931 * body content.
932 */
933 printf("? ");
934 flush();
19d39288 935}