Fixed bug #47745 (FILTER_VALIDATE_INT doesn't allow minimum integer)

This commit is contained in:
Dmitry Stogov 2009-03-31 10:02:51 +00:00
parent b21948863c
commit 7dbbd25a14
2 changed files with 29 additions and 13 deletions

View File

@ -74,14 +74,12 @@
static int php_filter_parse_int(const char *str, unsigned int str_len, long *ret TSRMLS_DC) { /* {{{ */ static int php_filter_parse_int(const char *str, unsigned int str_len, long *ret TSRMLS_DC) { /* {{{ */
long ctx_value; long ctx_value;
long sign = 1; long sign = 0;
const char *end = str + str_len; const char *end = str + str_len;
double dval;
long overflow;
switch (*str) { switch (*str) {
case '-': case '-':
sign = -1; sign = 1;
case '+': case '+':
str++; str++;
default: default:
@ -95,22 +93,29 @@ static int php_filter_parse_int(const char *str, unsigned int str_len, long *ret
return -1; return -1;
} }
if ((end - str > MAX_LENGTH_OF_LONG - 1) /* number too long */
|| (SIZEOF_LONG == 4 && end - str == MAX_LENGTH_OF_LONG - 1 && *str > '2')) {
/* overflow */
return -1;
}
while (str < end) { while (str < end) {
if (*str >= '0' && *str <= '9') { if (*str >= '0' && *str <= '9') {
ZEND_SIGNED_MULTIPLY_LONG(ctx_value, 10, ctx_value, dval, overflow); ctx_value = (ctx_value * 10) + (*(str++) - '0'); \
if (overflow) {
return -1;
}
ctx_value += ((*(str++)) - '0');
if (ctx_value & LONG_SIGN_MASK) {
return -1;
}
} else { } else {
return -1; return -1;
} }
} }
if (sign) {
ctx_value = -ctx_value;
if (ctx_value > 0) { /* overflow */
return -1;
}
} else if (ctx_value < 0) { /* overflow */
return -1;
}
*ret = ctx_value * sign; *ret = ctx_value;
return 1; return 1;
} }
/* }}} */ /* }}} */

View File

@ -0,0 +1,11 @@
--TEST--
Bug #47745 (FILTER_VALIDATE_INT doesn't allow minimum integer)
--FILE--
<?php
$s = (string)(-PHP_INT_MAX-1);
var_dump(intval($s));
var_dump(filter_var($s, FILTER_VALIDATE_INT));
?>
--EXPECTF--
int(-%d)
int(-%d)