2004-01-06 04:55:48 +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
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
#include <ngx_event.h>
|
|
|
|
|
|
|
|
|
2004-01-22 14:47:28 +08:00
|
|
|
ngx_os_io_t ngx_io;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
ngx_listening_t *
|
|
|
|
ngx_listening_inet_stream_socket(ngx_conf_t *cf, in_addr_t addr, in_port_t port)
|
2004-09-07 23:29:22 +08:00
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
ngx_listening_t *ls;
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
struct sockaddr_in *sin;
|
2004-09-07 23:29:22 +08:00
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
ls = ngx_array_push(&cf->cycle->listening);
|
|
|
|
if (ls == NULL) {
|
2004-09-07 23:29:22 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_memzero(ls, sizeof(ngx_listening_t));
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
sin = ngx_pcalloc(cf->pool, sizeof(struct sockaddr_in));
|
|
|
|
if (sin == NULL) {
|
2004-09-07 23:29:22 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
sin->sin_family = AF_INET;
|
|
|
|
sin->sin_addr.s_addr = addr;
|
|
|
|
sin->sin_port = htons(port);
|
2004-09-07 23:29:22 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
|
|
|
|
ls->addr_text.data = ngx_palloc(cf->pool,
|
|
|
|
INET_ADDRSTRLEN - 1 + sizeof(":65535") - 1);
|
|
|
|
if (ls->addr_text.data == NULL) {
|
2004-09-07 23:29:22 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = ngx_inet_ntop(AF_INET, &addr, ls->addr_text.data, INET_ADDRSTRLEN);
|
2004-11-11 22:07:14 +08:00
|
|
|
|
|
|
|
ls->addr_text.len = ngx_sprintf(ls->addr_text.data + len, ":%d", port)
|
|
|
|
- ls->addr_text.data;
|
|
|
|
|
2004-09-07 23:29:22 +08:00
|
|
|
ls->fd = (ngx_socket_t) -1;
|
|
|
|
ls->family = AF_INET;
|
|
|
|
ls->type = SOCK_STREAM;
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
ls->sockaddr = (struct sockaddr *) sin;
|
2004-09-07 23:29:22 +08:00
|
|
|
ls->socklen = sizeof(struct sockaddr_in);
|
|
|
|
ls->addr = offsetof(struct sockaddr_in, sin_addr);
|
|
|
|
ls->addr_text_max_len = INET_ADDRSTRLEN;
|
|
|
|
|
|
|
|
return ls;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
ngx_int_t
|
|
|
|
ngx_set_inherited_sockets(ngx_cycle_t *cycle)
|
2004-01-06 04:55:48 +08:00
|
|
|
{
|
2005-06-16 02:33:41 +08:00
|
|
|
size_t len;
|
|
|
|
ngx_uint_t i;
|
|
|
|
ngx_listening_t *ls;
|
|
|
|
struct sockaddr_in *sin;
|
2005-10-19 20:33:58 +08:00
|
|
|
socklen_t olen;
|
2005-06-16 02:33:41 +08:00
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
|
2005-09-08 22:36:09 +08:00
|
|
|
ngx_err_t err;
|
2005-06-16 02:33:41 +08:00
|
|
|
struct accept_filter_arg af;
|
|
|
|
#endif
|
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
|
|
|
|
int timeout;
|
|
|
|
#endif
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
|
|
|
|
|
|
|
/* AF_INET only */
|
|
|
|
|
|
|
|
ls[i].sockaddr = ngx_palloc(cycle->pool, sizeof(struct sockaddr_in));
|
|
|
|
if (ls[i].sockaddr == NULL) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ls[i].socklen = sizeof(struct sockaddr_in);
|
|
|
|
if (getsockname(ls[i].fd, ls[i].sockaddr, &ls[i].socklen) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_CRIT, cycle->log, ngx_socket_errno,
|
|
|
|
"getsockname() of the inherited "
|
|
|
|
"socket #%d failed", ls[i].fd);
|
|
|
|
ls[i].ignore = 1;
|
2004-01-06 04:55:48 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
sin = (struct sockaddr_in *) ls[i].sockaddr;
|
2004-01-07 00:49:34 +08:00
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
if (sin->sin_family != AF_INET) {
|
2004-01-07 00:49:34 +08:00
|
|
|
ngx_log_error(NGX_LOG_CRIT, cycle->log, ngx_socket_errno,
|
|
|
|
"the inherited socket #%d has "
|
|
|
|
"unsupported family", ls[i].fd);
|
|
|
|
ls[i].ignore = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2004-11-11 22:07:14 +08:00
|
|
|
|
2004-01-07 00:49:34 +08:00
|
|
|
ls[i].addr_text_max_len = INET_ADDRSTRLEN;
|
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
ls[i].addr_text.data = ngx_palloc(cycle->pool, INET_ADDRSTRLEN - 1
|
|
|
|
+ sizeof(":65535") - 1);
|
2004-01-07 00:49:34 +08:00
|
|
|
if (ls[i].addr_text.data == NULL) {
|
|
|
|
return NGX_ERROR;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
ls[i].family = sin->sin_family;
|
2004-11-11 22:07:14 +08:00
|
|
|
len = ngx_sock_ntop(ls[i].family, ls[i].sockaddr,
|
|
|
|
ls[i].addr_text.data, INET_ADDRSTRLEN);
|
|
|
|
if (len == 0) {
|
2004-01-07 00:49:34 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2004-11-11 22:07:14 +08:00
|
|
|
|
|
|
|
ls[i].addr_text.len = ngx_sprintf(ls[i].addr_text.data + len, ":%d",
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
ntohs(sin->sin_port))
|
2004-11-11 22:07:14 +08:00
|
|
|
- ls[i].addr_text.data;
|
2005-06-16 02:33:41 +08:00
|
|
|
|
2007-08-09 21:32:21 +08:00
|
|
|
ls[i].backlog = NGX_LISTEN_BACKLOG;
|
2005-08-30 18:55:07 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
olen = sizeof(int);
|
|
|
|
|
|
|
|
if (getsockopt(ls[i].fd, SOL_SOCKET, SO_RCVBUF, (void *) &ls[i].rcvbuf,
|
|
|
|
&olen)
|
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_socket_errno,
|
|
|
|
"getsockopt(SO_RCVBUF) %V failed, ignored",
|
|
|
|
&ls[i].addr_text);
|
|
|
|
|
|
|
|
ls[i].rcvbuf = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
olen = sizeof(int);
|
|
|
|
|
|
|
|
if (getsockopt(ls[i].fd, SOL_SOCKET, SO_SNDBUF, (void *) &ls[i].sndbuf,
|
|
|
|
&olen)
|
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_socket_errno,
|
|
|
|
"getsockopt(SO_SNDBUF) %V failed, ignored",
|
|
|
|
&ls[i].addr_text);
|
|
|
|
|
|
|
|
ls[i].sndbuf = -1;
|
|
|
|
}
|
|
|
|
|
2005-06-16 02:33:41 +08:00
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
|
|
|
|
|
|
|
|
ngx_memzero(&af, sizeof(struct accept_filter_arg));
|
2005-10-19 20:33:58 +08:00
|
|
|
olen = sizeof(struct accept_filter_arg);
|
2005-06-16 02:33:41 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (getsockopt(ls[i].fd, SOL_SOCKET, SO_ACCEPTFILTER, &af, &olen)
|
2005-06-16 02:33:41 +08:00
|
|
|
== -1)
|
|
|
|
{
|
2005-09-08 22:36:09 +08:00
|
|
|
err = ngx_errno;
|
|
|
|
|
|
|
|
if (err == NGX_EINVAL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_NOTICE, cycle->log, err,
|
2005-06-16 02:33:41 +08:00
|
|
|
"getsockopt(SO_ACCEPTFILTER) for %V failed, ignored",
|
|
|
|
&ls[i].addr_text);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (olen < sizeof(struct accept_filter_arg) || af.af_name[0] == '\0') {
|
2005-06-16 02:33:41 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ls[i].accept_filter = ngx_palloc(cycle->pool, 16);
|
|
|
|
if (ls[i].accept_filter == NULL) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) ngx_cpystrn((u_char *) ls[i].accept_filter,
|
|
|
|
(u_char *) af.af_name, 16);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
|
|
|
|
|
|
|
|
timeout = 0;
|
2005-10-19 20:33:58 +08:00
|
|
|
olen = sizeof(int);
|
2005-06-16 02:33:41 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (getsockopt(ls[i].fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &timeout, &olen)
|
2005-06-16 02:33:41 +08:00
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_NOTICE, cycle->log, ngx_errno,
|
|
|
|
"getsockopt(TCP_DEFER_ACCEPT) for %V failed, ignored",
|
|
|
|
&ls[i].addr_text);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-10-19 21:34:28 +08:00
|
|
|
if (olen < sizeof(int) || timeout == 0) {
|
2005-06-16 02:33:41 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ls[i].deferred_accept = 1;
|
|
|
|
#endif
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
ngx_int_t
|
|
|
|
ngx_open_listening_sockets(ngx_cycle_t *cycle)
|
2004-01-06 04:55:48 +08:00
|
|
|
{
|
2005-10-19 20:33:58 +08:00
|
|
|
int reuseaddr;
|
|
|
|
ngx_uint_t i, tries, failed;
|
2004-02-09 15:46:43 +08:00
|
|
|
ngx_err_t err;
|
|
|
|
ngx_log_t *log;
|
|
|
|
ngx_socket_t s;
|
|
|
|
ngx_listening_t *ls;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
reuseaddr = 1;
|
|
|
|
#if (NGX_SUPPRESS_WARN)
|
|
|
|
failed = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
log = cycle->log;
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
/* TODO: configurable try number */
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
for (tries = 5 ; tries; tries--) {
|
2004-01-06 04:55:48 +08:00
|
|
|
failed = 0;
|
|
|
|
|
|
|
|
/* for each listening socket */
|
|
|
|
|
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
|
|
|
|
|
|
|
if (ls[i].ignore) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ls[i].fd != -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ls[i].inherited) {
|
|
|
|
|
|
|
|
/* TODO: close on exit */
|
|
|
|
/* TODO: nonblocking */
|
|
|
|
/* TODO: deferred accept */
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
s = ngx_socket(ls[i].family, ls[i].type, 0);
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
if (s == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_socket_n " %V failed", &ls[i].addr_text);
|
2004-01-06 04:55:48 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
|
2005-10-19 20:33:58 +08:00
|
|
|
(const void *) &reuseaddr, sizeof(int))
|
|
|
|
== -1)
|
|
|
|
{
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
2004-11-11 22:07:14 +08:00
|
|
|
"setsockopt(SO_REUSEADDR) %V failed",
|
|
|
|
&ls[i].addr_text);
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2007-05-30 20:28:37 +08:00
|
|
|
if (ngx_close_socket(s) == -1) {
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
|
|
|
ngx_close_socket_n " %V failed",
|
|
|
|
&ls[i].addr_text);
|
2007-05-30 20:28:37 +08:00
|
|
|
}
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: close on exit */
|
|
|
|
|
|
|
|
if (!(ngx_event_flags & NGX_USE_AIO_EVENT)) {
|
|
|
|
if (ngx_nonblocking(s) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_nonblocking_n " %V failed",
|
|
|
|
&ls[i].addr_text);
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2007-05-30 20:28:37 +08:00
|
|
|
if (ngx_close_socket(s) == -1) {
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
|
|
|
ngx_close_socket_n " %V failed",
|
|
|
|
&ls[i].addr_text);
|
2007-05-30 20:28:37 +08:00
|
|
|
}
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-27 01:07:48 +08:00
|
|
|
ngx_log_debug2(NGX_LOG_DEBUG_CORE, cycle->log, 0,
|
|
|
|
"bind() %V #%d ", &ls[i].addr_text, s);
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
if (bind(s, ls[i].sockaddr, ls[i].socklen) == -1) {
|
|
|
|
err = ngx_socket_errno;
|
2005-10-19 20:33:58 +08:00
|
|
|
|
|
|
|
if (err == NGX_EADDRINUSE && ngx_test_config) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, err,
|
2004-11-11 22:07:14 +08:00
|
|
|
"bind() to %V failed", &ls[i].addr_text);
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2007-05-30 20:28:37 +08:00
|
|
|
if (ngx_close_socket(s) == -1) {
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_close_socket_n " %V failed",
|
|
|
|
&ls[i].addr_text);
|
2007-05-30 20:28:37 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (err != NGX_EADDRINUSE) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
failed = 1;
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
continue;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
|
2007-05-30 21:23:48 +08:00
|
|
|
if (listen(s, ls[i].backlog) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
|
|
|
"listen() to %V, backlog %d failed",
|
|
|
|
&ls[i].addr_text, ls[i].backlog);
|
|
|
|
|
|
|
|
if (ngx_close_socket(s) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, ngx_socket_errno,
|
|
|
|
ngx_close_socket_n " %V failed",
|
|
|
|
&ls[i].addr_text);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
ls[i].listen = 1;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
ls[i].fd = s;
|
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (!failed) {
|
2004-01-06 04:55:48 +08:00
|
|
|
break;
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
/* TODO: delay configurable */
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_NOTICE, log, 0,
|
|
|
|
"try again to bind() after 500ms");
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_msleep(500);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (failed) {
|
2004-12-21 20:30:30 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, 0, "still could not bind()");
|
2004-01-06 04:55:48 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
void
|
|
|
|
ngx_configure_listening_socket(ngx_cycle_t *cycle)
|
|
|
|
{
|
|
|
|
ngx_uint_t i;
|
|
|
|
ngx_listening_t *ls;
|
|
|
|
|
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
|
|
|
|
struct accept_filter_arg af;
|
|
|
|
#endif
|
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
|
|
|
|
int timeout;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
|
|
|
|
|
|
|
if (ls[i].rcvbuf != -1) {
|
|
|
|
if (setsockopt(ls[i].fd, SOL_SOCKET, SO_RCVBUF,
|
|
|
|
(const void *) &ls[i].rcvbuf, sizeof(int))
|
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_socket_errno,
|
2005-10-24 23:09:41 +08:00
|
|
|
"setsockopt(SO_RCVBUF, %d) %V failed, ignored",
|
|
|
|
ls[i].rcvbuf, &ls[i].addr_text);
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ls[i].sndbuf != -1) {
|
|
|
|
if (setsockopt(ls[i].fd, SOL_SOCKET, SO_SNDBUF,
|
|
|
|
(const void *) &ls[i].sndbuf, sizeof(int))
|
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_socket_errno,
|
2005-10-24 23:09:41 +08:00
|
|
|
"setsockopt(SO_SNDBUF, %d) %V failed, ignored",
|
|
|
|
ls[i].sndbuf, &ls[i].addr_text);
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-18 03:55:41 +08:00
|
|
|
#if 0
|
|
|
|
if (1) {
|
|
|
|
int tcp_nodelay = 1;
|
|
|
|
|
|
|
|
if (setsockopt(ls[i].fd, IPPROTO_TCP, TCP_NODELAY,
|
|
|
|
(const void *) &tcp_nodelay, sizeof(int))
|
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_socket_errno,
|
|
|
|
"setsockopt(TCP_NODELAY) %V failed, ignored",
|
|
|
|
&ls[i].addr_text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (ls[i].listen) {
|
2007-05-30 21:24:50 +08:00
|
|
|
|
|
|
|
/* change backlog via listen() */
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (listen(ls[i].fd, ls[i].backlog) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_socket_errno,
|
2007-05-30 03:43:18 +08:00
|
|
|
"listen() to %V, backlog %d failed, ignored",
|
|
|
|
&ls[i].addr_text, ls[i].backlog);
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* setting deferred mode should be last operation on socket,
|
|
|
|
* because code may prematurely continue cycle on failure
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if (NGX_HAVE_DEFERRED_ACCEPT)
|
|
|
|
|
|
|
|
#ifdef SO_ACCEPTFILTER
|
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (ls[i].delete_deferred) {
|
|
|
|
if (setsockopt(ls[i].fd, SOL_SOCKET, SO_ACCEPTFILTER, NULL, 0)
|
|
|
|
== -1)
|
2005-10-19 20:33:58 +08:00
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"setsockopt(SO_ACCEPTFILTER, NULL) "
|
|
|
|
"for %V failed, ignored",
|
2006-03-28 20:24:47 +08:00
|
|
|
&ls[i].addr_text);
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (ls[i].accept_filter) {
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
|
|
|
|
"could not change the accept filter "
|
|
|
|
"to \"%s\" for %V, ignored",
|
2006-03-28 20:24:47 +08:00
|
|
|
ls[i].accept_filter, &ls[i].addr_text);
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
ls[i].deferred_accept = 0;
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (ls[i].add_deferred) {
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_memzero(&af, sizeof(struct accept_filter_arg));
|
|
|
|
(void) ngx_cpystrn((u_char *) af.af_name,
|
2006-03-28 20:24:47 +08:00
|
|
|
(u_char *) ls[i].accept_filter, 16);
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (setsockopt(ls[i].fd, SOL_SOCKET, SO_ACCEPTFILTER,
|
2005-10-19 20:33:58 +08:00
|
|
|
&af, sizeof(struct accept_filter_arg))
|
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"setsockopt(SO_ACCEPTFILTER, \"%s\") "
|
|
|
|
" for %V failed, ignored",
|
2006-03-28 20:24:47 +08:00
|
|
|
ls[i].accept_filter, &ls[i].addr_text);
|
2005-10-19 20:33:58 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
ls[i].deferred_accept = 1;
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TCP_DEFER_ACCEPT
|
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (ls[i].add_deferred || ls[i].delete_deferred) {
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (ls[i].add_deferred) {
|
|
|
|
timeout = (int) (ls[i].post_accept_timeout / 1000);
|
2005-10-19 20:33:58 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
timeout = 0;
|
|
|
|
}
|
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (setsockopt(ls[i].fd, IPPROTO_TCP, TCP_DEFER_ACCEPT,
|
2005-10-19 20:33:58 +08:00
|
|
|
&timeout, sizeof(int))
|
|
|
|
== -1)
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
|
|
|
|
"setsockopt(TCP_DEFER_ACCEPT, %d) for %V failed, "
|
|
|
|
"ignored",
|
2006-03-28 20:24:47 +08:00
|
|
|
timeout, &ls[i].addr_text);
|
2005-10-19 20:33:58 +08:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 20:24:47 +08:00
|
|
|
if (ls[i].add_deferred) {
|
|
|
|
ls[i].deferred_accept = 1;
|
2005-10-19 20:33:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* NGX_HAVE_DEFERRED_ACCEPT */
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
void
|
|
|
|
ngx_close_listening_sockets(ngx_cycle_t *cycle)
|
2004-01-06 04:55:48 +08:00
|
|
|
{
|
2005-09-23 19:02:22 +08:00
|
|
|
ngx_uint_t i;
|
|
|
|
ngx_listening_t *ls;
|
|
|
|
ngx_connection_t *c;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
|
|
|
if (ngx_event_flags & NGX_USE_IOCP_EVENT) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-04-02 00:20:53 +08:00
|
|
|
ngx_accept_mutex_held = 0;
|
2006-02-08 23:33:12 +08:00
|
|
|
ngx_use_accept_mutex = 0;
|
2004-04-02 00:20:53 +08:00
|
|
|
|
2004-01-06 04:55:48 +08:00
|
|
|
ls = cycle->listening.elts;
|
|
|
|
for (i = 0; i < cycle->listening.nelts; i++) {
|
|
|
|
|
2005-09-23 19:02:22 +08:00
|
|
|
c = ls[i].connection;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2004-06-07 03:49:18 +08:00
|
|
|
if (ngx_event_flags & NGX_USE_RTSIG_EVENT) {
|
2005-09-23 19:02:22 +08:00
|
|
|
if (c->read->active) {
|
|
|
|
ngx_del_conn(c, NGX_CLOSE_EVENT);
|
2004-04-15 23:34:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2005-09-23 19:02:22 +08:00
|
|
|
if (c->read->active) {
|
|
|
|
ngx_del_event(c->read, NGX_READ_EVENT, NGX_CLOSE_EVENT);
|
2004-04-15 23:34:36 +08:00
|
|
|
}
|
|
|
|
}
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2005-09-23 19:02:22 +08:00
|
|
|
ngx_free_connection(c);
|
|
|
|
|
|
|
|
c->fd = (ngx_socket_t) -1;
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_log_debug2(NGX_LOG_DEBUG_CORE, cycle->log, 0,
|
|
|
|
"close listening %V #%d ", &ls[i].addr_text, ls[i].fd);
|
|
|
|
|
2005-09-23 19:02:22 +08:00
|
|
|
if (ngx_close_socket(ls[i].fd) == -1) {
|
2004-01-06 04:55:48 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, cycle->log, ngx_socket_errno,
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_close_socket_n " %V failed", &ls[i].addr_text);
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
2005-09-23 19:02:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ngx_connection_t *
|
|
|
|
ngx_get_connection(ngx_socket_t s, ngx_log_t *log)
|
|
|
|
{
|
2005-10-12 21:50:36 +08:00
|
|
|
ngx_uint_t instance;
|
|
|
|
ngx_event_t *rev, *wev;
|
|
|
|
ngx_connection_t *c;
|
2005-09-23 19:02:22 +08:00
|
|
|
|
|
|
|
/* disable warning: Win32 SOCKET is u_int while UNIX socket is int */
|
|
|
|
|
|
|
|
if (ngx_cycle->files && (ngx_uint_t) s >= ngx_cycle->files_n) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, 0,
|
|
|
|
"the new socket has number %d, "
|
|
|
|
"but only %ui files are available",
|
|
|
|
s, ngx_cycle->files_n);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ngx_mutex_lock */
|
|
|
|
|
|
|
|
c = ngx_cycle->free_connections;
|
2004-01-06 04:55:48 +08:00
|
|
|
|
2005-09-23 19:02:22 +08:00
|
|
|
if (c == NULL) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, 0,
|
|
|
|
"%ui worker_connections is not enough",
|
|
|
|
ngx_cycle->connection_n);
|
|
|
|
|
|
|
|
/* ngx_mutex_unlock */
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_cycle->free_connections = c->data;
|
|
|
|
ngx_cycle->free_connection_n--;
|
|
|
|
|
|
|
|
/* ngx_mutex_unlock */
|
|
|
|
|
|
|
|
if (ngx_cycle->files) {
|
|
|
|
ngx_cycle->files[s] = c;
|
|
|
|
}
|
|
|
|
|
2005-10-12 21:50:36 +08:00
|
|
|
rev = c->read;
|
|
|
|
wev = c->write;
|
|
|
|
|
|
|
|
ngx_memzero(c, sizeof(ngx_connection_t));
|
|
|
|
|
|
|
|
c->read = rev;
|
|
|
|
c->write = wev;
|
|
|
|
c->fd = s;
|
|
|
|
c->log = log;
|
|
|
|
|
|
|
|
instance = rev->instance;
|
|
|
|
|
|
|
|
ngx_memzero(rev, sizeof(ngx_event_t));
|
|
|
|
ngx_memzero(wev, sizeof(ngx_event_t));
|
|
|
|
|
|
|
|
rev->instance = !instance;
|
|
|
|
wev->instance = !instance;
|
|
|
|
|
|
|
|
rev->index = NGX_INVALID_INDEX;
|
|
|
|
wev->index = NGX_INVALID_INDEX;
|
|
|
|
|
|
|
|
rev->data = c;
|
|
|
|
wev->data = c;
|
|
|
|
|
|
|
|
wev->write = 1;
|
|
|
|
|
2005-09-23 19:02:22 +08:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ngx_free_connection(ngx_connection_t *c)
|
|
|
|
{
|
|
|
|
/* ngx_mutex_lock */
|
|
|
|
|
|
|
|
c->data = ngx_cycle->free_connections;
|
|
|
|
ngx_cycle->free_connections = c;
|
|
|
|
ngx_cycle->free_connection_n++;
|
|
|
|
|
|
|
|
/* ngx_mutex_unlock */
|
|
|
|
|
|
|
|
if (ngx_cycle->files) {
|
|
|
|
ngx_cycle->files[c->fd] = NULL;
|
2004-01-06 04:55:48 +08:00
|
|
|
}
|
|
|
|
}
|
2004-02-09 15:46:43 +08:00
|
|
|
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
void
|
|
|
|
ngx_close_connection(ngx_connection_t *c)
|
2004-09-07 23:29:22 +08:00
|
|
|
{
|
|
|
|
ngx_socket_t fd;
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
if (c->fd == -1) {
|
2004-09-07 23:29:22 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, c->log, 0, "connection already closed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->read->timer_set) {
|
|
|
|
ngx_del_timer(c->read);
|
|
|
|
}
|
2005-11-15 21:30:52 +08:00
|
|
|
|
2004-09-07 23:29:22 +08:00
|
|
|
if (c->write->timer_set) {
|
|
|
|
ngx_del_timer(c->write);
|
|
|
|
}
|
2005-11-15 21:30:52 +08:00
|
|
|
|
2004-09-07 23:29:22 +08:00
|
|
|
if (ngx_del_conn) {
|
|
|
|
ngx_del_conn(c, NGX_CLOSE_EVENT);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (c->read->active || c->read->disabled) {
|
|
|
|
ngx_del_event(c->read, NGX_READ_EVENT, NGX_CLOSE_EVENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->write->active || c->write->disabled) {
|
|
|
|
ngx_del_event(c->write, NGX_WRITE_EVENT, NGX_CLOSE_EVENT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if (NGX_THREADS)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we have to clean the connection information before the closing
|
|
|
|
* because another thread may reopen the same file descriptor
|
|
|
|
* before we clean the connection
|
|
|
|
*/
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_mutex_lock(ngx_posted_events_mutex);
|
2004-09-07 23:29:22 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (c->read->prev) {
|
|
|
|
ngx_delete_posted_event(c->read);
|
|
|
|
}
|
2004-09-07 23:29:22 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (c->write->prev) {
|
|
|
|
ngx_delete_posted_event(c->write);
|
|
|
|
}
|
2004-09-07 23:29:22 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
c->read->closed = 1;
|
|
|
|
c->write->closed = 1;
|
2004-09-07 23:29:22 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
if (c->single_connection) {
|
|
|
|
ngx_unlock(&c->lock);
|
|
|
|
c->read->locked = 0;
|
|
|
|
c->write->locked = 0;
|
2004-09-07 23:29:22 +08:00
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
ngx_mutex_unlock(ngx_posted_events_mutex);
|
|
|
|
|
2004-09-07 23:29:22 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
if (c->read->prev) {
|
|
|
|
ngx_delete_posted_event(c->read);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->write->prev) {
|
|
|
|
ngx_delete_posted_event(c->write);
|
|
|
|
}
|
|
|
|
|
|
|
|
c->read->closed = 1;
|
|
|
|
c->write->closed = 1;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-09-23 19:02:22 +08:00
|
|
|
ngx_free_connection(c);
|
|
|
|
|
2004-09-07 23:29:22 +08:00
|
|
|
fd = c->fd;
|
|
|
|
c->fd = (ngx_socket_t) -1;
|
|
|
|
|
|
|
|
if (ngx_close_socket(fd) == -1) {
|
|
|
|
|
|
|
|
/* we use ngx_cycle->log because c->log was in c->pool */
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, ngx_socket_errno,
|
|
|
|
ngx_close_socket_n " failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
ngx_int_t
|
|
|
|
ngx_connection_error(ngx_connection_t *c, ngx_err_t err, char *text)
|
2004-02-09 15:46:43 +08:00
|
|
|
{
|
2004-02-12 01:08:49 +08:00
|
|
|
ngx_uint_t level;
|
2004-02-09 15:46:43 +08:00
|
|
|
|
|
|
|
if (err == NGX_ECONNRESET
|
2004-02-11 00:23:38 +08:00
|
|
|
&& c->log_error == NGX_ERROR_IGNORE_ECONNRESET)
|
2004-02-09 15:46:43 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-08-30 18:55:07 +08:00
|
|
|
if (err == 0
|
|
|
|
|| err == NGX_ECONNRESET
|
2004-11-11 22:07:14 +08:00
|
|
|
#if !(NGX_WIN32)
|
2004-03-04 15:04:55 +08:00
|
|
|
|| err == NGX_EPIPE
|
|
|
|
#endif
|
2004-03-15 04:46:25 +08:00
|
|
|
|| err == NGX_ENOTCONN
|
2005-12-07 22:51:31 +08:00
|
|
|
|| err == NGX_ETIMEDOUT
|
2004-03-15 04:46:25 +08:00
|
|
|
|| err == NGX_ECONNREFUSED
|
|
|
|
|| err == NGX_EHOSTUNREACH)
|
2004-03-04 15:04:55 +08:00
|
|
|
{
|
2004-02-11 00:23:38 +08:00
|
|
|
switch (c->log_error) {
|
2004-02-09 15:46:43 +08:00
|
|
|
|
2004-02-12 01:08:49 +08:00
|
|
|
case NGX_ERROR_IGNORE_ECONNRESET:
|
2004-02-09 15:46:43 +08:00
|
|
|
case NGX_ERROR_INFO:
|
|
|
|
level = NGX_LOG_INFO;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NGX_ERROR_ERR:
|
|
|
|
level = NGX_LOG_ERR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
level = NGX_LOG_CRIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
level = NGX_LOG_CRIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_log_error(level, c->log, err, text);
|
|
|
|
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|