这里阅读的php版本为PHP-7.1.0 RC3,阅读代码的平台为linux
首先是寻找php的入口,php有很多种模式,apache,php-fpm, cli模式,我要入手的话,只能先从最简单的cli模型开始。
那么,我需要先寻找
这个命令是如何执行的。
首先还是寻找main入口,由于我们看的是命令行的php程序。所以,这个入口在sapi/cli/php_cli.c中。
首先是定义一系列的变量
02 | zend_file_handle file_handle; |
03 | int behavior = PHP_MODE_STANDARD; |
04 | char *reflection_what = NULL; |
05 | volatile int request_started = 0; |
06 | volatile int exit_status = 0; |
07 | char *php_optarg = NULL, *orig_optarg = NULL; |
08 | int php_optind = 1, orig_optind = 1; |
09 | char *exec_direct=NULL, *exec_run=NULL, *exec_begin=NULL, *exec_end=NULL; |
10 | char *arg_free=NULL, **arg_excp=&arg_free; |
11 | char *script_file=NULL, *translated_path = NULL; |
14 | const char *param_error=NULL; |
然后是这个
sapi_module_struct *sapi_module = &cli_sapi_module;
这是一个sapi_module_struct结构,这个结构是sapi中最重要的数据结构。它的定义在main/SAPI.h中。
下面是增加了注释的代码:
01 | struct _sapi_module_struct { |
05 | int (*startup)(struct _sapi_module_struct *sapi_module); |
06 | int (*shutdown)(struct _sapi_module_struct *sapi_module); |
08 | int (*activate)(void); |
09 | int (*deactivate)(void); |
11 | size_t (*ub_write)( const char *str, size_t str_length); |
12 | void (* flush )(void *server_context); |
13 | zend_stat_t *(*get_stat)(void); |
14 | char *(* getenv )(char *name, size_t name_len); |
16 | void (*sapi_error)(int type, const char *error_msg, ...) ZEND_ATTRIBUTE_FORMAT(printf, 2, 3); |
18 | int (*header_handler)(sapi_header_struct *sapi_header, sapi_header_op_enum op, sapi_headers_struct *sapi_headers); |
19 | int (*send_headers)(sapi_headers_struct *sapi_headers); |
20 | void (*send_header)(sapi_header_struct *sapi_header, void *server_context); |
22 | size_t (*read_post)(char *buffer, size_t count_bytes); |
23 | char *(*read_cookies)(void); |
25 | void (*register_server_variables)(zval *track_vars_array); |
26 | void (*log_message)(char *message, int syslog_type_int); |
27 | double (*get_request_time)(void); |
28 | void (*terminate_process)(void); |
30 | char *php_ini_path_override; |
32 | void (*default_post_reader)(void); |
33 | void (*treat_data)(int arg, char *str, zval *destArray); |
34 | char *executable_location; |
37 | int php_ini_ignore_cwd; |
39 | int (*get_fd)(int *fd); |
41 | int (*force_http_10)(void); |
43 | int (*get_target_uid)(uid_t *); |
44 | int (*get_target_gid)(gid_t *); |
46 | unsigned int (*input_filter)(int arg, char * var , char **val, size_t val_len, size_t *new_val_len); |
48 | void (*ini_defaults)(HashTable *configuration_hash); |
52 | const zend_function_entry *additional_functions; |
53 | unsigned int (*input_filter_init)(void); |
有几个点可以总结:
cli模式是不需要发送header的,所以对应header处理的三个函数
1 | sapi_cli_header_handler |
实际上都是空实现。
cookie也是同样道理
其他的一些定义的函数,等到我们遇到的时候再分析吧。
main
回到main函数,根据上面的那个结构,我们就理解了
1 | argv = save_ps_args(argc, argv); |
3 | cli_sapi_module.additional_functions = additional_functions; |
signal