php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #63401
Patch add-win-fs-unicode-support revision 2012-10-30 22:09 UTC by j4f at bk dot ru
revision 2012-10-30 22:07 UTC by j4f at bk dot ru
revision 2012-10-30 22:06 UTC by j4f at bk dot ru
revision 2012-10-30 22:05 UTC by j4f at bk dot ru

Patch add-win-fs-unicode-support for *Directory/Filesystem functions Bug #63401

Patch version 2012-10-30 22:09 UTC

Return to Bug #63401 | Download this patch
Patch Revisions: 2012-10-30 22:09 UTC | 2012-10-30 22:07 UTC | 2012-10-30 22:06 UTC | 2012-10-30 22:05 UTC

Developer: j4f@bk.ru

Line 1 (now 1), was 339 lines, now 250 lines
 /*
    +----------------------------------------------------------------------+
    | PHP Version 5                                                        |
    +----------------------------------------------------------------------+
    | Copyright (c) 1997-2012 The PHP Group                                |
    +----------------------------------------------------------------------+
    | This source file is subject to version 3.01 of the PHP license,      |
    | that is bundled with this package in the file LICENSE, and is        |
    | available through the world-wide-web at the following url:           |
    | http://www.php.net/license/3_01.txt                                  |
    | If you did not receive a copy of the PHP license and are unable to   |
    | obtain it through the world-wide-web, please send a note to          |
    | license@php.net so we can mail you a copy immediately.               |
    +----------------------------------------------------------------------+
    | Authors: Andi Gutmans <andi@zend.com>                                |
    |          Sascha Schumann <sascha@schumann.cx>                        |
    |          Pierre Joye <pierre@php.net>                                |
    +----------------------------------------------------------------------+
 */
 
 /* $Id$ */
 
 #ifndef VIRTUAL_CWD_H
 #define VIRTUAL_CWD_H
 
 #include "TSRM.h"
 #include "tsrm_config_common.h"
 
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <ctype.h>
 
 #ifdef HAVE_UTIME_H
 #include <utime.h>
 #endif
 
 #ifdef HAVE_STDARG_H
 #include <stdarg.h>
 #endif
 #include <malloc.h>
 #include <string.h>
 #include <errno.h>
 
 #include "php.h"
 #include "readdir.h"
 #include "TSRM.h"
 
 
 
 /**********************************************************************
  * Implement dirent-style opendir/readdir/rewinddir/closedir on Win32
  *
  * Functions defined are opendir(), readdir(), rewinddir() and
  * closedir() with the same prototypes as the normal dirent.h
  * implementation.
  *
  * Does not implement telldir(), seekdir(), or scandir().  The dirent
  * struct is compatible with Unix, except that d_ino is always 1 and
  * d_off is made up as we go along.
  *
  * The DIR typedef is not compatible with Unix.
  **********************************************************************/
 
 
 HANDLE FindFirstFileWW2( LPCSTR lpFileName,  WIN32_FIND_DATA *lpFindFileData) {
 
   wchar_t *lpFileNameW;
   char cFileNameR[260];          // return value
   char cAlternateFileNameR[14];  // return value
   HANDLE hFindW;
   WIN32_FIND_DATAW lpFindFileDataW;
   int lpFileNameW_len;
 
   lpFileNameW_len = MultiByteToWideChar( CP_UTF8,  0,  lpFileName,  -1,  NULL,  0 );
   lpFileNameW = (wchar_t *)malloc(lpFileNameW_len *2);
   //lpFileNameW = lpFileName.GetBuffer(lpFileNameW_len - 1);
   //lpFileNameW = lpFileNameW.GetBuffer(lpFileNameW_len);
 
   MultiByteToWideChar( CP_UTF8,  0,  lpFileName,  -1,  lpFileNameW,  lpFileNameW_len *2 );
 
   hFindW = FindFirstFileW(lpFileNameW, &lpFindFileDataW);
 
   free(lpFileNameW);
 
 
   WideCharToMultiByte( CP_UTF8,  0,  lpFindFileDataW.cFileName,           -1,  cFileNameR,           260, NULL, NULL);
   WideCharToMultiByte( CP_UTF8,  0,  lpFindFileDataW.cAlternateFileName,  -1,  cAlternateFileNameR,  14,  NULL, NULL);
 
 
   lpFindFileData->dwFileAttributes   = lpFindFileDataW.dwFileAttributes;
   lpFindFileData->ftCreationTime     = lpFindFileDataW.ftCreationTime;
   lpFindFileData->ftLastAccessTime   = lpFindFileDataW.ftLastAccessTime;
   lpFindFileData->ftLastWriteTime    = lpFindFileDataW.ftLastWriteTime;
   lpFindFileData->nFileSizeHigh      = lpFindFileDataW.nFileSizeHigh;
   lpFindFileData->nFileSizeLow       = lpFindFileDataW.nFileSizeLow;
   lpFindFileData->dwReserved0        = lpFindFileDataW.dwReserved0;
   lpFindFileData->dwReserved1        = lpFindFileDataW.dwReserved1;
   strcpy(lpFindFileData->cFileName          , cFileNameR);
   strcpy(lpFindFileData->cAlternateFileName , cAlternateFileNameR);
 
  
 #ifdef ZTS
 #define VIRTUAL_DIR
 #endif
   return  hFindW;
   }
  
 #ifndef TSRM_WIN32
 #include <unistd.h>
 #else
 #include <direct.h>
 #endif
 
 #if defined(__osf__) || defined(_AIX)
 #include <errno.h>
 #endif
 
 #ifdef TSRM_WIN32
 #include "readdir.h"
 #include <sys/utime.h>
 /* mode_t isn't defined on Windows */
 typedef unsigned short mode_t;
  
 #define DEFAULT_SLASH '\\'
 #define DEFAULT_DIR_SEPARATOR	';'
 #define IS_SLASH(c)	((c) == '/' || (c) == '\\')
 #define IS_SLASH_P(c)	(*(c) == '/' || \
         (*(c) == '\\' && !IsDBCSLeadByte(*(c-1))))
  
 /* COPY_WHEN_ABSOLUTE is 2 under Win32 because by chance both regular absolute paths
    in the file system and UNC paths need copying of two characters */
 #define COPY_WHEN_ABSOLUTE(path) 2
 #define IS_UNC_PATH(path, len) \
 	(len >= 2 && IS_SLASH(path[0]) && IS_SLASH(path[1]))
 #define IS_ABSOLUTE_PATH(path, len) \
 	(len >= 2 && ((isalpha(path[0]) && path[1] == ':') || IS_UNC_PATH(path, len)))
  
 #elif defined(NETWARE)
 #ifdef HAVE_DIRENT_H
 #include <dirent.h>
 #endif
 BOOL WINAPI FindNextFileWW2( HANDLE hFindFile,  WIN32_FIND_DATA *lpFindFileData) {
  
 #define DEFAULT_SLASH '/'
 #define DEFAULT_DIR_SEPARATOR	';'
 #define IS_SLASH(c)	((c) == '/' || (c) == '\\')
 #define IS_SLASH_P(c)	IS_SLASH(*(c))
 /* Colon indicates volume name, either first character should be forward slash or backward slash */
 #define IS_ABSOLUTE_PATH(path, len) \
     ((strchr(path, ':') != NULL) || ((len >= 1) && ((path[0] == '/') || (path[0] == '\\'))))
   char cFileNameR[260];          // return value
   char cAlternateFileNameR[14];  // return value
   WIN32_FIND_DATAW lpFindFileDataW;
   BOOL result;
  
 #else
 #ifdef HAVE_DIRENT_H
 #include <dirent.h>
 #endif
  
 #define DEFAULT_SLASH '/'
   result = FindNextFileW( hFindFile, &lpFindFileDataW );
  
 #ifdef __riscos__
 #define DEFAULT_DIR_SEPARATOR  ';'
 #else
 #define DEFAULT_DIR_SEPARATOR  ':'
 #endif
   WideCharToMultiByte( CP_UTF8,  0,  lpFindFileDataW.cFileName,           -1,  cFileNameR,           260, NULL, NULL);
   WideCharToMultiByte( CP_UTF8,  0,  lpFindFileDataW.cAlternateFileName,  -1,  cAlternateFileNameR,  14, NULL, NULL);
  
 #define IS_SLASH(c)	((c) == '/')
 #define IS_SLASH_P(c)	(*(c) == '/')
  
 #endif
   lpFindFileData->dwFileAttributes   = lpFindFileDataW.dwFileAttributes;
   lpFindFileData->ftCreationTime     = lpFindFileDataW.ftCreationTime;
   lpFindFileData->ftLastAccessTime   = lpFindFileDataW.ftLastAccessTime;
   lpFindFileData->ftLastWriteTime    = lpFindFileDataW.ftLastWriteTime;
   lpFindFileData->nFileSizeHigh      = lpFindFileDataW.nFileSizeHigh;
   lpFindFileData->nFileSizeLow       = lpFindFileDataW.nFileSizeLow;
   lpFindFileData->dwReserved0        = lpFindFileDataW.dwReserved0;
   lpFindFileData->dwReserved1        = lpFindFileDataW.dwReserved1;
   strcpy(lpFindFileData->cFileName          , cFileNameR);
   strcpy(lpFindFileData->cAlternateFileName , cAlternateFileNameR);
  
  
 #ifndef COPY_WHEN_ABSOLUTE
 #define COPY_WHEN_ABSOLUTE(path) 0
 #endif
   return  result;
   }
  
 #ifndef IS_ABSOLUTE_PATH
 #define IS_ABSOLUTE_PATH(path, len) \
 	(IS_SLASH(path[0]))
 #endif
  
 #ifdef TSRM_EXPORTS
 #define CWD_EXPORTS
 #endif
  
 #ifdef TSRM_WIN32
 #	ifdef CWD_EXPORTS
 #		define CWD_API __declspec(dllexport)
 #	else
 #		define CWD_API __declspec(dllimport)
 #	endif
 #elif defined(__GNUC__) && __GNUC__ >= 4
 #	define CWD_API __attribute__ ((visibility("default")))
 #else
 #	define CWD_API
 #endif
 DIR *opendir(const char *dir)
 {
 	DIR *dp;
 	char *filespec;
 	HANDLE handle;
 	int index;
 	char resolved_path_buff[MAXPATHLEN];
 	TSRMLS_FETCH();
  
 #ifdef TSRM_WIN32
 CWD_API int php_sys_stat_ex(const char *path, struct stat *buf, int lstat);
 # define php_sys_stat(path, buf) php_sys_stat_ex(path, buf, 0)
 # define php_sys_lstat(path, buf) php_sys_stat_ex(path, buf, 1)
 CWD_API int php_sys_readlink(const char *link, char *target, size_t target_len);
 #else
 # define php_sys_stat stat
 # define php_sys_lstat lstat
 # ifdef HAVE_SYMLINK
 # define php_sys_readlink(link, target, target_len) readlink(link, target, target_len)
 # endif
 #endif
 	if (!VCWD_REALPATH(dir, resolved_path_buff)) {
 		return NULL;
 	}
  
 typedef struct _cwd_state {
 	char *cwd;
 	int cwd_length;
 } cwd_state;
 	filespec = (char *)malloc(strlen(resolved_path_buff) + 2 + 1);
 	if (filespec == NULL) {
 		return NULL;
 	}
 	strcpy(filespec, resolved_path_buff);
 	index = strlen(filespec) - 1;
 	if (index >= 0 && (filespec[index] == '/' || 
 	   (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1])))))
 		filespec[index] = '\0';
 	strcat(filespec, "\\*");
  
 typedef int (*verify_path_func)(const cwd_state *);
 	dp = (DIR *) malloc(sizeof(DIR));
 	if (dp == NULL) {
 		return NULL;
 	}
 	dp->offset = 0;
 	dp->finished = 0;
  
 CWD_API void virtual_cwd_startup(void);
 CWD_API void virtual_cwd_shutdown(void);
 CWD_API char *virtual_getcwd_ex(size_t *length TSRMLS_DC);
 CWD_API char *virtual_getcwd(char *buf, size_t size TSRMLS_DC);
 CWD_API int virtual_chdir(const char *path TSRMLS_DC);
 CWD_API int virtual_chdir_file(const char *path, int (*p_chdir)(const char *path TSRMLS_DC) TSRMLS_DC);
 CWD_API int virtual_filepath(const char *path, char **filepath TSRMLS_DC);
 CWD_API int virtual_filepath_ex(const char *path, char **filepath, verify_path_func verify_path TSRMLS_DC);
 CWD_API char *virtual_realpath(const char *path, char *real_path TSRMLS_DC);
 CWD_API FILE *virtual_fopen(const char *path, const char *mode TSRMLS_DC);
 CWD_API int virtual_open(const char *path TSRMLS_DC, int flags, ...);
 CWD_API int virtual_creat(const char *path, mode_t mode TSRMLS_DC);
 CWD_API int virtual_rename(char *oldname, char *newname TSRMLS_DC);
 CWD_API int virtual_stat(const char *path, struct stat *buf TSRMLS_DC);
 CWD_API int virtual_lstat(const char *path, struct stat *buf TSRMLS_DC);
 CWD_API int virtual_unlink(const char *path TSRMLS_DC);
 CWD_API int virtual_mkdir(const char *pathname, mode_t mode TSRMLS_DC);
 CWD_API int virtual_rmdir(const char *pathname TSRMLS_DC);
 CWD_API DIR *virtual_opendir(const char *pathname TSRMLS_DC);
 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC);
 CWD_API int virtual_access(const char *pathname, int mode TSRMLS_DC);
 #if defined(TSRM_WIN32)
 /* these are not defined in win32 headers */
 #ifndef W_OK
 #define W_OK 0x02
 #endif
 #ifndef R_OK
 #define R_OK 0x04
 #endif
 #ifndef X_OK
 #define X_OK 0x01
 #endif
 #ifndef F_OK
 #define F_OK 0x00
 #endif
 #endif
 	//if ((handle = FindFirstFile(filespec, &(dp->fileinfo))) == INVALID_HANDLE_VALUE) {     // mod@yur
 	if ((handle = FindFirstFileWW2(filespec, &(dp->fileinfo))) == INVALID_HANDLE_VALUE) {    // add@yur
 		DWORD err = GetLastError();
 		if (err == ERROR_NO_MORE_FILES || err == ERROR_FILE_NOT_FOUND) {
 			dp->finished = 1;
 		} else {
 			free(dp);
 			free(filespec);
 			return NULL;
 		}
 	}
 	dp->dir = strdup(resolved_path_buff);
 	dp->handle = handle;
 	free(filespec);
  
 #if HAVE_UTIME
 CWD_API int virtual_utime(const char *filename, struct utimbuf *buf TSRMLS_DC);
 #endif
 CWD_API int virtual_chmod(const char *filename, mode_t mode TSRMLS_DC);
 #if !defined(TSRM_WIN32) && !defined(NETWARE)
 CWD_API int virtual_chown(const char *filename, uid_t owner, gid_t group, int link TSRMLS_DC);
 #endif
 	return dp;
 }
  
 /* One of the following constants must be used as the last argument
    in virtual_file_ex() call. */
 struct dirent *readdir(DIR *dp)
 {
 	if (!dp || dp->finished)
 		return NULL;
  
 #define CWD_EXPAND   0 /* expand "." and ".." but dont resolve symlinks      */
 #define CWD_FILEPATH 1 /* resolve symlinks if file is exist otherwise expand */
 #define CWD_REALPATH 2 /* call realpath(), resolve symlinks. File must exist */
 	if (dp->offset != 0) {
 		//if (FindNextFile(dp->handle, &(dp->fileinfo)) == 0) {   // mod@yur
 		if (FindNextFileWW2(dp->handle, &(dp->fileinfo)) == 0) {  // add@yur
 			dp->finished = 1;
 			return NULL;
 		}
 	}
 	dp->offset++;
  
 CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func verify_path, int use_realpath TSRMLS_DC);
 	strlcpy(dp->dent.d_name, dp->fileinfo.cFileName, _MAX_FNAME+1);
 	dp->dent.d_ino = 1;
 	dp->dent.d_reclen = strlen(dp->dent.d_name);
 	dp->dent.d_off = dp->offset;
  
 CWD_API char *tsrm_realpath(const char *path, char *real_path TSRMLS_DC);
 	return &(dp->dent);
 }
  
 #define REALPATH_CACHE_TTL  (2*60) /* 2 minutes */
 #define REALPATH_CACHE_SIZE 0      /* disabled while php.ini isn't loaded */
 int readdir_r(DIR *dp, struct dirent *entry, struct dirent **result)
 {
 	if (!dp || dp->finished) {
 		*result = NULL;
 		return 0;
 	}
  
 typedef struct _realpath_cache_bucket {
 	unsigned long                  key;
 	char                          *path;
 	int                            path_len;
 	char                          *realpath;
 	int                            realpath_len;
 	int                            is_dir;
 	time_t                         expires;
 #ifdef PHP_WIN32
 	unsigned char                  is_rvalid;
 	unsigned char                  is_readable;
 	unsigned char                  is_wvalid;
 	unsigned char                  is_writable;
 #endif
 	struct _realpath_cache_bucket *next;
 } realpath_cache_bucket;
 	if (dp->offset != 0) {
 		//if (FindNextFile(dp->handle, &(dp->fileinfo)) == 0) {   // mod@yur
 		if (FindNextFileWW2(dp->handle, &(dp->fileinfo)) == 0) {  // add@yur
 			dp->finished = 1;
 			*result = NULL;
 			return 0;
 		}
 	}
 	dp->offset++;
  
 typedef struct _virtual_cwd_globals {
 	cwd_state cwd;
 	long                   realpath_cache_size;
 	long                   realpath_cache_size_limit;
 	long                   realpath_cache_ttl;
 	realpath_cache_bucket *realpath_cache[1024];
 } virtual_cwd_globals;
 	strlcpy(dp->dent.d_name, dp->fileinfo.cFileName, _MAX_FNAME+1);
 	dp->dent.d_ino = 1;
 	dp->dent.d_reclen = strlen(dp->dent.d_name);
 	dp->dent.d_off = dp->offset;
  
 #ifdef ZTS
 extern ts_rsrc_id cwd_globals_id;
 # define CWDG(v) TSRMG(cwd_globals_id, virtual_cwd_globals *, v)
 #else
 extern virtual_cwd_globals cwd_globals;
 # define CWDG(v) (cwd_globals.v)
 #endif
 	memcpy(entry, &dp->dent, sizeof(*entry));
  
 CWD_API void realpath_cache_clean(TSRMLS_D);
 CWD_API void realpath_cache_del(const char *path, int path_len TSRMLS_DC);
 CWD_API realpath_cache_bucket* realpath_cache_lookup(const char *path, int path_len, time_t t TSRMLS_DC);
 CWD_API int realpath_cache_size(TSRMLS_D);
 CWD_API int realpath_cache_max_buckets(TSRMLS_D);
 CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D);
 	*result = &dp->dent;
  
 /* The actual macros to be used in programs using TSRM
  * If the program defines VIRTUAL_DIR it will use the
  * virtual_* functions
  */
 	return 0;
 }
  
 #ifdef VIRTUAL_DIR
 int closedir(DIR *dp)
 {
 	if (!dp)
 		return 0;
 	/* It is valid to scan an empty directory but we have an invalid
 	   handle in this case (no first file found). */
 	if (dp->handle != INVALID_HANDLE_VALUE) {
 		FindClose(dp->handle);
 	}
 	if (dp->dir)
 		free(dp->dir);
 	if (dp)
 		free(dp);
  
 #define VCWD_GETCWD(buff, size) virtual_getcwd(buff, size TSRMLS_CC)
 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode TSRMLS_CC)
 /* Because open() has two modes, we have to macros to replace it */
 #define VCWD_OPEN(path, flags) virtual_open(path TSRMLS_CC, flags)
 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path TSRMLS_CC, flags, mode)
 #define VCWD_CREAT(path, mode) virtual_creat(path, mode TSRMLS_CC)
 #define VCWD_CHDIR(path) virtual_chdir(path TSRMLS_CC)
 #define VCWD_CHDIR_FILE(path) virtual_chdir_file(path, virtual_chdir TSRMLS_CC)
 #define VCWD_GETWD(buf)
 #define VCWD_REALPATH(path, real_path) virtual_realpath(path, real_path TSRMLS_CC)
 #define VCWD_RENAME(oldname, newname) virtual_rename(oldname, newname TSRMLS_CC)
 #define VCWD_STAT(path, buff) virtual_stat(path, buff TSRMLS_CC)
 # define VCWD_LSTAT(path, buff) virtual_lstat(path, buff TSRMLS_CC)
 #define VCWD_UNLINK(path) virtual_unlink(path TSRMLS_CC)
 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode TSRMLS_CC)
 #define VCWD_RMDIR(pathname) virtual_rmdir(pathname TSRMLS_CC)
 #define VCWD_OPENDIR(pathname) virtual_opendir(pathname TSRMLS_CC)
 #define VCWD_POPEN(command, type) virtual_popen(command, type TSRMLS_CC)
 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode TSRMLS_CC)
 #if HAVE_UTIME
 #define VCWD_UTIME(path, time) virtual_utime(path, time TSRMLS_CC)
 #endif
 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode TSRMLS_CC)
 #if !defined(TSRM_WIN32) && !defined(NETWARE)
 #define VCWD_CHOWN(path, owner, group) virtual_chown(path, owner, group, 0 TSRMLS_CC)
 #if HAVE_LCHOWN
 #define VCWD_LCHOWN(path, owner, group) virtual_chown(path, owner, group, 1 TSRMLS_CC)
 #endif
 #endif
 	return 0;
 }
  
 #else
 int rewinddir(DIR *dp)
 {
 	/* Re-set to the beginning */
 	char *filespec;
 	HANDLE handle;
 	int index;
  
 #define VCWD_GETCWD(buff, size) getcwd(buff, size)
 //#define VCWD_FOPEN(path, mode)  fopen(path, mode)                              //mod@yur
 #define VCWD_FOPEN(path, mode)  _wfopen(UTF8toUTF16(path), UTF8toUTF16(mode))    //add@yur
 #define VCWD_OPEN(path, flags) open(path, flags)
 #define VCWD_OPEN_MODE(path, flags, mode)	open(path, flags, mode)
 #define VCWD_CREAT(path, mode) creat(path, mode)
 /* rename on windows will fail if newname already exists.
    MoveFileEx has to be used */
 #if defined(TSRM_WIN32)
 # define VCWD_RENAME(oldname, newname) (MoveFileEx(oldname, newname, MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED) == 0 ? -1 : 0)
 #else
 # define VCWD_RENAME(oldname, newname) rename(oldname, newname)
 #endif
 #define VCWD_CHDIR(path) chdir(path)
 #define VCWD_CHDIR_FILE(path) virtual_chdir_file(path, chdir)
 #define VCWD_GETWD(buf) getwd(buf)
 #define VCWD_STAT(path, buff) php_sys_stat(path, buff)
 #define VCWD_LSTAT(path, buff) lstat(path, buff)
 #define VCWD_UNLINK(path) unlink(path)
 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode)
 #define VCWD_RMDIR(pathname) rmdir(pathname)
 #define VCWD_OPENDIR(pathname) opendir(pathname)
 #define VCWD_POPEN(command, type) popen(command, type)
 #if defined(TSRM_WIN32)
 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode TSRMLS_CC)
 #else
 #define VCWD_ACCESS(pathname, mode) access(pathname, mode)
 #endif
 	FindClose(dp->handle);
  
 #define VCWD_REALPATH(path, real_path) tsrm_realpath(path, real_path TSRMLS_CC)
 	dp->offset = 0;
 	dp->finished = 0;
  
 #if HAVE_UTIME
 # ifdef TSRM_WIN32
 #  define VCWD_UTIME(path, time) win32_utime(path, time)
 # else
 #  define VCWD_UTIME(path, time) utime(path, time)
 # endif
 #endif
 	filespec = (char *)malloc(strlen(dp->dir) + 2 + 1);
 	if (filespec == NULL) {
 		return -1;
 	}
  
 #define VCWD_CHMOD(path, mode) chmod(path, mode)
 #if !defined(TSRM_WIN32) && !defined(NETWARE)
 #define VCWD_CHOWN(path, owner, group) chown(path, owner, group)
 #if HAVE_LCHOWN
 #define VCWD_LCHOWN(path, owner, group) lchown(path, owner, group)
 #endif
 #endif
 	strcpy(filespec, dp->dir);
 	index = strlen(filespec) - 1;
 	if (index >= 0 && (filespec[index] == '/' || 
 	   (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1])))))
 		filespec[index] = '\0';
 	strcat(filespec, "/*");
  
 #endif
 	//if ((handle = FindFirstFile(filespec, &(dp->fileinfo))) == INVALID_HANDLE_VALUE) {   // mod@yur
 	if ((handle = FindFirstFileWW2(filespec, &(dp->fileinfo))) == INVALID_HANDLE_VALUE) {  // add@yur
 		dp->finished = 1;
 	}
 	
 	dp->handle = handle;
 	free(filespec);
  
 #endif /* VIRTUAL_CWD_H */
 	return 0;
 }
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 10:01:29 2024 UTC