blob: f752e07ece42dcb01972e9e626ba761ee572eb63 [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
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020013#include <haproxy/api.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020014#include <haproxy/http.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020015#include <haproxy/listener.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020016#include <haproxy/pool.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020017
18#include <types/global.h>
19#include <types/session.h>
20
Willy Tarreau9903f0e2015-04-04 18:50:31 +020021#include <proto/connection.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020022#include <proto/log.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020023#include <proto/proxy.h>
Willy Tarreaubb2ef122015-04-04 16:31:16 +020024#include <proto/session.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020025#include <proto/stream.h>
Willy Tarreau39713102016-11-25 15:49:32 +010026#include <proto/tcp_rules.h>
Willy Tarreauebcd4842015-06-19 11:59:02 +020027#include <proto/vars.h>
Willy Tarreaubb2ef122015-04-04 16:31:16 +020028
Willy Tarreau8ceae722018-11-26 11:58:30 +010029DECLARE_POOL(pool_head_session, "session", sizeof(struct session));
Olivier Houchard351411f2018-12-27 17:20:54 +010030DECLARE_POOL(pool_head_sess_srv_list, "session server list",
31 sizeof(struct sess_srv_list));
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020032
Olivier Houchard477902b2020-01-22 18:08:48 +010033int 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 Houchardd5b3d302019-03-08 18:54:34 +010056 _HA_ATOMIC_ADD(&totalconn, 1);
57 _HA_ATOMIC_ADD(&jobs, 1);
Olivier Houchard351411f2018-12-27 17:20:54 +010058 LIST_INIT(&sess->srv_list);
Olivier Houcharda2dbeb22018-12-28 18:50:57 +010059 sess->idle_conns = 0;
Olivier Houchard250031e2019-05-29 15:01:50 +020060 sess->flags = SESS_FL_NONE;
Willy Tarreauc38f71c2015-04-05 00:38:48 +020061 }
62 return sess;
63}
64
Willy Tarreau11c36242015-04-04 15:54:03 +020065void session_free(struct session *sess)
66{
Olivier Houchard00cf70f2018-11-30 17:24:55 +010067 struct connection *conn, *conn_back;
Olivier Houchard351411f2018-12-27 17:20:54 +010068 struct sess_srv_list *srv_list, *srv_list_back;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +010069
Willy Tarreau4f0c64c2017-10-18 15:01:14 +020070 if (sess->listener)
71 listener_release(sess->listener);
Willy Tarreaubb2ef122015-04-04 16:31:16 +020072 session_store_counters(sess);
Willy Tarreauebcd4842015-06-19 11:59:02 +020073 vars_prune_per_sess(&sess->vars);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +010074 conn = objt_conn(sess->origin);
75 if (conn != NULL && conn->mux)
Christopher Faulet73c12072019-04-08 11:23:22 +020076 conn->mux->destroy(conn->ctx);
Olivier Houchard351411f2018-12-27 17:20:54 +010077 list_for_each_entry_safe(srv_list, srv_list_back, &sess->srv_list, srv_list) {
78 list_for_each_entry_safe(conn, conn_back, &srv_list->conn_list, session_list) {
Willy Tarreau5de78172019-11-15 07:04:24 +010079 LIST_DEL_INIT(&conn->session_list);
Olivier Houchard00cf70f2018-11-30 17:24:55 +010080 if (conn->mux) {
Olivier Houchard00cf70f2018-11-30 17:24:55 +010081 conn->owner = NULL;
Olivier Houchard8788b412019-01-31 19:31:19 +010082 conn->flags &= ~CO_FL_SESS_IDLE;
Olivier Houchard2444aa52020-01-20 13:56:01 +010083 conn->mux->destroy(conn->ctx);
Olivier Houchard00cf70f2018-11-30 17:24:55 +010084 } else {
85 /* We have a connection, but not yet an associated mux.
86 * So destroy it now.
87 */
88 conn_stop_tracking(conn);
89 conn_full_close(conn);
90 conn_free(conn);
91 }
92 }
Olivier Houchard351411f2018-12-27 17:20:54 +010093 pool_free(pool_head_sess_srv_list, srv_list);
Olivier Houchard201b9f42018-11-21 00:16:29 +010094 }
Willy Tarreaubafbe012017-11-24 17:34:44 +010095 pool_free(pool_head_session, sess);
Olivier Houchardd5b3d302019-03-08 18:54:34 +010096 _HA_ATOMIC_SUB(&jobs, 1);
Willy Tarreau11c36242015-04-04 15:54:03 +020097}
98
Willy Tarreau3e13cba2017-10-08 11:26:30 +020099/* callback used from the connection/mux layer to notify that a connection is
Joseph Herlantd091bfb2018-11-25 11:22:10 -0800100 * going to be released.
Willy Tarreau3e13cba2017-10-08 11:26:30 +0200101 */
102void conn_session_free(struct connection *conn)
103{
104 session_free(conn->owner);
105}
106
Willy Tarreau042cd752015-04-08 18:10:49 +0200107/* count a new session to keep frontend, listener and track stats up to date */
108static void session_count_new(struct session *sess)
109{
110 struct stkctr *stkctr;
111 void *ptr;
112 int i;
113
114 proxy_inc_fe_sess_ctr(sess->listener, sess->fe);
115
116 for (i = 0; i < MAX_SESS_STKCTR; i++) {
117 stkctr = &sess->stkctr[i];
118 if (!stkctr_entry(stkctr))
119 continue;
120
121 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
122 if (ptr)
123 stktable_data_cast(ptr, sess_cnt)++;
124
125 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
126 if (ptr)
127 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
128 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
129 }
130}
131
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200132/* This function is called from the protocol layer accept() in order to
Dave Chiluk8618a6a2018-06-21 11:03:20 -0500133 * instantiate a new session on behalf of a given listener and frontend. It
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200134 * returns a positive value upon success, 0 if the connection can be ignored,
135 * or a negative value upon critical failure. The accepted file descriptor is
136 * closed if we return <= 0. If no handshake is needed, it immediately tries
Dave Chiluk8618a6a2018-06-21 11:03:20 -0500137 * to instantiate a new stream. The created connection's owner points to the
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200138 * new session until the upper layers are created.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200139 */
140int session_accept_fd(struct listener *l, int cfd, struct sockaddr_storage *addr)
141{
142 struct connection *cli_conn;
Willy Tarreauc95bad52016-12-22 00:13:31 +0100143 struct proxy *p = l->bind_conf->frontend;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200144 struct session *sess;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200145 int ret;
146
147
148 ret = -1; /* assume unrecoverable error by default */
149
150 if (unlikely((cli_conn = conn_new()) == NULL))
151 goto out_close;
152
Willy Tarreauca79f592019-07-17 19:04:47 +0200153 if (!sockaddr_alloc(&cli_conn->src))
154 goto out_free_conn;
155
Willy Tarreau585744b2017-08-24 14:31:19 +0200156 cli_conn->handle.fd = cfd;
Willy Tarreau4d3c60a2019-07-17 15:23:20 +0200157 *cli_conn->src = *addr;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200158 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
159 cli_conn->target = &l->obj_type;
160 cli_conn->proxy_netns = l->netns;
161
Willy Tarreaube373152018-09-06 11:45:30 +0200162 conn_prepare(cli_conn, l->proto, l->bind_conf->xprt);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200163 conn_ctrl_init(cli_conn);
164
165 /* wait for a PROXY protocol header */
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200166 if (l->options & LI_O_ACC_PROXY)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200167 cli_conn->flags |= CO_FL_ACCEPT_PROXY;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200168
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100169 /* wait for a NetScaler client IP insertion protocol header */
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200170 if (l->options & LI_O_ACC_CIP)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100171 cli_conn->flags |= CO_FL_ACCEPT_CIP;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100172
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200173 if (conn_xprt_init(cli_conn) < 0)
174 goto out_free_conn;
175
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200176 /* Add the handshake pseudo-XPRT */
177 if (cli_conn->flags & (CO_FL_ACCEPT_PROXY | CO_FL_ACCEPT_CIP)) {
178 if (xprt_add_hs(cli_conn) != 0)
179 goto out_free_conn;
180 }
Willy Tarreau64beab22015-04-05 00:39:16 +0200181 sess = session_new(p, l, &cli_conn->obj_type);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200182 if (!sess)
183 goto out_free_conn;
184
Willy Tarreau436d3332017-10-08 11:16:46 +0200185 conn_set_owner(cli_conn, sess, NULL);
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200186
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200187 /* now evaluate the tcp-request layer4 rules. We only need a session
188 * and no stream for these rules.
189 */
Willy Tarreau7d9736f2016-10-21 16:34:21 +0200190 if ((l->options & LI_O_TCP_L4_RULES) && !tcp_exec_l4_rules(sess)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200191 /* let's do a no-linger now to close with a single RST. */
192 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
193 ret = 0; /* successful termination */
194 goto out_free_sess;
195 }
196
197 /* monitor-net and health mode are processed immediately after TCP
198 * connection rules. This way it's possible to block them, but they
199 * never use the lower data layers, they send directly over the socket,
200 * as they were designed for. We first flush the socket receive buffer
201 * in order to avoid emission of an RST by the system. We ignore any
202 * error.
203 */
204 if (unlikely((p->mode == PR_MODE_HEALTH) ||
205 ((l->options & LI_O_CHK_MONNET) &&
206 addr->ss_family == AF_INET &&
207 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
208 /* we have 4 possibilities here :
209 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
210 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
211 * - HEALTH mode without HTTP check => just send "OK"
212 * - TCP mode from monitoring address => just close
213 */
214 if (l->proto->drain)
215 l->proto->drain(cfd);
216 if (p->mode == PR_MODE_HTTP ||
Christopher Faulete5870d82020-04-15 11:32:03 +0200217 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
218 (p->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK))
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200219 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
220 else if (p->mode == PR_MODE_HEALTH)
221 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
222 ret = 0;
223 goto out_free_sess;
224 }
225
Willy Tarreauf9d1bc62015-04-05 17:56:47 +0200226 /* Adjust some socket options */
227 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) {
228 setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one));
229
230 if (p->options & PR_O_TCP_CLI_KA)
231 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
232
233 if (p->options & PR_O_TCP_NOLING)
234 fdtab[cfd].linger_risk = 1;
235
236#if defined(TCP_MAXSEG)
237 if (l->maxseg < 0) {
238 /* we just want to reduce the current MSS by that value */
239 int mss;
240 socklen_t mss_len = sizeof(mss);
241 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
242 mss += l->maxseg; /* remember, it's < 0 */
243 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
244 }
245 }
246#endif
247 }
248
249 if (global.tune.client_sndbuf)
250 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
251
252 if (global.tune.client_rcvbuf)
253 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
254
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200255 /* OK, now either we have a pending handshake to execute with and then
256 * we must return to the I/O layer, or we can proceed with the end of
257 * the stream initialization. In case of handshake, we also set the I/O
258 * timeout to the frontend's client timeout and register a task in the
259 * session for this purpose. The connection's owner is left to the
260 * session during this period.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200261 *
262 * At this point we set the relation between sess/task/conn this way :
263 *
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200264 * +----------------- task
265 * | |
266 * orig -- sess <-- context |
267 * | ^ | |
268 * v | | |
269 * conn -- owner ---> task <-----+
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200270 */
Willy Tarreau911db9b2020-01-23 16:27:54 +0100271 if (cli_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)) {
Emeric Brunc60def82017-09-27 14:59:38 +0200272 if (unlikely((sess->task = task_new(tid_bit)) == NULL))
Willy Tarreau87787ac2017-08-28 16:22:54 +0200273 goto out_free_sess;
274
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200275 sess->task->context = sess;
276 sess->task->nice = l->nice;
277 sess->task->process = session_expire_embryonic;
278 sess->task->expire = tick_add_ifset(now_ms, p->timeout.client);
279 task_queue(sess->task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200280 return 1;
281 }
282
Willy Tarreau18b95a42015-04-05 01:04:01 +0200283 /* OK let's complete stream initialization since there is no handshake */
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200284 if (conn_complete_session(cli_conn) >= 0)
285 return 1;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200286
Willy Tarreaue5891ca2020-01-07 18:03:09 +0100287 /* if we reach here we have deliberately decided not to keep this
288 * session (e.g. tcp-request rule), so that's not an error we should
289 * try to protect against.
290 */
291 ret = 0;
292
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200293 /* error unrolling */
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200294 out_free_sess:
Christopher Fauletfe234282018-03-23 15:11:55 +0100295 /* prevent call to listener_release during session_free. It will be
296 * done below, for all errors. */
297 sess->listener = NULL;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200298 session_free(sess);
299 out_free_conn:
Willy Tarreau5b78a9d2017-10-05 18:12:51 +0200300 conn_stop_tracking(cli_conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200301 conn_xprt_close(cli_conn);
302 conn_free(cli_conn);
303 out_close:
Christopher Fauletfe234282018-03-23 15:11:55 +0100304 listener_release(l);
Christopher Faulet76f4c372019-07-17 16:53:19 +0200305 if (ret < 0 && l->bind_conf->xprt == xprt_get(XPRT_RAW) &&
306 p->mode == PR_MODE_HTTP && l->bind_conf->mux_proto == NULL) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200307 /* critical error, no more memory, try to emit a 500 response */
Christopher Faulet39566d12019-07-17 21:36:33 +0200308 send(cfd, http_err_msgs[HTTP_ERR_500], strlen(http_err_msgs[HTTP_ERR_500]),
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200309 MSG_DONTWAIT|MSG_NOSIGNAL);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200310 }
311
312 if (fdtab[cfd].owner)
313 fd_delete(cfd);
314 else
315 close(cfd);
316 return ret;
317}
318
319
320/* prepare the trash with a log prefix for session <sess>. It only works with
321 * embryonic sessions based on a real connection. This function requires that
322 * at sess->origin points to the incoming connection.
323 */
324static void session_prepare_log_prefix(struct session *sess)
325{
326 struct tm tm;
327 char pn[INET6_ADDRSTRLEN];
328 int ret;
329 char *end;
330 struct connection *cli_conn = __objt_conn(sess->origin);
331
Willy Tarreau4d3c60a2019-07-17 15:23:20 +0200332 ret = conn_get_src(cli_conn) ? addr_to_str(cli_conn->src, pn, sizeof(pn)) : 0;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200333 if (ret <= 0)
334 chunk_printf(&trash, "unknown [");
335 else if (ret == AF_UNIX)
336 chunk_printf(&trash, "%s:%d [", pn, sess->listener->luid);
337 else
Willy Tarreau4d3c60a2019-07-17 15:23:20 +0200338 chunk_printf(&trash, "%s:%d [", pn, get_host_port(cli_conn->src));
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200339
340 get_localtime(sess->accept_date.tv_sec, &tm);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200341 end = date2str_log(trash.area + trash.data, &tm, &(sess->accept_date),
342 trash.size - trash.data);
343 trash.data = end - trash.area;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200344 if (sess->listener->name)
345 chunk_appendf(&trash, "] %s/%s", sess->fe->id, sess->listener->name);
346 else
347 chunk_appendf(&trash, "] %s/%d", sess->fe->id, sess->listener->luid);
348}
349
350/* This function kills an existing embryonic session. It stops the connection's
351 * transport layer, releases assigned resources, resumes the listener if it was
352 * disabled and finally kills the file descriptor. This function requires that
353 * sess->origin points to the incoming connection.
354 */
Willy Tarreau086735a2018-11-05 15:09:47 +0100355static void session_kill_embryonic(struct session *sess, unsigned short state)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200356{
357 int level = LOG_INFO;
358 struct connection *conn = __objt_conn(sess->origin);
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200359 struct task *task = sess->task;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200360 unsigned int log = sess->fe->to_log;
361 const char *err_msg;
362
363 if (sess->fe->options2 & PR_O2_LOGERRORS)
364 level = LOG_ERR;
365
366 if (log && (sess->fe->options & PR_O_NULLNOLOG)) {
367 /* with "option dontlognull", we don't log connections with no transfer */
368 if (!conn->err_code ||
369 conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT ||
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100370 conn->err_code == CO_ER_CIP_EMPTY || conn->err_code == CO_ER_CIP_ABORT ||
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200371 conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT)
372 log = 0;
373 }
374
375 if (log) {
Willy Tarreau086735a2018-11-05 15:09:47 +0100376 if (!conn->err_code && (state & TASK_WOKEN_TIMER)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200377 if (conn->flags & CO_FL_ACCEPT_PROXY)
378 conn->err_code = CO_ER_PRX_TIMEOUT;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100379 else if (conn->flags & CO_FL_ACCEPT_CIP)
380 conn->err_code = CO_ER_CIP_TIMEOUT;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200381 else if (conn->flags & CO_FL_SSL_WAIT_HS)
382 conn->err_code = CO_ER_SSL_TIMEOUT;
383 }
384
385 session_prepare_log_prefix(sess);
386 err_msg = conn_err_code_str(conn);
387 if (err_msg)
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200388 send_log(sess->fe, level, "%s: %s\n", trash.area,
389 err_msg);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200390 else
391 send_log(sess->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200392 trash.area, conn->err_code, conn->flags);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200393 }
394
395 /* kill the connection now */
Willy Tarreau5b78a9d2017-10-05 18:12:51 +0200396 conn_stop_tracking(conn);
397 conn_full_close(conn);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200398 conn_free(conn);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100399 sess->origin = NULL;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200400
Olivier Houchard3f795f72019-04-17 22:51:06 +0200401 task_destroy(task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200402 session_free(sess);
403}
404
405/* Manages the embryonic session timeout. It is only called when the timeout
406 * strikes and performs the required cleanup.
407 */
Olivier Houchard9f6af332018-05-25 14:04:04 +0200408static struct task *session_expire_embryonic(struct task *t, void *context, unsigned short state)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200409{
Olivier Houchard9f6af332018-05-25 14:04:04 +0200410 struct session *sess = context;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200411
Olivier Houchardfde2a092018-08-16 19:03:50 +0200412 if (!(state & TASK_WOKEN_TIMER))
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200413 return t;
414
Willy Tarreau086735a2018-11-05 15:09:47 +0100415 session_kill_embryonic(sess, state);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200416 return NULL;
417}
418
419/* Finish initializing a session from a connection, or kills it if the
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200420 * connection shows and error. Returns <0 if the connection was killed. It may
Olivier Houchard477902b2020-01-22 18:08:48 +0100421 * be called either asynchronously when ssl handshake is done with an embryonic
Willy Tarreau0c4ed352017-09-15 10:06:28 +0200422 * session, or synchronously to finalize the session. The distinction is made
423 * on sess->task which is only set in the embryonic session case.
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200424 */
Olivier Houchard477902b2020-01-22 18:08:48 +0100425int conn_complete_session(struct connection *conn)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200426{
Willy Tarreau0b74eae2017-08-28 19:02:51 +0200427 struct session *sess = conn->owner;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200428
Willy Tarreau590a0512018-09-05 11:56:48 +0200429 sess->t_handshake = tv_ms_elapsed(&sess->tv_accept, &now);
430
Willy Tarreaud1769b82015-04-06 00:25:48 +0200431 if (conn->flags & CO_FL_ERROR)
432 goto fail;
433
Willy Tarreau678be622015-04-08 18:18:15 +0200434 /* if logs require transport layer information, note it on the connection */
435 if (sess->fe->to_log & LW_XPRT)
436 conn->flags |= CO_FL_XPRT_TRACKED;
437
Willy Tarreau620408f2016-10-21 16:37:51 +0200438 /* we may have some tcp-request-session rules */
439 if ((sess->listener->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess))
440 goto fail;
441
Willy Tarreau042cd752015-04-08 18:10:49 +0200442 session_count_new(sess);
Christopher Faulet7ce0c892018-04-10 15:01:45 +0200443 if (conn_install_mux_fe(conn, NULL) < 0)
Willy Tarreaud1769b82015-04-06 00:25:48 +0200444 goto fail;
445
Willy Tarreau87787ac2017-08-28 16:22:54 +0200446 /* the embryonic session's task is not needed anymore */
Willy Tarreauf6562792019-05-07 19:05:35 +0200447 task_destroy(sess->task);
448 sess->task = NULL;
Willy Tarreau3e13cba2017-10-08 11:26:30 +0200449 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 */