blob: 44e675b289589e004faa2fcc2c8478f9b4e58767 [file] [log] [blame]
Willy Tarreau59f98392012-07-06 14:13:49 +02001/*
2 * Connection management functions
3 *
4 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
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
13#include <common/compat.h>
14#include <common/config.h>
15
Willy Tarreauc5788912012-08-24 18:12:41 +020016#include <proto/connection.h>
Willy Tarreau2da156f2012-07-23 15:07:23 +020017#include <proto/proto_tcp.h>
Willy Tarreau2542b532012-08-31 16:01:23 +020018#include <proto/session.h>
Willy Tarreau2c6be842012-07-06 17:12:34 +020019#include <proto/stream_interface.h>
Willy Tarreau59f98392012-07-06 14:13:49 +020020
21/* I/O callback for fd-based connections. It calls the read/write handlers
Willy Tarreauafad0e02012-08-09 14:45:22 +020022 * provided by the connection's sock_ops, which must be valid. It returns 0.
Willy Tarreau59f98392012-07-06 14:13:49 +020023 */
24int conn_fd_handler(int fd)
25{
Willy Tarreau80184712012-07-06 14:54:49 +020026 struct connection *conn = fdtab[fd].owner;
Willy Tarreau59f98392012-07-06 14:13:49 +020027
Willy Tarreauc76ae332012-07-12 15:32:13 +020028 if (unlikely(!conn))
Willy Tarreau2542b532012-08-31 16:01:23 +020029 return 0;
Willy Tarreau59f98392012-07-06 14:13:49 +020030
Willy Tarreauc76ae332012-07-12 15:32:13 +020031 process_handshake:
Willy Tarreauf9dabec2012-08-17 17:33:53 +020032 /* The handshake callbacks are called in sequence. If either of them is
33 * missing something, it must enable the required polling at the socket
34 * layer of the connection. Polling state is not guaranteed when entering
35 * these handlers, so any handshake handler which does not complete its
36 * work must explicitly disable events it's not interested in.
37 */
Willy Tarreauc76ae332012-07-12 15:32:13 +020038 while (unlikely(conn->flags & CO_FL_HANDSHAKE)) {
39 if (unlikely(conn->flags & CO_FL_ERROR))
Willy Tarreau2c6be842012-07-06 17:12:34 +020040 goto leave;
Willy Tarreau59f98392012-07-06 14:13:49 +020041
Willy Tarreau22cda212012-08-31 17:43:29 +020042 if (conn->flags & CO_FL_ACCEPT_PROXY)
43 if (!conn_recv_proxy(conn, CO_FL_ACCEPT_PROXY))
44 goto leave;
45
Willy Tarreauc76ae332012-07-12 15:32:13 +020046 if (conn->flags & CO_FL_SI_SEND_PROXY)
Willy Tarreauafad0e02012-08-09 14:45:22 +020047 if (!conn_si_send_proxy(conn, CO_FL_SI_SEND_PROXY))
Willy Tarreauc76ae332012-07-12 15:32:13 +020048 goto leave;
49 }
50
Willy Tarreauf9dabec2012-08-17 17:33:53 +020051 /* Once we're purely in the data phase, we disable handshake polling */
52 if (!(conn->flags & CO_FL_POLL_SOCK))
53 __conn_sock_stop_both(conn);
Willy Tarreauc76ae332012-07-12 15:32:13 +020054
Willy Tarreau2542b532012-08-31 16:01:23 +020055 /* Maybe we need to finish initializing an incoming session. The
56 * function may fail and cause the connection to be destroyed, thus
57 * we must not use it anymore and should immediately leave instead.
58 */
59 if ((conn->flags & CO_FL_INIT_SESS) &&
Willy Tarreau22cda212012-08-31 17:43:29 +020060 conn_session_complete(conn, CO_FL_INIT_SESS) < 0)
Willy Tarreau2542b532012-08-31 16:01:23 +020061 return 0;
62
Willy Tarreau59f98392012-07-06 14:13:49 +020063 if (fdtab[fd].ev & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR))
Willy Tarreauc5788912012-08-24 18:12:41 +020064 conn->app_cb->recv(conn);
Willy Tarreau59f98392012-07-06 14:13:49 +020065
Willy Tarreauc76ae332012-07-12 15:32:13 +020066 if (unlikely(conn->flags & CO_FL_ERROR))
Willy Tarreau2c6be842012-07-06 17:12:34 +020067 goto leave;
Willy Tarreau59f98392012-07-06 14:13:49 +020068
Willy Tarreauc76ae332012-07-12 15:32:13 +020069 /* It may happen during the data phase that a handshake is
70 * enabled again (eg: SSL)
71 */
72 if (unlikely(conn->flags & CO_FL_HANDSHAKE))
73 goto process_handshake;
74
Willy Tarreau59f98392012-07-06 14:13:49 +020075 if (fdtab[fd].ev & (FD_POLL_OUT | FD_POLL_ERR))
Willy Tarreauc5788912012-08-24 18:12:41 +020076 conn->app_cb->send(conn);
Willy Tarreau2da156f2012-07-23 15:07:23 +020077
Willy Tarreauc76ae332012-07-12 15:32:13 +020078 if (unlikely(conn->flags & CO_FL_ERROR))
Willy Tarreau2da156f2012-07-23 15:07:23 +020079 goto leave;
80
Willy Tarreauc76ae332012-07-12 15:32:13 +020081 /* It may happen during the data phase that a handshake is
82 * enabled again (eg: SSL)
83 */
84 if (unlikely(conn->flags & CO_FL_HANDSHAKE))
85 goto process_handshake;
86
87 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreau2da156f2012-07-23 15:07:23 +020088 /* still waiting for a connection to establish and no data to
89 * send in order to probe it ? Then let's retry the connect().
90 */
Willy Tarreau239d7182012-07-23 18:53:03 +020091 if (!tcp_connect_probe(conn))
Willy Tarreauafad0e02012-08-09 14:45:22 +020092 goto leave;
Willy Tarreau2da156f2012-07-23 15:07:23 +020093 }
94
Willy Tarreau2c6be842012-07-06 17:12:34 +020095 leave:
Willy Tarreau2542b532012-08-31 16:01:23 +020096 /* we may need to release the connection which is an embryonic session */
97 if ((conn->flags & (CO_FL_ERROR|CO_FL_INIT_SESS)) == (CO_FL_ERROR|CO_FL_INIT_SESS)) {
98 conn->flags |= CO_FL_ERROR;
99 conn_session_complete(conn, CO_FL_INIT_SESS);
100 return 0;
101 }
102
Willy Tarreaufd31e532012-07-23 18:24:25 +0200103 if (conn->flags & CO_FL_NOTIFY_SI)
Willy Tarreau100c4672012-08-20 12:06:26 +0200104 conn_notify_si(conn);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200105
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200106 /* Last check, verify if the connection just established */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200107 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200108 conn->flags |= CO_FL_CONNECTED;
109
Willy Tarreau61ace1b2012-07-23 12:14:26 +0200110 /* remove the events before leaving */
111 fdtab[fd].ev &= ~(FD_POLL_IN | FD_POLL_OUT | FD_POLL_HUP | FD_POLL_ERR);
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200112
113 /* commit polling changes */
114 conn_cond_update_polling(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200115 return 0;
Willy Tarreau59f98392012-07-06 14:13:49 +0200116}
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200117
118/* set polling depending on the change between the CURR part of the
119 * flags and the new flags in connection C. The connection flags are
120 * updated with the new flags at the end of the operation. Only the bits
121 * relevant to CO_FL_CURR_* from <flags> are considered.
122 */
123void conn_set_polling(struct connection *c, unsigned int new)
124{
125 unsigned int old = c->flags; /* for CO_FL_CURR_* */
126
127 /* update read status if needed */
128 if ((old & (CO_FL_CURR_RD_ENA|CO_FL_CURR_RD_POL)) != (CO_FL_CURR_RD_ENA|CO_FL_CURR_RD_POL) &&
129 (new & (CO_FL_CURR_RD_ENA|CO_FL_CURR_RD_POL)) == (CO_FL_CURR_RD_ENA|CO_FL_CURR_RD_POL))
130 fd_poll_recv(c->t.sock.fd);
131 else if (!(old & CO_FL_CURR_RD_ENA) && (new & CO_FL_CURR_RD_ENA))
132 fd_want_recv(c->t.sock.fd);
133 else if ((old & CO_FL_CURR_RD_ENA) && !(new & CO_FL_CURR_RD_ENA))
134 fd_stop_recv(c->t.sock.fd);
135
136 /* update write status if needed */
137 if ((old & (CO_FL_CURR_WR_ENA|CO_FL_CURR_WR_POL)) != (CO_FL_CURR_WR_ENA|CO_FL_CURR_WR_POL) &&
138 (new & (CO_FL_CURR_WR_ENA|CO_FL_CURR_WR_POL)) == (CO_FL_CURR_WR_ENA|CO_FL_CURR_WR_POL))
139 fd_poll_send(c->t.sock.fd);
140 else if (!(old & CO_FL_CURR_WR_ENA) && (new & CO_FL_CURR_WR_ENA))
141 fd_want_send(c->t.sock.fd);
142 else if ((old & CO_FL_CURR_WR_ENA) && !(new & CO_FL_CURR_WR_ENA))
143 fd_stop_send(c->t.sock.fd);
144
145 c->flags &= ~(CO_FL_CURR_WR_POL|CO_FL_CURR_WR_ENA|CO_FL_CURR_RD_POL|CO_FL_CURR_RD_ENA);
146 c->flags |= new & (CO_FL_CURR_WR_POL|CO_FL_CURR_WR_ENA|CO_FL_CURR_RD_POL|CO_FL_CURR_RD_ENA);
147}