[php-src] master: Merge branch 'PHP-8.4' into PHP-8.5
Ilia Alshanetsky <[email protected]> Mon, 20 Jul 2026 17:16:17 +0000
| Newsgroups | gmane.comp.php.cvs.general |
|---|---|
| Message-ID | <[email protected]> |
Author: Ilia Alshanetsky (iliaal)
Date: 2026-07-20T13:09:23-04:00
Commit: https://github.com/php/php-src/commit/ed1a6d4fdde6e2b43314fdb6361bb42d9dee709b
Raw diff: https://github.com/php/php-src/commit/ed1a6d4fdde6e2b43314fdb6361bb42d9dee709b.diff
Merge branch 'PHP-8.4' into PHP-8.5
* PHP-8.4:
Fix GH-22825: DOM attribute methods on a DTD default attribute
Changed paths:
A ext/dom/tests/gh22825.phpt
M NEWS
M ext/dom/element.c
Diff:
diff --git a/NEWS b/NEWS
index 78f23b882421..1f2b9540bfa4 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,10 @@ PHP NEWS
- Date:
. Fixed leak on double DatePeriod::__construct() call. (ilutov)
+- DOM:
+ . Fixed bug GH-22825 (DOMElement::setAttribute() fails silently when the DTD
+ declares a default value for the attribute). (iliaal)
+
- Opcache:
. Fixed GH-22693 (DT_TEXTREL in JIT-generated TLS access on x86_64).
(David Carlier)
diff --git a/ext/dom/element.c b/ext/dom/element.c
index dbab93130159..a1301e106291 100644
--- a/ext/dom/element.c
+++ b/ext/dom/element.c
@@ -466,6 +466,8 @@ PHP_METHOD(DOMElement, setAttribute)
break;
case XML_NAMESPACE_DECL:
RETURN_FALSE;
+ case XML_ATTRIBUTE_DECL:
+ break;
EMPTY_SWITCH_DEFAULT_CASE();
}
}
@@ -593,6 +595,8 @@ static bool dom_remove_attribute(xmlNodePtr thisp, xmlNodePtr attrp)
break;
}
+ case XML_ATTRIBUTE_DECL:
+ return false;
EMPTY_SWITCH_DEFAULT_CASE();
}
return true;
@@ -722,7 +726,11 @@ static void dom_element_set_attribute_node_common(INTERNAL_FUNCTION_PARAMETERS,
existattrp = xmlHasProp(nodep, attrp->name);
}
- if (existattrp != NULL && existattrp->type != XML_ATTRIBUTE_DECL) {
+ if (existattrp != NULL && existattrp->type == XML_ATTRIBUTE_DECL) {
+ existattrp = NULL;
+ }
+
+ if (existattrp != NULL) {
if ((oldobj = php_dom_object_get_data((xmlNodePtr) existattrp)) != NULL &&
((php_libxml_node_ptr *)oldobj->ptr)->node == (xmlNodePtr) attrp)
{
@@ -1908,8 +1916,7 @@ PHP_METHOD(DOMElement, toggleAttribute)
/* Step 5 */
if (force_is_null || !force) {
- dom_remove_attribute(thisp, attribute);
- retval = false;
+ retval = !dom_remove_attribute(thisp, attribute);
goto out;
}
diff --git a/ext/dom/tests/gh22825.phpt b/ext/dom/tests/gh22825.phpt
new file mode 100644
index 000000000000..987ed57a1454
--- /dev/null
+++ b/ext/dom/tests/gh22825.phpt
@@ -0,0 +1,98 @@
+--TEST--
+GH-22825 (DOMElement::setAttribute() reaches EMPTY_SWITCH_DEFAULT_CASE() with DTD #FIXED default attributes)
+--EXTENSIONS--
+dom
+--FILE--
+<?php
+$cases = [
+ ['<!ATTLIST root A CDATA #FIXED "d">', '<root/>', 'A'],
+ ['<!ATTLIST root A CDATA "d">', '<root/>', 'A'],
+ ['<!ATTLIST root p:A CDATA #FIXED "d">', '<root xmlns:p="urn:p"/>', 'p:A'],
+];
+
+function element(string $attlist, string $root): DOMElement {
+ $doc = new DOMDocument();
+ $doc->loadXML("<!DOCTYPE root [$attlist]>$root");
+ return $doc->documentElement;
+}
+
+foreach ($cases as [$attlist, $root, $name]) {
+ echo "--- $attlist ---\n";
+
+ $el = element($attlist, $root);
+ echo "hasAttribute: ";
+ var_dump($el->hasAttribute($name));
+ echo "getAttribute: ";
+ var_dump($el->getAttribute($name));
+
+ $el = element($attlist, $root);
+ $result = $el->setAttribute($name, 'v');
+ echo "setAttribute: ", is_object($result) ? $result::class : var_export($result, true), "\n";
+ echo "after setAttribute: ", trim($el->ownerDocument->saveXML($el)), "\n";
+
+ $el = element($attlist, $root);
+ echo "removeAttribute: ";
+ var_dump($el->removeAttribute($name));
+ echo "still present after removeAttribute: ";
+ var_dump($el->hasAttribute($name));
+
+ $el = element($attlist, $root);
+ echo "toggleAttribute(false): ";
+ var_dump($el->toggleAttribute($name, false));
+ echo "still present after toggleAttribute(false): ";
+ var_dump($el->hasAttribute($name));
+
+ $el = element($attlist, $root);
+ echo "toggleAttribute(true): ";
+ var_dump($el->toggleAttribute($name, true));
+ echo "still present after toggleAttribute(true): ";
+ var_dump($el->hasAttribute($name));
+
+ $el = element($attlist, $root);
+ $attr = $el->ownerDocument->createAttribute($name);
+ $attr->value = 'z';
+ echo "setAttributeNode: ";
+ var_dump($el->setAttributeNode($attr));
+ echo "after setAttributeNode: ", trim($el->ownerDocument->saveXML($el)), "\n";
+}
+?>
+--EXPECT--
+--- <!ATTLIST root A CDATA #FIXED "d"> ---
+hasAttribute: bool(true)
+getAttribute: string(1) "d"
+setAttribute: DOMAttr
+after setAttribute: <root A="v"/>
+removeAttribute: bool(false)
+still present after removeAttribute: bool(true)
+toggleAttribute(false): bool(true)
+still present after toggleAttribute(false): bool(true)
+toggleAttribute(true): bool(true)
+still present after toggleAttribute(true): bool(true)
+setAttributeNode: NULL
+after setAttributeNode: <root A="z"/>
+--- <!ATTLIST root A CDATA "d"> ---
+hasAttribute: bool(true)
+getAttribute: string(1) "d"
+setAttribute: DOMAttr
+after setAttribute: <root A="v"/>
+removeAttribute: bool(false)
+still present after removeAttribute: bool(true)
+toggleAttribute(false): bool(true)
+still present after toggleAttribute(false): bool(true)
+toggleAttribute(true): bool(true)
+still present after toggleAttribute(true): bool(true)
+setAttributeNode: NULL
+after setAttributeNode: <root A="z"/>
+--- <!ATTLIST root p:A CDATA #FIXED "d"> ---
+hasAttribute: bool(true)
+getAttribute: string(1) "d"
+setAttribute: DOMAttr
+after setAttribute: <root xmlns:p="urn:p" p:A="v"/>
+removeAttribute: bool(false)
+still present after removeAttribute: bool(true)
+toggleAttribute(false): bool(true)
+still present after toggleAttribute(false): bool(true)
+toggleAttribute(true): bool(true)
+still present after toggleAttribute(true): bool(true)
+setAttributeNode: NULL
+after setAttributeNode: <root xmlns:p="urn:p" p:A="z"/>