* Makefile.am (ALL_EMULATIONS): Add ecrisaout.o, ecriself.o,
[binutils.git] / libiberty / getpwd.c
blobde6e03976483fcb86ac3f5c9cff86245cdb246d4
1 /* getpwd.c - get the working directory */
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
7 #include <sys/types.h>
9 #include <errno.h>
10 #ifndef errno
11 extern int errno;
12 #endif
14 #ifdef HAVE_STDLIB_H
15 #include <stdlib.h>
16 #endif
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
20 #ifdef HAVE_SYS_PARAM_H
21 #include <sys/param.h>
22 #endif
23 #if HAVE_SYS_STAT_H
24 #include <sys/stat.h>
25 #endif
27 /* Prototype these in case the system headers don't provide them. */
28 extern char *getpwd ();
29 extern char *getwd ();
31 #include "libiberty.h"
33 /* Virtually every UN*X system now in common use (except for pre-4.3-tahoe
34 BSD systems) now provides getcwd as called for by POSIX. Allow for
35 the few exceptions to the general rule here. */
37 #if !defined(HAVE_GETCWD) && defined(HAVE_GETWD)
38 #define getcwd(buf,len) getwd(buf)
39 #endif
41 #ifdef MAXPATHLEN
42 #define GUESSPATHLEN (MAXPATHLEN + 1)
43 #else
44 #define GUESSPATHLEN 100
45 #endif
47 #if !(defined (VMS) || (defined(_WIN32) && !defined(__CYGWIN__)))
49 /* Get the working directory. Use the PWD environment variable if it's
50 set correctly, since this is faster and gives more uniform answers
51 to the user. Yield the working directory if successful; otherwise,
52 yield 0 and set errno. */
54 char *
55 getpwd ()
57 static char *pwd;
58 static int failure_errno;
60 char *p = pwd;
61 size_t s;
62 struct stat dotstat, pwdstat;
64 if (!p && !(errno = failure_errno))
66 if (! ((p = getenv ("PWD")) != 0
67 && *p == '/'
68 && stat (p, &pwdstat) == 0
69 && stat (".", &dotstat) == 0
70 && dotstat.st_ino == pwdstat.st_ino
71 && dotstat.st_dev == pwdstat.st_dev))
73 /* The shortcut didn't work. Try the slow, ``sure'' way. */
74 for (s = GUESSPATHLEN; ! getcwd (p = xmalloc (s), s); s *= 2)
76 int e = errno;
77 free (p);
78 #ifdef ERANGE
79 if (e != ERANGE)
80 #endif
82 errno = failure_errno = e;
83 p = 0;
84 break;
88 /* Cache the result. This assumes that the program does
89 not invoke chdir between calls to getpwd. */
90 pwd = p;
92 return p;
95 #else /* VMS || _WIN32 && !__CYGWIN__ */
97 #ifndef MAXPATHLEN
98 #define MAXPATHLEN 255
99 #endif
101 char *
102 getpwd ()
104 static char *pwd = 0;
106 if (!pwd)
107 pwd = getcwd (xmalloc (MAXPATHLEN + 1), MAXPATHLEN + 1
108 #ifdef VMS
110 #endif
112 return pwd;
115 #endif /* VMS || _WIN32 && !__CYGWIN__ */