getcwd.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

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