handler模块(100%)

handler模块简介

相信大家在看了前一章的模块概述以后,都对nginx的模块有了一个基本的认识。基本上作为第三方开发者最可能开发的就是三种类型的模块,即handler,filter和load-balancer。Handler模块就是接受来自客户端的请求并产生输出的模块。有些地方说upstream模块实际上也是一种handler模块,只不过它产生的内容来自于从后端服务器获取的,而非在本机产生的。

在上一章提到,配置文件中使用location指令可以配置content handler模块,当Nginx系统启动的时候,每个handler模块都有一次机会把自己关联到对应的location上。如果有多个handler模块都关联了同一个location,那么实际上只有一个handler模块真正会起作用。当然大多数情况下,模块开发人员都会避免出现这种情况。

handler模块处理的结果通常有三种情况: 处理成功,处理失败(处理的时候发生了错误)或者是拒绝去处理。在拒绝处理的情况下,这个location的处理就会由默认的handler模块来进行处理。例如,当请求一个静态文件的时候,如果关联到这个location上的一个handler模块拒绝处理,就会由默认的ngx_http_static_module模块进行处理,该模块是一个典型的handler模块。

本章主要讲述的是如何编写handler模块,在研究handler模块编写之前先来了解一下模块的一些基本数据结构。

模块的基本结构

在这一节我们将会对通常的模块开发过程中,每个模块所包含的一些常用的部分进行说明。这些部分有些是必须的,有些不是必须的。同时这里所列出的这些东西对于其他类型的模块,例如filter模块等也都是相同的。

模块配置结构

基本上每个模块都会提供一些配置指令,以便于用户可以通过配置来控制该模块的行为。那么这些配置信息怎么存储呢?那就需要定义该模块的配置结构来进行存储。

大家都知道Nginx的配置信息分成了几个作用域(scope,有时也称作上下文),这就是main, server, 以及location。同样的每个模块提供的配置指令也可以出现在这几个作用域里。那对于这三个作用域的配置信息,每个模块就需要定义三个不同的数据结构去进行存储。当然,不是每个模块都会在这三个作用域都提供配置指令的。那么也就不一定每个模块都需要定义三个数据结构去存储这些配置信息了。视模块的实现而言,需要几个就定义几个。

有一点需要特别注意的就是,在模块的开发过程中,我们最好使用nginx原有的命名习惯。这样跟原代码的契合度更高,看起来也更舒服。

对于模块配置信息的定义,命名习惯是ngxhttp<module name>_(main|srv|loc)_conf_t。这里有个例子,就是从我们后面将要展示给大家的hello module中截取的。

  1. typedef struct
  2. {
  3. ngx_str_t hello_string;
  4. ngx_int_t hello_counter;
  5. }ngx_http_hello_loc_conf_t;

模块配置指令

一个模块的配置指令是定义在一个静态数组中的。同样地,我们来看一下从hello module中截取的模块配置指令的定义。

  1. static ngx_command_t ngx_http_hello_commands[] = {
  2. {
  3. ngx_string("hello_string"),
  4. NGX_HTTP_LOC_CONF|NGX_CONF_NOARGS|NGX_CONF_TAKE1,
  5. ngx_http_hello_string,
  6. NGX_HTTP_LOC_CONF_OFFSET,
  7. offsetof(ngx_http_hello_loc_conf_t, hello_string),
  8. NULL },
  9.  
  10. {
  11. ngx_string("hello_counter"),
  12. NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
  13. ngx_http_hello_counter,
  14. NGX_HTTP_LOC_CONF_OFFSET,
  15. offsetof(ngx_http_hello_loc_conf_t, hello_counter),
  16. NULL },
  17.  
  18. ngx_null_command
  19. };

其实看这个定义,就基本能看出来一些信息。例如,我们是定义了两个配置指令,一个是叫hello_string,可以接受一个参数,或者是没有参数。另外一个命令是hello_counter,接受一个NGX_CONF_FLAG类型的参数。除此之外,似乎看起来有点迷惑。没有关系,我们来详细看一下ngx_command_t,一旦我们了解这个结构的详细信息,那么我相信上述这个定义所表达的所有信息就不言自明了。

ngx_command_t的定义,位于src/core/ngx_conf_file.h中。

  1. struct ngx_command_s {
  2. ngx_str_t name;
  3. ngx_uint_t type;
  4. char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  5. ngx_uint_t conf;
  6. ngx_uint_t offset;
  7. void *post;
  8. };
name:配置指令的名称。
type:该配置的类型,其实更准确一点说,是该配置指令属性的集合。nginx提供了很多预定义的属性值(一些宏定义),通过逻辑或运算符可组合在一起,形成对这个配置指令的详细的说明。下面列出可在这里使用的预定义属性值及说明。
  • NGX_CONF_NOARGS:配置指令不接受任何参数。

  • NGX_CONF_TAKE1:配置指令接受1个参数。

  • NGX_CONF_TAKE2:配置指令接受2个参数。

  • NGX_CONF_TAKE3:配置指令接受3个参数。

  • NGX_CONF_TAKE4:配置指令接受4个参数。

  • NGX_CONF_TAKE5:配置指令接受5个参数。

  • NGX_CONF_TAKE6:配置指令接受6个参数。

  • NGX_CONF_TAKE7:配置指令接受7个参数。

    可以组合多个属性,比如一个指令即可以不填参数,也可以接受1个或者2个参数。那么就是NGX_CONF_NOARGS|NGX_CONF_TAKE1|NGX_CONF_TAKE2。如果写上面三个属性在一起,你觉得麻烦,那么没有关系,nginx提供了一些定义,使用起来更简洁。

  • NGX_CONF_TAKE12:配置指令接受1个或者2个参数。

  • NGX_CONF_TAKE13:配置指令接受1个或者3个参数。

  • NGX_CONF_TAKE23:配置指令接受2个或者3个参数。

  • NGX_CONF_TAKE123:配置指令接受1个或者2个或者3参数。

  • NGX_CONF_TAKE1234:配置指令接受1个或者2个或者3个或者4个参数。

  • NGX_CONF_1MORE:配置指令接受至少一个参数。

  • NGX_CONF_2MORE:配置指令接受至少两个参数。

  • NGX_CONF_MULTI: 配置指令可以接受多个参数,即个数不定。

  • NGX_CONF_BLOCK:配置指令可以接受的值是一个配置信息块。也就是一对大括号括起来的内容。里面可以再包括很多的配置指令。比如常见的server指令就是这个属性的。

  • NGX_CONF_FLAG:配置指令可以接受的值是”on”或者”off”,最终会被转成bool值。

  • NGX_CONF_ANY:配置指令可以接受的任意的参数值。一个或者多个,或者”on”或者”off”,或者是配置块。

    最后要说明的是,无论如何,nginx的配置指令的参数个数不可以超过NGX_CONF_MAX_ARGS个。目前这个值被定义为8,也就是不能超过8个参数值。

