TA的每日心情 | 开心 2016-8-15 09:30 |
---|
签到天数: 162 天 连续签到: 1 天 [LV.7]常住居民III
|
主函数:- int main(int argc, char **argv)
- {
- struct alias *alias;
- /* 设置命令的别名
- struct alias {
- struct list_head list;//命令列表
- char *alias;//命令别名
- char *path;//命令路径
- };
-
- struct list_head {
- struct list_head *next;//列表下一个对象
- struct list_head *prev;//列表前一个对象
- };
- */
- bool nofork = false;
- /* 进程还没有开始克隆自己 */
- char *port;
- /* 端口 */
- int opt;
- /* 一个在for里面使用的普通变量 */
-
- int ch;
- /* 一个在while里面使用的普通变量 */
- int cur_fd;
- /* 保存了"/dev/null"句柄 */
- int bound = 0;
- /* 绑定的监听端口个数 */
- #ifdef HAVE_TLS
- /* 当安装了tls插件 */
- int n_tls = 0;
- /* 如果安装了tls,则不为0 */
- const char *tls_key = NULL;
- /* ASN.1 server private key file */
-
- const char *tls_crt = NULL;
- /* ASN.1 server certificate file */
- #endif
- BUILD_BUG_ON(sizeof(uh_buf) < PATH_MAX); /* 条件为真,编译报错,uh_buf为4096,path_max一般为260 */
- /*
- #define __BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
- */
- uh_dispatch_add(&cgi_dispatch);
- /*
- 添加cgi调度程序到双向链表
- */
-
- init_defaults_pre();
- /*
- 初始化配置变量
- */
-
- signal(SIGPIPE, SIG_IGN);
- /*
- 函数原型:sig_t signal(int signum,sig_t handler);
- 功能:设置某一信号的对应动作
- 第一个参数signum指明了所要处理的信号类型,它可以取除了SIGKILL和SIGSTOP外的任何一种信号。
- 第二个参数handler描述了与信号关联的动作。
- SIGPIPE:在reader中止之后写Pipe的时候发送
- SIG_IGN:表示忽略该信号
- 函数说明:
- signal()会依参数signum 指定的信号编号来设置该信号的处理函数。
- 当指定的信号到达时就会跳转到参数handler指定的函数执行。
- 当一个信号的信号处理函数执行时,如果进程又接收到了该信号,
- 该信号会自动被储存而不会中断信号处理函数的执行,直到信号处理函数执行完毕再重新调用相应的处理函数。
- 但是如果在信号处理函数执行时进程收到了其它类型的信号,该函数的执行就会被中断。
- */
- /*
- 原型:int getopt(int argc,char * const argv[ ],const char * optstring);
- 功能:用来分析命令行参数。
- 参数:argc和argv是由main()传递的参数个数和内容。参数optstring则代表欲处理的选项字符串。
- 函数说明:此函数会返回在argv 中下一个的选项字母,此字母会对应参数optstring 中的字母。
- 如果选项字符串里的字母后接着冒号“:”,则表示还有相关的参数,全域变量optarg 即会指向此额外参数。
- 如果getopt()找不到符合的参数则会印出错信息,并将全域变量optopt设为“?”字符,
- 如果不希望getopt()印出错信息,则只要将全域变量opterr设为0即可。
- */
-
- while (ch = getopt(argc, argv, "A:aC:c:Dd:E:fh:H:I:i:K:k:L:l:m:N:n:p:qRr:Ss:T:t:U:u:Xx:y:") != -1)
- {
- /*
- 每次解释一个命令行传递过来的参数
- */
-
- switch(ch)
- {
-
- #ifdef HAVE_TLS
- /* 如果安装了tls插件,命令行又带相关的参数,执行相应的配置 */
- case 'C':
- tls_crt = optarg;
- break;
- case 'K':
- tls_key = optarg;
- break;
- case 'q':
- conf.tls_redirect = 1;
- break;
- case 's':
- n_tls++;
- /* fall through */
- #else
- /* 如果没有安装tls插件,命令行又带相关的参数,显示错误 ,但继续执行*/
- case 'C':
- case 'K':
- case 'q':
- case 's':
- fprintf(stderr, "uhttpd: TLS support not compiled, "
- "ignoring -%c\n", ch);
- break;
- #endif
- case 'p':
- optarg = strdup(optarg);
- bound += add_listener_arg(optarg, (ch == 's'));
- break;
- case 'h':
- if (!realpath(optarg, uh_buf))
- {
- fprintf(stderr, "Error: Invalid directory %s: %s\n",
- optarg, strerror(errno));
- exit(1);
- }
- conf.docroot = strdup(uh_buf);
- break;
- case 'H':
- if (uh_handler_add(optarg))
- {
- fprintf(stderr, "Error: Failed to load handler script %s\n",
- optarg);
- exit(1);
- }
- break;
- case 'E':
- if (optarg[0] != '/')
- {
- fprintf(stderr, "Error: Invalid error handler: %s\n",
- optarg);
- exit(1);
- }
- conf.error_handler = optarg;
- break;
- case 'I':
- if (optarg[0] == '/')
- {
- fprintf(stderr, "Error: Invalid index page: %s\n",
- optarg);
- exit(1);
- }
- uh_index_add(optarg);
- break;
- case 'S':
- conf.no_symlinks = 1;
- break;
- case 'D':
- conf.no_dirlists = 1;
- break;
- case 'R':
- conf.rfc1918_filter = 1;
- break;
- case 'n':
- conf.max_script_requests = atoi(optarg);
- break;
- case 'N':
- conf.max_connections = atoi(optarg);
- break;
- case 'x':
- fixup_prefix(optarg);
- conf.cgi_prefix = optarg;
- break;
- case 'y':
- alias = calloc(1, sizeof(*alias));
- if (!alias)
- {
- fprintf(stderr, "Error: failed to allocate alias\n");
- exit(1);
- }
- alias->alias = strdup(optarg);
- alias->path = strchr(alias->alias, '=');
- if (alias->path)
- *alias->path++ = 0;
- list_add(&alias->list, &conf.cgi_alias);
- break;
- case 'i':
- optarg = strdup(optarg);
- port = strchr(optarg, '=');
- if (optarg[0] != '.' || !port)
- {
- fprintf(stderr, "Error: Invalid interpreter: %s\n",
- optarg);
- exit(1);
- }
- *port++ = 0;
- uh_interpreter_add(optarg, port);
- break;
- case 't':
- conf.script_timeout = atoi(optarg);
- break;
- case 'T':
- conf.network_timeout = atoi(optarg);
- break;
- case 'k':
- conf.http_keepalive = atoi(optarg);
- break;
- case 'A':
- conf.tcp_keepalive = atoi(optarg);
- break;
- case 'f':
- nofork = 1;
- break;
- case 'd':
- optarg = strdup(optarg);
- port = alloca(strlen(optarg) + 1);
- if (!port)
- return -1;
- /* "decode" plus to space to retain compat */
- for (opt = 0; optarg[opt]; opt++)
- if (optarg[opt] == '+')
- optarg[opt] = ' ';
- /* opt now contains strlen(optarg) -- no need to re-scan */
- if (uh_urldecode(port, opt, optarg, opt) < 0)
- {
- fprintf(stderr, "uhttpd: invalid encoding\n");
- return -1;
- }
- printf("%s", port);
- return 0;
- break;
- /* basic auth realm */
- case 'r':
- conf.realm = optarg;
- break;
- /* md5 crypt */
- case 'm':
- printf("%s\n", crypt(optarg, "$1$"));
- return 0;
- break;
- /* config file */
- case 'c':
- conf.file = optarg;
- break;
- #ifdef HAVE_LUA
- /* 如果安装了lua插件,命令行又带相关的参数,执行相应的配置 */
- case 'l':
- conf.lua_prefix = optarg;
- break;
- case 'L':
- conf.lua_handler = optarg;
- break;
- #else
- /* 如果没有安装lua插件,命令行又带相关的参数,显示错误 ,但继续执行*/
- case 'l':
- case 'L':
- fprintf(stderr, "uhttpd: Lua support not compiled, "
- "ignoring -%c\n", ch);
- break;
- #endif
- #ifdef HAVE_UBUS
- /* 如果安装了ubus插件,命令行又带相关的参数,执行相应的配置 */
- case 'a':
- conf.ubus_noauth = 1;
- break;
- case 'u':
- conf.ubus_prefix = optarg;
- break;
- case 'U':
- conf.ubus_socket = optarg;
- break;
- case 'X':
- conf.ubus_cors = 1;
- break;
- #else
- /* 如果没有安装ubus插件,命令行又带相关的参数,显示错误 ,但继续执行*/
- case 'a':
- case 'u':
- case 'U':
- case 'X':
- fprintf(stderr, "uhttpd: UBUS support not compiled, "
- "ignoring -%c\n", ch);
- break;
- #endif
- default:
- return usage(argv[0]);
- /* 没有参数或者有不明参数,显示帮助并退出 */
- }
- }
- uh_config_parse();
- /*
- 原型:static void uh_config_parse(void)
- 功能:解析config文件
- */
- if (!conf.docroot) /* 如果conf结构体里的docroot还没有赋值,就执行 */
- {
- if (!realpath(".", uh_buf)) /* uh_buf为当前工作目录的绝对路径指针 */
- {
- /*
- 原型:char *realpath(const char *path, char *resolved_path);
- 功能:用来将参数path所指的相对路径转换成绝对路径
- 返回值:成功则返回指向resolved_path的指针,失败返回NULL
- */
- fprintf(stderr, "Error: Unable to determine work dir\n");
- return 1;
- }
- conf.docroot = strdup(uh_buf); /* 结构体conf里的docroot字段保存了当前工作路径 */
- /*
- 原型:extern char *strdup(char *s);
- 功能: 将字符串拷贝到新建的位置处
- 返回值:返回一个指针,指向为复制字符串分配的空间;如果分配空间失败,则返回NULL值
- */
-
- }
- init_defaults_post();
- /* 初始化主页名和cgi的绝对路径 */
- if (!bound) /* 如果没有绑定监听端口,则报错退出 */
- {
- fprintf(stderr, "Error: No sockets bound, unable to continue\n");
- return 1;
- }
- #ifdef HAVE_TLS /* 如果安装了tls,则执行 */
- if (n_tls) /* 安装了tls,n_tls就不为0 */
- {
- if (!tls_crt || !tls_key) /* 没有公匙或者没有私匙,就报错并退出 */
- {
- fprintf(stderr, "Please specify a certificate and "
- "a key file to enable SSL support\n");
- return 1;
- }
- if (uh_tls_init(tls_key, tls_crt)) /* 初始化tls,成功返回0 */
- return 1;
- }
- #endif
- #ifdef HAVE_LUA /* 如果安装了lua程序,则执行 */
- if (conf.lua_handler || conf.lua_prefix) /* 两个变量其中一个有值就执行 */
- {
- /*
- conf.lua_handler = optarg; //file lua脚本文件
- conf.lua_prefix = optarg; //string 默认为'/lua'
- */
- if (!conf.lua_handler || !conf.lua_prefix) /* 两个变量其中一个没值就报错 */
- {
- fprintf(stderr, "Need handler and prefix to enable Lua support\n");
- return 1;
- }
-
- if (uh_plugin_init("uhttpd_lua.so")) /* 加载lua动态链接库 */
- return 1;
- }
- #endif
- #ifdef HAVE_UBUS /* 如果安装了ubus程序,则执行 */
- /* 不是很理解这里,conf.ubus_prefix是否有值对结果不是很重要 */
- if (conf.ubus_prefix && uh_plugin_init("uhttpd_ubus.so")) /* 插件初始化成功则会继续执行 */
- return 1;
- #endif
- /* 程序如果还没有克隆自己,那现在开始克隆 */
- if (!nofork) {
-
- switch (fork()) {
- /*
- 在fork函数执行完毕后,如果创建新进程成功,则出现两个进程,一个是子进程,一个是父进程。
- 在子进程中,fork函数返回0,在父进程中,fork返回新创建子进程的进程ID。
- 我们可以通过fork返回的值来判断当前进程是子进程还是父进程。
- */
-
- case -1: /* 如果出现错误,fork返回一个负值 */
- perror("fork()"); /* 显示错误 */
- /*
- perror(s) 用来将上一个函数发生错误的原因输出到标准设备(stderr)。
- 参数 s 所指的字符串会先打印出,后面再加上错误原因字符串。
- */
- exit(1); /* 1是错误退出 */
- case 0: /* 子进程执行这里,守护进程设置 */
-
- /* chdir 系统调用函数(同cd)
- 原型: int chdir(const char *path );
- 功 能:更改当前工作目录。
- 参 数:Path 目标目录,可以是绝对目录或相对目录。
- 返回值:成功返回0 ,失败返回-1
- */
- if (chdir("/")) /* 跳转成功不执行 */
- perror("chdir()"); /* 显示错误 */
- /* open 系统调用函数
- 原型:int open(constchar*pathname,intflags);
- 参数1:pathname 是待打开/创建文件的POSIX路径名
- 参数2:flags 用于指定文件的打开/创建模式
- O_RDONLY只读模式
- O_WRONLY只写模式
- O_RDWR读写模式
- 返回值:成功则返回文件描述符,否则返回-1
- */
- cur_fd = open("/dev/null", O_WRONLY);
- /* 由open返回的文件描述符一定是最小的未用描述符数值,打开的应该至少是文件描述符3 */
-
- if (cur_fd > 0) {
-
- /*
- 函数名: dup2
- 功能: 复制文件句柄
- 用法: int dup2(int oldfd,int newfd);
- */
-
- dup2(cur_fd, 0);
- /* 功能是令文件描述符0 指向fd 所指向的文件,即“输入重定向”的功能 */
-
- dup2(cur_fd, 1);
- /* 功能是令文件描述符1 指向fd 所指向的文件,即“输出重定向”的功能 */
-
- dup2(cur_fd, 2);
- /* 功能是令文件描述符2 指向fd 所指向的文件,即“错误重定向”的功能 */
- }
- break;
- default: /* 父进程执行这里 */
- exit(0); /* 0是正常退出 */
- }
- }
- return run_server();
- }
复制代码 |
|