php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #73625 large output in stderr -> freeze request
Submitted: 2016-11-30 11:06 UTC Modified: 2016-12-11 04:22 UTC
From: sailormax at inbox dot lv Assigned:
Status: No Feedback Package: Output Control
PHP Version: 7.1.0RC6 OS: Windows 10 x64
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: sailormax at inbox dot lv
New email:
PHP Version: OS:

 

 [2016-11-30 11:06 UTC] sailormax at inbox dot lv
Description:
------------
Steps:
1. exec via browser PHP 7.1 test script. (PHP work via nginx as php-cgi.exe)

Using WTServer (https://wtserver.wtriple.com/)
PHP VC14 x64 Non Thread Safe

Test script:
---------------
#!/usr/bin/env php
<?
	if (!defined("STDERR"))
		define("STDERR", fopen("php://stderr", "w"));

	for ($i=0; $i<256; $i++)
		fprintf(STDERR, "Missing some file\n");

	print "done.";
?>

Expected result:
----------------
#!/usr/bin/env php
done.

Actual result:
--------------
freeze on 227 iteration. 4k buffer overflow?

Plus if decrease count of iterations, string "#!/usr/bin/env php" sometimes output, sometimes not after each re-save the file.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-12-03 23:13 UTC] ab@php.net
-Status: Open +Status: Feedback
 [2016-12-03 23:13 UTC] ab@php.net
Thanks for the report. I'm not sure to understand the bug - do you run the php script from bash? Or is that run under FCGI under NGINX? Do you use the official PHP builds?

Thanks.
 [2016-12-05 11:42 UTC] sailormax at inbox dot lv
I run php script from browser.
PHP work via nginx.
browser -> nginx -> php-cgi.exe

PHP was taken from http://windows.php.net/download VC14 x64 Non Thread Safe
 [2016-12-11 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 13:01:30 2024 UTC