-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bob Weinand <bob.weinand@datadoghq.com>
- Loading branch information
Showing
4 changed files
with
395 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace Psr\Log; | ||
|
||
interface LoggerInterface { | ||
function log(); | ||
} | ||
|
||
class Logger implements LoggerInterface { | ||
function log() { | ||
echo "hey\n"; | ||
} | ||
} | ||
|
||
echo "pre-hook\n"; | ||
(new Logger)->log(); | ||
echo "post-hook\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--TEST-- | ||
Line breakpoint on interface-hook | ||
--FILE-- | ||
<?php | ||
|
||
require __DIR__ . '/../dbgpclient.php'; | ||
|
||
$commands = [ | ||
'feature_set -n resolved_breakpoint -v 1', | ||
'step_into', | ||
'breakpoint_set -t line -f ' . __DIR__ . '/line-breakpoint.inc -n 15', | ||
'breakpoint_set -t line -f ' . __DIR__ . '/line-breakpoint.inc -n 17', | ||
'run', | ||
'run', | ||
'detach', | ||
]; | ||
|
||
dbgpRunFile(__DIR__ . "/line-breakpoint.inc", $commands, ["zend_extension" => "xdebug-" . phpversion('xdebug'), "datadog.trace.sources_path" => __DIR__ . "/..", "datadog.logs_injection" => 0], ["show-stdout" => true]); | ||
|
||
?> | ||
--EXPECTF-- | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" fileuri="file://line-breakpoint.inc" language="PHP" xdebug:language_version="" protocol_version="1.0" appid=""><engine version=""><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[https://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2099 by Derick Rethans]]></copyright></init> | ||
|
||
-> feature_set -i 1 -n resolved_breakpoint -v 1 | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="1" status="starting" reason="ok"><error code="3"><message><![CDATA[invalid or missing options]]></message></error></response> | ||
|
||
-> step_into -i 2 | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="2" status="break" reason="ok"><xdebug:message filename="file://line-breakpoint.inc" lineno="9"></xdebug:message></response> | ||
|
||
-> breakpoint_set -i 3 -t line -f %s/line-breakpoint.inc -n 15 | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="3" id="{{PID}}0001"></response> | ||
|
||
-> breakpoint_set -i 4 -t line -f %s/line-breakpoint.inc -n 17 | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="4" id="{{PID}}0002"></response> | ||
|
||
-> run -i 5 | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="run" transaction_id="5" status="break" reason="ok"><xdebug:message filename="file://line-breakpoint.inc" lineno="15"></xdebug:message>%S</response> | ||
|
||
-> run -i 6 | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="run" transaction_id="6" status="break" reason="ok"><xdebug:message filename="file://line-breakpoint.inc" lineno="17"></xdebug:message>%S</response> | ||
|
||
-> detach -i 7 | ||
<?xml version="1.0" encoding="iso-8859-1"?> | ||
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="detach" transaction_id="7" status="stopping" reason="ok"></response> | ||
|
||
pre-hook | ||
hey | ||
post-hook |
10 changes: 10 additions & 0 deletions
10
tests/xdebug/DDTrace/Integrations/Logs/LogsIntegration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace DDTrace\Integrations\Logs; | ||
|
||
class LogsIntegration implements \DDTrace\Integration { | ||
public function init(): int { | ||
\DDTrace\install_hook("Psr\Log\LoggerInterface::log", function () { echo "hooked LoggerInterface::log()\n"; }); | ||
return self::LOADED; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,313 @@ | ||
<?php | ||
|
||
function getTmpDir() : string | ||
{ | ||
$envTmpDir = getenv('TEST_TMP_DIR'); | ||
$tmpDir = $envTmpDir !== false ? $envTmpDir : sys_get_temp_dir(); | ||
$tmpDir .= '/'; | ||
$workerId = getenv( 'TEST_PHP_WORKER' ); | ||
if ( $workerId !== false ) | ||
{ | ||
$tmpDir .= "{$workerId}-"; | ||
} | ||
|
||
return $tmpDir; | ||
} | ||
|
||
class DebugClient | ||
{ | ||
// free port will be selected automatically by the operating system | ||
protected $port = 0; | ||
|
||
private $tmpDir; | ||
|
||
protected $socket; | ||
protected $php; | ||
protected $ppipes; | ||
private $pid = null; | ||
|
||
public function getPort() | ||
{ | ||
return $this->port; | ||
} | ||
|
||
public function setPort($port) | ||
{ | ||
$this->port = $port; | ||
} | ||
|
||
protected function getIPAddress() | ||
{ | ||
return "127.0.0.1"; | ||
} | ||
|
||
protected function getAddress() | ||
{ | ||
return "tcp://" . $this->getIPAddress() . ":" . $this->getPort(); | ||
} | ||
|
||
public function __construct() | ||
{ | ||
$this->tmpDir = getTmpDir(); | ||
} | ||
|
||
private function open( &$errno, &$errstr ) | ||
{ | ||
$socket = @stream_socket_server( $this->getAddress(), $errno, $errstr ); | ||
if ( $socket ) | ||
{ | ||
$name = stream_socket_get_name( $socket, false ); | ||
$name = explode( ":", $name ); | ||
$this->port = array_pop( $name ); | ||
} | ||
return $socket; | ||
} | ||
|
||
private function launchPhp( &$pipes, $filename, array $ini_options = [], array $extra_options = [] ) | ||
{ | ||
@unlink( $this->tmpDir . 'error-output.txt' ); | ||
@unlink( $this->tmpDir . 'remote_log.txt' ); | ||
|
||
$descriptorspec = array( | ||
0 => array( 'pipe', 'r' ), | ||
1 => array( 'pipe', 'w' ), | ||
2 => array( 'file', $this->tmpDir . 'error-output.txt', 'a' ) | ||
); | ||
|
||
$default_options = array( | ||
"xdebug.mode" => "debug", | ||
"xdebug.start_with_request" => "'yes'", | ||
"xdebug.client_host" => $this->getIPAddress(), | ||
"xdebug.client_port" => $this->getPort(), | ||
'xdebug.control_socket' => "'no'", | ||
); | ||
|
||
$env_vars = array_key_exists( 'env', $extra_options ) ? $extra_options['env'] : []; | ||
$env_vars += $_ENV; | ||
|
||
$options = (getenv('TEST_PHP_ARGS') ?: ''); | ||
$ini_options = array_merge( $default_options, $ini_options ); | ||
foreach ( $ini_options as $key => $value ) | ||
{ | ||
$options .= " -d{$key}=$value"; | ||
} | ||
|
||
if ( array_key_exists( 'auto_prepend', $extra_options ) ) | ||
{ | ||
$prependFile = "{$this->tmpDir}auto-prepend.inc"; | ||
file_put_contents( $prependFile, $extra_options['auto_prepend'] ); | ||
$options .= " -dauto_prepend_file={$prependFile}"; | ||
} | ||
|
||
$php = getenv( 'TEST_PHP_EXECUTABLE' ); | ||
$cmd = "{$php} $options {$filename} >{$this->tmpDir}php-stdout.txt 2>{$this->tmpDir}php-stderr.txt"; | ||
if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') { | ||
$cmd = "exec {$cmd}"; | ||
} | ||
$cwd = dirname( __FILE__ ); | ||
|
||
$process = proc_open( $cmd, $descriptorspec, $pipes, $cwd, $env_vars ); | ||
return $process; | ||
} | ||
|
||
function fixFilePath( $m ) | ||
{ | ||
preg_match( '@.*/(.*\.inc)@', $m[2], $fm ); | ||
if ( !isset( $fm[1] ) ) | ||
{ | ||
$fm[1] = ''; | ||
} | ||
return " {$m[1]}=\"file://{$fm[1]}\""; | ||
} | ||
|
||
function doRead( $conn, ?string $transaction_id = null ) | ||
{ | ||
stream_set_timeout( $conn, 3 ); | ||
do { | ||
$trans_id = null; | ||
$length = 0; | ||
while ( "\0" !== ( $char = fgetc($conn) ) ) { | ||
if ( $char === false ) { | ||
echo "read a false for $transaction_id" . PHP_EOL; | ||
return null; | ||
} | ||
if ( !is_numeric($char) ) { | ||
echo "read a non-number for $transaction_id" . PHP_EOL; | ||
return null; | ||
} | ||
$length = $length * 10 + (int)$char; | ||
} | ||
|
||
$read = ''; | ||
while ( 0 < $length ) { | ||
$data = fread( $conn, $length ); | ||
if ( $data === false ) | ||
{ | ||
echo "read a false for $transaction_id" . PHP_EOL; | ||
return null; | ||
} | ||
$length -= strlen( $data ); | ||
$read .= $data; | ||
} | ||
$char = fgetc( $conn ); | ||
if ( $char !== "\0" ) | ||
{ | ||
echo 'must end with \0' . PHP_EOL; | ||
} | ||
|
||
// sanitize | ||
$read = preg_replace( '@(?<!"Locals") id="\d+?(\d{4})"@', ' id="{{PID}}\\1"', $read ); | ||
$read = preg_replace( '@\s(appid)="\d+?"@', ' \\1=""', $read ); | ||
$read = preg_replace( '@\s(xdebug:language_version)="[^"]+?"@', ' \\1=""', $read ); | ||
$read = preg_replace( '@(engine\sversion)="[^"]+?"@', '\\1=""', $read ); | ||
$read = preg_replace( '@(2002-20[0-9]{2})@', '2002-2099', $read ); | ||
$read = preg_replace_callback( '@\s(fileuri|filename)="file:///(.+?)"@', self::class . '::fixFilePath', $read ); | ||
|
||
echo $read, "\n\n"; | ||
|
||
if ( preg_match( '@<stream xmlns="urn.debugger_protocol_v1" xmlns:xdebug@', $read ) ) | ||
{ | ||
continue; | ||
} | ||
if ( preg_match( '@<notify xmlns="urn.debugger_protocol_v1" xmlns:xdebug@', $read ) ) | ||
{ | ||
continue; | ||
} | ||
$matches = []; | ||
if ( preg_match( '@transaction_id="(?P<transaction_id>\d+)"@', $read, $matches ) ) | ||
{ | ||
$trans_id = $matches['transaction_id'] ?? null; | ||
} | ||
} while ( $trans_id !== $transaction_id ); | ||
} | ||
|
||
function start( $filename, array $ini_options = [], array $options = []) | ||
{ | ||
$filename = realpath( $filename ); | ||
|
||
$this->socket = $this->open( $errno, $errstr ); | ||
if ( $this->socket === false ) | ||
{ | ||
echo "Could not create socket server - already in use?\n"; | ||
echo "Error: {$errstr}, errno: {$errno}\n"; | ||
echo "Address: {$this->getAddress()}\n"; | ||
return false; | ||
} | ||
$this->php = $this->launchPhp( $this->ppipes, $filename, $ini_options, $options ); | ||
$conn = @stream_socket_accept( $this->socket, isset( $options['timeout'] ) ? $options['timeout'] : 5 ); | ||
|
||
if ( $conn === false ) | ||
{ | ||
echo @file_get_contents( $this->tmpDir . 'php-stdout.txt' ), "\n"; | ||
echo @file_get_contents( $this->tmpDir . 'php-stderr.txt' ), "\n"; | ||
echo @file_get_contents( $this->tmpDir . 'error-output.txt' ), "\n"; | ||
echo @file_get_contents( $this->tmpDir . 'remote_log.txt' ), "\n"; | ||
proc_close( $this->php ); | ||
return false; | ||
} | ||
return $conn; | ||
} | ||
|
||
function stop( $conn, array $options = [] ) | ||
{ | ||
fclose( $conn ); | ||
fclose( $this->ppipes[0] ); | ||
fclose( $this->ppipes[1] ); | ||
fclose( $this->socket ); | ||
proc_close( $this->php ); | ||
|
||
if ( array_key_exists( 'show-stdout', $options ) && $options['show-stdout'] ) | ||
{ | ||
echo @file_get_contents( $this->tmpDir . 'php-stdout.txt' ), "\n"; | ||
} | ||
// echo @file_get_contents( $this->tmpDir . 'php-stderr.txt' ), "\n"; | ||
// echo @file_get_contents( $this->tmpDir . 'error-output.txt' ), "\n"; | ||
} | ||
|
||
function sendCommand( $conn, $command, $transaction_id ) | ||
{ | ||
// inject identifier | ||
$parts = explode( ' ', $command, 2 ); | ||
if ( count($parts) == 1 ) | ||
{ | ||
$command = $parts[0] . " -i $transaction_id"; | ||
} | ||
else | ||
{ | ||
$command = $parts[0] . " -i $transaction_id " . $parts[1]; | ||
} | ||
|
||
/* Replace PID macro */ | ||
$command = str_replace( "{{PID}}", $this->pid & 0x1ffff, $command ); | ||
|
||
$sanitised = $command; | ||
$sanitised = preg_replace( '@\sfile://.*[/\\\\](.*\.inc)\s@', ' file://\\1 ', $sanitised ); | ||
|
||
echo "-> ", $sanitised, "\n"; | ||
fwrite( $conn, $command . "\0" ); | ||
} | ||
|
||
function runTest( $filename, array $commands, array $ini_options = [], array $options = [] ) | ||
{ | ||
$conn = $this->start( $filename, $ini_options, $options ); | ||
if ( $conn === false ) | ||
{ | ||
return; | ||
} | ||
$i = 1; | ||
$procInfo = proc_get_status( $this->php ); | ||
$this->pid = $procInfo['pid']; | ||
|
||
// read header | ||
$this->doRead( $conn ); | ||
foreach ( $commands as $command ) | ||
{ | ||
$this->sendCommand( $conn, $command, $i ); | ||
$this->doRead( $conn, (string)$i ); | ||
|
||
$i++; | ||
} | ||
$this->stop( $conn, $options ); | ||
} | ||
} | ||
|
||
class DebugClientIPv6 extends DebugClient | ||
{ | ||
protected function getIPAddress() | ||
{ | ||
return "::1"; | ||
} | ||
|
||
protected function getAddress() | ||
{ | ||
return "tcp://[" . $this->getIPAddress() . "]:" . $this->getPort(); | ||
} | ||
|
||
public static function isSupported( &$errno, &$errstr ) | ||
{ | ||
$socket = @stream_socket_server( "tcp://[::1]:0", $errno, $errstr ); | ||
|
||
if ( $socket === false ) | ||
{ | ||
return false; | ||
} | ||
|
||
fclose( $socket ); | ||
return true; | ||
} | ||
} | ||
|
||
function dbgpRunFile( $data, $commands, array $ini_options = [], array $options = [] ) | ||
{ | ||
if ( isset( $options['ipv'] ) && $options['ipv'] == 6 ) | ||
{ | ||
$t = new DebugClientIPv6(); | ||
} | ||
else | ||
{ | ||
$t = new DebugClient(); | ||
} | ||
|
||
$t->runTest( $data, $commands, $ini_options, $options ); | ||
} | ||
?> |