unix: split out tcp module
This commit is contained in:
parent
b9120d0b0a
commit
510407c03d
@ -35,6 +35,7 @@ OBJS += src/unix/cares.o
|
||||
OBJS += src/unix/udp.o
|
||||
OBJS += src/unix/error.o
|
||||
OBJS += src/unix/process.o
|
||||
OBJS += src/unix/tcp.o
|
||||
|
||||
ifeq (SunOS,$(uname_S))
|
||||
EV_CONFIG=config_sunos.h
|
||||
|
||||
140
src/unix/core.c
140
src/unix/core.c
@ -82,13 +82,11 @@ static uv_loop_t* default_loop_ptr;
|
||||
void uv__next(EV_P_ ev_idle* watcher, int revents);
|
||||
static void uv__finish_close(uv_handle_t* handle);
|
||||
|
||||
static int uv_tcp_listen(uv_tcp_t* tcp, int backlog, uv_connection_cb cb);
|
||||
static int uv_pipe_listen(uv_pipe_t* handle, int backlog, uv_connection_cb cb);
|
||||
static int uv_pipe_cleanup(uv_pipe_t* handle);
|
||||
static uv_write_t* uv__write(uv_stream_t* stream);
|
||||
static void uv__read(uv_stream_t* stream);
|
||||
static void uv__stream_connect(uv_stream_t*);
|
||||
static void uv__stream_io(EV_P_ ev_io* watcher, int revents);
|
||||
static void uv__pipe_accept(EV_P_ ev_io* watcher, int revents);
|
||||
|
||||
|
||||
@ -241,102 +239,6 @@ void uv__handle_init(uv_loop_t* loop, uv_handle_t* handle,
|
||||
}
|
||||
|
||||
|
||||
int uv_tcp_init(uv_loop_t* loop, uv_tcp_t* tcp) {
|
||||
uv__handle_init(loop, (uv_handle_t*)tcp, UV_TCP);
|
||||
loop->counters.tcp_init++;
|
||||
|
||||
tcp->alloc_cb = NULL;
|
||||
tcp->connect_req = NULL;
|
||||
tcp->accepted_fd = -1;
|
||||
tcp->fd = -1;
|
||||
tcp->delayed_error = 0;
|
||||
ngx_queue_init(&tcp->write_queue);
|
||||
ngx_queue_init(&tcp->write_completed_queue);
|
||||
tcp->write_queue_size = 0;
|
||||
|
||||
ev_init(&tcp->read_watcher, uv__stream_io);
|
||||
tcp->read_watcher.data = tcp;
|
||||
|
||||
ev_init(&tcp->write_watcher, uv__stream_io);
|
||||
tcp->write_watcher.data = tcp;
|
||||
|
||||
assert(ngx_queue_empty(&tcp->write_queue));
|
||||
assert(ngx_queue_empty(&tcp->write_completed_queue));
|
||||
assert(tcp->write_queue_size == 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int uv__tcp_bind(uv_tcp_t* tcp,
|
||||
int domain,
|
||||
struct sockaddr* addr,
|
||||
int addrsize) {
|
||||
int saved_errno;
|
||||
int status;
|
||||
|
||||
saved_errno = errno;
|
||||
status = -1;
|
||||
|
||||
if (tcp->fd < 0) {
|
||||
if ((tcp->fd = uv__socket(domain, SOCK_STREAM, 0)) == -1) {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (uv__stream_open((uv_stream_t*)tcp, tcp->fd, UV_READABLE | UV_WRITABLE)) {
|
||||
uv__close(tcp->fd);
|
||||
tcp->fd = -1;
|
||||
status = -2;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
assert(tcp->fd >= 0);
|
||||
|
||||
tcp->delayed_error = 0;
|
||||
if (bind(tcp->fd, addr, addrsize) == -1) {
|
||||
if (errno == EADDRINUSE) {
|
||||
tcp->delayed_error = errno;
|
||||
} else {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
status = 0;
|
||||
|
||||
out:
|
||||
errno = saved_errno;
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
int uv_tcp_bind(uv_tcp_t* tcp, struct sockaddr_in addr) {
|
||||
if (addr.sin_family != AF_INET) {
|
||||
uv_err_new(tcp->loop, EFAULT);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return uv__tcp_bind(tcp,
|
||||
AF_INET,
|
||||
(struct sockaddr*)&addr,
|
||||
sizeof(struct sockaddr_in));
|
||||
}
|
||||
|
||||
|
||||
int uv_tcp_bind6(uv_tcp_t* tcp, struct sockaddr_in6 addr) {
|
||||
if (addr.sin6_family != AF_INET6) {
|
||||
uv_err_new(tcp->loop, EFAULT);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return uv__tcp_bind(tcp,
|
||||
AF_INET6,
|
||||
(struct sockaddr*)&addr,
|
||||
sizeof(struct sockaddr_in6));
|
||||
}
|
||||
|
||||
|
||||
int uv__stream_open(uv_stream_t* stream, int fd, int flags) {
|
||||
socklen_t yes;
|
||||
|
||||
@ -463,46 +365,6 @@ int uv_listen(uv_stream_t* stream, int backlog, uv_connection_cb cb) {
|
||||
}
|
||||
|
||||
|
||||
static int uv_tcp_listen(uv_tcp_t* tcp, int backlog, uv_connection_cb cb) {
|
||||
int r;
|
||||
|
||||
if (tcp->delayed_error) {
|
||||
uv_err_new(tcp->loop, tcp->delayed_error);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (tcp->fd < 0) {
|
||||
if ((tcp->fd = uv__socket(AF_INET, SOCK_STREAM, 0)) == -1) {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (uv__stream_open((uv_stream_t*)tcp, tcp->fd, UV_READABLE)) {
|
||||
uv__close(tcp->fd);
|
||||
tcp->fd = -1;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
assert(tcp->fd >= 0);
|
||||
|
||||
r = listen(tcp->fd, backlog);
|
||||
if (r < 0) {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
return -1;
|
||||
}
|
||||
|
||||
tcp->connection_cb = cb;
|
||||
|
||||
/* Start listening for connections. */
|
||||
ev_io_set(&tcp->read_watcher, tcp->fd, EV_READ);
|
||||
ev_set_cb(&tcp->read_watcher, uv__server_io);
|
||||
ev_io_start(tcp->loop->ev, &tcp->read_watcher);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
void uv__finish_close(uv_handle_t* handle) {
|
||||
uv_loop_t* loop = handle->loop;
|
||||
|
||||
@ -850,7 +712,7 @@ int uv_shutdown(uv_shutdown_t* req, uv_stream_t* stream, uv_shutdown_cb cb) {
|
||||
}
|
||||
|
||||
|
||||
static void uv__stream_io(EV_P_ ev_io* watcher, int revents) {
|
||||
void uv__stream_io(EV_P_ ev_io* watcher, int revents) {
|
||||
uv_stream_t* stream = watcher->data;
|
||||
|
||||
assert(stream->type == UV_TCP ||
|
||||
|
||||
@ -52,6 +52,11 @@ void uv_fatal_error(const int errorno, const char* syscall);
|
||||
|
||||
/* stream */
|
||||
int uv__stream_open(uv_stream_t*, int fd, int flags);
|
||||
void uv__stream_io(EV_P_ ev_io* watcher, int revents);
|
||||
void uv__server_io(EV_P_ ev_io* watcher, int revents);
|
||||
|
||||
/* tcp */
|
||||
int uv_tcp_listen(uv_tcp_t* tcp, int backlog, uv_connection_cb cb);
|
||||
|
||||
/* udp */
|
||||
void uv__udp_destroy(uv_udp_t* handle);
|
||||
|
||||
162
src/unix/tcp.c
Normal file
162
src/unix/tcp.c
Normal file
@ -0,0 +1,162 @@
|
||||
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to
|
||||
* deal in the Software without restriction, including without limitation the
|
||||
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
* sell copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "uv.h"
|
||||
#include "internal.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
|
||||
|
||||
int uv_tcp_init(uv_loop_t* loop, uv_tcp_t* tcp) {
|
||||
uv__handle_init(loop, (uv_handle_t*)tcp, UV_TCP);
|
||||
loop->counters.tcp_init++;
|
||||
|
||||
tcp->alloc_cb = NULL;
|
||||
tcp->connect_req = NULL;
|
||||
tcp->accepted_fd = -1;
|
||||
tcp->fd = -1;
|
||||
tcp->delayed_error = 0;
|
||||
ngx_queue_init(&tcp->write_queue);
|
||||
ngx_queue_init(&tcp->write_completed_queue);
|
||||
tcp->write_queue_size = 0;
|
||||
|
||||
ev_init(&tcp->read_watcher, uv__stream_io);
|
||||
tcp->read_watcher.data = tcp;
|
||||
|
||||
ev_init(&tcp->write_watcher, uv__stream_io);
|
||||
tcp->write_watcher.data = tcp;
|
||||
|
||||
assert(ngx_queue_empty(&tcp->write_queue));
|
||||
assert(ngx_queue_empty(&tcp->write_completed_queue));
|
||||
assert(tcp->write_queue_size == 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int uv__tcp_bind(uv_tcp_t* tcp,
|
||||
int domain,
|
||||
struct sockaddr* addr,
|
||||
int addrsize) {
|
||||
int saved_errno;
|
||||
int status;
|
||||
|
||||
saved_errno = errno;
|
||||
status = -1;
|
||||
|
||||
if (tcp->fd < 0) {
|
||||
if ((tcp->fd = uv__socket(domain, SOCK_STREAM, 0)) == -1) {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (uv__stream_open((uv_stream_t*)tcp, tcp->fd, UV_READABLE | UV_WRITABLE)) {
|
||||
uv__close(tcp->fd);
|
||||
tcp->fd = -1;
|
||||
status = -2;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
assert(tcp->fd >= 0);
|
||||
|
||||
tcp->delayed_error = 0;
|
||||
if (bind(tcp->fd, addr, addrsize) == -1) {
|
||||
if (errno == EADDRINUSE) {
|
||||
tcp->delayed_error = errno;
|
||||
} else {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
status = 0;
|
||||
|
||||
out:
|
||||
errno = saved_errno;
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
int uv_tcp_bind(uv_tcp_t* tcp, struct sockaddr_in addr) {
|
||||
if (addr.sin_family != AF_INET) {
|
||||
uv_err_new(tcp->loop, EFAULT);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return uv__tcp_bind(tcp,
|
||||
AF_INET,
|
||||
(struct sockaddr*)&addr,
|
||||
sizeof(struct sockaddr_in));
|
||||
}
|
||||
|
||||
|
||||
int uv_tcp_bind6(uv_tcp_t* tcp, struct sockaddr_in6 addr) {
|
||||
if (addr.sin6_family != AF_INET6) {
|
||||
uv_err_new(tcp->loop, EFAULT);
|
||||
return -1;
|
||||
}
|
||||
|
||||
return uv__tcp_bind(tcp,
|
||||
AF_INET6,
|
||||
(struct sockaddr*)&addr,
|
||||
sizeof(struct sockaddr_in6));
|
||||
}
|
||||
|
||||
|
||||
int uv_tcp_listen(uv_tcp_t* tcp, int backlog, uv_connection_cb cb) {
|
||||
int r;
|
||||
|
||||
if (tcp->delayed_error) {
|
||||
uv_err_new(tcp->loop, tcp->delayed_error);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (tcp->fd < 0) {
|
||||
if ((tcp->fd = uv__socket(AF_INET, SOCK_STREAM, 0)) == -1) {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (uv__stream_open((uv_stream_t*)tcp, tcp->fd, UV_READABLE)) {
|
||||
uv__close(tcp->fd);
|
||||
tcp->fd = -1;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
assert(tcp->fd >= 0);
|
||||
|
||||
r = listen(tcp->fd, backlog);
|
||||
if (r < 0) {
|
||||
uv_err_new(tcp->loop, errno);
|
||||
return -1;
|
||||
}
|
||||
|
||||
tcp->connection_cb = cb;
|
||||
|
||||
/* Start listening for connections. */
|
||||
ev_io_set(&tcp->read_watcher, tcp->fd, EV_READ);
|
||||
ev_set_cb(&tcp->read_watcher, uv__server_io);
|
||||
ev_io_start(tcp->loop->ev, &tcp->read_watcher);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user