|
|
|
/* Copyright (c) 2008,2009 Ryan Dahl
|
|
|
|
*
|
|
|
|
* oi_queue comes from ngx_queue.h
|
|
|
|
* Copyright (C) 2002-2009 Igor Sysoev
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <unistd.h> /* close() */
|
|
|
|
#include <fcntl.h> /* fcntl() */
|
|
|
|
#include <errno.h> /* for the default methods */
|
|
|
|
#include <string.h> /* memset */
|
|
|
|
|
|
|
|
#include <netinet/tcp.h> /* TCP_NODELAY */
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h> /* shutdown */
|
|
|
|
|
|
|
|
#include <ev.h>
|
|
|
|
#include <oi_socket.h>
|
|
|
|
|
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
# define SOCKET_LOOP_ socket->loop,
|
|
|
|
# define SERVER_LOOP_ server->loop,
|
|
|
|
#else
|
|
|
|
# define SOCKET_LOOP_
|
|
|
|
# define SERVER_LOOP_
|
|
|
|
#endif // EV_MULTIPLICITY
|
|
|
|
|
|
|
|
#if HAVE_GNUTLS
|
|
|
|
# include <gnutls/gnutls.h>
|
|
|
|
|
|
|
|
/* a few forwards
|
|
|
|
* they wont even be defined if not having gnutls
|
|
|
|
* */
|
|
|
|
static int secure_full_goodbye (oi_socket *socket);
|
|
|
|
static int secure_half_goodbye (oi_socket *socket);
|
|
|
|
#endif // HAVE_GNUTLS
|
|
|
|
|
|
|
|
#undef TRUE
|
|
|
|
#define TRUE 1
|
|
|
|
#undef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#undef MIN
|
|
|
|
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
|
|
|
|
#define OKAY 0
|
|
|
|
#define AGAIN 1
|
|
|
|
#define ERROR 2
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_buf_destroy (oi_buf *buf)
|
|
|
|
{
|
|
|
|
free(buf->base);
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_buf *
|
|
|
|
oi_buf_new2 (size_t len)
|
|
|
|
{
|
|
|
|
oi_buf *buf = malloc(sizeof(oi_buf));
|
|
|
|
if(!buf)
|
|
|
|
return NULL;
|
|
|
|
buf->base = malloc(len);
|
|
|
|
if(!buf->base) {
|
|
|
|
free(buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
buf->len = len;
|
|
|
|
buf->release = oi_buf_destroy;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_buf *
|
|
|
|
oi_buf_new (const char *base, size_t len)
|
|
|
|
{
|
|
|
|
oi_buf *buf = oi_buf_new2(len);
|
|
|
|
if(!buf)
|
|
|
|
return NULL;
|
|
|
|
memcpy(buf->base, base, len);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CLOSE_ASAP(socket) do { \
|
|
|
|
(socket)->read_action = full_close; \
|
|
|
|
(socket)->write_action = full_close; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static int
|
|
|
|
full_close(oi_socket *socket)
|
|
|
|
{
|
|
|
|
//printf("close(%d)\n", socket->fd);
|
|
|
|
if (close(socket->fd) == -1) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
return AGAIN;
|
|
|
|
else {
|
|
|
|
socket->errorno = errno;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
socket->read_action = NULL;
|
|
|
|
socket->write_action = NULL;
|
|
|
|
socket->fd = -1;
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
half_close(oi_socket *socket)
|
|
|
|
{
|
|
|
|
int r = shutdown(socket->fd, SHUT_WR);
|
|
|
|
if (r == -1) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOTCONN:
|
|
|
|
socket->errorno = errno;
|
|
|
|
return ERROR;
|
|
|
|
|
|
|
|
default:
|
|
|
|
perror("shutdown()");
|
|
|
|
socket->errorno = errno;
|
|
|
|
assert(0 && "Shouldn't get an error on shutdown");
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
socket->write_action = NULL;
|
|
|
|
if (socket->read_action == NULL)
|
|
|
|
socket->fd = -1;
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is to be called when ever the out_stream is empty
|
|
|
|
// and we need to change state.
|
|
|
|
static void
|
|
|
|
change_state_for_empty_out_stream (oi_socket *socket)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* a very complicated bunch of close logic!
|
|
|
|
* XXX this is awful. FIXME
|
|
|
|
*/
|
|
|
|
if (socket->write_action == full_close || socket->read_action == full_close)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (socket->got_half_close == FALSE) {
|
|
|
|
if (socket->got_full_close == FALSE) {
|
|
|
|
/* Normal situation. Didn't get any close signals. */
|
|
|
|
ev_io_stop(SOCKET_LOOP_ &socket->write_watcher);
|
|
|
|
} else {
|
|
|
|
/* Got Full Close. */
|
|
|
|
if (socket->read_action)
|
|
|
|
#if HAVE_GNUTLS
|
|
|
|
socket->read_action = socket->secure ? secure_full_goodbye : full_close;
|
|
|
|
#else
|
|
|
|
socket->read_action = full_close;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (socket->write_action)
|
|
|
|
#if HAVE_GNUTLS
|
|
|
|
socket->write_action = socket->secure ? secure_full_goodbye : full_close;
|
|
|
|
#else
|
|
|
|
socket->write_action = full_close;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Got Half Close. */
|
|
|
|
if (socket->write_action)
|
|
|
|
#if HAVE_GNUTLS
|
|
|
|
socket->write_action = socket->secure ? secure_half_goodbye : half_close;
|
|
|
|
#else
|
|
|
|
socket->write_action = half_close;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_write_buffer_after_send (oi_socket *socket, ssize_t sent)
|
|
|
|
{
|
|
|
|
oi_queue *q = oi_queue_last(&socket->out_stream);
|
|
|
|
oi_buf *to_write = oi_queue_data(q, oi_buf, queue);
|
|
|
|
to_write->written += sent;
|
|
|
|
socket->written += sent;
|
|
|
|
|
|
|
|
if (to_write->written == to_write->len) {
|
|
|
|
|
|
|
|
oi_queue_remove(q);
|
|
|
|
|
|
|
|
if (to_write->release) {
|
|
|
|
to_write->release(to_write);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (oi_queue_empty(&socket->out_stream)) {
|
|
|
|
change_state_for_empty_out_stream(socket);
|
|
|
|
if (socket->on_drain)
|
|
|
|
socket->on_drain(socket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAVE_GNUTLS
|
|
|
|
static int secure_socket_send(oi_socket *socket);
|
|
|
|
static int secure_socket_recv(oi_socket *socket);
|
|
|
|
|
|
|
|
/* TODO can this be done without ignoring SIGPIPE? */
|
|
|
|
static ssize_t
|
|
|
|
nosigpipe_push(gnutls_transport_ptr_t data, const void *buf, size_t len)
|
|
|
|
{
|
|
|
|
oi_socket *socket = (oi_socket*)data;
|
|
|
|
assert(socket->secure);
|
|
|
|
int flags = 0;
|
|
|
|
#ifdef MSG_NOSIGNAL
|
|
|
|
flags |= MSG_NOSIGNAL;
|
|
|
|
#endif
|
|
|
|
#ifdef MSG_DONTWAIT
|
|
|
|
flags |= MSG_DONTWAIT;
|
|
|
|
#endif
|
|
|
|
int r = send(socket->fd, buf, len, flags);
|
|
|
|
|
|
|
|
if (r == -1) {
|
|
|
|
gnutls_transport_set_errno(socket->session, errno); /* necessary ? */
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
secure_handshake(oi_socket *socket)
|
|
|
|
{
|
|
|
|
assert(socket->secure);
|
|
|
|
|
|
|
|
int r = gnutls_handshake(socket->session);
|
|
|
|
|
|
|
|
if (gnutls_error_is_fatal(r)) {
|
|
|
|
socket->gnutls_errorno = r;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == GNUTLS_E_INTERRUPTED || r == GNUTLS_E_AGAIN)
|
|
|
|
return AGAIN;
|
|
|
|
|
|
|
|
oi_socket_reset_timeout(socket);
|
|
|
|
|
|
|
|
if (!socket->connected) {
|
|
|
|
socket->connected = TRUE;
|
|
|
|
if (socket->on_connect) socket->on_connect(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (socket->read_action == secure_handshake)
|
|
|
|
socket->read_action = secure_socket_recv;
|
|
|
|
|
|
|
|
if (socket->write_action == secure_handshake)
|
|
|
|
socket->write_action = secure_socket_send;
|
|
|
|
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
secure_socket_send(oi_socket *socket)
|
|
|
|
{
|
|
|
|
ssize_t sent;
|
|
|
|
|
|
|
|
if (oi_queue_empty(&socket->out_stream)) {
|
|
|
|
ev_io_stop(SOCKET_LOOP_ &socket->write_watcher);
|
|
|
|
return AGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_queue *q = oi_queue_last(&socket->out_stream);
|
|
|
|
oi_buf *to_write = oi_queue_data(q, oi_buf, queue);
|
|
|
|
|
|
|
|
assert(socket->secure);
|
|
|
|
|
|
|
|
sent = gnutls_record_send( socket->session
|
|
|
|
, to_write->base + to_write->written
|
|
|
|
, to_write->len - to_write->written
|
|
|
|
);
|
|
|
|
|
|
|
|
if (gnutls_error_is_fatal(sent)) {
|
|
|
|
socket->gnutls_errorno = sent;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sent == 0)
|
|
|
|
return AGAIN;
|
|
|
|
|
|
|
|
oi_socket_reset_timeout(socket);
|
|
|
|
|
|
|
|
if (sent == GNUTLS_E_INTERRUPTED || sent == GNUTLS_E_AGAIN) {
|
|
|
|
return AGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sent > 0) {
|
|
|
|
/* make sure the callbacks are correct */
|
|
|
|
if (socket->read_action)
|
|
|
|
socket->read_action = secure_socket_recv;
|
|
|
|
update_write_buffer_after_send(socket, sent);
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(0 && "Unhandled return code from gnutls_record_send()!");
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
secure_socket_recv(oi_socket *socket)
|
|
|
|
{
|
|
|
|
char recv_buffer[socket->chunksize];
|
|
|
|
size_t recv_buffer_size = socket->chunksize;
|
|
|
|
ssize_t recved;
|
|
|
|
|
|
|
|
assert(socket->secure);
|
|
|
|
|
|
|
|
recved = gnutls_record_recv(socket->session, recv_buffer, recv_buffer_size);
|
|
|
|
|
|
|
|
//printf("secure socket recv %d %p\n", recved, socket->on_connect);
|
|
|
|
|
|
|
|
if (gnutls_error_is_fatal(recved)) {
|
|
|
|
socket->gnutls_errorno = recved;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (recved == GNUTLS_E_INTERRUPTED || recved == GNUTLS_E_AGAIN) {
|
|
|
|
return AGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_socket_reset_timeout(socket);
|
|
|
|
|
|
|
|
/* A server may also receive GNUTLS_E_REHANDSHAKE when a client has
|
|
|
|
* initiated a handshake. In that case the server can only initiate a
|
|
|
|
* handshake or terminate the connection. */
|
|
|
|
if (recved == GNUTLS_E_REHANDSHAKE) {
|
|
|
|
if (socket->write_action) {
|
|
|
|
socket->read_action = secure_handshake;
|
|
|
|
socket->write_action = secure_handshake;
|
|
|
|
return OKAY;
|
|
|
|
} else {
|
|
|
|
socket->read_action = full_close;
|
|
|
|
// set error
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (recved >= 0) {
|
|
|
|
/* Got EOF */
|
|
|
|
if (recved == 0) {
|
|
|
|
socket->read_action = NULL;
|
|
|
|
if (socket->write_action == NULL)
|
|
|
|
CLOSE_ASAP(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (socket->write_action)
|
|
|
|
socket->write_action = secure_socket_send;
|
|
|
|
|
|
|
|
if (socket->on_read) { socket->on_read(socket, recv_buffer, recved); }
|
|
|
|
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(0 && "Unhandled return code from gnutls_record_send()!");
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
secure_full_goodbye (oi_socket *socket)
|
|
|
|
{
|
|
|
|
assert(socket->secure);
|
|
|
|
|
|
|
|
int r = gnutls_bye(socket->session, GNUTLS_SHUT_RDWR);
|
|
|
|
|
|
|
|
if (gnutls_error_is_fatal(r)) {
|
|
|
|
socket->gnutls_errorno = r;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == GNUTLS_E_INTERRUPTED || r == GNUTLS_E_AGAIN)
|
|
|
|
return AGAIN;
|
|
|
|
|
|
|
|
CLOSE_ASAP(socket);
|
|
|
|
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
secure_half_goodbye (oi_socket *socket)
|
|
|
|
{
|
|
|
|
assert(socket->secure);
|
|
|
|
|
|
|
|
int r = gnutls_bye(socket->session, GNUTLS_SHUT_WR);
|
|
|
|
|
|
|
|
if (gnutls_error_is_fatal(r)) {
|
|
|
|
socket->gnutls_errorno = r;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == GNUTLS_E_INTERRUPTED || r == GNUTLS_E_AGAIN)
|
|
|
|
return AGAIN;
|
|
|
|
|
|
|
|
if (socket->write_action)
|
|
|
|
socket->write_action = half_close;
|
|
|
|
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_set_secure_session (oi_socket *socket, gnutls_session_t session)
|
|
|
|
{
|
|
|
|
socket->session = session;
|
|
|
|
socket->secure = TRUE;
|
|
|
|
}
|
|
|
|
#endif /* HAVE GNUTLS */
|
|
|
|
|
|
|
|
static int
|
|
|
|
socket_send (oi_socket *socket)
|
|
|
|
{
|
|
|
|
ssize_t sent;
|
|
|
|
|
|
|
|
assert(socket->secure == FALSE);
|
|
|
|
|
|
|
|
if (oi_queue_empty(&socket->out_stream)) {
|
|
|
|
ev_io_stop(SOCKET_LOOP_ &socket->write_watcher);
|
|
|
|
return AGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_queue *q = oi_queue_last(&socket->out_stream);
|
|
|
|
oi_buf *to_write = oi_queue_data(q, oi_buf, queue);
|
|
|
|
|
|
|
|
int flags = 0;
|
|
|
|
#ifdef MSG_NOSIGNAL
|
|
|
|
flags |= MSG_NOSIGNAL;
|
|
|
|
#endif
|
|
|
|
#ifdef MSG_DONTWAIT
|
|
|
|
flags |= MSG_DONTWAIT;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* TODO use writev() here */
|
|
|
|
|
|
|
|
sent = send( socket->fd
|
|
|
|
, to_write->base + to_write->written
|
|
|
|
, to_write->len - to_write->written
|
|
|
|
, flags
|
|
|
|
);
|
|
|
|
|
|
|
|
if (sent < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
#ifdef EWOULDBLOCK
|
|
|
|
case EWOULDBLOCK:
|
|
|
|
#else
|
|
|
|
case EAGAIN:
|
|
|
|
#endif
|
|
|
|
return AGAIN;
|
|
|
|
|
|
|
|
default:
|
|
|
|
socket->errorno = errno;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_socket_reset_timeout(socket);
|
|
|
|
|
|
|
|
if (!socket->connected) {
|
|
|
|
socket->connected = TRUE;
|
|
|
|
if (socket->on_connect) socket->on_connect(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
update_write_buffer_after_send(socket, sent);
|
|
|
|
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
socket_recv (oi_socket *socket)
|
|
|
|
{
|
|
|
|
char buf[TCP_MAXWIN];
|
|
|
|
size_t buf_size = TCP_MAXWIN;
|
|
|
|
ssize_t recved;
|
|
|
|
|
|
|
|
assert(socket->secure == FALSE);
|
|
|
|
|
|
|
|
if (!socket->connected) {
|
|
|
|
socket->connected = TRUE;
|
|
|
|
if (socket->on_connect) socket->on_connect(socket);
|
|
|
|
//return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
recved = recv(socket->fd, buf, buf_size, 0);
|
|
|
|
|
|
|
|
if (recved < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
#ifdef EWOULDBLOCK
|
|
|
|
case EWOULDBLOCK:
|
|
|
|
#else
|
|
|
|
case EAGAIN:
|
|
|
|
#endif
|
|
|
|
return AGAIN;
|
|
|
|
|
|
|
|
case EINTR:
|
|
|
|
return AGAIN;
|
|
|
|
|
|
|
|
default:
|
|
|
|
socket->errorno = errno;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_socket_reset_timeout(socket);
|
|
|
|
|
|
|
|
if (recved == 0) {
|
|
|
|
oi_socket_read_stop(socket);
|
|
|
|
socket->read_action = NULL;
|
|
|
|
if (socket->write_action == NULL)
|
|
|
|
CLOSE_ASAP(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOTE: EOF is signaled with recved == 0 on callback */
|
|
|
|
if (socket->on_read) { socket->on_read(socket, buf, recved); }
|
|
|
|
|
|
|
|
return OKAY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
assign_file_descriptor (oi_socket *socket, int fd)
|
|
|
|
{
|
|
|
|
socket->fd = fd;
|
|
|
|
|
|
|
|
ev_io_set (&socket->read_watcher, fd, EV_READ);
|
|
|
|
ev_io_set (&socket->write_watcher, fd, EV_WRITE);
|
|
|
|
|
|
|
|
socket->read_action = socket_recv;
|
|
|
|
socket->write_action = socket_send;
|
|
|
|
|
|
|
|
#if HAVE_GNUTLS
|
|
|
|
if (socket->secure) {
|
|
|
|
gnutls_transport_set_lowat(socket->session, 0);
|
|
|
|
gnutls_transport_set_push_function(socket->session, nosigpipe_push);
|
|
|
|
gnutls_transport_set_ptr2 ( socket->session
|
|
|
|
/* recv */ , (gnutls_transport_ptr_t)fd
|
|
|
|
/* send */ , socket
|
|
|
|
);
|
|
|
|
socket->read_action = secure_handshake;
|
|
|
|
socket->write_action = secure_handshake;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Internal callback
|
|
|
|
* Called by server->connection_watcher.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
on_connection (EV_P_ ev_io *watcher, int revents)
|
|
|
|
{
|
|
|
|
oi_server *server = watcher->data;
|
|
|
|
|
|
|
|
// printf("on connection!\n");
|
|
|
|
|
|
|
|
assert(server->listening);
|
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
assert(server->loop == loop);
|
|
|
|
#endif
|
|
|
|
assert(&server->connection_watcher == watcher);
|
|
|
|
|
|
|
|
if (EV_ERROR & revents) {
|
|
|
|
oi_server_close(server);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sockaddr address; /* connector's address information */
|
|
|
|
socklen_t addr_len = sizeof(address);
|
|
|
|
|
|
|
|
/* TODO accept all possible connections? currently: just one */
|
|
|
|
int fd = accept(server->fd, (struct sockaddr*)&address, &addr_len);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror("accept()");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_socket *socket = NULL;
|
|
|
|
if (server->on_connection)
|
|
|
|
socket = server->on_connection(server, (struct sockaddr*)&address, addr_len);
|
|
|
|
|
|
|
|
if (socket == NULL) {
|
|
|
|
close(fd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int flags = fcntl(fd, F_GETFL, 0);
|
|
|
|
int r = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
|
|
|
|
if (r < 0) {
|
|
|
|
/* TODO error report */
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SO_NOSIGPIPE
|
|
|
|
flags = 1;
|
|
|
|
setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &flags, sizeof(flags));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
socket->server = server;
|
|
|
|
assign_file_descriptor(socket, fd);
|
|
|
|
oi_socket_attach(EV_A_ socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
oi_server_listen(oi_server *server, struct addrinfo *addrinfo)
|
|
|
|
{
|
|
|
|
int fd = -1;
|
|
|
|
assert(server->listening == FALSE);
|
|
|
|
|
|
|
|
fd = socket( addrinfo->ai_family
|
|
|
|
, addrinfo->ai_socktype
|
|
|
|
, addrinfo->ai_protocol
|
|
|
|
);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror("socket()");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int flags = fcntl(fd, F_GETFL, 0);
|
|
|
|
int r = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
|
|
|
|
if (r < 0) {
|
|
|
|
perror("fcntl()");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = 1;
|
|
|
|
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *)&flags, sizeof(flags));
|
|
|
|
setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (void *)&flags, sizeof(flags));
|
|
|
|
|
|
|
|
/* XXX: Sending single byte chunks in a response body? Perhaps there is a
|
|
|
|
* need to enable the Nagel algorithm dynamically. For now disabling.
|
|
|
|
*/
|
|
|
|
//setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (void *)&flags, sizeof(flags));
|
|
|
|
|
|
|
|
if (bind(fd, addrinfo->ai_addr, addrinfo->ai_addrlen) < 0) {
|
|
|
|
perror("bind()");
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen(fd, server->backlog) < 0) {
|
|
|
|
perror("listen()");
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
server->fd = fd;
|
|
|
|
server->listening = TRUE;
|
|
|
|
ev_io_set (&server->connection_watcher, server->fd, EV_READ);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the server. Will not accept new connections. Does not drop
|
|
|
|
* existing connections.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
oi_server_close(oi_server *server)
|
|
|
|
{
|
|
|
|
if (server->listening) {
|
|
|
|
oi_server_detach(server);
|
|
|
|
close(server->fd);
|
|
|
|
/* TODO do this on the loop? check return value? */
|
|
|
|
server->listening = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_server_attach (EV_P_ oi_server *server)
|
|
|
|
{
|
|
|
|
ev_io_start (EV_A_ &server->connection_watcher);
|
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
server->loop = loop;
|
|
|
|
#endif
|
|
|
|
server->attached = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_server_detach (oi_server *server)
|
|
|
|
{
|
|
|
|
ev_io_stop (SERVER_LOOP_ &server->connection_watcher);
|
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
server->loop = NULL;
|
|
|
|
#endif
|
|
|
|
server->attached = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_server_init(oi_server *server, int backlog)
|
|
|
|
{
|
|
|
|
server->backlog = backlog;
|
|
|
|
server->attached = FALSE;
|
|
|
|
server->listening = FALSE;
|
|
|
|
server->fd = -1;
|
|
|
|
server->connection_watcher.data = server;
|
|
|
|
ev_init (&server->connection_watcher, on_connection);
|
|
|
|
|
|
|
|
server->on_connection = NULL;
|
|
|
|
server->on_error = NULL;
|
|
|
|
server->data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Internal callback. called by socket->timeout_watcher */
|
|
|
|
static void
|
|
|
|
on_timeout(EV_P_ ev_timer *watcher, int revents)
|
|
|
|
{
|
|
|
|
oi_socket *socket = watcher->data;
|
|
|
|
|
|
|
|
assert(watcher == &socket->timeout_watcher);
|
|
|
|
|
|
|
|
// printf("on_timeout\n");
|
|
|
|
|
|
|
|
if (socket->on_timeout) { socket->on_timeout(socket); }
|
|
|
|
// timeout does not automatically kill your connection. you must!
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
release_write_buffer(oi_socket *socket)
|
|
|
|
{
|
|
|
|
while (!oi_queue_empty(&socket->out_stream)) {
|
|
|
|
oi_queue *q = oi_queue_last(&socket->out_stream);
|
|
|
|
oi_buf *buf = oi_queue_data(q, oi_buf, queue);
|
|
|
|
oi_queue_remove(q);
|
|
|
|
if (buf->release) { buf->release(buf); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Internal callback. called by socket->read_watcher */
|
|
|
|
static void
|
|
|
|
on_io_event(EV_P_ ev_io *watcher, int revents)
|
|
|
|
{
|
|
|
|
oi_socket *socket = watcher->data;
|
|
|
|
|
|
|
|
if (revents & EV_ERROR) {
|
|
|
|
socket->errorno = 1;
|
|
|
|
CLOSE_ASAP(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
int r;
|
|
|
|
int have_read_event = (socket->read_action != NULL);
|
|
|
|
int have_write_event = (socket->write_action != NULL);
|
|
|
|
|
|
|
|
while (have_read_event || have_write_event) {
|
|
|
|
/* RECV LOOP - TRY TO CLEAR THE BUFFER */
|
|
|
|
if (socket->read_action == NULL)
|
|
|
|
have_read_event = FALSE;
|
|
|
|
else {
|
|
|
|
r = socket->read_action(socket);
|
|
|
|
|
|
|
|
if (r == AGAIN)
|
|
|
|
have_read_event = FALSE;
|
|
|
|
else if (r == ERROR)
|
|
|
|
CLOSE_ASAP(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SEND LOOP - TRY TO CLEAR THE BUFFER */
|
|
|
|
if (socket->write_action == NULL)
|
|
|
|
have_write_event = FALSE;
|
|
|
|
else {
|
|
|
|
r = socket->write_action(socket);
|
|
|
|
|
|
|
|
if (r == AGAIN)
|
|
|
|
have_write_event = FALSE;
|
|
|
|
else if (r == ERROR)
|
|
|
|
CLOSE_ASAP(socket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close when both sides of the stream are closed.
|
|
|
|
if (socket->write_action == NULL && socket->read_action == NULL) {
|
|
|
|
release_write_buffer(socket);
|
|
|
|
|
|
|
|
ev_clear_pending (EV_A_ &socket->write_watcher);
|
|
|
|
ev_clear_pending (EV_A_ &socket->read_watcher);
|
|
|
|
ev_clear_pending (EV_A_ &socket->timeout_watcher);
|
|
|
|
|
|
|
|
oi_socket_detach(socket);
|
|
|
|
assert(socket->fd == -1);
|
|
|
|
|
|
|
|
if (socket->on_close) { socket->on_close(socket); }
|
|
|
|
/* WARNING: user can free socket in on_close so no more
|
|
|
|
* access beyond this point. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If using SSL do consider setting
|
|
|
|
* gnutls_db_set_retrieve_function (socket->session, _);
|
|
|
|
* gnutls_db_set_remove_function (socket->session, _);
|
|
|
|
* gnutls_db_set_store_function (socket->session, _);
|
|
|
|
* gnutls_db_set_ptr (socket->session, _);
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
oi_socket_init(oi_socket *socket, float timeout)
|
|
|
|
{
|
|
|
|
socket->fd = -1;
|
|
|
|
socket->server = NULL;
|
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
socket->loop = NULL;
|
|
|
|
#endif
|
|
|
|
socket->attached = FALSE;
|
|
|
|
socket->connected = FALSE;
|
|
|
|
|
|
|
|
oi_queue_init(&socket->out_stream);
|
|
|
|
|
|
|
|
ev_init (&socket->write_watcher, on_io_event);
|
|
|
|
socket->write_watcher.data = socket;
|
|
|
|
|
|
|
|
ev_init(&socket->read_watcher, on_io_event);
|
|
|
|
socket->read_watcher.data = socket;
|
|
|
|
|
|
|
|
socket->got_full_close = FALSE;
|
|
|
|
socket->got_half_close = FALSE;
|
|
|
|
|
|
|
|
socket->errorno = 0;
|
|
|
|
|
|
|
|
socket->secure = FALSE;
|
|
|
|
#if HAVE_GNUTLS
|
|
|
|
socket->gnutls_errorno = 0;
|
|
|
|
socket->session = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ev_timer_init(&socket->timeout_watcher, on_timeout, 0., timeout);
|
|
|
|
socket->timeout_watcher.data = socket;
|
|
|
|
|
|
|
|
socket->read_action = NULL;
|
|
|
|
socket->write_action = NULL;
|
|
|
|
|
|
|
|
socket->chunksize = TCP_MAXWIN;
|
|
|
|
socket->on_connect = NULL;
|
|
|
|
socket->on_read = NULL;
|
|
|
|
socket->on_drain = NULL;
|
|
|
|
socket->on_timeout = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_close (oi_socket *socket)
|
|
|
|
{
|
|
|
|
socket->got_half_close = TRUE;
|
|
|
|
if (oi_queue_empty(&socket->out_stream))
|
|
|
|
change_state_for_empty_out_stream(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_full_close (oi_socket *socket)
|
|
|
|
{
|
|
|
|
socket->got_full_close = TRUE;
|
|
|
|
if (oi_queue_empty(&socket->out_stream))
|
|
|
|
change_state_for_empty_out_stream(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
void oi_socket_force_close (oi_socket *socket)
|
|
|
|
{
|
|
|
|
release_write_buffer(socket);
|
|
|
|
|
|
|
|
ev_clear_pending (SOCKET_LOOP_ &socket->write_watcher);
|
|
|
|
ev_clear_pending (SOCKET_LOOP_ &socket->read_watcher);
|
|
|
|
ev_clear_pending (SOCKET_LOOP_ &socket->timeout_watcher);
|
|
|
|
|
|
|
|
socket->write_action = socket->read_action = NULL;
|
|
|
|
// socket->errorno = OI_SOCKET_ERROR_FORCE_CLOSE
|
|
|
|
//
|
|
|
|
|
|
|
|
if (socket->fd > 0) {
|
|
|
|
close(socket->fd);
|
|
|
|
}
|
|
|
|
socket->fd = -1;
|
|
|
|
|
|
|
|
oi_socket_detach(socket);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_write(oi_socket *socket, oi_buf *buf)
|
|
|
|
{
|
|
|
|
if (socket->write_action == NULL) {
|
|
|
|
assert(0 && "Do not write to a closed socket");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
if (socket->got_full_close == TRUE || socket->got_half_close == TRUE) {
|
|
|
|
assert(0 && "Do not write to a closing socket");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
oi_queue_insert_head(&socket->out_stream, &buf->queue);
|
|
|
|
buf->written = 0;
|
|
|
|
|
|
|
|
if (socket->attached) {
|
|
|
|
ev_io_start(SOCKET_LOOP_ &socket->write_watcher);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (buf->release) buf->release(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_reset_timeout(oi_socket *socket)
|
|
|
|
{
|
|
|
|
ev_timer_again(SOCKET_LOOP_ &socket->timeout_watcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_simple_buf ( oi_buf *buf )
|
|
|
|
{
|
|
|
|
free(buf->base);
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Writes a string to the socket.
|
|
|
|
* NOTE: Allocates memory. Avoid for performance applications.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
oi_socket_write_simple(oi_socket *socket, const char *str, size_t len)
|
|
|
|
{
|
|
|
|
oi_buf *buf = malloc(sizeof(oi_buf));
|
|
|
|
buf->release = free_simple_buf;
|
|
|
|
buf->base = strdup(str);
|
|
|
|
buf->len = len;
|
|
|
|
|
|
|
|
oi_socket_write(socket, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_attach(EV_P_ oi_socket *socket)
|
|
|
|
{
|
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
socket->loop = loop;
|
|
|
|
#endif
|
|
|
|
socket->attached = TRUE;
|
|
|
|
|
|
|
|
ev_timer_again(EV_A_ &socket->timeout_watcher);
|
|
|
|
|
|
|
|
if (socket->read_action)
|
|
|
|
ev_io_start(EV_A_ &socket->read_watcher);
|
|
|
|
|
|
|
|
if (socket->write_action)
|
|
|
|
ev_io_start(EV_A_ &socket->write_watcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_detach(oi_socket *socket)
|
|
|
|
{
|
|
|
|
if (socket->attached) {
|
|
|
|
ev_io_stop(SOCKET_LOOP_ &socket->write_watcher);
|
|
|
|
ev_io_stop(SOCKET_LOOP_ &socket->read_watcher);
|
|
|
|
ev_timer_stop(SOCKET_LOOP_ &socket->timeout_watcher);
|
|
|
|
#if EV_MULTIPLICITY
|
|
|
|
socket->loop = NULL;
|
|
|
|
#endif
|
|
|
|
socket->attached = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_read_stop (oi_socket *socket)
|
|
|
|
{
|
|
|
|
ev_io_stop(SOCKET_LOOP_ &socket->read_watcher);
|
|
|
|
ev_clear_pending (SOCKET_LOOP_ &socket->read_watcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oi_socket_read_start (oi_socket *socket)
|
|
|
|
{
|
|
|
|
if (socket->read_action) {
|
|
|
|
ev_io_start(SOCKET_LOOP_ &socket->read_watcher);
|
|
|
|
/* XXX feed event? */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
oi_socket_connect(oi_socket *s, struct addrinfo *addrinfo)
|
|
|
|
{
|
|
|
|
int fd = socket( addrinfo->ai_family
|
|
|
|
, addrinfo->ai_socktype
|
|
|
|
, addrinfo->ai_protocol
|
|
|
|
);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror("socket()");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int flags = fcntl(fd, F_GETFL, 0);
|
|
|
|
int r = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
|
|
|
|
if (r < 0) {
|
|
|
|
perror("fcntl()");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SO_NOSIGPIPE
|
|
|
|
flags = 1;
|
|
|
|
setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &flags, sizeof(flags));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
r = connect( fd
|
|
|
|
, addrinfo->ai_addr
|
|
|
|
, addrinfo->ai_addrlen
|
|
|
|
);
|
|
|
|
|
|
|
|
if (r < 0 && errno != EINPROGRESS) {
|
|
|
|
perror("connect");
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
assign_file_descriptor(s, fd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|