3 * HTML sanitizer for %MediaWiki.
5 * Copyright © 2002-2005 Brion Vibber <brion@pobox.com> et al
6 * https://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
28 * HTML sanitizer for MediaWiki
33 * Regular expression to match various types of character references in
34 * Sanitizer::normalizeCharReferences and Sanitizer::decodeCharReferences
36 const CHAR_REFS_REGEX
=
37 '/&([A-Za-z0-9\x80-\xff]+);
39 |&\#[xX]([0-9A-Fa-f]+);
43 * Blacklist for evil uris like javascript:
44 * WARNING: DO NOT use this in any place that actually requires blacklisting
45 * for security reasons. There are NUMEROUS[1] ways to bypass blacklisting, the
46 * only way to be secure from javascript: uri based xss vectors is to whitelist
47 * things that you know are safe and deny everything else.
48 * [1]: http://ha.ckers.org/xss.html
50 const EVIL_URI_PATTERN
= '!(^|\s|\*/\s*)(javascript|vbscript)([^\w]|$)!i';
51 const XMLNS_ATTRIBUTE_PATTERN
= "/^xmlns:[:A-Z_a-z-.0-9]+$/";
54 * List of all named character entities defined in HTML 4.01
55 * http://www.w3.org/TR/html4/sgml/entities.html
56 * As well as ' which is only defined starting in XHTML1.
58 private static $htmlEntities = array(
74 'apos' => 39, // New in XHTML & HTML 5; avoid in output for compatibility with IE.
315 * Character entity aliases accepted by MediaWiki
317 private static $htmlEntityAliases = array(
323 * Lazy-initialised attributes regex, see getAttribsRegex()
325 private static $attribsRegex;
328 * Regular expression to match HTML/XML attribute pairs within a tag.
329 * Allows some... latitude.
330 * Used in Sanitizer::fixTagAttributes and Sanitizer::decodeTagAttributes
332 static function getAttribsRegex() {
333 if ( self
::$attribsRegex === null ) {
334 $attribFirst = '[:A-Z_a-z0-9]';
335 $attrib = '[:A-Z_a-z-.0-9]';
336 $space = '[\x09\x0a\x0d\x20]';
337 self
::$attribsRegex =
338 "/(?:^|$space)({$attribFirst}{$attrib}*)
341 # The attribute value: quoted or alone
344 | ([a-zA-Z0-9!#$%&()*,\\-.\\/:;<>?@[\\]^_`{|}~]+)
345 | (\#[0-9a-fA-F]+) # Technically wrong, but lots of
346 # colors are specified like this.
347 # We'll be normalizing it.
351 return self
::$attribsRegex;
355 * Cleans up HTML, removes dangerous tags and attributes, and
356 * removes HTML comments
358 * @param string $text
359 * @param callable $processCallback Callback to do any variable or parameter
360 * replacements in HTML attribute values
361 * @param array $args Arguments for the processing callback
362 * @param array $extratags For any extra tags to include
363 * @param array $removetags For any tags (default or extra) to exclude
366 static function removeHTMLtags( $text, $processCallback = null,
367 $args = array(), $extratags = array(), $removetags = array()
369 global $wgUseTidy, $wgAllowMicrodataAttributes, $wgAllowImageTag;
371 static $htmlpairsStatic, $htmlsingle, $htmlsingleonly, $htmlnest, $tabletags,
372 $htmllist, $listtags, $htmlsingleallowed, $htmlelementsStatic, $staticInitialised;
374 wfProfileIn( __METHOD__
);
376 // Base our staticInitialised variable off of the global config state so that if the globals
377 // are changed (like in the screwed up test system) we will re-initialise the settings.
378 $globalContext = implode( '-', compact( 'wgAllowMicrodataAttributes', 'wgAllowImageTag' ) );
379 if ( !$staticInitialised ||
$staticInitialised != $globalContext ) {
381 $htmlpairsStatic = array( # Tags that must be closed
382 'b', 'bdi', 'del', 'i', 'ins', 'u', 'font', 'big', 'small', 'sub', 'sup', 'h1',
383 'h2', 'h3', 'h4', 'h5', 'h6', 'cite', 'code', 'em', 's',
384 'strike', 'strong', 'tt', 'var', 'div', 'center',
385 'blockquote', 'ol', 'ul', 'dl', 'table', 'caption', 'pre',
386 'ruby', 'rt', 'rb', 'rp', 'p', 'span', 'abbr', 'dfn',
387 'kbd', 'samp', 'data', 'time', 'mark'
390 'br', 'wbr', 'hr', 'li', 'dt', 'dd'
392 $htmlsingleonly = array( # Elements that cannot have close tags
395 if ( $wgAllowMicrodataAttributes ) {
396 $htmlsingle[] = $htmlsingleonly[] = 'meta';
397 $htmlsingle[] = $htmlsingleonly[] = 'link';
399 $htmlnest = array( # Tags that can be nested--??
400 'table', 'tr', 'td', 'th', 'div', 'blockquote', 'ol', 'ul',
401 'li', 'dl', 'dt', 'dd', 'font', 'big', 'small', 'sub', 'sup', 'span',
402 'var', 'kbd', 'samp', 'em', 'strong', 'q', 'ruby', 'bdo'
404 $tabletags = array( # Can only appear inside table, we will close them
407 $htmllist = array( # Tags used by list
410 $listtags = array( # Tags that can appear in a list
414 if ( $wgAllowImageTag ) {
415 $htmlsingle[] = 'img';
416 $htmlsingleonly[] = 'img';
419 $htmlsingleallowed = array_unique( array_merge( $htmlsingle, $tabletags ) );
420 $htmlelementsStatic = array_unique( array_merge( $htmlsingle, $htmlpairsStatic, $htmlnest ) );
422 # Convert them all to hashtables for faster lookup
423 $vars = array( 'htmlpairsStatic', 'htmlsingle', 'htmlsingleonly', 'htmlnest', 'tabletags',
424 'htmllist', 'listtags', 'htmlsingleallowed', 'htmlelementsStatic' );
425 foreach ( $vars as $var ) {
426 $
$var = array_flip( $
$var );
428 $staticInitialised = $globalContext;
430 # Populate $htmlpairs and $htmlelements with the $extratags and $removetags arrays
431 $extratags = array_flip( $extratags );
432 $removetags = array_flip( $removetags );
433 $htmlpairs = array_merge( $extratags, $htmlpairsStatic );
434 $htmlelements = array_diff_key( array_merge( $extratags, $htmlelementsStatic ), $removetags );
436 # Remove HTML comments
437 $text = Sanitizer
::removeHTMLcomments( $text );
438 $bits = explode( '<', $text );
439 $text = str_replace( '>', '>', array_shift( $bits ) );
441 $tagstack = $tablestack = array();
442 foreach ( $bits as $x ) {
444 # $slash: Does the current element start with a '/'?
445 # $t: Current element name
446 # $params: String between element name and >
447 # $brace: Ending '>' or '/>'
448 # $rest: Everything until the next element of $bits
449 if ( preg_match( '!^(/?)([^\\s/>]+)([^>]*?)(/{0,1}>)([^<]*)$!', $x, $regs ) ) {
450 list( /* $qbar */, $slash, $t, $params, $brace, $rest ) = $regs;
452 $slash = $t = $params = $brace = $rest = null;
456 if ( isset( $htmlelements[$t = strtolower( $t )] ) ) {
458 if ( $slash && isset( $htmlsingleonly[$t] ) ) {
460 } elseif ( $slash ) {
461 # Closing a tag... is it the one we just opened?
462 $ot = @array_pop
( $tagstack );
464 if ( isset( $htmlsingleallowed[$ot] ) ) {
465 # Pop all elements with an optional close tag
466 # and see if we find a match below them
468 array_push( $optstack, $ot );
469 wfSuppressWarnings();
470 $ot = array_pop( $tagstack );
472 while ( $ot != $t && isset( $htmlsingleallowed[$ot] ) ) {
473 array_push( $optstack, $ot );
474 wfSuppressWarnings();
475 $ot = array_pop( $tagstack );
479 # No match. Push the optional elements back again
481 wfSuppressWarnings();
482 $ot = array_pop( $optstack );
485 array_push( $tagstack, $ot );
486 wfSuppressWarnings();
487 $ot = array_pop( $optstack );
492 @array_push
( $tagstack, $ot );
493 # <li> can be nested in <ul> or <ol>, skip those cases:
494 if ( !isset( $htmllist[$ot] ) ||
!isset( $listtags[$t] ) ) {
499 if ( $t == 'table' ) {
500 $tagstack = array_pop( $tablestack );
505 # Keep track for later
506 if ( isset( $tabletags[$t] ) &&
507 !in_array( 'table', $tagstack ) ) {
509 } elseif ( in_array( $t, $tagstack ) &&
510 !isset( $htmlnest[$t] ) ) {
512 # Is it a self closed htmlpair ? (bug 5487)
513 } elseif ( $brace == '/>' &&
514 isset( $htmlpairs[$t] ) ) {
516 } elseif ( isset( $htmlsingleonly[$t] ) ) {
517 # Hack to force empty tag for unclosable elements
519 } elseif ( isset( $htmlsingle[$t] ) ) {
520 # Hack to not close $htmlsingle tags
522 # Still need to push this optionally-closed tag to
523 # the tag stack so that we can match end tags
524 # instead of marking them as bad.
525 array_push( $tagstack, $t );
526 } elseif ( isset( $tabletags[$t] )
527 && in_array( $t, $tagstack ) ) {
528 // New table tag but forgot to close the previous one
531 if ( $t == 'table' ) {
532 array_push( $tablestack, $tagstack );
535 array_push( $tagstack, $t );
538 # Replace any variables or template parameters with
540 if ( is_callable( $processCallback ) ) {
541 call_user_func_array( $processCallback, array( &$params, $args ) );
544 if ( !Sanitizer
::validateTag( $params, $t ) ) {
548 # Strip non-approved attributes from the tag
549 $newparams = Sanitizer
::fixTagAttributes( $params, $t );
552 $rest = str_replace( '>', '>', $rest );
553 $close = ( $brace == '/>' && !$slash ) ?
' /' : '';
554 $text .= "<$slash$t$newparams$close>$rest";
558 $text .= '<' . str_replace( '>', '>', $x );
560 # Close off any remaining tags
561 while ( is_array( $tagstack ) && ( $t = array_pop( $tagstack ) ) ) {
563 if ( $t == 'table' ) {
564 $tagstack = array_pop( $tablestack );
568 # this might be possible using tidy itself
569 foreach ( $bits as $x ) {
570 preg_match( '/^(\\/?)(\\w+)([^>]*?)(\\/{0,1}>)([^<]*)$/',
572 @list
( /* $qbar */, $slash, $t, $params, $brace, $rest ) = $regs;
574 if ( isset( $htmlelements[$t = strtolower( $t )] ) ) {
575 if ( is_callable( $processCallback ) ) {
576 call_user_func_array( $processCallback, array( &$params, $args ) );
579 if ( !Sanitizer
::validateTag( $params, $t ) ) {
583 $newparams = Sanitizer
::fixTagAttributes( $params, $t );
585 $rest = str_replace( '>', '>', $rest );
586 $text .= "<$slash$t$newparams$brace$rest";
590 $text .= '<' . str_replace( '>', '>', $x );
593 wfProfileOut( __METHOD__
);
598 * Remove '<!--', '-->', and everything between.
599 * To avoid leaving blank lines, when a comment is both preceded
600 * and followed by a newline (ignoring spaces), trim leading and
601 * trailing spaces and one of the newlines.
604 * @param string $text
607 static function removeHTMLcomments( $text ) {
608 wfProfileIn( __METHOD__
);
609 while ( ( $start = strpos( $text, '<!--' ) ) !== false ) {
610 $end = strpos( $text, '-->', $start +
4 );
611 if ( $end === false ) {
612 # Unterminated comment; bail out
618 # Trim space and newline if the comment is both
619 # preceded and followed by a newline
620 $spaceStart = max( $start - 1, 0 );
621 $spaceLen = $end - $spaceStart;
622 while ( substr( $text, $spaceStart, 1 ) === ' ' && $spaceStart > 0 ) {
626 while ( substr( $text, $spaceStart +
$spaceLen, 1 ) === ' ' ) {
629 if ( substr( $text, $spaceStart, 1 ) === "\n"
630 && substr( $text, $spaceStart +
$spaceLen, 1 ) === "\n" ) {
631 # Remove the comment, leading and trailing
632 # spaces, and leave only one newline.
633 $text = substr_replace( $text, "\n", $spaceStart, $spaceLen +
1 );
635 # Remove just the comment.
636 $text = substr_replace( $text, '', $start, $end - $start );
639 wfProfileOut( __METHOD__
);
644 * Takes attribute names and values for a tag and the tag name and
645 * validates that the tag is allowed to be present.
646 * This DOES NOT validate the attributes, nor does it validate the
647 * tags themselves. This method only handles the special circumstances
648 * where we may want to allow a tag within content but ONLY when it has
649 * specific attributes set.
651 * @param string $params
652 * @param string $element
655 static function validateTag( $params, $element ) {
656 $params = Sanitizer
::decodeTagAttributes( $params );
658 if ( $element == 'meta' ||
$element == 'link' ) {
659 if ( !isset( $params['itemprop'] ) ) {
660 // <meta> and <link> must have an itemprop="" otherwise they are not valid or safe in content
663 if ( $element == 'meta' && !isset( $params['content'] ) ) {
664 // <meta> must have a content="" for the itemprop
667 if ( $element == 'link' && !isset( $params['href'] ) ) {
668 // <link> must have an associated href=""
677 * Take an array of attribute names and values and normalize or discard
678 * illegal values for the given element type.
680 * - Discards attributes not on a whitelist for the given element
681 * - Unsafe style attributes are discarded
682 * - Invalid id attributes are re-encoded
684 * @param array $attribs
685 * @param string $element
688 * @todo Check for legal values where the DTD limits things.
689 * @todo Check for unique id attribute :P
691 static function validateTagAttributes( $attribs, $element ) {
692 return Sanitizer
::validateAttributes( $attribs,
693 Sanitizer
::attributeWhitelist( $element ) );
697 * Take an array of attribute names and values and normalize or discard
698 * illegal values for the given whitelist.
700 * - Discards attributes not the given whitelist
701 * - Unsafe style attributes are discarded
702 * - Invalid id attributes are re-encoded
704 * @param array $attribs
705 * @param array $whitelist list of allowed attribute names
708 * @todo Check for legal values where the DTD limits things.
709 * @todo Check for unique id attribute :P
711 static function validateAttributes( $attribs, $whitelist ) {
712 global $wgAllowRdfaAttributes, $wgAllowMicrodataAttributes;
714 $whitelist = array_flip( $whitelist );
715 $hrefExp = '/^(' . wfUrlProtocols() . ')[^\s]+$/';
718 foreach ( $attribs as $attribute => $value ) {
719 #allow XML namespace declaration if RDFa is enabled
720 if ( $wgAllowRdfaAttributes && preg_match( self
::XMLNS_ATTRIBUTE_PATTERN
, $attribute ) ) {
721 if ( !preg_match( self
::EVIL_URI_PATTERN
, $value ) ) {
722 $out[$attribute] = $value;
728 # Allow any attribute beginning with "data-"
729 if ( !preg_match( '/^data-/i', $attribute ) && !isset( $whitelist[$attribute] ) ) {
733 # Strip javascript "expression" from stylesheets.
734 # http://msdn.microsoft.com/workshop/author/dhtml/overview/recalc.asp
735 if ( $attribute == 'style' ) {
736 $value = Sanitizer
::checkCss( $value );
739 if ( $attribute === 'id' ) {
740 $value = Sanitizer
::escapeId( $value, 'noninitial' );
744 # http://www.w3.org/TR/wai-aria/
745 # http://www.whatwg.org/html/elements.html#wai-aria
746 # For now we only support role="presentation" until we work out what roles should be
747 # usable by content and we ensure that our code explicitly rejects patterns that
748 # violate HTML5's ARIA restrictions.
749 if ( $attribute === 'role' && $value !== 'presentation' ) {
753 // RDFa and microdata properties allow URLs, URIs and/or CURIs.
754 // Check them for sanity.
755 if ( $attribute === 'rel' ||
$attribute === 'rev'
757 ||
$attribute === 'about' ||
$attribute === 'property'
758 ||
$attribute === 'resource' ||
$attribute === 'datatype'
759 ||
$attribute === 'typeof'
761 ||
$attribute === 'itemid' ||
$attribute === 'itemprop'
762 ||
$attribute === 'itemref' ||
$attribute === 'itemscope'
763 ||
$attribute === 'itemtype'
765 //Paranoia. Allow "simple" values but suppress javascript
766 if ( preg_match( self
::EVIL_URI_PATTERN
, $value ) ) {
771 # NOTE: even though elements using href/src are not allowed directly, supply
772 # validation code that can be used by tag hook handlers, etc
773 if ( $attribute === 'href' ||
$attribute === 'src' ) {
774 if ( !preg_match( $hrefExp, $value ) ) {
775 continue; //drop any href or src attributes not using an allowed protocol.
776 // NOTE: this also drops all relative URLs
780 // If this attribute was previously set, override it.
781 // Output should only have one attribute of each name.
782 $out[$attribute] = $value;
785 if ( $wgAllowMicrodataAttributes ) {
786 # itemtype, itemid, itemref don't make sense without itemscope
787 if ( !array_key_exists( 'itemscope', $out ) ) {
788 unset( $out['itemtype'] );
789 unset( $out['itemid'] );
790 unset( $out['itemref'] );
792 # TODO: Strip itemprop if we aren't descendants of an itemscope or pointed to by an itemref.
798 * Merge two sets of HTML attributes. Conflicting items in the second set
799 * will override those in the first, except for 'class' attributes which
800 * will be combined (if they're both strings).
802 * @todo implement merging for other attributes such as style
807 static function mergeAttributes( $a, $b ) {
808 $out = array_merge( $a, $b );
809 if ( isset( $a['class'] ) && isset( $b['class'] )
810 && is_string( $a['class'] ) && is_string( $b['class'] )
811 && $a['class'] !== $b['class']
813 $classes = preg_split( '/\s+/', "{$a['class']} {$b['class']}",
814 -1, PREG_SPLIT_NO_EMPTY
);
815 $out['class'] = implode( ' ', array_unique( $classes ) );
821 * Pick apart some CSS and check it for forbidden or unsafe structures.
822 * Returns a sanitized string. This sanitized string will have
823 * character references and escape sequences decoded and comments
824 * stripped (unless it is itself one valid comment, in which case the value
825 * will be passed through). If the input is just too evil, only a comment
826 * complaining about evilness will be returned.
828 * Currently URL references, 'expression', 'tps' are forbidden.
830 * NOTE: Despite the fact that character references are decoded, the
831 * returned string may contain character references given certain
832 * clever input strings. These character references must
833 * be escaped before the return value is embedded in HTML.
835 * @param string $value
838 static function checkCss( $value ) {
839 // Decode character references like {
840 $value = Sanitizer
::decodeCharReferences( $value );
842 // Decode escape sequences and line continuation
843 // See the grammar in the CSS 2 spec, appendix D.
844 // This has to be done AFTER decoding character references.
845 // This means it isn't possible for this function to return
846 // unsanitized escape sequences. It is possible to manufacture
847 // input that contains character references that decode to
848 // escape sequences that decode to character references, but
849 // it's OK for the return value to contain character references
850 // because the caller is supposed to escape those anyway.
852 if ( !$decodeRegex ) {
853 $space = '[\\x20\\t\\r\\n\\f]';
854 $nl = '(?:\\n|\\r\\n|\\r|\\f)';
856 $decodeRegex = "/ $backslash
858 ($nl) | # 1. Line continuation
859 ([0-9A-Fa-f]{1,6})$space? | # 2. character number
860 (.) | # 3. backslash cancelling special meaning
861 () | # 4. backslash at end of string
864 $value = preg_replace_callback( $decodeRegex,
865 array( __CLASS__
, 'cssDecodeCallback' ), $value );
867 // Normalize Halfwidth and Fullwidth Unicode block that IE6 might treat as ascii
868 $value = preg_replace_callback(
869 '/[!-[]-z]/u', // U+FF01 to U+FF5A, excluding U+FF3C (bug 58088)
870 function ( $matches ) {
871 $cp = utf8ToCodepoint( $matches[0] );
872 if ( $cp === false ) {
875 return chr( $cp - 65248 ); // ASCII range \x21-\x7A
880 // Convert more characters IE6 might treat as ascii
881 // U+0280, U+0274, U+207F, U+029F, U+026A, U+207D, U+208D
882 $value = str_replace(
883 array( 'ʀ', 'ɴ', 'ⁿ', 'ʟ', 'ɪ', '⁽', '₍' ),
884 array( 'r', 'n', 'n', 'l', 'i', '(', '(' ),
888 // Let the value through if it's nothing but a single comment, to
889 // allow other functions which may reject it to pass some error
891 if ( !preg_match( '! ^ \s* /\* [^*\\/]* \*/ \s* $ !x', $value ) ) {
892 // Remove any comments; IE gets token splitting wrong
893 // This must be done AFTER decoding character references and
894 // escape sequences, because those steps can introduce comments
895 // This step cannot introduce character references or escape
896 // sequences, because it replaces comments with spaces rather
897 // than removing them completely.
898 $value = StringUtils
::delimiterReplace( '/*', '*/', ' ', $value );
900 // Remove anything after a comment-start token, to guard against
901 // incorrect client implementations.
902 $commentPos = strpos( $value, '/*' );
903 if ( $commentPos !== false ) {
904 $value = substr( $value, 0, $commentPos );
908 // S followed by repeat, iteration, or prolonged sound marks,
909 // which IE will treat as "ss"
910 $value = preg_replace(
912 \xE3\x80\xB1 | # U+3031
913 \xE3\x82\x9D | # U+309D
914 \xE3\x83\xBC | # U+30FC
915 \xE3\x83\xBD | # U+30FD
916 \xEF\xB9\xBC | # U+FE7C
917 \xEF\xB9\xBD | # U+FE7D
918 \xEF\xBD\xB0 # U+FF70
924 // Reject problematic keywords and control characters
925 if ( preg_match( '/[\000-\010\013\016-\037\177]/', $value ) ) {
926 return '/* invalid control char */';
927 } elseif ( preg_match(
938 return '/* insecure input */';
944 * @param array $matches
947 static function cssDecodeCallback( $matches ) {
948 if ( $matches[1] !== '' ) {
951 } elseif ( $matches[2] !== '' ) {
952 $char = codepointToUtf8( hexdec( $matches[2] ) );
953 } elseif ( $matches[3] !== '' ) {
958 if ( $char == "\n" ||
$char == '"' ||
$char == "'" ||
$char == '\\' ) {
959 // These characters need to be escaped in strings
960 // Clean up the escape sequence to avoid parsing errors by clients
961 return '\\' . dechex( ord( $char ) ) . ' ';
963 // Decode unnecessary escape
969 * Take a tag soup fragment listing an HTML element's attributes
970 * and normalize it to well-formed XML, discarding unwanted attributes.
971 * Output is safe for further wikitext processing, with escaping of
972 * values that could trigger problems.
974 * - Normalizes attribute names to lowercase
975 * - Discards attributes not on a whitelist for the given element
976 * - Turns broken or invalid entities into plaintext
977 * - Double-quotes all attribute values
978 * - Attributes without values are given the name as attribute
979 * - Double attributes are discarded
980 * - Unsafe style attributes are discarded
981 * - Prepends space if there are attributes.
983 * @param string $text
984 * @param string $element
987 static function fixTagAttributes( $text, $element ) {
988 if ( trim( $text ) == '' ) {
992 $decoded = Sanitizer
::decodeTagAttributes( $text );
993 $stripped = Sanitizer
::validateTagAttributes( $decoded, $element );
995 return Sanitizer
::safeEncodeTagAttributes( $stripped );
999 * Encode an attribute value for HTML output.
1000 * @param string $text
1001 * @return string HTML-encoded text fragment
1003 static function encodeAttribute( $text ) {
1004 $encValue = htmlspecialchars( $text, ENT_QUOTES
);
1006 // Whitespace is normalized during attribute decoding,
1007 // so if we've been passed non-spaces we must encode them
1008 // ahead of time or they won't be preserved.
1009 $encValue = strtr( $encValue, array(
1019 * Encode an attribute value for HTML tags, with extra armoring
1020 * against further wiki processing.
1021 * @param string $text
1022 * @return string HTML-encoded text fragment
1024 static function safeEncodeAttribute( $text ) {
1025 $encValue = Sanitizer
::encodeAttribute( $text );
1027 # Templates and links may be expanded in later parsing,
1028 # creating invalid or dangerous output. Suppress this.
1029 $encValue = strtr( $encValue, array(
1030 '<' => '<', // This should never happen,
1031 '>' => '>', // we've received invalid input
1032 '"' => '"', // which should have been escaped.
1035 "''" => '''',
1036 'ISBN' => 'ISBN',
1038 'PMID' => 'PMID',
1044 $encValue = preg_replace_callback(
1045 '/((?i)' . wfUrlProtocols() . ')/',
1046 array( 'Sanitizer', 'armorLinksCallback' ),
1052 * Given a value, escape it so that it can be used in an id attribute and
1053 * return it. This will use HTML5 validation if $wgExperimentalHtmlIds is
1054 * true, allowing anything but ASCII whitespace. Otherwise it will use
1055 * HTML 4 rules, which means a narrow subset of ASCII, with bad characters
1056 * escaped with lots of dots.
1058 * To ensure we don't have to bother escaping anything, we also strip ', ",
1059 * & even if $wgExperimentalIds is true. TODO: Is this the best tactic?
1060 * We also strip # because it upsets IE, and % because it could be
1061 * ambiguous if it's part of something that looks like a percent escape
1062 * (which don't work reliably in fragments cross-browser).
1064 * @see http://www.w3.org/TR/html401/types.html#type-name Valid characters
1065 * in the id and name attributes
1066 * @see http://www.w3.org/TR/html401/struct/links.html#h-12.2.3 Anchors with
1068 * @see http://www.whatwg.org/html/elements.html#the-id-attribute
1069 * HTML5 definition of id attribute
1071 * @param string $id id to escape
1072 * @param $options Mixed: string or array of strings (default is array()):
1073 * 'noninitial': This is a non-initial fragment of an id, not a full id,
1074 * so don't pay attention if the first character isn't valid at the
1075 * beginning of an id. Only matters if $wgExperimentalHtmlIds is
1077 * 'legacy': Behave the way the old HTML 4-based ID escaping worked even
1078 * if $wgExperimentalHtmlIds is used, so we can generate extra
1079 * anchors and links won't break.
1082 static function escapeId( $id, $options = array() ) {
1083 global $wgExperimentalHtmlIds;
1084 $options = (array)$options;
1086 if ( $wgExperimentalHtmlIds && !in_array( 'legacy', $options ) ) {
1087 $id = Sanitizer
::decodeCharReferences( $id );
1088 $id = preg_replace( '/[ \t\n\r\f_\'"&#%]+/', '_', $id );
1089 $id = trim( $id, '_' );
1091 # Must have been all whitespace to start with.
1098 # HTML4-style escaping
1099 static $replace = array(
1104 $id = urlencode( Sanitizer
::decodeCharReferences( strtr( $id, ' ', '_' ) ) );
1105 $id = str_replace( array_keys( $replace ), array_values( $replace ), $id );
1107 if ( !preg_match( '/^[a-zA-Z]/', $id )
1108 && !in_array( 'noninitial', $options ) ) {
1109 // Initial character must be a letter!
1116 * Given a value, escape it so that it can be used as a CSS class and
1119 * @todo For extra validity, input should be validated UTF-8.
1121 * @see http://www.w3.org/TR/CSS21/syndata.html Valid characters/format
1123 * @param string $class
1126 static function escapeClass( $class ) {
1127 // Convert ugly stuff to underscores and kill underscores in ugly places
1128 return rtrim( preg_replace(
1129 array( '/(^[0-9\\-])|[\\x00-\\x20!"#$%&\'()*+,.\\/:;<=>?@[\\]^`{|}~]|\\xC2\\xA0/', '/_+/' ),
1135 * Given HTML input, escape with htmlspecialchars but un-escape entities.
1136 * This allows (generally harmless) entities like   to survive.
1138 * @param string $html HTML to escape
1139 * @return string: escaped input
1141 static function escapeHtmlAllowEntities( $html ) {
1142 $html = Sanitizer
::decodeCharReferences( $html );
1143 # It seems wise to escape ' as well as ", as a matter of course. Can't
1145 $html = htmlspecialchars( $html, ENT_QUOTES
);
1150 * Regex replace callback for armoring links against further processing.
1151 * @param array $matches
1154 private static function armorLinksCallback( $matches ) {
1155 return str_replace( ':', ':', $matches[1] );
1159 * Return an associative array of attribute names and values from
1160 * a partial tag string. Attribute names are forces to lowercase,
1161 * character references are decoded to UTF-8 text.
1163 * @param string $text
1166 public static function decodeTagAttributes( $text ) {
1167 if ( trim( $text ) == '' ) {
1173 if ( !preg_match_all(
1174 self
::getAttribsRegex(),
1177 PREG_SET_ORDER
) ) {
1181 foreach ( $pairs as $set ) {
1182 $attribute = strtolower( $set[1] );
1183 $value = Sanitizer
::getTagAttributeCallback( $set );
1185 // Normalize whitespace
1186 $value = preg_replace( '/[\t\r\n ]+/', ' ', $value );
1187 $value = trim( $value );
1189 // Decode character references
1190 $attribs[$attribute] = Sanitizer
::decodeCharReferences( $value );
1196 * Build a partial tag string from an associative array of attribute
1197 * names and values as returned by decodeTagAttributes.
1199 * @param array $assoc_array
1202 public static function safeEncodeTagAttributes( $assoc_array ) {
1204 foreach ( $assoc_array as $attribute => $value ) {
1205 $encAttribute = htmlspecialchars( $attribute );
1206 $encValue = Sanitizer
::safeEncodeAttribute( $value );
1208 $attribs[] = "$encAttribute=\"$encValue\"";
1210 return count( $attribs ) ?
' ' . implode( ' ', $attribs ) : '';
1214 * Pick the appropriate attribute value from a match set from the
1215 * attribs regex matches.
1218 * @throws MWException when tag conditions are not met.
1221 private static function getTagAttributeCallback( $set ) {
1222 if ( isset( $set[6] ) ) {
1223 # Illegal #XXXXXX color with no quotes.
1225 } elseif ( isset( $set[5] ) ) {
1228 } elseif ( isset( $set[4] ) ) {
1231 } elseif ( isset( $set[3] ) ) {
1234 } elseif ( !isset( $set[2] ) ) {
1235 # In XHTML, attributes must have a value.
1236 # For 'reduced' form, return explicitly the attribute name here.
1239 throw new MWException( "Tag conditions not met. This should never happen and is a bug." );
1244 * Normalize whitespace and character references in an XML source-
1245 * encoded text for an attribute value.
1247 * See http://www.w3.org/TR/REC-xml/#AVNormalize for background,
1248 * but note that we're not returning the value, but are returning
1249 * XML source fragments that will be slapped into output.
1251 * @param string $text
1253 * @todo Remove, unused?
1255 private static function normalizeAttributeValue( $text ) {
1256 return str_replace( '"', '"',
1257 self
::normalizeWhitespace(
1258 Sanitizer
::normalizeCharReferences( $text ) ) );
1262 * @param string $text
1265 private static function normalizeWhitespace( $text ) {
1266 return preg_replace(
1267 '/\r\n|[\x20\x0d\x0a\x09]/',
1273 * Normalizes whitespace in a section name, such as might be returned
1274 * by Parser::stripSectionName(), for use in the id's that are used for
1277 * @param string $section
1280 static function normalizeSectionNameWhitespace( $section ) {
1281 return trim( preg_replace( '/[ _]+/', ' ', $section ) );
1285 * Ensure that any entities and character references are legal
1286 * for XML and XHTML specifically. Any stray bits will be
1287 * &-escaped to result in a valid text fragment.
1289 * a. named char refs can only be < > & ", others are
1290 * numericized (this way we're well-formed even without a DTD)
1291 * b. any numeric char refs must be legal chars, not invalid or forbidden
1292 * c. use lower cased "&#x", not "&#X"
1293 * d. fix or reject non-valid attributes
1295 * @param string $text
1299 static function normalizeCharReferences( $text ) {
1300 return preg_replace_callback(
1301 self
::CHAR_REFS_REGEX
,
1302 array( 'Sanitizer', 'normalizeCharReferencesCallback' ),
1307 * @param string $matches
1310 static function normalizeCharReferencesCallback( $matches ) {
1312 if ( $matches[1] != '' ) {
1313 $ret = Sanitizer
::normalizeEntity( $matches[1] );
1314 } elseif ( $matches[2] != '' ) {
1315 $ret = Sanitizer
::decCharReference( $matches[2] );
1316 } elseif ( $matches[3] != '' ) {
1317 $ret = Sanitizer
::hexCharReference( $matches[3] );
1319 if ( is_null( $ret ) ) {
1320 return htmlspecialchars( $matches[0] );
1327 * If the named entity is defined in the HTML 4.0/XHTML 1.0 DTD,
1328 * return the equivalent numeric entity reference (except for the core <
1329 * > & "). If the entity is a MediaWiki-specific alias, returns
1330 * the HTML equivalent. Otherwise, returns HTML-escaped text of
1331 * pseudo-entity source (eg &foo;)
1333 * @param string $name
1336 static function normalizeEntity( $name ) {
1337 if ( isset( self
::$htmlEntityAliases[$name] ) ) {
1338 return '&' . self
::$htmlEntityAliases[$name] . ';';
1339 } elseif ( in_array( $name,
1340 array( 'lt', 'gt', 'amp', 'quot' ) ) ) {
1342 } elseif ( isset( self
::$htmlEntities[$name] ) ) {
1343 return '&#' . self
::$htmlEntities[$name] . ';';
1345 return "&$name;";
1350 * @param int $codepoint
1351 * @return null|string
1353 static function decCharReference( $codepoint ) {
1354 $point = intval( $codepoint );
1355 if ( Sanitizer
::validateCodepoint( $point ) ) {
1356 return sprintf( '&#%d;', $point );
1363 * @param int $codepoint
1364 * @return null|string
1366 static function hexCharReference( $codepoint ) {
1367 $point = hexdec( $codepoint );
1368 if ( Sanitizer
::validateCodepoint( $point ) ) {
1369 return sprintf( '&#x%x;', $point );
1376 * Returns true if a given Unicode codepoint is a valid character in XML.
1377 * @param int $codepoint
1380 private static function validateCodepoint( $codepoint ) {
1381 return $codepoint == 0x09
1382 ||
$codepoint == 0x0a
1383 ||
$codepoint == 0x0d
1384 ||
( $codepoint >= 0x20 && $codepoint <= 0xd7ff )
1385 ||
( $codepoint >= 0xe000 && $codepoint <= 0xfffd )
1386 ||
( $codepoint >= 0x10000 && $codepoint <= 0x10ffff );
1390 * Decode any character references, numeric or named entities,
1391 * in the text and return a UTF-8 string.
1393 * @param string $text
1396 public static function decodeCharReferences( $text ) {
1397 return preg_replace_callback(
1398 self
::CHAR_REFS_REGEX
,
1399 array( 'Sanitizer', 'decodeCharReferencesCallback' ),
1404 * Decode any character references, numeric or named entities,
1405 * in the next and normalize the resulting string. (bug 14952)
1407 * This is useful for page titles, not for text to be displayed,
1408 * MediaWiki allows HTML entities to escape normalization as a feature.
1410 * @param string $text Already normalized, containing entities
1411 * @return string Still normalized, without entities
1413 public static function decodeCharReferencesAndNormalize( $text ) {
1415 $text = preg_replace_callback(
1416 self
::CHAR_REFS_REGEX
,
1417 array( 'Sanitizer', 'decodeCharReferencesCallback' ),
1418 $text, /* limit */ -1, $count );
1421 return $wgContLang->normalize( $text );
1428 * @param string $matches
1431 static function decodeCharReferencesCallback( $matches ) {
1432 if ( $matches[1] != '' ) {
1433 return Sanitizer
::decodeEntity( $matches[1] );
1434 } elseif ( $matches[2] != '' ) {
1435 return Sanitizer
::decodeChar( intval( $matches[2] ) );
1436 } elseif ( $matches[3] != '' ) {
1437 return Sanitizer
::decodeChar( hexdec( $matches[3] ) );
1439 # Last case should be an ampersand by itself
1444 * Return UTF-8 string for a codepoint if that is a valid
1445 * character reference, otherwise U+FFFD REPLACEMENT CHARACTER.
1446 * @param int $codepoint
1450 static function decodeChar( $codepoint ) {
1451 if ( Sanitizer
::validateCodepoint( $codepoint ) ) {
1452 return codepointToUtf8( $codepoint );
1454 return UTF8_REPLACEMENT
;
1459 * If the named entity is defined in the HTML 4.0/XHTML 1.0 DTD,
1460 * return the UTF-8 encoding of that character. Otherwise, returns
1461 * pseudo-entity source (eg "&foo;")
1463 * @param string $name
1466 static function decodeEntity( $name ) {
1467 if ( isset( self
::$htmlEntityAliases[$name] ) ) {
1468 $name = self
::$htmlEntityAliases[$name];
1470 if ( isset( self
::$htmlEntities[$name] ) ) {
1471 return codepointToUtf8( self
::$htmlEntities[$name] );
1478 * Fetch the whitelist of acceptable attributes for a given element name.
1480 * @param string $element
1483 static function attributeWhitelist( $element ) {
1484 $list = Sanitizer
::setupAttributeWhitelist();
1485 return isset( $list[$element] )
1491 * Foreach array key (an allowed HTML element), return an array
1492 * of allowed attributes
1495 static function setupAttributeWhitelist() {
1496 global $wgAllowRdfaAttributes, $wgAllowMicrodataAttributes;
1498 static $whitelist, $staticInitialised;
1499 $globalContext = implode( '-', compact( 'wgAllowRdfaAttributes', 'wgAllowMicrodataAttributes' ) );
1501 if ( isset( $whitelist ) && $staticInitialised == $globalContext ) {
1518 if ( $wgAllowRdfaAttributes ) {
1519 # RDFa attributes as specified in section 9 of
1520 # http://www.w3.org/TR/2008/REC-rdfa-syntax-20081014
1521 $common = array_merge( $common, array(
1522 'about', 'property', 'resource', 'datatype', 'typeof',
1526 if ( $wgAllowMicrodataAttributes ) {
1527 # add HTML5 microdata tags as specified by
1528 # http://www.whatwg.org/html/microdata.html#the-microdata-model
1529 $common = array_merge( $common, array(
1530 'itemid', 'itemprop', 'itemref', 'itemscope', 'itemtype'
1534 $block = array_merge( $common, array( 'align' ) );
1535 $tablealign = array( 'align', 'valign' );
1543 'nowrap', # deprecated
1544 'width', # deprecated
1545 'height', # deprecated
1546 'bgcolor', # deprecated
1549 # Numbers refer to sections in HTML 4.01 standard describing the element.
1550 # See: http://www.w3.org/TR/html4/
1554 'center' => $common, # deprecated
1573 'strong' => $common,
1584 'blockquote' => array_merge( $common, array( 'cite' ) ),
1585 'q' => array_merge( $common, array( 'cite' ) ),
1595 'br' => array_merge( $common, array( 'clear' ) ),
1597 # http://www.whatwg.org/html/text-level-semantics.html#the-wbr-element
1601 'pre' => array_merge( $common, array( 'width' ) ),
1604 'ins' => array_merge( $common, array( 'cite', 'datetime' ) ),
1605 'del' => array_merge( $common, array( 'cite', 'datetime' ) ),
1608 'ul' => array_merge( $common, array( 'type' ) ),
1609 'ol' => array_merge( $common, array( 'type', 'start' ) ),
1610 'li' => array_merge( $common, array( 'type', 'value' ) ),
1618 'table' => array_merge( $common,
1619 array( 'summary', 'width', 'border', 'frame',
1620 'rules', 'cellspacing', 'cellpadding',
1625 'caption' => $block,
1633 'colgroup' => array_merge( $common, array( 'span' ) ),
1634 'col' => array_merge( $common, array( 'span' ) ),
1637 'tr' => array_merge( $common, array( 'bgcolor' ), $tablealign ),
1640 'td' => array_merge( $common, $tablecell, $tablealign ),
1641 'th' => array_merge( $common, $tablecell, $tablealign ),
1644 # NOTE: <a> is not allowed directly, but the attrib
1645 # whitelist is used from the Parser object
1646 'a' => array_merge( $common, array( 'href', 'rel', 'rev' ) ), # rel/rev esp. for RDFa
1649 # Not usually allowed, but may be used for extension-style hooks
1650 # such as <math> when it is rasterized, or if $wgAllowImageTag is
1652 'img' => array_merge( $common, array( 'alt', 'src', 'width', 'height' ) ),
1660 'strike' => $common,
1665 'font' => array_merge( $common, array( 'size', 'color', 'face' ) ),
1669 'hr' => array_merge( $common, array( 'width' ) ),
1671 # HTML Ruby annotation text module, simple ruby only.
1672 # http://www.whatwg.org/html/text-level-semantics.html#the-ruby-element
1677 'rt' => $common, #array_merge( $common, array( 'rbspan' ) ),
1680 # MathML root element, where used for extensions
1681 # 'title' may not be 100% valid here; it's XHTML
1682 # http://www.w3.org/TR/REC-MathML/
1683 'math' => array( 'class', 'style', 'id', 'title' ),
1685 # HTML 5 section 4.6
1688 # HTML5 elements, defined by:
1689 # http://www.whatwg.org/html/
1690 'data' => array_merge( $common, array( 'value' ) ),
1691 'time' => array_merge( $common, array( 'datetime' ) ),
1694 // meta and link are only permitted by removeHTMLtags when Microdata
1695 // is enabled so we don't bother adding a conditional to hide these
1696 // Also meta and link are only valid in WikiText as Microdata elements
1697 // (ie: validateTag rejects tags missing the attributes needed for Microdata)
1698 // So we don't bother including $common attributes that have no purpose.
1699 'meta' => array( 'itemprop', 'content' ),
1700 'link' => array( 'itemprop', 'href' ),
1703 $staticInitialised = $globalContext;
1709 * Take a fragment of (potentially invalid) HTML and return
1710 * a version with any tags removed, encoded as plain text.
1712 * Warning: this return value must be further escaped for literal
1713 * inclusion in HTML output as of 1.10!
1715 * @param string $text HTML fragment
1718 static function stripAllTags( $text ) {
1720 $text = StringUtils
::delimiterReplace( '<', '>', '', $text );
1722 # Normalize &entities and whitespace
1723 $text = self
::decodeCharReferences( $text );
1724 $text = self
::normalizeWhitespace( $text );
1730 * Hack up a private DOCTYPE with HTML's standard entity declarations.
1731 * PHP 4 seemed to know these if you gave it an HTML doctype, but
1734 * Use for passing XHTML fragments to PHP's XML parsing functions
1738 static function hackDocType() {
1739 $out = "<!DOCTYPE html [\n";
1740 foreach ( self
::$htmlEntities as $entity => $codepoint ) {
1741 $out .= "<!ENTITY $entity \"&#$codepoint;\">";
1748 * @param string $url
1749 * @return mixed|string
1751 static function cleanUrl( $url ) {
1752 # Normalize any HTML entities in input. They will be
1753 # re-escaped by makeExternalLink().
1754 $url = Sanitizer
::decodeCharReferences( $url );
1756 # Escape any control characters introduced by the above step
1757 $url = preg_replace_callback( '/[\][<>"\\x00-\\x20\\x7F\|]/',
1758 array( __CLASS__
, 'cleanUrlCallback' ), $url );
1760 # Validate hostname portion
1762 if ( preg_match( '!^([^:]+:)(//[^/]+)?(.*)$!iD', $url, $matches ) ) {
1763 list( /* $whole */, $protocol, $host, $rest ) = $matches;
1765 // Characters that will be ignored in IDNs.
1766 // http://tools.ietf.org/html/3454#section-3.1
1767 // Strip them before further processing so blacklists and such work.
1769 \\s| # general whitespace
1770 \xc2\xad| # 00ad SOFT HYPHEN
1771 \xe1\xa0\x86| # 1806 MONGOLIAN TODO SOFT HYPHEN
1772 \xe2\x80\x8b| # 200b ZERO WIDTH SPACE
1773 \xe2\x81\xa0| # 2060 WORD JOINER
1774 \xef\xbb\xbf| # feff ZERO WIDTH NO-BREAK SPACE
1775 \xcd\x8f| # 034f COMBINING GRAPHEME JOINER
1776 \xe1\xa0\x8b| # 180b MONGOLIAN FREE VARIATION SELECTOR ONE
1777 \xe1\xa0\x8c| # 180c MONGOLIAN FREE VARIATION SELECTOR TWO
1778 \xe1\xa0\x8d| # 180d MONGOLIAN FREE VARIATION SELECTOR THREE
1779 \xe2\x80\x8c| # 200c ZERO WIDTH NON-JOINER
1780 \xe2\x80\x8d| # 200d ZERO WIDTH JOINER
1781 [\xef\xb8\x80-\xef\xb8\x8f] # fe00-fe0f VARIATION SELECTOR-1-16
1784 $host = preg_replace( $strip, '', $host );
1786 // @todo FIXME: Validate hostnames here
1788 return $protocol . $host . $rest;
1795 * @param array $matches
1798 static function cleanUrlCallback( $matches ) {
1799 return urlencode( $matches[0] );
1803 * Does a string look like an e-mail address?
1805 * This validates an email address using an HTML5 specification found at:
1806 * http://www.whatwg.org/html/states-of-the-type-attribute.html#valid-e-mail-address
1807 * Which as of 2011-01-24 says:
1809 * A valid e-mail address is a string that matches the ABNF production
1810 * 1*( atext / "." ) "@" ldh-str *( "." ldh-str ) where atext is defined
1811 * in RFC 5322 section 3.2.3, and ldh-str is defined in RFC 1034 section
1814 * This function is an implementation of the specification as requested in
1817 * Client-side forms will use the same standard validation rules via JS or
1818 * HTML 5 validation; additional restrictions can be enforced server-side
1819 * by extensions via the 'isValidEmailAddr' hook.
1821 * Note that this validation doesn't 100% match RFC 2822, but is believed
1822 * to be liberal enough for wide use. Some invalid addresses will still
1823 * pass validation here.
1827 * @param string $addr E-mail address
1830 public static function validateEmail( $addr ) {
1832 if ( !wfRunHooks( 'isValidEmailAddr', array( $addr, &$result ) ) ) {
1836 // Please note strings below are enclosed in brackets [], this make the
1837 // hyphen "-" a range indicator. Hence it is double backslashed below.
1839 $rfc5322_atext = "a-z0-9!#$%&'*+\\-\/=?^_`{|}~";
1840 $rfc1034_ldh_str = "a-z0-9\\-";
1842 $html5_email_regexp = "/
1844 [$rfc5322_atext\\.]+ # user part which is liberal :p
1846 [$rfc1034_ldh_str]+ # First domain part
1847 (\\.[$rfc1034_ldh_str]+)* # Following part prefixed with a dot
1849 /ix"; // case Insensitive, eXtended
1851 return (bool)preg_match( $html5_email_regexp, $addr );