hio/lib/fcgi-cli.c

380 lines
9.0 KiB
C
Raw Normal View History

2022-08-31 23:01:32 +00:00
/*
Copyright (c) 2016-2020 Chung, Hyung-Hwan. All rights reserved.
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 THE AUTHOR "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 THE AUTHOR 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 <hio-fcgi.h>
#include <hio-sck.h>
#include "hio-prv.h"
2022-09-05 23:19:08 +00:00
2022-08-31 23:01:32 +00:00
typedef struct hio_svc_fcgic_conn_t hio_svc_fcgic_conn_t;
struct hio_svc_fcgic_t
{
HIO_SVC_HEADER;
int stopping;
int tmout_set;
hio_svc_fcgic_tmout_t tmout;
hio_svc_fcgic_conn_t* conns;
};
2022-09-05 23:19:08 +00:00
#define CONN_SESS_CAPA_MAX (65536)
#define CONN_SESS_INC (32)
2022-08-31 23:01:32 +00:00
#define INVALID_SID HIO_TYPE_MAX(hio_oow_t)
struct hio_svc_fcgic_sess_t
{
hio_oow_t sid;
hio_svc_fcgic_conn_t* conn;
};
struct hio_svc_fcgic_conn_t
{
2022-09-06 00:57:37 +00:00
hio_svc_fcgic_t* fcgic;
2022-08-31 23:01:32 +00:00
hio_skad_t addr;
hio_dev_sck_t* dev;
int connected;
struct
{
hio_svc_fcgic_sess_t* ptr;
hio_oow_t capa;
hio_oow_t free; /* the index to the first free session slot */
} sess;
hio_svc_fcgic_conn_t* next;
};
struct fcgic_sck_xtn_t
{
2022-09-05 23:19:08 +00:00
hio_svc_fcgic_conn_t* conn;
#if 0
2022-08-31 23:01:32 +00:00
struct
{
hio_uint8_t* ptr;
hio_oow_t len;
hio_oow_t capa;
} rbuf; /* used by tcp socket */
2022-09-05 23:19:08 +00:00
#endif
2022-08-31 23:01:32 +00:00
};
typedef struct fcgic_sck_xtn_t fcgic_sck_xtn_t;
2022-09-05 23:19:08 +00:00
#if 0
2022-08-31 23:01:32 +00:00
/* ----------------------------------------------------------------------- */
struct fcgic_fcgi_msg_xtn_t
{
hio_dev_sck_t* dev;
hio_tmridx_t rtmridx;
//hio_fcgi_msg_t* prev;
//hio_fcgi_msg_t* next;
hio_skad_t servaddr;
//hio_svc_fcgic_on_done_t on_done;
hio_ntime_t wtmout;
hio_ntime_t rtmout;
int rmaxtries; /* maximum number of tries to receive a reply */
int rtries; /* number of tries made so far */
int pending;
};
typedef struct fcgic_fcgi_msg_xtn_t fcgic_fcgi_msg_xtn_t;
#if defined(HIO_HAVE_INLINE)
static HIO_INLINE fcgic_fcgi_msg_xtn_t* fcgic_fcgi_msg_getxtn(hio_fcgi_msg_t* msg) { return (fcgic_fcgi_msg_xtn_t*)((hio_uint8_t*)hio_fcgi_msg_to_pkt(msg) + msg->pktalilen); }
#else
# define fcgic_fcgi_msg_getxtn(msg) ((fcgic_fcgi_msg_xtn_t*)((hio_uint8_t*)hio_fcgi_msg_to_pkt(msg) + msg->pktalilen))
#endif
#endif
2022-09-06 00:57:37 +00:00
static int make_connection_socket (hio_svc_fcgic_conn_t* conn);
2022-09-05 23:19:08 +00:00
static void sck_on_disconnect (hio_dev_sck_t* sck)
{
2022-09-05 23:19:08 +00:00
fcgic_sck_xtn_t* sck_xtn = hio_dev_sck_getxtn(sck);
2022-09-06 00:57:37 +00:00
hio_svc_fcgic_conn_t* conn = sck_xtn->conn;
2022-09-05 23:19:08 +00:00
if (conn)
{
2022-09-06 00:57:37 +00:00
/* TODO: arrange to create it again if the server is not closing... */
/* if (.... ) */
printf ("DISCONNECT SOCKET .................. %p\n", sck);
if (sck->hio->stopreq == HIO_STOPREQ_NONE)
{
/* this may create a busy loop if the connection attempt fails repeatedly */
make_connection_socket(conn); /* don't care about failure for now */
}
}
2022-09-06 00:57:37 +00:00
2022-09-05 23:19:08 +00:00
}
static void sck_on_connect (hio_dev_sck_t* sck)
{
}
static int sck_on_write (hio_dev_sck_t* sck, hio_iolen_t wrlen, void* wrctx, const hio_skad_t* dstaddr)
{
return 0;
}
static int sck_on_read (hio_dev_sck_t* sck, const void* buf, hio_iolen_t len, const hio_skad_t* srcaddr)
{
return 0;
}
2022-09-06 00:57:37 +00:00
static int make_connection_socket (hio_svc_fcgic_conn_t* conn)
2022-09-05 23:19:08 +00:00
{
2022-09-06 00:57:37 +00:00
hio_t* hio = conn->fcgic->hio;
2022-09-05 23:19:08 +00:00
hio_dev_sck_t* sck;
hio_dev_sck_make_t mi;
2022-09-05 23:19:08 +00:00
hio_dev_sck_connect_t ci;
fcgic_sck_xtn_t* sck_xtn;
HIO_MEMSET (&mi, 0, HIO_SIZEOF(mi));
2022-09-06 00:57:37 +00:00
switch (hio_skad_get_family(&conn->addr))
{
case HIO_AF_INET:
mi.type = HIO_DEV_SCK_TCP4;
break;
case HIO_AF_INET6:
mi.type = HIO_DEV_SCK_TCP6;
break;
#if defined(HIO_AF_UNIX)
case HIO_AF_UNIX:
mi.type = HIO_DEV_SCK_UNIX;
break;
#endif
case HIO_AF_QX:
mi.type = HIO_DEV_SCK_QX;
break;
2022-09-06 00:57:37 +00:00
default:
hio_seterrnum (hio, HIO_EINVAL);
2022-09-06 00:57:37 +00:00
return -1;
}
mi.options = HIO_DEV_SCK_MAKE_LENIENT;
2022-09-05 23:19:08 +00:00
mi.on_write = sck_on_write;
mi.on_read = sck_on_read;
mi.on_connect = sck_on_connect;
mi.on_disconnect = sck_on_disconnect;
sck = hio_dev_sck_make(hio, HIO_SIZEOF(*sck_xtn), &mi);
2022-09-06 00:57:37 +00:00
if (HIO_UNLIKELY(!sck)) return -1;
2022-09-05 23:19:08 +00:00
sck_xtn = hio_dev_sck_getxtn(sck);
sck_xtn->conn = conn;
HIO_MEMSET (&ci, 0, HIO_SIZEOF(ci));
2022-09-06 00:57:37 +00:00
ci.remoteaddr = conn->addr;
2022-09-05 23:19:08 +00:00
if (hio_dev_sck_connect(sck, &ci) <= -1)
{
/* immediate failure */
sck_xtn->conn = HIO_NULL; /* disassociate the socket from the fcgi connection object */
hio_dev_sck_halt (sck);
2022-09-06 00:57:37 +00:00
return -1;
2022-09-05 23:19:08 +00:00
}
2022-09-06 00:57:37 +00:00
printf ("MAKING CONNECTION %p %p\n", conn->dev, sck);
2022-09-06 00:57:37 +00:00
if (conn->dev != HIO_NULL)
{
/* TODO: is this necessary???? */
sck_xtn = hio_dev_sck_getxtn(conn->dev);
sck_xtn->conn = HIO_NULL;
hio_dev_sck_halt (conn->dev);
2022-09-06 00:57:37 +00:00
conn->dev = HIO_NULL;
}
2022-08-31 23:01:32 +00:00
2022-09-06 00:57:37 +00:00
conn->dev = sck;
return 0;
}
2022-09-12 14:43:29 +00:00
static hio_svc_fcgic_conn_t* get_connection (hio_svc_fcgic_t* fcgic, const hio_skad_t* fcgis_addr)
2022-08-31 23:01:32 +00:00
{
hio_t* hio = fcgic->hio;
hio_svc_fcgic_conn_t* conn = fcgic->conns;
/* TODO: speed up? how many conns would be configured? sequential search may be ok here */
while (conn)
{
2022-09-12 14:43:29 +00:00
if (hio_equal_skads(&conn->addr, fcgis_addr, 1))
2022-09-05 23:19:08 +00:00
{
if (conn->sess.free != INVALID_SID ||
conn->sess.capa <= (CONN_SESS_CAPA_MAX - CONN_SESS_INC)) return conn;
}
2022-08-31 23:01:32 +00:00
conn = conn->next;
}
conn = hio_callocmem(hio, HIO_SIZEOF(*conn));
if (HIO_UNLIKELY(!conn)) return HIO_NULL;
2022-09-06 00:57:37 +00:00
conn->fcgic = fcgic;
2022-09-12 14:43:29 +00:00
conn->addr = *fcgis_addr;
2022-09-05 23:19:08 +00:00
conn->sess.capa = 0;
conn->sess.free = INVALID_SID;
2022-09-06 00:57:37 +00:00
if (make_connection_socket(conn) <= -1)
{
hio_freemem (hio, conn);
return HIO_NULL;
}
2022-08-31 23:01:32 +00:00
conn->next = fcgic->conns;
fcgic->conns = conn;
return conn;
}
static void free_connections (hio_svc_fcgic_t* fcgic)
{
hio_t* hio = fcgic->hio;
hio_svc_fcgic_conn_t* conn = fcgic->conns;
hio_svc_fcgic_conn_t* next;
while (conn)
{
next = conn->next;
if (conn->dev)
{
struct fcgic_sck_xtn_t* sck_xtn;
sck_xtn = hio_dev_sck_getxtn(conn->dev);
sck_xtn->conn = HIO_NULL;
hio_dev_sck_halt (conn->dev);
}
2022-08-31 23:01:32 +00:00
hio_freemem (hio, conn->sess.ptr);
hio_freemem (hio, conn);
conn = next;
}
}
2022-09-12 14:43:29 +00:00
static hio_svc_fcgic_sess_t* new_session (hio_svc_fcgic_t* fcgic, const hio_skad_t* fcgis_addr)
2022-08-31 23:01:32 +00:00
{
hio_t* hio = fcgic->hio;
hio_svc_fcgic_conn_t* conn;
hio_svc_fcgic_sess_t* sess;
2022-09-12 14:43:29 +00:00
conn = get_connection(fcgic, fcgis_addr);
2022-08-31 23:01:32 +00:00
if (HIO_UNLIKELY(!conn)) return HIO_NULL;
if (conn->sess.free == INVALID_SID)
{
hio_oow_t newcapa, i;
hio_svc_fcgic_sess_t* newptr;
2022-09-05 23:19:08 +00:00
newcapa = conn->sess.capa + CONN_SESS_INC;
2022-08-31 23:01:32 +00:00
newptr = hio_reallocmem (hio, conn->sess.ptr, HIO_SIZEOF(*sess) * newcapa);
if (HIO_UNLIKELY(!newptr)) return HIO_NULL;
for (i = conn->sess.capa ; i < newcapa; i++)
{
newptr[i].sid = i + 1;
newptr[i].conn = conn;
}
newptr[i - 1].sid = INVALID_SID;
conn->sess.free = conn->sess.capa;
conn->sess.capa = newcapa;
conn->sess.ptr = newptr;
}
2022-09-05 23:19:08 +00:00
sess = &conn->sess.ptr[conn->sess.free];
conn->sess.free = sess->sid;
sess->sid = conn->sess.free;
HIO_ASSERT (hio, sess->conn == conn);
2022-09-06 00:57:37 +00:00
HIO_ASSERT (hio, sess->conn->fcgic == fcgic);
2022-08-31 23:01:32 +00:00
return sess;
}
static void release_session (hio_svc_fcgic_sess_t* sess)
{
sess->sid = sess->conn->sess.free;
sess->conn->sess.free = sess->sid;
}
hio_svc_fcgic_t* hio_svc_fcgic_start (hio_t* hio, const hio_svc_fcgic_tmout_t* tmout)
{
hio_svc_fcgic_t* fcgic = HIO_NULL;
fcgic = (hio_svc_fcgic_t*)hio_callocmem(hio, HIO_SIZEOF(*fcgic));
if (HIO_UNLIKELY(!fcgic)) goto oops;
fcgic->hio = hio;
fcgic->svc_stop = hio_svc_fcgic_stop;
if (tmout)
{
fcgic->tmout = *tmout;
fcgic->tmout_set = 1;
}
HIO_SVCL_APPEND_SVC (&hio->actsvc, (hio_svc_t*)fcgic);
HIO_DEBUG1 (hio, "FCGIC - STARTED SERVICE %p\n", fcgic);
return fcgic;
oops:
if (fcgic) hio_freemem (hio, fcgic);
return HIO_NULL;
}
void hio_svc_fcgic_stop (hio_svc_fcgic_t* fcgic)
{
hio_t* hio = fcgic->hio;
HIO_DEBUG1 (hio, "FCGIC - STOPPING SERVICE %p\n", fcgic);
fcgic->stopping = 1;
free_connections (fcgic);
HIO_SVCL_UNLINK_SVC (fcgic);
hio_freemem (hio, fcgic);
}
2022-09-12 14:43:29 +00:00
hio_svc_fcgic_sess_t* hio_svc_fcgic_tie (hio_svc_fcgic_t* fcgic, const hio_skad_t* addr)
2022-08-31 23:01:32 +00:00
{
/* TODO: reference counting for safety?? */
return new_session(fcgic, addr);
}
void hio_svc_fcgic_untie (hio_svc_fcgic_sess_t* sess)
2022-08-31 23:01:32 +00:00
{
/* TODO: reference counting for safety?? */
release_session (sess);
}
2022-09-12 14:43:29 +00:00
int hio_svc_fcgic_write (hio_svc_fcgic_sess_t* sess, const void* data, hio_iolen_t len)
{
return 0;
}