summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorDoug Hogan <doug@cvs.openbsd.org>2014-10-18 20:43:53 +0000
committerDoug Hogan <doug@cvs.openbsd.org>2014-10-18 20:43:53 +0000
commit03058279357476cada6bbf8cb7c6e3bb5ca42675 (patch)
treed9e3741713c483e408eddde9a11497e2e12bd39f /lib/libc
parent9b4b2bd0e62d2a4efd31f2ebd4dde4a9966392eb (diff)
Better POSIX compliance in realpath(3).
millert@ made changes to realpath.c based on FreeBSD's version. I merged Todd's changes into dl_realpath.c. ok millert@, guenther@
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdlib/realpath.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/stdlib/realpath.c b/lib/libc/stdlib/realpath.c
index e0f9b123b35..8c83ec2b817 100644
--- a/lib/libc/stdlib/realpath.c
+++ b/lib/libc/stdlib/realpath.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: realpath.c,v 1.16 2013/04/05 12:59:54 kurt Exp $ */
+/* $OpenBSD: realpath.c,v 1.17 2014/10/18 20:43:52 doug Exp $ */
/*
* Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru>
*
@@ -54,6 +54,10 @@ realpath(const char *path, char *resolved)
int serrno, slen, mem_allocated;
char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX];
+ if (path == NULL) {
+ errno = EINVAL;
+ return (NULL);
+ }
if (path[0] == '\0') {
errno = ENOENT;
return (NULL);
@@ -139,22 +143,15 @@ realpath(const char *path, char *resolved)
}
/*
- * Append the next path component and lstat() it. If
- * lstat() fails we still can return successfully if
- * there are no more path components left.
+ * Append the next path component and lstat() it.
*/
resolved_len = strlcat(resolved, next_token, PATH_MAX);
if (resolved_len >= PATH_MAX) {
errno = ENAMETOOLONG;
goto err;
}
- if (lstat(resolved, &sb) != 0) {
- if (errno == ENOENT && p == NULL) {
- errno = serrno;
- return (resolved);
- }
+ if (lstat(resolved, &sb) != 0)
goto err;
- }
if (S_ISLNK(sb.st_mode)) {
if (symlinks++ > MAXSYMLINKS) {
errno = ELOOP;
@@ -196,6 +193,9 @@ realpath(const char *path, char *resolved)
}
}
left_len = strlcpy(left, symlink, sizeof(left));
+ } else if (!S_ISDIR(sb.st_mode) && p != NULL) {
+ errno = ENOTDIR;
+ goto err;
}
}