Edit report at https://bugs.php.net/bug.php?id=60038&edit=1

 ID:                 60038
 Patch added by:     larue...@php.net
 Reported by:        larue...@php.net
 Summary:            SIGALRM cause segfault in  php_error_cb
 Status:             Open
 Type:               Bug
 Package:            Scripting Engine problem
 PHP Version:        5.3.8
 Block user comment: N
 Private report:     N

 New Comment:

The following patch has been added/updated:

Patch Name: bug60038.patch
Revision:   1318324579
URL:        
https://bugs.php.net/patch-display.php?bug=60038&patch=bug60038.patch&revision=1318324579


Previous Comments:
------------------------------------------------------------------------
[2011-10-11 09:13:55] larue...@php.net

Description:
------------
in php_error_cb:

freeing PG(last_error_message) and PG(last_error_file) without blocking alarm 
signal.

so there is a chance that php will segfault when max_execution_time limit 
reachead.

since zend_signal was introduced in PHP 5.4,  so I think it's okey to add 
signal 
block mechanism for this codes.

Test script:
---------------
<?php
error_reporting(E_ALL|E_NOTICE);
set_time_limit(1);

while(1) {   
    $a = $arr['index_miss'];
}
?>

do following steps:
1. gdb php 
2. b php_error_cb
3. r "above script"
4. when breakpoint reach: 
   893                  if (PG(last_error_message)) {
   (gdb) 
   894                          free(PG(last_error_message));
5. signal SIGPROF
6. next (*n)
*** glibc detected *** double free or corruption (fasttop): 0x0000000001207ca0 
***

Expected result:
----------------
no segfault

Actual result:
--------------
segfault


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=60038&edit=1

Reply via email to