2005-02-04 03:33:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) Igor Sysoev
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
#include <ngx_http.h>
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2005-02-16 21:40:36 +08:00
|
|
|
ngx_radix_tree_t *tree;
|
|
|
|
ngx_pool_t *pool;
|
|
|
|
ngx_array_t values;
|
2005-02-04 03:33:37 +08:00
|
|
|
} ngx_http_geo_conf_t;
|
|
|
|
|
|
|
|
|
|
|
|
static char *ngx_http_geo_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
|
|
|
|
static char *ngx_http_geo(ngx_conf_t *cf, ngx_command_t *dummy, void *conf);
|
|
|
|
|
|
|
|
|
|
|
|
static ngx_command_t ngx_http_geo_commands[] = {
|
|
|
|
|
|
|
|
{ ngx_string("geo"),
|
|
|
|
NGX_HTTP_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_TAKE1,
|
|
|
|
ngx_http_geo_block,
|
|
|
|
NGX_HTTP_MAIN_CONF_OFFSET,
|
|
|
|
0,
|
|
|
|
NULL },
|
|
|
|
|
|
|
|
ngx_null_command
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static ngx_http_module_t ngx_http_geo_module_ctx = {
|
nginx-0.1.29-RELEASE import
*) Feature: the ngx_http_ssi_module supports "include virtual" command.
*) Feature: the ngx_http_ssi_module supports the condition command like
'if expr="$NAME"' and "else" and "endif" commands. Only one nested
level is supported.
*) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and
DATE_GMT variables and "config timefmt" command.
*) Feature: the "ssi_ignore_recycled_buffers" directive.
*) Bugfix: the "echo" command did not show the default value for the
empty QUERY_STRING variable.
*) Change: the ngx_http_proxy_module was rewritten.
*) Feature: the "proxy_redirect", "proxy_pass_request_headers",
"proxy_pass_request_body", and "proxy_method" directives.
*) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
canceled and must be replaced with the proxy_set_header directive.
*) Change: the "proxy_preserve_host" is canceled and must be replaced
with the "proxy_set_header Host $host" and the "proxy_redirect off"
directives, the "proxy_set_header Host $host:$proxy_port" directive
and the appropriate proxy_redirect directives.
*) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
with the "proxy_set_header X-Real-IP $remote_addr" directive.
*) Change: the "proxy_add_x_forwarded_for" is canceled and must be
replaced with
the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
directive.
*) Change: the "proxy_set_x_url" is canceled and must be replaced with
the "proxy_set_header X-URL http://$host:$server_port$request_uri"
directive.
*) Feature: the "fastcgi_param" directive.
*) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
directive are canceled and must be replaced with the fastcgi_param
directives.
*) Feature: the "index" directive can use the variables.
*) Feature: the "index" directive can be used at http and server levels.
*) Change: the last index only in the "index" directive can be absolute.
*) Feature: the "rewrite" directive can use the variables.
*) Feature: the "internal" directive.
*) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
*) Change: nginx now passes the invalid lines in a client request
headers or a backend response header.
*) Bugfix: if the backend did not transfer response for a long time and
the "send_timeout" was less than "proxy_read_timeout", then nginx
returned the 408 response.
*) Bugfix: the segmentation fault was occurred if the backend sent an
invalid line in response header; the bug had appeared in 0.1.26.
*) Bugfix: the segmentation fault may occurred in FastCGI fault
tolerance configuration.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" and "Cache-Control" headers.
*) Bugfix: nginx did not take into account trailing dot in "Host"
header line.
*) Bugfix: the ngx_http_auth_module did not work under Linux.
*) Bugfix: the rewrite directive worked incorrectly, if the arguments
were in a request.
*) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
|
|
|
NULL, /* preconfiguration */
|
|
|
|
NULL, /* postconfiguration */
|
2005-02-04 03:33:37 +08:00
|
|
|
|
|
|
|
NULL, /* create main configuration */
|
|
|
|
NULL, /* init main configuration */
|
|
|
|
|
|
|
|
NULL, /* create server configuration */
|
|
|
|
NULL, /* merge server configuration */
|
|
|
|
|
|
|
|
NULL, /* create location configuration */
|
|
|
|
NULL /* merge location configuration */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ngx_module_t ngx_http_geo_module = {
|
nginx-0.1.29-RELEASE import
*) Feature: the ngx_http_ssi_module supports "include virtual" command.
*) Feature: the ngx_http_ssi_module supports the condition command like
'if expr="$NAME"' and "else" and "endif" commands. Only one nested
level is supported.
*) Feature: the ngx_http_ssi_module supports the DATE_LOCAL and
DATE_GMT variables and "config timefmt" command.
*) Feature: the "ssi_ignore_recycled_buffers" directive.
*) Bugfix: the "echo" command did not show the default value for the
empty QUERY_STRING variable.
*) Change: the ngx_http_proxy_module was rewritten.
*) Feature: the "proxy_redirect", "proxy_pass_request_headers",
"proxy_pass_request_body", and "proxy_method" directives.
*) Feature: the "proxy_set_header" directive. The "proxy_x_var" was
canceled and must be replaced with the proxy_set_header directive.
*) Change: the "proxy_preserve_host" is canceled and must be replaced
with the "proxy_set_header Host $host" and the "proxy_redirect off"
directives, the "proxy_set_header Host $host:$proxy_port" directive
and the appropriate proxy_redirect directives.
*) Change: the "proxy_set_x_real_ip" is canceled and must be replaced
with the "proxy_set_header X-Real-IP $remote_addr" directive.
*) Change: the "proxy_add_x_forwarded_for" is canceled and must be
replaced with
the "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for"
directive.
*) Change: the "proxy_set_x_url" is canceled and must be replaced with
the "proxy_set_header X-URL http://$host:$server_port$request_uri"
directive.
*) Feature: the "fastcgi_param" directive.
*) Change: the "fastcgi_root", "fastcgi_set_var" and "fastcgi_params"
directive are canceled and must be replaced with the fastcgi_param
directives.
*) Feature: the "index" directive can use the variables.
*) Feature: the "index" directive can be used at http and server levels.
*) Change: the last index only in the "index" directive can be absolute.
*) Feature: the "rewrite" directive can use the variables.
*) Feature: the "internal" directive.
*) Feature: the CONTENT_LENGTH, CONTENT_TYPE, REMOTE_PORT, SERVER_ADDR,
SERVER_PORT, SERVER_PROTOCOL, DOCUMENT_ROOT, SERVER_NAME,
REQUEST_METHOD, REQUEST_URI, and REMOTE_USER variables.
*) Change: nginx now passes the invalid lines in a client request
headers or a backend response header.
*) Bugfix: if the backend did not transfer response for a long time and
the "send_timeout" was less than "proxy_read_timeout", then nginx
returned the 408 response.
*) Bugfix: the segmentation fault was occurred if the backend sent an
invalid line in response header; the bug had appeared in 0.1.26.
*) Bugfix: the segmentation fault may occurred in FastCGI fault
tolerance configuration.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" and "Cache-Control" headers.
*) Bugfix: nginx did not take into account trailing dot in "Host"
header line.
*) Bugfix: the ngx_http_auth_module did not work under Linux.
*) Bugfix: the rewrite directive worked incorrectly, if the arguments
were in a request.
*) Bugfix: nginx could not be built on MacOS X.
2005-05-12 22:58:06 +08:00
|
|
|
NGX_MODULE_V1,
|
2005-02-04 03:33:37 +08:00
|
|
|
&ngx_http_geo_module_ctx, /* module context */
|
|
|
|
ngx_http_geo_commands, /* module directives */
|
|
|
|
NGX_HTTP_MODULE, /* module type */
|
2005-09-08 22:36:09 +08:00
|
|
|
NULL, /* init master */
|
2005-02-04 03:33:37 +08:00
|
|
|
NULL, /* init module */
|
2005-09-08 22:36:09 +08:00
|
|
|
NULL, /* init process */
|
|
|
|
NULL, /* init thread */
|
|
|
|
NULL, /* exit thread */
|
|
|
|
NULL, /* exit process */
|
|
|
|
NULL, /* exit master */
|
|
|
|
NGX_MODULE_V1_PADDING
|
2005-02-04 03:33:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static ngx_http_variable_value_t ngx_http_geo_null_value =
|
|
|
|
{ 0, ngx_string("0") };
|
|
|
|
|
|
|
|
|
|
|
|
/* AF_INET only */
|
|
|
|
|
2005-02-16 21:40:36 +08:00
|
|
|
static ngx_http_variable_value_t *
|
2005-03-19 20:38:37 +08:00
|
|
|
ngx_http_geo_variable(ngx_http_request_t *r, uintptr_t data)
|
2005-02-04 03:33:37 +08:00
|
|
|
{
|
2005-03-19 20:38:37 +08:00
|
|
|
ngx_radix_tree_t *tree = (ngx_radix_tree_t *) data;
|
2005-02-04 03:33:37 +08:00
|
|
|
|
2005-02-16 21:40:36 +08:00
|
|
|
struct sockaddr_in *sin;
|
|
|
|
ngx_http_variable_value_t *var;
|
2005-02-04 03:33:37 +08:00
|
|
|
|
|
|
|
sin = (struct sockaddr_in *) r->connection->sockaddr;
|
|
|
|
|
2005-02-16 21:40:36 +08:00
|
|
|
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
|
|
|
|
"http geo started");
|
|
|
|
|
|
|
|
var = (ngx_http_variable_value_t *)
|
2005-02-04 03:33:37 +08:00
|
|
|
ngx_radix32tree_find(tree, ntohl(sin->sin_addr.s_addr));
|
2005-02-16 21:40:36 +08:00
|
|
|
|
|
|
|
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
|
|
|
|
"http geo: %V %V", &r->connection->addr_text, &var->text);
|
|
|
|
|
|
|
|
return var;
|
2005-02-04 03:33:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-16 21:40:36 +08:00
|
|
|
static char *
|
|
|
|
ngx_http_geo_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
2005-02-04 03:33:37 +08:00
|
|
|
{
|
|
|
|
char *rv;
|
2005-03-19 20:38:37 +08:00
|
|
|
ngx_str_t *value, name;
|
2005-02-04 03:33:37 +08:00
|
|
|
ngx_conf_t save;
|
|
|
|
ngx_pool_t *pool;
|
|
|
|
ngx_radix_tree_t *tree;
|
|
|
|
ngx_http_geo_conf_t geo;
|
|
|
|
ngx_http_variable_t *var;
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
value = cf->args->elts;
|
|
|
|
|
|
|
|
name = value[1];
|
|
|
|
|
|
|
|
if (name.data[0] != '$') {
|
|
|
|
ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
|
|
|
|
"\"%V\" variable name should start with '$'",
|
|
|
|
&value[1]);
|
|
|
|
} else {
|
|
|
|
name.len--;
|
|
|
|
name.data++;
|
2005-02-04 03:33:37 +08:00
|
|
|
}
|
|
|
|
|
2005-09-30 22:41:25 +08:00
|
|
|
var = ngx_http_add_variable(cf, &name, NGX_HTTP_VAR_CHANGABLE);
|
2005-03-19 20:38:37 +08:00
|
|
|
if (var == NULL) {
|
2005-02-04 03:33:37 +08:00
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
tree = ngx_radix_tree_create(cf->pool, -1);
|
|
|
|
if (tree == NULL) {
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
2005-02-04 03:33:37 +08:00
|
|
|
|
|
|
|
var->handler = ngx_http_geo_variable;
|
2005-03-19 20:38:37 +08:00
|
|
|
var->data = (uintptr_t) tree;
|
2005-02-04 03:33:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* create the temporary pool of a huge initial size
|
|
|
|
* to process quickly a large number of geo lines
|
|
|
|
*/
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
pool = ngx_create_pool(512 * 1024, cf->log);
|
|
|
|
if (pool == NULL) {
|
2005-02-04 03:33:37 +08:00
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_array_init(&geo.values, pool, 512,
|
|
|
|
sizeof(ngx_http_variable_value_t *)) == NGX_ERROR)
|
|
|
|
{
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
geo.tree = tree;
|
|
|
|
geo.pool = cf->pool;
|
|
|
|
|
|
|
|
save = *cf;
|
|
|
|
cf->pool = pool;
|
|
|
|
cf->ctx = &geo;
|
|
|
|
cf->handler = ngx_http_geo;
|
|
|
|
cf->handler_conf = conf;
|
|
|
|
|
|
|
|
rv = ngx_conf_parse(cf, NULL);
|
|
|
|
|
|
|
|
*cf = save;
|
|
|
|
|
|
|
|
ngx_destroy_pool(pool);
|
|
|
|
|
|
|
|
if (ngx_radix32tree_find(tree, 0) != NGX_RADIX_NO_VALUE) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_radix32tree_insert(tree, 0, 0,
|
|
|
|
(uintptr_t) &ngx_http_geo_null_value) == NGX_ERROR)
|
|
|
|
{
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* AF_INET only */
|
|
|
|
|
2005-02-16 21:40:36 +08:00
|
|
|
static char *
|
|
|
|
ngx_http_geo(ngx_conf_t *cf, ngx_command_t *dummy, void *conf)
|
2005-02-04 03:33:37 +08:00
|
|
|
{
|
|
|
|
ngx_int_t rc, n;
|
|
|
|
ngx_str_t *value, file;
|
2005-10-04 18:38:53 +08:00
|
|
|
ngx_uint_t i;
|
2005-02-04 03:33:37 +08:00
|
|
|
ngx_inet_cidr_t cidrin;
|
|
|
|
ngx_http_geo_conf_t *geo;
|
2005-10-04 18:38:53 +08:00
|
|
|
ngx_http_variable_value_t *var, *old, **v;
|
2005-02-04 03:33:37 +08:00
|
|
|
|
|
|
|
geo = cf->ctx;
|
|
|
|
|
|
|
|
if (cf->args->nelts != 2) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"invalid number of the geo parameters");
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
value = cf->args->elts;
|
|
|
|
|
|
|
|
if (ngx_strcmp(value[0].data, "include") == 0) {
|
|
|
|
file = value[1];
|
|
|
|
|
|
|
|
if (ngx_conf_full_name(cf->cycle, &file) == NGX_ERROR){
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data);
|
|
|
|
|
|
|
|
return ngx_conf_parse(cf, &file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_strcmp(value[0].data, "default") == 0) {
|
|
|
|
cidrin.addr = 0;
|
|
|
|
cidrin.mask = 0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (ngx_ptocidr(&value[0], &cidrin) == NGX_ERROR) {
|
|
|
|
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
|
|
|
|
"invalid parameter \"%V\"", &value[0]);
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
cidrin.addr = ntohl(cidrin.addr);
|
|
|
|
cidrin.mask = ntohl(cidrin.mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
n = ngx_atoi(value[1].data, value[1].len);
|
|
|
|
|
|
|
|
var = NULL;
|
|
|
|
v = geo->values.elts;
|
|
|
|
|
|
|
|
if (n == NGX_ERROR) {
|
|
|
|
for (i = 0; i < geo->values.nelts; i++) {
|
2005-03-19 20:38:37 +08:00
|
|
|
if (v[i]->text.len != value[1].len) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_strncmp(value[1].data, v[i]->text.data, value[1].len) == 0)
|
|
|
|
{
|
2005-02-04 03:33:37 +08:00
|
|
|
var = v[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < geo->values.nelts; i++) {
|
|
|
|
if (v[i]->value == (ngx_uint_t) n) {
|
|
|
|
var = v[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
if (var == NULL) {
|
2005-02-04 03:33:37 +08:00
|
|
|
var = ngx_palloc(geo->pool, sizeof(ngx_http_variable_value_t));
|
|
|
|
if (var == NULL) {
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
var->text.len = value[1].len;
|
2005-03-19 20:38:37 +08:00
|
|
|
var->text.data = ngx_pstrdup(geo->pool, &value[1]);
|
|
|
|
if (var->text.data == NULL) {
|
2005-02-04 03:33:37 +08:00
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
var->value = (n == NGX_ERROR) ? 0 : n;
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
v = ngx_array_push(&geo->values);
|
|
|
|
if (v == NULL) {
|
2005-02-04 03:33:37 +08:00
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
*v = var;
|
|
|
|
}
|
|
|
|
|
2005-10-04 18:38:53 +08:00
|
|
|
for (i = 2; i; i--) {
|
|
|
|
rc = ngx_radix32tree_insert(geo->tree, cidrin.addr, cidrin.mask,
|
|
|
|
(uintptr_t) var);
|
|
|
|
if (rc == NGX_OK) {
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|
2005-02-04 03:33:37 +08:00
|
|
|
|
2005-10-04 18:38:53 +08:00
|
|
|
if (rc == NGX_ERROR) {
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rc == NGX_BUSY */
|
|
|
|
|
|
|
|
old = (ngx_http_variable_value_t *)
|
|
|
|
ngx_radix32tree_find(geo->tree, cidrin.addr & cidrin.mask);
|
|
|
|
|
|
|
|
ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
|
|
|
|
"duplicate parameter \"%V\", value: \"%V\", "
|
|
|
|
"old value: \"%V\"",
|
|
|
|
&value[0], &var->text, &old->text);
|
|
|
|
|
|
|
|
rc = ngx_radix32tree_delete(geo->tree, cidrin.addr, cidrin.mask);
|
|
|
|
|
|
|
|
if (rc == NGX_ERROR) {
|
|
|
|
return NGX_CONF_ERROR;
|
|
|
|
}
|
2005-02-04 03:33:37 +08:00
|
|
|
}
|
|
|
|
|
2005-10-04 18:38:53 +08:00
|
|
|
return NGX_CONF_ERROR;
|
2005-02-04 03:33:37 +08:00
|
|
|
}
|