summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/getcwd.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1995-02-04 19:29:22 +0000
committerphk <phk@FreeBSD.org>1995-02-04 19:29:22 +0000
commitd0412fbe28ba3cbfcf7c3e98bf60865d2f560e68 (patch)
treea6e6364986d2cc30217d06ff76b78ea92c965aa3 /lib/libc/gen/getcwd.c
parent47e4dbe85ecb6224aabe5b3cf54f81a1d12e43c3 (diff)
downloadFreeBSD-src-d0412fbe28ba3cbfcf7c3e98bf60865d2f560e68.zip
FreeBSD-src-d0412fbe28ba3cbfcf7c3e98bf60865d2f560e68.tar.gz
A cute hack to speed up things by Keith: if getenv("PWD") is the same
inode as ".", then just return that. I added a check so it must start with a '/'. Reviewed by: phk Submitted by: bostic@cs.berkeley.edu (Keith Bostic)
Diffstat (limited to 'lib/libc/gen/getcwd.c')
-rw-r--r--lib/libc/gen/getcwd.c29
1 files changed, 24 insertions, 5 deletions
diff --git a/lib/libc/gen/getcwd.c b/lib/libc/gen/getcwd.c
index 2757d3b..d14f9af 100644
--- a/lib/libc/gen/getcwd.c
+++ b/lib/libc/gen/getcwd.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1989, 1991, 1993
+ * Copyright (c) 1989, 1991, 1993, 1995
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)getcwd.c 8.1 (Berkeley) 6/4/93";
+static char sccsid[] = "@(#)getcwd.c 8.2 (Berkeley) 1/31/95";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
@@ -63,10 +63,29 @@ getcwd(pt, size)
struct stat s;
dev_t root_dev;
ino_t root_ino;
- size_t ptsize, upsize;
+ size_t ptsize, pwdlen, upsize;
int save_errno;
- char *ept, *eup, *up;
+ char *ept, *eup, *pwd, *up;
+ /* Check $PWD -- if it's right, it's fast. */
+ if ((pwd = getenv("PWD")) != NULL && !stat(pwd, &s) && *pwd == '/') {
+ dev = s.st_dev;
+ ino = s.st_ino;
+ if (!stat(".", &s) && dev == s.st_dev && ino == s.st_ino) {
+ pwdlen = strlen(pwd);
+ if (size != 0) {
+ if (pwdlen + 1 > size) {
+ errno = ERANGE;
+ return (NULL);
+ }
+ } else if ((pt = malloc(pwdlen + 1)) == NULL)
+ return (NULL);
+ memmove(pt, pwd, pwdlen);
+ pwd[pwdlen] = '\0';
+ return (pt);
+ }
+ }
+
/*
* If no buffer specified by the user, allocate one as necessary.
* If a buffer is specified, the size has to be non-zero. The path
@@ -94,7 +113,7 @@ getcwd(pt, size)
/*
* Allocate bytes (1024 - malloc space) for the string of "../"'s.
* Should always be enough (it's 340 levels). If it's not, allocate
- * as necessary. Special * case the first stat, it's ".", not "..".
+ * as necessary. Special case the first stat, it's ".", not "..".
*/
if ((up = malloc(upsize = 1024 - 4)) == NULL)
goto err;
OpenPOWER on IntegriCloud