123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460 |
- /*
- +----------------------------------------------------------------------+
- | 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. |
- +----------------------------------------------------------------------+
- | Authors: Felipe Pena <felipe@php.net> |
- | Authors: Joe Watkins <joe.watkins@live.co.uk> |
- | Authors: Bob Weinand <bwoebi@php.net> |
- +----------------------------------------------------------------------+
- */
- #include "php.h"
- #include "phpdbg.h"
- #include "phpdbg_utils.h"
- #include "phpdbg_info.h"
- #include "phpdbg_bp.h"
- #include "phpdbg_prompt.h"
- ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
- #define PHPDBG_INFO_COMMAND_D(f, h, a, m, l, s, flags) \
- PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[13], flags)
- const phpdbg_command_t phpdbg_info_commands[] = {
- PHPDBG_INFO_COMMAND_D(break, "show breakpoints", 'b', info_break, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(files, "show included files", 'F', info_files, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(classes, "show loaded classes", 'c', info_classes, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(funcs, "show loaded classes", 'f', info_funcs, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(error, "show last error", 'e', info_error, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(constants, "show user defined constants", 'd', info_constants, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(vars, "show active variables", 'v', info_vars, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(globals, "show superglobals", 'g', info_globals, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(literal, "show active literal constants", 'l', info_literal, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_INFO_COMMAND_D(memory, "show memory manager stats", 'm', info_memory, NULL, 0, PHPDBG_ASYNC_SAFE),
- PHPDBG_END_COMMAND
- };
- PHPDBG_INFO(break) /* {{{ */
- {
- phpdbg_print_breakpoints(PHPDBG_BREAK_FILE);
- phpdbg_print_breakpoints(PHPDBG_BREAK_SYM);
- phpdbg_print_breakpoints(PHPDBG_BREAK_METHOD);
- phpdbg_print_breakpoints(PHPDBG_BREAK_OPLINE);
- phpdbg_print_breakpoints(PHPDBG_BREAK_FILE_OPLINE);
- phpdbg_print_breakpoints(PHPDBG_BREAK_FUNCTION_OPLINE);
- phpdbg_print_breakpoints(PHPDBG_BREAK_METHOD_OPLINE);
- phpdbg_print_breakpoints(PHPDBG_BREAK_COND);
- phpdbg_print_breakpoints(PHPDBG_BREAK_OPCODE);
- return SUCCESS;
- } /* }}} */
- PHPDBG_INFO(files) /* {{{ */
- {
- zend_string *fname;
- phpdbg_try_access {
- phpdbg_notice("Included files: %d", zend_hash_num_elements(&EG(included_files)));
- } phpdbg_catch_access {
- phpdbg_error("Could not fetch included file count, invalid data source");
- return SUCCESS;
- } phpdbg_end_try_access();
- phpdbg_try_access {
- ZEND_HASH_FOREACH_STR_KEY(&EG(included_files), fname) {
- phpdbg_writeln("File: %s", ZSTR_VAL(fname));
- } ZEND_HASH_FOREACH_END();
- } phpdbg_catch_access {
- phpdbg_error("Could not fetch file name, invalid data source, aborting included file listing");
- } phpdbg_end_try_access();
- return SUCCESS;
- } /* }}} */
- PHPDBG_INFO(error) /* {{{ */
- {
- if (PG(last_error_message)) {
- phpdbg_try_access {
- phpdbg_writeln("Last error: %s at %s line %d",
- ZSTR_VAL(PG(last_error_message)),
- ZSTR_VAL(PG(last_error_file)),
- PG(last_error_lineno));
- } phpdbg_catch_access {
- phpdbg_notice("No error found!");
- } phpdbg_end_try_access();
- } else {
- phpdbg_notice("No error found!");
- }
- return SUCCESS;
- } /* }}} */
- PHPDBG_INFO(constants) /* {{{ */
- {
- HashTable consts;
- zend_constant *data;
- zend_hash_init(&consts, 8, NULL, NULL, 0);
- if (EG(zend_constants)) {
- phpdbg_try_access {
- ZEND_HASH_FOREACH_PTR(EG(zend_constants), data) {
- if (ZEND_CONSTANT_MODULE_NUMBER(data) == PHP_USER_CONSTANT) {
- zend_hash_update_ptr(&consts, data->name, data);
- }
- } ZEND_HASH_FOREACH_END();
- } phpdbg_catch_access {
- phpdbg_error("Cannot fetch all the constants, invalid data source");
- } phpdbg_end_try_access();
- }
- phpdbg_notice("User-defined constants (%d)", zend_hash_num_elements(&consts));
- if (zend_hash_num_elements(&consts)) {
- phpdbg_out("Address Refs Type Constant\n");
- ZEND_HASH_FOREACH_PTR(&consts, data) {
- #define VARIABLEINFO(msg, ...) \
- phpdbg_writeln( \
- "%-18p %-7d %-9s %.*s" msg, &data->value, \
- Z_REFCOUNTED(data->value) ? Z_REFCOUNT(data->value) : 1, \
- zend_get_type_by_const(Z_TYPE(data->value)), \
- (int) ZSTR_LEN(data->name), ZSTR_VAL(data->name), ##__VA_ARGS__)
- switch (Z_TYPE(data->value)) {
- case IS_STRING:
- phpdbg_try_access {
- VARIABLEINFO("\nstring (%zd) \"%.*s%s\"", Z_STRLEN(data->value), Z_STRLEN(data->value) < 255 ? (int) Z_STRLEN(data->value) : 255, Z_STRVAL(data->value), Z_STRLEN(data->value) > 255 ? "..." : "");
- } phpdbg_catch_access {
- VARIABLEINFO("");
- } phpdbg_end_try_access();
- break;
- case IS_TRUE:
- VARIABLEINFO("\nbool (true)");
- break;
- case IS_FALSE:
- VARIABLEINFO("\nbool (false)");
- break;
- case IS_LONG:
- VARIABLEINFO("\nint ("ZEND_LONG_FMT")", Z_LVAL(data->value));
- break;
- case IS_DOUBLE:
- VARIABLEINFO("\ndouble (%lf)", Z_DVAL(data->value));
- break;
- default:
- VARIABLEINFO("");
- #undef VARIABLEINFO
- }
- } ZEND_HASH_FOREACH_END();
- }
- return SUCCESS;
- } /* }}} */
- static int phpdbg_arm_auto_global(zval *ptrzv) {
- zend_auto_global *auto_global = Z_PTR_P(ptrzv);
- if (auto_global->armed) {
- if (PHPDBG_G(flags) & PHPDBG_IN_SIGNAL_HANDLER) {
- phpdbg_notice("Cannot show information about superglobal variable %.*s", (int) ZSTR_LEN(auto_global->name), ZSTR_VAL(auto_global->name));
- } else {
- auto_global->armed = auto_global->auto_global_callback(auto_global->name);
- }
- }
- return 0;
- }
- static int phpdbg_print_symbols(bool show_globals) {
- HashTable vars;
- zend_array *symtable;
- zend_string *var;
- zval *data;
- if (!EG(current_execute_data) || !EG(current_execute_data)->func) {
- phpdbg_error("No active op array!");
- return SUCCESS;
- }
- if (show_globals) {
- /* that array should only be manipulated during init, so safe for async access during execution */
- zend_hash_apply(CG(auto_globals), (apply_func_t) phpdbg_arm_auto_global);
- symtable = &EG(symbol_table);
- } else if (!(symtable = zend_rebuild_symbol_table())) {
- phpdbg_error("No active symbol table!");
- return SUCCESS;
- }
- zend_hash_init(&vars, 8, NULL, NULL, 0);
- phpdbg_try_access {
- ZEND_HASH_FOREACH_STR_KEY_VAL(symtable, var, data) {
- if (zend_is_auto_global(var) ^ !show_globals) {
- zend_hash_update(&vars, var, data);
- }
- } ZEND_HASH_FOREACH_END();
- } phpdbg_catch_access {
- phpdbg_error("Cannot fetch all data from the symbol table, invalid data source");
- } phpdbg_end_try_access();
- if (show_globals) {
- phpdbg_notice("Superglobal variables (%d)", zend_hash_num_elements(&vars));
- } else {
- zend_op_array *ops = &EG(current_execute_data)->func->op_array;
- if (ops->function_name) {
- if (ops->scope) {
- phpdbg_notice("Variables in %s::%s() (%d)", ops->scope->name->val, ops->function_name->val, zend_hash_num_elements(&vars));
- } else {
- phpdbg_notice("Variables in %s() (%d)", ZSTR_VAL(ops->function_name), zend_hash_num_elements(&vars));
- }
- } else {
- if (ops->filename) {
- phpdbg_notice("Variables in %s (%d)", ZSTR_VAL(ops->filename), zend_hash_num_elements(&vars));
- } else {
- phpdbg_notice("Variables @ %p (%d)", ops, zend_hash_num_elements(&vars));
- }
- }
- }
- if (zend_hash_num_elements(&vars)) {
- phpdbg_out("Address Refs Type Variable\n");
- ZEND_HASH_FOREACH_STR_KEY_VAL(&vars, var, data) {
- phpdbg_try_access {
- const char *isref = "";
- #define VARIABLEINFO(msg, ...) \
- phpdbg_writeln( \
- "%-18p %-7d %-9s %s$%.*s" msg, data, Z_REFCOUNTED_P(data) ? Z_REFCOUNT_P(data) : 1, zend_get_type_by_const(Z_TYPE_P(data)), isref, (int) ZSTR_LEN(var), ZSTR_VAL(var), ##__VA_ARGS__)
- retry_switch:
- switch (Z_TYPE_P(data)) {
- case IS_RESOURCE:
- phpdbg_try_access {
- const char *type = zend_rsrc_list_get_rsrc_type(Z_RES_P(data));
- VARIABLEINFO("\n|-------(typeof)------> (%s)\n", type ? type : "unknown");
- } phpdbg_catch_access {
- VARIABLEINFO("\n|-------(typeof)------> (unknown)\n");
- } phpdbg_end_try_access();
- break;
- case IS_OBJECT:
- phpdbg_try_access {
- VARIABLEINFO("\n|-----(instanceof)----> (%s)\n", ZSTR_VAL(Z_OBJCE_P(data)->name));
- } phpdbg_catch_access {
- VARIABLEINFO("\n|-----(instanceof)----> (unknown)\n");
- } phpdbg_end_try_access();
- break;
- case IS_STRING:
- phpdbg_try_access {
- VARIABLEINFO("\nstring (%zd) \"%.*s%s\"", Z_STRLEN_P(data), Z_STRLEN_P(data) < 255 ? (int) Z_STRLEN_P(data) : 255, Z_STRVAL_P(data), Z_STRLEN_P(data) > 255 ? "..." : "");
- } phpdbg_catch_access {
- VARIABLEINFO("");
- } phpdbg_end_try_access();
- break;
- case IS_TRUE:
- VARIABLEINFO("\nbool (true)");
- break;
- case IS_FALSE:
- VARIABLEINFO("\nbool (false)");
- break;
- case IS_LONG:
- VARIABLEINFO("\nint ("ZEND_LONG_FMT")", Z_LVAL_P(data));
- break;
- case IS_DOUBLE:
- VARIABLEINFO("\ndouble (%lf)", Z_DVAL_P(data));
- break;
- case IS_REFERENCE:
- isref = "&";
- data = Z_REFVAL_P(data);
- goto retry_switch;
- case IS_INDIRECT:
- data = Z_INDIRECT_P(data);
- goto retry_switch;
- default:
- VARIABLEINFO("");
- }
- #undef VARIABLEINFO
- } phpdbg_catch_access {
- phpdbg_writeln("%p\tn/a\tn/a\t$%s", data, ZSTR_VAL(var));
- } phpdbg_end_try_access();
- } ZEND_HASH_FOREACH_END();
- }
- zend_hash_destroy(&vars);
- return SUCCESS;
- } /* }}} */
- PHPDBG_INFO(vars) /* {{{ */
- {
- return phpdbg_print_symbols(0);
- }
- PHPDBG_INFO(globals) /* {{{ */
- {
- return phpdbg_print_symbols(1);
- }
- PHPDBG_INFO(literal) /* {{{ */
- {
- /* literals are assumed to not be manipulated during executing of their op_array and as such async safe */
- bool in_executor = PHPDBG_G(in_execution) && EG(current_execute_data) && EG(current_execute_data)->func;
- if (in_executor || PHPDBG_G(ops)) {
- zend_op_array *ops = in_executor ? &EG(current_execute_data)->func->op_array : PHPDBG_G(ops);
- int literal = 0, count = ops->last_literal - 1;
- if (ops->function_name) {
- if (ops->scope) {
- phpdbg_notice("Literal Constants in %s::%s() (%d)", ops->scope->name->val, ops->function_name->val, count);
- } else {
- phpdbg_notice("Literal Constants in %s() (%d)", ops->function_name->val, count);
- }
- } else {
- if (ops->filename) {
- phpdbg_notice("Literal Constants in %s (%d)", ZSTR_VAL(ops->filename), count);
- } else {
- phpdbg_notice("Literal Constants @ %p (%d)", ops, count);
- }
- }
- while (literal < ops->last_literal) {
- if (Z_TYPE(ops->literals[literal]) != IS_NULL) {
- phpdbg_write("|-------- C%u -------> [", literal);
- zend_print_zval(&ops->literals[literal], 0);
- phpdbg_out("]\n");
- }
- literal++;
- }
- } else {
- phpdbg_error("Not executing!");
- }
- return SUCCESS;
- } /* }}} */
- PHPDBG_INFO(memory) /* {{{ */
- {
- size_t used, real, peak_used, peak_real;
- zend_mm_heap *orig_heap = NULL;
- bool is_mm;
- if (PHPDBG_G(flags) & PHPDBG_IN_SIGNAL_HANDLER) {
- orig_heap = zend_mm_set_heap(phpdbg_original_heap_sigsafe_mem());
- }
- if ((is_mm = is_zend_mm())) {
- used = zend_memory_usage(0);
- real = zend_memory_usage(1);
- peak_used = zend_memory_peak_usage(0);
- peak_real = zend_memory_peak_usage(1);
- }
- if (orig_heap) {
- zend_mm_set_heap(orig_heap);
- }
- if (is_mm) {
- phpdbg_notice("Memory Manager Information");
- phpdbg_notice("Current");
- phpdbg_writeln( "|-------> Used:\t%.3f kB", (float) (used / 1024));
- phpdbg_writeln("|-------> Real:\t%.3f kB", (float) (real / 1024));
- phpdbg_notice("Peak");
- phpdbg_writeln("|-------> Used:\t%.3f kB", (float) (peak_used / 1024));
- phpdbg_writeln("|-------> Real:\t%.3f kB", (float) (peak_real / 1024));
- } else {
- phpdbg_error("Memory Manager Disabled!");
- }
- return SUCCESS;
- } /* }}} */
- static inline void phpdbg_print_class_name(zend_class_entry *ce) /* {{{ */
- {
- const char *visibility = ce->type == ZEND_USER_CLASS ? "User" : "Internal";
- const char *type = (ce->ce_flags & ZEND_ACC_INTERFACE) ? "Interface" : (ce->ce_flags & ZEND_ACC_ABSTRACT) ? "Abstract Class" : "Class";
- phpdbg_writeln("%s %s %.*s (%d)", visibility, type, (int) ZSTR_LEN(ce->name), ZSTR_VAL(ce->name), zend_hash_num_elements(&ce->function_table));
- } /* }}} */
- PHPDBG_INFO(classes) /* {{{ */
- {
- zend_class_entry *ce;
- HashTable classes;
- zend_hash_init(&classes, 8, NULL, NULL, 0);
- phpdbg_try_access {
- ZEND_HASH_FOREACH_PTR(EG(class_table), ce) {
- if (ce->type == ZEND_USER_CLASS) {
- zend_hash_next_index_insert_ptr(&classes, ce);
- }
- } ZEND_HASH_FOREACH_END();
- } phpdbg_catch_access {
- phpdbg_notice("Not all classes could be fetched, possibly invalid data source");
- } phpdbg_end_try_access();
- phpdbg_notice("User Classes (%d)", zend_hash_num_elements(&classes));
- /* once added, assume that classes are stable... until shutdown. */
- ZEND_HASH_FOREACH_PTR(&classes, ce) {
- phpdbg_print_class_name(ce);
- if (ce->parent) {
- zend_class_entry *pce;
- pce = ce->parent;
- do {
- phpdbg_out("|-------- ");
- phpdbg_print_class_name(pce);
- } while ((pce = pce->parent));
- }
- if (ce->info.user.filename) {
- phpdbg_writeln("|---- in %s on line %u", ZSTR_VAL(ce->info.user.filename), ce->info.user.line_start);
- } else {
- phpdbg_writeln("|---- no source code");
- }
- } ZEND_HASH_FOREACH_END();
- zend_hash_destroy(&classes);
- return SUCCESS;
- } /* }}} */
- PHPDBG_INFO(funcs) /* {{{ */
- {
- zend_function *zf;
- HashTable functions;
- zend_hash_init(&functions, 8, NULL, NULL, 0);
- phpdbg_try_access {
- ZEND_HASH_FOREACH_PTR(EG(function_table), zf) {
- if (zf->type == ZEND_USER_FUNCTION) {
- zend_hash_next_index_insert_ptr(&functions, zf);
- }
- } ZEND_HASH_FOREACH_END();
- } phpdbg_catch_access {
- phpdbg_notice("Not all functions could be fetched, possibly invalid data source");
- } phpdbg_end_try_access();
- phpdbg_notice("User Functions (%d)", zend_hash_num_elements(&functions));
- ZEND_HASH_FOREACH_PTR(&functions, zf) {
- zend_op_array *op_array = &zf->op_array;
- phpdbg_write("|-------- %s", op_array->function_name ? ZSTR_VAL(op_array->function_name) : "{main}");
- if (op_array->filename) {
- phpdbg_writeln(" in %s on line %d", ZSTR_VAL(op_array->filename), op_array->line_start);
- } else {
- phpdbg_writeln(" (no source code)");
- }
- } ZEND_HASH_FOREACH_END();
- zend_hash_destroy(&functions);
- return SUCCESS;
- } /* }}} */
|