NGINX接头和主体滤波器模块

ht4b089n  于 2022-11-28  发布在  Nginx
关注(0)|答案(1)|浏览(140)

我已经编写了一个NGINX过滤器模块,它可以为传入的请求读/写cookie。(即认证cookie),它会将输出头状态设置为相应的错误代码。(到目前为止还没有)是调用body filter,这样我就可以在遇到错误响应时插入/替换body响应文本。我又一次学习了Evan米勒关于body filter的教程,但我一辈子都无法让它工作。下面是我的设置:

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_http_module_t ngx_http_source_cookie_module_ctx = {
    NULL,                             /* preconfiguration */
    ngx_http_source_cookie_init,             /* postconfiguration */

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

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

    ngx_http_source_cookie_create_loc_conf,  /* create location configuration */
    ngx_http_source_cookie_merge_loc_conf    /* merge location configuration */
};

ngx_module_t ngx_http_source_cookie_module = {
    NGX_MODULE_V1,
    &ngx_http_source_cookie_module_ctx,      /* module context */
    ngx_http_source_cookie_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 ngx_int_t
ngx_http_source_cookie_header_filter(ngx_http_request_t *r)
{
   // this gets invoked
   ...
}

/*--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*/
static ngx_int_t
ngx_http_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
{
   // this never get invoked
   ...
}

/*--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*/
static ngx_int_t
ngx_http_source_cookie_init(ngx_conf_t *cf)
{
    // registering of my filters

    ngx_http_next_header_filter = ngx_http_top_header_filter;
    ngx_http_top_header_filter = ngx_http_source_cookie_header_filter;

    ngx_http_next_body_filter = ngx_http_top_body_filter;
    ngx_http_top_body_filter = ngx_http_body_filter;

    return NGX_OK;
}

这是我的基本设置,就我所知,它是我遇到的所有例子/教程的亮点。我想知道是否有什么不同的东西需要我一起启用...像NGINX配置选项,NGINX ./configure编译选项,等等。
任何帮助都是非常感谢的。

elcex8rz

elcex8rz1#

我注意到Evan没有在ngx_http_<module_name>_header_filter()中修复http内容长度。
如果我不添加http内容长度(r->headers_out.content_length_n),插入到请求末尾的文本将不会从nginx-1.2.7稳定输出。
您还可以看到footer filter module

相关问题