blob: 37af379680215a43607a06c8fc9ea470cfdf5ff6 [file] [log] [blame]
Willy Tarreau59f98392012-07-06 14:13:49 +02001/*
2 * include/proto/connection.h
3 * This file contains connection function prototypes
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 _PROTO_CONNECTION_H
23#define _PROTO_CONNECTION_H
24
25#include <common/config.h>
26#include <types/connection.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020027#include <types/listener.h>
Willy Tarreau59f98392012-07-06 14:13:49 +020028
29/* I/O callback for fd-based connections. It calls the read/write handlers
Willy Tarreauafad0e02012-08-09 14:45:22 +020030 * provided by the connection's sock_ops. Returns 0.
Willy Tarreau59f98392012-07-06 14:13:49 +020031 */
32int conn_fd_handler(int fd);
33
Willy Tarreau22cda212012-08-31 17:43:29 +020034/* receive a PROXY protocol header over a connection */
35int conn_recv_proxy(struct connection *conn, int flag);
Willy Tarreaue1e4a612012-10-05 00:10:55 +020036int make_proxy_line(char *buf, int buf_len, struct sockaddr_storage *src, struct sockaddr_storage *dst);
Willy Tarreau22cda212012-08-31 17:43:29 +020037
Willy Tarreauf7bc57c2012-10-03 00:19:48 +020038/* calls the init() function of the transport layer if any.
39 * Returns <0 in case of error.
Willy Tarreau15678ef2012-08-31 13:54:11 +020040 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +020041static inline int conn_xprt_init(struct connection *conn)
Willy Tarreau15678ef2012-08-31 13:54:11 +020042{
Willy Tarreauf7bc57c2012-10-03 00:19:48 +020043 if (conn->xprt && conn->xprt->init)
44 return conn->xprt->init(conn);
Willy Tarreau15678ef2012-08-31 13:54:11 +020045 return 0;
46}
47
Willy Tarreauf7bc57c2012-10-03 00:19:48 +020048/* Calls the close() function of the transport layer if any */
49static inline void conn_xprt_close(struct connection *conn)
Willy Tarreau8b117082012-08-06 15:06:49 +020050{
Willy Tarreauf7bc57c2012-10-03 00:19:48 +020051 if (conn->xprt && conn->xprt->close)
52 conn->xprt->close(conn);
Willy Tarreau8b117082012-08-06 15:06:49 +020053}
54
Willy Tarreaue9dfa792012-09-01 17:26:16 +020055/* Update polling on connection <c>'s file descriptor depending on its current
56 * state as reported in the connection's CO_FL_CURR_* flags, reports of EAGAIN
57 * in CO_FL_WAIT_*, and the sock layer expectations indicated by CO_FL_SOCK_*.
58 * The connection flags are updated with the new flags at the end of the
Willy Tarreau0ffde2c2012-10-04 22:21:15 +020059 * operation. Polling is totally disabled if an error was reported.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020060 */
Willy Tarreaue9dfa792012-09-01 17:26:16 +020061void conn_update_sock_polling(struct connection *c);
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020062
Willy Tarreaue9dfa792012-09-01 17:26:16 +020063/* Update polling on connection <c>'s file descriptor depending on its current
64 * state as reported in the connection's CO_FL_CURR_* flags, reports of EAGAIN
65 * in CO_FL_WAIT_*, and the data layer expectations indicated by CO_FL_DATA_*.
66 * The connection flags are updated with the new flags at the end of the
Willy Tarreau0ffde2c2012-10-04 22:21:15 +020067 * operation. Polling is totally disabled if an error was reported.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020068 */
Willy Tarreaue9dfa792012-09-01 17:26:16 +020069void conn_update_data_polling(struct connection *c);
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020070
Willy Tarreau5f1504f2012-10-04 23:55:57 +020071/* This callback is used to send a valid PROXY protocol line to a socket being
72 * established from the local machine. It sets the protocol addresses to the
73 * local and remote address. This is typically used with health checks or when
74 * it is not possible to determine the other end's address. It returns 0 if it
75 * fails in a fatal way or needs to poll to go further, otherwise it returns
76 * non-zero and removes itself from the connection's flags (the bit is provided
77 * in <flag> by the caller). It is designed to be called by the connection
78 * handler and relies on it to commit polling changes. Note that this function
79 * expects to be able to send the whole line at once, which should always be
80 * possible since it is supposed to start at the first byte of the outgoing
81 * data segment.
82 */
83int conn_local_send_proxy(struct connection *conn, unsigned int flag);
84
Willy Tarreaue9dfa792012-09-01 17:26:16 +020085/* inspects c->flags and returns non-zero if DATA ENA changes from the CURR ENA
Willy Tarreau0ffde2c2012-10-04 22:21:15 +020086 * or if the WAIT flags set new flags that were not in CURR POL. Additionally,
87 * non-zero is also returned if an error was reported on the connection. This
88 * function is used quite often and is inlined. In order to proceed optimally
89 * with very little code and CPU cycles, the bits are arranged so that a change
90 * can be detected by a simple left shift, a xor, and a mask. This operation
91 * detects when POLL:DATA differs from WAIT:CURR. In order to detect the ERROR
92 * flag without additional work, we remove it from the copy of the original
93 * flags (unshifted) before doing the XOR. This operation is parallelized with
94 * the shift and does not induce additional cycles. This explains why we check
95 * the error bit shifted left in the mask. Last, the final operation is an AND
96 * which the compiler is able to replace with a TEST in boolean conditions. The
97 * result is that all these checks are done in 5-6 cycles only and less than 20
98 * bytes.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +020099 */
100static inline unsigned int conn_data_polling_changes(const struct connection *c)
101{
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200102 unsigned int f = c->flags << 2;
Willy Tarreau0ffde2c2012-10-04 22:21:15 +0200103 return ((c->flags & ~(CO_FL_ERROR << 2)) ^ f) &
104 ((CO_FL_ERROR<<2)|CO_FL_WAIT_WR|CO_FL_CURR_WR_ENA|CO_FL_WAIT_RD|CO_FL_CURR_RD_ENA) &
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200105 ~(f & (CO_FL_WAIT_WR|CO_FL_WAIT_RD));
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200106}
107
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200108/* inspects c->flags and returns non-zero if SOCK ENA changes from the CURR ENA
Willy Tarreau0ffde2c2012-10-04 22:21:15 +0200109 * or if the WAIT flags set new flags that were not in CURR POL. Additionally,
110 * non-zero is also returned if an error was reported on the connection. This
111 * function is used quite often and is inlined. In order to proceed optimally
112 * with very little code and CPU cycles, the bits are arranged so that a change
113 * can be detected by a simple left shift, a xor, and a mask. This operation
114 * detects when CURR:POLL differs from SOCK:WAIT. In order to detect the ERROR
115 * flag without additional work, we remove it from the copy of the original
116 * flags (unshifted) before doing the XOR. This operation is parallelized with
117 * the shift and does not induce additional cycles. This explains why we check
118 * the error bit shifted left in the mask. Last, the final operation is an AND
119 * which the compiler is able to replace with a TEST in boolean conditions. The
120 * result is that all these checks are done in 5-6 cycles only and less than 20
121 * bytes.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200122 */
123static inline unsigned int conn_sock_polling_changes(const struct connection *c)
124{
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200125 unsigned int f = c->flags << 2;
Willy Tarreau0ffde2c2012-10-04 22:21:15 +0200126 return ((c->flags & ~(CO_FL_ERROR << 2)) ^ f) &
127 ((CO_FL_ERROR<<2)|CO_FL_WAIT_WR|CO_FL_SOCK_WR_ENA|CO_FL_WAIT_RD|CO_FL_SOCK_RD_ENA) &
Willy Tarreauf3a6d7e2012-10-03 20:00:18 +0200128 ~(f & (CO_FL_WAIT_WR|CO_FL_WAIT_RD));
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200129}
130
131/* Automatically updates polling on connection <c> depending on the DATA flags
132 * if no handshake is in progress.
133 */
134static inline void conn_cond_update_data_polling(struct connection *c)
135{
136 if (!(c->flags & CO_FL_POLL_SOCK) && conn_data_polling_changes(c))
137 conn_update_data_polling(c);
138}
139
140/* Automatically updates polling on connection <c> depending on the SOCK flags
141 * if a handshake is in progress.
142 */
143static inline void conn_cond_update_sock_polling(struct connection *c)
144{
145 if ((c->flags & CO_FL_POLL_SOCK) && conn_sock_polling_changes(c))
146 conn_update_sock_polling(c);
147}
148
149/* Automatically update polling on connection <c> depending on the DATA and
150 * SOCK flags, and on whether a handshake is in progress or not. This may be
151 * called at any moment when there is a doubt about the effectiveness of the
152 * polling state, for instance when entering or leaving the handshake state.
153 */
154static inline void conn_cond_update_polling(struct connection *c)
155{
156 if (!(c->flags & CO_FL_POLL_SOCK) && conn_data_polling_changes(c))
157 conn_update_data_polling(c);
158 else if ((c->flags & CO_FL_POLL_SOCK) && conn_sock_polling_changes(c))
159 conn_update_sock_polling(c);
160}
161
162/***** Event manipulation primitives for use by DATA I/O callbacks *****/
163/* The __conn_* versions do not propagate to lower layers and are only meant
164 * to be used by handlers called by the connection handler. The other ones
165 * may be used anywhere.
166 */
167static inline void __conn_data_want_recv(struct connection *c)
168{
169 c->flags |= CO_FL_DATA_RD_ENA;
170}
171
172static inline void __conn_data_stop_recv(struct connection *c)
173{
174 c->flags &= ~CO_FL_DATA_RD_ENA;
175}
176
177static inline void __conn_data_poll_recv(struct connection *c)
178{
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200179 c->flags |= CO_FL_WAIT_RD | CO_FL_DATA_RD_ENA;
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200180}
181
182static inline void __conn_data_want_send(struct connection *c)
183{
184 c->flags |= CO_FL_DATA_WR_ENA;
185}
186
187static inline void __conn_data_stop_send(struct connection *c)
188{
189 c->flags &= ~CO_FL_DATA_WR_ENA;
190}
191
192static inline void __conn_data_poll_send(struct connection *c)
193{
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200194 c->flags |= CO_FL_WAIT_WR | CO_FL_DATA_WR_ENA;
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200195}
196
197static inline void __conn_data_stop_both(struct connection *c)
198{
199 c->flags &= ~(CO_FL_DATA_WR_ENA | CO_FL_DATA_RD_ENA);
200}
201
202static inline void conn_data_want_recv(struct connection *c)
203{
204 __conn_data_want_recv(c);
205 conn_cond_update_data_polling(c);
206}
207
208static inline void conn_data_stop_recv(struct connection *c)
209{
210 __conn_data_stop_recv(c);
211 conn_cond_update_data_polling(c);
212}
213
214static inline void conn_data_poll_recv(struct connection *c)
215{
216 __conn_data_poll_recv(c);
217 conn_cond_update_data_polling(c);
218}
219
220static inline void conn_data_want_send(struct connection *c)
221{
222 __conn_data_want_send(c);
223 conn_cond_update_data_polling(c);
224}
225
226static inline void conn_data_stop_send(struct connection *c)
227{
228 __conn_data_stop_send(c);
229 conn_cond_update_data_polling(c);
230}
231
232static inline void conn_data_poll_send(struct connection *c)
233{
234 __conn_data_poll_send(c);
235 conn_cond_update_data_polling(c);
236}
237
238static inline void conn_data_stop_both(struct connection *c)
239{
240 __conn_data_stop_both(c);
241 conn_cond_update_data_polling(c);
242}
243
244/***** Event manipulation primitives for use by handshake I/O callbacks *****/
245/* The __conn_* versions do not propagate to lower layers and are only meant
246 * to be used by handlers called by the connection handler. The other ones
247 * may be used anywhere.
248 */
249static inline void __conn_sock_want_recv(struct connection *c)
250{
251 c->flags |= CO_FL_SOCK_RD_ENA;
252}
253
254static inline void __conn_sock_stop_recv(struct connection *c)
255{
256 c->flags &= ~CO_FL_SOCK_RD_ENA;
257}
258
259static inline void __conn_sock_poll_recv(struct connection *c)
260{
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200261 c->flags |= CO_FL_WAIT_RD | CO_FL_SOCK_RD_ENA;
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200262}
263
264static inline void __conn_sock_want_send(struct connection *c)
265{
266 c->flags |= CO_FL_SOCK_WR_ENA;
267}
268
269static inline void __conn_sock_stop_send(struct connection *c)
270{
271 c->flags &= ~CO_FL_SOCK_WR_ENA;
272}
273
274static inline void __conn_sock_poll_send(struct connection *c)
275{
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200276 c->flags |= CO_FL_WAIT_WR | CO_FL_SOCK_WR_ENA;
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200277}
278
279static inline void __conn_sock_stop_both(struct connection *c)
280{
281 c->flags &= ~(CO_FL_SOCK_WR_ENA | CO_FL_SOCK_RD_ENA);
282}
283
284static inline void conn_sock_want_recv(struct connection *c)
285{
286 __conn_sock_want_recv(c);
287 conn_cond_update_sock_polling(c);
288}
289
290static inline void conn_sock_stop_recv(struct connection *c)
291{
292 __conn_sock_stop_recv(c);
293 conn_cond_update_sock_polling(c);
294}
295
296static inline void conn_sock_poll_recv(struct connection *c)
297{
298 __conn_sock_poll_recv(c);
299 conn_cond_update_sock_polling(c);
300}
301
302static inline void conn_sock_want_send(struct connection *c)
303{
304 __conn_sock_want_send(c);
305 conn_cond_update_sock_polling(c);
306}
307
308static inline void conn_sock_stop_send(struct connection *c)
309{
310 __conn_sock_stop_send(c);
311 conn_cond_update_sock_polling(c);
312}
313
314static inline void conn_sock_poll_send(struct connection *c)
315{
316 __conn_sock_poll_send(c);
317 conn_cond_update_sock_polling(c);
318}
319
320static inline void conn_sock_stop_both(struct connection *c)
321{
322 __conn_sock_stop_both(c);
323 conn_cond_update_sock_polling(c);
324}
Willy Tarreau8b117082012-08-06 15:06:49 +0200325
Willy Tarreau3af56a92012-08-20 16:55:48 +0200326/* shutdown management */
327static inline void conn_sock_read0(struct connection *c)
328{
329 c->flags |= CO_FL_SOCK_RD_SH;
330 __conn_sock_stop_recv(c);
331}
332
333static inline void conn_data_read0(struct connection *c)
334{
335 c->flags |= CO_FL_DATA_RD_SH;
336 __conn_data_stop_recv(c);
337}
338
339static inline void conn_sock_shutw(struct connection *c)
340{
341 c->flags |= CO_FL_SOCK_WR_SH;
342 __conn_sock_stop_send(c);
343}
344
345static inline void conn_data_shutw(struct connection *c)
346{
347 c->flags |= CO_FL_DATA_WR_SH;
348 __conn_data_stop_send(c);
349}
350
351/* detect sock->data read0 transition */
352static inline int conn_data_read0_pending(struct connection *c)
353{
354 return (c->flags & (CO_FL_DATA_RD_SH | CO_FL_SOCK_RD_SH)) == CO_FL_SOCK_RD_SH;
355}
356
357/* detect data->sock shutw transition */
358static inline int conn_sock_shutw_pending(struct connection *c)
359{
360 return (c->flags & (CO_FL_DATA_WR_SH | CO_FL_SOCK_WR_SH)) == CO_FL_DATA_WR_SH;
361}
362
Willy Tarreau3cefd522012-08-30 15:49:18 +0200363static inline void clear_target(struct target *dest)
364{
365 dest->type = TARG_TYPE_NONE;
366 dest->ptr.v = NULL;
367}
368
369static inline void set_target_client(struct target *dest, struct listener *l)
370{
371 dest->type = TARG_TYPE_CLIENT;
372 dest->ptr.l = l;
373}
374
375static inline void set_target_server(struct target *dest, struct server *s)
376{
377 dest->type = TARG_TYPE_SERVER;
378 dest->ptr.s = s;
379}
380
381static inline void set_target_proxy(struct target *dest, struct proxy *p)
382{
383 dest->type = TARG_TYPE_PROXY;
384 dest->ptr.p = p;
385}
386
387static inline void set_target_applet(struct target *dest, struct si_applet *a)
388{
389 dest->type = TARG_TYPE_APPLET;
390 dest->ptr.a = a;
391}
392
393static inline void set_target_task(struct target *dest, struct task *t)
394{
395 dest->type = TARG_TYPE_TASK;
396 dest->ptr.t = t;
397}
398
399static inline struct target *copy_target(struct target *dest, struct target *src)
400{
401 *dest = *src;
402 return dest;
403}
404
405static inline int target_match(struct target *a, struct target *b)
406{
407 return a->type == b->type && a->ptr.v == b->ptr.v;
408}
409
410static inline struct server *target_srv(struct target *t)
411{
412 if (!t || t->type != TARG_TYPE_SERVER)
413 return NULL;
414 return t->ptr.s;
415}
416
417static inline struct listener *target_client(struct target *t)
418{
419 if (!t || t->type != TARG_TYPE_CLIENT)
420 return NULL;
421 return t->ptr.l;
422}
423
Willy Tarreau986a9d22012-08-30 21:11:38 +0200424/* Retrieves the connection's source address */
425static inline void conn_get_from_addr(struct connection *conn)
426{
427 if (conn->flags & CO_FL_ADDR_FROM_SET)
428 return;
429
430 if (!conn->ctrl || !conn->ctrl->get_src)
431 return;
432
433 if (conn->ctrl->get_src(conn->t.sock.fd, (struct sockaddr *)&conn->addr.from,
434 sizeof(conn->addr.from),
435 conn->target.type != TARG_TYPE_CLIENT) == -1)
436 return;
437 conn->flags |= CO_FL_ADDR_FROM_SET;
438}
439
440/* Retrieves the connection's original destination address */
441static inline void conn_get_to_addr(struct connection *conn)
442{
443 if (conn->flags & CO_FL_ADDR_TO_SET)
444 return;
445
446 if (!conn->ctrl || !conn->ctrl->get_dst)
447 return;
448
449 if (conn->ctrl->get_dst(conn->t.sock.fd, (struct sockaddr *)&conn->addr.to,
450 sizeof(conn->addr.to),
451 conn->target.type != TARG_TYPE_CLIENT) == -1)
452 return;
453 conn->flags |= CO_FL_ADDR_TO_SET;
454}
455
Willy Tarreaubd99aab2012-10-02 20:57:19 +0200456/* Assigns a connection with the appropriate data, ctrl, transport layers, and owner. */
457static inline void conn_assign(struct connection *conn, const struct data_cb *data,
458 const struct protocol *ctrl, const struct xprt_ops *xprt,
459 void *owner)
Willy Tarreaudda5e7c2012-09-24 17:15:42 +0200460{
Willy Tarreau74beec32012-10-03 00:41:04 +0200461 conn->data = data;
Willy Tarreaudda5e7c2012-09-24 17:15:42 +0200462 conn->ctrl = ctrl;
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200463 conn->xprt = xprt;
Willy Tarreaucd379952012-09-27 22:14:33 +0200464 conn->owner = owner;
Willy Tarreaubd99aab2012-10-02 20:57:19 +0200465}
466
467/* prepares a connection with the appropriate data, ctrl, transport layers, and
468 * owner. The transport state and context are set to 0.
469 */
470static inline void conn_prepare(struct connection *conn, const struct data_cb *data,
471 const struct protocol *ctrl, const struct xprt_ops *xprt,
472 void *owner)
473{
474 conn_assign(conn, data, ctrl, xprt, owner);
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200475 conn->xprt_st = 0;
476 conn->xprt_ctx = NULL;
Willy Tarreaudda5e7c2012-09-24 17:15:42 +0200477}
Willy Tarreau986a9d22012-08-30 21:11:38 +0200478
Willy Tarreau59f98392012-07-06 14:13:49 +0200479#endif /* _PROTO_CONNECTION_H */
480
481/*
482 * Local variables:
483 * c-indent-level: 8
484 * c-basic-offset: 8
485 * End:
486 */