-
Notifications
You must be signed in to change notification settings - Fork 1
/
body_discard.t
449 lines (363 loc) · 10.7 KB
/
body_discard.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
#!/usr/bin/perl
# (C) Maxim Dounin
# Tests for discarding request body.
###############################################################################
use warnings;
use strict;
use Test::More;
use Socket qw/ CRLF /;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()
->has(qw/http proxy rewrite addition memcached/);
plan(skip_all => 'not yet') unless $t->has_version('1.27.0');
$t->plan(33)->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
server {
listen 127.0.0.1:8080;
server_name localhost;
lingering_timeout 1s;
add_header X-Body body:$content_length:$request_body:;
client_max_body_size 1k;
error_page 400 /proxy/error400;
location / {
error_page 413 /error413;
proxy_pass http://127.0.0.1:8082;
}
location /error413 {
return 200 "custom error 413";
}
location /add {
return 200 "main response";
add_before_body /add/before;
addition_types *;
client_max_body_size 1m;
}
location /add/before {
proxy_pass http://127.0.0.1:8081;
}
location /memcached {
client_max_body_size 1m;
error_page 502 /memcached/error502;
memcached_pass 127.0.0.1:8083;
set $memcached_key $request_uri;
}
location /memcached/error502 {
proxy_pass http://127.0.0.1:8081;
}
location /proxy {
client_max_body_size 1;
error_page 413 /proxy/error413;
error_page 400 /proxy/error400;
error_page 502 /proxy/error502;
proxy_pass http://127.0.0.1:8083;
}
location /proxy/error413 {
proxy_pass http://127.0.0.1:8081;
}
location /proxy/error400 {
proxy_pass http://127.0.0.1:8081;
}
location /proxy/error502 {
proxy_pass http://127.0.0.1:8081;
}
location /unbuf {
client_max_body_size 1m;
error_page 502 /unbuf/error502;
proxy_pass http://127.0.0.1:8083;
proxy_request_buffering off;
proxy_http_version 1.1;
}
location /unbuf/error502 {
client_max_body_size 1m;
proxy_pass http://127.0.0.1:8081;
}
location /length {
client_max_body_size 1;
error_page 413 /length/error413;
error_page 502 /length/error502;
proxy_pass http://127.0.0.1:8083;
}
location /length/error413 {
return 200 "frontend body:$content_length:$request_body:";
}
location /length/error502 {
return 200 "frontend body:$content_length:$request_body:";
}
}
server {
listen 127.0.0.1:8081;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:8082;
proxy_set_header X-Body body:$content_length:$request_body:;
}
}
server {
listen 127.0.0.1:8082;
server_name localhost;
return 200 "backend $http_x_body";
}
server {
listen 127.0.0.1:8083;
server_name localhost;
return 444;
}
}
EOF
$t->run();
###############################################################################
# error_page 413 should work without redefining client_max_body_size
like(http(
'POST / HTTP/1.0' . CRLF .
'Content-Length: 10000' . CRLF . CRLF .
'0123456789'
), qr/ 413 .*custom error 413/s, 'custom error 413');
# subrequest after discarding body
like(http(
'GET /add HTTP/1.0' . CRLF . CRLF
), qr/backend body:::.*main response/s, 'add');
like(http(
'POST /add HTTP/1.0' . CRLF .
'Content-Length: 10' . CRLF . CRLF .
'0123456789'
), qr/backend body:::.*main response/s, 'add small');
like(http(
'POST /add HTTP/1.0' . CRLF .
'Content-Length: 10000' . CRLF . CRLF .
'0123456789'
), qr/backend body:::.*main response/s, 'add long');
like(http(
'POST /add HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'a' . CRLF .
'0123456789' . CRLF .
'0' . CRLF . CRLF
), qr/backend body:::.*main response/s, 'add chunked');
like(http(
'POST /add HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'1' . CRLF .
'X' . CRLF .
'9' . CRLF .
'123456789' . CRLF .
'0' . CRLF . CRLF
), qr/backend body:::.*main response/s, 'add chunked multi');
like(http(
'POST /add HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'ffff' . CRLF .
'0123456789'
), qr/backend body:::.*main response/s, 'add chunked long');
# error_page 502 with proxy_pass after discarding body
like(http(
'GET /memcached HTTP/1.0' . CRLF . CRLF
), qr/ 502 .*backend body:::/s, 'memcached');
like(http(
'GET /memcached HTTP/1.0' . CRLF .
'Content-Length: 10' . CRLF . CRLF .
'0123456789'
), qr/ 502 .*backend body:::/s, 'memcached small');
like(http(
'GET /memcached HTTP/1.0' . CRLF .
'Content-Length: 10000' . CRLF . CRLF .
'0123456789'
), qr/ 502 .*backend body:::/s, 'memcached long');
like(http(
'GET /memcached HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'a' . CRLF .
'0123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 502 .*backend body:::/s, 'memcached chunked');
like(http(
'GET /memcached HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'1' . CRLF .
'X' . CRLF .
'9' . CRLF .
'123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 502 .*backend body:::/s, 'memcached chunked multi');
like(http(
'GET /memcached HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'ffff' . CRLF .
'0123456789'
), qr/ 502 .*backend body:::/s, 'memcached chunked long');
# error_page 413 with proxy_pass
like(http(
'GET /proxy HTTP/1.0' . CRLF . CRLF
), qr/ 502 .*backend body:::/s, 'proxy');
like(http(
'POST /proxy HTTP/1.0' . CRLF .
'Content-Length: 10' . CRLF . CRLF .
'0123456789'
), qr/ 413 .*backend body:::/s, 'proxy small');
like(http(
'POST /proxy HTTP/1.0' . CRLF .
'Content-Length: 10000' . CRLF . CRLF .
'0123456789'
), qr/ 413 .*backend body:::/s, 'proxy long');
like(http(
'POST /proxy HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'a' . CRLF .
'0123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 413 .*backend body:::/s, 'proxy chunked');
like(http(
'POST /proxy HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'1' . CRLF .
'X' . CRLF .
'9' . CRLF .
'123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 413 .*backend body:::/s, 'proxy chunked multi');
like(http(
'POST /proxy HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'ffff' . CRLF .
'0123456789'
), qr/ 413 .*backend body:::/s, 'proxy chunked long');
# error_page 400 with proxy_pass
# note that "chunked and length" test triggers 400 during parsing
# request headers, and therefore needs error_page at server level
like(http(
'POST /proxy HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'1' . CRLF .
'X' . CRLF .
'X' . CRLF
), qr/ 400 .*backend body:::/s, 'proxy chunked bad');
like(http(
'POST /proxy HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Content-Length: 10' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'0' . CRLF . CRLF
), qr/ 400 .*backend body:::/s, 'proxy chunked and length');
# error_page 502 after proxy with request buffering disabled
like(http(
'GET /unbuf HTTP/1.0' . CRLF . CRLF
), qr/ 502 .*backend body:::/s, 'unbuf proxy');
like(http(
'POST /unbuf HTTP/1.0' . CRLF .
'Content-Length: 10' . CRLF . CRLF .
'0',
sleep => 0.1,
body =>
'123456789'
), qr/ 502 .*backend body:::/s, 'unbuf proxy small');
like(http(
'POST /unbuf HTTP/1.0' . CRLF .
'Content-Length: 10000' . CRLF . CRLF .
'0123456789'
), qr/ 502 .*backend body:::/s, 'unbuf proxy long');
like(http(
'POST /unbuf HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF,
sleep => 0.1,
body =>
'a' . CRLF .
'0123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 502 .*backend body:::/s, 'unbuf proxy chunked');
like(http(
'POST /unbuf HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'1' . CRLF .
'X' . CRLF,
sleep => 0.1,
body =>
'9' . CRLF .
'123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 502 .*backend body:::/s, 'unbuf proxy chunked multi');
like(http(
'POST /unbuf HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'ffff' . CRLF .
'0123456789'
), qr/ 502 .*backend body:::/s, 'unbuf proxy chunked long');
# error_page 413 and $content_length
# (used in fastcgi_pass, grpc_pass, uwsgi_pass)
like(http(
'GET /length HTTP/1.0' . CRLF . CRLF
), qr/ 502 .*frontend body:::/s, '$content_length');
like(http(
'POST /length HTTP/1.0' . CRLF .
'Content-Length: 10' . CRLF . CRLF .
'0123456789'
), qr/ 413 .*frontend body:::/s, '$content_length small');
like(http(
'POST /length HTTP/1.0' . CRLF .
'Content-Length: 10000' . CRLF . CRLF .
'0123456789'
), qr/ 413 .*frontend body:::/s, '$content_length long');
like(http(
'POST /length HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'a' . CRLF .
'0123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 413 .*frontend body:::/s, '$content_length chunked');
like(http(
'POST /length HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'1' . CRLF .
'X' . CRLF .
'9' . CRLF .
'123456789' . CRLF .
'0' . CRLF . CRLF
), qr/ 413 .*frontend body:::/s, '$content_length chunked multi');
like(http(
'POST /length HTTP/1.1' . CRLF .
'Host: localhost' . CRLF .
'Connection: close' . CRLF .
'Transfer-Encoding: chunked' . CRLF . CRLF .
'ffff' . CRLF .
'0123456789'
), qr/ 413 .*frontend body:::/s, '$content_length chunked long');
###############################################################################