xref: /freebsd/bin/sh/exec.c (revision 260fc3f4d26a8b25e824c0baa4a77b0f4cada631)
14b88c807SRodney W. Grimes /*-
24b88c807SRodney W. Grimes  * Copyright (c) 1991, 1993
34b88c807SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
44b88c807SRodney W. Grimes  *
54b88c807SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
64b88c807SRodney W. Grimes  * Kenneth Almquist.
74b88c807SRodney W. Grimes  *
84b88c807SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
94b88c807SRodney W. Grimes  * modification, are permitted provided that the following conditions
104b88c807SRodney W. Grimes  * are met:
114b88c807SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
124b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
134b88c807SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
144b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
154b88c807SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
164b88c807SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
174b88c807SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
184b88c807SRodney W. Grimes  *    without specific prior written permission.
194b88c807SRodney W. Grimes  *
204b88c807SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
214b88c807SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
224b88c807SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
234b88c807SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
244b88c807SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
254b88c807SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
264b88c807SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
274b88c807SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
284b88c807SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
294b88c807SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
304b88c807SRodney W. Grimes  * SUCH DAMAGE.
314b88c807SRodney W. Grimes  */
324b88c807SRodney W. Grimes 
334b88c807SRodney W. Grimes #ifndef lint
343d7b5b93SPhilippe Charnier #if 0
353d7b5b93SPhilippe Charnier static char sccsid[] = "@(#)exec.c	8.4 (Berkeley) 6/8/95";
363d7b5b93SPhilippe Charnier #endif
374b88c807SRodney W. Grimes #endif /* not lint */
382749b141SDavid E. O'Brien #include <sys/cdefs.h>
392749b141SDavid E. O'Brien __FBSDID("$FreeBSD$");
404b88c807SRodney W. Grimes 
41aa9caaf6SPeter Wemm #include <sys/types.h>
42aa9caaf6SPeter Wemm #include <sys/stat.h>
43aa9caaf6SPeter Wemm #include <unistd.h>
44aa9caaf6SPeter Wemm #include <fcntl.h>
45aa9caaf6SPeter Wemm #include <errno.h>
463835f47cSJilles Tjoelker #include <paths.h>
47aa9caaf6SPeter Wemm #include <stdlib.h>
48aa9caaf6SPeter Wemm 
494b88c807SRodney W. Grimes /*
504b88c807SRodney W. Grimes  * When commands are first encountered, they are entered in a hash table.
514b88c807SRodney W. Grimes  * This ensures that a full path search will not have to be done for them
524b88c807SRodney W. Grimes  * on each invocation.
534b88c807SRodney W. Grimes  *
544b88c807SRodney W. Grimes  * We should investigate converting to a linear search, even though that
554b88c807SRodney W. Grimes  * would make the command name "hash" a misnomer.
564b88c807SRodney W. Grimes  */
574b88c807SRodney W. Grimes 
584b88c807SRodney W. Grimes #include "shell.h"
594b88c807SRodney W. Grimes #include "main.h"
604b88c807SRodney W. Grimes #include "nodes.h"
614b88c807SRodney W. Grimes #include "parser.h"
624b88c807SRodney W. Grimes #include "redir.h"
634b88c807SRodney W. Grimes #include "eval.h"
644b88c807SRodney W. Grimes #include "exec.h"
654b88c807SRodney W. Grimes #include "builtins.h"
664b88c807SRodney W. Grimes #include "var.h"
674b88c807SRodney W. Grimes #include "options.h"
684b88c807SRodney W. Grimes #include "input.h"
694b88c807SRodney W. Grimes #include "output.h"
704b88c807SRodney W. Grimes #include "syntax.h"
714b88c807SRodney W. Grimes #include "memalloc.h"
724b88c807SRodney W. Grimes #include "error.h"
734b88c807SRodney W. Grimes #include "init.h"
744b88c807SRodney W. Grimes #include "mystring.h"
75aa9caaf6SPeter Wemm #include "show.h"
764b88c807SRodney W. Grimes #include "jobs.h"
7776ad65f7SSteve Price #include "alias.h"
784b88c807SRodney W. Grimes 
794b88c807SRodney W. Grimes 
804b88c807SRodney W. Grimes #define CMDTABLESIZE 31		/* should be prime */
814b88c807SRodney W. Grimes #define ARB 1			/* actual size determined at run time */
824b88c807SRodney W. Grimes 
834b88c807SRodney W. Grimes 
844b88c807SRodney W. Grimes 
854b88c807SRodney W. Grimes struct tblentry {
864b88c807SRodney W. Grimes 	struct tblentry *next;	/* next entry in hash chain */
874b88c807SRodney W. Grimes 	union param param;	/* definition of builtin function */
8885170a4aSStefan Farfeleder 	int special;		/* flag for special builtin commands */
894b88c807SRodney W. Grimes 	short cmdtype;		/* index identifying command */
904b88c807SRodney W. Grimes 	char rehash;		/* if set, cd done since entry created */
914b88c807SRodney W. Grimes 	char cmdname[ARB];	/* name of command */
924b88c807SRodney W. Grimes };
934b88c807SRodney W. Grimes 
944b88c807SRodney W. Grimes 
95aa7b6f82SDavid E. O'Brien static struct tblentry *cmdtable[CMDTABLESIZE];
96ab0a2172SSteve Price int exerrno = 0;			/* Last exec error */
974b88c807SRodney W. Grimes 
984b88c807SRodney W. Grimes 
9988328642SDavid E. O'Brien static void tryexec(char *, char **, char **);
10088328642SDavid E. O'Brien static void printentry(struct tblentry *, int);
10188328642SDavid E. O'Brien static struct tblentry *cmdlookup(const char *, int);
10288328642SDavid E. O'Brien static void delete_cmd_entry(void);
103*260fc3f4SJilles Tjoelker static void addcmdentry(const char *, struct cmdentry *);
1044b88c807SRodney W. Grimes 
1054b88c807SRodney W. Grimes 
1064b88c807SRodney W. Grimes 
1074b88c807SRodney W. Grimes /*
1084b88c807SRodney W. Grimes  * Exec a program.  Never returns.  If you change this routine, you may
1094b88c807SRodney W. Grimes  * have to change the find_command routine as well.
1103835f47cSJilles Tjoelker  *
1113835f47cSJilles Tjoelker  * The argv array may be changed and element argv[-1] should be writable.
1124b88c807SRodney W. Grimes  */
1134b88c807SRodney W. Grimes 
1144b88c807SRodney W. Grimes void
115384aedabSJilles Tjoelker shellexec(char **argv, char **envp, const char *path, int idx)
1164b88c807SRodney W. Grimes {
1174b88c807SRodney W. Grimes 	char *cmdname;
1184b88c807SRodney W. Grimes 	int e;
1194b88c807SRodney W. Grimes 
1204b88c807SRodney W. Grimes 	if (strchr(argv[0], '/') != NULL) {
1214b88c807SRodney W. Grimes 		tryexec(argv[0], argv, envp);
1224b88c807SRodney W. Grimes 		e = errno;
1234b88c807SRodney W. Grimes 	} else {
1244b88c807SRodney W. Grimes 		e = ENOENT;
1254b88c807SRodney W. Grimes 		while ((cmdname = padvance(&path, argv[0])) != NULL) {
126384aedabSJilles Tjoelker 			if (--idx < 0 && pathopt == NULL) {
1274b88c807SRodney W. Grimes 				tryexec(cmdname, argv, envp);
1284b88c807SRodney W. Grimes 				if (errno != ENOENT && errno != ENOTDIR)
1294b88c807SRodney W. Grimes 					e = errno;
130604e8224SJilles Tjoelker 				if (e == ENOEXEC)
131604e8224SJilles Tjoelker 					break;
1324b88c807SRodney W. Grimes 			}
1334b88c807SRodney W. Grimes 			stunalloc(cmdname);
1344b88c807SRodney W. Grimes 		}
1354b88c807SRodney W. Grimes 	}
136ab0a2172SSteve Price 
137ab0a2172SSteve Price 	/* Map to POSIX errors */
138834d160bSJilles Tjoelker 	if (e == ENOENT || e == ENOTDIR) {
139ab0a2172SSteve Price 		exerrno = 127;
1408c395729STim J. Robbins 		exerror(EXEXEC, "%s: not found", argv[0]);
141834d160bSJilles Tjoelker 	} else {
142834d160bSJilles Tjoelker 		exerrno = 126;
1431c59560dSTim J. Robbins 		exerror(EXEXEC, "%s: %s", argv[0], strerror(e));
1444b88c807SRodney W. Grimes 	}
145834d160bSJilles Tjoelker }
1464b88c807SRodney W. Grimes 
1474b88c807SRodney W. Grimes 
14888328642SDavid E. O'Brien static void
1495134c3f7SWarner Losh tryexec(char *cmd, char **argv, char **envp)
1504b88c807SRodney W. Grimes {
151604e8224SJilles Tjoelker 	int e, in;
152604e8224SJilles Tjoelker 	ssize_t n;
153604e8224SJilles Tjoelker 	char buf[256];
1544b88c807SRodney W. Grimes 
1554b88c807SRodney W. Grimes 	execve(cmd, argv, envp);
1564b88c807SRodney W. Grimes 	e = errno;
1574b88c807SRodney W. Grimes 	if (e == ENOEXEC) {
158604e8224SJilles Tjoelker 		INTOFF;
159604e8224SJilles Tjoelker 		in = open(cmd, O_RDONLY | O_NONBLOCK);
160604e8224SJilles Tjoelker 		if (in != -1) {
161604e8224SJilles Tjoelker 			n = pread(in, buf, sizeof buf, 0);
162604e8224SJilles Tjoelker 			close(in);
163604e8224SJilles Tjoelker 			if (n > 0 && memchr(buf, '\0', n) != NULL) {
164604e8224SJilles Tjoelker 				errno = ENOEXEC;
165604e8224SJilles Tjoelker 				return;
166604e8224SJilles Tjoelker 			}
167604e8224SJilles Tjoelker 		}
1683835f47cSJilles Tjoelker 		*argv = cmd;
1693835f47cSJilles Tjoelker 		*--argv = _PATH_BSHELL;
1703835f47cSJilles Tjoelker 		execve(_PATH_BSHELL, argv, envp);
1714b88c807SRodney W. Grimes 	}
1724b88c807SRodney W. Grimes 	errno = e;
1734b88c807SRodney W. Grimes }
1744b88c807SRodney W. Grimes 
1754b88c807SRodney W. Grimes /*
1764b88c807SRodney W. Grimes  * Do a path search.  The variable path (passed by reference) should be
1774b88c807SRodney W. Grimes  * set to the start of the path before the first call; padvance will update
1784b88c807SRodney W. Grimes  * this value as it proceeds.  Successive calls to padvance will return
1794b88c807SRodney W. Grimes  * the possible path expansions in sequence.  If an option (indicated by
1804b88c807SRodney W. Grimes  * a percent sign) appears in the path entry then the global variable
1814b88c807SRodney W. Grimes  * pathopt will be set to point to it; otherwise pathopt will be set to
1824b88c807SRodney W. Grimes  * NULL.
1834b88c807SRodney W. Grimes  */
1844b88c807SRodney W. Grimes 
1852cac6e36SJilles Tjoelker const char *pathopt;
1864b88c807SRodney W. Grimes 
1874b88c807SRodney W. Grimes char *
1882cac6e36SJilles Tjoelker padvance(const char **path, const char *name)
1894b88c807SRodney W. Grimes {
1902cac6e36SJilles Tjoelker 	const char *p, *start;
1912cac6e36SJilles Tjoelker 	char *q;
1924b88c807SRodney W. Grimes 	int len;
1934b88c807SRodney W. Grimes 
1944b88c807SRodney W. Grimes 	if (*path == NULL)
1954b88c807SRodney W. Grimes 		return NULL;
1964b88c807SRodney W. Grimes 	start = *path;
19735f2d3b6SRalf S. Engelschall 	for (p = start; *p && *p != ':' && *p != '%'; p++)
19835f2d3b6SRalf S. Engelschall 		; /* nothing */
1994b88c807SRodney W. Grimes 	len = p - start + strlen(name) + 2;	/* "2" is for '/' and '\0' */
200d8f32e72SJilles Tjoelker 	STARTSTACKSTR(q);
201d8f32e72SJilles Tjoelker 	CHECKSTRSPACE(len, q);
2024b88c807SRodney W. Grimes 	if (p != start) {
203aa9caaf6SPeter Wemm 		memcpy(q, start, p - start);
2044b88c807SRodney W. Grimes 		q += p - start;
2054b88c807SRodney W. Grimes 		*q++ = '/';
2064b88c807SRodney W. Grimes 	}
2074b88c807SRodney W. Grimes 	strcpy(q, name);
2084b88c807SRodney W. Grimes 	pathopt = NULL;
2094b88c807SRodney W. Grimes 	if (*p == '%') {
2104b88c807SRodney W. Grimes 		pathopt = ++p;
2114b88c807SRodney W. Grimes 		while (*p && *p != ':')  p++;
2124b88c807SRodney W. Grimes 	}
2134b88c807SRodney W. Grimes 	if (*p == ':')
2144b88c807SRodney W. Grimes 		*path = p + 1;
2154b88c807SRodney W. Grimes 	else
2164b88c807SRodney W. Grimes 		*path = NULL;
2174b88c807SRodney W. Grimes 	return stalloc(len);
2184b88c807SRodney W. Grimes }
2194b88c807SRodney W. Grimes 
2204b88c807SRodney W. Grimes 
2214b88c807SRodney W. Grimes 
2224b88c807SRodney W. Grimes /*** Command hashing code ***/
2234b88c807SRodney W. Grimes 
2244b88c807SRodney W. Grimes 
225aa9caaf6SPeter Wemm int
2265134c3f7SWarner Losh hashcmd(int argc __unused, char **argv __unused)
227aa9caaf6SPeter Wemm {
2284b88c807SRodney W. Grimes 	struct tblentry **pp;
2294b88c807SRodney W. Grimes 	struct tblentry *cmdp;
2304b88c807SRodney W. Grimes 	int c;
2314b88c807SRodney W. Grimes 	int verbose;
2324b88c807SRodney W. Grimes 	struct cmdentry entry;
2334b88c807SRodney W. Grimes 	char *name;
2344b88c807SRodney W. Grimes 
2354b88c807SRodney W. Grimes 	verbose = 0;
2364b88c807SRodney W. Grimes 	while ((c = nextopt("rv")) != '\0') {
2374b88c807SRodney W. Grimes 		if (c == 'r') {
238c059d822SJilles Tjoelker 			clearcmdentry();
2394b88c807SRodney W. Grimes 		} else if (c == 'v') {
2404b88c807SRodney W. Grimes 			verbose++;
2414b88c807SRodney W. Grimes 		}
2424b88c807SRodney W. Grimes 	}
2434b88c807SRodney W. Grimes 	if (*argptr == NULL) {
2444b88c807SRodney W. Grimes 		for (pp = cmdtable ; pp < &cmdtable[CMDTABLESIZE] ; pp++) {
2454b88c807SRodney W. Grimes 			for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
24683952a11STim J. Robbins 				if (cmdp->cmdtype == CMDNORMAL)
2474b88c807SRodney W. Grimes 					printentry(cmdp, verbose);
2484b88c807SRodney W. Grimes 			}
2494b88c807SRodney W. Grimes 		}
2504b88c807SRodney W. Grimes 		return 0;
2514b88c807SRodney W. Grimes 	}
2524b88c807SRodney W. Grimes 	while ((name = *argptr) != NULL) {
2534b88c807SRodney W. Grimes 		if ((cmdp = cmdlookup(name, 0)) != NULL
2544b45b49aSJilles Tjoelker 		 && cmdp->cmdtype == CMDNORMAL)
2554b88c807SRodney W. Grimes 			delete_cmd_entry();
256c848bc18SJilles Tjoelker 		find_command(name, &entry, DO_ERR, pathval());
2574b88c807SRodney W. Grimes 		if (verbose) {
2584b88c807SRodney W. Grimes 			if (entry.cmdtype != CMDUNKNOWN) {	/* if no error msg */
2594b88c807SRodney W. Grimes 				cmdp = cmdlookup(name, 0);
2604c7e4a54SGeorge C A Reid 				if (cmdp != NULL)
2614b88c807SRodney W. Grimes 					printentry(cmdp, verbose);
2624c7e4a54SGeorge C A Reid 				else
263f7cc73afSJilles Tjoelker 					outfmt(out2, "%s: not found\n", name);
2644b88c807SRodney W. Grimes 			}
2654b88c807SRodney W. Grimes 			flushall();
2664b88c807SRodney W. Grimes 		}
2674b88c807SRodney W. Grimes 		argptr++;
2684b88c807SRodney W. Grimes 	}
2694b88c807SRodney W. Grimes 	return 0;
2704b88c807SRodney W. Grimes }
2714b88c807SRodney W. Grimes 
2724b88c807SRodney W. Grimes 
27388328642SDavid E. O'Brien static void
2745134c3f7SWarner Losh printentry(struct tblentry *cmdp, int verbose)
2754b88c807SRodney W. Grimes {
276384aedabSJilles Tjoelker 	int idx;
2772cac6e36SJilles Tjoelker 	const char *path;
2784b88c807SRodney W. Grimes 	char *name;
2794b88c807SRodney W. Grimes 
2804b88c807SRodney W. Grimes 	if (cmdp->cmdtype == CMDNORMAL) {
281384aedabSJilles Tjoelker 		idx = cmdp->param.index;
2824b88c807SRodney W. Grimes 		path = pathval();
2834b88c807SRodney W. Grimes 		do {
2844b88c807SRodney W. Grimes 			name = padvance(&path, cmdp->cmdname);
2854b88c807SRodney W. Grimes 			stunalloc(name);
286384aedabSJilles Tjoelker 		} while (--idx >= 0);
2874b88c807SRodney W. Grimes 		out1str(name);
2884b88c807SRodney W. Grimes 	} else if (cmdp->cmdtype == CMDBUILTIN) {
2894b88c807SRodney W. Grimes 		out1fmt("builtin %s", cmdp->cmdname);
2904b88c807SRodney W. Grimes 	} else if (cmdp->cmdtype == CMDFUNCTION) {
2914b88c807SRodney W. Grimes 		out1fmt("function %s", cmdp->cmdname);
2924b88c807SRodney W. Grimes 		if (verbose) {
2934b88c807SRodney W. Grimes 			INTOFF;
294e16947f8SJilles Tjoelker 			name = commandtext(getfuncnode(cmdp->param.func));
2954b88c807SRodney W. Grimes 			out1c(' ');
2964b88c807SRodney W. Grimes 			out1str(name);
2974b88c807SRodney W. Grimes 			ckfree(name);
2984b88c807SRodney W. Grimes 			INTON;
2994b88c807SRodney W. Grimes 		}
3004b88c807SRodney W. Grimes #ifdef DEBUG
3014b88c807SRodney W. Grimes 	} else {
3024b88c807SRodney W. Grimes 		error("internal error: cmdtype %d", cmdp->cmdtype);
3034b88c807SRodney W. Grimes #endif
3044b88c807SRodney W. Grimes 	}
3054b88c807SRodney W. Grimes 	if (cmdp->rehash)
3064b88c807SRodney W. Grimes 		out1c('*');
3074b88c807SRodney W. Grimes 	out1c('\n');
3084b88c807SRodney W. Grimes }
3094b88c807SRodney W. Grimes 
3104b88c807SRodney W. Grimes 
3114b88c807SRodney W. Grimes 
3124b88c807SRodney W. Grimes /*
3134b88c807SRodney W. Grimes  * Resolve a command name.  If you change this routine, you may have to
3144b88c807SRodney W. Grimes  * change the shellexec routine as well.
3154b88c807SRodney W. Grimes  */
3164b88c807SRodney W. Grimes 
3174b88c807SRodney W. Grimes void
318c848bc18SJilles Tjoelker find_command(const char *name, struct cmdentry *entry, int act,
3192cac6e36SJilles Tjoelker     const char *path)
3204b88c807SRodney W. Grimes {
321c848bc18SJilles Tjoelker 	struct tblentry *cmdp, loc_cmd;
322384aedabSJilles Tjoelker 	int idx;
3234b88c807SRodney W. Grimes 	int prev;
3244b88c807SRodney W. Grimes 	char *fullname;
3254b88c807SRodney W. Grimes 	struct stat statb;
3264b88c807SRodney W. Grimes 	int e;
3274b88c807SRodney W. Grimes 	int i;
32885170a4aSStefan Farfeleder 	int spec;
3294b88c807SRodney W. Grimes 
3304b88c807SRodney W. Grimes 	/* If name contains a slash, don't use the hash table */
3314b88c807SRodney W. Grimes 	if (strchr(name, '/') != NULL) {
3324b88c807SRodney W. Grimes 		entry->cmdtype = CMDNORMAL;
3334b88c807SRodney W. Grimes 		entry->u.index = 0;
3344b88c807SRodney W. Grimes 		return;
3354b88c807SRodney W. Grimes 	}
3364b88c807SRodney W. Grimes 
3374b88c807SRodney W. Grimes 	/* If name is in the table, and not invalidated by cd, we're done */
338c848bc18SJilles Tjoelker 	if ((cmdp = cmdlookup(name, 0)) != NULL && cmdp->rehash == 0) {
339c848bc18SJilles Tjoelker 		if (cmdp->cmdtype == CMDFUNCTION && act & DO_NOFUNC)
340c848bc18SJilles Tjoelker 			cmdp = NULL;
341c848bc18SJilles Tjoelker 		else
3424b88c807SRodney W. Grimes 			goto success;
343c848bc18SJilles Tjoelker 	}
3444b88c807SRodney W. Grimes 
3454b45b49aSJilles Tjoelker 	/* Check for builtin next */
3464b45b49aSJilles Tjoelker 	if ((i = find_builtin(name, &spec)) >= 0) {
3474b88c807SRodney W. Grimes 		INTOFF;
3484b88c807SRodney W. Grimes 		cmdp = cmdlookup(name, 1);
349c848bc18SJilles Tjoelker 		if (cmdp->cmdtype == CMDFUNCTION)
350c848bc18SJilles Tjoelker 			cmdp = &loc_cmd;
3514b88c807SRodney W. Grimes 		cmdp->cmdtype = CMDBUILTIN;
3524b88c807SRodney W. Grimes 		cmdp->param.index = i;
35385170a4aSStefan Farfeleder 		cmdp->special = spec;
3544b88c807SRodney W. Grimes 		INTON;
3554b88c807SRodney W. Grimes 		goto success;
3564b88c807SRodney W. Grimes 	}
3574b88c807SRodney W. Grimes 
3584b88c807SRodney W. Grimes 	/* We have to search path. */
3594b88c807SRodney W. Grimes 	prev = -1;		/* where to start */
3604b88c807SRodney W. Grimes 	if (cmdp) {		/* doing a rehash */
3614b88c807SRodney W. Grimes 		if (cmdp->cmdtype == CMDBUILTIN)
3624b45b49aSJilles Tjoelker 			prev = -1;
3634b88c807SRodney W. Grimes 		else
3644b88c807SRodney W. Grimes 			prev = cmdp->param.index;
3654b88c807SRodney W. Grimes 	}
3664b88c807SRodney W. Grimes 
3674b88c807SRodney W. Grimes 	e = ENOENT;
368384aedabSJilles Tjoelker 	idx = -1;
3694b88c807SRodney W. Grimes loop:
3704b88c807SRodney W. Grimes 	while ((fullname = padvance(&path, name)) != NULL) {
3714b88c807SRodney W. Grimes 		stunalloc(fullname);
372384aedabSJilles Tjoelker 		idx++;
3734b88c807SRodney W. Grimes 		if (pathopt) {
3744b45b49aSJilles Tjoelker 			if (prefix("func", pathopt)) {
3754b88c807SRodney W. Grimes 				/* handled below */
3764b88c807SRodney W. Grimes 			} else {
3774b88c807SRodney W. Grimes 				goto loop;	/* ignore unimplemented options */
3784b88c807SRodney W. Grimes 			}
3794b88c807SRodney W. Grimes 		}
3804b88c807SRodney W. Grimes 		/* if rehash, don't redo absolute path names */
381384aedabSJilles Tjoelker 		if (fullname[0] == '/' && idx <= prev) {
382384aedabSJilles Tjoelker 			if (idx < prev)
3834b88c807SRodney W. Grimes 				goto loop;
3844b88c807SRodney W. Grimes 			TRACE(("searchexec \"%s\": no change\n", name));
3854b88c807SRodney W. Grimes 			goto success;
3864b88c807SRodney W. Grimes 		}
3872628ebdbSTim J. Robbins 		if (stat(fullname, &statb) < 0) {
3884b88c807SRodney W. Grimes 			if (errno != ENOENT && errno != ENOTDIR)
3894b88c807SRodney W. Grimes 				e = errno;
3904b88c807SRodney W. Grimes 			goto loop;
3914b88c807SRodney W. Grimes 		}
3924b88c807SRodney W. Grimes 		e = EACCES;	/* if we fail, this will be the error */
393aa9caaf6SPeter Wemm 		if (!S_ISREG(statb.st_mode))
3944b88c807SRodney W. Grimes 			goto loop;
3954b88c807SRodney W. Grimes 		if (pathopt) {		/* this is a %func directory */
3964b88c807SRodney W. Grimes 			stalloc(strlen(fullname) + 1);
3974b88c807SRodney W. Grimes 			readcmdfile(fullname);
3984b88c807SRodney W. Grimes 			if ((cmdp = cmdlookup(name, 0)) == NULL || cmdp->cmdtype != CMDFUNCTION)
3994b88c807SRodney W. Grimes 				error("%s not defined in %s", name, fullname);
4004b88c807SRodney W. Grimes 			stunalloc(fullname);
4014b88c807SRodney W. Grimes 			goto success;
4024b88c807SRodney W. Grimes 		}
4034b88c807SRodney W. Grimes #ifdef notdef
4044b88c807SRodney W. Grimes 		if (statb.st_uid == geteuid()) {
4054b88c807SRodney W. Grimes 			if ((statb.st_mode & 0100) == 0)
4064b88c807SRodney W. Grimes 				goto loop;
4074b88c807SRodney W. Grimes 		} else if (statb.st_gid == getegid()) {
4084b88c807SRodney W. Grimes 			if ((statb.st_mode & 010) == 0)
4094b88c807SRodney W. Grimes 				goto loop;
4104b88c807SRodney W. Grimes 		} else {
4114b88c807SRodney W. Grimes 			if ((statb.st_mode & 01) == 0)
4124b88c807SRodney W. Grimes 				goto loop;
4134b88c807SRodney W. Grimes 		}
4144b88c807SRodney W. Grimes #endif
4154b88c807SRodney W. Grimes 		TRACE(("searchexec \"%s\" returns \"%s\"\n", name, fullname));
4164b88c807SRodney W. Grimes 		INTOFF;
4174b88c807SRodney W. Grimes 		cmdp = cmdlookup(name, 1);
418c848bc18SJilles Tjoelker 		if (cmdp->cmdtype == CMDFUNCTION)
419c848bc18SJilles Tjoelker 			cmdp = &loc_cmd;
4204b88c807SRodney W. Grimes 		cmdp->cmdtype = CMDNORMAL;
421384aedabSJilles Tjoelker 		cmdp->param.index = idx;
4224b88c807SRodney W. Grimes 		INTON;
4234b88c807SRodney W. Grimes 		goto success;
4244b88c807SRodney W. Grimes 	}
4254b88c807SRodney W. Grimes 
4264b88c807SRodney W. Grimes 	/* We failed.  If there was an entry for this command, delete it */
427c848bc18SJilles Tjoelker 	if (cmdp && cmdp->cmdtype != CMDFUNCTION)
4284b88c807SRodney W. Grimes 		delete_cmd_entry();
429c848bc18SJilles Tjoelker 	if (act & DO_ERR) {
4308c395729STim J. Robbins 		if (e == ENOENT || e == ENOTDIR)
4318c395729STim J. Robbins 			outfmt(out2, "%s: not found\n", name);
4328c395729STim J. Robbins 		else
4331c59560dSTim J. Robbins 			outfmt(out2, "%s: %s\n", name, strerror(e));
4348c395729STim J. Robbins 	}
4354b88c807SRodney W. Grimes 	entry->cmdtype = CMDUNKNOWN;
436640b70e4SJilles Tjoelker 	entry->u.index = 0;
4374b88c807SRodney W. Grimes 	return;
4384b88c807SRodney W. Grimes 
4394b88c807SRodney W. Grimes success:
4404b88c807SRodney W. Grimes 	cmdp->rehash = 0;
4414b88c807SRodney W. Grimes 	entry->cmdtype = cmdp->cmdtype;
4424b88c807SRodney W. Grimes 	entry->u = cmdp->param;
44385170a4aSStefan Farfeleder 	entry->special = cmdp->special;
4444b88c807SRodney W. Grimes }
4454b88c807SRodney W. Grimes 
4464b88c807SRodney W. Grimes 
4474b88c807SRodney W. Grimes 
4484b88c807SRodney W. Grimes /*
4494b88c807SRodney W. Grimes  * Search the table of builtin commands.
4504b88c807SRodney W. Grimes  */
4514b88c807SRodney W. Grimes 
4524b88c807SRodney W. Grimes int
4532cac6e36SJilles Tjoelker find_builtin(const char *name, int *special)
4544b88c807SRodney W. Grimes {
45576ad65f7SSteve Price 	const struct builtincmd *bp;
4564b88c807SRodney W. Grimes 
4574b88c807SRodney W. Grimes 	for (bp = builtincmd ; bp->name ; bp++) {
45885170a4aSStefan Farfeleder 		if (*bp->name == *name && equal(bp->name, name)) {
45985170a4aSStefan Farfeleder 			*special = bp->special;
4604b88c807SRodney W. Grimes 			return bp->code;
4614b88c807SRodney W. Grimes 		}
46285170a4aSStefan Farfeleder 	}
4634b88c807SRodney W. Grimes 	return -1;
4644b88c807SRodney W. Grimes }
4654b88c807SRodney W. Grimes 
4664b88c807SRodney W. Grimes 
4674b88c807SRodney W. Grimes 
4684b88c807SRodney W. Grimes /*
4694b88c807SRodney W. Grimes  * Called when a cd is done.  Marks all commands so the next time they
4704b88c807SRodney W. Grimes  * are executed they will be rehashed.
4714b88c807SRodney W. Grimes  */
4724b88c807SRodney W. Grimes 
4734b88c807SRodney W. Grimes void
4745134c3f7SWarner Losh hashcd(void)
4755134c3f7SWarner Losh {
4764b88c807SRodney W. Grimes 	struct tblentry **pp;
4774b88c807SRodney W. Grimes 	struct tblentry *cmdp;
4784b88c807SRodney W. Grimes 
4794b88c807SRodney W. Grimes 	for (pp = cmdtable ; pp < &cmdtable[CMDTABLESIZE] ; pp++) {
4804b88c807SRodney W. Grimes 		for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
4814b45b49aSJilles Tjoelker 			if (cmdp->cmdtype == CMDNORMAL)
4824b88c807SRodney W. Grimes 				cmdp->rehash = 1;
4834b88c807SRodney W. Grimes 		}
4844b88c807SRodney W. Grimes 	}
4854b88c807SRodney W. Grimes }
4864b88c807SRodney W. Grimes 
4874b88c807SRodney W. Grimes 
4884b88c807SRodney W. Grimes 
4894b88c807SRodney W. Grimes /*
4904b88c807SRodney W. Grimes  * Called before PATH is changed.  The argument is the new value of PATH;
4914b88c807SRodney W. Grimes  * pathval() still returns the old value at this point.  Called with
4924b88c807SRodney W. Grimes  * interrupts off.
4934b88c807SRodney W. Grimes  */
4944b88c807SRodney W. Grimes 
4954b88c807SRodney W. Grimes void
4965134c3f7SWarner Losh changepath(const char *newval)
4974b88c807SRodney W. Grimes {
498c059d822SJilles Tjoelker 	clearcmdentry();
4994b88c807SRodney W. Grimes }
5004b88c807SRodney W. Grimes 
5014b88c807SRodney W. Grimes 
5024b88c807SRodney W. Grimes /*
5034b88c807SRodney W. Grimes  * Clear out command entries.  The argument specifies the first entry in
5044b88c807SRodney W. Grimes  * PATH which has changed.
5054b88c807SRodney W. Grimes  */
5064b88c807SRodney W. Grimes 
507a436dc79SMartin Cracauer void
508c059d822SJilles Tjoelker clearcmdentry(void)
509aa9caaf6SPeter Wemm {
5104b88c807SRodney W. Grimes 	struct tblentry **tblp;
5114b88c807SRodney W. Grimes 	struct tblentry **pp;
5124b88c807SRodney W. Grimes 	struct tblentry *cmdp;
5134b88c807SRodney W. Grimes 
5144b88c807SRodney W. Grimes 	INTOFF;
5154b88c807SRodney W. Grimes 	for (tblp = cmdtable ; tblp < &cmdtable[CMDTABLESIZE] ; tblp++) {
5164b88c807SRodney W. Grimes 		pp = tblp;
5174b88c807SRodney W. Grimes 		while ((cmdp = *pp) != NULL) {
518c059d822SJilles Tjoelker 			if (cmdp->cmdtype == CMDNORMAL) {
5194b88c807SRodney W. Grimes 				*pp = cmdp->next;
5204b88c807SRodney W. Grimes 				ckfree(cmdp);
5214b88c807SRodney W. Grimes 			} else {
5224b88c807SRodney W. Grimes 				pp = &cmdp->next;
5234b88c807SRodney W. Grimes 			}
5244b88c807SRodney W. Grimes 		}
5254b88c807SRodney W. Grimes 	}
5264b88c807SRodney W. Grimes 	INTON;
5274b88c807SRodney W. Grimes }
5284b88c807SRodney W. Grimes 
5294b88c807SRodney W. Grimes 
5304b88c807SRodney W. Grimes /*
5314b88c807SRodney W. Grimes  * Locate a command in the command hash table.  If "add" is nonzero,
5324b88c807SRodney W. Grimes  * add the command to the table if it is not already present.  The
5334b88c807SRodney W. Grimes  * variable "lastcmdentry" is set to point to the address of the link
5344b88c807SRodney W. Grimes  * pointing to the entry, so that delete_cmd_entry can delete the
5354b88c807SRodney W. Grimes  * entry.
5364b88c807SRodney W. Grimes  */
5374b88c807SRodney W. Grimes 
538aa7b6f82SDavid E. O'Brien static struct tblentry **lastcmdentry;
5394b88c807SRodney W. Grimes 
5404b88c807SRodney W. Grimes 
54188328642SDavid E. O'Brien static struct tblentry *
5422cac6e36SJilles Tjoelker cmdlookup(const char *name, int add)
5434b88c807SRodney W. Grimes {
5444b88c807SRodney W. Grimes 	int hashval;
5452cac6e36SJilles Tjoelker 	const char *p;
5464b88c807SRodney W. Grimes 	struct tblentry *cmdp;
5474b88c807SRodney W. Grimes 	struct tblentry **pp;
5484b88c807SRodney W. Grimes 
5494b88c807SRodney W. Grimes 	p = name;
5504b88c807SRodney W. Grimes 	hashval = *p << 4;
5514b88c807SRodney W. Grimes 	while (*p)
5524b88c807SRodney W. Grimes 		hashval += *p++;
5534b88c807SRodney W. Grimes 	hashval &= 0x7FFF;
5544b88c807SRodney W. Grimes 	pp = &cmdtable[hashval % CMDTABLESIZE];
5554b88c807SRodney W. Grimes 	for (cmdp = *pp ; cmdp ; cmdp = cmdp->next) {
5564b88c807SRodney W. Grimes 		if (equal(cmdp->cmdname, name))
5574b88c807SRodney W. Grimes 			break;
5584b88c807SRodney W. Grimes 		pp = &cmdp->next;
5594b88c807SRodney W. Grimes 	}
5604b88c807SRodney W. Grimes 	if (add && cmdp == NULL) {
5614b88c807SRodney W. Grimes 		INTOFF;
5624b88c807SRodney W. Grimes 		cmdp = *pp = ckmalloc(sizeof (struct tblentry) - ARB
5634b88c807SRodney W. Grimes 					+ strlen(name) + 1);
5644b88c807SRodney W. Grimes 		cmdp->next = NULL;
5654b88c807SRodney W. Grimes 		cmdp->cmdtype = CMDUNKNOWN;
5664b88c807SRodney W. Grimes 		cmdp->rehash = 0;
5674b88c807SRodney W. Grimes 		strcpy(cmdp->cmdname, name);
5684b88c807SRodney W. Grimes 		INTON;
5694b88c807SRodney W. Grimes 	}
5704b88c807SRodney W. Grimes 	lastcmdentry = pp;
5714b88c807SRodney W. Grimes 	return cmdp;
5724b88c807SRodney W. Grimes }
5734b88c807SRodney W. Grimes 
5744b88c807SRodney W. Grimes /*
5754b88c807SRodney W. Grimes  * Delete the command entry returned on the last lookup.
5764b88c807SRodney W. Grimes  */
5774b88c807SRodney W. Grimes 
57888328642SDavid E. O'Brien static void
5795134c3f7SWarner Losh delete_cmd_entry(void)
5805134c3f7SWarner Losh {
5814b88c807SRodney W. Grimes 	struct tblentry *cmdp;
5824b88c807SRodney W. Grimes 
5834b88c807SRodney W. Grimes 	INTOFF;
5844b88c807SRodney W. Grimes 	cmdp = *lastcmdentry;
5854b88c807SRodney W. Grimes 	*lastcmdentry = cmdp->next;
5864b88c807SRodney W. Grimes 	ckfree(cmdp);
5874b88c807SRodney W. Grimes 	INTON;
5884b88c807SRodney W. Grimes }
5894b88c807SRodney W. Grimes 
5904b88c807SRodney W. Grimes 
5914b88c807SRodney W. Grimes 
5924b88c807SRodney W. Grimes /*
5934b88c807SRodney W. Grimes  * Add a new command entry, replacing any existing command entry for
5944b88c807SRodney W. Grimes  * the same name.
5954b88c807SRodney W. Grimes  */
5964b88c807SRodney W. Grimes 
597*260fc3f4SJilles Tjoelker static void
5982cac6e36SJilles Tjoelker addcmdentry(const char *name, struct cmdentry *entry)
5994b88c807SRodney W. Grimes {
6004b88c807SRodney W. Grimes 	struct tblentry *cmdp;
6014b88c807SRodney W. Grimes 
6024b88c807SRodney W. Grimes 	INTOFF;
6034b88c807SRodney W. Grimes 	cmdp = cmdlookup(name, 1);
6044b88c807SRodney W. Grimes 	if (cmdp->cmdtype == CMDFUNCTION) {
605eb33e843SJilles Tjoelker 		unreffunc(cmdp->param.func);
6064b88c807SRodney W. Grimes 	}
6074b88c807SRodney W. Grimes 	cmdp->cmdtype = entry->cmdtype;
6084b88c807SRodney W. Grimes 	cmdp->param = entry->u;
6094b88c807SRodney W. Grimes 	INTON;
6104b88c807SRodney W. Grimes }
6114b88c807SRodney W. Grimes 
6124b88c807SRodney W. Grimes 
6134b88c807SRodney W. Grimes /*
6144b88c807SRodney W. Grimes  * Define a shell function.
6154b88c807SRodney W. Grimes  */
6164b88c807SRodney W. Grimes 
6174b88c807SRodney W. Grimes void
6182cac6e36SJilles Tjoelker defun(const char *name, union node *func)
6194b88c807SRodney W. Grimes {
6204b88c807SRodney W. Grimes 	struct cmdentry entry;
6214b88c807SRodney W. Grimes 
6224b88c807SRodney W. Grimes 	INTOFF;
6234b88c807SRodney W. Grimes 	entry.cmdtype = CMDFUNCTION;
6244b88c807SRodney W. Grimes 	entry.u.func = copyfunc(func);
6254b88c807SRodney W. Grimes 	addcmdentry(name, &entry);
6264b88c807SRodney W. Grimes 	INTON;
6274b88c807SRodney W. Grimes }
6284b88c807SRodney W. Grimes 
6294b88c807SRodney W. Grimes 
6304b88c807SRodney W. Grimes /*
6314b88c807SRodney W. Grimes  * Delete a function if it exists.
6324b88c807SRodney W. Grimes  */
6334b88c807SRodney W. Grimes 
6344b88c807SRodney W. Grimes int
6352cac6e36SJilles Tjoelker unsetfunc(const char *name)
6364b88c807SRodney W. Grimes {
6374b88c807SRodney W. Grimes 	struct tblentry *cmdp;
6384b88c807SRodney W. Grimes 
6394b88c807SRodney W. Grimes 	if ((cmdp = cmdlookup(name, 0)) != NULL && cmdp->cmdtype == CMDFUNCTION) {
640eb33e843SJilles Tjoelker 		unreffunc(cmdp->param.func);
6414b88c807SRodney W. Grimes 		delete_cmd_entry();
6424b88c807SRodney W. Grimes 		return (0);
6434b88c807SRodney W. Grimes 	}
644bd766773SDag-Erling Smørgrav 	return (0);
6454b88c807SRodney W. Grimes }
64676ad65f7SSteve Price 
64776ad65f7SSteve Price /*
648b2f153feSStefan Farfeleder  * Shared code for the following builtin commands:
649b2f153feSStefan Farfeleder  *    type, command -v, command -V
65076ad65f7SSteve Price  */
65176ad65f7SSteve Price 
65276ad65f7SSteve Price int
65306a8a57fSJilles Tjoelker typecmd_impl(int argc, char **argv, int cmd, const char *path)
65476ad65f7SSteve Price {
65576ad65f7SSteve Price 	struct cmdentry entry;
65676ad65f7SSteve Price 	struct tblentry *cmdp;
657384aedabSJilles Tjoelker 	const char *const *pp;
65876ad65f7SSteve Price 	struct alias *ap;
65976ad65f7SSteve Price 	int i;
660384aedabSJilles Tjoelker 	int error1 = 0;
66176ad65f7SSteve Price 
66206a8a57fSJilles Tjoelker 	if (path != pathval())
663c059d822SJilles Tjoelker 		clearcmdentry();
66406a8a57fSJilles Tjoelker 
66576ad65f7SSteve Price 	for (i = 1; i < argc; i++) {
66676ad65f7SSteve Price 		/* First look at the keywords */
667384aedabSJilles Tjoelker 		for (pp = parsekwd; *pp; pp++)
66876ad65f7SSteve Price 			if (**pp == *argv[i] && equal(*pp, argv[i]))
66976ad65f7SSteve Price 				break;
67076ad65f7SSteve Price 
67176ad65f7SSteve Price 		if (*pp) {
672b2f153feSStefan Farfeleder 			if (cmd == TYPECMD_SMALLV)
673b2f153feSStefan Farfeleder 				out1fmt("%s\n", argv[i]);
674b2f153feSStefan Farfeleder 			else
675f7bbf3ffSStefan Farfeleder 				out1fmt("%s is a shell keyword\n", argv[i]);
67676ad65f7SSteve Price 			continue;
67776ad65f7SSteve Price 		}
67876ad65f7SSteve Price 
67976ad65f7SSteve Price 		/* Then look at the aliases */
68076ad65f7SSteve Price 		if ((ap = lookupalias(argv[i], 1)) != NULL) {
681b2f153feSStefan Farfeleder 			if (cmd == TYPECMD_SMALLV)
682b2f153feSStefan Farfeleder 				out1fmt("alias %s='%s'\n", argv[i], ap->val);
683b2f153feSStefan Farfeleder 			else
684f7bbf3ffSStefan Farfeleder 				out1fmt("%s is an alias for %s\n", argv[i],
685f7bbf3ffSStefan Farfeleder 				    ap->val);
68676ad65f7SSteve Price 			continue;
68776ad65f7SSteve Price 		}
68876ad65f7SSteve Price 
68976ad65f7SSteve Price 		/* Then check if it is a tracked alias */
69076ad65f7SSteve Price 		if ((cmdp = cmdlookup(argv[i], 0)) != NULL) {
69176ad65f7SSteve Price 			entry.cmdtype = cmdp->cmdtype;
69276ad65f7SSteve Price 			entry.u = cmdp->param;
69330268dfaSJilles Tjoelker 			entry.special = cmdp->special;
69476ad65f7SSteve Price 		}
69576ad65f7SSteve Price 		else {
69676ad65f7SSteve Price 			/* Finally use brute force */
69706a8a57fSJilles Tjoelker 			find_command(argv[i], &entry, 0, path);
69876ad65f7SSteve Price 		}
69976ad65f7SSteve Price 
70076ad65f7SSteve Price 		switch (entry.cmdtype) {
70176ad65f7SSteve Price 		case CMDNORMAL: {
702d753a425SMartin Cracauer 			if (strchr(argv[i], '/') == NULL) {
70306a8a57fSJilles Tjoelker 				const char *path2 = path;
7042cac6e36SJilles Tjoelker 				char *name;
705d753a425SMartin Cracauer 				int j = entry.u.index;
70676ad65f7SSteve Price 				do {
70706a8a57fSJilles Tjoelker 					name = padvance(&path2, argv[i]);
70876ad65f7SSteve Price 					stunalloc(name);
70976ad65f7SSteve Price 				} while (--j >= 0);
710b2f153feSStefan Farfeleder 				if (cmd == TYPECMD_SMALLV)
711b2f153feSStefan Farfeleder 					out1fmt("%s\n", name);
712b2f153feSStefan Farfeleder 				else
713f7bbf3ffSStefan Farfeleder 					out1fmt("%s is%s %s\n", argv[i],
714b2f153feSStefan Farfeleder 					    (cmdp && cmd == TYPECMD_TYPE) ?
715b2f153feSStefan Farfeleder 						" a tracked alias for" : "",
716b2f153feSStefan Farfeleder 					    name);
717d753a425SMartin Cracauer 			} else {
718d92e35fdSStefan Farfeleder 				if (eaccess(argv[i], X_OK) == 0) {
719b2f153feSStefan Farfeleder 					if (cmd == TYPECMD_SMALLV)
720b2f153feSStefan Farfeleder 						out1fmt("%s\n", argv[i]);
721b2f153feSStefan Farfeleder 					else
722f7bbf3ffSStefan Farfeleder 						out1fmt("%s is %s\n", argv[i],
723f7bbf3ffSStefan Farfeleder 						    argv[i]);
724f30842baSStefan Farfeleder 				} else {
725f30842baSStefan Farfeleder 					if (cmd != TYPECMD_SMALLV)
726f7bbf3ffSStefan Farfeleder 						outfmt(out2, "%s: %s\n",
727f7bbf3ffSStefan Farfeleder 						    argv[i], strerror(errno));
728384aedabSJilles Tjoelker 					error1 |= 127;
729b2f153feSStefan Farfeleder 				}
730d753a425SMartin Cracauer 			}
73176ad65f7SSteve Price 			break;
73276ad65f7SSteve Price 		}
73376ad65f7SSteve Price 		case CMDFUNCTION:
734b2f153feSStefan Farfeleder 			if (cmd == TYPECMD_SMALLV)
735b2f153feSStefan Farfeleder 				out1fmt("%s\n", argv[i]);
736b2f153feSStefan Farfeleder 			else
737f7bbf3ffSStefan Farfeleder 				out1fmt("%s is a shell function\n", argv[i]);
73876ad65f7SSteve Price 			break;
73976ad65f7SSteve Price 
74076ad65f7SSteve Price 		case CMDBUILTIN:
741b2f153feSStefan Farfeleder 			if (cmd == TYPECMD_SMALLV)
742b2f153feSStefan Farfeleder 				out1fmt("%s\n", argv[i]);
74330268dfaSJilles Tjoelker 			else if (entry.special)
74430268dfaSJilles Tjoelker 				out1fmt("%s is a special shell builtin\n",
74530268dfaSJilles Tjoelker 				    argv[i]);
746b2f153feSStefan Farfeleder 			else
747f7bbf3ffSStefan Farfeleder 				out1fmt("%s is a shell builtin\n", argv[i]);
74876ad65f7SSteve Price 			break;
74976ad65f7SSteve Price 
75076ad65f7SSteve Price 		default:
751b2f153feSStefan Farfeleder 			if (cmd != TYPECMD_SMALLV)
752f7bbf3ffSStefan Farfeleder 				outfmt(out2, "%s: not found\n", argv[i]);
753384aedabSJilles Tjoelker 			error1 |= 127;
75476ad65f7SSteve Price 			break;
75576ad65f7SSteve Price 		}
75676ad65f7SSteve Price 	}
75706a8a57fSJilles Tjoelker 
75806a8a57fSJilles Tjoelker 	if (path != pathval())
759c059d822SJilles Tjoelker 		clearcmdentry();
76006a8a57fSJilles Tjoelker 
761384aedabSJilles Tjoelker 	return error1;
76276ad65f7SSteve Price }
763b2f153feSStefan Farfeleder 
764b2f153feSStefan Farfeleder /*
765b2f153feSStefan Farfeleder  * Locate and print what a word is...
766b2f153feSStefan Farfeleder  */
767b2f153feSStefan Farfeleder 
768b2f153feSStefan Farfeleder int
769b2f153feSStefan Farfeleder typecmd(int argc, char **argv)
770b2f153feSStefan Farfeleder {
7710fb60646SJilles Tjoelker 	return typecmd_impl(argc, argv, TYPECMD_TYPE, bltinlookup("PATH", 1));
772b2f153feSStefan Farfeleder }
773