123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648 |
- /*
- +----------------------------------------------------------------------+
- | Copyright (c) The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | https://www.php.net/license/3_01.txt |
- | 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. |
- +----------------------------------------------------------------------+
- | Author: Andi Gutmans <andi@php.net> |
- +----------------------------------------------------------------------+
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include "php.h"
- #ifdef HAVE_BCMATH
- #include "php_ini.h"
- #include "zend_exceptions.h"
- #include "bcmath_arginfo.h"
- #include "ext/standard/info.h"
- #include "php_bcmath.h"
- #include "libbcmath/src/bcmath.h"
- ZEND_DECLARE_MODULE_GLOBALS(bcmath)
- static PHP_GINIT_FUNCTION(bcmath);
- static PHP_GSHUTDOWN_FUNCTION(bcmath);
- zend_module_entry bcmath_module_entry = {
- STANDARD_MODULE_HEADER,
- "bcmath",
- ext_functions,
- PHP_MINIT(bcmath),
- PHP_MSHUTDOWN(bcmath),
- NULL,
- NULL,
- PHP_MINFO(bcmath),
- PHP_BCMATH_VERSION,
- PHP_MODULE_GLOBALS(bcmath),
- PHP_GINIT(bcmath),
- PHP_GSHUTDOWN(bcmath),
- NULL,
- STANDARD_MODULE_PROPERTIES_EX
- };
- #ifdef COMPILE_DL_BCMATH
- #ifdef ZTS
- ZEND_TSRMLS_CACHE_DEFINE()
- #endif
- ZEND_GET_MODULE(bcmath)
- #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()
- /* }}} */
- /* {{{ 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;
- 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)
- {
- REGISTER_INI_ENTRIES();
- return SUCCESS;
- }
- /* }}} */
- /* {{{ PHP_MSHUTDOWN_FUNCTION */
- PHP_MSHUTDOWN_FUNCTION(bcmath)
- {
- UNREGISTER_INI_ENTRIES();
- return SUCCESS;
- }
- /* }}} */
- /* {{{ PHP_MINFO_FUNCTION */
- 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();
- }
- /* }}} */
- /* {{{ php_str2num
- Convert to bc_num detecting scale */
- static zend_result php_str2num(bc_num *num, char *str)
- {
- char *p;
- if (!(p = strchr(str, '.'))) {
- if (!bc_str2num(num, str, 0)) {
- return FAILURE;
- }
- return SUCCESS;
- }
- if (!bc_str2num(num, str, strlen(p+1))) {
- return FAILURE;
- }
- return SUCCESS;
- }
- /* }}} */
- /* {{{ Returns the sum of two arbitrary precision numbers */
- PHP_FUNCTION(bcadd)
- {
- zend_string *left, *right;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num first, second, result;
- int scale;
- 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();
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- bc_init_num(&result);
- if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- bc_add (first, second, &result, scale);
- RETVAL_STR(bc_num2str_ex(result, scale));
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Returns the difference between two arbitrary precision numbers */
- PHP_FUNCTION(bcsub)
- {
- zend_string *left, *right;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num first, second, result;
- int scale;
- 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();
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- bc_init_num(&result);
- if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- bc_sub (first, second, &result, scale);
- RETVAL_STR(bc_num2str_ex(result, scale));
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Returns the multiplication of two arbitrary precision numbers */
- PHP_FUNCTION(bcmul)
- {
- zend_string *left, *right;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num first, second, result;
- int scale;
- 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();
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- bc_init_num(&result);
- if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- bc_multiply (first, second, &result, scale);
- RETVAL_STR(bc_num2str_ex(result, scale));
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Returns the quotient of two arbitrary precision numbers (division) */
- PHP_FUNCTION(bcdiv)
- {
- zend_string *left, *right;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num first, second, result;
- int scale = BCG(bc_precision);
- 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();
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- bc_init_num(&result);
- if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- switch (bc_divide(first, second, &result, scale)) {
- case 0: /* OK */
- RETVAL_STR(bc_num2str_ex(result, scale));
- break;
- case -1: /* division by zero */
- zend_throw_exception_ex(zend_ce_division_by_zero_error, 0, "Division by zero");
- break;
- }
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Returns the modulus of the two arbitrary precision operands */
- PHP_FUNCTION(bcmod)
- {
- zend_string *left, *right;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num first, second, result;
- int scale = BCG(bc_precision);
- 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();
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- bc_init_num(&result);
- if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- switch (bc_modulo(first, second, &result, scale)) {
- case 0:
- RETVAL_STR(bc_num2str_ex(result, scale));
- break;
- case -1:
- zend_throw_exception_ex(zend_ce_division_by_zero_error, 0, "Modulo by zero");
- break;
- }
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Returns the value of an arbitrary precision number raised to the power of another reduced by a modulus */
- PHP_FUNCTION(bcpowmod)
- {
- zend_string *left, *right, *modulus;
- zend_long scale_param;
- 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)
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- bc_init_num(&mod);
- bc_init_num(&result);
- if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&mod, ZSTR_VAL(modulus)) == FAILURE) {
- zend_argument_value_error(3, "is not well-formed");
- goto cleanup;
- }
- if (bc_raisemod(first, second, mod, &result, scale) == SUCCESS) {
- RETVAL_STR(bc_num2str_ex(result, scale));
- }
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- bc_free_num(&mod);
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Returns the value of an arbitrary precision number raised to the power of another */
- PHP_FUNCTION(bcpow)
- {
- zend_string *left, *right;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num first, second, result;
- int scale = BCG(bc_precision);
- 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();
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- bc_init_num(&result);
- if (php_str2num(&first, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (php_str2num(&second, ZSTR_VAL(right)) == FAILURE) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- bc_raise (first, second, &result, scale);
- RETVAL_STR(bc_num2str_ex(result, scale));
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Returns the square root of an arbitrary precision number */
- PHP_FUNCTION(bcsqrt)
- {
- zend_string *left;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num result;
- int scale = BCG(bc_precision);
- 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();
- 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;
- }
- bc_init_num(&result);
- if (php_str2num(&result, ZSTR_VAL(left)) == FAILURE) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (bc_sqrt (&result, scale) != 0) {
- RETVAL_STR(bc_num2str_ex(result, scale));
- } else {
- zend_argument_value_error(1, "must be greater than or equal to 0");
- }
- cleanup: {
- bc_free_num(&result);
- };
- }
- /* }}} */
- /* {{{ Compares two arbitrary precision numbers */
- PHP_FUNCTION(bccomp)
- {
- zend_string *left, *right;
- zend_long scale_param;
- bool scale_param_is_null = 1;
- bc_num first, second;
- int scale = BCG(bc_precision);
- 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();
- 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;
- }
- bc_init_num(&first);
- bc_init_num(&second);
- if (!bc_str2num(&first, ZSTR_VAL(left), scale)) {
- zend_argument_value_error(1, "is not well-formed");
- goto cleanup;
- }
- if (!bc_str2num(&second, ZSTR_VAL(right), scale)) {
- zend_argument_value_error(2, "is not well-formed");
- goto cleanup;
- }
- RETVAL_LONG(bc_compare(first, second));
- cleanup: {
- bc_free_num(&first);
- bc_free_num(&second);
- };
- }
- /* }}} */
- /* {{{ Sets default scale parameter for all bc math functions */
- PHP_FUNCTION(bcscale)
- {
- zend_long old_scale, new_scale;
- bool new_scale_is_null = 1;
- ZEND_PARSE_PARAMETERS_START(0, 1)
- Z_PARAM_OPTIONAL
- Z_PARAM_LONG_OR_NULL(new_scale, new_scale_is_null)
- ZEND_PARSE_PARAMETERS_END();
- 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();
- }
- zend_string *ini_name = zend_string_init("bcmath.scale", sizeof("bcmath.scale") - 1, 0);
- zend_string *new_scale_str = zend_long_to_str(new_scale);
- zend_alter_ini_entry(ini_name, new_scale_str, PHP_INI_USER, PHP_INI_STAGE_RUNTIME);
- zend_string_release(new_scale_str);
- zend_string_release(ini_name);
- }
- RETURN_LONG(old_scale);
- }
- /* }}} */
- #endif
|