下面介绍一组说明配置指令可以出现的位置的属性。

  • NGX_DIRECT_CONF:可以出现在配置文件中最外层。例如已经提供的配置指令daemon,master_process等。

  • NGX_MAIN_CONF: http、mail、events、error_log等。

  • NGX_ANY_CONF: 该配置指令可以出现在任意配置级别上。

对于我们编写的大多数模块而言,都是在处理http相关的事情,也就是所谓的都是NGX_HTTP_MODULE,对于这样类型的模块,其配置可能出现的位置也是分为直接出现在http里面,以及其他位置。

  • NGX_HTTP_MAIN_CONF: 可以直接出现在http配置指令里。

  • NGX_HTTP_SRV_CONF: 可以出现在http里面的server配置指令里。

  • NGX_HTTP_LOC_CONF: 可以出现在http server块里面的location配置指令里。

  • NGX_HTTP_UPS_CONF: 可以出现在http里面的upstream配置指令里。

  • NGX_HTTP_SIF_CONF: 可以出现在http里面的server配置指令里的if语句所在的block中。

  • NGX_HTTP_LMT_CONF: 可以出现在http里面的limit_except指令的block中。

  • NGX_HTTP_LIF_CONF: 可以出现在http server块里面的location配置指令里的if语句所在的block中。

set:这是一个函数指针,当nginx在解析配置的时候,如果遇到这个配置指令,将会把读取到的值传递给这个函数进行分解处理。因为具体每个配置指令的值如何处理,只有定义这个配置指令的人是最清楚的。来看一下这个函数指针要求的函数原型。
  1. char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);

先看该函数的返回值,处理成功时,返回NGX_OK,否则返回NGX_CONF_ERROR或者是一个自定义的错误信息的字符串。

再看一下这个函数被调用的时候,传入的三个参数。

  • cf: 该参数里面保存从配置文件读取到的原始字符串以及相关的一些信息。特别注意的是这个参数的args字段是一个ngx_str_t类型的数组,该数组的首个元素是这个配置指令本身,第二个元素是指令的第一个参数,第三个元素是第二个参数,依次类推。
  • cmd: 这个配置指令对应的ngx_command_t结构。
  • conf: 就是定义的存储这个配置值的结构体,比如在上面展示的那个ngx_http_hello_loc_conf_t。当解析这个hello_string变量的时候,传入的conf就指向一个ngx_http_hello_loc_conf_t类型的变量。用户在处理的时候可以使用类型转换,转换成自己知道的类型,再进行字段的赋值。

为了更加方便的实现对配置指令参数的读取,nginx已经默认提供了对一些标准类型的参数进行读取的函数,可以直接赋值给set字段使用。下面来看一下这些已经实现的set类型函数。

  • ngx_conf_set_flag_slot: 读取NGX_CONF_FLAG类型的参数。
  • ngx_conf_set_str_slot:读取字符串类型的参数。
  • ngx_conf_set_str_array_slot: 读取字符串数组类型的参数。
  • ngx_conf_set_keyval_slot: 读取键值对类型的参数。
  • ngx_conf_set_num_slot: 读取整数类型(有符号整数ngx_int_t)的参数。
  • ngx_conf_set_size_slot:读取size_t类型的参数,也就是无符号数。
  • ngx_conf_set_off_slot: 读取off_t类型的参数。
  • ngx_conf_set_msec_slot: 读取毫秒值类型的参数。
  • ngx_conf_set_sec_slot: 读取秒值类型的参数。
  • ngx_conf_set_bufs_slot: 读取的参数值是2个,一个是buf的个数,一个是buf的大小。例如: output_buffers 1 128k;
  • ngx_conf_set_enum_slot: 读取枚举类型的参数,将其转换成整数ngx_uint_t类型。
  • ngx_conf_set_bitmask_slot: 读取参数的值,并将这些参数的值以bit位的形式存储。例如:HttpDavModule模块的dav_methods指令。
conf:该字段被NGX_HTTP_MODULE类型模块所用 (我们编写的基本上都是NGX_HTTP_MOUDLE,只有一些nginx核心模块是非NGX_HTTP_MODULE),该字段指定当前配置项存储的内存位置。实际上是使用哪个内存池的问题。因为http模块对所有http模块所要保存的配置信息,划分了main, server和location三个地方进行存储,每个地方都有一个内存池用来分配存储这些信息的内存。这里可能的值为 NGX_HTTP_MAIN_CONF_OFFSET、NGX_HTTP_SRV_CONF_OFFSET或NGX_HTTP_LOC_CONF_OFFSET。当然也可以直接置为0,就是NGX_HTTP_MAIN_CONF_OFFSET。
offset:指定该配置项值的精确存放位置,一般指定为某一个结构体变量的字段偏移。因为对于配置信息的存储,一般我们都是定义个结构体来存储的。那么比如我们定义了一个结构体A,该项配置的值需要存储到该结构体的b字段。那么在这里就可以填写为offsetof(A, b)。对于有些配置项,它的值不需要保存或者是需要保存到更为复杂的结构中时,这里可以设置为0。
post:该字段存储一个指针。可以指向任何一个在读取配置过程中需要的数据,以便于进行配置读取的处理。大多数时候,都不需要,所以简单地设为0即可。

看到这里,应该就比较清楚了。ngx_http_hello_commands这个数组每5个元素为一组,用来描述一个配置项的所有情况。那么如果有多个配置项,只要按照需要再增加5个对应的元素对新的配置项进行说明。

需要注意的是,就是在ngx_http_hello_commands这个数组定义的最后,都要加一个ngx_null_command作为结尾。

模块上下文结构

这是一个ngx_http_module_t类型的静态变量。这个变量实际上是提供一组回调函数指针,这些函数有在创建存储配置信息的对象的函数,也有在创建前和创建后会调用的函数。这些函数都将被nginx在合适的时间进行调用。

  1. typedef struct {
  2. ngx_int_t (*preconfiguration)(ngx_conf_t *cf);
  3. ngx_int_t (*postconfiguration)(ngx_conf_t *cf);
  4.  
  5. void *(*create_main_conf)(ngx_conf_t *cf);
  6. char *(*init_main_conf)(ngx_conf_t *cf, void *conf);
  7.  
  8. void *(*create_srv_conf)(ngx_conf_t *cf);
  9. char *(*merge_srv_conf)(ngx_conf_t *cf, void *prev, void *conf);
  10.  
  11. void *(*create_loc_conf)(ngx_conf_t *cf);
  12. char *(*merge_loc_conf)(ngx_conf_t *cf, void *prev, void *conf);
  13. } ngx_http_module_t;
