2015-08-25 19:57:23 +00:00
|
|
|
<?php
|
2017-04-17 14:40:11 +00:00
|
|
|
|
2019-09-02 08:25:56 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-12-31 16:40:54 +00:00
|
|
|
|
2015-08-25 19:57:23 +00:00
|
|
|
/**
|
|
|
|
* Tokenizer for AbuseFilter rules.
|
|
|
|
*/
|
|
|
|
class AbuseFilterTokenizer {
|
|
|
|
/** @var int Tokenizer cache version. Increment this when changing the syntax. **/
|
2019-09-07 11:34:56 +00:00
|
|
|
const CACHE_VERSION = 2;
|
2015-08-25 19:57:23 +00:00
|
|
|
const COMMENT_START_RE = '/\s*\/\*/A';
|
|
|
|
const ID_SYMBOL_RE = '/[0-9A-Za-z_]+/A';
|
2016-04-09 13:35:35 +00:00
|
|
|
const OPERATOR_RE =
|
|
|
|
'/(\!\=\=|\!\=|\!|\*\*|\*|\/|\+|\-|%|&|\||\^|\:\=|\?|\:|\<\=|\<|\>\=|\>|\=\=\=|\=\=|\=)/A';
|
2019-08-10 16:53:29 +00:00
|
|
|
/** @deprecated In favour of V2 */
|
2018-12-31 16:40:54 +00:00
|
|
|
const RADIX_RE = '/([0-9A-Fa-f]+(?:\.\d*)?|\.\d+)([bxo])?(?![a-z])/Au';
|
2019-09-07 11:34:56 +00:00
|
|
|
const BASE = '0(?<base>[xbo])';
|
|
|
|
const DIGIT = '[0-9A-Fa-f]';
|
|
|
|
const DIGITS = self::DIGIT . '+' . '(?:\.\d*)?|\.\d+';
|
|
|
|
// New numbers regex. Note that the last lookahead can be changed to (?!self::DIGIT) once we
|
|
|
|
// drop the old syntax
|
|
|
|
const RADIX_RE_V2 = '/(?:' . self::BASE . ')?(?<input>' . self::DIGITS . ')(?!\w)/Au';
|
2015-08-25 19:57:23 +00:00
|
|
|
const WHITESPACE = "\011\012\013\014\015\040";
|
|
|
|
|
|
|
|
// Order is important. The punctuation-matching regex requires that
|
2017-07-08 18:49:13 +00:00
|
|
|
// ** comes before *, etc. They are sorted to make it easy to spot
|
|
|
|
// such errors.
|
2017-06-15 14:23:34 +00:00
|
|
|
public static $operators = [
|
2018-04-04 21:14:25 +00:00
|
|
|
// Inequality
|
|
|
|
'!==', '!=', '!',
|
|
|
|
// Multiplication/exponentiation
|
|
|
|
'**', '*',
|
|
|
|
// Other arithmetic
|
|
|
|
'/', '+', '-', '%',
|
|
|
|
// Logic
|
|
|
|
'&', '|', '^',
|
|
|
|
// Setting
|
|
|
|
':=',
|
|
|
|
// Ternary
|
|
|
|
'?', ':',
|
|
|
|
// Less than
|
|
|
|
'<=', '<',
|
|
|
|
// Greater than
|
|
|
|
'>=', '>',
|
|
|
|
// Equality
|
|
|
|
'===', '==', '=',
|
2017-06-15 14:23:34 +00:00
|
|
|
];
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2017-06-15 14:23:34 +00:00
|
|
|
public static $punctuation = [
|
2015-09-28 18:03:35 +00:00
|
|
|
',' => AFPToken::TCOMMA,
|
|
|
|
'(' => AFPToken::TBRACE,
|
|
|
|
')' => AFPToken::TBRACE,
|
|
|
|
'[' => AFPToken::TSQUAREBRACKET,
|
|
|
|
']' => AFPToken::TSQUAREBRACKET,
|
|
|
|
';' => AFPToken::TSTATEMENTSEPARATOR,
|
2017-06-15 14:23:34 +00:00
|
|
|
];
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2017-06-15 14:23:34 +00:00
|
|
|
public static $bases = [
|
2015-08-25 19:57:23 +00:00
|
|
|
'b' => 2,
|
|
|
|
'x' => 16,
|
|
|
|
'o' => 8
|
2017-06-15 14:23:34 +00:00
|
|
|
];
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2017-06-15 14:23:34 +00:00
|
|
|
public static $baseCharsRe = [
|
2015-08-25 19:57:23 +00:00
|
|
|
2 => '/^[01]+$/',
|
2019-09-07 11:34:56 +00:00
|
|
|
8 => '/^[0-7]+$/',
|
2015-08-25 19:57:23 +00:00
|
|
|
16 => '/^[0-9A-Fa-f]+$/',
|
|
|
|
10 => '/^[0-9.]+$/',
|
2017-06-15 14:23:34 +00:00
|
|
|
];
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2017-06-15 14:23:34 +00:00
|
|
|
public static $keywords = [
|
2015-08-25 19:57:23 +00:00
|
|
|
'in', 'like', 'true', 'false', 'null', 'contains', 'matches',
|
|
|
|
'rlike', 'irlike', 'regex', 'if', 'then', 'else', 'end',
|
2017-06-15 14:23:34 +00:00
|
|
|
];
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2019-08-21 10:04:10 +00:00
|
|
|
/**
|
|
|
|
* @var BagOStuff
|
|
|
|
*/
|
|
|
|
private $cache;
|
|
|
|
|
2019-09-02 08:25:56 +00:00
|
|
|
/**
|
|
|
|
* @var LoggerInterface
|
|
|
|
*/
|
|
|
|
private $logger;
|
|
|
|
|
2019-08-21 10:04:10 +00:00
|
|
|
/**
|
|
|
|
* @param BagOStuff $cache
|
2019-09-02 08:25:56 +00:00
|
|
|
* @param LoggerInterface $logger
|
2019-08-21 10:04:10 +00:00
|
|
|
*/
|
2019-09-02 08:25:56 +00:00
|
|
|
public function __construct( BagOStuff $cache, LoggerInterface $logger ) {
|
2019-08-21 10:04:10 +00:00
|
|
|
$this->cache = $cache;
|
2019-09-02 08:25:56 +00:00
|
|
|
$this->logger = $logger;
|
2019-08-21 10:04:10 +00:00
|
|
|
}
|
|
|
|
|
2019-04-14 08:59:39 +00:00
|
|
|
/**
|
|
|
|
* Get a cache key used to store the tokenized code
|
|
|
|
*
|
|
|
|
* @param string $code Not yet tokenized
|
|
|
|
* @return string
|
2019-04-23 17:08:44 +00:00
|
|
|
* @internal
|
2019-04-14 08:59:39 +00:00
|
|
|
*/
|
2019-08-21 10:04:10 +00:00
|
|
|
public function getCacheKey( $code ) {
|
|
|
|
return $this->cache->makeGlobalKey( __CLASS__, self::CACHE_VERSION, crc32( $code ) );
|
2019-04-14 08:59:39 +00:00
|
|
|
}
|
|
|
|
|
2015-08-25 19:57:23 +00:00
|
|
|
/**
|
2019-04-23 17:08:44 +00:00
|
|
|
* Get the tokens for the given code.
|
|
|
|
*
|
2015-08-25 21:15:13 +00:00
|
|
|
* @param string $code
|
2018-09-22 08:48:16 +00:00
|
|
|
* @return array[]
|
2015-08-25 19:57:23 +00:00
|
|
|
*/
|
2019-08-21 10:04:10 +00:00
|
|
|
public function getTokens( $code ) {
|
|
|
|
$tokens = $this->cache->getWithSetCallback(
|
|
|
|
$this->getCacheKey( $code ),
|
|
|
|
BagOStuff::TTL_DAY,
|
2019-05-28 08:11:03 +00:00
|
|
|
function () use ( $code ) {
|
2019-09-02 08:25:56 +00:00
|
|
|
return $this->tokenize( $code );
|
2019-05-28 08:11:03 +00:00
|
|
|
}
|
2019-04-23 17:08:44 +00:00
|
|
|
);
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2019-04-23 17:08:44 +00:00
|
|
|
return $tokens;
|
|
|
|
}
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2019-04-23 17:08:44 +00:00
|
|
|
/**
|
|
|
|
* @param string $code
|
|
|
|
* @return array[]
|
|
|
|
*/
|
2019-09-02 08:25:56 +00:00
|
|
|
private function tokenize( $code ) {
|
2017-06-15 14:23:34 +00:00
|
|
|
$tokens = [];
|
2015-10-22 20:29:53 +00:00
|
|
|
$curPos = 0;
|
2015-08-25 19:57:23 +00:00
|
|
|
|
2015-10-22 20:29:53 +00:00
|
|
|
do {
|
|
|
|
$prevPos = $curPos;
|
2019-09-02 08:25:56 +00:00
|
|
|
$token = $this->nextToken( $code, $curPos );
|
2017-06-15 14:23:34 +00:00
|
|
|
$tokens[ $token->pos ] = [ $token, $curPos ];
|
2015-10-22 20:29:53 +00:00
|
|
|
} while ( $curPos !== $prevPos );
|
|
|
|
|
2015-08-25 19:57:23 +00:00
|
|
|
return $tokens;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-25 21:15:13 +00:00
|
|
|
* @param string $code
|
2017-08-04 23:14:10 +00:00
|
|
|
* @param int &$offset
|
2015-08-25 19:57:23 +00:00
|
|
|
* @return AFPToken
|
|
|
|
* @throws AFPException
|
|
|
|
* @throws AFPUserVisibleException
|
|
|
|
*/
|
2019-09-02 08:25:56 +00:00
|
|
|
private function nextToken( $code, &$offset ) {
|
2017-06-15 14:23:34 +00:00
|
|
|
$matches = [];
|
2015-08-25 19:57:23 +00:00
|
|
|
$start = $offset;
|
|
|
|
|
|
|
|
// Read past comments
|
|
|
|
while ( preg_match( self::COMMENT_START_RE, $code, $matches, 0, $offset ) ) {
|
2018-04-10 17:26:02 +00:00
|
|
|
if ( strpos( $code, '*/', $offset ) === false ) {
|
|
|
|
throw new AFPUserVisibleException(
|
|
|
|
'unclosedcomment', $offset, [] );
|
|
|
|
}
|
2015-08-25 19:57:23 +00:00
|
|
|
$offset = strpos( $code, '*/', $offset ) + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spaces
|
|
|
|
$offset += strspn( $code, self::WHITESPACE, $offset );
|
|
|
|
if ( $offset >= strlen( $code ) ) {
|
2015-09-28 18:03:35 +00:00
|
|
|
return new AFPToken( AFPToken::TNONE, '', $start );
|
2015-08-25 19:57:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$chr = $code[$offset];
|
|
|
|
|
|
|
|
// Punctuation
|
|
|
|
if ( isset( self::$punctuation[$chr] ) ) {
|
|
|
|
$offset++;
|
|
|
|
return new AFPToken( self::$punctuation[$chr], $chr, $start );
|
|
|
|
}
|
|
|
|
|
|
|
|
// String literal
|
|
|
|
if ( $chr === '"' || $chr === "'" ) {
|
|
|
|
return self::readStringLiteral( $code, $offset, $start );
|
|
|
|
}
|
|
|
|
|
2017-06-15 14:23:34 +00:00
|
|
|
$matches = [];
|
2015-08-25 19:57:23 +00:00
|
|
|
|
|
|
|
// Operators
|
|
|
|
if ( preg_match( self::OPERATOR_RE, $code, $matches, 0, $offset ) ) {
|
|
|
|
$token = $matches[0];
|
|
|
|
$offset += strlen( $token );
|
2015-09-28 18:03:35 +00:00
|
|
|
return new AFPToken( AFPToken::TOP, $token, $start );
|
2015-08-25 19:57:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Numbers
|
2019-09-07 11:34:56 +00:00
|
|
|
$matchesv2 = [];
|
|
|
|
if ( preg_match( self::RADIX_RE_V2, $code, $matchesv2, 0, $offset ) ) {
|
2019-08-10 16:53:29 +00:00
|
|
|
// Experimental new syntax for non-decimal numbers, T212730
|
2019-09-07 11:34:56 +00:00
|
|
|
$token = $matchesv2[0];
|
|
|
|
$baseChar = $matchesv2['base'];
|
|
|
|
$input = $matchesv2['input'];
|
2019-08-10 16:53:29 +00:00
|
|
|
$base = $baseChar ? self::$bases[$baseChar] : 10;
|
2019-09-07 11:34:56 +00:00
|
|
|
if ( preg_match( self::$baseCharsRe[$base], $input ) ) {
|
|
|
|
if ( $base !== 10 ) {
|
|
|
|
// This is to check that the new syntax is working. Remove when removing the old syntax
|
|
|
|
$this->logger->info(
|
|
|
|
'Successfully parsed a non-decimal number with new syntax. ' .
|
|
|
|
'Base: {number_base}, number: {number_input}',
|
|
|
|
[ 'number_base' => $base, 'number_input' => $input ]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$num = $base !== 10 ? base_convert( $input, $base, 10 ) : $input;
|
|
|
|
$offset += strlen( $token );
|
|
|
|
return ( strpos( $input, '.' ) !== false )
|
|
|
|
? new AFPToken( AFPToken::TFLOAT, floatval( $num ), $start )
|
|
|
|
: new AFPToken( AFPToken::TINT, intval( $num ), $start );
|
2019-08-10 16:53:29 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-25 19:57:23 +00:00
|
|
|
if ( preg_match( self::RADIX_RE, $code, $matches, 0, $offset ) ) {
|
2019-05-15 14:12:51 +00:00
|
|
|
list( $token, $input ) = $matches;
|
2018-05-31 18:53:03 +00:00
|
|
|
$baseChar = $matches[2] ?? null;
|
2015-08-25 19:57:23 +00:00
|
|
|
// Sometimes the base char gets mixed in with the rest of it because
|
|
|
|
// the regex targets hex, too.
|
|
|
|
// This mostly happens with binary
|
|
|
|
if ( !$baseChar && !empty( self::$bases[ substr( $input, - 1 ) ] ) ) {
|
|
|
|
$baseChar = substr( $input, - 1, 1 );
|
|
|
|
$input = substr( $input, 0, - 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
$base = $baseChar ? self::$bases[$baseChar] : 10;
|
|
|
|
|
|
|
|
// Check against the appropriate character class for input validation
|
|
|
|
if ( preg_match( self::$baseCharsRe[$base], $input ) ) {
|
2019-08-03 16:56:38 +00:00
|
|
|
if ( $base !== 10 ) {
|
2019-08-10 16:53:29 +00:00
|
|
|
// Old syntax, this is deprecated
|
2019-09-02 08:25:56 +00:00
|
|
|
$this->logger->warning(
|
2019-09-07 11:34:56 +00:00
|
|
|
'DEPRECATED! This syntax for non-decimal numbers has been deprecated in 1.34 and will ' .
|
|
|
|
'be removed in 1.35. Please switch to the new syntax, which is the same ' .
|
|
|
|
'as PHP\'s. Found number with base: {number_base}, integer part: {number_input}.',
|
2019-08-03 16:56:38 +00:00
|
|
|
[ 'number_base' => $base, 'number_input' => $input ]
|
|
|
|
);
|
|
|
|
}
|
2015-08-25 19:57:23 +00:00
|
|
|
$num = $base !== 10 ? base_convert( $input, $base, 10 ) : $input;
|
|
|
|
$offset += strlen( $token );
|
|
|
|
return ( strpos( $input, '.' ) !== false )
|
2015-09-28 18:03:35 +00:00
|
|
|
? new AFPToken( AFPToken::TFLOAT, floatval( $num ), $start )
|
|
|
|
: new AFPToken( AFPToken::TINT, intval( $num ), $start );
|
2015-08-25 19:57:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// IDs / Keywords
|
|
|
|
|
|
|
|
if ( preg_match( self::ID_SYMBOL_RE, $code, $matches, 0, $offset ) ) {
|
|
|
|
$token = $matches[0];
|
|
|
|
$offset += strlen( $token );
|
|
|
|
$type = in_array( $token, self::$keywords )
|
2015-09-28 18:03:35 +00:00
|
|
|
? AFPToken::TKEYWORD
|
2015-08-25 19:57:23 +00:00
|
|
|
: AFPToken::TID;
|
|
|
|
return new AFPToken( $type, $token, $start );
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new AFPUserVisibleException(
|
2017-06-15 14:23:34 +00:00
|
|
|
'unrecognisedtoken', $start, [ substr( $code, $start ) ] );
|
2015-08-25 19:57:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-25 21:15:13 +00:00
|
|
|
* @param string $code
|
|
|
|
* @param int &$offset
|
|
|
|
* @param int $start
|
|
|
|
* @return AFPToken
|
2015-08-25 19:57:23 +00:00
|
|
|
* @throws AFPException
|
|
|
|
* @throws AFPUserVisibleException
|
|
|
|
*/
|
2019-08-21 10:04:10 +00:00
|
|
|
private static function readStringLiteral( $code, &$offset, $start ) {
|
2015-08-25 19:57:23 +00:00
|
|
|
$type = $code[$offset];
|
|
|
|
$offset++;
|
|
|
|
$length = strlen( $code );
|
|
|
|
$token = '';
|
|
|
|
while ( $offset < $length ) {
|
|
|
|
if ( $code[$offset] === $type ) {
|
|
|
|
$offset++;
|
2015-09-28 18:03:35 +00:00
|
|
|
return new AFPToken( AFPToken::TSTRING, $token, $start );
|
2015-08-25 19:57:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Performance: Use a PHP function (implemented in C)
|
|
|
|
// to scan ahead.
|
|
|
|
$addLength = strcspn( $code, $type . "\\", $offset );
|
|
|
|
if ( $addLength ) {
|
|
|
|
$token .= substr( $code, $offset, $addLength );
|
|
|
|
$offset += $addLength;
|
2018-08-26 08:34:42 +00:00
|
|
|
} elseif ( $code[$offset] === '\\' ) {
|
2015-09-28 18:03:35 +00:00
|
|
|
switch ( $code[$offset + 1] ) {
|
2015-08-25 19:57:23 +00:00
|
|
|
case '\\':
|
|
|
|
$token .= '\\';
|
|
|
|
break;
|
|
|
|
case $type:
|
|
|
|
$token .= $type;
|
|
|
|
break;
|
|
|
|
case 'n';
|
|
|
|
$token .= "\n";
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
$token .= "\r";
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
$token .= "\t";
|
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
$chr = substr( $code, $offset + 2, 2 );
|
|
|
|
|
|
|
|
if ( preg_match( '/^[0-9A-Fa-f]{2}$/', $chr ) ) {
|
2018-10-03 15:55:06 +00:00
|
|
|
$token .= chr( hexdec( $chr ) );
|
2018-04-04 21:14:25 +00:00
|
|
|
// \xXX -- 2 done later
|
|
|
|
$offset += 2;
|
2015-08-25 19:57:23 +00:00
|
|
|
} else {
|
|
|
|
$token .= 'x';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$token .= "\\" . $code[$offset + 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
$offset += 2;
|
|
|
|
|
|
|
|
} else {
|
2018-08-25 08:10:15 +00:00
|
|
|
// Should never happen
|
2019-04-13 16:27:20 +00:00
|
|
|
// @codeCoverageIgnoreStart
|
2015-08-25 19:57:23 +00:00
|
|
|
$token .= $code[$offset];
|
|
|
|
$offset++;
|
2019-04-13 16:27:20 +00:00
|
|
|
// @codeCoverageIgnoreEnd
|
2015-08-25 19:57:23 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-15 14:23:34 +00:00
|
|
|
throw new AFPUserVisibleException( 'unclosedstring', $offset, [] );
|
2015-08-25 19:57:23 +00:00
|
|
|
}
|
|
|
|
}
|