blob: 7d21a6a6c035d8abb9cf33958713b55ea3b5c726 [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{
Olivier Houchard7c6f8b12018-11-13 16:48:36 +010070 struct connection *conn;
71
Christopher Fauletff8abcd2017-06-02 15:33:24 +020072 HA_ATOMIC_SUB(&sess->fe->feconn, 1);
Willy Tarreau4f0c64c2017-10-18 15:01:14 +020073 if (sess->listener)
74 listener_release(sess->listener);
Willy Tarreaubb2ef122015-04-04 16:31:16 +020075 session_store_counters(sess);
Willy Tarreauebcd4842015-06-19 11:59:02 +020076 vars_prune_per_sess(&sess->vars);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +010077 conn = objt_conn(sess->origin);
78 if (conn != NULL && conn->mux)
79 conn->mux->destroy(conn);
80 conn = sess->srv_conn;
81 if (conn != NULL && conn->mux)
82 conn->mux->destroy(conn);
Willy Tarreaubafbe012017-11-24 17:34:44 +010083 pool_free(pool_head_session, sess);
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020084 HA_ATOMIC_SUB(&jobs, 1);
Willy Tarreau11c36242015-04-04 15:54:03 +020085}
86
Willy Tarreau3e13cba2017-10-08 11:26:30 +020087/* callback used from the connection/mux layer to notify that a connection is
88 * gonig to be released.
89 */
90void conn_session_free(struct connection *conn)
91{
92 session_free(conn->owner);
93}
94
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020095/* perform minimal intializations, report 0 in case of error, 1 if OK. */
96int init_session()
97{
Willy Tarreaubafbe012017-11-24 17:34:44 +010098 pool_head_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
99 return pool_head_session != NULL;
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200100}
101
Willy Tarreau042cd752015-04-08 18:10:49 +0200102/* count a new session to keep frontend, listener and track stats up to date */
103static void session_count_new(struct session *sess)
104{
105 struct stkctr *stkctr;
106 void *ptr;
107 int i;
108
109 proxy_inc_fe_sess_ctr(sess->listener, sess->fe);
110
111 for (i = 0; i < MAX_SESS_STKCTR; i++) {
112 stkctr = &sess->stkctr[i];
113 if (!stkctr_entry(stkctr))
114 continue;
115
116 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
117 if (ptr)
118 stktable_data_cast(ptr, sess_cnt)++;
119
120 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
121 if (ptr)
122 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
123 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
124 }
125}
126
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200127/* This function is called from the protocol layer accept() in order to
Dave Chiluk8618a6a2018-06-21 11:03:20 -0500128 * instantiate a new session on behalf of a given listener and frontend. It
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200129 * returns a positive value upon success, 0 if the connection can be ignored,
130 * or a negative value upon critical failure. The accepted file descriptor is
131 * closed if we return <= 0. If no handshake is needed, it immediately tries
Dave Chiluk8618a6a2018-06-21 11:03:20 -0500132 * to instantiate a new stream. The created connection's owner points to the
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200133 * new session until the upper layers are created.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200134 */
135int session_accept_fd(struct listener *l, int cfd, struct sockaddr_storage *addr)
136{
137 struct connection *cli_conn;
Willy Tarreauc95bad52016-12-22 00:13:31 +0100138 struct proxy *p = l->bind_conf->frontend;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200139 struct session *sess;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200140 int ret;
141
142
143 ret = -1; /* assume unrecoverable error by default */
144
145 if (unlikely((cli_conn = conn_new()) == NULL))
146 goto out_close;
147
Willy Tarreau585744b2017-08-24 14:31:19 +0200148 cli_conn->handle.fd = cfd;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200149 cli_conn->addr.from = *addr;
150 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
151 cli_conn->target = &l->obj_type;
152 cli_conn->proxy_netns = l->netns;
153
Willy Tarreaube373152018-09-06 11:45:30 +0200154 conn_prepare(cli_conn, l->proto, l->bind_conf->xprt);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200155 conn_ctrl_init(cli_conn);
156
157 /* wait for a PROXY protocol header */
158 if (l->options & LI_O_ACC_PROXY) {
159 cli_conn->flags |= CO_FL_ACCEPT_PROXY;
160 conn_sock_want_recv(cli_conn);
161 }
162
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100163 /* wait for a NetScaler client IP insertion protocol header */
164 if (l->options & LI_O_ACC_CIP) {
165 cli_conn->flags |= CO_FL_ACCEPT_CIP;
166 conn_sock_want_recv(cli_conn);
167 }
168
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200169 conn_xprt_want_recv(cli_conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200170 if (conn_xprt_init(cli_conn) < 0)
171 goto out_free_conn;
172
Willy Tarreau64beab22015-04-05 00:39:16 +0200173 sess = session_new(p, l, &cli_conn->obj_type);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200174 if (!sess)
175 goto out_free_conn;
176
Willy Tarreau436d3332017-10-08 11:16:46 +0200177 conn_set_owner(cli_conn, sess, NULL);
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200178
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200179 /* now evaluate the tcp-request layer4 rules. We only need a session
180 * and no stream for these rules.
181 */
Willy Tarreau7d9736f2016-10-21 16:34:21 +0200182 if ((l->options & LI_O_TCP_L4_RULES) && !tcp_exec_l4_rules(sess)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200183 /* let's do a no-linger now to close with a single RST. */
184 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
185 ret = 0; /* successful termination */
186 goto out_free_sess;
187 }
188
189 /* monitor-net and health mode are processed immediately after TCP
190 * connection rules. This way it's possible to block them, but they
191 * never use the lower data layers, they send directly over the socket,
192 * as they were designed for. We first flush the socket receive buffer
193 * in order to avoid emission of an RST by the system. We ignore any
194 * error.
195 */
196 if (unlikely((p->mode == PR_MODE_HEALTH) ||
197 ((l->options & LI_O_CHK_MONNET) &&
198 addr->ss_family == AF_INET &&
199 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
200 /* we have 4 possibilities here :
201 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
202 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
203 * - HEALTH mode without HTTP check => just send "OK"
204 * - TCP mode from monitoring address => just close
205 */
206 if (l->proto->drain)
207 l->proto->drain(cfd);
208 if (p->mode == PR_MODE_HTTP ||
209 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
210 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
211 else if (p->mode == PR_MODE_HEALTH)
212 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
213 ret = 0;
214 goto out_free_sess;
215 }
216
Willy Tarreauf9d1bc62015-04-05 17:56:47 +0200217 /* Adjust some socket options */
218 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) {
219 setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one));
220
221 if (p->options & PR_O_TCP_CLI_KA)
222 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
223
224 if (p->options & PR_O_TCP_NOLING)
225 fdtab[cfd].linger_risk = 1;
226
227#if defined(TCP_MAXSEG)
228 if (l->maxseg < 0) {
229 /* we just want to reduce the current MSS by that value */
230 int mss;
231 socklen_t mss_len = sizeof(mss);
232 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
233 mss += l->maxseg; /* remember, it's < 0 */
234 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
235 }
236 }
237#endif
238 }
239
240 if (global.tune.client_sndbuf)
241 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
242
243 if (global.tune.client_rcvbuf)
244 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
245
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200246 /* OK, now either we have a pending handshake to execute with and then
247 * we must return to the I/O layer, or we can proceed with the end of
248 * the stream initialization. In case of handshake, we also set the I/O
249 * timeout to the frontend's client timeout and register a task in the
250 * session for this purpose. The connection's owner is left to the
251 * session during this period.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200252 *
253 * At this point we set the relation between sess/task/conn this way :
254 *
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200255 * +----------------- task
256 * | |
257 * orig -- sess <-- context |
258 * | ^ | |
259 * v | | |
260 * conn -- owner ---> task <-----+
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200261 */
Olivier Houchardc2aae742017-09-22 18:26:28 +0200262 if (cli_conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS)) {
Emeric Brunc60def82017-09-27 14:59:38 +0200263 if (unlikely((sess->task = task_new(tid_bit)) == NULL))
Willy Tarreau87787ac2017-08-28 16:22:54 +0200264 goto out_free_sess;
265
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200266 conn_set_xprt_done_cb(cli_conn, conn_complete_session);
Willy Tarreau87787ac2017-08-28 16:22:54 +0200267
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200268 sess->task->context = sess;
269 sess->task->nice = l->nice;
270 sess->task->process = session_expire_embryonic;
271 sess->task->expire = tick_add_ifset(now_ms, p->timeout.client);
272 task_queue(sess->task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200273 return 1;
274 }
275
Willy Tarreau18b95a42015-04-05 01:04:01 +0200276 /* OK let's complete stream initialization since there is no handshake */
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200277 if (conn_complete_session(cli_conn) >= 0)
278 return 1;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200279
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200280 /* error unrolling */
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200281 out_free_sess:
Christopher Fauletfe234282018-03-23 15:11:55 +0100282 /* prevent call to listener_release during session_free. It will be
283 * done below, for all errors. */
284 sess->listener = NULL;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200285 session_free(sess);
286 out_free_conn:
Willy Tarreau5b78a9d2017-10-05 18:12:51 +0200287 conn_stop_tracking(cli_conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200288 conn_xprt_close(cli_conn);
289 conn_free(cli_conn);
290 out_close:
Christopher Fauletfe234282018-03-23 15:11:55 +0100291 listener_release(l);
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100292 if (ret < 0 && l->bind_conf->xprt == xprt_get(XPRT_RAW) && p->mode == PR_MODE_HTTP) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200293 /* critical error, no more memory, try to emit a 500 response */
Willy Tarreau83061a82018-07-13 11:56:34 +0200294 struct buffer *err_msg = &p->errmsg[HTTP_ERR_500];
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200295 if (!err_msg->area)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200296 err_msg = &http_err_chunks[HTTP_ERR_500];
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200297 send(cfd, err_msg->area, err_msg->data,
298 MSG_DONTWAIT|MSG_NOSIGNAL);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200299 }
300
301 if (fdtab[cfd].owner)
302 fd_delete(cfd);
303 else
304 close(cfd);
305 return ret;
306}
307
308
309/* prepare the trash with a log prefix for session <sess>. It only works with
310 * embryonic sessions based on a real connection. This function requires that
311 * at sess->origin points to the incoming connection.
312 */
313static void session_prepare_log_prefix(struct session *sess)
314{
315 struct tm tm;
316 char pn[INET6_ADDRSTRLEN];
317 int ret;
318 char *end;
319 struct connection *cli_conn = __objt_conn(sess->origin);
320
321 ret = addr_to_str(&cli_conn->addr.from, pn, sizeof(pn));
322 if (ret <= 0)
323 chunk_printf(&trash, "unknown [");
324 else if (ret == AF_UNIX)
325 chunk_printf(&trash, "%s:%d [", pn, sess->listener->luid);
326 else
327 chunk_printf(&trash, "%s:%d [", pn, get_host_port(&cli_conn->addr.from));
328
329 get_localtime(sess->accept_date.tv_sec, &tm);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200330 end = date2str_log(trash.area + trash.data, &tm, &(sess->accept_date),
331 trash.size - trash.data);
332 trash.data = end - trash.area;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200333 if (sess->listener->name)
334 chunk_appendf(&trash, "] %s/%s", sess->fe->id, sess->listener->name);
335 else
336 chunk_appendf(&trash, "] %s/%d", sess->fe->id, sess->listener->luid);
337}
338
339/* This function kills an existing embryonic session. It stops the connection's
340 * transport layer, releases assigned resources, resumes the listener if it was
341 * disabled and finally kills the file descriptor. This function requires that
342 * sess->origin points to the incoming connection.
343 */
Willy Tarreau086735a2018-11-05 15:09:47 +0100344static void session_kill_embryonic(struct session *sess, unsigned short state)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200345{
346 int level = LOG_INFO;
347 struct connection *conn = __objt_conn(sess->origin);
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200348 struct task *task = sess->task;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200349 unsigned int log = sess->fe->to_log;
350 const char *err_msg;
351
352 if (sess->fe->options2 & PR_O2_LOGERRORS)
353 level = LOG_ERR;
354
355 if (log && (sess->fe->options & PR_O_NULLNOLOG)) {
356 /* with "option dontlognull", we don't log connections with no transfer */
357 if (!conn->err_code ||
358 conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT ||
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100359 conn->err_code == CO_ER_CIP_EMPTY || conn->err_code == CO_ER_CIP_ABORT ||
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200360 conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT)
361 log = 0;
362 }
363
364 if (log) {
Willy Tarreau086735a2018-11-05 15:09:47 +0100365 if (!conn->err_code && (state & TASK_WOKEN_TIMER)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200366 if (conn->flags & CO_FL_ACCEPT_PROXY)
367 conn->err_code = CO_ER_PRX_TIMEOUT;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100368 else if (conn->flags & CO_FL_ACCEPT_CIP)
369 conn->err_code = CO_ER_CIP_TIMEOUT;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200370 else if (conn->flags & CO_FL_SSL_WAIT_HS)
371 conn->err_code = CO_ER_SSL_TIMEOUT;
372 }
373
374 session_prepare_log_prefix(sess);
375 err_msg = conn_err_code_str(conn);
376 if (err_msg)
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200377 send_log(sess->fe, level, "%s: %s\n", trash.area,
378 err_msg);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200379 else
380 send_log(sess->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200381 trash.area, conn->err_code, conn->flags);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200382 }
383
384 /* kill the connection now */
Willy Tarreau5b78a9d2017-10-05 18:12:51 +0200385 conn_stop_tracking(conn);
386 conn_full_close(conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200387 conn_free(conn);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100388 sess->origin = NULL;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200389
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200390 task_delete(task);
391 task_free(task);
392 session_free(sess);
393}
394
395/* Manages the embryonic session timeout. It is only called when the timeout
396 * strikes and performs the required cleanup.
397 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200398static struct task *session_expire_embryonic(struct task *t, void *context, unsigned short state)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200399{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200400 struct session *sess = context;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200401
Olivier Houchardfde2a092018-08-16 19:03:50 +0200402 if (!(state & TASK_WOKEN_TIMER))
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200403 return t;
404
Willy Tarreau086735a2018-11-05 15:09:47 +0100405 session_kill_embryonic(sess, state);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200406 return NULL;
407}
408
409/* Finish initializing a session from a connection, or kills it if the
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200410 * connection shows and error. Returns <0 if the connection was killed. It may
411 * be called either asynchronously as an xprt_done callback with an embryonic
412 * session, or synchronously to finalize the session. The distinction is made
413 * on sess->task which is only set in the embryonic session case.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200414 */
415static int conn_complete_session(struct connection *conn)
416{
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200417 struct session *sess = conn->owner;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200418
Willy Tarreau590a0512018-09-05 11:56:48 +0200419 sess->t_handshake = tv_ms_elapsed(&sess->tv_accept, &now);
420
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200421 conn_clear_xprt_done_cb(conn);
422
Emeric Brun1738e862018-03-05 17:46:16 +0100423 /* Verify if the connection just established. */
424 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
425 conn->flags |= CO_FL_CONNECTED;
426
Willy Tarreaud1769b82015-04-06 00:25:48 +0200427 if (conn->flags & CO_FL_ERROR)
428 goto fail;
429
Willy Tarreau678be622015-04-08 18:18:15 +0200430 /* if logs require transport layer information, note it on the connection */
431 if (sess->fe->to_log & LW_XPRT)
432 conn->flags |= CO_FL_XPRT_TRACKED;
433
Willy Tarreau620408f2016-10-21 16:37:51 +0200434 /* we may have some tcp-request-session rules */
435 if ((sess->listener->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess))
436 goto fail;
437
Willy Tarreau042cd752015-04-08 18:10:49 +0200438 session_count_new(sess);
Christopher Faulet7ce0c892018-04-10 15:01:45 +0200439 if (conn_install_mux_fe(conn, NULL) < 0)
Willy Tarreaud1769b82015-04-06 00:25:48 +0200440 goto fail;
441
Willy Tarreau87787ac2017-08-28 16:22:54 +0200442 /* the embryonic session's task is not needed anymore */
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200443 if (sess->task) {
444 task_delete(sess->task);
445 task_free(sess->task);
446 sess->task = NULL;
447 }
Willy Tarreau3e13cba2017-10-08 11:26:30 +0200448
449 conn_set_owner(conn, sess, conn_session_free);
450
Willy Tarreaud1769b82015-04-06 00:25:48 +0200451 return 0;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200452
Willy Tarreaud1769b82015-04-06 00:25:48 +0200453 fail:
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200454 if (sess->task)
Willy Tarreau086735a2018-11-05 15:09:47 +0100455 session_kill_embryonic(sess, 0);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200456 return -1;
457}
458
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200459/*
460 * Local variables:
461 * c-indent-level: 8
462 * c-basic-offset: 8
463 * End:
464 */