blob: d8c8d36cf086f54decf58b35b7e601f577d2b6ad [file] [log] [blame]
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02001/*
Willy Tarreau9903f0e2015-04-04 18:50:31 +02002 * Session management functions.
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02003 *
Willy Tarreau9903f0e2015-04-04 18:50:31 +02004 * Copyright 2000-2015 Willy Tarreau <w@1wt.eu>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02005 *
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/config.h>
14#include <common/buffer.h>
15#include <common/debug.h>
Willy Tarreau35b51c62018-09-10 15:38:55 +020016#include <common/http.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020017#include <common/memory.h>
18
19#include <types/global.h>
20#include <types/session.h>
21
Willy Tarreau9903f0e2015-04-04 18:50:31 +020022#include <proto/connection.h>
23#include <proto/listener.h>
24#include <proto/log.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020025#include <proto/proxy.h>
Willy Tarreaubb2ef122015-04-04 16:31:16 +020026#include <proto/session.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020027#include <proto/stream.h>
Willy Tarreau39713102016-11-25 15:49:32 +010028#include <proto/tcp_rules.h>
Willy Tarreauebcd4842015-06-19 11:59:02 +020029#include <proto/vars.h>
Willy Tarreaubb2ef122015-04-04 16:31:16 +020030
Willy Tarreaubafbe012017-11-24 17:34:44 +010031struct pool_head *pool_head_session;
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020032
Willy Tarreau9903f0e2015-04-04 18:50:31 +020033static int conn_complete_session(struct connection *conn);
Olivier Houchard9f6af332018-05-25 14:04:04 +020034static struct task *session_expire_embryonic(struct task *t, void *context, unsigned short state);
Willy Tarreau9903f0e2015-04-04 18:50:31 +020035
Willy Tarreauc38f71c2015-04-05 00:38:48 +020036/* Create a a new session and assign it to frontend <fe>, listener <li>,
37 * origin <origin>, set the current date and clear the stick counters pointers.
38 * Returns the session upon success or NULL. The session may be released using
Willy Tarreau0bf6fa52017-09-15 10:25:14 +020039 * session_free(). Note: <li> may be NULL.
Willy Tarreauc38f71c2015-04-05 00:38:48 +020040 */
41struct session *session_new(struct proxy *fe, struct listener *li, enum obj_type *origin)
42{
43 struct session *sess;
44
Willy Tarreaubafbe012017-11-24 17:34:44 +010045 sess = pool_alloc(pool_head_session);
Willy Tarreauc38f71c2015-04-05 00:38:48 +020046 if (sess) {
47 sess->listener = li;
48 sess->fe = fe;
49 sess->origin = origin;
50 sess->accept_date = date; /* user-visible date for logging */
51 sess->tv_accept = now; /* corrected date for internal use */
52 memset(sess->stkctr, 0, sizeof(sess->stkctr));
Willy Tarreauebcd4842015-06-19 11:59:02 +020053 vars_init(&sess->vars, SCOPE_SESS);
Willy Tarreau0b74eae2017-08-28 19:02:51 +020054 sess->task = NULL;
Willy Tarreau590a0512018-09-05 11:56:48 +020055 sess->t_handshake = -1; /* handshake not done yet */
Olivier Houchard131fd892018-11-13 16:44:31 +010056 LIST_INIT(&sess->conn_list);
57 sess->srv_conn = NULL;
Christopher Fauletff8abcd2017-06-02 15:33:24 +020058 HA_ATOMIC_UPDATE_MAX(&fe->fe_counters.conn_max,
59 HA_ATOMIC_ADD(&fe->feconn, 1));
Willy Tarreau0bf6fa52017-09-15 10:25:14 +020060 if (li)
61 proxy_inc_fe_conn_ctr(li, fe);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020062 HA_ATOMIC_ADD(&totalconn, 1);
63 HA_ATOMIC_ADD(&jobs, 1);
Willy Tarreauc38f71c2015-04-05 00:38:48 +020064 }
65 return sess;
66}
67
Willy Tarreau11c36242015-04-04 15:54:03 +020068void session_free(struct session *sess)
69{
Christopher Fauletff8abcd2017-06-02 15:33:24 +020070 HA_ATOMIC_SUB(&sess->fe->feconn, 1);
Willy Tarreau4f0c64c2017-10-18 15:01:14 +020071 if (sess->listener)
72 listener_release(sess->listener);
Willy Tarreaubb2ef122015-04-04 16:31:16 +020073 session_store_counters(sess);
Willy Tarreauebcd4842015-06-19 11:59:02 +020074 vars_prune_per_sess(&sess->vars);
Willy Tarreaubafbe012017-11-24 17:34:44 +010075 pool_free(pool_head_session, sess);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020076 HA_ATOMIC_SUB(&jobs, 1);
Willy Tarreau11c36242015-04-04 15:54:03 +020077}
78
Willy Tarreau3e13cba2017-10-08 11:26:30 +020079/* callback used from the connection/mux layer to notify that a connection is
80 * gonig to be released.
81 */
82void conn_session_free(struct connection *conn)
83{
84 session_free(conn->owner);
85}
86
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020087/* perform minimal intializations, report 0 in case of error, 1 if OK. */
88int init_session()
89{
Willy Tarreaubafbe012017-11-24 17:34:44 +010090 pool_head_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
91 return pool_head_session != NULL;
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020092}
93
Willy Tarreau042cd752015-04-08 18:10:49 +020094/* count a new session to keep frontend, listener and track stats up to date */
95static void session_count_new(struct session *sess)
96{
97 struct stkctr *stkctr;
98 void *ptr;
99 int i;
100
101 proxy_inc_fe_sess_ctr(sess->listener, sess->fe);
102
103 for (i = 0; i < MAX_SESS_STKCTR; i++) {
104 stkctr = &sess->stkctr[i];
105 if (!stkctr_entry(stkctr))
106 continue;
107
108 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
109 if (ptr)
110 stktable_data_cast(ptr, sess_cnt)++;
111
112 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
113 if (ptr)
114 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
115 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
116 }
117}
118
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200119/* This function is called from the protocol layer accept() in order to
Dave Chiluk8618a6a2018-06-21 11:03:20 -0500120 * instantiate a new session on behalf of a given listener and frontend. It
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200121 * returns a positive value upon success, 0 if the connection can be ignored,
122 * or a negative value upon critical failure. The accepted file descriptor is
123 * closed if we return <= 0. If no handshake is needed, it immediately tries
Dave Chiluk8618a6a2018-06-21 11:03:20 -0500124 * to instantiate a new stream. The created connection's owner points to the
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200125 * new session until the upper layers are created.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200126 */
127int session_accept_fd(struct listener *l, int cfd, struct sockaddr_storage *addr)
128{
129 struct connection *cli_conn;
Willy Tarreauc95bad52016-12-22 00:13:31 +0100130 struct proxy *p = l->bind_conf->frontend;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200131 struct session *sess;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200132 int ret;
133
134
135 ret = -1; /* assume unrecoverable error by default */
136
137 if (unlikely((cli_conn = conn_new()) == NULL))
138 goto out_close;
139
Willy Tarreau585744b2017-08-24 14:31:19 +0200140 cli_conn->handle.fd = cfd;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200141 cli_conn->addr.from = *addr;
142 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
143 cli_conn->target = &l->obj_type;
144 cli_conn->proxy_netns = l->netns;
145
Willy Tarreaube373152018-09-06 11:45:30 +0200146 conn_prepare(cli_conn, l->proto, l->bind_conf->xprt);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200147 conn_ctrl_init(cli_conn);
148
149 /* wait for a PROXY protocol header */
150 if (l->options & LI_O_ACC_PROXY) {
151 cli_conn->flags |= CO_FL_ACCEPT_PROXY;
152 conn_sock_want_recv(cli_conn);
153 }
154
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100155 /* wait for a NetScaler client IP insertion protocol header */
156 if (l->options & LI_O_ACC_CIP) {
157 cli_conn->flags |= CO_FL_ACCEPT_CIP;
158 conn_sock_want_recv(cli_conn);
159 }
160
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200161 conn_xprt_want_recv(cli_conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200162 if (conn_xprt_init(cli_conn) < 0)
163 goto out_free_conn;
164
Willy Tarreau64beab22015-04-05 00:39:16 +0200165 sess = session_new(p, l, &cli_conn->obj_type);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200166 if (!sess)
167 goto out_free_conn;
168
Willy Tarreau436d3332017-10-08 11:16:46 +0200169 conn_set_owner(cli_conn, sess, NULL);
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200170
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200171 /* now evaluate the tcp-request layer4 rules. We only need a session
172 * and no stream for these rules.
173 */
Willy Tarreau7d9736f2016-10-21 16:34:21 +0200174 if ((l->options & LI_O_TCP_L4_RULES) && !tcp_exec_l4_rules(sess)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200175 /* let's do a no-linger now to close with a single RST. */
176 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
177 ret = 0; /* successful termination */
178 goto out_free_sess;
179 }
180
181 /* monitor-net and health mode are processed immediately after TCP
182 * connection rules. This way it's possible to block them, but they
183 * never use the lower data layers, they send directly over the socket,
184 * as they were designed for. We first flush the socket receive buffer
185 * in order to avoid emission of an RST by the system. We ignore any
186 * error.
187 */
188 if (unlikely((p->mode == PR_MODE_HEALTH) ||
189 ((l->options & LI_O_CHK_MONNET) &&
190 addr->ss_family == AF_INET &&
191 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
192 /* we have 4 possibilities here :
193 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
194 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
195 * - HEALTH mode without HTTP check => just send "OK"
196 * - TCP mode from monitoring address => just close
197 */
198 if (l->proto->drain)
199 l->proto->drain(cfd);
200 if (p->mode == PR_MODE_HTTP ||
201 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
202 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
203 else if (p->mode == PR_MODE_HEALTH)
204 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
205 ret = 0;
206 goto out_free_sess;
207 }
208
Willy Tarreauf9d1bc62015-04-05 17:56:47 +0200209 /* Adjust some socket options */
210 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) {
211 setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one));
212
213 if (p->options & PR_O_TCP_CLI_KA)
214 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
215
216 if (p->options & PR_O_TCP_NOLING)
217 fdtab[cfd].linger_risk = 1;
218
219#if defined(TCP_MAXSEG)
220 if (l->maxseg < 0) {
221 /* we just want to reduce the current MSS by that value */
222 int mss;
223 socklen_t mss_len = sizeof(mss);
224 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
225 mss += l->maxseg; /* remember, it's < 0 */
226 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
227 }
228 }
229#endif
230 }
231
232 if (global.tune.client_sndbuf)
233 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
234
235 if (global.tune.client_rcvbuf)
236 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
237
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200238 /* OK, now either we have a pending handshake to execute with and then
239 * we must return to the I/O layer, or we can proceed with the end of
240 * the stream initialization. In case of handshake, we also set the I/O
241 * timeout to the frontend's client timeout and register a task in the
242 * session for this purpose. The connection's owner is left to the
243 * session during this period.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200244 *
245 * At this point we set the relation between sess/task/conn this way :
246 *
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200247 * +----------------- task
248 * | |
249 * orig -- sess <-- context |
250 * | ^ | |
251 * v | | |
252 * conn -- owner ---> task <-----+
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200253 */
Olivier Houchardc2aae742017-09-22 18:26:28 +0200254 if (cli_conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS)) {
Emeric Brunc60def82017-09-27 14:59:38 +0200255 if (unlikely((sess->task = task_new(tid_bit)) == NULL))
Willy Tarreau87787ac2017-08-28 16:22:54 +0200256 goto out_free_sess;
257
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200258 conn_set_xprt_done_cb(cli_conn, conn_complete_session);
Willy Tarreau87787ac2017-08-28 16:22:54 +0200259
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200260 sess->task->context = sess;
261 sess->task->nice = l->nice;
262 sess->task->process = session_expire_embryonic;
263 sess->task->expire = tick_add_ifset(now_ms, p->timeout.client);
264 task_queue(sess->task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200265 return 1;
266 }
267
Willy Tarreau18b95a42015-04-05 01:04:01 +0200268 /* OK let's complete stream initialization since there is no handshake */
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200269 if (conn_complete_session(cli_conn) >= 0)
270 return 1;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200271
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200272 /* error unrolling */
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200273 out_free_sess:
Christopher Fauletfe234282018-03-23 15:11:55 +0100274 /* prevent call to listener_release during session_free. It will be
275 * done below, for all errors. */
276 sess->listener = NULL;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200277 session_free(sess);
278 out_free_conn:
Willy Tarreau5b78a9d2017-10-05 18:12:51 +0200279 conn_stop_tracking(cli_conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200280 conn_xprt_close(cli_conn);
281 conn_free(cli_conn);
282 out_close:
Christopher Fauletfe234282018-03-23 15:11:55 +0100283 listener_release(l);
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100284 if (ret < 0 && l->bind_conf->xprt == xprt_get(XPRT_RAW) && p->mode == PR_MODE_HTTP) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200285 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau83061a82018-07-13 11:56:34 +0200286 struct buffer *err_msg = &p->errmsg[HTTP_ERR_500];
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200287 if (!err_msg->area)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200288 err_msg = &http_err_chunks[HTTP_ERR_500];
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200289 send(cfd, err_msg->area, err_msg->data,
290 MSG_DONTWAIT|MSG_NOSIGNAL);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200291 }
292
293 if (fdtab[cfd].owner)
294 fd_delete(cfd);
295 else
296 close(cfd);
297 return ret;
298}
299
300
301/* prepare the trash with a log prefix for session <sess>. It only works with
302 * embryonic sessions based on a real connection. This function requires that
303 * at sess->origin points to the incoming connection.
304 */
305static void session_prepare_log_prefix(struct session *sess)
306{
307 struct tm tm;
308 char pn[INET6_ADDRSTRLEN];
309 int ret;
310 char *end;
311 struct connection *cli_conn = __objt_conn(sess->origin);
312
313 ret = addr_to_str(&cli_conn->addr.from, pn, sizeof(pn));
314 if (ret <= 0)
315 chunk_printf(&trash, "unknown [");
316 else if (ret == AF_UNIX)
317 chunk_printf(&trash, "%s:%d [", pn, sess->listener->luid);
318 else
319 chunk_printf(&trash, "%s:%d [", pn, get_host_port(&cli_conn->addr.from));
320
321 get_localtime(sess->accept_date.tv_sec, &tm);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200322 end = date2str_log(trash.area + trash.data, &tm, &(sess->accept_date),
323 trash.size - trash.data);
324 trash.data = end - trash.area;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200325 if (sess->listener->name)
326 chunk_appendf(&trash, "] %s/%s", sess->fe->id, sess->listener->name);
327 else
328 chunk_appendf(&trash, "] %s/%d", sess->fe->id, sess->listener->luid);
329}
330
331/* This function kills an existing embryonic session. It stops the connection's
332 * transport layer, releases assigned resources, resumes the listener if it was
333 * disabled and finally kills the file descriptor. This function requires that
334 * sess->origin points to the incoming connection.
335 */
Willy Tarreau086735a2018-11-05 15:09:47 +0100336static void session_kill_embryonic(struct session *sess, unsigned short state)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200337{
338 int level = LOG_INFO;
339 struct connection *conn = __objt_conn(sess->origin);
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200340 struct task *task = sess->task;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200341 unsigned int log = sess->fe->to_log;
342 const char *err_msg;
343
344 if (sess->fe->options2 & PR_O2_LOGERRORS)
345 level = LOG_ERR;
346
347 if (log && (sess->fe->options & PR_O_NULLNOLOG)) {
348 /* with "option dontlognull", we don't log connections with no transfer */
349 if (!conn->err_code ||
350 conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT ||
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100351 conn->err_code == CO_ER_CIP_EMPTY || conn->err_code == CO_ER_CIP_ABORT ||
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200352 conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT)
353 log = 0;
354 }
355
356 if (log) {
Willy Tarreau086735a2018-11-05 15:09:47 +0100357 if (!conn->err_code && (state & TASK_WOKEN_TIMER)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200358 if (conn->flags & CO_FL_ACCEPT_PROXY)
359 conn->err_code = CO_ER_PRX_TIMEOUT;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100360 else if (conn->flags & CO_FL_ACCEPT_CIP)
361 conn->err_code = CO_ER_CIP_TIMEOUT;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200362 else if (conn->flags & CO_FL_SSL_WAIT_HS)
363 conn->err_code = CO_ER_SSL_TIMEOUT;
364 }
365
366 session_prepare_log_prefix(sess);
367 err_msg = conn_err_code_str(conn);
368 if (err_msg)
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200369 send_log(sess->fe, level, "%s: %s\n", trash.area,
370 err_msg);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200371 else
372 send_log(sess->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200373 trash.area, conn->err_code, conn->flags);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200374 }
375
376 /* kill the connection now */
Willy Tarreau5b78a9d2017-10-05 18:12:51 +0200377 conn_stop_tracking(conn);
378 conn_full_close(conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200379 conn_free(conn);
380
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200381 task_delete(task);
382 task_free(task);
383 session_free(sess);
384}
385
386/* Manages the embryonic session timeout. It is only called when the timeout
387 * strikes and performs the required cleanup.
388 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200389static struct task *session_expire_embryonic(struct task *t, void *context, unsigned short state)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200390{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200391 struct session *sess = context;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200392
Olivier Houchardfde2a092018-08-16 19:03:50 +0200393 if (!(state & TASK_WOKEN_TIMER))
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200394 return t;
395
Willy Tarreau086735a2018-11-05 15:09:47 +0100396 session_kill_embryonic(sess, state);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200397 return NULL;
398}
399
400/* Finish initializing a session from a connection, or kills it if the
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200401 * connection shows and error. Returns <0 if the connection was killed. It may
402 * be called either asynchronously as an xprt_done callback with an embryonic
403 * session, or synchronously to finalize the session. The distinction is made
404 * on sess->task which is only set in the embryonic session case.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200405 */
406static int conn_complete_session(struct connection *conn)
407{
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200408 struct session *sess = conn->owner;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200409
Willy Tarreau590a0512018-09-05 11:56:48 +0200410 sess->t_handshake = tv_ms_elapsed(&sess->tv_accept, &now);
411
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200412 conn_clear_xprt_done_cb(conn);
413
Emeric Brun1738e862018-03-05 17:46:16 +0100414 /* Verify if the connection just established. */
415 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
416 conn->flags |= CO_FL_CONNECTED;
417
Willy Tarreaud1769b82015-04-06 00:25:48 +0200418 if (conn->flags & CO_FL_ERROR)
419 goto fail;
420
Willy Tarreau678be622015-04-08 18:18:15 +0200421 /* if logs require transport layer information, note it on the connection */
422 if (sess->fe->to_log & LW_XPRT)
423 conn->flags |= CO_FL_XPRT_TRACKED;
424
Willy Tarreau620408f2016-10-21 16:37:51 +0200425 /* we may have some tcp-request-session rules */
426 if ((sess->listener->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess))
427 goto fail;
428
Willy Tarreau042cd752015-04-08 18:10:49 +0200429 session_count_new(sess);
Christopher Faulet7ce0c892018-04-10 15:01:45 +0200430 if (conn_install_mux_fe(conn, NULL) < 0)
Willy Tarreaud1769b82015-04-06 00:25:48 +0200431 goto fail;
432
Willy Tarreau87787ac2017-08-28 16:22:54 +0200433 /* the embryonic session's task is not needed anymore */
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200434 if (sess->task) {
435 task_delete(sess->task);
436 task_free(sess->task);
437 sess->task = NULL;
438 }
Willy Tarreau3e13cba2017-10-08 11:26:30 +0200439
440 conn_set_owner(conn, sess, conn_session_free);
441
Willy Tarreaud1769b82015-04-06 00:25:48 +0200442 return 0;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200443
Willy Tarreaud1769b82015-04-06 00:25:48 +0200444 fail:
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200445 if (sess->task)
Willy Tarreau086735a2018-11-05 15:09:47 +0100446 session_kill_embryonic(sess, 0);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200447 return -1;
448}
449
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200450/*
451 * Local variables:
452 * c-indent-level: 8
453 * c-basic-offset: 8
454 * End:
455 */