hio/lib/http-fcgi.c

793 lines
25 KiB
C
Raw Normal View History

2022-08-31 23:01:32 +00:00
#include "http-prv.h"
#include <hio-fmt.h>
#include <hio-chr.h>
2022-09-05 23:19:08 +00:00
#include <hio-fcgi.h>
#include <unistd.h>
2020-11-16 16:52:49 +00:00
2022-08-31 23:01:32 +00:00
#define FCGI_ALLOW_UNLIMITED_REQ_CONTENT_LENGTH
2023-01-31 16:15:14 +00:00
#define FCGI_PENDING_IO_THRESHOLD_TO_CLIENT 50
#define FCGI_PENDING_IO_THRESHOLD_TO_PEER 50
2022-08-31 23:01:32 +00:00
#define FCGI_OVER_READ_FROM_CLIENT (1 << 0)
#define FCGI_OVER_READ_FROM_PEER (1 << 1)
#define FCGI_OVER_WRITE_TO_CLIENT (1 << 2)
#define FCGI_OVER_WRITE_TO_PEER (1 << 3)
#define FCGI_OVER_ALL (FCGI_OVER_READ_FROM_CLIENT | FCGI_OVER_READ_FROM_PEER | FCGI_OVER_WRITE_TO_CLIENT | FCGI_OVER_WRITE_TO_PEER)
struct fcgi_t
{
HIO_SVC_HTTS_TASK_HEADER;
2020-11-16 16:52:49 +00:00
hio_svc_htts_task_on_kill_t on_kill; /* user-provided on_kill callback */
2023-03-19 18:01:35 +00:00
hio_oow_t peer_pending_writes;
2022-09-05 23:19:08 +00:00
hio_svc_fcgic_sess_t* peer;
2023-01-24 16:45:28 +00:00
hio_htrd_t* peer_htrd;
2022-08-31 23:01:32 +00:00
unsigned int over: 4; /* must be large enough to accomodate FCGI_OVER_ALL */
unsigned int client_htrd_recbs_changed: 1;
2020-11-16 16:52:49 +00:00
2022-08-31 23:01:32 +00:00
hio_dev_sck_on_read_t client_org_on_read;
hio_dev_sck_on_write_t client_org_on_write;
hio_dev_sck_on_disconnect_t client_org_on_disconnect;
hio_htrd_recbs_t client_htrd_org_recbs;
};
typedef struct fcgi_t fcgi_t;
2023-01-24 16:45:28 +00:00
struct fcgi_peer_xtn_t
2020-11-16 16:52:49 +00:00
{
2023-01-24 16:45:28 +00:00
fcgi_t* fcgi; /* back pointer to the fcgi object */
};
typedef struct fcgi_peer_xtn_t fcgi_peer_xtn_t;
2020-11-16 16:52:49 +00:00
2023-02-06 13:30:56 +00:00
static void unbind_task_from_client (fcgi_t* fcgi, int rcdown);
static void unbind_task_from_peer (fcgi_t* fcgi, int rcdown);
2023-01-24 16:45:28 +00:00
static void fcgi_halt_participating_devices (fcgi_t* fcgi)
{
/* TODO: include fcgi session id in the output in place of peer??? */
HIO_DEBUG5 (fcgi->htts->hio, "HTTS(%p) - fcgi(t=%p,c=%p(%d),p=%p) Halting participating devices\n", fcgi->htts, fcgi, fcgi->task_csck, (fcgi->task_csck? fcgi->task_csck->hnd: -1), fcgi->peer);
2020-11-16 16:52:49 +00:00
if (fcgi->task_csck) hio_dev_sck_halt (fcgi->task_csck);
2023-02-06 13:30:56 +00:00
unbind_task_from_peer (fcgi, 1);
2023-01-24 16:45:28 +00:00
}
2020-11-16 16:52:49 +00:00
2023-01-31 16:15:14 +00:00
static int fcgi_write_stdin_to_peer (fcgi_t* fcgi, const void* data, hio_iolen_t dlen)
2023-01-24 16:45:28 +00:00
{
if (fcgi->peer)
2022-08-31 23:01:32 +00:00
{
2023-03-19 18:01:35 +00:00
fcgi->peer_pending_writes++;
2023-01-24 16:45:28 +00:00
if (hio_svc_fcgic_writestdin(fcgi->peer, data, dlen) <= -1) /* TODO: write STDIN, PARAM? */
{
2023-03-19 18:01:35 +00:00
fcgi->peer_pending_writes--;
2023-01-24 16:45:28 +00:00
return -1;
}
2023-01-31 16:15:14 +00:00
#if 0
2023-01-24 16:45:28 +00:00
/* TODO: check if it's already finished or something.. */
2023-03-19 18:01:35 +00:00
if (fcgi->peer_pending_writes > FCGI_PENDING_IO_THRESHOLD_TO_PEER)
2023-01-24 16:45:28 +00:00
{
/* disable input watching */
if (hio_dev_sck_read(fcgi->task_csck, 0) <= -1) return -1;
2023-01-24 16:45:28 +00:00
}
2023-01-31 16:15:14 +00:00
#endif
2022-08-31 23:01:32 +00:00
}
return 0;
}
static HIO_INLINE void fcgi_mark_over (fcgi_t* fcgi, int over_bits)
{
2023-01-24 16:45:28 +00:00
hio_svc_htts_t* htts = fcgi->htts;
hio_t* hio = htts->hio;
2022-08-31 23:01:32 +00:00
unsigned int old_over;
old_over = fcgi->over;
fcgi->over |= over_bits;
HIO_DEBUG8 (hio, "HTTS(%p) - fcgi(t=%p,c=%p[%d],p=%p) - old_over=%x | new-bits=%x => over=%x\n", fcgi->htts, fcgi, fcgi->task_client, (fcgi->task_csck? fcgi->task_csck->hnd: -1), fcgi->peer, (int)old_over, (int)over_bits, (int)fcgi->over);
2022-08-31 23:01:32 +00:00
if (!(old_over & FCGI_OVER_READ_FROM_CLIENT) && (fcgi->over & FCGI_OVER_READ_FROM_CLIENT))
{
/* finished reading from the client. stop watching read */
if (fcgi->task_csck && hio_dev_sck_read(fcgi->task_csck, 0) <= -1)
2022-08-31 23:01:32 +00:00
{
HIO_DEBUG2 (fcgi->htts->hio, "HTTS(%p) - halting client(%p) for failure to disable input watching\n", fcgi->htts, fcgi->task_csck);
hio_dev_sck_halt (fcgi->task_csck);
2022-08-31 23:01:32 +00:00
}
}
if (!(old_over & FCGI_OVER_READ_FROM_PEER) && (fcgi->over & FCGI_OVER_READ_FROM_PEER))
{
2023-02-06 13:30:56 +00:00
if (fcgi->peer)
{
2023-02-18 05:31:22 +00:00
hio_svc_fcgic_untie (fcgi->peer); /* the untie callback will reset fcgi->peer to HIO_NULL */
2023-02-06 13:30:56 +00:00
HIO_SVC_HTTS_TASK_RCDOWN((hio_svc_htts_task_t*)fcgi); /* ref down from fcgi->peer->ctx. unable to use UNREF() */
}
2022-08-31 23:01:32 +00:00
}
if (old_over != FCGI_OVER_ALL && fcgi->over == FCGI_OVER_ALL)
{
/* ready to stop */
HIO_SVC_HTTS_TASK_RCUP ((hio_svc_htts_task_t*)fcgi);
2023-02-06 13:30:56 +00:00
if (fcgi->peer)
{
2023-02-18 05:31:22 +00:00
hio_svc_fcgic_untie (fcgi->peer);
2023-02-06 13:30:56 +00:00
HIO_SVC_HTTS_TASK_RCDOWN((hio_svc_htts_task_t*)fcgi); /* ref down from fcgi->peer->ctx. unable to use UNREF() */
}
2022-08-31 23:01:32 +00:00
if (fcgi->task_csck)
2022-08-31 23:01:32 +00:00
{
if (fcgi->task_keep_client_alive)
2023-01-24 16:45:28 +00:00
{
HIO_DEBUG2 (hio, "HTTS(%p) - keeping client(%p) alive\n", fcgi->htts, fcgi->task_csck);
HIO_ASSERT (fcgi->htts->hio, fcgi->task_client->task == (hio_svc_htts_task_t*)fcgi);
2023-02-06 13:30:56 +00:00
unbind_task_from_client (fcgi, 1);
2023-01-24 16:45:28 +00:00
}
else
{
2023-03-25 18:01:40 +00:00
HIO_DEBUG2 (hio, "HTTS(%p) - halting client(%p)\n", fcgi->htts, fcgi->task_csck);
hio_dev_sck_shutdown (fcgi->task_csck, HIO_DEV_SCK_SHUTDOWN_WRITE);
hio_dev_sck_halt (fcgi->task_csck);
2023-01-24 16:45:28 +00:00
}
2022-08-31 23:01:32 +00:00
}
HIO_SVC_HTTS_TASK_RCDOWN ((hio_svc_htts_task_t*)fcgi); /* it may destroy fcgi here */
2022-08-31 23:01:32 +00:00
}
}
2023-01-24 16:45:28 +00:00
static void fcgi_on_kill (hio_svc_htts_task_t* task)
2022-08-31 23:01:32 +00:00
{
2023-01-24 16:45:28 +00:00
fcgi_t* fcgi = (fcgi_t*)task;
hio_t* hio = fcgi->htts->hio;
HIO_DEBUG5 (hio, "HTTS(%p) - fcgi(t=%p,c=%p[%d],p=%p) - killing the task\n", fcgi->htts, fcgi, fcgi->task_client, (fcgi->task_csck? fcgi->task_csck->hnd: -1), fcgi->peer);
if (fcgi->on_kill) fcgi->on_kill (task);
2022-08-31 23:01:32 +00:00
2023-02-06 13:30:56 +00:00
/* [NOTE]
* 1. if hio_svc_htts_task_kill() is called, fcgi->peer, fcgi->peer_htrd, fcgi->task_csck,
* fcgi->task_client may not not null.
* 2. this callback function doesn't decrement the reference count on fcgi because
2023-03-19 18:01:35 +00:00
* it is the task destruction callback. (passing 0 to unbind_task_from_peer/client)
2023-02-06 13:30:56 +00:00
*/
2023-03-19 18:01:35 +00:00
unbind_task_from_peer (fcgi, 0);
2022-08-31 23:01:32 +00:00
if (fcgi->task_csck)
2023-01-24 16:45:28 +00:00
{
HIO_ASSERT (hio, fcgi->task_client != HIO_NULL);
2023-02-06 13:30:56 +00:00
unbind_task_from_client (fcgi, 0);
}
2023-02-06 13:30:56 +00:00
/* detach from the htts service only if it's attached */
if (fcgi->task_next) HIO_SVC_HTTS_TASKL_UNLINK_TASK (fcgi);
HIO_DEBUG5 (hio, "HTTS(%p) - fcgi(t=%p,c=%p[%d],p=%p) - killed the task\n", fcgi->htts, fcgi, fcgi->task_client, (fcgi->task_csck? fcgi->task_csck->hnd: -1), fcgi->peer);
2022-08-31 23:01:32 +00:00
}
2023-01-31 16:15:14 +00:00
static void fcgi_peer_on_untie (hio_svc_fcgic_sess_t* peer, void* ctx)
2022-08-31 23:01:32 +00:00
{
2023-01-31 16:15:14 +00:00
fcgi_t* fcgi = (fcgi_t*)ctx;
2023-02-20 08:08:41 +00:00
hio_t* hio = fcgi->htts->hio;
2022-08-31 23:01:32 +00:00
2023-01-31 16:15:14 +00:00
/* in case this untie event originates from the fcgi client itself.
* fcgi_halt_participating_devices() calls hio_svc_fcgi_untie() again
* to cause an infinite loop if we don't reset fcgi->peer to HIO_NULL here */
2023-02-20 08:08:41 +00:00
HIO_DEBUG5 (hio, "HTTS(%p) - fcgi(t=%p,c=%p[%d],p=%p) - untieing peer\n", fcgi->htts, fcgi, fcgi->task_client, (fcgi->task_csck? fcgi->task_csck->hnd: -1), fcgi->peer);
2023-02-20 08:08:41 +00:00
2023-03-19 18:01:35 +00:00
fcgi->peer = HIO_NULL; /* to avoid infinite loop as explained above */
hio_svc_htts_task_endbody (fcgi);
2023-02-20 08:08:41 +00:00
unbind_task_from_peer (fcgi, 1);
HIO_DEBUG5 (hio, "HTTS(%p) - fcgi(t=%p,c=%p[%d],p=%p) - untied peer\n", fcgi->htts, fcgi, fcgi->task_client, (fcgi->task_csck? fcgi->task_csck->hnd: -1), fcgi->peer);
2022-08-31 23:01:32 +00:00
}
2023-01-27 06:59:46 +00:00
static int fcgi_peer_on_read (hio_svc_fcgic_sess_t* peer, const void* data, hio_iolen_t dlen, void* ctx)
2023-01-08 16:09:34 +00:00
{
2023-01-27 06:59:46 +00:00
fcgi_t* fcgi = (fcgi_t*)ctx;
2023-01-24 16:45:28 +00:00
hio_svc_htts_t* htts = fcgi->htts;
hio_t* hio = htts->hio;
if (dlen <= -1)
{
HIO_DEBUG2 (hio, "HTTS(%p) - read error from peer %p\n", htts, peer);
goto oops;
}
if (dlen == 0)
{
HIO_DEBUG2 (hio, "HTTS(%p) - EOF from peer %p\n", htts, peer);
if (!(fcgi->over & FCGI_OVER_READ_FROM_PEER))
{
int n;
/* the fcgi script could be misbehaving.
* it still has to read more but EOF is read.
* otherwise peer_htrd_poke() should have been called */
n = hio_svc_htts_task_endbody(fcgi);
2023-01-24 16:45:28 +00:00
fcgi_mark_over (fcgi, FCGI_OVER_READ_FROM_PEER);
if (n <= -1) goto oops;
}
}
else
{
hio_oow_t rem;
HIO_ASSERT (hio, !(fcgi->over & FCGI_OVER_READ_FROM_PEER));
if (hio_htrd_feed(fcgi->peer_htrd, data, dlen, &rem) <= -1)
{
HIO_DEBUG2 (hio, "HTTS(%p) - unable to feed peer htrd - peer %p\n", htts, peer);
if (!fcgi->task_res_started && !(fcgi->over & FCGI_OVER_WRITE_TO_CLIENT))
2023-01-24 16:45:28 +00:00
{
2023-03-19 18:01:35 +00:00
hio_svc_htts_task_sendfinalres (fcgi, HIO_HTTP_STATUS_BAD_GATEWAY, HIO_NULL, HIO_NULL, 1); /* don't care about error because it jumps to oops below anyway */
2023-01-24 16:45:28 +00:00
}
goto oops;
}
if (rem > 0)
{
/* If the script specifies Content-Length and produces longer data, it will come here */
/* ezcessive data ... */
/* TODO: or drop this request?? */
}
}
return 0;
oops:
fcgi_halt_participating_devices (fcgi); /* TODO: kill the session only??? */
2023-01-08 16:09:34 +00:00
return 0;
}
static int fcgi_peer_on_write (hio_svc_fcgic_sess_t* peer, hio_fcgi_req_type_t rqtype, hio_iolen_t wrlen, void* wrctx)
{
fcgi_t* fcgi = (fcgi_t*)wrctx;
if (wrlen <= -1) goto oops;
if (rqtype == HIO_FCGI_STDIN && wrlen == 0)
{
/* completely wrote end of stdin to the cgi server */
fcgi_mark_over (fcgi, FCGI_OVER_WRITE_TO_PEER);
}
return 0;
oops:
fcgi_halt_participating_devices (fcgi);
return 0;
}
2023-01-24 16:45:28 +00:00
static int peer_capture_response_header (hio_htre_t* req, const hio_bch_t* key, const hio_htre_hdrval_t* val, void* ctx)
2022-08-31 23:01:32 +00:00
{
return hio_svc_htts_task_addreshdrs((fcgi_t*)ctx, key, val);
2023-01-24 16:45:28 +00:00
}
static int peer_htrd_peek (hio_htrd_t* htrd, hio_htre_t* req)
{
/* response header received from the peer */
2023-01-24 16:45:28 +00:00
fcgi_peer_xtn_t* peer = hio_htrd_getxtn(htrd);
fcgi_t* fcgi = peer->fcgi;
hio_svc_htts_cli_t* cli = fcgi->task_client;
2023-01-24 16:45:28 +00:00
if (HIO_LIKELY(cli)) /* only if the client is still connected */
2022-08-31 23:01:32 +00:00
{
2023-03-19 18:01:35 +00:00
int status_code = HIO_HTTP_STATUS_OK;
const hio_bch_t* status_desc = HIO_NULL;
int chunked;
if (req->attr.status) hio_parse_http_status_header_value(req->attr.status, &status_code, &status_desc);
2022-08-31 23:01:32 +00:00
chunked = fcgi->task_keep_client_alive && !req->attr.content_length;
2023-01-24 16:45:28 +00:00
if (hio_svc_htts_task_startreshdr(fcgi, status_code, status_desc, chunked) <= -1 ||
hio_htre_walkheaders(req, peer_capture_response_header, fcgi) <= -1 ||
hio_svc_htts_task_endreshdr(fcgi) <= -1) return -1;
}
2023-01-24 16:45:28 +00:00
return 0;
2023-01-24 16:45:28 +00:00
}
static int peer_htrd_poke (hio_htrd_t* htrd, hio_htre_t* req)
{
/* complete response received from the peer */
2023-01-24 16:45:28 +00:00
fcgi_peer_xtn_t* peer = hio_htrd_getxtn(htrd);
fcgi_t* fcgi = peer->fcgi;
int n;
2023-01-24 16:45:28 +00:00
n = hio_svc_htts_task_endbody(fcgi);
2023-01-24 16:45:28 +00:00
fcgi_mark_over (fcgi, FCGI_OVER_READ_FROM_PEER);
return n;
2023-01-24 16:45:28 +00:00
}
static int peer_htrd_push_content (hio_htrd_t* htrd, hio_htre_t* req, const hio_bch_t* data, hio_oow_t dlen)
{
fcgi_peer_xtn_t* peer = hio_htrd_getxtn(htrd);
fcgi_t* fcgi = peer->fcgi;
HIO_ASSERT (fcgi->htts->hio, htrd == fcgi->peer_htrd);
return hio_svc_htts_task_addresbody(fcgi, data, dlen);
2022-08-31 23:01:32 +00:00
}
2023-01-24 16:45:28 +00:00
static hio_htrd_recbs_t peer_htrd_recbs =
{
peer_htrd_peek,
peer_htrd_poke,
peer_htrd_push_content
};
2023-01-31 16:15:14 +00:00
static int fcgi_client_htrd_poke (hio_htrd_t* htrd, hio_htre_t* req)
{
/* the client request got completed including body.
* this callback is set and called only if there is content in the request */
hio_svc_htts_cli_htrd_xtn_t* htrdxtn = (hio_svc_htts_cli_htrd_xtn_t*)hio_htrd_getxtn(htrd);
hio_dev_sck_t* sck = htrdxtn->sck;
hio_svc_htts_cli_t* cli = hio_dev_sck_getxtn(sck);
fcgi_t* fcgi = (fcgi_t*)cli->task;
/* indicate end of STDIN */
2023-02-06 13:30:56 +00:00
if (fcgi_write_stdin_to_peer(fcgi, HIO_NULL, 0) <= -1) return -1;
2023-01-31 16:15:14 +00:00
fcgi_mark_over (fcgi, FCGI_OVER_READ_FROM_CLIENT);
return 0;
}
static int fcgi_client_htrd_push_content (hio_htrd_t* htrd, hio_htre_t* req, const hio_bch_t* data, hio_oow_t dlen)
{
hio_svc_htts_cli_htrd_xtn_t* htrdxtn = (hio_svc_htts_cli_htrd_xtn_t*)hio_htrd_getxtn(htrd);
hio_dev_sck_t* sck = htrdxtn->sck;
hio_svc_htts_cli_t* cli = hio_dev_sck_getxtn(sck);
fcgi_t* fcgi = (fcgi_t*)cli->task;
HIO_ASSERT (sck->hio, cli->sck == sck);
/* write the contents to fcgi server as stdin*/
2023-02-06 13:30:56 +00:00
return fcgi_write_stdin_to_peer(fcgi, data, dlen);
2023-01-31 16:15:14 +00:00
}
static hio_htrd_recbs_t fcgi_client_htrd_recbs =
{
HIO_NULL, /* this shall be set to an actual peer handler before hio_htrd_setrecbs() */
fcgi_client_htrd_poke,
fcgi_client_htrd_push_content
};
static void fcgi_client_on_disconnect (hio_dev_sck_t* sck)
{
hio_svc_htts_cli_t* cli = hio_dev_sck_getxtn(sck);
2023-02-06 13:30:56 +00:00
hio_t* hio = sck->hio;
2023-01-31 16:15:14 +00:00
hio_svc_htts_t* htts = cli->htts;
fcgi_t* fcgi = (fcgi_t*)cli->task;
HIO_DEBUG4 (hio, "HTTS(%p) - fcgi(t=%p,c=%p,csck=%p) - handling client socket disconnect\n", htts, fcgi, cli, sck);
2023-01-31 16:15:14 +00:00
2023-02-06 13:30:56 +00:00
/* fcgi may be null if there is no associated task or
* the previously associated one is already gone */
if (fcgi)
2023-01-31 16:15:14 +00:00
{
HIO_ASSERT (hio, sck == fcgi->task_csck);
2023-02-06 13:30:56 +00:00
HIO_SVC_HTTS_TASK_RCUP (fcgi);
/* detach the task from the client and the client socket */
2023-02-06 13:30:56 +00:00
unbind_task_from_client (fcgi, 1);
/* call the parent handler*/
/*if (fcgi->client_org_on_disconnect) fcgi->client_org_on_disconnect (sck);*/
if (sck->on_disconnect) sck->on_disconnect (sck); /* restored to the orginal parent handelr in unbind_task_from_client() */
HIO_SVC_HTTS_TASK_RCDOWN (fcgi);
2023-01-31 16:15:14 +00:00
}
HIO_DEBUG4 (hio, "HTTS(%p) - fcgi(t=%p,c=%p,csck=%p) - handled client socket disconnect\n", htts, fcgi, cli, sck);
2023-01-31 16:15:14 +00:00
/* Note: after this callback, the actual device pointed to by 'sck' will be freed in the main loop. */
}
static int fcgi_client_on_read (hio_dev_sck_t* sck, const void* buf, hio_iolen_t len, const hio_skad_t* srcaddr)
{
hio_t* hio = sck->hio;
hio_svc_htts_cli_t* cli = hio_dev_sck_getxtn(sck);
fcgi_t* fcgi = (fcgi_t*)cli->task;
int n;
2023-01-31 16:15:14 +00:00
HIO_ASSERT (hio, sck == cli->sck);
n = fcgi->client_org_on_read? fcgi->client_org_on_read(sck, buf, len, srcaddr): 0;
2023-01-31 16:15:14 +00:00
if (len <= -1)
{
/* read error */
HIO_DEBUG3 (cli->htts->hio, "HTTS(%p) - read error on client %p(%d)\n", fcgi->htts, sck, (int)sck->hnd);
2023-01-31 16:15:14 +00:00
goto oops;
}
if (len == 0)
{
/* EOF on the client side. arrange to close */
HIO_DEBUG3 (hio, "HTTS(%p) - EOF from client %p(hnd=%d)\n", fcgi->htts, sck, (int)sck->hnd);
if (!(fcgi->over & FCGI_OVER_READ_FROM_CLIENT)) /* if this is true, EOF is received without fcgi_client_htrd_poke() */
{
/* indicate eof to the write side */
int x;
x = fcgi_write_stdin_to_peer(fcgi, HIO_NULL, 0);
2023-01-31 16:15:14 +00:00
fcgi_mark_over (fcgi, FCGI_OVER_READ_FROM_CLIENT);
if (x <= -1) goto oops;
2023-01-31 16:15:14 +00:00
}
}
if (n <= -1) goto oops;
2023-01-31 16:15:14 +00:00
return 0;
oops:
fcgi_halt_participating_devices (fcgi);
return 0;
}
static int fcgi_client_on_write (hio_dev_sck_t* sck, hio_iolen_t wrlen, void* wrctx, const hio_skad_t* dstaddr)
{
hio_t* hio = sck->hio;
hio_svc_htts_cli_t* cli = hio_dev_sck_getxtn(sck);
fcgi_t* fcgi = (fcgi_t*)cli->task;
int n;
2023-01-31 16:15:14 +00:00
n = fcgi->client_org_on_write? fcgi->client_org_on_write(sck, wrlen, wrctx, dstaddr): 0;
2023-01-31 16:15:14 +00:00
if (wrlen == 0)
{
fcgi_mark_over (fcgi, FCGI_OVER_WRITE_TO_CLIENT);
}
else if (wrlen > 0)
2023-01-31 16:15:14 +00:00
{
#if 0
if (fcgi->peer && fcgi->task_res_pending_writes == FCGI_PENDING_IO_THRESHOLD_TO_CLIENT)
2023-01-31 16:15:14 +00:00
{
/* enable reading from fcgi */
2023-02-20 16:08:28 +00:00
if (!(fcgi->over & FCGI_OVER_READ_FROM_PEER) && hio_svc_fcgic_read(fcgi->peer, 1) <= -1) goto oops;
2023-01-31 16:15:14 +00:00
}
#endif
2023-01-31 16:15:14 +00:00
if ((fcgi->over & FCGI_OVER_READ_FROM_PEER) && fcgi->task_res_pending_writes <= 0)
2023-01-31 16:15:14 +00:00
{
fcgi_mark_over (fcgi, FCGI_OVER_WRITE_TO_CLIENT);
}
}
if (n <= -1 || wrlen <= -1) fcgi_halt_participating_devices (fcgi);
2023-01-31 16:15:14 +00:00
return 0;
}
2023-01-24 16:45:28 +00:00
2023-02-20 08:08:41 +00:00
static int peer_capture_request_header (hio_htre_t* req, const hio_bch_t* key, const hio_htre_hdrval_t* val, void* ctx)
{
fcgi_t* fcgi = (fcgi_t*)ctx;
hio_svc_htts_t* htts = fcgi->htts;
hio_t* hio = htts->hio;
if (hio_comp_bcstr(key, "Connection", 1) != 0 &&
hio_comp_bcstr(key, "Transfer-Encoding", 1) != 0 &&
hio_comp_bcstr(key, "Content-Length", 1) != 0 &&
hio_comp_bcstr(key, "Expect", 1) != 0)
{
hio_oow_t val_offset;
hio_bch_t* ptr;
if (hio_comp_bcstr(key, "Content-Type", 1) == 0)
{
/* don't prefix CONTENT_TYPE with HTTP_ */
2023-02-20 16:08:28 +00:00
hio_becs_clear (htts->becbuf);
2023-02-20 08:08:41 +00:00
}
else
{
2023-02-20 16:08:28 +00:00
if (hio_becs_cpy(htts->becbuf, "HTTP_") == (hio_oow_t)-1) return -1;
2023-02-20 08:08:41 +00:00
}
2023-02-20 16:08:28 +00:00
if (hio_becs_cat(htts->becbuf, key) == (hio_oow_t)-1 ||
hio_becs_ccat(htts->becbuf, '\0') == (hio_oow_t)-1) return -1;
2023-02-20 08:08:41 +00:00
2023-02-20 16:08:28 +00:00
for (ptr = HIO_BECS_PTR(htts->becbuf); *ptr; ptr++)
2023-02-20 08:08:41 +00:00
{
*ptr = hio_to_bch_upper(*ptr);
if (*ptr =='-') *ptr = '_';
}
2023-02-20 16:08:28 +00:00
val_offset = HIO_BECS_LEN(htts->becbuf);
if (hio_becs_cat(htts->becbuf, val->ptr) == (hio_oow_t)-1) return -1;
2023-02-20 08:08:41 +00:00
val = val->next;
while (val)
{
2023-02-20 16:08:28 +00:00
if (hio_becs_cat(htts->becbuf, ",") == (hio_oow_t)-1 ||
hio_becs_cat(htts->becbuf, val->ptr) == (hio_oow_t)-1) return -1;
2023-02-20 08:08:41 +00:00
val = val->next;
}
2023-02-20 16:08:28 +00:00
hio_svc_fcgic_writeparam(fcgi->peer, HIO_BECS_PTR(htts->becbuf), val_offset - 1, HIO_BECS_CPTR(htts->becbuf, val_offset), HIO_BECS_LEN(htts->becbuf) - val_offset);
2023-02-20 08:08:41 +00:00
/* TODO: error handling? */
}
return 0;
}
static int write_params (fcgi_t* fcgi, hio_dev_sck_t* csck, hio_htre_t* req, const hio_bch_t* docroot, const hio_bch_t* script)
2023-01-08 16:09:34 +00:00
{
hio_t* hio = fcgi->htts->hio;
hio_bch_t tmp[256];
hio_oow_t len;
const hio_bch_t* qparam;
hio_oow_t content_length;
hio_bch_t* actual_script = HIO_NULL;
2023-02-20 08:08:41 +00:00
hio_becs_t dbuf;
2023-01-08 16:09:34 +00:00
HIO_ASSERT (hio, fcgi->task_csck == csck);
2023-01-08 16:09:34 +00:00
actual_script = hio_svc_htts_dupmergepaths(fcgi->htts, docroot, script);
if (!actual_script) goto oops;
2023-01-24 16:45:28 +00:00
if (hio_svc_fcgic_writeparam(fcgi->peer, "GATEWAY_INTERFACE", 17, "FCGI/1.1", 7) <= -1) goto oops;
2023-01-08 16:09:34 +00:00
len = hio_fmttobcstr(hio, tmp, HIO_COUNTOF(tmp), "HTTP/%d.%d", (int)hio_htre_getmajorversion(req), (int)hio_htre_getminorversion(req));
if (hio_svc_fcgic_writeparam(fcgi->peer, "SERVER_PROTOCOL", 15, tmp, len) <= -1) goto oops;
if (hio_svc_fcgic_writeparam(fcgi->peer, "DOCUMENT_ROOT", 13, docroot, hio_count_bcstr(docroot)) <= -1) goto oops;
if (hio_svc_fcgic_writeparam(fcgi->peer, "SCRIPT_NAME", 11, script, hio_count_bcstr(script)) <= -1) goto oops;
if (hio_svc_fcgic_writeparam(fcgi->peer, "SCRIPT_FILENAME", 15, actual_script, hio_count_bcstr(actual_script)) <= -1) goto oops;
// TODO: PATH_INFO
2023-01-08 16:09:34 +00:00
if (hio_svc_fcgic_writeparam(fcgi->peer, "REQUEST_METHOD", 14, hio_htre_getqmethodname(req), hio_htre_getqmethodlen(req)) <= -1) goto oops;
if (hio_svc_fcgic_writeparam(fcgi->peer, "REQUEST_URI", 11, hio_htre_getqpath(req), hio_htre_getqpathlen(req)) <= -1) goto oops;
qparam = hio_htre_getqparam(req);
2023-02-20 08:08:41 +00:00
if (!qparam) qparam = "";
if (hio_svc_fcgic_writeparam(fcgi->peer, "QUERY_STRING", 12, qparam, hio_count_bcstr(qparam)) <= -1) goto oops;
2023-01-08 16:09:34 +00:00
if (hio_htre_getreqcontentlen(req, &content_length) == 0)
{
/* content length is known and fixed */
len = hio_fmt_uintmax_to_bcstr(tmp, HIO_COUNTOF(tmp), content_length, 10, 0, '\0', HIO_NULL);
if (hio_svc_fcgic_writeparam(fcgi->peer, "CONTENT_LENGTH", 14, tmp, len) <= -1) goto oops;
}
if (hio_svc_fcgic_writeparam(fcgi->peer, "SERVER_SOFTWARE", 15, fcgi->htts->server_name, hio_count_bcstr(fcgi->htts->server_name)) <= -1) goto oops;
len = hio_skadtobcstr (hio, &csck->localaddr, tmp, HIO_COUNTOF(tmp), HIO_SKAD_TO_BCSTR_ADDR);
if (hio_svc_fcgic_writeparam(fcgi->peer, "SERVER_ADDR", 11, tmp, len) <= -1) goto oops;
gethostname (tmp, HIO_COUNTOF(tmp)); /* if this fails, i assume tmp contains the ip address set by hio_skadtobcstr() above */
if (hio_svc_fcgic_writeparam(fcgi->peer, "SERVER_NAME", 11, tmp, hio_count_bcstr(tmp)) <= -1) goto oops;
len = hio_skadtobcstr (hio, &csck->localaddr, tmp, HIO_COUNTOF(tmp), HIO_SKAD_TO_BCSTR_PORT);
if (hio_svc_fcgic_writeparam(fcgi->peer, "SERVER_PORT", 11, tmp, len) <= -1) goto oops;
len = hio_skadtobcstr (hio, &csck->remoteaddr, tmp, HIO_COUNTOF(tmp), HIO_SKAD_TO_BCSTR_ADDR);
if (hio_svc_fcgic_writeparam(fcgi->peer, "REMOTE_ADDR", 11, tmp, len) <= -1) goto oops;
len = hio_skadtobcstr (hio, &csck->remoteaddr, tmp, HIO_COUNTOF(tmp), HIO_SKAD_TO_BCSTR_PORT);
if (hio_svc_fcgic_writeparam(fcgi->peer, "REMOTE_PORT", 11, tmp, len) <= -1) goto oops;
2023-02-20 08:08:41 +00:00
hio_htre_walkheaders (req, peer_capture_request_header, fcgi);
/* [NOTE] trailers are not available when this cgi resource is started. let's not call hio_htre_walktrailers() */
2023-01-08 16:09:34 +00:00
hio_freemem (hio, actual_script);
2023-01-08 16:09:34 +00:00
return 0;
oops:
if (actual_script) hio_freemem (hio, actual_script);
2023-01-08 16:09:34 +00:00
return -1;
}
2023-01-24 16:45:28 +00:00
2023-03-19 18:01:35 +00:00
/* ----------------------------------------------------------------------- */
2023-02-06 13:30:56 +00:00
static void bind_task_to_client (fcgi_t* fcgi, hio_dev_sck_t* csck)
{
hio_svc_htts_cli_t* cli = hio_dev_sck_getxtn(csck);
HIO_ASSERT (fcgi->htts->hio, cli->sck == csck);
HIO_ASSERT (fcgi->htts->hio, cli->task == HIO_NULL);
/* fcgi->task_client and fcgi->task_csck are set in hio_svc_htts_task_make() */
2023-02-06 13:30:56 +00:00
/* remember the client socket's io event handlers */
fcgi->client_org_on_read = csck->on_read;
fcgi->client_org_on_write = csck->on_write;
fcgi->client_org_on_disconnect = csck->on_disconnect;
/* set new io events handlers on the client socket */
csck->on_read = fcgi_client_on_read;
csck->on_write = fcgi_client_on_write;
csck->on_disconnect = fcgi_client_on_disconnect;
cli->task = (hio_svc_htts_task_t*)fcgi;
HIO_SVC_HTTS_TASK_RCUP (fcgi);
}
static void unbind_task_from_client (fcgi_t* fcgi, int rcdown)
{
hio_dev_sck_t* csck = fcgi->task_csck;
2023-02-06 13:30:56 +00:00
HIO_ASSERT (fcgi->htts->hio, fcgi->task_client != HIO_NULL);
HIO_ASSERT (fcgi->htts->hio, fcgi->task_csck != HIO_NULL);
HIO_ASSERT (fcgi->htts->hio, fcgi->task_client->task == (hio_svc_htts_task_t*)fcgi);
HIO_ASSERT (fcgi->htts->hio, fcgi->task_client->htrd != HIO_NULL);
2023-02-06 13:30:56 +00:00
if (fcgi->client_htrd_recbs_changed)
{
hio_htrd_setrecbs (fcgi->task_client->htrd, &fcgi->client_htrd_org_recbs);
2023-02-06 13:30:56 +00:00
fcgi->client_htrd_recbs_changed = 0;
}
if (fcgi->client_org_on_read)
{
csck->on_read = fcgi->client_org_on_read;
fcgi->client_org_on_read = HIO_NULL;
}
if (fcgi->client_org_on_write)
{
csck->on_write = fcgi->client_org_on_write;
fcgi->client_org_on_write = HIO_NULL;
}
if (fcgi->client_org_on_disconnect)
{
csck->on_disconnect = fcgi->client_org_on_disconnect;
fcgi->client_org_on_disconnect = HIO_NULL;
}
/* there is some ordering issue in using HIO_SVC_HTTS_TASK_UNREF()
* because it can destroy the fcgi itself. so reset fcgi->task_client->task
2023-02-06 13:30:56 +00:00
* to null and call RCDOWN() later */
fcgi->task_client->task = HIO_NULL;
/* these two lines are also done in csck_on_disconnect() in http-svr.c because the socket is destroyed.
* the same lines here are because the task is unbound while the socket is still alive */
fcgi->task_client = HIO_NULL;
fcgi->task_csck = HIO_NULL;
2023-02-06 13:30:56 +00:00
/* enable input watching on the socket being unbound */
if (fcgi->task_keep_client_alive && hio_dev_sck_read(csck, 1) <= -1)
2023-02-06 13:30:56 +00:00
{
HIO_DEBUG2 (fcgi->htts->hio, "HTTS(%p) - halting client(%p) for failure to enable input watching\n", fcgi->htts, csck);
hio_dev_sck_halt (csck);
}
if (rcdown) HIO_SVC_HTTS_TASK_RCDOWN ((hio_svc_htts_task_t*)fcgi);
}
2023-03-19 18:01:35 +00:00
/* ----------------------------------------------------------------------- */
2023-02-06 13:30:56 +00:00
static int bind_task_to_peer (fcgi_t* fcgi, const hio_skad_t* fcgis_addr)
{
hio_htrd_t* htrd;
fcgi_peer_xtn_t* pxtn;
htrd = hio_htrd_open(fcgi->htts->hio, HIO_SIZEOF(*pxtn));
if (HIO_UNLIKELY(!htrd)) return -1;
hio_htrd_setoption (htrd, HIO_HTRD_SKIP_INITIAL_LINE | HIO_HTRD_RESPONSE);
hio_htrd_setrecbs (htrd, &peer_htrd_recbs);
fcgi->peer = hio_svc_fcgic_tie(fcgi->htts->fcgic, fcgis_addr, fcgi_peer_on_read, fcgi_peer_on_write, fcgi_peer_on_untie, fcgi);
2023-02-06 13:30:56 +00:00
if (HIO_UNLIKELY(!fcgi->peer))
{
hio_htrd_close (htrd);
return -1;
}
pxtn = hio_htrd_getxtn(htrd);
pxtn->fcgi = fcgi;
fcgi->peer_htrd = htrd;
HIO_SVC_HTTS_TASK_RCUP (fcgi); /* for peer_htrd extension */
HIO_SVC_HTTS_TASK_RCUP (fcgi); /* for fcgi->peer->ctx in the tie() */
return 0;
}
static void unbind_task_from_peer (fcgi_t* fcgi, int rcdown)
{
int n = 0;
if (fcgi->peer_htrd)
{
hio_htrd_close (fcgi->peer_htrd);
fcgi->peer_htrd = HIO_NULL;
n++;
}
if (fcgi->peer)
{
2023-11-15 16:45:52 +00:00
/* hio_svc_fcgic_untie() is not a delayed operation unlike hio_dev_sck_halt().
2023-02-06 13:30:56 +00:00
* TODO: check if this is a buggy idea */
hio_svc_fcgic_untie (fcgi->peer);
fcgi->peer = HIO_NULL;
n++;
}
2023-03-19 18:01:35 +00:00
if (rcdown)
2023-02-06 13:30:56 +00:00
{
while (n > 0)
{
n--;
HIO_SVC_HTTS_TASK_RCDOWN((hio_svc_htts_task_t*)fcgi);
}
}
}
2023-03-19 18:01:35 +00:00
/* ----------------------------------------------------------------------- */
2023-02-07 14:22:37 +00:00
static int setup_for_content_length(fcgi_t* fcgi, hio_htre_t* req)
{
int have_content;
2022-08-31 23:01:32 +00:00
#if defined(FCGI_ALLOW_UNLIMITED_REQ_CONTENT_LENGTH)
have_content = fcgi->task_req_conlen > 0 || fcgi->task_req_conlen_unlimited;
#else
have_content = fcgi->task_req_conlen > 0;
#endif
if (have_content)
2022-08-31 23:01:32 +00:00
{
/* change the callbacks to subscribe to contents to be uploaded */
fcgi->client_htrd_org_recbs = *hio_htrd_getrecbs(fcgi->task_client->htrd);
2022-08-31 23:01:32 +00:00
fcgi_client_htrd_recbs.peek = fcgi->client_htrd_org_recbs.peek;
hio_htrd_setrecbs (fcgi->task_client->htrd, &fcgi_client_htrd_recbs);
2022-08-31 23:01:32 +00:00
fcgi->client_htrd_recbs_changed = 1;
}
else
{
/* no content to be uploaded from the client */
/* indicate end of stdin to the peer and disable input wathching from the client */
if (fcgi_write_stdin_to_peer(fcgi, HIO_NULL, 0) <= -1) return -1;
fcgi_mark_over (fcgi, FCGI_OVER_READ_FROM_CLIENT | FCGI_OVER_WRITE_TO_PEER);
2022-08-31 23:01:32 +00:00
}
2023-02-07 14:22:37 +00:00
return 0;
}
2023-02-20 08:08:41 +00:00
2023-03-19 18:01:35 +00:00
/* ----------------------------------------------------------------------- */
int hio_svc_htts_dofcgi (hio_svc_htts_t* htts, hio_dev_sck_t* csck, hio_htre_t* req, const hio_skad_t* fcgis_addr, const hio_bch_t* docroot, const hio_bch_t* script, int options, hio_svc_htts_task_on_kill_t on_kill)
2023-02-07 14:22:37 +00:00
{
hio_t* hio = htts->hio;
hio_svc_htts_cli_t* cli = hio_dev_sck_getxtn(csck);
2023-02-07 14:22:37 +00:00
fcgi_t* fcgi = HIO_NULL;
/* ensure that you call this function before any contents is received */
HIO_ASSERT (hio, hio_htre_getcontentlen(req) == 0);
if (HIO_UNLIKELY(!htts->fcgic))
{
hio_seterrbfmt (hio, HIO_ENOCAPA, "fcgi client service not enabled");
goto oops;
}
fcgi = (fcgi_t*)hio_svc_htts_task_make(htts, HIO_SIZEOF(*fcgi), fcgi_on_kill, req, csck);
2023-02-07 14:22:37 +00:00
if (HIO_UNLIKELY(!fcgi)) goto oops;
fcgi->on_kill = on_kill; /* custom on_kill handler by the caller */
2023-02-07 14:22:37 +00:00
bind_task_to_client (fcgi, csck);
if (bind_task_to_peer(fcgi, fcgis_addr) <= -1) goto oops;
2023-03-28 16:24:20 +00:00
if (hio_svc_htts_task_handleexpect100(fcgi) <= -1) goto oops;
2023-02-07 14:22:37 +00:00
if (setup_for_content_length(fcgi, req) <= -1) goto oops;
2023-01-24 16:45:28 +00:00
/* TODO: store current input watching state and use it when destroying the fcgi data */
2022-08-31 23:01:32 +00:00
if (hio_dev_sck_read(csck, !(fcgi->over & FCGI_OVER_READ_FROM_CLIENT)) <= -1) goto oops;
2023-02-07 14:22:37 +00:00
/* send FCGI_BEGIN_REQUEST */
if (hio_svc_fcgic_beginrequest(fcgi->peer) <= -1) goto oops;
/* write FCGI_PARAM */
if (write_params(fcgi, csck, req, docroot, script) <= -1) goto oops;
if (hio_svc_fcgic_writeparam(fcgi->peer, HIO_NULL, 0, HIO_NULL, 0) <= -1) goto oops; /* end of params */
HIO_SVC_HTTS_TASKL_APPEND_TASK (&htts->task, (hio_svc_htts_task_t*)fcgi);
2022-08-31 23:01:32 +00:00
return 0;
oops:
HIO_DEBUG2 (hio, "HTTS(%p) - FAILURE in dofcgi - socket(%p)\n", htts, csck);
if (fcgi) fcgi_halt_participating_devices (fcgi);
return -1;
}