123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827 |
- /*
- +----------------------------------------------------------------------+
- | PHP Version 7 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2018 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. |
- +----------------------------------------------------------------------+
- | Author: Anatol Belski <ab@php.net> |
- +----------------------------------------------------------------------+
- */
- /* This file integrates several modified parts from the libuv project, which
- * is copyrighted to
- *
- * Copyright Joyent, Inc. and other Node contributors. All rights reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to
- * deal in the Software without restriction, including without limitation the
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- * sell copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- */
- #include <assert.h>
- #include <stdlib.h>
- #include <direct.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <io.h>
- #include <limits.h>
- #include <sys/stat.h>
- #include <sys/utime.h>
- #include <stdio.h>
- #include "php.h"
- #include "SAPI.h"
- #include "win32/winutil.h"
- #include "win32/time.h"
- #include "win32/ioutil.h"
- #include "win32/codepage.h"
- #include "main/streams/php_stream_plain_wrapper.h"
- #include <pathcch.h>
- /*
- #undef NONLS
- #undef _WINNLS_
- #include <winnls.h>
- */
- typedef HRESULT (__stdcall *MyPathCchCanonicalizeEx)(wchar_t *pszPathOut, size_t cchPathOut, const wchar_t *pszPathIn, unsigned long dwFlags);
- static MyPathCchCanonicalizeEx canonicalize_path_w = NULL;
- PW32IO BOOL php_win32_ioutil_posix_to_open_opts(int flags, mode_t mode, php_ioutil_open_opts *opts)
- {/*{{{*/
- int current_umask;
- opts->attributes = 0;
- /* Obtain the active umask. umask() never fails and returns the previous */
- /* umask. */
- current_umask = umask(0);
- umask(current_umask);
- /* convert flags and mode to CreateFile parameters */
- switch (flags & (_O_RDONLY | _O_WRONLY | _O_RDWR)) {
- case _O_RDONLY:
- opts->access = FILE_GENERIC_READ;
- /* XXX not opening dirs yet, see also at the bottom of this function. Should be evaluated properly. */
- /*opts->attributes |= FILE_FLAG_BACKUP_SEMANTICS;*/
- break;
- case _O_WRONLY:
- opts->access = FILE_GENERIC_WRITE;
- break;
- case _O_RDWR:
- opts->access = FILE_GENERIC_READ | FILE_GENERIC_WRITE;
- break;
- default:
- goto einval;
- }
- if (flags & _O_APPEND) {
- /* XXX this might look wrong, but i just leave it here. Disabling FILE_WRITE_DATA prevents the current truncate behaviors for files opened with "a". */
- /* access &= ~FILE_WRITE_DATA;*/
- opts->access |= FILE_APPEND_DATA;
- opts->attributes &= ~FILE_FLAG_BACKUP_SEMANTICS;
- }
- /*
- * Here is where we deviate significantly from what CRT's _open()
- * does. We indiscriminately use all the sharing modes, to match
- * UNIX semantics. In particular, this ensures that the file can
- * be deleted even whilst it's open.
- */
- opts->share = PHP_WIN32_IOUTIL_DEFAULT_SHARE_MODE;
- switch (flags & (_O_CREAT | _O_EXCL | _O_TRUNC)) {
- case 0:
- case _O_EXCL:
- opts->disposition = OPEN_EXISTING;
- break;
- case _O_CREAT:
- opts->disposition = OPEN_ALWAYS;
- break;
- case _O_CREAT | _O_EXCL:
- case _O_CREAT | _O_TRUNC | _O_EXCL:
- opts->disposition = CREATE_NEW;
- break;
- case _O_TRUNC:
- case _O_TRUNC | _O_EXCL:
- opts->disposition = TRUNCATE_EXISTING;
- break;
- case _O_CREAT | _O_TRUNC:
- opts->disposition = CREATE_ALWAYS;
- break;
- default:
- goto einval;
- }
- opts->attributes |= FILE_ATTRIBUTE_NORMAL;
- if (flags & _O_CREAT) {
- if (!((mode & ~current_umask) & _S_IWRITE)) {
- opts->attributes |= FILE_ATTRIBUTE_READONLY;
- }
- }
- if (flags & _O_TEMPORARY ) {
- opts->attributes |= FILE_FLAG_DELETE_ON_CLOSE | FILE_ATTRIBUTE_TEMPORARY;
- opts->access |= DELETE;
- }
- if (flags & _O_SHORT_LIVED) {
- opts->attributes |= FILE_ATTRIBUTE_TEMPORARY;
- }
- switch (flags & (_O_SEQUENTIAL | _O_RANDOM)) {
- case 0:
- break;
- case _O_SEQUENTIAL:
- opts->attributes |= FILE_FLAG_SEQUENTIAL_SCAN;
- break;
- case _O_RANDOM:
- opts->attributes |= FILE_FLAG_RANDOM_ACCESS;
- break;
- default:
- goto einval;
- }
- /* Very compat options */
- /*if (flags & O_ASYNC) {
- opts->attributes |= FILE_FLAG_OVERLAPPED;
- } else if (flags & O_SYNC) {
- opts->attributes &= ~FILE_FLAG_OVERLAPPED;
- }*/
- /* Setting this flag makes it possible to open a directory. */
- /* XXX not being done as this means a behavior change. Should be evaluated properly. */
- /* opts->attributes |= FILE_FLAG_BACKUP_SEMANTICS; */
- return 1;
- einval:
- _set_errno(EINVAL);
- return 0;
- }/*}}}*/
- PW32IO int php_win32_ioutil_open_w(const wchar_t *path, int flags, ...)
- {/*{{{*/
- php_ioutil_open_opts open_opts;
- HANDLE file;
- int fd;
- mode_t mode = 0;
- PHP_WIN32_IOUTIL_CHECK_PATH_W(path, -1, 0)
- if (flags & O_CREAT) {
- va_list arg;
- va_start(arg, flags);
- mode = (mode_t) va_arg(arg, int);
- va_end(arg);
- }
- if (!php_win32_ioutil_posix_to_open_opts(flags, mode, &open_opts)) {
- goto einval;
- }
- /* XXX care about security attributes here if needed, see tsrm_win32_access() */
- file = CreateFileW(path,
- open_opts.access,
- open_opts.share,
- NULL,
- open_opts.disposition,
- open_opts.attributes,
- NULL);
- if (file == INVALID_HANDLE_VALUE) {
- DWORD error = GetLastError();
- if (error == ERROR_FILE_EXISTS && (flags & _O_CREAT) &&
- !(flags & _O_EXCL)) {
- /* Special case: when ERROR_FILE_EXISTS happens and O_CREAT was */
- /* specified, it means the path referred to a directory. */
- _set_errno(EISDIR);
- } else {
- SET_ERRNO_FROM_WIN32_CODE(error);
- }
- return -1;
- }
- fd = _open_osfhandle((intptr_t) file, flags);
- if (fd < 0) {
- DWORD error = GetLastError();
- /* The only known failure mode for _open_osfhandle() is EMFILE, in which
- * case GetLastError() will return zero. However we'll try to handle other
- * errors as well, should they ever occur.
- */
- if (errno == EMFILE) {
- _set_errno(EMFILE);
- } else if (error != ERROR_SUCCESS) {
- SET_ERRNO_FROM_WIN32_CODE(error);
- }
- CloseHandle(file);
- return -1;
- }
- if (flags & _O_TEXT) {
- _setmode(fd, _O_TEXT);
- } else if (flags & _O_BINARY) {
- _setmode(fd, _O_BINARY);
- }
- return fd;
- einval:
- _set_errno(EINVAL);
- return -1;
- }/*}}}*/
- PW32IO int php_win32_ioutil_close(int fd)
- {/*{{{*/
- int result = -1;
- if (-1 == fd) {
- _set_errno(EBADF);
- return result;
- }
- if (fd > 2) {
- result = _close(fd);
- } else {
- result = 0;
- }
- /* _close doesn't set _doserrno on failure, but it does always set errno
- * to EBADF on failure.
- */
- if (result == -1) {
- _set_errno(EBADF);
- }
- return result;
- }/*}}}*/
- PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode)
- {/*{{{*/
- size_t path_len;
- const wchar_t *my_path;
- if (!path) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_INVALID_PARAMETER);
- return -1;
- }
- PHP_WIN32_IOUTIL_CHECK_PATH_W(path, -1, 0)
- path_len = wcslen(path);
- if (path_len < _MAX_PATH && path_len >= _MAX_PATH - 12) {
- /* Special case here. From the doc:
- "When using an API to create a directory, the specified path cannot be
- so long that you cannot append an 8.3 file name ..."
- Thus, if the directory name length happens to be in this range, it
- already needs to be a long path. The given path is already normalized
- and prepared, need only to prefix it.
- */
- wchar_t *tmp = (wchar_t *) malloc((path_len + 1) * sizeof(wchar_t));
- if (!tmp) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_NOT_ENOUGH_MEMORY);
- return -1;
- }
- memmove(tmp, path, (path_len + 1) * sizeof(wchar_t));
- if (PHP_WIN32_IOUTIL_NORM_FAIL == php_win32_ioutil_normalize_path_w(&tmp, path_len, &path_len)) {
- free(tmp);
- return -1;
- }
- if (!PHP_WIN32_IOUTIL_IS_LONG_PATHW(tmp, path_len)) {
- wchar_t *_tmp = (wchar_t *) malloc((path_len + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW + 1) * sizeof(wchar_t));
- wchar_t *src, *dst;
- if (!_tmp) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_NOT_ENOUGH_MEMORY);
- free(tmp);
- return -1;
- }
- memmove(_tmp, PHP_WIN32_IOUTIL_LONG_PATH_PREFIXW, PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW * sizeof(wchar_t));
- src = tmp;
- dst = _tmp + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW;
- while (src < tmp + path_len) {
- if (*src == PHP_WIN32_IOUTIL_FW_SLASHW) {
- *dst++ = PHP_WIN32_IOUTIL_DEFAULT_SLASHW;
- src++;
- } else {
- *dst++ = *src++;
- }
- }
- path_len += PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW;
- _tmp[path_len] = L'\0';
- free(tmp);
- tmp = _tmp;
- }
- my_path = tmp;
- } else {
- my_path = path;
- }
- if (!CreateDirectoryW(my_path, NULL)) {
- DWORD err = GetLastError();
- if (my_path != path) {
- free((void *)my_path);
- }
- SET_ERRNO_FROM_WIN32_CODE(err);
- return -1;
- }
- if (my_path != path) {
- free((void *)my_path);
- }
- return 0;
- }/*}}}*/
- PW32IO int php_win32_ioutil_unlink_w(const wchar_t *path)
- {/*{{{*/
- DWORD err = 0;
- HANDLE h;
- BY_HANDLE_FILE_INFORMATION info;
- FILE_DISPOSITION_INFO disposition;
- BOOL status;
- PHP_WIN32_IOUTIL_CHECK_PATH_W(path, -1, 0)
- h = CreateFileW(path,
- FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES | DELETE,
- PHP_WIN32_IOUTIL_DEFAULT_SHARE_MODE,
- NULL,
- OPEN_EXISTING,
- FILE_FLAG_OPEN_REPARSE_POINT | FILE_FLAG_BACKUP_SEMANTICS,
- NULL);
- if (INVALID_HANDLE_VALUE == h) {
- err = GetLastError();
- SET_ERRNO_FROM_WIN32_CODE(err);
- return -1;
- }
- if (!GetFileInformationByHandle(h, &info)) {
- err = GetLastError();
- CloseHandle(h);
- SET_ERRNO_FROM_WIN32_CODE(err);
- return -1;
- }
- if (info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
- /* TODO Handle possible reparse point. */
- CloseHandle(h);
- SET_ERRNO_FROM_WIN32_CODE(ERROR_DIRECTORY_NOT_SUPPORTED);
- return -1;
- }
- #if 0
- /* XXX BC breach! */
- if (info.dwFileAttributes & FILE_ATTRIBUTE_READONLY) {
- /* Remove read-only attribute */
- FILE_BASIC_INFO basic = { 0 };
- basic.FileAttributes = info.dwFileAttributes & ~(FILE_ATTRIBUTE_READONLY);
- status = SetFileInformationByHandle(h, FileBasicInfo, &basic, sizeof basic);
- if (!status) {
- err = GetLastError();
- SET_ERRNO_FROM_WIN32_CODE(err);
- CloseHandle(h);
- return -1;
- }
- }
- #endif
- /* Try to set the delete flag. */
- disposition.DeleteFile = TRUE;
- status = SetFileInformationByHandle(h, FileDispositionInfo, &disposition, sizeof disposition);
- if (!status) {
- err = GetLastError();
- CloseHandle(h);
- SET_ERRNO_FROM_WIN32_CODE(err);
- return -1;
- }
- CloseHandle(h);
- return 0;
- }/*}}}*/
- PW32IO int php_win32_ioutil_rmdir_w(const wchar_t *path)
- {/*{{{*/
- int ret = 0;
- PHP_WIN32_IOUTIL_CHECK_PATH_W(path, -1, 0)
- if (!RemoveDirectoryW(path)) {
- DWORD err = GetLastError();
- ret = -1;
- SET_ERRNO_FROM_WIN32_CODE(err);
- }
- return ret;
- }/*}}}*/
- PW32IO int php_win32_ioutil_chdir_w(const wchar_t *path)
- {/*{{{*/
- int ret = 0;
- if (!SetCurrentDirectoryW(path)) {
- DWORD err = GetLastError();
- ret = -1;
- SET_ERRNO_FROM_WIN32_CODE(err);
- }
- return ret;
- }/*}}}*/
- PW32IO int php_win32_ioutil_rename_w(const wchar_t *oldname, const wchar_t *newname)
- {/*{{{*/
- int ret = 0;
- PHP_WIN32_IOUTIL_CHECK_PATH_W(oldname, -1, 0)
- PHP_WIN32_IOUTIL_CHECK_PATH_W(newname, -1, 0)
- if (!MoveFileExW(oldname, newname, MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED)) {
- DWORD err = GetLastError();
- ret = -1;
- SET_ERRNO_FROM_WIN32_CODE(err);
- }
- return ret;
- }/*}}}*/
- PW32IO wchar_t *php_win32_ioutil_getcwd_w(wchar_t *buf, size_t len)
- {/*{{{*/
- DWORD err = 0;
- wchar_t *tmp_buf = NULL;
- DWORD tmp_len = (DWORD)len;
- /* If buf was NULL, the result has to be freed outside here. */
- if (!buf) {
- tmp_len = GetCurrentDirectoryW(0, NULL) + 1;
- if (!tmp_len) {
- err = GetLastError();
- SET_ERRNO_FROM_WIN32_CODE(err);
- return NULL;
- } else if (tmp_len > len) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_INSUFFICIENT_BUFFER);
- return NULL;
- }
- tmp_buf = (wchar_t *)malloc((tmp_len)*sizeof(wchar_t));
- if (!tmp_buf) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_NOT_ENOUGH_MEMORY);
- return NULL;
- }
- buf = tmp_buf;
- }
- if (!GetCurrentDirectoryW(tmp_len, buf)) {
- err = GetLastError();
- SET_ERRNO_FROM_WIN32_CODE(err);
- free(tmp_buf);
- return NULL;
- }
- return (wchar_t *)buf;
- }/*}}}*/
- /* based on zend_dirname(). */
- PW32IO size_t php_win32_ioutil_dirname(char *path, size_t len)
- {/*{{{*/
- char *ret = NULL, *start;
- size_t ret_len, len_adjust = 0, pathw_len;
- wchar_t *endw, *pathw, *startw;
- if (len == 0) {
- return 0;
- }
- start = path;
- /* Don't really care about the path normalization, pure parsing here. */
- startw = pathw = php_win32_cp_conv_any_to_w(path, len, &pathw_len);
- if (!pathw) {
- return 0;
- }
- endw = pathw + pathw_len - 1;
- if ((2 <= pathw_len) && iswalpha((wint_t)(pathw)[0]) && (L':' == pathw[1])) {
- pathw += 2;
- path += 2;
- len_adjust += 2;
- if (2 == len) {
- free(startw);
- return len;
- }
- }
- /* Strip trailing slashes */
- while (endw >= pathw && PHP_WIN32_IOUTIL_IS_SLASHW(*endw)) {
- endw--;
- }
- if (endw < pathw) {
- free(startw);
- /* The path only contained slashes */
- path[0] = PHP_WIN32_IOUTIL_DEFAULT_SLASH;
- path[1] = '\0';
- return 1 + len_adjust;
- }
- /* Strip filename */
- while (endw >= pathw && !PHP_WIN32_IOUTIL_IS_SLASHW(*endw)) {
- endw--;
- }
- if (endw < pathw) {
- free(startw);
- path[0] = '.';
- path[1] = '\0';
- return 1 + len_adjust;
- }
- /* Strip slashes which came before the file name */
- while (endw >= pathw && PHP_WIN32_IOUTIL_IS_SLASHW(*endw)) {
- endw--;
- }
- if (endw < pathw) {
- free(startw);
- path[0] = PHP_WIN32_IOUTIL_DEFAULT_SLASH;
- path[1] = '\0';
- return 1 + len_adjust;
- }
- *(endw+1) = L'\0';
- ret_len = (endw + 1 - startw);
- if (PHP_WIN32_IOUTIL_IS_LONG_PATHW(startw, ret_len)) {
- ret = php_win32_ioutil_conv_w_to_any(startw + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW, ret_len - PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW, &ret_len);
- } else {
- ret = php_win32_ioutil_conv_w_to_any(startw, ret_len, &ret_len);
- }
- memmove(start, ret, ret_len+1);
- assert(start[ret_len] == '\0');
- free(ret);
- free(startw);
- return ret_len;
- }/*}}}*/
- /* Partial normalization can still be acceptable, explicit fail has to be caught. */
- PW32IO php_win32_ioutil_normalization_result php_win32_ioutil_normalize_path_w(wchar_t **buf, size_t len, size_t *new_len)
- {/*{{{*/
- wchar_t *idx = *buf, canonicalw[MAXPATHLEN], _tmp[MAXPATHLEN], *pos = _tmp;
- size_t ret_len = len;
- if (len >= MAXPATHLEN) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_BAD_LENGTH);
- *new_len = 0;
- return PHP_WIN32_IOUTIL_NORM_FAIL;
- }
- for (; (size_t)(idx - *buf) <= len; idx++, pos++) {
- *pos = *idx;
- if (PHP_WIN32_IOUTIL_FW_SLASHW == *pos) {
- *pos = PHP_WIN32_IOUTIL_DEFAULT_SLASHW;
- }
- while (PHP_WIN32_IOUTIL_IS_SLASHW(*idx) && PHP_WIN32_IOUTIL_IS_SLASHW(*(idx+1))) {
- idx++;
- }
- }
- if (S_OK != canonicalize_path_w(canonicalw, MAXPATHLEN, _tmp, PATHCCH_ALLOW_LONG_PATHS)) {
- /* Length unchanged. */
- *new_len = len;
- return PHP_WIN32_IOUTIL_NORM_PARTIAL;
- }
- ret_len = wcslen(canonicalw);
- if (ret_len != len) {
- if (ret_len > len) {
- wchar_t *tmp = realloc(*buf, (ret_len + 1) * sizeof(wchar_t));
- if (!tmp) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_NOT_ENOUGH_MEMORY);
- /* Length unchanged. */
- *new_len = len;
- return PHP_WIN32_IOUTIL_NORM_PARTIAL;
- }
- *buf = tmp;
- }
- memmove(*buf, canonicalw, (ret_len + 1) * sizeof(wchar_t));
- }
- *new_len = ret_len;
- return PHP_WIN32_IOUTIL_NORM_OK;
- }/*}}}*/
- static HRESULT __stdcall MyPathCchCanonicalizeExFallback(wchar_t *pszPathOut, size_t cchPathOut, const wchar_t *pszPathIn, unsigned long dwFlags)
- {/*{{{*/
- return -42;
- }/*}}}*/
- BOOL php_win32_ioutil_init(void)
- {/*{{{*/
- HMODULE hMod = GetModuleHandle("api-ms-win-core-path-l1-1-0");
- if (hMod) {
- canonicalize_path_w = (MyPathCchCanonicalizeEx)GetProcAddress(hMod, "PathCchCanonicalizeEx");
- if (!canonicalize_path_w) {
- canonicalize_path_w = (MyPathCchCanonicalizeEx)MyPathCchCanonicalizeExFallback;
- }
- } else {
- canonicalize_path_w = (MyPathCchCanonicalizeEx)MyPathCchCanonicalizeExFallback;
- }
- return TRUE;
- }/*}}}*/
- PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode)
- {/*{{{*/
- DWORD attr;
- if ((mode & X_OK) == X_OK) {
- DWORD type;
- return GetBinaryTypeW(path, &type) ? 0 : -1;
- }
- attr = GetFileAttributesW(path);
- if (attr == INVALID_FILE_ATTRIBUTES) {
- DWORD 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;
- }/*}}}*/
- PW32IO FILE *php_win32_ioutil_fopen_w(const wchar_t *path, const wchar_t *mode)
- {/*{{{*/
- FILE *ret;
- char modea[16] = {0};
- int err = 0, fd, flags, i = 0;
- PHP_WIN32_IOUTIL_CHECK_PATH_W(path, NULL, 0)
- /* Using the converter from streams, char only. */
- while (i < sizeof(modea)-1 && mode[i]) {
- modea[i] = (char)mode[i];
- i++;
- }
- if (SUCCESS != php_stream_parse_fopen_modes(modea, &flags)) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_INVALID_PARAMETER);
- return NULL;
- }
- fd = php_win32_ioutil_open_w(path, flags, 0666);
- if (0 > fd) {
- err = GetLastError();
- SET_ERRNO_FROM_WIN32_CODE(err);
- return NULL;
- }
- ret = _wfdopen(fd, mode);
- if (!ret) {
- err = GetLastError();
- php_win32_ioutil_close(fd);
- SET_ERRNO_FROM_WIN32_CODE(err);
- return NULL;
- }
- return ret;
- }/*}}}*/
- static size_t php_win32_ioutil_realpath_h(HANDLE *h, wchar_t **resolved)
- {/*{{{*/
- wchar_t ret[PHP_WIN32_IOUTIL_MAXPATHLEN], *ret_real;
- DWORD ret_len, ret_real_len;
- ret_len = GetFinalPathNameByHandleW(h, ret, PHP_WIN32_IOUTIL_MAXPATHLEN-1, FILE_NAME_NORMALIZED | VOLUME_NAME_DOS);
- if (0 == ret_len) {
- DWORD err = GetLastError();
- SET_ERRNO_FROM_WIN32_CODE(err);
- return (size_t)-1;
- } else if (ret_len > PHP_WIN32_IOUTIL_MAXPATHLEN) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_INVALID_PARAMETER);
- return (size_t)-1;
- }
- if (NULL == *resolved) {
- /* ret is expected to be either NULL or a buffer of capable size. */
- *resolved = (wchar_t *) malloc((ret_len + 1)*sizeof(wchar_t));
- if (!*resolved) {
- SET_ERRNO_FROM_WIN32_CODE(ERROR_NOT_ENOUGH_MEMORY);
- return (size_t)-1;
- }
- }
- ret_real = ret;
- ret_real_len = ret_len;
- if (0 == wcsncmp(ret, PHP_WIN32_IOUTIL_UNC_PATH_PREFIXW, PHP_WIN32_IOUTIL_UNC_PATH_PREFIX_LENW)) {
- ret_real += (PHP_WIN32_IOUTIL_UNC_PATH_PREFIX_LENW - 2);
- ret_real[0] = L'\\';
- ret_real_len -= (PHP_WIN32_IOUTIL_UNC_PATH_PREFIX_LENW - 2);
- } else if (PHP_WIN32_IOUTIL_IS_LONG_PATHW(ret, ret_len)) {
- ret_real += PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW;
- ret_real_len -= PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW;
- }
- memmove(*resolved, ret_real, (ret_real_len+1)*sizeof(wchar_t));
- return ret_real_len;
- }/*}}}*/
- PW32IO wchar_t *php_win32_ioutil_realpath_w(const wchar_t *path, wchar_t *resolved)
- {/*{{{*/
- return php_win32_ioutil_realpath_w_ex0(path, resolved, NULL);
- }/*}}}*/
- PW32IO wchar_t *php_win32_ioutil_realpath_w_ex0(const wchar_t *path, wchar_t *resolved, PBY_HANDLE_FILE_INFORMATION info)
- {/*{{{*/
- HANDLE h;
- size_t ret_len;
- PHP_WIN32_IOUTIL_CHECK_PATH_W(path, NULL, 0)
- h = CreateFileW(path,
- 0,
- 0,
- NULL,
- OPEN_EXISTING,
- FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS,
- NULL);
- if (INVALID_HANDLE_VALUE == h) {
- DWORD err = GetLastError();
- SET_ERRNO_FROM_WIN32_CODE(err);
- return NULL;
- }
- ret_len = php_win32_ioutil_realpath_h(h, &resolved);
- if ((size_t)-1 == ret_len) {
- DWORD err = GetLastError();
- CloseHandle(h);
- SET_ERRNO_FROM_WIN32_CODE(err);
- return NULL;
- }
- if (NULL != info && !GetFileInformationByHandle(h, info)) {
- DWORD err = GetLastError();
- CloseHandle(h);
- SET_ERRNO_FROM_WIN32_CODE(err);
- return NULL;
- }
- CloseHandle(h);
- return resolved;
- }/*}}}*/
- PW32IO char *realpath(const char *path, char *resolved)
- {/*{{{*/
- return php_win32_ioutil_realpath(path, resolved);
- }/*}}}*/
- /*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- * vim600: sw=4 ts=4 fdm=marker
- * vim<600: sw=4 ts=4
- */
|