2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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
35 static char sccsid
[] = "@(#)cd.c 8.2 (Berkeley) 5/4/95";
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD: src/bin/sh/cd.c,v 1.34 2004/04/06 20:06:51 markm Exp $");
43 #include <sys/types.h>
52 * The cd and pwd commands.
57 #include "nodes.h" /* for jobs.h */
70 STATIC
int cdlogical(const char *);
71 STATIC
int cdphysical(const char *);
72 STATIC
int docd(const char *, int, int);
73 STATIC
char *getcomponent(void);
74 STATIC
int updatepwd(const char *);
76 STATIC
char *curdir
= NULL
; /* current working directory */
77 STATIC
char *prevdir
; /* previous working directory */
78 STATIC
char *cdcomppath
;
81 cdcmd(int argc
, char **argv
)
87 int ch
, phys
, print
= 0;
89 optreset
= 1; optind
= 1; opterr
= 0; /* initialize getopt */
91 while ((ch
= getopt(argc
, argv
, "LP")) != -1) {
100 error("unknown option: -%c", optopt
);
108 error("too many arguments");
110 if ((dest
= *argv
) == NULL
&& (dest
= bltinlookup("HOME", 1)) == NULL
)
111 error("HOME not set");
114 if (dest
[0] == '-' && dest
[1] == '\0') {
115 dest
= prevdir
? prevdir
: curdir
;
121 if (*dest
== '/' || (path
= bltinlookup("CDPATH", 1)) == NULL
)
123 while ((p
= padvance(&path
, dest
)) != NULL
) {
124 if (stat(p
, &statb
) >= 0 && S_ISDIR(statb
.st_mode
)) {
129 if (p
[0] == '.' && p
[1] == '/' && p
[2] != '\0')
131 print
= strcmp(p
, dest
);
133 if (docd(p
, print
, phys
) >= 0)
137 error("can't cd to %s", dest
);
144 * Actually change the directory. In an interactive shell, print the
145 * directory name if "print" is nonzero.
148 docd(const char *dest
, int print
, int phys
)
151 TRACE(("docd(\"%s\", %d, %d) called\n", dest
, print
, phys
));
153 /* If logical cd fails, fall back to physical. */
154 if ((phys
|| cdlogical(dest
) < 0) && cdphysical(dest
) < 0)
157 if (print
&& iflag
&& curdir
)
158 out1fmt("%s\n", curdir
);
164 cdlogical(const char *dest
)
174 * Check each component of the path. If we find a symlink or
175 * something we can't stat, clear curdir to force a getcwd()
176 * next time we get the value of the current directory.
179 cdcomppath
= stalloc(strlen(dest
) + 1);
180 scopy(dest
, cdcomppath
);
187 while ((q
= getcomponent()) != NULL
) {
188 if (q
[0] == '\0' || (q
[0] == '.' && q
[1] == '\0'))
196 if (equal(component
, ".."))
199 if (lstat(stackblock(), &statb
) < 0) {
206 if (updatepwd(badstat
? NULL
: dest
) < 0 || chdir(curdir
) < 0) {
215 cdphysical(const char *dest
)
219 if (chdir(dest
) < 0 || updatepwd(NULL
) < 0) {
228 * Get the next component of the path name pointed to by cdcomppath.
229 * This routine overwrites the string pointed to by cdcomppath.
237 if ((p
= cdcomppath
) == NULL
)
240 while (*p
!= '/' && *p
!= '\0')
253 * Update curdir (the name of the current directory) in response to a
254 * cd command. We also call hashcd to let the routines in exec.c know
255 * that the current directory has changed.
258 updatepwd(const char *dir
)
263 hashcd(); /* update command hash table */
266 * If our argument is NULL, we don't know the current directory
267 * any more because we traversed a symbolic link or something
268 * we couldn't stat().
270 if (dir
== NULL
|| curdir
== NULL
) {
276 if (getpwd() == NULL
) {
280 setvar("PWD", curdir
, VEXPORT
);
281 setvar("OLDPWD", prevdir
, VEXPORT
);
285 cdcomppath
= stalloc(strlen(dir
) + 1);
286 scopy(dir
, cdcomppath
);
295 while ((p
= getcomponent()) != NULL
) {
296 if (equal(p
, "..")) {
297 while (new > stackblock() && (STUNPUTC(new), *new) != '/');
298 } else if (*p
!= '\0' && ! equal(p
, ".")) {
304 if (new == stackblock())
311 curdir
= savestr(stackblock());
312 setvar("PWD", curdir
, VEXPORT
);
313 setvar("OLDPWD", prevdir
, VEXPORT
);
320 pwdcmd(int argc
, char **argv
)
325 optreset
= 1; optind
= 1; opterr
= 0; /* initialize getopt */
327 while ((ch
= getopt(argc
, argv
, "LP")) != -1) {
336 error("unknown option: -%c", optopt
);
344 error("too many arguments");
346 if (!phys
&& getpwd()) {
350 if (getcwd(buf
, sizeof(buf
)) == NULL
)
351 error(".: %s", strerror(errno
));
360 * Find out what the current directory is. If we already know the current
361 * directory, this routine returns immediately.
370 if (getcwd(buf
, sizeof(buf
)) == NULL
) {
371 char *pwd
= getenv("PWD");
372 struct stat stdot
, stpwd
;
374 if (pwd
&& *pwd
== '/' && stat(".", &stdot
) != -1 &&
375 stat(pwd
, &stpwd
) != -1 &&
376 stdot
.st_dev
== stpwd
.st_dev
&&
377 stdot
.st_ino
== stpwd
.st_ino
) {
378 curdir
= savestr(pwd
);
383 curdir
= savestr(buf
);
389 * $PchId: cd.c,v 1.6 2006/05/22 12:42:03 philip Exp $