blob: b1637307fbc6b90c4b8b2c3dd981b4e7e0a7f271 [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
30/* referenced below */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020031struct protocol;
Willy Tarreauc5788912012-08-24 18:12:41 +020032struct connection;
33struct buffer;
34struct pipe;
Willy Tarreau3cefd522012-08-30 15:49:18 +020035struct server;
36struct proxy;
37struct si_applet;
38struct task;
39struct listener;
Willy Tarreau56e9c5e2012-07-06 09:47:57 +020040
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020041/* Polling flags that are manipulated by I/O callbacks and handshake callbacks
42 * indicate what they expect from a file descriptor at each layer. For each
43 * direction, we have 2 bits, one stating whether any suspected activity on the
44 * FD induce a call to the iocb, and another one indicating that the FD has
45 * already returned EAGAIN and that polling on it is essential before calling
46 * the iocb again :
47 * POL ENA state
48 * 0 0 STOPPED : any activity on this FD is ignored
49 * 0 1 ENABLED : any (suspected) activity may call the iocb
50 * 1 0 STOPPED : as above
51 * 1 1 POLLED : the FD is being polled for activity
52 *
53 * - Enabling an I/O event consists in ORing with 1.
54 * - Stopping an I/O event consists in ANDing with ~1.
55 * - Polling for an I/O event consists in ORing with ~3.
56 *
57 * The last computed state is remembered in CO_FL_CURR_* so that differential
58 * changes can be applied. For pollers that do not support speculative I/O,
59 * POLLED is the same as ENABLED and the POL flag can safely be ignored.
60 */
61
Willy Tarreau900bc932012-07-06 09:52:14 +020062/* flags for use in connection->flags */
63enum {
64 CO_FL_NONE = 0x00000000,
65 CO_FL_ERROR = 0x00000001, /* a fatal error was reported */
Willy Tarreauc76ae332012-07-12 15:32:13 +020066 CO_FL_CONNECTED = 0x00000002, /* the connection is now established */
67 CO_FL_WAIT_L4_CONN = 0x00000004, /* waiting for L4 to be connected */
68 CO_FL_WAIT_L6_CONN = 0x00000008, /* waiting for L6 to be connected (eg: SSL) */
69
70 CO_FL_NOTIFY_SI = 0x00000010, /* notify stream interface about changes */
71
Willy Tarreau2c6be842012-07-06 17:12:34 +020072 /* flags below are used for connection handshakes */
Willy Tarreauc76ae332012-07-12 15:32:13 +020073 CO_FL_SI_SEND_PROXY = 0x00000020, /* send a valid PROXY protocol header */
74
75 /* below we have all handshake flags grouped into one */
76 CO_FL_HANDSHAKE = CO_FL_SI_SEND_PROXY,
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020077
78 /* when any of these flags is set, polling is defined by socket-layer
79 * operations, as opposed to data-layer.
80 */
81 CO_FL_POLL_SOCK = CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN,
82
Willy Tarreau2ba44652012-08-20 17:30:32 +020083 /* These flags are used by data layers to indicate to their iterators
84 * whether they had to stop due to missing data or missing room. Their
85 * callers must reset them before calling the data layer handlers.
86 */
87 CO_FL_WAIT_DATA = 0x00004000, /* data source is empty */
88 CO_FL_WAIT_ROOM = 0x00008000, /* data sink is full */
89
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020090 /* flags used to remember what shutdown have been performed/reported */
91 CO_FL_DATA_RD_SH = 0x00010000, /* DATA layer was notified about shutr/read0 */
92 CO_FL_DATA_WR_SH = 0x00020000, /* DATA layer asked for shutw */
93 CO_FL_SOCK_RD_SH = 0x00040000, /* SOCK layer was notified about shutr/read0 */
94 CO_FL_SOCK_WR_SH = 0x00080000, /* SOCK layer asked for shutw */
95
96 /****** NOTE: do not change the values of the flags below ******/
97 CO_FL_RD_ENA = 1, CO_FL_RD_POL = 2, CO_FL_WR_ENA = 4, CO_FL_WR_POL = 8,
98
99 /* flags describing the DATA layer expectations regarding polling */
100 CO_FL_DATA_RD_ENA = CO_FL_RD_ENA << 20, /* receiving is allowed */
101 CO_FL_DATA_RD_POL = CO_FL_RD_POL << 20, /* receiving needs to poll first */
102 CO_FL_DATA_WR_ENA = CO_FL_WR_ENA << 20, /* sending is desired */
103 CO_FL_DATA_WR_POL = CO_FL_WR_POL << 20, /* sending needs to poll first */
104
105 /* flags describing the SOCK layer expectations regarding polling */
106 CO_FL_SOCK_RD_ENA = CO_FL_RD_ENA << 24, /* receiving is allowed */
107 CO_FL_SOCK_RD_POL = CO_FL_RD_POL << 24, /* receiving needs to poll first */
108 CO_FL_SOCK_WR_ENA = CO_FL_WR_ENA << 24, /* sending is desired */
109 CO_FL_SOCK_WR_POL = CO_FL_WR_POL << 24, /* sending needs to poll first */
110
111 /* flags storing the current polling state */
112 CO_FL_CURR_RD_ENA = CO_FL_RD_ENA << 28, /* receiving is allowed */
113 CO_FL_CURR_RD_POL = CO_FL_RD_POL << 28, /* receiving needs to poll first */
114 CO_FL_CURR_WR_ENA = CO_FL_WR_ENA << 28, /* sending is desired */
115 CO_FL_CURR_WR_POL = CO_FL_WR_POL << 28, /* sending needs to poll first */
Willy Tarreau900bc932012-07-06 09:52:14 +0200116};
117
Willy Tarreau3cefd522012-08-30 15:49:18 +0200118/* target types */
119enum {
120 TARG_TYPE_NONE = 0, /* no target set, pointer is NULL by definition */
121 TARG_TYPE_CLIENT, /* target is a client, pointer is NULL by definition */
122 TARG_TYPE_PROXY, /* target is a proxy ; use address with the proxy's settings */
123 TARG_TYPE_SERVER, /* target is a server ; use address with server's and its proxy's settings */
124 TARG_TYPE_APPLET, /* target is an applet ; use only the applet */
125 TARG_TYPE_TASK, /* target is a task running an external applet */
126};
127
Willy Tarreauc5788912012-08-24 18:12:41 +0200128
129/* data_ops describes data-layer operations for a connection. They generally
130 * run over a socket-based control layer, but not always.
131 */
132struct data_ops {
133 int (*rcv_buf)(struct connection *conn, struct buffer *buf, int count); /* recv callback */
134 int (*snd_buf)(struct connection *conn, struct buffer *buf, int flags); /* send callback */
135 int (*rcv_pipe)(struct connection *conn, struct pipe *pipe, unsigned int count); /* recv-to-pipe callback */
136 int (*snd_pipe)(struct connection *conn, struct pipe *pipe); /* send-to-pipe callback */
137 void (*shutr)(struct connection *, int); /* shutr function */
138 void (*shutw)(struct connection *, int); /* shutw function */
139 void (*close)(struct connection *); /* close the data channel on the connection */
140};
141
142/* app_cb describes read and write callbacks which are called upon detected I/O
143 * activity at the data layer. These callbacks are supposed to make use of the
144 * data_ops above to exchange data from/to buffers and pipes.
145 */
146struct app_cb {
147 void (*recv)(struct connection *conn); /* application-layer recv callback */
148 void (*send)(struct connection *conn); /* application-layer send callback */
149};
150
Willy Tarreau3cefd522012-08-30 15:49:18 +0200151/* a target describes what is on the remote side of the connection. */
152struct target {
153 int type;
154 union {
155 void *v; /* pointer value, for any type */
156 struct proxy *p; /* when type is TARG_TYPE_PROXY */
157 struct server *s; /* when type is TARG_TYPE_SERVER */
158 struct si_applet *a; /* when type is TARG_TYPE_APPLET */
159 struct task *t; /* when type is TARG_TYPE_TASK */
160 struct listener *l; /* when type is TARG_TYPE_CLIENT */
161 } ptr;
162};
163
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200164/* This structure describes a connection with its methods and data.
165 * A connection may be performed to proxy or server via a local or remote
166 * socket, and can also be made to an internal applet. It can support
167 * several data schemes (applet, raw, ssl, ...). It can support several
168 * connection control schemes, generally a protocol for socket-oriented
169 * connections, but other methods for applets.
170 */
171struct connection {
Willy Tarreauc5788912012-08-24 18:12:41 +0200172 const struct data_ops *data; /* operations at the data layer */
173 const struct protocol *ctrl; /* operations at the socket layer */
174 const struct app_cb *app_cb; /* application layer callbacks */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200175 union { /* definitions which depend on connection type */
176 struct { /*** information used by socket-based connections ***/
177 int fd; /* file descriptor for a stream driver when known */
178 } sock;
179 } t;
Willy Tarreau900bc932012-07-06 09:52:14 +0200180 unsigned int flags; /* CO_F_* */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200181 int data_st; /* data layer state, initialized to zero */
182 void *data_ctx; /* general purpose pointer, initialized to NULL */
Willy Tarreau3cefd522012-08-30 15:49:18 +0200183 struct target target; /* the target to connect to (server, proxy, applet, ...) */
Willy Tarreau56e9c5e2012-07-06 09:47:57 +0200184 struct sockaddr *peeraddr; /* pointer to peer's network address, or NULL if unset */
185 socklen_t peerlen; /* peer's address length, or 0 if unset */
186};
187
188#endif /* _TYPES_CONNECTION_H */
189
190/*
191 * Local variables:
192 * c-indent-level: 8
193 * c-basic-offset: 8
194 * End:
195 */