Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1 | /* |
| 2 | * FastCGI mux-demux for connections |
| 3 | * |
| 4 | * Copyright (C) 2019 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 13 | #include <import/ist.h> |
| 14 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 15 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 16 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 17 | #include <haproxy/connection.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 18 | #include <haproxy/errors.h> |
Willy Tarreau | c659968 | 2020-06-04 21:33:21 +0200 | [diff] [blame] | 19 | #include <haproxy/fcgi-app.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 20 | #include <haproxy/fcgi.h> |
Willy Tarreau | 5413a87 | 2020-06-02 19:33:08 +0200 | [diff] [blame] | 21 | #include <haproxy/h1.h> |
Willy Tarreau | c6fe884 | 2020-06-04 09:00:02 +0200 | [diff] [blame] | 22 | #include <haproxy/h1_htx.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 23 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 24 | #include <haproxy/htx.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 25 | #include <haproxy/list.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 26 | #include <haproxy/log.h> |
Willy Tarreau | 6131d6a | 2020-06-02 16:48:09 +0200 | [diff] [blame] | 27 | #include <haproxy/net_helper.h> |
Willy Tarreau | c5396bd | 2021-05-08 20:28:54 +0200 | [diff] [blame] | 28 | #include <haproxy/proxy.h> |
Willy Tarreau | 7cd8b6e | 2020-06-02 17:32:26 +0200 | [diff] [blame] | 29 | #include <haproxy/regex.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 30 | #include <haproxy/session-t.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 31 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 32 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 33 | #include <haproxy/stream_interface.h> |
Willy Tarreau | c6d61d7 | 2020-06-04 19:02:42 +0200 | [diff] [blame] | 34 | #include <haproxy/trace.h> |
Christopher Faulet | b2a5029 | 2021-06-11 13:34:42 +0200 | [diff] [blame] | 35 | #include <haproxy/version.h> |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 37 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 38 | /* FCGI Connection flags (32 bits) */ |
| 39 | #define FCGI_CF_NONE 0x00000000 |
| 40 | |
| 41 | /* Flags indicating why writing to the mux is blockes */ |
| 42 | #define FCGI_CF_MUX_MALLOC 0x00000001 /* mux is blocked on lack connection's mux buffer */ |
| 43 | #define FCGI_CF_MUX_MFULL 0x00000002 /* mux is blocked on connection's mux buffer full */ |
| 44 | #define FCGI_CF_MUX_BLOCK_ANY 0x00000003 /* mux is blocked on connection's mux buffer full */ |
| 45 | |
| 46 | /* Flags indicating why writing to the demux is blocked. |
| 47 | * The first two ones directly affect the ability for the mux to receive data |
| 48 | * from the connection. The other ones affect the mux's ability to demux |
| 49 | * received data. |
| 50 | */ |
| 51 | #define FCGI_CF_DEM_DALLOC 0x00000004 /* demux blocked on lack of connection's demux buffer */ |
| 52 | #define FCGI_CF_DEM_DFULL 0x00000008 /* demux blocked on connection's demux buffer full */ |
| 53 | #define FCGI_CF_DEM_MROOM 0x00000010 /* demux blocked on lack of room in mux buffer */ |
| 54 | #define FCGI_CF_DEM_SALLOC 0x00000020 /* demux blocked on lack of stream's rx buffer */ |
| 55 | #define FCGI_CF_DEM_SFULL 0x00000040 /* demux blocked on stream request buffer full */ |
| 56 | #define FCGI_CF_DEM_TOOMANY 0x00000080 /* demux blocked waiting for some conn_streams to leave */ |
| 57 | #define FCGI_CF_DEM_BLOCK_ANY 0x000000F0 /* aggregate of the demux flags above except DALLOC/DFULL */ |
| 58 | |
| 59 | /* Other flags */ |
| 60 | #define FCGI_CF_MPXS_CONNS 0x00000100 /* connection multiplexing is supported */ |
| 61 | #define FCGI_CF_ABRTS_SENT 0x00000200 /* a record ABORT was successfully sent to all active streams */ |
| 62 | #define FCGI_CF_ABRTS_FAILED 0x00000400 /* failed to abort processing of all streams */ |
| 63 | #define FCGI_CF_WAIT_FOR_HS 0x00000800 /* We did check that at least a stream was waiting for handshake */ |
Willy Tarreau | 714f345 | 2021-05-09 06:47:26 +0200 | [diff] [blame] | 64 | #define FCGI_CF_KEEP_CONN 0x00001000 /* HAProxy is responsible to close the connection */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 65 | #define FCGI_CF_GET_VALUES 0x00002000 /* retrieve settings */ |
| 66 | |
| 67 | /* FCGI connection state (fcgi_conn->state) */ |
| 68 | enum fcgi_conn_st { |
| 69 | FCGI_CS_INIT = 0, /* init done, waiting for sending GET_VALUES record */ |
| 70 | FCGI_CS_SETTINGS, /* GET_VALUES sent, waiting for the GET_VALUES_RESULT record */ |
| 71 | FCGI_CS_RECORD_H, /* GET_VALUES_RESULT received, waiting for a record header */ |
| 72 | FCGI_CS_RECORD_D, /* Record header OK, waiting for a record data */ |
| 73 | FCGI_CS_RECORD_P, /* Record processed, remains the padding */ |
| 74 | FCGI_CS_CLOSED, /* abort requests if necessary and close the connection ASAP */ |
| 75 | FCGI_CS_ENTRIES |
| 76 | } __attribute__((packed)); |
| 77 | |
| 78 | /* 32 buffers: one for the ring's root, rest for the mbuf itself */ |
| 79 | #define FCGI_C_MBUF_CNT 32 |
| 80 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 81 | /* Size for a record header (also size of empty record) */ |
| 82 | #define FCGI_RECORD_HEADER_SZ 8 |
| 83 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 84 | /* FCGI connection descriptor */ |
| 85 | struct fcgi_conn { |
| 86 | struct connection *conn; |
| 87 | |
| 88 | enum fcgi_conn_st state; /* FCGI connection state */ |
| 89 | int16_t max_id; /* highest ID known on this connection, <0 before mgmt records */ |
| 90 | uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */ |
| 91 | uint32_t flags; /* Connection flags: FCGI_CF_* */ |
| 92 | |
| 93 | int16_t dsi; /* dmux stream ID (<0 = idle ) */ |
| 94 | uint16_t drl; /* demux record length (if dsi >= 0) */ |
| 95 | uint8_t drt; /* demux record type (if dsi >= 0) */ |
| 96 | uint8_t drp; /* demux record padding (if dsi >= 0) */ |
| 97 | |
| 98 | struct buffer dbuf; /* demux buffer */ |
| 99 | struct buffer mbuf[FCGI_C_MBUF_CNT]; /* mux buffers (ring) */ |
| 100 | |
| 101 | int timeout; /* idle timeout duration in ticks */ |
| 102 | int shut_timeout; /* idle timeout duration in ticks after shutdown */ |
| 103 | unsigned int nb_streams; /* number of streams in the tree */ |
| 104 | unsigned int nb_cs; /* number of attached conn_streams */ |
| 105 | unsigned int nb_reserved; /* number of reserved streams */ |
| 106 | unsigned int stream_cnt; /* total number of streams seen */ |
| 107 | |
| 108 | struct proxy *proxy; /* the proxy this connection was created for */ |
| 109 | struct fcgi_app *app; /* FCGI application used by this mux */ |
| 110 | struct task *task; /* timeout management task */ |
| 111 | struct eb_root streams_by_id; /* all active streams by their ID */ |
| 112 | |
| 113 | struct list send_list; /* list of blocked streams requesting to send */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 114 | |
| 115 | struct buffer_wait buf_wait; /* Wait list for buffer allocation */ |
| 116 | struct wait_event wait_event; /* To be used if we're waiting for I/Os */ |
| 117 | }; |
| 118 | |
| 119 | |
| 120 | /* FCGI stream state, in fcgi_strm->state */ |
| 121 | enum fcgi_strm_st { |
| 122 | FCGI_SS_IDLE = 0, |
| 123 | FCGI_SS_OPEN, |
| 124 | FCGI_SS_HREM, // half-closed(remote) |
| 125 | FCGI_SS_HLOC, // half-closed(local) |
| 126 | FCGI_SS_ERROR, |
| 127 | FCGI_SS_CLOSED, |
| 128 | FCGI_SS_ENTRIES |
| 129 | } __attribute__((packed)); |
| 130 | |
| 131 | |
| 132 | /* FCGI stream flags (32 bits) */ |
| 133 | #define FCGI_SF_NONE 0x00000000 |
| 134 | #define FCGI_SF_ES_RCVD 0x00000001 /* end-of-stream received (empty STDOUT or EDN_REQUEST record) */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 135 | #define FCGI_SF_ES_SENT 0x00000002 /* end-of-stream sent (empty STDIN record) */ |
| 136 | #define FCGI_SF_EP_SENT 0x00000004 /* end-of-param sent (empty PARAMS record) */ |
| 137 | #define FCGI_SF_ABRT_SENT 0x00000008 /* abort sent (ABORT_REQUEST record) */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 138 | |
| 139 | /* Stream flags indicating the reason the stream is blocked */ |
| 140 | #define FCGI_SF_BLK_MBUSY 0x00000010 /* blocked waiting for mux access (transient) */ |
| 141 | #define FCGI_SF_BLK_MROOM 0x00000020 /* blocked waiting for room in the mux */ |
| 142 | #define FCGI_SF_BLK_ANY 0x00000030 /* any of the reasons above */ |
| 143 | |
| 144 | #define FCGI_SF_BEGIN_SENT 0x00000100 /* a BEGIN_REQUEST record was sent for this stream */ |
| 145 | #define FCGI_SF_OUTGOING_DATA 0x00000200 /* set whenever we've seen outgoing data */ |
Willy Tarreau | f11be0e | 2020-01-16 16:59:45 +0100 | [diff] [blame] | 146 | #define FCGI_SF_NOTIFIED 0x00000400 /* a paused stream was notified to try to send again */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 147 | |
| 148 | #define FCGI_SF_WANT_SHUTR 0x00001000 /* a stream couldn't shutr() (mux full/busy) */ |
| 149 | #define FCGI_SF_WANT_SHUTW 0x00002000 /* a stream couldn't shutw() (mux full/busy) */ |
| 150 | #define FCGI_SF_KILL_CONN 0x00004000 /* kill the whole connection with this stream */ |
| 151 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 152 | |
| 153 | /* FCGI stream descriptor */ |
| 154 | struct fcgi_strm { |
| 155 | struct conn_stream *cs; |
| 156 | struct session *sess; |
| 157 | struct fcgi_conn *fconn; |
| 158 | |
| 159 | int32_t id; /* stream ID */ |
| 160 | |
| 161 | uint32_t flags; /* Connection flags: FCGI_SF_* */ |
| 162 | enum fcgi_strm_st state; /* FCGI stream state */ |
| 163 | int proto_status; /* FCGI_PS_* */ |
| 164 | |
| 165 | struct h1m h1m; /* response parser state for H1 */ |
| 166 | |
| 167 | struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */ |
| 168 | |
| 169 | struct eb32_node by_id; /* place in fcgi_conn's streams_by_id */ |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 170 | struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 171 | struct list send_list; /* To be used when adding in fcgi_conn->send_list */ |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 172 | struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to close after we failed to by lack of space */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 173 | }; |
| 174 | |
| 175 | /* Flags representing all default FCGI parameters */ |
| 176 | #define FCGI_SP_CGI_GATEWAY 0x00000001 |
| 177 | #define FCGI_SP_DOC_ROOT 0x00000002 |
| 178 | #define FCGI_SP_SCRIPT_NAME 0x00000004 |
| 179 | #define FCGI_SP_PATH_INFO 0x00000008 |
| 180 | #define FCGI_SP_REQ_URI 0x00000010 |
| 181 | #define FCGI_SP_REQ_METH 0x00000020 |
| 182 | #define FCGI_SP_REQ_QS 0x00000040 |
| 183 | #define FCGI_SP_SRV_PORT 0x00000080 |
| 184 | #define FCGI_SP_SRV_PROTO 0x00000100 |
| 185 | #define FCGI_SP_SRV_NAME 0x00000200 |
| 186 | #define FCGI_SP_REM_ADDR 0x00000400 |
| 187 | #define FCGI_SP_REM_PORT 0x00000800 |
| 188 | #define FCGI_SP_SCRIPT_FILE 0x00001000 |
| 189 | #define FCGI_SP_PATH_TRANS 0x00002000 |
| 190 | #define FCGI_SP_CONT_LEN 0x00004000 |
| 191 | #define FCGI_SP_HTTPS 0x00008000 |
Christopher Faulet | b2a5029 | 2021-06-11 13:34:42 +0200 | [diff] [blame] | 192 | #define FCGI_SP_SRV_SOFT 0x00010000 |
| 193 | #define FCGI_SP_MASK 0x0001FFFF |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 194 | #define FCGI_SP_URI_MASK (FCGI_SP_SCRIPT_NAME|FCGI_SP_PATH_INFO|FCGI_SP_REQ_QS) |
| 195 | |
| 196 | /* FCGI parameters used when PARAMS record is sent */ |
| 197 | struct fcgi_strm_params { |
| 198 | uint32_t mask; |
| 199 | struct ist docroot; |
| 200 | struct ist scriptname; |
| 201 | struct ist pathinfo; |
| 202 | struct ist meth; |
| 203 | struct ist uri; |
| 204 | struct ist vsn; |
| 205 | struct ist qs; |
| 206 | struct ist srv_name; |
| 207 | struct ist srv_port; |
| 208 | struct ist rem_addr; |
| 209 | struct ist rem_port; |
| 210 | struct ist cont_len; |
Christopher Faulet | b2a5029 | 2021-06-11 13:34:42 +0200 | [diff] [blame] | 211 | struct ist srv_soft; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 212 | int https; |
| 213 | struct buffer *p; |
| 214 | }; |
| 215 | |
| 216 | /* Maximum amount of data we're OK with re-aligning for buffer optimizations */ |
| 217 | #define MAX_DATA_REALIGN 1024 |
| 218 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 219 | /* trace source and events */ |
| 220 | static void fcgi_trace(enum trace_level level, uint64_t mask, |
| 221 | const struct trace_source *src, |
| 222 | const struct ist where, const struct ist func, |
| 223 | const void *a1, const void *a2, const void *a3, const void *a4); |
| 224 | |
| 225 | /* The event representation is split like this : |
| 226 | * fconn - internal FCGI connection |
| 227 | * fstrm - internal FCGI stream |
| 228 | * strm - application layer |
| 229 | * rx - data receipt |
| 230 | * tx - data transmission |
| 231 | * rsp - response parsing |
| 232 | */ |
| 233 | static const struct trace_event fcgi_trace_events[] = { |
| 234 | #define FCGI_EV_FCONN_NEW (1ULL << 0) |
| 235 | { .mask = FCGI_EV_FCONN_NEW, .name = "fconn_new", .desc = "new FCGI connection" }, |
| 236 | #define FCGI_EV_FCONN_RECV (1ULL << 1) |
| 237 | { .mask = FCGI_EV_FCONN_RECV, .name = "fconn_recv", .desc = "Rx on FCGI connection" }, |
| 238 | #define FCGI_EV_FCONN_SEND (1ULL << 2) |
| 239 | { .mask = FCGI_EV_FCONN_SEND, .name = "fconn_send", .desc = "Tx on FCGI connection" }, |
| 240 | #define FCGI_EV_FCONN_BLK (1ULL << 3) |
| 241 | { .mask = FCGI_EV_FCONN_BLK, .name = "fconn_blk", .desc = "FCGI connection blocked" }, |
| 242 | #define FCGI_EV_FCONN_WAKE (1ULL << 4) |
| 243 | { .mask = FCGI_EV_FCONN_WAKE, .name = "fconn_wake", .desc = "FCGI connection woken up" }, |
| 244 | #define FCGI_EV_FCONN_END (1ULL << 5) |
| 245 | { .mask = FCGI_EV_FCONN_END, .name = "fconn_end", .desc = "FCGI connection terminated" }, |
| 246 | #define FCGI_EV_FCONN_ERR (1ULL << 6) |
| 247 | { .mask = FCGI_EV_FCONN_ERR, .name = "fconn_err", .desc = "error on FCGI connection" }, |
| 248 | |
| 249 | #define FCGI_EV_RX_FHDR (1ULL << 7) |
| 250 | { .mask = FCGI_EV_RX_FHDR, .name = "rx_fhdr", .desc = "FCGI record header received" }, |
| 251 | #define FCGI_EV_RX_RECORD (1ULL << 8) |
| 252 | { .mask = FCGI_EV_RX_RECORD, .name = "rx_record", .desc = "receipt of any FCGI record" }, |
| 253 | #define FCGI_EV_RX_EOI (1ULL << 9) |
| 254 | { .mask = FCGI_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of FCGI input" }, |
| 255 | #define FCGI_EV_RX_GETVAL (1ULL << 10) |
| 256 | { .mask = FCGI_EV_RX_GETVAL, .name = "rx_get_values", .desc = "receipt of FCGI GET_VALUES_RESULT record" }, |
| 257 | #define FCGI_EV_RX_STDOUT (1ULL << 11) |
| 258 | { .mask = FCGI_EV_RX_STDOUT, .name = "rx_stdout", .desc = "receipt of FCGI STDOUT record" }, |
| 259 | #define FCGI_EV_RX_STDERR (1ULL << 12) |
| 260 | { .mask = FCGI_EV_RX_STDERR, .name = "rx_stderr", .desc = "receipt of FCGI STDERR record" }, |
| 261 | #define FCGI_EV_RX_ENDREQ (1ULL << 13) |
| 262 | { .mask = FCGI_EV_RX_ENDREQ, .name = "rx_end_req", .desc = "receipt of FCGI END_REQUEST record" }, |
| 263 | |
| 264 | #define FCGI_EV_TX_RECORD (1ULL << 14) |
| 265 | { .mask = FCGI_EV_TX_RECORD, .name = "tx_record", .desc = "transmission of any FCGI record" }, |
| 266 | #define FCGI_EV_TX_EOI (1ULL << 15) |
| 267 | { .mask = FCGI_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of FCGI end of input" }, |
| 268 | #define FCGI_EV_TX_BEGREQ (1ULL << 16) |
| 269 | { .mask = FCGI_EV_TX_BEGREQ, .name = "tx_begin_request", .desc = "transmission of FCGI BEGIN_REQUEST record" }, |
| 270 | #define FCGI_EV_TX_GETVAL (1ULL << 17) |
| 271 | { .mask = FCGI_EV_TX_GETVAL, .name = "tx_get_values", .desc = "transmission of FCGI GET_VALUES record" }, |
| 272 | #define FCGI_EV_TX_PARAMS (1ULL << 18) |
| 273 | { .mask = FCGI_EV_TX_PARAMS, .name = "tx_params", .desc = "transmission of FCGI PARAMS record" }, |
| 274 | #define FCGI_EV_TX_STDIN (1ULL << 19) |
| 275 | { .mask = FCGI_EV_TX_STDIN, .name = "tx_stding", .desc = "transmission of FCGI STDIN record" }, |
| 276 | #define FCGI_EV_TX_ABORT (1ULL << 20) |
| 277 | { .mask = FCGI_EV_TX_ABORT, .name = "tx_abort", .desc = "transmission of FCGI ABORT record" }, |
| 278 | |
| 279 | #define FCGI_EV_RSP_DATA (1ULL << 21) |
| 280 | { .mask = FCGI_EV_RSP_DATA, .name = "rsp_data", .desc = "parse any data of H1 response" }, |
| 281 | #define FCGI_EV_RSP_EOM (1ULL << 22) |
| 282 | { .mask = FCGI_EV_RSP_EOM, .name = "rsp_eom", .desc = "reach the end of message of H1 response" }, |
| 283 | #define FCGI_EV_RSP_HDRS (1ULL << 23) |
| 284 | { .mask = FCGI_EV_RSP_HDRS, .name = "rsp_headers", .desc = "parse headers of H1 response" }, |
| 285 | #define FCGI_EV_RSP_BODY (1ULL << 24) |
| 286 | { .mask = FCGI_EV_RSP_BODY, .name = "rsp_body", .desc = "parse body part of H1 response" }, |
| 287 | #define FCGI_EV_RSP_TLRS (1ULL << 25) |
| 288 | { .mask = FCGI_EV_RSP_TLRS, .name = "rsp_trailerus", .desc = "parse trailers of H1 response" }, |
| 289 | |
| 290 | #define FCGI_EV_FSTRM_NEW (1ULL << 26) |
| 291 | { .mask = FCGI_EV_FSTRM_NEW, .name = "fstrm_new", .desc = "new FCGI stream" }, |
| 292 | #define FCGI_EV_FSTRM_BLK (1ULL << 27) |
| 293 | { .mask = FCGI_EV_FSTRM_BLK, .name = "fstrm_blk", .desc = "FCGI stream blocked" }, |
| 294 | #define FCGI_EV_FSTRM_END (1ULL << 28) |
| 295 | { .mask = FCGI_EV_FSTRM_END, .name = "fstrm_end", .desc = "FCGI stream terminated" }, |
| 296 | #define FCGI_EV_FSTRM_ERR (1ULL << 29) |
| 297 | { .mask = FCGI_EV_FSTRM_ERR, .name = "fstrm_err", .desc = "error on FCGI stream" }, |
| 298 | |
| 299 | #define FCGI_EV_STRM_NEW (1ULL << 30) |
| 300 | { .mask = FCGI_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" }, |
| 301 | #define FCGI_EV_STRM_RECV (1ULL << 31) |
| 302 | { .mask = FCGI_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" }, |
| 303 | #define FCGI_EV_STRM_SEND (1ULL << 32) |
| 304 | { .mask = FCGI_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" }, |
| 305 | #define FCGI_EV_STRM_FULL (1ULL << 33) |
| 306 | { .mask = FCGI_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" }, |
| 307 | #define FCGI_EV_STRM_WAKE (1ULL << 34) |
| 308 | { .mask = FCGI_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" }, |
| 309 | #define FCGI_EV_STRM_SHUT (1ULL << 35) |
| 310 | { .mask = FCGI_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" }, |
| 311 | #define FCGI_EV_STRM_END (1ULL << 36) |
| 312 | { .mask = FCGI_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" }, |
| 313 | #define FCGI_EV_STRM_ERR (1ULL << 37) |
| 314 | { .mask = FCGI_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" }, |
| 315 | |
| 316 | { } |
| 317 | }; |
| 318 | |
| 319 | static const struct name_desc fcgi_trace_lockon_args[4] = { |
| 320 | /* arg1 */ { /* already used by the connection */ }, |
| 321 | /* arg2 */ { .name="fstrm", .desc="FCGI stream" }, |
| 322 | /* arg3 */ { }, |
| 323 | /* arg4 */ { } |
| 324 | }; |
| 325 | |
| 326 | |
| 327 | static const struct name_desc fcgi_trace_decoding[] = { |
| 328 | #define FCGI_VERB_CLEAN 1 |
| 329 | { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" }, |
| 330 | #define FCGI_VERB_MINIMAL 2 |
| 331 | { .name="minimal", .desc="report only fconn/fstrm state and flags, no real decoding" }, |
| 332 | #define FCGI_VERB_SIMPLE 3 |
| 333 | { .name="simple", .desc="add request/response status line or htx info when available" }, |
| 334 | #define FCGI_VERB_ADVANCED 4 |
| 335 | { .name="advanced", .desc="add header fields or record decoding when available" }, |
| 336 | #define FCGI_VERB_COMPLETE 5 |
| 337 | { .name="complete", .desc="add full data dump when available" }, |
| 338 | { /* end */ } |
| 339 | }; |
| 340 | |
Willy Tarreau | 6eb3d37 | 2021-04-10 19:29:26 +0200 | [diff] [blame] | 341 | static struct trace_source trace_fcgi __read_mostly = { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 342 | .name = IST("fcgi"), |
| 343 | .desc = "FastCGI multiplexer", |
| 344 | .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection |
| 345 | .default_cb = fcgi_trace, |
| 346 | .known_events = fcgi_trace_events, |
| 347 | .lockon_args = fcgi_trace_lockon_args, |
| 348 | .decoding = fcgi_trace_decoding, |
| 349 | .report_events = ~0, // report everything by default |
| 350 | }; |
| 351 | |
| 352 | #define TRACE_SOURCE &trace_fcgi |
| 353 | INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE); |
| 354 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 355 | /* FCGI connection and stream pools */ |
| 356 | DECLARE_STATIC_POOL(pool_head_fcgi_conn, "fcgi_conn", sizeof(struct fcgi_conn)); |
| 357 | DECLARE_STATIC_POOL(pool_head_fcgi_strm, "fcgi_strm", sizeof(struct fcgi_strm)); |
| 358 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 359 | struct task *fcgi_timeout_task(struct task *t, void *context, unsigned int state); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 360 | static int fcgi_process(struct fcgi_conn *fconn); |
Willy Tarreau | 691d503 | 2021-01-20 14:55:01 +0100 | [diff] [blame] | 361 | /* fcgi_io_cb is exported to see it resolved in "show fd" */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 362 | struct task *fcgi_io_cb(struct task *t, void *ctx, unsigned int state); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 363 | static inline struct fcgi_strm *fcgi_conn_st_by_id(struct fcgi_conn *fconn, int id); |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 364 | struct task *fcgi_deferred_shut(struct task *t, void *ctx, unsigned int state); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 365 | static struct fcgi_strm *fcgi_conn_stream_new(struct fcgi_conn *fconn, struct conn_stream *cs, struct session *sess); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 366 | static void fcgi_strm_notify_recv(struct fcgi_strm *fstrm); |
| 367 | static void fcgi_strm_notify_send(struct fcgi_strm *fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 368 | static void fcgi_strm_alert(struct fcgi_strm *fstrm); |
| 369 | static int fcgi_strm_send_abort(struct fcgi_conn *fconn, struct fcgi_strm *fstrm); |
| 370 | |
| 371 | /* a dmumy management stream */ |
| 372 | static const struct fcgi_strm *fcgi_mgmt_stream = &(const struct fcgi_strm){ |
| 373 | .cs = NULL, |
| 374 | .fconn = NULL, |
| 375 | .state = FCGI_SS_CLOSED, |
| 376 | .flags = FCGI_SF_NONE, |
| 377 | .id = 0, |
| 378 | }; |
| 379 | |
| 380 | /* and a dummy idle stream for use with any unknown stream */ |
| 381 | static const struct fcgi_strm *fcgi_unknown_stream = &(const struct fcgi_strm){ |
| 382 | .cs = NULL, |
| 383 | .fconn = NULL, |
| 384 | .state = FCGI_SS_IDLE, |
| 385 | .flags = FCGI_SF_NONE, |
| 386 | .id = 0, |
| 387 | }; |
| 388 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 389 | /* returns a fconn state as an abbreviated 3-letter string, or "???" if unknown */ |
| 390 | static inline const char *fconn_st_to_str(enum fcgi_conn_st st) |
| 391 | { |
| 392 | switch (st) { |
| 393 | case FCGI_CS_INIT : return "INI"; |
| 394 | case FCGI_CS_SETTINGS : return "STG"; |
| 395 | case FCGI_CS_RECORD_H : return "RDH"; |
| 396 | case FCGI_CS_RECORD_D : return "RDD"; |
| 397 | case FCGI_CS_RECORD_P : return "RDP"; |
| 398 | case FCGI_CS_CLOSED : return "CLO"; |
| 399 | default : return "???"; |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | /* returns a fstrm state as an abbreviated 3-letter string, or "???" if unknown */ |
| 404 | static inline const char *fstrm_st_to_str(enum fcgi_strm_st st) |
| 405 | { |
| 406 | switch (st) { |
| 407 | case FCGI_SS_IDLE : return "IDL"; |
| 408 | case FCGI_SS_OPEN : return "OPN"; |
| 409 | case FCGI_SS_HREM : return "RCL"; |
| 410 | case FCGI_SS_HLOC : return "HCL"; |
| 411 | case FCGI_SS_ERROR : return "ERR"; |
| 412 | case FCGI_SS_CLOSED : return "CLO"; |
| 413 | default : return "???"; |
| 414 | } |
| 415 | } |
| 416 | |
| 417 | |
| 418 | /* the FCGI traces always expect that arg1, if non-null, is of type connection |
| 419 | * (from which we can derive fconn), that arg2, if non-null, is of type fstrm, |
| 420 | * and that arg3, if non-null, is a htx for rx/tx headers. |
| 421 | */ |
| 422 | static void fcgi_trace(enum trace_level level, uint64_t mask, const struct trace_source *src, |
| 423 | const struct ist where, const struct ist func, |
| 424 | const void *a1, const void *a2, const void *a3, const void *a4) |
| 425 | { |
| 426 | const struct connection *conn = a1; |
| 427 | const struct fcgi_conn *fconn = conn ? conn->ctx : NULL; |
| 428 | const struct fcgi_strm *fstrm = a2; |
| 429 | const struct htx *htx = a3; |
| 430 | const size_t *val = a4; |
| 431 | |
| 432 | if (!fconn) |
| 433 | fconn = (fstrm ? fstrm->fconn : NULL); |
| 434 | |
| 435 | if (!fconn || src->verbosity < FCGI_VERB_CLEAN) |
| 436 | return; |
| 437 | |
| 438 | /* Display the response state if fstrm is defined */ |
| 439 | if (fstrm) |
| 440 | chunk_appendf(&trace_buf, " [rsp:%s]", h1m_state_str(fstrm->h1m.state)); |
| 441 | |
| 442 | if (src->verbosity == FCGI_VERB_CLEAN) |
| 443 | return; |
| 444 | |
| 445 | /* Display the value to the 4th argument (level > STATE) */ |
| 446 | if (src->level > TRACE_LEVEL_STATE && val) |
Willy Tarreau | e18f53e | 2019-11-27 15:41:31 +0100 | [diff] [blame] | 447 | chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 448 | |
| 449 | /* Display status-line if possible (verbosity > MINIMAL) */ |
| 450 | if (src->verbosity > FCGI_VERB_MINIMAL && htx && htx_nbblks(htx)) { |
| 451 | const struct htx_blk *blk = htx_get_head_blk(htx); |
| 452 | const struct htx_sl *sl = htx_get_blk_ptr(htx, blk); |
| 453 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 454 | |
| 455 | if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL) |
| 456 | chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"", |
| 457 | HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl), |
| 458 | HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl), |
| 459 | HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl)); |
| 460 | } |
| 461 | |
| 462 | /* Display fconn info and, if defined, fstrm info */ |
| 463 | chunk_appendf(&trace_buf, " - fconn=%p(%s,0x%08x)", fconn, fconn_st_to_str(fconn->state), fconn->flags); |
| 464 | if (fstrm) |
| 465 | chunk_appendf(&trace_buf, " fstrm=%p(%d,%s,0x%08x)", fstrm, fstrm->id, fstrm_st_to_str(fstrm->state), fstrm->flags); |
| 466 | |
| 467 | if (!fstrm || fstrm->id <= 0) |
| 468 | chunk_appendf(&trace_buf, " dsi=%d", fconn->dsi); |
| 469 | if (fconn->dsi >= 0 && (mask & FCGI_EV_RX_FHDR)) |
| 470 | chunk_appendf(&trace_buf, " drt=%s", fcgi_rt_str(fconn->drt)); |
| 471 | |
| 472 | if (src->verbosity == FCGI_VERB_MINIMAL) |
| 473 | return; |
| 474 | |
| 475 | /* Display mbuf and dbuf info (level > USER & verbosity > SIMPLE) */ |
| 476 | if (src->level > TRACE_LEVEL_USER) { |
| 477 | if (src->verbosity == FCGI_VERB_COMPLETE || |
| 478 | (src->verbosity == FCGI_VERB_ADVANCED && (mask & (FCGI_EV_FCONN_RECV|FCGI_EV_RX_RECORD)))) |
| 479 | chunk_appendf(&trace_buf, " dbuf=%u@%p+%u/%u", |
| 480 | (unsigned int)b_data(&fconn->dbuf), b_orig(&fconn->dbuf), |
| 481 | (unsigned int)b_head_ofs(&fconn->dbuf), (unsigned int)b_size(&fconn->dbuf)); |
| 482 | if (src->verbosity == FCGI_VERB_COMPLETE || |
| 483 | (src->verbosity == FCGI_VERB_ADVANCED && (mask & (FCGI_EV_FCONN_SEND|FCGI_EV_TX_RECORD)))) { |
| 484 | struct buffer *hmbuf = br_head((struct buffer *)fconn->mbuf); |
| 485 | struct buffer *tmbuf = br_tail((struct buffer *)fconn->mbuf); |
| 486 | |
| 487 | chunk_appendf(&trace_buf, " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]", |
| 488 | br_head_idx(fconn->mbuf), br_tail_idx(fconn->mbuf), br_size(fconn->mbuf), |
| 489 | (unsigned int)b_data(hmbuf), b_orig(hmbuf), |
| 490 | (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf), |
| 491 | (unsigned int)b_data(tmbuf), b_orig(tmbuf), |
| 492 | (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf)); |
| 493 | } |
| 494 | |
| 495 | if (fstrm && (src->verbosity == FCGI_VERB_COMPLETE || |
| 496 | (src->verbosity == FCGI_VERB_ADVANCED && (mask & (FCGI_EV_STRM_RECV|FCGI_EV_RSP_DATA))))) |
| 497 | chunk_appendf(&trace_buf, " rxbuf=%u@%p+%u/%u", |
| 498 | (unsigned int)b_data(&fstrm->rxbuf), b_orig(&fstrm->rxbuf), |
| 499 | (unsigned int)b_head_ofs(&fstrm->rxbuf), (unsigned int)b_size(&fstrm->rxbuf)); |
| 500 | } |
| 501 | |
| 502 | /* Display htx info if defined (level > USER) */ |
| 503 | if (src->level > TRACE_LEVEL_USER && htx) { |
| 504 | int full = 0; |
| 505 | |
| 506 | /* Full htx info (level > STATE && verbosity > SIMPLE) */ |
| 507 | if (src->level > TRACE_LEVEL_STATE) { |
| 508 | if (src->verbosity == FCGI_VERB_COMPLETE) |
| 509 | full = 1; |
| 510 | else if (src->verbosity == FCGI_VERB_ADVANCED && (mask & (FCGI_EV_RSP_HDRS|FCGI_EV_TX_PARAMS))) |
| 511 | full = 1; |
| 512 | } |
| 513 | |
| 514 | chunk_memcat(&trace_buf, "\n\t", 2); |
| 515 | htx_dump(&trace_buf, htx, full); |
| 516 | } |
| 517 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 518 | |
| 519 | /*****************************************************/ |
| 520 | /* functions below are for dynamic buffer management */ |
| 521 | /*****************************************************/ |
| 522 | |
| 523 | /* Indicates whether or not the we may call the fcgi_recv() function to attempt |
| 524 | * to receive data into the buffer and/or demux pending data. The condition is |
| 525 | * a bit complex due to some API limits for now. The rules are the following : |
| 526 | * - if an error or a shutdown was detected on the connection and the buffer |
| 527 | * is empty, we must not attempt to receive |
| 528 | * - if the demux buf failed to be allocated, we must not try to receive and |
| 529 | * we know there is nothing pending |
| 530 | * - if no flag indicates a blocking condition, we may attempt to receive, |
| 531 | * regardless of whether the demux buffer is full or not, so that only |
| 532 | * de demux part decides whether or not to block. This is needed because |
| 533 | * the connection API indeed prevents us from re-enabling receipt that is |
| 534 | * already enabled in a polled state, so we must always immediately stop |
| 535 | * as soon as the demux can't proceed so as never to hit an end of read |
| 536 | * with data pending in the buffers. |
| 537 | * - otherwise must may not attempt |
| 538 | */ |
| 539 | static inline int fcgi_recv_allowed(const struct fcgi_conn *fconn) |
| 540 | { |
| 541 | if (b_data(&fconn->dbuf) == 0 && |
| 542 | (fconn->state == FCGI_CS_CLOSED || |
| 543 | fconn->conn->flags & CO_FL_ERROR || |
| 544 | conn_xprt_read0_pending(fconn->conn))) |
| 545 | return 0; |
| 546 | |
| 547 | if (!(fconn->flags & FCGI_CF_DEM_DALLOC) && |
| 548 | !(fconn->flags & FCGI_CF_DEM_BLOCK_ANY)) |
| 549 | return 1; |
| 550 | |
| 551 | return 0; |
| 552 | } |
| 553 | |
| 554 | /* Restarts reading on the connection if it was not enabled */ |
| 555 | static inline void fcgi_conn_restart_reading(const struct fcgi_conn *fconn, int consider_buffer) |
| 556 | { |
| 557 | if (!fcgi_recv_allowed(fconn)) |
| 558 | return; |
| 559 | if ((!consider_buffer || !b_data(&fconn->dbuf)) && |
| 560 | (fconn->wait_event.events & SUB_RETRY_RECV)) |
| 561 | return; |
| 562 | tasklet_wakeup(fconn->wait_event.tasklet); |
| 563 | } |
| 564 | |
| 565 | |
| 566 | /* Tries to grab a buffer and to re-enable processing on mux <target>. The |
| 567 | * fcgi_conn flags are used to figure what buffer was requested. It returns 1 if |
| 568 | * the allocation succeeds, in which case the connection is woken up, or 0 if |
| 569 | * it's impossible to wake up and we prefer to be woken up later. |
| 570 | */ |
| 571 | static int fcgi_buf_available(void *target) |
| 572 | { |
| 573 | struct fcgi_conn *fconn = target; |
| 574 | struct fcgi_strm *fstrm; |
| 575 | |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 576 | if ((fconn->flags & FCGI_CF_DEM_DALLOC) && b_alloc(&fconn->dbuf)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 577 | TRACE_STATE("unblocking fconn, dbuf allocated", FCGI_EV_FCONN_RECV|FCGI_EV_FCONN_BLK|FCGI_EV_FCONN_WAKE, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 578 | fconn->flags &= ~FCGI_CF_DEM_DALLOC; |
| 579 | fcgi_conn_restart_reading(fconn, 1); |
| 580 | return 1; |
| 581 | } |
| 582 | |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 583 | if ((fconn->flags & FCGI_CF_MUX_MALLOC) && b_alloc(br_tail(fconn->mbuf))) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 584 | TRACE_STATE("unblocking fconn, mbuf allocated", FCGI_EV_FCONN_SEND|FCGI_EV_FCONN_BLK|FCGI_EV_FCONN_WAKE, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 585 | fconn->flags &= ~FCGI_CF_MUX_MALLOC; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 586 | if (fconn->flags & FCGI_CF_DEM_MROOM) { |
| 587 | fconn->flags &= ~FCGI_CF_DEM_MROOM; |
| 588 | fcgi_conn_restart_reading(fconn, 1); |
| 589 | } |
| 590 | return 1; |
| 591 | } |
| 592 | |
| 593 | if ((fconn->flags & FCGI_CF_DEM_SALLOC) && |
| 594 | (fstrm = fcgi_conn_st_by_id(fconn, fconn->dsi)) && fstrm->cs && |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 595 | b_alloc(&fstrm->rxbuf)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 596 | TRACE_STATE("unblocking fstrm, rxbuf allocated", FCGI_EV_STRM_RECV|FCGI_EV_FSTRM_BLK|FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 597 | fconn->flags &= ~FCGI_CF_DEM_SALLOC; |
| 598 | fcgi_conn_restart_reading(fconn, 1); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 599 | fcgi_strm_notify_recv(fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 600 | return 1; |
| 601 | } |
| 602 | |
| 603 | return 0; |
| 604 | } |
| 605 | |
| 606 | static inline struct buffer *fcgi_get_buf(struct fcgi_conn *fconn, struct buffer *bptr) |
| 607 | { |
| 608 | struct buffer *buf = NULL; |
| 609 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 610 | if (likely(!LIST_INLIST(&fconn->buf_wait.list)) && |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 611 | unlikely((buf = b_alloc(bptr)) == NULL)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 612 | fconn->buf_wait.target = fconn; |
| 613 | fconn->buf_wait.wakeup_cb = fcgi_buf_available; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 614 | LIST_APPEND(&ti->buffer_wq, &fconn->buf_wait.list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 615 | } |
| 616 | return buf; |
| 617 | } |
| 618 | |
| 619 | static inline void fcgi_release_buf(struct fcgi_conn *fconn, struct buffer *bptr) |
| 620 | { |
| 621 | if (bptr->size) { |
| 622 | b_free(bptr); |
Willy Tarreau | 4d77bbf | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 623 | offer_buffers(NULL, 1); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 624 | } |
| 625 | } |
| 626 | |
| 627 | static inline void fcgi_release_mbuf(struct fcgi_conn *fconn) |
| 628 | { |
| 629 | struct buffer *buf; |
| 630 | unsigned int count = 0; |
| 631 | |
| 632 | while (b_size(buf = br_head_pick(fconn->mbuf))) { |
| 633 | b_free(buf); |
| 634 | count++; |
| 635 | } |
| 636 | if (count) |
Willy Tarreau | 4d77bbf | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 637 | offer_buffers(NULL, count); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | /* Returns the number of allocatable outgoing streams for the connection taking |
| 641 | * the number reserved streams into account. |
| 642 | */ |
| 643 | static inline int fcgi_streams_left(const struct fcgi_conn *fconn) |
| 644 | { |
| 645 | int ret; |
| 646 | |
| 647 | ret = (unsigned int)(0x7FFF - fconn->max_id) - fconn->nb_reserved - 1; |
| 648 | if (ret < 0) |
| 649 | ret = 0; |
| 650 | return ret; |
| 651 | } |
| 652 | |
| 653 | /* Returns the number of streams in use on a connection to figure if it's |
| 654 | * idle or not. We check nb_cs and not nb_streams as the caller will want |
| 655 | * to know if it was the last one after a detach(). |
| 656 | */ |
| 657 | static int fcgi_used_streams(struct connection *conn) |
| 658 | { |
| 659 | struct fcgi_conn *fconn = conn->ctx; |
| 660 | |
| 661 | return fconn->nb_cs; |
| 662 | } |
| 663 | |
| 664 | /* Returns the number of concurrent streams available on the connection */ |
| 665 | static int fcgi_avail_streams(struct connection *conn) |
| 666 | { |
| 667 | struct server *srv = objt_server(conn->target); |
| 668 | struct fcgi_conn *fconn = conn->ctx; |
| 669 | int ret1, ret2; |
| 670 | |
| 671 | /* Don't open new stream if the connection is closed */ |
| 672 | if (fconn->state == FCGI_CS_CLOSED) |
| 673 | return 0; |
| 674 | |
| 675 | /* May be negative if this setting has changed */ |
| 676 | ret1 = (fconn->streams_limit - fconn->nb_streams); |
| 677 | |
| 678 | /* we must also consider the limit imposed by stream IDs */ |
| 679 | ret2 = fcgi_streams_left(fconn); |
| 680 | ret1 = MIN(ret1, ret2); |
| 681 | if (ret1 > 0 && srv && srv->max_reuse >= 0) { |
| 682 | ret2 = ((fconn->stream_cnt <= srv->max_reuse) ? srv->max_reuse - fconn->stream_cnt + 1: 0); |
| 683 | ret1 = MIN(ret1, ret2); |
| 684 | } |
| 685 | return ret1; |
| 686 | } |
| 687 | |
| 688 | /*****************************************************************/ |
| 689 | /* functions below are dedicated to the mux setup and management */ |
| 690 | /*****************************************************************/ |
| 691 | |
| 692 | /* Initializes the mux once it's attached. Only outgoing connections are |
| 693 | * supported. So the context is already initialized before installing the |
| 694 | * mux. <input> is always used as Input buffer and may contain data. It is the |
| 695 | * caller responsibility to not reuse it anymore. Returns < 0 on error. |
| 696 | */ |
| 697 | static int fcgi_init(struct connection *conn, struct proxy *px, struct session *sess, |
| 698 | struct buffer *input) |
| 699 | { |
| 700 | struct fcgi_conn *fconn; |
| 701 | struct fcgi_strm *fstrm; |
| 702 | struct fcgi_app *app = get_px_fcgi_app(px); |
| 703 | struct task *t = NULL; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 704 | void *conn_ctx = conn->ctx; |
| 705 | |
| 706 | TRACE_ENTER(FCGI_EV_FSTRM_NEW); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 707 | |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 708 | if (!app) { |
| 709 | TRACE_ERROR("No FCGI app found, don't create fconn", FCGI_EV_FCONN_NEW|FCGI_EV_FCONN_END|FCGI_EV_FCONN_ERR); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 710 | goto fail_conn; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 711 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 712 | |
| 713 | fconn = pool_alloc(pool_head_fcgi_conn); |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 714 | if (!fconn) { |
| 715 | TRACE_ERROR("fconn allocation failure", FCGI_EV_FCONN_NEW|FCGI_EV_FCONN_END|FCGI_EV_FCONN_ERR); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 716 | goto fail_conn; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 717 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 718 | |
| 719 | fconn->shut_timeout = fconn->timeout = px->timeout.server; |
| 720 | if (tick_isset(px->timeout.serverfin)) |
| 721 | fconn->shut_timeout = px->timeout.serverfin; |
| 722 | |
| 723 | fconn->flags = FCGI_CF_NONE; |
| 724 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 725 | /* Retrieve useful info from the FCGI app */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 726 | if (app->flags & FCGI_APP_FL_KEEP_CONN) |
| 727 | fconn->flags |= FCGI_CF_KEEP_CONN; |
| 728 | if (app->flags & FCGI_APP_FL_GET_VALUES) |
| 729 | fconn->flags |= FCGI_CF_GET_VALUES; |
| 730 | if (app->flags & FCGI_APP_FL_MPXS_CONNS) |
| 731 | fconn->flags |= FCGI_CF_MPXS_CONNS; |
| 732 | |
| 733 | fconn->proxy = px; |
| 734 | fconn->app = app; |
| 735 | fconn->task = NULL; |
| 736 | if (tick_isset(fconn->timeout)) { |
| 737 | t = task_new(tid_bit); |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 738 | if (!t) { |
| 739 | TRACE_ERROR("fconn task allocation failure", FCGI_EV_FCONN_NEW|FCGI_EV_FCONN_END|FCGI_EV_FCONN_ERR); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 740 | goto fail; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 741 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 742 | |
| 743 | fconn->task = t; |
| 744 | t->process = fcgi_timeout_task; |
| 745 | t->context = fconn; |
| 746 | t->expire = tick_add(now_ms, fconn->timeout); |
| 747 | } |
| 748 | |
| 749 | fconn->wait_event.tasklet = tasklet_new(); |
| 750 | if (!fconn->wait_event.tasklet) |
| 751 | goto fail; |
| 752 | fconn->wait_event.tasklet->process = fcgi_io_cb; |
| 753 | fconn->wait_event.tasklet->context = fconn; |
| 754 | fconn->wait_event.events = 0; |
| 755 | |
| 756 | /* Initialise the context. */ |
| 757 | fconn->state = FCGI_CS_INIT; |
| 758 | fconn->conn = conn; |
| 759 | fconn->streams_limit = app->maxreqs; |
| 760 | fconn->max_id = -1; |
| 761 | fconn->nb_streams = 0; |
| 762 | fconn->nb_cs = 0; |
| 763 | fconn->nb_reserved = 0; |
| 764 | fconn->stream_cnt = 0; |
| 765 | |
| 766 | fconn->dbuf = *input; |
| 767 | fconn->dsi = -1; |
| 768 | |
| 769 | br_init(fconn->mbuf, sizeof(fconn->mbuf) / sizeof(fconn->mbuf[0])); |
| 770 | fconn->streams_by_id = EB_ROOT; |
| 771 | LIST_INIT(&fconn->send_list); |
Willy Tarreau | 90f366b | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 772 | LIST_INIT(&fconn->buf_wait.list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 773 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 774 | conn->ctx = fconn; |
| 775 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 776 | if (t) |
| 777 | task_queue(t); |
| 778 | |
| 779 | /* FIXME: this is temporary, for outgoing connections we need to |
| 780 | * immediately allocate a stream until the code is modified so that the |
| 781 | * caller calls ->attach(). For now the outgoing cs is stored as |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 782 | * conn->ctx by the caller and saved in conn_ctx. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 783 | */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 784 | fstrm = fcgi_conn_stream_new(fconn, conn_ctx, sess); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 785 | if (!fstrm) |
| 786 | goto fail; |
| 787 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 788 | |
| 789 | /* Repare to read something */ |
| 790 | fcgi_conn_restart_reading(fconn, 1); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 791 | TRACE_LEAVE(FCGI_EV_FCONN_NEW, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 792 | return 0; |
| 793 | |
| 794 | fail: |
| 795 | task_destroy(t); |
| 796 | if (fconn->wait_event.tasklet) |
| 797 | tasklet_free(fconn->wait_event.tasklet); |
| 798 | pool_free(pool_head_fcgi_conn, fconn); |
| 799 | fail_conn: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 800 | conn->ctx = conn_ctx; // restore saved ctx |
| 801 | TRACE_DEVEL("leaving in error", FCGI_EV_FCONN_NEW|FCGI_EV_FCONN_END|FCGI_EV_FCONN_ERR); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 802 | return -1; |
| 803 | } |
| 804 | |
| 805 | /* Returns the next allocatable outgoing stream ID for the FCGI connection, or |
| 806 | * -1 if no more is allocatable. |
| 807 | */ |
| 808 | static inline int32_t fcgi_conn_get_next_sid(const struct fcgi_conn *fconn) |
| 809 | { |
| 810 | int32_t id = (fconn->max_id + 1) | 1; |
| 811 | |
| 812 | if ((id & 0x80000000U)) |
| 813 | id = -1; |
| 814 | return id; |
| 815 | } |
| 816 | |
| 817 | /* Returns the stream associated with id <id> or NULL if not found */ |
| 818 | static inline struct fcgi_strm *fcgi_conn_st_by_id(struct fcgi_conn *fconn, int id) |
| 819 | { |
| 820 | struct eb32_node *node; |
| 821 | |
| 822 | if (id == 0) |
| 823 | return (struct fcgi_strm *)fcgi_mgmt_stream; |
| 824 | |
| 825 | if (id > fconn->max_id) |
| 826 | return (struct fcgi_strm *)fcgi_unknown_stream; |
| 827 | |
| 828 | node = eb32_lookup(&fconn->streams_by_id, id); |
| 829 | if (!node) |
| 830 | return (struct fcgi_strm *)fcgi_unknown_stream; |
| 831 | return container_of(node, struct fcgi_strm, by_id); |
| 832 | } |
| 833 | |
| 834 | |
| 835 | /* Release function. This one should be called to free all resources allocated |
| 836 | * to the mux. |
| 837 | */ |
| 838 | static void fcgi_release(struct fcgi_conn *fconn) |
| 839 | { |
William Dauchy | 477757c | 2020-08-07 22:19:23 +0200 | [diff] [blame] | 840 | struct connection *conn = NULL; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 841 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 842 | TRACE_POINT(FCGI_EV_FCONN_END); |
| 843 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 844 | if (fconn) { |
| 845 | /* The connection must be attached to this mux to be released */ |
| 846 | if (fconn->conn && fconn->conn->ctx == fconn) |
| 847 | conn = fconn->conn; |
| 848 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 849 | TRACE_DEVEL("freeing fconn", FCGI_EV_FCONN_END, conn); |
| 850 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 851 | if (LIST_INLIST(&fconn->buf_wait.list)) |
Willy Tarreau | 90f366b | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 852 | LIST_DEL_INIT(&fconn->buf_wait.list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 853 | |
| 854 | fcgi_release_buf(fconn, &fconn->dbuf); |
| 855 | fcgi_release_mbuf(fconn); |
| 856 | |
| 857 | if (fconn->task) { |
| 858 | fconn->task->context = NULL; |
| 859 | task_wakeup(fconn->task, TASK_WOKEN_OTHER); |
| 860 | fconn->task = NULL; |
| 861 | } |
| 862 | if (fconn->wait_event.tasklet) |
| 863 | tasklet_free(fconn->wait_event.tasklet); |
Christopher Faulet | a99db93 | 2019-09-18 11:11:46 +0200 | [diff] [blame] | 864 | if (conn && fconn->wait_event.events != 0) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 865 | conn->xprt->unsubscribe(conn, conn->xprt_ctx, fconn->wait_event.events, |
| 866 | &fconn->wait_event); |
Christopher Faulet | 8694f25 | 2020-05-02 09:17:52 +0200 | [diff] [blame] | 867 | |
| 868 | pool_free(pool_head_fcgi_conn, fconn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | if (conn) { |
| 872 | conn->mux = NULL; |
| 873 | conn->ctx = NULL; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 874 | TRACE_DEVEL("freeing conn", FCGI_EV_FCONN_END, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 875 | |
| 876 | conn_stop_tracking(conn); |
| 877 | conn_full_close(conn); |
| 878 | if (conn->destroy_cb) |
| 879 | conn->destroy_cb(conn); |
| 880 | conn_free(conn); |
| 881 | } |
| 882 | } |
| 883 | |
Christopher Faulet | 6670e3e | 2020-10-08 15:26:33 +0200 | [diff] [blame] | 884 | /* Detect a pending read0 for a FCGI connection. It happens if a read0 is |
| 885 | * pending on the connection AND if there is no more data in the demux |
| 886 | * buffer. The function returns 1 to report a read0 or 0 otherwise. |
| 887 | */ |
| 888 | static int fcgi_conn_read0_pending(struct fcgi_conn *fconn) |
| 889 | { |
| 890 | if (conn_xprt_read0_pending(fconn->conn) && !b_data(&fconn->dbuf)) |
| 891 | return 1; |
| 892 | return 0; |
| 893 | } |
| 894 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 895 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 896 | /* Returns true if the FCGI connection must be release */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 897 | static inline int fcgi_conn_is_dead(struct fcgi_conn *fconn) |
| 898 | { |
| 899 | if (eb_is_empty(&fconn->streams_by_id) && /* don't close if streams exist */ |
| 900 | (!(fconn->flags & FCGI_CF_KEEP_CONN) || /* don't keep the connection alive */ |
| 901 | (fconn->conn->flags & CO_FL_ERROR) || /* errors close immediately */ |
| 902 | (fconn->state == FCGI_CS_CLOSED && !fconn->task) ||/* a timeout stroke earlier */ |
| 903 | (!(fconn->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */ |
| 904 | (!br_data(fconn->mbuf) && /* mux buffer empty, also process clean events below */ |
| 905 | conn_xprt_read0_pending(fconn->conn)))) |
| 906 | return 1; |
| 907 | return 0; |
| 908 | } |
| 909 | |
| 910 | |
| 911 | /********************************************************/ |
| 912 | /* functions below are for the FCGI protocol processing */ |
| 913 | /********************************************************/ |
| 914 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 915 | /* Marks an error on the stream. */ |
| 916 | static inline void fcgi_strm_error(struct fcgi_strm *fstrm) |
| 917 | { |
| 918 | if (fstrm->id && fstrm->state != FCGI_SS_ERROR) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 919 | TRACE_POINT(FCGI_EV_FSTRM_ERR, fstrm->fconn->conn, fstrm); |
| 920 | if (fstrm->state < FCGI_SS_ERROR) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 921 | fstrm->state = FCGI_SS_ERROR; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 922 | TRACE_STATE("switching to ERROR", FCGI_EV_FSTRM_ERR, fstrm->fconn->conn, fstrm); |
| 923 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 924 | if (fstrm->cs) |
| 925 | cs_set_error(fstrm->cs); |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | /* Attempts to notify the data layer of recv availability */ |
| 930 | static void fcgi_strm_notify_recv(struct fcgi_strm *fstrm) |
| 931 | { |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 932 | if (fstrm->subs && (fstrm->subs->events & SUB_RETRY_RECV)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 933 | TRACE_POINT(FCGI_EV_STRM_WAKE, fstrm->fconn->conn, fstrm); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 934 | tasklet_wakeup(fstrm->subs->tasklet); |
| 935 | fstrm->subs->events &= ~SUB_RETRY_RECV; |
| 936 | if (!fstrm->subs->events) |
| 937 | fstrm->subs = NULL; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 938 | } |
| 939 | } |
| 940 | |
| 941 | /* Attempts to notify the data layer of send availability */ |
| 942 | static void fcgi_strm_notify_send(struct fcgi_strm *fstrm) |
| 943 | { |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 944 | if (fstrm->subs && (fstrm->subs->events & SUB_RETRY_SEND)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 945 | TRACE_POINT(FCGI_EV_STRM_WAKE, fstrm->fconn->conn, fstrm); |
Willy Tarreau | f11be0e | 2020-01-16 16:59:45 +0100 | [diff] [blame] | 946 | fstrm->flags |= FCGI_SF_NOTIFIED; |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 947 | tasklet_wakeup(fstrm->subs->tasklet); |
| 948 | fstrm->subs->events &= ~SUB_RETRY_SEND; |
| 949 | if (!fstrm->subs->events) |
| 950 | fstrm->subs = NULL; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 951 | } |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 952 | else if (fstrm->flags & (FCGI_SF_WANT_SHUTR | FCGI_SF_WANT_SHUTW)) { |
| 953 | TRACE_POINT(FCGI_EV_STRM_WAKE, fstrm->fconn->conn, fstrm); |
| 954 | tasklet_wakeup(fstrm->shut_tl); |
| 955 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | /* Alerts the data layer, trying to wake it up by all means, following |
| 959 | * this sequence : |
| 960 | * - if the fcgi stream' data layer is subscribed to recv, then it's woken up |
| 961 | * for recv |
| 962 | * - if its subscribed to send, then it's woken up for send |
| 963 | * - if it was subscribed to neither, its ->wake() callback is called |
| 964 | * It is safe to call this function with a closed stream which doesn't have a |
| 965 | * conn_stream anymore. |
| 966 | */ |
| 967 | static void fcgi_strm_alert(struct fcgi_strm *fstrm) |
| 968 | { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 969 | TRACE_POINT(FCGI_EV_STRM_WAKE, fstrm->fconn->conn, fstrm); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 970 | if (fstrm->subs || |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 971 | (fstrm->flags & (FCGI_SF_WANT_SHUTR|FCGI_SF_WANT_SHUTW))) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 972 | fcgi_strm_notify_recv(fstrm); |
| 973 | fcgi_strm_notify_send(fstrm); |
| 974 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 975 | else if (fstrm->cs && fstrm->cs->data_cb->wake != NULL) { |
| 976 | TRACE_POINT(FCGI_EV_STRM_WAKE, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 977 | fstrm->cs->data_cb->wake(fstrm->cs); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 978 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 979 | } |
| 980 | |
| 981 | /* Writes the 16-bit record size <len> at address <record> */ |
| 982 | static inline void fcgi_set_record_size(void *record, uint16_t len) |
| 983 | { |
| 984 | uint8_t *out = (record + 4); |
| 985 | |
| 986 | *out = (len >> 8); |
| 987 | *(out + 1) = (len & 0xff); |
| 988 | } |
| 989 | |
| 990 | /* Writes the 16-bit stream id <id> at address <record> */ |
| 991 | static inline void fcgi_set_record_id(void *record, uint16_t id) |
| 992 | { |
| 993 | uint8_t *out = (record + 2); |
| 994 | |
| 995 | *out = (id >> 8); |
| 996 | *(out + 1) = (id & 0xff); |
| 997 | } |
| 998 | |
| 999 | /* Marks a FCGI stream as CLOSED and decrement the number of active streams for |
| 1000 | * its connection if the stream was not yet closed. Please use this exclusively |
| 1001 | * before closing a stream to ensure stream count is well maintained. |
| 1002 | */ |
| 1003 | static inline void fcgi_strm_close(struct fcgi_strm *fstrm) |
| 1004 | { |
| 1005 | if (fstrm->state != FCGI_SS_CLOSED) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1006 | TRACE_ENTER(FCGI_EV_FSTRM_END, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1007 | fstrm->fconn->nb_streams--; |
| 1008 | if (!fstrm->id) |
| 1009 | fstrm->fconn->nb_reserved--; |
| 1010 | if (fstrm->cs) { |
| 1011 | if (!(fstrm->cs->flags & CS_FL_EOS) && !b_data(&fstrm->rxbuf)) |
| 1012 | fcgi_strm_notify_recv(fstrm); |
| 1013 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1014 | fstrm->state = FCGI_SS_CLOSED; |
| 1015 | TRACE_STATE("switching to CLOSED", FCGI_EV_FSTRM_END, fstrm->fconn->conn, fstrm); |
| 1016 | TRACE_LEAVE(FCGI_EV_FSTRM_END, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1017 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1018 | } |
| 1019 | |
| 1020 | /* Detaches a FCGI stream from its FCGI connection and releases it to the |
| 1021 | * fcgi_strm pool. |
| 1022 | */ |
| 1023 | static void fcgi_strm_destroy(struct fcgi_strm *fstrm) |
| 1024 | { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1025 | struct connection *conn = fstrm->fconn->conn; |
| 1026 | |
| 1027 | TRACE_ENTER(FCGI_EV_FSTRM_END, conn, fstrm); |
| 1028 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1029 | fcgi_strm_close(fstrm); |
| 1030 | eb32_delete(&fstrm->by_id); |
| 1031 | if (b_size(&fstrm->rxbuf)) { |
| 1032 | b_free(&fstrm->rxbuf); |
Willy Tarreau | 4d77bbf | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 1033 | offer_buffers(NULL, 1); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1034 | } |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 1035 | if (fstrm->subs) |
| 1036 | fstrm->subs->events = 0; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1037 | /* There's no need to explicitly call unsubscribe here, the only |
| 1038 | * reference left would be in the fconn send_list/fctl_list, and if |
| 1039 | * we're in it, we're getting out anyway |
| 1040 | */ |
| 1041 | LIST_DEL_INIT(&fstrm->send_list); |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 1042 | tasklet_free(fstrm->shut_tl); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1043 | pool_free(pool_head_fcgi_strm, fstrm); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1044 | |
| 1045 | TRACE_LEAVE(FCGI_EV_FSTRM_END, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | /* Allocates a new stream <id> for connection <fconn> and adds it into fconn's |
| 1049 | * stream tree. In case of error, nothing is added and NULL is returned. The |
| 1050 | * causes of errors can be any failed memory allocation. The caller is |
| 1051 | * responsible for checking if the connection may support an extra stream prior |
| 1052 | * to calling this function. |
| 1053 | */ |
| 1054 | static struct fcgi_strm *fcgi_strm_new(struct fcgi_conn *fconn, int id) |
| 1055 | { |
| 1056 | struct fcgi_strm *fstrm; |
| 1057 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1058 | TRACE_ENTER(FCGI_EV_FSTRM_NEW, fconn->conn); |
| 1059 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1060 | fstrm = pool_alloc(pool_head_fcgi_strm); |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1061 | if (!fstrm) { |
| 1062 | TRACE_ERROR("fstrm allocation failure", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_ERR|FCGI_EV_FSTRM_END, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1063 | goto out; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1064 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1065 | |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 1066 | fstrm->shut_tl = tasklet_new(); |
| 1067 | if (!fstrm->shut_tl) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1068 | TRACE_ERROR("fstrm shut tasklet allocation failure", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_ERR|FCGI_EV_FSTRM_END, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1069 | pool_free(pool_head_fcgi_strm, fstrm); |
| 1070 | goto out; |
| 1071 | } |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 1072 | fstrm->subs = NULL; |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 1073 | fstrm->shut_tl->process = fcgi_deferred_shut; |
| 1074 | fstrm->shut_tl->context = fstrm; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1075 | LIST_INIT(&fstrm->send_list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1076 | fstrm->fconn = fconn; |
| 1077 | fstrm->cs = NULL; |
| 1078 | fstrm->flags = FCGI_SF_NONE; |
| 1079 | fstrm->proto_status = 0; |
| 1080 | fstrm->state = FCGI_SS_IDLE; |
| 1081 | fstrm->rxbuf = BUF_NULL; |
| 1082 | |
| 1083 | h1m_init_res(&fstrm->h1m); |
| 1084 | fstrm->h1m.err_pos = -1; // don't care about errors on the request path |
| 1085 | fstrm->h1m.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
| 1086 | |
| 1087 | fstrm->by_id.key = fstrm->id = id; |
| 1088 | if (id > 0) |
| 1089 | fconn->max_id = id; |
| 1090 | else |
| 1091 | fconn->nb_reserved++; |
| 1092 | |
| 1093 | eb32_insert(&fconn->streams_by_id, &fstrm->by_id); |
| 1094 | fconn->nb_streams++; |
| 1095 | fconn->stream_cnt++; |
| 1096 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1097 | TRACE_LEAVE(FCGI_EV_FSTRM_NEW, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1098 | return fstrm; |
| 1099 | |
| 1100 | out: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1101 | TRACE_DEVEL("leaving in error", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_ERR|FCGI_EV_FSTRM_END, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1102 | return NULL; |
| 1103 | } |
| 1104 | |
| 1105 | /* Allocates a new stream associated to conn_stream <cs> on the FCGI connection |
| 1106 | * <fconn> and returns it, or NULL in case of memory allocation error or if the |
| 1107 | * highest possible stream ID was reached. |
| 1108 | */ |
| 1109 | static struct fcgi_strm *fcgi_conn_stream_new(struct fcgi_conn *fconn, struct conn_stream *cs, |
| 1110 | struct session *sess) |
| 1111 | { |
| 1112 | struct fcgi_strm *fstrm = NULL; |
| 1113 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1114 | TRACE_ENTER(FCGI_EV_FSTRM_NEW, fconn->conn); |
| 1115 | if (fconn->nb_streams >= fconn->streams_limit) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1116 | TRACE_ERROR("streams_limit reached", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_END|FCGI_EV_FSTRM_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1117 | goto out; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1118 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1119 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1120 | if (fcgi_streams_left(fconn) < 1) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1121 | TRACE_ERROR("!streams_left", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_END|FCGI_EV_FSTRM_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1122 | goto out; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1123 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1124 | |
| 1125 | /* Defer choosing the ID until we send the first message to create the stream */ |
| 1126 | fstrm = fcgi_strm_new(fconn, 0); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1127 | if (!fstrm) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1128 | TRACE_ERROR("fstream allocation failure", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_END|FCGI_EV_FSTRM_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1129 | goto out; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1130 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1131 | |
| 1132 | fstrm->cs = cs; |
| 1133 | fstrm->sess = sess; |
| 1134 | cs->ctx = fstrm; |
| 1135 | fconn->nb_cs++; |
| 1136 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1137 | TRACE_LEAVE(FCGI_EV_FSTRM_NEW, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1138 | return fstrm; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1139 | |
| 1140 | out: |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1141 | TRACE_DEVEL("leaving on error", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_END|FCGI_EV_FSTRM_ERR, fconn->conn); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1142 | return NULL; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | /* Wakes a specific stream and assign its conn_stream some CS_FL_* flags among |
| 1146 | * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state is |
| 1147 | * automatically updated accordingly. If the stream is orphaned, it is |
| 1148 | * destroyed. |
| 1149 | */ |
| 1150 | static void fcgi_strm_wake_one_stream(struct fcgi_strm *fstrm) |
| 1151 | { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1152 | struct fcgi_conn *fconn = fstrm->fconn; |
| 1153 | |
| 1154 | TRACE_ENTER(FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
| 1155 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1156 | if (!fstrm->cs) { |
| 1157 | /* this stream was already orphaned */ |
| 1158 | fcgi_strm_destroy(fstrm); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1159 | TRACE_DEVEL("leaving with no fstrm", FCGI_EV_STRM_WAKE, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1160 | return; |
| 1161 | } |
| 1162 | |
Christopher Faulet | 6670e3e | 2020-10-08 15:26:33 +0200 | [diff] [blame] | 1163 | if (fcgi_conn_read0_pending(fconn)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1164 | if (fstrm->state == FCGI_SS_OPEN) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1165 | fstrm->state = FCGI_SS_HREM; |
Ilya Shipitsin | f38a018 | 2020-12-21 01:16:17 +0500 | [diff] [blame] | 1166 | TRACE_STATE("switching to HREM", FCGI_EV_STRM_WAKE|FCGI_EV_FSTRM_END, fconn->conn, fstrm); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1167 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1168 | else if (fstrm->state == FCGI_SS_HLOC) |
| 1169 | fcgi_strm_close(fstrm); |
| 1170 | } |
| 1171 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1172 | if ((fconn->state == FCGI_CS_CLOSED || fconn->conn->flags & CO_FL_ERROR)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1173 | fstrm->cs->flags |= CS_FL_ERR_PENDING; |
| 1174 | if (fstrm->cs->flags & CS_FL_EOS) |
| 1175 | fstrm->cs->flags |= CS_FL_ERROR; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1176 | |
| 1177 | if (fstrm->state < FCGI_SS_ERROR) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1178 | fstrm->state = FCGI_SS_ERROR; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1179 | TRACE_STATE("switching to ERROR", FCGI_EV_STRM_WAKE|FCGI_EV_FSTRM_END, fconn->conn, fstrm); |
| 1180 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1181 | } |
| 1182 | |
| 1183 | fcgi_strm_alert(fstrm); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1184 | |
| 1185 | TRACE_LEAVE(FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1186 | } |
| 1187 | |
| 1188 | /* Wakes unassigned streams (ID == 0) attached to the connection. */ |
| 1189 | static void fcgi_wake_unassigned_streams(struct fcgi_conn *fconn) |
| 1190 | { |
| 1191 | struct eb32_node *node; |
| 1192 | struct fcgi_strm *fstrm; |
| 1193 | |
| 1194 | node = eb32_lookup(&fconn->streams_by_id, 0); |
| 1195 | while (node) { |
| 1196 | fstrm = container_of(node, struct fcgi_strm, by_id); |
| 1197 | if (fstrm->id > 0) |
| 1198 | break; |
| 1199 | node = eb32_next(node); |
| 1200 | fcgi_strm_wake_one_stream(fstrm); |
| 1201 | } |
| 1202 | } |
| 1203 | |
| 1204 | /* Wakes the streams attached to the connection, whose id is greater than <last> |
| 1205 | * or unassigned. |
| 1206 | */ |
| 1207 | static void fcgi_wake_some_streams(struct fcgi_conn *fconn, int last) |
| 1208 | { |
| 1209 | struct eb32_node *node; |
| 1210 | struct fcgi_strm *fstrm; |
| 1211 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1212 | TRACE_ENTER(FCGI_EV_STRM_WAKE, fconn->conn); |
| 1213 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1214 | /* Wake all streams with ID > last */ |
| 1215 | node = eb32_lookup_ge(&fconn->streams_by_id, last + 1); |
| 1216 | while (node) { |
| 1217 | fstrm = container_of(node, struct fcgi_strm, by_id); |
| 1218 | node = eb32_next(node); |
| 1219 | fcgi_strm_wake_one_stream(fstrm); |
| 1220 | } |
| 1221 | fcgi_wake_unassigned_streams(fconn); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1222 | |
| 1223 | TRACE_LEAVE(FCGI_EV_STRM_WAKE, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | static int fcgi_set_default_param(struct fcgi_conn *fconn, struct fcgi_strm *fstrm, |
| 1227 | struct htx *htx, struct htx_sl *sl, |
| 1228 | struct fcgi_strm_params *params) |
| 1229 | { |
| 1230 | struct connection *cli_conn = objt_conn(fstrm->sess->origin); |
| 1231 | struct ist p; |
| 1232 | |
| 1233 | if (!sl) |
| 1234 | goto error; |
| 1235 | |
| 1236 | if (!(params->mask & FCGI_SP_DOC_ROOT)) |
| 1237 | params->docroot = fconn->app->docroot; |
| 1238 | |
| 1239 | if (!(params->mask & FCGI_SP_REQ_METH)) { |
| 1240 | p = htx_sl_req_meth(sl); |
| 1241 | params->meth = ist2(b_tail(params->p), p.len); |
| 1242 | chunk_memcat(params->p, p.ptr, p.len); |
| 1243 | } |
| 1244 | if (!(params->mask & FCGI_SP_REQ_URI)) { |
Christopher Faulet | fb38c91 | 2021-04-26 09:38:55 +0200 | [diff] [blame] | 1245 | p = h1_get_uri(sl); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1246 | params->uri = ist2(b_tail(params->p), p.len); |
| 1247 | chunk_memcat(params->p, p.ptr, p.len); |
| 1248 | } |
| 1249 | if (!(params->mask & FCGI_SP_SRV_PROTO)) { |
| 1250 | p = htx_sl_req_vsn(sl); |
| 1251 | params->vsn = ist2(b_tail(params->p), p.len); |
| 1252 | chunk_memcat(params->p, p.ptr, p.len); |
| 1253 | } |
| 1254 | if (!(params->mask & FCGI_SP_SRV_PORT)) { |
| 1255 | char *end; |
| 1256 | int port = 0; |
Christopher Faulet | bb86a0f | 2020-04-24 07:19:04 +0200 | [diff] [blame] | 1257 | if (cli_conn && conn_get_dst(cli_conn)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1258 | port = get_host_port(cli_conn->dst); |
| 1259 | end = ultoa_o(port, b_tail(params->p), b_room(params->p)); |
| 1260 | if (!end) |
| 1261 | goto error; |
| 1262 | params->srv_port = ist2(b_tail(params->p), end - b_tail(params->p)); |
| 1263 | params->p->data += params->srv_port.len; |
| 1264 | } |
| 1265 | if (!(params->mask & FCGI_SP_SRV_NAME)) { |
| 1266 | /* If no Host header found, use the server address to fill |
| 1267 | * srv_name */ |
| 1268 | if (!istlen(params->srv_name)) { |
| 1269 | char *ptr = NULL; |
| 1270 | |
Christopher Faulet | bb86a0f | 2020-04-24 07:19:04 +0200 | [diff] [blame] | 1271 | if (cli_conn && conn_get_dst(cli_conn)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1272 | if (addr_to_str(cli_conn->dst, b_tail(params->p), b_room(params->p)) != -1) |
| 1273 | ptr = b_tail(params->p); |
| 1274 | if (ptr) { |
Tim Duesterhus | dcf753a | 2021-03-04 17:31:47 +0100 | [diff] [blame] | 1275 | params->srv_name = ist(ptr); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1276 | params->p->data += params->srv_name.len; |
| 1277 | } |
| 1278 | } |
| 1279 | } |
| 1280 | if (!(params->mask & FCGI_SP_REM_ADDR)) { |
| 1281 | char *ptr = NULL; |
| 1282 | |
Christopher Faulet | bb86a0f | 2020-04-24 07:19:04 +0200 | [diff] [blame] | 1283 | if (cli_conn && conn_get_src(cli_conn)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1284 | if (addr_to_str(cli_conn->src, b_tail(params->p), b_room(params->p)) != -1) |
| 1285 | ptr = b_tail(params->p); |
| 1286 | if (ptr) { |
Tim Duesterhus | dcf753a | 2021-03-04 17:31:47 +0100 | [diff] [blame] | 1287 | params->rem_addr = ist(ptr); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1288 | params->p->data += params->rem_addr.len; |
| 1289 | } |
| 1290 | } |
| 1291 | if (!(params->mask & FCGI_SP_REM_PORT)) { |
| 1292 | char *end; |
| 1293 | int port = 0; |
Christopher Faulet | bb86a0f | 2020-04-24 07:19:04 +0200 | [diff] [blame] | 1294 | if (cli_conn && conn_get_src(cli_conn)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1295 | port = get_host_port(cli_conn->src); |
| 1296 | end = ultoa_o(port, b_tail(params->p), b_room(params->p)); |
| 1297 | if (!end) |
| 1298 | goto error; |
| 1299 | params->rem_port = ist2(b_tail(params->p), end - b_tail(params->p)); |
| 1300 | params->p->data += params->rem_port.len; |
| 1301 | } |
| 1302 | if (!(params->mask & FCGI_SP_CONT_LEN)) { |
| 1303 | struct htx_blk *blk; |
| 1304 | enum htx_blk_type type; |
| 1305 | char *end; |
| 1306 | size_t len = 0; |
| 1307 | |
| 1308 | for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) { |
| 1309 | type = htx_get_blk_type(blk); |
| 1310 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1311 | if (type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1312 | break; |
| 1313 | if (type == HTX_BLK_DATA) |
| 1314 | len += htx_get_blksz(blk); |
| 1315 | } |
| 1316 | end = ultoa_o(len, b_tail(params->p), b_room(params->p)); |
| 1317 | if (!end) |
| 1318 | goto error; |
| 1319 | params->cont_len = ist2(b_tail(params->p), end - b_tail(params->p)); |
| 1320 | params->p->data += params->cont_len.len; |
| 1321 | } |
Christopher Faulet | d66700a | 2019-09-17 13:46:47 +0200 | [diff] [blame] | 1322 | #ifdef USE_OPENSSL |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1323 | if (!(params->mask & FCGI_SP_HTTPS)) { |
Christopher Faulet | bb86a0f | 2020-04-24 07:19:04 +0200 | [diff] [blame] | 1324 | if (cli_conn) |
| 1325 | params->https = ssl_sock_is_ssl(cli_conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1326 | } |
Christopher Faulet | d66700a | 2019-09-17 13:46:47 +0200 | [diff] [blame] | 1327 | #endif |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1328 | if ((params->mask & FCGI_SP_URI_MASK) != FCGI_SP_URI_MASK) { |
| 1329 | /* one of scriptname, pathinfo or query_string is no set */ |
| 1330 | struct ist path = http_get_path(params->uri); |
| 1331 | int len; |
| 1332 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1333 | /* No scrit_name set but no valid path ==> error */ |
| 1334 | if (!(params->mask & FCGI_SP_SCRIPT_NAME) && !istlen(path)) |
| 1335 | goto error; |
| 1336 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1337 | /* If there is a query-string, Set it if not already set */ |
Christopher Faulet | 0f17a44 | 2020-07-23 15:44:37 +0200 | [diff] [blame] | 1338 | if (!(params->mask & FCGI_SP_REQ_QS)) { |
| 1339 | struct ist qs = istfind(path, '?'); |
| 1340 | |
| 1341 | /* Update the path length */ |
| 1342 | path.len -= qs.len; |
| 1343 | |
| 1344 | /* Set the query-string skipping the '?', if any */ |
| 1345 | if (istlen(qs)) |
| 1346 | params->qs = istnext(qs); |
| 1347 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1348 | |
| 1349 | /* If the script_name is set, don't try to deduce the path_info |
| 1350 | * too. The opposite is not true. |
| 1351 | */ |
| 1352 | if (params->mask & FCGI_SP_SCRIPT_NAME) { |
| 1353 | params->mask |= FCGI_SP_PATH_INFO; |
| 1354 | goto end; |
| 1355 | } |
| 1356 | |
Christopher Faulet | 0f17a44 | 2020-07-23 15:44:37 +0200 | [diff] [blame] | 1357 | /* Decode the path. it must first be copied to keep the URI |
| 1358 | * untouched. |
| 1359 | */ |
| 1360 | chunk_memcat(params->p, path.ptr, path.len); |
| 1361 | path.ptr = b_tail(params->p) - path.len; |
| 1362 | len = url_decode(ist0(path), 0); |
| 1363 | if (len < 0) |
| 1364 | goto error; |
| 1365 | path.len = len; |
| 1366 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1367 | /* script_name not set, preset it with the path for now */ |
Christopher Faulet | 0f17a44 | 2020-07-23 15:44:37 +0200 | [diff] [blame] | 1368 | params->scriptname = path; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1369 | |
| 1370 | /* If there is no regex to match the pathinfo, just to the last |
| 1371 | * part and see if the index must be used. |
| 1372 | */ |
| 1373 | if (!fconn->app->pathinfo_re) |
| 1374 | goto check_index; |
| 1375 | |
Christopher Faulet | 28cb366 | 2020-02-14 14:47:37 +0100 | [diff] [blame] | 1376 | /* If some special characters are found in the decoded path (\n |
Ilya Shipitsin | c6ecf56 | 2021-08-07 14:41:56 +0500 | [diff] [blame] | 1377 | * or \0), the PATH_INFO regex cannot match. This is theoretically |
Christopher Faulet | 28cb366 | 2020-02-14 14:47:37 +0100 | [diff] [blame] | 1378 | * valid, but probably unexpected, to have such characters. So, |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 1379 | * to avoid any surprises, an error is triggered in this |
Christopher Faulet | 28cb366 | 2020-02-14 14:47:37 +0100 | [diff] [blame] | 1380 | * case. |
| 1381 | */ |
| 1382 | if (istchr(path, '\n') || istchr(path, '\0')) |
| 1383 | goto error; |
| 1384 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1385 | /* The regex does not match, just to the last part and see if |
| 1386 | * the index must be used. |
| 1387 | */ |
| 1388 | if (!regex_exec_match2(fconn->app->pathinfo_re, path.ptr, len, MAX_MATCH, pmatch, 0)) |
| 1389 | goto check_index; |
| 1390 | |
Christopher Faulet | 6c57f2d | 2020-02-14 16:55:52 +0100 | [diff] [blame] | 1391 | /* We must have at least 1 capture for the script name, |
| 1392 | * otherwise we do nothing and jump to the last part. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1393 | */ |
Christopher Faulet | 6c57f2d | 2020-02-14 16:55:52 +0100 | [diff] [blame] | 1394 | if (pmatch[1].rm_so == -1 || pmatch[1].rm_eo == -1) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1395 | goto check_index; |
| 1396 | |
Christopher Faulet | 6c57f2d | 2020-02-14 16:55:52 +0100 | [diff] [blame] | 1397 | /* Finally we can set the script_name and the path_info. The |
| 1398 | * path_info is set if not already defined, and if it was |
| 1399 | * captured |
| 1400 | */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1401 | params->scriptname = ist2(path.ptr + pmatch[1].rm_so, pmatch[1].rm_eo - pmatch[1].rm_so); |
Christopher Faulet | 6c57f2d | 2020-02-14 16:55:52 +0100 | [diff] [blame] | 1402 | if (!(params->mask & FCGI_SP_PATH_INFO) && (pmatch[2].rm_so == -1 || pmatch[2].rm_eo == -1)) |
| 1403 | params->pathinfo = ist2(path.ptr + pmatch[2].rm_so, pmatch[2].rm_eo - pmatch[2].rm_so); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1404 | |
| 1405 | check_index: |
| 1406 | len = params->scriptname.len; |
| 1407 | /* the script_name if finished by a '/' so we can add the index |
| 1408 | * part, if any. |
| 1409 | */ |
| 1410 | if (istlen(fconn->app->index) && params->scriptname.ptr[len-1] == '/') { |
| 1411 | struct ist sn = params->scriptname; |
| 1412 | |
| 1413 | params->scriptname = ist2(b_tail(params->p), len+fconn->app->index.len); |
| 1414 | chunk_memcat(params->p, sn.ptr, sn.len); |
| 1415 | chunk_memcat(params->p, fconn->app->index.ptr, fconn->app->index.len); |
| 1416 | } |
| 1417 | } |
| 1418 | |
Christopher Faulet | b2a5029 | 2021-06-11 13:34:42 +0200 | [diff] [blame] | 1419 | if (!(params->mask & FCGI_SP_SRV_SOFT)) { |
| 1420 | params->srv_soft = ist2(b_tail(params->p), 0); |
| 1421 | chunk_appendf(params->p, "HAProxy %s", haproxy_version); |
| 1422 | params->srv_soft.len = b_tail(params->p) - params->srv_soft.ptr; |
| 1423 | } |
| 1424 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1425 | end: |
| 1426 | return 1; |
| 1427 | error: |
| 1428 | return 0; |
| 1429 | } |
| 1430 | |
| 1431 | static int fcgi_encode_default_param(struct fcgi_conn *fconn, struct fcgi_strm *fstrm, |
| 1432 | struct fcgi_strm_params *params, struct buffer *outbuf, int flag) |
| 1433 | { |
| 1434 | struct fcgi_param p; |
| 1435 | |
| 1436 | if (params->mask & flag) |
| 1437 | return 1; |
| 1438 | |
| 1439 | chunk_reset(&trash); |
| 1440 | |
| 1441 | switch (flag) { |
| 1442 | case FCGI_SP_CGI_GATEWAY: |
| 1443 | p.n = ist("GATEWAY_INTERFACE"); |
| 1444 | p.v = ist("CGI/1.1"); |
| 1445 | goto encode; |
| 1446 | case FCGI_SP_DOC_ROOT: |
| 1447 | p.n = ist("DOCUMENT_ROOT"); |
| 1448 | p.v = params->docroot; |
| 1449 | goto encode; |
| 1450 | case FCGI_SP_SCRIPT_NAME: |
| 1451 | p.n = ist("SCRIPT_NAME"); |
| 1452 | p.v = params->scriptname; |
| 1453 | goto encode; |
| 1454 | case FCGI_SP_PATH_INFO: |
| 1455 | p.n = ist("PATH_INFO"); |
| 1456 | p.v = params->pathinfo; |
| 1457 | goto encode; |
| 1458 | case FCGI_SP_REQ_URI: |
| 1459 | p.n = ist("REQUEST_URI"); |
| 1460 | p.v = params->uri; |
| 1461 | goto encode; |
| 1462 | case FCGI_SP_REQ_METH: |
| 1463 | p.n = ist("REQUEST_METHOD"); |
| 1464 | p.v = params->meth; |
| 1465 | goto encode; |
| 1466 | case FCGI_SP_REQ_QS: |
| 1467 | p.n = ist("QUERY_STRING"); |
| 1468 | p.v = params->qs; |
| 1469 | goto encode; |
| 1470 | case FCGI_SP_SRV_NAME: |
| 1471 | p.n = ist("SERVER_NAME"); |
| 1472 | p.v = params->srv_name; |
| 1473 | goto encode; |
| 1474 | case FCGI_SP_SRV_PORT: |
| 1475 | p.n = ist("SERVER_PORT"); |
| 1476 | p.v = params->srv_port; |
| 1477 | goto encode; |
| 1478 | case FCGI_SP_SRV_PROTO: |
| 1479 | p.n = ist("SERVER_PROTOCOL"); |
| 1480 | p.v = params->vsn; |
| 1481 | goto encode; |
| 1482 | case FCGI_SP_REM_ADDR: |
| 1483 | p.n = ist("REMOTE_ADDR"); |
| 1484 | p.v = params->rem_addr; |
| 1485 | goto encode; |
| 1486 | case FCGI_SP_REM_PORT: |
| 1487 | p.n = ist("REMOTE_PORT"); |
| 1488 | p.v = params->rem_port; |
| 1489 | goto encode; |
| 1490 | case FCGI_SP_SCRIPT_FILE: |
| 1491 | p.n = ist("SCRIPT_FILENAME"); |
| 1492 | chunk_memcat(&trash, params->docroot.ptr, params->docroot.len); |
| 1493 | chunk_memcat(&trash, params->scriptname.ptr, params->scriptname.len); |
| 1494 | p.v = ist2(b_head(&trash), b_data(&trash)); |
| 1495 | goto encode; |
| 1496 | case FCGI_SP_PATH_TRANS: |
| 1497 | if (!istlen(params->pathinfo)) |
| 1498 | goto skip; |
| 1499 | p.n = ist("PATH_TRANSLATED"); |
| 1500 | chunk_memcat(&trash, params->docroot.ptr, params->docroot.len); |
| 1501 | chunk_memcat(&trash, params->pathinfo.ptr, params->pathinfo.len); |
| 1502 | p.v = ist2(b_head(&trash), b_data(&trash)); |
| 1503 | goto encode; |
| 1504 | case FCGI_SP_CONT_LEN: |
| 1505 | p.n = ist("CONTENT_LENGTH"); |
| 1506 | p.v = params->cont_len; |
| 1507 | goto encode; |
| 1508 | case FCGI_SP_HTTPS: |
| 1509 | if (!params->https) |
| 1510 | goto skip; |
| 1511 | p.n = ist("HTTPS"); |
| 1512 | p.v = ist("on"); |
| 1513 | goto encode; |
Christopher Faulet | b2a5029 | 2021-06-11 13:34:42 +0200 | [diff] [blame] | 1514 | case FCGI_SP_SRV_SOFT: |
| 1515 | p.n = ist("SERVER_SOFTWARE"); |
| 1516 | p.v = params->srv_soft; |
| 1517 | goto encode; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1518 | default: |
| 1519 | goto skip; |
| 1520 | } |
| 1521 | |
| 1522 | encode: |
| 1523 | if (!istlen(p.v)) |
| 1524 | goto skip; |
| 1525 | if (!fcgi_encode_param(outbuf, &p)) |
| 1526 | return 0; |
| 1527 | skip: |
| 1528 | params->mask |= flag; |
| 1529 | return 1; |
| 1530 | } |
| 1531 | |
| 1532 | /* Sends a GET_VALUES record. Returns > 0 on success, 0 if it couldn't do |
| 1533 | * anything. It is highly unexpected, but if the record is larger than a buffer |
| 1534 | * and cannot be encoded in one time, an error is triggered and the connection is |
| 1535 | * closed. GET_VALUES record cannot be split. |
| 1536 | */ |
| 1537 | static int fcgi_conn_send_get_values(struct fcgi_conn *fconn) |
| 1538 | { |
| 1539 | struct buffer outbuf; |
| 1540 | struct buffer *mbuf; |
| 1541 | struct fcgi_param max_reqs = { .n = ist("FCGI_MAX_REQS"), .v = ist("")}; |
| 1542 | struct fcgi_param mpxs_conns = { .n = ist("FCGI_MPXS_CONNS"), .v = ist("")}; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1543 | int ret = 0; |
| 1544 | |
| 1545 | TRACE_ENTER(FCGI_EV_TX_RECORD|FCGI_EV_TX_GETVAL, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1546 | |
| 1547 | mbuf = br_tail(fconn->mbuf); |
| 1548 | retry: |
| 1549 | if (!fcgi_get_buf(fconn, mbuf)) { |
| 1550 | fconn->flags |= FCGI_CF_MUX_MALLOC; |
| 1551 | fconn->flags |= FCGI_CF_DEM_MROOM; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1552 | TRACE_STATE("waiting for fconn mbuf ring allocation", FCGI_EV_TX_RECORD|FCGI_EV_FCONN_BLK, fconn->conn); |
| 1553 | ret = 0; |
| 1554 | goto end; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1555 | } |
| 1556 | |
| 1557 | while (1) { |
| 1558 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1559 | if (outbuf.size >= FCGI_RECORD_HEADER_SZ || !b_space_wraps(mbuf)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1560 | break; |
| 1561 | realign_again: |
| 1562 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
| 1563 | } |
| 1564 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1565 | if (outbuf.size < FCGI_RECORD_HEADER_SZ) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1566 | goto full; |
| 1567 | |
| 1568 | /* vsn: 1(FCGI_VERSION), type: (9)FCGI_GET_VALUES, id: 0x0000, |
| 1569 | * len: 0x0000 (fill later), padding: 0x00, rsv: 0x00 */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1570 | memcpy(outbuf.area, "\x01\x09\x00\x00\x00\x00\x00\x00", FCGI_RECORD_HEADER_SZ); |
| 1571 | outbuf.data = FCGI_RECORD_HEADER_SZ; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1572 | |
| 1573 | /* Note: Don't send the param FCGI_MAX_CONNS because its value cannot be |
| 1574 | * handled by HAProxy. |
| 1575 | */ |
| 1576 | if (!fcgi_encode_param(&outbuf, &max_reqs) || !fcgi_encode_param(&outbuf, &mpxs_conns)) |
| 1577 | goto full; |
| 1578 | |
| 1579 | /* update the record's size now */ |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1580 | TRACE_PROTO("FCGI GET_VALUES record xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_GETVAL, fconn->conn, 0, 0, (size_t[]){outbuf.data-8}); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1581 | fcgi_set_record_size(outbuf.area, outbuf.data - FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1582 | b_add(mbuf, outbuf.data); |
| 1583 | ret = 1; |
| 1584 | |
| 1585 | end: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1586 | TRACE_LEAVE(FCGI_EV_TX_RECORD|FCGI_EV_TX_GETVAL, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1587 | return ret; |
| 1588 | full: |
| 1589 | /* Too large to be encoded. For GET_VALUES records, it is an error */ |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1590 | if (!b_data(mbuf)) { |
| 1591 | TRACE_ERROR("GET_VALUES record too large", FCGI_EV_TX_RECORD|FCGI_EV_TX_GETVAL|FCGI_EV_FCONN_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1592 | goto fail; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1593 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1594 | |
| 1595 | if ((mbuf = br_tail_add(fconn->mbuf)) != NULL) |
| 1596 | goto retry; |
| 1597 | fconn->flags |= FCGI_CF_MUX_MFULL; |
| 1598 | fconn->flags |= FCGI_CF_DEM_MROOM; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1599 | TRACE_STATE("mbuf ring full", FCGI_EV_TX_RECORD|FCGI_EV_FCONN_BLK, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1600 | ret = 0; |
| 1601 | goto end; |
| 1602 | fail: |
| 1603 | fconn->state = FCGI_CS_CLOSED; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1604 | TRACE_STATE("switching to CLOSED", FCGI_EV_TX_RECORD|FCGI_EV_TX_GETVAL|FCGI_EV_FCONN_END, fconn->conn); |
| 1605 | TRACE_DEVEL("leaving on error", FCGI_EV_TX_RECORD|FCGI_EV_TX_GETVAL|FCGI_EV_FCONN_ERR, fconn->conn); |
| 1606 | return 0; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1607 | } |
| 1608 | |
| 1609 | /* Processes a GET_VALUES_RESULT record. Returns > 0 on success, 0 if it |
| 1610 | * couldn't do anything. It is highly unexpected, but if the record is larger |
| 1611 | * than a buffer and cannot be decoded in one time, an error is triggered and |
| 1612 | * the connection is closed. GET_VALUES_RESULT record cannot be split. |
| 1613 | */ |
| 1614 | static int fcgi_conn_handle_values_result(struct fcgi_conn *fconn) |
| 1615 | { |
| 1616 | struct buffer inbuf; |
| 1617 | struct buffer *dbuf; |
| 1618 | size_t offset; |
| 1619 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1620 | TRACE_ENTER(FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn); |
| 1621 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1622 | dbuf = &fconn->dbuf; |
| 1623 | |
| 1624 | /* Record too large to be fully decoded */ |
| 1625 | if (b_size(dbuf) < (fconn->drl + fconn->drp)) |
| 1626 | goto fail; |
| 1627 | |
| 1628 | /* process full record only */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1629 | if (b_data(dbuf) < (fconn->drl + fconn->drp)) { |
| 1630 | TRACE_DEVEL("leaving on missing data", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1631 | return 0; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1632 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1633 | |
| 1634 | if (unlikely(b_contig_data(dbuf, b_head_ofs(dbuf)) < fconn->drl)) { |
| 1635 | /* Realign the dmux buffer if the record wraps. It is unexpected |
| 1636 | * at this stage because it should be the first record received |
| 1637 | * from the FCGI application. |
| 1638 | */ |
| 1639 | b_slow_realign(dbuf, trash.area, 0); |
| 1640 | } |
| 1641 | |
| 1642 | inbuf = b_make(b_head(dbuf), b_data(dbuf), 0, fconn->drl); |
| 1643 | |
| 1644 | for (offset = 0; offset < b_data(&inbuf); ) { |
| 1645 | struct fcgi_param p; |
| 1646 | size_t ret; |
| 1647 | |
| 1648 | ret = fcgi_aligned_decode_param(&inbuf, offset, &p); |
| 1649 | if (!ret) { |
| 1650 | /* name or value too large to be decoded at once */ |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1651 | TRACE_ERROR("error decoding GET_VALUES_RESULT param", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL|FCGI_EV_FCONN_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1652 | goto fail; |
| 1653 | } |
| 1654 | offset += ret; |
| 1655 | |
| 1656 | if (isteqi(p.n, ist("FCGI_MPXS_CONNS"))) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1657 | if (isteq(p.v, ist("1"))) { |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1658 | TRACE_STATE("set mpxs param", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn, 0, 0, (size_t[]){1}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1659 | fconn->flags |= FCGI_CF_MPXS_CONNS; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1660 | } |
| 1661 | else { |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1662 | TRACE_STATE("set mpxs param", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn, 0, 0, (size_t[]){0}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1663 | fconn->flags &= ~FCGI_CF_MPXS_CONNS; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1664 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1665 | } |
| 1666 | else if (isteqi(p.n, ist("FCGI_MAX_REQS"))) { |
| 1667 | fconn->streams_limit = strl2ui(p.v.ptr, p.v.len); |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1668 | TRACE_STATE("set streams_limit", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn, 0, 0, (size_t[]){fconn->streams_limit}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1669 | } |
| 1670 | /* |
| 1671 | * Ignore all other params |
| 1672 | */ |
| 1673 | } |
| 1674 | |
| 1675 | /* Reset the number of concurrent streams supported if the FCGI |
| 1676 | * application does not support connection multiplexing |
| 1677 | */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1678 | if (!(fconn->flags & FCGI_CF_MPXS_CONNS)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1679 | fconn->streams_limit = 1; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1680 | TRACE_STATE("no mpxs for streams_limit to 1", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn); |
| 1681 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1682 | |
| 1683 | /* We must be sure to have read exactly the announced record length, no |
| 1684 | * more no less |
| 1685 | */ |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1686 | if (offset != fconn->drl) { |
| 1687 | TRACE_ERROR("invalid GET_VALUES_RESULT record length", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL|FCGI_EV_FCONN_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1688 | goto fail; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 1689 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1690 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1691 | TRACE_PROTO("FCGI GET_VALUES_RESULT record rcvd", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn, 0, 0, (size_t[]){fconn->drl}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1692 | b_del(&fconn->dbuf, fconn->drl + fconn->drp); |
| 1693 | fconn->drl = 0; |
| 1694 | fconn->drp = 0; |
| 1695 | fconn->state = FCGI_CS_RECORD_H; |
| 1696 | fcgi_wake_unassigned_streams(fconn); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1697 | TRACE_STATE("switching to RECORD_H", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn); |
| 1698 | TRACE_LEAVE(FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1699 | return 1; |
| 1700 | fail: |
| 1701 | fconn->state = FCGI_CS_CLOSED; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1702 | TRACE_STATE("switching to CLOSED", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn); |
| 1703 | TRACE_DEVEL("leaving on error", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL|FCGI_EV_FCONN_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1704 | return 0; |
| 1705 | } |
| 1706 | |
| 1707 | /* Sends an ABORT_REQUEST record for each active streams. Closed streams are |
| 1708 | * excluded, as the streams which already received the end-of-stream. It returns |
| 1709 | * > 0 if the record was sent tp all streams. Otherwise it returns 0. |
| 1710 | */ |
| 1711 | static int fcgi_conn_send_aborts(struct fcgi_conn *fconn) |
| 1712 | { |
| 1713 | struct eb32_node *node; |
| 1714 | struct fcgi_strm *fstrm; |
| 1715 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1716 | TRACE_ENTER(FCGI_EV_TX_RECORD, fconn->conn); |
| 1717 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1718 | node = eb32_lookup_ge(&fconn->streams_by_id, 1); |
| 1719 | while (node) { |
| 1720 | fstrm = container_of(node, struct fcgi_strm, by_id); |
| 1721 | node = eb32_next(node); |
| 1722 | if (fstrm->state != FCGI_SS_CLOSED && |
| 1723 | !(fstrm->flags & (FCGI_SF_ES_RCVD|FCGI_SF_ABRT_SENT)) && |
| 1724 | !fcgi_strm_send_abort(fconn, fstrm)) |
| 1725 | return 0; |
| 1726 | } |
| 1727 | fconn->flags |= FCGI_CF_ABRTS_SENT; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1728 | TRACE_STATE("aborts sent to all fstrms", FCGI_EV_TX_RECORD, fconn->conn); |
| 1729 | TRACE_LEAVE(FCGI_EV_TX_RECORD, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1730 | return 1; |
| 1731 | } |
| 1732 | |
| 1733 | /* Sends a BEGIN_REQUEST record. It returns > 0 on success, 0 if it couldn't do |
| 1734 | * anything. BEGIN_REQUEST record cannot be split. So we wait to have enough |
| 1735 | * space to proceed. It is small enough to be encoded in an empty buffer. |
| 1736 | */ |
| 1737 | static int fcgi_strm_send_begin_request(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 1738 | { |
| 1739 | struct buffer outbuf; |
| 1740 | struct buffer *mbuf; |
| 1741 | struct fcgi_begin_request rec = { .role = FCGI_RESPONDER, .flags = 0}; |
| 1742 | int ret; |
| 1743 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1744 | TRACE_ENTER(FCGI_EV_TX_RECORD|FCGI_EV_TX_BEGREQ, fconn->conn, fstrm); |
| 1745 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1746 | mbuf = br_tail(fconn->mbuf); |
| 1747 | retry: |
| 1748 | if (!fcgi_get_buf(fconn, mbuf)) { |
| 1749 | fconn->flags |= FCGI_CF_MUX_MALLOC; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1750 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
| 1751 | TRACE_STATE("waiting for fconn mbuf ring allocation", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn, fstrm); |
| 1752 | ret = 0; |
| 1753 | goto end; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1754 | } |
| 1755 | |
| 1756 | while (1) { |
| 1757 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1758 | if (outbuf.size >= FCGI_RECORD_HEADER_SZ || !b_space_wraps(mbuf)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1759 | break; |
| 1760 | realign_again: |
| 1761 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
| 1762 | } |
| 1763 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1764 | if (outbuf.size < FCGI_RECORD_HEADER_SZ) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1765 | goto full; |
| 1766 | |
| 1767 | /* vsn: 1(FCGI_VERSION), type: (1)FCGI_BEGIN_REQUEST, id: fstrm->id, |
| 1768 | * len: 0x0008, padding: 0x00, rsv: 0x00 */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1769 | memcpy(outbuf.area, "\x01\x01\x00\x00\x00\x08\x00\x00", FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1770 | fcgi_set_record_id(outbuf.area, fstrm->id); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1771 | outbuf.data = FCGI_RECORD_HEADER_SZ; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1772 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1773 | if (fconn->flags & FCGI_CF_KEEP_CONN) { |
| 1774 | TRACE_STATE("keep connection opened", FCGI_EV_TX_RECORD|FCGI_EV_TX_BEGREQ, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1775 | rec.flags |= FCGI_KEEP_CONN; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1776 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1777 | if (!fcgi_encode_begin_request(&outbuf, &rec)) |
| 1778 | goto full; |
| 1779 | |
| 1780 | /* commit the record */ |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1781 | TRACE_PROTO("FCGI BEGIN_REQUEST record xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_BEGREQ, fconn->conn, fstrm, 0, (size_t[]){0}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1782 | b_add(mbuf, outbuf.data); |
| 1783 | fstrm->flags |= FCGI_SF_BEGIN_SENT; |
| 1784 | fstrm->state = FCGI_SS_OPEN; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1785 | TRACE_STATE("switching to OPEN", FCGI_EV_TX_RECORD|FCGI_EV_TX_BEGREQ, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1786 | ret = 1; |
| 1787 | |
| 1788 | end: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1789 | TRACE_LEAVE(FCGI_EV_TX_RECORD|FCGI_EV_TX_BEGREQ, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1790 | return ret; |
| 1791 | full: |
| 1792 | if ((mbuf = br_tail_add(fconn->mbuf)) != NULL) |
| 1793 | goto retry; |
| 1794 | fconn->flags |= FCGI_CF_MUX_MFULL; |
| 1795 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1796 | TRACE_STATE("mbuf ring full", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1797 | ret = 0; |
| 1798 | goto end; |
| 1799 | } |
| 1800 | |
| 1801 | /* Sends an empty record of type <rtype>. It returns > 0 on success, 0 if it |
| 1802 | * couldn't do anything. Empty record cannot be split. So we wait to have enough |
| 1803 | * space to proceed. It is small enough to be encoded in an empty buffer. |
| 1804 | */ |
| 1805 | static int fcgi_strm_send_empty_record(struct fcgi_conn *fconn, struct fcgi_strm *fstrm, |
| 1806 | enum fcgi_record_type rtype) |
| 1807 | { |
| 1808 | struct buffer outbuf; |
| 1809 | struct buffer *mbuf; |
| 1810 | int ret; |
| 1811 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1812 | TRACE_ENTER(FCGI_EV_TX_RECORD, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1813 | mbuf = br_tail(fconn->mbuf); |
| 1814 | retry: |
| 1815 | if (!fcgi_get_buf(fconn, mbuf)) { |
| 1816 | fconn->flags |= FCGI_CF_MUX_MALLOC; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1817 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
| 1818 | TRACE_STATE("waiting for fconn mbuf ring allocation", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn, fstrm); |
| 1819 | ret = 0; |
| 1820 | goto end; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1821 | } |
| 1822 | |
| 1823 | while (1) { |
| 1824 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1825 | if (outbuf.size >= FCGI_RECORD_HEADER_SZ || !b_space_wraps(mbuf)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1826 | break; |
| 1827 | realign_again: |
| 1828 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
| 1829 | } |
| 1830 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1831 | if (outbuf.size < FCGI_RECORD_HEADER_SZ) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1832 | goto full; |
| 1833 | |
| 1834 | /* vsn: 1(FCGI_VERSION), type: rtype, id: fstrm->id, |
| 1835 | * len: 0x0000, padding: 0x00, rsv: 0x00 */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1836 | memcpy(outbuf.area, "\x01\x05\x00\x00\x00\x00\x00\x00", FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1837 | outbuf.area[1] = rtype; |
| 1838 | fcgi_set_record_id(outbuf.area, fstrm->id); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1839 | outbuf.data = FCGI_RECORD_HEADER_SZ; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1840 | |
| 1841 | /* commit the record */ |
| 1842 | b_add(mbuf, outbuf.data); |
| 1843 | ret = 1; |
| 1844 | |
| 1845 | end: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1846 | TRACE_LEAVE(FCGI_EV_TX_RECORD, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1847 | return ret; |
| 1848 | full: |
| 1849 | if ((mbuf = br_tail_add(fconn->mbuf)) != NULL) |
| 1850 | goto retry; |
| 1851 | fconn->flags |= FCGI_CF_MUX_MFULL; |
| 1852 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1853 | TRACE_STATE("mbuf ring full", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1854 | ret = 0; |
| 1855 | goto end; |
| 1856 | } |
| 1857 | |
| 1858 | |
| 1859 | /* Sends an empty PARAMS record. It relies on fcgi_strm_send_empty_record(). It |
| 1860 | * marks the end of params. |
| 1861 | */ |
| 1862 | static int fcgi_strm_send_empty_params(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 1863 | { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1864 | int ret; |
| 1865 | |
| 1866 | TRACE_POINT(FCGI_EV_TX_RECORD|FCGI_EV_TX_PARAMS, fconn->conn, fstrm); |
| 1867 | ret = fcgi_strm_send_empty_record(fconn, fstrm, FCGI_PARAMS); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1868 | if (ret) { |
| 1869 | fstrm->flags |= FCGI_SF_EP_SENT; |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1870 | TRACE_PROTO("FCGI PARAMS record xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, 0, (size_t[]){0}); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1871 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1872 | return ret; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1873 | } |
| 1874 | |
| 1875 | /* Sends an empty STDIN record. It relies on fcgi_strm_send_empty_record(). It |
| 1876 | * marks the end of input. On success, all the request was successfully sent. |
| 1877 | */ |
| 1878 | static int fcgi_strm_send_empty_stdin(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 1879 | { |
| 1880 | int ret; |
| 1881 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1882 | TRACE_POINT(FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN|FCGI_EV_TX_EOI, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1883 | ret = fcgi_strm_send_empty_record(fconn, fstrm, FCGI_STDIN); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1884 | if (ret) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1885 | fstrm->flags |= FCGI_SF_ES_SENT; |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1886 | TRACE_PROTO("FCGI STDIN record xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, 0, (size_t[]){0}); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1887 | TRACE_USER("FCGI request fully xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN|FCGI_EV_TX_EOI, fconn->conn, fstrm); |
| 1888 | TRACE_STATE("stdin data fully sent", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN|FCGI_EV_TX_EOI, fconn->conn, fstrm); |
| 1889 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1890 | return ret; |
| 1891 | } |
| 1892 | |
| 1893 | /* Sends an ABORT_REQUEST record. It relies on fcgi_strm_send_empty_record(). It |
| 1894 | * stops the request processing. |
| 1895 | */ |
| 1896 | static int fcgi_strm_send_abort(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 1897 | { |
| 1898 | int ret; |
| 1899 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1900 | TRACE_POINT(FCGI_EV_TX_RECORD|FCGI_EV_TX_ABORT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1901 | ret = fcgi_strm_send_empty_record(fconn, fstrm, FCGI_ABORT_REQUEST); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1902 | if (ret) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1903 | fstrm->flags |= FCGI_SF_ABRT_SENT; |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1904 | TRACE_PROTO("FCGI ABORT record xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_ABORT, fconn->conn, fstrm, 0, (size_t[]){0}); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1905 | TRACE_USER("FCGI request aborted", FCGI_EV_TX_RECORD|FCGI_EV_TX_ABORT, fconn->conn, fstrm); |
| 1906 | TRACE_STATE("abort sent", FCGI_EV_TX_RECORD|FCGI_EV_TX_ABORT, fconn->conn, fstrm); |
| 1907 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1908 | return ret; |
| 1909 | } |
| 1910 | |
| 1911 | /* Sends a PARAMS record. Returns > 0 on success, 0 if it couldn't do |
| 1912 | * anything. If there are too much K/V params to be encoded in a PARAMS record, |
| 1913 | * several records are sent. However, a K/V param cannot be split between 2 |
| 1914 | * records. |
| 1915 | */ |
| 1916 | static size_t fcgi_strm_send_params(struct fcgi_conn *fconn, struct fcgi_strm *fstrm, |
| 1917 | struct htx *htx) |
| 1918 | { |
| 1919 | struct buffer outbuf; |
| 1920 | struct buffer *mbuf; |
| 1921 | struct htx_blk *blk; |
| 1922 | struct htx_sl *sl = NULL; |
| 1923 | struct fcgi_strm_params params; |
| 1924 | size_t total = 0; |
| 1925 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1926 | TRACE_ENTER(FCGI_EV_TX_RECORD|FCGI_EV_TX_PARAMS, fconn->conn, fstrm, htx); |
| 1927 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1928 | memset(¶ms, 0, sizeof(params)); |
| 1929 | params.p = get_trash_chunk(); |
| 1930 | |
| 1931 | mbuf = br_tail(fconn->mbuf); |
| 1932 | retry: |
| 1933 | if (!fcgi_get_buf(fconn, mbuf)) { |
| 1934 | fconn->flags |= FCGI_CF_MUX_MALLOC; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 1935 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
| 1936 | TRACE_STATE("waiting for fconn mbuf ring allocation", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn, fstrm); |
| 1937 | goto end; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1938 | } |
| 1939 | |
| 1940 | while (1) { |
| 1941 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1942 | if (outbuf.size >= FCGI_RECORD_HEADER_SZ || !b_space_wraps(mbuf)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1943 | break; |
| 1944 | realign_again: |
| 1945 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
| 1946 | } |
| 1947 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1948 | if (outbuf.size < FCGI_RECORD_HEADER_SZ) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1949 | goto full; |
| 1950 | |
| 1951 | /* vsn: 1(FCGI_VERSION), type: (4)FCGI_PARAMS, id: fstrm->id, |
| 1952 | * len: 0x0000 (fill later), padding: 0x00, rsv: 0x00 */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1953 | memcpy(outbuf.area, "\x01\x04\x00\x00\x00\x00\x00\x00", FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1954 | fcgi_set_record_id(outbuf.area, fstrm->id); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1955 | outbuf.data = FCGI_RECORD_HEADER_SZ; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 1956 | |
| 1957 | blk = htx_get_head_blk(htx); |
| 1958 | while (blk) { |
| 1959 | enum htx_blk_type type; |
| 1960 | uint32_t size = htx_get_blksz(blk); |
| 1961 | struct fcgi_param p; |
| 1962 | |
| 1963 | type = htx_get_blk_type(blk); |
| 1964 | switch (type) { |
| 1965 | case HTX_BLK_REQ_SL: |
| 1966 | sl = htx_get_blk_ptr(htx, blk); |
| 1967 | if (sl->info.req.meth == HTTP_METH_HEAD) |
| 1968 | fstrm->h1m.flags |= H1_MF_METH_HEAD; |
| 1969 | if (sl->flags & HTX_SL_F_VER_11) |
| 1970 | fstrm->h1m.flags |= H1_MF_VER_11; |
| 1971 | break; |
| 1972 | |
| 1973 | case HTX_BLK_HDR: |
| 1974 | p.n = htx_get_blk_name(htx, blk); |
| 1975 | p.v = htx_get_blk_value(htx, blk); |
| 1976 | |
| 1977 | if (istmatch(p.n, ist(":fcgi-"))) { |
| 1978 | p.n.ptr += 6; |
| 1979 | p.n.len -= 6; |
| 1980 | if (isteq(p.n, ist("gateway_interface"))) |
| 1981 | params.mask |= FCGI_SP_CGI_GATEWAY; |
| 1982 | else if (isteq(p.n, ist("document_root"))) { |
| 1983 | params.mask |= FCGI_SP_DOC_ROOT; |
| 1984 | params.docroot = p.v; |
| 1985 | } |
| 1986 | else if (isteq(p.n, ist("script_name"))) { |
| 1987 | params.mask |= FCGI_SP_SCRIPT_NAME; |
| 1988 | params.scriptname = p.v; |
| 1989 | } |
| 1990 | else if (isteq(p.n, ist("path_info"))) { |
| 1991 | params.mask |= FCGI_SP_PATH_INFO; |
| 1992 | params.pathinfo = p.v; |
| 1993 | } |
| 1994 | else if (isteq(p.n, ist("request_uri"))) { |
| 1995 | params.mask |= FCGI_SP_REQ_URI; |
| 1996 | params.uri = p.v; |
| 1997 | } |
| 1998 | else if (isteq(p.n, ist("request_meth"))) |
| 1999 | params.mask |= FCGI_SP_REQ_METH; |
| 2000 | else if (isteq(p.n, ist("query_string"))) |
| 2001 | params.mask |= FCGI_SP_REQ_QS; |
| 2002 | else if (isteq(p.n, ist("server_name"))) |
| 2003 | params.mask |= FCGI_SP_SRV_NAME; |
| 2004 | else if (isteq(p.n, ist("server_port"))) |
| 2005 | params.mask |= FCGI_SP_SRV_PORT; |
| 2006 | else if (isteq(p.n, ist("server_protocol"))) |
| 2007 | params.mask |= FCGI_SP_SRV_PROTO; |
| 2008 | else if (isteq(p.n, ist("remote_addr"))) |
| 2009 | params.mask |= FCGI_SP_REM_ADDR; |
| 2010 | else if (isteq(p.n, ist("remote_port"))) |
| 2011 | params.mask |= FCGI_SP_REM_PORT; |
| 2012 | else if (isteq(p.n, ist("script_filename"))) |
| 2013 | params.mask |= FCGI_SP_SCRIPT_FILE; |
| 2014 | else if (isteq(p.n, ist("path_translated"))) |
| 2015 | params.mask |= FCGI_SP_PATH_TRANS; |
| 2016 | else if (isteq(p.n, ist("https"))) |
| 2017 | params.mask |= FCGI_SP_HTTPS; |
Christopher Faulet | b2a5029 | 2021-06-11 13:34:42 +0200 | [diff] [blame] | 2018 | else if (isteq(p.n, ist("server_software"))) |
| 2019 | params.mask |= FCGI_SP_SRV_SOFT; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2020 | } |
| 2021 | else if (isteq(p.n, ist("content-length"))) { |
| 2022 | p.n = ist("CONTENT_LENGTH"); |
| 2023 | params.mask |= FCGI_SP_CONT_LEN; |
| 2024 | } |
| 2025 | else if (isteq(p.n, ist("content-type"))) |
| 2026 | p.n = ist("CONTENT_TYPE"); |
| 2027 | else { |
| 2028 | if (isteq(p.n, ist("host"))) |
| 2029 | params.srv_name = p.v; |
Christopher Faulet | f9bb8d0 | 2021-09-28 10:56:36 +0200 | [diff] [blame] | 2030 | else if (isteq(p.n, ist("te"))) { |
| 2031 | /* "te" may only be sent with "trailers" if this value |
| 2032 | * is present, otherwise it must be deleted. |
| 2033 | */ |
| 2034 | p.v = istist(p.v, ist("trailers")); |
| 2035 | if (!isttest(p.v) || (p.v.len > 8 && p.v.ptr[8] != ',')) |
| 2036 | break; |
| 2037 | p.v = ist("trailers"); |
| 2038 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2039 | |
Christopher Faulet | 67d5809 | 2019-10-02 10:51:38 +0200 | [diff] [blame] | 2040 | /* Skip header if same name is used to add the server name */ |
| 2041 | if (fconn->proxy->server_id_hdr_name && |
| 2042 | isteq(p.n, ist2(fconn->proxy->server_id_hdr_name, fconn->proxy->server_id_hdr_len))) |
| 2043 | break; |
| 2044 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2045 | memcpy(trash.area, "http_", 5); |
| 2046 | memcpy(trash.area+5, p.n.ptr, p.n.len); |
| 2047 | p.n = ist2(trash.area, p.n.len+5); |
| 2048 | } |
| 2049 | |
| 2050 | if (!fcgi_encode_param(&outbuf, &p)) { |
| 2051 | if (b_space_wraps(mbuf)) |
| 2052 | goto realign_again; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2053 | if (outbuf.data == FCGI_RECORD_HEADER_SZ) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2054 | goto full; |
| 2055 | goto done; |
| 2056 | } |
| 2057 | break; |
| 2058 | |
| 2059 | case HTX_BLK_EOH: |
Christopher Faulet | 72ba6cd | 2019-09-24 16:20:05 +0200 | [diff] [blame] | 2060 | if (fconn->proxy->server_id_hdr_name) { |
| 2061 | struct server *srv = objt_server(fconn->conn->target); |
| 2062 | |
| 2063 | if (!srv) |
| 2064 | goto done; |
| 2065 | |
| 2066 | memcpy(trash.area, "http_", 5); |
| 2067 | memcpy(trash.area+5, fconn->proxy->server_id_hdr_name, fconn->proxy->server_id_hdr_len); |
| 2068 | p.n = ist2(trash.area, fconn->proxy->server_id_hdr_len+5); |
| 2069 | p.v = ist(srv->id); |
| 2070 | |
| 2071 | if (!fcgi_encode_param(&outbuf, &p)) { |
| 2072 | if (b_space_wraps(mbuf)) |
| 2073 | goto realign_again; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2074 | if (outbuf.data == FCGI_RECORD_HEADER_SZ) |
Christopher Faulet | 72ba6cd | 2019-09-24 16:20:05 +0200 | [diff] [blame] | 2075 | goto full; |
| 2076 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2077 | TRACE_STATE("add server name header", FCGI_EV_TX_RECORD|FCGI_EV_TX_PARAMS, fconn->conn, fstrm); |
Christopher Faulet | 72ba6cd | 2019-09-24 16:20:05 +0200 | [diff] [blame] | 2078 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2079 | goto done; |
| 2080 | |
| 2081 | default: |
| 2082 | break; |
| 2083 | } |
| 2084 | total += size; |
| 2085 | blk = htx_remove_blk(htx, blk); |
| 2086 | } |
| 2087 | |
| 2088 | done: |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2089 | if (!fcgi_set_default_param(fconn, fstrm, htx, sl, ¶ms)) { |
| 2090 | TRACE_ERROR("error setting default params", FCGI_EV_TX_RECORD|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2091 | goto error; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2092 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2093 | |
| 2094 | if (!fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_CGI_GATEWAY) || |
| 2095 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_DOC_ROOT) || |
| 2096 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_SCRIPT_NAME) || |
| 2097 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_PATH_INFO) || |
| 2098 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_REQ_URI) || |
| 2099 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_REQ_METH) || |
| 2100 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_REQ_QS) || |
| 2101 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_SRV_NAME) || |
| 2102 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_SRV_PORT) || |
| 2103 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_SRV_PROTO) || |
| 2104 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_REM_ADDR) || |
| 2105 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_REM_PORT) || |
| 2106 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_SCRIPT_FILE) || |
| 2107 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_PATH_TRANS) || |
| 2108 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_CONT_LEN) || |
Christopher Faulet | b2a5029 | 2021-06-11 13:34:42 +0200 | [diff] [blame] | 2109 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_SRV_SOFT) || |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2110 | !fcgi_encode_default_param(fconn, fstrm, ¶ms, &outbuf, FCGI_SP_HTTPS)) { |
| 2111 | TRACE_ERROR("error encoding default params", FCGI_EV_TX_RECORD|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2112 | goto error; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2113 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2114 | |
| 2115 | /* update the record's size */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2116 | TRACE_PROTO("FCGI PARAMS record xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_PARAMS, fconn->conn, fstrm, 0, (size_t[]){outbuf.data - FCGI_RECORD_HEADER_SZ}); |
| 2117 | fcgi_set_record_size(outbuf.area, outbuf.data - FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2118 | b_add(mbuf, outbuf.data); |
| 2119 | |
| 2120 | end: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2121 | TRACE_LEAVE(FCGI_EV_TX_RECORD|FCGI_EV_TX_PARAMS, fconn->conn, fstrm, htx, (size_t[]){total}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2122 | return total; |
| 2123 | full: |
| 2124 | if ((mbuf = br_tail_add(fconn->mbuf)) != NULL) |
| 2125 | goto retry; |
| 2126 | fconn->flags |= FCGI_CF_MUX_MFULL; |
| 2127 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2128 | TRACE_STATE("mbuf ring full", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2129 | if (total) |
| 2130 | goto error; |
| 2131 | goto end; |
| 2132 | |
| 2133 | error: |
| 2134 | htx->flags |= HTX_FL_PROCESSING_ERROR; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2135 | TRACE_ERROR("processing error sending PARAMS record", FCGI_EV_TX_RECORD|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2136 | fcgi_strm_error(fstrm); |
| 2137 | goto end; |
| 2138 | } |
| 2139 | |
| 2140 | /* Sends a STDIN record. Returns > 0 on success, 0 if it couldn't do |
| 2141 | * anything. STDIN records contain the request body. |
| 2142 | */ |
| 2143 | static size_t fcgi_strm_send_stdin(struct fcgi_conn *fconn, struct fcgi_strm *fstrm, |
| 2144 | struct htx *htx, size_t count, struct buffer *buf) |
| 2145 | { |
| 2146 | struct buffer outbuf; |
| 2147 | struct buffer *mbuf; |
| 2148 | struct htx_blk *blk; |
| 2149 | enum htx_blk_type type; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2150 | uint32_t size, extra_bytes; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2151 | size_t total = 0; |
| 2152 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2153 | extra_bytes = 0; |
| 2154 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2155 | TRACE_ENTER(FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, htx, (size_t[]){count}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2156 | if (!count) |
| 2157 | goto end; |
| 2158 | |
| 2159 | mbuf = br_tail(fconn->mbuf); |
| 2160 | retry: |
| 2161 | if (!fcgi_get_buf(fconn, mbuf)) { |
| 2162 | fconn->flags |= FCGI_CF_MUX_MALLOC; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2163 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
| 2164 | TRACE_STATE("waiting for fconn mbuf ring allocation", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn, fstrm); |
| 2165 | goto end; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2166 | } |
| 2167 | |
| 2168 | /* Perform some optimizations to reduce the number of buffer copies. |
| 2169 | * First, if the mux's buffer is empty and the htx area contains exactly |
| 2170 | * one data block of the same size as the requested count, and this |
| 2171 | * count fits within the record size, then it's possible to simply swap |
| 2172 | * the caller's buffer with the mux's output buffer and adjust offsets |
| 2173 | * and length to match the entire DATA HTX block in the middle. In this |
| 2174 | * case we perform a true zero-copy operation from end-to-end. This is |
| 2175 | * the situation that happens all the time with large files. Second, if |
| 2176 | * this is not possible, but the mux's output buffer is empty, we still |
| 2177 | * have an opportunity to avoid the copy to the intermediary buffer, by |
| 2178 | * making the intermediary buffer's area point to the output buffer's |
| 2179 | * area. In this case we want to skip the HTX header to make sure that |
| 2180 | * copies remain aligned and that this operation remains possible all |
| 2181 | * the time. This goes for headers, data blocks and any data extracted |
| 2182 | * from the HTX blocks. |
| 2183 | */ |
| 2184 | blk = htx_get_head_blk(htx); |
| 2185 | if (!blk) |
| 2186 | goto end; |
| 2187 | type = htx_get_blk_type(blk); |
| 2188 | size = htx_get_blksz(blk); |
| 2189 | if (unlikely(size == count && htx_nbblks(htx) == 1 && type == HTX_BLK_DATA)) { |
| 2190 | void *old_area = mbuf->area; |
| 2191 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2192 | /* Last block of the message: Reserve the size for the empty stdin record */ |
| 2193 | if (htx->flags & HTX_FL_EOM) |
| 2194 | extra_bytes = FCGI_RECORD_HEADER_SZ; |
| 2195 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2196 | if (b_data(mbuf)) { |
| 2197 | /* Too bad there are data left there. We're willing to memcpy/memmove |
| 2198 | * up to 1/4 of the buffer, which means that it's OK to copy a large |
| 2199 | * record into a buffer containing few data if it needs to be realigned, |
| 2200 | * and that it's also OK to copy few data without realigning. Otherwise |
| 2201 | * we'll pretend the mbuf is full and wait for it to become empty. |
| 2202 | */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2203 | if (size + FCGI_RECORD_HEADER_SZ + extra_bytes <= b_room(mbuf) && |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2204 | (b_data(mbuf) <= b_size(mbuf) / 4 || |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2205 | (size <= b_size(mbuf) / 4 && size + FCGI_RECORD_HEADER_SZ + extra_bytes <= b_contig_space(mbuf)))) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2206 | goto copy; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2207 | goto full; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2208 | } |
| 2209 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2210 | TRACE_PROTO("sending stding data (zero-copy)", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, htx, (size_t[]){size}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2211 | /* map a FCGI record to the HTX block so that we can put the |
| 2212 | * record header there. |
| 2213 | */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2214 | *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - FCGI_RECORD_HEADER_SZ, size + FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2215 | outbuf.area = b_head(mbuf); |
| 2216 | |
| 2217 | /* prepend a FCGI record header just before the DATA block */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2218 | memcpy(outbuf.area, "\x01\x05\x00\x00\x00\x00\x00\x00", FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2219 | fcgi_set_record_id(outbuf.area, fstrm->id); |
| 2220 | fcgi_set_record_size(outbuf.area, size); |
| 2221 | |
| 2222 | /* and exchange with our old area */ |
| 2223 | buf->area = old_area; |
| 2224 | buf->data = buf->head = 0; |
| 2225 | total += size; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2226 | |
| 2227 | htx = (struct htx *)buf->area; |
| 2228 | htx_reset(htx); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2229 | goto end; |
| 2230 | } |
| 2231 | |
| 2232 | copy: |
| 2233 | while (1) { |
| 2234 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2235 | if (outbuf.size >= FCGI_RECORD_HEADER_SZ + extra_bytes || !b_space_wraps(mbuf)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2236 | break; |
| 2237 | realign_again: |
| 2238 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
| 2239 | } |
| 2240 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2241 | if (outbuf.size < FCGI_RECORD_HEADER_SZ + extra_bytes) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2242 | goto full; |
| 2243 | |
| 2244 | /* vsn: 1(FCGI_VERSION), type: (5)FCGI_STDIN, id: fstrm->id, |
| 2245 | * len: 0x0000 (fill later), padding: 0x00, rsv: 0x00 */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2246 | memcpy(outbuf.area, "\x01\x05\x00\x00\x00\x00\x00\x00", FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2247 | fcgi_set_record_id(outbuf.area, fstrm->id); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2248 | outbuf.data = FCGI_RECORD_HEADER_SZ; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2249 | |
| 2250 | blk = htx_get_head_blk(htx); |
| 2251 | while (blk && count) { |
| 2252 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 2253 | uint32_t size = htx_get_blksz(blk); |
| 2254 | struct ist v; |
| 2255 | |
| 2256 | switch (type) { |
| 2257 | case HTX_BLK_DATA: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2258 | TRACE_PROTO("sending stding data", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, htx, (size_t[]){size}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2259 | v = htx_get_blk_value(htx, blk); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2260 | |
| 2261 | if (htx_is_unique_blk(htx, blk) && (htx->flags & HTX_FL_EOM)) |
| 2262 | extra_bytes = FCGI_RECORD_HEADER_SZ; /* Last block of the message */ |
| 2263 | |
| 2264 | if (v.len > count) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2265 | v.len = count; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2266 | extra_bytes = 0; |
| 2267 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2268 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2269 | if (v.len + FCGI_RECORD_HEADER_SZ + extra_bytes > b_room(&outbuf)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2270 | /* It doesn't fit at once. If it at least fits once split and |
| 2271 | * the amount of data to move is low, let's defragment the |
| 2272 | * buffer now. |
| 2273 | */ |
| 2274 | if (b_space_wraps(mbuf) && |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2275 | b_data(&outbuf) + v.len + extra_bytes <= b_room(mbuf) && |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2276 | b_data(mbuf) <= MAX_DATA_REALIGN) |
| 2277 | goto realign_again; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2278 | v.len = b_room(&outbuf) - FCGI_RECORD_HEADER_SZ - extra_bytes; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2279 | } |
| 2280 | if (!v.len || !chunk_memcat(&outbuf, v.ptr, v.len)) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2281 | if (outbuf.data == FCGI_RECORD_HEADER_SZ) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2282 | goto full; |
| 2283 | goto done; |
| 2284 | } |
| 2285 | if (v.len != size) { |
| 2286 | total += v.len; |
| 2287 | count -= v.len; |
| 2288 | htx_cut_data_blk(htx, blk, v.len); |
| 2289 | goto done; |
| 2290 | } |
| 2291 | break; |
| 2292 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2293 | default: |
| 2294 | break; |
| 2295 | } |
| 2296 | total += size; |
| 2297 | count -= size; |
| 2298 | blk = htx_remove_blk(htx, blk); |
| 2299 | } |
| 2300 | |
| 2301 | done: |
| 2302 | /* update the record's size */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2303 | TRACE_PROTO("FCGI STDIN record xferred", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, 0, (size_t[]){outbuf.data - FCGI_RECORD_HEADER_SZ}); |
| 2304 | fcgi_set_record_size(outbuf.area, outbuf.data - FCGI_RECORD_HEADER_SZ); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2305 | b_add(mbuf, outbuf.data); |
| 2306 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2307 | /* Send the empty stding here to finish the message */ |
| 2308 | if (htx_is_empty(htx) && (htx->flags & HTX_FL_EOM)) { |
| 2309 | TRACE_PROTO("sending FCGI STDIN record", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, htx); |
| 2310 | if (!fcgi_strm_send_empty_stdin(fconn, fstrm)) { |
| 2311 | /* bytes already reserved for this record. It should not fail */ |
| 2312 | htx->flags |= HTX_FL_PROCESSING_ERROR; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2313 | TRACE_ERROR("processing error sending empty STDIN record", FCGI_EV_TX_RECORD|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2314 | fcgi_strm_error(fstrm); |
| 2315 | } |
| 2316 | } |
| 2317 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2318 | end: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2319 | TRACE_LEAVE(FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, htx, (size_t[]){total}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2320 | return total; |
| 2321 | full: |
| 2322 | if ((mbuf = br_tail_add(fconn->mbuf)) != NULL) |
| 2323 | goto retry; |
| 2324 | fconn->flags |= FCGI_CF_MUX_MFULL; |
| 2325 | fstrm->flags |= FCGI_SF_BLK_MROOM; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2326 | TRACE_STATE("mbuf ring full", FCGI_EV_TX_RECORD|FCGI_EV_FSTRM_BLK|FCGI_EV_FCONN_BLK, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2327 | goto end; |
| 2328 | } |
| 2329 | |
| 2330 | /* Processes a STDOUT record. Returns > 0 on success, 0 if it couldn't do |
| 2331 | * anything. STDOUT records contain the entire response. All the content is |
| 2332 | * copied in the stream's rxbuf. The parsing will be handled in fcgi_rcv_buf(). |
| 2333 | */ |
| 2334 | static int fcgi_strm_handle_stdout(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 2335 | { |
| 2336 | struct buffer *dbuf; |
| 2337 | size_t ret; |
| 2338 | size_t max; |
| 2339 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2340 | TRACE_ENTER(FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
| 2341 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2342 | dbuf = &fconn->dbuf; |
| 2343 | |
| 2344 | /* Only padding remains */ |
| 2345 | if (fconn->state == FCGI_CS_RECORD_P) |
| 2346 | goto end_transfer; |
| 2347 | |
| 2348 | if (b_data(dbuf) < (fconn->drl + fconn->drp) && |
| 2349 | b_size(dbuf) > (fconn->drl + fconn->drp) && |
| 2350 | buf_room_for_htx_data(dbuf)) |
| 2351 | goto fail; // incomplete record |
| 2352 | |
| 2353 | if (!fcgi_get_buf(fconn, &fstrm->rxbuf)) { |
| 2354 | fconn->flags |= FCGI_CF_DEM_SALLOC; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2355 | TRACE_STATE("waiting for fstrm rxbuf allocation", FCGI_EV_RX_RECORD|FCGI_EV_FSTRM_BLK, fconn->conn, fstrm); |
| 2356 | goto fail; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2357 | } |
| 2358 | |
| 2359 | /*max = MIN(b_room(&fstrm->rxbuf), fconn->drl);*/ |
| 2360 | max = buf_room_for_htx_data(&fstrm->rxbuf); |
| 2361 | if (!b_data(&fstrm->rxbuf)) |
| 2362 | fstrm->rxbuf.head = sizeof(struct htx); |
| 2363 | if (max > fconn->drl) |
| 2364 | max = fconn->drl; |
| 2365 | |
| 2366 | ret = b_xfer(&fstrm->rxbuf, dbuf, max); |
| 2367 | if (!ret) |
| 2368 | goto fail; |
| 2369 | fconn->drl -= ret; |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2370 | TRACE_DATA("move some data to fstrm rxbuf", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm, 0, (size_t[]){ret}); |
| 2371 | TRACE_PROTO("FCGI STDOUT record rcvd", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm, 0, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2372 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2373 | if (!buf_room_for_htx_data(&fstrm->rxbuf)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2374 | fconn->flags |= FCGI_CF_DEM_SFULL; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2375 | TRACE_STATE("fstrm rxbuf full", FCGI_EV_RX_RECORD|FCGI_EV_FSTRM_BLK, fconn->conn, fstrm); |
| 2376 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2377 | |
| 2378 | if (fconn->drl) |
| 2379 | goto fail; |
| 2380 | |
| 2381 | end_transfer: |
Christopher Faulet | 6c99d3b | 2020-07-15 15:55:52 +0200 | [diff] [blame] | 2382 | fconn->state = FCGI_CS_RECORD_P; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2383 | fconn->drl += fconn->drp; |
| 2384 | fconn->drp = 0; |
| 2385 | ret = MIN(b_data(&fconn->dbuf), fconn->drl); |
| 2386 | b_del(&fconn->dbuf, ret); |
| 2387 | fconn->drl -= ret; |
| 2388 | if (fconn->drl) |
| 2389 | goto fail; |
| 2390 | |
| 2391 | fconn->state = FCGI_CS_RECORD_H; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2392 | TRACE_STATE("switching to RECORD_H", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn, fstrm); |
| 2393 | TRACE_LEAVE(FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2394 | return 1; |
| 2395 | fail: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2396 | TRACE_DEVEL("leaving on missing data or error", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2397 | return 0; |
| 2398 | } |
| 2399 | |
| 2400 | |
| 2401 | /* Processes an empty STDOUT. Returns > 0 on success, 0 if it couldn't do |
| 2402 | * anything. It only skip the padding in fact, there is no payload for such |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 2403 | * records. It marks the end of the response. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2404 | */ |
| 2405 | static int fcgi_strm_handle_empty_stdout(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 2406 | { |
| 2407 | int ret; |
| 2408 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2409 | TRACE_ENTER(FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
| 2410 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2411 | fconn->state = FCGI_CS_RECORD_P; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2412 | TRACE_STATE("switching to RECORD_P", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2413 | fconn->drl += fconn->drp; |
| 2414 | fconn->drp = 0; |
| 2415 | ret = MIN(b_data(&fconn->dbuf), fconn->drl); |
| 2416 | b_del(&fconn->dbuf, ret); |
| 2417 | fconn->drl -= ret; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2418 | if (fconn->drl) { |
| 2419 | TRACE_DEVEL("leaving on missing data or error", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2420 | return 0; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2421 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2422 | fconn->state = FCGI_CS_RECORD_H; |
Christopher Faulet | 3b3096e | 2020-07-15 16:04:49 +0200 | [diff] [blame] | 2423 | fstrm->flags |= FCGI_SF_ES_RCVD; |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2424 | TRACE_PROTO("FCGI STDOUT record rcvd", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm, 0, (size_t[]){0}); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2425 | TRACE_STATE("stdout data fully send, switching to RECORD_H", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR|FCGI_EV_RX_EOI, fconn->conn, fstrm); |
| 2426 | TRACE_LEAVE(FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2427 | return 1; |
| 2428 | } |
| 2429 | |
| 2430 | /* Processes a STDERR record. Returns > 0 on success, 0 if it couldn't do |
| 2431 | * anything. |
| 2432 | */ |
| 2433 | static int fcgi_strm_handle_stderr(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 2434 | { |
| 2435 | struct buffer *dbuf; |
| 2436 | struct buffer tag; |
| 2437 | size_t ret; |
| 2438 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2439 | TRACE_ENTER(FCGI_EV_RX_RECORD|FCGI_EV_RX_STDERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2440 | dbuf = &fconn->dbuf; |
| 2441 | |
| 2442 | /* Only padding remains */ |
Christopher Faulet | 7f85433 | 2020-07-15 15:46:30 +0200 | [diff] [blame] | 2443 | if (fconn->state == FCGI_CS_RECORD_P || !fconn->drl) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2444 | goto end_transfer; |
| 2445 | |
| 2446 | if (b_data(dbuf) < (fconn->drl + fconn->drp) && |
| 2447 | b_size(dbuf) > (fconn->drl + fconn->drp) && |
| 2448 | buf_room_for_htx_data(dbuf)) |
| 2449 | goto fail; // incomplete record |
| 2450 | |
| 2451 | chunk_reset(&trash); |
| 2452 | ret = b_xfer(&trash, dbuf, MIN(b_room(&trash), fconn->drl)); |
| 2453 | if (!ret) |
| 2454 | goto fail; |
| 2455 | fconn->drl -= ret; |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2456 | TRACE_PROTO("FCGI STDERR record rcvd", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDERR, fconn->conn, fstrm, 0, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2457 | |
| 2458 | trash.area[ret] = '\n'; |
| 2459 | trash.area[ret+1] = '\0'; |
| 2460 | tag.area = fconn->app->name; tag.data = strlen(fconn->app->name); |
Christopher Faulet | c45791a | 2019-09-24 14:30:46 +0200 | [diff] [blame] | 2461 | app_log(&fconn->app->logsrvs, &tag, LOG_ERR, "%s", trash.area); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2462 | |
| 2463 | if (fconn->drl) |
| 2464 | goto fail; |
| 2465 | |
| 2466 | end_transfer: |
Christopher Faulet | 6c99d3b | 2020-07-15 15:55:52 +0200 | [diff] [blame] | 2467 | fconn->state = FCGI_CS_RECORD_P; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2468 | fconn->drl += fconn->drp; |
| 2469 | fconn->drp = 0; |
| 2470 | ret = MIN(b_data(&fconn->dbuf), fconn->drl); |
| 2471 | b_del(&fconn->dbuf, ret); |
| 2472 | fconn->drl -= ret; |
| 2473 | if (fconn->drl) |
| 2474 | goto fail; |
| 2475 | fconn->state = FCGI_CS_RECORD_H; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2476 | TRACE_STATE("switching to RECORD_H", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn, fstrm); |
| 2477 | TRACE_LEAVE(FCGI_EV_RX_RECORD|FCGI_EV_RX_STDERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2478 | return 1; |
| 2479 | fail: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2480 | TRACE_DEVEL("leaving on missing data or error", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2481 | return 0; |
| 2482 | } |
| 2483 | |
| 2484 | /* Processes an END_REQUEST record. Returns > 0 on success, 0 if it couldn't do |
| 2485 | * anything. If the empty STDOUT record is not already received, this one marks |
| 2486 | * the end of the response. It is highly unexpected, but if the record is larger |
| 2487 | * than a buffer and cannot be decoded in one time, an error is triggered and |
| 2488 | * the connection is closed. END_REQUEST record cannot be split. |
| 2489 | */ |
| 2490 | static int fcgi_strm_handle_end_request(struct fcgi_conn *fconn, struct fcgi_strm *fstrm) |
| 2491 | { |
| 2492 | struct buffer inbuf; |
| 2493 | struct buffer *dbuf; |
| 2494 | struct fcgi_end_request endreq; |
| 2495 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2496 | TRACE_ENTER(FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2497 | dbuf = &fconn->dbuf; |
| 2498 | |
| 2499 | /* Record too large to be fully decoded */ |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2500 | if (b_size(dbuf) < (fconn->drl + fconn->drp)) { |
| 2501 | TRACE_ERROR("END_REQUEST record too large", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ|FCGI_EV_FSTRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2502 | goto fail; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2503 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2504 | |
| 2505 | /* process full record only */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2506 | if (b_data(dbuf) < (fconn->drl + fconn->drp)) { |
| 2507 | TRACE_DEVEL("leaving on missing data", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2508 | return 0; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2509 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2510 | |
| 2511 | if (unlikely(b_contig_data(dbuf, b_head_ofs(dbuf)) < fconn->drl)) { |
| 2512 | /* Realign the dmux buffer if the record wraps. It is unexpected |
| 2513 | * at this stage because it should be the first record received |
| 2514 | * from the FCGI application. |
| 2515 | */ |
| 2516 | b_slow_realign(dbuf, trash.area, 0); |
| 2517 | } |
| 2518 | |
| 2519 | inbuf = b_make(b_head(dbuf), b_data(dbuf), 0, fconn->drl); |
| 2520 | |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2521 | if (!fcgi_decode_end_request(&inbuf, 0, &endreq)) { |
| 2522 | TRACE_ERROR("END_REQUEST record decoding failure", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ|FCGI_EV_FSTRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2523 | goto fail; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2524 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2525 | |
| 2526 | fstrm->flags |= FCGI_SF_ES_RCVD; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2527 | TRACE_STATE("end of script reported", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ|FCGI_EV_RX_EOI, fconn->conn, fstrm); |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2528 | TRACE_PROTO("FCGI END_REQUEST record rcvd", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ, fconn->conn, fstrm, 0, (size_t[]){fconn->drl}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2529 | fstrm->proto_status = endreq.errcode; |
| 2530 | fcgi_strm_close(fstrm); |
| 2531 | |
| 2532 | b_del(&fconn->dbuf, fconn->drl + fconn->drp); |
| 2533 | fconn->drl = 0; |
| 2534 | fconn->drp = 0; |
| 2535 | fconn->state = FCGI_CS_RECORD_H; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2536 | TRACE_STATE("switching to RECORD_H", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn, fstrm); |
| 2537 | TRACE_LEAVE(FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2538 | return 1; |
| 2539 | |
| 2540 | fail: |
| 2541 | fcgi_strm_error(fstrm); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2542 | TRACE_DEVEL("leaving on error", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ|FCGI_EV_FSTRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2543 | return 0; |
| 2544 | } |
| 2545 | |
| 2546 | /* process Rx records to be demultiplexed */ |
| 2547 | static void fcgi_process_demux(struct fcgi_conn *fconn) |
| 2548 | { |
| 2549 | struct fcgi_strm *fstrm = NULL, *tmp_fstrm; |
| 2550 | struct fcgi_header hdr; |
| 2551 | int ret; |
| 2552 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2553 | TRACE_ENTER(FCGI_EV_FCONN_WAKE, fconn->conn); |
| 2554 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2555 | if (fconn->state == FCGI_CS_CLOSED) |
| 2556 | return; |
| 2557 | |
| 2558 | if (unlikely(fconn->state < FCGI_CS_RECORD_H)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2559 | if (fconn->state == FCGI_CS_INIT) { |
| 2560 | TRACE_STATE("waiting FCGI GET_VALUES to be sent", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR|FCGI_EV_RX_GETVAL, fconn->conn); |
| 2561 | return; |
| 2562 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2563 | if (fconn->state == FCGI_CS_SETTINGS) { |
| 2564 | /* ensure that what is pending is a valid GET_VALUES_RESULT record. */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2565 | TRACE_STATE("receiving FCGI record header", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2566 | ret = fcgi_decode_record_hdr(&fconn->dbuf, 0, &hdr); |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2567 | if (!ret) { |
| 2568 | TRACE_ERROR("header record decoding failure", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ|FCGI_EV_FSTRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2569 | goto fail; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2570 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2571 | b_del(&fconn->dbuf, ret); |
| 2572 | |
| 2573 | if (hdr.id || (hdr.type != FCGI_GET_VALUES_RESULT && hdr.type != FCGI_UNKNOWN_TYPE)) { |
| 2574 | fconn->state = FCGI_CS_CLOSED; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 2575 | TRACE_ERROR("unexpected record type or flags", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR|FCGI_EV_RX_GETVAL|FCGI_EV_FCONN_ERR, fconn->conn); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2576 | TRACE_STATE("switching to CLOSED", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR|FCGI_EV_RX_GETVAL|FCGI_EV_FCONN_ERR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2577 | goto fail; |
| 2578 | } |
| 2579 | goto new_record; |
| 2580 | } |
| 2581 | } |
| 2582 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2583 | /* process as many incoming records as possible below */ |
| 2584 | while (1) { |
| 2585 | if (!b_data(&fconn->dbuf)) { |
| 2586 | TRACE_DEVEL("no more Rx data", FCGI_EV_RX_RECORD, fconn->conn); |
| 2587 | break; |
| 2588 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2589 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2590 | if (fconn->state == FCGI_CS_CLOSED) { |
| 2591 | TRACE_STATE("end of connection reported", FCGI_EV_RX_RECORD|FCGI_EV_RX_EOI, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2592 | break; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2593 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2594 | |
| 2595 | if (fconn->state == FCGI_CS_RECORD_H) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2596 | TRACE_PROTO("receiving FCGI record header", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2597 | ret = fcgi_decode_record_hdr(&fconn->dbuf, 0, &hdr); |
| 2598 | if (!ret) |
| 2599 | break; |
| 2600 | b_del(&fconn->dbuf, ret); |
| 2601 | |
| 2602 | new_record: |
| 2603 | fconn->dsi = hdr.id; |
| 2604 | fconn->drt = hdr.type; |
| 2605 | fconn->drl = hdr.len; |
| 2606 | fconn->drp = hdr.padding; |
| 2607 | fconn->state = FCGI_CS_RECORD_D; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2608 | TRACE_STATE("FCGI record header rcvd, switching to RECORD_D", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2609 | } |
| 2610 | |
| 2611 | /* Only FCGI_CS_RECORD_D or FCGI_CS_RECORD_P */ |
| 2612 | tmp_fstrm = fcgi_conn_st_by_id(fconn, fconn->dsi); |
| 2613 | |
| 2614 | if (tmp_fstrm != fstrm && fstrm && fstrm->cs && |
| 2615 | (b_data(&fstrm->rxbuf) || |
Christopher Faulet | 6670e3e | 2020-10-08 15:26:33 +0200 | [diff] [blame] | 2616 | fcgi_conn_read0_pending(fconn) || |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2617 | fstrm->state == FCGI_SS_CLOSED || |
| 2618 | (fstrm->flags & FCGI_SF_ES_RCVD) || |
| 2619 | (fstrm->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) { |
| 2620 | /* we may have to signal the upper layers */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2621 | TRACE_DEVEL("notifying stream before switching SID", FCGI_EV_RX_RECORD|FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2622 | fstrm->cs->flags |= CS_FL_RCV_MORE; |
| 2623 | fcgi_strm_notify_recv(fstrm); |
| 2624 | } |
| 2625 | fstrm = tmp_fstrm; |
| 2626 | |
| 2627 | if (fstrm->state == FCGI_SS_CLOSED && fconn->dsi != 0) { |
| 2628 | /* ignore all record for closed streams */ |
| 2629 | goto ignore_record; |
| 2630 | } |
| 2631 | if (fstrm->state == FCGI_SS_IDLE) { |
| 2632 | /* ignore all record for unknown streams */ |
| 2633 | goto ignore_record; |
| 2634 | } |
| 2635 | |
| 2636 | switch (fconn->drt) { |
| 2637 | case FCGI_GET_VALUES_RESULT: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2638 | TRACE_PROTO("receiving FCGI GET_VALUES_RESULT record", FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2639 | ret = fcgi_conn_handle_values_result(fconn); |
| 2640 | break; |
| 2641 | |
| 2642 | case FCGI_STDOUT: |
| 2643 | if (fstrm->flags & FCGI_SF_ES_RCVD) |
| 2644 | goto ignore_record; |
| 2645 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2646 | TRACE_PROTO("receiving FCGI STDOUT record", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDOUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2647 | if (fconn->drl) |
| 2648 | ret = fcgi_strm_handle_stdout(fconn, fstrm); |
| 2649 | else |
| 2650 | ret = fcgi_strm_handle_empty_stdout(fconn, fstrm); |
| 2651 | break; |
| 2652 | |
| 2653 | case FCGI_STDERR: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2654 | TRACE_PROTO("receiving FCGI STDERR record", FCGI_EV_RX_RECORD|FCGI_EV_RX_STDERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2655 | ret = fcgi_strm_handle_stderr(fconn, fstrm); |
| 2656 | break; |
| 2657 | |
| 2658 | case FCGI_END_REQUEST: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2659 | TRACE_PROTO("receiving FCGI END_REQUEST record", FCGI_EV_RX_RECORD|FCGI_EV_RX_ENDREQ, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2660 | ret = fcgi_strm_handle_end_request(fconn, fstrm); |
| 2661 | break; |
| 2662 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2663 | /* implement all extra record types here */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2664 | default: |
| 2665 | ignore_record: |
| 2666 | /* drop records that we ignore. They may be |
| 2667 | * larger than the buffer so we drain all of |
| 2668 | * their contents until we reach the end. |
| 2669 | */ |
| 2670 | fconn->state = FCGI_CS_RECORD_P; |
| 2671 | fconn->drl += fconn->drp; |
| 2672 | fconn->drp = 0; |
| 2673 | ret = MIN(b_data(&fconn->dbuf), fconn->drl); |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2674 | TRACE_PROTO("receiving FCGI ignored record", FCGI_EV_RX_RECORD, fconn->conn, fstrm, 0, (size_t[]){ret}); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2675 | TRACE_STATE("switching to RECORD_P", FCGI_EV_RX_RECORD, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2676 | b_del(&fconn->dbuf, ret); |
| 2677 | fconn->drl -= ret; |
| 2678 | ret = (fconn->drl == 0); |
| 2679 | } |
| 2680 | |
| 2681 | /* error or missing data condition met above ? */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2682 | if (ret <= 0) { |
| 2683 | TRACE_DEVEL("insufficient data to proceed", FCGI_EV_RX_RECORD, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2684 | break; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2685 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2686 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2687 | if (fconn->state != FCGI_CS_RECORD_H && !(fconn->drl+fconn->drp)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2688 | fconn->state = FCGI_CS_RECORD_H; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2689 | TRACE_STATE("switching to RECORD_H", FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn); |
| 2690 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2691 | } |
| 2692 | |
| 2693 | fail: |
| 2694 | /* we can go here on missing data, blocked response or error */ |
| 2695 | if (fstrm && fstrm->cs && |
| 2696 | (b_data(&fstrm->rxbuf) || |
Christopher Faulet | 6670e3e | 2020-10-08 15:26:33 +0200 | [diff] [blame] | 2697 | fcgi_conn_read0_pending(fconn) || |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2698 | fstrm->state == FCGI_SS_CLOSED || |
| 2699 | (fstrm->flags & FCGI_SF_ES_RCVD) || |
| 2700 | (fstrm->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) { |
| 2701 | /* we may have to signal the upper layers */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2702 | TRACE_DEVEL("notifying stream before switching SID", FCGI_EV_RX_RECORD|FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2703 | fstrm->cs->flags |= CS_FL_RCV_MORE; |
| 2704 | fcgi_strm_notify_recv(fstrm); |
| 2705 | } |
| 2706 | |
| 2707 | fcgi_conn_restart_reading(fconn, 0); |
| 2708 | } |
| 2709 | |
| 2710 | /* process Tx records from streams to be multiplexed. Returns > 0 if it reached |
| 2711 | * the end. |
| 2712 | */ |
| 2713 | static int fcgi_process_mux(struct fcgi_conn *fconn) |
| 2714 | { |
| 2715 | struct fcgi_strm *fstrm, *fstrm_back; |
| 2716 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2717 | TRACE_ENTER(FCGI_EV_FCONN_WAKE, fconn->conn); |
| 2718 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2719 | if (unlikely(fconn->state < FCGI_CS_RECORD_H)) { |
| 2720 | if (unlikely(fconn->state == FCGI_CS_INIT)) { |
| 2721 | if (!(fconn->flags & FCGI_CF_GET_VALUES)) { |
| 2722 | fconn->state = FCGI_CS_RECORD_H; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2723 | TRACE_STATE("switching to RECORD_H", FCGI_EV_TX_RECORD|FCGI_EV_RX_RECORD|FCGI_EV_RX_FHDR, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2724 | fcgi_wake_unassigned_streams(fconn); |
| 2725 | goto mux; |
| 2726 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2727 | TRACE_PROTO("sending FCGI GET_VALUES record", FCGI_EV_TX_RECORD|FCGI_EV_TX_GETVAL, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2728 | if (unlikely(!fcgi_conn_send_get_values(fconn))) |
| 2729 | goto fail; |
| 2730 | fconn->state = FCGI_CS_SETTINGS; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2731 | TRACE_STATE("switching to SETTINGS", FCGI_EV_TX_RECORD|FCGI_EV_RX_RECORD|FCGI_EV_RX_GETVAL, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2732 | } |
| 2733 | /* need to wait for the other side */ |
| 2734 | if (fconn->state < FCGI_CS_RECORD_H) |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2735 | goto done; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2736 | } |
| 2737 | |
| 2738 | mux: |
| 2739 | list_for_each_entry_safe(fstrm, fstrm_back, &fconn->send_list, send_list) { |
| 2740 | if (fconn->state == FCGI_CS_CLOSED || fconn->flags & FCGI_CF_MUX_BLOCK_ANY) |
| 2741 | break; |
| 2742 | |
Willy Tarreau | f11be0e | 2020-01-16 16:59:45 +0100 | [diff] [blame] | 2743 | if (fstrm->flags & FCGI_SF_NOTIFIED) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2744 | continue; |
| 2745 | |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2746 | /* If the sender changed his mind and unsubscribed, let's just |
| 2747 | * remove the stream from the send_list. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2748 | */ |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 2749 | if (!(fstrm->flags & (FCGI_SF_WANT_SHUTR|FCGI_SF_WANT_SHUTW)) && |
| 2750 | (!fstrm->subs || !(fstrm->subs->events & SUB_RETRY_SEND))) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2751 | LIST_DEL_INIT(&fstrm->send_list); |
| 2752 | continue; |
| 2753 | } |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 2754 | |
| 2755 | if (fstrm->subs && fstrm->subs->events & SUB_RETRY_SEND) { |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2756 | TRACE_POINT(FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
| 2757 | fstrm->flags &= ~FCGI_SF_BLK_ANY; |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2758 | fstrm->flags |= FCGI_SF_NOTIFIED; |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 2759 | tasklet_wakeup(fstrm->subs->tasklet); |
| 2760 | fstrm->subs->events &= ~SUB_RETRY_SEND; |
| 2761 | if (!fstrm->subs->events) |
| 2762 | fstrm->subs = NULL; |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2763 | } else { |
| 2764 | /* it's the shut request that was queued */ |
| 2765 | TRACE_POINT(FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
| 2766 | tasklet_wakeup(fstrm->shut_tl); |
| 2767 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2768 | } |
| 2769 | |
| 2770 | fail: |
| 2771 | if (fconn->state == FCGI_CS_CLOSED) { |
| 2772 | if (fconn->stream_cnt - fconn->nb_reserved > 0) { |
| 2773 | fcgi_conn_send_aborts(fconn); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2774 | if (fconn->flags & FCGI_CF_MUX_BLOCK_ANY) { |
| 2775 | TRACE_DEVEL("leaving in blocked situation", FCGI_EV_FCONN_WAKE|FCGI_EV_FCONN_BLK, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2776 | return 0; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2777 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2778 | } |
| 2779 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2780 | |
| 2781 | done: |
| 2782 | TRACE_LEAVE(FCGI_EV_FCONN_WAKE, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2783 | return 1; |
| 2784 | } |
| 2785 | |
| 2786 | |
| 2787 | /* Attempt to read data, and subscribe if none available. |
| 2788 | * The function returns 1 if data has been received, otherwise zero. |
| 2789 | */ |
| 2790 | static int fcgi_recv(struct fcgi_conn *fconn) |
| 2791 | { |
| 2792 | struct connection *conn = fconn->conn; |
| 2793 | struct buffer *buf; |
| 2794 | int max; |
| 2795 | size_t ret; |
| 2796 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2797 | TRACE_ENTER(FCGI_EV_FCONN_RECV, conn); |
| 2798 | |
| 2799 | if (fconn->wait_event.events & SUB_RETRY_RECV) { |
| 2800 | TRACE_DEVEL("leaving on sub_recv", FCGI_EV_FCONN_RECV, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2801 | return (b_data(&fconn->dbuf)); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2802 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2803 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2804 | if (!fcgi_recv_allowed(fconn)) { |
| 2805 | TRACE_DEVEL("leaving on !recv_allowed", FCGI_EV_FCONN_RECV, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2806 | return 1; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2807 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2808 | |
| 2809 | buf = fcgi_get_buf(fconn, &fconn->dbuf); |
| 2810 | if (!buf) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2811 | TRACE_DEVEL("waiting for fconn dbuf allocation", FCGI_EV_FCONN_RECV|FCGI_EV_FCONN_BLK, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2812 | fconn->flags |= FCGI_CF_DEM_DALLOC; |
| 2813 | return 0; |
| 2814 | } |
| 2815 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2816 | if (!b_data(buf)) { |
| 2817 | /* try to pre-align the buffer like the |
| 2818 | * rxbufs will be to optimize memory copies. We'll make |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2819 | * sure that the record header lands at the end of the |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2820 | * HTX block to alias it upon recv. We cannot use the |
| 2821 | * head because rcv_buf() will realign the buffer if |
| 2822 | * it's empty. Thus we cheat and pretend we already |
| 2823 | * have a few bytes there. |
| 2824 | */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2825 | max = buf_room_for_htx_data(buf) + (fconn->state == FCGI_CS_RECORD_H ? FCGI_RECORD_HEADER_SZ : 0); |
| 2826 | buf->head = sizeof(struct htx) - (fconn->state == FCGI_CS_RECORD_H ? FCGI_RECORD_HEADER_SZ : 0); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2827 | } |
| 2828 | else |
| 2829 | max = buf_room_for_htx_data(buf); |
| 2830 | |
| 2831 | ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0; |
| 2832 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2833 | if (max && !ret && fcgi_recv_allowed(fconn)) { |
| 2834 | TRACE_DATA("failed to receive data, subscribing", FCGI_EV_FCONN_RECV, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2835 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &fconn->wait_event); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2836 | } |
| 2837 | else |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2838 | TRACE_DATA("recv data", FCGI_EV_FCONN_RECV, conn, 0, 0, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2839 | |
| 2840 | if (!b_data(buf)) { |
| 2841 | fcgi_release_buf(fconn, &fconn->dbuf); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2842 | TRACE_LEAVE(FCGI_EV_FCONN_RECV, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2843 | return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn)); |
| 2844 | } |
| 2845 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2846 | if (ret == max) { |
| 2847 | TRACE_DEVEL("fconn dbuf full", FCGI_EV_FCONN_RECV|FCGI_EV_FCONN_BLK, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2848 | fconn->flags |= FCGI_CF_DEM_DFULL; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2849 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2850 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2851 | TRACE_LEAVE(FCGI_EV_FCONN_RECV, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2852 | return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn); |
| 2853 | } |
| 2854 | |
| 2855 | |
| 2856 | /* Try to send data if possible. |
| 2857 | * The function returns 1 if data have been sent, otherwise zero. |
| 2858 | */ |
| 2859 | static int fcgi_send(struct fcgi_conn *fconn) |
| 2860 | { |
| 2861 | struct connection *conn = fconn->conn; |
| 2862 | int done; |
| 2863 | int sent = 0; |
| 2864 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2865 | TRACE_ENTER(FCGI_EV_FCONN_SEND, conn); |
| 2866 | |
| 2867 | if (conn->flags & CO_FL_ERROR) { |
| 2868 | TRACE_DEVEL("leaving on connection error", FCGI_EV_FCONN_SEND, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2869 | return 1; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2870 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2871 | |
| 2872 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 2873 | if (conn->flags & CO_FL_WAIT_XPRT) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2874 | /* a handshake was requested */ |
| 2875 | goto schedule; |
| 2876 | } |
| 2877 | |
| 2878 | /* This loop is quite simple : it tries to fill as much as it can from |
| 2879 | * pending streams into the existing buffer until it's reportedly full |
| 2880 | * or the end of send requests is reached. Then it tries to send this |
| 2881 | * buffer's contents out, marks it not full if at least one byte could |
| 2882 | * be sent, and tries again. |
| 2883 | * |
| 2884 | * The snd_buf() function normally takes a "flags" argument which may |
| 2885 | * be made of a combination of CO_SFL_MSG_MORE to indicate that more |
| 2886 | * data immediately comes and CO_SFL_STREAMER to indicate that the |
| 2887 | * connection is streaming lots of data (used to increase TLS record |
| 2888 | * size at the expense of latency). The former can be sent any time |
| 2889 | * there's a buffer full flag, as it indicates at least one stream |
| 2890 | * attempted to send and failed so there are pending data. An |
| 2891 | * alternative would be to set it as long as there's an active stream |
| 2892 | * but that would be problematic for ACKs until we have an absolute |
| 2893 | * guarantee that all waiters have at least one byte to send. The |
| 2894 | * latter should possibly not be set for now. |
| 2895 | */ |
| 2896 | |
| 2897 | done = 0; |
| 2898 | while (!done) { |
| 2899 | unsigned int flags = 0; |
| 2900 | unsigned int released = 0; |
| 2901 | struct buffer *buf; |
| 2902 | |
| 2903 | /* fill as much as we can into the current buffer */ |
| 2904 | while (((fconn->flags & (FCGI_CF_MUX_MFULL|FCGI_CF_MUX_MALLOC)) == 0) && !done) |
| 2905 | done = fcgi_process_mux(fconn); |
| 2906 | |
| 2907 | if (fconn->flags & FCGI_CF_MUX_MALLOC) |
| 2908 | done = 1; // we won't go further without extra buffers |
| 2909 | |
| 2910 | if (conn->flags & CO_FL_ERROR) |
| 2911 | break; |
| 2912 | |
| 2913 | if (fconn->flags & (FCGI_CF_MUX_MFULL | FCGI_CF_DEM_MROOM)) |
| 2914 | flags |= CO_SFL_MSG_MORE; |
| 2915 | |
| 2916 | for (buf = br_head(fconn->mbuf); b_size(buf); buf = br_del_head(fconn->mbuf)) { |
| 2917 | if (b_data(buf)) { |
| 2918 | int ret; |
| 2919 | |
| 2920 | ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags); |
| 2921 | if (!ret) { |
| 2922 | done = 1; |
| 2923 | break; |
| 2924 | } |
| 2925 | sent = 1; |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2926 | TRACE_DATA("send data", FCGI_EV_FCONN_SEND, conn, 0, 0, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2927 | b_del(buf, ret); |
| 2928 | if (b_data(buf)) { |
| 2929 | done = 1; |
| 2930 | break; |
| 2931 | } |
| 2932 | } |
| 2933 | b_free(buf); |
| 2934 | released++; |
| 2935 | } |
| 2936 | |
| 2937 | if (released) |
Willy Tarreau | 4d77bbf | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 2938 | offer_buffers(NULL, released); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2939 | |
| 2940 | /* wrote at least one byte, the buffer is not full anymore */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2941 | if (fconn->flags & (FCGI_CF_MUX_MFULL | FCGI_CF_DEM_MROOM)) |
| 2942 | TRACE_STATE("fconn mbuf ring not fill anymore", FCGI_EV_FCONN_SEND|FCGI_EV_FCONN_BLK, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2943 | fconn->flags &= ~(FCGI_CF_MUX_MFULL | FCGI_CF_DEM_MROOM); |
| 2944 | } |
| 2945 | |
| 2946 | if (conn->flags & CO_FL_SOCK_WR_SH) { |
| 2947 | /* output closed, nothing to send, clear the buffer to release it */ |
| 2948 | b_reset(br_tail(fconn->mbuf)); |
| 2949 | } |
| 2950 | /* We're not full anymore, so we can wake any task that are waiting |
| 2951 | * for us. |
| 2952 | */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2953 | if (!(fconn->flags & (FCGI_CF_MUX_MFULL | FCGI_CF_DEM_MROOM)) && fconn->state >= FCGI_CS_RECORD_H) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2954 | struct fcgi_strm *fstrm; |
| 2955 | |
| 2956 | list_for_each_entry(fstrm, &fconn->send_list, send_list) { |
| 2957 | if (fconn->state == FCGI_CS_CLOSED || fconn->flags & FCGI_CF_MUX_BLOCK_ANY) |
| 2958 | break; |
| 2959 | |
Willy Tarreau | f11be0e | 2020-01-16 16:59:45 +0100 | [diff] [blame] | 2960 | if (fstrm->flags & FCGI_SF_NOTIFIED) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2961 | continue; |
| 2962 | |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2963 | /* If the sender changed his mind and unsubscribed, let's just |
| 2964 | * remove the stream from the send_list. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2965 | */ |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 2966 | if (!(fstrm->flags & (FCGI_SF_WANT_SHUTR|FCGI_SF_WANT_SHUTW)) && |
| 2967 | (!fstrm->subs || !(fstrm->subs->events & SUB_RETRY_SEND))) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2968 | LIST_DEL_INIT(&fstrm->send_list); |
| 2969 | continue; |
| 2970 | } |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 2971 | |
| 2972 | if (fstrm->subs && fstrm->subs->events & SUB_RETRY_SEND) { |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2973 | TRACE_DEVEL("waking up pending stream", FCGI_EV_FCONN_SEND|FCGI_EV_STRM_WAKE, conn, fstrm); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 2974 | fstrm->flags &= ~FCGI_SF_BLK_ANY; |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2975 | fstrm->flags |= FCGI_SF_NOTIFIED; |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 2976 | tasklet_wakeup(fstrm->subs->tasklet); |
| 2977 | fstrm->subs->events &= ~SUB_RETRY_SEND; |
| 2978 | if (!fstrm->subs->events) |
| 2979 | fstrm->subs = NULL; |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 2980 | } else { |
| 2981 | /* it's the shut request that was queued */ |
| 2982 | TRACE_POINT(FCGI_EV_STRM_WAKE, fconn->conn, fstrm); |
| 2983 | tasklet_wakeup(fstrm->shut_tl); |
| 2984 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2985 | } |
| 2986 | } |
| 2987 | /* We're done, no more to send */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2988 | if (!br_data(fconn->mbuf)) { |
| 2989 | TRACE_DEVEL("leaving with everything sent", FCGI_EV_FCONN_SEND, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2990 | return sent; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2991 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2992 | schedule: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2993 | if (!(conn->flags & CO_FL_ERROR) && !(fconn->wait_event.events & SUB_RETRY_SEND)) { |
| 2994 | TRACE_STATE("more data to send, subscribing", FCGI_EV_FCONN_SEND, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2995 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &fconn->wait_event); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2996 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2997 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 2998 | TRACE_DEVEL("leaving with some data left to send", FCGI_EV_FCONN_SEND, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 2999 | return sent; |
| 3000 | } |
| 3001 | |
| 3002 | /* this is the tasklet referenced in fconn->wait_event.tasklet */ |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3003 | struct task *fcgi_io_cb(struct task *t, void *ctx, unsigned int state) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3004 | { |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3005 | struct connection *conn; |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3006 | struct fcgi_conn *fconn = ctx; |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3007 | struct tasklet *tl = (struct tasklet *)t; |
| 3008 | int conn_in_list; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3009 | int ret = 0; |
| 3010 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3011 | if (state & TASK_F_USR1) { |
| 3012 | /* the tasklet was idling on an idle connection, it might have |
| 3013 | * been stolen, let's be careful! |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3014 | */ |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3015 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 3016 | if (tl->context == NULL) { |
| 3017 | /* The connection has been taken over by another thread, |
| 3018 | * we're no longer responsible for it, so just free the |
| 3019 | * tasklet, and do nothing. |
| 3020 | */ |
| 3021 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 3022 | tasklet_free(tl); |
| 3023 | return NULL; |
| 3024 | } |
| 3025 | conn = fconn->conn; |
| 3026 | TRACE_POINT(FCGI_EV_FCONN_WAKE, conn); |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3027 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3028 | conn_in_list = conn->flags & CO_FL_LIST_MASK; |
| 3029 | if (conn_in_list) |
| 3030 | conn_delete_from_tree(&conn->hash_node->node); |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3031 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3032 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 3033 | } else { |
| 3034 | /* we're certain the connection was not in an idle list */ |
| 3035 | conn = fconn->conn; |
| 3036 | TRACE_ENTER(FCGI_EV_FCONN_WAKE, conn); |
| 3037 | conn_in_list = 0; |
| 3038 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3039 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3040 | if (!(fconn->wait_event.events & SUB_RETRY_SEND)) |
| 3041 | ret = fcgi_send(fconn); |
| 3042 | if (!(fconn->wait_event.events & SUB_RETRY_RECV)) |
| 3043 | ret |= fcgi_recv(fconn); |
| 3044 | if (ret || b_data(&fconn->dbuf)) |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3045 | ret = fcgi_process(fconn); |
| 3046 | |
| 3047 | /* If we were in an idle list, we want to add it back into it, |
| 3048 | * unless fcgi_process() returned -1, which mean it has destroyed |
| 3049 | * the connection (testing !ret is enough, if fcgi_process() wasn't |
| 3050 | * called then ret will be 0 anyway. |
| 3051 | */ |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 3052 | if (ret < 0) |
| 3053 | t = NULL; |
| 3054 | |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3055 | if (!ret && conn_in_list) { |
| 3056 | struct server *srv = objt_server(conn->target); |
| 3057 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 3058 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3059 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 3060 | ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3061 | else |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 3062 | ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 3063 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3064 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 3065 | return t; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3066 | } |
| 3067 | |
| 3068 | /* callback called on any event by the connection handler. |
| 3069 | * It applies changes and returns zero, or < 0 if it wants immediate |
| 3070 | * destruction of the connection (which normally doesn not happen in FCGI). |
| 3071 | */ |
| 3072 | static int fcgi_process(struct fcgi_conn *fconn) |
| 3073 | { |
| 3074 | struct connection *conn = fconn->conn; |
| 3075 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3076 | TRACE_POINT(FCGI_EV_FCONN_WAKE, conn); |
| 3077 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3078 | if (b_data(&fconn->dbuf) && !(fconn->flags & FCGI_CF_DEM_BLOCK_ANY)) { |
| 3079 | fcgi_process_demux(fconn); |
| 3080 | |
| 3081 | if (fconn->state == FCGI_CS_CLOSED || conn->flags & CO_FL_ERROR) |
| 3082 | b_reset(&fconn->dbuf); |
| 3083 | |
| 3084 | if (buf_room_for_htx_data(&fconn->dbuf)) |
| 3085 | fconn->flags &= ~FCGI_CF_DEM_DFULL; |
| 3086 | } |
| 3087 | fcgi_send(fconn); |
| 3088 | |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 3089 | if (unlikely(fconn->proxy->disabled)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3090 | /* frontend is stopping, reload likely in progress, let's try |
| 3091 | * to announce a graceful shutdown if not yet done. We don't |
| 3092 | * care if it fails, it will be tried again later. |
| 3093 | */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3094 | TRACE_STATE("proxy stopped, sending ABORT to all streams", FCGI_EV_FCONN_WAKE|FCGI_EV_TX_RECORD, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3095 | if (!(fconn->flags & (FCGI_CF_ABRTS_SENT|FCGI_CF_ABRTS_FAILED))) { |
| 3096 | if (fconn->stream_cnt - fconn->nb_reserved > 0) |
| 3097 | fcgi_conn_send_aborts(fconn); |
| 3098 | } |
| 3099 | } |
| 3100 | |
| 3101 | /* |
| 3102 | * If we received early data, and the handshake is done, wake |
| 3103 | * any stream that was waiting for it. |
| 3104 | */ |
| 3105 | if (!(fconn->flags & FCGI_CF_WAIT_FOR_HS) && |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 3106 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_WAIT_XPRT | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3107 | struct eb32_node *node; |
| 3108 | struct fcgi_strm *fstrm; |
| 3109 | |
| 3110 | fconn->flags |= FCGI_CF_WAIT_FOR_HS; |
| 3111 | node = eb32_lookup_ge(&fconn->streams_by_id, 1); |
| 3112 | |
| 3113 | while (node) { |
| 3114 | fstrm = container_of(node, struct fcgi_strm, by_id); |
| 3115 | if (fstrm->cs && fstrm->cs->flags & CS_FL_WAIT_FOR_HS) |
| 3116 | fcgi_strm_notify_recv(fstrm); |
| 3117 | node = eb32_next(node); |
| 3118 | } |
| 3119 | } |
| 3120 | |
Christopher Faulet | 6670e3e | 2020-10-08 15:26:33 +0200 | [diff] [blame] | 3121 | if ((conn->flags & CO_FL_ERROR) || fcgi_conn_read0_pending(fconn) || |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3122 | fconn->state == FCGI_CS_CLOSED || (fconn->flags & FCGI_CF_ABRTS_FAILED) || |
| 3123 | eb_is_empty(&fconn->streams_by_id)) { |
| 3124 | fcgi_wake_some_streams(fconn, 0); |
| 3125 | |
| 3126 | if (eb_is_empty(&fconn->streams_by_id)) { |
| 3127 | /* no more stream, kill the connection now */ |
| 3128 | fcgi_release(fconn); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3129 | TRACE_DEVEL("leaving after releasing the connection", FCGI_EV_FCONN_WAKE); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3130 | return -1; |
| 3131 | } |
| 3132 | } |
| 3133 | |
| 3134 | if (!b_data(&fconn->dbuf)) |
| 3135 | fcgi_release_buf(fconn, &fconn->dbuf); |
| 3136 | |
| 3137 | if ((conn->flags & CO_FL_SOCK_WR_SH) || |
| 3138 | fconn->state == FCGI_CS_CLOSED || (fconn->flags & FCGI_CF_ABRTS_FAILED) || |
| 3139 | (!br_data(fconn->mbuf) && ((fconn->flags & FCGI_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&fconn->send_list)))) |
| 3140 | fcgi_release_mbuf(fconn); |
| 3141 | |
| 3142 | if (fconn->task) { |
| 3143 | fconn->task->expire = tick_add(now_ms, (fconn->state == FCGI_CS_CLOSED ? fconn->shut_timeout : fconn->timeout)); |
| 3144 | task_queue(fconn->task); |
| 3145 | } |
| 3146 | |
| 3147 | fcgi_send(fconn); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3148 | TRACE_LEAVE(FCGI_EV_FCONN_WAKE, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3149 | return 0; |
| 3150 | } |
| 3151 | |
| 3152 | |
| 3153 | /* wake-up function called by the connection layer (mux_ops.wake) */ |
| 3154 | static int fcgi_wake(struct connection *conn) |
| 3155 | { |
| 3156 | struct fcgi_conn *fconn = conn->ctx; |
| 3157 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3158 | TRACE_POINT(FCGI_EV_FCONN_WAKE, conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3159 | return (fcgi_process(fconn)); |
| 3160 | } |
| 3161 | |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3162 | |
| 3163 | static int fcgi_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output) |
| 3164 | { |
| 3165 | int ret = 0; |
| 3166 | switch (mux_ctl) { |
| 3167 | case MUX_STATUS: |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 3168 | if (!(conn->flags & CO_FL_WAIT_XPRT)) |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3169 | ret |= MUX_STATUS_READY; |
| 3170 | return ret; |
Christopher Faulet | 4c8ad84 | 2020-10-06 14:59:17 +0200 | [diff] [blame] | 3171 | case MUX_EXIT_STATUS: |
| 3172 | return MUX_ES_UNKNOWN; |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3173 | default: |
| 3174 | return -1; |
| 3175 | } |
| 3176 | } |
| 3177 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3178 | /* Connection timeout management. The principle is that if there's no receipt |
| 3179 | * nor sending for a certain amount of time, the connection is closed. If the |
| 3180 | * MUX buffer still has lying data or is not allocatable, the connection is |
| 3181 | * immediately killed. If it's allocatable and empty, we attempt to send a |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3182 | * ABORT records. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3183 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 3184 | struct task *fcgi_timeout_task(struct task *t, void *context, unsigned int state) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3185 | { |
| 3186 | struct fcgi_conn *fconn = context; |
| 3187 | int expired = tick_is_expired(t->expire, now_ms); |
| 3188 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3189 | TRACE_ENTER(FCGI_EV_FCONN_WAKE, (fconn ? fconn->conn : NULL)); |
| 3190 | |
Willy Tarreau | 60814ff | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 3191 | if (fconn) { |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 3192 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | 48ce6a3 | 2020-07-02 11:58:05 +0200 | [diff] [blame] | 3193 | |
| 3194 | /* Somebody already stole the connection from us, so we should not |
| 3195 | * free it, we just have to free the task. |
| 3196 | */ |
| 3197 | if (!t->context) { |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 3198 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | 48ce6a3 | 2020-07-02 11:58:05 +0200 | [diff] [blame] | 3199 | fconn = NULL; |
| 3200 | goto do_leave; |
| 3201 | } |
| 3202 | |
Willy Tarreau | 60814ff | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 3203 | if (!expired) { |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 3204 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 60814ff | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 3205 | TRACE_DEVEL("leaving (not expired)", FCGI_EV_FCONN_WAKE, fconn->conn); |
| 3206 | return t; |
| 3207 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3208 | |
Willy Tarreau | 60814ff | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 3209 | /* We're about to destroy the connection, so make sure nobody attempts |
| 3210 | * to steal it from us. |
| 3211 | */ |
Willy Tarreau | 60814ff | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 3212 | if (fconn->conn->flags & CO_FL_LIST_MASK) |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 3213 | conn_delete_from_tree(&fconn->conn->hash_node->node); |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3214 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 3215 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 60814ff | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 3216 | } |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 3217 | |
Olivier Houchard | 48ce6a3 | 2020-07-02 11:58:05 +0200 | [diff] [blame] | 3218 | do_leave: |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3219 | task_destroy(t); |
| 3220 | |
| 3221 | if (!fconn) { |
| 3222 | /* resources were already deleted */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3223 | TRACE_DEVEL("leaving (not more fconn)", FCGI_EV_FCONN_WAKE); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3224 | return NULL; |
| 3225 | } |
| 3226 | |
| 3227 | fconn->task = NULL; |
| 3228 | fconn->state = FCGI_CS_CLOSED; |
| 3229 | fcgi_wake_some_streams(fconn, 0); |
| 3230 | |
| 3231 | if (br_data(fconn->mbuf)) { |
| 3232 | /* don't even try to send aborts, the buffer is stuck */ |
| 3233 | fconn->flags |= FCGI_CF_ABRTS_FAILED; |
| 3234 | goto end; |
| 3235 | } |
| 3236 | |
| 3237 | /* try to send but no need to insist */ |
| 3238 | if (!fcgi_conn_send_aborts(fconn)) |
| 3239 | fconn->flags |= FCGI_CF_ABRTS_FAILED; |
| 3240 | |
| 3241 | if (br_data(fconn->mbuf) && !(fconn->flags & FCGI_CF_ABRTS_FAILED) && |
| 3242 | conn_xprt_ready(fconn->conn)) { |
| 3243 | unsigned int released = 0; |
| 3244 | struct buffer *buf; |
| 3245 | |
| 3246 | for (buf = br_head(fconn->mbuf); b_size(buf); buf = br_del_head(fconn->mbuf)) { |
| 3247 | if (b_data(buf)) { |
| 3248 | int ret = fconn->conn->xprt->snd_buf(fconn->conn, fconn->conn->xprt_ctx, |
| 3249 | buf, b_data(buf), 0); |
| 3250 | if (!ret) |
| 3251 | break; |
| 3252 | b_del(buf, ret); |
| 3253 | if (b_data(buf)) |
| 3254 | break; |
| 3255 | b_free(buf); |
| 3256 | released++; |
| 3257 | } |
| 3258 | } |
| 3259 | |
| 3260 | if (released) |
Willy Tarreau | 4d77bbf | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 3261 | offer_buffers(NULL, released); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3262 | } |
| 3263 | |
| 3264 | end: |
| 3265 | /* either we can release everything now or it will be done later once |
| 3266 | * the last stream closes. |
| 3267 | */ |
| 3268 | if (eb_is_empty(&fconn->streams_by_id)) |
| 3269 | fcgi_release(fconn); |
| 3270 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3271 | TRACE_LEAVE(FCGI_EV_FCONN_WAKE); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3272 | return NULL; |
| 3273 | } |
| 3274 | |
| 3275 | |
| 3276 | /*******************************************/ |
| 3277 | /* functions below are used by the streams */ |
| 3278 | /*******************************************/ |
| 3279 | |
| 3280 | /* Append the description of what is present in error snapshot <es> into <out>. |
| 3281 | * The description must be small enough to always fit in a buffer. The output |
| 3282 | * buffer may be the trash so the trash must not be used inside this function. |
| 3283 | */ |
| 3284 | static void fcgi_show_error_snapshot(struct buffer *out, const struct error_snapshot *es) |
| 3285 | { |
| 3286 | chunk_appendf(out, |
| 3287 | " FCGI connection flags 0x%08x, FCGI stream flags 0x%08x\n" |
| 3288 | " H1 msg state %s(%d), H1 msg flags 0x%08x\n" |
| 3289 | " H1 chunk len %lld bytes, H1 body len %lld bytes :\n", |
| 3290 | es->ctx.h1.c_flags, es->ctx.h1.s_flags, |
| 3291 | h1m_state_str(es->ctx.h1.state), es->ctx.h1.state, |
| 3292 | es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen); |
| 3293 | } |
| 3294 | /* |
| 3295 | * Capture a bad response and archive it in the proxy's structure. By default |
| 3296 | * it tries to report the error position as h1m->err_pos. However if this one is |
| 3297 | * not set, it will then report h1m->next, which is the last known parsing |
| 3298 | * point. The function is able to deal with wrapping buffers. It always displays |
| 3299 | * buffers as a contiguous area starting at buf->p. The direction is determined |
| 3300 | * thanks to the h1m's flags. |
| 3301 | */ |
| 3302 | static void fcgi_strm_capture_bad_message(struct fcgi_conn *fconn, struct fcgi_strm *fstrm, |
| 3303 | struct h1m *h1m, struct buffer *buf) |
| 3304 | { |
| 3305 | struct session *sess = fstrm->sess; |
| 3306 | struct proxy *proxy = fconn->proxy; |
Olivier Houchard | bdb00c5 | 2020-03-12 15:30:17 +0100 | [diff] [blame] | 3307 | struct proxy *other_end; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3308 | union error_snapshot_ctx ctx; |
| 3309 | |
Olivier Houchard | bdb00c5 | 2020-03-12 15:30:17 +0100 | [diff] [blame] | 3310 | if (fstrm->cs && fstrm->cs->data) { |
| 3311 | if (sess == NULL) |
| 3312 | sess = si_strm(fstrm->cs->data)->sess; |
| 3313 | if (!(h1m->flags & H1_MF_RESP)) |
| 3314 | other_end = si_strm(fstrm->cs->data)->be; |
| 3315 | else |
| 3316 | other_end = sess->fe; |
| 3317 | } else |
| 3318 | other_end = NULL; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3319 | /* http-specific part now */ |
| 3320 | ctx.h1.state = h1m->state; |
| 3321 | ctx.h1.c_flags = fconn->flags; |
| 3322 | ctx.h1.s_flags = fstrm->flags; |
| 3323 | ctx.h1.m_flags = h1m->flags; |
| 3324 | ctx.h1.m_clen = h1m->curr_len; |
| 3325 | ctx.h1.m_blen = h1m->body_len; |
| 3326 | |
| 3327 | proxy_capture_error(proxy, 1, other_end, fconn->conn->target, sess, buf, 0, 0, |
| 3328 | (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next, |
| 3329 | &ctx, fcgi_show_error_snapshot); |
| 3330 | } |
| 3331 | |
| 3332 | static size_t fcgi_strm_parse_headers(struct fcgi_strm *fstrm, struct h1m *h1m, struct htx *htx, |
| 3333 | struct buffer *buf, size_t *ofs, size_t max) |
| 3334 | { |
| 3335 | int ret; |
| 3336 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3337 | TRACE_ENTER(FCGI_EV_RSP_DATA|FCGI_EV_RSP_HDRS, fstrm->fconn->conn, fstrm, 0, (size_t[]){max}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3338 | ret = h1_parse_msg_hdrs(h1m, NULL, htx, buf, *ofs, max); |
Christopher Faulet | d04f530 | 2022-03-28 15:37:01 +0200 | [diff] [blame] | 3339 | if (ret <= 0) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3340 | TRACE_DEVEL("leaving on missing data or error", FCGI_EV_RSP_DATA|FCGI_EV_RSP_HDRS, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3341 | if (htx->flags & HTX_FL_PARSING_ERROR) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 3342 | TRACE_ERROR("parsing error, reject H1 response", FCGI_EV_RSP_DATA|FCGI_EV_RSP_HDRS|FCGI_EV_FSTRM_ERR, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3343 | fcgi_strm_error(fstrm); |
| 3344 | fcgi_strm_capture_bad_message(fstrm->fconn, fstrm, h1m, buf); |
| 3345 | } |
Christopher Faulet | d04f530 | 2022-03-28 15:37:01 +0200 | [diff] [blame] | 3346 | ret = 0; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3347 | goto end; |
| 3348 | } |
| 3349 | |
| 3350 | *ofs += ret; |
| 3351 | end: |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3352 | TRACE_LEAVE(FCGI_EV_RSP_DATA|FCGI_EV_RSP_HDRS, fstrm->fconn->conn, fstrm, 0, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3353 | return ret; |
| 3354 | |
| 3355 | } |
| 3356 | |
Christopher Faulet | af54263 | 2019-10-01 21:52:49 +0200 | [diff] [blame] | 3357 | static size_t fcgi_strm_parse_data(struct fcgi_strm *fstrm, struct h1m *h1m, struct htx **htx, |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3358 | struct buffer *buf, size_t *ofs, size_t max, struct buffer *htxbuf) |
| 3359 | { |
| 3360 | int ret; |
| 3361 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3362 | TRACE_ENTER(FCGI_EV_RSP_DATA|FCGI_EV_RSP_BODY, fstrm->fconn->conn, fstrm, 0, (size_t[]){max}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3363 | ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf); |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 3364 | if (!ret) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3365 | TRACE_DEVEL("leaving on missing data or error", FCGI_EV_RSP_DATA|FCGI_EV_RSP_BODY, fstrm->fconn->conn, fstrm); |
Christopher Faulet | af54263 | 2019-10-01 21:52:49 +0200 | [diff] [blame] | 3366 | if ((*htx)->flags & HTX_FL_PARSING_ERROR) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 3367 | TRACE_ERROR("parsing error, reject H1 response", FCGI_EV_RSP_DATA|FCGI_EV_RSP_BODY|FCGI_EV_FSTRM_ERR, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3368 | fcgi_strm_error(fstrm); |
| 3369 | fcgi_strm_capture_bad_message(fstrm->fconn, fstrm, h1m, buf); |
| 3370 | } |
| 3371 | goto end; |
| 3372 | } |
| 3373 | *ofs += ret; |
| 3374 | end: |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3375 | TRACE_LEAVE(FCGI_EV_RSP_DATA|FCGI_EV_RSP_BODY, fstrm->fconn->conn, fstrm, 0, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3376 | return ret; |
| 3377 | } |
| 3378 | |
| 3379 | static size_t fcgi_strm_parse_trailers(struct fcgi_strm *fstrm, struct h1m *h1m, struct htx *htx, |
| 3380 | struct buffer *buf, size_t *ofs, size_t max) |
| 3381 | { |
| 3382 | int ret; |
| 3383 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3384 | TRACE_ENTER(FCGI_EV_RSP_DATA|FCGI_EV_RSP_TLRS, fstrm->fconn->conn, fstrm, 0, (size_t[]){max}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3385 | ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max); |
Christopher Faulet | d04f530 | 2022-03-28 15:37:01 +0200 | [diff] [blame] | 3386 | if (ret <= 0) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3387 | TRACE_DEVEL("leaving on missing data or error", FCGI_EV_RSP_DATA|FCGI_EV_RSP_TLRS, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3388 | if (htx->flags & HTX_FL_PARSING_ERROR) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 3389 | TRACE_ERROR("parsing error, reject H1 response", FCGI_EV_RSP_DATA|FCGI_EV_RSP_TLRS|FCGI_EV_FSTRM_ERR, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3390 | fcgi_strm_error(fstrm); |
| 3391 | fcgi_strm_capture_bad_message(fstrm->fconn, fstrm, h1m, buf); |
| 3392 | } |
Christopher Faulet | d04f530 | 2022-03-28 15:37:01 +0200 | [diff] [blame] | 3393 | ret = 0; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3394 | goto end; |
| 3395 | } |
| 3396 | *ofs += ret; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3397 | end: |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3398 | TRACE_LEAVE(FCGI_EV_RSP_DATA|FCGI_EV_RSP_TLRS, fstrm->fconn->conn, fstrm, 0, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3399 | return ret; |
| 3400 | } |
| 3401 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3402 | static size_t fcgi_strm_parse_response(struct fcgi_strm *fstrm, struct buffer *buf, size_t count) |
| 3403 | { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3404 | struct fcgi_conn *fconn = fstrm->fconn; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3405 | struct htx *htx; |
| 3406 | struct h1m *h1m = &fstrm->h1m; |
| 3407 | size_t ret, data, total = 0; |
| 3408 | |
| 3409 | htx = htx_from_buf(buf); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3410 | TRACE_ENTER(FCGI_EV_RSP_DATA, fconn->conn, fstrm, htx, (size_t[]){count}); |
| 3411 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3412 | data = htx->data; |
| 3413 | if (fstrm->state == FCGI_SS_ERROR) |
| 3414 | goto end; |
| 3415 | |
| 3416 | do { |
| 3417 | size_t used = htx_used_space(htx); |
| 3418 | |
| 3419 | if (h1m->state <= H1_MSG_LAST_LF) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3420 | TRACE_PROTO("parsing response headers", FCGI_EV_RSP_DATA|FCGI_EV_RSP_HDRS, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3421 | ret = fcgi_strm_parse_headers(fstrm, h1m, htx, &fstrm->rxbuf, &total, count); |
| 3422 | if (!ret) |
| 3423 | break; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3424 | |
| 3425 | TRACE_USER("rcvd H1 response headers", FCGI_EV_RSP_DATA|FCGI_EV_RSP_HDRS, fconn->conn, fstrm, htx); |
| 3426 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3427 | if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_LEN)) == H1_MF_VER_11) { |
| 3428 | struct htx_blk *blk = htx_get_head_blk(htx); |
| 3429 | struct htx_sl *sl; |
| 3430 | |
| 3431 | if (!blk) |
| 3432 | break; |
| 3433 | sl = htx_get_blk_ptr(htx, blk); |
| 3434 | sl->flags |= HTX_SL_F_XFER_LEN; |
| 3435 | htx->extra = 0; |
| 3436 | } |
| 3437 | } |
| 3438 | else if (h1m->state < H1_MSG_TRAILERS) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3439 | TRACE_PROTO("parsing response payload", FCGI_EV_RSP_DATA|FCGI_EV_RSP_BODY, fconn->conn, fstrm); |
Christopher Faulet | af54263 | 2019-10-01 21:52:49 +0200 | [diff] [blame] | 3440 | ret = fcgi_strm_parse_data(fstrm, h1m, &htx, &fstrm->rxbuf, &total, count, buf); |
Christopher Faulet | 1e85778 | 2020-12-08 10:38:22 +0100 | [diff] [blame] | 3441 | |
| 3442 | if (!(h1m->flags & H1_MF_XFER_LEN) && fstrm->state != FCGI_SS_ERROR && |
| 3443 | (fstrm->flags & FCGI_SF_ES_RCVD) && b_data(&fstrm->rxbuf) == total) { |
| 3444 | TRACE_DEVEL("end of data", FCGI_EV_RSP_DATA, fconn->conn, fstrm); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 3445 | htx->flags |= HTX_FL_EOM; |
Christopher Faulet | 1e85778 | 2020-12-08 10:38:22 +0100 | [diff] [blame] | 3446 | h1m->state = H1_MSG_DONE; |
| 3447 | TRACE_USER("H1 response fully rcvd", FCGI_EV_RSP_DATA|FCGI_EV_RSP_EOM, fconn->conn, fstrm, htx); |
| 3448 | } |
| 3449 | |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 3450 | if (!ret && h1m->state != H1_MSG_DONE) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3451 | break; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3452 | |
| 3453 | TRACE_PROTO("rcvd response payload data", FCGI_EV_RSP_DATA|FCGI_EV_RSP_BODY, fconn->conn, fstrm, htx); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3454 | } |
| 3455 | else if (h1m->state == H1_MSG_TRAILERS) { |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 3456 | TRACE_PROTO("parsing response trailers", FCGI_EV_RSP_DATA|FCGI_EV_RSP_TLRS, fconn->conn, fstrm); |
| 3457 | ret = fcgi_strm_parse_trailers(fstrm, h1m, htx, &fstrm->rxbuf, &total, count); |
| 3458 | if (!ret && h1m->state != H1_MSG_DONE) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3459 | break; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3460 | |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 3461 | TRACE_PROTO("rcvd H1 response trailers", FCGI_EV_RSP_DATA|FCGI_EV_RSP_TLRS, fconn->conn, fstrm, htx); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3462 | } |
| 3463 | else if (h1m->state == H1_MSG_DONE) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 3464 | TRACE_USER("H1 response fully rcvd", FCGI_EV_RSP_DATA|FCGI_EV_RSP_EOM, fconn->conn, fstrm, htx); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3465 | if (b_data(&fstrm->rxbuf) > total) { |
| 3466 | htx->flags |= HTX_FL_PARSING_ERROR; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3467 | TRACE_PROTO("too much data, parsing error", FCGI_EV_RSP_DATA, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3468 | fcgi_strm_error(fstrm); |
| 3469 | } |
| 3470 | break; |
| 3471 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3472 | else { |
| 3473 | htx->flags |= HTX_FL_PROCESSING_ERROR; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 3474 | TRACE_ERROR("unexpected processing error", FCGI_EV_RSP_DATA|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3475 | fcgi_strm_error(fstrm); |
| 3476 | break; |
| 3477 | } |
| 3478 | |
| 3479 | count -= htx_used_space(htx) - used; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3480 | } while (fstrm->state != FCGI_SS_ERROR); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3481 | |
| 3482 | if (fstrm->state == FCGI_SS_ERROR) { |
| 3483 | b_reset(&fstrm->rxbuf); |
| 3484 | htx_to_buf(htx, buf); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3485 | TRACE_DEVEL("leaving on error", FCGI_EV_RSP_DATA|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3486 | return 0; |
| 3487 | } |
| 3488 | |
| 3489 | b_del(&fstrm->rxbuf, total); |
| 3490 | |
| 3491 | end: |
| 3492 | htx_to_buf(htx, buf); |
| 3493 | ret = htx->data - data; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3494 | TRACE_LEAVE(FCGI_EV_RSP_DATA, fconn->conn, fstrm, htx, (size_t[]){ret}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3495 | return ret; |
| 3496 | } |
| 3497 | |
| 3498 | /* |
| 3499 | * Attach a new stream to a connection |
| 3500 | * (Used for outgoing connections) |
| 3501 | */ |
| 3502 | static struct conn_stream *fcgi_attach(struct connection *conn, struct session *sess) |
| 3503 | { |
| 3504 | struct conn_stream *cs; |
| 3505 | struct fcgi_strm *fstrm; |
| 3506 | struct fcgi_conn *fconn = conn->ctx; |
| 3507 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3508 | TRACE_ENTER(FCGI_EV_FSTRM_NEW, conn); |
Christopher Faulet | 236c93b | 2020-07-02 09:19:54 +0200 | [diff] [blame] | 3509 | cs = cs_new(conn, conn->target); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3510 | if (!cs) { |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 3511 | TRACE_ERROR("CS allocation failure", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_ERR, conn); |
| 3512 | goto err; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3513 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3514 | fstrm = fcgi_conn_stream_new(fconn, cs, sess); |
| 3515 | if (!fstrm) { |
| 3516 | cs_free(cs); |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 3517 | goto err; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3518 | } |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3519 | |
| 3520 | /* the connection is not idle anymore, let's mark this */ |
| 3521 | HA_ATOMIC_AND(&fconn->wait_event.tasklet->state, ~TASK_F_USR1); |
Willy Tarreau | 4f8cd43 | 2021-03-02 17:27:58 +0100 | [diff] [blame] | 3522 | xprt_set_used(conn, conn->xprt, conn->xprt_ctx); |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3523 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3524 | TRACE_LEAVE(FCGI_EV_FSTRM_NEW, conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3525 | return cs; |
Christopher Faulet | 73518be | 2021-01-27 12:06:54 +0100 | [diff] [blame] | 3526 | |
| 3527 | err: |
| 3528 | TRACE_DEVEL("leaving on error", FCGI_EV_FSTRM_NEW|FCGI_EV_FSTRM_ERR, conn); |
| 3529 | return NULL; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3530 | } |
| 3531 | |
| 3532 | /* Retrieves the first valid conn_stream from this connection, or returns NULL. |
| 3533 | * We have to scan because we may have some orphan streams. It might be |
| 3534 | * beneficial to scan backwards from the end to reduce the likeliness to find |
| 3535 | * orphans. |
| 3536 | */ |
| 3537 | static const struct conn_stream *fcgi_get_first_cs(const struct connection *conn) |
| 3538 | { |
| 3539 | struct fcgi_conn *fconn = conn->ctx; |
| 3540 | struct fcgi_strm *fstrm; |
| 3541 | struct eb32_node *node; |
| 3542 | |
| 3543 | node = eb32_first(&fconn->streams_by_id); |
| 3544 | while (node) { |
| 3545 | fstrm = container_of(node, struct fcgi_strm, by_id); |
| 3546 | if (fstrm->cs) |
| 3547 | return fstrm->cs; |
| 3548 | node = eb32_next(node); |
| 3549 | } |
| 3550 | return NULL; |
| 3551 | } |
| 3552 | |
| 3553 | /* |
| 3554 | * Destroy the mux and the associated connection, if it is no longer used |
| 3555 | */ |
| 3556 | static void fcgi_destroy(void *ctx) |
| 3557 | { |
| 3558 | struct fcgi_conn *fconn = ctx; |
| 3559 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3560 | TRACE_POINT(FCGI_EV_FCONN_END, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3561 | if (eb_is_empty(&fconn->streams_by_id) || !fconn->conn || fconn->conn->ctx != fconn) |
| 3562 | fcgi_release(fconn); |
| 3563 | } |
| 3564 | |
| 3565 | /* |
| 3566 | * Detach the stream from the connection and possibly release the connection. |
| 3567 | */ |
| 3568 | static void fcgi_detach(struct conn_stream *cs) |
| 3569 | { |
| 3570 | struct fcgi_strm *fstrm = cs->ctx; |
| 3571 | struct fcgi_conn *fconn; |
| 3572 | struct session *sess; |
| 3573 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3574 | TRACE_ENTER(FCGI_EV_STRM_END, (fstrm ? fstrm->fconn->conn : NULL), fstrm); |
| 3575 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3576 | cs->ctx = NULL; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3577 | if (!fstrm) { |
| 3578 | TRACE_LEAVE(FCGI_EV_STRM_END); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3579 | return; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3580 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3581 | |
Willy Tarreau | f11be0e | 2020-01-16 16:59:45 +0100 | [diff] [blame] | 3582 | /* there's no txbuf so we're certain no to be able to send anything */ |
| 3583 | fstrm->flags &= ~FCGI_SF_NOTIFIED; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3584 | |
| 3585 | sess = fstrm->sess; |
| 3586 | fconn = fstrm->fconn; |
| 3587 | fstrm->cs = NULL; |
| 3588 | fconn->nb_cs--; |
| 3589 | |
| 3590 | if (fstrm->proto_status == FCGI_PS_CANT_MPX_CONN) { |
| 3591 | fconn->flags &= ~FCGI_CF_MPXS_CONNS; |
| 3592 | fconn->streams_limit = 1; |
| 3593 | } |
| 3594 | else if (fstrm->proto_status == FCGI_PS_OVERLOADED || |
| 3595 | fstrm->proto_status == FCGI_PS_UNKNOWN_ROLE) { |
| 3596 | fconn->flags &= ~FCGI_CF_KEEP_CONN; |
| 3597 | fconn->state = FCGI_CS_CLOSED; |
| 3598 | } |
| 3599 | |
| 3600 | /* this stream may be blocked waiting for some data to leave, so orphan |
| 3601 | * it in this case. |
| 3602 | */ |
| 3603 | if (!(cs->conn->flags & CO_FL_ERROR) && |
| 3604 | (fconn->state != FCGI_CS_CLOSED) && |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 3605 | (fstrm->flags & (FCGI_SF_BLK_MBUSY|FCGI_SF_BLK_MROOM)) && |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3606 | (fstrm->subs || (fstrm->flags & (FCGI_SF_WANT_SHUTR|FCGI_SF_WANT_SHUTW)))) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3607 | TRACE_DEVEL("leaving on stream blocked", FCGI_EV_STRM_END|FCGI_EV_FSTRM_BLK, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3608 | return; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3609 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3610 | |
| 3611 | if ((fconn->flags & FCGI_CF_DEM_BLOCK_ANY && fstrm->id == fconn->dsi)) { |
| 3612 | /* unblock the connection if it was blocked on this stream. */ |
| 3613 | fconn->flags &= ~FCGI_CF_DEM_BLOCK_ANY; |
| 3614 | fcgi_conn_restart_reading(fconn, 1); |
| 3615 | } |
| 3616 | |
| 3617 | fcgi_strm_destroy(fstrm); |
| 3618 | |
| 3619 | if (!(fconn->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && |
Christopher Faulet | 9bcd973 | 2020-05-02 09:21:24 +0200 | [diff] [blame] | 3620 | (fconn->flags & FCGI_CF_KEEP_CONN)) { |
Christopher Faulet | 29ae7ff | 2020-07-01 15:51:46 +0200 | [diff] [blame] | 3621 | if (fconn->conn->flags & CO_FL_PRIVATE) { |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 3622 | /* Add the connection in the session serverlist, if not already done */ |
| 3623 | if (!session_add_conn(sess, fconn->conn, fconn->conn->target)) { |
| 3624 | fconn->conn->owner = NULL; |
| 3625 | if (eb_is_empty(&fconn->streams_by_id)) { |
| 3626 | /* let's kill the connection right away */ |
| 3627 | fconn->conn->mux->destroy(fconn); |
| 3628 | TRACE_DEVEL("outgoing connection killed", FCGI_EV_STRM_END|FCGI_EV_FCONN_ERR); |
| 3629 | return; |
Christopher Faulet | 29ae7ff | 2020-07-01 15:51:46 +0200 | [diff] [blame] | 3630 | } |
| 3631 | } |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 3632 | if (eb_is_empty(&fconn->streams_by_id)) { |
Christopher Faulet | 29ae7ff | 2020-07-01 15:51:46 +0200 | [diff] [blame] | 3633 | if (session_check_idle_conn(fconn->conn->owner, fconn->conn) != 0) { |
| 3634 | /* The connection is destroyed, let's leave */ |
Olivier Houchard | 2444aa5 | 2020-01-20 13:56:01 +0100 | [diff] [blame] | 3635 | TRACE_DEVEL("outgoing connection killed", FCGI_EV_STRM_END|FCGI_EV_FCONN_ERR); |
Christopher Faulet | 66cd57e | 2020-05-02 09:08:54 +0200 | [diff] [blame] | 3636 | return; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3637 | } |
| 3638 | } |
| 3639 | } |
Christopher Faulet | 29ae7ff | 2020-07-01 15:51:46 +0200 | [diff] [blame] | 3640 | else { |
| 3641 | if (eb_is_empty(&fconn->streams_by_id)) { |
Amaury Denoyelle | 46f041d | 2020-10-14 18:17:11 +0200 | [diff] [blame] | 3642 | /* If the connection is owned by the session, first remove it |
| 3643 | * from its list |
| 3644 | */ |
| 3645 | if (fconn->conn->owner) { |
| 3646 | session_unown_conn(fconn->conn->owner, fconn->conn); |
| 3647 | fconn->conn->owner = NULL; |
| 3648 | } |
| 3649 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3650 | /* mark that the tasklet may lose its context to another thread and |
| 3651 | * that the handler needs to check it under the idle conns lock. |
| 3652 | */ |
| 3653 | HA_ATOMIC_OR(&fconn->wait_event.tasklet->state, TASK_F_USR1); |
Willy Tarreau | 4f8cd43 | 2021-03-02 17:27:58 +0100 | [diff] [blame] | 3654 | xprt_set_idle(fconn->conn, fconn->conn->xprt, fconn->conn->xprt_ctx); |
| 3655 | |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 3656 | if (!srv_add_to_idle_list(objt_server(fconn->conn->target), fconn->conn, 1)) { |
Olivier Houchard | 2444aa5 | 2020-01-20 13:56:01 +0100 | [diff] [blame] | 3657 | /* The server doesn't want it, let's kill the connection right away */ |
| 3658 | fconn->conn->mux->destroy(fconn); |
| 3659 | TRACE_DEVEL("outgoing connection killed", FCGI_EV_STRM_END|FCGI_EV_FCONN_ERR); |
| 3660 | return; |
| 3661 | } |
Olivier Houchard | 199d4fa | 2020-03-22 23:25:51 +0100 | [diff] [blame] | 3662 | /* At this point, the connection has been added to the |
| 3663 | * server idle list, so another thread may already have |
| 3664 | * hijacked it, so we can't do anything with it. |
| 3665 | */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3666 | TRACE_DEVEL("reusable idle connection", FCGI_EV_STRM_END, fconn->conn); |
| 3667 | return; |
| 3668 | } |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 3669 | else if (!fconn->conn->hash_node->node.node.leaf_p && |
Amaury Denoyelle | 46f041d | 2020-10-14 18:17:11 +0200 | [diff] [blame] | 3670 | fcgi_avail_streams(fconn->conn) > 0 && objt_server(fconn->conn->target) && |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3671 | !LIST_INLIST(&fconn->conn->session_list)) { |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 3672 | ebmb_insert(&__objt_server(fconn->conn->target)->per_thr[tid].avail_conns, |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 3673 | &fconn->conn->hash_node->node, |
| 3674 | sizeof(fconn->conn->hash_node->hash)); |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 3675 | } |
Christopher Faulet | 29ae7ff | 2020-07-01 15:51:46 +0200 | [diff] [blame] | 3676 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3677 | } |
| 3678 | |
| 3679 | /* We don't want to close right now unless we're removing the last |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3680 | * stream and the connection is in error. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3681 | */ |
| 3682 | if (fcgi_conn_is_dead(fconn)) { |
| 3683 | /* no more stream will come, kill it now */ |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3684 | TRACE_DEVEL("leaving, killing dead connection", FCGI_EV_STRM_END, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3685 | fcgi_release(fconn); |
| 3686 | } |
| 3687 | else if (fconn->task) { |
| 3688 | fconn->task->expire = tick_add(now_ms, (fconn->state == FCGI_CS_CLOSED ? fconn->shut_timeout : fconn->timeout)); |
| 3689 | task_queue(fconn->task); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3690 | TRACE_DEVEL("leaving, refreshing connection's timeout", FCGI_EV_STRM_END, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3691 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3692 | else |
| 3693 | TRACE_DEVEL("leaving", FCGI_EV_STRM_END, fconn->conn); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3694 | } |
| 3695 | |
| 3696 | |
| 3697 | /* Performs a synchronous or asynchronous shutr(). */ |
| 3698 | static void fcgi_do_shutr(struct fcgi_strm *fstrm) |
| 3699 | { |
| 3700 | struct fcgi_conn *fconn = fstrm->fconn; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3701 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3702 | TRACE_ENTER(FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
| 3703 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3704 | if (fstrm->state == FCGI_SS_CLOSED) |
| 3705 | goto done; |
| 3706 | |
| 3707 | /* a connstream may require us to immediately kill the whole connection |
| 3708 | * for example because of a "tcp-request content reject" rule that is |
| 3709 | * normally used to limit abuse. |
| 3710 | */ |
| 3711 | if ((fstrm->flags & FCGI_SF_KILL_CONN) && |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3712 | !(fconn->flags & (FCGI_CF_ABRTS_SENT|FCGI_CF_ABRTS_FAILED))) { |
| 3713 | TRACE_STATE("stream wants to kill the connection", FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3714 | fconn->state = FCGI_CS_CLOSED; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3715 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3716 | else if (fstrm->flags & FCGI_SF_BEGIN_SENT) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3717 | TRACE_STATE("no headers sent yet, trying a retryable abort", FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3718 | if (!(fstrm->flags & (FCGI_SF_ES_SENT|FCGI_SF_ABRT_SENT)) && |
| 3719 | !fcgi_strm_send_abort(fconn, fstrm)) |
| 3720 | goto add_to_list; |
| 3721 | } |
| 3722 | |
| 3723 | fcgi_strm_close(fstrm); |
| 3724 | |
| 3725 | if (!(fconn->wait_event.events & SUB_RETRY_SEND)) |
| 3726 | tasklet_wakeup(fconn->wait_event.tasklet); |
| 3727 | done: |
| 3728 | fstrm->flags &= ~FCGI_SF_WANT_SHUTR; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3729 | TRACE_LEAVE(FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3730 | return; |
| 3731 | |
| 3732 | add_to_list: |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 3733 | /* Let the handler know we want to shutr, and add ourselves to the |
| 3734 | * send list if not yet done. fcgi_deferred_shut() will be |
| 3735 | * automatically called via the shut_tl tasklet when there's room |
| 3736 | * again. |
| 3737 | */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3738 | if (!LIST_INLIST(&fstrm->send_list)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3739 | if (fstrm->flags & (FCGI_SF_BLK_MBUSY|FCGI_SF_BLK_MROOM)) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3740 | LIST_APPEND(&fconn->send_list, &fstrm->send_list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3741 | } |
| 3742 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3743 | fstrm->flags |= FCGI_SF_WANT_SHUTR; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3744 | TRACE_LEAVE(FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3745 | return; |
| 3746 | } |
| 3747 | |
| 3748 | /* Performs a synchronous or asynchronous shutw(). */ |
| 3749 | static void fcgi_do_shutw(struct fcgi_strm *fstrm) |
| 3750 | { |
| 3751 | struct fcgi_conn *fconn = fstrm->fconn; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3752 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3753 | TRACE_ENTER(FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
| 3754 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3755 | if (fstrm->state != FCGI_SS_HLOC || fstrm->state == FCGI_SS_CLOSED) |
| 3756 | goto done; |
| 3757 | |
| 3758 | if (fstrm->state != FCGI_SS_ERROR && (fstrm->flags & FCGI_SF_BEGIN_SENT)) { |
| 3759 | if (!(fstrm->flags & (FCGI_SF_ES_SENT|FCGI_SF_ABRT_SENT)) && |
| 3760 | !fcgi_strm_send_abort(fconn, fstrm)) |
| 3761 | goto add_to_list; |
| 3762 | |
| 3763 | if (fstrm->state == FCGI_SS_HREM) |
| 3764 | fcgi_strm_close(fstrm); |
| 3765 | else |
| 3766 | fstrm->state = FCGI_SS_HLOC; |
| 3767 | } else { |
| 3768 | /* a connstream may require us to immediately kill the whole connection |
| 3769 | * for example because of a "tcp-request content reject" rule that is |
| 3770 | * normally used to limit abuse. |
| 3771 | */ |
| 3772 | if ((fstrm->flags & FCGI_SF_KILL_CONN) && |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3773 | !(fconn->flags & (FCGI_CF_ABRTS_SENT|FCGI_CF_ABRTS_FAILED))) { |
| 3774 | TRACE_STATE("stream wants to kill the connection", FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3775 | fconn->state = FCGI_CS_CLOSED; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3776 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3777 | |
| 3778 | fcgi_strm_close(fstrm); |
| 3779 | } |
| 3780 | |
| 3781 | if (!(fconn->wait_event.events & SUB_RETRY_SEND)) |
| 3782 | tasklet_wakeup(fconn->wait_event.tasklet); |
| 3783 | done: |
| 3784 | fstrm->flags &= ~FCGI_SF_WANT_SHUTW; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3785 | TRACE_LEAVE(FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3786 | return; |
| 3787 | |
| 3788 | add_to_list: |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 3789 | /* Let the handler know we want to shutr, and add ourselves to the |
| 3790 | * send list if not yet done. fcgi_deferred_shut() will be |
| 3791 | * automatically called via the shut_tl tasklet when there's room |
| 3792 | * again. |
| 3793 | */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3794 | if (!LIST_INLIST(&fstrm->send_list)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3795 | if (fstrm->flags & (FCGI_SF_BLK_MBUSY|FCGI_SF_BLK_MROOM)) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3796 | LIST_APPEND(&fconn->send_list, &fstrm->send_list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3797 | } |
| 3798 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3799 | fstrm->flags |= FCGI_SF_WANT_SHUTW; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3800 | TRACE_LEAVE(FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3801 | return; |
| 3802 | } |
| 3803 | |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 3804 | /* This is the tasklet referenced in fstrm->shut_tl, it is used for |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3805 | * deferred shutdowns when the fcgi_detach() was done but the mux buffer was full |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3806 | * and prevented the last record from being emitted. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3807 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 3808 | struct task *fcgi_deferred_shut(struct task *t, void *ctx, unsigned int state) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3809 | { |
| 3810 | struct fcgi_strm *fstrm = ctx; |
| 3811 | struct fcgi_conn *fconn = fstrm->fconn; |
| 3812 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3813 | TRACE_ENTER(FCGI_EV_STRM_SHUT, fconn->conn, fstrm); |
| 3814 | |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 3815 | if (fstrm->flags & FCGI_SF_NOTIFIED) { |
| 3816 | /* some data processing remains to be done first */ |
| 3817 | goto end; |
| 3818 | } |
| 3819 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3820 | if (fstrm->flags & FCGI_SF_WANT_SHUTW) |
| 3821 | fcgi_do_shutw(fstrm); |
| 3822 | |
| 3823 | if (fstrm->flags & FCGI_SF_WANT_SHUTR) |
| 3824 | fcgi_do_shutr(fstrm); |
| 3825 | |
| 3826 | if (!(fstrm->flags & (FCGI_SF_WANT_SHUTR|FCGI_SF_WANT_SHUTW))) { |
| 3827 | /* We're done trying to send, remove ourself from the send_list */ |
| 3828 | LIST_DEL_INIT(&fstrm->send_list); |
| 3829 | |
| 3830 | if (!fstrm->cs) { |
| 3831 | fcgi_strm_destroy(fstrm); |
| 3832 | if (fcgi_conn_is_dead(fconn)) |
| 3833 | fcgi_release(fconn); |
| 3834 | } |
| 3835 | } |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 3836 | end: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3837 | TRACE_LEAVE(FCGI_EV_STRM_SHUT); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3838 | return NULL; |
| 3839 | } |
| 3840 | |
| 3841 | /* shutr() called by the conn_stream (mux_ops.shutr) */ |
| 3842 | static void fcgi_shutr(struct conn_stream *cs, enum cs_shr_mode mode) |
| 3843 | { |
| 3844 | struct fcgi_strm *fstrm = cs->ctx; |
| 3845 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3846 | TRACE_POINT(FCGI_EV_STRM_SHUT, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3847 | if (cs->flags & CS_FL_KILL_CONN) |
| 3848 | fstrm->flags |= FCGI_SF_KILL_CONN; |
| 3849 | |
| 3850 | if (!mode) |
| 3851 | return; |
| 3852 | |
| 3853 | fcgi_do_shutr(fstrm); |
| 3854 | } |
| 3855 | |
| 3856 | /* shutw() called by the conn_stream (mux_ops.shutw) */ |
| 3857 | static void fcgi_shutw(struct conn_stream *cs, enum cs_shw_mode mode) |
| 3858 | { |
| 3859 | struct fcgi_strm *fstrm = cs->ctx; |
| 3860 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3861 | TRACE_POINT(FCGI_EV_STRM_SHUT, fstrm->fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3862 | if (cs->flags & CS_FL_KILL_CONN) |
| 3863 | fstrm->flags |= FCGI_SF_KILL_CONN; |
| 3864 | |
| 3865 | fcgi_do_shutw(fstrm); |
| 3866 | } |
| 3867 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3868 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 3869 | * event subscriber <es> is not allowed to change from a previous call as long |
| 3870 | * as at least one event is still subscribed. The <event_type> must only be a |
| 3871 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3872 | */ |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3873 | static int fcgi_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3874 | { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3875 | struct fcgi_strm *fstrm = cs->ctx; |
| 3876 | struct fcgi_conn *fconn = fstrm->fconn; |
| 3877 | |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3878 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3879 | BUG_ON(fstrm->subs && fstrm->subs != es); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3880 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3881 | es->events |= event_type; |
| 3882 | fstrm->subs = es; |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3883 | |
| 3884 | if (event_type & SUB_RETRY_RECV) |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3885 | TRACE_DEVEL("unsubscribe(recv)", FCGI_EV_STRM_RECV, fconn->conn, fstrm); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3886 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3887 | if (event_type & SUB_RETRY_SEND) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3888 | TRACE_DEVEL("unsubscribe(send)", FCGI_EV_STRM_SEND, fconn->conn, fstrm); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3889 | if (!LIST_INLIST(&fstrm->send_list)) |
| 3890 | LIST_APPEND(&fconn->send_list, &fstrm->send_list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3891 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3892 | return 0; |
| 3893 | } |
| 3894 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3895 | /* Called from the upper layer, to unsubscribe <es> from events <event_type> |
| 3896 | * (undo fcgi_subscribe). The <es> pointer is not allowed to differ from the one |
| 3897 | * passed to the subscribe() call. It always returns zero. |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3898 | */ |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3899 | static int fcgi_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3900 | { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3901 | struct fcgi_strm *fstrm = cs->ctx; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3902 | struct fcgi_conn *fconn = fstrm->fconn; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3903 | |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3904 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3905 | BUG_ON(fstrm->subs && fstrm->subs != es); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3906 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3907 | es->events &= ~event_type; |
| 3908 | if (!es->events) |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3909 | fstrm->subs = NULL; |
| 3910 | |
| 3911 | if (event_type & SUB_RETRY_RECV) |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3912 | TRACE_DEVEL("subscribe(recv)", FCGI_EV_STRM_RECV, fconn->conn, fstrm); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3913 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3914 | if (event_type & SUB_RETRY_SEND) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3915 | TRACE_DEVEL("subscribe(send)", FCGI_EV_STRM_SEND, fconn->conn, fstrm); |
Willy Tarreau | 8907e4d | 2020-01-16 17:55:37 +0100 | [diff] [blame] | 3916 | fstrm->flags &= ~FCGI_SF_NOTIFIED; |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 3917 | if (!(fstrm->flags & (FCGI_SF_WANT_SHUTR|FCGI_SF_WANT_SHUTW))) |
| 3918 | LIST_DEL_INIT(&fstrm->send_list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3919 | } |
| 3920 | return 0; |
| 3921 | } |
| 3922 | |
Christopher Faulet | 93a466b | 2021-09-21 15:50:55 +0200 | [diff] [blame] | 3923 | /* Called from the upper layer, to receive data |
| 3924 | * |
| 3925 | * The caller is responsible for defragmenting <buf> if necessary. But <flags> |
| 3926 | * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it |
| 3927 | * means the caller wants to flush input data (from the mux buffer and the |
| 3928 | * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux |
| 3929 | * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read |
| 3930 | * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with |
| 3931 | * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the |
| 3932 | * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should |
| 3933 | * copy as much data as possible. |
| 3934 | */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3935 | static size_t fcgi_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 3936 | { |
| 3937 | struct fcgi_strm *fstrm = cs->ctx; |
| 3938 | struct fcgi_conn *fconn = fstrm->fconn; |
| 3939 | size_t ret = 0; |
| 3940 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3941 | TRACE_ENTER(FCGI_EV_STRM_RECV, fconn->conn, fstrm); |
| 3942 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3943 | if (!(fconn->flags & FCGI_CF_DEM_SALLOC)) |
| 3944 | ret = fcgi_strm_parse_response(fstrm, buf, count); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3945 | else |
| 3946 | TRACE_STATE("fstrm rxbuf not allocated", FCGI_EV_STRM_RECV|FCGI_EV_FSTRM_BLK, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3947 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 3948 | if (b_data(&fstrm->rxbuf)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3949 | cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
| 3950 | else { |
| 3951 | cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 3952 | if (fstrm->state == FCGI_SS_ERROR || (fstrm->h1m.state == H1_MSG_DONE)) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3953 | cs->flags |= CS_FL_EOI; |
| 3954 | if (!(fstrm->h1m.flags & (H1_MF_VER_11|H1_MF_XFER_LEN))) |
| 3955 | cs->flags |= CS_FL_EOS; |
| 3956 | } |
Christopher Faulet | 6670e3e | 2020-10-08 15:26:33 +0200 | [diff] [blame] | 3957 | if (fcgi_conn_read0_pending(fconn)) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3958 | cs->flags |= CS_FL_EOS; |
| 3959 | if (cs->flags & CS_FL_ERR_PENDING) |
| 3960 | cs->flags |= CS_FL_ERROR; |
| 3961 | fcgi_release_buf(fconn, &fstrm->rxbuf); |
| 3962 | } |
| 3963 | |
| 3964 | if (ret && fconn->dsi == fstrm->id) { |
| 3965 | /* demux is blocking on this stream's buffer */ |
| 3966 | fconn->flags &= ~FCGI_CF_DEM_SFULL; |
| 3967 | fcgi_conn_restart_reading(fconn, 1); |
| 3968 | } |
| 3969 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3970 | TRACE_LEAVE(FCGI_EV_STRM_RECV, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3971 | return ret; |
| 3972 | } |
| 3973 | |
| 3974 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3975 | /* Called from the upper layer, to send data from buffer <buf> for no more than |
| 3976 | * <count> bytes. Returns the number of bytes effectively sent. Some status |
| 3977 | * flags may be updated on the conn_stream. |
| 3978 | */ |
| 3979 | static size_t fcgi_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 3980 | { |
| 3981 | struct fcgi_strm *fstrm = cs->ctx; |
| 3982 | struct fcgi_conn *fconn = fstrm->fconn; |
| 3983 | size_t total = 0; |
| 3984 | size_t ret; |
| 3985 | struct htx *htx = NULL; |
| 3986 | struct htx_sl *sl; |
| 3987 | struct htx_blk *blk; |
| 3988 | uint32_t bsize; |
| 3989 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3990 | TRACE_ENTER(FCGI_EV_STRM_SEND, fconn->conn, fstrm, 0, (size_t[]){count}); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3991 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3992 | /* If we were not just woken because we wanted to send but couldn't, |
| 3993 | * and there's somebody else that is waiting to send, do nothing, |
| 3994 | * we will subscribe later and be put at the end of the list |
| 3995 | */ |
Willy Tarreau | f11be0e | 2020-01-16 16:59:45 +0100 | [diff] [blame] | 3996 | if (!(fstrm->flags & FCGI_SF_NOTIFIED) && !LIST_ISEMPTY(&fconn->send_list)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3997 | TRACE_STATE("other streams already waiting, going to the queue and leaving", FCGI_EV_STRM_SEND|FCGI_EV_FSTRM_BLK, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 3998 | return 0; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 3999 | } |
Willy Tarreau | f11be0e | 2020-01-16 16:59:45 +0100 | [diff] [blame] | 4000 | fstrm->flags &= ~FCGI_SF_NOTIFIED; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4001 | |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4002 | if (fconn->state < FCGI_CS_RECORD_H) { |
| 4003 | TRACE_STATE("connection not ready, leaving", FCGI_EV_STRM_SEND|FCGI_EV_FSTRM_BLK, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4004 | return 0; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4005 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4006 | |
| 4007 | htx = htxbuf(buf); |
| 4008 | if (fstrm->id == 0) { |
| 4009 | int32_t id = fcgi_conn_get_next_sid(fconn); |
| 4010 | |
| 4011 | if (id < 0) { |
| 4012 | fcgi_strm_close(fstrm); |
| 4013 | cs->flags |= CS_FL_ERROR; |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4014 | TRACE_DEVEL("couldn't get a stream ID, leaving in error", FCGI_EV_STRM_SEND|FCGI_EV_FSTRM_ERR|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4015 | return 0; |
| 4016 | } |
| 4017 | |
| 4018 | eb32_delete(&fstrm->by_id); |
| 4019 | fstrm->by_id.key = fstrm->id = id; |
| 4020 | fconn->max_id = id; |
| 4021 | fconn->nb_reserved--; |
| 4022 | eb32_insert(&fconn->streams_by_id, &fstrm->by_id); |
| 4023 | |
| 4024 | |
| 4025 | /* Check if length of the body is known or if the message is |
| 4026 | * full. Otherwise, the request is invalid. |
| 4027 | */ |
| 4028 | sl = http_get_stline(htx); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4029 | if (!sl || (!(sl->flags & HTX_SL_F_CLEN) && !(htx->flags & HTX_FL_EOM))) { |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4030 | htx->flags |= HTX_FL_PARSING_ERROR; |
| 4031 | fcgi_strm_error(fstrm); |
| 4032 | goto done; |
| 4033 | } |
| 4034 | } |
| 4035 | |
| 4036 | if (!(fstrm->flags & FCGI_SF_BEGIN_SENT)) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4037 | TRACE_PROTO("sending FCGI BEGIN_REQUEST record", FCGI_EV_TX_RECORD|FCGI_EV_TX_BEGREQ, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4038 | if (!fcgi_strm_send_begin_request(fconn, fstrm)) |
| 4039 | goto done; |
| 4040 | } |
| 4041 | |
| 4042 | if (!(fstrm->flags & FCGI_SF_OUTGOING_DATA) && count) |
| 4043 | fstrm->flags |= FCGI_SF_OUTGOING_DATA; |
| 4044 | |
Christopher Faulet | fe410d6 | 2020-05-19 15:13:00 +0200 | [diff] [blame] | 4045 | while (fstrm->state < FCGI_SS_HLOC && !(fstrm->flags & FCGI_SF_BLK_ANY) && |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4046 | count && !htx_is_empty(htx)) { |
| 4047 | blk = htx_get_head_blk(htx); |
William Lallemand | 13ed9fa | 2019-09-25 21:21:57 +0200 | [diff] [blame] | 4048 | ALREADY_CHECKED(blk); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4049 | bsize = htx_get_blksz(blk); |
| 4050 | |
| 4051 | switch (htx_get_blk_type(blk)) { |
| 4052 | case HTX_BLK_REQ_SL: |
| 4053 | case HTX_BLK_HDR: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4054 | TRACE_USER("sending FCGI PARAMS record", FCGI_EV_TX_RECORD|FCGI_EV_TX_PARAMS, fconn->conn, fstrm, htx); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4055 | ret = fcgi_strm_send_params(fconn, fstrm, htx); |
| 4056 | if (!ret) { |
| 4057 | goto done; |
| 4058 | } |
| 4059 | total += ret; |
| 4060 | count -= ret; |
| 4061 | break; |
| 4062 | |
| 4063 | case HTX_BLK_EOH: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4064 | if (!(fstrm->flags & FCGI_SF_EP_SENT)) { |
| 4065 | TRACE_PROTO("sending FCGI PARAMS record", FCGI_EV_TX_RECORD|FCGI_EV_TX_PARAMS, fconn->conn, fstrm, htx); |
| 4066 | ret = fcgi_strm_send_empty_params(fconn, fstrm); |
| 4067 | if (!ret) |
| 4068 | goto done; |
| 4069 | } |
| 4070 | if (htx_is_unique_blk(htx, blk) && (htx->flags & HTX_FL_EOM)) { |
| 4071 | TRACE_PROTO("sending FCGI STDIN record", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, htx); |
| 4072 | ret = fcgi_strm_send_empty_stdin(fconn, fstrm); |
| 4073 | if (!ret) |
| 4074 | goto done; |
| 4075 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4076 | goto remove_blk; |
| 4077 | |
| 4078 | case HTX_BLK_DATA: |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4079 | TRACE_PROTO("sending FCGI STDIN record", FCGI_EV_TX_RECORD|FCGI_EV_TX_STDIN, fconn->conn, fstrm, htx); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4080 | ret = fcgi_strm_send_stdin(fconn, fstrm, htx, count, buf); |
| 4081 | if (ret > 0) { |
| 4082 | htx = htx_from_buf(buf); |
| 4083 | total += ret; |
| 4084 | count -= ret; |
| 4085 | if (ret < bsize) |
| 4086 | goto done; |
| 4087 | } |
| 4088 | break; |
| 4089 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4090 | default: |
| 4091 | remove_blk: |
| 4092 | htx_remove_blk(htx, blk); |
| 4093 | total += bsize; |
| 4094 | count -= bsize; |
| 4095 | break; |
| 4096 | } |
| 4097 | } |
| 4098 | |
| 4099 | done: |
| 4100 | if (fstrm->state >= FCGI_SS_HLOC) { |
| 4101 | /* trim any possibly pending data after we close (extra CR-LF, |
| 4102 | * unprocessed trailers, abnormal extra data, ...) |
| 4103 | */ |
| 4104 | total += count; |
| 4105 | count = 0; |
| 4106 | } |
| 4107 | |
| 4108 | if (fstrm->state == FCGI_SS_ERROR) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4109 | TRACE_DEVEL("reporting error to the app-layer stream", FCGI_EV_STRM_SEND|FCGI_EV_FSTRM_ERR|FCGI_EV_STRM_ERR, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4110 | cs_set_error(cs); |
| 4111 | if (!(fstrm->flags & FCGI_SF_BEGIN_SENT) || fcgi_strm_send_abort(fconn, fstrm)) |
| 4112 | fcgi_strm_close(fstrm); |
| 4113 | } |
| 4114 | |
| 4115 | if (htx) |
| 4116 | htx_to_buf(htx, buf); |
| 4117 | |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4118 | if (total > 0) { |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4119 | if (!(fconn->wait_event.events & SUB_RETRY_SEND)) { |
| 4120 | TRACE_DEVEL("data queued, waking up fconn sender", FCGI_EV_STRM_SEND|FCGI_EV_FCONN_SEND|FCGI_EV_FCONN_WAKE, fconn->conn, fstrm); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4121 | tasklet_wakeup(fconn->wait_event.tasklet); |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4122 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4123 | |
| 4124 | /* Ok we managed to send something, leave the send_list */ |
Willy Tarreau | 7aad703 | 2020-01-16 17:20:57 +0100 | [diff] [blame] | 4125 | if (!(fstrm->flags & (FCGI_SF_WANT_SHUTR|FCGI_SF_WANT_SHUTW))) |
| 4126 | LIST_DEL_INIT(&fstrm->send_list); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4127 | } |
Christopher Faulet | 5c0f859 | 2019-10-04 15:21:17 +0200 | [diff] [blame] | 4128 | |
| 4129 | TRACE_LEAVE(FCGI_EV_STRM_SEND, fconn->conn, fstrm, htx, (size_t[]){total}); |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4130 | return total; |
| 4131 | } |
| 4132 | |
| 4133 | /* for debugging with CLI's "show fd" command */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 4134 | static int fcgi_show_fd(struct buffer *msg, struct connection *conn) |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4135 | { |
| 4136 | struct fcgi_conn *fconn = conn->ctx; |
| 4137 | struct fcgi_strm *fstrm = NULL; |
| 4138 | struct eb32_node *node; |
| 4139 | int send_cnt = 0; |
| 4140 | int tree_cnt = 0; |
| 4141 | int orph_cnt = 0; |
| 4142 | struct buffer *hmbuf, *tmbuf; |
| 4143 | |
| 4144 | if (!fconn) |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 4145 | return 0; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4146 | |
| 4147 | list_for_each_entry(fstrm, &fconn->send_list, send_list) |
| 4148 | send_cnt++; |
| 4149 | |
| 4150 | fstrm = NULL; |
| 4151 | node = eb32_first(&fconn->streams_by_id); |
| 4152 | while (node) { |
| 4153 | fstrm = container_of(node, struct fcgi_strm, by_id); |
| 4154 | tree_cnt++; |
| 4155 | if (!fstrm->cs) |
| 4156 | orph_cnt++; |
| 4157 | node = eb32_next(node); |
| 4158 | } |
| 4159 | |
| 4160 | hmbuf = br_head(fconn->mbuf); |
| 4161 | tmbuf = br_tail(fconn->mbuf); |
| 4162 | chunk_appendf(msg, " fconn.st0=%d .maxid=%d .flg=0x%04x .nbst=%u" |
| 4163 | " .nbcs=%u .send_cnt=%d .tree_cnt=%d .orph_cnt=%d .sub=%d " |
| 4164 | ".dsi=%d .dbuf=%u@%p+%u/%u .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]", |
| 4165 | fconn->state, fconn->max_id, fconn->flags, |
| 4166 | fconn->nb_streams, fconn->nb_cs, send_cnt, tree_cnt, orph_cnt, |
| 4167 | fconn->wait_event.events, fconn->dsi, |
| 4168 | (unsigned int)b_data(&fconn->dbuf), b_orig(&fconn->dbuf), |
| 4169 | (unsigned int)b_head_ofs(&fconn->dbuf), (unsigned int)b_size(&fconn->dbuf), |
| 4170 | br_head_idx(fconn->mbuf), br_tail_idx(fconn->mbuf), br_size(fconn->mbuf), |
| 4171 | (unsigned int)b_data(hmbuf), b_orig(hmbuf), |
| 4172 | (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf), |
| 4173 | (unsigned int)b_data(tmbuf), b_orig(tmbuf), |
| 4174 | (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf)); |
| 4175 | |
| 4176 | if (fstrm) { |
| 4177 | chunk_appendf(msg, " last_fstrm=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p", |
| 4178 | fstrm, fstrm->id, fstrm->flags, |
| 4179 | (unsigned int)b_data(&fstrm->rxbuf), b_orig(&fstrm->rxbuf), |
| 4180 | (unsigned int)b_head_ofs(&fstrm->rxbuf), (unsigned int)b_size(&fstrm->rxbuf), |
| 4181 | fstrm->cs); |
| 4182 | if (fstrm->cs) |
| 4183 | chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p", |
| 4184 | fstrm->cs->flags, fstrm->cs->data); |
Willy Tarreau | 1776ffb | 2021-01-20 17:10:46 +0100 | [diff] [blame] | 4185 | chunk_appendf(&trash, " .subs=%p", fstrm->subs); |
| 4186 | if (fstrm->subs) { |
Christopher Faulet | 6c93c4e | 2021-02-25 10:06:29 +0100 | [diff] [blame] | 4187 | chunk_appendf(&trash, "(ev=%d tl=%p", fstrm->subs->events, fstrm->subs->tasklet); |
| 4188 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 4189 | fstrm->subs->tasklet->calls, |
| 4190 | fstrm->subs->tasklet->context); |
| 4191 | resolve_sym_name(&trash, NULL, fstrm->subs->tasklet->process); |
| 4192 | chunk_appendf(&trash, ")"); |
Willy Tarreau | 1776ffb | 2021-01-20 17:10:46 +0100 | [diff] [blame] | 4193 | } |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4194 | } |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 4195 | return 0; |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 4196 | } |
| 4197 | |
| 4198 | /* Migrate the the connection to the current thread. |
| 4199 | * Return 0 if successful, non-zero otherwise. |
| 4200 | * Expected to be called with the old thread lock held. |
| 4201 | */ |
Olivier Houchard | 1662cdb | 2020-07-03 14:04:37 +0200 | [diff] [blame] | 4202 | static int fcgi_takeover(struct connection *conn, int orig_tid) |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 4203 | { |
| 4204 | struct fcgi_conn *fcgi = conn->ctx; |
Willy Tarreau | 88d18f8 | 2020-07-01 16:39:33 +0200 | [diff] [blame] | 4205 | struct task *task; |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 4206 | |
| 4207 | if (fd_takeover(conn->handle.fd, conn) != 0) |
| 4208 | return -1; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 4209 | |
| 4210 | if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) { |
| 4211 | /* We failed to takeover the xprt, even if the connection may |
| 4212 | * still be valid, flag it as error'd, as we have already |
| 4213 | * taken over the fd, and wake the tasklet, so that it will |
| 4214 | * destroy it. |
| 4215 | */ |
| 4216 | conn->flags |= CO_FL_ERROR; |
| 4217 | tasklet_wakeup_on(fcgi->wait_event.tasklet, orig_tid); |
| 4218 | return -1; |
| 4219 | } |
| 4220 | |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 4221 | if (fcgi->wait_event.events) |
| 4222 | fcgi->conn->xprt->unsubscribe(fcgi->conn, fcgi->conn->xprt_ctx, |
| 4223 | fcgi->wait_event.events, &fcgi->wait_event); |
| 4224 | /* To let the tasklet know it should free itself, and do nothing else, |
| 4225 | * set its context to NULL; |
| 4226 | */ |
| 4227 | fcgi->wait_event.tasklet->context = NULL; |
Olivier Houchard | 1662cdb | 2020-07-03 14:04:37 +0200 | [diff] [blame] | 4228 | tasklet_wakeup_on(fcgi->wait_event.tasklet, orig_tid); |
Willy Tarreau | 88d18f8 | 2020-07-01 16:39:33 +0200 | [diff] [blame] | 4229 | |
| 4230 | task = fcgi->task; |
| 4231 | if (task) { |
| 4232 | task->context = NULL; |
| 4233 | fcgi->task = NULL; |
| 4234 | __ha_barrier_store(); |
| 4235 | task_kill(task); |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 4236 | |
| 4237 | fcgi->task = task_new(tid_bit); |
| 4238 | if (!fcgi->task) { |
| 4239 | fcgi_release(fcgi); |
| 4240 | return -1; |
| 4241 | } |
| 4242 | fcgi->task->process = fcgi_timeout_task; |
| 4243 | fcgi->task->context = fcgi; |
| 4244 | } |
| 4245 | fcgi->wait_event.tasklet = tasklet_new(); |
| 4246 | if (!fcgi->wait_event.tasklet) { |
| 4247 | fcgi_release(fcgi); |
| 4248 | return -1; |
| 4249 | } |
| 4250 | fcgi->wait_event.tasklet->process = fcgi_io_cb; |
| 4251 | fcgi->wait_event.tasklet->context = fcgi; |
| 4252 | fcgi->conn->xprt->subscribe(fcgi->conn, fcgi->conn->xprt_ctx, |
| 4253 | SUB_RETRY_RECV, &fcgi->wait_event); |
| 4254 | |
| 4255 | return 0; |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4256 | } |
| 4257 | |
| 4258 | /****************************************/ |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 4259 | /* MUX initialization and instantiation */ |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4260 | /****************************************/ |
| 4261 | |
| 4262 | /* The mux operations */ |
| 4263 | static const struct mux_ops mux_fcgi_ops = { |
| 4264 | .init = fcgi_init, |
| 4265 | .wake = fcgi_wake, |
| 4266 | .attach = fcgi_attach, |
| 4267 | .get_first_cs = fcgi_get_first_cs, |
| 4268 | .detach = fcgi_detach, |
| 4269 | .destroy = fcgi_destroy, |
| 4270 | .avail_streams = fcgi_avail_streams, |
| 4271 | .used_streams = fcgi_used_streams, |
| 4272 | .rcv_buf = fcgi_rcv_buf, |
| 4273 | .snd_buf = fcgi_snd_buf, |
| 4274 | .subscribe = fcgi_subscribe, |
| 4275 | .unsubscribe = fcgi_unsubscribe, |
| 4276 | .shutr = fcgi_shutr, |
| 4277 | .shutw = fcgi_shutw, |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 4278 | .ctl = fcgi_ctl, |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4279 | .show_fd = fcgi_show_fd, |
Olivier Houchard | a41bb0b | 2020-03-10 18:46:06 +0100 | [diff] [blame] | 4280 | .takeover = fcgi_takeover, |
Christopher Faulet | a460057 | 2021-03-08 15:28:28 +0100 | [diff] [blame] | 4281 | .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG, |
Christopher Faulet | 99eff65 | 2019-08-11 23:11:30 +0200 | [diff] [blame] | 4282 | .name = "FCGI", |
| 4283 | }; |
| 4284 | |
| 4285 | |
| 4286 | /* this mux registers FCGI proto */ |
| 4287 | static struct mux_proto_list mux_proto_fcgi = |
| 4288 | { .token = IST("fcgi"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BE, .mux = &mux_fcgi_ops }; |
| 4289 | |
| 4290 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_fcgi); |
| 4291 | |
| 4292 | /* |
| 4293 | * Local variables: |
| 4294 | * c-indent-level: 8 |
| 4295 | * c-basic-offset: 8 |
| 4296 | * End: |
| 4297 | */ |