⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ngx_http_gzip_filter_module.c

📁 nginx 反向代理0.7.1版本 用于实现反向代理
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (C) Igor Sysoev */#include <ngx_config.h>#include <ngx_core.h>#include <ngx_http.h>#include <zlib.h>typedef struct {    ngx_flag_t           enable;    ngx_flag_t           no_buffer;    ngx_array_t         *types;     /* array of ngx_str_t */    ngx_bufs_t           bufs;    ngx_int_t            level;    size_t               wbits;    size_t               memlevel;    ssize_t              min_length;} ngx_http_gzip_conf_t;typedef struct {    ngx_chain_t         *in;    ngx_chain_t         *free;    ngx_chain_t         *busy;    ngx_chain_t         *out;    ngx_chain_t        **last_out;    ngx_buf_t           *in_buf;    ngx_buf_t           *out_buf;    ngx_int_t            bufs;    off_t                length;    void                *preallocated;    char                *free_mem;    ngx_uint_t           allocated;    unsigned             flush:4;    unsigned             redo:1;    unsigned             done:1;    size_t               zin;    size_t               zout;    uint32_t             crc32;    z_stream             zstream;    ngx_http_request_t  *request;} ngx_http_gzip_ctx_t;static void *ngx_http_gzip_filter_alloc(void *opaque, u_int items,    u_int size);static void ngx_http_gzip_filter_free(void *opaque, void *address);static void ngx_http_gzip_error(ngx_http_gzip_ctx_t *ctx);static ngx_int_t ngx_http_gzip_add_variables(ngx_conf_t *cf);static ngx_int_t ngx_http_gzip_ratio_variable(ngx_http_request_t *r,    ngx_http_variable_value_t *v, uintptr_t data);static ngx_int_t ngx_http_gzip_filter_init(ngx_conf_t *cf);static void *ngx_http_gzip_create_conf(ngx_conf_t *cf);static char *ngx_http_gzip_merge_conf(ngx_conf_t *cf,    void *parent, void *child);static char *ngx_http_gzip_types(ngx_conf_t *cf, ngx_command_t *cmd,    void *conf);static char *ngx_http_gzip_window(ngx_conf_t *cf, void *post, void *data);static char *ngx_http_gzip_hash(ngx_conf_t *cf, void *post, void *data);static ngx_conf_num_bounds_t  ngx_http_gzip_comp_level_bounds = {    ngx_conf_check_num_bounds, 1, 9};static ngx_conf_post_handler_pt  ngx_http_gzip_window_p = ngx_http_gzip_window;static ngx_conf_post_handler_pt  ngx_http_gzip_hash_p = ngx_http_gzip_hash;static ngx_command_t  ngx_http_gzip_filter_commands[] = {    { ngx_string("gzip"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LIF_CONF                        |NGX_CONF_FLAG,      ngx_conf_set_flag_slot,      NGX_HTTP_LOC_CONF_OFFSET,      offsetof(ngx_http_gzip_conf_t, enable),      NULL },    { ngx_string("gzip_buffers"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE2,      ngx_conf_set_bufs_slot,      NGX_HTTP_LOC_CONF_OFFSET,      offsetof(ngx_http_gzip_conf_t, bufs),      NULL },    { ngx_string("gzip_types"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_1MORE,      ngx_http_gzip_types,      NGX_HTTP_LOC_CONF_OFFSET,      0,      NULL },    { ngx_string("gzip_comp_level"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,      ngx_conf_set_num_slot,      NGX_HTTP_LOC_CONF_OFFSET,      offsetof(ngx_http_gzip_conf_t, level),      &ngx_http_gzip_comp_level_bounds },    { ngx_string("gzip_window"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,      ngx_conf_set_size_slot,      NGX_HTTP_LOC_CONF_OFFSET,      offsetof(ngx_http_gzip_conf_t, wbits),      &ngx_http_gzip_window_p },    { ngx_string("gzip_hash"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,      ngx_conf_set_size_slot,      NGX_HTTP_LOC_CONF_OFFSET,      offsetof(ngx_http_gzip_conf_t, memlevel),      &ngx_http_gzip_hash_p },    { ngx_string("gzip_no_buffer"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,      ngx_conf_set_flag_slot,      NGX_HTTP_LOC_CONF_OFFSET,      offsetof(ngx_http_gzip_conf_t, no_buffer),      NULL },    { ngx_string("gzip_min_length"),      NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,      ngx_conf_set_size_slot,      NGX_HTTP_LOC_CONF_OFFSET,      offsetof(ngx_http_gzip_conf_t, min_length),      NULL },      ngx_null_command};static ngx_http_module_t  ngx_http_gzip_filter_module_ctx = {    ngx_http_gzip_add_variables,           /* preconfiguration */    ngx_http_gzip_filter_init,             /* postconfiguration */    NULL,                                  /* create main configuration */    NULL,                                  /* init main configuration */    NULL,                                  /* create server configuration */    NULL,                                  /* merge server configuration */    ngx_http_gzip_create_conf,             /* create location configuration */    ngx_http_gzip_merge_conf               /* merge location configuration */};ngx_module_t  ngx_http_gzip_filter_module = {    NGX_MODULE_V1,    &ngx_http_gzip_filter_module_ctx,      /* module context */    ngx_http_gzip_filter_commands,         /* module directives */    NGX_HTTP_MODULE,                       /* module type */    NULL,                                  /* init master */    NULL,                                  /* init module */    NULL,                                  /* init process */    NULL,                                  /* init thread */    NULL,                                  /* exit thread */    NULL,                                  /* exit process */    NULL,                                  /* exit master */    NGX_MODULE_V1_PADDING};static u_char  gzheader[10] = { 0x1f, 0x8b, Z_DEFLATED, 0, 0, 0, 0, 0, 0, 3 };#if (NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED)struct gztrailer {    uint32_t  crc32;    uint32_t  zlen;};#else /* NGX_HAVE_BIG_ENDIAN || !NGX_HAVE_NONALIGNED */struct gztrailer {    u_char  crc32[4];    u_char  zlen[4];};#endifstatic ngx_str_t  ngx_http_gzip_ratio = ngx_string("gzip_ratio");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 ngx_int_tngx_http_gzip_header_filter(ngx_http_request_t *r){    ngx_str_t                 *type;    ngx_uint_t                 i;    ngx_table_elt_t           *h;    ngx_http_gzip_ctx_t       *ctx;    ngx_http_gzip_conf_t      *conf;    ngx_http_core_loc_conf_t  *clcf;    conf = ngx_http_get_module_loc_conf(r, ngx_http_gzip_filter_module);    if (!conf->enable        || (r->headers_out.status != NGX_HTTP_OK            && r->headers_out.status != NGX_HTTP_FORBIDDEN            && r->headers_out.status != NGX_HTTP_NOT_FOUND)        || r->header_only        || r->headers_out.content_type.len == 0        || (r->headers_out.content_encoding            && r->headers_out.content_encoding->value.len)        || (r->headers_out.content_length_n != -1            && r->headers_out.content_length_n < conf->min_length)        || ngx_http_gzip_ok(r) != NGX_OK)    {        return ngx_http_next_header_filter(r);    }    type = conf->types->elts;    for (i = 0; i < conf->types->nelts; i++) {        if (r->headers_out.content_type.len >= type[i].len            && ngx_strncasecmp(r->headers_out.content_type.data,                               type[i].data, type[i].len) == 0)        {            goto found;        }    }    return ngx_http_next_header_filter(r);found:    ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_gzip_ctx_t));    if (ctx == NULL) {        return NGX_ERROR;    }    ngx_http_set_ctx(r, ctx, ngx_http_gzip_filter_module);    ctx->request = r;    h = ngx_list_push(&r->headers_out.headers);    if (h == NULL) {        return NGX_ERROR;    }    h->hash = 1;    h->key.len = sizeof("Content-Encoding") - 1;    h->key.data = (u_char *) "Content-Encoding";    h->value.len = sizeof("gzip") - 1;    h->value.data = (u_char *) "gzip";    r->headers_out.content_encoding = h;    clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);    if (clcf->gzip_vary) {        h = ngx_list_push(&r->headers_out.headers);        if (h == NULL) {            return NGX_ERROR;        }        h->hash = 1;        h->key.len = sizeof("Vary") - 1;        h->key.data = (u_char *) "Vary";        h->value.len = sizeof("Accept-Encoding") - 1;        h->value.data = (u_char *) "Accept-Encoding";    }    ctx->length = r->headers_out.content_length_n;    r->main_filter_need_in_memory = 1;    ngx_http_clear_content_length(r);    ngx_http_clear_accept_ranges(r);    return ngx_http_next_header_filter(r);}static ngx_int_tngx_http_gzip_body_filter(ngx_http_request_t *r, ngx_chain_t *in){    int                    rc, wbits, memlevel;    ngx_int_t              last;    struct gztrailer      *trailer;    ngx_buf_t             *b;    ngx_chain_t           *cl, out;    ngx_http_gzip_ctx_t   *ctx;    ngx_http_gzip_conf_t  *conf;    ctx = ngx_http_get_module_ctx(r, ngx_http_gzip_filter_module);    if (ctx == NULL || ctx->done) {        return ngx_http_next_body_filter(r, in);    }    conf = ngx_http_get_module_loc_conf(r, ngx_http_gzip_filter_module);    if (ctx->preallocated == NULL) {        wbits = conf->wbits;        memlevel = conf->memlevel;        if (ctx->length > 0) {            /* the actual zlib window size is smaller by 262 bytes */            while (ctx->length < ((1 << (wbits - 1)) - 262)) {                wbits--;                memlevel--;            }        }        /*         * We preallocate a memory for zlib in one buffer (200K-400K), this         * decreases a number of malloc() and free() calls and also probably         * decreases a number of syscalls (sbrk() and so on).         * Besides we free this memory as soon as the gzipping will complete         * and do not wait while a whole response will be sent to a client.         *         * 8K is for zlib deflate_state, it takes         *  *) 5816 bytes on i386 and sparc64 (32-bit mode)         *  *) 5920 bytes on amd64 and sparc64         */        ctx->allocated = 8192 + (1 << (wbits + 2)) + (1 << (memlevel + 9));        ctx->preallocated = ngx_palloc(r->pool, ctx->allocated);        if (ctx->preallocated == NULL) {            return NGX_ERROR;        }        ctx->free_mem = ctx->preallocated;        ctx->zstream.zalloc = ngx_http_gzip_filter_alloc;        ctx->zstream.zfree = ngx_http_gzip_filter_free;        ctx->zstream.opaque = ctx;        rc = deflateInit2(&ctx->zstream, (int) conf->level, Z_DEFLATED,                          -wbits, memlevel, Z_DEFAULT_STRATEGY);        if (rc != Z_OK) {            ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,                          "deflateInit2() failed: %d", rc);            ngx_http_gzip_error(ctx);            return NGX_ERROR;        }        b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));        if (b == NULL) {            ngx_http_gzip_error(ctx);            return NGX_ERROR;        }        b->memory = 1;        b->pos = gzheader;        b->last = b->pos + 10;        out.buf = b;        out.next = NULL;        /*         * We pass the gzheader to the next filter now to avoid its linking         * to the ctx->busy chain.  zlib does not usually output the compressed         * data in the initial iterations, so the gzheader that was linked         * to the ctx->busy chain would be flushed by ngx_http_write_filter().         */        if (ngx_http_next_body_filter(r, &out) == NGX_ERROR) {            ngx_http_gzip_error(ctx);            return NGX_ERROR;        }        r->connection->buffered |= NGX_HTTP_GZIP_BUFFERED;        ctx->last_out = &ctx->out;        ctx->crc32 = crc32(0L, Z_NULL, 0);        ctx->flush = Z_NO_FLUSH;    }    if (in) {        if (ngx_chain_add_copy(r->pool, &ctx->in, in) == NGX_ERROR) {            ngx_http_gzip_error(ctx);            return NGX_ERROR;        }    }    last = NGX_NONE;    for ( ;; ) {        for ( ;; ) {            /* does zlib need a new data ? */            if (ctx->zstream.avail_in == 0                && ctx->flush == Z_NO_FLUSH                && !ctx->redo)            {                ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,                               "gzip in: %p", ctx->in);                if (ctx->in == NULL) {                    break;                }                ctx->in_buf = ctx->in->buf;                ctx->in = ctx->in->next;                ctx->zstream.next_in = ctx->in_buf->pos;                ctx->zstream.avail_in = ctx->in_buf->last - ctx->in_buf->pos;                ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,                               "gzip in_buf:%p ni:%p ai:%ud",                               ctx->in_buf,                               ctx->zstream.next_in, ctx->zstream.avail_in);                /* STUB */                if (ctx->in_buf->last < ctx->in_buf->pos) {                    ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,                                  "zstream.avail_in is huge");                    ctx->done = 1;                    return NGX_ERROR;                }                /**/                if (ctx->in_buf->last_buf) {                    ctx->flush = Z_FINISH;                } else if (ctx->in_buf->flush) {                    ctx->flush = Z_SYNC_FLUSH;                }                if (ctx->zstream.avail_in == 0) {                    if (ctx->flush == Z_NO_FLUSH) {                        continue;                    }                } else {                    ctx->crc32 = crc32(ctx->crc32, ctx->zstream.next_in,                                       ctx->zstream.avail_in);                }            }            /* is there a space for the gzipped data ? */            if (ctx->zstream.avail_out == 0) {                if (ctx->free) {                    ctx->out_buf = ctx->free->buf;                    ctx->free = ctx->free->next;                } else if (ctx->bufs < conf->bufs.num) {                    ctx->out_buf = ngx_create_temp_buf(r->pool,                                                       conf->bufs.size);                    if (ctx->out_buf == NULL) {                        ngx_http_gzip_error(ctx);                        return NGX_ERROR;                    }                    ctx->out_buf->tag = (ngx_buf_tag_t)                                                  &ngx_http_gzip_filter_module;                    ctx->out_buf->recycled = 1;                    ctx->bufs++;                } else {                    break;                }                ctx->zstream.next_out = ctx->out_buf->pos;                ctx->zstream.avail_out = conf->bufs.size;            }            ngx_log_debug6(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,                         "deflate in: ni:%p no:%p ai:%ud ao:%ud fl:%d redo:%d",                         ctx->zstream.next_in, ctx->zstream.next_out,                         ctx->zstream.avail_in, ctx->zstream.avail_out,                         ctx->flush, ctx->redo);            rc = deflate(&ctx->zstream, ctx->flush);            if (rc != Z_OK && rc != Z_STREAM_END) {                ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,                              "deflate() failed: %d, %d", ctx->flush, rc);                ngx_http_gzip_error(ctx);                return NGX_ERROR;            }            ngx_log_debug5(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,                           "deflate out: ni:%p no:%p ai:%ud ao:%ud rc:%d",                           ctx->zstream.next_in, ctx->zstream.next_out,                           ctx->zstream.avail_in, ctx->zstream.avail_out,

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -