blob: 8a1b8ee5052b03acc2b2b655c0bd5d67394ba6ca [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 *
5 * Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu
6 *
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>
29
Willy Tarreaud1d54542012-09-12 22:58:11 +020030#include <types/listener.h>
31#include <types/protocol.h>
32
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020033/* referenced below */
Willy Tarreauc5788912012-08-24 18:12:41 +020034struct connection;
35struct buffer;
36struct pipe;
Willy Tarreau3cefd522012-08-30 15:49:18 +020037struct server;
38struct proxy;
39struct si_applet;
40struct task;
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020041
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020042/* Polling flags that are manipulated by I/O callbacks and handshake callbacks
43 * indicate what they expect from a file descriptor at each layer. For each
44 * direction, we have 2 bits, one stating whether any suspected activity on the
45 * FD induce a call to the iocb, and another one indicating that the FD has
46 * already returned EAGAIN and that polling on it is essential before calling
47 * the iocb again :
48 * POL ENA state
49 * 0 0 STOPPED : any activity on this FD is ignored
50 * 0 1 ENABLED : any (suspected) activity may call the iocb
51 * 1 0 STOPPED : as above
52 * 1 1 POLLED : the FD is being polled for activity
53 *
54 * - Enabling an I/O event consists in ORing with 1.
55 * - Stopping an I/O event consists in ANDing with ~1.
56 * - Polling for an I/O event consists in ORing with ~3.
57 *
58 * The last computed state is remembered in CO_FL_CURR_* so that differential
Willy Tarreaue9dfa792012-09-01 17:26:16 +020059 * changes can be applied. After bits are applied, the POLL status bits are
60 * cleared so that it is possible to detect when an EAGAIN was encountered. For
61 * pollers that do not support speculative I/O, POLLED is the same as ENABLED
62 * and the POL flag can safely be ignored. However it makes a difference for
63 * the connection handler.
64 *
65 * The ENA flags are per-layer (one pair for SOCK, another one for DATA).
66 * The POL flags are only for the socket layer since they indicate that EAGAIN
67 * was encountered. Thus, the DATA layer uses its own ENA flag and the socket
68 * layer's POL flag.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020069 */
70
Willy Tarreau900bc932012-07-06 09:52:14 +020071/* flags for use in connection->flags */
72enum {
73 CO_FL_NONE = 0x00000000,
74 CO_FL_ERROR = 0x00000001, /* a fatal error was reported */
Willy Tarreauc76ae332012-07-12 15:32:13 +020075 CO_FL_CONNECTED = 0x00000002, /* the connection is now established */
76 CO_FL_WAIT_L4_CONN = 0x00000004, /* waiting for L4 to be connected */
77 CO_FL_WAIT_L6_CONN = 0x00000008, /* waiting for L6 to be connected (eg: SSL) */
78
79 CO_FL_NOTIFY_SI = 0x00000010, /* notify stream interface about changes */
80
Willy Tarreau2c6be842012-07-06 17:12:34 +020081 /* flags below are used for connection handshakes */
Willy Tarreauc76ae332012-07-12 15:32:13 +020082 CO_FL_SI_SEND_PROXY = 0x00000020, /* send a valid PROXY protocol header */
Emeric Brun7dd0e502012-05-18 15:47:34 +020083 CO_FL_SSL_WAIT_HS = 0x00000040, /* wait for an SSL handshake to complete */
Willy Tarreau22cda212012-08-31 17:43:29 +020084 CO_FL_ACCEPT_PROXY = 0x00000080, /* send a valid PROXY protocol header */
Willy Tarreauc76ae332012-07-12 15:32:13 +020085
86 /* below we have all handshake flags grouped into one */
Emeric Brun7dd0e502012-05-18 15:47:34 +020087 CO_FL_HANDSHAKE = CO_FL_SI_SEND_PROXY | CO_FL_SSL_WAIT_HS | CO_FL_ACCEPT_PROXY,
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020088
Willy Tarreau2542b532012-08-31 16:01:23 +020089 CO_FL_INIT_SESS = 0x00000800, /* initialize a session before using data */
90
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020091 /* when any of these flags is set, polling is defined by socket-layer
92 * operations, as opposed to data-layer.
93 */
94 CO_FL_POLL_SOCK = CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN,
95
Willy Tarreau986a9d22012-08-30 21:11:38 +020096 /* These flags are used to report whether the from/to addresses are set or not */
Willy Tarreaue9dfa792012-09-01 17:26:16 +020097 CO_FL_ADDR_FROM_SET = 0x00004000, /* addr.from is set */
98 CO_FL_ADDR_TO_SET = 0x00008000, /* addr.to is set */
Willy Tarreau2ba44652012-08-20 17:30:32 +020099
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200100 /* flags used to remember what shutdown have been performed/reported */
101 CO_FL_DATA_RD_SH = 0x00010000, /* DATA layer was notified about shutr/read0 */
102 CO_FL_DATA_WR_SH = 0x00020000, /* DATA layer asked for shutw */
103 CO_FL_SOCK_RD_SH = 0x00040000, /* SOCK layer was notified about shutr/read0 */
104 CO_FL_SOCK_WR_SH = 0x00080000, /* SOCK layer asked for shutw */
105
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200106 /* NOTE: do not change the values of any of the flags below, they're
107 * used with masks and bit shifts to quickly detect multiple changes.
108 */
109
110 /* These flags are used by data layers to indicate to indicate they had
111 * to stop sending data because a buffer was empty (WAIT_DATA) or stop
112 * receiving data because a buffer was full (WAIT_ROOM). The connection
113 * handler clears them before first calling the I/O and data callbacks.
114 */
115 CO_FL_WAIT_DATA = 0x00100000, /* data source is empty */
116 CO_FL_WAIT_ROOM = 0x00200000, /* data sink is full */
117
118 /* These flags are used by both socket-level and data-level callbacks
119 * to indicate that they had to stop receiving or sending because a
120 * socket-level operation returned EAGAIN. While setting these flags
121 * is not always absolutely mandatory (eg: when a reader estimates that
122 * trying again soon without polling is OK), it is however forbidden to
123 * set them without really attempting the I/O operation.
124 */
125 CO_FL_WAIT_RD = 0x00400000, /* receiving needs to poll first */
126 CO_FL_WAIT_WR = 0x00800000, /* sending needs to poll first */
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200127
128 /* flags describing the DATA layer expectations regarding polling */
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200129 CO_FL_DATA_RD_ENA = 0x01000000, /* receiving is allowed */
130 CO_FL_DATA_WR_ENA = 0x02000000, /* sending is desired */
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200131
132 /* flags describing the SOCK layer expectations regarding polling */
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200133 CO_FL_SOCK_RD_ENA = 0x04000000, /* receiving is allowed */
134 CO_FL_SOCK_WR_ENA = 0x08000000, /* sending is desired */
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200135
136 /* flags storing the current polling state */
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200137 CO_FL_CURR_RD_ENA = 0x10000000, /* receiving is allowed */
138 CO_FL_CURR_WR_ENA = 0x20000000, /* sending is desired */
139 CO_FL_CURR_RD_POL = 0x40000000, /* receiving needs to poll first */
140 CO_FL_CURR_WR_POL = 0x80000000, /* sending needs to poll first */
Willy Tarreau900bc932012-07-06 09:52:14 +0200141};
142
Willy Tarreau3cefd522012-08-30 15:49:18 +0200143/* target types */
144enum {
145 TARG_TYPE_NONE = 0, /* no target set, pointer is NULL by definition */
146 TARG_TYPE_CLIENT, /* target is a client, pointer is NULL by definition */
147 TARG_TYPE_PROXY, /* target is a proxy ; use address with the proxy's settings */
148 TARG_TYPE_SERVER, /* target is a server ; use address with server's and its proxy's settings */
149 TARG_TYPE_APPLET, /* target is an applet ; use only the applet */
150 TARG_TYPE_TASK, /* target is a task running an external applet */
151};
152
Willy Tarreauc5788912012-08-24 18:12:41 +0200153
154/* data_ops describes data-layer operations for a connection. They generally
155 * run over a socket-based control layer, but not always.
156 */
157struct data_ops {
158 int (*rcv_buf)(struct connection *conn, struct buffer *buf, int count); /* recv callback */
159 int (*snd_buf)(struct connection *conn, struct buffer *buf, int flags); /* send callback */
160 int (*rcv_pipe)(struct connection *conn, struct pipe *pipe, unsigned int count); /* recv-to-pipe callback */
161 int (*snd_pipe)(struct connection *conn, struct pipe *pipe); /* send-to-pipe callback */
162 void (*shutr)(struct connection *, int); /* shutr function */
163 void (*shutw)(struct connection *, int); /* shutw function */
164 void (*close)(struct connection *); /* close the data channel on the connection */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200165 int (*init)(struct connection *conn); /* initialize the data layer */
Willy Tarreauc5788912012-08-24 18:12:41 +0200166};
167
168/* app_cb describes read and write callbacks which are called upon detected I/O
169 * activity at the data layer. These callbacks are supposed to make use of the
170 * data_ops above to exchange data from/to buffers and pipes.
171 */
172struct app_cb {
173 void (*recv)(struct connection *conn); /* application-layer recv callback */
174 void (*send)(struct connection *conn); /* application-layer send callback */
175};
176
Willy Tarreau3cefd522012-08-30 15:49:18 +0200177/* a target describes what is on the remote side of the connection. */
178struct target {
179 int type;
180 union {
181 void *v; /* pointer value, for any type */
182 struct proxy *p; /* when type is TARG_TYPE_PROXY */
183 struct server *s; /* when type is TARG_TYPE_SERVER */
184 struct si_applet *a; /* when type is TARG_TYPE_APPLET */
185 struct task *t; /* when type is TARG_TYPE_TASK */
186 struct listener *l; /* when type is TARG_TYPE_CLIENT */
187 } ptr;
188};
189
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200190/* This structure describes a connection with its methods and data.
191 * A connection may be performed to proxy or server via a local or remote
192 * socket, and can also be made to an internal applet. It can support
193 * several data schemes (applet, raw, ssl, ...). It can support several
194 * connection control schemes, generally a protocol for socket-oriented
195 * connections, but other methods for applets.
196 */
197struct connection {
Willy Tarreauc5788912012-08-24 18:12:41 +0200198 const struct data_ops *data; /* operations at the data layer */
199 const struct protocol *ctrl; /* operations at the socket layer */
200 const struct app_cb *app_cb; /* application layer callbacks */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200201 union { /* definitions which depend on connection type */
202 struct { /*** information used by socket-based connections ***/
203 int fd; /* file descriptor for a stream driver when known */
204 } sock;
205 } t;
Willy Tarreau900bc932012-07-06 09:52:14 +0200206 unsigned int flags; /* CO_F_* */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200207 int data_st; /* data layer state, initialized to zero */
208 void *data_ctx; /* general purpose pointer, initialized to NULL */
Willy Tarreau3cefd522012-08-30 15:49:18 +0200209 struct target target; /* the target to connect to (server, proxy, applet, ...) */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200210 struct {
211 struct sockaddr_storage from; /* client address, or address to spoof when connecting to the server */
212 struct sockaddr_storage to; /* address reached by the client if SN_FRT_ADDR_SET is set, or address to connect to */
213 } addr; /* addresses of the remote side, client for producer and server for consumer */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200214};
215
216#endif /* _TYPES_CONNECTION_H */
217
218/*
219 * Local variables:
220 * c-indent-level: 8
221 * c-basic-offset: 8
222 * End:
223 */