php-src/phpdbg_break.c

163 lines
4.3 KiB
C

/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2013 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: |
| http://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> |
+----------------------------------------------------------------------+
*/
#include "phpdbg.h"
#include "phpdbg_print.h"
#include "phpdbg_utils.h"
#include "phpdbg_opcode.h"
#include "phpdbg_break.h"
#include "phpdbg_bp.h"
ZEND_EXTERN_MODULE_GLOBALS(phpdbg);
PHPDBG_BREAK(file) /* {{{ */
{
const char *line_pos;
if (!expr || expr_len == 0) {
phpdbg_error("No expression provided");
return SUCCESS;
}
line_pos = strchr(expr, ':');
if (!line_pos) {
phpdbg_error("No line specified in expression %s", expr);
return SUCCESS;
}
if (phpdbg_is_class_method(expr, expr_len, NULL, NULL)) {
phpdbg_error("Expected file:line format");
return SUCCESS;
} else {
char path[MAXPATHLEN], resolved_name[MAXPATHLEN];
long line_num = strtol(line_pos+1, NULL, 0);
memcpy(path, expr, line_pos - expr);
path[line_pos - expr] = 0;
if (expand_filepath(path, resolved_name TSRMLS_CC) == NULL) {
phpdbg_error("Failed to expand path %s", path);
return SUCCESS;
}
phpdbg_set_breakpoint_file(resolved_name, line_num TSRMLS_CC);
}
return SUCCESS;
} /* }}} */
PHPDBG_BREAK(method) /* {{{ */
{
char *class_name;
char *func_name;
if (expr && expr_len >0L) {
if (phpdbg_is_class_method(expr, expr_len+1, &class_name, &func_name)) {
phpdbg_set_breakpoint_method(
class_name, func_name TSRMLS_CC);
} else {
phpdbg_error(
"The expression provided is not a method name: %s", expr);
}
} else {
phpdbg_error("No expression provided");
}
return SUCCESS;
} /* }}} */
PHPDBG_BREAK(address) /* {{{ */
{
if (expr && expr_len > 0L) {
if (phpdbg_is_addr(expr)) {
phpdbg_set_breakpoint_opline(
strtoul(expr, 0, 16) TSRMLS_CC);
} else {
phpdbg_error("The expression provided is not an address: %s", expr);
}
} else {
phpdbg_error("No expression provided");
}
return SUCCESS;
} /* }}} */
PHPDBG_BREAK(on) /* {{{ */
{
if (expr && expr_len > 0L) {
phpdbg_set_breakpoint_expression(
expr, expr_len TSRMLS_CC);
} else {
phpdbg_error(
"No expression provided!");
}
return SUCCESS;
} /* }}} */
PHPDBG_BREAK(lineno) /* {{{ */
{
if (!PHPDBG_G(exec)) {
phpdbg_error("Not file context found!");
return SUCCESS;
}
if (expr_len == 0) {
phpdbg_error("No expression provided!");
return SUCCESS;
}
if (phpdbg_is_numeric(expr)) {
const char *filename = zend_get_executed_filename(TSRMLS_C);
if (filename &&
!memcmp(filename, "[no active file]", sizeof("[no active file]"))) {
phpdbg_set_breakpoint_file(filename, strtol(expr, NULL, 0) TSRMLS_CC);
} else {
phpdbg_error("No file context found");
}
} else {
phpdbg_error(
"The expression provided is not a valid line number %s", expr);
}
return SUCCESS;
} /* }}} */
PHPDBG_BREAK(func) /* {{{ */
{
char name[200];
size_t name_len = expr_len;
if (expr_len == 0) {
phpdbg_error("No expression provided");
return SUCCESS;
}
if (expr_len >= 200) {
phpdbg_error("Name is too long");
return SUCCESS;
}
memcpy(name, expr, name_len);
name[name_len] = 0;
phpdbg_set_breakpoint_symbol(name TSRMLS_CC);
return SUCCESS;
} /* }}} */