preconfiguration:
在创建和读取该模块的配置信息之前被调用。
postconfiguration:
在创建和读取该模块的配置信息之后被调用。
create_main_conf:
调用该函数创建本模块位于http block的配置信息存储结构。该函数成功的时候,返回创建的配置对象。失败的话,返回NULL。
init_main_conf:调用该函数初始化本模块位于http block的配置信息存储结构。该函数成功的时候,返回NGX_CONF_OK。失败的话,返回NGX_CONF_ERROR或错误字符串。
create_srv_conf:
调用该函数创建本模块位于http server block的配置信息存储结构,每个server block会创建一个。该函数成功的时候,返回创建的配置对象。失败的话,返回NULL。
merge_srv_conf:因为有些配置指令既可以出现在http block,也可以出现在http server block中。那么遇到这种情况,每个server都会有自己存储结构来存储该server的配置,但是在这种情况下http block中的配置与server block中的配置信息发生冲突的时候,就需要调用此函数进行合并,该函数并非必须提供,当预计到绝对不会发生需要合并的情况的时候,就无需提供。当然为了安全起见还是建议提供。该函数执行成功的时候,返回NGX_CONF_OK。失败的话,返回NGX_CONF_ERROR或错误字符串。
create_loc_conf:
调用该函数创建本模块位于location block的配置信息存储结构。每个在配置中指明的location创建一个。该函数执行成功,返回创建的配置对象。失败的话,返回NULL。
merge_loc_conf:与merge_srv_conf类似,这个也是进行配置值合并的地方。该函数成功的时候,返回NGX_CONF_OK。失败的话,返回NGX_CONF_ERROR或错误字符串。

Nginx里面的配置信息都是上下一层层的嵌套的,对于具体某个location的话,对于同一个配置,如果当前层次没有定义,那么就使用上层的配置,否则使用当前层次的配置。

这些配置信息一般默认都应该设为一个未初始化的值,针对这个需求,Nginx定义了一系列的宏定义来代表各种配置所对应数据类型的未初始化值,如下:

  1. #define NGX_CONF_UNSET -1
  2. #define NGX_CONF_UNSET_UINT (ngx_uint_t) -1
  3. #define NGX_CONF_UNSET_PTR (void *) -1
  4. #define NGX_CONF_UNSET_SIZE (size_t) -1
  5. #define NGX_CONF_UNSET_MSEC (ngx_msec_t) -1
  6.  

又因为对于配置项的合并,逻辑都类似,也就是前面已经说过的,如果在本层次已经配置了,也就是配置项的值已经被读取进来了(那么这些配置项的值就不会等于上面已经定义的那些UNSET的值),就使用本层次的值作为定义合并的结果,否则,使用上层的值,如果上层的值也是这些UNSET类的值,那就赋值为默认值,否则就使用上层的值作为合并的结果。对于这样类似的操作,Nginx定义了一些宏操作来做这些事情,我们来看其中一个的定义。

  1. #define ngx_conf_merge_uint_value(conf, prev, default) \
  2. if (conf == NGX_CONF_UNSET_UINT) { \
  3. conf = (prev == NGX_CONF_UNSET_UINT) ? default : prev; \
  4. }
  5.  

显而易见,这个逻辑确实比较简单,所以其它的宏定义也类似,我们就列具其中的一部分吧。

  1. ngx_conf_merge_value
  2. ngx_conf_merge_ptr_value
  3. ngx_conf_merge_uint_value
  4. ngx_conf_merge_msec_value
  5. ngx_conf_merge_sec_value

等等。

下面来看一下hello模块的模块上下文的定义,加深一下印象。

  1. static ngx_http_module_t ngx_http_hello_module_ctx = {
  2. NULL, /* preconfiguration */
  3. ngx_http_hello_init, /* postconfiguration */
  4.  
  5. NULL, /* create main configuration */
  6. NULL, /* init main configuration */
  7.  
  8. NULL, /* create server configuration */
  9. NULL, /* merge server configuration */
  10.  
  11. ngx_http_hello_create_loc_conf, /* create location configuration */
  12. NULL /* merge location configuration */
  13. };

注意:这里并没有提供merge_loc_conf函数,因为我们这个模块的配置指令已经确定只出现在NGX_HTTP_LOC_CONF中这一个层次上,不会发生需要合并的情况。

模块的定义

对于开发一个模块来说,我们都需要定义一个ngx_module_t类型的变量来说明这个模块本身的信息,从某种意义上来说,这是这个模块最重要的一个信息,它告诉了nginx这个模块的一些信息,上面定义的配置信息,还有模块上下文信息,都是通过这个结构来告诉nginx系统的,也就是加载模块的上层代码,都需要通过定义的这个结构,来获取这些信息。

我们先来看下ngx_module_t的定义

  1. typedef struct ngx_module_s ngx_module_t;
  2. struct ngx_module_s {
  3. ngx_uint_t ctx_index;
  4. ngx_uint_t index;
  5. ngx_uint_t spare0;
  6. ngx_uint_t spare1;
  7. ngx_uint_t abi_compatibility;
  8. ngx_uint_t major_version;
  9. ngx_uint_t minor_version;
  10. void *ctx;
  11. ngx_command_t *commands;
  12. ngx_uint_t type;
  13. ngx_int_t (*init_master)(ngx_log_t *log);
  14. ngx_int_t (*init_module)(ngx_cycle_t *cycle);
  15. ngx_int_t (*init_process)(ngx_cycle_t *cycle);
  16. ngx_int_t (*init_thread)(ngx_cycle_t *cycle);
  17. void (*exit_thread)(ngx_cycle_t *cycle);
  18. void (*exit_process)(ngx_cycle_t *cycle);
  19. void (*exit_master)(ngx_cycle_t *cycle);
  20. uintptr_t spare_hook0;
  21. uintptr_t spare_hook1;
  22. uintptr_t spare_hook2;
  23. uintptr_t spare_hook3;
  24. uintptr_t spare_hook4;
  25. uintptr_t spare_hook5;
  26. uintptr_t spare_hook6;
  27. uintptr_t spare_hook7;
  28. };
  29.  
  30. #define NGX_NUMBER_MAJOR 3
  31. #define NGX_NUMBER_MINOR 1
  32. #define NGX_MODULE_V1 0, 0, 0, 0, \
  33. NGX_DSO_ABI_COMPATIBILITY, NGX_NUMBER_MAJOR, NGX_NUMBER_MINOR
  34. #define NGX_MODULE_V1_PADDING 0, 0, 0, 0, 0, 0, 0, 0
  35.  

