exec.c revision 1.18 1 1.18 christos /* $NetBSD: exec.c,v 1.18 2002/03/08 17:15:30 christos Exp $ */
2 1.6 cgd
3 1.1 cgd /*-
4 1.5 mycroft * Copyright (c) 1980, 1991, 1993
5 1.5 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.11 christos #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.6 cgd #if 0
39 1.8 christos static char sccsid[] = "@(#)exec.c 8.3 (Berkeley) 5/23/95";
40 1.6 cgd #else
41 1.18 christos __RCSID("$NetBSD: exec.c,v 1.18 2002/03/08 17:15:30 christos Exp $");
42 1.6 cgd #endif
43 1.1 cgd #endif /* not lint */
44 1.1 cgd
45 1.16 wiz #include <sys/param.h>
46 1.16 wiz #include <sys/stat.h>
47 1.1 cgd #include <sys/types.h>
48 1.16 wiz
49 1.1 cgd #include <dirent.h>
50 1.16 wiz #include <errno.h>
51 1.1 cgd #include <fcntl.h>
52 1.1 cgd #include <stdlib.h>
53 1.1 cgd #include <string.h>
54 1.1 cgd #include <unistd.h>
55 1.16 wiz
56 1.1 cgd #if __STDC__
57 1.1 cgd # include <stdarg.h>
58 1.1 cgd #else
59 1.1 cgd # include <varargs.h>
60 1.1 cgd #endif
61 1.1 cgd
62 1.1 cgd #include "csh.h"
63 1.1 cgd #include "extern.h"
64 1.1 cgd
65 1.1 cgd /*
66 1.1 cgd * System level search and execute of a command. We look in each directory
67 1.1 cgd * for the specified command name. If the name contains a '/' then we
68 1.1 cgd * execute only the full path name. If there is no search path then we
69 1.1 cgd * execute only full path names.
70 1.1 cgd */
71 1.1 cgd extern char **environ;
72 1.1 cgd
73 1.1 cgd /*
74 1.1 cgd * As we search for the command we note the first non-trivial error
75 1.1 cgd * message for presentation to the user. This allows us often
76 1.1 cgd * to show that a file has the wrong mode/no access when the file
77 1.1 cgd * is not in the last component of the search path, so we must
78 1.1 cgd * go on after first detecting the error.
79 1.1 cgd */
80 1.12 mycroft static const char *exerr; /* Execution error message */
81 1.1 cgd static Char *expath; /* Path for exerr */
82 1.1 cgd
83 1.1 cgd /*
84 1.1 cgd * Xhash is an array of HSHSIZ bits (HSHSIZ / 8 chars), which are used
85 1.1 cgd * to hash execs. If it is allocated (havhash true), then to tell
86 1.1 cgd * whether ``name'' is (possibly) present in the i'th component
87 1.1 cgd * of the variable path, you look at the bit in xhash indexed by
88 1.1 cgd * hash(hashname("name"), i). This is setup automatically
89 1.1 cgd * after .login is executed, and recomputed whenever ``path'' is
90 1.1 cgd * changed.
91 1.1 cgd * The two part hash function is designed to let texec() call the
92 1.1 cgd * more expensive hashname() only once and the simple hash() several
93 1.1 cgd * times (once for each path component checked).
94 1.1 cgd * Byte size is assumed to be 8.
95 1.1 cgd */
96 1.16 wiz #define HSHSIZ 8192 /* 1k bytes */
97 1.16 wiz #define HSHMASK (HSHSIZ - 1)
98 1.16 wiz #define HSHMUL 243
99 1.1 cgd static char xhash[HSHSIZ / 8];
100 1.1 cgd
101 1.16 wiz #define hash(a, b) (((a) * HSHMUL + (b)) & HSHMASK)
102 1.16 wiz #define bit(h, b) ((h)[(b) >> 3] & 1 << ((b) & 7)) /* bit test */
103 1.16 wiz #define bis(h, b) ((h)[(b) >> 3] |= 1 << ((b) & 7)) /* bit set */
104 1.1 cgd static int hits, misses;
105 1.1 cgd
106 1.1 cgd /* Dummy search path for just absolute search when no path */
107 1.1 cgd static Char *justabs[] = {STRNULL, 0};
108 1.1 cgd
109 1.16 wiz static void pexerr __P((void)) __attribute__((noreturn));
110 1.16 wiz static void texec(Char *, Char **);
111 1.16 wiz static int hashname(Char *);
112 1.16 wiz static int tellmewhat(struct wordent *, Char *);
113 1.16 wiz static int executable(Char *, Char *, bool);
114 1.16 wiz static int iscommand(Char *);
115 1.1 cgd
116 1.1 cgd void
117 1.5 mycroft /*ARGSUSED*/
118 1.16 wiz doexec(Char **v, struct command *t)
119 1.1 cgd {
120 1.10 tls struct varent *pathv;
121 1.16 wiz Char *blk[2], **av, *dp, **pv, *sav;
122 1.16 wiz int i, hashval, hashval1;
123 1.16 wiz sigset_t sigset;
124 1.10 tls bool slash;
125 1.1 cgd
126 1.16 wiz hashval = 0;
127 1.1 cgd /*
128 1.1 cgd * Glob the command name. We will search $path even if this does something,
129 1.1 cgd * as in sh but not in csh. One special case: if there is no PATH, then we
130 1.1 cgd * execute only commands which start with '/'.
131 1.1 cgd */
132 1.1 cgd blk[0] = t->t_dcom[0];
133 1.1 cgd blk[1] = 0;
134 1.1 cgd gflag = 0, tglob(blk);
135 1.1 cgd if (gflag) {
136 1.1 cgd pv = globall(blk);
137 1.1 cgd if (pv == 0) {
138 1.5 mycroft setname(vis_str(blk[0]));
139 1.1 cgd stderror(ERR_NAME | ERR_NOMATCH);
140 1.1 cgd }
141 1.1 cgd gargv = 0;
142 1.1 cgd }
143 1.1 cgd else
144 1.1 cgd pv = saveblk(blk);
145 1.1 cgd
146 1.1 cgd trim(pv);
147 1.1 cgd
148 1.1 cgd exerr = 0;
149 1.1 cgd expath = Strsave(pv[0]);
150 1.1 cgd Vexpath = expath;
151 1.1 cgd
152 1.5 mycroft pathv = adrof(STRpath);
153 1.5 mycroft if (pathv == 0 && expath[0] != '/') {
154 1.1 cgd blkfree(pv);
155 1.1 cgd pexerr();
156 1.1 cgd }
157 1.1 cgd slash = any(short2str(expath), '/');
158 1.1 cgd
159 1.1 cgd /*
160 1.1 cgd * Glob the argument list, if necessary. Otherwise trim off the quote bits.
161 1.1 cgd */
162 1.1 cgd gflag = 0;
163 1.1 cgd av = &t->t_dcom[1];
164 1.1 cgd tglob(av);
165 1.1 cgd if (gflag) {
166 1.1 cgd av = globall(av);
167 1.1 cgd if (av == 0) {
168 1.1 cgd blkfree(pv);
169 1.5 mycroft setname(vis_str(expath));
170 1.1 cgd stderror(ERR_NAME | ERR_NOMATCH);
171 1.1 cgd }
172 1.1 cgd gargv = 0;
173 1.1 cgd }
174 1.1 cgd else
175 1.1 cgd av = saveblk(av);
176 1.1 cgd
177 1.1 cgd blkfree(t->t_dcom);
178 1.1 cgd t->t_dcom = blkspl(pv, av);
179 1.1 cgd xfree((ptr_t) pv);
180 1.1 cgd xfree((ptr_t) av);
181 1.1 cgd av = t->t_dcom;
182 1.1 cgd trim(av);
183 1.1 cgd
184 1.1 cgd if (*av == NULL || **av == '\0')
185 1.1 cgd pexerr();
186 1.1 cgd
187 1.1 cgd xechoit(av); /* Echo command if -x */
188 1.1 cgd /*
189 1.1 cgd * Since all internal file descriptors are set to close on exec, we don't
190 1.1 cgd * need to close them explicitly here. Just reorient ourselves for error
191 1.1 cgd * messages.
192 1.1 cgd */
193 1.1 cgd SHIN = 0;
194 1.1 cgd SHOUT = 1;
195 1.5 mycroft SHERR = 2;
196 1.1 cgd OLDSTD = 0;
197 1.1 cgd /*
198 1.1 cgd * We must do this AFTER any possible forking (like `foo` in glob) so that
199 1.1 cgd * this shell can still do subprocesses.
200 1.1 cgd */
201 1.7 mycroft sigemptyset(&sigset);
202 1.16 wiz (void)sigprocmask(SIG_SETMASK, &sigset, NULL);
203 1.1 cgd /*
204 1.1 cgd * If no path, no words in path, or a / in the filename then restrict the
205 1.1 cgd * command search.
206 1.1 cgd */
207 1.5 mycroft if (pathv == 0 || pathv->vec[0] == 0 || slash)
208 1.1 cgd pv = justabs;
209 1.1 cgd else
210 1.5 mycroft pv = pathv->vec;
211 1.16 wiz sav = Strspl(STRslash, *av); /* / command name for postpending */
212 1.1 cgd Vsav = sav;
213 1.1 cgd if (havhash)
214 1.1 cgd hashval = hashname(*av);
215 1.1 cgd i = 0;
216 1.1 cgd hits++;
217 1.1 cgd do {
218 1.1 cgd /*
219 1.1 cgd * Try to save time by looking at the hash table for where this command
220 1.1 cgd * could be. If we are doing delayed hashing, then we put the names in
221 1.1 cgd * one at a time, as the user enters them. This is kinda like Korn
222 1.1 cgd * Shell's "tracked aliases".
223 1.1 cgd */
224 1.1 cgd if (!slash && pv[0][0] == '/' && havhash) {
225 1.1 cgd hashval1 = hash(hashval, i);
226 1.1 cgd if (!bit(xhash, hashval1))
227 1.1 cgd goto cont;
228 1.1 cgd }
229 1.1 cgd if (pv[0][0] == 0 || eq(pv[0], STRdot)) /* don't make ./xxx */
230 1.1 cgd texec(*av, av);
231 1.1 cgd else {
232 1.1 cgd dp = Strspl(*pv, sav);
233 1.1 cgd Vdp = dp;
234 1.1 cgd texec(dp, av);
235 1.1 cgd Vdp = 0;
236 1.16 wiz xfree((ptr_t)dp);
237 1.1 cgd }
238 1.1 cgd misses++;
239 1.1 cgd cont:
240 1.1 cgd pv++;
241 1.1 cgd i++;
242 1.1 cgd } while (*pv);
243 1.1 cgd hits--;
244 1.1 cgd Vsav = 0;
245 1.16 wiz xfree((ptr_t)sav);
246 1.1 cgd pexerr();
247 1.15 mycroft /* NOTREACHED */
248 1.1 cgd }
249 1.1 cgd
250 1.1 cgd static void
251 1.16 wiz pexerr(void)
252 1.1 cgd {
253 1.1 cgd /* Couldn't find the damn thing */
254 1.1 cgd if (expath) {
255 1.5 mycroft setname(vis_str(expath));
256 1.1 cgd Vexpath = 0;
257 1.16 wiz xfree((ptr_t)expath);
258 1.1 cgd expath = 0;
259 1.1 cgd }
260 1.1 cgd else
261 1.1 cgd setname("");
262 1.1 cgd if (exerr)
263 1.1 cgd stderror(ERR_NAME | ERR_STRING, exerr);
264 1.13 mycroft else
265 1.13 mycroft stderror(ERR_NAME | ERR_COMMAND);
266 1.13 mycroft /* NOTREACHED */
267 1.1 cgd }
268 1.1 cgd
269 1.1 cgd /*
270 1.1 cgd * Execute command f, arg list t.
271 1.1 cgd * Record error message if not found.
272 1.1 cgd * Also do shell scripts here.
273 1.1 cgd */
274 1.1 cgd static void
275 1.16 wiz texec(Char *sf, Char **st)
276 1.1 cgd {
277 1.10 tls struct varent *v;
278 1.16 wiz Char *lastsh[2], **vp, *st0, **ost;
279 1.16 wiz char *f, **t;
280 1.16 wiz int fd;
281 1.1 cgd unsigned char c;
282 1.1 cgd
283 1.1 cgd /* The order for the conversions is significant */
284 1.1 cgd t = short2blk(st);
285 1.1 cgd f = short2str(sf);
286 1.1 cgd Vt = t;
287 1.1 cgd errno = 0; /* don't use a previous error */
288 1.16 wiz (void)execve(f, t, environ);
289 1.1 cgd Vt = 0;
290 1.16 wiz blkfree((Char **)t);
291 1.1 cgd switch (errno) {
292 1.1 cgd
293 1.1 cgd case ENOEXEC:
294 1.1 cgd /*
295 1.1 cgd * From: casper (at) fwi.uva.nl (Casper H.S. Dik) If we could not execute
296 1.1 cgd * it, don't feed it to the shell if it looks like a binary!
297 1.1 cgd */
298 1.1 cgd if ((fd = open(f, O_RDONLY)) != -1) {
299 1.16 wiz if (read(fd, (char *)&c, 1) == 1) {
300 1.1 cgd if (!Isprint(c) && (c != '\n' && c != '\t')) {
301 1.16 wiz (void)close(fd);
302 1.1 cgd /*
303 1.1 cgd * We *know* what ENOEXEC means.
304 1.1 cgd */
305 1.1 cgd stderror(ERR_ARCH, f, strerror(errno));
306 1.1 cgd }
307 1.1 cgd }
308 1.1 cgd #ifdef _PATH_BSHELL
309 1.1 cgd else
310 1.1 cgd c = '#';
311 1.1 cgd #endif
312 1.16 wiz (void)close(fd);
313 1.1 cgd }
314 1.1 cgd /*
315 1.1 cgd * If there is an alias for shell, then put the words of the alias in
316 1.1 cgd * front of the argument list replacing the command name. Note no
317 1.1 cgd * interpretation of the words at this point.
318 1.1 cgd */
319 1.1 cgd v = adrof1(STRshell, &aliases);
320 1.1 cgd if (v == 0) {
321 1.1 cgd vp = lastsh;
322 1.1 cgd vp[0] = adrof(STRshell) ? value(STRshell) : STR_SHELLPATH;
323 1.1 cgd vp[1] = NULL;
324 1.1 cgd #ifdef _PATH_BSHELL
325 1.1 cgd if (fd != -1 && c != '#')
326 1.1 cgd vp[0] = STR_BSHELL;
327 1.1 cgd #endif
328 1.1 cgd }
329 1.1 cgd else
330 1.1 cgd vp = v->vec;
331 1.1 cgd st0 = st[0];
332 1.1 cgd st[0] = sf;
333 1.1 cgd ost = st;
334 1.1 cgd st = blkspl(vp, st); /* Splice up the new arglst */
335 1.1 cgd ost[0] = st0;
336 1.1 cgd sf = *st;
337 1.1 cgd /* The order for the conversions is significant */
338 1.1 cgd t = short2blk(st);
339 1.1 cgd f = short2str(sf);
340 1.1 cgd xfree((ptr_t) st);
341 1.1 cgd Vt = t;
342 1.16 wiz (void)execve(f, t, environ);
343 1.1 cgd Vt = 0;
344 1.1 cgd blkfree((Char **) t);
345 1.13 mycroft /* FALLTHROUGH */
346 1.1 cgd
347 1.1 cgd case ENOMEM:
348 1.1 cgd stderror(ERR_SYSTEM, f, strerror(errno));
349 1.13 mycroft /* NOTREACHED */
350 1.1 cgd
351 1.1 cgd case ENOENT:
352 1.1 cgd break;
353 1.1 cgd
354 1.1 cgd default:
355 1.1 cgd if (exerr == 0) {
356 1.1 cgd exerr = strerror(errno);
357 1.1 cgd if (expath)
358 1.1 cgd xfree((ptr_t) expath);
359 1.1 cgd expath = Strsave(sf);
360 1.1 cgd Vexpath = expath;
361 1.1 cgd }
362 1.1 cgd }
363 1.1 cgd }
364 1.1 cgd
365 1.1 cgd /*ARGSUSED*/
366 1.1 cgd void
367 1.16 wiz execash(Char **t, struct command *kp)
368 1.16 wiz {
369 1.5 mycroft jmp_buf osetexit;
370 1.16 wiz sig_t osigint, osigquit, osigterm;
371 1.16 wiz int my_reenter, odidfds, oOLDSTD, oSHERR, oSHIN, oSHOUT;
372 1.16 wiz int saveDIAG, saveIN, saveOUT, saveSTD;
373 1.5 mycroft
374 1.1 cgd if (chkstop == 0 && setintr)
375 1.1 cgd panystop(0);
376 1.5 mycroft /*
377 1.5 mycroft * Hmm, we don't really want to do that now because we might
378 1.5 mycroft * fail, but what is the choice
379 1.5 mycroft */
380 1.1 cgd rechist();
381 1.5 mycroft
382 1.5 mycroft osigint = signal(SIGINT, parintr);
383 1.5 mycroft osigquit = signal(SIGQUIT, parintr);
384 1.5 mycroft osigterm = signal(SIGTERM, parterm);
385 1.5 mycroft
386 1.5 mycroft odidfds = didfds;
387 1.5 mycroft oSHIN = SHIN;
388 1.5 mycroft oSHOUT = SHOUT;
389 1.5 mycroft oSHERR = SHERR;
390 1.5 mycroft oOLDSTD = OLDSTD;
391 1.5 mycroft
392 1.5 mycroft saveIN = dcopy(SHIN, -1);
393 1.5 mycroft saveOUT = dcopy(SHOUT, -1);
394 1.5 mycroft saveDIAG = dcopy(SHERR, -1);
395 1.5 mycroft saveSTD = dcopy(OLDSTD, -1);
396 1.5 mycroft
397 1.1 cgd lshift(kp->t_dcom, 1);
398 1.5 mycroft
399 1.5 mycroft getexit(osetexit);
400 1.5 mycroft
401 1.5 mycroft if ((my_reenter = setexit()) == 0) {
402 1.5 mycroft SHIN = dcopy(0, -1);
403 1.5 mycroft SHOUT = dcopy(1, -1);
404 1.5 mycroft SHERR = dcopy(2, -1);
405 1.5 mycroft didfds = 0;
406 1.5 mycroft doexec(t, kp);
407 1.5 mycroft }
408 1.5 mycroft
409 1.16 wiz (void)signal(SIGINT, osigint);
410 1.16 wiz (void)signal(SIGQUIT, osigquit);
411 1.16 wiz (void)signal(SIGTERM, osigterm);
412 1.5 mycroft
413 1.5 mycroft doneinp = 0;
414 1.5 mycroft didfds = odidfds;
415 1.16 wiz (void)close(SHIN);
416 1.16 wiz (void)close(SHOUT);
417 1.16 wiz (void)close(SHERR);
418 1.16 wiz (void)close(OLDSTD);
419 1.5 mycroft SHIN = dmove(saveIN, oSHIN);
420 1.5 mycroft SHOUT = dmove(saveOUT, oSHOUT);
421 1.5 mycroft SHERR = dmove(saveDIAG, oSHERR);
422 1.5 mycroft OLDSTD = dmove(saveSTD, oOLDSTD);
423 1.5 mycroft
424 1.5 mycroft resexit(osetexit);
425 1.15 mycroft if (my_reenter)
426 1.5 mycroft stderror(ERR_SILENT);
427 1.1 cgd }
428 1.1 cgd
429 1.1 cgd void
430 1.16 wiz xechoit(Char **t)
431 1.1 cgd {
432 1.1 cgd if (adrof(STRecho)) {
433 1.18 christos int odidfds = didfds;
434 1.16 wiz (void)fflush(csherr);
435 1.18 christos odidfds = didfds;
436 1.18 christos didfds = 0;
437 1.5 mycroft blkpr(csherr, t);
438 1.16 wiz (void)fputc('\n', csherr);
439 1.18 christos (void)fflush(csherr);
440 1.18 christos didfds = odidfds;
441 1.1 cgd }
442 1.1 cgd }
443 1.1 cgd
444 1.1 cgd void
445 1.5 mycroft /*ARGSUSED*/
446 1.16 wiz dohash(Char **v, struct command *t)
447 1.1 cgd {
448 1.10 tls struct dirent *dp;
449 1.16 wiz struct varent *pathv;
450 1.16 wiz DIR *dirp;
451 1.16 wiz Char **pv;
452 1.16 wiz int cnt, hashval, i;
453 1.1 cgd
454 1.16 wiz i = 0;
455 1.1 cgd havhash = 1;
456 1.16 wiz pathv = adrof(STRpath);
457 1.16 wiz
458 1.1 cgd for (cnt = 0; cnt < sizeof xhash; cnt++)
459 1.1 cgd xhash[cnt] = 0;
460 1.5 mycroft if (pathv == 0)
461 1.1 cgd return;
462 1.5 mycroft for (pv = pathv->vec; *pv; pv++, i++) {
463 1.1 cgd if (pv[0][0] != '/')
464 1.1 cgd continue;
465 1.1 cgd dirp = opendir(short2str(*pv));
466 1.1 cgd if (dirp == NULL)
467 1.1 cgd continue;
468 1.1 cgd while ((dp = readdir(dirp)) != NULL) {
469 1.1 cgd if (dp->d_ino == 0)
470 1.1 cgd continue;
471 1.1 cgd if (dp->d_name[0] == '.' &&
472 1.1 cgd (dp->d_name[1] == '\0' ||
473 1.5 mycroft (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
474 1.1 cgd continue;
475 1.1 cgd hashval = hash(hashname(str2short(dp->d_name)), i);
476 1.1 cgd bis(xhash, hashval);
477 1.1 cgd /* tw_add_comm_name (dp->d_name); */
478 1.1 cgd }
479 1.1 cgd (void) closedir(dirp);
480 1.1 cgd }
481 1.1 cgd }
482 1.1 cgd
483 1.1 cgd void
484 1.5 mycroft /*ARGSUSED*/
485 1.16 wiz dounhash(Char **v, struct command *t)
486 1.1 cgd {
487 1.1 cgd havhash = 0;
488 1.1 cgd }
489 1.1 cgd
490 1.1 cgd void
491 1.5 mycroft /*ARGSUSED*/
492 1.16 wiz hashstat(Char **v, struct command *t)
493 1.1 cgd {
494 1.1 cgd if (hits + misses)
495 1.16 wiz (void)fprintf(cshout, "%d hits, %d misses, %d%%\n",
496 1.16 wiz hits, misses, 100 * hits / (hits + misses));
497 1.1 cgd }
498 1.1 cgd
499 1.1 cgd /*
500 1.1 cgd * Hash a command name.
501 1.1 cgd */
502 1.1 cgd static int
503 1.16 wiz hashname(Char *cp)
504 1.1 cgd {
505 1.10 tls long h = 0;
506 1.1 cgd
507 1.1 cgd while (*cp)
508 1.1 cgd h = hash(h, *cp++);
509 1.1 cgd return ((int) h);
510 1.5 mycroft }
511 1.5 mycroft
512 1.5 mycroft static int
513 1.16 wiz iscommand(Char *name)
514 1.5 mycroft {
515 1.10 tls struct varent *v;
516 1.16 wiz Char **pv, *sav;
517 1.16 wiz int hashval, hashval1, i;
518 1.16 wiz bool slash;
519 1.5 mycroft
520 1.16 wiz hashval = 0;
521 1.16 wiz slash = any(short2str(name), '/');
522 1.5 mycroft v = adrof(STRpath);
523 1.16 wiz
524 1.5 mycroft if (v == 0 || v->vec[0] == 0 || slash)
525 1.5 mycroft pv = justabs;
526 1.5 mycroft else
527 1.5 mycroft pv = v->vec;
528 1.5 mycroft sav = Strspl(STRslash, name); /* / command name for postpending */
529 1.5 mycroft if (havhash)
530 1.5 mycroft hashval = hashname(name);
531 1.5 mycroft i = 0;
532 1.5 mycroft do {
533 1.5 mycroft if (!slash && pv[0][0] == '/' && havhash) {
534 1.5 mycroft hashval1 = hash(hashval, i);
535 1.5 mycroft if (!bit(xhash, hashval1))
536 1.5 mycroft goto cont;
537 1.5 mycroft }
538 1.5 mycroft if (pv[0][0] == 0 || eq(pv[0], STRdot)) { /* don't make ./xxx */
539 1.5 mycroft if (executable(NULL, name, 0)) {
540 1.5 mycroft xfree((ptr_t) sav);
541 1.5 mycroft return i + 1;
542 1.5 mycroft }
543 1.5 mycroft }
544 1.5 mycroft else {
545 1.5 mycroft if (executable(*pv, sav, 0)) {
546 1.5 mycroft xfree((ptr_t) sav);
547 1.5 mycroft return i + 1;
548 1.5 mycroft }
549 1.5 mycroft }
550 1.5 mycroft cont:
551 1.5 mycroft pv++;
552 1.5 mycroft i++;
553 1.5 mycroft } while (*pv);
554 1.5 mycroft xfree((ptr_t) sav);
555 1.5 mycroft return 0;
556 1.5 mycroft }
557 1.5 mycroft
558 1.5 mycroft /* Also by:
559 1.5 mycroft * Andreas Luik <luik (at) isaak.isa.de>
560 1.5 mycroft * I S A GmbH - Informationssysteme fuer computerintegrierte Automatisierung
561 1.5 mycroft * Azenberstr. 35
562 1.5 mycroft * D-7000 Stuttgart 1
563 1.5 mycroft * West-Germany
564 1.5 mycroft * is the executable() routine below and changes to iscommand().
565 1.5 mycroft * Thanks again!!
566 1.5 mycroft */
567 1.5 mycroft
568 1.5 mycroft /*
569 1.5 mycroft * executable() examines the pathname obtained by concatenating dir and name
570 1.5 mycroft * (dir may be NULL), and returns 1 either if it is executable by us, or
571 1.5 mycroft * if dir_ok is set and the pathname refers to a directory.
572 1.5 mycroft * This is a bit kludgy, but in the name of optimization...
573 1.5 mycroft */
574 1.5 mycroft static int
575 1.16 wiz executable(Char *dir, Char *name, bool dir_ok)
576 1.5 mycroft {
577 1.5 mycroft struct stat stbuf;
578 1.16 wiz Char path[MAXPATHLEN + 1], *dp, *sp;
579 1.16 wiz char *strname;
580 1.5 mycroft
581 1.5 mycroft if (dir && *dir) {
582 1.5 mycroft for (dp = path, sp = dir; *sp; *dp++ = *sp++)
583 1.5 mycroft if (dp == &path[MAXPATHLEN + 1]) {
584 1.5 mycroft *--dp = '\0';
585 1.5 mycroft break;
586 1.5 mycroft }
587 1.5 mycroft for (sp = name; *sp; *dp++ = *sp++)
588 1.5 mycroft if (dp == &path[MAXPATHLEN + 1]) {
589 1.5 mycroft *--dp = '\0';
590 1.5 mycroft break;
591 1.5 mycroft }
592 1.5 mycroft *dp = '\0';
593 1.5 mycroft strname = short2str(path);
594 1.5 mycroft }
595 1.5 mycroft else
596 1.5 mycroft strname = short2str(name);
597 1.16 wiz return (stat(strname, &stbuf) != -1 && ((S_ISREG(stbuf.st_mode) &&
598 1.16 wiz /* save time by not calling access() in the hopeless case */
599 1.16 wiz (stbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) &&
600 1.16 wiz access(strname, X_OK) == 0) || (dir_ok && S_ISDIR(stbuf.st_mode))));
601 1.5 mycroft }
602 1.5 mycroft
603 1.5 mycroft /* The dowhich() is by:
604 1.5 mycroft * Andreas Luik <luik (at) isaak.isa.de>
605 1.5 mycroft * I S A GmbH - Informationssysteme fuer computerintegrierte Automatisierung
606 1.5 mycroft * Azenberstr. 35
607 1.5 mycroft * D-7000 Stuttgart 1
608 1.5 mycroft * West-Germany
609 1.5 mycroft * Thanks!!
610 1.5 mycroft */
611 1.5 mycroft /*ARGSUSED*/
612 1.5 mycroft void
613 1.16 wiz dowhich(Char **v, struct command *c)
614 1.5 mycroft {
615 1.17 lukem struct wordent lexw[3];
616 1.5 mycroft struct varent *vp;
617 1.5 mycroft
618 1.17 lukem lexw[0].next = &lexw[1];
619 1.17 lukem lexw[1].next = &lexw[2];
620 1.17 lukem lexw[2].next = &lexw[0];
621 1.17 lukem
622 1.17 lukem lexw[0].prev = &lexw[2];
623 1.17 lukem lexw[1].prev = &lexw[0];
624 1.17 lukem lexw[2].prev = &lexw[1];
625 1.5 mycroft
626 1.17 lukem lexw[0].word = STRNULL;
627 1.17 lukem lexw[2].word = STRret;
628 1.5 mycroft
629 1.5 mycroft while (*++v) {
630 1.5 mycroft if ((vp = adrof1(*v, &aliases)) != NULL) {
631 1.16 wiz (void)fprintf(cshout, "%s: \t aliased to ", vis_str(*v));
632 1.5 mycroft blkpr(cshout, vp->vec);
633 1.16 wiz (void)fputc('\n', cshout);
634 1.9 christos set(STRstatus, Strsave(STR0));
635 1.5 mycroft }
636 1.5 mycroft else {
637 1.17 lukem lexw[1].word = *v;
638 1.17 lukem set(STRstatus, Strsave(tellmewhat(lexw, NULL) ? STR0 : STR1));
639 1.5 mycroft }
640 1.5 mycroft }
641 1.5 mycroft }
642 1.5 mycroft
643 1.9 christos static int
644 1.16 wiz tellmewhat(struct wordent *lexp, Char *str)
645 1.5 mycroft {
646 1.16 wiz struct biltins *bptr;
647 1.16 wiz struct wordent *sp;
648 1.16 wiz Char *cmd, *s0, *s1, *s2;
649 1.10 tls int i;
650 1.16 wiz bool aliased, found;
651 1.16 wiz Char qc;
652 1.16 wiz
653 1.16 wiz aliased = 0;
654 1.16 wiz sp = lexp->next;
655 1.5 mycroft
656 1.5 mycroft if (adrof1(sp->word, &aliases)) {
657 1.9 christos alias(lexp);
658 1.9 christos sp = lexp->next;
659 1.5 mycroft aliased = 1;
660 1.5 mycroft }
661 1.5 mycroft
662 1.5 mycroft s0 = sp->word; /* to get the memory freeing right... */
663 1.5 mycroft
664 1.5 mycroft /* handle quoted alias hack */
665 1.5 mycroft if ((*(sp->word) & (QUOTE | TRIM)) == QUOTE)
666 1.5 mycroft (sp->word)++;
667 1.5 mycroft
668 1.5 mycroft /* do quoting, if it hasn't been done */
669 1.5 mycroft s1 = s2 = sp->word;
670 1.5 mycroft while (*s2)
671 1.5 mycroft switch (*s2) {
672 1.5 mycroft case '\'':
673 1.5 mycroft case '"':
674 1.5 mycroft qc = *s2++;
675 1.5 mycroft while (*s2 && *s2 != qc)
676 1.5 mycroft *s1++ = *s2++ | QUOTE;
677 1.5 mycroft if (*s2)
678 1.5 mycroft s2++;
679 1.5 mycroft break;
680 1.5 mycroft case '\\':
681 1.5 mycroft if (*++s2)
682 1.5 mycroft *s1++ = *s2++ | QUOTE;
683 1.5 mycroft break;
684 1.5 mycroft default:
685 1.5 mycroft *s1++ = *s2++;
686 1.5 mycroft }
687 1.5 mycroft *s1 = '\0';
688 1.5 mycroft
689 1.5 mycroft for (bptr = bfunc; bptr < &bfunc[nbfunc]; bptr++) {
690 1.5 mycroft if (eq(sp->word, str2short(bptr->bname))) {
691 1.9 christos if (str == NULL) {
692 1.9 christos if (aliased)
693 1.9 christos prlex(cshout, lexp);
694 1.16 wiz (void)fprintf(cshout, "%s: shell built-in command.\n",
695 1.9 christos vis_str(sp->word));
696 1.9 christos }
697 1.9 christos else
698 1.16 wiz (void)Strcpy(str, sp->word);
699 1.5 mycroft sp->word = s0; /* we save and then restore this */
700 1.9 christos return 1;
701 1.5 mycroft }
702 1.5 mycroft }
703 1.5 mycroft
704 1.8 christos sp->word = cmd = globone(sp->word, G_IGNORE);
705 1.8 christos
706 1.9 christos if ((i = iscommand(sp->word)) != 0) {
707 1.10 tls Char **pv;
708 1.10 tls struct varent *v;
709 1.5 mycroft bool slash = any(short2str(sp->word), '/');
710 1.5 mycroft
711 1.5 mycroft v = adrof(STRpath);
712 1.5 mycroft if (v == 0 || v->vec[0] == 0 || slash)
713 1.5 mycroft pv = justabs;
714 1.5 mycroft else
715 1.5 mycroft pv = v->vec;
716 1.5 mycroft
717 1.5 mycroft while (--i)
718 1.5 mycroft pv++;
719 1.5 mycroft if (pv[0][0] == 0 || eq(pv[0], STRdot)) {
720 1.8 christos if (!slash) {
721 1.8 christos sp->word = Strspl(STRdotsl, sp->word);
722 1.9 christos prlex(cshout, lexp);
723 1.8 christos xfree((ptr_t) sp->word);
724 1.8 christos }
725 1.8 christos else
726 1.9 christos prlex(cshout, lexp);
727 1.9 christos }
728 1.9 christos else {
729 1.9 christos s1 = Strspl(*pv, STRslash);
730 1.9 christos sp->word = Strspl(s1, sp->word);
731 1.9 christos xfree((ptr_t) s1);
732 1.9 christos if (str == NULL)
733 1.9 christos prlex(cshout, lexp);
734 1.9 christos else
735 1.16 wiz (void)Strcpy(str, sp->word);
736 1.9 christos xfree((ptr_t) sp->word);
737 1.5 mycroft }
738 1.9 christos found = 1;
739 1.5 mycroft }
740 1.5 mycroft else {
741 1.9 christos if (str == NULL) {
742 1.9 christos if (aliased)
743 1.9 christos prlex(cshout, lexp);
744 1.16 wiz (void)fprintf(csherr,
745 1.9 christos "%s: Command not found.\n", vis_str(sp->word));
746 1.9 christos }
747 1.9 christos else
748 1.16 wiz (void)Strcpy(str, sp->word);
749 1.9 christos found = 0;
750 1.5 mycroft }
751 1.5 mycroft sp->word = s0; /* we save and then restore this */
752 1.8 christos xfree((ptr_t) cmd);
753 1.9 christos return found;
754 1.1 cgd }
755