2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
#include <ngx_config.h>
|
2002-08-26 23:18:19 +08:00
|
|
|
#include <ngx_core.h>
|
|
|
|
#include <ngx_string.h>
|
2002-09-02 22:48:24 +08:00
|
|
|
#include <ngx_files.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
#include <ngx_log.h>
|
|
|
|
#include <ngx_alloc.h>
|
2002-12-03 00:09:40 +08:00
|
|
|
#include <ngx_array.h>
|
|
|
|
#include <ngx_table.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
#include <ngx_hunk.h>
|
|
|
|
#include <ngx_connection.h>
|
2003-01-24 02:47:54 +08:00
|
|
|
#include <ngx_event.h>
|
|
|
|
#include <ngx_event_timer.h>
|
2002-12-15 14:25:09 +08:00
|
|
|
#include <ngx_inet.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
#include <ngx_http.h>
|
2002-09-11 23:18:33 +08:00
|
|
|
#include <ngx_http_config.h>
|
2003-01-09 13:36:00 +08:00
|
|
|
#include <ngx_http_core_module.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
int ngx_http_init_connection(ngx_connection_t *c);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
static int ngx_http_init_request(ngx_event_t *ev);
|
2002-12-11 02:05:12 +08:00
|
|
|
static int ngx_http_process_request_header(ngx_event_t *ev);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
static int ngx_http_process_request_line(ngx_http_request_t *r);
|
2002-12-11 02:05:12 +08:00
|
|
|
static int ngx_http_process_request_headers(ngx_http_request_t *r);
|
2002-09-02 22:48:24 +08:00
|
|
|
static int ngx_http_process_request_header_line(ngx_http_request_t *r);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
static int ngx_http_event_request_handler(ngx_http_request_t *r);
|
2002-09-02 22:48:24 +08:00
|
|
|
|
|
|
|
static int ngx_http_writer(ngx_event_t *ev);
|
2002-12-15 14:25:09 +08:00
|
|
|
static int ngx_http_block_read(ngx_event_t *ev);
|
|
|
|
static int ngx_http_read_discarded_body(ngx_event_t *ev);
|
2002-09-13 22:47:42 +08:00
|
|
|
static int ngx_http_keepalive_handler(ngx_event_t *ev);
|
2002-12-15 14:25:09 +08:00
|
|
|
static int ngx_http_set_lingering_close(ngx_http_request_t *r);
|
|
|
|
static int ngx_http_lingering_close_handler(ngx_event_t *ev);
|
2002-09-12 22:42:29 +08:00
|
|
|
|
2002-10-05 01:58:04 +08:00
|
|
|
static int ngx_http_close_connection(ngx_event_t *ev);
|
2002-08-26 23:18:19 +08:00
|
|
|
static size_t ngx_http_log_error(void *data, char *buf, size_t len);
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
|
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",
|
2002-08-30 00:59:54 +08:00
|
|
|
"client %s sent HEAD method in HTTP/0.9 request"
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-12-03 00:09:40 +08:00
|
|
|
static ngx_http_header_t headers_in[] = {
|
|
|
|
{ 4, "Host", offsetof(ngx_http_headers_in_t, host) },
|
|
|
|
{ 10, "Connection", offsetof(ngx_http_headers_in_t, connection) },
|
2002-12-15 14:25:09 +08:00
|
|
|
{ 17, "If-Modified-Since",
|
|
|
|
offsetof(ngx_http_headers_in_t,if_modified_since) },
|
2002-12-03 00:09:40 +08:00
|
|
|
|
|
|
|
{ 10, "User-Agent", offsetof(ngx_http_headers_in_t, user_agent) },
|
|
|
|
|
|
|
|
{ 0, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
int ngx_http_init_connection(ngx_connection_t *c)
|
|
|
|
{
|
2002-08-26 23:18:19 +08:00
|
|
|
ngx_event_t *ev;
|
|
|
|
ngx_http_log_ctx_t *ctx;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
ev = c->read;
|
|
|
|
ev->event_handler = ngx_http_init_request;
|
2002-10-05 01:58:04 +08:00
|
|
|
|
|
|
|
ev->close_handler = ngx_http_close_connection;
|
|
|
|
c->write->close_handler = ngx_http_close_connection;
|
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_test_null(c->addr_text.data, ngx_palloc(c->pool, c->addr_text_max_len),
|
2002-08-26 23:18:19 +08:00
|
|
|
NGX_ERROR);
|
2002-12-11 02:05:12 +08:00
|
|
|
|
2003-01-30 15:28:09 +08:00
|
|
|
c->addr_text.len = ngx_sock_ntop(c->family, c->sockaddr,
|
2003-01-09 13:36:00 +08:00
|
|
|
c->addr_text.data, c->addr_text_max_len);
|
2003-01-30 15:28:09 +08:00
|
|
|
|
|
|
|
if (c->addr_text.len == 0) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2002-08-26 23:18:19 +08:00
|
|
|
|
|
|
|
ngx_test_null(ctx, ngx_pcalloc(c->pool, sizeof(ngx_http_log_ctx_t)),
|
|
|
|
NGX_ERROR);
|
2002-12-11 02:05:12 +08:00
|
|
|
ctx->client = c->addr_text.data;
|
2002-08-26 23:18:19 +08:00
|
|
|
ctx->action = "reading client request line";
|
|
|
|
c->log->data = ctx;
|
|
|
|
c->log->handler = ngx_http_log_error;
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#if (HAVE_DEFERRED_ACCEPT)
|
2002-08-30 00:59:54 +08:00
|
|
|
if (ev->ready) {
|
2002-08-07 00:39:45 +08:00
|
|
|
return ngx_http_init_request(ev);
|
2003-01-27 05:08:14 +08:00
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
#endif
|
2003-01-27 05:08:14 +08:00
|
|
|
|
|
|
|
ngx_add_timer(ev, c->post_accept_timeout);
|
|
|
|
ev->timer_set = 1;
|
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
#if (USE_KQUEUE)
|
2003-01-27 05:08:14 +08:00
|
|
|
|
|
|
|
return ngx_add_event(ev, NGX_READ_EVENT, NGX_CLEAR_EVENT);
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#else
|
2003-01-27 05:08:14 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
#if (HAVE_CLEAR_EVENT)
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ngx_event_flags & NGX_HAVE_CLEAR_EVENT) {
|
|
|
|
return ngx_add_event(ev, NGX_READ_EVENT, NGX_CLEAR_EVENT);
|
|
|
|
}
|
2002-08-26 23:18:19 +08:00
|
|
|
#endif
|
2003-01-27 05:08:14 +08:00
|
|
|
|
2003-01-30 15:28:09 +08:00
|
|
|
#if (HAVE_EDGE_EVENT)
|
|
|
|
if (ngx_event_flags & NGX_HAVE_EDGE_EVENT) {
|
|
|
|
if (ngx_add_event(ev, NGX_READ_EVENT, NGX_EDGE_EVENT) == NGX_ERROR) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
return ngx_http_init_request(ev);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
#if (HAVE_AIO_EVENT)
|
|
|
|
if (ngx_event_flags & NGX_HAVE_AIO_EVENT) {
|
|
|
|
return ngx_http_init_request(ev);
|
2002-08-30 00:59:54 +08:00
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
#endif
|
2003-01-27 05:08:14 +08:00
|
|
|
|
|
|
|
return ngx_add_event(ev, NGX_READ_EVENT, NGX_LEVEL_EVENT);
|
|
|
|
|
|
|
|
#endif /* USE_KQUEUE */
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
static int ngx_http_init_request(ngx_event_t *ev)
|
2002-08-07 00:39:45 +08:00
|
|
|
{
|
2003-01-30 15:28:09 +08:00
|
|
|
ngx_connection_t *c;
|
|
|
|
ngx_http_request_t *r;
|
|
|
|
ngx_http_conf_ctx_t *ctx;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
c = (ngx_connection_t *) ev->data;
|
2003-01-15 15:02:27 +08:00
|
|
|
c->sent = 0;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
ngx_test_null(r, ngx_pcalloc(c->pool, sizeof(ngx_http_request_t)),
|
|
|
|
NGX_ERROR);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
c->data = r;
|
|
|
|
r->connection = c;
|
2002-12-15 14:25:09 +08:00
|
|
|
r->file.fd = NGX_INVALID_FILE;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
if (c->buffer == NULL) {
|
|
|
|
ngx_test_null(c->buffer,
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_create_temp_hunk(c->pool,
|
|
|
|
ngx_http_client_header_buffer_size,
|
2002-09-16 23:01:44 +08:00
|
|
|
0, 0),
|
|
|
|
NGX_ERROR);
|
|
|
|
} else {
|
|
|
|
r->header_read = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
r->header_in = c->buffer;
|
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_test_null(r->pool, ngx_create_pool(ngx_http_request_pool_size, ev->log),
|
2002-08-30 00:59:54 +08:00
|
|
|
ngx_http_close_request(r));
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-12-27 00:26:23 +08:00
|
|
|
ngx_test_null(r->ctx,
|
|
|
|
ngx_pcalloc(r->pool, sizeof(void *) * ngx_http_max_module),
|
2002-09-11 23:18:33 +08:00
|
|
|
ngx_http_close_request(r));
|
|
|
|
|
2003-01-30 15:28:09 +08:00
|
|
|
ctx = (ngx_http_conf_ctx_t *) c->ctx;
|
|
|
|
r->srv_conf = ctx->srv_conf;
|
|
|
|
r->loc_conf = ctx->loc_conf;
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
r->headers_out.headers = ngx_create_table(r->pool, 10);
|
|
|
|
r->headers_out.content_length = -1;
|
|
|
|
r->headers_out.last_modified_time = -1;
|
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
ev->event_handler = ngx_http_process_request_header;
|
2002-08-30 00:59:54 +08:00
|
|
|
r->state_handler = ngx_http_process_request_line;
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
return ngx_http_process_request_header(ev);
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
static int ngx_http_process_request_header(ngx_event_t *ev)
|
2002-08-07 00:39:45 +08:00
|
|
|
{
|
2003-01-27 05:08:14 +08:00
|
|
|
int n, rc;
|
|
|
|
ngx_connection_t *c;
|
|
|
|
ngx_http_request_t *r;
|
2002-08-26 23:18:19 +08:00
|
|
|
|
|
|
|
c = (ngx_connection_t *) ev->data;
|
|
|
|
r = (ngx_http_request_t *) c->data;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
ngx_log_debug(ev->log, "http process request");
|
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
if (r->header_read) {
|
|
|
|
r->header_read = 0;
|
|
|
|
ngx_log_debug(ev->log, "http preread %d" _
|
|
|
|
r->header_in->last.mem - r->header_in->pos.mem);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
} else {
|
|
|
|
n = ngx_event_recv(c, r->header_in->last.mem,
|
|
|
|
r->header_in->end - r->header_in->last.mem);
|
|
|
|
|
|
|
|
if (n == NGX_AGAIN) {
|
2003-01-27 05:08:14 +08:00
|
|
|
if (!r->header_timeout_set) {
|
|
|
|
|
|
|
|
if (ev->timer_set) {
|
|
|
|
ngx_del_timer(ev);
|
|
|
|
} else {
|
|
|
|
ev->timer_set = 1;
|
|
|
|
}
|
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_add_timer(ev, ngx_http_client_header_timeout);
|
2003-01-27 05:08:14 +08:00
|
|
|
r->header_timeout_set = 1;
|
2002-09-16 23:01:44 +08:00
|
|
|
}
|
|
|
|
return NGX_AGAIN;
|
2002-08-30 00:59:54 +08:00
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
if (n == NGX_ERROR)
|
|
|
|
return ngx_http_close_request(r);
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
ngx_log_debug(ev->log, "http read %d" _ n);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
if (n == 0) {
|
2002-12-11 02:05:12 +08:00
|
|
|
ngx_log_error(NGX_LOG_INFO, c->log, 0,
|
|
|
|
"client has prematurely closed connection");
|
2002-09-16 23:01:44 +08:00
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
r->header_in->last.mem += n;
|
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
/* state_handlers are called in following order:
|
|
|
|
ngx_http_process_request_line(r)
|
2002-12-11 02:05:12 +08:00
|
|
|
ngx_http_process_request_headers(r) */
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
do {
|
|
|
|
rc = (r->state_handler)(r);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
if (rc == NGX_ERROR)
|
|
|
|
return rc;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
} while (rc == NGX_AGAIN && r->header_in->pos.mem < r->header_in->last.mem);
|
2002-09-02 22:48:24 +08:00
|
|
|
|
2003-01-25 00:09:40 +08:00
|
|
|
if (rc == NGX_OK) {
|
|
|
|
/* HTTP header done */
|
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ev->timer_set) {
|
2003-01-25 00:09:40 +08:00
|
|
|
ngx_del_timer(ev);
|
2003-01-27 05:08:14 +08:00
|
|
|
ev->timer_set = 0;
|
2003-01-25 00:09:40 +08:00
|
|
|
}
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
return ngx_http_event_request_handler(r);
|
2003-01-25 00:09:40 +08:00
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
} else { /* NGX_AGAIN */
|
|
|
|
|
|
|
|
if (!r->header_timeout_set) {
|
|
|
|
|
|
|
|
if (ev->timer_set) {
|
|
|
|
ngx_del_timer(ev);
|
|
|
|
} else {
|
|
|
|
ev->timer_set = 1;
|
|
|
|
}
|
2003-01-25 00:09:40 +08:00
|
|
|
|
|
|
|
ngx_add_timer(ev, ngx_http_client_header_timeout);
|
2003-01-27 05:08:14 +08:00
|
|
|
r->header_timeout_set = 1;
|
2003-01-25 00:09:40 +08:00
|
|
|
}
|
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
return rc;
|
2003-01-25 00:09:40 +08:00
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
static int ngx_http_process_request_line(ngx_http_request_t *r)
|
2002-08-07 00:39:45 +08:00
|
|
|
{
|
2003-01-30 15:28:09 +08:00
|
|
|
int rc;
|
2002-10-05 01:58:04 +08:00
|
|
|
ngx_connection_t *c;
|
2002-08-30 00:59:54 +08:00
|
|
|
ngx_http_log_ctx_t *ctx;
|
|
|
|
|
|
|
|
rc = ngx_read_http_request_line(r);
|
|
|
|
|
2002-10-05 01:58:04 +08:00
|
|
|
c = r->connection;
|
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
if (rc == NGX_OK) {
|
2002-12-15 14:25:09 +08:00
|
|
|
r->uri.len = (r->args_start ? r->args_start - 1 : r->uri_end)
|
|
|
|
- r->uri_start;
|
2002-12-11 02:05:12 +08:00
|
|
|
ngx_test_null(r->uri.data, ngx_palloc(r->pool, r->uri.len + 1),
|
2002-08-30 00:59:54 +08:00
|
|
|
ngx_http_close_request(r));
|
2002-12-11 02:05:12 +08:00
|
|
|
ngx_cpystrn(r->uri.data, r->uri_start, r->uri.len + 1);
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-12-03 23:45:38 +08:00
|
|
|
r->request_line.len = r->request_end - r->header_in->start;
|
|
|
|
ngx_test_null(r->request_line.data,
|
|
|
|
ngx_palloc(r->pool, r->request_line.len + 1),
|
|
|
|
ngx_http_close_request(r));
|
|
|
|
ngx_cpystrn(r->request_line.data, r->header_in->start,
|
|
|
|
r->request_line.len + 1);
|
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
if (r->uri_ext) {
|
2002-12-15 14:25:09 +08:00
|
|
|
r->exten.len = (r->args_start ? r->args_start - 1 : r->uri_end)
|
|
|
|
- r->uri_ext;
|
2002-12-11 02:05:12 +08:00
|
|
|
ngx_test_null(r->exten.data,
|
|
|
|
ngx_palloc(r->pool, r->exten.len + 1),
|
2002-09-16 23:01:44 +08:00
|
|
|
ngx_http_close_request(r));
|
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
|
|
|
}
|
|
|
|
|
2002-12-24 02:22:18 +08:00
|
|
|
#if 0
|
2002-09-16 23:01:44 +08:00
|
|
|
ngx_log_debug(r->connection->log, "HTTP: %d, %d, %s %s" _
|
2002-12-11 02:05:12 +08:00
|
|
|
r->method _ r->http_version _
|
|
|
|
r->uri.data _ r->exten.data);
|
2002-12-24 02:22:18 +08:00
|
|
|
#endif
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
if (r->http_version == 9)
|
2002-12-11 02:05:12 +08:00
|
|
|
return NGX_OK;
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
/* TODO: check too long URI - no space for header, compact buffer */
|
|
|
|
|
2002-12-03 00:09:40 +08:00
|
|
|
r->headers_in.headers = ngx_create_table(r->pool, 10);
|
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
r->state_handler = ngx_http_process_request_headers;
|
2002-09-02 22:48:24 +08:00
|
|
|
ctx = r->connection->log->data;
|
|
|
|
ctx->action = "reading client request headers";
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
return NGX_AGAIN;
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
if (r->header_in->last.mem >= r->header_in->end) {
|
2002-12-07 00:32:33 +08:00
|
|
|
rc = NGX_HTTP_PARSE_TOO_LONG_URI;
|
2002-09-13 22:47:42 +08:00
|
|
|
|
|
|
|
} else if (rc == NGX_AGAIN) {
|
|
|
|
return NGX_AGAIN;
|
|
|
|
}
|
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
ctx = r->connection->log->data;
|
2002-09-02 22:48:24 +08:00
|
|
|
r->connection->log->handler = NULL;
|
2002-09-13 22:47:42 +08:00
|
|
|
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
|
|
|
|
header_errors[rc - NGX_HTTP_PARSE_INVALID_METHOD],
|
|
|
|
ctx->client);
|
2002-08-30 00:59:54 +08:00
|
|
|
r->connection->log->handler = ngx_http_log_error;
|
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
return ngx_http_error(r, (rc == NGX_HTTP_PARSE_TOO_LONG_URI) ?
|
|
|
|
NGX_HTTP_REQUEST_URI_TOO_LARGE:
|
|
|
|
NGX_HTTP_BAD_REQUEST);
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
static int ngx_http_process_request_headers(ngx_http_request_t *r)
|
2002-08-07 00:39:45 +08:00
|
|
|
{
|
2003-01-28 23:56:37 +08:00
|
|
|
int rc, len;
|
2002-08-30 00:59:54 +08:00
|
|
|
ngx_http_log_ctx_t *ctx;
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
for ( ;; ) {
|
2002-12-11 02:05:12 +08:00
|
|
|
rc = ngx_read_http_header_line(r, r->header_in);
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
/* TODO: check too long header, compact buffer */
|
|
|
|
|
2003-01-28 23:56:37 +08:00
|
|
|
if (rc == NGX_OK) { /* header line is ready */
|
|
|
|
if (ngx_http_process_request_header_line(r) == NGX_ERROR) {
|
2002-09-02 22:48:24 +08:00
|
|
|
return ngx_http_error(r, NGX_HTTP_BAD_REQUEST);
|
2003-01-28 23:56:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_AGAIN;
|
2002-09-02 22:48:24 +08:00
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
} else if (rc == NGX_HTTP_PARSE_HEADER_DONE) {
|
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) {
|
|
|
|
for (len = 0; len < r->headers_in.host->value.len; len++) {
|
|
|
|
if (r->headers_in.host->value.data[len] == ':') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-01-29 15:25:51 +08:00
|
|
|
r->headers_in.host_name_len = len;
|
2003-01-28 23:56:37 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
} else {
|
2003-01-28 23:56:37 +08:00
|
|
|
if (r->http_version > NGX_HTTP_VERSION_10) {
|
|
|
|
return ngx_http_error(r, NGX_HTTP_BAD_REQUEST);
|
|
|
|
}
|
2003-01-29 15:25:51 +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-01-28 23:56:37 +08:00
|
|
|
return NGX_OK;
|
|
|
|
|
2002-08-30 00:59:54 +08:00
|
|
|
} else if (rc == NGX_AGAIN) {
|
|
|
|
return NGX_AGAIN;
|
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
} else if (rc == NGX_HTTP_PARSE_INVALID_HEADER) {
|
2002-08-30 00:59:54 +08:00
|
|
|
ctx = r->connection->log->data;
|
2002-09-02 22:48:24 +08:00
|
|
|
r->connection->log->handler = NULL;
|
2002-09-13 22:47:42 +08:00
|
|
|
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
|
2002-08-30 00:59:54 +08:00
|
|
|
"client %s sent invalid header", ctx->client);
|
|
|
|
r->connection->log->handler = ngx_http_log_error;
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
return ngx_http_error(r, NGX_HTTP_BAD_REQUEST);
|
2002-08-30 00:59:54 +08:00
|
|
|
}
|
|
|
|
}
|
2002-09-02 22:48:24 +08:00
|
|
|
}
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
static int ngx_http_process_request_header_line(ngx_http_request_t *r)
|
|
|
|
{
|
2002-12-03 00:09:40 +08:00
|
|
|
int i;
|
|
|
|
ngx_table_elt_t *h;
|
|
|
|
|
2002-12-03 23:45:38 +08:00
|
|
|
ngx_test_null(h, ngx_push_table(r->headers_in.headers), NGX_ERROR);
|
2002-12-03 00:09:40 +08:00
|
|
|
|
|
|
|
h->key.len = r->header_name_end - r->header_name_start;
|
|
|
|
ngx_test_null(h->key.data, ngx_palloc(r->pool, h->key.len + 1), NGX_ERROR);
|
|
|
|
ngx_cpystrn(h->key.data, r->header_name_start, h->key.len + 1);
|
|
|
|
|
|
|
|
h->value.len = r->header_end - r->header_start;
|
|
|
|
ngx_test_null(h->value.data, ngx_palloc(r->pool, h->value.len + 1),
|
|
|
|
NGX_ERROR);
|
|
|
|
ngx_cpystrn(h->value.data, r->header_start, h->value.len + 1);
|
|
|
|
|
|
|
|
for (i = 0; headers_in[i].len != 0; i++) {
|
2003-01-28 23:56:37 +08:00
|
|
|
if (headers_in[i].len != h->key.len) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ngx_strcasecmp(headers_in[i].data, h->key.data) == 0) {
|
|
|
|
*((ngx_table_elt_t **)
|
|
|
|
((char *) &r->headers_in + headers_in[i].offset)) = h;
|
2002-12-03 00:09:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
ngx_log_debug(r->connection->log, "HTTP header: '%s: %s'" _
|
2002-12-03 00:09:40 +08:00
|
|
|
h->key.data _ h->value.data);
|
2002-09-02 22:48:24 +08:00
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
static int ngx_http_event_request_handler(ngx_http_request_t *r)
|
2002-12-11 02:05:12 +08:00
|
|
|
{
|
2003-01-27 05:08:14 +08:00
|
|
|
int rc;
|
|
|
|
ngx_msec_t timeout;
|
|
|
|
ngx_event_t *rev, *wev;
|
2002-12-11 02:05:12 +08:00
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
rev = r->connection->read;
|
|
|
|
wev = r->connection->write;
|
|
|
|
|
|
|
|
if (rev->timer_set) {
|
|
|
|
ngx_del_timer(rev);
|
|
|
|
rev->timer_set = 0;
|
|
|
|
}
|
2002-12-11 02:05:12 +08:00
|
|
|
|
|
|
|
r->state_handler = NULL;
|
2003-01-27 05:08:14 +08:00
|
|
|
rev->event_handler = ngx_http_block_read;
|
2002-12-11 02:05:12 +08:00
|
|
|
|
|
|
|
rc = ngx_http_handler(r);
|
|
|
|
|
|
|
|
/* handler is still busy */
|
|
|
|
if (rc == NGX_WAITING)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* handler has done its work but transfer is not completed */
|
|
|
|
if (rc == NGX_AGAIN) {
|
|
|
|
#if (HAVE_CLEAR_EVENT)
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ngx_add_event(wev, NGX_WRITE_EVENT,
|
2002-12-11 02:05:12 +08:00
|
|
|
NGX_CLEAR_EVENT) == NGX_ERROR) {
|
|
|
|
#else
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ngx_add_event(wev, NGX_WRITE_EVENT,
|
2002-12-11 02:05:12 +08:00
|
|
|
NGX_ONESHOT_EVENT) == NGX_ERROR) {
|
|
|
|
#endif
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r->connection->sent > 0) {
|
|
|
|
ngx_log_debug(r->connection->log, "sent: " QD_FMT _
|
|
|
|
r->connection->sent);
|
|
|
|
timeout = (ngx_msec_t) (r->connection->sent * 10);
|
|
|
|
ngx_log_debug(r->connection->log, "timeout: %d" _ timeout);
|
2003-01-27 05:08:14 +08:00
|
|
|
ngx_add_timer(wev, timeout);
|
2002-12-11 02:05:12 +08:00
|
|
|
|
|
|
|
} else {
|
2003-01-27 05:08:14 +08:00
|
|
|
ngx_add_timer(wev, 10000);
|
2002-12-11 02:05:12 +08:00
|
|
|
}
|
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
wev->event_handler = ngx_http_writer;
|
2002-12-11 02:05:12 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rc == NGX_ERROR) {
|
|
|
|
/* log http request */
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rc >= NGX_HTTP_SPECIAL_RESPONSE)
|
|
|
|
return ngx_http_special_response(r, rc);
|
|
|
|
|
|
|
|
/* rc == NGX_OK */
|
|
|
|
|
|
|
|
if (!r->keepalive) {
|
|
|
|
if (r->lingering_close) {
|
|
|
|
return ngx_http_set_lingering_close(r);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* keepalive */
|
|
|
|
|
|
|
|
ngx_http_close_request(r);
|
|
|
|
r->connection->buffer->pos.mem = r->connection->buffer->last.mem
|
|
|
|
= r->connection->buffer->start;
|
2003-01-27 05:08:14 +08:00
|
|
|
rev->event_handler = ngx_http_keepalive_handler;
|
2002-12-11 02:05:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
static int ngx_http_writer(ngx_event_t *ev)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
ngx_msec_t timeout;
|
|
|
|
ngx_connection_t *c;
|
|
|
|
ngx_http_request_t *r;
|
|
|
|
ngx_http_core_loc_conf_t *conf;
|
|
|
|
|
|
|
|
c = (ngx_connection_t *) ev->data;
|
|
|
|
r = (ngx_http_request_t *) c->data;
|
|
|
|
|
|
|
|
rc = ngx_http_output_filter(r, NULL);
|
|
|
|
|
|
|
|
ngx_log_debug(ev->log, "output filter in writer: %d" _ rc);
|
|
|
|
|
|
|
|
if (rc == NGX_AGAIN) {
|
|
|
|
|
|
|
|
if (c->sent > 0) {
|
|
|
|
conf = (ngx_http_core_loc_conf_t *)
|
2002-12-27 00:26:23 +08:00
|
|
|
ngx_http_get_module_loc_conf(r->main ? r->main : r,
|
|
|
|
ngx_http_core_module_ctx);
|
2002-12-15 14:25:09 +08:00
|
|
|
|
|
|
|
timeout = (ngx_msec_t) (c->sent * conf->send_timeout);
|
|
|
|
|
|
|
|
ngx_log_debug(ev->log, "sent: " QD_FMT _ c->sent);
|
|
|
|
ngx_log_debug(ev->log, "timeout: %d" _ timeout);
|
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ev->timer_set) {
|
|
|
|
ngx_del_timer(ev);
|
|
|
|
} else {
|
|
|
|
ev->timer_set = 1;
|
|
|
|
}
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
ngx_add_timer(ev, timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev->oneshot)
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ngx_add_event(ev, NGX_WRITE_EVENT,
|
2002-12-15 14:25:09 +08:00
|
|
|
NGX_ONESHOT_EVENT) == NGX_ERROR) {
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rc == NGX_ERROR)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* rc == NGX_OK */
|
|
|
|
|
|
|
|
ngx_log_debug(ev->log, "http writer done");
|
|
|
|
|
|
|
|
if (!r->keepalive) {
|
|
|
|
if (r->lingering_close) {
|
2002-12-25 01:30:59 +08:00
|
|
|
return ngx_http_set_lingering_close(r);
|
2002-12-15 14:25:09 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* keepalive */
|
|
|
|
|
|
|
|
ngx_http_close_request(r);
|
|
|
|
c->buffer->pos.mem = c->buffer->last.mem = c->buffer->start;
|
|
|
|
c->read->event_handler = ngx_http_keepalive_handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
static int ngx_http_block_read(ngx_event_t *ev)
|
|
|
|
{
|
|
|
|
ngx_log_debug(ev->log, "http read blocked");
|
|
|
|
|
|
|
|
ev->blocked = 1;
|
2002-12-15 14:25:09 +08:00
|
|
|
return ngx_del_event(ev, NGX_READ_EVENT, 0);
|
2002-12-11 02:05:12 +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-01-27 05:08:14 +08:00
|
|
|
ngx_event_t *ev;
|
|
|
|
|
|
|
|
ev = r->connection->read;
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
ngx_log_debug(r->connection->log, "set discard body");
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ev->timer_set) {
|
|
|
|
ngx_del_timer(ev);
|
|
|
|
ev->timer_set = 0;
|
|
|
|
}
|
2002-08-30 00:59:54 +08:00
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
if (r->client_content_length)
|
2003-01-27 05:08:14 +08:00
|
|
|
ev->event_handler = ngx_http_read_discarded_body;
|
2002-12-15 14:25:09 +08:00
|
|
|
|
|
|
|
return NGX_OK;
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
static int ngx_http_read_discarded_body(ngx_event_t *ev)
|
2002-08-26 23:18:19 +08:00
|
|
|
{
|
2002-09-02 22:48:24 +08:00
|
|
|
size_t size;
|
|
|
|
ssize_t n;
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_connection_t *c;
|
|
|
|
ngx_http_request_t *r;
|
|
|
|
ngx_http_core_loc_conf_t *lcf;
|
2002-09-02 22:48:24 +08:00
|
|
|
|
|
|
|
ngx_log_debug(ev->log, "http read discarded body");
|
|
|
|
|
|
|
|
if (ev->timedout)
|
|
|
|
return NGX_ERROR;
|
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
c = (ngx_connection_t *) ev->data;
|
|
|
|
r = (ngx_http_request_t *) c->data;
|
|
|
|
|
|
|
|
lcf = (ngx_http_core_loc_conf_t *)
|
|
|
|
ngx_http_get_module_loc_conf(r, ngx_http_core_module_ctx);
|
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
if (r->discarded_buffer == NULL)
|
|
|
|
ngx_test_null(r->discarded_buffer,
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_palloc(r->pool, lcf->discarded_buffer_size),
|
2002-09-02 22:48:24 +08:00
|
|
|
NGX_ERROR);
|
|
|
|
|
|
|
|
size = r->client_content_length;
|
2003-01-09 13:36:00 +08:00
|
|
|
if (size > lcf->discarded_buffer_size)
|
|
|
|
size = lcf->discarded_buffer_size;
|
2002-09-02 22:48:24 +08:00
|
|
|
|
|
|
|
n = ngx_event_recv(c, r->discarded_buffer, size);
|
2002-09-12 22:42:29 +08:00
|
|
|
if (n == NGX_ERROR)
|
|
|
|
return NGX_ERROR;
|
2002-09-02 22:48:24 +08:00
|
|
|
|
2002-09-12 22:42:29 +08:00
|
|
|
if (n == NGX_AGAIN)
|
|
|
|
return NGX_OK;
|
|
|
|
|
|
|
|
r->client_content_length -= n;
|
|
|
|
/* XXX: what if r->client_content_length == 0 ? */
|
|
|
|
return NGX_OK;
|
2002-09-02 22:48:24 +08:00
|
|
|
}
|
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
static int ngx_http_keepalive_handler(ngx_event_t *ev)
|
2002-08-26 23:18:19 +08:00
|
|
|
{
|
2002-12-15 14:25:09 +08:00
|
|
|
ssize_t n;
|
|
|
|
ngx_connection_t *c;
|
|
|
|
ngx_http_log_ctx_t *ctx;
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-09-02 22:48:24 +08:00
|
|
|
c = (ngx_connection_t *) ev->data;
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
ngx_log_debug(ev->log, "http keepalive handler");
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
if (ev->timedout)
|
|
|
|
return NGX_DONE;
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
n = ngx_event_recv(c, c->buffer->last.mem,
|
|
|
|
c->buffer->end - c->buffer->last.mem);
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
if (n == NGX_AGAIN || n == NGX_ERROR)
|
|
|
|
return n;
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
ctx = (ngx_http_log_ctx_t *) ev->log->data;
|
|
|
|
ev->log->handler = NULL;
|
2002-09-16 23:01:44 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
if (n == 0) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, ev->log, 0,
|
|
|
|
"client %s closed keepalive connection", ctx->client);
|
|
|
|
return NGX_DONE;
|
2002-09-12 22:42:29 +08:00
|
|
|
}
|
2002-08-26 23:18:19 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
c->buffer->last.mem += n;
|
|
|
|
ev->log->handler = ngx_http_log_error;
|
|
|
|
ctx->action = "reading client request line";
|
2002-09-16 23:01:44 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
return ngx_http_init_request(ev);
|
2002-09-16 23:01:44 +08:00
|
|
|
}
|
|
|
|
|
2002-12-11 02:05:12 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
static int ngx_http_set_lingering_close(ngx_http_request_t *r)
|
|
|
|
{
|
2003-01-27 05:08:14 +08:00
|
|
|
ngx_event_t *ev;
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_http_core_loc_conf_t *lcf;
|
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
ev = r->connection->read;
|
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
lcf = (ngx_http_core_loc_conf_t *)
|
|
|
|
ngx_http_get_module_loc_conf(r, ngx_http_core_module_ctx);
|
|
|
|
|
|
|
|
r->lingering_time = ngx_time() + lcf->lingering_time;
|
2002-12-15 14:25:09 +08:00
|
|
|
r->connection->read->event_handler = ngx_http_lingering_close_handler;
|
2002-09-16 23:01:44 +08:00
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ev->timer_set) {
|
|
|
|
ngx_del_timer(ev);
|
|
|
|
} else {
|
|
|
|
ev->timer_set = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_add_timer(ev, lcf->lingering_timeout);
|
2002-09-16 23:01:44 +08:00
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ev->blocked) {
|
|
|
|
if (ngx_add_event(ev, NGX_READ_EVENT,
|
2002-09-16 23:01:44 +08:00
|
|
|
#if (HAVE_CLEAR_EVENT)
|
2002-12-24 15:09:57 +08:00
|
|
|
NGX_CLEAR_EVENT) == NGX_ERROR)
|
2002-09-16 23:01:44 +08:00
|
|
|
#else
|
2002-12-24 15:09:57 +08:00
|
|
|
NGX_ONESHOT_EVENT) == NGX_ERROR)
|
2002-09-16 23:01:44 +08:00
|
|
|
#endif
|
2002-12-24 15:09:57 +08:00
|
|
|
{
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
2002-09-16 23:01:44 +08:00
|
|
|
}
|
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ngx_shutdown_socket(r->connection->fd, NGX_WRITE_SHUTDOWN) == -1) {
|
2002-09-16 23:01:44 +08:00
|
|
|
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_socket_errno,
|
|
|
|
ngx_shutdown_socket_n " failed");
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
2002-08-26 23:18:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
static int ngx_http_lingering_close_handler(ngx_event_t *ev)
|
2002-08-26 23:18:19 +08:00
|
|
|
{
|
2002-12-15 14:25:09 +08:00
|
|
|
ssize_t n;
|
|
|
|
ngx_msec_t timer;
|
2002-09-13 22:47:42 +08:00
|
|
|
ngx_connection_t *c;
|
|
|
|
ngx_http_request_t *r;
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_http_core_loc_conf_t *lcf;
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
ngx_log_debug(ev->log, "http lingering close handler");
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2003-01-30 15:28:09 +08:00
|
|
|
c = (ngx_connection_t *) ev->data;
|
|
|
|
r = (ngx_http_request_t *) c->data;
|
|
|
|
|
2002-12-24 15:09:57 +08:00
|
|
|
if (ev->timedout) {
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
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) {
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
lcf = (ngx_http_core_loc_conf_t *)
|
|
|
|
ngx_http_get_module_loc_conf(r, ngx_http_core_module_ctx);
|
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
if (r->discarded_buffer == NULL) {
|
|
|
|
if (r->header_in->end - r->header_in->last.mem
|
2003-01-09 13:36:00 +08:00
|
|
|
>= lcf->discarded_buffer_size) {
|
2002-09-16 23:01:44 +08:00
|
|
|
r->discarded_buffer = r->header_in->last.mem;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
ngx_test_null(r->discarded_buffer,
|
2003-01-09 13:36:00 +08:00
|
|
|
ngx_palloc(c->pool, lcf->discarded_buffer_size),
|
2002-12-24 15:09:57 +08:00
|
|
|
ngx_http_close_request(r));
|
2002-09-16 23:01:44 +08:00
|
|
|
}
|
|
|
|
}
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
n = ngx_event_recv(c, r->discarded_buffer, lcf->discarded_buffer_size);
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2002-12-24 15:09:57 +08:00
|
|
|
ngx_log_debug(ev->log, "lingering read: %d" _ n);
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2002-12-24 15:09:57 +08:00
|
|
|
if (n == NGX_ERROR || n == 0) {
|
|
|
|
return ngx_http_close_request(r);
|
|
|
|
}
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2002-09-16 23:01:44 +08:00
|
|
|
timer *= 1000;
|
2003-01-09 13:36:00 +08:00
|
|
|
if (timer > lcf->lingering_timeout) {
|
|
|
|
timer = lcf->lingering_timeout;
|
2002-12-24 15:09:57 +08:00
|
|
|
}
|
2002-09-13 22:47:42 +08:00
|
|
|
|
2003-01-27 05:08:14 +08:00
|
|
|
if (ev->timer_set) {
|
|
|
|
ngx_del_timer(ev);
|
|
|
|
} else {
|
|
|
|
ev->timer_set = 1;
|
|
|
|
}
|
2002-09-16 23:01:44 +08:00
|
|
|
ngx_add_timer(ev, timer);
|
2002-09-13 22:47:42 +08:00
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
2002-08-20 22:48:28 +08:00
|
|
|
|
2002-10-05 01:58:04 +08:00
|
|
|
static int ngx_http_close_connection(ngx_event_t *ev)
|
|
|
|
{
|
|
|
|
ngx_connection_t *c = (ngx_connection_t *) ev->data;
|
|
|
|
|
|
|
|
return ngx_event_close_connection(ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2002-08-26 23:18:19 +08:00
|
|
|
if (ctx->url)
|
|
|
|
return ngx_snprintf(buf, len, " while %s, client: %s, URL: %s",
|
|
|
|
ctx->action, ctx->client, ctx->url);
|
|
|
|
else
|
|
|
|
return ngx_snprintf(buf, len, " while %s, client: %s",
|
|
|
|
ctx->action, ctx->client);
|
2002-08-07 00:39:45 +08:00
|
|
|
}
|