再看一下hello模块的模块定义。

  1. ngx_module_t ngx_http_hello_module = {
  2. NGX_MODULE_V1,
  3. &ngx_http_hello_module_ctx, /* module context */
  4. ngx_http_hello_commands, /* module directives */
  5. NGX_HTTP_MODULE, /* module type */
  6. NULL, /* init master */
  7. NULL, /* init module */
  8. NULL, /* init process */
  9. NULL, /* init thread */
  10. NULL, /* exit thread */
  11. NULL, /* exit process */
  12. NULL, /* exit master */
  13. NGX_MODULE_V1_PADDING
  14. };

模块可以提供一些回调函数给nginx,当nginx在创建进程线程或者结束进程线程时进行调用。但大多数模块在这些时刻并不需要做什么,所以都简单赋值为NULL。

handler模块的基本结构

除了上一节介绍的模块的基本结构以外,handler模块必须提供一个真正的处理函数,这个函数负责对来自客户端请求的真正处理。这个函数的处理,既可以选择自己直接生成内容,也可以选择拒绝处理,由后续的handler去进行处理,或者是选择丢给后续的filter进行处理。来看一下这个函数的原型申明。

typedef ngx_int_t (ngx_http_handler_pt)(ngx_http_request_t r);

r是http请求。里面包含请求所有的信息,这里不详细说明了,可以参考别的章节的介绍。 该函数处理成功返回NGX_OK,处理发生错误返回NGX_ERROR,拒绝处理(留给后续的handler进行处理)返回NGX_DECLINE。 返回NGX_OK也就代表给客户端的响应已经生成好了,否则返回NGX_ERROR就发生错误了。

handler模块的挂载

handler模块真正的处理函数通过两种方式挂载到处理过程中,一种方式就是按处理阶段挂载;另外一种挂载方式就是按需挂载。

按处理阶段挂载

为了更精细地控制对于客户端请求的处理过程,nginx把这个处理过程划分成了11个阶段。他们从前到后,依次列举如下:

NGX_HTTP_POST_READ_PHASE:
读取请求内容阶段
NGX_HTTP_SERVER_REWRITE_PHASE:
Server请求地址重写阶段
NGX_HTTP_FIND_CONFIG_PHASE:
配置查找阶段:
NGX_HTTP_REWRITE_PHASE:
Location请求地址重写阶段
NGX_HTTP_POST_REWRITE_PHASE:
请求地址重写提交阶段
NGX_HTTP_PREACCESS_PHASE:
访问权限检查准备阶段
NGX_HTTP_ACCESS_PHASE:
访问权限检查阶段
NGX_HTTP_POST_ACCESS_PHASE:
访问权限检查提交阶段
NGX_HTTP_TRY_FILES_PHASE:
配置项try_files处理阶段
NGX_HTTP_CONTENT_PHASE:
内容产生阶段
NGX_HTTP_LOG_PHASE:
日志模块处理阶段

一般情况下,我们自定义的模块,大多数是挂载在NGX_HTTP_CONTENT_PHASE阶段的。挂载的动作一般是在模块上下文调用的postconfiguration函数中。

注意:有几个阶段是特例,它不调用挂载地任何的handler,也就是你就不用挂载到这几个阶段了:

  • NGX_HTTP_FIND_CONFIG_PHASE
  • NGX_HTTP_POST_ACCESS_PHASE
  • NGX_HTTP_POST_REWRITE_PHASE
  • NGX_HTTP_TRY_FILES_PHASE

所以其实真正是有7个phase你可以去挂载handler。

挂载的代码如下(摘自hello module):

  1. static ngx_int_t
  2. ngx_http_hello_init(ngx_conf_t *cf)
  3. {
  4. ngx_http_handler_pt *h;
  5. ngx_http_core_main_conf_t *cmcf;
  6.  
  7. cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);
  8.  
  9. h = ngx_array_push(&cmcf->phases[NGX_HTTP_CONTENT_PHASE].handlers);
  10. if (h == NULL) {
  11. return NGX_ERROR;
  12. }
  13.  
  14. *h = ngx_http_hello_handler;
  15.  
  16. return NGX_OK;
  17. }

使用这种方式挂载的handler也被称为 content phase handlers

按需挂载

以这种方式挂载的handler也被称为 content handler

当一个请求进来以后,nginx从NGX_HTTP_POST_READ_PHASE阶段开始依次执行每个阶段中所有handler。执行到 NGX_HTTP_CONTENT_PHASE阶段的时候,如果这个location有一个对应的content handler模块,那么就去执行这个content handler模块真正的处理函数。否则继续依次执行NGX_HTTP_CONTENT_PHASE阶段中所有content phase handlers,直到某个函数处理返回NGX_OK或者NGX_ERROR。

换句话说,当某个location处理到NGX_HTTP_CONTENT_PHASE阶段时,如果有content handler模块,那么NGX_HTTP_CONTENT_PHASE挂载的所有content phase handlers都不会被执行了。

但是使用这个方法挂载上去的handler有一个特点是必须在NGX_HTTP_CONTENT_PHASE阶段才能执行到。如果你想自己的handler在更早的阶段执行,那就不要使用这种挂载方式。

那么在什么情况会使用这种方式来挂载呢?一般情况下,某个模块对某个location进行了处理以后,发现符合自己处理的逻辑,而且也没有必要再调用NGX_HTTP_CONTENT_PHASE阶段的其它handler进行处理的时候,就动态挂载上这个handler。

