php-src/ext
Anatol Belski 3d3f11ede4 Fixed the UTF-8 and long path support in the streams on Windows.
Since long the default PHP charset is UTF-8, however the Windows part is
out of step with this important point. The current implementation in PHP
doesn't technically permit to handle UTF-8 filepath and several other
things. Till now, only the ANSI compatible APIs are being used. Here is more
about it

dd317752%28v=vs.85%29.aspx

The patch fixes not only issues with multibyte filenames under
incompatible codepages, but indirectly also issues with some other multibyte
encodings like BIG5, Shift-JIS, etc. by providing a clean way to access
filenames in UTF-8. Below is a small list of issues from the bug tracker,
that are getting fixed:

https://bugs.php.net/63401
https://bugs.php.net/41199
https://bugs.php.net/50203
https://bugs.php.net/71509
https://bugs.php.net/64699
https://bugs.php.net/64506
https://bugs.php.net/30195
https://bugs.php.net/65358
https://bugs.php.net/61315
https://bugs.php.net/70943
https://bugs.php.net/70903
https://bugs.php.net/63593
https://bugs.php.net/54977
https://bugs.php.net/54028
https://bugs.php.net/43148
https://bugs.php.net/30730
https://bugs.php.net/33350
https://bugs.php.net/35300
https://bugs.php.net/46990
https://bugs.php.net/61309
https://bugs.php.net/69333
https://bugs.php.net/45517
https://bugs.php.net/70551
https://bugs.php.net/50197
https://bugs.php.net/72200
https://bugs.php.net/37672

Yet more related tickets can for sure be found - on bugs.php.net, Stackoverflow
and Github. Some of the bugs are pretty recent, some descend to early
2000th, but  the user comments in there last even till today. Just for example,
bug #30195 was opened in 2004, the latest comment in there was made in 2014. It
is certain, that these bugs descend not only to pure PHP use cases, but get also
redirected from the popular PHP based projects. Given the modern systems (and
those supported by PHP) are always based on NTFS, there is no excuse to keep
these issues unresolved.

The internalization approach on Windows is in many ways different from
UNIX and Linux, while it supports and is based on Unicode. It depends on the
current system code page, APIs used and exact kind how the binary was compiled
The locale doesn't affect the way Unicode or ANSI API work. PHP in particular
is being compiled without _UNICODE defined and this is conditioned by the
way we handle strings. Here is more about it

https://msdn.microsoft.com/en-us/library/tsbaswba.aspx

However, with any system code page ANSI functions automatically convert
paths to UTF-16. Paths in some encodings incompatible with the
current system code page, won't work correctly with ANSI APIs. PHP
till now only uses the ANSI Windows APIs.

For example, on a system with the current code page 1252, the paths
in cp1252 are supported and transparently converted to UTF-16 by the
ANSI functions. Once one wants to handle a filepath encoded with cp932 on
that particular system, an ANSI or a POSIX compatible function used in
PHP will produce an erroneous result. When trying to convert that cp932 path
to UTF-8 and passing to the ANSI functions, an ANSI function would
likely interpret the UTF-8 string as some string in the current code page and
create a filepath that represents every single byte of the UTF-8 string.
These behaviors are not only broken but also disregard the documented
INI settings.

This patch solves the issies with the multibyte paths on Windows by
intelligently enforcing the usage of the Unicode aware APIs. For
functions expect Unicode (fe CreateFileW, FindFirstFileW, etc.), arguments
will be converted to UTF-16 wide chars. For functions returning Unicode
aware data (fe GetCurrentDirectoryW, etc.), resulting wide string is
converted back to char's depending on the current PHP charset settings,
either to the current ANSI codepage (this is the behavior prior to this patch)
or to UTF-8 (the default behavior).

In a particular case, users might have to explicitly set
internal_encoding or default_charset, if filenames in ANSI codepage are
necessary. Current tests show no regressions and witness that this will be an
exotic case, the current default UTF-8 encoding is compatible with any
supported system. The dependency libraries are long switching to Unicode APIs,
so some tests were also added for extensions not directly related to streams.
At large, the patch brings over 150 related tests into the core. Those target
and was run on various environments with European, Asian, etc. codepages.
General PHP frameworks was tested and showed no regressions.

The impact on the current C code base is low, the most places affected
are the Windows only places in the three files tsrm_win32.c, zend_virtual_cwd.c
and plain_wrapper.c. The actual implementation of the most of the wide
char supporting functionality is in win32/ioutil.* and win32/codepage.*,
several  low level functionsare extended in place to avoid reimplementation for
now. No performance impact was sighted. As previously mentioned, the ANSI APIs
used prior the patch perform Unicode conversions internally. Using the
Unicode  APIs directly while doing custom conversions just retains the status
quo. The ways to optimize it are open (fe. by implementing caching for the
strings converted to wide variants).

The long path implementation is user transparent. If a path exceeds the
length of _MAX_PATH, it'll be automatically prefixed with \\?\. The MAXPATHLEN
is set to 2048 bytes.

Appreciation to Pierre Joye, Matt Ficken, @algo13 and others for tips, ideas
and testing.

