Welcome! Log In Create A New Profile

Advanced

[PATCH] Upstream: proxy_bind/fastcgi_bind/memcached_bind variables support

Maxim Dounin
August 09, 2010 07:42PM
# HG changeset patch
# User Maxim Dounin <mdounin@mdounin.ru>
# Date 1281397185 -14400
# Node ID 87b801d6605cdabf94551110711bc93cb147fbf8
# Parent 57dcc025db4fe59b77a1f5a68a2bc8a002ad8bd2
Upstream: proxy_bind/fastcgi_bind/memcached_bind variables support.

While here also fixed missing inheritance for "proxy_bind", "fastcgi_bind"
and "memcached_bind" directives, and added protection against duplicate
directives.

Changes since last submit: refreshed to apply cleanly to 0.8.48+.

diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c
--- a/src/http/modules/ngx_http_fastcgi_module.c
+++ b/src/http/modules/ngx_http_fastcgi_module.c
@@ -234,7 +234,7 @@ static ngx_command_t ngx_http_fastcgi_c
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_http_upstream_bind_set_slot,
NGX_HTTP_LOC_CONF_OFFSET,
- offsetof(ngx_http_fastcgi_loc_conf_t, upstream.local),
+ offsetof(ngx_http_fastcgi_loc_conf_t, upstream),
NULL },