下面来看一下使用这种挂载方式的具体例子(摘自Emiller’s Guide To Nginx Module Development)。

  1. static char *
  2. ngx_http_circle_gif(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  3. {
  4. ngx_http_core_loc_conf_t *clcf;
  5.  
  6. clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
  7. clcf->handler = ngx_http_circle_gif_handler;
  8.  
  9. return NGX_CONF_OK;
  10. }

handler的编写步骤

好,到了这里,让我们稍微整理一下思路,回顾一下实现一个handler的步骤:

  • 编写模块基本结构。包括模块的定义,模块上下文结构,模块的配置结构等。
  • 实现handler的挂载函数。根据模块的需求选择正确的挂载方式。
  • 编写handler处理函数。模块的功能主要通过这个函数来完成。

看起来不是那么难,对吧?还是那句老话,世上无难事,只怕有心人! 现在我们来完整的分析前面提到的hello handler module示例的功能和代码。

示例: hello handler 模块

在前面已经看到了这个hello handler module的部分重要的结构。该模块提供了2个配置指令,仅可以出现在location指令的作用域中。这两个指令是hello_string, 该指令接受一个参数来设置显示的字符串。如果没有跟参数,那么就使用默认的字符串作为响应字符串。

另一个指令是hello_counter,如果设置为on,则会在响应的字符串后面追加Visited Times:的字样,以统计请求的次数。

这里有两点注意一下:

  • 对于flag类型的配置指令,当值为off的时候,使用ngx_conf_set_flag_slot函数,会转化为0,为on,则转化为非0。
  • 另外一个是,我提供了merge_loc_conf函数,但是却没有设置到模块的上下文定义中。这样有一个缺点,就是如果一个指令没有出现在配置文件中的时候,配置信息中的值,将永远会保持在create_loc_conf中的初始化的值。那如果,在类似create_loc_conf这样的函数中,对创建出来的配置信息的值,没有设置为合理的值的话,后面用户又没有配置,就会出现问题。

下面来完整的给出ngx_http_hello_module模块的完整代码。

  1. #include <ngx_config.h>
  2. #include <ngx_core.h>
  3. #include <ngx_http.h>
  4.  
  5.  
  6. typedef struct
  7. {
  8. ngx_str_t hello_string;
  9. ngx_int_t hello_counter;
  10. }ngx_http_hello_loc_conf_t;
  11.  
  12. static ngx_int_t ngx_http_hello_init(ngx_conf_t *cf);
  13.  
  14. static void *ngx_http_hello_create_loc_conf(ngx_conf_t *cf);
  15.  
  16. static char *ngx_http_hello_string(ngx_conf_t *cf, ngx_command_t *cmd,
  17. void *conf);
  18. static char *ngx_http_hello_counter(ngx_conf_t *cf, ngx_command_t *cmd,
  19. void *conf);
  20.  
  21. static ngx_command_t ngx_http_hello_commands[] = {
  22. {
  23. ngx_string("hello_string"),
  24. NGX_HTTP_LOC_CONF|NGX_CONF_NOARGS|NGX_CONF_TAKE1,
  25. ngx_http_hello_string,
  26. NGX_HTTP_LOC_CONF_OFFSET,
  27. offsetof(ngx_http_hello_loc_conf_t, hello_string),
  28. NULL },
  29.  
  30. {
  31. ngx_string("hello_counter"),
  32. NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
  33. ngx_http_hello_counter,
  34. NGX_HTTP_LOC_CONF_OFFSET,
  35. offsetof(ngx_http_hello_loc_conf_t, hello_counter),
  36. NULL },
  37.  
  38. ngx_null_command
  39. };
  40.  
  41.  
  42. /*
  43. static u_char ngx_hello_default_string[] = "Default String: Hello, world!";
  44. */
  45. static int ngx_hello_visited_times = 0;
  46.  
  47. static ngx_http_module_t ngx_http_hello_module_ctx = {
  48. NULL, /* preconfiguration */
  49. ngx_http_hello_init, /* postconfiguration */
  50.  
  51. NULL, /* create main configuration */
  52. NULL, /* init main configuration */
  53.  
  54. NULL, /* create server configuration */
  55. NULL, /* merge server configuration */
  56.  
  57. ngx_http_hello_create_loc_conf, /* create location configuration */
  58. NULL /* merge location configuration */
  59. };
  60.  
  61.  
  62. ngx_module_t ngx_http_hello_module = {
  63. NGX_MODULE_V1,
  64. &ngx_http_hello_module_ctx, /* module context */
  65. ngx_http_hello_commands, /* module directives */
  66. NGX_HTTP_MODULE, /* module type */
  67. NULL, /* init master */
  68. NULL, /* init module */
  69. NULL, /* init process */
  70. NULL, /* init thread */
  71. NULL, /* exit thread */
  72. NULL, /* exit process */
  73. NULL, /* exit master */
  74. NGX_MODULE_V1_PADDING
  75. };
  76.  
  77.  
  78. static ngx_int_t
  79. ngx_http_hello_handler(ngx_http_request_t *r)
  80. {
  81. ngx_int_t rc;
  82. ngx_buf_t *b;
  83. ngx_chain_t out;
  84. ngx_http_hello_loc_conf_t* my_conf;
  85. u_char ngx_hello_string[1024] = {0};
  86. ngx_uint_t content_length = 0;
  87.  
  88. ngx_log_error(NGX_LOG_EMERG, r->connection->log, 0, "ngx_http_hello_handler is called!");
  89.  
  90. my_conf = ngx_http_get_module_loc_conf(r, ngx_http_hello_module);
  91. if (my_conf->hello_string.len == 0 )
  92. {
  93. ngx_log_error(NGX_LOG_EMERG, r->connection->log, 0, "hello_string is empty!");
  94. return NGX_DECLINED;
  95. }
  96.  
  97.  
  98. if (my_conf->hello_counter == NGX_CONF_UNSET
  99. || my_conf->hello_counter == 0)
  100. {
  101. ngx_sprintf(ngx_hello_string, "%s", my_conf->hello_string.data);
  102. }
  103. else
  104. {
  105. ngx_sprintf(ngx_hello_string, "%s Visited Times:%d", my_conf->hello_string.data,
  106. ++ngx_hello_visited_times);
  107. }
  108. ngx_log_error(NGX_LOG_EMERG, r->connection->log, 0, "hello_string:%s", ngx_hello_string);
  109. content_length = ngx_strlen(ngx_hello_string);
  110.  
  111. /* we response to 'GET' and 'HEAD' requests only */
  112. if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
  113. return NGX_HTTP_NOT_ALLOWED;
  114. }
  115.  
  116. /* discard request body, since we don't need it here */
  117. rc = ngx_http_discard_request_body(r);
  118.  
  119. if (rc != NGX_OK) {
  120. return rc;
  121. }
  122.  
  123. /* set the 'Content-type' header */
  124. /*
  125. *r->headers_out.content_type.len = sizeof("text/html") - 1;
  126. *r->headers_out.content_type.data = (u_char *)"text/html";
  127. */
  128. ngx_str_set(&r->headers_out.content_type, "text/html");
  129.  
  130.  
  131. /* send the header only, if the request type is http 'HEAD' */
  132. if (r->method == NGX_HTTP_HEAD) {
  133. r->headers_out.status = NGX_HTTP_OK;
  134. r->headers_out.content_length_n = content_length;
  135.  
  136. return ngx_http_send_header(r);
  137. }
  138.  
  139. /* allocate a buffer for your response body */
  140. b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
  141. if (b == NULL) {
  142. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  143. }
  144.  
  145. /* attach this buffer to the buffer chain */
  146. out.buf = b;
  147. out.next = NULL;
  148.  
  149. /* adjust the pointers of the buffer */
  150. b->pos = ngx_hello_string;
  151. b->last = ngx_hello_string + content_length;
  152. b->memory = 1; /* this buffer is in memory */
  153. b->last_buf = 1; /* this is the last buffer in the buffer chain */
  154.  
  155. /* set the status line */
  156. r->headers_out.status = NGX_HTTP_OK;
  157. r->headers_out.content_length_n = content_length;
  158.  
  159. /* send the headers of your response */
  160. rc = ngx_http_send_header(r);
  161.  
  162. if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
  163. return rc;
  164. }
  165.  
  166. /* send the buffer chain of your response */
  167. return ngx_http_output_filter(r, &out);
  168. }
  169.  
  170. static void *ngx_http_hello_create_loc_conf(ngx_conf_t *cf)
  171. {
  172. ngx_http_hello_loc_conf_t* local_conf = NULL;
  173. local_conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_hello_loc_conf_t));
  174. if (local_conf == NULL)
  175. {
  176. return NULL;
  177. }
  178.  
  179. ngx_str_null(&local_conf->hello_string);
  180. local_conf->hello_counter = NGX_CONF_UNSET;
  181.  
  182. return local_conf;
  183. }
  184.  
  185. /*
  186. static char *ngx_http_hello_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
  187. {
  188. ngx_http_hello_loc_conf_t* prev = parent;
  189. ngx_http_hello_loc_conf_t* conf = child;
  190.  
  191. ngx_conf_merge_str_value(conf->hello_string, prev->hello_string, ngx_hello_default_string);
  192. ngx_conf_merge_value(conf->hello_counter, prev->hello_counter, 0);
  193.  
  194. return NGX_CONF_OK;
  195. }*/
  196.  
  197. static char *
  198. ngx_http_hello_string(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  199. {
  200.  
  201. ngx_http_hello_loc_conf_t* local_conf;
  202.  
  203.  
  204. local_conf = conf;
  205. char* rv = ngx_conf_set_str_slot(cf, cmd, conf);
  206.  
  207. ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "hello_string:%s", local_conf->hello_string.data);
  208.  
  209. return rv;
  210. }
  211.  
  212.  
  213. static char *ngx_http_hello_counter(ngx_conf_t *cf, ngx_command_t *cmd,
  214. void *conf)
  215. {
  216. ngx_http_hello_loc_conf_t* local_conf;
  217.  
  218. local_conf = conf;
  219.  
  220. char* rv = NULL;
  221.  
  222. rv = ngx_conf_set_flag_slot(cf, cmd, conf);
  223.  
  224.  
  225. ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "hello_counter:%d", local_conf->hello_counter);
  226. return rv;
  227. }
  228.  
  229. static ngx_int_t
  230. ngx_http_hello_init(ngx_conf_t *cf)
  231. {
  232. ngx_http_handler_pt *h;
  233. ngx_http_core_main_conf_t *cmcf;
  234.  
  235. cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);
  236.  
  237. h = ngx_array_push(&cmcf->phases[NGX_HTTP_CONTENT_PHASE].handlers);
  238. if (h == NULL) {
  239. return NGX_ERROR;
  240. }
  241.  
  242. *h = ngx_http_hello_handler;
  243.  
  244. return NGX_OK;
  245. }

