Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ngx_http_chunked_filter.c « modules « http « src - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e7bd28be1ffd1d353739261d0ac05818cb5bb3e (plain)
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

#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>


static int ngx_http_chunked_filter_init(ngx_cycle_t *cycle);


static ngx_http_module_t  ngx_http_chunked_filter_module_ctx = {
    NULL,                                  /* pre conf */

    NULL,                                  /* create main configuration */
    NULL,                                  /* init main configuration */

    NULL,                                  /* create server configuration */
    NULL,                                  /* merge server configuration */

    NULL,                                  /* create location configuration */
    NULL,                                  /* merge location configuration */
};


ngx_module_t  ngx_http_chunked_filter_module = {
    NGX_MODULE,
    &ngx_http_chunked_filter_module_ctx,   /* module context */
    NULL,                                  /* module directives */
    NGX_HTTP_MODULE,                       /* module type */
    ngx_http_chunked_filter_init,          /* init module */
    NULL                                   /* init child */
};


static ngx_http_output_header_filter_pt  ngx_http_next_header_filter;
static ngx_http_output_body_filter_pt    ngx_http_next_body_filter;


static int ngx_http_chunked_header_filter(ngx_http_request_t *r)
{
    if (r->headers_out.status == NGX_HTTP_NOT_MODIFIED) {
        return ngx_http_next_header_filter(r);
    }

    if (r->headers_out.content_length_n == -1) {
        if (r->http_version < NGX_HTTP_VERSION_11) {
            r->keepalive = 0;

        } else {
            r->chunked = 1;
        }
    }

    return ngx_http_next_header_filter(r);
}


static int ngx_http_chunked_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
{
    char         *chunk;
    size_t        size, len;
    ngx_hunk_t   *h;
    ngx_chain_t  *out, *cl, *tl, **ll;

    if (in == NULL || !r->chunked) {
        return ngx_http_next_body_filter(r, in);
    }

    ngx_test_null(out, ngx_alloc_chain_link(r->pool), NGX_ERROR);
    ll = &out->next;

    size = 0;
    cl = in;

    for ( ;; ) {
        size += ngx_hunk_size(cl->hunk);

        ngx_test_null(tl, ngx_alloc_chain_link(r->pool), NGX_ERROR);
        tl->hunk = cl->hunk;
        *ll = tl;
        ll = &tl->next;

        if (cl->next == NULL) {
            break;
        }

        cl = cl->next;
    }

    ngx_test_null(chunk, ngx_palloc(r->pool, 11), NGX_ERROR);
    len = ngx_snprintf(chunk, 11, SIZEX_FMT CRLF, size);

    ngx_test_null(h, ngx_calloc_hunk(r->pool), NGX_ERROR);
    h->type = NGX_HUNK_IN_MEMORY|NGX_HUNK_TEMP;
    h->pos = chunk;
    h->last = chunk + len;

    out->hunk = h;

    ngx_test_null(h, ngx_calloc_hunk(r->pool), NGX_ERROR);

    if (cl->hunk->type & NGX_HUNK_LAST) {
        cl->hunk->type &= ~NGX_HUNK_LAST;
        h->type = NGX_HUNK_IN_MEMORY|NGX_HUNK_MEMORY|NGX_HUNK_LAST;
        h->pos = CRLF "0" CRLF CRLF;
        h->last = h->pos + 7;

    } else {
        h->type = NGX_HUNK_IN_MEMORY|NGX_HUNK_MEMORY;
        h->pos = CRLF;
        h->last = h->pos + 2;
    }

    ngx_alloc_link_and_set_hunk(tl, h, r->pool, NGX_ERROR);
    *ll = tl;

    return ngx_http_next_body_filter(r, out);
}


static int ngx_http_chunked_filter_init(ngx_cycle_t *cycle)
{
    ngx_http_next_header_filter = ngx_http_top_header_filter;
    ngx_http_top_header_filter = ngx_http_chunked_header_filter;

    ngx_http_next_body_filter = ngx_http_top_body_filter;
    ngx_http_top_body_filter = ngx_http_chunked_body_filter;

    return NGX_OK;
}