{ ngx_string("fastcgi_connect_timeout"),
@@ -1966,6 +1966,8 @@ ngx_http_fastcgi_create_loc_conf(ngx_con
* conf->upstream.location = NULL;
* conf->upstream.store_lengths = NULL;
* conf->upstream.store_values = NULL;
+ * conf->upstream.local = NULL;
+ * conf->upstream.local_value = NULL;
*
* conf->index.len = { 0, NULL };
*/
@@ -2266,6 +2268,14 @@ ngx_http_fastcgi_merge_loc_conf(ngx_conf
conf->upstream.upstream = prev->upstream.upstream;
}

+ if (conf->upstream.local == NULL) {
+ conf->upstream.local = prev->upstream.local;
+
+ if (conf->upstream.local_value == NULL) {
+ conf->upstream.local_value = prev->upstream.local_value;
+ }
+ }
+
if (conf->fastcgi_lengths == NULL) {
conf->fastcgi_lengths = prev->fastcgi_lengths;
conf->fastcgi_values = prev->fastcgi_values;
diff --git a/src/http/modules/ngx_http_memcached_module.c b/src/http/modules/ngx_http_memcached_module.c
--- a/src/http/modules/ngx_http_memcached_module.c
+++ b/src/http/modules/ngx_http_memcached_module.c
@@ -62,7 +62,7 @@ static ngx_command_t ngx_http_memcached
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_http_upstream_bind_set_slot,
NGX_HTTP_LOC_CONF_OFFSET,
- offsetof(ngx_http_memcached_loc_conf_t, upstream.local),
+ offsetof(ngx_http_memcached_loc_conf_t, upstream),
NULL },

{ ngx_string("memcached_connect_timeout"),
@@ -510,6 +510,8 @@ ngx_http_memcached_create_loc_conf(ngx_c
* conf->upstream.temp_path = NULL;
* conf->upstream.uri = { 0, NULL };
* conf->upstream.location = NULL;
+ * conf->upstream.local = NULL;
+ * conf->upstream.local_value = NULL;
*/

conf->upstream.connect_timeout = NGX_CONF_UNSET_MSEC;
@@ -572,6 +574,14 @@ ngx_http_memcached_merge_loc_conf(ngx_co
conf->upstream.upstream = prev->upstream.upstream;
}

+ if (conf->upstream.local == NULL) {
+ conf->upstream.local = prev->upstream.local;
+
+ if (conf->upstream.local_value == NULL) {
+ conf->upstream.local_value = prev->upstream.local_value;
+ }
+ }
+
if (conf->index == NGX_CONF_UNSET) {
conf->index = prev->index;
}
diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c
--- a/src/http/modules/ngx_http_proxy_module.c
+++ b/src/http/modules/ngx_http_proxy_module.c
@@ -208,7 +208,7 @@ static ngx_command_t ngx_http_proxy_com
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_http_upstream_bind_set_slot,
NGX_HTTP_LOC_CONF_OFFSET,
- offsetof(ngx_http_proxy_loc_conf_t, upstream.local),
+ offsetof(ngx_http_proxy_loc_conf_t, upstream),
NULL },

{ ngx_string("proxy_connect_timeout"),
@@ -1651,6 +1651,8 @@ ngx_http_proxy_create_loc_conf(ngx_conf_
* conf->upstream.location = NULL;
* conf->upstream.store_lengths = NULL;
* conf->upstream.store_values = NULL;
+ * conf->upstream.local = NULL;
+ * conf->upstream.local_value = NULL;
*
* conf->method = NULL;
* conf->headers_source = NULL;
@@ -2030,6 +2032,14 @@ ngx_http_proxy_merge_loc_conf(ngx_conf_t
}
}

+ if (conf->upstream.local == NULL) {
+ conf->upstream.local = prev->upstream.local;
+
+ if (conf->upstream.local_value == NULL) {
+ conf->upstream.local_value = prev->upstream.local_value;
+ }
+ }
+
if (conf->body_source.data == NULL) {
conf->body_source = prev->body_source;
conf->body_set_len = prev->body_set_len;
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h
--- a/src/http/ngx_http.h
+++ b/src/http/ngx_http.h
@@ -26,11 +26,11 @@ typedef u_char *(*ngx_http_log_handler_p

#include <ngx_http_variables.h>
#include <ngx_http_request.h>
+#include <ngx_http_script.h>
#include <ngx_http_upstream.h>
#include <ngx_http_upstream_round_robin.h>
#include <ngx_http_config.h>
#include <ngx_http_busy_lock.h>
-#include <ngx_http_script.h>
#include <ngx_http_core_module.h>

#if (NGX_HTTP_CACHE)
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -126,6 +126,9 @@ static char *ngx_http_upstream(ngx_conf_
static char *ngx_http_upstream_server(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);

+static ngx_addr_t *ngx_http_upstream_get_local(ngx_http_request_t *r,
+ ngx_http_complex_value_t *cv, ngx_addr_t *addr);
+
static void *ngx_http_upstream_create_main_conf(ngx_conf_t *cf);
static char *ngx_http_upstream_init_main_conf(ngx_conf_t *cf, void *conf);

@@ -490,7 +493,8 @@ ngx_http_upstream_init_request(ngx_http_
return;
}

- u->peer.local = u->conf->local;
+ u->peer.local = ngx_http_upstream_get_local(r, u->conf->local_value,
+ u->conf->local);

clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);

@@ -4293,26 +4297,51 @@ char *
ngx_http_upstream_bind_set_slot(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf)
{
- char *p = conf;
-
- ngx_int_t rc;
- ngx_str_t *value;
- ngx_addr_t **paddr;
-
- paddr = (ngx_addr_t **) (p + cmd->offset);
-
- *paddr = ngx_palloc(cf->pool, sizeof(ngx_addr_t));
- if (*paddr == NULL) {
+ ngx_http_upstream_conf_t *upstream = conf;
+
+ ngx_int_t rc;
+ ngx_str_t *value;
+ ngx_http_complex_value_t cv;
+ ngx_http_compile_complex_value_t ccv;
+
+ if (upstream->local != NULL || upstream->local_value != NULL) {
+ return "is duplicate";
+ }
+
+ value = cf->args->elts;
+
+ ngx_memzero(&ccv, sizeof(ngx_http_compile_complex_value_t));
+
+ ccv.cf = cf;
+ ccv.value = &value[1];
+ ccv.complex_value = &cv;
+
+ if (ngx_http_compile_complex_value(&ccv) != NGX_OK) {
return NGX_CONF_ERROR;
}

- value = cf->args->elts;
-
- rc = ngx_parse_addr(cf->pool, *paddr, value[1].data, value[1].len);
+ if (cv.lengths != NULL) {
+ upstream->local_value = ngx_palloc(cf->pool,
+ sizeof(ngx_http_complex_value_t));
+ if (upstream->local_value == NULL) {
+ return NGX_CONF_ERROR;
+ }
+
+ *upstream->local_value = cv;
+
+ return NGX_CONF_OK;
+ }
+
+ upstream->local = ngx_palloc(cf->pool, sizeof(ngx_addr_t));
+ if (upstream->local == NULL) {
+ return NGX_CONF_ERROR;
+ }
+
+ rc = ngx_parse_addr(cf->pool, upstream->local, value[1].data, value[1].len);

switch (rc) {
case NGX_OK:
- (*paddr)->name = value[1];
+ upstream->local->name = value[1];
return NGX_CONF_OK;

case NGX_DECLINED:
@@ -4324,6 +4353,49 @@ ngx_http_upstream_bind_set_slot(ngx_conf
}


+static ngx_addr_t *
+ngx_http_upstream_get_local(ngx_http_request_t *r,
+ ngx_http_complex_value_t *cv, ngx_addr_t *addr)
+{
+ ngx_int_t rc;
+ ngx_str_t val;
+ ngx_addr_t *local;
+
+ if (cv == NULL) {
+ return addr;
+ }
+
+ if (ngx_http_complex_value(r, cv, &val) != NGX_OK) {
+ return NULL;
+ }
+
+ if (val.len == 0) {
+ return NULL;
+ }
+
+ local = ngx_palloc(r->pool, sizeof(ngx_addr_t));
+ if (local == NULL) {
+ return NULL;
+ }
+
+ rc = ngx_parse_addr(r->pool, local, val.data, val.len);
+
+ switch (rc) {
+ case NGX_OK:
+ local->name = val;
+ return local;
+
+ case NGX_DECLINED:
+ ngx_log_error(NGX_LOG_WARN, r->connection->log, 0,
+ "invalid local address \"%V\"", &val);
+ return NULL;
+
+ default:
+ return NULL;
+ }
+}
+
+
ngx_int_t
ngx_http_upstream_hide_headers_hash(ngx_conf_t *cf,
ngx_http_upstream_conf_t *conf, ngx_http_upstream_conf_t *prev,
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h
--- a/src/http/ngx_http_upstream.h
+++ b/src/http/ngx_http_upstream.h
@@ -154,6 +154,7 @@ typedef struct {
ngx_array_t *pass_headers;

ngx_addr_t *local;
+ ngx_http_complex_value_t *local_value;

#if (NGX_HTTP_CACHE)
ngx_shm_zone_t *cache;

_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[PATCH] Upstream: proxy_bind/fastcgi_bind/memcached_bind variables support

Maxim Dounin 2812 August 09, 2010 07:42PM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 305
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready