mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.4'
* PHP-8.4: Fix GH-16184: UBSan address overflowed in ext/pcre/php_pcre.c
This commit is contained in:
@@ -1754,8 +1754,10 @@ matched:
|
||||
}
|
||||
if (preg_get_backref(&walk, &backref)) {
|
||||
if (backref < count) {
|
||||
match_len = offsets[(backref<<1)+1] - offsets[backref<<1];
|
||||
walkbuf = zend_mempcpy(walkbuf, subject + offsets[backref << 1], match_len);
|
||||
if (offsets[backref<<1] < SIZE_MAX) {
|
||||
match_len = offsets[(backref<<1)+1] - offsets[backref<<1];
|
||||
walkbuf = zend_mempcpy(walkbuf, subject + offsets[backref << 1], match_len);
|
||||
}
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
13
ext/pcre/tests/gh16184.phpt
Normal file
13
ext/pcre/tests/gh16184.phpt
Normal file
@@ -0,0 +1,13 @@
|
||||
--TEST--
|
||||
GH-16184 (UBSan address overflowed in ext/pcre/php_pcre.c)
|
||||
--CREDITS--
|
||||
YuanchengJiang
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
$string = 'This is a string. It contains numbers (0*9) as well as parentheses and some other things!';
|
||||
echo preg_replace(array('/\b\w{1}s/', '/(\d{1})*(\d{1})/', '/[\(!\)]/'), array('test', '$1 to $2', '*'), $string), "\n";
|
||||
|
||||
?>
|
||||
--EXPECT--
|
||||
This test a string. It contains numbers * to 0* to 9* test well test parentheses and some other things*
|
||||
Reference in New Issue
Block a user