Skip to content

Fix non blocking eof for TLS stream #3752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update and integrate openssl client proxy test
  • Loading branch information
bukka committed Jan 18, 2019
commit 4cccfb25357449bb1dcd85caec5fe9f0f62332d8
117 changes: 0 additions & 117 deletions ext/openssl/tests/ServerClientProxyTestCase.inc

This file was deleted.

80 changes: 52 additions & 28 deletions ext/openssl/tests/ServerClientTestCase.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

const WORKER_ARGV_VALUE = 'RUN_WORKER';

function phpt_notify()
const WORKER_DEFAULT_NAME = 'server';

function phpt_notify($worker = WORKER_DEFAULT_NAME)
{
ServerClientTestCase::getInstance()->notify();
ServerClientTestCase::getInstance()->notify($worker);
}

function phpt_wait()
function phpt_wait($worker = WORKER_DEFAULT_NAME)
{
ServerClientTestCase::getInstance()->wait();
ServerClientTestCase::getInstance()->wait($worker);
}

/**
Expand All @@ -20,11 +22,11 @@ class ServerClientTestCase
{
private $isWorker = false;

private $workerHandle;
private $workerHandle = [];

private $workerStdIn;
private $workerStdIn = [];

private $workerStdOut;
private $workerStdOut = [];

private static $instance;

Expand All @@ -46,26 +48,41 @@ class ServerClientTestCase
$this->isWorker = $isWorker;
}

private function spawnWorkerProcess($code)
private function spawnWorkerProcess($worker, $code)
{
if (defined("PHP_WINDOWS_VERSION_MAJOR")) {
$ini = php_ini_loaded_file();
$cmd = sprintf('%s %s "%s" %s', PHP_BINARY, $ini ? "-n -c $ini" : "", __FILE__, WORKER_ARGV_VALUE);
$ini = php_ini_loaded_file();
$cmd = sprintf(
'%s %s "%s" %s',
PHP_BINARY, $ini ? "-n -c $ini" : "",
__FILE__,
WORKER_ARGV_VALUE
);
} else {
$cmd = sprintf('%s "%s" %s', PHP_BINARY, __FILE__, WORKER_ARGV_VALUE);
$cmd = sprintf(
'%s "%s" %s %s',
PHP_BINARY,
__FILE__,
WORKER_ARGV_VALUE,
$worker
);
}
$this->workerHandle = proc_open($cmd, [['pipe', 'r'], ['pipe', 'w'], STDERR], $pipes);
$this->workerStdIn = $pipes[0];
$this->workerStdOut = $pipes[1];

fwrite($this->workerStdIn, $code . "\n---\n");
$this->workerHandle[$worker] = proc_open(
$cmd,
[['pipe', 'r'], ['pipe', 'w'], STDERR],
$pipes
);
$this->workerStdIn[$worker] = $pipes[0];
$this->workerStdOut[$worker] = $pipes[1];

fwrite($this->workerStdIn[$worker], $code . "\n---\n");
}

private function cleanupWorkerProcess()
private function cleanupWorkerProcess($worker)
{
fclose($this->workerStdIn);
fclose($this->workerStdOut);
proc_close($this->workerHandle);
fclose($this->workerStdIn[$worker]);
fclose($this->workerStdOut[$worker]);
proc_close($this->workerHandle[$worker]);
}

private function stripPhpTagsFromCode($code)
Expand All @@ -90,21 +107,28 @@ class ServerClientTestCase
eval($code);
}

public function run($proc1Code, $proc2Code)
public function run($masterCode, $workerCode)
{
$this->spawnWorkerProcess($this->stripPhpTagsFromCode($proc2Code));
eval($this->stripPhpTagsFromCode($proc1Code));
$this->cleanupWorkerProcess();
if (!is_array($workerCode)) {
$workerCode = [WORKER_DEFAULT_NAME => $workerCode];
}
foreach ($workerCode as $worker => $code) {
$this->spawnWorkerProcess($worker, $this->stripPhpTagsFromCode($code));
}
eval($this->stripPhpTagsFromCode($masterCode));
foreach ($workerCode as $worker => $code) {
$this->cleanupWorkerProcess($worker);
}
}

public function wait()
public function wait($worker)
{
fgets($this->isWorker ? STDIN : $this->workerStdOut);
fgets($this->isWorker ? STDIN : $this->workerStdOut[$worker]);
}

public function notify()
public function notify($worker)
{
fwrite($this->isWorker ? STDOUT : $this->workerStdIn, "\n");
fwrite($this->isWorker ? STDOUT : $this->workerStdIn[$worker], "\n");
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
--TEST--
php_stream_eof() should not block on SSL non-blocking streams when packets are fragmented
Bug #76705: feof might hang on TLS streams in case of fragmented TLS records
--SKIPIF--
<?php
if (!extension_loaded("openssl")) die("skip openssl not loaded");
if (!function_exists("proc_open")) die("skip no proc_open");
?>
--FILE--
<?php
$certFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug77390.pem.tmp';
$cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug77390-ca.pem.tmp';

$peerName = 'bug77390';
$clientCode = <<<'CODE'
$context = stream_context_create(['ssl' => ['verify_peer' => false, 'peer_name' => 'bug54992.local']]);
$context = stream_context_create(['ssl' => ['verify_peer' => false, 'peer_name' => '%s']]);

phpt_wait('server');
phpt_notify('proxy');
Expand All @@ -32,9 +35,10 @@ $clientCode = <<<'CODE'
phpt_notify('server');
phpt_notify('proxy');
CODE;
$clientCode = sprintf($clientCode, $peerName);

$serverCode = <<<'CODE'
$context = stream_context_create(['ssl' => ['local_cert' => __DIR__ . '/bug54992.pem']]);
$context = stream_context_create(['ssl' => ['local_cert' => '%s']]);

$flags = STREAM_SERVER_BIND|STREAM_SERVER_LISTEN;
$fp = stream_socket_server("ssl://127.0.0.1:10011", $errornum, $errorstr, $flags, $context);
Expand All @@ -46,6 +50,7 @@ $serverCode = <<<'CODE'
phpt_wait();
fclose($conn);
CODE;
$serverCode = sprintf($serverCode, $certFile);

$proxyCode = <<<'CODE'
phpt_wait();
Expand Down Expand Up @@ -87,12 +92,22 @@ $proxyCode = <<<'CODE'
phpt_wait();
CODE;

include 'ServerClientProxyTestCase.inc';
ServerClientProxyTestCase::getInstance()->run($clientCode, [
include 'CertificateGenerator.inc';
$certificateGenerator = new CertificateGenerator();
$certificateGenerator->saveCaCert($cacertFile);
$certificateGenerator->saveNewCertAsFileWithKey($peerName, $certFile);

include 'ServerClientTestCase.inc';
ServerClientTestCase::getInstance()->run($clientCode, [
'server' => $serverCode,
'proxy' => $proxyCode,
]);
?>
--CLEAN--
<?php
@unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug77390.pem.tmp');
@unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug77390-ca.pem.tmp');
?>
--EXPECT--
string(0) ""
string(0) ""
Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy