php-src/ext/bcmath/bcmath.c

571 lines
14 KiB
C
Raw Normal View History

1999-04-22 07:28:00 +08:00
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
1999-04-22 07:28:00 +08:00
+----------------------------------------------------------------------+
2006-01-01 20:51:34 +08:00
| This source file is subject to version 3.01 of the PHP license, |
1999-07-16 21:13:16 +08:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2006-01-01 20:51:34 +08:00
| http://www.php.net/license/3_01.txt |
1999-07-16 21:13:16 +08:00
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
1999-04-22 07:28:00 +08:00
+----------------------------------------------------------------------+
2018-11-02 00:30:28 +08:00
| Author: Andi Gutmans <andi@php.net> |
1999-04-22 07:28:00 +08:00
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
1999-04-22 07:28:00 +08:00
#include "php.h"
#if HAVE_BCMATH
1999-04-22 07:28:00 +08:00
#include "php_ini.h"
#include "zend_exceptions.h"
2019-08-11 00:02:13 +08:00
#include "bcmath_arginfo.h"
2000-10-08 19:45:18 +08:00
#include "ext/standard/info.h"
#include "php_bcmath.h"
#include "libbcmath/src/bcmath.h"
1999-04-22 07:28:00 +08:00
ZEND_DECLARE_MODULE_GLOBALS(bcmath)
static PHP_GINIT_FUNCTION(bcmath);
static PHP_GSHUTDOWN_FUNCTION(bcmath);
zend_module_entry bcmath_module_entry = {
STANDARD_MODULE_HEADER,
2000-10-08 19:45:18 +08:00
"bcmath",
ext_functions,
PHP_MINIT(bcmath),
PHP_MSHUTDOWN(bcmath),
NULL,
NULL,
2000-10-08 19:45:18 +08:00
PHP_MINFO(bcmath),
2015-03-24 03:13:59 +08:00
PHP_BCMATH_VERSION,
PHP_MODULE_GLOBALS(bcmath),
PHP_GINIT(bcmath),
PHP_GSHUTDOWN(bcmath),
NULL,
STANDARD_MODULE_PROPERTIES_EX
1999-04-22 07:28:00 +08:00
};
2000-05-23 17:33:51 +08:00
#ifdef COMPILE_DL_BCMATH
#ifdef ZTS
ZEND_TSRMLS_CACHE_DEFINE()
#endif
ZEND_GET_MODULE(bcmath)
1999-04-22 07:28:00 +08:00
#endif
ZEND_INI_MH(OnUpdateScale)
{
int *p;
zend_long tmp;
tmp = zend_atol(ZSTR_VAL(new_value), ZSTR_LEN(new_value));
if (tmp < 0 || tmp > INT_MAX) {
return FAILURE;
}
p = (int *) ZEND_INI_GET_ADDR();
*p = (int) tmp;
return SUCCESS;
}
/* {{{ PHP_INI */
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("bcmath.scale", "0", PHP_INI_ALL, OnUpdateScale, bc_precision, zend_bcmath_globals, bcmath_globals)
PHP_INI_END()
/* }}} */
1999-04-22 07:28:00 +08:00
/* {{{ PHP_GINIT_FUNCTION
*/
static PHP_GINIT_FUNCTION(bcmath)
{
#if defined(COMPILE_DL_BCMATH) && defined(ZTS)
ZEND_TSRMLS_CACHE_UPDATE();
#endif
bcmath_globals->bc_precision = 0;
2014-12-14 06:06:14 +08:00
bc_init_numbers();
}
/* }}} */
/* {{{ PHP_GSHUTDOWN_FUNCTION
*/
static PHP_GSHUTDOWN_FUNCTION(bcmath)
{
_bc_free_num_ex(&bcmath_globals->_zero_, 1);
_bc_free_num_ex(&bcmath_globals->_one_, 1);
_bc_free_num_ex(&bcmath_globals->_two_, 1);
}
/* }}} */
/* {{{ PHP_MINIT_FUNCTION
*/
PHP_MINIT_FUNCTION(bcmath)
1999-04-22 07:28:00 +08:00
{
REGISTER_INI_ENTRIES();
1999-04-22 07:28:00 +08:00
return SUCCESS;
}
/* }}} */
1999-04-22 07:28:00 +08:00
/* {{{ PHP_MSHUTDOWN_FUNCTION
*/
PHP_MSHUTDOWN_FUNCTION(bcmath)
{
UNREGISTER_INI_ENTRIES();
return SUCCESS;
}
/* }}} */
/* {{{ PHP_MINFO_FUNCTION
*/
2000-10-08 19:45:18 +08:00
PHP_MINFO_FUNCTION(bcmath)
{
php_info_print_table_start();
php_info_print_table_row(2, "BCMath support", "enabled");
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
2000-10-08 19:45:18 +08:00
}
/* }}} */
2000-10-08 19:45:18 +08:00
/* {{{ php_str2num
Convert to bc_num detecting scale */
2014-12-14 06:06:14 +08:00
static void php_str2num(bc_num *num, char *str)
{
char *p;
if (!(p = strchr(str, '.'))) {
if (!bc_str2num(num, str, 0)) {
php_error_docref(NULL, E_WARNING, "bcmath function argument is not well-formed");
}
return;
}
if (!bc_str2num(num, str, strlen(p+1))) {
php_error_docref(NULL, E_WARNING, "bcmath function argument is not well-formed");
}
}
/* }}} */
1999-04-22 07:28:00 +08:00
/* {{{ proto string bcadd(string left_operand, string right_operand [, int scale])
Returns the sum of two arbitrary precision numbers */
PHP_FUNCTION(bcadd)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left, *right;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num first, second, result;
int scale;
2008-06-25 00:01:32 +08:00
ZEND_PARSE_PARAMETERS_START(2, 3)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
1999-04-22 07:28:00 +08:00
}
2008-06-25 00:01:32 +08:00
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
bc_init_num(&result);
2016-12-28 15:35:38 +08:00
php_str2num(&first, ZSTR_VAL(left));
php_str2num(&second, ZSTR_VAL(right));
2001-08-12 00:39:07 +08:00
bc_add (first, second, &result, scale);
2015-01-03 17:22:58 +08:00
RETVAL_STR(bc_num2str_ex(result, scale));
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-22 07:28:00 +08:00
return;
}
/* }}} */
/* {{{ proto string bcsub(string left_operand, string right_operand [, int scale])
2000-02-22 23:48:43 +08:00
Returns the difference between two arbitrary precision numbers */
PHP_FUNCTION(bcsub)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left, *right;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num first, second, result;
int scale;
2008-06-25 00:01:32 +08:00
ZEND_PARSE_PARAMETERS_START(2, 3)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
1999-04-22 07:28:00 +08:00
}
2008-06-25 00:01:32 +08:00
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
bc_init_num(&result);
2016-12-28 15:35:38 +08:00
php_str2num(&first, ZSTR_VAL(left));
php_str2num(&second, ZSTR_VAL(right));
2001-08-12 00:39:07 +08:00
bc_sub (first, second, &result, scale);
2008-06-25 00:01:32 +08:00
RETVAL_STR(bc_num2str_ex(result, scale));
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-22 07:28:00 +08:00
return;
}
/* }}} */
/* {{{ proto string bcmul(string left_operand, string right_operand [, int scale])
Returns the multiplication of two arbitrary precision numbers */
PHP_FUNCTION(bcmul)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left, *right;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num first, second, result;
int scale;
2008-06-25 00:01:32 +08:00
ZEND_PARSE_PARAMETERS_START(2, 3)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
2008-06-25 00:01:32 +08:00
}
2015-01-03 17:22:58 +08:00
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
bc_init_num(&result);
2016-12-28 15:35:38 +08:00
php_str2num(&first, ZSTR_VAL(left));
php_str2num(&second, ZSTR_VAL(right));
2014-12-14 06:06:14 +08:00
bc_multiply (first, second, &result, scale);
2008-06-25 00:01:32 +08:00
RETVAL_STR(bc_num2str_ex(result, scale));
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-22 07:28:00 +08:00
return;
}
/* }}} */
/* {{{ proto string bcdiv(string left_operand, string right_operand [, int scale])
Returns the quotient of two arbitrary precision numbers (division) */
PHP_FUNCTION(bcdiv)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left, *right;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num first, second, result;
int scale = BCG(bc_precision);
2008-06-25 00:01:32 +08:00
ZEND_PARSE_PARAMETERS_START(2, 3)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
1999-04-22 07:28:00 +08:00
}
2015-01-03 17:22:58 +08:00
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
bc_init_num(&result);
2016-12-28 15:35:38 +08:00
php_str2num(&first, ZSTR_VAL(left));
php_str2num(&second, ZSTR_VAL(right));
2008-06-25 00:01:32 +08:00
2014-12-14 06:06:14 +08:00
switch (bc_divide(first, second, &result, scale)) {
1999-04-22 07:28:00 +08:00
case 0: /* OK */
RETVAL_STR(bc_num2str_ex(result, scale));
1999-04-22 07:28:00 +08:00
break;
case -1: /* division by zero */
zend_throw_exception_ex(zend_ce_division_by_zero_error, 0, "Division by zero");
1999-04-22 07:28:00 +08:00
break;
}
2008-06-25 00:01:32 +08:00
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-22 07:28:00 +08:00
return;
}
/* }}} */
/* {{{ proto string bcmod(string left_operand, string right_operand [, int scale])
1999-04-22 07:28:00 +08:00
Returns the modulus of the two arbitrary precision operands */
PHP_FUNCTION(bcmod)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left, *right;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num first, second, result;
int scale = BCG(bc_precision);
1999-04-22 07:28:00 +08:00
ZEND_PARSE_PARAMETERS_START(2, 3)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
}
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
bc_init_num(&result);
php_str2num(&first, ZSTR_VAL(left));
php_str2num(&second, ZSTR_VAL(right));
2015-01-03 17:22:58 +08:00
switch (bc_modulo(first, second, &result, scale)) {
1999-04-22 07:28:00 +08:00
case 0:
RETVAL_STR(bc_num2str_ex(result, scale));
1999-04-22 07:28:00 +08:00
break;
case -1:
zend_throw_exception_ex(zend_ce_division_by_zero_error, 0, "Modulo by zero");
1999-04-22 07:28:00 +08:00
break;
}
2015-01-03 17:22:58 +08:00
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-22 07:28:00 +08:00
}
/* }}} */
/* {{{ proto string bcpowmod(string x, string y, string mod [, int scale])
2019-08-11 00:02:13 +08:00
Returns the value of an arbitrary precision number raised to the power of another reduced by a modulus */
PHP_FUNCTION(bcpowmod)
{
2019-08-11 00:02:13 +08:00
zend_string *left, *right, *modulus;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
bc_num first, second, mod, result;
int scale = BCG(bc_precision);
ZEND_PARSE_PARAMETERS_START(3, 4)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
2019-08-11 00:02:13 +08:00
Z_PARAM_STR(modulus)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(4, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
}
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
bc_init_num(&mod);
bc_init_num(&result);
2016-12-28 15:35:38 +08:00
php_str2num(&first, ZSTR_VAL(left));
php_str2num(&second, ZSTR_VAL(right));
2019-08-11 00:02:13 +08:00
php_str2num(&mod, ZSTR_VAL(modulus));
if (bc_raisemod(first, second, mod, &result, scale) != -1) {
RETVAL_STR(bc_num2str_ex(result, scale));
} else {
RETVAL_FALSE;
2003-03-20 08:22:57 +08:00
}
2015-01-03 17:22:58 +08:00
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&mod);
bc_free_num(&result);
}
/* }}} */
1999-04-22 07:28:00 +08:00
/* {{{ proto string bcpow(string x, string y [, int scale])
Returns the value of an arbitrary precision number raised to the power of another */
PHP_FUNCTION(bcpow)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left, *right;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num first, second, result;
int scale = BCG(bc_precision);
2008-06-25 00:01:32 +08:00
ZEND_PARSE_PARAMETERS_START(2, 3)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
1999-04-22 07:28:00 +08:00
}
2008-06-25 00:01:32 +08:00
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
bc_init_num(&result);
2016-12-28 15:35:38 +08:00
php_str2num(&first, ZSTR_VAL(left));
php_str2num(&second, ZSTR_VAL(right));
2014-12-14 06:06:14 +08:00
bc_raise (first, second, &result, scale);
2008-06-25 00:01:32 +08:00
RETVAL_STR(bc_num2str_ex(result, scale));
bc_free_num(&first);
bc_free_num(&second);
bc_free_num(&result);
1999-04-22 07:28:00 +08:00
}
/* }}} */
/* {{{ proto string bcsqrt(string operand [, int scale])
2018-08-10 10:19:55 +08:00
Returns the square root of an arbitrary precision number */
PHP_FUNCTION(bcsqrt)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num result;
int scale = BCG(bc_precision);
2008-06-25 00:01:32 +08:00
ZEND_PARSE_PARAMETERS_START(1, 2)
Z_PARAM_STR(left)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(2, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
1999-04-22 07:28:00 +08:00
}
2008-06-25 00:01:32 +08:00
2014-12-14 06:06:14 +08:00
bc_init_num(&result);
2016-12-28 15:35:38 +08:00
php_str2num(&result, ZSTR_VAL(left));
2015-01-03 17:22:58 +08:00
2014-12-14 06:06:14 +08:00
if (bc_sqrt (&result, scale) != 0) {
RETVAL_STR(bc_num2str_ex(result, scale));
1999-04-22 07:28:00 +08:00
} else {
zend_value_error("Square root of negative number");
1999-04-22 07:28:00 +08:00
}
2008-06-25 00:01:32 +08:00
bc_free_num(&result);
1999-04-22 07:28:00 +08:00
return;
}
/* }}} */
2003-06-12 20:21:33 +08:00
/* {{{ proto int bccomp(string left_operand, string right_operand [, int scale])
1999-04-22 07:28:00 +08:00
Compares two arbitrary precision numbers */
PHP_FUNCTION(bccomp)
1999-04-22 07:28:00 +08:00
{
2016-12-28 15:35:38 +08:00
zend_string *left, *right;
zend_long scale_param;
zend_bool scale_param_is_null = 1;
1999-04-22 07:28:00 +08:00
bc_num first, second;
int scale = BCG(bc_precision);
2008-06-25 00:01:32 +08:00
ZEND_PARSE_PARAMETERS_START(2, 3)
Z_PARAM_STR(left)
Z_PARAM_STR(right)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(scale_param, scale_param_is_null)
ZEND_PARSE_PARAMETERS_END();
2015-01-03 17:22:58 +08:00
if (scale_param_is_null) {
scale = BCG(bc_precision);
} else if (scale_param < 0 || scale_param > INT_MAX) {
zend_argument_value_error(3, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
} else {
scale = (int) scale_param;
1999-04-22 07:28:00 +08:00
}
2014-12-14 06:06:14 +08:00
bc_init_num(&first);
bc_init_num(&second);
1999-04-22 07:28:00 +08:00
if (!bc_str2num(&first, ZSTR_VAL(left), scale)) {
php_error_docref(NULL, E_WARNING, "bcmath function argument is not well-formed");
}
if (!bc_str2num(&second, ZSTR_VAL(right), scale)) {
php_error_docref(NULL, E_WARNING, "bcmath function argument is not well-formed");
}
2014-08-26 01:24:55 +08:00
RETVAL_LONG(bc_compare(first, second));
1999-04-22 07:28:00 +08:00
bc_free_num(&first);
bc_free_num(&second);
1999-04-22 07:28:00 +08:00
return;
}
/* }}} */
2017-09-06 20:53:27 +08:00
/* {{{ proto int bcscale([int scale])
1999-04-22 07:28:00 +08:00
Sets default scale parameter for all bc math functions */
PHP_FUNCTION(bcscale)
1999-04-22 07:28:00 +08:00
{
zend_long old_scale, new_scale;
zend_bool new_scale_is_null = 1;
2015-01-03 17:22:58 +08:00
ZEND_PARSE_PARAMETERS_START(0, 1)
Z_PARAM_OPTIONAL
Z_PARAM_LONG_OR_NULL(new_scale, new_scale_is_null)
ZEND_PARSE_PARAMETERS_END();
2008-06-25 00:01:32 +08:00
old_scale = BCG(bc_precision);
if (!new_scale_is_null) {
if (new_scale < 0 || new_scale > INT_MAX) {
zend_argument_value_error(1, "must be between 0 and %d", INT_MAX);
RETURN_THROWS();
}
BCG(bc_precision) = (int) new_scale;
}
2003-04-03 07:51:52 +08:00
RETURN_LONG(old_scale);
1999-04-22 07:28:00 +08:00
}
/* }}} */
#endif