nginx/src/http/ngx_http_event.c

1489 lines
41 KiB
C
Raw Normal View History

#include <ngx_config.h>
2002-08-26 23:18:19 +08:00
#include <ngx_core.h>
2003-01-24 02:47:54 +08:00
#include <ngx_event.h>
#include <ngx_http.h>
2002-09-02 22:48:24 +08:00
2003-05-12 23:52:24 +08:00
static void ngx_http_init_request(ngx_event_t *ev);
static void ngx_http_process_request_line(ngx_event_t *rev);
static void ngx_http_process_request_headers(ngx_event_t *rev);
static ssize_t ngx_http_read_request_header(ngx_http_request_t *r);
2003-05-14 00:02:32 +08:00
static void ngx_http_writer(ngx_event_t *ev);
2003-05-12 23:52:24 +08:00
2003-05-15 23:42:53 +08:00
static void ngx_http_block_read(ngx_event_t *ev);
static void ngx_http_read_discarded_body_event(ngx_event_t *rev);
static int ngx_http_read_discarded_body(ngx_http_request_t *r);
2002-09-12 22:42:29 +08:00
2003-05-14 00:02:32 +08:00
static void ngx_http_set_keepalive(ngx_http_request_t *r);
static void ngx_http_keepalive_handler(ngx_event_t *ev);
static void ngx_http_set_lingering_close(ngx_http_request_t *r);
static void ngx_http_lingering_close_handler(ngx_event_t *ev);
2003-05-22 23:23:47 +08:00
static void ngx_http_empty_handler(ngx_event_t *wev);
2003-05-14 00:02:32 +08:00
2003-03-21 00:09:44 +08:00
static void ngx_http_header_parse_error(ngx_http_request_t *r, int parse_err);
2002-08-26 23:18:19 +08:00
static size_t ngx_http_log_error(void *data, char *buf, size_t len);
2003-05-12 23:52:24 +08:00
/* NGX_HTTP_PARSE_ ... errors */
2002-08-26 23:18:19 +08:00
2002-08-30 00:59:54 +08:00
static char *header_errors[] = {
"client %s sent invalid method",
"client %s sent invalid request",
2002-09-13 22:47:42 +08:00
"client %s sent too long URI",
2003-05-15 23:42:53 +08:00
"client %s sent invalid method in HTTP/0.9 request",
2003-03-04 14:33:48 +08:00
"client %s sent invalid header, URL: %s",
"client %s sent too long header line, URL: %s",
2003-04-25 22:43:13 +08:00
"client %s sent HTTP/1.1 request without \"Host\" header, URL: %s",
"client %s sent invalid \"Content-Length\" header, URL: %s"
2002-08-30 00:59:54 +08:00
};
2003-03-04 14:33:48 +08:00
static ngx_http_header_t headers_in[] = {
2003-03-21 00:09:44 +08:00
{ ngx_string("Host"), offsetof(ngx_http_headers_in_t, host) },
{ ngx_string("Connection"), offsetof(ngx_http_headers_in_t, connection) },
2003-05-23 19:53:01 +08:00
{ ngx_string("If-Modified-Since"),
2003-04-09 23:42:08 +08:00
offsetof(ngx_http_headers_in_t, if_modified_since) },
2003-05-23 19:53:01 +08:00
{ ngx_string("Content-Length"),
2003-04-25 22:43:13 +08:00
offsetof(ngx_http_headers_in_t, content_length) },
2003-06-02 23:24:30 +08:00
{ ngx_string("Range"), offsetof(ngx_http_headers_in_t, range) },
2003-05-14 00:02:32 +08:00
#if 0
2003-06-02 23:24:30 +08:00
{ ngx_string("If-Range"), offsetof(ngx_http_headers_in_t, if_range) },
#endif
2003-05-14 00:02:32 +08:00
2003-03-21 00:09:44 +08:00
{ ngx_string("User-Agent"), offsetof(ngx_http_headers_in_t, user_agent) },
2003-03-21 00:09:44 +08:00
{ ngx_null_string, 0 }
};
2003-05-12 23:52:24 +08:00
void ngx_http_init_connection(ngx_connection_t *c)
{
2003-05-27 20:18:54 +08:00
int event;
ngx_event_t *rev;
ngx_http_log_ctx_t *lcx;
2002-10-05 01:58:04 +08:00
2003-06-11 23:28:34 +08:00
c->addr_text.data = ngx_palloc(c->pool, c->listening->addr_text_max_len);
2003-05-12 23:52:24 +08:00
if (c->addr_text.data == NULL) {
ngx_http_close_connection(c);
return;
}
2002-12-11 02:05:12 +08:00
2003-06-11 23:28:34 +08:00
c->addr_text.len = ngx_sock_ntop(c->listening->family, c->sockaddr,
c->addr_text.data,
c->listening->addr_text_max_len);
2003-01-30 15:28:09 +08:00
if (c->addr_text.len == 0) {
2003-05-12 23:52:24 +08:00
ngx_http_close_connection(c);
return;
}
lcx = ngx_pcalloc(c->pool, sizeof(ngx_http_log_ctx_t));
if (lcx == NULL) {
ngx_http_close_connection(c);
return;
2003-01-30 15:28:09 +08:00
}
2002-08-26 23:18:19 +08:00
2003-05-12 23:52:24 +08:00
lcx->client = c->addr_text.data;
lcx->action = "reading client request line";
c->log->data = lcx;
2002-08-26 23:18:19 +08:00
c->log->handler = ngx_http_log_error;
2003-05-12 23:52:24 +08:00
rev = c->read;
rev->event_handler = ngx_http_init_request;
2003-02-07 01:21:13 +08:00
2003-03-21 00:09:44 +08:00
if (rev->ready) {
2003-05-12 23:52:24 +08:00
/* deferred accept */
ngx_http_init_request(rev);
return;
2003-01-27 05:08:14 +08:00
}
2003-02-07 01:21:13 +08:00
2003-06-11 23:28:34 +08:00
ngx_add_timer(rev, c->listening->post_accept_timeout);
2003-03-21 00:09:44 +08:00
rev->timer_set = 1;
2003-01-27 05:08:14 +08:00
2003-05-12 23:52:24 +08:00
if (ngx_event_flags & (NGX_HAVE_AIO_EVENT|NGX_HAVE_EDGE_EVENT)) {
/* aio, iocp, epoll */
ngx_http_init_request(rev);
return;
2003-01-27 05:08:14 +08:00
}
2003-02-07 01:21:13 +08:00
2003-05-12 23:52:24 +08:00
if (ngx_event_flags & NGX_HAVE_CLEAR_EVENT) {
/* kqueue */
event = NGX_CLEAR_EVENT;
2003-02-07 01:21:13 +08:00
2003-05-12 23:52:24 +08:00
} else {
/* select, poll, /dev/poll */
event = NGX_LEVEL_EVENT;
2002-08-30 00:59:54 +08:00
}
2003-02-07 01:21:13 +08:00
2003-05-12 23:52:24 +08:00
if (ngx_add_event(rev, NGX_READ_EVENT, event) == NGX_ERROR) {
ngx_http_close_connection(c);
}
}
2002-08-26 23:18:19 +08:00
2003-05-12 23:52:24 +08:00
static void ngx_http_init_request(ngx_event_t *rev)
{
2003-05-27 20:18:54 +08:00
int i;
socklen_t len;
struct sockaddr_in addr_in;
2003-05-23 19:53:01 +08:00
ngx_connection_t *c;
ngx_http_request_t *r;
2003-05-27 20:18:54 +08:00
ngx_http_in_port_t *in_port;
ngx_http_in_addr_t *in_addr;
ngx_http_server_name_t *server_name;
2003-05-23 19:53:01 +08:00
ngx_http_core_srv_conf_t *cscf;
2003-05-20 00:39:14 +08:00
c = rev->data;
2003-05-27 20:18:54 +08:00
r = ngx_pcalloc(c->pool, sizeof(ngx_http_request_t));
if (r == NULL) {
ngx_http_close_connection(c);
return;
}
/* find the server configuration for the address:port */
/* AF_INET only */
in_port = c->servers;
in_addr = in_port->addrs.elts;
2003-07-07 14:11:50 +08:00
ngx_log_debug(rev->log, "IN: %08x" _ in_port);
2003-05-27 20:18:54 +08:00
r->port = in_port->port;
r->port_name = &in_port->port_name;
i = 0;
if (in_port->addrs.nelts > 1) {
2003-06-11 23:28:34 +08:00
/*
* there're the several addresses on this port and one of them
* is "*:port" so getsockname() is needed to determine
* the server address.
* AcceptEx() already gave this address.
*/
2003-05-27 20:18:54 +08:00
2003-06-11 23:28:34 +08:00
#if (WIN32)
if (c->local_sockaddr) {
r->in_addr =
((struct sockaddr_in *) c->local_sockaddr)->sin_addr.s_addr;
2003-05-27 20:18:54 +08:00
2003-06-11 23:28:34 +08:00
} else {
#endif
len = sizeof(struct sockaddr_in);
if (getsockname(c->fd, (struct sockaddr *) &addr_in, &len) == -1) {
ngx_log_error(NGX_LOG_CRIT, rev->log, ngx_socket_errno,
"getsockname() failed");
ngx_http_close_connection(c);
return;
}
#if (WIN32)
2003-05-27 20:18:54 +08:00
}
2003-06-11 23:28:34 +08:00
#endif
2003-05-27 20:18:54 +08:00
r->in_addr = addr_in.sin_addr.s_addr;
/* the last in_port->addrs address is "*" */
for ( /* void */ ; i < in_port->addrs.nelts - 1; i++) {
if (in_addr[i].addr == r->in_addr) {
break;
}
}
} else {
r->in_addr = in_addr[0].addr;
}
r->virtual_names = &in_addr[i].names;
/* the default server configuration for the address:port */
cscf = in_addr[i].core_srv_conf;
r->main_conf = cscf->ctx->main_conf;
r->srv_conf = cscf->ctx->srv_conf;
r->loc_conf = cscf->ctx->loc_conf;
server_name = cscf->server_names.elts;
r->server_name = &server_name->name;
2002-09-16 23:01:44 +08:00
if (c->buffer == NULL) {
2003-05-12 23:52:24 +08:00
c->buffer = ngx_create_temp_hunk(c->pool,
2003-05-23 19:53:01 +08:00
cscf->client_header_buffer_size,
2003-05-12 23:52:24 +08:00
0, 0);
if (c->buffer == NULL) {
ngx_http_close_connection(c);
return;
}
2002-09-16 23:01:44 +08:00
}
2003-05-23 19:53:01 +08:00
r->pool = ngx_create_pool(cscf->request_pool_size, c->log);
2003-05-12 23:52:24 +08:00
if (r->pool == NULL) {
ngx_http_close_connection(c);
return;
}
2003-05-12 23:52:24 +08:00
r->headers_out.headers = ngx_create_table(r->pool, 10);
if (r->headers_out.headers == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
r->ctx = ngx_pcalloc(r->pool, sizeof(void *) * ngx_http_max_module);
if (r->ctx == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
2002-09-11 23:18:33 +08:00
2003-05-12 23:52:24 +08:00
c->sent = 0;
c->data = r;
r->connection = c;
r->pipeline = c->pipeline;
r->header_in = c->buffer;
r->file.fd = NGX_INVALID_FILE;
2003-04-25 22:43:13 +08:00
r->headers_in.content_length_n = -1;
2002-12-15 14:25:09 +08:00
r->headers_out.content_length = -1;
r->headers_out.last_modified_time = -1;
2003-05-12 23:52:24 +08:00
rev->event_handler = ngx_http_process_request_line;
ngx_http_process_request_line(rev);
}
2002-08-26 23:18:19 +08:00
2003-05-12 23:52:24 +08:00
static void ngx_http_process_request_line(ngx_event_t *rev)
{
2003-05-23 19:53:01 +08:00
int rc, offset;
ssize_t n;
ngx_connection_t *c;
ngx_http_request_t *r;
ngx_http_log_ctx_t *lcx;
ngx_http_core_srv_conf_t *cscf;
2002-08-26 23:18:19 +08:00
2003-05-20 00:39:14 +08:00
c = rev->data;
r = c->data;
2003-05-12 23:52:24 +08:00
ngx_log_debug(rev->log, "http process request line");
2003-03-21 00:09:44 +08:00
if (rev->timedout) {
2003-05-12 23:52:24 +08:00
ngx_http_close_request(r, NGX_HTTP_REQUEST_TIME_OUT);
ngx_http_close_connection(c);
return;
2003-03-21 00:09:44 +08:00
}
2003-05-12 23:52:24 +08:00
n = ngx_http_read_request_header(r);
2003-01-25 00:09:40 +08:00
2003-05-12 23:52:24 +08:00
if (n == NGX_AGAIN || n == NGX_ERROR) {
return;
2003-01-25 00:09:40 +08:00
}
2003-03-21 00:09:44 +08:00
2003-05-12 23:52:24 +08:00
rc = ngx_parse_http_request_line(r);
2003-03-21 00:09:44 +08:00
2002-08-30 00:59:54 +08:00
if (rc == NGX_OK) {
2003-03-21 00:09:44 +08:00
2003-05-12 23:52:24 +08:00
/* the request line has been parsed successfully */
2003-06-02 23:24:30 +08:00
/* STUB: we need to handle such URIs */
if (r->complex_uri || r->unusual_uri) {
2003-06-03 23:42:58 +08:00
r->request_line.len = r->request_end - r->request_start;
r->request_line.data = r->request_start;
r->request_line.data[r->request_line.len] = '\0';
2003-06-02 23:24:30 +08:00
ngx_http_header_parse_error(r, NGX_HTTP_PARSE_INVALID_REQUEST);
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
return;
}
2003-05-27 20:18:54 +08:00
cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2003-05-20 00:39:14 +08:00
2003-04-08 23:40:10 +08:00
if (r->http_version >= NGX_HTTP_VERSION_10
2003-05-23 19:53:01 +08:00
&& cscf->large_client_header == 0
2003-04-08 23:40:10 +08:00
&& r->header_in->pos == r->header_in->end)
{
2003-05-12 23:52:24 +08:00
/* no space for "\r\n" at the end of the header */
2003-04-08 23:40:10 +08:00
ngx_http_header_parse_error(r, NGX_HTTP_PARSE_TOO_LONG_URI);
2003-05-12 23:52:24 +08:00
ngx_http_finalize_request(r, NGX_HTTP_REQUEST_URI_TOO_LARGE);
return;
2003-04-08 23:40:10 +08:00
}
2003-03-04 14:33:48 +08:00
/* copy URI */
2003-03-21 00:09:44 +08:00
if (r->args_start) {
r->uri.len = r->args_start - 1 - r->uri_start;
} else {
r->uri.len = r->uri_end - r->uri_start;
}
2003-05-12 23:52:24 +08:00
r->uri.data = ngx_palloc(r->pool, r->uri.len + 1);
if (r->uri.data == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
2003-03-21 00:09:44 +08:00
2002-12-11 02:05:12 +08:00
ngx_cpystrn(r->uri.data, r->uri_start, r->uri.len + 1);
2003-05-27 20:18:54 +08:00
#if 1 /* THINK: needed to log url on errors in proxy only ? */
2003-05-20 00:39:14 +08:00
/* copy unparsed URI */
r->unparsed_uri.len = r->uri_end - r->uri_start;
r->unparsed_uri.data = ngx_palloc(r->pool, r->unparsed_uri.len + 1);
if (r->unparsed_uri.data == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
ngx_cpystrn(r->unparsed_uri.data, r->uri_start,
r->unparsed_uri.len + 1);
#endif
2003-03-21 00:09:44 +08:00
r->request_line.len = r->request_end - r->request_start;
2003-05-14 00:02:32 +08:00
/* if the large client headers are enabled then
2003-03-06 01:30:51 +08:00
we need to copy a request line */
2003-03-04 14:33:48 +08:00
2003-05-23 19:53:01 +08:00
if (cscf->large_client_header) {
2003-05-12 23:52:24 +08:00
r->request_line.data = ngx_palloc(r->pool, r->request_line.len + 1);
if (r->request_line.data == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
2003-03-21 00:09:44 +08:00
2003-03-05 14:37:42 +08:00
ngx_cpystrn(r->request_line.data, r->request_start,
2003-03-04 14:33:48 +08:00
r->request_line.len + 1);
2002-12-03 23:45:38 +08:00
2003-03-04 14:33:48 +08:00
} else {
2003-03-05 14:37:42 +08:00
r->request_line.data = r->request_start;
2003-03-04 14:33:48 +08:00
r->request_line.data[r->request_line.len] = '\0';
}
/* copy URI extention if it exists */
2003-03-21 00:09:44 +08:00
2002-09-16 23:01:44 +08:00
if (r->uri_ext) {
2003-03-21 00:09:44 +08:00
if (r->args_start) {
r->exten.len = r->args_start - 1 - r->uri_ext;
} else {
r->exten.len = r->uri_end - r->uri_ext;
}
2003-05-12 23:52:24 +08:00
r->exten.data = ngx_palloc(r->pool, r->exten.len + 1);
if (r->exten.data == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
2003-03-21 00:09:44 +08:00
2002-12-11 02:05:12 +08:00
ngx_cpystrn(r->exten.data, r->uri_ext, r->exten.len + 1);
2002-09-16 23:01:44 +08:00
}
2003-03-21 00:09:44 +08:00
/* copy URI arguments if they exist */
if (r->args_start && r->uri_end > r->args_start) {
r->args.len = r->uri_end - r->args_start;
2003-05-12 23:52:24 +08:00
r->args.data = ngx_palloc(r->pool, r->args.len + 1);
if (r->args.data == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
2003-03-21 00:09:44 +08:00
ngx_cpystrn(r->args.data, r->args_start, r->args.len + 1);
}
2003-05-12 23:52:24 +08:00
#if 1 /* DEBUG */
if (r->exten.data == NULL) { r->exten.data = ""; }
if (r->args.data == NULL) { r->args.data = ""; }
ngx_log_debug(c->log, "HTTP: %d, %d, '%s', '%s', '%s'" _
2002-12-11 02:05:12 +08:00
r->method _ r->http_version _
2003-03-21 00:09:44 +08:00
r->uri.data _ r->exten.data _ r->args.data);
2003-05-12 23:52:24 +08:00
if (r->exten.data[0] == '\0') { r->exten.data = NULL; }
if (r->args.data[0] == '\0') { r->args.data = NULL; }
2002-12-24 02:22:18 +08:00
#endif
2002-08-30 00:59:54 +08:00
2003-06-02 23:24:30 +08:00
if (r->http_version < NGX_HTTP_VERSION_10) {
2003-05-15 23:42:53 +08:00
rev->event_handler = ngx_http_block_read;
2003-05-14 00:02:32 +08:00
ngx_http_handler(r);
return;
2003-03-06 01:30:51 +08:00
}
2002-09-13 22:47:42 +08:00
2003-05-20 00:39:14 +08:00
lcx = c->log->data;
2003-03-21 00:09:44 +08:00
lcx->action = "reading client request headers";
2003-05-20 00:39:14 +08:00
lcx->url = r->unparsed_uri.data;
2003-05-12 23:52:24 +08:00
r->headers_in.headers = ngx_create_table(r->pool, 10);
2003-03-21 00:09:44 +08:00
2003-05-23 19:53:01 +08:00
if (cscf->large_client_header
2003-03-21 00:09:44 +08:00
&& r->header_in->pos == r->header_in->last)
{
r->header_in->pos = r->header_in->last = r->header_in->start;
}
2002-08-30 00:59:54 +08:00
2003-05-14 00:02:32 +08:00
rev->event_handler = ngx_http_process_request_headers;
ngx_http_process_request_headers(rev);
return;
2003-05-12 23:52:24 +08:00
} else if (rc != NGX_AGAIN) {
2003-03-06 01:30:51 +08:00
2003-05-12 23:52:24 +08:00
/* there was error while a request line parsing */
2003-03-21 00:09:44 +08:00
ngx_http_header_parse_error(r, rc);
2003-05-12 23:52:24 +08:00
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
2003-05-14 00:02:32 +08:00
2003-05-12 23:52:24 +08:00
return;
}
2003-03-06 01:30:51 +08:00
/* NGX_AGAIN: a request line parsing is still not complete */
2003-03-12 04:38:13 +08:00
if (r->header_in->last == r->header_in->end) {
2002-09-13 22:47:42 +08:00
2003-03-06 01:30:51 +08:00
/* If it's a pipelined request and a request line is not complete
2003-05-12 23:52:24 +08:00
then we need to copy it to the start of the r->header_in hunk.
2003-03-12 04:38:13 +08:00
We need to copy it here only if the large client headers
are enabled otherwise a request line had been already copied
2003-05-12 23:52:24 +08:00
to the start of the r->header_in hunk in ngx_http_set_keepalive() */
2003-03-06 01:30:51 +08:00
2003-05-27 20:18:54 +08:00
cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2003-05-20 00:39:14 +08:00
2003-05-23 19:53:01 +08:00
if (cscf->large_client_header) {
2003-03-06 01:30:51 +08:00
offset = r->request_start - r->header_in->start;
if (offset == 0) {
2003-03-21 00:09:44 +08:00
ngx_http_header_parse_error(r, NGX_HTTP_PARSE_TOO_LONG_URI);
2003-05-12 23:52:24 +08:00
ngx_http_finalize_request(r, NGX_HTTP_REQUEST_URI_TOO_LARGE);
2003-05-14 00:02:32 +08:00
2003-05-12 23:52:24 +08:00
return;
2003-03-06 01:30:51 +08:00
}
ngx_memcpy(r->header_in->start, r->request_start,
2003-03-12 04:38:13 +08:00
r->header_in->last - r->request_start);
2003-03-06 01:30:51 +08:00
2003-03-12 04:38:13 +08:00
r->header_in->pos -= offset;
r->header_in->last -= offset;
2003-03-06 01:30:51 +08:00
r->request_start = r->header_in->start;
r->request_end -= offset;
r->uri_start -= offset;
r->uri_end -= offset;
if (r->uri_ext) {
r->uri_ext -= offset;
}
if (r->args_start) {
r->args_start -= offset;
}
} else {
2003-03-21 00:09:44 +08:00
ngx_http_header_parse_error(r, NGX_HTTP_PARSE_TOO_LONG_URI);
2003-05-12 23:52:24 +08:00
ngx_http_finalize_request(r, NGX_HTTP_REQUEST_URI_TOO_LARGE);
2003-03-06 01:30:51 +08:00
}
2002-09-13 22:47:42 +08:00
}
2003-05-12 23:52:24 +08:00
return;
}
2002-09-13 22:47:42 +08:00
2003-05-12 23:52:24 +08:00
static void ngx_http_process_request_headers(ngx_event_t *rev)
{
2003-05-23 19:53:01 +08:00
int rc, i, offset;
size_t len;
ssize_t n;
ngx_table_elt_t *h;
ngx_connection_t *c;
ngx_http_request_t *r;
2003-05-27 20:18:54 +08:00
ngx_http_server_name_t *name;
2003-05-23 19:53:01 +08:00
ngx_http_core_srv_conf_t *cscf;
2003-05-20 00:39:14 +08:00
c = rev->data;
r = c->data;
2003-05-14 00:02:32 +08:00
ngx_log_debug(rev->log, "http process request header line");
2003-05-12 23:52:24 +08:00
if (rev->timedout) {
ngx_http_close_request(r, NGX_HTTP_REQUEST_TIME_OUT);
ngx_http_close_connection(c);
return;
}
2003-05-27 20:18:54 +08:00
cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2003-05-14 00:02:32 +08:00
rc = NGX_AGAIN;
2003-05-12 23:52:24 +08:00
2002-08-30 00:59:54 +08:00
for ( ;; ) {
2003-05-14 00:02:32 +08:00
if (rc == NGX_AGAIN) {
n = ngx_http_read_request_header(r);
2002-08-30 00:59:54 +08:00
2003-05-14 00:02:32 +08:00
if (n == NGX_AGAIN || n == NGX_ERROR) {
return;
}
}
rc = ngx_parse_http_header_line(r, r->header_in);
2003-03-21 00:09:44 +08:00
2003-03-06 01:30:51 +08:00
if (rc == NGX_OK) {
2003-05-14 00:02:32 +08:00
/* a header line has been parsed successfully */
h = ngx_push_table(r->headers_in.headers);
if (h == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
2003-03-21 00:09:44 +08:00
}
2003-05-14 00:02:32 +08:00
h->key.len = r->header_name_end - r->header_name_start;
h->value.len = r->header_end - r->header_start;
/* if the large client headers are enabled then
we need to copy the header name and value */
2003-05-23 19:53:01 +08:00
if (cscf->large_client_header) {
2003-05-14 00:02:32 +08:00
h->key.data = ngx_palloc(r->pool,
h->key.len + 1 + h->value.len + 1);
if (h->key.data == NULL) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(c);
return;
}
h->value.data = h->key.data + h->key.len + 1;
ngx_cpystrn(h->key.data, r->header_name_start, h->key.len + 1);
ngx_cpystrn(h->value.data, r->header_start, h->value.len + 1);
} else {
h->key.data = r->header_name_start;
h->key.data[h->key.len] = '\0';
h->value.data = r->header_start;
h->value.data[h->value.len] = '\0';
}
for (i = 0; headers_in[i].name.len != 0; i++) {
if (headers_in[i].name.len != h->key.len) {
continue;
}
if (ngx_strcasecmp(headers_in[i].name.data, h->key.data) == 0) {
*((ngx_table_elt_t **)
((char *) &r->headers_in + headers_in[i].offset)) = h;
}
}
ngx_log_debug(r->connection->log, "HTTP header: '%s: %s'" _
h->key.data _ h->value.data);
2003-05-23 19:53:01 +08:00
if (cscf->large_client_header
2003-03-21 00:09:44 +08:00
&& r->header_in->pos == r->header_in->last)
{
r->header_in->pos = r->header_in->last = r->header_in->start;
2003-01-28 23:56:37 +08:00
}
2003-05-27 20:18:54 +08:00
continue;
2003-05-14 00:02:32 +08:00
} else if (rc == NGX_HTTP_PARSE_HEADER_DONE) {
2002-09-02 22:48:24 +08:00
2003-05-14 00:02:32 +08:00
/* a whole header has been parsed successfully */
2003-03-21 00:09:44 +08:00
2002-09-02 22:48:24 +08:00
ngx_log_debug(r->connection->log, "HTTP header done");
2002-12-15 14:25:09 +08:00
2003-01-28 23:56:37 +08:00
if (r->headers_in.host) {
2003-03-05 14:37:42 +08:00
for (len = 0; len < r->headers_in.host->value.len; len++) {
if (r->headers_in.host->value.data[len] == ':') {
break;
}
}
r->headers_in.host_name_len = len;
2003-01-28 23:56:37 +08:00
2003-05-27 20:18:54 +08:00
/* find the name based server configuration */
name = r->virtual_names->elts;
for (i = 0; i < r->virtual_names->nelts; i++) {
if (r->headers_in.host_name_len != name[i].name.len) {
continue;
}
if (ngx_strncasecmp(r->headers_in.host->value.data,
name[i].name.data,
r->headers_in.host_name_len) == 0)
{
r->srv_conf = name[i].core_srv_conf->ctx->srv_conf;
r->loc_conf = name[i].core_srv_conf->ctx->loc_conf;
break;
}
}
2002-12-15 14:25:09 +08:00
} else {
2003-03-05 14:37:42 +08:00
if (r->http_version > NGX_HTTP_VERSION_10) {
2003-03-21 00:09:44 +08:00
ngx_http_header_parse_error(r,
NGX_HTTP_PARSE_NO_HOST_HEADER);
2003-05-14 00:02:32 +08:00
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
return;
2003-03-05 14:37:42 +08:00
}
r->headers_in.host_name_len = 0;
2002-12-15 14:25:09 +08:00
}
2002-08-30 00:59:54 +08:00
2003-04-25 22:43:13 +08:00
if (r->headers_in.content_length) {
r->headers_in.content_length_n =
ngx_atoi(r->headers_in.content_length->value.data,
r->headers_in.content_length->value.len);
if (r->headers_in.content_length_n == NGX_ERROR) {
ngx_http_header_parse_error(r,
NGX_HTTP_PARSE_INVALID_CL_HEADER);
2003-05-14 00:02:32 +08:00
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
return;
2003-04-25 22:43:13 +08:00
}
}
2003-05-15 23:42:53 +08:00
rev->event_handler = ngx_http_block_read;
2003-05-14 00:02:32 +08:00
ngx_http_handler(r);
return;
2003-03-21 00:09:44 +08:00
2003-03-06 01:30:51 +08:00
} else if (rc != NGX_AGAIN) {
2003-05-14 00:02:32 +08:00
/* there was error while a header line parsing */
2003-03-21 00:09:44 +08:00
ngx_http_header_parse_error(r, rc);
2003-05-14 00:02:32 +08:00
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
return;
2003-03-06 01:30:51 +08:00
}
/* NGX_AGAIN: a header line parsing is still not complete */
2003-03-12 04:38:13 +08:00
if (r->header_in->last == r->header_in->end) {
2003-03-06 01:30:51 +08:00
2003-03-12 04:38:13 +08:00
/* if the large client headers are enabled then
2003-03-06 01:30:51 +08:00
we need to compact r->header_in hunk */
2003-05-23 19:53:01 +08:00
if (cscf->large_client_header) {
2003-03-06 01:30:51 +08:00
offset = r->header_name_start - r->header_in->start;
if (offset == 0) {
2003-03-21 00:09:44 +08:00
ngx_http_header_parse_error(r,
NGX_HTTP_PARSE_TOO_LONG_HEADER);
2003-05-14 00:02:32 +08:00
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
return;
2003-03-06 01:30:51 +08:00
}
ngx_memcpy(r->header_in->start, r->header_name_start,
2003-03-12 04:38:13 +08:00
r->header_in->last - r->header_name_start);
2003-03-06 01:30:51 +08:00
2003-03-12 04:38:13 +08:00
r->header_in->last -= offset;
r->header_in->pos -= offset;
2003-03-06 01:30:51 +08:00
r->header_name_start = r->header_in->start;
r->header_name_end -= offset;
r->header_start -= offset;
r->header_end -= offset;
} else {
2003-03-21 00:09:44 +08:00
ngx_http_header_parse_error(r, NGX_HTTP_PARSE_TOO_LONG_HEADER);
2003-05-14 00:02:32 +08:00
ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
return;
2003-03-06 01:30:51 +08:00
}
2003-03-04 14:33:48 +08:00
}
2002-08-30 00:59:54 +08:00
}
2002-09-02 22:48:24 +08:00
}
2002-09-13 22:47:42 +08:00
2003-05-14 00:02:32 +08:00
static ssize_t ngx_http_read_request_header(ngx_http_request_t *r)
2002-09-02 22:48:24 +08:00
{
2003-05-23 19:53:01 +08:00
int event;
ssize_t n;
ngx_event_t *rev;
ngx_http_core_srv_conf_t *cscf;
2003-06-11 23:28:34 +08:00
rev = r->connection->read;
2003-05-14 00:02:32 +08:00
n = r->header_in->last - r->header_in->pos;
2003-05-14 00:02:32 +08:00
if (n > 0) {
2003-06-11 23:28:34 +08:00
rev->ready = 0;
2003-05-14 00:02:32 +08:00
return n;
}
2003-03-04 14:33:48 +08:00
2003-06-11 23:28:34 +08:00
n = ngx_recv(r->connection, r->header_in->last,
r->header_in->end - r->header_in->last);
2003-03-21 00:09:44 +08:00
2003-05-14 00:02:32 +08:00
if (n == NGX_AGAIN) {
2003-05-15 23:42:53 +08:00
if (!r->header_timeout_set) {
2003-05-14 00:02:32 +08:00
if (rev->timer_set) {
ngx_del_timer(rev);
} else {
rev->timer_set = 1;
}
2003-05-27 20:18:54 +08:00
cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2003-05-20 00:39:14 +08:00
2003-05-23 19:53:01 +08:00
ngx_add_timer(rev, cscf->client_header_timeout);
2003-05-14 00:02:32 +08:00
r->header_timeout_set = 1;
2003-01-28 23:56:37 +08:00
}
2003-05-14 00:02:32 +08:00
if (!rev->active) {
if (ngx_event_flags & NGX_HAVE_CLEAR_EVENT) {
/* kqueue */
event = NGX_CLEAR_EVENT;
} else {
/* select, poll, /dev/poll */
event = NGX_LEVEL_EVENT;
}
if (ngx_add_event(rev, NGX_READ_EVENT, event) == NGX_ERROR) {
ngx_http_close_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_http_close_connection(r->connection);
return NGX_ERROR;
}
}
2003-05-14 00:02:32 +08:00
return NGX_AGAIN;
}
2003-05-14 00:02:32 +08:00
if (n == 0) {
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
"client closed prematurely connection");
}
2002-09-02 22:48:24 +08:00
2003-05-14 00:02:32 +08:00
if (n == 0 || n == NGX_ERROR) {
ngx_http_close_request(r, NGX_HTTP_BAD_REQUEST);
ngx_http_close_connection(r->connection);
return NGX_ERROR;
}
r->header_in->last += n;
return n;
2002-09-02 22:48:24 +08:00
}
2003-05-14 00:02:32 +08:00
void ngx_http_finalize_request(ngx_http_request_t *r, int error)
2002-12-11 02:05:12 +08:00
{
2003-05-20 23:37:55 +08:00
int rc;
2003-05-14 00:02:32 +08:00
ngx_event_t *rev, *wev;
2002-12-11 02:05:12 +08:00
2003-03-21 00:09:44 +08:00
rc = error;
2003-01-27 05:08:14 +08:00
2003-03-21 00:09:44 +08:00
if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
2002-12-11 02:05:12 +08:00
2003-03-21 00:09:44 +08:00
rev = r->connection->read;
if (rev->timer_set) {
ngx_del_timer(rev);
2003-05-15 23:42:53 +08:00
rev->timer_set = 0;
}
wev = r->connection->write;
if (wev->timer_set) {
ngx_del_timer(wev);
wev->timer_set = 0;
2003-03-21 00:09:44 +08:00
}
2003-03-04 14:33:48 +08:00
2003-03-21 00:09:44 +08:00
rc = ngx_http_special_response_handler(r, rc);
2003-06-11 23:28:34 +08:00
if (rc == NGX_AGAIN) {
return;
}
if (rc == NGX_ERROR) {
ngx_http_close_request(r, 0);
ngx_http_close_connection(r->connection);
return;
}
} else if (rc == NGX_ERROR) {
r->keepalive = 0;
r->lingering_close = 0;
2003-03-21 00:09:44 +08:00
}
2002-12-11 02:05:12 +08:00
2003-05-14 00:02:32 +08:00
rev = r->connection->read;
if (rev->timer_set) {
ngx_del_timer(rev);
rev->timer_set = 0;
}
2002-12-11 02:05:12 +08:00
2003-05-14 00:02:32 +08:00
wev = r->connection->write;
if (wev->timer_set) {
ngx_del_timer(wev);
wev->timer_set = 0;
}
2002-12-11 02:05:12 +08:00
2003-05-14 00:02:32 +08:00
if (r->keepalive != 0) {
ngx_http_set_keepalive(r);
2002-12-11 02:05:12 +08:00
2003-05-14 00:02:32 +08:00
} else if (r->lingering_close) {
ngx_http_set_lingering_close(r);
2002-12-11 02:05:12 +08:00
2003-05-14 00:02:32 +08:00
} else {
ngx_http_close_request(r, 0);
ngx_http_close_connection(r->connection);
2003-03-21 00:09:44 +08:00
}
2003-05-14 00:02:32 +08:00
}
2003-03-21 00:09:44 +08:00
2003-05-14 00:02:32 +08:00
void ngx_http_set_write_handler(ngx_http_request_t *r)
{
int event;
ngx_event_t *wev;
2003-05-20 00:39:14 +08:00
ngx_http_core_loc_conf_t *clcf;
2003-03-21 00:09:44 +08:00
2003-04-18 01:59:35 +08:00
wev = r->connection->write;
wev->event_handler = ngx_http_writer;
if (wev->delayed && wev->ready) {
2003-05-14 00:02:32 +08:00
return;
2003-04-18 01:59:35 +08:00
}
2003-05-27 20:18:54 +08:00
clcf = ngx_http_get_module_loc_conf(r->main ? r->main : r,
ngx_http_core_module);
2003-05-20 00:39:14 +08:00
ngx_add_timer(wev, clcf->send_timeout);
2003-04-18 01:59:35 +08:00
wev->timer_set = 1;
2003-02-07 01:21:13 +08:00
2003-03-21 00:09:44 +08:00
if (ngx_event_flags & (NGX_HAVE_AIO_EVENT|NGX_HAVE_EDGE_EVENT)) {
2003-05-14 00:02:32 +08:00
/* aio, iocp, epoll */
return;
2003-03-21 00:09:44 +08:00
}
2003-02-07 01:21:13 +08:00
2003-03-04 14:33:48 +08:00
#if (HAVE_LOWAT_EVENT) /* kqueue's NOTE_LOWAT */
2003-03-21 00:09:44 +08:00
if (ngx_event_flags & NGX_HAVE_LOWAT_EVENT) {
2003-05-20 00:39:14 +08:00
wev->lowat = clcf->send_lowat;
2003-03-21 00:09:44 +08:00
}
2003-03-04 14:33:48 +08:00
#endif
2003-03-21 00:09:44 +08:00
if (ngx_event_flags & NGX_HAVE_CLEAR_EVENT) {
2003-05-14 00:02:32 +08:00
/* kqueue */
2003-03-21 00:09:44 +08:00
event = NGX_CLEAR_EVENT;
2003-02-07 01:21:13 +08:00
2003-03-21 00:09:44 +08:00
} else {
2003-05-14 00:02:32 +08:00
/* select, poll, /dev/poll */
2003-02-11 15:14:40 +08:00
event = NGX_LEVEL_EVENT;
2002-12-11 02:05:12 +08:00
}
2003-03-21 00:09:44 +08:00
if (ngx_add_event(wev, NGX_WRITE_EVENT, event) == NGX_ERROR) {
2003-05-14 00:02:32 +08:00
ngx_http_close_request(r, 0);
ngx_http_close_connection(r->connection);
2002-12-11 02:05:12 +08:00
}
}
2003-05-14 00:02:32 +08:00
static void ngx_http_writer(ngx_event_t *wev)
2002-12-15 14:25:09 +08:00
{
2003-03-21 00:09:44 +08:00
int rc;
2003-05-14 00:02:32 +08:00
ngx_event_t *rev;
2002-12-15 14:25:09 +08:00
ngx_connection_t *c;
ngx_http_request_t *r;
2003-05-27 20:18:54 +08:00
ngx_http_core_loc_conf_t *clcf;
2002-12-15 14:25:09 +08:00
2003-05-27 20:18:54 +08:00
c = wev->data;
r = c->data;
2002-12-15 14:25:09 +08:00
rc = ngx_http_output_filter(r, NULL);
2003-05-14 00:02:32 +08:00
ngx_log_debug(c->log, "writer output filter: %d" _ rc);
2002-12-15 14:25:09 +08:00
if (rc == NGX_AGAIN) {
2003-05-27 20:18:54 +08:00
clcf = ngx_http_get_module_loc_conf(r->main ? r->main : r,
ngx_http_core_module);
2003-03-21 00:09:44 +08:00
if (wev->timer_set) {
ngx_del_timer(wev);
} else {
wev->timer_set = 1;
2002-12-15 14:25:09 +08:00
}
2003-05-27 20:18:54 +08:00
ngx_add_timer(wev, clcf->send_timeout);
2003-03-21 00:09:44 +08:00
2003-05-14 00:02:32 +08:00
return;
2002-12-15 14:25:09 +08:00
}
2003-05-14 00:02:32 +08:00
if (rc == NGX_ERROR) {
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
}
2002-12-15 14:25:09 +08:00
/* rc == NGX_OK */
2003-03-21 00:09:44 +08:00
ngx_log_debug(c->log, "http writer done");
2002-12-15 14:25:09 +08:00
2003-05-14 00:02:32 +08:00
rev = r->connection->read;
if (rev->timer_set) {
ngx_del_timer(rev);
rev->timer_set = 0;
2003-03-21 00:09:44 +08:00
}
2002-12-15 14:25:09 +08:00
2003-05-14 00:02:32 +08:00
if (wev->timer_set) {
ngx_del_timer(wev);
wev->timer_set = 0;
2003-05-12 23:52:24 +08:00
}
2003-05-14 00:02:32 +08:00
if (r->keepalive != 0) {
ngx_http_set_keepalive(r);
2003-05-12 23:52:24 +08:00
2003-05-20 00:39:14 +08:00
} else if (r->lingering_close) {
2003-05-14 00:02:32 +08:00
ngx_http_set_lingering_close(r);
2003-05-12 23:52:24 +08:00
2003-05-14 00:02:32 +08:00
} else {
ngx_http_close_request(r, 0);
2003-05-15 23:42:53 +08:00
ngx_http_close_connection(r->connection);
2003-05-12 23:52:24 +08:00
}
}
2003-05-15 23:42:53 +08:00
static void ngx_http_block_read(ngx_event_t *rev)
2002-12-11 02:05:12 +08:00
{
2003-05-15 23:42:53 +08:00
ngx_connection_t *c;
ngx_http_request_t *r;
ngx_log_debug(rev->log, "http read blocked");
2002-12-11 02:05:12 +08:00
2003-02-07 01:21:13 +08:00
/* aio does not call this handler */
2003-05-15 23:42:53 +08:00
if (ngx_event_flags & NGX_USE_LEVEL_EVENT) {
2003-02-07 01:21:13 +08:00
2003-05-15 23:42:53 +08:00
/* select, poll, /dev/poll */
2003-02-07 01:21:13 +08:00
2003-05-15 23:42:53 +08:00
rev->blocked = 1;
2003-02-07 01:21:13 +08:00
2003-05-15 23:42:53 +08:00
if (ngx_del_event(rev, NGX_READ_EVENT, 0) == NGX_ERROR) {
c = (ngx_connection_t *) rev->data;
r = (ngx_http_request_t *) c->data;
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
}
2003-02-07 01:21:13 +08:00
}
2003-05-15 23:42:53 +08:00
/* kqueue, epoll */
2002-12-11 02:05:12 +08:00
2003-05-15 23:42:53 +08:00
return;
2003-05-14 00:02:32 +08:00
}
2003-05-15 23:42:53 +08:00
2002-12-15 14:25:09 +08:00
int ngx_http_discard_body(ngx_http_request_t *r)
2002-09-02 22:48:24 +08:00
{
2003-05-15 23:42:53 +08:00
ssize_t size;
ngx_event_t *rev;
2003-01-27 05:08:14 +08:00
2003-05-15 23:42:53 +08:00
rev = r->connection->read;
2003-01-27 05:08:14 +08:00
2003-05-15 23:42:53 +08:00
ngx_log_debug(rev->log, "set discard body");
2003-05-15 23:42:53 +08:00
if (rev->timer_set) {
ngx_del_timer(rev);
rev->timer_set = 0;
2003-01-27 05:08:14 +08:00
}
2002-08-30 00:59:54 +08:00
2003-05-15 23:42:53 +08:00
if (r->headers_in.content_length_n > 0) {
size = r->header_in->last - r->header_in->pos;
if (size) {
if (r->headers_in.content_length_n > size) {
r->headers_in.content_length_n -= size;
} else {
r->header_in->pos += r->headers_in.content_length_n;
r->headers_in.content_length_n = 0;
return NGX_OK;
}
}
2003-05-23 19:53:01 +08:00
2003-05-15 23:42:53 +08:00
rev->event_handler = ngx_http_read_discarded_body_event;
if (rev->blocked) {
if (ngx_event_flags & NGX_USE_LEVEL_EVENT) {
if (ngx_add_event(rev, NGX_READ_EVENT, NGX_LEVEL_EVENT)
== NGX_ERROR) {
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
}
rev->blocked = 0;
return ngx_http_read_discarded_body(r);
}
2003-02-07 01:21:13 +08:00
}
2002-12-15 14:25:09 +08:00
return NGX_OK;
}
2002-12-11 02:05:12 +08:00
2003-05-15 23:42:53 +08:00
static void ngx_http_read_discarded_body_event(ngx_event_t *rev)
2002-08-26 23:18:19 +08:00
{
2003-05-15 23:42:53 +08:00
int rc;
ngx_connection_t *c;
ngx_http_request_t *r;
2002-09-02 22:48:24 +08:00
2003-05-27 20:18:54 +08:00
c = rev->data;
r = c->data;
2002-09-02 22:48:24 +08:00
2003-05-15 23:42:53 +08:00
rc = ngx_http_read_discarded_body(r);
if (rc != NGX_OK) {
ngx_http_close_request(r, rc);
ngx_http_close_connection(c);
2003-03-21 00:09:44 +08:00
}
2003-05-15 23:42:53 +08:00
}
2002-09-02 22:48:24 +08:00
2003-05-15 23:42:53 +08:00
static int ngx_http_read_discarded_body(ngx_http_request_t *r)
{
2003-06-12 13:54:39 +08:00
ssize_t size, n;
2003-05-27 20:18:54 +08:00
ngx_http_core_loc_conf_t *clcf;
2003-05-15 23:42:53 +08:00
ngx_log_debug(r->connection->log, "http read discarded body");
2003-01-09 13:36:00 +08:00
2003-05-27 20:18:54 +08:00
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
2003-01-09 13:36:00 +08:00
2003-03-21 00:09:44 +08:00
if (r->discarded_buffer == NULL) {
2003-05-27 20:18:54 +08:00
r->discarded_buffer = ngx_palloc(r->pool, clcf->discarded_buffer_size);
2003-05-15 23:42:53 +08:00
if (r->discarded_buffer == NULL) {
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
2003-03-21 00:09:44 +08:00
}
2002-09-02 22:48:24 +08:00
2003-04-25 22:43:13 +08:00
size = r->headers_in.content_length_n;
2003-05-27 20:18:54 +08:00
if (size > clcf->discarded_buffer_size) {
size = clcf->discarded_buffer_size;
2003-03-21 00:09:44 +08:00
}
2002-09-02 22:48:24 +08:00
2003-06-11 23:28:34 +08:00
n = ngx_recv(r->connection, r->discarded_buffer, size);
2003-03-21 00:09:44 +08:00
if (n == NGX_ERROR) {
2003-05-15 23:42:53 +08:00
return NGX_HTTP_BAD_REQUEST;
2003-03-21 00:09:44 +08:00
}
2002-09-02 22:48:24 +08:00
2003-03-21 00:09:44 +08:00
if (n == NGX_AGAIN) {
2002-09-12 22:42:29 +08:00
return NGX_OK;
2003-03-21 00:09:44 +08:00
}
2002-09-12 22:42:29 +08:00
2003-04-25 22:43:13 +08:00
r->headers_in.content_length_n -= n;
2003-05-15 23:42:53 +08:00
2002-09-12 22:42:29 +08:00
return NGX_OK;
2002-09-02 22:48:24 +08:00
}
2002-12-11 02:05:12 +08:00
2003-05-14 00:02:32 +08:00
static void ngx_http_set_keepalive(ngx_http_request_t *r)
2003-02-11 15:14:40 +08:00
{
2003-05-23 19:53:01 +08:00
int len, blocked;
ngx_hunk_t *h;
ngx_event_t *rev, *wev;
ngx_connection_t *c;
ngx_http_log_ctx_t *ctx;
ngx_http_core_srv_conf_t *cscf;
ngx_http_core_loc_conf_t *clcf;
2003-02-11 15:14:40 +08:00
2003-05-27 20:18:54 +08:00
c = r->connection;
2003-03-05 14:37:42 +08:00
rev = c->read;
2003-02-11 15:14:40 +08:00
2003-05-22 23:23:47 +08:00
ngx_log_debug(c->log, "set http keepalive handler");
2003-03-12 04:38:13 +08:00
ctx = (ngx_http_log_ctx_t *) c->log->data;
ctx->action = "closing request";
2003-03-21 00:09:44 +08:00
ngx_http_close_request(r, 0);
2003-03-12 04:38:13 +08:00
2003-05-21 21:28:21 +08:00
if (rev->timer_set) {
ngx_del_timer(rev);
} else {
rev->timer_set = 1;
}
2003-05-27 20:18:54 +08:00
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
2003-05-21 21:28:21 +08:00
ngx_add_timer(rev, clcf->keepalive_timeout);
2003-03-12 04:38:13 +08:00
if (rev->blocked && (ngx_event_flags & NGX_USE_LEVEL_EVENT)) {
2003-03-05 14:37:42 +08:00
if (ngx_add_event(rev, NGX_READ_EVENT, NGX_LEVEL_EVENT) == NGX_ERROR) {
2003-05-14 00:02:32 +08:00
ngx_http_close_connection(c);
return;
2003-02-11 15:14:40 +08:00
}
2003-05-14 00:02:32 +08:00
2003-03-12 04:38:13 +08:00
blocked = 1;
2003-03-05 14:37:42 +08:00
rev->blocked = 0;
2003-02-11 15:14:40 +08:00
2003-03-12 04:38:13 +08:00
} else {
blocked = 0;
}
2003-02-11 15:14:40 +08:00
2003-03-05 14:37:42 +08:00
h = c->buffer;
/* pipelined request */
2003-03-12 04:38:13 +08:00
if (h->pos < h->last) {
2003-03-05 14:37:42 +08:00
2003-03-21 00:09:44 +08:00
/* We do not know here whether a pipelined request is complete
so if the large client headers are not enabled
2003-03-12 04:38:13 +08:00
we need to copy the data to the start of c->buffer.
This copy should be rare because clients that support
pipelined requests (Mozilla 1.x, Opera 6.x) are still rare */
2003-03-05 14:37:42 +08:00
2003-05-27 20:18:54 +08:00
cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2003-05-20 00:39:14 +08:00
2003-05-23 19:53:01 +08:00
if (!cscf->large_client_header) {
len = h->last - h->pos;
2003-03-12 04:38:13 +08:00
ngx_memcpy(h->start, h->pos, len);
h->pos = h->start;
h->last = h->start + len;
2003-03-05 14:37:42 +08:00
}
2003-05-27 20:18:54 +08:00
ngx_log_debug(c->log, "pipelined request");
2003-03-05 14:37:42 +08:00
c->pipeline = 1;
ctx->action = "reading client pipelined request line";
2003-05-14 00:02:32 +08:00
ngx_http_init_request(rev);
return;
2003-03-05 14:37:42 +08:00
}
c->pipeline = 0;
2003-03-12 04:38:13 +08:00
h->pos = h->last = h->start;
2003-03-05 14:37:42 +08:00
rev->event_handler = ngx_http_keepalive_handler;
2003-03-21 00:09:44 +08:00
wev = c->write;
2003-03-05 14:37:42 +08:00
2003-05-22 23:23:47 +08:00
if (wev->active) {
if (ngx_event_flags & NGX_USE_LEVEL_EVENT) {
if (ngx_del_event(wev, NGX_WRITE_EVENT, 0) == NGX_ERROR) {
ngx_http_close_connection(c);
return;
}
} else if ((ngx_event_flags & NGX_HAVE_AIO_EVENT) == 0) {
wev->event_handler = ngx_http_empty_handler;
2003-03-05 14:37:42 +08:00
}
}
2003-03-04 14:33:48 +08:00
ctx->action = "keepalive";
2003-06-05 01:28:33 +08:00
if (c->tcp_nopush) {
if (ngx_tcp_push(c->fd) == NGX_ERROR) {
ngx_log_error(NGX_LOG_CRIT, c->log, ngx_socket_errno,
ngx_tcp_push_n " failed");
ngx_http_close_connection(c);
return;
}
c->tcp_nopush = 0;
}
2003-03-04 14:33:48 +08:00
2003-03-12 04:38:13 +08:00
if ((ngx_event_flags & NGX_HAVE_AIO_EVENT) || blocked) {
2003-05-14 00:02:32 +08:00
ngx_http_keepalive_handler(rev);
2003-03-12 04:38:13 +08:00
}
2003-02-11 15:14:40 +08:00
}
2003-05-14 00:02:32 +08:00
static void ngx_http_keepalive_handler(ngx_event_t *rev)
2002-08-26 23:18:19 +08:00
{
2002-12-15 14:25:09 +08:00
ssize_t n;
ngx_connection_t *c;
2003-03-21 00:09:44 +08:00
ngx_http_log_ctx_t *lctx;
2002-08-26 23:18:19 +08:00
2003-03-21 00:09:44 +08:00
c = (ngx_connection_t *) rev->data;
2002-08-26 23:18:19 +08:00
2003-03-21 00:09:44 +08:00
ngx_log_debug(c->log, "http keepalive handler");
2002-08-26 23:18:19 +08:00
2003-03-21 00:09:44 +08:00
if (rev->timedout) {
2003-05-14 00:02:32 +08:00
ngx_http_close_connection(c);
return;
2003-03-13 01:32:22 +08:00
}
2002-08-26 23:18:19 +08:00
2003-03-21 00:09:44 +08:00
/* MSIE closes a keepalive connection with RST flag
2003-03-12 04:38:13 +08:00
so we ignore ECONNRESET here */
2003-03-21 00:09:44 +08:00
rev->ignore_econnreset = 1;
2003-03-12 04:38:13 +08:00
ngx_set_socket_errno(0);
2003-06-11 23:28:34 +08:00
n = ngx_recv(c, c->buffer->last, c->buffer->end - c->buffer->last);
2003-03-21 00:09:44 +08:00
rev->ignore_econnreset = 0;
2002-08-26 23:18:19 +08:00
2003-05-14 00:02:32 +08:00
if (n == NGX_AGAIN) {
return;
}
if (n == NGX_ERROR) {
ngx_http_close_connection(c);
return;
2003-03-13 01:32:22 +08:00
}
2002-08-26 23:18:19 +08:00
2003-03-21 00:09:44 +08:00
lctx = (ngx_http_log_ctx_t *) rev->log->data;
rev->log->handler = NULL;
2002-09-16 23:01:44 +08:00
2002-12-15 14:25:09 +08:00
if (n == 0) {
2003-03-21 00:09:44 +08:00
ngx_log_error(NGX_LOG_INFO, c->log, ngx_socket_errno,
"client %s closed keepalive connection", lctx->client);
2003-05-14 00:02:32 +08:00
ngx_http_close_connection(c);
return;
2002-09-12 22:42:29 +08:00
}
2002-08-26 23:18:19 +08:00
2003-03-12 04:38:13 +08:00
c->buffer->last += n;
2003-03-21 00:09:44 +08:00
rev->log->handler = ngx_http_log_error;
lctx->action = "reading client request line";
2002-09-16 23:01:44 +08:00
2003-05-14 00:02:32 +08:00
ngx_http_init_request(rev);
2002-09-16 23:01:44 +08:00
}
2002-12-11 02:05:12 +08:00
2003-05-14 00:02:32 +08:00
static void ngx_http_set_lingering_close(ngx_http_request_t *r)
2002-09-16 23:01:44 +08:00
{
2003-03-21 00:09:44 +08:00
ngx_event_t *rev;
2003-03-12 04:38:13 +08:00
ngx_connection_t *c;
2003-05-27 20:18:54 +08:00
ngx_http_core_loc_conf_t *clcf;
2003-01-09 13:36:00 +08:00
2003-02-11 15:14:40 +08:00
c = r->connection;
2003-03-12 04:38:13 +08:00
rev = c->read;
2003-01-27 05:08:14 +08:00
2003-05-27 20:18:54 +08:00
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
2003-01-09 13:36:00 +08:00
2003-05-27 20:18:54 +08:00
r->lingering_time = ngx_time() + clcf->lingering_time / 1000;
2003-05-14 00:02:32 +08:00
rev->event_handler = ngx_http_lingering_close_handler;
2002-09-16 23:01:44 +08:00
2003-03-12 04:38:13 +08:00
if (rev->timer_set) {
ngx_del_timer(rev);
2003-01-27 05:08:14 +08:00
} else {
2003-03-12 04:38:13 +08:00
rev->timer_set = 1;
2003-01-27 05:08:14 +08:00
}
2003-05-27 20:18:54 +08:00
ngx_add_timer(rev, clcf->lingering_timeout);
2002-09-16 23:01:44 +08:00
2003-03-12 04:38:13 +08:00
if (rev->blocked && (ngx_event_flags & NGX_USE_LEVEL_EVENT)) {
if (ngx_add_event(rev, NGX_READ_EVENT, NGX_LEVEL_EVENT) == NGX_ERROR) {
2003-05-14 00:02:32 +08:00
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
2002-12-24 15:09:57 +08:00
}
2003-03-12 04:38:13 +08:00
rev->blocked = 0;
2002-09-16 23:01:44 +08:00
}
2003-05-22 23:23:47 +08:00
if (c->write->active) {
if (ngx_event_flags & NGX_USE_LEVEL_EVENT) {
if (ngx_del_event(c->write, NGX_WRITE_EVENT, 0) == NGX_ERROR) {
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
}
} else if ((ngx_event_flags & NGX_HAVE_AIO_EVENT) == 0) {
c->write->event_handler = ngx_http_empty_handler;
2003-03-12 04:38:13 +08:00
}
}
if (ngx_shutdown_socket(c->fd, NGX_WRITE_SHUTDOWN) == -1) {
ngx_log_error(NGX_LOG_CRIT, c->log, ngx_socket_errno,
2002-09-16 23:01:44 +08:00
ngx_shutdown_socket_n " failed");
2003-05-14 00:02:32 +08:00
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
2003-02-11 15:14:40 +08:00
}
2003-03-21 00:09:44 +08:00
if (rev->ready || (ngx_event_flags & NGX_HAVE_AIO_EVENT)) {
2003-05-14 00:02:32 +08:00
ngx_http_lingering_close_handler(rev);
2003-02-11 15:14:40 +08:00
}
2002-08-26 23:18:19 +08:00
}
2003-05-14 00:02:32 +08:00
static void ngx_http_lingering_close_handler(ngx_event_t *rev)
2002-08-26 23:18:19 +08:00
{
2003-03-21 00:09:44 +08:00
ssize_t n;
ngx_msec_t timer;
ngx_connection_t *c;
ngx_http_request_t *r;
2003-05-27 20:18:54 +08:00
ngx_http_core_loc_conf_t *clcf;
2002-09-13 22:47:42 +08:00
2003-05-27 20:18:54 +08:00
c = rev->data;
r = c->data;
2003-01-30 15:28:09 +08:00
2003-03-21 00:09:44 +08:00
ngx_log_debug(c->log, "http lingering close handler");
if (rev->timedout) {
2003-05-14 00:02:32 +08:00
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
2002-12-24 15:09:57 +08:00
}
2002-09-13 22:47:42 +08:00
timer = r->lingering_time - ngx_time();
2002-12-24 15:09:57 +08:00
if (timer <= 0) {
2003-05-14 00:02:32 +08:00
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
2002-12-24 15:09:57 +08:00
}
2002-09-13 22:47:42 +08:00
2003-05-27 20:18:54 +08:00
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
2003-01-09 13:36:00 +08:00
2002-09-16 23:01:44 +08:00
if (r->discarded_buffer == NULL) {
2003-03-12 04:38:13 +08:00
/* TODO: r->header_in->start (if large headers are enabled)
or the end of parsed header (otherwise)
instead of r->header_in->last */
2003-06-12 13:54:39 +08:00
if (r->header_in->end - r->header_in->last
2003-05-27 20:18:54 +08:00
>= clcf->discarded_buffer_size) {
2003-03-12 04:38:13 +08:00
r->discarded_buffer = r->header_in->last;
2002-09-16 23:01:44 +08:00
} else {
2003-05-14 00:02:32 +08:00
r->discarded_buffer = ngx_palloc(c->pool,
2003-05-27 20:18:54 +08:00
clcf->discarded_buffer_size);
2003-05-14 00:02:32 +08:00
if (r->discarded_buffer) {
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
}
2002-09-16 23:01:44 +08:00
}
}
2002-09-13 22:47:42 +08:00
2003-03-21 00:09:44 +08:00
do {
2003-06-11 23:28:34 +08:00
n = ngx_recv(c, r->discarded_buffer, clcf->discarded_buffer_size);
2002-09-13 22:47:42 +08:00
2003-03-21 00:09:44 +08:00
ngx_log_debug(c->log, "lingering read: %d" _ n);
2002-09-13 22:47:42 +08:00
2003-03-21 00:09:44 +08:00
if (n == NGX_ERROR || n == 0) {
2003-05-14 00:02:32 +08:00
ngx_http_close_request(r, 0);
ngx_http_close_connection(c);
return;
2003-03-21 00:09:44 +08:00
}
} while (rev->ready);
2002-09-13 22:47:42 +08:00
2002-09-16 23:01:44 +08:00
timer *= 1000;
2003-05-27 20:18:54 +08:00
if (timer > clcf->lingering_timeout) {
timer = clcf->lingering_timeout;
2002-12-24 15:09:57 +08:00
}
2002-09-13 22:47:42 +08:00
2003-03-21 00:09:44 +08:00
if (rev->timer_set) {
ngx_del_timer(rev);
2003-01-27 05:08:14 +08:00
} else {
2003-03-21 00:09:44 +08:00
rev->timer_set = 1;
2003-01-27 05:08:14 +08:00
}
2003-03-21 00:09:44 +08:00
ngx_add_timer(rev, timer);
2002-09-13 22:47:42 +08:00
2003-05-14 00:02:32 +08:00
return;
2002-09-13 22:47:42 +08:00
}
2002-08-20 22:48:28 +08:00
2003-05-22 23:23:47 +08:00
static void ngx_http_empty_handler(ngx_event_t *wev)
{
ngx_log_debug(wev->log, "http empty handler");
return;
}
2003-05-14 00:02:32 +08:00
void ngx_http_close_request(ngx_http_request_t *r, int error)
{
ngx_http_log_ctx_t *ctx;
ngx_log_debug(r->connection->log, "close http request");
if (r->pool == NULL) {
ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
2003-05-15 23:42:53 +08:00
"http request already closed");
2003-05-14 00:02:32 +08:00
return;
}
if (error) {
r->headers_out.status = error;
}
ngx_http_log_handler(r);
if (r->file.fd != NGX_INVALID_FILE) {
if (ngx_close_file(r->file.fd) == NGX_FILE_ERROR) {
ngx_log_error(NGX_LOG_ALERT, r->connection->log, ngx_errno,
ngx_close_file_n " \"%s\" failed", r->file.name.data);
}
}
/* ctx->url was allocated from r->pool */
ctx = (ngx_http_log_ctx_t *) r->connection->log->data;
ctx->url = NULL;
ngx_destroy_pool(r->pool);
}
void ngx_http_close_connection(ngx_connection_t *c)
2003-05-12 23:52:24 +08:00
{
ngx_log_debug(c->log, "close connection: %d" _ c->fd);
2003-05-14 00:02:32 +08:00
if (c->pool == NULL) {
2003-05-12 23:52:24 +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);
c->read->timer_set = 0;
}
if (c->write->timer_set) {
ngx_del_timer(c->write);
c->write->timer_set = 0;
}
2003-05-27 20:18:54 +08:00
if (ngx_del_conn) {
2003-05-22 23:23:47 +08:00
ngx_del_conn(c);
} else {
if (c->read->active) {
ngx_del_event(c->read, NGX_READ_EVENT, NGX_CLOSE_EVENT);
}
if (c->write->active) {
ngx_del_event(c->write, NGX_WRITE_EVENT, NGX_CLOSE_EVENT);
}
2003-05-12 23:52:24 +08:00
}
if (ngx_close_socket(c->fd) == -1) {
ngx_log_error(NGX_LOG_ALERT, c->log, ngx_socket_errno,
ngx_close_socket_n " failed");
}
c->fd = -1;
ngx_destroy_pool(c->pool);
2002-10-05 01:58:04 +08:00
}
2003-03-21 00:09:44 +08:00
static void ngx_http_header_parse_error(ngx_http_request_t *r, int parse_err)
2003-03-05 14:37:42 +08:00
{
ngx_http_log_ctx_t *ctx;
ctx = r->connection->log->data;
r->connection->log->handler = NULL;
if (ctx->url) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
header_errors[parse_err - NGX_HTTP_PARSE_INVALID_METHOD],
ctx->client, ctx->url);
} else {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
header_errors[parse_err - NGX_HTTP_PARSE_INVALID_METHOD],
ctx->client);
}
r->connection->log->handler = ngx_http_log_error;
}
2002-08-26 23:18:19 +08:00
static size_t ngx_http_log_error(void *data, char *buf, size_t len)
{
ngx_http_log_ctx_t *ctx = (ngx_http_log_ctx_t *) data;
2002-09-02 22:48:24 +08:00
2003-06-02 23:24:30 +08:00
if (ctx->action && ctx->url) {
2002-08-26 23:18:19 +08:00
return ngx_snprintf(buf, len, " while %s, client: %s, URL: %s",
ctx->action, ctx->client, ctx->url);
2003-06-02 23:24:30 +08:00
} else if (ctx->action == NULL && ctx->url) {
return ngx_snprintf(buf, len, ", client: %s, URL: %s",
ctx->client, ctx->url);
2003-03-21 00:09:44 +08:00
} else {
2002-08-26 23:18:19 +08:00
return ngx_snprintf(buf, len, " while %s, client: %s",
ctx->action, ctx->client);
2003-03-21 00:09:44 +08:00
}
}