mirror of
https://github.com/php/php-src.git
synced 2024-12-28 03:10:16 +08:00
3c42f64e6e
Mainly use spaces for indent and fix some other CS issues. Also drop checks for unsupported OpenSSL library versions.
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
--TEST--
|
|
Bug #73072: Invalid path SNI_server_certs causes segfault
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("openssl")) die("skip openssl not loaded");
|
|
if (!function_exists("proc_open")) die("skip no proc_open");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$serverCode = <<<'CODE'
|
|
$flags = STREAM_SERVER_BIND|STREAM_SERVER_LISTEN;
|
|
$ctx = stream_context_create(['ssl' => [
|
|
'local_cert' => __DIR__ . '/domain1.pem',
|
|
'SNI_server_certs' => [
|
|
"domain1.com" => __DIR__ . "/sni_server_domain1.pem",
|
|
"domain2.com" => __DIR__ . "/not_existing.pem",
|
|
]
|
|
]]);
|
|
|
|
$server = stream_socket_server('tls://127.0.0.1:64322', $errno, $errstr, $flags, $ctx);
|
|
|
|
phpt_notify();
|
|
@stream_socket_accept($server, 3);
|
|
// if there is a segfault, this won't be called
|
|
fwrite(STDERR, "done\n");
|
|
CODE;
|
|
|
|
$clientCode = <<<'CODE'
|
|
$flags = STREAM_CLIENT_CONNECT;
|
|
$ctxArr = [
|
|
'cafile' => __DIR__ . '/sni_server_ca.pem',
|
|
'capture_peer_cert' => true
|
|
];
|
|
|
|
phpt_wait();
|
|
|
|
$ctxArr['peer_name'] = 'domain1.com';
|
|
$ctx = stream_context_create(['ssl' => $ctxArr]);
|
|
@stream_socket_client("tls://127.0.0.1:64322", $errno, $errstr, 1, $flags, $ctx);
|
|
CODE;
|
|
|
|
include 'ServerClientTestCase.inc';
|
|
ServerClientTestCase::getInstance()->run($clientCode, $serverCode);
|
|
?>
|
|
--EXPECT--
|
|
done
|