-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathstream_ssl_verify_client.t
171 lines (122 loc) · 4.06 KB
/
stream_ssl_verify_client.t
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#!/usr/bin/perl
# (C) Sergey Kandaurov
# (C) Andrey Zelenkov
# (C) Nginx, Inc.
# Tests for stream ssl module, ssl_verify_client.
###############################################################################
use warnings;
use strict;
use Test::More;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
use Test::Nginx::Stream qw/ stream /;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()->has(qw/stream stream_ssl stream_return socket_ssl/)
->has_daemon('openssl');
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
stream {
%%TEST_GLOBALS_STREAM%%
log_format status $status;
ssl_certificate_key 1.example.com.key;
ssl_certificate 1.example.com.crt;
server {
listen 127.0.0.1:8080;
return $ssl_client_verify:$ssl_client_cert;
ssl_verify_client on;
ssl_client_certificate 2.example.com.crt;
}
server {
listen 127.0.0.1:8081 ssl;
return $ssl_client_verify:$ssl_client_cert;
ssl_verify_client on;
ssl_client_certificate 2.example.com.crt;
access_log %%TESTDIR%%/status.log status;
}
server {
listen 127.0.0.1:8082 ssl;
return $ssl_client_verify:$ssl_client_cert;
ssl_verify_client optional;
ssl_client_certificate 2.example.com.crt;
ssl_trusted_certificate 3.example.com.crt;
}
server {
listen 127.0.0.1:8083 ssl;
return $ssl_client_verify:$ssl_client_cert;
ssl_verify_client optional_no_ca;
ssl_client_certificate 2.example.com.crt;
}
server {
listen 127.0.0.1:8084 ssl;
return $ssl_protocol;
}
}
EOF
$t->write_file('openssl.conf', <<EOF);
[ req ]
default_bits = 2048
encrypt_key = no
distinguished_name = req_distinguished_name
[ req_distinguished_name ]
EOF
my $d = $t->testdir();
foreach my $name ('1.example.com', '2.example.com', '3.example.com') {
system('openssl req -x509 -new '
. "-config $d/openssl.conf -subj /CN=$name/ "
. "-out $d/$name.crt -keyout $d/$name.key "
. ">>$d/openssl.out 2>&1") == 0
or die "Can't create certificate for $name: $!\n";
}
$t->run()->plan(10);
###############################################################################
is(stream('127.0.0.1:' . port(8080))->read(), ':', 'plain connection');
is(get(8081), '', 'no cert');
is(get(8082, '1.example.com'), '', 'bad optional cert');
is(get(8082), 'NONE:', 'no optional cert');
like(get(8083, '1.example.com'), qr/FAILED.*BEGIN/, 'bad optional_no_ca cert');
like(get(8081, '2.example.com'), qr/SUCCESS.*BEGIN/, 'good cert');
like(get(8082, '2.example.com'), qr/SUCCESS.*BEGIN/, 'good cert optional');
like(get(8082, '3.example.com'), qr/SUCCESS.*BEGIN/, 'good cert trusted');
TODO: {
local $TODO = 'broken TLSv1.3 CA list in LibreSSL'
if $t->has_module('LibreSSL') && test_tls13();
my $ca = join ' ', get(8082, '3.example.com');
is($ca, '/CN=2.example.com', 'no trusted sent');
}
$t->stop();
is($t->read_file('status.log'), "500\n200\n", 'log');
###############################################################################
sub test_tls13 {
get(8084) =~ /TLSv1.3/;
}
sub get {
my ($port, $cert) = @_;
my $s = stream(
PeerAddr => '127.0.0.1:' . port($port),
SSL => 1,
$cert ? (
SSL_cert_file => "$d/$cert.crt",
SSL_key_file => "$d/$cert.key"
) : ()
);
return $s->read() unless wantarray();
# Note: this uses IO::Socket::SSL::_get_ssl_object() internal method.
# While not exactly correct, it looks like there is no other way to
# obtain CA list with IO::Socket::SSL, and this seems to be good
# enough for tests.
my $ssl = $s->socket()->_get_ssl_object();
my $list = Net::SSLeay::get_client_CA_list($ssl);
my @names;
for my $i (0 .. Net::SSLeay::sk_X509_NAME_num($list) - 1) {
my $name = Net::SSLeay::sk_X509_NAME_value($list, $i);
push @names, Net::SSLeay::X509_NAME_oneline($name);
}
return @names;
}
###############################################################################