mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-01 19:17:48 +08:00
683 lines
22 KiB
C
683 lines
22 KiB
C
#include "dns.h"
|
|
#include "event.h"
|
|
#include "log.h"
|
|
#include "net.h"
|
|
#include "str.h"
|
|
#include "timer.h"
|
|
#include "tls.h"
|
|
#include "url.h"
|
|
#include "util.h"
|
|
|
|
#if MG_ENABLE_SOCKET
|
|
#if MG_ARCH == MG_ARCH_WIN32 && MG_ENABLE_WINSOCK
|
|
typedef unsigned long nfds_t;
|
|
#define MG_SOCK_ERRNO WSAGetLastError()
|
|
#if defined(_MSC_VER)
|
|
#pragma comment(lib, "ws2_32.lib")
|
|
#define alloca(a) _alloca(a)
|
|
#endif
|
|
#define poll(a, b, c) WSAPoll((a), (b), (c))
|
|
#ifndef SO_EXCLUSIVEADDRUSE
|
|
#define SO_EXCLUSIVEADDRUSE ((int) (~SO_REUSEADDR))
|
|
#endif
|
|
#elif MG_ARCH == MG_ARCH_FREERTOS_TCP
|
|
#define MG_SOCK_ERRNO errno
|
|
typedef Socket_t SOCKET;
|
|
#define INVALID_SOCKET FREERTOS_INVALID_SOCKET
|
|
#elif MG_ARCH == MG_ARCH_TIRTOS
|
|
#define MG_SOCK_ERRNO errno
|
|
#define closesocket(x) close(x)
|
|
#else
|
|
#define MG_SOCK_ERRNO errno
|
|
#ifndef closesocket
|
|
#define closesocket(x) close(x)
|
|
#endif
|
|
#define INVALID_SOCKET (-1)
|
|
typedef int SOCKET;
|
|
#endif
|
|
|
|
#define FD(c_) ((SOCKET) (size_t) (c_)->fd)
|
|
#define S2PTR(s_) ((void *) (size_t) (s_))
|
|
|
|
#ifndef MSG_NONBLOCKING
|
|
#define MSG_NONBLOCKING 0
|
|
#endif
|
|
|
|
#ifndef AF_INET6
|
|
#define AF_INET6 10
|
|
#endif
|
|
|
|
union usa {
|
|
struct sockaddr sa;
|
|
struct sockaddr_in sin;
|
|
#if MG_ENABLE_IPV6
|
|
struct sockaddr_in6 sin6;
|
|
#endif
|
|
};
|
|
|
|
static socklen_t tousa(struct mg_addr *a, union usa *usa) {
|
|
socklen_t len = sizeof(usa->sin);
|
|
memset(usa, 0, sizeof(*usa));
|
|
usa->sin.sin_family = AF_INET;
|
|
usa->sin.sin_port = a->port;
|
|
*(uint32_t *) &usa->sin.sin_addr = a->ip;
|
|
#if MG_ENABLE_IPV6
|
|
if (a->is_ip6) {
|
|
usa->sin.sin_family = AF_INET6;
|
|
usa->sin6.sin6_port = a->port;
|
|
memcpy(&usa->sin6.sin6_addr, a->ip6, sizeof(a->ip6));
|
|
len = sizeof(usa->sin6);
|
|
}
|
|
#endif
|
|
return len;
|
|
}
|
|
|
|
static void tomgaddr(union usa *usa, struct mg_addr *a, bool is_ip6) {
|
|
a->is_ip6 = is_ip6;
|
|
a->port = usa->sin.sin_port;
|
|
memcpy(&a->ip, &usa->sin.sin_addr, sizeof(a->ip));
|
|
#if MG_ENABLE_IPV6
|
|
if (is_ip6) {
|
|
memcpy(a->ip6, &usa->sin6.sin6_addr, sizeof(a->ip6));
|
|
a->port = usa->sin6.sin6_port;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
bool mg_sock_would_block(void);
|
|
bool mg_sock_would_block(void) {
|
|
int err = MG_SOCK_ERRNO;
|
|
return err == EINPROGRESS || err == EWOULDBLOCK
|
|
#ifndef WINCE
|
|
|| err == EAGAIN || err == EINTR
|
|
#endif
|
|
#if MG_ARCH == MG_ARCH_WIN32 && MG_ENABLE_WINSOCK
|
|
|| err == WSAEINTR || err == WSAEWOULDBLOCK
|
|
#endif
|
|
;
|
|
}
|
|
|
|
bool mg_sock_conn_reset(void);
|
|
bool mg_sock_conn_reset(void) {
|
|
int err = MG_SOCK_ERRNO;
|
|
#if MG_ARCH == MG_ARCH_WIN32 && MG_ENABLE_WINSOCK
|
|
return err == WSAECONNRESET;
|
|
#else
|
|
return err == EPIPE || err == ECONNRESET;
|
|
#endif
|
|
}
|
|
|
|
static void setlocaddr(SOCKET fd, struct mg_addr *addr) {
|
|
union usa usa;
|
|
socklen_t n = sizeof(usa);
|
|
if (getsockname(fd, &usa.sa, &n) == 0) {
|
|
tomgaddr(&usa, addr, n != sizeof(usa.sin));
|
|
}
|
|
}
|
|
|
|
static void iolog(struct mg_connection *c, char *buf, long n, bool r) {
|
|
if (n == 0) {
|
|
// Do nothing
|
|
} else if (n < 0) {
|
|
c->is_closing = 1; // Termination. Don't call mg_error(): #1529
|
|
} else if (n > 0) {
|
|
if (c->is_hexdumping) {
|
|
union usa usa;
|
|
char t1[50], t2[50];
|
|
socklen_t slen = sizeof(usa.sin);
|
|
struct mg_addr a;
|
|
memset(&usa, 0, sizeof(usa));
|
|
memset(&a, 0, sizeof(a));
|
|
if (getsockname(FD(c), &usa.sa, &slen) < 0) (void) 0; // Ignore result
|
|
tomgaddr(&usa, &a, c->rem.is_ip6);
|
|
MG_INFO(("\n-- %lu %s %s %s %s %ld", c->id,
|
|
mg_straddr(&a, t1, sizeof(t1)), r ? "<-" : "->",
|
|
mg_straddr(&c->rem, t2, sizeof(t2)), c->label, n));
|
|
|
|
mg_hexdump(buf, (size_t) n);
|
|
}
|
|
if (r) {
|
|
struct mg_str evd = mg_str_n(buf, (size_t) n);
|
|
c->recv.len += (size_t) n;
|
|
mg_call(c, MG_EV_READ, &evd);
|
|
} else {
|
|
mg_iobuf_del(&c->send, 0, (size_t) n);
|
|
// if (c->send.len == 0) mg_iobuf_resize(&c->send, 0);
|
|
if (c->send.len == 0) {
|
|
MG_EPOLL_MOD(c, 0);
|
|
}
|
|
mg_call(c, MG_EV_WRITE, &n);
|
|
}
|
|
}
|
|
}
|
|
|
|
static long mg_sock_send(struct mg_connection *c, const void *buf, size_t len) {
|
|
long n;
|
|
if (c->is_udp) {
|
|
union usa usa;
|
|
socklen_t slen = tousa(&c->rem, &usa);
|
|
n = sendto(FD(c), (char *) buf, len, 0, &usa.sa, slen);
|
|
if (n > 0) setlocaddr(FD(c), &c->loc);
|
|
} else {
|
|
n = send(FD(c), (char *) buf, len, MSG_NONBLOCKING);
|
|
#if MG_ARCH == MG_ARCH_RTX
|
|
if (n == BSD_EWOULDBLOCK) return 0;
|
|
#endif
|
|
}
|
|
return n == 0 ? -1 : n < 0 && mg_sock_would_block() ? 0 : n;
|
|
}
|
|
|
|
bool mg_send(struct mg_connection *c, const void *buf, size_t len) {
|
|
if (c->is_udp) {
|
|
long n = mg_sock_send(c, buf, len);
|
|
MG_DEBUG(("%lu %p %d:%d %ld err %d", c->id, c->fd, (int) c->send.len,
|
|
(int) c->recv.len, n, MG_SOCK_ERRNO));
|
|
iolog(c, (char *) buf, n, false);
|
|
return n > 0;
|
|
} else {
|
|
return mg_iobuf_add(&c->send, c->send.len, buf, len);
|
|
}
|
|
}
|
|
|
|
static void mg_set_non_blocking_mode(SOCKET fd) {
|
|
#if defined(MG_CUSTOM_NONBLOCK)
|
|
MG_CUSTOM_NONBLOCK(fd);
|
|
#elif MG_ARCH == MG_ARCH_WIN32 && MG_ENABLE_WINSOCK
|
|
unsigned long on = 1;
|
|
ioctlsocket(fd, FIONBIO, &on);
|
|
#elif MG_ARCH == MG_ARCH_RTX
|
|
unsigned long on = 1;
|
|
ioctlsocket(fd, FIONBIO, &on);
|
|
#elif MG_ARCH == MG_ARCH_FREERTOS_TCP
|
|
const BaseType_t off = 0;
|
|
if (setsockopt(fd, 0, FREERTOS_SO_RCVTIMEO, &off, sizeof(off)) != 0) (void) 0;
|
|
if (setsockopt(fd, 0, FREERTOS_SO_SNDTIMEO, &off, sizeof(off)) != 0) (void) 0;
|
|
#elif MG_ARCH == MG_ARCH_FREERTOS_LWIP || MG_ARCH == MG_ARCH_RTX_LWIP
|
|
lwip_fcntl(fd, F_SETFL, O_NONBLOCK);
|
|
#elif MG_ARCH == MG_ARCH_AZURERTOS
|
|
fcntl(fd, F_SETFL, O_NONBLOCK);
|
|
#elif MG_ARCH == MG_ARCH_TIRTOS
|
|
int val = 0;
|
|
setsockopt(fd, 0, SO_BLOCKING, &val, sizeof(val));
|
|
int status = 0;
|
|
int res = SockStatus(fd, FDSTATUS_SEND, &status);
|
|
if (res == 0 && status > 0) {
|
|
val = status / 2;
|
|
int val_size = sizeof(val);
|
|
res = SockSet(fd, SOL_SOCKET, SO_SNDLOWAT, &val, val_size);
|
|
}
|
|
#else
|
|
fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) | O_NONBLOCK); // Non-blocking mode
|
|
fcntl(fd, F_SETFD, FD_CLOEXEC); // Set close-on-exec
|
|
#endif
|
|
}
|
|
|
|
bool mg_open_listener(struct mg_connection *c, const char *url) {
|
|
SOCKET fd = INVALID_SOCKET;
|
|
bool success = false;
|
|
c->loc.port = mg_htons(mg_url_port(url));
|
|
if (!mg_aton(mg_url_host(url), &c->loc)) {
|
|
MG_ERROR(("invalid listening URL: %s", url));
|
|
} else {
|
|
union usa usa;
|
|
socklen_t slen = tousa(&c->loc, &usa);
|
|
int on = 1, af = c->loc.is_ip6 ? AF_INET6 : AF_INET;
|
|
int type = strncmp(url, "udp:", 4) == 0 ? SOCK_DGRAM : SOCK_STREAM;
|
|
int proto = type == SOCK_DGRAM ? IPPROTO_UDP : IPPROTO_TCP;
|
|
(void) on;
|
|
|
|
if ((fd = socket(af, type, proto)) == INVALID_SOCKET) {
|
|
MG_ERROR(("socket: %d", MG_SOCK_ERRNO));
|
|
#if ((MG_ARCH == MG_ARCH_WIN32) || (MG_ARCH == MG_ARCH_UNIX) || \
|
|
(defined(LWIP_SOCKET) && SO_REUSE == 1))
|
|
} else if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &on,
|
|
sizeof(on)) != 0) {
|
|
// 1. SO_RESUSEADDR is not enabled on Windows because the semantics of
|
|
// SO_REUSEADDR on UNIX and Windows is different. On Windows,
|
|
// SO_REUSEADDR allows to bind a socket to a port without error even
|
|
// if the port is already open by another program. This is not the
|
|
// behavior SO_REUSEADDR was designed for, and leads to hard-to-track
|
|
// failure scenarios. Therefore, SO_REUSEADDR was disabled on Windows
|
|
// unless SO_EXCLUSIVEADDRUSE is supported and set on a socket.
|
|
// 2. In case of LWIP, SO_REUSEADDR should be explicitly enabled, by
|
|
// defining
|
|
// SO_REUSE (in lwipopts.h), otherwise the code below will compile
|
|
// but won't work! (setsockopt will return EINVAL)
|
|
MG_ERROR(("reuseaddr: %d", MG_SOCK_ERRNO));
|
|
#endif
|
|
#if MG_ARCH == MG_ARCH_WIN32 && !defined(SO_EXCLUSIVEADDRUSE) && !defined(WINCE)
|
|
} else if (setsockopt(fd, SOL_SOCKET, SO_EXCLUSIVEADDRUSE, (char *) &on,
|
|
sizeof(on)) != 0) {
|
|
// "Using SO_REUSEADDR and SO_EXCLUSIVEADDRUSE"
|
|
MG_ERROR(("exclusiveaddruse: %d", MG_SOCK_ERRNO));
|
|
#endif
|
|
} else if (bind(fd, &usa.sa, slen) != 0) {
|
|
MG_ERROR(("bind: %d", MG_SOCK_ERRNO));
|
|
} else if ((type == SOCK_STREAM &&
|
|
listen(fd, MG_SOCK_LISTEN_BACKLOG_SIZE) != 0)) {
|
|
// NOTE(lsm): FreeRTOS uses backlog value as a connection limit
|
|
// In case port was set to 0, get the real port number
|
|
MG_ERROR(("listen: %d", MG_SOCK_ERRNO));
|
|
} else {
|
|
setlocaddr(fd, &c->loc);
|
|
mg_set_non_blocking_mode(fd);
|
|
c->fd = S2PTR(fd);
|
|
MG_EPOLL_ADD(c);
|
|
success = true;
|
|
}
|
|
}
|
|
if (success == false && fd != INVALID_SOCKET) closesocket(fd);
|
|
return success;
|
|
}
|
|
|
|
static long mg_sock_recv(struct mg_connection *c, void *buf, size_t len) {
|
|
long n = 0;
|
|
if (c->is_udp) {
|
|
union usa usa;
|
|
socklen_t slen = tousa(&c->rem, &usa);
|
|
n = recvfrom(FD(c), (char *) buf, len, 0, &usa.sa, &slen);
|
|
if (n > 0) tomgaddr(&usa, &c->rem, slen != sizeof(usa.sin));
|
|
} else {
|
|
n = recv(FD(c), (char *) buf, len, MSG_NONBLOCKING);
|
|
}
|
|
return n == 0 ? -1 : n < 0 && mg_sock_would_block() ? 0 : n;
|
|
}
|
|
|
|
// NOTE(lsm): do only one iteration of reads, cause some systems
|
|
// (e.g. FreeRTOS stack) return 0 instead of -1/EWOULDBLOCK when no data
|
|
static void read_conn(struct mg_connection *c) {
|
|
long n = -1;
|
|
if (c->recv.len >= MG_MAX_RECV_SIZE) {
|
|
mg_error(c, "max_recv_buf_size reached");
|
|
} else if (c->recv.size <= c->recv.len &&
|
|
!mg_iobuf_resize(&c->recv, c->recv.size + MG_IO_SIZE)) {
|
|
mg_error(c, "oom");
|
|
} else {
|
|
char *buf = (char *) &c->recv.buf[c->recv.len];
|
|
size_t len = c->recv.size - c->recv.len;
|
|
n = c->is_tls ? mg_tls_recv(c, buf, len) : mg_sock_recv(c, buf, len);
|
|
MG_DEBUG(("%lu %p snd %ld/%ld rcv %ld/%ld n=%ld err=%d", c->id, c->fd,
|
|
(long) c->send.len, (long) c->send.size, (long) c->recv.len,
|
|
(long) c->recv.size, n, MG_SOCK_ERRNO));
|
|
iolog(c, buf, n, true);
|
|
}
|
|
}
|
|
|
|
static void write_conn(struct mg_connection *c) {
|
|
char *buf = (char *) c->send.buf;
|
|
size_t len = c->send.len;
|
|
long n = c->is_tls ? mg_tls_send(c, buf, len) : mg_sock_send(c, buf, len);
|
|
MG_DEBUG(("%lu %p snd %ld/%ld rcv %ld/%ld n=%ld err=%d", c->id, c->fd,
|
|
(long) c->send.len, (long) c->send.size, (long) c->recv.len,
|
|
(long) c->recv.size, n, MG_SOCK_ERRNO));
|
|
iolog(c, buf, n, false);
|
|
}
|
|
|
|
static void close_conn(struct mg_connection *c) {
|
|
if (FD(c) != INVALID_SOCKET) {
|
|
#if MG_ENABLE_EPOLL
|
|
epoll_ctl(c->mgr->epoll_fd, EPOLL_CTL_DEL, FD(c), NULL);
|
|
#endif
|
|
closesocket(FD(c));
|
|
#if MG_ARCH == MG_ARCH_FREERTOS_TCP
|
|
FreeRTOS_FD_CLR(c->fd, c->mgr->ss, eSELECT_ALL);
|
|
#endif
|
|
}
|
|
mg_close_conn(c);
|
|
}
|
|
|
|
static void connect_conn(struct mg_connection *c) {
|
|
union usa usa;
|
|
socklen_t n = sizeof(usa);
|
|
// Use getpeername() to test whether we have connected
|
|
if (getpeername(FD(c), &usa.sa, &n) == 0) {
|
|
c->is_connecting = 0;
|
|
mg_call(c, MG_EV_CONNECT, NULL);
|
|
MG_EPOLL_MOD(c, 0);
|
|
if (c->is_tls_hs) mg_tls_handshake(c);
|
|
} else {
|
|
mg_error(c, "socket error");
|
|
}
|
|
}
|
|
|
|
static void setsockopts(struct mg_connection *c) {
|
|
#if MG_ARCH == MG_ARCH_FREERTOS_TCP || MG_ARCH == MG_ARCH_AZURERTOS || \
|
|
MG_ARCH == MG_ARCH_TIRTOS
|
|
(void) c;
|
|
#else
|
|
int on = 1;
|
|
#if !defined(SOL_TCP)
|
|
#define SOL_TCP IPPROTO_TCP
|
|
#endif
|
|
if (setsockopt(FD(c), SOL_TCP, TCP_NODELAY, (char *) &on, sizeof(on)) != 0)
|
|
(void) 0;
|
|
if (setsockopt(FD(c), SOL_SOCKET, SO_KEEPALIVE, (char *) &on, sizeof(on)) !=
|
|
0)
|
|
(void) 0;
|
|
#endif
|
|
}
|
|
|
|
void mg_connect_resolved(struct mg_connection *c) {
|
|
// char buf[40];
|
|
int type = c->is_udp ? SOCK_DGRAM : SOCK_STREAM;
|
|
int rc, af = c->rem.is_ip6 ? AF_INET6 : AF_INET;
|
|
// mg_straddr(&c->rem, buf, sizeof(buf));
|
|
c->fd = S2PTR(socket(af, type, 0));
|
|
c->is_resolving = 0;
|
|
if (FD(c) == INVALID_SOCKET) {
|
|
mg_error(c, "socket(): %d", MG_SOCK_ERRNO);
|
|
} else if (c->is_udp) {
|
|
MG_EPOLL_ADD(c);
|
|
mg_call(c, MG_EV_RESOLVE, NULL);
|
|
mg_call(c, MG_EV_CONNECT, NULL);
|
|
} else {
|
|
union usa usa;
|
|
socklen_t slen = tousa(&c->rem, &usa);
|
|
mg_set_non_blocking_mode(FD(c));
|
|
setsockopts(c);
|
|
MG_EPOLL_ADD(c);
|
|
mg_call(c, MG_EV_RESOLVE, NULL);
|
|
if ((rc = connect(FD(c), &usa.sa, slen)) == 0) {
|
|
mg_call(c, MG_EV_CONNECT, NULL);
|
|
} else if (mg_sock_would_block()) {
|
|
MG_DEBUG(("%lu %p -> %x:%hu pend", c->id, c->fd, mg_ntohl(c->rem.ip),
|
|
mg_ntohs(c->rem.port)));
|
|
c->is_connecting = 1;
|
|
} else {
|
|
mg_error(c, "connect: %d", MG_SOCK_ERRNO);
|
|
}
|
|
}
|
|
}
|
|
|
|
static SOCKET raccept(SOCKET sock, union usa *usa, socklen_t len) {
|
|
SOCKET s = INVALID_SOCKET;
|
|
do {
|
|
memset(usa, 0, sizeof(*usa));
|
|
s = accept(sock, &usa->sa, &len);
|
|
} while (s == INVALID_SOCKET && errno == EINTR);
|
|
return s;
|
|
}
|
|
|
|
static void accept_conn(struct mg_mgr *mgr, struct mg_connection *lsn) {
|
|
struct mg_connection *c = NULL;
|
|
union usa usa;
|
|
socklen_t sa_len = sizeof(usa);
|
|
SOCKET fd = raccept(FD(lsn), &usa, sa_len);
|
|
if (fd == INVALID_SOCKET) {
|
|
#if MG_ARCH == MG_ARCH_AZURERTOS
|
|
// AzureRTOS, in non-block socket mode can mark listening socket readable
|
|
// even it is not. See comment for 'select' func implementation in
|
|
// nx_bsd.c That's not an error, just should try later
|
|
if (MG_SOCK_ERRNO != EAGAIN)
|
|
#endif
|
|
MG_ERROR(("%lu accept failed, errno %d", lsn->id, MG_SOCK_ERRNO));
|
|
#if (MG_ARCH != MG_ARCH_WIN32) && (MG_ARCH != MG_ARCH_FREERTOS_TCP) && \
|
|
(MG_ARCH != MG_ARCH_TIRTOS) && !(MG_ENABLE_POLL)
|
|
} else if ((long) fd >= FD_SETSIZE) {
|
|
MG_ERROR(("%ld > %ld", (long) fd, (long) FD_SETSIZE));
|
|
closesocket(fd);
|
|
#endif
|
|
} else if ((c = mg_alloc_conn(mgr)) == NULL) {
|
|
MG_ERROR(("%lu OOM", lsn->id));
|
|
closesocket(fd);
|
|
} else {
|
|
// char buf[40];
|
|
tomgaddr(&usa, &c->rem, sa_len != sizeof(usa.sin));
|
|
// mg_straddr(&c->rem, buf, sizeof(buf));
|
|
LIST_ADD_HEAD(struct mg_connection, &mgr->conns, c);
|
|
c->fd = S2PTR(fd);
|
|
MG_EPOLL_ADD(c);
|
|
mg_set_non_blocking_mode(FD(c));
|
|
setsockopts(c);
|
|
c->is_accepted = 1;
|
|
c->is_hexdumping = lsn->is_hexdumping;
|
|
c->loc = lsn->loc;
|
|
c->pfn = lsn->pfn;
|
|
c->pfn_data = lsn->pfn_data;
|
|
c->fn = lsn->fn;
|
|
c->fn_data = lsn->fn_data;
|
|
MG_DEBUG(("%lu %p accepted %x.%hu -> %x.%hu", c->id, c->fd,
|
|
mg_ntohl(c->rem.ip), mg_ntohs(c->rem.port), mg_ntohl(c->loc.ip),
|
|
mg_ntohs(c->loc.port)));
|
|
mg_call(c, MG_EV_OPEN, NULL);
|
|
mg_call(c, MG_EV_ACCEPT, NULL);
|
|
}
|
|
}
|
|
|
|
static bool mg_socketpair(SOCKET sp[2], union usa usa[2], bool udp) {
|
|
SOCKET sock;
|
|
socklen_t n = sizeof(usa[0].sin);
|
|
bool success = false;
|
|
|
|
sock = sp[0] = sp[1] = INVALID_SOCKET;
|
|
(void) memset(&usa[0], 0, sizeof(usa[0]));
|
|
usa[0].sin.sin_family = AF_INET;
|
|
*(uint32_t *) &usa->sin.sin_addr = mg_htonl(0x7f000001U); // 127.0.0.1
|
|
usa[1] = usa[0];
|
|
|
|
if (udp && (sp[0] = socket(AF_INET, SOCK_DGRAM, 0)) != INVALID_SOCKET &&
|
|
(sp[1] = socket(AF_INET, SOCK_DGRAM, 0)) != INVALID_SOCKET &&
|
|
bind(sp[0], &usa[0].sa, n) == 0 && bind(sp[1], &usa[1].sa, n) == 0 &&
|
|
getsockname(sp[0], &usa[0].sa, &n) == 0 &&
|
|
getsockname(sp[1], &usa[1].sa, &n) == 0 &&
|
|
connect(sp[0], &usa[1].sa, n) == 0 &&
|
|
connect(sp[1], &usa[0].sa, n) == 0) {
|
|
success = true;
|
|
} else if (!udp &&
|
|
(sock = socket(AF_INET, SOCK_STREAM, 0)) != INVALID_SOCKET &&
|
|
bind(sock, &usa[0].sa, n) == 0 &&
|
|
listen(sock, MG_SOCK_LISTEN_BACKLOG_SIZE) == 0 &&
|
|
getsockname(sock, &usa[0].sa, &n) == 0 &&
|
|
(sp[0] = socket(AF_INET, SOCK_STREAM, 0)) != INVALID_SOCKET &&
|
|
connect(sp[0], &usa[0].sa, n) == 0 &&
|
|
(sp[1] = raccept(sock, &usa[1], n)) != INVALID_SOCKET) {
|
|
success = true;
|
|
}
|
|
if (success) {
|
|
mg_set_non_blocking_mode(sp[1]);
|
|
} else {
|
|
if (sp[0] != INVALID_SOCKET) closesocket(sp[0]);
|
|
if (sp[1] != INVALID_SOCKET) closesocket(sp[1]);
|
|
sp[0] = sp[1] = INVALID_SOCKET;
|
|
}
|
|
if (sock != INVALID_SOCKET) closesocket(sock);
|
|
return success;
|
|
}
|
|
|
|
int mg_mkpipe(struct mg_mgr *mgr, mg_event_handler_t fn, void *fn_data,
|
|
bool udp) {
|
|
union usa usa[2];
|
|
SOCKET sp[2] = {INVALID_SOCKET, INVALID_SOCKET};
|
|
struct mg_connection *c = NULL;
|
|
if (!mg_socketpair(sp, usa, udp)) {
|
|
MG_ERROR(("Cannot create socket pair"));
|
|
} else if ((c = mg_wrapfd(mgr, (int) sp[1], fn, fn_data)) == NULL) {
|
|
closesocket(sp[0]);
|
|
closesocket(sp[1]);
|
|
sp[0] = sp[1] = INVALID_SOCKET;
|
|
} else {
|
|
tomgaddr(&usa[0], &c->rem, false);
|
|
MG_DEBUG(("%lu %p pipe %lu", c->id, c->fd, (unsigned long) sp[0]));
|
|
}
|
|
return (int) sp[0];
|
|
}
|
|
|
|
static bool can_read(const struct mg_connection *c) {
|
|
return c->is_full == false;
|
|
}
|
|
|
|
static bool can_write(const struct mg_connection *c) {
|
|
return c->is_connecting || (c->send.len > 0 && c->is_tls_hs == 0);
|
|
}
|
|
|
|
static bool skip_iotest(const struct mg_connection *c) {
|
|
return (c->is_closing || c->is_resolving || FD(c) == INVALID_SOCKET) ||
|
|
(can_read(c) == false && can_write(c) == false);
|
|
}
|
|
|
|
static void mg_iotest(struct mg_mgr *mgr, int ms) {
|
|
#if MG_ARCH == MG_ARCH_FREERTOS_TCP
|
|
struct mg_connection *c;
|
|
for (c = mgr->conns; c != NULL; c = c->next) {
|
|
c->is_readable = c->is_writable = 0;
|
|
if (skip_iotest(c)) continue;
|
|
if (can_read(c))
|
|
FreeRTOS_FD_SET(c->fd, mgr->ss, eSELECT_READ | eSELECT_EXCEPT);
|
|
if (can_write(c)) FreeRTOS_FD_SET(c->fd, mgr->ss, eSELECT_WRITE);
|
|
}
|
|
FreeRTOS_select(mgr->ss, pdMS_TO_TICKS(ms));
|
|
for (c = mgr->conns; c != NULL; c = c->next) {
|
|
EventBits_t bits = FreeRTOS_FD_ISSET(c->fd, mgr->ss);
|
|
c->is_readable = bits & (eSELECT_READ | eSELECT_EXCEPT) ? 1 : 0;
|
|
c->is_writable = bits & eSELECT_WRITE ? 1 : 0;
|
|
FreeRTOS_FD_CLR(c->fd, mgr->ss,
|
|
eSELECT_READ | eSELECT_EXCEPT | eSELECT_WRITE);
|
|
}
|
|
#elif MG_ENABLE_EPOLL
|
|
size_t max = 1;
|
|
for (struct mg_connection *c = mgr->conns; c != NULL; c = c->next) {
|
|
c->is_readable = c->is_writable = 0;
|
|
if (mg_tls_pending(c) > 0) ms = 1, c->is_readable = 1;
|
|
if (can_write(c)) MG_EPOLL_MOD(c, 1);
|
|
max++;
|
|
}
|
|
struct epoll_event *evs = (struct epoll_event *) alloca(max * sizeof(evs[0]));
|
|
int n = epoll_wait(mgr->epoll_fd, evs, (int) max, ms);
|
|
for (int i = 0; i < n; i++) {
|
|
struct mg_connection *c = (struct mg_connection *) evs[i].data.ptr;
|
|
if (evs[i].events & EPOLLERR) {
|
|
mg_error(c, "socket error");
|
|
} else if (c->is_readable == 0) {
|
|
bool rd = evs[i].events & (EPOLLIN | EPOLLHUP);
|
|
bool wr = evs[i].events & EPOLLOUT;
|
|
c->is_readable = can_read(c) && rd ? 1U : 0;
|
|
c->is_writable = can_write(c) && wr ? 1U : 0;
|
|
}
|
|
}
|
|
(void) skip_iotest;
|
|
#elif MG_ENABLE_POLL
|
|
nfds_t n = 0;
|
|
for (struct mg_connection *c = mgr->conns; c != NULL; c = c->next) n++;
|
|
struct pollfd *fds = (struct pollfd *) alloca(n * sizeof(fds[0]));
|
|
memset(fds, 0, n * sizeof(fds[0]));
|
|
n = 0;
|
|
for (struct mg_connection *c = mgr->conns; c != NULL; c = c->next) {
|
|
c->is_readable = c->is_writable = 0;
|
|
if (skip_iotest(c)) {
|
|
// Socket not valid, ignore
|
|
} else if (mg_tls_pending(c) > 0) {
|
|
ms = 1; // Don't wait if TLS is ready
|
|
} else {
|
|
fds[n].fd = FD(c);
|
|
if (can_read(c)) fds[n].events |= POLLIN;
|
|
if (can_write(c)) fds[n].events |= POLLOUT;
|
|
n++;
|
|
}
|
|
}
|
|
|
|
// MG_INFO(("poll n=%d ms=%d", (int) n, ms));
|
|
if (poll(fds, n, ms) < 0) {
|
|
#if MG_ARCH == MG_ARCH_WIN32
|
|
if (n == 0) Sleep(ms); // On Windows, poll fails if no sockets
|
|
#endif
|
|
memset(fds, 0, n * sizeof(fds[0]));
|
|
}
|
|
n = 0;
|
|
for (struct mg_connection *c = mgr->conns; c != NULL; c = c->next) {
|
|
if (skip_iotest(c)) {
|
|
// Socket not valid, ignore
|
|
} else if (mg_tls_pending(c) > 0) {
|
|
c->is_readable = 1;
|
|
} else {
|
|
if (fds[n].revents & POLLERR) {
|
|
mg_error(c, "socket error");
|
|
} else {
|
|
c->is_readable =
|
|
(unsigned) (fds[n].revents & (POLLIN | POLLHUP) ? 1 : 0);
|
|
c->is_writable = (unsigned) (fds[n].revents & POLLOUT ? 1 : 0);
|
|
}
|
|
n++;
|
|
}
|
|
}
|
|
#else
|
|
struct timeval tv = {ms / 1000, (ms % 1000) * 1000}, tv_zero = {0, 0};
|
|
struct mg_connection *c;
|
|
fd_set rset, wset, eset;
|
|
SOCKET maxfd = 0;
|
|
int rc;
|
|
|
|
FD_ZERO(&rset);
|
|
FD_ZERO(&wset);
|
|
FD_ZERO(&eset);
|
|
for (c = mgr->conns; c != NULL; c = c->next) {
|
|
c->is_readable = c->is_writable = 0;
|
|
if (skip_iotest(c)) continue;
|
|
FD_SET(FD(c), &eset);
|
|
if (can_read(c)) FD_SET(FD(c), &rset);
|
|
if (can_write(c)) FD_SET(FD(c), &wset);
|
|
if (mg_tls_pending(c) > 0) tv = tv_zero;
|
|
if (FD(c) > maxfd) maxfd = FD(c);
|
|
}
|
|
|
|
if ((rc = select((int) maxfd + 1, &rset, &wset, &eset, &tv)) < 0) {
|
|
#if MG_ARCH == MG_ARCH_WIN32
|
|
if (maxfd == 0) Sleep(ms); // On Windows, select fails if no sockets
|
|
#else
|
|
MG_ERROR(("select: %d %d", rc, MG_SOCK_ERRNO));
|
|
#endif
|
|
FD_ZERO(&rset);
|
|
FD_ZERO(&wset);
|
|
FD_ZERO(&eset);
|
|
}
|
|
|
|
for (c = mgr->conns; c != NULL; c = c->next) {
|
|
if (FD(c) != INVALID_SOCKET && FD_ISSET(FD(c), &eset)) {
|
|
mg_error(c, "socket error");
|
|
} else {
|
|
c->is_readable = FD(c) != INVALID_SOCKET && FD_ISSET(FD(c), &rset);
|
|
c->is_writable = FD(c) != INVALID_SOCKET && FD_ISSET(FD(c), &wset);
|
|
if (mg_tls_pending(c) > 0) c->is_readable = 1;
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void mg_mgr_poll(struct mg_mgr *mgr, int ms) {
|
|
struct mg_connection *c, *tmp;
|
|
uint64_t now;
|
|
|
|
mg_iotest(mgr, ms);
|
|
now = mg_millis();
|
|
mg_timer_poll(&mgr->timers, now);
|
|
|
|
for (c = mgr->conns; c != NULL; c = tmp) {
|
|
bool is_resp = c->is_resp;
|
|
tmp = c->next;
|
|
mg_call(c, MG_EV_POLL, &now);
|
|
if (is_resp && !c->is_resp) {
|
|
struct mg_str fake = mg_str_n("", 0);
|
|
mg_call(c, MG_EV_READ, &fake);
|
|
}
|
|
MG_VERBOSE(("%lu %c%c %c%c%c%c%c", c->id, c->is_readable ? 'r' : '-',
|
|
c->is_writable ? 'w' : '-', c->is_tls ? 'T' : 't',
|
|
c->is_connecting ? 'C' : 'c', c->is_tls_hs ? 'H' : 'h',
|
|
c->is_resolving ? 'R' : 'r', c->is_closing ? 'C' : 'c'));
|
|
if (c->is_resolving || c->is_closing) {
|
|
// Do nothing
|
|
} else if (c->is_listening && c->is_udp == 0) {
|
|
if (c->is_readable) accept_conn(mgr, c);
|
|
} else if (c->is_connecting) {
|
|
if (c->is_readable || c->is_writable) connect_conn(c);
|
|
} else if (c->is_tls_hs) {
|
|
if ((c->is_readable || c->is_writable)) mg_tls_handshake(c);
|
|
} else {
|
|
if (c->is_readable) read_conn(c);
|
|
if (c->is_writable) write_conn(c);
|
|
}
|
|
|
|
if (c->is_draining && c->send.len == 0) c->is_closing = 1;
|
|
if (c->is_closing) close_conn(c);
|
|
}
|
|
}
|
|
#endif
|