php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38779 Engine crash when "require" file with syntax error through stream wrapper
Submitted: 2006-09-11 11:17 UTC Modified: 2006-09-11 14:30 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:0 of 1 (0.0%)
From: alexander dot netkachev at gmail dot com Assigned: tony2001 (profile)
Status: Closed Package: Streams related
PHP Version: 5.1.6 OS: Windows XP SP2
Private report: No CVE-ID: None
 [2006-09-11 11:17 UTC] alexander dot netkachev at gmail dot com
Description:
------------
including or requiring a syntactically incorrect PHP file through stream wrapper generate uncatchable system exception - program crash.

Reproduce code:
---------------
class Loader {
	private $position;
	private $data;
	public function stream_open($path, $mode, $options, &$opened_path)  {
		$this->data = '<' . "?php \n\"\";ll l\n ?" . '>';
		$this->position = 0;
		return true;
	}
	function stream_read($count) {
		$ret = substr($this->data, $this->position, $count);
		$this->position += strlen($ret);
		return $ret;
	}
	function stream_eof() {
		return $this->position >= strlen($this->data);
	}
}
stream_wrapper_register('Loader', 'Loader');
require_once 'Loader://qqq.php';

Expected result:
----------------
Just the "Parse error", not the program crash.

Actual result:
--------------
System exception with the following description:
AppName: php.exe
AppVer: 5.1.6.6
ModName: php5ts.dll
ModVer: 5.1.6.6
Offset: 000ad9cf


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-09-11 14:30 UTC] tony2001@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 [2012-08-07 11:37 UTC] ab@php.net
Automatic comment from SVN on behalf of ab
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=327013
Log: fixed bug where apc requires url_stat to be implemented for userspace stream wrappers in require
related to bug #62502, bug #61398, bug #38779
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 06:01:30 2024 UTC