php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #73249 <visibility error> for Exception __construct
Submitted: 2016-10-05 05:32 UTC Modified: 2016-10-26 15:05 UTC
From: remi@php.net Assigned: rjs (profile)
Status: Closed Package: *PDF functions
PHP Version: 7.0.11 OS: irrevelant
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
31 - 3 = ?
Subscribe to this entry?

 
 [2016-10-05 05:32 UTC] remi@php.net
Description:
------------
Reflection of some extension start reporting <visibility error>

Example:
 Class [ <internal:couchbase> class CouchbaseException extends Exception implements Throwable ] {
Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] {

Reported as https://issues.couchbase.com/browse/PCBC-437

But this class simply extends core Exception.



Test script:
---------------
 zend_class_entry cbe;
 INIT_CLASS_ENTRY(cbe, "CouchbaseException", NULL);
 cb_exception_ce = zap_zend_register_internal_class_ex(&cbe, zend_exception_get_default());


Expected result:
----------------
Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

Actual result:
--------------
Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] {

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-10-05 05:35 UTC] remi@php.net
Various extensions are affected:
- couchbase
- leveldb
- mongo
- pdflib
- protocolbuffers
- stomp
- strict
- varnish
- xmldiff
- yaf
- yar
- zmq
...
 [2016-10-05 06:58 UTC] remi@php.net
-Package: *General Issues +Package: *PDF functions
 [2016-10-05 06:58 UTC] remi@php.net
Reaffecting to PDF as the error only appear when this extension is installed

With pdf => issue

$ php -n -d extension=pdf.so -d extension=json.so -d extension=couchbase.so  --re couchbase  | grep __cons
        Method [ <internal:Core, inherits Exception, ctor> <visibility error> method __construct ] {

Without pdf => no issue

$ php -n -d extension=json.so -d extension=couchbase.so  --re couchbase  | grep __cons
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {
 [2016-10-05 08:20 UTC] cmb@php.net
-Status: Open +Status: Verified -Assigned To: +Assigned To: rjs
 [2016-10-05 08:20 UTC] cmb@php.net
The problem is the following code in pdf.c:

    pdflib_exception_class->constructor->common.fn_flags
        |= ZEND_ACC_PROTECTED;

This has two issues:

  * just adding the protected flags without removing the public
    flag creates an unexpected bitmask, because the visibility
    flags are supposed to be exclusive

  * this changes the flags of the inherited class[1]

Rainer, please have a look at this issue.

[1] <https://github.com/php/php-src/commit/a783891e>
 [2016-10-20 19:45 UTC] rjs@php.net
I'm not totally sure, but I think I was inspired by this code when I implemented this some years ago:

https://github.com/php/php-gtk-src/blob/master/main/phpg_exceptions.c

I understand that this seems to be wrong and I will fix it. cmb@php.net, do you have a source for (good) documentation/examples on how to do that stuff right, so that I can check the rest of the implementation.
 [2016-10-21 14:57 UTC] cmb@php.net
I'm afraid there is not much documentation available (and I
wouldn't be able to write some). Maybe Julian's blog post about
exceptions is a bit helpful:
<http://jpauli.github.io/2015/04/09/exceptional-php.html>.
 [2016-10-26 14:58 UTC] rjs@php.net
Automatic comment from SVN on behalf of rjs
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=340718
Log: fix bug#73249 and improve php7 wrapper (fixed a crash when extending the PDFlib Class)
 [2016-10-26 15:05 UTC] rjs@php.net
-Status: Verified +Status: Closed
 [2016-10-26 15:05 UTC] rjs@php.net
The fix for this bug has been committed.

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/.

 For Windows:

http://windows.php.net/snapshots/
 
Thank you for the report, and for helping us make PHP better.

This is fixed in the new PECL package 4.0.1 and will be fixed in the next offical PDFlib Version.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 01:01:28 2024 UTC