mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
Improve ioutil access impl and refactor tsrm_win32_access
This commit is contained in:
parent
2fbdaec03c
commit
a9a49b8250
3 changed files with 167 additions and 161 deletions
|
@ -209,41 +209,27 @@ TSRM_API int tsrm_win32_access(const char *pathname, int mode)
|
||||||
realpath_cache_bucket * bucket = NULL;
|
realpath_cache_bucket * bucket = NULL;
|
||||||
char * real_path = NULL;
|
char * real_path = NULL;
|
||||||
|
|
||||||
PHP_WIN32_IOUTIL_INIT_W(pathname)
|
|
||||||
if (!pathw) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mode == 1 /*X_OK*/) {
|
|
||||||
DWORD type;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
ret = GetBinaryTypeW(pathw, &type) ? 0 : -1;
|
|
||||||
|
|
||||||
PHP_WIN32_IOUTIL_CLEANUP_W()
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
} else {
|
|
||||||
if(!IS_ABSOLUTE_PATH(pathname, strlen(pathname)+1)) {
|
if(!IS_ABSOLUTE_PATH(pathname, strlen(pathname)+1)) {
|
||||||
real_path = (char *)malloc(MAXPATHLEN);
|
real_path = (char *)malloc(MAXPATHLEN);
|
||||||
if(tsrm_realpath(pathname, real_path) == NULL) {
|
if(tsrm_realpath(pathname, real_path) == NULL) {
|
||||||
goto Finished;
|
SET_ERRNO_FROM_WIN32_CODE(ERROR_FILE_NOT_FOUND);
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
pathname = real_path;
|
pathname = real_path;
|
||||||
PHP_WIN32_IOUTIL_REINIT_W(pathname);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(php_win32_ioutil_access(pathname, mode)) {
|
PHP_WIN32_IOUTIL_INIT_W(pathname)
|
||||||
PHP_WIN32_IOUTIL_CLEANUP_W()
|
if (!pathw) {
|
||||||
free(real_path);
|
free(real_path);
|
||||||
return errno;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If only existence check is made, return now */
|
/* Either access call failed, or the mode was asking for a specific check.*/
|
||||||
if (mode == 0) {
|
int ret = php_win32_ioutil_access_w(pathw, mode);
|
||||||
|
if (0 > ret || X_OK == mode || F_OK == mode) {
|
||||||
PHP_WIN32_IOUTIL_CLEANUP_W()
|
PHP_WIN32_IOUTIL_CLEANUP_W()
|
||||||
free(real_path);
|
free(real_path);
|
||||||
return 0;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Only in NTS when impersonate==1 (aka FastCGI) */
|
/* Only in NTS when impersonate==1 (aka FastCGI) */
|
||||||
|
@ -393,7 +379,6 @@ Finished:
|
||||||
} else {
|
} else {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}/*}}}*/
|
}/*}}}*/
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -655,13 +655,33 @@ BOOL php_win32_ioutil_init(void)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}/*}}}*/
|
}/*}}}*/
|
||||||
|
|
||||||
/* an extended version could be implemented, for now direct functions can be used. */
|
|
||||||
#if 0
|
|
||||||
PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode)
|
PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode)
|
||||||
{
|
{/*{{{*/
|
||||||
return _waccess(path, mode);
|
DWORD attr, err;
|
||||||
}
|
|
||||||
#endif
|
if ((mode & X_OK) == X_OK) {
|
||||||
|
DWORD type;
|
||||||
|
return GetBinaryTypeW(path, &type) ? 0 : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
attr = GetFileAttributesW(path);
|
||||||
|
if (attr == INVALID_FILE_ATTRIBUTES) {
|
||||||
|
err = GetLastError();
|
||||||
|
SET_ERRNO_FROM_WIN32_CODE(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (F_OK == mode) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((mode &W_OK) == W_OK && (attr & FILE_ATTRIBUTE_READONLY) == FILE_ATTRIBUTE_READONLY) {
|
||||||
|
SET_ERRNO_FROM_WIN32_CODE(ERROR_ACCESS_DENIED);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}/*}}}*/
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
PW32IO HANDLE php_win32_ioutil_findfirstfile_w(char *path, WIN32_FIND_DATA *data)
|
PW32IO HANDLE php_win32_ioutil_findfirstfile_w(char *path, WIN32_FIND_DATA *data)
|
||||||
|
|
|
@ -242,6 +242,7 @@ PW32IO int php_win32_ioutil_chdir_w(const wchar_t *path);
|
||||||
PW32IO int php_win32_ioutil_rename_w(const wchar_t *oldname, const wchar_t *newname);
|
PW32IO int php_win32_ioutil_rename_w(const wchar_t *oldname, const wchar_t *newname);
|
||||||
PW32IO wchar_t *php_win32_ioutil_getcwd_w(wchar_t *buf, size_t len);
|
PW32IO wchar_t *php_win32_ioutil_getcwd_w(wchar_t *buf, size_t len);
|
||||||
PW32IO int php_win32_ioutil_unlink_w(const wchar_t *path);
|
PW32IO int php_win32_ioutil_unlink_w(const wchar_t *path);
|
||||||
|
PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode);
|
PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode);
|
||||||
|
@ -264,14 +265,14 @@ __forceinline static int php_win32_ioutil_access(const char *path, mode_t mode)
|
||||||
|
|
||||||
PHP_WIN32_IOUTIL_CHECK_PATH_W(pathw, -1, 1)
|
PHP_WIN32_IOUTIL_CHECK_PATH_W(pathw, -1, 1)
|
||||||
|
|
||||||
ret = _waccess(pathw, mode);
|
ret = php_win32_ioutil_access_w(pathw, mode);
|
||||||
if (0 > ret) {
|
if (0 > ret) {
|
||||||
_get_errno(&err);
|
err = GetLastError();
|
||||||
}
|
}
|
||||||
PHP_WIN32_IOUTIL_CLEANUP_W()
|
PHP_WIN32_IOUTIL_CLEANUP_W()
|
||||||
|
|
||||||
if (0 > ret) {
|
if (0 > ret) {
|
||||||
_set_errno(err);
|
SET_ERRNO_FROM_WIN32_CODE(err);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue