php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #71484 Error parsing alias on a block with a reference inside
Submitted: 2016-01-29 15:14 UTC Modified: 2016-06-04 19:19 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: jabi at irontec dot com Assigned: bd808 (profile)
Status: Closed Package: yaml (PECL)
PHP Version: 7.0.2 OS: Debian GNU/Linux 8
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.
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: jabi at irontec dot com
New email:
PHP Version: OS:

 

 [2016-01-29 15:14 UTC] jabi at irontec dot com
Description:
------------
We are getting a segmentation fault parsing some yaml.

Whenever using an alias on a referenced section, the parse breaks.

basic:
  - &external {value: 22 }
keylevel0:
  keylevel1:
    value: 1
  keylevel1.1:
    keylevel2: &strange
      value: 2
      <<: *external

If no alias "&strange" is used, it works fine.
If no reference "<<: *external" is used, it works fine too.


It works as expected on PHP 5.6.12 with yaml-1.2.0.

Test script:
---------------
--TEST--
Test PECL strange alias bug
--SKIPIF--
<?php if(!extension_loaded('yaml')) die('skip yaml n/a'); ?>
--FILE--
<?php

$yaml_code = <<<YAML
basic:
  - &external {value: 22 }
keylevel0:
  keylevel1:
    value: 1
  keylevel1.1:
    keylevel2: &strange
      value: 2
      <<: *external
YAML;
var_dump(yaml_parse($yaml_code));
?>
--EXPECT--
array(2) {
  ["basic"]=>
  array(1) {
    [0]=>
    array(1) {
      ["value"]=>
      int(22)
    }
  }
  ["keylevel0"]=>
  array(2) {
    ["keylevel1"]=>
    array(1) {
      ["value"]=>
      int(1)
    }
    ["keylevel1.1"]=>
    array(1) {
      ["keylevel2"]=>
      array(1) {
        ["value"]=>
        int(2)
      }
    }
  }
}



Patches

Add a Patch

Pull Requests

Pull requests:

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-06-04 17:49 UTC] bd808@php.net
-Assigned To: +Assigned To: bd808
 [2016-06-04 19:19 UTC] bd808@php.net
-Status: Assigned +Status: Closed
 [2016-06-04 19:19 UTC] bd808@php.net
Fixed in the php7 branch thanks to the PR submitted by jabi
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 14:01:28 2024 UTC