2002-12-15 14:25:09 +08:00
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
#include <ngx_config.h>
|
2003-06-03 23:42:58 +08:00
|
|
|
#include <ngx_core.h>
|
2002-12-15 14:25:09 +08:00
|
|
|
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
static size_t ngx_inet6_ntop(u_char *p, u_char *text, size_t len);
|
|
|
|
#endif
|
2008-08-22 21:36:56 +08:00
|
|
|
static ngx_int_t ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u);
|
|
|
|
static ngx_int_t ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u);
|
2009-02-21 15:02:02 +08:00
|
|
|
static ngx_int_t ngx_parse_inet6_url(ngx_pool_t *pool, ngx_url_t *u);
|
2008-08-22 21:36:56 +08:00
|
|
|
|
|
|
|
|
2007-11-24 00:59:24 +08:00
|
|
|
in_addr_t
|
|
|
|
ngx_inet_addr(u_char *text, size_t len)
|
|
|
|
{
|
|
|
|
u_char *p, c;
|
|
|
|
in_addr_t addr;
|
|
|
|
ngx_uint_t octet, n;
|
|
|
|
|
|
|
|
addr = 0;
|
|
|
|
octet = 0;
|
|
|
|
n = 0;
|
|
|
|
|
|
|
|
for (p = text; p < text + len; p++) {
|
|
|
|
|
|
|
|
c = *p;
|
|
|
|
|
|
|
|
if (c >= '0' && c <= '9') {
|
|
|
|
octet = octet * 10 + (c - '0');
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '.' && octet < 256) {
|
|
|
|
addr = (addr << 8) + octet;
|
|
|
|
octet = 0;
|
|
|
|
n++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return INADDR_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n != 3) {
|
|
|
|
return INADDR_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (octet < 256) {
|
|
|
|
addr = (addr << 8) + octet;
|
|
|
|
return htonl(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return INADDR_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
size_t
|
2009-02-21 15:02:02 +08:00
|
|
|
ngx_sock_ntop(struct sockaddr *sa, u_char *text, size_t len, ngx_uint_t port)
|
2003-01-30 15:28:09 +08:00
|
|
|
{
|
2009-02-21 15:02:02 +08:00
|
|
|
u_char *p;
|
|
|
|
struct sockaddr_in *sin;
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
size_t n;
|
|
|
|
struct sockaddr_in6 *sin6;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (sa->sa_family) {
|
2003-01-30 15:28:09 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
case AF_INET:
|
2004-03-16 21:35:20 +08:00
|
|
|
|
2008-08-22 02:47:23 +08:00
|
|
|
sin = (struct sockaddr_in *) sa;
|
|
|
|
p = (u_char *) &sin->sin_addr;
|
2003-01-30 15:28:09 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
if (port) {
|
|
|
|
p = ngx_snprintf(text, len, "%ud.%ud.%ud.%ud:%d",
|
|
|
|
p[0], p[1], p[2], p[3], ntohs(sin->sin_port));
|
|
|
|
} else {
|
|
|
|
p = ngx_snprintf(text, len, "%ud.%ud.%ud.%ud",
|
|
|
|
p[0], p[1], p[2], p[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (p - text);
|
|
|
|
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
|
|
|
|
case AF_INET6:
|
|
|
|
|
|
|
|
sin6 = (struct sockaddr_in6 *) sa;
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
|
|
|
|
if (port) {
|
|
|
|
text[n++] = '[';
|
|
|
|
}
|
2004-03-16 21:35:20 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
n = ngx_inet6_ntop((u_char *) &sin6->sin6_addr, &text[n], len);
|
|
|
|
|
|
|
|
if (port) {
|
|
|
|
n = ngx_sprintf(&text[1 + n], "]:%d",
|
|
|
|
ntohs(sin6->sin6_port)) - text;
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
2003-01-30 15:28:09 +08:00
|
|
|
}
|
|
|
|
|
2008-01-04 19:54:55 +08:00
|
|
|
|
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
|
|
|
size_t
|
|
|
|
ngx_inet_ntop(int family, void *addr, u_char *text, size_t len)
|
2002-12-15 14:25:09 +08:00
|
|
|
{
|
2008-08-22 02:47:23 +08:00
|
|
|
u_char *p;
|
2004-03-16 21:35:20 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
switch (family) {
|
|
|
|
|
|
|
|
case AF_INET:
|
2002-12-15 14:25:09 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
p = addr;
|
2004-03-16 21:35:20 +08:00
|
|
|
|
2008-08-22 02:47:23 +08:00
|
|
|
return ngx_snprintf(text, len, "%ud.%ud.%ud.%ud",
|
|
|
|
p[0], p[1], p[2], p[3])
|
|
|
|
- text;
|
2009-02-21 15:02:02 +08:00
|
|
|
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
|
|
|
|
case AF_INET6:
|
|
|
|
return ngx_inet6_ntop(addr, text, len);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
ngx_inet6_ntop(u_char *p, u_char *text, size_t len)
|
|
|
|
{
|
|
|
|
u_char *dst;
|
|
|
|
size_t max, n;
|
|
|
|
ngx_uint_t i, zero, last;
|
|
|
|
|
|
|
|
if (len < NGX_INET6_ADDRSTRLEN) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
zero = (ngx_uint_t) -1;
|
|
|
|
last = (ngx_uint_t) -1;
|
|
|
|
max = 1;
|
|
|
|
n = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i += 2) {
|
|
|
|
|
|
|
|
if (p[i] || p[i + 1]) {
|
|
|
|
|
|
|
|
if (max < n) {
|
|
|
|
zero = last;
|
|
|
|
max = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n++ == 0) {
|
|
|
|
last = i;
|
|
|
|
}
|
2004-03-16 21:35:20 +08:00
|
|
|
}
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
if (max < n) {
|
|
|
|
zero = last;
|
|
|
|
max = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
dst = text;
|
|
|
|
n = 16;
|
|
|
|
|
|
|
|
if (zero == 0) {
|
|
|
|
|
|
|
|
if ((max == 5 && p[10] == 0xff && p[11] == 0xff)
|
|
|
|
|| (max == 6)
|
|
|
|
|| (max == 7 && p[14] != 0 && p[15] != 1))
|
|
|
|
{
|
|
|
|
n = 12;
|
|
|
|
}
|
|
|
|
|
|
|
|
*dst++ = ':';
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < n; i += 2) {
|
|
|
|
|
|
|
|
if (i == zero) {
|
|
|
|
*dst++ = ':';
|
|
|
|
i += (max - 1) * 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
dst = ngx_sprintf(dst, "%uxi", p[i] * 256 + p[i + 1]);
|
|
|
|
|
|
|
|
if (i < 14) {
|
|
|
|
*dst++ = ':';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n == 12) {
|
|
|
|
dst = ngx_sprintf(dst, "%ud.%ud.%ud.%ud", p[12], p[13], p[14], p[15]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return dst - text;
|
2008-01-04 19:54:55 +08:00
|
|
|
}
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
#endif
|
|
|
|
|
2008-01-04 19:54:55 +08:00
|
|
|
|
2004-05-25 23:28:46 +08:00
|
|
|
/* AF_INET only */
|
|
|
|
|
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_int_t
|
2009-02-24 22:01:40 +08:00
|
|
|
ngx_ptocidr(ngx_str_t *text, ngx_cidr_t *cidr)
|
2004-05-25 23:28:46 +08:00
|
|
|
{
|
2009-02-24 22:01:40 +08:00
|
|
|
u_char *addr, *mask, *last;
|
|
|
|
ngx_int_t shift;
|
2004-05-25 23:28:46 +08:00
|
|
|
|
2008-08-26 22:19:37 +08:00
|
|
|
addr = text->data;
|
|
|
|
last = addr + text->len;
|
2004-05-25 23:28:46 +08:00
|
|
|
|
2008-08-26 22:19:37 +08:00
|
|
|
mask = ngx_strlchr(addr, last, '/');
|
2004-05-25 23:28:46 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
cidr->u.in.addr = ngx_inet_addr(addr, (mask ? mask : last) - addr);
|
2004-05-25 23:28:46 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
if (cidr->u.in.addr == INADDR_NONE) {
|
2004-05-25 23:28:46 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2008-08-26 22:19:37 +08:00
|
|
|
if (mask == NULL) {
|
2009-02-24 22:01:40 +08:00
|
|
|
cidr->family = AF_INET;
|
|
|
|
cidr->u.in.mask = 0xffffffff;
|
2008-08-26 22:19:37 +08:00
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
mask++;
|
|
|
|
|
|
|
|
shift = ngx_atoi(mask, last - mask);
|
|
|
|
if (shift == NGX_ERROR) {
|
2004-05-25 23:28:46 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
cidr->family = AF_INET;
|
|
|
|
|
2008-08-26 22:19:37 +08:00
|
|
|
if (shift == 0) {
|
2004-06-25 00:07:04 +08:00
|
|
|
|
|
|
|
/* the x86 compilers use the shl instruction that shifts by modulo 32 */
|
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
cidr->u.in.mask = 0;
|
2008-08-26 22:19:37 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
if (cidr->u.in.addr == 0) {
|
2008-08-26 22:19:37 +08:00
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_DONE;
|
2004-06-25 00:07:04 +08:00
|
|
|
}
|
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
cidr->u.in.mask = htonl((ngx_uint_t) (0 - (1 << (32 - shift))));
|
2004-06-25 00:07:04 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
if (cidr->u.in.addr == (cidr->u.in.addr & cidr->u.in.mask)) {
|
2007-08-10 21:13:28 +08:00
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
cidr->u.in.addr &= cidr->u.in.mask;
|
2007-08-10 21:13:28 +08:00
|
|
|
|
|
|
|
return NGX_DONE;
|
2004-05-25 23:28:46 +08:00
|
|
|
}
|
2004-09-14 23:55:24 +08:00
|
|
|
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
ngx_int_t
|
2007-10-08 16:55:12 +08:00
|
|
|
ngx_parse_url(ngx_pool_t *pool, ngx_url_t *u)
|
2006-05-23 22:54:58 +08:00
|
|
|
{
|
2008-08-22 21:36:56 +08:00
|
|
|
u_char *p;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
|
|
|
p = u->url.data;
|
|
|
|
|
2007-02-15 02:51:19 +08:00
|
|
|
if (ngx_strncasecmp(p, (u_char *) "unix:", 5) == 0) {
|
2008-08-22 21:36:56 +08:00
|
|
|
return ngx_parse_unix_domain_url(pool, u);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((p[0] == ':' || p[0] == '/') && !u->listen) {
|
|
|
|
u->err = "invalid host";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
if (p[0] == '[') {
|
|
|
|
return ngx_parse_inet6_url(pool, u);
|
|
|
|
}
|
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
return ngx_parse_inet_url(pool, u);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static ngx_int_t
|
|
|
|
ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u)
|
|
|
|
{
|
2006-05-23 22:54:58 +08:00
|
|
|
#if (NGX_HAVE_UNIX_DOMAIN)
|
2008-08-26 22:24:14 +08:00
|
|
|
u_char *path, *uri, *last;
|
2008-08-22 21:36:56 +08:00
|
|
|
size_t len;
|
|
|
|
struct sockaddr_un *saun;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
len = u->url.len;
|
2008-08-26 22:24:14 +08:00
|
|
|
path = u->url.data;
|
2008-08-22 21:36:56 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
path += 5;
|
2008-08-22 21:36:56 +08:00
|
|
|
len -= 5;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
if (u->uri_part) {
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
last = path + len;
|
|
|
|
uri = ngx_strlchr(path, last, ':');
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (uri) {
|
|
|
|
len = uri - path;
|
|
|
|
uri++;
|
|
|
|
u->uri.len = last - uri;
|
|
|
|
u->uri.data = uri;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
2008-08-22 21:36:56 +08:00
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
if (len == 0) {
|
|
|
|
u->err = "no path in the unix domain socket";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
u->host.len = len++;
|
|
|
|
u->host.data = path;
|
|
|
|
|
|
|
|
if (len > sizeof(saun->sun_path)) {
|
2008-08-22 21:36:56 +08:00
|
|
|
u->err = "too long path in the unix domain socket";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
u->socklen = sizeof(struct sockaddr_un);
|
|
|
|
saun = (struct sockaddr_un *) &u->sockaddr;
|
|
|
|
saun->sun_family = AF_UNIX;
|
|
|
|
(void) ngx_cpystrn((u_char *) saun->sun_path, path, len);
|
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
u->addrs = ngx_pcalloc(pool, sizeof(ngx_peer_addr_t));
|
|
|
|
if (u->addrs == NULL) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
saun = ngx_pcalloc(pool, sizeof(struct sockaddr_un));
|
|
|
|
if (saun == NULL) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
u->family = AF_UNIX;
|
2008-08-22 21:36:56 +08:00
|
|
|
u->naddrs = 1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
saun->sun_family = AF_UNIX;
|
2008-08-26 22:24:14 +08:00
|
|
|
(void) ngx_cpystrn((u_char *) saun->sun_path, path, len);
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
u->addrs[0].sockaddr = (struct sockaddr *) saun;
|
|
|
|
u->addrs[0].socklen = sizeof(struct sockaddr_un);
|
2008-08-26 22:24:14 +08:00
|
|
|
u->addrs[0].name.len = len + 4;
|
2008-08-22 21:36:56 +08:00
|
|
|
u->addrs[0].name.data = u->url.data;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
return NGX_OK;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
u->err = "the unix domain sockets are not supported on this platform";
|
|
|
|
|
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
|
|
|
#endif
|
2008-08-22 21:36:56 +08:00
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-22 21:36:56 +08:00
|
|
|
|
|
|
|
static ngx_int_t
|
|
|
|
ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u)
|
|
|
|
{
|
2009-02-21 15:02:02 +08:00
|
|
|
u_char *p, *host, *port, *last, *uri, *args;
|
|
|
|
size_t len;
|
|
|
|
ngx_int_t n;
|
|
|
|
struct hostent *h;
|
|
|
|
struct sockaddr_in *sin;
|
|
|
|
|
|
|
|
u->socklen = sizeof(struct sockaddr_in);
|
|
|
|
sin = (struct sockaddr_in *) &u->sockaddr;
|
|
|
|
sin->sin_family = AF_INET;
|
2008-08-22 21:36:56 +08:00
|
|
|
|
2008-08-27 00:11:30 +08:00
|
|
|
u->family = AF_INET;
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
host = u->url.data;
|
2006-12-13 00:46:16 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
last = host + u->url.len;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
port = ngx_strlchr(host, last, ':');
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-10-24 23:12:11 +08:00
|
|
|
uri = ngx_strlchr(host, last, '/');
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-10-25 03:34:24 +08:00
|
|
|
args = ngx_strlchr(host, last, '?');
|
|
|
|
|
|
|
|
if (args) {
|
|
|
|
if (uri == NULL) {
|
|
|
|
uri = args;
|
|
|
|
|
|
|
|
} else if (args < uri) {
|
|
|
|
uri = args;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (uri) {
|
|
|
|
if (u->listen || !u->uri_part) {
|
|
|
|
u->err = "invalid host";
|
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
u->uri.len = last - uri;
|
|
|
|
u->uri.data = uri;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
last = uri;
|
2008-10-24 23:12:11 +08:00
|
|
|
|
|
|
|
if (uri < port) {
|
|
|
|
port = NULL;
|
2008-11-12 00:04:05 +08:00
|
|
|
}
|
2008-08-26 22:24:14 +08:00
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (port) {
|
|
|
|
port++;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-27 00:11:30 +08:00
|
|
|
len = last - port;
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
u->err = "invalid port";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = ngx_atoi(port, len);
|
|
|
|
|
|
|
|
if (n < 1 || n > 65536) {
|
2008-08-26 22:24:14 +08:00
|
|
|
u->err = "invalid port";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-27 00:11:30 +08:00
|
|
|
u->port = (in_port_t) n;
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_port = htons((in_port_t) n);
|
2008-08-27 00:11:30 +08:00
|
|
|
|
|
|
|
u->port_text.len = len;
|
2008-08-26 22:24:14 +08:00
|
|
|
u->port_text.data = port;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
last = port - 1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
} else {
|
|
|
|
if (uri == NULL) {
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (u->listen) {
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
/* test value as port only */
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
n = ngx_atoi(host, last - host);
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (n != NGX_ERROR) {
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (n < 1 || n > 65536) {
|
|
|
|
u->err = "invalid port";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2007-11-29 03:55:31 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
u->port = (in_port_t) n;
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_port = htons((in_port_t) n);
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
u->port_text.len = last - host;
|
|
|
|
u->port_text.data = host;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
u->wildcard = 1;
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
u->no_port = 1;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
len = last - host;
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
u->err = "no host";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (len == 1 && *host == '*') {
|
|
|
|
len = 0;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
u->host.len = len;
|
|
|
|
u->host.data = host;
|
2006-12-05 00:46:13 +08:00
|
|
|
|
2008-08-27 00:11:30 +08:00
|
|
|
if (u->no_resolve) {
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (len++) {
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
p = ngx_alloc(len, pool->log);
|
|
|
|
if (p == NULL) {
|
|
|
|
return NGX_ERROR;
|
2006-10-24 21:06:55 +08:00
|
|
|
}
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
(void) ngx_cpystrn(p, host, len);
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_addr.s_addr = inet_addr((const char *) p);
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
if (sin->sin_addr.s_addr == INADDR_NONE) {
|
2008-08-26 22:24:14 +08:00
|
|
|
h = gethostbyname((const char *) p);
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (h == NULL || h->h_addr_list[0] == NULL) {
|
|
|
|
ngx_free(p);
|
|
|
|
u->err = "host not found";
|
2007-10-08 16:55:12 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_addr.s_addr = *(in_addr_t *) (h->h_addr_list[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sin->sin_addr.s_addr == INADDR_ANY) {
|
|
|
|
u->wildcard = 1;
|
2008-08-26 22:24:14 +08:00
|
|
|
}
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
ngx_free(p);
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
} else {
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_addr.s_addr = INADDR_ANY;
|
|
|
|
u->wildcard = 1;
|
2008-08-26 22:24:14 +08:00
|
|
|
}
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2006-12-13 00:46:16 +08:00
|
|
|
if (u->no_port) {
|
|
|
|
u->port = u->default_port;
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_port = htons(u->default_port);
|
2006-12-13 00:46:16 +08:00
|
|
|
}
|
|
|
|
|
2008-08-26 22:24:14 +08:00
|
|
|
if (u->listen) {
|
|
|
|
return NGX_OK;
|
2006-12-13 00:46:16 +08:00
|
|
|
}
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
if (ngx_inet_resolve_host(pool, u) != NGX_OK) {
|
2006-05-23 22:54:58 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
static ngx_int_t
|
|
|
|
ngx_parse_inet6_url(ngx_pool_t *pool, ngx_url_t *u)
|
|
|
|
{
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
int rc;
|
|
|
|
u_char *p, *host, *port, *last, *uri;
|
|
|
|
size_t len;
|
|
|
|
ngx_int_t n;
|
|
|
|
struct sockaddr_in6 *sin6;
|
|
|
|
|
|
|
|
u->socklen = sizeof(struct sockaddr_in6);
|
|
|
|
sin6 = (struct sockaddr_in6 *) &u->sockaddr;
|
|
|
|
sin6->sin6_family = AF_INET6;
|
|
|
|
|
|
|
|
host = u->url.data + 1;
|
|
|
|
|
|
|
|
last = u->url.data + u->url.len;
|
|
|
|
|
|
|
|
p = ngx_strlchr(host, last, ']');
|
|
|
|
|
|
|
|
if (p == NULL) {
|
|
|
|
u->err = "invalid host";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (last - p) {
|
|
|
|
|
|
|
|
port = p + 1;
|
|
|
|
|
|
|
|
uri = ngx_strlchr(port, last, '/');
|
|
|
|
|
|
|
|
if (uri) {
|
|
|
|
if (u->listen || !u->uri_part) {
|
|
|
|
u->err = "invalid host";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
u->uri.len = last - uri;
|
|
|
|
u->uri.data = uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*port == ':') {
|
|
|
|
port++;
|
|
|
|
|
|
|
|
len = last - port;
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
u->err = "invalid port";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = ngx_atoi(port, len);
|
|
|
|
|
|
|
|
if (n < 1 || n > 65536) {
|
|
|
|
u->err = "invalid port";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
u->port = (in_port_t) n;
|
|
|
|
sin6->sin6_port = htons((in_port_t) n);
|
|
|
|
|
|
|
|
u->port_text.len = len;
|
|
|
|
u->port_text.data = port;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
u->no_port = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len = p - host;
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
u->err = "no host";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
u->host.len = len++;
|
|
|
|
u->host.data = host;
|
|
|
|
|
|
|
|
p = ngx_alloc(len, pool->log);
|
|
|
|
if (p == NULL) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) ngx_cpystrn(p, host, len);
|
|
|
|
|
2009-05-07 21:05:04 +08:00
|
|
|
#if (NGX_WIN32)
|
|
|
|
|
|
|
|
rc = WSAStringToAddress((char *) p, AF_INET6, NULL,
|
|
|
|
(SOCKADDR *) sin6, &u->socklen);
|
|
|
|
rc = !rc;
|
|
|
|
|
|
|
|
if (u->port) {
|
|
|
|
sin6->sin6_port = htons(u->port);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
rc = inet_pton(AF_INET6, (const char *) p, &sin6->sin6_addr);
|
|
|
|
|
2009-05-07 21:05:04 +08:00
|
|
|
#endif
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
ngx_free(p);
|
|
|
|
|
|
|
|
if (rc == 0) {
|
|
|
|
u->err = "invalid IPv6 address";
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
|
|
|
|
u->wildcard = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
u->family = AF_INET6;
|
|
|
|
|
|
|
|
if (u->no_resolve) {
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (u->no_port) {
|
|
|
|
u->port = u->default_port;
|
|
|
|
sin6->sin6_port = htons(u->default_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
u->err = "the INET6 sockets are not supported on this platform";
|
|
|
|
|
|
|
|
return NGX_ERROR;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
ngx_int_t
|
2007-10-08 16:55:12 +08:00
|
|
|
ngx_inet_resolve_host(ngx_pool_t *pool, ngx_url_t *u)
|
2006-05-23 22:54:58 +08:00
|
|
|
{
|
2006-12-13 00:46:16 +08:00
|
|
|
u_char *p, *host;
|
2006-05-23 22:54:58 +08:00
|
|
|
size_t len;
|
2009-02-21 15:02:02 +08:00
|
|
|
in_port_t port;
|
2006-05-23 22:54:58 +08:00
|
|
|
in_addr_t in_addr;
|
|
|
|
ngx_uint_t i;
|
|
|
|
struct hostent *h;
|
|
|
|
struct sockaddr_in *sin;
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
host = ngx_alloc(u->host.len + 1, pool->log);
|
2006-05-23 22:54:58 +08:00
|
|
|
if (host == NULL) {
|
2006-12-05 00:46:13 +08:00
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
(void) ngx_cpystrn(host, u->host.data, u->host.len + 1);
|
2006-05-23 22:54:58 +08:00
|
|
|
|
|
|
|
/* AF_INET only */
|
|
|
|
|
2009-02-21 22:34:32 +08:00
|
|
|
port = htons(u->port);
|
2009-02-21 15:02:02 +08:00
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
in_addr = inet_addr((char *) host);
|
|
|
|
|
|
|
|
if (in_addr == INADDR_NONE) {
|
|
|
|
h = gethostbyname((char *) host);
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
ngx_free(host);
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
if (h == NULL || h->h_addr_list[0] == NULL) {
|
2006-12-05 00:46:13 +08:00
|
|
|
u->err = "host not found";
|
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
if (u->one_addr == 0) {
|
|
|
|
for (i = 0; h->h_addr_list[i] != NULL; i++) { /* void */ }
|
|
|
|
|
|
|
|
} else {
|
|
|
|
i = 1;
|
|
|
|
}
|
2006-05-23 22:54:58 +08:00
|
|
|
|
|
|
|
/* MP: ngx_shared_palloc() */
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
u->addrs = ngx_pcalloc(pool, i * sizeof(ngx_peer_addr_t));
|
2006-12-05 00:46:13 +08:00
|
|
|
if (u->addrs == NULL) {
|
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
u->naddrs = i;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
|
|
|
for (i = 0; h->h_addr_list[i] != NULL; i++) {
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
sin = ngx_pcalloc(pool, sizeof(struct sockaddr_in));
|
2006-05-23 22:54:58 +08:00
|
|
|
if (sin == NULL) {
|
2006-12-05 00:46:13 +08:00
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sin->sin_family = AF_INET;
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_port = port;
|
2006-05-23 22:54:58 +08:00
|
|
|
sin->sin_addr.s_addr = *(in_addr_t *) (h->h_addr_list[i]);
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
u->addrs[i].sockaddr = (struct sockaddr *) sin;
|
|
|
|
u->addrs[i].socklen = sizeof(struct sockaddr_in);
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
len = NGX_INET_ADDRSTRLEN + sizeof(":65535") - 1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2008-06-17 23:00:30 +08:00
|
|
|
p = ngx_pnalloc(pool, len);
|
2006-12-13 00:46:16 +08:00
|
|
|
if (p == NULL) {
|
2006-12-05 00:46:13 +08:00
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
len = ngx_sock_ntop((struct sockaddr *) sin, p, len, 1);
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
u->addrs[i].name.len = len;
|
2006-12-13 00:46:16 +08:00
|
|
|
u->addrs[i].name.data = p;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
ngx_free(host);
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
/* MP: ngx_shared_palloc() */
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
u->addrs = ngx_pcalloc(pool, sizeof(ngx_peer_addr_t));
|
2006-12-05 00:46:13 +08:00
|
|
|
if (u->addrs == NULL) {
|
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2007-10-08 16:55:12 +08:00
|
|
|
sin = ngx_pcalloc(pool, sizeof(struct sockaddr_in));
|
2006-05-23 22:54:58 +08:00
|
|
|
if (sin == NULL) {
|
2006-12-05 00:46:13 +08:00
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
u->naddrs = 1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
|
|
|
sin->sin_family = AF_INET;
|
2009-02-21 15:02:02 +08:00
|
|
|
sin->sin_port = port;
|
2006-05-23 22:54:58 +08:00
|
|
|
sin->sin_addr.s_addr = in_addr;
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
u->addrs[0].sockaddr = (struct sockaddr *) sin;
|
|
|
|
u->addrs[0].socklen = sizeof(struct sockaddr_in);
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
p = ngx_pnalloc(pool, u->host.len + sizeof(":65535") - 1);
|
2006-12-13 00:46:16 +08:00
|
|
|
if (p == NULL) {
|
2006-12-05 00:46:13 +08:00
|
|
|
return NGX_ERROR;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
u->addrs[0].name.len = ngx_sprintf(p, "%V:%d",
|
|
|
|
&u->host, ntohs(port)) - p;
|
2006-12-13 00:46:16 +08:00
|
|
|
u->addrs[0].name.data = p;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
return NGX_OK;
|
2006-05-23 22:54:58 +08:00
|
|
|
}
|