nginx/src/http/ngx_http.c

717 lines
22 KiB
C
Raw Normal View History

2002-08-16 23:27:03 +08:00
/*
* Copyright (C) Igor Sysoev
*/
2002-08-20 22:48:28 +08:00
#include <ngx_config.h>
2003-06-03 23:42:58 +08:00
#include <ngx_core.h>
2003-06-11 23:28:34 +08:00
#include <ngx_event.h>
2002-08-16 23:27:03 +08:00
#include <ngx_http.h>
2003-05-27 20:18:54 +08:00
static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static ngx_int_t ngx_http_add_address(ngx_conf_t *cf,
ngx_http_in_port_t *in_port,
ngx_http_listen_t *lscf,
ngx_http_core_srv_conf_t *cscf);
static ngx_int_t ngx_http_add_names(ngx_conf_t *cf,
ngx_http_in_addr_t *in_addr,
ngx_http_core_srv_conf_t *cscf);
2004-07-19 03:11:20 +08:00
static char *ngx_http_merge_locations(ngx_conf_t *cf,
ngx_array_t *locations,
void **loc_conf,
ngx_http_module_t *module,
ngx_uint_t ctx_index);
2003-01-09 13:36:00 +08:00
2003-12-19 16:15:11 +08:00
int ngx_http_max_module;
ngx_uint_t ngx_http_total_requests;
uint64_t ngx_http_total_sent;
2003-01-09 13:36:00 +08:00
2003-01-10 14:09:20 +08:00
2004-06-16 23:32:11 +08:00
ngx_int_t (*ngx_http_top_header_filter) (ngx_http_request_t *r);
ngx_int_t (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
2003-01-09 13:36:00 +08:00
static ngx_command_t ngx_http_commands[] = {
{ngx_string("http"),
2003-05-15 01:13:13 +08:00
NGX_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS,
2003-01-09 13:36:00 +08:00
ngx_http_block,
0,
2003-05-15 23:42:53 +08:00
0,
NULL},
2003-01-09 13:36:00 +08:00
2003-05-27 20:18:54 +08:00
ngx_null_command
2003-01-09 13:36:00 +08:00
};
2004-04-13 00:38:09 +08:00
static ngx_core_module_t ngx_http_module_ctx = {
ngx_string("http"),
NULL,
NULL
};
2003-01-09 13:36:00 +08:00
ngx_module_t ngx_http_module = {
2003-05-27 20:18:54 +08:00
NGX_MODULE,
2004-04-13 00:38:09 +08:00
&ngx_http_module_ctx, /* module context */
2003-01-09 13:36:00 +08:00
ngx_http_commands, /* module directives */
2003-05-27 20:18:54 +08:00
NGX_CORE_MODULE, /* module type */
2003-07-11 12:50:59 +08:00
NULL, /* init module */
NULL /* init child */
2003-01-09 13:36:00 +08:00
};
2003-05-27 20:18:54 +08:00
static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
2003-01-09 13:36:00 +08:00
{
char *rv;
2004-03-16 15:10:12 +08:00
ngx_uint_t mi, m, s, l, p, a, n;
ngx_uint_t port_found, addr_found, virtual_names;
2003-12-26 04:26:58 +08:00
ngx_conf_t pcf;
2003-05-20 00:39:14 +08:00
ngx_array_t in_ports;
2003-06-11 23:28:34 +08:00
ngx_listening_t *ls;
2003-12-26 04:26:58 +08:00
ngx_http_listen_t *lscf;
2003-05-20 00:39:14 +08:00
ngx_http_module_t *module;
2003-12-01 04:03:18 +08:00
ngx_http_handler_pt *h;
2003-05-20 00:39:14 +08:00
ngx_http_conf_ctx_t *ctx;
ngx_http_in_port_t *in_port, *inport;
ngx_http_in_addr_t *in_addr, *inaddr;
2003-12-26 04:26:58 +08:00
ngx_http_server_name_t *s_name, *name;
2003-06-11 23:28:34 +08:00
ngx_http_core_srv_conf_t **cscfp, *cscf;
2004-07-27 02:31:43 +08:00
ngx_http_core_loc_conf_t *clcf;
2003-12-26 04:26:58 +08:00
ngx_http_core_main_conf_t *cmcf;
2003-06-11 23:28:34 +08:00
#if (WIN32)
ngx_iocp_conf_t *iocpcf;
#endif
2003-05-20 00:39:14 +08:00
#if (NGX_SUPPRESS_WARN)
/* MSVC thinks 'in_ports' may be used without having been initialized */
ngx_memzero(&in_ports, sizeof(ngx_array_t));
#endif
2003-05-20 00:39:14 +08:00
/* the main http context */
2003-01-09 13:36:00 +08:00
ngx_test_null(ctx,
ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)),
NGX_CONF_ERROR);
2003-05-16 23:27:48 +08:00
*(ngx_http_conf_ctx_t **) conf = ctx;
2003-05-20 00:39:14 +08:00
/* count the number of the http modules and set up their indices */
2003-04-08 23:40:10 +08:00
ngx_http_max_module = 0;
2003-05-20 00:39:14 +08:00
for (m = 0; ngx_modules[m]; m++) {
2003-05-27 20:18:54 +08:00
if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
2003-01-09 13:36:00 +08:00
continue;
}
2003-05-27 20:18:54 +08:00
ngx_modules[m]->ctx_index = ngx_http_max_module++;
2003-01-09 13:36:00 +08:00
}
2003-05-20 00:39:14 +08:00
/* the main http main_conf, it's the same in the all http contexts */
2003-05-16 23:27:48 +08:00
ngx_test_null(ctx->main_conf,
ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
NGX_CONF_ERROR);
2003-05-20 00:39:14 +08:00
/* the http null srv_conf, it's used to merge the server{}s' srv_conf's */
2003-05-16 23:27:48 +08:00
ngx_test_null(ctx->srv_conf,
ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
NGX_CONF_ERROR);
2003-05-20 00:39:14 +08:00
/* the http null loc_conf, it's used to merge the server{}s' loc_conf's */
2003-01-09 13:36:00 +08:00
ngx_test_null(ctx->loc_conf,
ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
NGX_CONF_ERROR);
2003-05-20 00:39:14 +08:00
/* create the main_conf, srv_conf and loc_conf in all http modules */
for (m = 0; ngx_modules[m]; m++) {
2003-05-27 20:18:54 +08:00
if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
2003-01-09 13:36:00 +08:00
continue;
}
2003-05-27 20:18:54 +08:00
module = ngx_modules[m]->ctx;
mi = ngx_modules[m]->ctx_index;
2003-05-20 00:39:14 +08:00
2003-11-11 01:17:31 +08:00
if (module->pre_conf) {
if (module->pre_conf(cf) != NGX_OK) {
return NGX_CONF_ERROR;
}
}
2003-05-20 00:39:14 +08:00
if (module->create_main_conf) {
2003-07-21 05:15:59 +08:00
ngx_test_null(ctx->main_conf[mi], module->create_main_conf(cf),
2003-05-20 00:39:14 +08:00
NGX_CONF_ERROR);
}
if (module->create_srv_conf) {
2003-07-21 05:15:59 +08:00
ngx_test_null(ctx->srv_conf[mi], module->create_srv_conf(cf),
2003-05-20 00:39:14 +08:00
NGX_CONF_ERROR);
}
2003-01-09 13:36:00 +08:00
if (module->create_loc_conf) {
2003-07-21 05:15:59 +08:00
ngx_test_null(ctx->loc_conf[mi], module->create_loc_conf(cf),
2003-01-09 13:36:00 +08:00
NGX_CONF_ERROR);
}
}
2003-05-20 00:39:14 +08:00
/* parse inside the http{} block */
2003-05-16 23:27:48 +08:00
pcf = *cf;
2003-01-09 13:36:00 +08:00
cf->ctx = ctx;
2003-05-27 20:18:54 +08:00
cf->module_type = NGX_HTTP_MODULE;
2003-05-15 01:13:13 +08:00
cf->cmd_type = NGX_HTTP_MAIN_CONF;
2003-01-09 13:36:00 +08:00
rv = ngx_conf_parse(cf, NULL);
if (rv != NGX_CONF_OK) {
*cf = pcf;
2003-01-09 13:36:00 +08:00
return rv;
}
2003-01-09 13:36:00 +08:00
/*
* init http{} main_conf's, merge the server{}s' srv_conf's
* and its location{}s' loc_conf's
*/
2003-05-20 00:39:14 +08:00
2003-05-27 20:18:54 +08:00
cmcf = ctx->main_conf[ngx_http_core_module.ctx_index];
2003-05-30 22:27:59 +08:00
cscfp = cmcf->servers.elts;
2003-05-20 00:39:14 +08:00
for (m = 0; ngx_modules[m]; m++) {
2003-05-27 20:18:54 +08:00
if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
2003-05-20 00:39:14 +08:00
continue;
}
2003-05-30 22:27:59 +08:00
module = ngx_modules[m]->ctx;
2003-05-27 20:18:54 +08:00
mi = ngx_modules[m]->ctx_index;
2003-05-20 00:39:14 +08:00
/* init http{} main_conf's */
if (module->init_main_conf) {
2003-07-21 05:15:59 +08:00
rv = module->init_main_conf(cf, ctx->main_conf[mi]);
2003-05-20 00:39:14 +08:00
if (rv != NGX_CONF_OK) {
2003-11-11 01:17:31 +08:00
*cf = pcf;
2003-05-20 00:39:14 +08:00
return rv;
}
}
for (s = 0; s < cmcf->servers.nelts; s++) {
/* merge the server{}s' srv_conf's */
if (module->merge_srv_conf) {
2003-07-21 05:15:59 +08:00
rv = module->merge_srv_conf(cf,
2003-05-20 00:39:14 +08:00
ctx->srv_conf[mi],
cscfp[s]->ctx->srv_conf[mi]);
if (rv != NGX_CONF_OK) {
2003-11-11 01:17:31 +08:00
*cf = pcf;
2003-05-20 00:39:14 +08:00
return rv;
}
}
if (module->merge_loc_conf) {
/* merge the server{}'s loc_conf */
2003-07-21 05:15:59 +08:00
rv = module->merge_loc_conf(cf,
2003-05-20 00:39:14 +08:00
ctx->loc_conf[mi],
cscfp[s]->ctx->loc_conf[mi]);
if (rv != NGX_CONF_OK) {
2003-11-11 01:17:31 +08:00
*cf = pcf;
2003-05-20 00:39:14 +08:00
return rv;
}
/* merge the locations{}' loc_conf's */
2004-07-19 03:11:20 +08:00
rv = ngx_http_merge_locations(cf, &cscfp[s]->locations,
cscfp[s]->ctx->loc_conf,
module, mi);
if (rv != NGX_CONF_OK) {
*cf = pcf;
return rv;
}
#if 0
clcfp = (ngx_http_core_loc_conf_t **) cscfp[s]->locations.elts;
2003-05-20 00:39:14 +08:00
for (l = 0; l < cscfp[s]->locations.nelts; l++) {
2003-07-21 05:15:59 +08:00
rv = module->merge_loc_conf(cf,
2003-05-20 00:39:14 +08:00
cscfp[s]->ctx->loc_conf[mi],
clcfp[l]->loc_conf[mi]);
if (rv != NGX_CONF_OK) {
2003-11-11 01:17:31 +08:00
*cf = pcf;
2003-05-20 00:39:14 +08:00
return rv;
}
}
2004-07-19 03:11:20 +08:00
#endif
2003-05-20 00:39:14 +08:00
}
2003-01-28 23:56:37 +08:00
}
}
2003-05-20 00:39:14 +08:00
2003-11-11 01:17:31 +08:00
/* we needed "http"'s cf->ctx while merging configuration */
*cf = pcf;
2003-05-20 00:39:14 +08:00
2003-10-13 00:49:16 +08:00
/* init lists of the handlers */
2003-01-28 23:56:37 +08:00
2003-10-10 23:10:50 +08:00
ngx_init_array(cmcf->phases[NGX_HTTP_REWRITE_PHASE].handlers,
cf->cycle->pool, 10, sizeof(ngx_http_handler_pt),
NGX_CONF_ERROR);
cmcf->phases[NGX_HTTP_REWRITE_PHASE].type = NGX_OK;
2004-06-25 00:07:04 +08:00
/* the special find config phase for single handler */
2003-12-01 04:03:18 +08:00
ngx_init_array(cmcf->phases[NGX_HTTP_FIND_CONFIG_PHASE].handlers,
cf->cycle->pool, 1, sizeof(ngx_http_handler_pt),
2003-10-10 23:10:50 +08:00
NGX_CONF_ERROR);
2003-12-01 04:03:18 +08:00
cmcf->phases[NGX_HTTP_FIND_CONFIG_PHASE].type = NGX_OK;
ngx_test_null(h, ngx_push_array(
&cmcf->phases[NGX_HTTP_FIND_CONFIG_PHASE].handlers),
NGX_CONF_ERROR);
*h = ngx_http_find_location_config;
2003-10-10 23:10:50 +08:00
2003-12-01 04:03:18 +08:00
2004-06-25 00:07:04 +08:00
ngx_init_array(cmcf->phases[NGX_HTTP_ACCESS_PHASE].handlers,
cf->cycle->pool, 10, sizeof(ngx_http_handler_pt),
NGX_CONF_ERROR);
cmcf->phases[NGX_HTTP_ACCESS_PHASE].type = NGX_DECLINED;
2003-12-01 04:03:18 +08:00
ngx_init_array(cmcf->phases[NGX_HTTP_CONTENT_PHASE].handlers,
cf->cycle->pool, 10, sizeof(ngx_http_handler_pt),
NGX_CONF_ERROR);
cmcf->phases[NGX_HTTP_CONTENT_PHASE].type = NGX_OK;
2003-10-10 23:10:50 +08:00
2003-03-21 00:09:44 +08:00
2004-01-23 17:26:18 +08:00
/*
* create the lists of ports, addresses and server names
* to quickly find the server core module configuration at run-time
2004-01-23 17:26:18 +08:00
*/
2003-01-28 23:56:37 +08:00
if (ngx_array_init(&in_ports, cf->pool, 10, sizeof(ngx_http_in_port_t))
== NGX_ERROR)
{
return NGX_CONF_ERROR;
}
2003-01-09 13:36:00 +08:00
2003-05-15 23:42:53 +08:00
/* "server" directives */
2003-05-30 22:27:59 +08:00
cscfp = cmcf->servers.elts;
2003-05-20 00:39:14 +08:00
for (s = 0; s < cmcf->servers.nelts; s++) {
2003-01-09 13:36:00 +08:00
2003-05-15 23:42:53 +08:00
/* "listen" directives */
2003-05-30 22:27:59 +08:00
lscf = cscfp[s]->listen.elts;
2003-05-20 00:39:14 +08:00
for (l = 0; l < cscfp[s]->listen.nelts; l++) {
2003-01-09 13:36:00 +08:00
port_found = 0;
/* AF_INET only */
2003-05-30 22:27:59 +08:00
in_port = in_ports.elts;
2003-01-09 13:36:00 +08:00
for (p = 0; p < in_ports.nelts; p++) {
if (lscf[l].port == in_port[p].port) {
2003-05-15 23:42:53 +08:00
/* the port is already in the port list */
2003-01-09 13:36:00 +08:00
port_found = 1;
addr_found = 0;
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
for (a = 0; a < in_port[p].addrs.nelts; a++) {
2003-01-09 13:36:00 +08:00
if (lscf[l].addr == in_addr[a].addr) {
2003-05-15 23:42:53 +08:00
/* the address is already in the address list */
2003-05-15 23:42:53 +08:00
if (ngx_http_add_names(cf, &in_addr[a], cscfp[s])
== NGX_ERROR)
{
return NGX_CONF_ERROR;
2003-01-09 13:36:00 +08:00
}
2004-01-23 17:26:18 +08:00
/*
* check the duplicate "default" server
* for this address:port
2004-01-23 17:26:18 +08:00
*/
2003-05-15 23:42:53 +08:00
2004-03-16 15:10:12 +08:00
if (lscf[l].default_server) {
2004-03-16 15:10:12 +08:00
if (in_addr[a].default_server) {
2003-01-09 13:36:00 +08:00
ngx_log_error(NGX_LOG_ERR, cf->log, 0,
"the duplicate default server in %s:%d",
lscf[l].file_name.data,
lscf[l].line);
2003-01-09 13:36:00 +08:00
return NGX_CONF_ERROR;
}
2003-05-20 00:39:14 +08:00
in_addr[a].core_srv_conf = cscfp[s];
2004-03-16 15:10:12 +08:00
in_addr[a].default_server = 1;
2003-01-09 13:36:00 +08:00
}
addr_found = 1;
break;
2003-05-15 23:42:53 +08:00
} else if (in_addr[a].addr == INADDR_ANY) {
/* the INADDR_ANY is always the last address */
if (!(inaddr = ngx_array_push(&in_port[p].addrs))) {
return NGX_CONF_ERROR;
}
2004-01-23 17:26:18 +08:00
/*
* the INADDR_ANY must be the last resort
* so we move it to the end of the address list
* and put the new address in its place
2004-01-23 17:26:18 +08:00
*/
2003-05-15 23:42:53 +08:00
2003-01-09 13:36:00 +08:00
ngx_memcpy(inaddr, &in_addr[a],
sizeof(ngx_http_in_addr_t));
2003-05-15 23:42:53 +08:00
in_addr[a].addr = lscf[l].addr;
in_addr[a].names.elts = NULL;
2004-03-16 15:10:12 +08:00
in_addr[a].default_server = lscf[l].default_server;
2003-05-20 00:39:14 +08:00
in_addr[a].core_srv_conf = cscfp[s];
2003-05-15 23:42:53 +08:00
if (ngx_http_add_names(cf, &in_addr[a], cscfp[s])
== NGX_ERROR)
{
return NGX_CONF_ERROR;
}
2003-01-09 13:36:00 +08:00
addr_found = 1;
break;
}
}
if (!addr_found) {
2003-05-15 23:42:53 +08:00
2004-01-23 17:26:18 +08:00
/*
* add the address to the addresses list that
* bound to this port
*/
2003-05-15 23:42:53 +08:00
if (ngx_http_add_address(cf, &in_port[p], &lscf[l],
cscfp[s]) == NGX_ERROR)
{
return NGX_CONF_ERROR;
}
2003-01-09 13:36:00 +08:00
}
}
}
if (!port_found) {
2003-05-15 23:42:53 +08:00
/* add the port to the in_port list */
if (!(in_port = ngx_array_push(&in_ports))) {
return NGX_CONF_ERROR;
}
2003-01-09 13:36:00 +08:00
in_port->port = lscf[l].port;
in_port->addrs.elts = NULL;
2003-01-09 13:36:00 +08:00
if (!(in_port->port_text.data = ngx_palloc(cf->pool, 7))) {
return NGX_CONF_ERROR;
}
2003-01-09 13:36:00 +08:00
in_port->port_text.len = ngx_sprintf(in_port->port_text.data,
":%d", in_port->port)
- in_port->port_text.data;
2003-05-15 23:42:53 +08:00
if (ngx_http_add_address(cf, in_port, &lscf[l], cscfp[s])
== NGX_ERROR)
{
return NGX_CONF_ERROR;
}
2003-01-09 13:36:00 +08:00
}
}
}
/* optimize the lists of ports, addresses and server names */
2003-01-28 23:56:37 +08:00
2003-01-09 13:36:00 +08:00
/* AF_INET only */
2003-05-30 22:27:59 +08:00
in_port = in_ports.elts;
2003-01-09 13:36:00 +08:00
for (p = 0; p < in_ports.nelts; p++) {
/*
* check whether all name-based servers have the same configuraiton
* as the default server, or some servers restrict the host names
*/
2003-05-15 23:42:53 +08:00
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
for (a = 0; a < in_port[p].addrs.nelts; a++) {
2003-01-09 13:36:00 +08:00
virtual_names = 0;
2003-05-30 22:27:59 +08:00
name = in_addr[a].names.elts;
2003-01-09 13:36:00 +08:00
for (n = 0; n < in_addr[a].names.nelts; n++) {
if (in_addr[a].core_srv_conf != name[n].core_srv_conf
|| name[n].core_srv_conf->restrict_host_names
!= NGX_HTTP_RESTRICT_HOST_OFF)
{
2003-01-09 13:36:00 +08:00
virtual_names = 1;
break;
}
}
2004-01-23 17:26:18 +08:00
/*
* if all name-based servers have the same configuration
* as the default server, and no servers restrict the host names
* then we do not need to check them at run-time at all
2004-01-23 17:26:18 +08:00
*/
2003-05-15 23:42:53 +08:00
2003-01-09 13:36:00 +08:00
if (!virtual_names) {
in_addr[a].names.nelts = 0;
}
}
2004-01-23 17:26:18 +08:00
/*
* if there's the binding to "*:port" then we need to bind()
* to "*:port" only and ignore the other bindings
*/
2003-05-15 23:42:53 +08:00
2003-01-09 13:36:00 +08:00
if (in_addr[a - 1].addr == INADDR_ANY) {
2003-05-15 23:42:53 +08:00
a--;
2003-01-09 13:36:00 +08:00
} else {
2003-05-15 23:42:53 +08:00
a = 0;
2003-01-09 13:36:00 +08:00
}
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
while (a < in_port[p].addrs.nelts) {
2003-01-09 13:36:00 +08:00
ls = ngx_listening_inet_stream_socket(cf, in_addr[a].addr,
in_port[p].port);
if (ls == NULL) {
return NGX_CONF_ERROR;
}
2003-01-09 13:36:00 +08:00
ls->backlog = -1;
2003-11-17 05:49:42 +08:00
#if 0
#if 0
2003-01-09 13:36:00 +08:00
ls->nonblocking = 1;
2003-11-17 05:49:42 +08:00
#else
ls->nonblocking = 0;
#endif
#endif
ls->addr_ntop = 1;
2003-01-09 13:36:00 +08:00
ls->handler = ngx_http_init_connection;
2003-07-21 05:15:59 +08:00
2003-06-11 23:28:34 +08:00
cscf = in_addr[a].core_srv_conf;
ls->pool_size = cscf->connection_pool_size;
ls->post_accept_timeout = cscf->post_accept_timeout;
2003-07-21 05:15:59 +08:00
clcf = cscf->ctx->loc_conf[ngx_http_core_module.ctx_index];
ls->log = clcf->err_log;
2003-06-11 23:28:34 +08:00
#if (WIN32)
2003-07-07 14:11:50 +08:00
iocpcf = ngx_event_get_conf(cf->cycle->conf_ctx, ngx_iocp_module);
2003-06-11 23:28:34 +08:00
if (iocpcf->acceptex_read) {
ls->post_accept_buffer_size = cscf->client_header_buffer_size;
}
#endif
2003-01-09 13:36:00 +08:00
ls->ctx = ctx;
2003-05-15 23:42:53 +08:00
if (in_port[p].addrs.nelts > 1) {
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
if (in_addr[in_port[p].addrs.nelts - 1].addr != INADDR_ANY) {
2004-01-23 17:26:18 +08:00
/*
* if this port has not the "*:port" binding then create
* the separate ngx_http_in_port_t for the all bindings
*/
2003-05-15 23:42:53 +08:00
ngx_test_null(inport,
ngx_palloc(cf->pool,
2003-07-07 14:11:50 +08:00
sizeof(ngx_http_in_port_t)),
2003-05-15 23:42:53 +08:00
NGX_CONF_ERROR);
inport->port = in_port[p].port;
inport->port_text = in_port[p].port_text;
2003-05-15 23:42:53 +08:00
/* init list of the addresses ... */
ngx_init_array(inport->addrs, cf->pool, 1,
sizeof(ngx_http_in_addr_t),
NGX_CONF_ERROR);
/* ... and set up it with the first address */
inport->addrs.nelts = 1;
inport->addrs.elts = in_port[p].addrs.elts;
ls->servers = inport;
/* prepare for the next cycle */
2003-06-12 13:54:39 +08:00
in_port[p].addrs.elts = (char *) in_port[p].addrs.elts
+ in_port[p].addrs.size;
2003-05-15 23:42:53 +08:00
in_port[p].addrs.nelts--;
in_addr = (ngx_http_in_addr_t *) in_port[p].addrs.elts;
a = 0;
continue;
2003-01-09 13:36:00 +08:00
}
}
2003-05-15 23:42:53 +08:00
ls->servers = &in_port[p];
a++;
2003-01-09 13:36:00 +08:00
}
}
2004-02-12 01:08:49 +08:00
#if (NGX_DEBUG)
{
u_char address[20];
ngx_uint_t p, a, n;
2003-05-30 22:27:59 +08:00
in_port = in_ports.elts;
2003-01-30 01:02:48 +08:00
for (p = 0; p < in_ports.nelts; p++) {
2004-02-12 01:08:49 +08:00
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, cf->log, 0,
"port: %d %08x", in_port[p].port, &in_port[p]);
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
for (a = 0; a < in_port[p].addrs.nelts; a++) {
ngx_inet_ntop(AF_INET, &in_addr[a].addr, address, 20);
ngx_log_debug3(NGX_LOG_DEBUG_HTTP, cf->log, 0,
"%s:%d %08x",
address, in_port[p].port, in_addr[a].core_srv_conf);
2003-05-30 22:27:59 +08:00
s_name = in_addr[a].names.elts;
for (n = 0; n < in_addr[a].names.nelts; n++) {
ngx_log_debug4(NGX_LOG_DEBUG_HTTP, cf->log, 0,
"%s:%d %s %08x",
address, in_port[p].port, s_name[n].name.data,
2004-02-12 01:08:49 +08:00
s_name[n].core_srv_conf);
2003-05-30 22:27:59 +08:00
}
2003-01-30 01:02:48 +08:00
}
}
}
2004-02-12 01:08:49 +08:00
#endif
2003-01-30 01:02:48 +08:00
2003-01-09 13:36:00 +08:00
return NGX_CONF_OK;
}
2004-07-19 03:11:20 +08:00
/*
* add the server address, the server names and the server core module
* configurations to the port (in_port)
*/
static ngx_int_t ngx_http_add_address(ngx_conf_t *cf,
ngx_http_in_port_t *in_port,
ngx_http_listen_t *lscf,
ngx_http_core_srv_conf_t *cscf)
{
ngx_http_in_addr_t *in_addr;
if (in_port->addrs.elts == NULL) {
if (ngx_array_init(&in_port->addrs, cf->pool, 10,
sizeof(ngx_http_in_addr_t)) == NGX_ERROR)
{
return NGX_ERROR;
}
}
if (!(in_addr = ngx_array_push(&in_port->addrs))) {
return NGX_ERROR;
}
in_addr->addr = lscf->addr;
in_addr->names.elts = NULL;
in_addr->default_server = lscf->default_server;
in_addr->core_srv_conf = cscf;
#if (NGX_DEBUG)
{
u_char text[20];
ngx_inet_ntop(AF_INET, &in_addr->addr, text, 20);
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, cf->log, 0, "address: %s:%d",
text, in_port->port);
}
#endif
return ngx_http_add_names(cf, in_addr, cscf);
}
/*
* add the server names and the server core module
* configurations to the address:port (in_addr)
*/
static ngx_int_t ngx_http_add_names(ngx_conf_t *cf,
ngx_http_in_addr_t *in_addr,
ngx_http_core_srv_conf_t *cscf)
{
ngx_uint_t i;
ngx_http_server_name_t *server_names, *name;
if (in_addr->names.elts == NULL) {
if (ngx_array_init(&in_addr->names, cf->pool, 10,
sizeof(ngx_http_server_name_t)) == NGX_ERROR)
{
return NGX_ERROR;
}
}
server_names = cscf->server_names.elts;
for (i = 0; i < cscf->server_names.nelts; i++) {
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, cf->log, 0,
"name: %s", server_names[i].name.data);
/* TODO: duplicate names can be checked here */
if (!(name = ngx_array_push(&in_addr->names))) {
return NGX_ERROR;
}
*name = server_names[i];
}
return NGX_OK;
}
2004-07-19 03:11:20 +08:00
static char *ngx_http_merge_locations(ngx_conf_t *cf,
ngx_array_t *locations,
void **loc_conf,
ngx_http_module_t *module,
ngx_uint_t ctx_index)
{
char *rv;
ngx_uint_t i;
ngx_http_core_loc_conf_t **clcfp;
clcfp = /* (ngx_http_core_loc_conf_t **) */ locations->elts;
for (i = 0; i < locations->nelts; i++) {
rv = module->merge_loc_conf(cf, loc_conf[ctx_index],
clcfp[i]->loc_conf[ctx_index]);
if (rv != NGX_CONF_OK) {
return rv;
}
rv = ngx_http_merge_locations(cf, &clcfp[i]->locations,
clcfp[i]->loc_conf, module, ctx_index);
if (rv != NGX_CONF_OK) {
return rv;
}
}
return NGX_CONF_OK;
}