2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
#include <ngx_event.h>
|
2003-06-11 23:28:34 +08:00
|
|
|
#include <nginx.h>
|
2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
|
2003-06-06 22:59:20 +08:00
|
|
|
void ngx_event_acceptex(ngx_event_t *rev)
|
2003-02-07 01:21:13 +08:00
|
|
|
{
|
|
|
|
ngx_connection_t *c;
|
|
|
|
|
2003-06-06 22:59:20 +08:00
|
|
|
c = (ngx_connection_t *) rev->data;
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2003-06-06 22:59:20 +08:00
|
|
|
if (rev->ovlp.error) {
|
2003-06-11 23:28:34 +08:00
|
|
|
ngx_log_error(NGX_LOG_CRIT, c->log, rev->ovlp.error,
|
|
|
|
"AcceptEx() %s failed", c->listening->addr_text.data);
|
2003-06-03 23:42:58 +08:00
|
|
|
return;
|
2003-02-07 01:21:13 +08:00
|
|
|
}
|
|
|
|
|
2003-06-06 22:59:20 +08:00
|
|
|
/* SO_UPDATE_ACCEPT_CONTEXT is required for shutdown() to work */
|
2003-05-21 21:28:21 +08:00
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
if (setsockopt(c->fd, SOL_SOCKET, SO_UPDATE_ACCEPT_CONTEXT,
|
|
|
|
(char *)&c->listening->fd, sizeof(ngx_socket_t)) == -1)
|
|
|
|
{
|
2003-06-11 23:28:34 +08:00
|
|
|
ngx_log_error(NGX_LOG_CRIT, c->log, ngx_socket_errno,
|
2003-06-03 23:42:58 +08:00
|
|
|
"setsockopt(SO_UPDATE_ACCEPT_CONTEXT) failed for %s",
|
|
|
|
c->addr_text.data);
|
2003-06-06 22:59:20 +08:00
|
|
|
} else {
|
2003-06-11 23:28:34 +08:00
|
|
|
c->accept_context_updated = 1;
|
2003-06-03 23:42:58 +08:00
|
|
|
}
|
2003-05-21 21:28:21 +08:00
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
getacceptexsockaddrs(c->buffer->pos, c->listening->post_accept_buffer_size,
|
|
|
|
c->listening->socklen + 16,
|
|
|
|
c->listening->socklen + 16,
|
2003-02-07 01:21:13 +08:00
|
|
|
&c->local_sockaddr, &c->local_socklen,
|
|
|
|
&c->sockaddr, &c->socklen);
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
if (c->listening->post_accept_buffer_size) {
|
|
|
|
c->buffer->last += rev->available;
|
|
|
|
c->buffer->end = c->buffer->start
|
|
|
|
+ c->listening->post_accept_buffer_size;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
c->buffer = NULL;
|
|
|
|
}
|
|
|
|
|
2003-02-07 01:21:13 +08:00
|
|
|
ngx_event_post_acceptex(c->listening, 1);
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
/* TODO: MT */
|
2003-02-07 01:21:13 +08:00
|
|
|
c->number = ngx_connection_counter++;
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
c->listening->handler(c);
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
return;
|
2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
int ngx_event_post_acceptex(ngx_listening_t *ls, int n)
|
2003-02-07 01:21:13 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
u_int rcvd;
|
|
|
|
ngx_err_t err;
|
|
|
|
ngx_event_t *rev, *wev;
|
|
|
|
ngx_socket_t s;
|
|
|
|
ngx_connection_t *c;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
|
|
|
|
/* TODO: look up reused sockets */
|
|
|
|
|
|
|
|
s = ngx_socket(ls->family, ls->type, ls->protocol, ls->flags);
|
2003-06-11 23:28:34 +08:00
|
|
|
ngx_log_debug(ls->log, ngx_socket_n ": %d:%d" _ s _ ls->flags);
|
2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
if (s == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, ls->log, ngx_socket_errno,
|
2003-06-11 23:28:34 +08:00
|
|
|
ngx_socket_n " for AcceptEx() %s post failed",
|
|
|
|
ls->addr_text.data);
|
2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
/*
|
|
|
|
* Winsock assignes a socket number divisible by 4
|
|
|
|
* so to find a connection we divide a socket number by 4.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (s % 4) {
|
|
|
|
ngx_log_error(NGX_LOG_EMERG, ls->log, 0,
|
2003-07-07 14:11:50 +08:00
|
|
|
ngx_socket_n
|
|
|
|
" created socket %d, not divisible by 4", s);
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2003-07-07 14:11:50 +08:00
|
|
|
c = &ngx_cycle->connections[s / 4];
|
|
|
|
rev = &ngx_cycle->read_events[s / 4];
|
|
|
|
wev = &ngx_cycle->write_events[s / 4];
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2003-07-07 14:11:50 +08:00
|
|
|
ngx_memzero(c, sizeof(ngx_connection_t));
|
2003-02-07 01:21:13 +08:00
|
|
|
ngx_memzero(rev, sizeof(ngx_event_t));
|
|
|
|
ngx_memzero(wev, sizeof(ngx_event_t));
|
|
|
|
|
|
|
|
rev->index = wev->index = NGX_INVALID_INDEX;
|
|
|
|
|
|
|
|
rev->ovlp.event = rev;
|
|
|
|
wev->ovlp.event = wev;
|
|
|
|
|
|
|
|
rev->data = wev->data = c;
|
|
|
|
c->read = rev;
|
|
|
|
c->write = wev;
|
|
|
|
|
|
|
|
c->listening = ls;
|
|
|
|
c->fd = s;
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
c->ctx = ls->ctx;
|
|
|
|
c->servers = ls->servers;
|
|
|
|
|
2003-02-07 01:21:13 +08:00
|
|
|
c->unexpected_eof = 1;
|
|
|
|
wev->write = 1;
|
|
|
|
rev->event_handler = ngx_event_acceptex;
|
|
|
|
|
2003-10-30 16:51:06 +08:00
|
|
|
rev->ready = 1;
|
|
|
|
wev->ready = 1;
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
ngx_test_null(c->pool,
|
|
|
|
ngx_create_pool(ls->pool_size, ls->log),
|
|
|
|
NGX_ERROR);
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
ngx_test_null(c->buffer,
|
|
|
|
ngx_create_temp_hunk(c->pool,
|
|
|
|
ls->post_accept_buffer_size
|
2003-10-30 16:51:06 +08:00
|
|
|
+ 2 * (c->listening->socklen + 16)),
|
2003-02-07 01:21:13 +08:00
|
|
|
NGX_ERROR);
|
2003-06-11 23:28:34 +08:00
|
|
|
|
|
|
|
ngx_test_null(c->local_sockaddr, ngx_palloc(c->pool, ls->socklen),
|
2003-02-07 01:21:13 +08:00
|
|
|
NGX_ERROR);
|
2003-06-11 23:28:34 +08:00
|
|
|
|
|
|
|
ngx_test_null(c->sockaddr, ngx_palloc(c->pool, ls->socklen),
|
2003-02-07 01:21:13 +08:00
|
|
|
NGX_ERROR);
|
|
|
|
|
|
|
|
ngx_test_null(c->log, ngx_palloc(c->pool, sizeof(ngx_log_t)),
|
|
|
|
NGX_ERROR);
|
2003-06-11 23:28:34 +08:00
|
|
|
|
2003-02-07 01:21:13 +08:00
|
|
|
ngx_memcpy(c->log, ls->log, sizeof(ngx_log_t));
|
2003-06-11 23:28:34 +08:00
|
|
|
c->read->log = c->write->log = c->log;
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2003-06-06 22:59:20 +08:00
|
|
|
if (ngx_add_event(rev, 0, NGX_IOCP_IO) == NGX_ERROR) {
|
2003-02-07 01:21:13 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
if (acceptex(ls->fd, s, c->buffer->pos, ls->post_accept_buffer_size,
|
|
|
|
ls->socklen + 16, ls->socklen + 16,
|
|
|
|
&rcvd, (LPOVERLAPPED) &rev->ovlp) == 0)
|
|
|
|
{
|
2003-02-07 01:21:13 +08:00
|
|
|
|
|
|
|
err = ngx_socket_errno;
|
2003-06-11 23:28:34 +08:00
|
|
|
if (err != WSA_IO_PENDING) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, ls->log, err,
|
|
|
|
"AcceptEx() %s falied", ls->addr_text.data);
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2003-06-11 23:28:34 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2003-02-07 01:21:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|