Geo: fixed handling of AF_UNIX client addresses (ticket #1684).
Previously, AF_UNIX client addresses were handled as AF_INET, leading to unexpected results.
This commit is contained in:
parent
6a66ebfda3
commit
90fa22cb44
2 changed files with 26 additions and 0 deletions
|
@ -215,6 +215,13 @@ ngx_http_geo_cidr_variable(ngx_http_request_t *r, ngx_http_variable_value_t *v,
|
|||
break;
|
||||
#endif
|
||||
|
||||
#if (NGX_HAVE_UNIX_DOMAIN)
|
||||
case AF_UNIX:
|
||||
vv = (ngx_http_variable_value_t *)
|
||||
ngx_radix32tree_find(ctx->u.trees.tree, INADDR_NONE);
|
||||
break;
|
||||
#endif
|
||||
|
||||
default: /* AF_INET */
|
||||
sin = (struct sockaddr_in *) addr.sockaddr;
|
||||
inaddr = ntohl(sin->sin_addr.s_addr);
|
||||
|
@ -277,6 +284,12 @@ ngx_http_geo_range_variable(ngx_http_request_t *r, ngx_http_variable_value_t *v,
|
|||
break;
|
||||
#endif
|
||||
|
||||
#if (NGX_HAVE_UNIX_DOMAIN)
|
||||
case AF_UNIX:
|
||||
inaddr = INADDR_NONE;
|
||||
break;
|
||||
#endif
|
||||
|
||||
default: /* AF_INET */
|
||||
sin = (struct sockaddr_in *) addr.sockaddr;
|
||||
inaddr = ntohl(sin->sin_addr.s_addr);
|
||||
|
|
|
@ -206,6 +206,13 @@ ngx_stream_geo_cidr_variable(ngx_stream_session_t *s,
|
|||
break;
|
||||
#endif
|
||||
|
||||
#if (NGX_HAVE_UNIX_DOMAIN)
|
||||
case AF_UNIX:
|
||||
vv = (ngx_stream_variable_value_t *)
|
||||
ngx_radix32tree_find(ctx->u.trees.tree, INADDR_NONE);
|
||||
break;
|
||||
#endif
|
||||
|
||||
default: /* AF_INET */
|
||||
sin = (struct sockaddr_in *) addr.sockaddr;
|
||||
inaddr = ntohl(sin->sin_addr.s_addr);
|
||||
|
@ -268,6 +275,12 @@ ngx_stream_geo_range_variable(ngx_stream_session_t *s,
|
|||
break;
|
||||
#endif
|
||||
|
||||
#if (NGX_HAVE_UNIX_DOMAIN)
|
||||
case AF_UNIX:
|
||||
inaddr = INADDR_NONE;
|
||||
break;
|
||||
#endif
|
||||
|
||||
default: /* AF_INET */
|
||||
sin = (struct sockaddr_in *) addr.sockaddr;
|
||||
inaddr = ntohl(sin->sin_addr.s_addr);
|
||||
|
|
Loading…
Reference in a new issue