getcwd.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1989, 1991 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the University of
  16.  * California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33. #if defined(LIBC_SCCS) && !defined(lint)
  34. /*static char *sccsid = "from: @(#)getcwd.c 5.11 (Berkeley) 2/24/91";*/
  35. static char *rcsid = "$Id$";
  36. #endif /* LIBC_SCCS and not lint */
  37. #include <pthread.h>
  38. #include <sys/param.h>
  39. #include <sys/stat.h>
  40. #include <errno.h>
  41. #include <dirent.h>
  42. #include <stdio.h>
  43. #include <stdlib.h>
  44. #include <string.h>
  45. #include <unistd.h>
  46. #define ISDOT(dp) 
  47. (dp->d_name[0] == '.' && (dp->d_name[1] == '' || 
  48.     dp->d_name[1] == '.' && dp->d_name[2] == ''))
  49.   
  50. /* Only use reentrant safe routines to simplify varifying POSIX thread-safe
  51.  * compliance. (mevans).
  52.  */
  53. char *
  54. getcwd(pt, size)
  55. char *pt;
  56. size_t size;
  57. {
  58. register DIR *dir;
  59. register dev_t dev;
  60. register ino_t ino;
  61. register int first;
  62. register char *bpt, *bup;
  63. struct stat s;
  64. struct dirent *dp;
  65. struct dirent  de;
  66. dev_t root_dev;
  67. ino_t root_ino;
  68. size_t ptsize, upsize;
  69. int save_errno;
  70. char *ept, *eup, *up;
  71. int namelen;
  72. /*
  73.  * If no buffer specified by the user, allocate one as necessary.
  74.  * If a buffer is specified, the size has to be non-zero.  The path
  75.  * is built from the end of the buffer backwards.
  76.  */
  77. if (pt) {
  78. ptsize = 0;
  79. if (!size) {
  80. errno = EINVAL;
  81. return((char *)NULL);
  82. }
  83. ept = pt + size;
  84. } else {
  85. if (!(pt = (char *)malloc(ptsize = 1024 - 4)))
  86. return((char *)NULL);
  87. ept = pt + ptsize;
  88. }
  89. bpt = ept - 1;
  90. *bpt = '';
  91. /*
  92.  * Allocate bytes (1024 - malloc space) for the string of "../"'s.
  93.  * Should always be enough (it's 340 levels).  If it's not, allocate
  94.  * as necessary.  Special * case the first stat, it's ".", not "..".
  95.  */
  96. if (!(up = (char *)malloc(upsize = 1024 - 4)))
  97. goto err;
  98. eup = up + MAXPATHLEN;
  99. bup = up;
  100. up[0] = '.';
  101. up[1] = '';
  102. /* Save root values, so know when to stop. */
  103. if (stat("/", &s))
  104. goto err;
  105. root_dev = s.st_dev;
  106. root_ino = s.st_ino;
  107. SET_ERRNO(0);
  108. for (first = 1;; first = 0) {
  109. /* Stat the current level. */
  110. if (lstat(up, &s))
  111. goto err;
  112. /* Save current node values. */
  113. ino = s.st_ino;
  114. dev = s.st_dev;
  115. /* Check for reaching root. */
  116. if (root_dev == dev && root_ino == ino) {
  117. *--bpt = '/';
  118. /*
  119.  * It's unclear that it's a requirement to copy the
  120.  * path to the beginning of the buffer, but it's always
  121.  * been that way and stuff would probably break.
  122.  */
  123. /* XXX was bcopy */
  124. (void)memcpy(pt, bpt, ept - bpt);
  125. free(up);
  126. return(pt);
  127. }
  128. /*
  129.  * Build pointer to the parent directory, allocating memory
  130.  * as necessary.  Max length is 3 for "../", the largest
  131.  * possible component name, plus a trailing NULL.
  132.  */
  133. if (bup + 3  + MAXNAMLEN + 1 >= eup) {
  134. if (!(up = (char *)realloc(up, upsize *= 2)))
  135. goto err;
  136. eup = up + upsize;
  137. }
  138. *bup++ = '.';
  139. *bup++ = '.';
  140. *bup = '';
  141. /* Open and stat parent directory. */
  142. /* XXX opendir() returns kernel fd's instead of
  143.    pthread fd's for some odd reason, so we must
  144.    break the abstraction boundry here as well or
  145.    fix everything in opendir et al. SNL */
  146. if (!(dir = opendir(up)) ||
  147.     machdep_sys_fstat(dirfd(dir), &s))
  148. goto err;
  149. /* Add trailing slash for next directory. */
  150. *bup++ = '/';
  151. /*
  152.  * If it's a mount point, have to stat each element because
  153.  * the inode number in the directory is for the entry in the
  154.  * parent directory, not the inode number of the mounted file.
  155.  */
  156. save_errno = 0;
  157. if (s.st_dev == dev) {
  158. for (;;) {
  159.   if (readdir_r(dir, &de, &dp))
  160. goto notfound;
  161. if (dp->d_fileno == ino)
  162. break;
  163. }
  164. } else
  165. for (;;) {
  166.   if (readdir_r(dir, &de, &dp))
  167.     goto notfound;
  168. if (ISDOT(dp))
  169. continue;
  170. memcpy(bup, dp->d_name, strlen(dp->d_name) + 1);
  171. /* Save the first error for later. */
  172. if (lstat(up, &s)) {
  173. if (!save_errno)
  174. save_errno = errno;
  175. SET_ERRNO(0);
  176. continue;
  177. }
  178. if (s.st_dev == dev && s.st_ino == ino)
  179. break;
  180. }
  181. /*
  182.  * Check for length of the current name, preceding slash,
  183.  * leading slash.
  184.  */
  185. namelen = strlen(dp->d_name);
  186. if (bpt - pt <= namelen + (first ? 1 : 2)) {
  187. size_t len, off;
  188. if (!ptsize) {
  189.     SET_ERRNO(ERANGE);
  190. goto err;
  191. }
  192. off = bpt - pt;
  193. len = ept - bpt;
  194. if (!(pt = (char *)realloc(pt, ptsize *= 2)))
  195. goto err;
  196. bpt = pt + off;
  197. ept = pt + ptsize;
  198. /* XXX was bcopy */
  199. (void)memcpy(ept - len, bpt, len);
  200. bpt = ept - len;
  201. }
  202. if (!first)
  203. *--bpt = '/';
  204. bpt -= namelen;
  205. memcpy(bpt, dp->d_name, namelen);
  206. (void)closedir(dir);
  207. /* Truncate any file name. */
  208. *bup = '';
  209. }
  210. notfound:
  211. /*
  212.  * If readdir set errno, use it, not any saved error; otherwise,
  213.  * didn't find the current directory in its parent directory, set
  214.  * errno to ENOENT.
  215.  */
  216. if (!errno) {
  217.     if (!save_errno)
  218.   save_errno = ENOENT;
  219. SET_ERRNO(save_errno);
  220. }
  221. /* FALLTHROUGH */
  222. err:
  223. if (ptsize)
  224. free(pt);
  225. free(up);
  226. return((char *)NULL);
  227. }