-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathstream_upstream_service_reload.t
316 lines (228 loc) · 6.77 KB
/
stream_upstream_service_reload.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#!/usr/bin/perl
# (C) Sergey Kandaurov
# (C) Nginx, Inc.
# Stream tests for dynamic upstream configuration with service (SRV) feature.
# Ensure that upstream configuration is inherited on reload.
###############################################################################
use warnings;
use strict;
use Test::More;
use IO::Select;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
use Test::Nginx::Stream qw/ stream /;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
plan(skip_all => 'win32') if $^O eq 'MSWin32';
my $t = Test::Nginx->new()->has(qw/stream stream_upstream_zone/);
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
stream {
%%TEST_GLOBALS_STREAM%%
upstream u {
zone z 1m;
server example.net resolve service=http;
}
# lower the retry timeout after empty reply
resolver 127.0.0.1:%%PORT_8980_UDP%% valid=1s;
# retry query shortly after DNS is started
resolver_timeout 1s;
log_format test $upstream_addr;
server {
listen 127.0.0.1:8082;
proxy_pass u;
proxy_connect_timeout 50ms;
access_log %%TESTDIR%%/cc.log test;
}
}
EOF
my $p = port(8081);
$t->run_daemon(\&dns_daemon, $t)->waitforfile($t->testdir . '/' . port(8980));
$t->try_run('no resolve in upstream server')->plan(6);
###############################################################################
update_name({A => '127.0.0.201', SRV => "1 5 $p example.net"});
stream('127.0.0.1:' . port(8082))->read();
stream('127.0.0.1:' . port(8082))->read();
update_name({ERROR => 'SERVFAIL'}, 0);
$t->reload();
waitforworker($t);
stream('127.0.0.1:' . port(8082))->read();
stream('127.0.0.1:' . port(8082))->read();
update_name({A => '127.0.0.202', SRV => "1 5 $p example.net"});
stream('127.0.0.1:' . port(8082))->read();
stream('127.0.0.1:' . port(8082))->read();
$t->stop();
Test::Nginx::log_core('||', $t->read_file('cc.log'));
open my $f, '<', "${\($t->testdir())}/cc.log" or die "Can't open cc.log: $!";
like($f->getline(), qr/127.0.0.201:$p/, 'log - before');
like($f->getline(), qr/127.0.0.201:$p/, 'log - before 2');
like($f->getline(), qr/127.0.0.201:$p/, 'log - preresolve');
like($f->getline(), qr/127.0.0.201:$p/, 'log - preresolve 2');
like($f->getline(), qr/127.0.0.202:$p/, 'log - update');
like($f->getline(), qr/127.0.0.202:$p/, 'log - update 2');
###############################################################################
sub waitforworker {
my ($t) = @_;
for (1 .. 30) {
last if $t->read_file('error.log') =~ /exited with code/;
select undef, undef, undef, 0.2;
}
}
sub update_name {
my ($name, $plan) = @_;
$plan = 3 if !defined $plan;
sub sock {
IO::Socket::INET->new(
Proto => 'tcp',
PeerAddr => '127.0.0.1:' . port(8081)
)
or die "Can't connect to nginx: $!\n";
}
$name->{A} = '' unless $name->{A};
$name->{ERROR} = '' unless $name->{ERROR};
$name->{SRV} = '' unless $name->{SRV};
my $req =<<EOF;
GET / HTTP/1.0
Host: localhost
X-A: $name->{A}
X-ERROR: $name->{ERROR}
X-SRV: $name->{SRV}
EOF
my ($gen) = http($req, socket => sock()) =~ /X-Gen: (\d+)/;
for (1 .. 10) {
my ($gen2) = http($req, socket => sock()) =~ /X-Gen: (\d+)/;
# let resolver cache expire to finish upstream reconfiguration
select undef, undef, undef, 0.5;
last unless ($gen + $plan > $gen2);
}
}
###############################################################################
sub reply_handler {
my ($recv_data, $h) = @_;
my (@name, @rdata);
use constant NOERROR => 0;
use constant SERVFAIL => 2;
use constant NXDOMAIN => 3;
use constant A => 1;
use constant SRV => 33;
use constant IN => 1;
# default values
my ($hdr, $rcode, $ttl, $port) = (0x8180, NOERROR, 3600, port(8080));
$h = {A => [ "127.0.0.201" ], SRV => [ "1 5 $port example.net" ]}
unless defined $h;
# decode name
my ($len, $offset) = (undef, 12);
while (1) {
$len = unpack("\@$offset C", $recv_data);
last if $len == 0;
$offset++;
push @name, unpack("\@$offset A$len", $recv_data);
$offset += $len;
}
$offset -= 1;
my ($id, $type, $class) = unpack("n x$offset n2", $recv_data);
my $name = join('.', @name);
if ($h->{ERROR}) {
$rcode = SERVFAIL;
goto bad;
}
if ($name eq '_http._tcp.example.net' && $type == SRV && $h->{SRV}) {
map { push @rdata, rd_srv($ttl, (split ' ', $_)) }
@{$h->{SRV}};
} elsif ($name eq 'example.net' && $type == A && $h->{A}) {
map { push @rdata, rd_addr($ttl, $_) } @{$h->{A}};
}
bad:
Test::Nginx::log_core('||', "DNS: $name $type $rcode");
$len = @name;
pack("n6 (C/a*)$len x n2", $id, $hdr | $rcode, 1, scalar @rdata,
0, 0, @name, $type, $class) . join('', @rdata);
}
sub rd_srv {
my ($ttl, $pri, $w, $port, $name) = @_;
my @rdname = split /\./, $name;
my $rdlen = length(join '', @rdname) + @rdname + 7; # pri w port x
pack 'n3N n n3 (C/a*)* x',
0xc00c, SRV, IN, $ttl, $rdlen, $pri, $w, $port, @rdname;
}
sub rd_addr {
my ($ttl, $addr) = @_;
my $code = 'split(/\./, $addr)';
pack 'n3N nC4', 0xc00c, A, IN, $ttl, eval "scalar $code", eval($code);
}
sub dns_daemon {
my ($t) = @_;
my ($data, $recv_data, $h);
my $socket = IO::Socket::INET->new(
LocalAddr => '127.0.0.1',
LocalPort => port(8980),
Proto => 'udp',
)
or die "Can't create listening socket: $!\n";
my $control = IO::Socket::INET->new(
Proto => 'tcp',
LocalHost => "127.0.0.1:" . port(8081),
Listen => 5,
Reuse => 1
)
or die "Can't create listening socket: $!\n";
my $sel = IO::Select->new($socket, $control);
local $SIG{PIPE} = 'IGNORE';
# signal we are ready
open my $fh, '>', $t->testdir() . '/' . port(8980);
close $fh;
my $cnt = 0;
while (my @ready = $sel->can_read) {
foreach my $fh (@ready) {
if ($control == $fh) {
my $new = $fh->accept;
$new->autoflush(1);
$sel->add($new);
} elsif ($socket == $fh) {
$fh->recv($recv_data, 65536);
$data = reply_handler($recv_data, $h);
$fh->send($data);
$cnt++;
} else {
$h = process_name($fh, $cnt);
$sel->remove($fh);
$fh->close;
}
}
}
}
# parse dns update
sub process_name {
my ($client, $cnt) = @_;
my $port = $client->sockport();
my $headers = '';
my $uri = '';
my %h;
while (<$client>) {
$headers .= $_;
last if (/^\x0d?\x0a?$/);
}
return 1 if $headers eq '';
$uri = $1 if $headers =~ /^\S+\s+([^ ]+)\s+HTTP/i;
return 1 if $uri eq '';
$headers =~ /X-A: (.*)$/m;
map { push @{$h{A}}, $_ } split(/ /, $1);
$headers =~ /X-SRV: (.*)$/m;
map { push @{$h{SRV}}, $_ } split(/;/, $1);
$headers =~ /X-ERROR: (.*)$/m;
$h{ERROR} = $1;
Test::Nginx::log_core('||', "$port: response, 200");
print $client <<EOF;
HTTP/1.1 200 OK
Connection: close
X-Gen: $cnt
OK
EOF
return \%h;
}
###############################################################################