通过上面一些介绍,我相信大家都能对整个示例模块有一个比较好的理解。唯一可能感觉有些理解困难的地方在于ngx_http_hello_handler函数里面产生和设置输出。但其实大家在本书的前面的相关章节都可以看到对ngx_buf_t和request等相关数据结构的说明。如果仔细看了这些地方的说明的话,应该对这里代码的实现就比较容易理解了。因此,这里不再赘述解释。

handler模块的编译和使用

模块的功能开发完了之后,模块的使用还需要编译才能够执行,下面我们来看下模块的编译和使用。

config文件的编写

对于开发一个模块,我们是需要把这个模块的C代码组织到一个目录里,同时需要编写一个config文件。这个config文件的内容就是告诉nginx的编译脚本,该如何进行编译。我们来看一下hello handler module的config文件的内容,然后再做解释。

  1. ngx_addon_name=ngx_http_hello_module
  2. HTTP_MODULES="$HTTP_MODULES ngx_http_hello_module"
  3. NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_hello_module.c"

其实文件很简单,几乎不需要做什么解释。大家一看都懂了。唯一需要说明的是,如果这个模块的实现有多个源文件,那么都在NGX_ADDON_SRCS这个变量里,依次写进去就可以。

编译

对于模块的编译,nginx并不像apache一样,提供了单独的编译工具,可以在没有apache源代码的情况下来单独编译一个模块的代码。nginx必须去到nginx的源代码目录里,通过configure指令的参数,来进行编译。下面看一下hello module的configure指令:

./configure –prefix=/usr/local/nginx-1.3.1 –add-module=/home/jizhao/open_source/book_module

我写的这个示例模块的代码和config文件都放在/home/jizhao/open_source/book_module这个目录下。所以一切都很明了,也没什么好说的了。

使用

使用一个模块需要根据这个模块定义的配置指令来做。比如我们这个简单的hello handler module的使用就很简单。在我的测试服务器的配置文件里,就是在http里面的默认的server里面加入如下的配置:

  1. location /test {
  2. hello_string jizhao;
  3. hello_counter on;
  4. }

当我们访问这个地址的时候, lynx http://127.0.0.1/test的时候,就可以看到返回的结果。

jizhao Visited Times:1

当然你访问多次,这个次数是会增加的。

更多handler模块示例分析

http access module

该模块的代码位于src/http/modules/ngx_http_access_module.c中。该模块的作用是提供对于特定host的客户端的访问控制。可以限定特定host的客户端对于服务端全部,或者某个server,或者是某个location的访问。 该模块的实现非常简单,总共也就只有几个函数。

  1. static ngx_int_t ngx_http_access_handler(ngx_http_request_t *r);
  2. static ngx_int_t ngx_http_access_inet(ngx_http_request_t *r,
  3. ngx_http_access_loc_conf_t *alcf, in_addr_t addr);
  4. #if (NGX_HAVE_INET6)
  5. static ngx_int_t ngx_http_access_inet6(ngx_http_request_t *r,
  6. ngx_http_access_loc_conf_t *alcf, u_char *p);
  7. #endif
  8. static ngx_int_t ngx_http_access_found(ngx_http_request_t *r, ngx_uint_t deny);
  9. static char *ngx_http_access_rule(ngx_conf_t *cf, ngx_command_t *cmd,
  10. void *conf);
  11. static void *ngx_http_access_create_loc_conf(ngx_conf_t *cf);
  12. static char *ngx_http_access_merge_loc_conf(ngx_conf_t *cf,
  13. void *parent, void *child);
  14. static ngx_int_t ngx_http_access_init(ngx_conf_t *cf);

