Home | History | Annotate | Line # | Download | only in sh
cd.c revision 1.10
      1   1.1      cgd /*-
      2   1.6      jtc  * Copyright (c) 1991, 1993
      3   1.6      jtc  *	The Regents of the University of California.  All rights reserved.
      4   1.1      cgd  *
      5   1.1      cgd  * This code is derived from software contributed to Berkeley by
      6   1.1      cgd  * Kenneth Almquist.
      7   1.1      cgd  *
      8   1.1      cgd  * Redistribution and use in source and binary forms, with or without
      9   1.1      cgd  * modification, are permitted provided that the following conditions
     10   1.1      cgd  * are met:
     11   1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     12   1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     13   1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     15   1.1      cgd  *    documentation and/or other materials provided with the distribution.
     16   1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     17   1.1      cgd  *    must display the following acknowledgement:
     18   1.1      cgd  *	This product includes software developed by the University of
     19   1.1      cgd  *	California, Berkeley and its contributors.
     20   1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     21   1.1      cgd  *    may be used to endorse or promote products derived from this software
     22   1.1      cgd  *    without specific prior written permission.
     23   1.1      cgd  *
     24   1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25   1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26   1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27   1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28   1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29   1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30   1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31   1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32   1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33   1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34   1.1      cgd  * SUCH DAMAGE.
     35   1.1      cgd  */
     36   1.1      cgd 
     37   1.1      cgd #ifndef lint
     38   1.8  mycroft /*static char sccsid[] = "from: @(#)cd.c	8.1 (Berkeley) 5/31/93";*/
     39  1.10      cgd static char *rcsid = "$Id: cd.c,v 1.10 1994/12/05 19:07:32 cgd Exp $";
     40   1.1      cgd #endif /* not lint */
     41   1.1      cgd 
     42   1.9      cgd #include <sys/types.h>
     43   1.9      cgd #include <sys/stat.h>
     44   1.9      cgd #include <unistd.h>
     45   1.9      cgd #include <errno.h>
     46   1.9      cgd 
     47   1.1      cgd /*
     48   1.1      cgd  * The cd and pwd commands.
     49   1.1      cgd  */
     50   1.1      cgd 
     51   1.1      cgd #include "shell.h"
     52   1.1      cgd #include "var.h"
     53   1.1      cgd #include "nodes.h"	/* for jobs.h */
     54   1.1      cgd #include "jobs.h"
     55   1.1      cgd #include "options.h"
     56   1.1      cgd #include "output.h"
     57   1.1      cgd #include "memalloc.h"
     58   1.1      cgd #include "error.h"
     59   1.1      cgd #include "mystring.h"
     60   1.9      cgd #include "extern.h"
     61   1.1      cgd 
     62   1.1      cgd 
     63   1.1      cgd #ifdef __STDC__
     64   1.1      cgd STATIC int docd(char *, int);
     65   1.1      cgd STATIC void updatepwd(char *);
     66   1.1      cgd STATIC void getpwd(void);
     67   1.1      cgd STATIC char *getcomponent(void);
     68   1.1      cgd #else
     69   1.1      cgd STATIC int docd();
     70   1.1      cgd STATIC void updatepwd();
     71   1.1      cgd STATIC void getpwd();
     72   1.1      cgd STATIC char *getcomponent();
     73   1.1      cgd #endif
     74   1.1      cgd 
     75   1.1      cgd 
     76   1.1      cgd char *curdir;			/* current working directory */
     77   1.6      jtc char *prevdir;			/* previous working directory */
     78   1.1      cgd STATIC char *cdcomppath;
     79   1.1      cgd 
     80   1.1      cgd int
     81  1.10      cgd cdcmd(argc, argv)
     82  1.10      cgd 	int argc;
     83  1.10      cgd 	char **argv;
     84  1.10      cgd {
     85   1.1      cgd 	char *dest;
     86   1.1      cgd 	char *path;
     87   1.1      cgd 	char *p;
     88   1.1      cgd 	struct stat statb;
     89   1.1      cgd 	char *padvance();
     90   1.6      jtc 	int print = 0;
     91   1.1      cgd 
     92   1.1      cgd 	nextopt(nullstr);
     93   1.1      cgd 	if ((dest = *argptr) == NULL && (dest = bltinlookup("HOME", 1)) == NULL)
     94   1.1      cgd 		error("HOME not set");
     95   1.6      jtc 	if (dest[0] == '-' && dest[1] == '\0') {
     96   1.6      jtc 		dest = prevdir ? prevdir : curdir;
     97   1.6      jtc 		print = 1;
     98   1.6      jtc 	}
     99   1.1      cgd 	if (*dest == '/' || (path = bltinlookup("CDPATH", 1)) == NULL)
    100   1.1      cgd 		path = nullstr;
    101   1.1      cgd 	while ((p = padvance(&path, dest)) != NULL) {
    102   1.1      cgd 		if (stat(p, &statb) >= 0
    103   1.6      jtc 		 && (statb.st_mode & S_IFMT) == S_IFDIR) {
    104   1.6      jtc 			if (!print) {
    105   1.6      jtc 				/*
    106   1.6      jtc 				 * XXX - rethink
    107   1.6      jtc 				 */
    108   1.6      jtc 				if (p[0] == '.' && p[1] == '/')
    109   1.6      jtc 					p += 2;
    110   1.6      jtc 				print = strcmp(p, dest);
    111   1.6      jtc 			}
    112   1.6      jtc 			if (docd(p, print) >= 0)
    113   1.6      jtc 				return 0;
    114   1.6      jtc 
    115   1.6      jtc 		}
    116   1.1      cgd 	}
    117   1.1      cgd 	error("can't cd to %s", dest);
    118   1.1      cgd }
    119   1.1      cgd 
    120   1.1      cgd 
    121   1.1      cgd /*
    122   1.1      cgd  * Actually do the chdir.  If the name refers to symbolic links, we
    123   1.1      cgd  * compute the actual directory name before doing the cd.  In an
    124   1.1      cgd  * interactive shell, print the directory name if "print" is nonzero
    125   1.1      cgd  * or if the name refers to a symbolic link.  We also print the name
    126   1.1      cgd  * if "/u/logname" was expanded in it, since this is similar to a
    127   1.1      cgd  * symbolic link.  (The check for this breaks if the user gives the
    128   1.1      cgd  * cd command some additional, unused arguments.)
    129   1.1      cgd  */
    130   1.1      cgd 
    131   1.1      cgd #if SYMLINKS == 0
    132   1.1      cgd STATIC int
    133   1.1      cgd docd(dest, print)
    134   1.1      cgd 	char *dest;
    135   1.1      cgd 	{
    136   1.1      cgd 	INTOFF;
    137   1.1      cgd 	if (chdir(dest) < 0) {
    138   1.1      cgd 		INTON;
    139   1.1      cgd 		return -1;
    140   1.1      cgd 	}
    141   1.1      cgd 	updatepwd(dest);
    142   1.1      cgd 	INTON;
    143   1.1      cgd 	if (print && iflag)
    144   1.1      cgd 		out1fmt("%s\n", stackblock());
    145   1.1      cgd 	return 0;
    146   1.1      cgd }
    147   1.1      cgd 
    148   1.1      cgd #else
    149   1.1      cgd 
    150   1.1      cgd 
    151   1.1      cgd 
    152   1.1      cgd STATIC int
    153   1.1      cgd docd(dest, print)
    154   1.1      cgd 	char *dest;
    155  1.10      cgd 	int print;
    156  1.10      cgd {
    157   1.1      cgd 	register char *p;
    158   1.1      cgd 	register char *q;
    159   1.1      cgd 	char *symlink;
    160   1.1      cgd 	char *component;
    161   1.1      cgd 	struct stat statb;
    162   1.1      cgd 	int first;
    163   1.1      cgd 	int i;
    164   1.1      cgd 
    165   1.1      cgd 	TRACE(("docd(\"%s\", %d) called\n", dest, print));
    166   1.1      cgd 
    167   1.1      cgd top:
    168   1.1      cgd 	cdcomppath = dest;
    169   1.1      cgd 	STARTSTACKSTR(p);
    170   1.1      cgd 	if (*dest == '/') {
    171   1.1      cgd 		STPUTC('/', p);
    172   1.1      cgd 		cdcomppath++;
    173   1.1      cgd 	}
    174   1.1      cgd 	first = 1;
    175   1.1      cgd 	while ((q = getcomponent()) != NULL) {
    176   1.1      cgd 		if (q[0] == '\0' || q[0] == '.' && q[1] == '\0')
    177   1.1      cgd 			continue;
    178   1.1      cgd 		if (! first)
    179   1.1      cgd 			STPUTC('/', p);
    180   1.1      cgd 		first = 0;
    181   1.1      cgd 		component = q;
    182   1.1      cgd 		while (*q)
    183   1.1      cgd 			STPUTC(*q++, p);
    184   1.1      cgd 		if (equal(component, ".."))
    185   1.1      cgd 			continue;
    186   1.1      cgd 		STACKSTRNUL(p);
    187   1.1      cgd 		if (lstat(stackblock(), &statb) < 0)
    188   1.1      cgd 			error("lstat %s failed", stackblock());
    189   1.1      cgd 		if ((statb.st_mode & S_IFMT) != S_IFLNK)
    190   1.1      cgd 			continue;
    191   1.1      cgd 
    192   1.1      cgd 		/* Hit a symbolic link.  We have to start all over again. */
    193   1.1      cgd 		print = 1;
    194   1.1      cgd 		STPUTC('\0', p);
    195   1.1      cgd 		symlink = grabstackstr(p);
    196   1.1      cgd 		i = (int)statb.st_size + 2;		/* 2 for '/' and '\0' */
    197   1.1      cgd 		if (cdcomppath != NULL)
    198   1.1      cgd 			i += strlen(cdcomppath);
    199   1.1      cgd 		p = stalloc(i);
    200   1.1      cgd 		if (readlink(symlink, p, (int)statb.st_size) < 0) {
    201   1.1      cgd 			error("readlink %s failed", stackblock());
    202   1.1      cgd 		}
    203   1.1      cgd 		if (cdcomppath != NULL) {
    204   1.1      cgd 			p[(int)statb.st_size] = '/';
    205   1.1      cgd 			scopy(cdcomppath, p + (int)statb.st_size + 1);
    206   1.1      cgd 		} else {
    207   1.1      cgd 			p[(int)statb.st_size] = '\0';
    208   1.1      cgd 		}
    209   1.1      cgd 		if (p[0] != '/') {	/* relative path name */
    210   1.1      cgd 			char *r;
    211   1.1      cgd 			q = r = symlink;
    212   1.1      cgd 			while (*q) {
    213   1.1      cgd 				if (*q++ == '/')
    214   1.1      cgd 					r = q;
    215   1.1      cgd 			}
    216   1.1      cgd 			*r = '\0';
    217   1.1      cgd 			dest = stalloc(strlen(symlink) + strlen(p) + 1);
    218   1.1      cgd 			scopy(symlink, dest);
    219   1.1      cgd 			strcat(dest, p);
    220   1.1      cgd 		} else {
    221   1.1      cgd 			dest = p;
    222   1.1      cgd 		}
    223   1.1      cgd 		goto top;
    224   1.1      cgd 	}
    225   1.1      cgd 	STPUTC('\0', p);
    226   1.1      cgd 	p = grabstackstr(p);
    227   1.1      cgd 	INTOFF;
    228   1.1      cgd 	if (chdir(p) < 0) {
    229   1.1      cgd 		INTON;
    230   1.1      cgd 		return -1;
    231   1.1      cgd 	}
    232   1.1      cgd 	updatepwd(p);
    233   1.1      cgd 	INTON;
    234   1.1      cgd 	if (print && iflag)
    235   1.1      cgd 		out1fmt("%s\n", p);
    236   1.1      cgd 	return 0;
    237   1.1      cgd }
    238   1.1      cgd #endif /* SYMLINKS */
    239   1.1      cgd 
    240   1.1      cgd 
    241   1.1      cgd 
    242   1.1      cgd /*
    243   1.1      cgd  * Get the next component of the path name pointed to by cdcomppath.
    244   1.1      cgd  * This routine overwrites the string pointed to by cdcomppath.
    245   1.1      cgd  */
    246   1.1      cgd 
    247   1.1      cgd STATIC char *
    248   1.1      cgd getcomponent() {
    249   1.1      cgd 	register char *p;
    250   1.1      cgd 	char *start;
    251   1.1      cgd 
    252   1.1      cgd 	if ((p = cdcomppath) == NULL)
    253   1.1      cgd 		return NULL;
    254   1.1      cgd 	start = cdcomppath;
    255   1.1      cgd 	while (*p != '/' && *p != '\0')
    256   1.1      cgd 		p++;
    257   1.1      cgd 	if (*p == '\0') {
    258   1.1      cgd 		cdcomppath = NULL;
    259   1.1      cgd 	} else {
    260   1.1      cgd 		*p++ = '\0';
    261   1.1      cgd 		cdcomppath = p;
    262   1.1      cgd 	}
    263   1.1      cgd 	return start;
    264   1.1      cgd }
    265   1.1      cgd 
    266   1.1      cgd 
    267   1.1      cgd 
    268   1.1      cgd /*
    269   1.1      cgd  * Update curdir (the name of the current directory) in response to a
    270   1.1      cgd  * cd command.  We also call hashcd to let the routines in exec.c know
    271   1.1      cgd  * that the current directory has changed.
    272   1.1      cgd  */
    273   1.1      cgd 
    274   1.1      cgd void hashcd();
    275   1.1      cgd 
    276   1.1      cgd STATIC void
    277   1.1      cgd updatepwd(dir)
    278   1.1      cgd 	char *dir;
    279   1.1      cgd 	{
    280   1.1      cgd 	char *new;
    281   1.1      cgd 	char *p;
    282   1.1      cgd 
    283   1.1      cgd 	hashcd();				/* update command hash table */
    284   1.1      cgd 	cdcomppath = stalloc(strlen(dir) + 1);
    285   1.1      cgd 	scopy(dir, cdcomppath);
    286   1.1      cgd 	STARTSTACKSTR(new);
    287   1.1      cgd 	if (*dir != '/') {
    288   1.1      cgd 		if (curdir == NULL)
    289   1.1      cgd 			return;
    290   1.1      cgd 		p = curdir;
    291   1.1      cgd 		while (*p)
    292   1.1      cgd 			STPUTC(*p++, new);
    293   1.1      cgd 		if (p[-1] == '/')
    294   1.1      cgd 			STUNPUTC(new);
    295   1.1      cgd 	}
    296   1.1      cgd 	while ((p = getcomponent()) != NULL) {
    297   1.1      cgd 		if (equal(p, "..")) {
    298   1.1      cgd 			while (new > stackblock() && (STUNPUTC(new), *new) != '/');
    299   1.1      cgd 		} else if (*p != '\0' && ! equal(p, ".")) {
    300   1.1      cgd 			STPUTC('/', new);
    301   1.1      cgd 			while (*p)
    302   1.1      cgd 				STPUTC(*p++, new);
    303   1.1      cgd 		}
    304   1.1      cgd 	}
    305   1.1      cgd 	if (new == stackblock())
    306   1.1      cgd 		STPUTC('/', new);
    307   1.1      cgd 	STACKSTRNUL(new);
    308   1.6      jtc 	INTOFF;
    309   1.6      jtc 	if (prevdir)
    310   1.6      jtc 		ckfree(prevdir);
    311   1.6      jtc 	prevdir = curdir;
    312   1.1      cgd 	curdir = savestr(stackblock());
    313   1.6      jtc 	INTON;
    314   1.1      cgd }
    315   1.1      cgd 
    316   1.1      cgd 
    317   1.1      cgd 
    318   1.1      cgd int
    319  1.10      cgd pwdcmd(argc, argv)
    320  1.10      cgd 	int argc;
    321  1.10      cgd 	char **argv;
    322  1.10      cgd {
    323   1.1      cgd 	getpwd();
    324   1.1      cgd 	out1str(curdir);
    325   1.1      cgd 	out1c('\n');
    326   1.1      cgd 	return 0;
    327   1.1      cgd }
    328   1.1      cgd 
    329   1.1      cgd 
    330   1.1      cgd 
    331   1.1      cgd /*
    332   1.1      cgd  * Run /bin/pwd to find out what the current directory is.  We suppress
    333   1.1      cgd  * interrupts throughout most of this, but the user can still break out
    334   1.1      cgd  * of it by killing the pwd program.  If we already know the current
    335   1.1      cgd  * directory, this routine returns immediately.
    336   1.1      cgd  */
    337   1.1      cgd 
    338   1.1      cgd #define MAXPWD 256
    339   1.1      cgd 
    340   1.1      cgd STATIC void
    341   1.1      cgd getpwd() {
    342   1.1      cgd 	char buf[MAXPWD];
    343   1.1      cgd 	char *p;
    344   1.1      cgd 	int i;
    345   1.1      cgd 	int status;
    346   1.1      cgd 	struct job *jp;
    347   1.1      cgd 	int pip[2];
    348   1.1      cgd 
    349   1.1      cgd 	if (curdir)
    350   1.1      cgd 		return;
    351   1.1      cgd 	INTOFF;
    352   1.1      cgd 	if (pipe(pip) < 0)
    353   1.1      cgd 		error("Pipe call failed");
    354   1.1      cgd 	jp = makejob((union node *)NULL, 1);
    355   1.1      cgd 	if (forkshell(jp, (union node *)NULL, FORK_NOJOB) == 0) {
    356   1.1      cgd 		close(pip[0]);
    357   1.1      cgd 		if (pip[1] != 1) {
    358   1.1      cgd 			close(1);
    359   1.1      cgd 			copyfd(pip[1], 1);
    360   1.1      cgd 			close(pip[1]);
    361   1.1      cgd 		}
    362   1.1      cgd 		execl("/bin/pwd", "pwd", (char *)0);
    363   1.6      jtc 		error("Cannot exec /bin/pwd");
    364   1.1      cgd 	}
    365   1.1      cgd 	close(pip[1]);
    366   1.1      cgd 	pip[1] = -1;
    367   1.1      cgd 	p = buf;
    368   1.1      cgd 	while ((i = read(pip[0], p, buf + MAXPWD - p)) > 0
    369   1.1      cgd 	     || i == -1 && errno == EINTR) {
    370   1.1      cgd 		if (i > 0)
    371   1.1      cgd 			p += i;
    372   1.1      cgd 	}
    373   1.1      cgd 	close(pip[0]);
    374   1.1      cgd 	pip[0] = -1;
    375   1.1      cgd 	status = waitforjob(jp);
    376   1.1      cgd 	if (status != 0)
    377   1.1      cgd 		error((char *)0);
    378   1.1      cgd 	if (i < 0 || p == buf || p[-1] != '\n')
    379   1.1      cgd 		error("pwd command failed");
    380   1.1      cgd 	p[-1] = '\0';
    381   1.1      cgd 	curdir = savestr(buf);
    382   1.1      cgd 	INTON;
    383   1.1      cgd }
    384