c_sh.c revision 1.19 1 /* $NetBSD: c_sh.c,v 1.19 2017/06/22 14:20:46 kamil Exp $ */
2
3 /*
4 * built-in Bourne commands
5 */
6 #include <sys/cdefs.h>
7
8 #ifndef lint
9 __RCSID("$NetBSD: c_sh.c,v 1.19 2017/06/22 14:20:46 kamil Exp $");
10 #endif
11
12
13 #include "sh.h"
14 #include "ksh_stat.h" /* umask() */
15 #include "ksh_time.h"
16 #include "ksh_times.h"
17
18 static char *clocktos ARGS((clock_t t));
19
20
21 /* :, false and true */
22 int
23 c_label(wp)
24 char **wp;
25 {
26 return wp[0][0] == 'f' ? 1 : 0;
27 }
28
29 int
30 c_shift(wp)
31 char **wp;
32 {
33 register struct block *l = e->loc;
34 register int n;
35 long val;
36 char *arg;
37
38 if (ksh_getopt(wp, &builtin_opt, null) == '?')
39 return 1;
40 arg = wp[builtin_opt.optind];
41
42 if (arg) {
43 evaluate(arg, &val, KSH_UNWIND_ERROR);
44 n = val;
45 } else
46 n = 1;
47 if (n < 0) {
48 bi_errorf("%s: bad number", arg);
49 return (1);
50 }
51 if (l->argc < n) {
52 bi_errorf("nothing to shift");
53 return (1);
54 }
55 l->argv[n] = l->argv[0];
56 l->argv += n;
57 l->argc -= n;
58 return 0;
59 }
60
61 int
62 c_umask(wp)
63 char **wp;
64 {
65 register int i;
66 register char *cp;
67 int symbolic = 0;
68 int old_umask;
69 int optc;
70
71 while ((optc = ksh_getopt(wp, &builtin_opt, "S")) != EOF)
72 switch (optc) {
73 case 'S':
74 symbolic = 1;
75 break;
76 case '?':
77 return 1;
78 }
79 cp = wp[builtin_opt.optind];
80 if (cp == NULL) {
81 old_umask = umask(0);
82 umask(old_umask);
83 if (symbolic) {
84 char buf[18];
85 int j;
86
87 old_umask = ~old_umask;
88 cp = buf;
89 for (i = 0; i < 3; i++) {
90 *cp++ = "ugo"[i];
91 *cp++ = '=';
92 for (j = 0; j < 3; j++)
93 if (old_umask & (1 << (8 - (3*i + j))))
94 *cp++ = "rwx"[j];
95 *cp++ = ',';
96 }
97 cp[-1] = '\0';
98 shprintf("%s\n", buf);
99 } else
100 shprintf("%#3.3o\n", old_umask);
101 } else {
102 int new_umask;
103
104 if (digit(*cp)) {
105 for (new_umask = 0; *cp >= '0' && *cp <= '7'; cp++)
106 new_umask = new_umask * 8 + (*cp - '0');
107 if (*cp) {
108 bi_errorf("bad number");
109 return 1;
110 }
111 } else {
112 /* symbolic format */
113 int positions, new_val;
114 char op;
115
116 old_umask = umask(0);
117 umask(old_umask); /* in case of error */
118 old_umask = ~old_umask;
119 new_umask = old_umask;
120 positions = 0;
121 while (*cp) {
122 while (*cp && strchr("augo", *cp))
123 switch (*cp++) {
124 case 'a': positions |= 0111; break;
125 case 'u': positions |= 0100; break;
126 case 'g': positions |= 0010; break;
127 case 'o': positions |= 0001; break;
128 }
129 if (!positions)
130 positions = 0111; /* default is a */
131 if (!strchr("=+-", op = *cp))
132 break;
133 cp++;
134 new_val = 0;
135 while (*cp && strchr("rwxugoXs", *cp))
136 switch (*cp++) {
137 case 'r': new_val |= 04; break;
138 case 'w': new_val |= 02; break;
139 case 'x': new_val |= 01; break;
140 case 'u': new_val |= old_umask >> 6;
141 break;
142 case 'g': new_val |= old_umask >> 3;
143 break;
144 case 'o': new_val |= old_umask >> 0;
145 break;
146 case 'X': if (old_umask & 0111)
147 new_val |= 01;
148 break;
149 case 's': /* ignored */
150 break;
151 }
152 new_val = (new_val & 07) * positions;
153 switch (op) {
154 case '-':
155 new_umask &= ~new_val;
156 break;
157 case '=':
158 new_umask = new_val
159 | (new_umask & ~(positions * 07));
160 break;
161 case '+':
162 new_umask |= new_val;
163 }
164 if (*cp == ',') {
165 positions = 0;
166 cp++;
167 } else if (!strchr("=+-", *cp))
168 break;
169 }
170 if (*cp) {
171 bi_errorf("bad mask");
172 return 1;
173 }
174 new_umask = ~new_umask;
175 }
176 umask(new_umask);
177 }
178 return 0;
179 }
180
181 int
182 c_dot(wp)
183 char **wp;
184 {
185 char *file, *cp;
186 char **argv;
187 int argc;
188 int i;
189 int err;
190
191 if (ksh_getopt(wp, &builtin_opt, null) == '?')
192 return 1;
193
194 if ((cp = wp[builtin_opt.optind]) == NULL)
195 return 0;
196 file = search(cp, path, R_OK, &err);
197 if (file == NULL) {
198 bi_errorf("%s: %s", cp, err ? strerror(err) : "not found");
199 return 1;
200 }
201
202 /* Set positional parameters? */
203 if (wp[builtin_opt.optind + 1]) {
204 argv = wp + builtin_opt.optind;
205 argv[0] = e->loc->argv[0]; /* preserve $0 */
206 for (argc = 0; argv[argc + 1]; argc++)
207 ;
208 } else {
209 argc = 0;
210 argv = (char **) 0;
211 }
212 i = include(file, argc, argv, 0);
213 if (i < 0) { /* should not happen */
214 bi_errorf("%s: %s", cp, strerror(errno));
215 return 1;
216 }
217 return i;
218 }
219
220 int
221 c_wait(wp)
222 char **wp;
223 {
224 int UNINITIALIZED(rv);
225 int sig;
226
227 if (ksh_getopt(wp, &builtin_opt, null) == '?')
228 return 1;
229 wp += builtin_opt.optind;
230 if (*wp == (char *) 0) {
231 while (waitfor((char *) 0, &sig) >= 0)
232 ;
233 rv = sig;
234 } else {
235 for (; *wp; wp++)
236 rv = waitfor(*wp, &sig);
237 if (rv < 0)
238 rv = sig ? sig : 127; /* magic exit code: bad job-id */
239 }
240 return rv;
241 }
242
243 int
244 c_read(wp)
245 char **wp;
246 {
247 register int c = 0;
248 int expandv = 1, history = 0;
249 int expanding;
250 int ecode = 0;
251 register char *cp;
252 int fd = 0;
253 struct shf *shf;
254 int optc;
255 const char *emsg;
256 XString cs, xs;
257 struct tbl *vp;
258 char UNINITIALIZED(*xp);
259 static char REPLY[] = "REPLY";
260
261 while ((optc = ksh_getopt(wp, &builtin_opt, "prsu,")) != EOF)
262 switch (optc) {
263 #ifdef KSH
264 case 'p':
265 if ((fd = coproc_getfd(R_OK, &emsg)) < 0) {
266 bi_errorf("-p: %s", emsg);
267 return 1;
268 }
269 break;
270 #endif /* KSH */
271 case 'r':
272 expandv = 0;
273 break;
274 case 's':
275 history = 1;
276 break;
277 case 'u':
278 if (!*(cp = builtin_opt.optarg))
279 fd = 0;
280 else if ((fd = check_fd(cp, R_OK, &emsg)) < 0) {
281 bi_errorf("-u: %s: %s", cp, emsg);
282 return 1;
283 }
284 break;
285 case '?':
286 return 1;
287 }
288 wp += builtin_opt.optind;
289
290 if (*wp == NULL)
291 *--wp = REPLY;
292
293 /* Since we can't necessarily seek backwards on non-regular files,
294 * don't buffer them so we can't read too much.
295 */
296 shf = shf_reopen(fd, SHF_RD | SHF_INTERRUPT | can_seek(fd), shl_spare);
297
298 if ((cp = strchr(*wp, '?')) != NULL) {
299 *cp = 0;
300 if (isatty(fd)) {
301 /* at&t ksh says it prints prompt on fd if it's open
302 * for writing and is a tty, but it doesn't do it
303 * (it also doesn't check the interactive flag,
304 * as is indicated in the Kornshell book).
305 */
306 shellf("%s", cp+1);
307 }
308 }
309
310 #ifdef KSH
311 /* If we are reading from the co-process for the first time,
312 * make sure the other side of the pipe is closed first. This allows
313 * the detection of eof.
314 *
315 * This is not compatible with at&t ksh... the fd is kept so another
316 * coproc can be started with same output, however, this means eof
317 * can't be detected... This is why it is closed here.
318 * If this call is removed, remove the eof check below, too.
319 * coproc_readw_close(fd);
320 */
321 #endif /* KSH */
322
323 if (history)
324 Xinit(xs, xp, 128, ATEMP);
325 expanding = 0;
326 Xinit(cs, cp, 128, ATEMP);
327 for (; *wp != NULL; wp++) {
328 for (cp = Xstring(cs, cp); ; ) {
329 if (c == '\n' || c == EOF)
330 break;
331 while (1) {
332 c = shf_getc(shf);
333 if (c == '\0'
334 )
335 continue;
336 if (c == EOF && shf_error(shf)
337 && shf_errno(shf) == EINTR)
338 {
339 /* Was the offending signal one that
340 * would normally kill a process?
341 * If so, pretend the read was killed.
342 */
343 ecode = fatal_trap_check();
344
345 /* non fatal (eg, CHLD), carry on */
346 if (!ecode) {
347 shf_clearerr(shf);
348 continue;
349 }
350 }
351 break;
352 }
353 if (history) {
354 Xcheck(xs, xp);
355 Xput(xs, xp, c);
356 }
357 Xcheck(cs, cp);
358 if (expanding) {
359 expanding = 0;
360 if (c == '\n') {
361 c = 0;
362 if (Flag(FTALKING_I) && isatty(fd)) {
363 /* set prompt in case this is
364 * called from .profile or $ENV
365 */
366 set_prompt(PS2, (Source *) 0);
367 pprompt(prompt, 0);
368 }
369 } else if (c != EOF)
370 Xput(cs, cp, c);
371 continue;
372 }
373 if (expandv && c == '\\') {
374 expanding = 1;
375 continue;
376 }
377 if (c == '\n' || c == EOF)
378 break;
379 if (ctype(c, C_IFS)) {
380 if (Xlength(cs, cp) == 0 && ctype(c, C_IFSWS))
381 continue;
382 if (wp[1])
383 break;
384 }
385 Xput(cs, cp, c);
386 }
387 /* strip trailing IFS white space from last variable */
388 if (!wp[1])
389 while (Xlength(cs, cp) && ctype(cp[-1], C_IFS)
390 && ctype(cp[-1], C_IFSWS))
391 cp--;
392 Xput(cs, cp, '\0');
393 vp = global(*wp);
394 /* Must be done before setting export. */
395 if (vp->flag & RDONLY) {
396 shf_flush(shf);
397 bi_errorf("%s is read only", *wp);
398 return 1;
399 }
400 if (Flag(FEXPORT))
401 typeset(*wp, EXPORT, 0, 0, 0);
402 if (!setstr(vp, Xstring(cs, cp), KSH_RETURN_ERROR)) {
403 shf_flush(shf);
404 return 1;
405 }
406 }
407
408 shf_flush(shf);
409 if (history) {
410 Xput(xs, xp, '\0');
411 source->line++;
412 histsave(source->line, Xstring(xs, xp), 1);
413 Xfree(xs, xp);
414 }
415 #ifdef KSH
416 /* if this is the co-process fd, close the file descriptor
417 * (can get eof if and only if all processes are have died, ie,
418 * coproc.njobs is 0 and the pipe is closed).
419 */
420 if (c == EOF && !ecode)
421 coproc_read_close(fd);
422 #endif /* KSH */
423
424 return ecode ? ecode : c == EOF;
425 }
426
427 int
428 c_eval(wp)
429 char **wp;
430 {
431 register struct source *s;
432 int rv;
433
434 if (ksh_getopt(wp, &builtin_opt, null) == '?')
435 return 1;
436 s = pushs(SWORDS, ATEMP);
437 s->u.strv = wp + builtin_opt.optind;
438 if (!Flag(FPOSIX)) {
439 /*
440 * Handle case where the command is empty due to failed
441 * command substitution, eg, eval "$(false)".
442 * In this case, shell() will not set/change exstat (because
443 * compiled tree is empty), so will use this value.
444 * subst_exstat is cleared in execute(), so should be 0 if
445 * there were no substitutions.
446 *
447 * A strict reading of POSIX says we don't do this (though
448 * it is traditionally done). [from 1003.2-1992]
449 * 3.9.1: Simple Commands
450 * ... If there is a command name, execution shall
451 * continue as described in 3.9.1.1. If there
452 * is no command name, but the command contained a command
453 * substitution, the command shall complete with the exit
454 * status of the last command substitution
455 * 3.9.1.1: Command Search and Execution
456 * ...(1)...(a) If the command name matches the name of
457 * a special built-in utility, that special built-in
458 * utility shall be invoked.
459 * 3.14.5: Eval
460 * ... If there are no arguments, or only null arguments,
461 * eval shall return an exit status of zero.
462 */
463 exstat = subst_exstat;
464 }
465
466 rv = shell(s, FALSE);
467 afree(s, ATEMP);
468 return rv;
469 }
470
471 int
472 c_trap(wp)
473 char **wp;
474 {
475 int i;
476 char *s;
477 register Trap *p;
478
479 if (ksh_getopt(wp, &builtin_opt, null) == '?')
480 return 1;
481 wp += builtin_opt.optind;
482
483 if (*wp == NULL) {
484 int anydfl = 0;
485
486 for (p = sigtraps, i = SIGNALS+1; --i >= 0; p++) {
487 if (p->trap == NULL)
488 anydfl = 1;
489 else {
490 shprintf("trap -- ");
491 print_value_quoted(p->trap);
492 shprintf(" %s\n", p->name);
493 }
494 }
495 #if 0 /* this is ugly and not clear POSIX needs it */
496 /* POSIX may need this so output of trap can be saved and
497 * used to restore trap conditions
498 */
499 if (anydfl) {
500 shprintf("trap -- -");
501 for (p = sigtraps, i = SIGNALS+1; --i >= 0; p++)
502 if (p->trap == NULL && p->name)
503 shprintf(" %s", p->name);
504 shprintf(newline);
505 }
506 #else
507 __USE(anydfl);
508 #endif
509 return 0;
510 }
511
512 /*
513 * Use case sensitive lookup for first arg so the
514 * command 'exit' isn't confused with the pseudo-signal
515 * 'EXIT'.
516 */
517 s = (gettrap(*wp, FALSE) == NULL) ? *wp++ : NULL; /* get command */
518 if (s != NULL && s[0] == '-' && s[1] == '\0')
519 s = NULL;
520
521 /* set/clear traps */
522 while (*wp != NULL) {
523 p = gettrap(*wp++, TRUE);
524 if (p == NULL) {
525 bi_errorf("bad signal %s", wp[-1]);
526 return 1;
527 }
528 settrap(p, s);
529 }
530 return 0;
531 }
532
533 int
534 c_exitreturn(wp)
535 char **wp;
536 {
537 int how = LEXIT;
538 int n;
539 char *arg;
540
541 if (ksh_getopt(wp, &builtin_opt, null) == '?')
542 return 1;
543 arg = wp[builtin_opt.optind];
544
545 if (arg) {
546 if (!getn(arg, &n)) {
547 exstat = 1;
548 warningf(TRUE, "%s: bad number", arg);
549 } else
550 exstat = n;
551 }
552 if (wp[0][0] == 'r') { /* return */
553 struct env *ep;
554
555 /* need to tell if this is exit or return so trap exit will
556 * work right (POSIX)
557 */
558 for (ep = e; ep; ep = ep->oenv)
559 if (STOP_RETURN(ep->type)) {
560 how = LRETURN;
561 break;
562 }
563 }
564
565 if (how == LEXIT && !really_exit && j_stopped_running()) {
566 really_exit = 1;
567 how = LSHELL;
568 }
569
570 quitenv(); /* get rid of any i/o redirections */
571 unwind(how);
572 /*NOTREACHED*/
573 return 0;
574 }
575
576 int
577 c_brkcont(wp)
578 char **wp;
579 {
580 int n, quit;
581 struct env *ep, *last_ep = (struct env *) 0;
582 char *arg;
583
584 if (ksh_getopt(wp, &builtin_opt, null) == '?')
585 return 1;
586 arg = wp[builtin_opt.optind];
587
588 if (!arg)
589 n = 1;
590 else if (!bi_getn(arg, &n))
591 return 1;
592 quit = n;
593 if (quit <= 0) {
594 /* at&t ksh does this for non-interactive shells only - weird */
595 bi_errorf("%s: bad value", arg);
596 return 1;
597 }
598
599 /* Stop at E_NONE, E_PARSE, E_FUNC, or E_INCL */
600 for (ep = e; ep && !STOP_BRKCONT(ep->type); ep = ep->oenv)
601 if (ep->type == E_LOOP) {
602 if (--quit == 0)
603 break;
604 ep->flags |= EF_BRKCONT_PASS;
605 last_ep = ep;
606 }
607
608 if (quit) {
609 /* at&t ksh doesn't print a message - just does what it
610 * can. We print a message 'cause it helps in debugging
611 * scripts, but don't generate an error (ie, keep going).
612 */
613 if (n == quit) {
614 warningf(TRUE, "%s: cannot %s", wp[0], wp[0]);
615 return 0;
616 }
617 /* POSIX says if n is too big, the last enclosing loop
618 * shall be used. Doesn't say to print an error but we
619 * do anyway 'cause the user messed up.
620 */
621 if (last_ep)
622 last_ep->flags &= ~EF_BRKCONT_PASS;
623 warningf(TRUE, "%s: can only %s %d level(s)",
624 wp[0], wp[0], n - quit);
625 }
626
627 unwind(*wp[0] == 'b' ? LBREAK : LCONTIN);
628 /*NOTREACHED*/
629 }
630
631 int
632 c_set(wp)
633 char **wp;
634 {
635 int argi, setargs;
636 struct block *l = e->loc;
637 register char **owp = wp;
638
639 if (wp[1] == NULL) {
640 static const char *const args [] = { "set", "-", NULL };
641 return c_typeset((char **)__UNCONST(args));
642 }
643
644 argi = parse_args(wp, OF_SET, &setargs);
645 if (argi < 0)
646 return 1;
647 /* set $# and $* */
648 if (setargs) {
649 owp = wp += argi - 1;
650 wp[0] = l->argv[0]; /* save $0 */
651 while (*++wp != NULL)
652 *wp = str_save(*wp, &l->area);
653 l->argc = wp - owp - 1;
654 l->argv = (char **) alloc(sizeofN(char *, l->argc+2), &l->area);
655 for (wp = l->argv; (*wp++ = *owp++) != NULL; )
656 ;
657 }
658 /* POSIX says set exit status is 0, but old scripts that use
659 * getopt(1), use the construct: set -- `getopt ab:c "$@"`
660 * which assumes the exit value set will be that of the ``
661 * (subst_exstat is cleared in execute() so that it will be 0
662 * if there are no command substitutions).
663 */
664 return Flag(FPOSIX) ? 0 : subst_exstat;
665 }
666
667 int
668 c_unset(wp)
669 char **wp;
670 {
671 register char *id;
672 int optc, unset_var = 1;
673 int ret = 0;
674
675 while ((optc = ksh_getopt(wp, &builtin_opt, "fv")) != EOF)
676 switch (optc) {
677 case 'f':
678 unset_var = 0;
679 break;
680 case 'v':
681 unset_var = 1;
682 break;
683 case '?':
684 return 1;
685 }
686 wp += builtin_opt.optind;
687 for (; (id = *wp) != NULL; wp++)
688 if (unset_var) { /* unset variable */
689 struct tbl *vp = global(id);
690
691 if ((vp->flag&RDONLY)) {
692 bi_errorf("%s is read only", vp->name);
693 return 1;
694 }
695 unset(vp, strchr(id, '[') ? 1 : 0);
696 } else { /* unset function */
697 if (define(id, NULL))
698 ret = 1;
699 }
700 return ret;
701 }
702
703 int
704 c_times(wp)
705 char **wp;
706 {
707 struct tms all;
708
709 (void) ksh_times(&all);
710 shprintf("Shell: %8ss user ", clocktos(all.tms_utime));
711 shprintf("%8ss system\n", clocktos(all.tms_stime));
712 shprintf("Kids: %8ss user ", clocktos(all.tms_cutime));
713 shprintf("%8ss system\n", clocktos(all.tms_cstime));
714
715 return 0;
716 }
717
718 /*
719 * time pipeline (really a statement, not a built-in command)
720 */
721 int
722 timex(t, f)
723 struct op *t;
724 int f;
725 {
726 #define TF_NOARGS BIT(0)
727 #define TF_NOREAL BIT(1) /* don't report real time */
728 #define TF_POSIX BIT(2) /* report in posix format */
729 int rv = 0;
730 struct tms t0, t1, tms;
731 clock_t t0t, t1t = 0;
732 int tf = 0;
733 extern clock_t j_usrtime, j_systime; /* computed by j_wait */
734 char opts[1];
735
736 t0t = ksh_times(&t0);
737 if (t->left) {
738 /*
739 * Two ways of getting cpu usage of a command: just use t0
740 * and t1 (which will get cpu usage from other jobs that
741 * finish while we are executing t->left), or get the
742 * cpu usage of t->left. at&t ksh does the former, while
743 * pdksh tries to do the later (the j_usrtime hack doesn't
744 * really work as it only counts the last job).
745 */
746 j_usrtime = j_systime = 0;
747 if (t->left->type == TCOM)
748 t->left->str = opts;
749 opts[0] = 0;
750 rv = execute(t->left, f | XTIME);
751 tf |= opts[0];
752 t1t = ksh_times(&t1);
753 } else
754 tf = TF_NOARGS;
755
756 if (tf & TF_NOARGS) { /* ksh93 - report shell times (shell+kids) */
757 tf |= TF_NOREAL;
758 tms.tms_utime = t0.tms_utime + t0.tms_cutime;
759 tms.tms_stime = t0.tms_stime + t0.tms_cstime;
760 } else {
761 tms.tms_utime = t1.tms_utime - t0.tms_utime + j_usrtime;
762 tms.tms_stime = t1.tms_stime - t0.tms_stime + j_systime;
763 }
764
765 if (!(tf & TF_NOREAL))
766 shf_fprintf(shl_out,
767 tf & TF_POSIX ? "real %8s\n" : "%8ss real ",
768 clocktos(t1t - t0t));
769 shf_fprintf(shl_out, tf & TF_POSIX ? "user %8s\n" : "%8ss user ",
770 clocktos(tms.tms_utime));
771 shf_fprintf(shl_out, tf & TF_POSIX ? "sys %8s\n" : "%8ss system\n",
772 clocktos(tms.tms_stime));
773 shf_flush(shl_out);
774
775 return rv;
776 }
777
778 void
779 timex_hook(t, app)
780 struct op *t;
781 char ** volatile *app;
782 {
783 char **wp = *app;
784 int optc;
785 int i, j;
786 Getopt opt;
787
788 ksh_getopt_reset(&opt, 0);
789 opt.optind = 0; /* start at the start */
790 while ((optc = ksh_getopt(wp, &opt, ":p")) != EOF)
791 switch (optc) {
792 case 'p':
793 t->str[0] |= TF_POSIX;
794 break;
795 case '?':
796 errorf("time: -%s unknown option", opt.optarg);
797 case ':':
798 errorf("time: -%s requires an argument",
799 opt.optarg);
800 }
801 /* Copy command words down over options. */
802 if (opt.optind != 0) {
803 for (i = 0; i < opt.optind; i++)
804 afree(wp[i], ATEMP);
805 for (i = 0, j = opt.optind; (wp[i] = wp[j]); i++, j++)
806 ;
807 }
808 if (!wp[0])
809 t->str[0] |= TF_NOARGS;
810 *app = wp;
811 }
812
813 static char *
814 clocktos(t)
815 clock_t t;
816 {
817 static char temp[22]; /* enough for 64 bit clock_t */
818 register int i;
819 register char *cp = temp + sizeof(temp);
820
821 /* note: posix says must use max precision, ie, if clk_tck is
822 * 1000, must print 3 places after decimal (if non-zero, else 1).
823 */
824 if (CLK_TCK != 100) /* convert to 1/100'ths */
825 t = (t < (clock_t)(1000000000/CLK_TCK)) ?
826 (t * 100) / CLK_TCK : (t / CLK_TCK) * 100;
827
828 *--cp = '\0';
829 for (i = -2; i <= 0 || t > 0; i++) {
830 if (i == 0)
831 *--cp = '.';
832 *--cp = '0' + (char)(t%10);
833 t /= 10;
834 }
835 return cp;
836 }
837
838 /* exec with no args - args case is taken care of in comexec() */
839 int
840 c_exec(wp)
841 char ** wp;
842 {
843 int i;
844
845 /* make sure redirects stay in place */
846 if (e->savefd != NULL) {
847 for (i = 0; i < NUFILE; i++) {
848 if (e->savefd[i] > 0)
849 close(e->savefd[i]);
850 /*
851 * For ksh keep anything > 2 private,
852 * for sh, let them be (POSIX says what
853 * happens is unspecified and the bourne shell
854 * keeps them open).
855 */
856 #ifdef KSH
857 if (i > 2 && e->savefd[i])
858 fd_clexec(i);
859 #endif /* KSH */
860 }
861 e->savefd = NULL;
862 }
863 return 0;
864 }
865
866 /* dummy function, special case in comexec() */
867 int
868 c_builtin(wp)
869 char ** wp;
870 {
871 return 0;
872 }
873
874 extern int c_test ARGS((char **wp)); /* in c_test.c */
875 extern int c_ulimit ARGS((char **wp)); /* in c_ulimit.c */
876
877 /* A leading = means assignments before command are kept;
878 * a leading * means a POSIX special builtin;
879 * a leading + means a POSIX regular builtin
880 * (* and + should not be combined).
881 */
882 const struct builtin shbuiltins [] = {
883 {"*=.", c_dot},
884 {"*=:", c_label},
885 {"[", c_test},
886 {"*=break", c_brkcont},
887 {"=builtin", c_builtin},
888 {"*=continue", c_brkcont},
889 {"*=eval", c_eval},
890 {"*=exec", c_exec},
891 {"*=exit", c_exitreturn},
892 {"+false", c_label},
893 {"*=return", c_exitreturn},
894 {"*=set", c_set},
895 {"*=shift", c_shift},
896 {"=times", c_times},
897 {"*=trap", c_trap},
898 {"+=wait", c_wait},
899 {"+read", c_read},
900 {"test", c_test},
901 {"+true", c_label},
902 {"ulimit", c_ulimit},
903 {"+umask", c_umask},
904 {"*=unset", c_unset},
905 {NULL, NULL}
906 };
907