Thanks.
2016-06-20 12:45:39 +02:00
..
bcmath Merge branch 'PHP-5.6' into PHP-7.0 2016-04-27 13:19:29 +02:00
bz2 Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
calendar
com_dotnet Move semicolon into TSRMLS_CACHE_EXTERN/DEFINE 2016-03-03 16:50:01 +01:00
ctype
curl Added test 2016-06-07 14:08:12 +03:00
date Fixed expected test outcome due to rule changes 2016-06-15 18:31:41 +01:00
dba Fixed bug #72157 (use-after-free caused by dba_open) 2016-05-05 11:12:17 +08:00
dom Removed "zend_fcall_info.function_table". It was assigned in many places, but is never used. 2016-04-27 13:46:38 +03:00
enchant
exif Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
fileinfo Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
filter Move semicolon into TSRMLS_CACHE_EXTERN/DEFINE 2016-03-03 16:50:01 +01:00
ftp
gd Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
gettext
gmp fix build 2016-04-26 23:04:29 -07:00
hash Implement FIPS 180-4 algos: sha512/256 and sha512/224 2016-05-14 04:39:39 +00:00
iconv Add negative offset support to iconv_strpos() 2016-03-09 14:41:38 +01:00
imap remove unused vars 2016-03-01 10:52:49 +01:00
interbase fix test portability 2016-06-17 09:05:27 +02:00
intl Merge branch 'PHP-7.0' 2016-06-17 16:00:04 +08:00
json Add php_json_yyparse for direct use in json ext 2016-05-11 21:11:47 +01:00
ldap fix SKIPIF sections 2016-03-09 14:28:38 +01:00
libxml Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
mbstring Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
mcrypt Merge branch 'PHP-7.0' 2016-03-03 16:50:47 +01:00
mysqli Implemented RFC: Replace "Missing argument" warning with "Too few arguments" exception 2016-06-16 02:32:02 +03:00
mysqlnd Fix compiler warnings in mysqlnd 2016-04-03 02:27:25 +02:00
oci8 Merge branch 'PHP-7.0' 2016-04-18 11:16:35 +10:00
odbc Merge branch 'PHP-5.6' into PHP-7.0 2016-03-17 13:42:34 +01:00
opcache Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
openssl Merge branch 'openssl_error_store' into openssl_aead 2016-06-19 17:36:57 +01:00
pcntl Fixed bug #72154 (pcntl_wait/pcntl_waitpid array internal structure overwrite) 2016-05-05 15:18:17 +08:00
pcre upgraded to PCRE 8.39 2016-06-19 20:38:31 +02:00
pdo - get rid of EG(scope). zend_get_executed_scope() should be used instead. 2016-04-28 04:13:34 +03:00
pdo_dblib Merge branch 'PHP-7.0' 2016-04-06 14:45:35 +02:00
pdo_firebird fix test portability 2016-06-17 17:09:42 +02:00
pdo_mysql Merge branch 'PHP-7.0' 2016-03-03 16:50:47 +01:00
pdo_oci Ensure an ORDER BY gets the expected row order 2016-05-02 16:08:48 +10:00
pdo_odbc Fix ODBC bug for varchars returning with length zero 2016-06-02 12:04:10 +02:00
pdo_pgsql Merge branch 'PHP-7.0' 2016-06-01 11:57:00 +02:00
pdo_sqlite Merge branch 'PHP-7.0' 2016-05-01 19:27:13 +02:00
pgsql fix test portability 2016-06-17 17:09:42 +02:00
phar Fixed bug #71331 - Uninitialized pointer in phar_make_dirstream() 2016-04-28 20:57:44 +03:00
posix Fix posix build 2016-05-01 13:07:01 +02:00
pspell
readline Merge branch 'PHP-7.0' 2016-04-29 10:20:27 +01:00
recode
reflection Implemented RFC: Replace "Missing argument" warning with "Too few arguments" exception 2016-06-16 02:32:02 +03:00
session Merge branch 'PHP-7.0' 2016-06-09 15:45:54 +02:00
shmop Merge branch 'PHP-7.0' 2016-03-30 10:01:07 +02:00
simplexml Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
skeleton Move semicolon into TSRMLS_CACHE_EXTERN/DEFINE 2016-03-03 16:50:01 +01:00
snmp Merge branch 'PHP-7.0' 2016-03-29 11:27:39 +02:00
soap Implemented RFC: Replace "Missing argument" warning with "Too few arguments" exception 2016-06-16 02:32:02 +03:00
sockets Implement socket_export_stream() 2016-05-02 17:08:15 +02:00
spl Merge branch 'PHP-7.0' 2016-04-29 12:24:13 +03:00
sqlite3 Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
standard Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
sysvmsg
sysvsem
sysvshm
tidy Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
tokenizer
wddx - get rid of EG(scope). zend_get_executed_scope() should be used instead. 2016-04-28 04:13:34 +03:00
xml Unused var 2016-06-14 21:29:02 +08:00
xmlreader Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
xmlrpc fix test portability 2016-05-31 18:42:40 +02:00
xmlwriter Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
xsl Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
zip Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
zlib Fixed the UTF-8 and long path support in the streams on Windows. 2016-06-20 12:45:39 +02:00
ext_skel
ext_skel_win32.php