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