Bug #60837 [Fbk->Opn]: Segmentation fail, if use trait

2012-01-23 Thread piphon at gmail dot com
Edit report at https://bugs.php.net/bug.php?id=60837&edit=1

 ID: 60837
 User updated by:piphon at gmail dot com
 Reported by:piphon at gmail dot com
 Summary:Segmentation fail, if use trait
-Status: Feedback
+Status: Open
 Type:   Bug
 Package:Reproducible crash
 Operating System:   Ubuntu 11.10 64bit
 PHP Version:5.4SVN-2012-01-22 (SVN)
 Block user comment: N
 Private report: N

 New Comment:

Snapshot PHP 5.4.0RC7-dev (cli) (built: Jan 24 2012 11:49:24) worked.

Sorry, can't try SVN branch 
(https://svn.php.net/repository/php/php-src/branches/PHP_5_4@322646). Could not 
compile sources for test issue. Modules (pdo, pdo_mysql) not compiled as static 
libraries (multiple definition of `get_module') or pdo_mysql not linked as 
shared library (mysqlnd_debug_std_no_trace_funcs not found). And debugging and 
normal. I'll try again.


Previous Comments:

[2012-01-24 05:32:44] larue...@php.net

Please try using this snapshot:

  http://snaps.php.net/php5.4-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/

could you plz also try with 5.4 branch head? thanks very much :)


[2012-01-24 04:27:25] piphon at gmail dot com

PHP 5.5.0-dev (cli) from https://svn.php.net/repository/php/php-src/trunk  
worked.


[2012-01-24 03:00:37] larue...@php.net

piphon,  can you verify that whether this issues still existing in svn head now?
I am doubt that this issues was fixed by dmitry in http://svn.php.net/viewvc?
view=revision&revision=322495


[2012-01-23 08:51:35] piphon at gmail dot com

> What exactly did you do with the reflection API? Perhaps, there was something 
going wrong? At least it should not mess up the function tables.

Unknown. Reflection used only by Doctrine Annotations driver. However in older 
code, I'm used static method in trait, which stored in value static property.

P.S. Mystery...


[2012-01-23 08:43:32] g...@php.net

The stack trace you provided points at a corrupted function table, I would say.
That might still be something different than the comment bug.

What exactly did you do with the reflection API? Perhaps, there was something 
going wrong? At least it should not mess up the function tables.




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

https://bugs.php.net/bug.php?id=60837


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


Bug #60837 [Fbk->Opn]: Segmentation fail, if use trait

2012-01-23 Thread piphon at gmail dot com
Edit report at https://bugs.php.net/bug.php?id=60837&edit=1

 ID: 60837
 User updated by:piphon at gmail dot com
 Reported by:piphon at gmail dot com
 Summary:Segmentation fail, if use trait
-Status: Feedback
+Status: Open
 Type:   Bug
 Package:Reproducible crash
 Operating System:   Ubuntu 11.10 64bit
 PHP Version:5.4SVN-2012-01-22 (SVN)
 Block user comment: N
 Private report: N

 New Comment:

PHP 5.5.0-dev (cli) from https://svn.php.net/repository/php/php-src/trunk  
worked.


Previous Comments:

[2012-01-24 03:00:37] larue...@php.net

piphon,  can you verify that whether this issues still existing in svn head now?
I am doubt that this issues was fixed by dmitry in http://svn.php.net/viewvc?
view=revision&revision=322495


[2012-01-23 08:51:35] piphon at gmail dot com

> What exactly did you do with the reflection API? Perhaps, there was something 
going wrong? At least it should not mess up the function tables.

Unknown. Reflection used only by Doctrine Annotations driver. However in older 
code, I'm used static method in trait, which stored in value static property.

P.S. Mystery...


[2012-01-23 08:43:32] g...@php.net

The stack trace you provided points at a corrupted function table, I would say.
That might still be something different than the comment bug.

What exactly did you do with the reflection API? Perhaps, there was something 
going wrong? At least it should not mess up the function tables.


[2012-01-23 08:41:44] larue...@php.net

maybe dmitry's fix has also fixed this problem: http://svn.php.net/viewvc?
view=revision&revision=322495


[2012-01-23 08:38:19] piphon at gmail dot com

In Zend/zend_comile.c changed behavior of traits. Perhaps this is corrected 
bug. My original point of view (when I first met this bug): a mistake in 
reflection for classes that used traits). I removed comment in trait and all 
successful worked (RC1 or 2, i don't remember).




The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at

https://bugs.php.net/bug.php?id=60837


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


Bug #60837 [Fbk->Opn]: Segmentation fail, if use trait

2012-01-22 Thread piphon at gmail dot com
Edit report at https://bugs.php.net/bug.php?id=60837&edit=1

 ID: 60837
 User updated by:piphon at gmail dot com
 Reported by:piphon at gmail dot com
 Summary:Segmentation fail, if use trait
-Status: Feedback
+Status: Open
 Type:   Bug
 Package:Reproducible crash
 Operating System:   Ubuntu 11.10 64bit
 PHP Version:5.4SVN-2012-01-22 (SVN)
 Block user comment: N
 Private report: N

 New Comment:

> Do you have a reproduce code by any chance?

Yes. Finally recreated it.

Small example with dependencies (zf, doctrine, e.t.c) on github.com: 
g...@github.com:alurin/zend-bug.git

Files:
  - Example/IdentityTrait.php - trait, add id field
  - Example/Temp.php - entity, used IdentityTrait
  - library/ - vendors libraries (submodules)
  - bootstrap.php - setup doctrine
  - script.php - Console interface for doctrine (if update or create data 
scheme).
  - index.php  - Test example

$ php script.php orm:schema-tool:create
ATTENTION: This operation should not be executed in a production environment.

Creating database schema...
Database schema created successfully!
Segmentation fail (core dumped)

$ php index.php
zend_mm_heap corrupted


All code in two files

index.php
-
 array(
'namespaces' => array(
'Zend'  => PATH_TO_VENDORS . 
'/zf2/library/Zend',
'Doctrine\ORM'  => PATH_TO_VENDORS . 
'/doctrine2/lib/Doctrine/ORM',
'Doctrine\Common'   => PATH_TO_VENDORS . 
'/doctrine2-common/lib/Doctrine/Common',
'Doctrine\DBAL' => PATH_TO_VENDORS . 
'/doctrine2-dbal/lib/Doctrine/DBAL',
'Symfony\Component\Console' => PATH_TO_VENDORS . 
'/symfony-console',
'Symfony\Component\Yaml'=> PATH_TO_VENDORS . 
'/symfony-yaml',
)
)
)
);

function create_doctrine() {
$cache = new \Doctrine\Common\Cache\ArrayCache;

$config = new Configuration;
$config->setMetadataCacheImpl($cache);
$driverImpl = $config->newDefaultAnnotationDriver(__DIR__ . '/Example');
$config->setMetadataDriverImpl($driverImpl);
$config->setQueryCacheImpl($cache);
$config->setProxyDir('/path/to/myproject/lib/MyProject/Proxies');
$config->setProxyNamespace('MyProject\Proxies');
$config->setAutoGenerateProxyClasses(false);

$connectionOptions = array(
'driver'   => 'pdo_mysql',/* Your DB driver here   */
'host' => 'localhost',/* Your DB host here */
'user' => 'php_bug',  /* Your DB user here */
'password' => 'A8haaWUH7wxjhfrn', /* Your DB user password */
'dbname'   => 'php_bug',  /* Your DB name here */
'driverOptions' => array(
1002 => "SET NAMES 'UTF8'"
),
);

$em = EntityManager::create($connectionOptions, $config);
return $em;
}

$main = function() {
$em = create_doctrine();

include 'full-compounds.php';
$temp = new Example\Temp();
$em->persist($temp);
$em->flush();

$repo = $em->getRepository('Example\Temp');
$temp = $repo->find(1);
$temp->events()->attach('init', function() {
echo "Init\n";
});
};

call_user_func_array($main, array());

full-compunds.php
-
id;
}
}


/**
 * Модель описывающая статическую страницу 
сайта
 *
 * @Entity
 */
class Temp {
use IdentityTrait;
use ProvidesEvents;
}


Previous Comments:

[2012-01-22 11:40:40] g...@php.net

zend_opcode.c:295 is zend_hash_destroy(&ce->function_table);

I don't see why the function table would be problematic, but I will try to look 
into it today.


[2012-01-22 09:57:41] paj...@php.net

Do you have a reproduce code by any chance?


[2012-01-22 08:34:45] piphon at gmail dot com

Description:

Hello.

>From first build (RC1), on my computer PHP 5.4 (all RC and last SVN version) 
>mysteriously crushed on clean up phase, if used trait. It not reproduces with 
>small scripts, only if application has all havy libraries: Doctrine2, Zend 
>Framework 2 and many others.

It not serious error, if use application from console of open page in Firefox, 
but Chrome often interrupts drawing of content.

Traits has attributes, abstract or static methods.

Actual result:
--
Valgrind output:


==18829== Invalid read of size 8
==18829==at 0x7622E9: zend_mm_remove_from_free_list (zend_alloc.c:811)
==18829==by 0x7624FD: _zend_mm_free_int (zend_alloc.c:2106)
==18829==by 0x79693D: zend_hash_destroy (zend_hash.c:565)
==18829==by 0x77F11B: destroy_zend_class (zend_opcode.c:295)
==18829==by 0x79530