1 /* $NetBSD: cd.c,v 1.44 2011/08/31 16:24:54 plunky Exp $ */
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
38 static char sccsid
[] = "@(#)cd.c 8.2 (Berkeley) 5/4/95";
40 __RCSID("$NetBSD: cd.c,v 1.44 2011/08/31 16:24:54 plunky Exp $");
44 #include <sys/types.h>
52 * The cd and pwd commands.
57 #include "nodes.h" /* for jobs.h */
70 STATIC
int docd(const char *, int);
71 STATIC
char *getcomponent(void);
72 STATIC
void updatepwd(const char *);
73 STATIC
void find_curdir(int noerror
);
75 char *curdir
= NULL
; /* current working directory */
76 char *prevdir
; /* previous working directory */
77 STATIC
char *cdcomppath
;
80 cdcmd(int argc
, char **argv
)
86 int print
= cdprint
; /* set -cdprint to enable */
88 while (nextopt("P") != '\0')
92 * Try (quite hard) to have 'curdir' defined, nothing has set
93 * it on entry to the shell, but we want 'cd fred; cd -' to work.
98 dest
= bltinlookup("HOME", 1);
100 error("HOME not set");
103 /* Do 'ksh' style substitution */
105 error("PWD not set");
106 p
= strstr(curdir
, dest
);
108 error("bad substitution");
109 d
= stalloc(strlen(curdir
) + strlen(argptr
[1]) + 1);
110 memcpy(d
, curdir
, p
- curdir
);
111 strcpy(d
+ (p
- curdir
), argptr
[1]);
112 strcat(d
, p
+ strlen(dest
));
118 if (dest
[0] == '-' && dest
[1] == '\0') {
119 dest
= prevdir
? prevdir
: curdir
;
125 if (*p
== '.' && *++p
== '.')
127 if (*p
== 0 || *p
== '/' || (path
= bltinlookup("CDPATH", 1)) == NULL
)
129 while ((p
= padvance(&path
, dest
)) != NULL
) {
130 if (stat(p
, &statb
) >= 0 && S_ISDIR(statb
.st_mode
)) {
135 if (p
[0] == '.' && p
[1] == '/' && p
[2] != '\0')
136 print
= strcmp(p
+ 2, dest
);
138 print
= strcmp(p
, dest
);
140 if (docd(p
, print
) >= 0)
145 error("can't cd to %s", dest
);
151 * Actually do the chdir. In an interactive shell, print the
152 * directory name if "print" is nonzero.
156 docd(const char *dest
, int print
)
165 TRACE(("docd(\"%s\", %d) called\n", dest
, print
));
168 * Check each component of the path. If we find a symlink or
169 * something we can't stat, clear curdir to force a getcwd()
170 * next time we get the value of the current directory.
173 cdcomppath
= stalloc(strlen(dest
) + 1);
174 scopy(dest
, cdcomppath
);
181 while ((q
= getcomponent()) != NULL
) {
182 if (q
[0] == '\0' || (q
[0] == '.' && q
[1] == '\0'))
190 if (equal(component
, ".."))
193 if ((lstat(stackblock(), &statb
) < 0)
194 || (S_ISLNK(statb
.st_mode
))) {
202 if (chdir(dest
) < 0) {
206 updatepwd(badstat
? NULL
: dest
);
208 if (print
&& iflag
== 1 && curdir
)
209 out1fmt("%s\n", curdir
);
215 * Get the next component of the path name pointed to by cdcomppath.
216 * This routine overwrites the string pointed to by cdcomppath.
225 if ((p
= cdcomppath
) == NULL
)
228 while (*p
!= '/' && *p
!= '\0')
242 * Update curdir (the name of the current directory) in response to a
243 * cd command. We also call hashcd to let the routines in exec.c know
244 * that the current directory has changed.
248 updatepwd(const char *dir
)
253 hashcd(); /* update command hash table */
256 * If our argument is NULL, we don't know the current directory
257 * any more because we traversed a symbolic link or something
258 * we couldn't stat().
260 if (dir
== NULL
|| curdir
== NULL
) {
269 setvar("OLDPWD", prevdir
, VEXPORT
);
270 setvar("PWD", curdir
, VEXPORT
);
275 cdcomppath
= stalloc(strlen(dir
) + 1);
276 scopy(dir
, cdcomppath
);
285 while ((p
= getcomponent()) != NULL
) {
286 if (equal(p
, "..")) {
287 while (new > stackblock() && (STUNPUTC(new), *new) != '/');
288 } else if (*p
!= '\0' && ! equal(p
, ".")) {
294 if (new == stackblock())
301 curdir
= savestr(stackblock());
302 setvar("OLDPWD", prevdir
, VEXPORT
);
303 setvar("PWD", curdir
, VEXPORT
);
308 * Posix says the default should be 'pwd -L' (as below), however
309 * the 'cd' command (above) does something much nearer to the
310 * posix 'cd -P' (not the posix default of 'cd -L').
311 * If 'cd' is changed to support -P/L then the default here
312 * needs to be revisited if the historic behaviour is to be kept.
316 pwdcmd(int argc
, char **argv
)
321 while ((i
= nextopt("LP")) != '\0')
324 error("unexpected argument");
331 setvar("OLDPWD", prevdir
, VEXPORT
);
332 setvar("PWD", curdir
, VEXPORT
);
345 setvar("PWD", curdir
, VEXPORT
);
347 sh_warnx("Cannot determine current working directory");
353 * Find out what the current directory is. If we already know the current
354 * directory, this routine returns immediately.
360 struct stat stdot
, stpwd
;
361 static int first
= 1;
369 if (pwd
&& *pwd
== '/' && stat(".", &stdot
) != -1 &&
370 stat(pwd
, &stpwd
) != -1 &&
371 stdot
.st_dev
== stpwd
.st_dev
&&
372 stdot
.st_ino
== stpwd
.st_ino
) {
373 curdir
= savestr(pwd
);
378 find_curdir(noerror
);
384 find_curdir(int noerror
)
390 * Things are a bit complicated here; we could have just used
391 * getcwd, but traditionally getcwd is implemented using popen
392 * to /bin/pwd. This creates a problem for us, since we cannot
393 * keep track of the job if it is being ran behind our backs.
394 * So we re-implement getcwd(), and we suppress interrupts
395 * throughout the process. This is not completely safe, since
396 * the user can still break out of it by killing the pwd program.
397 * We still try to use getcwd for systems that we know have a
398 * c implementation of getcwd, that does not open a pipe to
401 #if defined(__NetBSD__) || defined(__SVR4) || defined(__minix)
403 for (i
= MAXPWD
;; i
*= 2) {
405 if (getcwd(pwd
, i
) != NULL
) {
406 curdir
= savestr(pwd
);
413 error("getcwd() failed: %s", strerror(errno
));
423 pwd
= stalloc(MAXPWD
);
426 error("Pipe call failed");
427 jp
= makejob(NULL
, 1);
428 if (forkshell(jp
, NULL
, FORK_NOJOB
) == 0) {
429 (void) close(pip
[0]);
432 copyfd(pip
[1], 1, 1);
435 (void) execl("/bin/pwd", "pwd", (char *)0);
436 error("Cannot exec /bin/pwd");
438 (void) close(pip
[1]);
441 while ((i
= read(pip
[0], p
, pwd
+ MAXPWD
- p
)) > 0
442 || (i
== -1 && errno
== EINTR
)) {
446 (void) close(pip
[0]);
448 status
= waitforjob(jp
);
451 if (i
< 0 || p
== pwd
|| p
[-1] != '\n') {
456 error("pwd command failed");
460 curdir
= savestr(pwd
);