MEDIUM: lua: do not allocate the remote connection anymore
Lua cosockets do not need to allocate the remote connection anymore.
However this was trickier than expected because some tests were made
on this remote connection's existence to detect establishment instead
of relying on the stream interface's state (which is how it's now done).
The flag SF_ADDR_SET was set a bit too early (before assigning the
address) so this was moved to the right place. It should not have had
any impact beyond confusing debugging.
The only remaining occurrence of the remote connection knowledge now
is for getsockname() which requires to access the connection to send
the syscall, and it's unlikely that we'll need to change this before
QUIC or so.
diff --git a/src/hlua.c b/src/hlua.c
index 3b58dc0..58803e2 100644
--- a/src/hlua.c
+++ b/src/hlua.c
@@ -1586,7 +1586,6 @@
static void hlua_socket_handler(struct appctx *appctx)
{
struct stream_interface *si = appctx->owner;
- struct connection *c = cs_conn(objt_cs(si_opposite(si)->end));
if (appctx->ctx.hlua_cosocket.die) {
si_shutw(si);
@@ -1597,18 +1596,6 @@
stream_shutdown(si_strm(si), SF_ERR_KILLED);
}
- /* If the connection object is not available, close all the
- * streams and wakeup everything waiting for.
- */
- if (!c) {
- si_shutw(si);
- si_shutr(si);
- si_ic(si)->flags |= CF_READ_NULL;
- notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
- notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
- return;
- }
-
/* If we cant write, wakeup the pending write signals. */
if (channel_output_closed(si_ic(si)))
notification_wake(&appctx->ctx.hlua_cosocket.wake_on_write);
@@ -1617,10 +1604,10 @@
if (channel_input_closed(si_oc(si)))
notification_wake(&appctx->ctx.hlua_cosocket.wake_on_read);
- /* if the connection is not estabkished, inform the stream that we want
+ /* if the connection is not established, inform the stream that we want
* to be notified whenever the connection completes.
*/
- if (!(c->flags & CO_FL_CONNECTED)) {
+ if (si_opposite(si)->state < SI_ST_EST) {
si_cant_get(si);
si_rx_conn_blk(si);
si_rx_endp_more(si);
@@ -2224,7 +2211,6 @@
__LJMP static int hlua_socket_getpeername(struct lua_State *L)
{
struct hlua_socket *socket;
- struct connection *conn;
struct xref *peer;
struct appctx *appctx;
struct stream_interface *si;
@@ -2251,20 +2237,13 @@
si = appctx->owner;
s = si_strm(si);
- conn = cs_conn(objt_cs(s->si[1].end));
- if (!conn) {
- xref_unlock(&socket->xref, peer);
- lua_pushnil(L);
- return 1;
- }
-
- if (!conn_get_dst(conn)) {
+ if (!s->target_addr) {
xref_unlock(&socket->xref, peer);
lua_pushnil(L);
return 1;
}
- ret = MAY_LJMP(hlua_socket_info(L, conn->dst));
+ ret = MAY_LJMP(hlua_socket_info(L, s->target_addr));
xref_unlock(&socket->xref, peer);
return ret;
}
@@ -2301,18 +2280,12 @@
s = si_strm(si);
conn = cs_conn(objt_cs(s->si[1].end));
- if (!conn) {
+ if (!conn || !conn_get_src(conn)) {
xref_unlock(&socket->xref, peer);
lua_pushnil(L);
return 1;
}
- if (!conn_get_src(conn)) {
- xref_unlock(&socket->xref, peer);
- lua_pushnil(L);
- return 1;
- }
-
ret = hlua_socket_info(L, conn->src);
xref_unlock(&socket->xref, peer);
return ret;
@@ -2392,7 +2365,6 @@
struct hlua_socket *socket;
int port = -1;
const char *ip;
- struct connection *conn;
struct hlua *hlua;
struct appctx *appctx;
int low, high;
@@ -2436,22 +2408,7 @@
lua_pushnil(L);
return 1;
}
- appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
- si = appctx->owner;
- s = si_strm(si);
-
- /* FIXME WTA: the conn-specific code below should now be useless */
-
- /* Initialise connection. */
- conn = cs_conn(si_alloc_cs(&s->si[1], NULL));
- if (!conn) {
- xref_unlock(&socket->xref, peer);
- WILL_LJMP(luaL_error(L, "connect: internal error"));
- }
- /* needed for the connection not to be closed */
- conn->target = s->target;
-
/* Parse ip address. */
addr = str2sa_range(ip, NULL, &low, &high, NULL, NULL, NULL, 0);
if (!addr) {
@@ -2480,21 +2437,18 @@
}
}
- if (!sockaddr_alloc(&conn->dst)) {
- xref_unlock(&socket->xref, peer);
- WILL_LJMP(luaL_error(L, "connect: internal error"));
- }
-
- memcpy(conn->dst, addr, sizeof(struct sockaddr_storage));
+ appctx = container_of(peer, struct appctx, ctx.hlua_cosocket.xref);
+ si = appctx->owner;
+ s = si_strm(si);
if (!sockaddr_alloc(&s->target_addr)) {
xref_unlock(&socket->xref, peer);
WILL_LJMP(luaL_error(L, "connect: internal error"));
}
*s->target_addr = *addr;
+ s->flags |= SF_ADDR_SET;
hlua = hlua_gethlua(L);
- appctx = __objt_appctx(s->si[0].end);
/* inform the stream that we want to be notified whenever the
* connection completes.
@@ -2681,7 +2635,7 @@
si_set_state(&strm->si[1], SI_ST_ASS);
/* Force destination server. */
- strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET | SF_BE_ASSIGNED;
+ strm->flags |= SF_DIRECT | SF_ASSIGNED | SF_BE_ASSIGNED;
strm->target = &socket_tcp.obj_type;
return 1;