summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-07-12 19:49:32 +0200
committerAnatol Belski <ab@php.net>2018-07-12 19:49:32 +0200
commit99fe18503ad61472ef8f4009a9234bfc2571d027 (patch)
treeffb378c46ebe5e95a320a4621df05b50d6d0e82e /win32
parent236ae06e0bee820ba0fb1d2fcd9160f279b48cae (diff)
downloadphp-git-99fe18503ad61472ef8f4009a9234bfc2571d027.tar.gz
Fixed RecursiveDirectoryIterator with long path or with edge case length
The search path needs to be appended with the wild card. Till now, an edge case existed, so then if a path is 259 bytes long, which is smaller _MAX_PATH, the suffix would cause the final search path to become longer than _MAX_PATH. It is an edge case, when the starting path happens to have a specific length. If the starting path was longer than _MAX_PATH or the addition of "\\*" would not exceed _MAX_PATH, the function was correct. Except for rewind, which was broken in the case of the long path.
Diffstat (limited to 'win32')
-rw-r--r--win32/readdir.c47
1 files changed, 38 insertions, 9 deletions
diff --git a/win32/readdir.c b/win32/readdir.c
index 4a6d65932f..07ae3da7bb 100644
--- a/win32/readdir.c
+++ b/win32/readdir.c
@@ -39,9 +39,9 @@ DIR *opendir(const char *dir)
DIR *dp;
wchar_t *filespecw, *resolvedw;
HANDLE handle;
- int index;
char resolved_path_buff[MAXPATHLEN];
- size_t resolvedw_len, filespecw_len;
+ size_t resolvedw_len, filespecw_len, index;
+ zend_bool might_need_prefix;
if (!VCWD_REALPATH(dir, resolved_path_buff)) {
return NULL;
@@ -58,7 +58,12 @@ DIR *opendir(const char *dir)
return NULL;
}
+ might_need_prefix = resolvedw_len >= 3 && PHP_WIN32_IOUTIL_IS_LETTERW(resolvedw[0]) && L':' == resolvedw[1] && PHP_WIN32_IOUTIL_IS_SLASHW(resolvedw[2]);
+
filespecw_len = resolvedw_len + 2;
+ if (filespecw_len >= _MAX_PATH && might_need_prefix) {
+ filespecw_len += PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW;
+ }
filespecw = (wchar_t *)malloc((filespecw_len + 1)*sizeof(wchar_t));
if (filespecw == NULL) {
free(dp);
@@ -66,8 +71,14 @@ DIR *opendir(const char *dir)
return NULL;
}
- wcscpy(filespecw, resolvedw);
- index = (int)filespecw_len - 1;
+ if (filespecw_len >= _MAX_PATH && might_need_prefix) {
+ wcscpy(filespecw, PHP_WIN32_IOUTIL_LONG_PATH_PREFIXW);
+ wcscpy(filespecw + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW, resolvedw);
+ index = resolvedw_len + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW - 1;
+ } else {
+ wcscpy(filespecw, resolvedw);
+ index = resolvedw_len - 1;
+ }
if (index >= 0 && filespecw[index] == L'/' || index == 0 && filespecw[index] == L'\\')
filespecw[index] = L'\0';
wcscat(filespecw, L"\\*");
@@ -186,24 +197,42 @@ int rewinddir(DIR *dp)
/* Re-set to the beginning */
wchar_t *filespecw;
HANDLE handle;
- int index;
+ size_t dirw_len, filespecw_len, index;
+ zend_bool might_need_prefix;
FindClose(dp->handle);
dp->offset = 0;
dp->finished = 0;
- filespecw = (wchar_t *)malloc((wcslen((wchar_t *)dp->dirw) + 2 + 1)*sizeof(wchar_t));
+ /* XXX save the dir len into the struct. */
+ dirw_len = wcslen((wchar_t *)dp->dirw);
+
+ might_need_prefix = dirw_len >= 3 && PHP_WIN32_IOUTIL_IS_LETTERW(dp->dirw[0]) && L':' == dp->dirw[1] && PHP_WIN32_IOUTIL_IS_SLASHW(dp->dirw[2]);
+
+ filespecw_len = dirw_len + 2;
+ if (filespecw_len >= _MAX_PATH && might_need_prefix) {
+ filespecw_len += PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW;
+ }
+
+ filespecw = (wchar_t *)malloc((filespecw_len + 1)*sizeof(wchar_t));
if (filespecw == NULL) {
return -1;
}
- wcscpy(filespecw, (wchar_t *)dp->dirw);
- index = (int)wcslen(filespecw) - 1;
+ if (filespecw_len >= _MAX_PATH && might_need_prefix) {
+ wcscpy(filespecw, PHP_WIN32_IOUTIL_LONG_PATH_PREFIXW);
+ wcscpy(filespecw + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW, dp->dirw);
+ index = dirw_len + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW - 1;
+ } else {
+ wcscpy(filespecw, dp->dirw);
+ index = dirw_len - 1;
+ }
+
if (index >= 0 && (filespecw[index] == L'/' ||
(filespecw[index] == L'\\' && index == 0)))
filespecw[index] = L'\0';
- wcscat(filespecw, L"/*");
+ wcscat(filespecw, L"\\*");
if ((handle = FindFirstFileW(filespecw, &(dp->fileinfo))) == INVALID_HANDLE_VALUE) {
dp->finished = 1;