blob: 96728b35f5ecd0f45c7554a526f42756568987cc [file] [log] [blame]
Willy Tarreau56e9c5e2012-07-06 09:47:57 +02001/*
2 * include/types/connection.h
3 * This file describes the connection struct and associated constants.
4 *
Willy Tarreaubaf5b9b2014-01-23 15:26:18 +01005 * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu
Willy Tarreau56e9c5e2012-07-06 09:47:57 +02006 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _TYPES_CONNECTION_H
23#define _TYPES_CONNECTION_H
24
25#include <stdlib.h>
26#include <sys/socket.h>
27
28#include <common/config.h>
Willy Tarreau2386be62017-09-21 19:40:52 +020029#include <common/ist.h>
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020030
Willy Tarreaud1d54542012-09-12 22:58:11 +020031#include <types/listener.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010032#include <types/obj_type.h>
Willy Tarreauef9a3602012-12-08 22:29:20 +010033#include <types/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020034#include <types/protocol.h>
35
Willy Tarreaud2629f22016-08-10 18:57:38 +020036#include <netinet/in_systm.h>
Bertrand Jacquin93b227d2016-06-04 15:11:10 +010037#include <netinet/ip.h>
38#include <netinet/ip6.h>
Bertrand Jacquin93b227d2016-06-04 15:11:10 +010039
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020040/* referenced below */
Willy Tarreauc5788912012-08-24 18:12:41 +020041struct connection;
Olivier Houcharde2b40b92017-09-13 18:30:23 +020042struct conn_stream;
Christopher Faulet3bc1b112018-11-29 11:29:26 +010043struct cs_info;
Willy Tarreauc5788912012-08-24 18:12:41 +020044struct buffer;
Willy Tarreau175a2bb2018-09-12 12:02:05 +020045struct proxy;
Willy Tarreaud84dab72016-12-22 21:13:18 +010046struct server;
Olivier Houchardf502aca2018-12-14 19:42:40 +010047struct session;
Willy Tarreauc5788912012-08-24 18:12:41 +020048struct pipe;
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020049
Willy Tarreau4f6516d2018-12-19 13:59:17 +010050/* Note: subscribing to these events is only valid after the caller has really
51 * attempted to perform the operation, and failed to proceed or complete.
52 */
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +020053enum sub_event_type {
Willy Tarreau4f6516d2018-12-19 13:59:17 +010054 SUB_RETRY_RECV = 0x00000001, /* Schedule the tasklet when we can attempt to recv again */
55 SUB_RETRY_SEND = 0x00000002, /* Schedule the tasklet when we can attempt to send again */
56 SUB_CALL_UNSUBSCRIBE = 0x00000004, /* The mux wants its unsubscribe() method to be called before destruction of the underlying object */
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +020057};
58
Olivier Houchardfa8aa862018-10-10 18:25:41 +020059struct wait_event {
Olivier Houchard6ff20392018-07-17 18:46:31 +020060 struct tasklet *task;
Olivier Houchardcb1f49f2018-08-31 17:43:32 +020061 void *handle; /* To be used by the callee */
Willy Tarreau4f6516d2018-12-19 13:59:17 +010062 int events; /* set of enum sub_event_type above */
Olivier Houchard6ff20392018-07-17 18:46:31 +020063};
Willy Tarreau585744b2017-08-24 14:31:19 +020064
Bertrand Jacquind5e4de82018-10-13 16:06:18 +010065/* A connection handle is how we differentiate two connections on the lower
Willy Tarreau585744b2017-08-24 14:31:19 +020066 * layers. It usually is a file descriptor but can be a connection id.
67 */
68union conn_handle {
69 int fd; /* file descriptor, for regular sockets */
70};
71
Olivier Houcharde2b40b92017-09-13 18:30:23 +020072/* conn_stream flags */
73enum {
74 CS_FL_NONE = 0x00000000, /* Just for initialization purposes */
Willy Tarreau79dadb52017-10-05 15:06:07 +020075 CS_FL_SHRD = 0x00000010, /* read shut, draining extra data */
76 CS_FL_SHRR = 0x00000020, /* read shut, resetting extra data */
77 CS_FL_SHR = CS_FL_SHRD | CS_FL_SHRR, /* read shut status */
78
79 CS_FL_SHWN = 0x00000040, /* write shut, verbose mode */
80 CS_FL_SHWS = 0x00000080, /* write shut, silent mode */
81 CS_FL_SHW = CS_FL_SHWN | CS_FL_SHWS, /* write shut status */
82
83
Olivier Houcharde2b40b92017-09-13 18:30:23 +020084 CS_FL_ERROR = 0x00000100, /* a fatal error was reported */
Olivier Houchardd247be02018-12-06 16:22:29 +010085 CS_FL_RCV_MORE = 0x00000200, /* We may have more bytes to transfert */
86 CS_FL_WANT_ROOM = 0x00000400, /* More bytes to transfert, but not enough room */
Olivier Houchard71748cb2018-12-17 14:16:46 +010087 CS_FL_ERR_PENDING = 0x00000800, /* An error is pending, but there's still data to be read */
Willy Tarreaua3f7efe2018-03-02 12:25:45 +010088 CS_FL_EOS = 0x00001000, /* End of stream delivered to data layer */
89 CS_FL_REOS = 0x00002000, /* End of stream received (buffer not empty) */
Olivier Houchard6fa63d92017-11-27 18:41:32 +010090 CS_FL_WAIT_FOR_HS = 0x00010000, /* This stream is waiting for handhskae */
Willy Tarreau51d0a7e2019-01-31 19:09:59 +010091 CS_FL_KILL_CONN = 0x00020000, /* must kill the connection when the CS closes */
Christopher Faulet08088e72018-10-01 12:10:13 +020092
Christopher Fauleteffc3752018-10-31 08:53:54 +010093 /* following flags are supposed to be set by the mux and read/unset by
94 * the stream-interface :
95 */
96 CS_FL_NOT_FIRST = 0x00100000, /* this stream is not the first one */
Joseph Herlant8a95a6e2018-11-25 13:21:12 -080097 CS_FL_READ_PARTIAL = 0x00200000, /* some data were received (not necessarily xferred) */
Olivier Houcharde2b40b92017-09-13 18:30:23 +020098};
Willy Tarreau585744b2017-08-24 14:31:19 +020099
Willy Tarreau79dadb52017-10-05 15:06:07 +0200100/* cs_shutr() modes */
101enum cs_shr_mode {
102 CS_SHR_DRAIN = 0, /* read shutdown, drain any extra stuff */
103 CS_SHR_RESET = 1, /* read shutdown, reset any extra stuff */
104};
105
106/* cs_shutw() modes */
107enum cs_shw_mode {
108 CS_SHW_NORMAL = 0, /* regular write shutdown */
109 CS_SHW_SILENT = 1, /* imminent close, don't notify peer */
110};
111
Willy Tarreaubaf5b9b2014-01-23 15:26:18 +0100112/* For each direction, we have a CO_FL_{SOCK,DATA}_<DIR>_ENA flag, which
113 * indicates if read or write is desired in that direction for the respective
114 * layers. The current status corresponding to the current layer being used is
115 * remembered in the CO_FL_CURR_<DIR>_ENA flag. The need to poll (ie receipt of
116 * EAGAIN) is remembered at the file descriptor level so that even when the
117 * activity is stopped and restarted, we still remember whether it was needed
118 * to poll before attempting the I/O.
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200119 *
Willy Tarreaubaf5b9b2014-01-23 15:26:18 +0100120 * The CO_FL_CURR_<DIR>_ENA flag is set from the FD status in
121 * conn_refresh_polling_flags(). The FD state is updated according to these
122 * flags in conn_cond_update_polling().
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200123 */
124
Willy Tarreau900bc932012-07-06 09:52:14 +0200125/* flags for use in connection->flags */
126enum {
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200127 CO_FL_NONE = 0x00000000, /* Just for initialization purposes */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200128
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200129 /* Do not change these values without updating conn_*_poll_changes() ! */
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100130 CO_FL_SOCK_RD_ENA = 0x00000001, /* receiving handshakes is allowed */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200131 CO_FL_XPRT_RD_ENA = 0x00000002, /* receiving data is allowed */
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200132 CO_FL_CURR_RD_ENA = 0x00000004, /* receiving is currently allowed */
Willy Tarreau310987a2014-01-22 19:46:33 +0100133 /* unused : 0x00000008 */
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100134
135 CO_FL_SOCK_WR_ENA = 0x00000010, /* sending handshakes is desired */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200136 CO_FL_XPRT_WR_ENA = 0x00000020, /* sending data is desired */
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100137 CO_FL_CURR_WR_ENA = 0x00000040, /* sending is currently desired */
Willy Tarreau310987a2014-01-22 19:46:33 +0100138 /* unused : 0x00000080 */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200139
Willy Tarreauf79c8172013-10-21 16:30:56 +0200140 /* These flags indicate whether the Control and Transport layers are initialized */
141 CO_FL_CTRL_READY = 0x00000100, /* FD was registered, fd_delete() needed */
142 CO_FL_XPRT_READY = 0x00000200, /* xprt_init() done, xprt_close() needed */
143
Willy Tarreau916e12d2017-10-25 09:22:43 +0200144 CO_FL_WILL_UPDATE = 0x00000400, /* the conn handler will take care of updating the polling */
Willy Tarreau2686dca2017-04-26 16:25:12 +0200145
146 /* This flag is used by data layers to indicate they had to stop
147 * receiving data because a buffer was full. The connection handler
148 * clears it before first calling the I/O and data callbacks.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200149 */
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200150 CO_FL_WAIT_ROOM = 0x00000800, /* data sink is full */
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200151
Willy Tarreau986a9d22012-08-30 21:11:38 +0200152 /* These flags are used to report whether the from/to addresses are set or not */
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200153 CO_FL_ADDR_FROM_SET = 0x00001000, /* addr.from is set */
154 CO_FL_ADDR_TO_SET = 0x00002000, /* addr.to is set */
155
Olivier Houchardc2aae742017-09-22 18:26:28 +0200156 CO_FL_EARLY_SSL_HS = 0x00004000, /* We have early data pending, don't start SSL handshake yet */
157 CO_FL_EARLY_DATA = 0x00008000, /* At least some of the data are early data */
Willy Tarreaubbae3f02017-08-30 09:59:52 +0200158 /* unused : 0x00010000 */
159 /* unused : 0x00020000 */
Willy Tarreau2ba44652012-08-20 17:30:32 +0200160
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200161 /* flags used to remember what shutdown have been performed/reported */
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200162 CO_FL_SOCK_RD_SH = 0x00040000, /* SOCK layer was notified about shutr/read0 */
163 CO_FL_SOCK_WR_SH = 0x00080000, /* SOCK layer asked for shutw */
164
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100165 /* flags used to report connection errors or other closing conditions */
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200166 CO_FL_ERROR = 0x00100000, /* a fatal error was reported */
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200167 CO_FL_NOTIFY_DONE = 0x001C0000, /* any xprt shut/error flags above needs to be reported */
Willy Tarreau82967bf2017-09-20 17:46:46 +0200168 CO_FL_NOTIFY_DATA = 0x001C0000, /* any shut/error flags above needs to be reported */
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100169
170 /* flags used to report connection status updates */
171 CO_FL_CONNECTED = 0x00200000, /* L4+L6 now ready ; extra handshakes may or may not exist */
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200172 CO_FL_WAIT_L4_CONN = 0x00400000, /* waiting for L4 to be connected */
173 CO_FL_WAIT_L6_CONN = 0x00800000, /* waiting for L6 to be connected (eg: SSL) */
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200174
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200175 /*** All the flags below are used for connection handshakes. Any new
176 * handshake should be added after this point, and CO_FL_HANDSHAKE
177 * should be updated.
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200178 */
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200179 CO_FL_SEND_PROXY = 0x01000000, /* send a valid PROXY protocol header */
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200180 CO_FL_SSL_WAIT_HS = 0x02000000, /* wait for an SSL handshake to complete */
Willy Tarreau5f1504f2012-10-04 23:55:57 +0200181 CO_FL_ACCEPT_PROXY = 0x04000000, /* receive a valid PROXY protocol header */
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100182 CO_FL_ACCEPT_CIP = 0x08000000, /* receive a valid NetScaler Client IP header */
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200183
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200184 /* below we have all handshake flags grouped into one */
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100185 CO_FL_HANDSHAKE = CO_FL_SEND_PROXY | CO_FL_SSL_WAIT_HS | CO_FL_ACCEPT_PROXY | CO_FL_ACCEPT_CIP,
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200186
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200187 /* when any of these flags is set, polling is defined by socket-layer
188 * operations, as opposed to data-layer. Transport is explicitly not
189 * mentionned here to avoid any confusion, since it can be the same
190 * as DATA or SOCK on some implementations.
191 */
192 CO_FL_POLL_SOCK = CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN,
Willy Tarreau1e954912012-10-12 17:50:05 +0200193
Willy Tarreau387ebf82015-08-04 19:24:13 +0200194 /* This connection may not be shared between clients */
195 CO_FL_PRIVATE = 0x10000000,
196
Emeric Brun4f603012017-01-05 15:11:44 +0100197 /* This flag is used to know that a PROXY protocol header was sent by the client */
198 CO_FL_RCVD_PROXY = 0x20000000,
199
Olivier Houcharda2dbeb22018-12-28 18:50:57 +0100200 /* The connection is unused by its owner */
201 CO_FL_SESS_IDLE = 0x40000000,
Willy Tarreauf79c8172013-10-21 16:30:56 +0200202
Willy Tarreau1e954912012-10-12 17:50:05 +0200203 /* This last flag indicates that the transport layer is used (for instance
204 * by logs) and must not be cleared yet. The last call to conn_xprt_close()
205 * must be done after clearing this flag.
206 */
207 CO_FL_XPRT_TRACKED = 0x80000000,
Willy Tarreau900bc932012-07-06 09:52:14 +0200208};
209
Willy Tarreau14cba4b2012-11-30 17:33:05 +0100210
211/* possible connection error codes */
212enum {
213 CO_ER_NONE, /* no error */
Willy Tarreau45b34e82014-01-24 16:06:50 +0100214
215 CO_ER_CONF_FDLIM, /* reached process' configured FD limitation */
216 CO_ER_PROC_FDLIM, /* reached process' FD limitation */
217 CO_ER_SYS_FDLIM, /* reached system's FD limitation */
218 CO_ER_SYS_MEMLIM, /* reached system buffers limitation */
219 CO_ER_NOPROTO, /* protocol not supported */
220 CO_ER_SOCK_ERR, /* other socket error */
221
222 CO_ER_PORT_RANGE, /* source port range exhausted */
223 CO_ER_CANT_BIND, /* can't bind to source address */
224 CO_ER_FREE_PORTS, /* no more free ports on the system */
225 CO_ER_ADDR_INUSE, /* local address already in use */
226
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100227 CO_ER_PRX_EMPTY, /* nothing received in PROXY protocol header */
228 CO_ER_PRX_ABORT, /* client abort during PROXY protocol header */
Willy Tarreau0af29122012-12-03 15:35:00 +0100229 CO_ER_PRX_TIMEOUT, /* timeout while waiting for a PROXY header */
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100230 CO_ER_PRX_TRUNCATED, /* truncated PROXY protocol header */
231 CO_ER_PRX_NOT_HDR, /* not a PROXY protocol header */
232 CO_ER_PRX_BAD_HDR, /* bad PROXY protocol header */
233 CO_ER_PRX_BAD_PROTO, /* unsupported protocol in PROXY header */
234
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100235 CO_ER_CIP_EMPTY, /* nothing received in NetScaler Client IP header */
236 CO_ER_CIP_ABORT, /* client abort during NetScaler Client IP header */
237 CO_ER_CIP_TIMEOUT, /* timeout while waiting for a NetScaler Client IP header */
238 CO_ER_CIP_TRUNCATED, /* truncated NetScaler Client IP header */
239 CO_ER_CIP_BAD_MAGIC, /* bad magic number in NetScaler Client IP header */
240 CO_ER_CIP_BAD_PROTO, /* unsupported protocol in NetScaler Client IP header */
241
Willy Tarreau20879a02012-12-03 16:32:10 +0100242 CO_ER_SSL_EMPTY, /* client closed during SSL handshake */
243 CO_ER_SSL_ABORT, /* client abort during SSL handshake */
Willy Tarreau0af29122012-12-03 15:35:00 +0100244 CO_ER_SSL_TIMEOUT, /* timeout during SSL handshake */
Willy Tarreau20879a02012-12-03 16:32:10 +0100245 CO_ER_SSL_TOO_MANY, /* too many SSL connections */
246 CO_ER_SSL_NO_MEM, /* no more memory to allocate an SSL connection */
247 CO_ER_SSL_RENEG, /* forbidden client renegociation */
248 CO_ER_SSL_CA_FAIL, /* client cert verification failed in the CA chain */
249 CO_ER_SSL_CRT_FAIL, /* client cert verification failed on the certificate */
Willy Tarreau71d058c2017-07-26 20:09:56 +0200250 CO_ER_SSL_MISMATCH, /* Server presented an SSL certificate different from the configured one */
251 CO_ER_SSL_MISMATCH_SNI, /* Server presented an SSL certificate different from the expected one */
Willy Tarreau20879a02012-12-03 16:32:10 +0100252 CO_ER_SSL_HANDSHAKE, /* SSL error during handshake */
Willy Tarreaub3966372014-04-25 18:54:29 +0200253 CO_ER_SSL_HANDSHAKE_HB, /* SSL error during handshake with heartbeat present */
Willy Tarreauf51c6982014-04-25 20:02:39 +0200254 CO_ER_SSL_KILLED_HB, /* Stopped a TLSv1 heartbeat attack (CVE-2014-0160) */
255 CO_ER_SSL_NO_TARGET, /* unknown target (not client nor server) */
Olivier Houchard522eea72017-11-03 16:27:47 +0100256 CO_ER_SSL_EARLY_FAILED, /* Server refused early data */
Willy Tarreau14cba4b2012-11-30 17:33:05 +0100257};
258
Willy Tarreauef9a3602012-12-08 22:29:20 +0100259/* source address settings for outgoing connections */
260enum {
261 /* Tproxy exclusive values from 0 to 7 */
262 CO_SRC_TPROXY_ADDR = 0x0001, /* bind to this non-local address when connecting */
263 CO_SRC_TPROXY_CIP = 0x0002, /* bind to the client's IP address when connecting */
264 CO_SRC_TPROXY_CLI = 0x0003, /* bind to the client's IP+port when connecting */
265 CO_SRC_TPROXY_DYN = 0x0004, /* bind to a dynamically computed non-local address */
266 CO_SRC_TPROXY_MASK = 0x0007, /* bind to a non-local address when connecting */
267
268 CO_SRC_BIND = 0x0008, /* bind to a specific source address when connecting */
269};
270
Willy Tarreau337ea572018-06-19 06:23:38 +0200271/* flags that can be passed to xprt->rcv_buf() and mux->rcv_buf() */
272enum {
273 CO_RFL_BUF_WET = 0x0001, /* Buffer still has some output data present */
Christopher Fauletc6618d62018-10-11 15:56:04 +0200274 CO_RFL_BUF_FLUSH = 0x0002, /* Flush mux's buffers but don't read more data */
Christopher Faulet72d91252018-10-17 11:08:23 +0200275 CO_RFL_KEEP_RSV = 0x0004, /* Don't fill the reserved space */
Willy Tarreau337ea572018-06-19 06:23:38 +0200276};
277
278/* flags that can be passed to xprt->snd_buf() and mux->snd_buf() */
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100279enum {
280 CO_SFL_MSG_MORE = 0x0001, /* More data to come afterwards */
Willy Tarreau7bed9452014-02-02 02:00:24 +0100281 CO_SFL_STREAMER = 0x0002, /* Producer is continuously streaming data */
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100282};
Willy Tarreauef9a3602012-12-08 22:29:20 +0100283
Willy Tarreau13e14102016-12-22 20:25:26 +0100284/* known transport layers (for ease of lookup) */
285enum {
286 XPRT_RAW = 0,
287 XPRT_SSL = 1,
288 XPRT_ENTRIES /* must be last one */
289};
290
Willy Tarreau28f1cb92017-12-20 16:14:44 +0100291/* MUX-specific flags */
292enum {
293 MX_FL_NONE = 0x00000000,
294 MX_FL_CLEAN_ABRT = 0x00000001, /* abort is clearly reported as an error */
295};
296
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200297/* xprt_ops describes transport-layer operations for a connection. They
298 * generally run over a socket-based control layer, but not always. Some
299 * of them are used for data transfer with the upper layer (rcv_*, snd_*)
300 * and the other ones are used to setup and release the transport layer.
Willy Tarreauc5788912012-08-24 18:12:41 +0200301 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200302struct xprt_ops {
Willy Tarreau7f3225f2018-06-19 06:15:17 +0200303 size_t (*rcv_buf)(struct connection *conn, struct buffer *buf, size_t count, int flags); /* recv callback */
Willy Tarreau787db9a2018-06-14 18:31:46 +0200304 size_t (*snd_buf)(struct connection *conn, const struct buffer *buf, size_t count, int flags); /* send callback */
Willy Tarreauc5788912012-08-24 18:12:41 +0200305 int (*rcv_pipe)(struct connection *conn, struct pipe *pipe, unsigned int count); /* recv-to-pipe callback */
306 int (*snd_pipe)(struct connection *conn, struct pipe *pipe); /* send-to-pipe callback */
307 void (*shutr)(struct connection *, int); /* shutr function */
308 void (*shutw)(struct connection *, int); /* shutw function */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200309 void (*close)(struct connection *); /* close the transport layer */
310 int (*init)(struct connection *conn); /* initialize the transport layer */
Willy Tarreau5aacf782016-12-22 17:19:24 +0100311 int (*prepare_bind_conf)(struct bind_conf *conf); /* prepare a whole bind_conf */
Willy Tarreaufa983d32016-12-22 17:30:20 +0100312 void (*destroy_bind_conf)(struct bind_conf *conf); /* destroy a whole bind_conf */
Willy Tarreaud84dab72016-12-22 21:13:18 +0100313 int (*prepare_srv)(struct server *srv); /* prepare a server context */
314 void (*destroy_srv)(struct server *srv); /* destroy a server context */
Willy Tarreaua9c17412016-12-04 18:42:09 +0100315 int (*get_alpn)(const struct connection *conn, const char **str, int *len); /* get application layer name */
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +0100316 char name[8]; /* transport layer name, zero-terminated */
Olivier Houchard6ff20392018-07-17 18:46:31 +0200317 int (*subscribe)(struct connection *conn, int event_type, void *param); /* Subscribe to events, such as "being able to send" */
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200318 int (*unsubscribe)(struct connection *conn, int event_type, void *param); /* Unsubscribe to events */
Willy Tarreauc5788912012-08-24 18:12:41 +0200319};
320
Willy Tarreau53a47662017-08-28 10:53:00 +0200321/* mux_ops describes the mux operations, which are to be performed at the
322 * connection level after data are exchanged with the transport layer in order
323 * to propagate them to streams. The <init> function will automatically be
324 * called once the mux is instanciated by the connection's owner at the end
325 * of a transport handshake, when it is about to transfer data and the data
326 * layer is not ready yet.
327 */
328struct mux_ops {
Olivier Houchardf502aca2018-12-14 19:42:40 +0100329 int (*init)(struct connection *conn, struct proxy *prx, struct session *sess); /* early initialization */
Willy Tarreau53a47662017-08-28 10:53:00 +0200330 int (*wake)(struct connection *conn); /* mux-layer callback to report activity, mandatory */
Willy Tarreau7f3225f2018-06-19 06:15:17 +0200331 size_t (*rcv_buf)(struct conn_stream *cs, struct buffer *buf, size_t count, int flags); /* Called from the upper layer to get data */
Christopher Fauletd44a9b32018-07-27 11:59:41 +0200332 size_t (*snd_buf)(struct conn_stream *cs, struct buffer *buf, size_t count, int flags); /* Called from the upper layer to send data */
Olivier Houchard8e614722017-09-13 18:30:23 +0200333 int (*rcv_pipe)(struct conn_stream *cs, struct pipe *pipe, unsigned int count); /* recv-to-pipe callback */
334 int (*snd_pipe)(struct conn_stream *cs, struct pipe *pipe); /* send-to-pipe callback */
Willy Tarreauecdb3fe2017-10-05 15:25:48 +0200335 void (*shutr)(struct conn_stream *cs, enum cs_shr_mode); /* shutr function */
336 void (*shutw)(struct conn_stream *cs, enum cs_shw_mode); /* shutw function */
Olivier Houchard8e614722017-09-13 18:30:23 +0200337
Olivier Houchardf502aca2018-12-14 19:42:40 +0100338 struct conn_stream *(*attach)(struct connection *, struct session *sess); /* Create and attach a conn_stream to an outgoing connection */
Willy Tarreaufafd3982018-11-18 21:29:20 +0100339 const struct conn_stream *(*get_first_cs)(const struct connection *); /* retrieves any valid conn_stream from this connection */
Olivier Houchard8e614722017-09-13 18:30:23 +0200340 void (*detach)(struct conn_stream *); /* Detach a conn_stream from an outgoing connection, when the request is done */
Willy Tarreau83061a82018-07-13 11:56:34 +0200341 void (*show_fd)(struct buffer *, struct connection *); /* append some data about connection into chunk for "show fd" */
Olivier Houchard6ff20392018-07-17 18:46:31 +0200342 int (*subscribe)(struct conn_stream *cs, int event_type, void *param); /* Subscribe to events, such as "being able to send" */
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200343 int (*unsubscribe)(struct conn_stream *cs, int event_type, void *param); /* Unsubscribe to events */
Olivier Houchardd540b362018-11-05 18:37:53 +0100344 int (*avail_streams)(struct connection *conn); /* Returns the number of streams still available for a connection */
Willy Tarreau00f18a32019-01-26 12:19:01 +0100345 int (*used_streams)(struct connection *conn); /* Returns the number of streams in use on a connection. */
Olivier Houchard060ed432018-11-06 16:32:42 +0100346 void (*destroy)(struct connection *conn); /* Let the mux know one of its users left, so it may have to disappear */
Olivier Houchard9a86fcb2018-12-11 16:47:14 +0100347 void (*reset)(struct connection *conn); /* Reset the mux, because we're re-trying to connect */
Christopher Faulet3bc1b112018-11-29 11:29:26 +0100348 const struct cs_info *(*get_cs_info)(struct conn_stream *cs); /* Return info on the specified conn_stream or NULL if not defined */
Willy Tarreau28f1cb92017-12-20 16:14:44 +0100349 unsigned int flags; /* some flags characterizing the mux's capabilities (MX_FL_*) */
Willy Tarreau53a47662017-08-28 10:53:00 +0200350 char name[8]; /* mux layer name, zero-terminated */
351};
352
Willy Tarreau74beec32012-10-03 00:41:04 +0200353/* data_cb describes the data layer's recv and send callbacks which are called
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200354 * when I/O activity was detected after the transport layer is ready. These
355 * callbacks are supposed to make use of the xprt_ops above to exchange data
Willy Tarreau4aa36832012-10-02 20:07:22 +0200356 * from/to buffers and pipes. The <wake> callback is used to report activity
357 * at the transport layer, which can be a connection opening/close, or any
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200358 * data movement. It may abort a connection by returning < 0.
Willy Tarreauc5788912012-08-24 18:12:41 +0200359 */
Willy Tarreau74beec32012-10-03 00:41:04 +0200360struct data_cb {
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200361 int (*wake)(struct conn_stream *cs); /* data-layer callback to report activity */
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +0100362 char name[8]; /* data layer name, zero-terminated */
Willy Tarreauc5788912012-08-24 18:12:41 +0200363};
364
David Carlier3015a2e2016-07-04 22:51:33 +0100365struct my_tcphdr {
David Carlier327298c2016-11-20 10:42:38 +0000366 uint16_t source;
367 uint16_t dest;
David Carlier3015a2e2016-07-04 22:51:33 +0100368};
369
Willy Tarreauef9a3602012-12-08 22:29:20 +0100370/* a connection source profile defines all the parameters needed to properly
371 * bind an outgoing connection for a server or proxy.
372 */
373
374struct conn_src {
375 unsigned int opts; /* CO_SRC_* */
376 int iface_len; /* bind interface name length */
377 char *iface_name; /* bind interface name or NULL */
378 struct port_range *sport_range; /* optional per-server TCP source ports */
379 struct sockaddr_storage source_addr; /* the address to which we want to bind for connect() */
Willy Tarreau29fbe512015-08-20 19:35:14 +0200380#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +0100381 struct sockaddr_storage tproxy_addr; /* non-local address we want to bind to for connect() */
382 char *bind_hdr_name; /* bind to this header name if defined */
383 int bind_hdr_len; /* length of the name of the header above */
384 int bind_hdr_occ; /* occurrence number of header above: >0 = from first, <0 = from end, 0=disabled */
385#endif
386};
387
Olivier Houcharde2b40b92017-09-13 18:30:23 +0200388/*
389 * This structure describes the elements of a connection relevant to a stream
390 */
391struct conn_stream {
392 enum obj_type obj_type; /* differentiates connection from applet context */
Willy Tarreau5e1cc5e2018-03-02 10:43:58 +0100393 /* 3 bytes hole here */
Olivier Houchard6ff20392018-07-17 18:46:31 +0200394 unsigned int flags; /* CS_FL_* */
Olivier Houcharde2b40b92017-09-13 18:30:23 +0200395 struct connection *conn; /* xprt-level connection */
Olivier Houcharde2b40b92017-09-13 18:30:23 +0200396 void *data; /* pointer to upper layer's entity (eg: stream interface) */
397 const struct data_cb *data_cb; /* data layer callbacks. Must be set before xprt->init() */
398 void *ctx; /* mux-specific context */
399};
400
Christopher Faulet3bc1b112018-11-29 11:29:26 +0100401/*
402 * This structure describes the info related to a conn_stream known by the mux
403 * only but usefull for the upper layer.
404 * For now, only some dates and durations are reported. This structure will
405 * envolved. But for now, only the bare minimum is referenced.
406 */
407struct cs_info {
408 struct timeval create_date; /* Creation date of the conn_stream in user date */
409 struct timeval tv_create; /* Creation date of the conn_stream in internal date (monotonic) */
410 long t_handshake; /* hanshake duration, -1 if never occurs */
411 long t_idle; /* idle duration, -1 if never occurs */
412};
413
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200414/* This structure describes a connection with its methods and data.
415 * A connection may be performed to proxy or server via a local or remote
416 * socket, and can also be made to an internal applet. It can support
Willy Tarreau51c21842013-09-29 09:06:42 +0200417 * several transport schemes (raw, ssl, ...). It can support several
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200418 * connection control schemes, generally a protocol for socket-oriented
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200419 * connections, but other methods for applets. The xprt_done_cb() callback
420 * is called once the transport layer initialization is done (success or
421 * failure). It may return < 0 to report an error and require an abort of the
422 * connection being instanciated. It must be removed once done.
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200423 */
424struct connection {
Olivier Houchard6ff20392018-07-17 18:46:31 +0200425 /* first cache line */
Willy Tarreau51c21842013-09-29 09:06:42 +0200426 enum obj_type obj_type; /* differentiates connection from applet context */
Willy Tarreauad5281c2013-12-06 21:09:57 +0100427 unsigned char err_code; /* CO_ER_* */
428 signed short send_proxy_ofs; /* <0 = offset to (re)send from the end, >0 = send all */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200429 unsigned int flags; /* CO_FL_* */
Willy Tarreauc5788912012-08-24 18:12:41 +0200430 const struct protocol *ctrl; /* operations at the socket layer */
Willy Tarreau378e0412012-10-13 14:33:58 +0200431 const struct xprt_ops *xprt; /* operations at the transport layer */
Willy Tarreau53a47662017-08-28 10:53:00 +0200432 const struct mux_ops *mux; /* mux layer opreations. Must be set before xprt->init() */
Willy Tarreau378e0412012-10-13 14:33:58 +0200433 void *xprt_ctx; /* general purpose pointer, initialized to NULL */
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100434 void *ctx; /* highest level context (usually the mux), initialized to NULL */
Olivier Houchardf3e65b02018-12-02 00:35:08 +0100435 void *owner; /* pointer to the owner session, or NULL */
Olivier Houchard6ff20392018-07-17 18:46:31 +0200436 enum obj_type *target; /* the target to connect to (server, proxy, applet, ...) */
437
438 /* second cache line */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200439 struct wait_event *send_wait; /* Task to wake when we're ready to send */
440 struct wait_event *recv_wait; /* Task to wake when we're ready to recv */
Olivier Houchard6ff20392018-07-17 18:46:31 +0200441 struct list list; /* attach point to various connection lists (idle, ...) */
Olivier Houchard00cf70f2018-11-30 17:24:55 +0100442 struct list session_list; /* List of attached connections to a session */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200443 int xprt_st; /* transport layer state, initialized to zero */
Willy Tarreau53a47662017-08-28 10:53:00 +0200444 int tmp_early_data; /* 1st byte of early data, if any */
Olivier Houchard90084a12017-11-23 18:21:29 +0100445 int sent_early_data; /* Amount of early data we sent so far */
Willy Tarreau585744b2017-08-24 14:31:19 +0200446 union conn_handle handle; /* connection handle at the socket layer */
Olivier Houchard6ff20392018-07-17 18:46:31 +0200447 const struct netns_entry *proxy_netns;
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200448 int (*xprt_done_cb)(struct connection *conn); /* callback to notify of end of handshake */
Olivier Houchard6ff20392018-07-17 18:46:31 +0200449
450 /* third cache line and beyond */
Willy Tarreau436d3332017-10-08 11:16:46 +0200451 void (*destroy_cb)(struct connection *conn); /* callback to notify of imminent death of the connection */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200452 struct {
453 struct sockaddr_storage from; /* client address, or address to spoof when connecting to the server */
Willy Tarreaucd379952012-09-27 22:14:33 +0200454 struct sockaddr_storage to; /* address reached by the client, or address to connect to */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200455 } addr; /* addresses of the remote side, client for producer and server for consumer */
Olivier Houchard006e3102018-12-10 18:30:32 +0100456 unsigned int idle_time; /* Time the connection was added to the idle list, or 0 if not in the idle list */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200457};
458
Christopher Faulet32f61c02018-04-10 14:33:41 +0200459/* PROTO token registration */
460enum proto_proxy_mode {
461 PROTO_MODE_NONE = 0,
462 PROTO_MODE_TCP = 1 << 0, // must not be changed!
463 PROTO_MODE_HTTP = 1 << 1, // must not be changed!
Willy Tarreau68ad3a42018-10-22 11:49:15 +0200464 PROTO_MODE_HTX = 1 << 2, // must not be changed!
465 PROTO_MODE_ANY = PROTO_MODE_TCP | PROTO_MODE_HTTP, // note: HTX is experimental and must not appear here
Willy Tarreau2386be62017-09-21 19:40:52 +0200466};
467
Christopher Faulet32f61c02018-04-10 14:33:41 +0200468enum proto_proxy_side {
469 PROTO_SIDE_NONE = 0,
470 PROTO_SIDE_FE = 1, // same as PR_CAP_FE
471 PROTO_SIDE_BE = 2, // same as PR_CAP_BE
472 PROTO_SIDE_BOTH = PROTO_SIDE_FE | PROTO_SIDE_BE,
Christopher Faulet2d5292a2018-03-06 14:43:47 +0100473};
474
Christopher Faulet32f61c02018-04-10 14:33:41 +0200475struct mux_proto_list {
Willy Tarreau2386be62017-09-21 19:40:52 +0200476 const struct ist token; /* token name and length. Empty is catch-all */
Christopher Faulet32f61c02018-04-10 14:33:41 +0200477 enum proto_proxy_mode mode;
478 enum proto_proxy_side side;
Willy Tarreau2386be62017-09-21 19:40:52 +0200479 const struct mux_ops *mux;
480 struct list list;
481};
482
David Safb76832014-05-08 23:42:08 -0400483/* proxy protocol v2 definitions */
Willy Tarreau8fccfa22014-06-14 08:28:06 +0200484#define PP2_SIGNATURE "\x0D\x0A\x0D\x0A\x00\x0D\x0A\x51\x55\x49\x54\x0A"
485#define PP2_SIGNATURE_LEN 12
486#define PP2_HEADER_LEN 16
David Safb76832014-05-08 23:42:08 -0400487
Willy Tarreau8fccfa22014-06-14 08:28:06 +0200488/* ver_cmd byte */
489#define PP2_CMD_LOCAL 0x00
490#define PP2_CMD_PROXY 0x01
491#define PP2_CMD_MASK 0x0F
David Safb76832014-05-08 23:42:08 -0400492
Willy Tarreau8fccfa22014-06-14 08:28:06 +0200493#define PP2_VERSION 0x20
494#define PP2_VERSION_MASK 0xF0
495
496/* fam byte */
497#define PP2_TRANS_UNSPEC 0x00
498#define PP2_TRANS_STREAM 0x01
499#define PP2_TRANS_DGRAM 0x02
500#define PP2_TRANS_MASK 0x0F
501
502#define PP2_FAM_UNSPEC 0x00
503#define PP2_FAM_INET 0x10
504#define PP2_FAM_INET6 0x20
505#define PP2_FAM_UNIX 0x30
506#define PP2_FAM_MASK 0xF0
507
508#define PP2_ADDR_LEN_UNSPEC (0)
509#define PP2_ADDR_LEN_INET (4 + 4 + 2 + 2)
510#define PP2_ADDR_LEN_INET6 (16 + 16 + 2 + 2)
511#define PP2_ADDR_LEN_UNIX (108 + 108)
512
513#define PP2_HDR_LEN_UNSPEC (PP2_HEADER_LEN + PP2_ADDR_LEN_UNSPEC)
514#define PP2_HDR_LEN_INET (PP2_HEADER_LEN + PP2_ADDR_LEN_INET)
515#define PP2_HDR_LEN_INET6 (PP2_HEADER_LEN + PP2_ADDR_LEN_INET6)
516#define PP2_HDR_LEN_UNIX (PP2_HEADER_LEN + PP2_ADDR_LEN_UNIX)
David Safb76832014-05-08 23:42:08 -0400517
518struct proxy_hdr_v2 {
519 uint8_t sig[12]; /* hex 0D 0A 0D 0A 00 0D 0A 51 55 49 54 0A */
Willy Tarreau8fccfa22014-06-14 08:28:06 +0200520 uint8_t ver_cmd; /* protocol version and command */
David Safb76832014-05-08 23:42:08 -0400521 uint8_t fam; /* protocol family and transport */
522 uint16_t len; /* number of following bytes part of the header */
Willy Tarreau8fccfa22014-06-14 08:28:06 +0200523 union {
524 struct { /* for TCP/UDP over IPv4, len = 12 */
525 uint32_t src_addr;
526 uint32_t dst_addr;
527 uint16_t src_port;
528 uint16_t dst_port;
529 } ip4;
530 struct { /* for TCP/UDP over IPv6, len = 36 */
531 uint8_t src_addr[16];
532 uint8_t dst_addr[16];
533 uint16_t src_port;
534 uint16_t dst_port;
535 } ip6;
536 struct { /* for AF_UNIX sockets, len = 216 */
537 uint8_t src_addr[108];
538 uint8_t dst_addr[108];
539 } unx;
540 } addr;
David Safb76832014-05-08 23:42:08 -0400541};
542
Emmanuel Hocdet58118b42017-10-13 12:15:28 +0200543#define PP2_TYPE_ALPN 0x01
544#define PP2_TYPE_AUTHORITY 0x02
545#define PP2_TYPE_CRC32C 0x03
546#define PP2_TYPE_NOOP 0x04
547#define PP2_TYPE_SSL 0x20
548#define PP2_SUBTYPE_SSL_VERSION 0x21
549#define PP2_SUBTYPE_SSL_CN 0x22
550#define PP2_SUBTYPE_SSL_CIPHER 0x23
551#define PP2_SUBTYPE_SSL_SIG_ALG 0x24
552#define PP2_SUBTYPE_SSL_KEY_ALG 0x25
553#define PP2_TYPE_NETNS 0x30
David Safb76832014-05-08 23:42:08 -0400554
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100555#define TLV_HEADER_SIZE 3
David Safb76832014-05-08 23:42:08 -0400556struct tlv {
557 uint8_t type;
558 uint8_t length_hi;
559 uint8_t length_lo;
560 uint8_t value[0];
561}__attribute__((packed));
562
563struct tlv_ssl {
564 struct tlv tlv;
565 uint8_t client;
566 uint32_t verify;
567 uint8_t sub_tlv[0];
568}__attribute__((packed));
569
Dave McCowan328fb582014-07-30 10:39:13 -0400570#define PP2_CLIENT_SSL 0x01
571#define PP2_CLIENT_CERT_CONN 0x02
572#define PP2_CLIENT_CERT_SESS 0x04
David Safb76832014-05-08 23:42:08 -0400573
Olivier Houchardf886e342017-04-05 22:24:59 +0200574
575/*
576 * Linux seems to be able to send 253 fds per sendmsg(), not sure
577 * about the other OSes.
578 */
579/* Max number of file descriptors we send in one sendmsg() */
580#define MAX_SEND_FD 253
581
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200582#endif /* _TYPES_CONNECTION_H */
583
584/*
585 * Local variables:
586 * c-indent-level: 8
587 * c-basic-offset: 8
588 * End:
589 */