link_win32.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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. | Author: Pierre A. Joye <pierre@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifdef PHP_WIN32
  20. #include "php.h"
  21. #include "php_filestat.h"
  22. #include "php_globals.h"
  23. #include <WinBase.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #if HAVE_PWD_H
  27. #include "win32/pwd.h"
  28. #endif
  29. #if HAVE_GRP_H
  30. #include "win32/grp.h"
  31. #endif
  32. #include <errno.h>
  33. #include <ctype.h>
  34. #include "php_link.h"
  35. #include "php_string.h"
  36. /*
  37. TODO:
  38. - Create php_readlink (done), php_link and php_symlink in win32/link.c
  39. - Expose them (PHPAPI) so extensions developers can use them
  40. - define link/readlink/symlink to their php_ equivalent and use them in ext/standart/link.c
  41. - this file is then useless and we have a portable link API
  42. */
  43. #ifndef VOLUME_NAME_NT
  44. #define VOLUME_NAME_NT 0x2
  45. #endif
  46. #ifndef VOLUME_NAME_DOS
  47. #define VOLUME_NAME_DOS 0x0
  48. #endif
  49. /* {{{ proto string readlink(string filename)
  50. Return the target of a symbolic link */
  51. PHP_FUNCTION(readlink)
  52. {
  53. char *link;
  54. int link_len;
  55. char target[MAXPATHLEN];
  56. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p", &link, &link_len) == FAILURE) {
  57. return;
  58. }
  59. if (OPENBASEDIR_CHECKPATH(link)) {
  60. RETURN_FALSE;
  61. }
  62. if (php_sys_readlink(link, target, MAXPATHLEN) == -1) {
  63. php_error_docref(NULL TSRMLS_CC, E_WARNING, "readlink failed to read the symbolic link (%s), error %d)", link, GetLastError());
  64. RETURN_FALSE;
  65. }
  66. RETURN_STRING(target, 1);
  67. }
  68. /* }}} */
  69. /* {{{ proto int linkinfo(string filename)
  70. Returns the st_dev field of the UNIX C stat structure describing the link */
  71. PHP_FUNCTION(linkinfo)
  72. {
  73. char *link;
  74. char *dirname;
  75. int link_len, dir_len;
  76. struct stat sb;
  77. int ret;
  78. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p", &link, &link_len) == FAILURE) {
  79. return;
  80. }
  81. dirname = estrndup(link, link_len);
  82. dir_len = php_dirname(dirname, link_len);
  83. if (php_check_open_basedir(dirname TSRMLS_CC)) {
  84. efree(dirname);
  85. RETURN_FALSE;
  86. }
  87. ret = VCWD_STAT(link, &sb);
  88. if (ret == -1) {
  89. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", strerror(errno));
  90. efree(dirname);
  91. RETURN_LONG(-1L);
  92. }
  93. efree(dirname);
  94. RETURN_LONG((long) sb.st_dev);
  95. }
  96. /* }}} */
  97. /* {{{ proto int symlink(string target, string link)
  98. Create a symbolic link */
  99. PHP_FUNCTION(symlink)
  100. {
  101. char *topath, *frompath;
  102. int topath_len, frompath_len;
  103. BOOLEAN ret;
  104. char source_p[MAXPATHLEN];
  105. char dest_p[MAXPATHLEN];
  106. char dirname[MAXPATHLEN];
  107. size_t len;
  108. DWORD attr;
  109. HINSTANCE kernel32;
  110. typedef BOOLEAN (WINAPI *csla_func)(LPCSTR, LPCSTR, DWORD);
  111. csla_func pCreateSymbolicLinkA;
  112. kernel32 = LoadLibrary("kernel32.dll");
  113. if (kernel32) {
  114. pCreateSymbolicLinkA = (csla_func)GetProcAddress(kernel32, "CreateSymbolicLinkA");
  115. if (pCreateSymbolicLinkA == NULL) {
  116. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't call CreateSymbolicLinkA");
  117. RETURN_FALSE;
  118. }
  119. } else {
  120. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't call get a handle on kernel32.dll");
  121. RETURN_FALSE;
  122. }
  123. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp", &topath, &topath_len, &frompath, &frompath_len) == FAILURE) {
  124. return;
  125. }
  126. if (!expand_filepath(frompath, source_p TSRMLS_CC)) {
  127. php_error_docref(NULL TSRMLS_CC, E_WARNING, "No such file or directory");
  128. RETURN_FALSE;
  129. }
  130. memcpy(dirname, source_p, sizeof(source_p));
  131. len = php_dirname(dirname, strlen(dirname));
  132. if (!expand_filepath_ex(topath, dest_p, dirname, len TSRMLS_CC)) {
  133. php_error_docref(NULL TSRMLS_CC, E_WARNING, "No such file or directory");
  134. RETURN_FALSE;
  135. }
  136. if (php_stream_locate_url_wrapper(source_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) ||
  137. php_stream_locate_url_wrapper(dest_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) )
  138. {
  139. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to symlink to a URL");
  140. RETURN_FALSE;
  141. }
  142. if (OPENBASEDIR_CHECKPATH(dest_p)) {
  143. RETURN_FALSE;
  144. }
  145. if (OPENBASEDIR_CHECKPATH(source_p)) {
  146. RETURN_FALSE;
  147. }
  148. if ((attr = GetFileAttributes(topath)) == INVALID_FILE_ATTRIBUTES) {
  149. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not fetch file information(error %d)", GetLastError());
  150. RETURN_FALSE;
  151. }
  152. /* For the source, an expanded path must be used (in ZTS an other thread could have changed the CWD).
  153. * For the target the exact string given by the user must be used, relative or not, existing or not.
  154. * The target is relative to the link itself, not to the CWD. */
  155. ret = pCreateSymbolicLinkA(source_p, topath, (attr & FILE_ATTRIBUTE_DIRECTORY ? 1 : 0));
  156. if (!ret) {
  157. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot create symlink, error code(%d)", GetLastError());
  158. RETURN_FALSE;
  159. }
  160. RETURN_TRUE;
  161. }
  162. /* }}} */
  163. /* {{{ proto int link(string target, string link)
  164. Create a hard link */
  165. PHP_FUNCTION(link)
  166. {
  167. char *topath, *frompath;
  168. int topath_len, frompath_len;
  169. int ret;
  170. char source_p[MAXPATHLEN];
  171. char dest_p[MAXPATHLEN];
  172. /*First argument to link function is the target and hence should go to frompath
  173. Second argument to link function is the link itself and hence should go to topath */
  174. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &frompath, &frompath_len, &topath, &topath_len) == FAILURE) {
  175. return;
  176. }
  177. if (!expand_filepath(frompath, source_p TSRMLS_CC) || !expand_filepath(topath, dest_p TSRMLS_CC)) {
  178. php_error_docref(NULL TSRMLS_CC, E_WARNING, "No such file or directory");
  179. RETURN_FALSE;
  180. }
  181. if (php_stream_locate_url_wrapper(source_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) ||
  182. php_stream_locate_url_wrapper(dest_p, NULL, STREAM_LOCATE_WRAPPERS_ONLY TSRMLS_CC) )
  183. {
  184. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to link to a URL");
  185. RETURN_FALSE;
  186. }
  187. if (OPENBASEDIR_CHECKPATH(source_p)) {
  188. RETURN_FALSE;
  189. }
  190. if (OPENBASEDIR_CHECKPATH(dest_p)) {
  191. RETURN_FALSE;
  192. }
  193. #ifndef ZTS
  194. ret = CreateHardLinkA(topath, frompath, NULL);
  195. #else
  196. ret = CreateHardLinkA(dest_p, source_p, NULL);
  197. #endif
  198. if (ret == 0) {
  199. php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", strerror(errno));
  200. RETURN_FALSE;
  201. }
  202. RETURN_TRUE;
  203. }
  204. /* }}} */
  205. #endif
  206. /*
  207. * Local variables:
  208. * tab-width: 4
  209. * c-basic-offset: 4
  210. * End:
  211. * vim600: noet sw=4 ts=4 fdm=marker
  212. * vim<600: noet sw=4 ts=4
  213. */