3 * XML syntax and type checker.
5 * Since 1.24.2, it uses XMLReader instead of xml_parse, which gives us
6 * more control over the expansion of XML entities. When passed to the
7 * callback, entities will be fully expanded, but may report the XML is
8 * invalid if expanding the entities are likely to cause a DoS.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
30 * Will be set to true or false to indicate whether the file is
31 * well-formed XML. Note that this doesn't check schema validity.
33 public $wellFormed = null;
36 * Will be set to true if the optional element filter returned
37 * a match at some point.
39 public $filterMatch = false;
42 * Will contain the type of filter hit if the optional element filter returned
43 * a match at some point.
46 public $filterMatchType = false;
49 * Name of the document's root element, including any namespace
52 public $rootElement = '';
55 * A stack of strings containing the data of each xml element as it's processed. Append
56 * data to the top string of the stack, then pop off the string and process it when the
59 protected $elementData = [];
62 * A stack of element names and attributes, as we process them.
64 protected $elementDataContext = [];
67 * Current depth of the data stack.
69 protected $stackDepth = 0;
72 * Additional parsing options
74 private $parserOptions = [
75 'processing_instruction_handler' => '',
79 * @param string $input a filename or string containing the XML element
80 * @param callable $filterCallback (optional)
81 * Function to call to do additional custom validity checks from the
82 * SAX element handler event. This gives you access to the element
83 * namespace, name, attributes, and text contents.
84 * Filter should return 'true' to toggle on $this->filterMatch
85 * @param bool $isFile (optional) indicates if the first parameter is a
86 * filename (default, true) or if it is a string (false)
87 * @param array $options list of additional parsing options:
88 * processing_instruction_handler: Callback for xml_set_processing_instruction_handler
90 function __construct( $input, $filterCallback = null, $isFile = true, $options = [] ) {
91 $this->filterCallback
= $filterCallback;
92 $this->parserOptions
= array_merge( $this->parserOptions
, $options );
93 $this->validateFromInput( $input, $isFile );
97 * Alternative constructor: from filename
99 * @param string $fname the filename of an XML document
100 * @param callable $filterCallback (optional)
101 * Function to call to do additional custom validity checks from the
102 * SAX element handler event. This gives you access to the element
103 * namespace, name, and attributes, but not to text contents.
104 * Filter should return 'true' to toggle on $this->filterMatch
105 * @return XmlTypeCheck
107 public static function newFromFilename( $fname, $filterCallback = null ) {
108 return new self( $fname, $filterCallback, true );
112 * Alternative constructor: from string
114 * @param string $string a string containing an XML element
115 * @param callable $filterCallback (optional)
116 * Function to call to do additional custom validity checks from the
117 * SAX element handler event. This gives you access to the element
118 * namespace, name, and attributes, but not to text contents.
119 * Filter should return 'true' to toggle on $this->filterMatch
120 * @return XmlTypeCheck
122 public static function newFromString( $string, $filterCallback = null ) {
123 return new self( $string, $filterCallback, false );
127 * Get the root element. Simple accessor to $rootElement
131 public function getRootElement() {
132 return $this->rootElement
;
136 * @param string $fname the filename
138 private function validateFromInput( $xml, $isFile ) {
139 $reader = new XMLReader();
141 $s = $reader->open( $xml, null, LIBXML_NOERROR | LIBXML_NOWARNING
);
143 $s = $reader->XML( $xml, null, LIBXML_NOERROR | LIBXML_NOWARNING
);
146 // Couldn't open the XML
147 $this->wellFormed
= false;
149 $oldDisable = libxml_disable_entity_loader( true );
150 $reader->setParserProperty( XMLReader
::SUBST_ENTITIES
, true );
152 $this->validate( $reader );
153 } catch ( Exception
$e ) {
154 // Calling this malformed, because we didn't parse the whole
155 // thing. Maybe just an external entity refernce.
156 $this->wellFormed
= false;
158 libxml_disable_entity_loader( $oldDisable );
162 libxml_disable_entity_loader( $oldDisable );
166 private function readNext( XMLReader
$reader ) {
167 set_error_handler( [ $this, 'XmlErrorHandler' ] );
168 $ret = $reader->read();
169 restore_error_handler();
173 public function XmlErrorHandler( $errno, $errstr ) {
174 $this->wellFormed
= false;
177 private function validate( $reader ) {
179 // First, move through anything that isn't an element, and
180 // handle any processing instructions with the callback
182 if ( !$this->readNext( $reader ) ) {
183 // Hit the end of the document before any elements
184 $this->wellFormed
= false;
187 if ( $reader->nodeType
=== XMLReader
::PI
) {
188 $this->processingInstructionHandler( $reader->name
, $reader->value
);
190 } while ( $reader->nodeType
!= XMLReader
::ELEMENT
);
192 // Process the rest of the document
194 switch ( $reader->nodeType
) {
195 case XMLReader
::ELEMENT
:
196 $name = $this->expandNS(
198 $reader->namespaceURI
200 if ( $this->rootElement
=== '' ) {
201 $this->rootElement
= $name;
203 $empty = $reader->isEmptyElement
;
204 $attrs = $this->getAttributesArray( $reader );
205 $this->elementOpen( $name, $attrs );
207 $this->elementClose();
211 case XMLReader
::END_ELEMENT
:
212 $this->elementClose();
215 case XMLReader
::WHITESPACE
:
216 case XMLReader
::SIGNIFICANT_WHITESPACE
:
217 case XMLReader
::CDATA
:
218 case XMLReader
::TEXT
:
219 $this->elementData( $reader->value
);
222 case XMLReader
::ENTITY_REF
:
223 // Unexpanded entity (maybe external?),
224 // don't send to the filter (xml_parse didn't)
227 case XMLReader
::COMMENT
:
228 // Don't send to the filter (xml_parse didn't)
232 // Processing instructions can happen after the header too
233 $this->processingInstructionHandler(
239 // One of DOC, DOC_TYPE, ENTITY, END_ENTITY,
240 // NOTATION, or XML_DECLARATION
241 // xml_parse didn't send these to the filter, so we won't.
244 } while ( $this->readNext( $reader ) );
246 if ( $this->stackDepth
!== 0 ) {
247 $this->wellFormed
= false;
248 } elseif ( $this->wellFormed
=== null ) {
249 $this->wellFormed
= true;
255 * Get all of the attributes for an XMLReader's current node
256 * @param $r XMLReader
257 * @return array of attributes
259 private function getAttributesArray( XMLReader
$r ) {
261 while ( $r->moveToNextAttribute() ) {
262 if ( $r->namespaceURI
=== 'http://www.w3.org/2000/xmlns/' ) {
263 // XMLReader treats xmlns attributes as normal
264 // attributes, while xml_parse doesn't
267 $name = $this->expandNS( $r->name
, $r->namespaceURI
);
268 $attrs[$name] = $r->value
;
274 * @param $name element or attribute name, maybe with a full or short prefix
275 * @param $namespaceURI the namespaceURI
276 * @return string the name prefixed with namespaceURI
278 private function expandNS( $name, $namespaceURI ) {
279 if ( $namespaceURI ) {
280 $parts = explode( ':', $name );
281 $localname = array_pop( $parts );
282 return "$namespaceURI:$localname";
291 private function elementOpen( $name, $attribs ) {
292 $this->elementDataContext
[] = [ $name, $attribs ];
293 $this->elementData
[] = '';
299 private function elementClose() {
300 list( $name, $attribs ) = array_pop( $this->elementDataContext
);
301 $data = array_pop( $this->elementData
);
303 $callbackReturn = false;
305 if ( is_callable( $this->filterCallback
) ) {
306 $callbackReturn = call_user_func(
307 $this->filterCallback
,
313 if ( $callbackReturn ) {
315 $this->filterMatch
= true;
316 $this->filterMatchType
= $callbackReturn;
323 private function elementData( $data ) {
324 // Collect any data here, and we'll run the callback in elementClose
325 $this->elementData
[ $this->stackDepth
- 1 ] .= trim( $data );
332 private function processingInstructionHandler( $target, $data ) {
333 $callbackReturn = false;
334 if ( $this->parserOptions
['processing_instruction_handler'] ) {
335 $callbackReturn = call_user_func(
336 $this->parserOptions
['processing_instruction_handler'],
341 if ( $callbackReturn ) {
343 $this->filterMatch
= true;
344 $this->filterMatchType
= $callbackReturn;