xref: /freebsd/lib/libc/gen/getcwd.c (revision e55512504d0178983978d64d67eed1cc85826523)
18a16b7a1SPedro F. Giffuni /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
49dc11641SPeter Wemm  * Copyright (c) 1989, 1991, 1993, 1995
558f0484fSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
658f0484fSRodney W. Grimes  *
758f0484fSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
858f0484fSRodney W. Grimes  * modification, are permitted provided that the following conditions
958f0484fSRodney W. Grimes  * are met:
1058f0484fSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1158f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1258f0484fSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1358f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1458f0484fSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1658f0484fSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1758f0484fSRodney W. Grimes  *    without specific prior written permission.
1858f0484fSRodney W. Grimes  *
1958f0484fSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2058f0484fSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2158f0484fSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2258f0484fSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2358f0484fSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2458f0484fSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2558f0484fSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2658f0484fSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2758f0484fSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2858f0484fSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2958f0484fSRodney W. Grimes  * SUCH DAMAGE.
3058f0484fSRodney W. Grimes  */
3158f0484fSRodney W. Grimes 
32d201fe46SDaniel Eischen #include "namespace.h"
3358f0484fSRodney W. Grimes #include <sys/param.h>
3458f0484fSRodney W. Grimes #include <sys/stat.h>
3558f0484fSRodney W. Grimes 
3658f0484fSRodney W. Grimes #include <dirent.h>
379dc11641SPeter Wemm #include <errno.h>
389dc11641SPeter Wemm #include <fcntl.h>
3958f0484fSRodney W. Grimes #include <stdio.h>
4058f0484fSRodney W. Grimes #include <stdlib.h>
4158f0484fSRodney W. Grimes #include <string.h>
4258f0484fSRodney W. Grimes #include <unistd.h>
43*e5551250SKyle Evans #include <ssp/ssp.h>
44d201fe46SDaniel Eischen #include "un-namespace.h"
4558f0484fSRodney W. Grimes 
460bb2aabfSGleb Kurtsou #include "gen-private.h"
470bb2aabfSGleb Kurtsou 
4858f0484fSRodney W. Grimes #define	ISDOT(dp) \
4958f0484fSRodney W. Grimes 	(dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
5051295a4dSJordan K. Hubbard 	    (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
5158f0484fSRodney W. Grimes 
5273e8989dSTim J. Robbins extern int __getcwd(char *, size_t);
5373e8989dSTim J. Robbins 
5458f0484fSRodney W. Grimes char *
__ssp_real(getcwd)55*e5551250SKyle Evans __ssp_real(getcwd)(char *pt, size_t size)
5658f0484fSRodney W. Grimes {
5722626efaSDavid E. O'Brien 	struct dirent *dp;
5822626efaSDavid E. O'Brien 	DIR *dir = NULL;
5922626efaSDavid E. O'Brien 	dev_t dev;
6022626efaSDavid E. O'Brien 	ino_t ino;
6122626efaSDavid E. O'Brien 	int first;
62680db495SJilles Tjoelker 	char *bpt;
6358f0484fSRodney W. Grimes 	struct stat s;
6458f0484fSRodney W. Grimes 	dev_t root_dev;
6558f0484fSRodney W. Grimes 	ino_t root_ino;
66680db495SJilles Tjoelker 	size_t ptsize;
6758f0484fSRodney W. Grimes 	int save_errno;
68680db495SJilles Tjoelker 	char *ept, c;
69680db495SJilles Tjoelker 	int fd;
7058f0484fSRodney W. Grimes 
7158f0484fSRodney W. Grimes 	/*
7258f0484fSRodney W. Grimes 	 * If no buffer specified by the user, allocate one as necessary.
7358f0484fSRodney W. Grimes 	 * If a buffer is specified, the size has to be non-zero.  The path
7458f0484fSRodney W. Grimes 	 * is built from the end of the buffer backwards.
7558f0484fSRodney W. Grimes 	 */
7658f0484fSRodney W. Grimes 	if (pt) {
7758f0484fSRodney W. Grimes 		ptsize = 0;
7858f0484fSRodney W. Grimes 		if (!size) {
7958f0484fSRodney W. Grimes 			errno = EINVAL;
8058f0484fSRodney W. Grimes 			return (NULL);
8158f0484fSRodney W. Grimes 		}
82b01f0b7dSBruce Evans 		if (size == 1) {
83b01f0b7dSBruce Evans 			errno = ERANGE;
84b01f0b7dSBruce Evans 			return (NULL);
85b01f0b7dSBruce Evans 		}
8658f0484fSRodney W. Grimes 		ept = pt + size;
8758f0484fSRodney W. Grimes 	} else {
88b9fb13f5SAndrey A. Chernov 		if ((pt = malloc(ptsize = PATH_MAX)) == NULL)
8958f0484fSRodney W. Grimes 			return (NULL);
9058f0484fSRodney W. Grimes 		ept = pt + ptsize;
9158f0484fSRodney W. Grimes 	}
927aa1d9cdSPeter Wemm 	if (__getcwd(pt, ept - pt) == 0) {
9336dff600SPoul-Henning Kamp 		if (*pt != '/') {
9427262cacSPoul-Henning Kamp 			bpt = pt;
9527262cacSPoul-Henning Kamp 			ept = pt + strlen(pt) - 1;
9627262cacSPoul-Henning Kamp 			while (bpt < ept) {
9727262cacSPoul-Henning Kamp 				c = *bpt;
9827262cacSPoul-Henning Kamp 				*bpt++ = *ept;
9927262cacSPoul-Henning Kamp 				*ept-- = c;
10027262cacSPoul-Henning Kamp 			}
10136dff600SPoul-Henning Kamp 		}
10227262cacSPoul-Henning Kamp 		return (pt);
10327262cacSPoul-Henning Kamp 	}
10458f0484fSRodney W. Grimes 	bpt = ept - 1;
10558f0484fSRodney W. Grimes 	*bpt = '\0';
10658f0484fSRodney W. Grimes 
10758f0484fSRodney W. Grimes 	/* Save root values, so know when to stop. */
10858f0484fSRodney W. Grimes 	if (stat("/", &s))
10958f0484fSRodney W. Grimes 		goto err;
11058f0484fSRodney W. Grimes 	root_dev = s.st_dev;
11158f0484fSRodney W. Grimes 	root_ino = s.st_ino;
11258f0484fSRodney W. Grimes 
11358f0484fSRodney W. Grimes 	errno = 0;			/* XXX readdir has no error return. */
11458f0484fSRodney W. Grimes 
11558f0484fSRodney W. Grimes 	for (first = 1;; first = 0) {
11658f0484fSRodney W. Grimes 		/* Stat the current level. */
1170bb2aabfSGleb Kurtsou 		if (dir != NULL ? _fstat(_dirfd(dir), &s) : lstat(".", &s))
11858f0484fSRodney W. Grimes 			goto err;
11958f0484fSRodney W. Grimes 
12058f0484fSRodney W. Grimes 		/* Save current node values. */
12158f0484fSRodney W. Grimes 		ino = s.st_ino;
12258f0484fSRodney W. Grimes 		dev = s.st_dev;
12358f0484fSRodney W. Grimes 
12458f0484fSRodney W. Grimes 		/* Check for reaching root. */
12558f0484fSRodney W. Grimes 		if (root_dev == dev && root_ino == ino) {
12658f0484fSRodney W. Grimes 			*--bpt = '/';
12758f0484fSRodney W. Grimes 			/*
12858f0484fSRodney W. Grimes 			 * It's unclear that it's a requirement to copy the
12958f0484fSRodney W. Grimes 			 * path to the beginning of the buffer, but it's always
13058f0484fSRodney W. Grimes 			 * been that way and stuff would probably break.
13158f0484fSRodney W. Grimes 			 */
132e78bad23SJeffrey Hsu 			bcopy(bpt, pt, ept - bpt);
133680db495SJilles Tjoelker 			if (dir)
134680db495SJilles Tjoelker 				(void) closedir(dir);
13558f0484fSRodney W. Grimes 			return (pt);
13658f0484fSRodney W. Grimes 		}
13758f0484fSRodney W. Grimes 
13858f0484fSRodney W. Grimes 		/* Open and stat parent directory. */
1390bb2aabfSGleb Kurtsou 		fd = _openat(dir != NULL ? _dirfd(dir) : AT_FDCWD,
14005eb11cbSJilles Tjoelker 				"..", O_RDONLY | O_CLOEXEC);
141680db495SJilles Tjoelker 		if (fd == -1)
14258f0484fSRodney W. Grimes 			goto err;
143680db495SJilles Tjoelker 		if (dir)
144680db495SJilles Tjoelker 			(void) closedir(dir);
1450bb2aabfSGleb Kurtsou 		if (!(dir = fdopendir(fd)) || _fstat(_dirfd(dir), &s)) {
146680db495SJilles Tjoelker 			_close(fd);
147680db495SJilles Tjoelker 			goto err;
148680db495SJilles Tjoelker 		}
14958f0484fSRodney W. Grimes 
15058f0484fSRodney W. Grimes 		/*
15158f0484fSRodney W. Grimes 		 * If it's a mount point, have to stat each element because
15258f0484fSRodney W. Grimes 		 * the inode number in the directory is for the entry in the
15358f0484fSRodney W. Grimes 		 * parent directory, not the inode number of the mounted file.
15458f0484fSRodney W. Grimes 		 */
15558f0484fSRodney W. Grimes 		save_errno = 0;
15658f0484fSRodney W. Grimes 		if (s.st_dev == dev) {
15758f0484fSRodney W. Grimes 			for (;;) {
15858f0484fSRodney W. Grimes 				if (!(dp = readdir(dir)))
15958f0484fSRodney W. Grimes 					goto notfound;
16058f0484fSRodney W. Grimes 				if (dp->d_fileno == ino)
16158f0484fSRodney W. Grimes 					break;
16258f0484fSRodney W. Grimes 			}
16358f0484fSRodney W. Grimes 		} else
16458f0484fSRodney W. Grimes 			for (;;) {
16558f0484fSRodney W. Grimes 				if (!(dp = readdir(dir)))
16658f0484fSRodney W. Grimes 					goto notfound;
16758f0484fSRodney W. Grimes 				if (ISDOT(dp))
16858f0484fSRodney W. Grimes 					continue;
16958f0484fSRodney W. Grimes 
17058f0484fSRodney W. Grimes 				/* Save the first error for later. */
1710bb2aabfSGleb Kurtsou 				if (fstatat(_dirfd(dir), dp->d_name, &s,
172680db495SJilles Tjoelker 				    AT_SYMLINK_NOFOLLOW)) {
17358f0484fSRodney W. Grimes 					if (!save_errno)
17458f0484fSRodney W. Grimes 						save_errno = errno;
17558f0484fSRodney W. Grimes 					errno = 0;
17658f0484fSRodney W. Grimes 					continue;
17758f0484fSRodney W. Grimes 				}
17858f0484fSRodney W. Grimes 				if (s.st_dev == dev && s.st_ino == ino)
17958f0484fSRodney W. Grimes 					break;
18058f0484fSRodney W. Grimes 			}
18158f0484fSRodney W. Grimes 
18258f0484fSRodney W. Grimes 		/*
18358f0484fSRodney W. Grimes 		 * Check for length of the current name, preceding slash,
18458f0484fSRodney W. Grimes 		 * leading slash.
18558f0484fSRodney W. Grimes 		 */
186323d07b4SAndrey A. Chernov 		while (bpt - pt < dp->d_namlen + (first ? 1 : 2)) {
18758f0484fSRodney W. Grimes 			size_t len, off;
18858f0484fSRodney W. Grimes 
18958f0484fSRodney W. Grimes 			if (!ptsize) {
19058f0484fSRodney W. Grimes 				errno = ERANGE;
19158f0484fSRodney W. Grimes 				goto err;
19258f0484fSRodney W. Grimes 			}
19358f0484fSRodney W. Grimes 			off = bpt - pt;
19458f0484fSRodney W. Grimes 			len = ept - bpt;
195098b8611STim J. Robbins 			if ((pt = reallocf(pt, ptsize *= 2)) == NULL)
19658f0484fSRodney W. Grimes 				goto err;
19758f0484fSRodney W. Grimes 			bpt = pt + off;
19858f0484fSRodney W. Grimes 			ept = pt + ptsize;
199e78bad23SJeffrey Hsu 			bcopy(bpt, ept - len, len);
20058f0484fSRodney W. Grimes 			bpt = ept - len;
20158f0484fSRodney W. Grimes 		}
20258f0484fSRodney W. Grimes 		if (!first)
20358f0484fSRodney W. Grimes 			*--bpt = '/';
20458f0484fSRodney W. Grimes 		bpt -= dp->d_namlen;
20558f0484fSRodney W. Grimes 		bcopy(dp->d_name, bpt, dp->d_namlen);
20658f0484fSRodney W. Grimes 	}
20758f0484fSRodney W. Grimes 
20858f0484fSRodney W. Grimes notfound:
20958f0484fSRodney W. Grimes 	/*
21058f0484fSRodney W. Grimes 	 * If readdir set errno, use it, not any saved error; otherwise,
21158f0484fSRodney W. Grimes 	 * didn't find the current directory in its parent directory, set
21258f0484fSRodney W. Grimes 	 * errno to ENOENT.
21358f0484fSRodney W. Grimes 	 */
21458f0484fSRodney W. Grimes 	if (!errno)
21558f0484fSRodney W. Grimes 		errno = save_errno ? save_errno : ENOENT;
21658f0484fSRodney W. Grimes 	/* FALLTHROUGH */
21758f0484fSRodney W. Grimes err:
2184773010dSStephen McKay 	save_errno = errno;
2194773010dSStephen McKay 
22058f0484fSRodney W. Grimes 	if (ptsize)
22158f0484fSRodney W. Grimes 		free(pt);
222f5f31fbaSDavid Greenman 	if (dir)
223f5f31fbaSDavid Greenman 		(void) closedir(dir);
2244773010dSStephen McKay 
2254773010dSStephen McKay 	errno = save_errno;
22658f0484fSRodney W. Grimes 	return (NULL);
22758f0484fSRodney W. Grimes }
228