cd.c revision 1.38 1 1.38 dsl /* $NetBSD: cd.c,v 1.38 2005/11/26 21:44:43 dsl Exp $ */
2 1.12 cgd
3 1.1 cgd /*-
4 1.6 jtc * Copyright (c) 1991, 1993
5 1.6 jtc * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Kenneth Almquist.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.31 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 cgd * may be used to endorse or promote products derived from this software
20 1.1 cgd * without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 cgd * SUCH DAMAGE.
33 1.1 cgd */
34 1.1 cgd
35 1.23 christos #include <sys/cdefs.h>
36 1.1 cgd #ifndef lint
37 1.12 cgd #if 0
38 1.13 christos static char sccsid[] = "@(#)cd.c 8.2 (Berkeley) 5/4/95";
39 1.12 cgd #else
40 1.38 dsl __RCSID("$NetBSD: cd.c,v 1.38 2005/11/26 21:44:43 dsl Exp $");
41 1.12 cgd #endif
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.9 cgd #include <sys/types.h>
45 1.9 cgd #include <sys/stat.h>
46 1.13 christos #include <stdlib.h>
47 1.17 thorpej #include <string.h>
48 1.9 cgd #include <unistd.h>
49 1.9 cgd #include <errno.h>
50 1.9 cgd
51 1.1 cgd /*
52 1.1 cgd * The cd and pwd commands.
53 1.1 cgd */
54 1.1 cgd
55 1.1 cgd #include "shell.h"
56 1.1 cgd #include "var.h"
57 1.1 cgd #include "nodes.h" /* for jobs.h */
58 1.1 cgd #include "jobs.h"
59 1.1 cgd #include "options.h"
60 1.1 cgd #include "output.h"
61 1.1 cgd #include "memalloc.h"
62 1.1 cgd #include "error.h"
63 1.16 christos #include "exec.h"
64 1.13 christos #include "redir.h"
65 1.1 cgd #include "mystring.h"
66 1.13 christos #include "show.h"
67 1.14 christos #include "cd.h"
68 1.1 cgd
69 1.36 dsl STATIC int docd(const char *, int);
70 1.29 christos STATIC char *getcomponent(void);
71 1.36 dsl STATIC void updatepwd(const char *);
72 1.34 dsl STATIC void find_curdir(int noerror);
73 1.1 cgd
74 1.14 christos char *curdir = NULL; /* current working directory */
75 1.6 jtc char *prevdir; /* previous working directory */
76 1.1 cgd STATIC char *cdcomppath;
77 1.1 cgd
78 1.1 cgd int
79 1.29 christos cdcmd(int argc, char **argv)
80 1.10 cgd {
81 1.27 christos const char *dest;
82 1.36 dsl const char *path, *p;
83 1.36 dsl char *d;
84 1.1 cgd struct stat statb;
85 1.30 dsl int print = cdprint; /* set -cdprint to enable */
86 1.1 cgd
87 1.1 cgd nextopt(nullstr);
88 1.29 christos
89 1.34 dsl /*
90 1.34 dsl * Try (quite hard) to have 'curdir' defined, nothing has set
91 1.34 dsl * it on entry to the shell, but we want 'cd fred; cd -' to work.
92 1.34 dsl */
93 1.29 christos getpwd(1);
94 1.29 christos dest = *argptr;
95 1.29 christos if (dest == NULL) {
96 1.29 christos dest = bltinlookup("HOME", 1);
97 1.29 christos if (dest == NULL)
98 1.29 christos error("HOME not set");
99 1.29 christos } else {
100 1.29 christos if (argptr[1]) {
101 1.29 christos /* Do 'ksh' style substitution */
102 1.29 christos if (!curdir)
103 1.29 christos error("PWD not set");
104 1.29 christos p = strstr(curdir, dest);
105 1.29 christos if (!p)
106 1.29 christos error("bad substitution");
107 1.29 christos d = stalloc(strlen(curdir) + strlen(argptr[1]) + 1);
108 1.29 christos memcpy(d, curdir, p - curdir);
109 1.29 christos strcpy(d + (p - curdir), argptr[1]);
110 1.29 christos strcat(d, p + strlen(dest));
111 1.29 christos dest = d;
112 1.29 christos print = 1;
113 1.29 christos }
114 1.29 christos }
115 1.29 christos
116 1.6 jtc if (dest[0] == '-' && dest[1] == '\0') {
117 1.6 jtc dest = prevdir ? prevdir : curdir;
118 1.6 jtc print = 1;
119 1.6 jtc }
120 1.34 dsl if (*dest == '\0')
121 1.34 dsl dest = ".";
122 1.36 dsl p = dest;
123 1.36 dsl if (*p == '.' && *++p == '.')
124 1.36 dsl p++;
125 1.36 dsl if (*p == 0 || *p == '/' || (path = bltinlookup("CDPATH", 1)) == NULL)
126 1.1 cgd path = nullstr;
127 1.1 cgd while ((p = padvance(&path, dest)) != NULL) {
128 1.11 mycroft if (stat(p, &statb) >= 0 && S_ISDIR(statb.st_mode)) {
129 1.6 jtc if (!print) {
130 1.6 jtc /*
131 1.6 jtc * XXX - rethink
132 1.6 jtc */
133 1.24 christos if (p[0] == '.' && p[1] == '/' && p[2] != '\0')
134 1.38 dsl print = strcmp(p + 2, dest);
135 1.38 dsl else
136 1.38 dsl print = strcmp(p, dest);
137 1.6 jtc }
138 1.6 jtc if (docd(p, print) >= 0)
139 1.6 jtc return 0;
140 1.6 jtc
141 1.6 jtc }
142 1.1 cgd }
143 1.1 cgd error("can't cd to %s", dest);
144 1.26 mycroft /* NOTREACHED */
145 1.1 cgd }
146 1.1 cgd
147 1.1 cgd
148 1.1 cgd /*
149 1.15 jtc * Actually do the chdir. In an interactive shell, print the
150 1.15 jtc * directory name if "print" is nonzero.
151 1.1 cgd */
152 1.1 cgd
153 1.1 cgd STATIC int
154 1.36 dsl docd(const char *dest, int print)
155 1.15 jtc {
156 1.20 tls char *p;
157 1.20 tls char *q;
158 1.19 cjs char *component;
159 1.19 cjs struct stat statb;
160 1.19 cjs int first;
161 1.19 cjs int badstat;
162 1.15 jtc
163 1.15 jtc TRACE(("docd(\"%s\", %d) called\n", dest, print));
164 1.19 cjs
165 1.19 cjs /*
166 1.19 cjs * Check each component of the path. If we find a symlink or
167 1.19 cjs * something we can't stat, clear curdir to force a getcwd()
168 1.19 cjs * next time we get the value of the current directory.
169 1.19 cjs */
170 1.19 cjs badstat = 0;
171 1.19 cjs cdcomppath = stalloc(strlen(dest) + 1);
172 1.19 cjs scopy(dest, cdcomppath);
173 1.19 cjs STARTSTACKSTR(p);
174 1.19 cjs if (*dest == '/') {
175 1.19 cjs STPUTC('/', p);
176 1.19 cjs cdcomppath++;
177 1.19 cjs }
178 1.19 cjs first = 1;
179 1.19 cjs while ((q = getcomponent()) != NULL) {
180 1.19 cjs if (q[0] == '\0' || (q[0] == '.' && q[1] == '\0'))
181 1.19 cjs continue;
182 1.19 cjs if (! first)
183 1.19 cjs STPUTC('/', p);
184 1.19 cjs first = 0;
185 1.19 cjs component = q;
186 1.19 cjs while (*q)
187 1.19 cjs STPUTC(*q++, p);
188 1.19 cjs if (equal(component, ".."))
189 1.19 cjs continue;
190 1.19 cjs STACKSTRNUL(p);
191 1.19 cjs if ((lstat(stackblock(), &statb) < 0)
192 1.19 cjs || (S_ISLNK(statb.st_mode))) {
193 1.19 cjs /* print = 1; */
194 1.19 cjs badstat = 1;
195 1.19 cjs break;
196 1.19 cjs }
197 1.19 cjs }
198 1.19 cjs
199 1.1 cgd INTOFF;
200 1.1 cgd if (chdir(dest) < 0) {
201 1.1 cgd INTON;
202 1.1 cgd return -1;
203 1.1 cgd }
204 1.19 cjs updatepwd(badstat ? NULL : dest);
205 1.1 cgd INTON;
206 1.35 christos if (print && iflag == 1 && curdir)
207 1.19 cjs out1fmt("%s\n", curdir);
208 1.1 cgd return 0;
209 1.1 cgd }
210 1.1 cgd
211 1.1 cgd
212 1.1 cgd /*
213 1.1 cgd * Get the next component of the path name pointed to by cdcomppath.
214 1.1 cgd * This routine overwrites the string pointed to by cdcomppath.
215 1.1 cgd */
216 1.1 cgd
217 1.1 cgd STATIC char *
218 1.36 dsl getcomponent(void)
219 1.29 christos {
220 1.20 tls char *p;
221 1.1 cgd char *start;
222 1.1 cgd
223 1.1 cgd if ((p = cdcomppath) == NULL)
224 1.1 cgd return NULL;
225 1.1 cgd start = cdcomppath;
226 1.1 cgd while (*p != '/' && *p != '\0')
227 1.1 cgd p++;
228 1.1 cgd if (*p == '\0') {
229 1.1 cgd cdcomppath = NULL;
230 1.1 cgd } else {
231 1.1 cgd *p++ = '\0';
232 1.1 cgd cdcomppath = p;
233 1.1 cgd }
234 1.1 cgd return start;
235 1.1 cgd }
236 1.1 cgd
237 1.1 cgd
238 1.1 cgd
239 1.1 cgd /*
240 1.1 cgd * Update curdir (the name of the current directory) in response to a
241 1.1 cgd * cd command. We also call hashcd to let the routines in exec.c know
242 1.1 cgd * that the current directory has changed.
243 1.1 cgd */
244 1.1 cgd
245 1.1 cgd STATIC void
246 1.36 dsl updatepwd(const char *dir)
247 1.29 christos {
248 1.1 cgd char *new;
249 1.1 cgd char *p;
250 1.1 cgd
251 1.1 cgd hashcd(); /* update command hash table */
252 1.19 cjs
253 1.19 cjs /*
254 1.19 cjs * If our argument is NULL, we don't know the current directory
255 1.19 cjs * any more because we traversed a symbolic link or something
256 1.19 cjs * we couldn't stat().
257 1.19 cjs */
258 1.25 ross if (dir == NULL || curdir == NULL) {
259 1.19 cjs if (prevdir)
260 1.19 cjs ckfree(prevdir);
261 1.19 cjs INTOFF;
262 1.19 cjs prevdir = curdir;
263 1.19 cjs curdir = NULL;
264 1.29 christos getpwd(1);
265 1.19 cjs INTON;
266 1.29 christos if (curdir)
267 1.29 christos setvar("PWD", curdir, VEXPORT);
268 1.29 christos else
269 1.29 christos unsetvar("PWD", 0);
270 1.19 cjs return;
271 1.19 cjs }
272 1.1 cgd cdcomppath = stalloc(strlen(dir) + 1);
273 1.1 cgd scopy(dir, cdcomppath);
274 1.1 cgd STARTSTACKSTR(new);
275 1.1 cgd if (*dir != '/') {
276 1.1 cgd p = curdir;
277 1.1 cgd while (*p)
278 1.1 cgd STPUTC(*p++, new);
279 1.1 cgd if (p[-1] == '/')
280 1.1 cgd STUNPUTC(new);
281 1.1 cgd }
282 1.1 cgd while ((p = getcomponent()) != NULL) {
283 1.1 cgd if (equal(p, "..")) {
284 1.1 cgd while (new > stackblock() && (STUNPUTC(new), *new) != '/');
285 1.1 cgd } else if (*p != '\0' && ! equal(p, ".")) {
286 1.1 cgd STPUTC('/', new);
287 1.1 cgd while (*p)
288 1.1 cgd STPUTC(*p++, new);
289 1.1 cgd }
290 1.1 cgd }
291 1.1 cgd if (new == stackblock())
292 1.1 cgd STPUTC('/', new);
293 1.1 cgd STACKSTRNUL(new);
294 1.6 jtc INTOFF;
295 1.6 jtc if (prevdir)
296 1.6 jtc ckfree(prevdir);
297 1.6 jtc prevdir = curdir;
298 1.1 cgd curdir = savestr(stackblock());
299 1.28 he setvar("PWD", curdir, VEXPORT);
300 1.6 jtc INTON;
301 1.1 cgd }
302 1.1 cgd
303 1.34 dsl /*
304 1.34 dsl * Posix says the default should be 'pwd -L' (as below), however
305 1.34 dsl * the 'cd' command (above) does something much nearer to the
306 1.34 dsl * posix 'cd -P' (not the posix default of 'cd -L').
307 1.34 dsl * If 'cd' is changed to support -P/L then the default here
308 1.34 dsl * needs to be revisited if the historic behaviour is to be kept.
309 1.34 dsl */
310 1.1 cgd
311 1.1 cgd int
312 1.29 christos pwdcmd(int argc, char **argv)
313 1.10 cgd {
314 1.33 dsl int i;
315 1.33 dsl char opt = 'L';
316 1.33 dsl
317 1.33 dsl while ((i = nextopt("LP")) != '\0')
318 1.33 dsl opt = i;
319 1.33 dsl if (*argptr)
320 1.33 dsl error("unexpected argument");
321 1.33 dsl
322 1.34 dsl if (opt == 'L')
323 1.33 dsl getpwd(0);
324 1.34 dsl else
325 1.34 dsl find_curdir(0);
326 1.33 dsl
327 1.34 dsl setvar("PWD", curdir, VEXPORT);
328 1.34 dsl out1str(curdir);
329 1.1 cgd out1c('\n');
330 1.1 cgd return 0;
331 1.1 cgd }
332 1.1 cgd
333 1.1 cgd
334 1.1 cgd
335 1.37 christos void
336 1.37 christos initpwd(void)
337 1.37 christos {
338 1.37 christos getpwd(0);
339 1.37 christos setvar("PWD", curdir, VEXPORT);
340 1.37 christos }
341 1.14 christos
342 1.14 christos #define MAXPWD 256
343 1.14 christos
344 1.1 cgd /*
345 1.14 christos * Find out what the current directory is. If we already know the current
346 1.1 cgd * directory, this routine returns immediately.
347 1.1 cgd */
348 1.14 christos void
349 1.29 christos getpwd(int noerror)
350 1.14 christos {
351 1.29 christos char *pwd;
352 1.29 christos struct stat stdot, stpwd;
353 1.29 christos static int first = 1;
354 1.1 cgd
355 1.1 cgd if (curdir)
356 1.1 cgd return;
357 1.29 christos
358 1.29 christos if (first) {
359 1.33 dsl first = 0;
360 1.29 christos pwd = getenv("PWD");
361 1.29 christos if (pwd && *pwd == '/' && stat(".", &stdot) != -1 &&
362 1.29 christos stat(pwd, &stpwd) != -1 &&
363 1.29 christos stdot.st_dev == stpwd.st_dev &&
364 1.29 christos stdot.st_ino == stpwd.st_ino) {
365 1.29 christos curdir = savestr(pwd);
366 1.29 christos return;
367 1.29 christos }
368 1.29 christos }
369 1.33 dsl
370 1.34 dsl find_curdir(noerror);
371 1.33 dsl
372 1.33 dsl return;
373 1.33 dsl }
374 1.33 dsl
375 1.34 dsl STATIC void
376 1.34 dsl find_curdir(int noerror)
377 1.33 dsl {
378 1.33 dsl int i;
379 1.33 dsl char *pwd;
380 1.29 christos
381 1.14 christos /*
382 1.14 christos * Things are a bit complicated here; we could have just used
383 1.14 christos * getcwd, but traditionally getcwd is implemented using popen
384 1.14 christos * to /bin/pwd. This creates a problem for us, since we cannot
385 1.14 christos * keep track of the job if it is being ran behind our backs.
386 1.14 christos * So we re-implement getcwd(), and we suppress interrupts
387 1.14 christos * throughout the process. This is not completely safe, since
388 1.14 christos * the user can still break out of it by killing the pwd program.
389 1.14 christos * We still try to use getcwd for systems that we know have a
390 1.14 christos * c implementation of getcwd, that does not open a pipe to
391 1.14 christos * /bin/pwd.
392 1.14 christos */
393 1.22 christos #if defined(__NetBSD__) || defined(__SVR4)
394 1.21 christos
395 1.29 christos for (i = MAXPWD;; i *= 2) {
396 1.29 christos pwd = stalloc(i);
397 1.34 dsl if (getcwd(pwd, i) != NULL) {
398 1.34 dsl curdir = savestr(pwd);
399 1.34 dsl return;
400 1.34 dsl }
401 1.29 christos stunalloc(pwd);
402 1.29 christos if (errno == ERANGE)
403 1.29 christos continue;
404 1.29 christos if (!noerror)
405 1.29 christos error("getcwd() failed: %s", strerror(errno));
406 1.34 dsl return;
407 1.21 christos }
408 1.14 christos #else
409 1.14 christos {
410 1.14 christos char *p;
411 1.14 christos int status;
412 1.14 christos struct job *jp;
413 1.14 christos int pip[2];
414 1.14 christos
415 1.34 dsl pwd = stalloc(MAXPWD);
416 1.14 christos INTOFF;
417 1.14 christos if (pipe(pip) < 0)
418 1.14 christos error("Pipe call failed");
419 1.14 christos jp = makejob((union node *)NULL, 1);
420 1.14 christos if (forkshell(jp, (union node *)NULL, FORK_NOJOB) == 0) {
421 1.14 christos (void) close(pip[0]);
422 1.14 christos if (pip[1] != 1) {
423 1.14 christos close(1);
424 1.14 christos copyfd(pip[1], 1);
425 1.14 christos close(pip[1]);
426 1.14 christos }
427 1.14 christos (void) execl("/bin/pwd", "pwd", (char *)0);
428 1.14 christos error("Cannot exec /bin/pwd");
429 1.14 christos }
430 1.14 christos (void) close(pip[1]);
431 1.14 christos pip[1] = -1;
432 1.34 dsl p = pwd;
433 1.34 dsl while ((i = read(pip[0], p, pwd + MAXPWD - p)) > 0
434 1.14 christos || (i == -1 && errno == EINTR)) {
435 1.14 christos if (i > 0)
436 1.14 christos p += i;
437 1.1 cgd }
438 1.14 christos (void) close(pip[0]);
439 1.14 christos pip[0] = -1;
440 1.14 christos status = waitforjob(jp);
441 1.14 christos if (status != 0)
442 1.14 christos error((char *)0);
443 1.34 dsl if (i < 0 || p == pwd || p[-1] != '\n') {
444 1.29 christos if (noerror) {
445 1.29 christos INTON;
446 1.34 dsl return;
447 1.29 christos }
448 1.14 christos error("pwd command failed");
449 1.29 christos }
450 1.14 christos p[-1] = '\0';
451 1.33 dsl INTON;
452 1.34 dsl curdir = savestr(pwd);
453 1.34 dsl return;
454 1.1 cgd }
455 1.15 jtc #endif
456 1.1 cgd }
457