summaryrefslogtreecommitdiff
path: root/TSRM
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-04-151-3/+2
|\ | | | | | | | | * PHP-7.0: fix error handling
| * fix error handlingAnatol Belski2017-04-151-3/+2
| |
| * Update copyright headers to 2017Sammy Kaye Powers2017-01-044-4/+4
| |
* | Update copyright headers to 2017Sammy Kaye Powers2017-01-044-4/+4
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-10-291-3/+2
|\ \ | |/
| * Fixed build failure introduced by PR #2158Bob Weinand2016-10-291-3/+2
| | | | | | | | Note: AC_TRY_LINK interprets the source as part of a main function, ending up with int main() { /* ... */ int main() { /* ... */ } ; return 0; } here - Using AC_LINK_IFELSE with AC_LANG_SOURCE directly instead.
| * Merge branch 'pull-request/2158'Joe Watkins2016-10-171-28/+26
| |
* | Merge branch 'pull-request/2158'Joe Watkins2016-10-171-28/+26
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-08-291-0/+6
|\ \ | |/ | | | | | | * PHP-7.0: fix HANDLE leak
| * Merge branch 'PHP-5.6' into PHP-7.0Anatol Belski2016-08-291-0/+6
| |\ | | | | | | | | | | | | * PHP-5.6: fix HANDLE leak
| | * fix HANDLE leakAnatol Belski2016-08-291-0/+6
| | |
| | * backport relevant part from bug #72858 patch in 7.0Anatol Belski2016-08-251-2/+12
| | |
| | * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-014-4/+4
| | |
| | * bump yearXinchen Hui2015-01-154-4/+4
| | |
* | | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-08-181-4/+4
|\ \ \ | |/ / | | | | | | | | | * PHP-7.0: avoid other efforts if memory mapping fails
| * | avoid other efforts if memory mapping failsAnatol Belski2016-08-181-4/+4
| | |
* | | map ell the err codeAnatol Belski2016-08-181-4/+1
| | |
* | | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-08-181-0/+10
|\ \ \ | |/ / | | | | | | | | | * PHP-7.0: Fixed bug #72858 shm_attach null dereference
| * | Fixed bug #72858 shm_attach null dereferenceAnatol Belski2016-08-181-0/+10
| | |
* | | Fixed 7.1 build, decls first please!Kalle Sommer Nielsen2016-08-171-3/+2
| | |
* | | Fixed the UTF-8 and long path support in the streams on Windows.Anatol Belski2016-06-202-18/+79
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 https://msdn.microsoft.com/en-us/library/windows/desktop/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.
* | fix #71609: Segmentation fault on ZTS with gethostbynameJoe Watkins2016-03-312-1/+200
| |
* | Move semicolon into TSRMLS_CACHE_EXTERN/DEFINENikita Popov2016-03-032-3/+3
| | | | | | | | Also re bug #71575.
* | bump year which is missed in rev 49493a2Xinchen Hui2016-01-024-4/+4
| |
* | correct snprintf usageAnatol Belski2015-10-271-4/+2
| |
* | fix stack overflowAnatol Belski2015-10-101-2/+4
| |
* | don't leak handlesAnatol Belski2015-10-051-0/+6
| |
* | use correct function to close handlesAnatol Belski2015-10-051-2/+2
| |
* | unmap correct handleAnatol Belski2015-09-221-1/+1
| |
* | nullify the memory chunk to avoid crashes when freeing resourceAnatol Belski2015-09-221-0/+1
| |
* | check for NULL returnAnatol Belski2015-09-221-0/+5
| |
* | cleanup an atavismAnatol Belski2015-09-021-1/+1
| | | | | | | | no DOS support here )
* | TSRM_TLS should be usable in NTS buildAnatol Belski2015-08-171-0/+2
| |
* | add macro to access globals as wholeAnatol Belski2015-07-301-2/+4
| |
* | don't pass zero to malloc()Anatol Belski2015-03-101-1/+4
| |
* | improve debugability in TS debug buildsAnatol Belski2015-02-171-0/+4
| | | | | | | | | | | | | | | | gdb seems to be not always able to fetch the correct context for thread locals. Thus, the "if (TSRMLS_CACHE)" clause causes gdb to show crashes which aren't recognized neither with helgrind nor in release builds. This is reproducable by setting breakpoints on the exact line where PHP has a tsrm_get_ls_cache() call.
* | made ZEND_TSRMLS_CACHE_* macros look like function callsAnatol Belski2015-02-163-8/+8
| | | | | | | | which also comply with the current semantics for such macros
* | bump yearXinchen Hui2015-01-154-4/+4
| |
* | trailing whitespace removalStanislav Malyshev2015-01-104-12/+12
| |
* | missed include for intptr_t/uintptr_tAnatol Belski2014-12-221-0/+2
| |
* | use cleaner tsrm_intptr_t/tsrm_uintptr_t typedefAnatol Belski2014-12-221-7/+2
| |
* | fix zts build on mac/clangFerenc Kovacs2014-12-212-2/+2
| |
* | make the TSRM macros depend no the macroed cache nameAnatol Belski2014-12-161-4/+4
| |
* | removed the extra tsrm pointer passed to ctor/dtorAnatol Belski2014-12-162-9/+9
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-132-21/+18
| |
* | explicit passing of *tsrm_ls isn't needed anymoreAnatol Belski2014-12-122-4/+4
| |
* | TSRMLS_D should be void, thanks DmitryAnatol Belski2014-12-111-1/+1
| |
* | default tsrmls cache to NULLAnatol Belski2014-11-191-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into native-tlsAnatol Belski2014-11-182-14/+64
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: (398 commits) NEWS add test for bug #68381 Fixed bug #68381 Set FPM log level earlier during init proper dllexport move to size_t where zend_string is used internally fix some datatype mismatches return after the warning, to fix uninitialized salt usage fix datatype mismatches add missing type specifier fix datatype mismatches fix unsigned check "extern" shouldn't be used for definitions joined identical conditional blocks simplify fpm tests SEND_VAR_NO_REF optimization Add test for bug #68442 Add various tests for FPM - covering recent bugs (68420, 68421, 68423, 68428) - for UDS - for ping and status URI - for multi pool and multi mode Include small MIT FastCGI client library from https://github.com/adoy/PHP-FastCGI-Client Get rid of zend_free_op structure (use zval* instead). Get rid of useless TSRMLS arguments. Add new FPM test for IPv4/IPv6 ... Conflicts: win32/build/config.w32
| * | avoid repeated strlen usage, remove unused varsAnatol Belski2014-11-131-11/+10
| | |