phpdbg_frame.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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. | Authors: Felipe Pena <felipe@php.net> |
  16. | Authors: Joe Watkins <joe.watkins@live.co.uk> |
  17. | Authors: Bob Weinand <bwoebi@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #include "zend.h"
  21. #include "phpdbg.h"
  22. #include "phpdbg_utils.h"
  23. #include "phpdbg_frame.h"
  24. #include "phpdbg_list.h"
  25. ZEND_EXTERN_MODULE_GLOBALS(phpdbg);
  26. void phpdbg_restore_frame(TSRMLS_D) /* {{{ */
  27. {
  28. if (PHPDBG_FRAME(num) == 0) {
  29. return;
  30. }
  31. PHPDBG_FRAME(num) = 0;
  32. /* move things back */
  33. EG(current_execute_data) = PHPDBG_FRAME(execute_data);
  34. EG(opline_ptr) = &PHPDBG_EX(opline);
  35. EG(active_op_array) = PHPDBG_EX(op_array);
  36. EG(return_value_ptr_ptr) = PHPDBG_EX(original_return_value);
  37. EG(active_symbol_table) = PHPDBG_EX(symbol_table);
  38. EG(This) = PHPDBG_EX(current_this);
  39. EG(scope) = PHPDBG_EX(current_scope);
  40. EG(called_scope) = PHPDBG_EX(current_called_scope);
  41. } /* }}} */
  42. void phpdbg_switch_frame(int frame TSRMLS_DC) /* {{{ */
  43. {
  44. zend_execute_data *execute_data = PHPDBG_FRAME(num)?PHPDBG_FRAME(execute_data):EG(current_execute_data);
  45. int i = 0;
  46. if (PHPDBG_FRAME(num) == frame) {
  47. phpdbg_notice("Already in frame #%d", frame);
  48. return;
  49. }
  50. while (execute_data) {
  51. if (i++ == frame) {
  52. break;
  53. }
  54. do {
  55. execute_data = execute_data->prev_execute_data;
  56. } while (execute_data && execute_data->opline == NULL);
  57. }
  58. if (execute_data == NULL) {
  59. phpdbg_error("No frame #%d", frame);
  60. return;
  61. }
  62. phpdbg_restore_frame(TSRMLS_C);
  63. if (frame > 0) {
  64. PHPDBG_FRAME(num) = frame;
  65. /* backup things and jump back */
  66. PHPDBG_FRAME(execute_data) = EG(current_execute_data);
  67. EG(current_execute_data) = execute_data;
  68. EG(opline_ptr) = &PHPDBG_EX(opline);
  69. EG(active_op_array) = PHPDBG_EX(op_array);
  70. PHPDBG_FRAME(execute_data)->original_return_value = EG(return_value_ptr_ptr);
  71. EG(return_value_ptr_ptr) = PHPDBG_EX(original_return_value);
  72. EG(active_symbol_table) = PHPDBG_EX(symbol_table);
  73. EG(This) = PHPDBG_EX(current_this);
  74. EG(scope) = PHPDBG_EX(current_scope);
  75. EG(called_scope) = PHPDBG_EX(current_called_scope);
  76. }
  77. phpdbg_notice("Switched to frame #%d", frame);
  78. phpdbg_list_file(
  79. zend_get_executed_filename(TSRMLS_C),
  80. 3,
  81. zend_get_executed_lineno(TSRMLS_C)-1,
  82. zend_get_executed_lineno(TSRMLS_C)
  83. TSRMLS_CC
  84. );
  85. } /* }}} */
  86. static void phpdbg_dump_prototype(zval **tmp TSRMLS_DC) /* {{{ */
  87. {
  88. zval **funcname, **class, **type, **args, **argstmp;
  89. char is_class;
  90. zend_hash_find(Z_ARRVAL_PP(tmp), "function", sizeof("function"),
  91. (void **)&funcname);
  92. if ((is_class = zend_hash_find(Z_ARRVAL_PP(tmp),
  93. "object", sizeof("object"), (void **)&class)) == FAILURE) {
  94. is_class = zend_hash_find(Z_ARRVAL_PP(tmp), "class", sizeof("class"),
  95. (void **)&class);
  96. } else {
  97. zend_get_object_classname(*class, (const char **)&Z_STRVAL_PP(class),
  98. (zend_uint *)&Z_STRLEN_PP(class) TSRMLS_CC);
  99. }
  100. if (is_class == SUCCESS) {
  101. zend_hash_find(Z_ARRVAL_PP(tmp), "type", sizeof("type"), (void **)&type);
  102. }
  103. phpdbg_write("%s%s%s(",
  104. is_class == FAILURE?"":Z_STRVAL_PP(class),
  105. is_class == FAILURE?"":Z_STRVAL_PP(type),
  106. Z_STRVAL_PP(funcname)
  107. );
  108. if (zend_hash_find(Z_ARRVAL_PP(tmp), "args", sizeof("args"),
  109. (void **)&args) == SUCCESS) {
  110. HashPosition iterator;
  111. const zend_function *func = phpdbg_get_function(
  112. Z_STRVAL_PP(funcname), is_class == FAILURE ? NULL : Z_STRVAL_PP(class) TSRMLS_CC);
  113. const zend_arg_info *arginfo = func ? func->common.arg_info : NULL;
  114. int j = 0, m = func ? func->common.num_args : 0;
  115. zend_bool is_variadic = 0;
  116. zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(args), &iterator);
  117. while (zend_hash_get_current_data_ex(Z_ARRVAL_PP(args),
  118. (void **) &argstmp, &iterator) == SUCCESS) {
  119. if (j) {
  120. phpdbg_write(", ");
  121. }
  122. if (m && j < m) {
  123. #if PHP_VERSION_ID >= 50600
  124. is_variadic = arginfo[j].is_variadic;
  125. #endif
  126. phpdbg_write("%s=%s",
  127. arginfo[j].name, is_variadic ? "[": "");
  128. }
  129. ++j;
  130. zend_print_flat_zval_r(*argstmp TSRMLS_CC);
  131. zend_hash_move_forward_ex(Z_ARRVAL_PP(args), &iterator);
  132. }
  133. if (is_variadic) {
  134. phpdbg_write("]");
  135. }
  136. }
  137. phpdbg_write(")");
  138. }
  139. void phpdbg_dump_backtrace(size_t num TSRMLS_DC) /* {{{ */
  140. {
  141. zval zbacktrace;
  142. zval **tmp;
  143. zval **file, **line;
  144. HashPosition position;
  145. int i = 0, limit = num;
  146. int user_defined;
  147. if (limit < 0) {
  148. phpdbg_error("Invalid backtrace size %d", limit);
  149. }
  150. zend_fetch_debug_backtrace(
  151. &zbacktrace, 0, 0, limit TSRMLS_CC);
  152. zend_hash_internal_pointer_reset_ex(Z_ARRVAL(zbacktrace), &position);
  153. zend_hash_get_current_data_ex(Z_ARRVAL(zbacktrace), (void**)&tmp, &position);
  154. while (1) {
  155. user_defined = zend_hash_find(Z_ARRVAL_PP(tmp), "file", sizeof("file"), (void **)&file);
  156. zend_hash_find(Z_ARRVAL_PP(tmp), "line", sizeof("line"), (void **)&line);
  157. zend_hash_move_forward_ex(Z_ARRVAL(zbacktrace), &position);
  158. if (zend_hash_get_current_data_ex(Z_ARRVAL(zbacktrace),
  159. (void**)&tmp, &position) == FAILURE) {
  160. phpdbg_write("frame #%d: {main} at %s:%ld", i, Z_STRVAL_PP(file), Z_LVAL_PP(line));
  161. break;
  162. }
  163. if (user_defined == SUCCESS) {
  164. phpdbg_write("frame #%d: ", i++);
  165. phpdbg_dump_prototype(tmp TSRMLS_CC);
  166. phpdbg_writeln(" at %s:%ld", Z_STRVAL_PP(file), Z_LVAL_PP(line));
  167. } else {
  168. phpdbg_write(" => ");
  169. phpdbg_dump_prototype(tmp TSRMLS_CC);
  170. phpdbg_writeln(" (internal function)");
  171. }
  172. }
  173. phpdbg_writeln(EMPTY);
  174. zval_dtor(&zbacktrace);
  175. } /* }}} */