Home | History | Annotate | Line # | Download | only in gen
getcwd.c revision 1.32
      1  1.32       agc /*	$NetBSD: getcwd.c,v 1.32 2003/08/07 16:42:49 agc Exp $	*/
      2   1.4       cgd 
      3   1.1       cgd /*
      4   1.8     perry  * Copyright (c) 1989, 1991, 1993, 1995
      5   1.4       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.8     perry  * This code is derived from software contributed to Berkeley by
      8   1.8     perry  * Jan-Simon Pendry.
      9   1.8     perry  *
     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.32       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.6  christos #include <sys/cdefs.h>
     36   1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     37   1.4       cgd #if 0
     38   1.8     perry static char sccsid[] = "@(#)getcwd.c	8.5 (Berkeley) 2/7/95";
     39   1.4       cgd #else
     40  1.32       agc __RCSID("$NetBSD: getcwd.c,v 1.32 2003/08/07 16:42:49 agc Exp $");
     41   1.4       cgd #endif
     42   1.1       cgd #endif /* LIBC_SCCS and not lint */
     43   1.1       cgd 
     44   1.7       jtc #include "namespace.h"
     45   1.1       cgd #include <sys/param.h>
     46   1.1       cgd #include <sys/stat.h>
     47   1.8     perry 
     48  1.22     lukem #include <assert.h>
     49   1.8     perry #include <dirent.h>
     50   1.1       cgd #include <errno.h>
     51   1.8     perry #include <fcntl.h>
     52   1.1       cgd #include <stdio.h>
     53   1.1       cgd #include <stdlib.h>
     54   1.1       cgd #include <string.h>
     55   1.1       cgd #include <unistd.h>
     56  1.17  sommerfe 
     57  1.17  sommerfe #include "extern.h"
     58   1.7       jtc 
     59   1.7       jtc #ifdef __weak_alias
     60  1.24   mycroft __weak_alias(getcwd,_getcwd)
     61  1.24   mycroft __weak_alias(realpath,_realpath)
     62   1.7       jtc #endif
     63   1.1       cgd 
     64   1.1       cgd #define	ISDOT(dp) \
     65   1.1       cgd 	(dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
     66   1.6  christos 	    (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
     67   1.1       cgd 
     68   1.8     perry 
     69  1.15  christos #if defined(__SVR4) || defined(__svr4__)
     70  1.15  christos #define d_fileno d_ino
     71  1.15  christos #endif
     72  1.15  christos 
     73   1.8     perry /*
     74   1.8     perry  * char *realpath(const char *path, char resolved_path[MAXPATHLEN]);
     75   1.8     perry  *
     76   1.8     perry  * Find the real name of path, by removing all ".", ".." and symlink
     77   1.8     perry  * components.  Returns (resolved) on success, or (NULL) on failure,
     78   1.8     perry  * in which case the path which caused trouble is left in (resolved).
     79   1.8     perry  */
     80   1.8     perry char *
     81   1.8     perry realpath(path, resolved)
     82   1.8     perry 	const char *path;
     83   1.8     perry 	char *resolved;
     84   1.8     perry {
     85   1.8     perry 	struct stat sb;
     86  1.21      fvdl 	int fd, n, rootd, serrno, nlnk = 0;
     87   1.8     perry 	char *p, *q, wbuf[MAXPATHLEN];
     88  1.22     lukem 
     89  1.22     lukem 	_DIAGASSERT(path != NULL);
     90  1.22     lukem 	_DIAGASSERT(resolved != NULL);
     91   1.8     perry 
     92   1.8     perry 	/* Save the starting point. */
     93   1.8     perry 	if ((fd = open(".", O_RDONLY)) < 0) {
     94  1.28    itojun 		(void)strlcpy(resolved, ".", MAXPATHLEN);
     95   1.8     perry 		return (NULL);
     96   1.8     perry 	}
     97   1.8     perry 
     98   1.8     perry 	/*
     99   1.8     perry 	 * Find the dirname and basename from the path to be resolved.
    100   1.8     perry 	 * Change directory to the dirname component.
    101   1.8     perry 	 * lstat the basename part.
    102   1.8     perry 	 *     if it is a symlink, read in the value and loop.
    103   1.8     perry 	 *     if it is a directory, then change to that directory.
    104   1.8     perry 	 * get the current directory name and append the basename.
    105   1.8     perry 	 */
    106  1.31    itojun 	if (strlcpy(resolved, path, MAXPATHLEN) >= MAXPATHLEN) {
    107  1.31    itojun 		errno = ENAMETOOLONG;
    108  1.31    itojun 		goto err1;
    109  1.31    itojun 	}
    110   1.8     perry loop:
    111   1.8     perry 	q = strrchr(resolved, '/');
    112   1.8     perry 	if (q != NULL) {
    113   1.8     perry 		p = q + 1;
    114   1.8     perry 		if (q == resolved)
    115   1.8     perry 			q = "/";
    116   1.8     perry 		else {
    117   1.8     perry 			do {
    118   1.8     perry 				--q;
    119   1.8     perry 			} while (q > resolved && *q == '/');
    120   1.8     perry 			q[1] = '\0';
    121   1.8     perry 			q = resolved;
    122   1.8     perry 		}
    123   1.8     perry 		if (chdir(q) < 0)
    124   1.8     perry 			goto err1;
    125   1.8     perry 	} else
    126   1.8     perry 		p = resolved;
    127   1.8     perry 
    128   1.8     perry 	/* Deal with the last component. */
    129   1.8     perry 	if (lstat(p, &sb) == 0) {
    130   1.8     perry 		if (S_ISLNK(sb.st_mode)) {
    131  1.21      fvdl 			if (nlnk++ >= MAXSYMLINKS) {
    132  1.21      fvdl 				errno = ELOOP;
    133  1.21      fvdl 				goto err1;
    134  1.21      fvdl 			}
    135  1.26    provos 			n = readlink(p, resolved, MAXPATHLEN-1);
    136   1.8     perry 			if (n < 0)
    137   1.8     perry 				goto err1;
    138   1.8     perry 			resolved[n] = '\0';
    139   1.8     perry 			goto loop;
    140   1.8     perry 		}
    141   1.8     perry 		if (S_ISDIR(sb.st_mode)) {
    142   1.8     perry 			if (chdir(p) < 0)
    143   1.8     perry 				goto err1;
    144   1.8     perry 			p = "";
    145   1.8     perry 		}
    146   1.8     perry 	}
    147   1.8     perry 
    148   1.8     perry 	/*
    149   1.8     perry 	 * Save the last component name and get the full pathname of
    150   1.8     perry 	 * the current directory.
    151   1.8     perry 	 */
    152  1.31    itojun 	if (strlcpy(wbuf, p, sizeof(wbuf)) >= sizeof(wbuf)) {
    153  1.31    itojun 		errno = ENAMETOOLONG;
    154  1.31    itojun 		goto err1;
    155  1.31    itojun 	}
    156   1.8     perry 
    157   1.8     perry 	/*
    158   1.8     perry 	 * Call the inernal internal version of getcwd which
    159   1.8     perry 	 * does a physical search rather than using the $PWD short-cut
    160   1.8     perry 	 */
    161  1.12     lukem 	if (getcwd(resolved, MAXPATHLEN) == 0)
    162   1.8     perry 		goto err1;
    163   1.8     perry 
    164   1.8     perry 	/*
    165   1.8     perry 	 * Join the two strings together, ensuring that the right thing
    166   1.8     perry 	 * happens if the last component is empty, or the dirname is root.
    167   1.8     perry 	 */
    168   1.8     perry 	if (resolved[0] == '/' && resolved[1] == '\0')
    169   1.8     perry 		rootd = 1;
    170   1.8     perry 	else
    171   1.8     perry 		rootd = 0;
    172   1.8     perry 
    173   1.8     perry 	if (*wbuf) {
    174  1.29    itojun 		if (strlen(resolved) + strlen(wbuf) + (rootd ? 0 : 1) + 1 >
    175  1.29    itojun 		    MAXPATHLEN) {
    176   1.8     perry 			errno = ENAMETOOLONG;
    177   1.8     perry 			goto err1;
    178   1.8     perry 		}
    179   1.8     perry 		if (rootd == 0)
    180  1.31    itojun 			if (strlcat(resolved, "/", MAXPATHLEN) >= MAXPATHLEN) {
    181  1.31    itojun 				errno = ENAMETOOLONG;
    182  1.31    itojun 				goto err1;
    183  1.31    itojun 			}
    184  1.31    itojun 		if (strlcat(resolved, wbuf, MAXPATHLEN) >= MAXPATHLEN) {
    185  1.31    itojun 			errno = ENAMETOOLONG;
    186  1.31    itojun 			goto err1;
    187  1.31    itojun 		}
    188   1.8     perry 	}
    189   1.8     perry 
    190   1.8     perry 	/* Go back to where we came from. */
    191   1.8     perry 	if (fchdir(fd) < 0) {
    192   1.8     perry 		serrno = errno;
    193   1.8     perry 		goto err2;
    194   1.8     perry 	}
    195   1.8     perry 
    196   1.8     perry 	/* It's okay if the close fails, what's an fd more or less? */
    197   1.8     perry 	(void)close(fd);
    198   1.8     perry 	return (resolved);
    199   1.8     perry 
    200   1.8     perry err1:	serrno = errno;
    201   1.8     perry 	(void)fchdir(fd);
    202   1.8     perry err2:	(void)close(fd);
    203   1.8     perry 	errno = serrno;
    204   1.8     perry 	return (NULL);
    205   1.8     perry }
    206   1.8     perry 
    207  1.16  sommerfe #ifdef OLD_GETCWD
    208  1.16  sommerfe 
    209  1.12     lukem char *
    210  1.12     lukem getcwd(pt, size)
    211   1.8     perry 	char *pt;
    212   1.8     perry 	size_t size;
    213   1.8     perry {
    214  1.10     perry 	struct dirent *dp;
    215  1.10     perry 	DIR *dir;
    216  1.10     perry 	dev_t dev;
    217  1.10     perry 	ino_t ino;
    218  1.10     perry 	int first;
    219  1.10     perry 	char *bpt, *bup;
    220   1.1       cgd 	struct stat s;
    221   1.1       cgd 	dev_t root_dev;
    222   1.1       cgd 	ino_t root_ino;
    223   1.1       cgd 	size_t ptsize, upsize;
    224   1.1       cgd 	int save_errno;
    225   1.1       cgd 	char *ept, *eup, *up;
    226  1.15  christos 	size_t dlen;
    227   1.1       cgd 
    228   1.1       cgd 	/*
    229   1.1       cgd 	 * If no buffer specified by the user, allocate one as necessary.
    230   1.1       cgd 	 * If a buffer is specified, the size has to be non-zero.  The path
    231   1.1       cgd 	 * is built from the end of the buffer backwards.
    232   1.1       cgd 	 */
    233   1.1       cgd 	if (pt) {
    234   1.1       cgd 		ptsize = 0;
    235   1.1       cgd 		if (!size) {
    236   1.1       cgd 			errno = EINVAL;
    237   1.4       cgd 			return (NULL);
    238   1.1       cgd 		}
    239   1.1       cgd 		ept = pt + size;
    240   1.1       cgd 	} else {
    241   1.4       cgd 		if ((pt = malloc(ptsize = 1024 - 4)) == NULL)
    242   1.4       cgd 			return (NULL);
    243   1.1       cgd 		ept = pt + ptsize;
    244   1.1       cgd 	}
    245   1.1       cgd 	bpt = ept - 1;
    246   1.1       cgd 	*bpt = '\0';
    247   1.1       cgd 
    248   1.1       cgd 	/*
    249   1.1       cgd 	 * Allocate bytes (1024 - malloc space) for the string of "../"'s.
    250   1.1       cgd 	 * Should always be enough (it's 340 levels).  If it's not, allocate
    251   1.8     perry 	 * as necessary.  Special case the first stat, it's ".", not "..".
    252   1.1       cgd 	 */
    253   1.4       cgd 	if ((up = malloc(upsize = 1024 - 4)) == NULL)
    254   1.1       cgd 		goto err;
    255   1.1       cgd 	eup = up + MAXPATHLEN;
    256   1.1       cgd 	bup = up;
    257   1.1       cgd 	up[0] = '.';
    258   1.1       cgd 	up[1] = '\0';
    259   1.1       cgd 
    260   1.1       cgd 	/* Save root values, so know when to stop. */
    261   1.1       cgd 	if (stat("/", &s))
    262   1.1       cgd 		goto err;
    263   1.1       cgd 	root_dev = s.st_dev;
    264   1.1       cgd 	root_ino = s.st_ino;
    265   1.1       cgd 
    266   1.1       cgd 	errno = 0;			/* XXX readdir has no error return. */
    267   1.1       cgd 
    268   1.1       cgd 	for (first = 1;; first = 0) {
    269   1.1       cgd 		/* Stat the current level. */
    270   1.1       cgd 		if (lstat(up, &s))
    271   1.1       cgd 			goto err;
    272   1.1       cgd 
    273   1.1       cgd 		/* Save current node values. */
    274   1.1       cgd 		ino = s.st_ino;
    275   1.1       cgd 		dev = s.st_dev;
    276   1.1       cgd 
    277   1.1       cgd 		/* Check for reaching root. */
    278   1.1       cgd 		if (root_dev == dev && root_ino == ino) {
    279   1.1       cgd 			*--bpt = '/';
    280   1.1       cgd 			/*
    281   1.1       cgd 			 * It's unclear that it's a requirement to copy the
    282   1.1       cgd 			 * path to the beginning of the buffer, but it's always
    283   1.1       cgd 			 * been that way and stuff would probably break.
    284   1.1       cgd 			 */
    285  1.14     perry 			memmove(pt, bpt,  (size_t)(ept - bpt));
    286   1.1       cgd 			free(up);
    287   1.4       cgd 			return (pt);
    288   1.1       cgd 		}
    289   1.1       cgd 
    290   1.1       cgd 		/*
    291   1.1       cgd 		 * Build pointer to the parent directory, allocating memory
    292   1.1       cgd 		 * as necessary.  Max length is 3 for "../", the largest
    293   1.1       cgd 		 * possible component name, plus a trailing NULL.
    294   1.1       cgd 		 */
    295   1.1       cgd 		if (bup + 3  + MAXNAMLEN + 1 >= eup) {
    296   1.4       cgd 			if ((up = realloc(up, upsize *= 2)) == NULL)
    297   1.1       cgd 				goto err;
    298   1.4       cgd 			bup = up;
    299   1.1       cgd 			eup = up + upsize;
    300   1.1       cgd 		}
    301   1.1       cgd 		*bup++ = '.';
    302   1.1       cgd 		*bup++ = '.';
    303   1.1       cgd 		*bup = '\0';
    304   1.1       cgd 
    305   1.1       cgd 		/* Open and stat parent directory. */
    306   1.1       cgd 		if (!(dir = opendir(up)) || fstat(dirfd(dir), &s))
    307   1.1       cgd 			goto err;
    308   1.1       cgd 
    309   1.1       cgd 		/* Add trailing slash for next directory. */
    310   1.1       cgd 		*bup++ = '/';
    311   1.1       cgd 
    312   1.1       cgd 		/*
    313   1.1       cgd 		 * If it's a mount point, have to stat each element because
    314   1.1       cgd 		 * the inode number in the directory is for the entry in the
    315   1.1       cgd 		 * parent directory, not the inode number of the mounted file.
    316   1.1       cgd 		 */
    317   1.1       cgd 		save_errno = 0;
    318   1.1       cgd 		if (s.st_dev == dev) {
    319   1.1       cgd 			for (;;) {
    320   1.1       cgd 				if (!(dp = readdir(dir)))
    321   1.1       cgd 					goto notfound;
    322  1.15  christos 				if (dp->d_fileno == ino) {
    323  1.19  christos #if defined(__SVR4) || defined(__svr4__) || defined(__linux__)
    324  1.15  christos 					dlen = strlen(dp->d_name);
    325  1.15  christos #else
    326  1.15  christos 					dlen = dp->d_namlen;
    327  1.15  christos #endif
    328   1.1       cgd 					break;
    329  1.15  christos 				}
    330   1.1       cgd 			}
    331   1.1       cgd 		} else
    332   1.1       cgd 			for (;;) {
    333   1.1       cgd 				if (!(dp = readdir(dir)))
    334   1.1       cgd 					goto notfound;
    335   1.1       cgd 				if (ISDOT(dp))
    336   1.1       cgd 					continue;
    337  1.19  christos #if defined(__SVR4) || defined(__svr4__) || defined(__linux__)
    338  1.15  christos 				dlen = strlen(dp->d_name);
    339  1.15  christos #else
    340  1.15  christos 				dlen = dp->d_namlen;
    341  1.15  christos #endif
    342  1.15  christos 				memmove(bup, dp->d_name, dlen + 1);
    343   1.1       cgd 
    344   1.1       cgd 				/* Save the first error for later. */
    345   1.1       cgd 				if (lstat(up, &s)) {
    346   1.1       cgd 					if (!save_errno)
    347   1.1       cgd 						save_errno = errno;
    348   1.1       cgd 					errno = 0;
    349   1.1       cgd 					continue;
    350   1.1       cgd 				}
    351   1.1       cgd 				if (s.st_dev == dev && s.st_ino == ino)
    352   1.1       cgd 					break;
    353   1.1       cgd 			}
    354   1.1       cgd 
    355   1.1       cgd 		/*
    356   1.1       cgd 		 * Check for length of the current name, preceding slash,
    357   1.1       cgd 		 * leading slash.
    358   1.1       cgd 		 */
    359  1.15  christos 		if (bpt - pt <= dlen + (first ? 1 : 2)) {
    360   1.1       cgd 			size_t len, off;
    361   1.1       cgd 
    362   1.1       cgd 			if (!ptsize) {
    363   1.1       cgd 				errno = ERANGE;
    364   1.1       cgd 				goto err;
    365   1.1       cgd 			}
    366   1.1       cgd 			off = bpt - pt;
    367   1.1       cgd 			len = ept - bpt;
    368   1.4       cgd 			if ((pt = realloc(pt, ptsize *= 2)) == NULL)
    369   1.1       cgd 				goto err;
    370   1.1       cgd 			bpt = pt + off;
    371   1.1       cgd 			ept = pt + ptsize;
    372  1.14     perry 			memmove(ept - len, bpt, len);
    373   1.1       cgd 			bpt = ept - len;
    374   1.1       cgd 		}
    375   1.1       cgd 		if (!first)
    376   1.1       cgd 			*--bpt = '/';
    377  1.15  christos 		bpt -= dlen;
    378  1.15  christos 		memmove(bpt, dp->d_name, dlen);
    379   1.1       cgd 		(void)closedir(dir);
    380   1.1       cgd 
    381   1.1       cgd 		/* Truncate any file name. */
    382   1.1       cgd 		*bup = '\0';
    383   1.1       cgd 	}
    384   1.1       cgd 
    385   1.1       cgd notfound:
    386   1.1       cgd 	/*
    387   1.1       cgd 	 * If readdir set errno, use it, not any saved error; otherwise,
    388   1.1       cgd 	 * didn't find the current directory in its parent directory, set
    389   1.1       cgd 	 * errno to ENOENT.
    390   1.1       cgd 	 */
    391   1.1       cgd 	if (!errno)
    392   1.1       cgd 		errno = save_errno ? save_errno : ENOENT;
    393   1.1       cgd 	/* FALLTHROUGH */
    394   1.1       cgd err:
    395   1.1       cgd 	if (ptsize)
    396   1.1       cgd 		free(pt);
    397   1.1       cgd 	free(up);
    398   1.4       cgd 	return (NULL);
    399   1.1       cgd }
    400  1.16  sommerfe 
    401  1.16  sommerfe #else /* New getcwd */
    402  1.16  sommerfe 
    403  1.16  sommerfe char *
    404  1.16  sommerfe getcwd(pt, size)
    405  1.16  sommerfe 	char *pt;
    406  1.16  sommerfe 	size_t size;
    407  1.16  sommerfe {
    408  1.18  christos 	size_t ptsize, bufsize;
    409  1.18  christos 	int len;
    410  1.16  sommerfe 
    411  1.16  sommerfe 	/*
    412  1.16  sommerfe 	 * If no buffer specified by the user, allocate one as necessary.
    413  1.16  sommerfe 	 * If a buffer is specified, the size has to be non-zero.  The path
    414  1.16  sommerfe 	 * is built from the end of the buffer backwards.
    415  1.16  sommerfe 	 */
    416  1.16  sommerfe 	if (pt) {
    417  1.16  sommerfe 		ptsize = 0;
    418  1.16  sommerfe 		if (!size) {
    419  1.16  sommerfe 			errno = EINVAL;
    420  1.16  sommerfe 			return (NULL);
    421  1.16  sommerfe 		}
    422  1.16  sommerfe 		bufsize = size;
    423  1.16  sommerfe 	} else {
    424  1.16  sommerfe 		if ((pt = malloc(ptsize = 1024 - 4)) == NULL)
    425  1.16  sommerfe 			return (NULL);
    426  1.16  sommerfe 		bufsize = ptsize;
    427  1.16  sommerfe 	}
    428  1.18  christos 	for (;;) {
    429  1.16  sommerfe 		len = __getcwd(pt, bufsize);
    430  1.16  sommerfe 		if ((len < 0) && (size == 0) && (errno == ERANGE)) {
    431  1.20  sommerfe 			if (ptsize > (MAXPATHLEN*4))
    432  1.20  sommerfe 				return NULL;
    433  1.16  sommerfe 			if ((pt = realloc(pt, ptsize *= 2)) == NULL)
    434  1.16  sommerfe 				return NULL;
    435  1.16  sommerfe 			bufsize = ptsize;
    436  1.16  sommerfe 			continue;
    437  1.16  sommerfe 		}
    438  1.18  christos 		break;
    439  1.18  christos 	}
    440  1.16  sommerfe 	if (len < 0)
    441  1.16  sommerfe 		return NULL;
    442  1.16  sommerfe 	else
    443  1.16  sommerfe 		return pt;
    444  1.16  sommerfe }
    445  1.16  sommerfe 
    446  1.16  sommerfe #endif
    447