php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #65182 Segmentation Fault by acces to class var in persitant mode
Submitted: 2013-07-02 10:24 UTC Modified: 2020-12-06 04:22 UTC
Votes:10
Avg. Score:4.6 ± 0.7
Reproduced:9 of 9 (100.0%)
Same Version:7 (77.8%)
Same OS:8 (88.9%)
From: radtke at hd-system dot de Assigned:
Status: No Feedback Package: PDO MySQL
PHP Version: 5.5.0 OS: Ubuntu 12.04
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: radtke at hd-system dot de
New email:
PHP Version: OS:

 

 [2013-07-02 10:24 UTC] radtke at hd-system dot de
Description:
------------
create a class which extends the pdo class f.e. "extPDO"
use the persistant mode 
declare a class var f.e. "$sf"
create more then 1 object of the extPDO class and
take access to the class var "$sf"
causes a segmentation fault

no seg fault if:

1. you are NOT in persistant mode
2. you just create 1 instance of the class
2. you don't declare the class var; just set it in the constructor and take access to it

Noticed by accessing two different databases in a loop.

Test script:
---------------
class extPDO extends PDO
{
 public $sf;
 public function  __construct($db_name, $host, $username, $passwd)
 {
  $dsn = 'mysql:dbname='.$db_name.';host='.$host;
  $this->sf = '42';
  $options = array(PDO::ATTR_PERSISTENT => true);
  parent::__construct($dsn, $username, $passwd, $options);
  $this->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  $this->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
 }
}

function testExtPDO()
{
 for($i = 1; $i <= 2; $i++){
  try{
   $pdo_obj = new extPDO('csp2_mycms', 'csp2-db.pille.hds', 'root', '');
   $sql = 'SELECT user_id FROM user';
   $pdo_st = $pdo_obj->query($sql);
    if($row = $pdo_st->fetch(PDO::FETCH_ASSOC))
     echo $i.'.sf:'. $pdo_obj->sf."<br>";
  }
  catch(Exception $e){
   echo 'Exception: '.$e->getMessage().'<br>';
  }
 }
}
testExtPDO();

Expected result:
----------------
no segmentation fault

Actual result:
--------------
segmentation fault

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-07-03 03:45 UTC] laruence@php.net
-Status: Open +Status: Verified
 [2013-07-03 03:45 UTC] laruence@php.net
I can reproduce, will look into it later
 [2013-09-20 09:54 UTC] radtke at hd-system dot de
What's the status of this bug? It's pretty bad to use non persistant mode in multi tier scenarios on enterprise environments.
 [2014-01-01 12:30 UTC] felipe@php.net
-Package: PDO related +Package: PDO MySQL
 [2020-11-26 13:57 UTC] nikic@php.net
-Status: Verified +Status: Feedback
 [2020-11-26 13:57 UTC] nikic@php.net
I can't reproduce this, at least not on 7.3 upwards. If someone is still seeing this issue, please tell me.
 [2020-12-06 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: Tue Mar 19 06:01:30 2024 UTC