xref: /freebsd/bin/sh/exec.c (revision eb6d21b4ca6d668cf89afd99eef7baeafa712197)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Kenneth Almquist.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)exec.c	8.4 (Berkeley) 6/8/95";
36 #endif
37 #endif /* not lint */
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40 
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <unistd.h>
44 #include <fcntl.h>
45 #include <errno.h>
46 #include <stdlib.h>
47 
48 /*
49  * When commands are first encountered, they are entered in a hash table.
50  * This ensures that a full path search will not have to be done for them
51  * on each invocation.
52  *
53  * We should investigate converting to a linear search, even though that
54  * would make the command name "hash" a misnomer.
55  */
56 
57 #include "shell.h"
58 #include "main.h"
59 #include "nodes.h"
60 #include "parser.h"
61 #include "redir.h"
62 #include "eval.h"
63 #include "exec.h"
64 #include "builtins.h"
65 #include "var.h"
66 #include "options.h"
67 #include "input.h"
68 #include "output.h"
69 #include "syntax.h"
70 #include "memalloc.h"
71 #include "error.h"
72 #include "init.h"
73 #include "mystring.h"
74 #include "show.h"
75 #include "jobs.h"
76 #include "alias.h"
77 
78 
79 #define CMDTABLESIZE 31		/* should be prime */
80 #define ARB 1			/* actual size determined at run time */
81 
82 
83 
84 struct tblentry {
85 	struct tblentry *next;	/* next entry in hash chain */
86 	union param param;	/* definition of builtin function */
87 	int special;		/* flag for special builtin commands */
88 	short cmdtype;		/* index identifying command */
89 	char rehash;		/* if set, cd done since entry created */
90 	char cmdname[ARB];	/* name of command */
91 };
92 
93 
94 STATIC struct tblentry *cmdtable[CMDTABLESIZE];
95 STATIC int builtinloc = -1;		/* index in path of %builtin, or -1 */
96 int exerrno = 0;			/* Last exec error */
97 
98 
99 STATIC void tryexec(char *, char **, char **);
100 STATIC void printentry(struct tblentry *, int);
101 STATIC struct tblentry *cmdlookup(char *, int);
102 STATIC void delete_cmd_entry(void);
103 
104 
105 
106 /*
107  * Exec a program.  Never returns.  If you change this routine, you may
108  * have to change the find_command routine as well.
109  */
110 
111 void
112 shellexec(char **argv, char **envp, char *path, int index)
113 {
114 	char *cmdname;
115 	int e;
116 
117 	if (strchr(argv[0], '/') != NULL) {
118 		tryexec(argv[0], argv, envp);
119 		e = errno;
120 	} else {
121 		e = ENOENT;
122 		while ((cmdname = padvance(&path, argv[0])) != NULL) {
123 			if (--index < 0 && pathopt == NULL) {
124 				tryexec(cmdname, argv, envp);
125 				if (errno != ENOENT && errno != ENOTDIR)
126 					e = errno;
127 			}
128 			stunalloc(cmdname);
129 		}
130 	}
131 
132 	/* Map to POSIX errors */
133 	switch (e) {
134 	case EACCES:
135 		exerrno = 126;
136 		break;
137 	case ENOENT:
138 		exerrno = 127;
139 		break;
140 	default:
141 		exerrno = 2;
142 		break;
143 	}
144 	if (e == ENOENT || e == ENOTDIR)
145 		exerror(EXEXEC, "%s: not found", argv[0]);
146 	exerror(EXEXEC, "%s: %s", argv[0], strerror(e));
147 }
148 
149 
150 STATIC void
151 tryexec(char *cmd, char **argv, char **envp)
152 {
153 	int e;
154 
155 	execve(cmd, argv, envp);
156 	e = errno;
157 	if (e == ENOEXEC) {
158 		initshellproc();
159 		setinputfile(cmd, 0);
160 		commandname = arg0 = savestr(argv[0]);
161 		setparam(argv + 1);
162 		exraise(EXSHELLPROC);
163 		/*NOTREACHED*/
164 	}
165 	errno = e;
166 }
167 
168 /*
169  * Do a path search.  The variable path (passed by reference) should be
170  * set to the start of the path before the first call; padvance will update
171  * this value as it proceeds.  Successive calls to padvance will return
172  * the possible path expansions in sequence.  If an option (indicated by
173  * a percent sign) appears in the path entry then the global variable
174  * pathopt will be set to point to it; otherwise pathopt will be set to
175  * NULL.
176  */
177 
178 char *pathopt;
179 
180 char *
181 padvance(char **path, char *name)
182 {
183 	char *p, *q;
184 	char *start;
185 	int len;
186 
187 	if (*path == NULL)
188 		return NULL;
189 	start = *path;
190 	for (p = start; *p && *p != ':' && *p != '%'; p++)
191 		; /* nothing */
192 	len = p - start + strlen(name) + 2;	/* "2" is for '/' and '\0' */
193 	while (stackblocksize() < len)
194 		growstackblock();
195 	q = stackblock();
196 	if (p != start) {
197 		memcpy(q, start, p - start);
198 		q += p - start;
199 		*q++ = '/';
200 	}
201 	strcpy(q, name);
202 	pathopt = NULL;
203 	if (*p == '%') {
204 		pathopt = ++p;
205 		while (*p && *p != ':')  p++;
206 	}
207 	if (*p == ':')
208 		*path = p + 1;
209 	else
210 		*path = NULL;
211 	return stalloc(len);
212 }
213 
214 
215 
216 /*** Command hashing code ***/
217 
218 
219 int
220 hashcmd(int argc __unused, char **argv __unused)
221 {
222 	struct tblentry **pp;
223 	struct tblentry *cmdp;
224 	int c;
225 	int verbose;
226 	struct cmdentry entry;
227 	char *name;
228 
229 	verbose = 0;
230 	while ((c = nextopt("rv")) != '\0') {
231 		if (c == 'r') {
232 			clearcmdentry(0);
233 		} else if (c == 'v') {
234 			verbose++;
235 		}
236 	}
237 	if (*argptr == NULL) {
238 		for (pp = cmdtable ; pp < &cmdtable[CMDTABLESIZE] ; pp++) {
239 			for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
240 				if (cmdp->cmdtype == CMDNORMAL)
241 					printentry(cmdp, verbose);
242 			}
243 		}
244 		return 0;
245 	}
246 	while ((name = *argptr) != NULL) {
247 		if ((cmdp = cmdlookup(name, 0)) != NULL
248 		 && (cmdp->cmdtype == CMDNORMAL
249 		     || (cmdp->cmdtype == CMDBUILTIN && builtinloc >= 0)))
250 			delete_cmd_entry();
251 		find_command(name, &entry, 1, pathval());
252 		if (verbose) {
253 			if (entry.cmdtype != CMDUNKNOWN) {	/* if no error msg */
254 				cmdp = cmdlookup(name, 0);
255 				if (cmdp != NULL)
256 					printentry(cmdp, verbose);
257 				else
258 					outfmt(&errout, "%s: not found\n", name);
259 			}
260 			flushall();
261 		}
262 		argptr++;
263 	}
264 	return 0;
265 }
266 
267 
268 STATIC void
269 printentry(struct tblentry *cmdp, int verbose)
270 {
271 	int index;
272 	char *path;
273 	char *name;
274 
275 	if (cmdp->cmdtype == CMDNORMAL) {
276 		index = cmdp->param.index;
277 		path = pathval();
278 		do {
279 			name = padvance(&path, cmdp->cmdname);
280 			stunalloc(name);
281 		} while (--index >= 0);
282 		out1str(name);
283 	} else if (cmdp->cmdtype == CMDBUILTIN) {
284 		out1fmt("builtin %s", cmdp->cmdname);
285 	} else if (cmdp->cmdtype == CMDFUNCTION) {
286 		out1fmt("function %s", cmdp->cmdname);
287 		if (verbose) {
288 			INTOFF;
289 			name = commandtext(getfuncnode(cmdp->param.func));
290 			out1c(' ');
291 			out1str(name);
292 			ckfree(name);
293 			INTON;
294 		}
295 #ifdef DEBUG
296 	} else {
297 		error("internal error: cmdtype %d", cmdp->cmdtype);
298 #endif
299 	}
300 	if (cmdp->rehash)
301 		out1c('*');
302 	out1c('\n');
303 }
304 
305 
306 
307 /*
308  * Resolve a command name.  If you change this routine, you may have to
309  * change the shellexec routine as well.
310  */
311 
312 void
313 find_command(char *name, struct cmdentry *entry, int printerr, char *path)
314 {
315 	struct tblentry *cmdp;
316 	int index;
317 	int prev;
318 	char *fullname;
319 	struct stat statb;
320 	int e;
321 	int i;
322 	int spec;
323 
324 	/* If name contains a slash, don't use the hash table */
325 	if (strchr(name, '/') != NULL) {
326 		entry->cmdtype = CMDNORMAL;
327 		entry->u.index = 0;
328 		return;
329 	}
330 
331 	/* If name is in the table, and not invalidated by cd, we're done */
332 	if ((cmdp = cmdlookup(name, 0)) != NULL && cmdp->rehash == 0)
333 		goto success;
334 
335 	/* If %builtin not in path, check for builtin next */
336 	if (builtinloc < 0 && (i = find_builtin(name, &spec)) >= 0) {
337 		INTOFF;
338 		cmdp = cmdlookup(name, 1);
339 		cmdp->cmdtype = CMDBUILTIN;
340 		cmdp->param.index = i;
341 		cmdp->special = spec;
342 		INTON;
343 		goto success;
344 	}
345 
346 	/* We have to search path. */
347 	prev = -1;		/* where to start */
348 	if (cmdp) {		/* doing a rehash */
349 		if (cmdp->cmdtype == CMDBUILTIN)
350 			prev = builtinloc;
351 		else
352 			prev = cmdp->param.index;
353 	}
354 
355 	e = ENOENT;
356 	index = -1;
357 loop:
358 	while ((fullname = padvance(&path, name)) != NULL) {
359 		stunalloc(fullname);
360 		index++;
361 		if (pathopt) {
362 			if (prefix("builtin", pathopt)) {
363 				if ((i = find_builtin(name, &spec)) < 0)
364 					goto loop;
365 				INTOFF;
366 				cmdp = cmdlookup(name, 1);
367 				cmdp->cmdtype = CMDBUILTIN;
368 				cmdp->param.index = i;
369 				cmdp->special = spec;
370 				INTON;
371 				goto success;
372 			} else if (prefix("func", pathopt)) {
373 				/* handled below */
374 			} else {
375 				goto loop;	/* ignore unimplemented options */
376 			}
377 		}
378 		/* if rehash, don't redo absolute path names */
379 		if (fullname[0] == '/' && index <= prev) {
380 			if (index < prev)
381 				goto loop;
382 			TRACE(("searchexec \"%s\": no change\n", name));
383 			goto success;
384 		}
385 		if (stat(fullname, &statb) < 0) {
386 			if (errno != ENOENT && errno != ENOTDIR)
387 				e = errno;
388 			goto loop;
389 		}
390 		e = EACCES;	/* if we fail, this will be the error */
391 		if (!S_ISREG(statb.st_mode))
392 			goto loop;
393 		if (pathopt) {		/* this is a %func directory */
394 			stalloc(strlen(fullname) + 1);
395 			readcmdfile(fullname);
396 			if ((cmdp = cmdlookup(name, 0)) == NULL || cmdp->cmdtype != CMDFUNCTION)
397 				error("%s not defined in %s", name, fullname);
398 			stunalloc(fullname);
399 			goto success;
400 		}
401 #ifdef notdef
402 		if (statb.st_uid == geteuid()) {
403 			if ((statb.st_mode & 0100) == 0)
404 				goto loop;
405 		} else if (statb.st_gid == getegid()) {
406 			if ((statb.st_mode & 010) == 0)
407 				goto loop;
408 		} else {
409 			if ((statb.st_mode & 01) == 0)
410 				goto loop;
411 		}
412 #endif
413 		TRACE(("searchexec \"%s\" returns \"%s\"\n", name, fullname));
414 		INTOFF;
415 		cmdp = cmdlookup(name, 1);
416 		cmdp->cmdtype = CMDNORMAL;
417 		cmdp->param.index = index;
418 		INTON;
419 		goto success;
420 	}
421 
422 	/* We failed.  If there was an entry for this command, delete it */
423 	if (cmdp)
424 		delete_cmd_entry();
425 	if (printerr) {
426 		if (e == ENOENT || e == ENOTDIR)
427 			outfmt(out2, "%s: not found\n", name);
428 		else
429 			outfmt(out2, "%s: %s\n", name, strerror(e));
430 	}
431 	entry->cmdtype = CMDUNKNOWN;
432 	entry->u.index = 0;
433 	return;
434 
435 success:
436 	cmdp->rehash = 0;
437 	entry->cmdtype = cmdp->cmdtype;
438 	entry->u = cmdp->param;
439 	entry->special = cmdp->special;
440 }
441 
442 
443 
444 /*
445  * Search the table of builtin commands.
446  */
447 
448 int
449 find_builtin(char *name, int *special)
450 {
451 	const struct builtincmd *bp;
452 
453 	for (bp = builtincmd ; bp->name ; bp++) {
454 		if (*bp->name == *name && equal(bp->name, name)) {
455 			*special = bp->special;
456 			return bp->code;
457 		}
458 	}
459 	return -1;
460 }
461 
462 
463 
464 /*
465  * Called when a cd is done.  Marks all commands so the next time they
466  * are executed they will be rehashed.
467  */
468 
469 void
470 hashcd(void)
471 {
472 	struct tblentry **pp;
473 	struct tblentry *cmdp;
474 
475 	for (pp = cmdtable ; pp < &cmdtable[CMDTABLESIZE] ; pp++) {
476 		for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
477 			if (cmdp->cmdtype == CMDNORMAL
478 			 || (cmdp->cmdtype == CMDBUILTIN && builtinloc >= 0))
479 				cmdp->rehash = 1;
480 		}
481 	}
482 }
483 
484 
485 
486 /*
487  * Called before PATH is changed.  The argument is the new value of PATH;
488  * pathval() still returns the old value at this point.  Called with
489  * interrupts off.
490  */
491 
492 void
493 changepath(const char *newval)
494 {
495 	const char *old, *new;
496 	int index;
497 	int firstchange;
498 	int bltin;
499 
500 	old = pathval();
501 	new = newval;
502 	firstchange = 9999;	/* assume no change */
503 	index = 0;
504 	bltin = -1;
505 	for (;;) {
506 		if (*old != *new) {
507 			firstchange = index;
508 			if ((*old == '\0' && *new == ':')
509 			 || (*old == ':' && *new == '\0'))
510 				firstchange++;
511 			old = new;	/* ignore subsequent differences */
512 		}
513 		if (*new == '\0')
514 			break;
515 		if (*new == '%' && bltin < 0 && prefix("builtin", new + 1))
516 			bltin = index;
517 		if (*new == ':') {
518 			index++;
519 		}
520 		new++, old++;
521 	}
522 	if (builtinloc < 0 && bltin >= 0)
523 		builtinloc = bltin;		/* zap builtins */
524 	if (builtinloc >= 0 && bltin < 0)
525 		firstchange = 0;
526 	clearcmdentry(firstchange);
527 	builtinloc = bltin;
528 }
529 
530 
531 /*
532  * Clear out command entries.  The argument specifies the first entry in
533  * PATH which has changed.
534  */
535 
536 void
537 clearcmdentry(int firstchange)
538 {
539 	struct tblentry **tblp;
540 	struct tblentry **pp;
541 	struct tblentry *cmdp;
542 
543 	INTOFF;
544 	for (tblp = cmdtable ; tblp < &cmdtable[CMDTABLESIZE] ; tblp++) {
545 		pp = tblp;
546 		while ((cmdp = *pp) != NULL) {
547 			if ((cmdp->cmdtype == CMDNORMAL &&
548 			     cmdp->param.index >= firstchange)
549 			 || (cmdp->cmdtype == CMDBUILTIN &&
550 			     builtinloc >= firstchange)) {
551 				*pp = cmdp->next;
552 				ckfree(cmdp);
553 			} else {
554 				pp = &cmdp->next;
555 			}
556 		}
557 	}
558 	INTON;
559 }
560 
561 
562 /*
563  * Delete all functions.
564  */
565 
566 #ifdef mkinit
567 MKINIT void deletefuncs(void);
568 
569 SHELLPROC {
570 	deletefuncs();
571 }
572 #endif
573 
574 void
575 deletefuncs(void)
576 {
577 	struct tblentry **tblp;
578 	struct tblentry **pp;
579 	struct tblentry *cmdp;
580 
581 	INTOFF;
582 	for (tblp = cmdtable ; tblp < &cmdtable[CMDTABLESIZE] ; tblp++) {
583 		pp = tblp;
584 		while ((cmdp = *pp) != NULL) {
585 			if (cmdp->cmdtype == CMDFUNCTION) {
586 				*pp = cmdp->next;
587 				unreffunc(cmdp->param.func);
588 				ckfree(cmdp);
589 			} else {
590 				pp = &cmdp->next;
591 			}
592 		}
593 	}
594 	INTON;
595 }
596 
597 
598 
599 /*
600  * Locate a command in the command hash table.  If "add" is nonzero,
601  * add the command to the table if it is not already present.  The
602  * variable "lastcmdentry" is set to point to the address of the link
603  * pointing to the entry, so that delete_cmd_entry can delete the
604  * entry.
605  */
606 
607 STATIC struct tblentry **lastcmdentry;
608 
609 
610 STATIC struct tblentry *
611 cmdlookup(char *name, int add)
612 {
613 	int hashval;
614 	char *p;
615 	struct tblentry *cmdp;
616 	struct tblentry **pp;
617 
618 	p = name;
619 	hashval = *p << 4;
620 	while (*p)
621 		hashval += *p++;
622 	hashval &= 0x7FFF;
623 	pp = &cmdtable[hashval % CMDTABLESIZE];
624 	for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
625 		if (equal(cmdp->cmdname, name))
626 			break;
627 		pp = &cmdp->next;
628 	}
629 	if (add && cmdp == NULL) {
630 		INTOFF;
631 		cmdp = *pp = ckmalloc(sizeof (struct tblentry) - ARB
632 					+ strlen(name) + 1);
633 		cmdp->next = NULL;
634 		cmdp->cmdtype = CMDUNKNOWN;
635 		cmdp->rehash = 0;
636 		strcpy(cmdp->cmdname, name);
637 		INTON;
638 	}
639 	lastcmdentry = pp;
640 	return cmdp;
641 }
642 
643 /*
644  * Delete the command entry returned on the last lookup.
645  */
646 
647 STATIC void
648 delete_cmd_entry(void)
649 {
650 	struct tblentry *cmdp;
651 
652 	INTOFF;
653 	cmdp = *lastcmdentry;
654 	*lastcmdentry = cmdp->next;
655 	ckfree(cmdp);
656 	INTON;
657 }
658 
659 
660 
661 /*
662  * Add a new command entry, replacing any existing command entry for
663  * the same name.
664  */
665 
666 void
667 addcmdentry(char *name, struct cmdentry *entry)
668 {
669 	struct tblentry *cmdp;
670 
671 	INTOFF;
672 	cmdp = cmdlookup(name, 1);
673 	if (cmdp->cmdtype == CMDFUNCTION) {
674 		unreffunc(cmdp->param.func);
675 	}
676 	cmdp->cmdtype = entry->cmdtype;
677 	cmdp->param = entry->u;
678 	INTON;
679 }
680 
681 
682 /*
683  * Define a shell function.
684  */
685 
686 void
687 defun(char *name, union node *func)
688 {
689 	struct cmdentry entry;
690 
691 	INTOFF;
692 	entry.cmdtype = CMDFUNCTION;
693 	entry.u.func = copyfunc(func);
694 	addcmdentry(name, &entry);
695 	INTON;
696 }
697 
698 
699 /*
700  * Delete a function if it exists.
701  */
702 
703 int
704 unsetfunc(char *name)
705 {
706 	struct tblentry *cmdp;
707 
708 	if ((cmdp = cmdlookup(name, 0)) != NULL && cmdp->cmdtype == CMDFUNCTION) {
709 		unreffunc(cmdp->param.func);
710 		delete_cmd_entry();
711 		return (0);
712 	}
713 	return (0);
714 }
715 
716 /*
717  * Shared code for the following builtin commands:
718  *    type, command -v, command -V
719  */
720 
721 int
722 typecmd_impl(int argc, char **argv, int cmd)
723 {
724 	struct cmdentry entry;
725 	struct tblentry *cmdp;
726 	char **pp;
727 	struct alias *ap;
728 	int i;
729 	int error = 0;
730 	extern char *const parsekwd[];
731 
732 	for (i = 1; i < argc; i++) {
733 		/* First look at the keywords */
734 		for (pp = (char **)parsekwd; *pp; pp++)
735 			if (**pp == *argv[i] && equal(*pp, argv[i]))
736 				break;
737 
738 		if (*pp) {
739 			if (cmd == TYPECMD_SMALLV)
740 				out1fmt("%s\n", argv[i]);
741 			else
742 				out1fmt("%s is a shell keyword\n", argv[i]);
743 			continue;
744 		}
745 
746 		/* Then look at the aliases */
747 		if ((ap = lookupalias(argv[i], 1)) != NULL) {
748 			if (cmd == TYPECMD_SMALLV)
749 				out1fmt("alias %s='%s'\n", argv[i], ap->val);
750 			else
751 				out1fmt("%s is an alias for %s\n", argv[i],
752 				    ap->val);
753 			continue;
754 		}
755 
756 		/* Then check if it is a tracked alias */
757 		if ((cmdp = cmdlookup(argv[i], 0)) != NULL) {
758 			entry.cmdtype = cmdp->cmdtype;
759 			entry.u = cmdp->param;
760 			entry.special = cmdp->special;
761 		}
762 		else {
763 			/* Finally use brute force */
764 			find_command(argv[i], &entry, 0, pathval());
765 		}
766 
767 		switch (entry.cmdtype) {
768 		case CMDNORMAL: {
769 			if (strchr(argv[i], '/') == NULL) {
770 				char *path = pathval(), *name;
771 				int j = entry.u.index;
772 				do {
773 					name = padvance(&path, argv[i]);
774 					stunalloc(name);
775 				} while (--j >= 0);
776 				if (cmd == TYPECMD_SMALLV)
777 					out1fmt("%s\n", name);
778 				else
779 					out1fmt("%s is%s %s\n", argv[i],
780 					    (cmdp && cmd == TYPECMD_TYPE) ?
781 						" a tracked alias for" : "",
782 					    name);
783 			} else {
784 				if (eaccess(argv[i], X_OK) == 0) {
785 					if (cmd == TYPECMD_SMALLV)
786 						out1fmt("%s\n", argv[i]);
787 					else
788 						out1fmt("%s is %s\n", argv[i],
789 						    argv[i]);
790 				} else {
791 					if (cmd != TYPECMD_SMALLV)
792 						outfmt(out2, "%s: %s\n",
793 						    argv[i], strerror(errno));
794 					error |= 127;
795 				}
796 			}
797 			break;
798 		}
799 		case CMDFUNCTION:
800 			if (cmd == TYPECMD_SMALLV)
801 				out1fmt("%s\n", argv[i]);
802 			else
803 				out1fmt("%s is a shell function\n", argv[i]);
804 			break;
805 
806 		case CMDBUILTIN:
807 			if (cmd == TYPECMD_SMALLV)
808 				out1fmt("%s\n", argv[i]);
809 			else if (entry.special)
810 				out1fmt("%s is a special shell builtin\n",
811 				    argv[i]);
812 			else
813 				out1fmt("%s is a shell builtin\n", argv[i]);
814 			break;
815 
816 		default:
817 			if (cmd != TYPECMD_SMALLV)
818 				outfmt(out2, "%s: not found\n", argv[i]);
819 			error |= 127;
820 			break;
821 		}
822 	}
823 	return error;
824 }
825 
826 /*
827  * Locate and print what a word is...
828  */
829 
830 int
831 typecmd(int argc, char **argv)
832 {
833 	return typecmd_impl(argc, argv, TYPECMD_TYPE);
834 }
835