test.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #include "php_ini.h"
  23. #include "ext/standard/info.h"
  24. #include "php_test.h"
  25. static zend_class_entry *zend_test_interface;
  26. static zend_class_entry *zend_test_class;
  27. static zend_class_entry *zend_test_child_class;
  28. static zend_class_entry *zend_test_trait;
  29. static zend_object_handlers zend_test_class_handlers;
  30. ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO(arginfo_zend_test_array_return, IS_ARRAY, 0)
  31. ZEND_END_ARG_INFO()
  32. ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO(arginfo_zend_test_nullable_array_return, IS_ARRAY, 1)
  33. ZEND_END_ARG_INFO()
  34. ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO(arginfo_zend_test_void_return, IS_VOID, 0)
  35. ZEND_END_ARG_INFO()
  36. ZEND_BEGIN_ARG_INFO_EX(arginfo_zend_terminate_string, 0, 0, 1)
  37. ZEND_ARG_INFO(1, str)
  38. ZEND_END_ARG_INFO()
  39. ZEND_BEGIN_ARG_INFO_EX(arginfo_zend_leak_variable, 0, 0, 1)
  40. ZEND_ARG_INFO(0, variable)
  41. ZEND_END_ARG_INFO()
  42. ZEND_FUNCTION(zend_test_func)
  43. {
  44. /* dummy */
  45. }
  46. ZEND_FUNCTION(zend_test_array_return)
  47. {
  48. zval *arg1, *arg2;
  49. zend_parse_parameters(ZEND_NUM_ARGS(), "|zz", &arg1, &arg2);
  50. }
  51. ZEND_FUNCTION(zend_test_nullable_array_return)
  52. {
  53. zval *arg1, *arg2;
  54. zend_parse_parameters(ZEND_NUM_ARGS(), "|zz", &arg1, &arg2);
  55. }
  56. ZEND_FUNCTION(zend_test_void_return)
  57. {
  58. /* dummy */
  59. }
  60. /* Create a string without terminating null byte. Must be termined with
  61. * zend_terminate_string() before destruction, otherwise a warning is issued
  62. * in debug builds. */
  63. ZEND_FUNCTION(zend_create_unterminated_string)
  64. {
  65. zend_string *str, *res;
  66. if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &str) == FAILURE) {
  67. return;
  68. }
  69. res = zend_string_alloc(ZSTR_LEN(str), 0);
  70. memcpy(ZSTR_VAL(res), ZSTR_VAL(str), ZSTR_LEN(str));
  71. /* No trailing null byte */
  72. RETURN_STR(res);
  73. }
  74. /* Enforce terminate null byte on string. This avoids a warning in debug builds. */
  75. ZEND_FUNCTION(zend_terminate_string)
  76. {
  77. zend_string *str;
  78. if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &str) == FAILURE) {
  79. return;
  80. }
  81. ZSTR_VAL(str)[ZSTR_LEN(str)] = '\0';
  82. }
  83. /* {{{ proto void zend_leak_bytes([int num_bytes])
  84. Cause an intentional memory leak, for testing/debugging purposes */
  85. ZEND_FUNCTION(zend_leak_bytes)
  86. {
  87. zend_long leakbytes = 3;
  88. if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &leakbytes) == FAILURE) {
  89. return;
  90. }
  91. emalloc(leakbytes);
  92. }
  93. /* }}} */
  94. /* {{{ proto void zend_leak_variable(mixed variable)
  95. Leak a refcounted variable */
  96. ZEND_FUNCTION(zend_leak_variable)
  97. {
  98. zval *zv;
  99. if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zv) == FAILURE) {
  100. return;
  101. }
  102. if (!Z_REFCOUNTED_P(zv)) {
  103. zend_error(E_WARNING, "Cannot leak variable that is not refcounted");
  104. return;
  105. }
  106. Z_ADDREF_P(zv);
  107. }
  108. /* }}} */
  109. static zend_object *zend_test_class_new(zend_class_entry *class_type) /* {{{ */ {
  110. zend_object *obj = zend_objects_new(class_type);
  111. obj->handlers = &zend_test_class_handlers;
  112. return obj;
  113. }
  114. /* }}} */
  115. static zend_function *zend_test_class_method_get(zend_object **object, zend_string *name, const zval *key) /* {{{ */ {
  116. zend_internal_function *fptr = emalloc(sizeof(zend_internal_function));
  117. fptr->type = ZEND_OVERLOADED_FUNCTION_TEMPORARY;
  118. fptr->num_args = 1;
  119. fptr->arg_info = NULL;
  120. fptr->scope = (*object)->ce;
  121. fptr->fn_flags = ZEND_ACC_CALL_VIA_HANDLER;
  122. fptr->function_name = zend_string_copy(name);
  123. fptr->handler = ZEND_FN(zend_test_func);
  124. zend_set_function_arg_flags((zend_function*)fptr);
  125. return (zend_function*)fptr;
  126. }
  127. /* }}} */
  128. static zend_function *zend_test_class_static_method_get(zend_class_entry *ce, zend_string *name) /* {{{ */ {
  129. if (zend_string_equals_literal_ci(name, "test")) {
  130. zend_internal_function *fptr = emalloc(sizeof(zend_internal_function));
  131. fptr->type = ZEND_OVERLOADED_FUNCTION;
  132. fptr->num_args = 1;
  133. fptr->arg_info = NULL;
  134. fptr->scope = ce;
  135. fptr->fn_flags = ZEND_ACC_CALL_VIA_HANDLER|ZEND_ACC_STATIC;
  136. fptr->function_name = name;
  137. fptr->handler = ZEND_FN(zend_test_func);
  138. zend_set_function_arg_flags((zend_function*)fptr);
  139. return (zend_function*)fptr;
  140. }
  141. return zend_std_get_static_method(ce, name, NULL);
  142. }
  143. /* }}} */
  144. static int zend_test_class_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS) /* {{{ */ {
  145. RETVAL_STR(zend_string_copy(method));
  146. return 0;
  147. }
  148. /* }}} */
  149. /* Internal function returns bool, we return int. */
  150. static ZEND_METHOD(_ZendTestClass, is_object) /* {{{ */ {
  151. RETURN_LONG(42);
  152. }
  153. /* }}} */
  154. static ZEND_METHOD(_ZendTestTrait, testMethod) /* {{{ */ {
  155. RETURN_TRUE;
  156. }
  157. /* }}} */
  158. static const zend_function_entry zend_test_class_methods[] = {
  159. ZEND_ME(_ZendTestClass, is_object, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
  160. ZEND_FE_END
  161. };
  162. static const zend_function_entry zend_test_trait_methods[] = {
  163. ZEND_ME(_ZendTestTrait, testMethod, NULL, ZEND_ACC_PUBLIC)
  164. ZEND_FE_END
  165. };
  166. PHP_MINIT_FUNCTION(zend_test)
  167. {
  168. zend_class_entry class_entry;
  169. INIT_CLASS_ENTRY(class_entry, "_ZendTestInterface", NULL);
  170. zend_test_interface = zend_register_internal_interface(&class_entry);
  171. zend_declare_class_constant_long(zend_test_interface, ZEND_STRL("DUMMY"), 0);
  172. INIT_CLASS_ENTRY(class_entry, "_ZendTestClass", zend_test_class_methods);
  173. zend_test_class = zend_register_internal_class_ex(&class_entry, NULL);
  174. zend_class_implements(zend_test_class, 1, zend_test_interface);
  175. zend_test_class->create_object = zend_test_class_new;
  176. zend_test_class->get_static_method = zend_test_class_static_method_get;
  177. zend_declare_property_null(zend_test_class, "_StaticProp", sizeof("_StaticProp") - 1, ZEND_ACC_STATIC);
  178. INIT_CLASS_ENTRY(class_entry, "_ZendTestChildClass", NULL);
  179. zend_test_child_class = zend_register_internal_class_ex(&class_entry, zend_test_class);
  180. memcpy(&zend_test_class_handlers, &std_object_handlers, sizeof(zend_object_handlers));
  181. zend_test_class_handlers.get_method = zend_test_class_method_get;
  182. zend_test_class_handlers.call_method = zend_test_class_call_method;
  183. INIT_CLASS_ENTRY(class_entry, "_ZendTestTrait", zend_test_trait_methods);
  184. zend_test_trait = zend_register_internal_class(&class_entry);
  185. zend_test_trait->ce_flags |= ZEND_ACC_TRAIT;
  186. zend_declare_property_null(zend_test_trait, "testProp", sizeof("testProp")-1, ZEND_ACC_PUBLIC);
  187. zend_register_class_alias("_ZendTestClassAlias", zend_test_class);
  188. return SUCCESS;
  189. }
  190. PHP_MSHUTDOWN_FUNCTION(zend_test)
  191. {
  192. return SUCCESS;
  193. }
  194. PHP_RINIT_FUNCTION(zend_test)
  195. {
  196. #if defined(COMPILE_DL_ZEND_TEST) && defined(ZTS)
  197. ZEND_TSRMLS_CACHE_UPDATE();
  198. #endif
  199. return SUCCESS;
  200. }
  201. PHP_RSHUTDOWN_FUNCTION(zend_test)
  202. {
  203. return SUCCESS;
  204. }
  205. PHP_MINFO_FUNCTION(zend_test)
  206. {
  207. php_info_print_table_start();
  208. php_info_print_table_header(2, "zend-test extension", "enabled");
  209. php_info_print_table_end();
  210. }
  211. static const zend_function_entry zend_test_functions[] = {
  212. ZEND_FE(zend_test_array_return, arginfo_zend_test_array_return)
  213. ZEND_FE(zend_test_nullable_array_return, arginfo_zend_test_nullable_array_return)
  214. ZEND_FE(zend_test_void_return, arginfo_zend_test_void_return)
  215. ZEND_FE(zend_create_unterminated_string, NULL)
  216. ZEND_FE(zend_terminate_string, arginfo_zend_terminate_string)
  217. ZEND_FE(zend_leak_bytes, NULL)
  218. ZEND_FE(zend_leak_variable, arginfo_zend_leak_variable)
  219. ZEND_FE_END
  220. };
  221. zend_module_entry zend_test_module_entry = {
  222. STANDARD_MODULE_HEADER,
  223. "zend-test",
  224. zend_test_functions,
  225. PHP_MINIT(zend_test),
  226. PHP_MSHUTDOWN(zend_test),
  227. PHP_RINIT(zend_test),
  228. PHP_RSHUTDOWN(zend_test),
  229. PHP_MINFO(zend_test),
  230. PHP_ZEND_TEST_VERSION,
  231. STANDARD_MODULE_PROPERTIES
  232. };
  233. #ifdef COMPILE_DL_ZEND_TEST
  234. #ifdef ZTS
  235. ZEND_TSRMLS_CACHE_DEFINE()
  236. #endif
  237. ZEND_GET_MODULE(zend_test)
  238. #endif