作者:阿波
链接:http://blog.csdn.net/livelylittlefish/article/details/7262750
Content
0. 序
1. Core模块的配置结构
2. create_conf分析
3. init_conf分析
4. 小结
在<nginx源码分析—全局变量ngx_cycle的初始化>中,简单介绍了如何调用core模块的callback,并简单列出其定义及其初始化,本文将重点阐述callback做什么。
如前文所述,core模块的callback有两个create_conf()和init_conf(),从名字就可以看出,一个创建配置结构,另一个初始化该配置结构。core模块的配置结构如下,存放配置文件中的核心指令,如deamon,master等。
./src/core/ngx_cycle.h
create_conf只是指针,CORE模块的create_conf指向ngx_core_module_init_conf()函数,该函数创建ngx_core_conf_t配置结构。
该函数很简单,即将配置结构的各个字段初始化为未设置的值。如下。
init_conf才是真正的初始化该结构。
(1) 初始化daemon、master等
直接赋值。
(2) 初始化pid、oldpid
调用ngx_conf_full_name()函数初始化pid,实际上就是在pid字符串前加上NGX_PREFIX获取pid全路径,NGX_PREFIX定义如下。
例如,ngx_conf_full_name()被调用前ccf->pid的内容如下。
ngx_conf_full_name()被调用后ccf->pid的内容如下。
(3)初始化username,user,group
该初始化通过调用系统函数getpwnam()和getgrnam()完成。相关数据结构如下。
The getpwnam() function returns a pointer to a structure containing the broken-out fields of the record in the password database (e.g., the local password file /etc/passwd, NIS, and LDAP) that matches the username name.
The passwd structure is defined in <pwd.h> as follows:
struct passwd {
char *pw_name; /* username */
char *pw_passwd; /* user password */
uid_t pw_uid; /* user ID */
gid_t pw_gid; /* group ID */
char *pw_gecos; /* user information */
char *pw_dir; /* home directory */
char *pw_shell; /* shell program */
};
The getgrnam() function returns a pointer to a structure containing the broken-out fields of the record in the group database (e.g., the local group file /etc/group, NIS, and LDAP) that matches the group name name.
The group structure is defined in <grp.h> as follows:
struct group {
char *gr_name; /* group name */
char *gr_passwd; /* group password */
gid_t gr_gid; /* group ID */
char **gr_mem; /* group members */
};
获得的数据如下。
(4) 初始化lock_file
同初始化pid,调用ngx_conf_full_name()函数初始化lock_file,即在lock_file字符串前加上NGX_PREFIX获取其全路径,其全路径如下。
(5) 初始化ngx_cycle->lock_file
ngx_cycle->lock_file的初始化是复制ccf->lock_file的内容并在其后链接".accept"。
(6) ngx_cpymem与ngx_memcpy
ngx_cpymem(dst,src,n):将src内容拷贝n个到dst,且返回地址dst+n
ngx_memcpy(dst,src,n):将src内容拷贝n个到dst
(7) 配置结构初始化后的内容
跟踪调试即可获得ngx_core_module这个CORE模块的配置结构,如下。
本文主要分析core模块的callback,后文继续分析配置文件解析等。
阅读、分析优秀的开源代码,一定要亲自操刀运行、调试,才能深刻理解调用路径,数据流向。当然笔者还没有开始分析nginx的核心功能代码,我想那将是非常享受的代码之旅。
Reference
# man getpwnam
# man getgrnam