对于与配置相关的几个函数都不需要做解释了,需要提一下的是函数ngx_http_access_init,该函数在实现上把本模块挂载到了NGX_HTTP_ACCESS_PHASE阶段的handler上,从而使自己的被调用时机发生在了NGX_HTTP_CONTENT_PHASE等阶段前。因为进行客户端地址的限制检查,根本不需要等到这么后面。

另外看一下这个模块的主处理函数ngx_http_access_handler。这个函数的逻辑也非常简单,主要是根据客户端地址的类型,来分别选择ipv4类型的处理函数ngx_http_access_inet还是ipv6类型的处理函数ngx_http_access_inet6。

而这个两个处理函数内部也非常简单,就是循环检查每个规则,检查是否有匹配的规则,如果有就返回匹配的结果,如果都没有匹配,就默认拒绝。

http static module

从某种程度上来说,此模块可以算的上是“最正宗的”,“最古老”的content handler。因为本模块的作用就是读取磁盘上的静态文件,并把文件内容作为产生的输出。在Web技术发展的早期,只有静态页面,没有服务端脚本来动态生成HTML的时候。恐怕开发个Web服务器的时候,第一个要开发就是这样一个content handler。

http static module的代码位于src/http/modules/ngx_http_static_module.c中,总共只有两百多行近三百行。可以说是非常短小。

我们首先来看一下该模块的模块上下文的定义。

  1. ngx_http_module_t ngx_http_static_module_ctx = {
  2. NULL, /* preconfiguration */
  3. ngx_http_static_init, /* postconfiguration */
  4.  
  5. NULL, /* create main configuration */
  6. NULL, /* init main configuration */
  7.  
  8. NULL, /* create server configuration */
  9. NULL, /* merge server configuration */
  10.  
  11. NULL, /* create location configuration */
  12. NULL /* merge location configuration */
  13. };

是非常的简洁吧,连任何与配置相关的函数都没有。对了,因为该模块没有提供任何配置指令。大家想想也就知道了,这个模块做的事情实在是太简单了,也确实没什么好配置的。唯一需要调用的函数是一个ngx_http_static_init函数。好了,来看一下这个函数都干了写什么。

  1. static ngx_int_t
  2. ngx_http_static_init(ngx_conf_t *cf)
  3. {
  4. ngx_http_handler_pt *h;
  5. ngx_http_core_main_conf_t *cmcf;
  6.  
  7. cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);
  8.  
  9. h = ngx_array_push(&cmcf->phases[NGX_HTTP_CONTENT_PHASE].handlers);
  10. if (h == NULL) {
  11. return NGX_ERROR;
  12. }
  13.  
  14. *h = ngx_http_static_handler;
  15.  
  16. return NGX_OK;
  17. }

仅仅是挂载这个handler到NGX_HTTP_CONTENT_PHASE处理阶段。简单吧?

下面我们就看一下这个模块最核心的处理逻辑所在的ngx_http_static_handler函数。该函数大概占了这个模块代码量的百分之八九十。

  1. static ngx_int_t
  2. ngx_http_static_handler(ngx_http_request_t *r)
  3. {
  4. u_char *last, *location;
  5. size_t root, len;
  6. ngx_str_t path;
  7. ngx_int_t rc;
  8. ngx_uint_t level;
  9. ngx_log_t *log;
  10. ngx_buf_t *b;
  11. ngx_chain_t out;
  12. ngx_open_file_info_t of;
  13. ngx_http_core_loc_conf_t *clcf;
  14.  
  15. if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD|NGX_HTTP_POST))) {
  16. return NGX_HTTP_NOT_ALLOWED;
  17. }
  18.  
  19. if (r->uri.data[r->uri.len - 1] == '/') {
  20. return NGX_DECLINED;
  21. }
  22.  
  23. log = r->connection->log;
  24.  
  25. /*
  26. * ngx_http_map_uri_to_path() allocates memory for terminating '\0'
  27. * so we do not need to reserve memory for '/' for possible redirect
  28. */
  29.  
  30. last = ngx_http_map_uri_to_path(r, &path, &root, 0);
  31. if (last == NULL) {
  32. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  33. }
  34.  
  35. path.len = last - path.data;
  36.  
  37. ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0,
  38. "http filename: \"%s\"", path.data);
  39.  
  40. clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
  41.  
  42. ngx_memzero(&of, sizeof(ngx_open_file_info_t));
  43.  
  44. of.read_ahead = clcf->read_ahead;
  45. of.directio = clcf->directio;
  46. of.valid = clcf->open_file_cache_valid;
  47. of.min_uses = clcf->open_file_cache_min_uses;
  48. of.errors = clcf->open_file_cache_errors;
  49. of.events = clcf->open_file_cache_events;
  50.  
  51. if (ngx_http_set_disable_symlinks(r, clcf, &path, &of) != NGX_OK) {
  52. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  53. }
  54.  
  55. if (ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool)
  56. != NGX_OK)
  57. {
  58. switch (of.err) {
  59.  
  60. case 0:
  61. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  62.  
  63. case NGX_ENOENT:
  64. case NGX_ENOTDIR:
  65. case NGX_ENAMETOOLONG:
  66.  
  67. level = NGX_LOG_ERR;
  68. rc = NGX_HTTP_NOT_FOUND;
  69. break;
  70.  
  71. case NGX_EACCES:
  72. #if (NGX_HAVE_OPENAT)
  73. case NGX_EMLINK:
  74. case NGX_ELOOP:
  75. #endif
  76.  
  77. level = NGX_LOG_ERR;
  78. rc = NGX_HTTP_FORBIDDEN;
  79. break;
  80.  
  81. default:
  82.  
  83. level = NGX_LOG_CRIT;
  84. rc = NGX_HTTP_INTERNAL_SERVER_ERROR;
  85. break;
  86. }
  87.  
  88. if (rc != NGX_HTTP_NOT_FOUND || clcf->log_not_found) {
  89. ngx_log_error(level, log, of.err,
  90. "%s \"%s\" failed", of.failed, path.data);
  91. }
  92.  
  93. return rc;
  94. }
  95.  
  96. r->root_tested = !r->error_page;
  97.  
  98. ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0, "http static fd: %d", of.fd);
  99.  
  100. if (of.is_dir) {
  101.  
  102. ngx_log_debug0(NGX_LOG_DEBUG_HTTP, log, 0, "http dir");
  103.  
  104. ngx_http_clear_location(r);
  105.  
  106. r->headers_out.location = ngx_palloc(r->pool, sizeof(ngx_table_elt_t));
  107. if (r->headers_out.location == NULL) {
  108. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  109. }
  110.  
  111. len = r->uri.len + 1;
  112.  
  113. if (!clcf->alias && clcf->root_lengths == NULL && r->args.len == 0) {
  114. location = path.data + clcf->root.len;
  115.  
  116. *last = '/';
  117.  
  118. } else {
  119. if (r->args.len) {
  120. len += r->args.len + 1;
  121. }
  122.  
  123. location = ngx_pnalloc(r->pool, len);
  124. if (location == NULL) {
  125. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  126. }
  127.  
  128. last = ngx_copy(location, r->uri.data, r->uri.len);
  129.  
  130. *last = '/';
  131.  
  132. if (r->args.len) {
  133. *++last = '?';
  134. ngx_memcpy(++last, r->args.data, r->args.len);
  135. }
  136. }
  137.  
  138. /*
  139. * we do not need to set the r->headers_out.location->hash and
  140. * r->headers_out.location->key fields
  141. */
  142.  
  143. r->headers_out.location->value.len = len;
  144. r->headers_out.location->value.data = location;
  145.  
  146. return NGX_HTTP_MOVED_PERMANENTLY;
  147. }
  148.  
  149. #if !(NGX_WIN32) /* the not regular files are probably Unix specific */
  150.  
  151. if (!of.is_file) {
  152. ngx_log_error(NGX_LOG_CRIT, log, 0,
  153. "\"%s\" is not a regular file", path.data);
  154.  
  155. return NGX_HTTP_NOT_FOUND;
  156. }
  157.  
  158. #endif
  159.  
  160. if (r->method & NGX_HTTP_POST) {
  161. return NGX_HTTP_NOT_ALLOWED;
  162. }
  163.  
  164. rc = ngx_http_discard_request_body(r);
  165.  
  166. if (rc != NGX_OK) {
  167. return rc;
  168. }
  169.  
  170. log->action = "sending response to client";
  171.  
  172. r->headers_out.status = NGX_HTTP_OK;
  173. r->headers_out.content_length_n = of.size;
  174. r->headers_out.last_modified_time = of.mtime;
  175.  
  176. if (ngx_http_set_content_type(r) != NGX_OK) {
  177. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  178. }
  179.  
  180. if (r != r->main && of.size == 0) {
  181. return ngx_http_send_header(r);
  182. }
  183.  
  184. r->allow_ranges = 1;
  185.  
  186. /* we need to allocate all before the header would be sent */
  187.  
  188. b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
  189. if (b == NULL) {
  190. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  191. }
  192.  
  193. b->file = ngx_pcalloc(r->pool, sizeof(ngx_file_t));
  194. if (b->file == NULL) {
  195. return NGX_HTTP_INTERNAL_SERVER_ERROR;
  196. }
  197.  
  198. rc = ngx_http_send_header(r);
  199.  
  200. if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
  201. return rc;
  202. }
  203.  
  204. b->file_pos = 0;
  205. b->file_last = of.size;
  206.  
  207. b->in_file = b->file_last ? 1: 0;
  208. b->last_buf = (r == r->main) ? 1: 0;
  209. b->last_in_chain = 1;
  210.  
  211. b->file->fd = of.fd;
  212. b->file->name = path;
  213. b->file->log = log;
  214. b->file->directio = of.is_directio;
  215.  
  216. out.buf = b;
  217. out.next = NULL;
  218.  
  219. return ngx_http_output_filter(r, &out);
  220. }

