PageRenderTime 22ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/runtime/ext_zend_compat/php-src/TSRM/tsrm_virtual_cwd.h

https://github.com/tstarling/hiphop-php
C Header | 339 lines | 257 code | 48 blank | 34 comment | 30 complexity | ad895de7f42e6fe4955b5441c754055e MD5 | raw file
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2013 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Andi Gutmans <andi@zend.com> |
  16. | Sascha Schumann <sascha@schumann.cx> |
  17. | Pierre Joye <pierre@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* $Id$ */
  21. #ifndef VIRTUAL_CWD_H
  22. #define VIRTUAL_CWD_H
  23. #include "TSRM.h"
  24. #include "tsrm_config_common.h"
  25. #include <sys/types.h>
  26. #include <sys/stat.h>
  27. #include <ctype.h>
  28. #include <stdio.h>
  29. #ifdef HAVE_UTIME_H
  30. #include <utime.h>
  31. #endif
  32. #ifdef HAVE_STDARG_H
  33. #include <stdarg.h>
  34. #endif
  35. #ifdef ZTS
  36. #define VIRTUAL_DIR
  37. #endif
  38. #ifndef TSRM_WIN32
  39. #include <unistd.h>
  40. #else
  41. #include <direct.h>
  42. #endif
  43. #if defined(__osf__) || defined(_AIX)
  44. #include <errno.h>
  45. #endif
  46. #ifdef TSRM_WIN32
  47. #include "readdir.h"
  48. #include <sys/utime.h>
  49. /* mode_t isn't defined on Windows */
  50. typedef unsigned short mode_t;
  51. #define DEFAULT_SLASH '\\'
  52. #define DEFAULT_DIR_SEPARATOR ';'
  53. #define IS_SLASH(c) ((c) == '/' || (c) == '\\')
  54. #define IS_SLASH_P(c) (*(c) == '/' || \
  55. (*(c) == '\\' && !IsDBCSLeadByte(*(c-1))))
  56. /* COPY_WHEN_ABSOLUTE is 2 under Win32 because by chance both regular absolute paths
  57. in the file system and UNC paths need copying of two characters */
  58. #define COPY_WHEN_ABSOLUTE(path) 2
  59. #define IS_UNC_PATH(path, len) \
  60. (len >= 2 && IS_SLASH(path[0]) && IS_SLASH(path[1]))
  61. #define IS_ABSOLUTE_PATH(path, len) \
  62. (len >= 2 && ((isalpha(path[0]) && path[1] == ':') || IS_UNC_PATH(path, len)))
  63. #elif defined(NETWARE)
  64. #ifdef HAVE_DIRENT_H
  65. #include <dirent.h>
  66. #endif
  67. #define DEFAULT_SLASH '/'
  68. #define DEFAULT_DIR_SEPARATOR ';'
  69. #define IS_SLASH(c) ((c) == '/' || (c) == '\\')
  70. #define IS_SLASH_P(c) IS_SLASH(*(c))
  71. /* Colon indicates volume name, either first character should be forward slash or backward slash */
  72. #define IS_ABSOLUTE_PATH(path, len) \
  73. ((strchr(path, ':') != NULL) || ((len >= 1) && ((path[0] == '/') || (path[0] == '\\'))))
  74. #else
  75. #ifdef HAVE_DIRENT_H
  76. #include <dirent.h>
  77. #endif
  78. #define DEFAULT_SLASH '/'
  79. #ifdef __riscos__
  80. #define DEFAULT_DIR_SEPARATOR ';'
  81. #else
  82. #define DEFAULT_DIR_SEPARATOR ':'
  83. #endif
  84. #define IS_SLASH(c) ((c) == '/')
  85. #define IS_SLASH_P(c) (*(c) == '/')
  86. #endif
  87. #ifndef COPY_WHEN_ABSOLUTE
  88. #define COPY_WHEN_ABSOLUTE(path) 0
  89. #endif
  90. #ifndef IS_ABSOLUTE_PATH
  91. #define IS_ABSOLUTE_PATH(path, len) \
  92. (IS_SLASH(path[0]))
  93. #endif
  94. #ifdef TSRM_EXPORTS
  95. #define CWD_EXPORTS
  96. #endif
  97. #ifdef TSRM_WIN32
  98. # ifdef CWD_EXPORTS
  99. # define CWD_API __declspec(dllexport)
  100. # else
  101. # define CWD_API __declspec(dllimport)
  102. # endif
  103. #elif defined(__GNUC__) && __GNUC__ >= 4
  104. # define CWD_API __attribute__ ((visibility("default")))
  105. #else
  106. # define CWD_API
  107. #endif
  108. #ifdef TSRM_WIN32
  109. CWD_API int php_sys_stat_ex(const char *path, struct stat *buf, int lstat);
  110. # define php_sys_stat(path, buf) php_sys_stat_ex(path, buf, 0)
  111. # define php_sys_lstat(path, buf) php_sys_stat_ex(path, buf, 1)
  112. CWD_API int php_sys_readlink(const char *link, char *target, size_t target_len);
  113. #else
  114. # define php_sys_stat stat
  115. # define php_sys_lstat lstat
  116. # ifdef HAVE_SYMLINK
  117. # define php_sys_readlink(link, target, target_len) readlink(link, target, target_len)
  118. # endif
  119. #endif
  120. typedef struct _cwd_state {
  121. char *cwd;
  122. int cwd_length;
  123. } cwd_state;
  124. typedef int (*verify_path_func)(const cwd_state *);
  125. CWD_API void virtual_cwd_startup(void);
  126. CWD_API void virtual_cwd_shutdown(void);
  127. CWD_API char *virtual_getcwd_ex(size_t *length TSRMLS_DC);
  128. CWD_API char *virtual_getcwd(char *buf, size_t size TSRMLS_DC);
  129. CWD_API int virtual_chdir(const char *path TSRMLS_DC);
  130. CWD_API int virtual_chdir_file(const char *path, int (*p_chdir)(const char *path TSRMLS_DC) TSRMLS_DC);
  131. CWD_API int virtual_filepath(const char *path, char **filepath TSRMLS_DC);
  132. CWD_API int virtual_filepath_ex(const char *path, char **filepath, verify_path_func verify_path TSRMLS_DC);
  133. CWD_API char *virtual_realpath(const char *path, char *real_path TSRMLS_DC);
  134. CWD_API FILE *virtual_fopen(const char *path, const char *mode TSRMLS_DC);
  135. CWD_API int virtual_open(const char *path TSRMLS_DC, int flags, ...);
  136. CWD_API int virtual_creat(const char *path, mode_t mode TSRMLS_DC);
  137. CWD_API int virtual_rename(char *oldname, char *newname TSRMLS_DC);
  138. CWD_API int virtual_stat(const char *path, struct stat *buf TSRMLS_DC);
  139. CWD_API int virtual_lstat(const char *path, struct stat *buf TSRMLS_DC);
  140. CWD_API int virtual_unlink(const char *path TSRMLS_DC);
  141. CWD_API int virtual_mkdir(const char *pathname, mode_t mode TSRMLS_DC);
  142. CWD_API int virtual_rmdir(const char *pathname TSRMLS_DC);
  143. CWD_API DIR *virtual_opendir(const char *pathname TSRMLS_DC);
  144. CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC);
  145. CWD_API int virtual_access(const char *pathname, int mode TSRMLS_DC);
  146. #if defined(TSRM_WIN32)
  147. /* these are not defined in win32 headers */
  148. #ifndef W_OK
  149. #define W_OK 0x02
  150. #endif
  151. #ifndef R_OK
  152. #define R_OK 0x04
  153. #endif
  154. #ifndef X_OK
  155. #define X_OK 0x01
  156. #endif
  157. #ifndef F_OK
  158. #define F_OK 0x00
  159. #endif
  160. #endif
  161. #if HAVE_UTIME
  162. CWD_API int virtual_utime(const char *filename, struct utimbuf *buf TSRMLS_DC);
  163. #endif
  164. CWD_API int virtual_chmod(const char *filename, mode_t mode TSRMLS_DC);
  165. #if !defined(TSRM_WIN32) && !defined(NETWARE)
  166. CWD_API int virtual_chown(const char *filename, uid_t owner, gid_t group, int link TSRMLS_DC);
  167. #endif
  168. /* One of the following constants must be used as the last argument
  169. in virtual_file_ex() call. */
  170. #define CWD_EXPAND 0 /* expand "." and ".." but dont resolve symlinks */
  171. #define CWD_FILEPATH 1 /* resolve symlinks if file is exist otherwise expand */
  172. #define CWD_REALPATH 2 /* call realpath(), resolve symlinks. File must exist */
  173. CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func verify_path, int use_realpath TSRMLS_DC);
  174. CWD_API char *tsrm_realpath(const char *path, char *real_path TSRMLS_DC);
  175. #define REALPATH_CACHE_TTL (2*60) /* 2 minutes */
  176. #define REALPATH_CACHE_SIZE 0 /* disabled while php.ini isn't loaded */
  177. typedef struct _realpath_cache_bucket {
  178. unsigned long key;
  179. char *path;
  180. int path_len;
  181. char *realpath;
  182. int realpath_len;
  183. int is_dir;
  184. time_t expires;
  185. #ifdef PHP_WIN32
  186. unsigned char is_rvalid;
  187. unsigned char is_readable;
  188. unsigned char is_wvalid;
  189. unsigned char is_writable;
  190. #endif
  191. struct _realpath_cache_bucket *next;
  192. } realpath_cache_bucket;
  193. typedef struct _virtual_cwd_globals {
  194. cwd_state cwd;
  195. long realpath_cache_size;
  196. long realpath_cache_size_limit;
  197. long realpath_cache_ttl;
  198. realpath_cache_bucket *realpath_cache[1024];
  199. } virtual_cwd_globals;
  200. #ifdef ZTS
  201. extern ts_rsrc_id cwd_globals_id;
  202. # define CWDG(v) TSRMG(cwd_globals_id, virtual_cwd_globals *, v)
  203. #else
  204. extern virtual_cwd_globals cwd_globals;
  205. # define CWDG(v) (cwd_globals.v)
  206. #endif
  207. CWD_API void realpath_cache_clean(TSRMLS_D);
  208. CWD_API void realpath_cache_del(const char *path, int path_len TSRMLS_DC);
  209. CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRMLS_DC);
  210. CWD_API int realpath_cache_size(TSRMLS_D);
  211. CWD_API int realpath_cache_max_buckets(TSRMLS_D);
  212. CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D);
  213. /* The actual macros to be used in programs using TSRM
  214. * If the program defines VIRTUAL_DIR it will use the
  215. * virtual_* functions
  216. */
  217. #ifdef VIRTUAL_DIR
  218. #define VCWD_GETCWD(buff, size) virtual_getcwd(buff, size TSRMLS_CC)
  219. #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode TSRMLS_CC)
  220. /* Because open() has two modes, we have to macros to replace it */
  221. #define VCWD_OPEN(path, flags) virtual_open(path TSRMLS_CC, flags)
  222. #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path TSRMLS_CC, flags, mode)
  223. #define VCWD_CREAT(path, mode) virtual_creat(path, mode TSRMLS_CC)
  224. #define VCWD_CHDIR(path) virtual_chdir(path TSRMLS_CC)
  225. #define VCWD_CHDIR_FILE(path) virtual_chdir_file(path, virtual_chdir TSRMLS_CC)
  226. #define VCWD_GETWD(buf)
  227. #define VCWD_REALPATH(path, real_path) virtual_realpath(path, real_path TSRMLS_CC)
  228. #define VCWD_RENAME(oldname, newname) virtual_rename(oldname, newname TSRMLS_CC)
  229. #define VCWD_STAT(path, buff) virtual_stat(path, buff TSRMLS_CC)
  230. # define VCWD_LSTAT(path, buff) virtual_lstat(path, buff TSRMLS_CC)
  231. #define VCWD_UNLINK(path) virtual_unlink(path TSRMLS_CC)
  232. #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode TSRMLS_CC)
  233. #define VCWD_RMDIR(pathname) virtual_rmdir(pathname TSRMLS_CC)
  234. #define VCWD_OPENDIR(pathname) virtual_opendir(pathname TSRMLS_CC)
  235. #define VCWD_POPEN(command, type) virtual_popen(command, type TSRMLS_CC)
  236. #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode TSRMLS_CC)
  237. #if HAVE_UTIME
  238. #define VCWD_UTIME(path, time) virtual_utime(path, time TSRMLS_CC)
  239. #endif
  240. #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode TSRMLS_CC)
  241. #if !defined(TSRM_WIN32) && !defined(NETWARE)
  242. #define VCWD_CHOWN(path, owner, group) virtual_chown(path, owner, group, 0 TSRMLS_CC)
  243. #if HAVE_LCHOWN
  244. #define VCWD_LCHOWN(path, owner, group) virtual_chown(path, owner, group, 1 TSRMLS_CC)
  245. #endif
  246. #endif
  247. #else
  248. #define VCWD_GETCWD(buff, size) getcwd(buff, size)
  249. #define VCWD_FOPEN(path, mode) fopen(path, mode)
  250. #define VCWD_OPEN(path, flags) open(path, flags)
  251. #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode)
  252. #define VCWD_CREAT(path, mode) creat(path, mode)
  253. /* rename on windows will fail if newname already exists.
  254. MoveFileEx has to be used */
  255. #if defined(TSRM_WIN32)
  256. # define VCWD_RENAME(oldname, newname) (MoveFileEx(oldname, newname, MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED) == 0 ? -1 : 0)
  257. #else
  258. # define VCWD_RENAME(oldname, newname) rename(oldname, newname)
  259. #endif
  260. #define VCWD_CHDIR(path) chdir(path)
  261. #define VCWD_CHDIR_FILE(path) virtual_chdir_file(path, chdir)
  262. #define VCWD_GETWD(buf) getwd(buf)
  263. #define VCWD_STAT(path, buff) php_sys_stat(path, buff)
  264. #define VCWD_LSTAT(path, buff) lstat(path, buff)
  265. #define VCWD_UNLINK(path) unlink(path)
  266. #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode)
  267. #define VCWD_RMDIR(pathname) rmdir(pathname)
  268. #define VCWD_OPENDIR(pathname) opendir(pathname)
  269. #define VCWD_POPEN(command, type) popen(command, type)
  270. #if defined(TSRM_WIN32)
  271. #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode TSRMLS_CC)
  272. #else
  273. #define VCWD_ACCESS(pathname, mode) access(pathname, mode)
  274. #endif
  275. #define VCWD_REALPATH(path, real_path) tsrm_realpath(path, real_path TSRMLS_CC)
  276. #if HAVE_UTIME
  277. # ifdef TSRM_WIN32
  278. # define VCWD_UTIME(path, time) win32_utime(path, time)
  279. # else
  280. # define VCWD_UTIME(path, time) utime(path, time)
  281. # endif
  282. #endif
  283. #define VCWD_CHMOD(path, mode) chmod(path, mode)
  284. #if !defined(TSRM_WIN32) && !defined(NETWARE)
  285. #define VCWD_CHOWN(path, owner, group) chown(path, owner, group)
  286. #if HAVE_LCHOWN
  287. #define VCWD_LCHOWN(path, owner, group) lchown(path, owner, group)
  288. #endif
  289. #endif
  290. #endif
  291. #endif /* VIRTUAL_CWD_H */