-
Notifications
You must be signed in to change notification settings - Fork 439
/
ngx_child_http_request.c
799 lines (686 loc) · 19.4 KB
/
ngx_child_http_request.c
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
#include <nginx.h>
#include <ngx_event.h>
#include "ngx_child_http_request.h"
#include "ngx_http_vod_module.h"
// constants
#define RANGE_FORMAT "bytes=%O-%O"
// macros
#define is_in_memory(ctx) (ctx->response_buffer != NULL)
// typedefs
typedef struct {
// fixed
ngx_child_request_callback_t callback;
void* callback_context;
// deferred init
ngx_buf_t* response_buffer;
#if defined(nginx_version) && nginx_version >= 1013010
ngx_chain_t* response_chain;
#endif
ngx_list_t upstream_headers;
// temporary completion state
ngx_http_request_t* sr;
ngx_int_t error_code;
ngx_http_event_handler_pt original_write_event_handler;
void *original_context;
// misc
ngx_flag_t dont_send_header;
ngx_int_t send_header_result;
} ngx_child_request_context_t;
typedef struct {
ngx_str_t name;
off_t offset;
} ngx_child_request_hide_header_t;
// constants
static ngx_str_t ngx_http_vod_head_method = { 4, (u_char *) "HEAD " };
static ngx_str_t range_key = ngx_string("Range");
static u_char* range_lowcase_key = (u_char*)"range";
static ngx_uint_t range_hash =
ngx_hash(ngx_hash(ngx_hash(ngx_hash('r', 'a'), 'n'), 'g'), 'e');
static ngx_child_request_hide_header_t hide_headers[] = {
{ ngx_string("Accept"),
#if (NGX_HTTP_HEADERS)
offsetof(ngx_http_headers_in_t, accept)
#else
-1
#endif
},
{ ngx_string("Accept-Charset"), -1 },
{ ngx_string("Accept-Datetime"), -1 },
{ ngx_string("Accept-Encoding"),
#if (NGX_HTTP_GZIP)
offsetof(ngx_http_headers_in_t, accept_encoding)
#else
-1
#endif
},
{ ngx_string("Accept-Language"),
#if (NGX_HTTP_HEADERS)
offsetof(ngx_http_headers_in_t, accept_language)
#else
-1
#endif
},
{ ngx_string("If-Match"), offsetof(ngx_http_headers_in_t, if_match) },
{ ngx_string("If-Modified-Since"), offsetof(ngx_http_headers_in_t, if_modified_since) },
{ ngx_string("If-None-Match"), offsetof(ngx_http_headers_in_t, if_none_match) },
{ ngx_string("If-Range"), offsetof(ngx_http_headers_in_t, if_range) },
{ ngx_string("If-Unmodified-Since"), offsetof(ngx_http_headers_in_t, if_unmodified_since) },
{ ngx_null_string, -1 },
};
// globals
static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
static ngx_hash_t hide_headers_hash;
static void
ngx_child_request_wev_handler(ngx_http_request_t *r)
{
ngx_child_request_context_t* ctx;
ngx_http_upstream_t *u;
ngx_http_request_t* sr;
ngx_buf_t* b;
ngx_int_t rc;
off_t content_length;
ctx = ngx_http_get_module_ctx(r, ngx_http_vod_module);
// restore the write event handler
r->write_event_handler = ctx->original_write_event_handler;
ctx->original_write_event_handler = NULL;
// restore the original context
ngx_http_set_ctx(r, ctx->original_context, ngx_http_vod_module);
// get the completed upstream
sr = ctx->sr;
ctx->sr = NULL;
if (sr == NULL)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_wev_handler: unexpected, subrequest is null");
return;
}
u = sr->upstream;
#if defined(nginx_version) && nginx_version >= 1013010
if (is_in_memory(ctx))
{
if (sr->out == NULL || sr->out->buf == NULL)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_wev_handler: unexpected, output buffer is null");
return;
}
b = sr->out->buf;
}
else
{
b = NULL;
}
#else
if (u == NULL)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_wev_handler: unexpected, upstream is null");
return;
}
b = &u->buffer;
#endif
// code taken from echo-nginx-module to work around nginx subrequest issues
if (r == r->connection->data && r->postponed) {
if (r->postponed->request) {
r->connection->data = r->postponed->request;
#if defined(nginx_version) && nginx_version >= 8012
ngx_http_post_request(r->postponed->request, NULL);
#else
ngx_http_post_request(r->postponed->request);
#endif
}
else {
ngx_http_output_filter(r, NULL);
}
}
// get the final error code
rc = ctx->error_code;
if (rc == NGX_OK && is_in_memory(ctx) && u != NULL)
{
switch (u->headers_in.status_n)
{
case NGX_HTTP_OK:
case NGX_HTTP_PARTIAL_CONTENT:
if (u->headers_in.content_length_n > 0 && u->headers_in.content_length_n != b->last - b->pos)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_wev_handler: upstream connection was closed with %O bytes left to read",
u->headers_in.content_length_n - (b->last - b->pos));
rc = NGX_HTTP_BAD_GATEWAY;
}
break;
case NGX_HTTP_RANGE_NOT_SATISFIABLE:
// ignore this error, treat it like a successful read with empty body
rc = NGX_OK;
b->last = b->pos;
break;
default:
if (u->headers_in.status_n != 0)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_wev_handler: upstream returned a bad status %ui", u->headers_in.status_n);
}
else
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_wev_handler: failed to get upstream status");
}
rc = NGX_HTTP_BAD_GATEWAY;
break;
}
}
else if (rc == NGX_ERROR)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_wev_handler: got error -1, changing to 502");
rc = NGX_HTTP_BAD_GATEWAY;
}
if (ctx->send_header_result == NGX_ERROR || ctx->send_header_result > NGX_OK)
{
rc = ctx->send_header_result;
}
// get the content length
if (is_in_memory(ctx))
{
content_length = b->last - b->pos;
}
else if (u != NULL && u->state != NULL)
{
content_length = u->state->response_length;
}
else
{
content_length = 0;
}
if (ctx->callback != NULL)
{
// notify the caller
ctx->callback(ctx->callback_context, rc, b, content_length);
}
else
{
if (r->header_sent || ctx->dont_send_header)
{
// flush the buffer and close the request
ngx_http_send_special(r, NGX_HTTP_LAST);
ngx_http_finalize_request(r, NGX_OK);
}
else
{
// finalize the request
ngx_http_finalize_request(r, rc);
}
}
}
static ngx_int_t
ngx_child_request_finished_handler(
ngx_http_request_t *r,
void *data,
ngx_int_t rc)
{
ngx_http_request_t *pr;
ngx_child_request_context_t* ctx;
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_finished_handler: error code %i", rc);
// make sure we are not called twice for the same request
r->post_subrequest = NULL;
// save the completed upstream and error code in the context for the write event handler
ctx = ngx_http_get_module_ctx(r, ngx_http_vod_module);
if (ctx == NULL)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_finished_handler: unexpected, context is null");
return NGX_ERROR;
}
ctx->sr = r;
ctx->error_code = rc;
if (ctx->original_write_event_handler != NULL)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_finished_handler: "
"unexpected original_write_event_handler not null");
return NGX_ERROR;
}
// replace the parent write event handler
pr = r->parent;
ctx->original_write_event_handler = pr->write_event_handler;
pr->write_event_handler = ngx_child_request_wev_handler;
// temporarily replace the parent context
ctx->original_context = ngx_http_get_module_ctx(pr, ngx_http_vod_module);
ngx_http_set_ctx(pr, ctx, ngx_http_vod_module);
// work-around issues in nginx's event module (from echo-nginx-module)
if (r != r->connection->data
&& r->postponed
&& (r->main->posted_requests == NULL
|| r->main->posted_requests->request != pr))
{
#if defined(nginx_version) && nginx_version >= 8012
ngx_http_post_request(pr, NULL);
#else
ngx_http_post_request(pr);
#endif
}
return NGX_OK;
}
static void
ngx_child_request_initial_wev_handler(ngx_http_request_t *r)
{
ngx_child_request_context_t* ctx;
ngx_http_upstream_t* u;
ngx_connection_t *c;
c = r->connection;
// call the default request handler
r->write_event_handler = ngx_http_handler;
ngx_http_handler(r);
// if request was destroyed ignore
if (c->destroyed)
{
return;
}
// at this point the upstream should have been allocated by the proxy module
u = r->upstream;
if (u == NULL)
{
ngx_log_error(NGX_LOG_WARN, r->connection->log, 0,
"ngx_child_request_initial_wev_handler: upstream is null");
return;
}
// if the upstream module already started receiving, don't touch the buffer
if (u->buffer.start != NULL)
{
ngx_log_error(NGX_LOG_WARN, r->connection->log, 0,
"ngx_child_request_initial_wev_handler: upstream buffer was already allocated");
return;
}
// initialize the upstream buffer
ctx = ngx_http_get_module_ctx(r, ngx_http_vod_module);
if (ctx == NULL)
{
ngx_log_error(NGX_LOG_WARN, r->connection->log, 0,
"ngx_child_request_initial_wev_handler: context is null");
return;
}
#if defined(nginx_version) && nginx_version >= 1013010
r->out = ctx->response_chain;
#else
u->buffer = *ctx->response_buffer;
#endif
// initialize the headers list
u->headers_in.headers = ctx->upstream_headers;
u->headers_in.headers.last = &u->headers_in.headers.part;
}
#if !defined(nginx_version) || nginx_version < 1023000
static void
ngx_child_request_update_multi_header(
ngx_array_t* arr,
ngx_table_elt_t* cur_value,
ngx_table_elt_t* new_value)
{
ngx_table_elt_t** cur = arr->elts;
ngx_table_elt_t** last = cur + arr->nelts;
for (; cur < last; cur++)
{
if (*cur != cur_value)
{
continue;
}
*cur = new_value;
break;
}
}
#endif
static ngx_int_t
ngx_child_request_copy_headers(
ngx_http_request_t* r,
ngx_child_request_params_t* params,
ngx_http_headers_in_t* dest,
ngx_http_headers_in_t* src)
{
ngx_child_request_hide_header_t *hide_header;
ngx_http_core_main_conf_t *cmcf;
ngx_list_part_t *part;
ngx_table_elt_t *output;
ngx_table_elt_t *ch;
ngx_table_elt_t *h;
ngx_uint_t i = 0;
ngx_http_header_t *hh;
ngx_table_elt_t **ph;
ngx_uint_t count;
ngx_int_t rc;
// get the total header count
count = 0;
for (part = &src->headers.part; part; part = part->next)
{
count += part->nelts;
}
// allocate dest array
rc = ngx_list_init(&dest->headers, r->pool, count + 2, sizeof(ngx_table_elt_t));
if (rc != NGX_OK)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_copy_headers: ngx_list_init failed");
return NGX_ERROR;
}
#if defined(nginx_version) && nginx_version >= 1023000
// zero all named header fields
for (hh = ngx_http_headers_in; hh->name.len; hh++) {
ph = (ngx_table_elt_t **)((char *)dest + hh->offset);
*ph = NULL;
}
#endif
output = dest->headers.last->elts;
// copy relevant headers
cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
part = &src->headers.part;
h = part->elts;
for (i = 0; /* void */; i++)
{
if (i >= part->nelts)
{
if (part->next == NULL)
{
break;
}
part = part->next;
h = part->elts;
i = 0;
}
ch = h + i;
// remove range if needed
if (ch->hash == range_hash && !params->proxy_range && params->range_start >= params->range_end &&
ch->key.len == range_key.len &&
ngx_memcmp(ch->lowcase_key, range_lowcase_key, range_key.len) == 0)
{
dest->range = NULL;
continue;
}
if (!params->proxy_all_headers)
{
// remove headers from the hide list
hide_header = ngx_hash_find(&hide_headers_hash, ch->hash, ch->lowcase_key, ch->key.len);
if (hide_header != NULL)
{
if (hide_header->offset >= 0)
{
*(ngx_table_elt_t**)((u_char*)dest + hide_header->offset) = NULL;
}
continue;
}
}
// add the header to the output list
*output = *ch;
// update the header pointer, if exists
hh = ngx_hash_find(&cmcf->headers_in_hash, ch->hash,
ch->lowcase_key, ch->key.len);
if (hh)
{
#if defined(nginx_version) && nginx_version >= 1023000
ph = (ngx_table_elt_t **)((char *)dest + hh->offset);
output->next = *ph;
*ph = output;
#else
if ((ch->key.len == sizeof("cookie") - 1 &&
ngx_memcmp(ch->lowcase_key, "cookie", sizeof("cookie") - 1) == 0) ||
(ch->key.len == sizeof("x-forwarded-for") - 1 &&
ngx_memcmp(ch->lowcase_key, "x-forwarded-for", sizeof("x-forwarded-for") - 1) == 0))
{
// multi header
ngx_child_request_update_multi_header(
(ngx_array_t*)((char *)dest + hh->offset),
ch,
output);
}
else
{
// single header
ph = (ngx_table_elt_t **)((char *)dest + hh->offset);
*ph = output;
}
#endif
}
output++;
}
// add the extra header if needed
if (params->extra_header.key.len != 0)
{
*output++ = params->extra_header;
}
// set the range if needed
if (params->range_start < params->range_end)
{
if (dest->range == NULL)
{
h = output++;
h->hash = range_hash;
#if defined(nginx_version) && nginx_version >= 1023000
h->next = NULL;
#endif
h->key = range_key;
h->lowcase_key = range_lowcase_key;
dest->range = h;
}
else
{
h = dest->range;
}
h->value.data = ngx_pnalloc(r->pool, sizeof(RANGE_FORMAT) + 2 * NGX_OFF_T_LEN);
if (h->value.data == NULL)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_copy_headers: ngx_pnalloc failed");
return NGX_ERROR;
}
h->value.len = ngx_sprintf(
h->value.data,
RANGE_FORMAT,
params->range_start,
params->range_end - 1) - h->value.data;
h->value.data[h->value.len] = '\0';
}
// update the element count
dest->headers.last->nelts = output - (ngx_table_elt_t*)dest->headers.last->elts;
return NGX_OK;
}
ngx_int_t
ngx_child_request_start(
ngx_http_request_t *r,
ngx_child_request_callback_t callback,
void* callback_context,
ngx_str_t* internal_location,
ngx_child_request_params_t* params,
ngx_buf_t* response_buffer)
{
ngx_child_request_context_t* child_ctx;
ngx_http_post_subrequest_t *psr;
ngx_http_request_t *sr;
ngx_uint_t flags;
ngx_str_t uri;
ngx_int_t rc;
u_char* p;
// create the child context
child_ctx = ngx_pcalloc(r->pool, sizeof(*child_ctx));
if (child_ctx == NULL)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_start: ngx_pcalloc failed");
return NGX_ERROR;
}
child_ctx->callback = callback;
child_ctx->callback_context = callback_context;
child_ctx->response_buffer = response_buffer;
#if defined(nginx_version) && nginx_version >= 1013010
if (response_buffer != NULL)
{
child_ctx->response_chain = ngx_alloc_chain_link(r->pool);
if (child_ctx->response_chain == NULL)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_start: ngx_alloc_chain_link failed");
return NGX_ERROR;
}
child_ctx->response_chain->buf = response_buffer;
}
#endif
// build the subrequest uri
uri.data = ngx_pnalloc(r->pool, internal_location->len + params->base_uri.len + 1);
if (uri.data == NULL)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_start: ngx_palloc failed (2)");
return NGX_ERROR;
}
p = ngx_copy(uri.data, internal_location->data, internal_location->len);
p = ngx_copy(p, params->base_uri.data, params->base_uri.len);
*p = '\0';
uri.len = p - uri.data;
// create the subrequest
psr = ngx_palloc(r->pool, sizeof(ngx_http_post_subrequest_t));
if (psr == NULL)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_start: ngx_palloc failed (3)");
return NGX_ERROR;
}
psr->handler = ngx_child_request_finished_handler;
psr->data = r;
if (is_in_memory(child_ctx))
{
if (ngx_list_init(&child_ctx->upstream_headers, r->pool, 8,
sizeof(ngx_table_elt_t)) != NGX_OK)
{
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_start: ngx_list_init failed");
return NGX_ERROR;
}
flags = NGX_HTTP_SUBREQUEST_WAITED | NGX_HTTP_SUBREQUEST_IN_MEMORY;
}
else
{
flags = NGX_HTTP_SUBREQUEST_WAITED;
}
rc = ngx_http_subrequest(r, &uri, ¶ms->extra_args, &sr, psr, flags);
if (rc == NGX_ERROR)
{
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"ngx_child_request_start: ngx_http_subrequest failed %i", rc);
return rc;
}
// set the context of the subrequest
ngx_http_set_ctx(sr, child_ctx, ngx_http_vod_module);
// change the write_event_handler in order to inject the response buffer into the upstream
// (this can be done only after the proxy module allocates the upstream)
if (is_in_memory(child_ctx))
{
sr->write_event_handler = ngx_child_request_initial_wev_handler;
}
// Note: ngx_http_subrequest always sets the subrequest method to GET
if (params->method == NGX_HTTP_HEAD)
{
sr->method = NGX_HTTP_HEAD;
sr->method_name = ngx_http_vod_head_method;
}
// build the request headers
rc = ngx_child_request_copy_headers(r, params, &sr->headers_in, &r->headers_in);
if (rc != NGX_OK)
{
return rc;
}
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"ngx_child_request_start: completed successfully sr=%p", sr);
return NGX_AGAIN;
}
static ngx_int_t
ngx_child_request_header_filter(ngx_http_request_t *r)
{
ngx_child_request_context_t* ctx;
ngx_http_request_t* pr = r->parent;
// if the request is not a child of a vod request, ignore
if (pr == NULL || pr->header_sent || ngx_http_get_module_ctx(pr, ngx_http_vod_module) == NULL)
{
return ngx_http_next_header_filter(r);
}
// if the request is not a vod request or it's in memory, ignore
ctx = ngx_http_get_module_ctx(r, ngx_http_vod_module);
if (ctx == NULL)
{
return ngx_http_next_header_filter(r);
}
if (is_in_memory(ctx))
{
// check the returned content length, this is required only for nginx 1.13.10+
// in older versions, the validation will be performed by the upstream module
if (r->upstream != NULL &&
r->upstream->headers_in.content_length_n > ctx->response_buffer->end - ctx->response_buffer->last)
{
ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
"ngx_child_request_header_filter: upstream buffer is too small to read response");
return NGX_ERROR;
}
return ngx_http_next_header_filter(r);
}
if (r->headers_out.status != 0)
{
// send the parent request headers
pr->headers_out = r->headers_out;
if (r->headers_out.headers.last == &r->headers_out.headers.part)
{
pr->headers_out.headers.last = &pr->headers_out.headers.part;
}
ctx->send_header_result = ngx_http_send_header(pr);
}
else
{
// no status code, this can happen in case the proxy module got an invalid status line
// and assumed it's HTTP/0.9, just don't send any header and close the connection when done
ctx->dont_send_header = 1;
pr->keepalive = 0;
}
return ngx_http_next_header_filter(r);
}
ngx_int_t
ngx_child_request_init(ngx_conf_t *cf)
{
ngx_child_request_hide_header_t *h;
ngx_array_t hide_headers_arr;
ngx_hash_key_t *hk;
ngx_hash_init_t hash;
// Note: need to install a header filter in order to support dumping requests -
// the headers of the parent request need to be sent before any body data is written
ngx_http_next_header_filter = ngx_http_top_header_filter;
ngx_http_top_header_filter = ngx_child_request_header_filter;
// initialize hide_headers_hash
if (ngx_array_init(
&hide_headers_arr,
cf->temp_pool,
sizeof(hide_headers) / sizeof(hide_headers[0]),
sizeof(ngx_hash_key_t)) != NGX_OK)
{
return NGX_ERROR;
}
for (h = hide_headers; h->name.len; h++)
{
hk = ngx_array_push(&hide_headers_arr);
if (hk == NULL)
{
return NGX_ERROR;
}
hk->key = h->name;
hk->key_hash = ngx_hash_key_lc(h->name.data, h->name.len);
hk->value = h;
}
hash.max_size = 512;
hash.bucket_size = ngx_align(64, ngx_cacheline_size);
hash.name = "vod_hide_headers_hash";
hash.hash = &hide_headers_hash;
hash.key = ngx_hash_key_lc;
hash.pool = cf->pool;
hash.temp_pool = NULL;
if (ngx_hash_init(&hash, hide_headers_arr.elts, hide_headers_arr.nelts) != NGX_OK)
{
return NGX_ERROR;
}
return NGX_OK;
}