首先是检查客户端的http请求类型(r->method),如果请求类型为NGX_HTTP_GET|NGX_HTTP_HEAD|NGX_HTTP_POST,则继续进行处理,否则一律返回NGX_HTTP_NOT_ALLOWED从而拒绝客户端的发起的请求。

其次是检查请求的url的结尾字符是不是斜杠‘/’,如果是说明请求的不是一个文件,给后续的handler去处理,比如后续的ngx_http_autoindex_handler(如果是请求的是一个目录下面,可以列出这个目录的文件),或者是ngx_http_index_handler(如果请求的路径下面有个默认的index文件,直接返回index文件的内容)。

然后接下来调用了一个ngx_http_map_uri_to_path函数,该函数的作用是把请求的http协议的路径转化成一个文件系统的路径。

然后根据转化出来的具体路径,去打开文件,打开文件的时候做了2种检查,一种是,如果请求的文件是个symbol link,根据配置,是否允许符号链接,不允许返回错误。还有一个检查是,如果请求的是一个名称,是一个目录的名字,也返回错误。如果都没有错误,就读取文件,返回内容。其实说返回内容可能不是特别准确,比较准确的说法是,把产生的内容传递给后续的filter去处理。

http log module

该模块提供了对于每一个http请求进行记录的功能,也就是我们见到的access.log。当然这个模块对于log提供了一些配置指令,使得可以比较方便的定制access.log。

这个模块的代码位于src/http/modules/ngx_http_log_module.c,虽然这个模块的代码有接近1400行,但是主要的逻辑在于对日志本身格式啊,等细节的处理。我们在这里进行分析主要是关注,如何编写一个log handler的问题。

由于log handler的时候,拿到的参数也是request这个东西,那么也就意味着我们如果需要,可以好好研究下这个结构,把我们需要的所有信息都记录下来。

对于log handler,有一点特别需要注意的就是,log handler是无论如何都会被调用的,就是只要服务端接受到了一个客户端的请求,也就是产生了一个request对象,那么这些个log handler的处理函数都会被调用的,就是在释放request的时候被调用的(ngx_http_free_request函数)。

那么当然绝对不能忘记的就是log handler最好,也是建议被挂载在NGX_HTTP_LOG_PHASE阶段。因为挂载在其他阶段,有可能在某些情况下被跳过,而没有执行到,导致你的log模块记录的信息不全。

还有一点要说明的是,由于nginx是允许在某个阶段有多个handler模块存在的,根据其处理结果,确定是否要调用下一个handler。但是对于挂载在NGX_HTTP_LOG_PHASE阶段的handler,则根本不关注这里handler的具体处理函数的返回值,所有的都被调用。如下,位于src/http/ngx_http_request.c中的ngx_http_log_request函数。

  1. static void
  2. ngx_http_log_request(ngx_http_request_t *r)
  3. {
  4. ngx_uint_t i, n;
  5. ngx_http_handler_pt *log_handler;
  6. ngx_http_core_main_conf_t *cmcf;
  7.  
  8. cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
  9.  
  10. log_handler = cmcf->phases[NGX_HTTP_LOG_PHASE].handlers.elts;
  11. n = cmcf->phases[NGX_HTTP_LOG_PHASE].handlers.nelts;
  12.  
  13. for (i = 0; i < n; i++) {
  14. log_handler[i](r);
  15. }
  16. }