blob: 06d3000e4203019ac71373331233d7f4b2e07213 [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>
16#include <common/memory.h>
17
18#include <types/global.h>
19#include <types/session.h>
20
Willy Tarreau9903f0e2015-04-04 18:50:31 +020021#include <proto/connection.h>
22#include <proto/listener.h>
23#include <proto/log.h>
24#include <proto/proto_http.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 Tarreaub1ec8c42015-04-03 13:53:24 +020031struct pool_head *pool2_session;
32
Willy Tarreau9903f0e2015-04-04 18:50:31 +020033static int conn_complete_session(struct connection *conn);
34static int conn_update_session(struct connection *conn);
35static struct task *session_expire_embryonic(struct task *t);
36
37/* data layer callbacks for an embryonic stream */
38struct data_cb sess_conn_cb = {
39 .recv = NULL,
40 .send = NULL,
41 .wake = conn_update_session,
42 .init = conn_complete_session,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +010043 .name = "SESS",
Willy Tarreau9903f0e2015-04-04 18:50:31 +020044};
45
Willy Tarreauc38f71c2015-04-05 00:38:48 +020046/* Create a a new session and assign it to frontend <fe>, listener <li>,
47 * origin <origin>, set the current date and clear the stick counters pointers.
48 * Returns the session upon success or NULL. The session may be released using
49 * session_free().
50 */
51struct session *session_new(struct proxy *fe, struct listener *li, enum obj_type *origin)
52{
53 struct session *sess;
54
55 sess = pool_alloc2(pool2_session);
56 if (sess) {
57 sess->listener = li;
58 sess->fe = fe;
Willy Tarreaubcb86ab2017-06-27 15:13:43 +020059 LIST_INIT(&sess->streams);
Willy Tarreauc38f71c2015-04-05 00:38:48 +020060 sess->origin = origin;
61 sess->accept_date = date; /* user-visible date for logging */
62 sess->tv_accept = now; /* corrected date for internal use */
63 memset(sess->stkctr, 0, sizeof(sess->stkctr));
Willy Tarreauebcd4842015-06-19 11:59:02 +020064 vars_init(&sess->vars, SCOPE_SESS);
Willy Tarreauc38f71c2015-04-05 00:38:48 +020065 }
66 return sess;
67}
68
Willy Tarreau11c36242015-04-04 15:54:03 +020069void session_free(struct session *sess)
70{
Willy Tarreauf92a73d2017-06-27 15:25:14 +020071 if (!LIST_ISEMPTY(&sess->streams))
72 return;
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 Tarreau11c36242015-04-04 15:54:03 +020075 pool_free2(pool2_session, sess);
76}
77
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020078/* perform minimal intializations, report 0 in case of error, 1 if OK. */
79int init_session()
80{
81 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
82 return pool2_session != NULL;
83}
84
Willy Tarreau042cd752015-04-08 18:10:49 +020085/* count a new session to keep frontend, listener and track stats up to date */
86static void session_count_new(struct session *sess)
87{
88 struct stkctr *stkctr;
89 void *ptr;
90 int i;
91
92 proxy_inc_fe_sess_ctr(sess->listener, sess->fe);
93
94 for (i = 0; i < MAX_SESS_STKCTR; i++) {
95 stkctr = &sess->stkctr[i];
96 if (!stkctr_entry(stkctr))
97 continue;
98
99 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
100 if (ptr)
101 stktable_data_cast(ptr, sess_cnt)++;
102
103 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
104 if (ptr)
105 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
106 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
107 }
108}
109
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200110/* This function is called from the protocol layer accept() in order to
111 * instanciate a new session on behalf of a given listener and frontend. It
112 * returns a positive value upon success, 0 if the connection can be ignored,
113 * or a negative value upon critical failure. The accepted file descriptor is
114 * closed if we return <= 0. If no handshake is needed, it immediately tries
115 * to instanciate a new stream.
116 */
117int session_accept_fd(struct listener *l, int cfd, struct sockaddr_storage *addr)
118{
119 struct connection *cli_conn;
Willy Tarreauc95bad52016-12-22 00:13:31 +0100120 struct proxy *p = l->bind_conf->frontend;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200121 struct session *sess;
122 struct task *t;
123 int ret;
124
125
126 ret = -1; /* assume unrecoverable error by default */
127
128 if (unlikely((cli_conn = conn_new()) == NULL))
129 goto out_close;
130
Willy Tarreau71a8c7c2016-12-21 22:04:54 +0100131 conn_prepare(cli_conn, l->proto, l->bind_conf->xprt);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200132
133 cli_conn->t.sock.fd = cfd;
134 cli_conn->addr.from = *addr;
135 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
136 cli_conn->target = &l->obj_type;
137 cli_conn->proxy_netns = l->netns;
138
139 conn_ctrl_init(cli_conn);
140
141 /* wait for a PROXY protocol header */
142 if (l->options & LI_O_ACC_PROXY) {
143 cli_conn->flags |= CO_FL_ACCEPT_PROXY;
144 conn_sock_want_recv(cli_conn);
145 }
146
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100147 /* wait for a NetScaler client IP insertion protocol header */
148 if (l->options & LI_O_ACC_CIP) {
149 cli_conn->flags |= CO_FL_ACCEPT_CIP;
150 conn_sock_want_recv(cli_conn);
151 }
152
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200153 conn_data_want_recv(cli_conn);
154 if (conn_xprt_init(cli_conn) < 0)
155 goto out_free_conn;
156
Willy Tarreau64beab22015-04-05 00:39:16 +0200157 sess = session_new(p, l, &cli_conn->obj_type);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200158 if (!sess)
159 goto out_free_conn;
160
161 p->feconn++;
162 /* This session was accepted, count it now */
163 if (p->feconn > p->fe_counters.conn_max)
164 p->fe_counters.conn_max = p->feconn;
165
166 proxy_inc_fe_conn_ctr(l, p);
167
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200168 /* now evaluate the tcp-request layer4 rules. We only need a session
169 * and no stream for these rules.
170 */
Willy Tarreau7d9736f2016-10-21 16:34:21 +0200171 if ((l->options & LI_O_TCP_L4_RULES) && !tcp_exec_l4_rules(sess)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200172 /* let's do a no-linger now to close with a single RST. */
173 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
174 ret = 0; /* successful termination */
175 goto out_free_sess;
176 }
177
178 /* monitor-net and health mode are processed immediately after TCP
179 * connection rules. This way it's possible to block them, but they
180 * never use the lower data layers, they send directly over the socket,
181 * as they were designed for. We first flush the socket receive buffer
182 * in order to avoid emission of an RST by the system. We ignore any
183 * error.
184 */
185 if (unlikely((p->mode == PR_MODE_HEALTH) ||
186 ((l->options & LI_O_CHK_MONNET) &&
187 addr->ss_family == AF_INET &&
188 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
189 /* we have 4 possibilities here :
190 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
191 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
192 * - HEALTH mode without HTTP check => just send "OK"
193 * - TCP mode from monitoring address => just close
194 */
195 if (l->proto->drain)
196 l->proto->drain(cfd);
197 if (p->mode == PR_MODE_HTTP ||
198 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
199 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
200 else if (p->mode == PR_MODE_HEALTH)
201 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
202 ret = 0;
203 goto out_free_sess;
204 }
205
Willy Tarreauf9d1bc62015-04-05 17:56:47 +0200206 /* Adjust some socket options */
207 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) {
208 setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one));
209
210 if (p->options & PR_O_TCP_CLI_KA)
211 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
212
213 if (p->options & PR_O_TCP_NOLING)
214 fdtab[cfd].linger_risk = 1;
215
216#if defined(TCP_MAXSEG)
217 if (l->maxseg < 0) {
218 /* we just want to reduce the current MSS by that value */
219 int mss;
220 socklen_t mss_len = sizeof(mss);
221 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
222 mss += l->maxseg; /* remember, it's < 0 */
223 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
224 }
225 }
226#endif
227 }
228
229 if (global.tune.client_sndbuf)
230 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
231
232 if (global.tune.client_rcvbuf)
233 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
234
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200235 if (unlikely((t = task_new()) == NULL))
236 goto out_free_sess;
237
238 t->context = sess;
239 t->nice = l->nice;
240
241 /* OK, now either we have a pending handshake to execute with and
242 * then we must return to the I/O layer, or we can proceed with the
243 * end of the stream initialization. In case of handshake, we also
244 * set the I/O timeout to the frontend's client timeout.
245 *
246 * At this point we set the relation between sess/task/conn this way :
247 *
248 * orig -- sess <-- context
249 * | |
250 * v |
251 * conn -- owner ---> task
252 */
253 if (cli_conn->flags & CO_FL_HANDSHAKE) {
254 conn_attach(cli_conn, t, &sess_conn_cb);
255 t->process = session_expire_embryonic;
256 t->expire = tick_add_ifset(now_ms, p->timeout.client);
257 task_queue(t);
Willy Tarreaude40d792017-03-18 17:40:22 +0100258 cli_conn->flags |= CO_FL_INIT_DATA;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200259 return 1;
260 }
261
Willy Tarreau18b95a42015-04-05 01:04:01 +0200262 /* OK let's complete stream initialization since there is no handshake */
263 cli_conn->flags |= CO_FL_CONNECTED;
Willy Tarreau042cd752015-04-08 18:10:49 +0200264
Willy Tarreau678be622015-04-08 18:18:15 +0200265 /* if logs require transport layer information, note it on the connection */
266 if (sess->fe->to_log & LW_XPRT)
267 cli_conn->flags |= CO_FL_XPRT_TRACKED;
268
Willy Tarreau620408f2016-10-21 16:37:51 +0200269 /* we may have some tcp-request-session rules */
270 if ((l->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess))
271 goto out_free_sess;
272
Willy Tarreau042cd752015-04-08 18:10:49 +0200273 session_count_new(sess);
Willy Tarreau9b82d942016-12-05 00:26:31 +0100274 if (!stream_new(sess, t, &cli_conn->obj_type))
Willy Tarreaud1769b82015-04-06 00:25:48 +0200275 goto out_free_task;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200276
Emeric Brun5f77fef2017-05-29 15:26:51 +0200277 task_wakeup(t, TASK_WOKEN_INIT);
Willy Tarreaud1769b82015-04-06 00:25:48 +0200278 return 1;
279
280 out_free_task:
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200281 task_free(t);
282 out_free_sess:
283 p->feconn--;
284 session_free(sess);
285 out_free_conn:
286 cli_conn->flags &= ~CO_FL_XPRT_TRACKED;
287 conn_xprt_close(cli_conn);
288 conn_free(cli_conn);
289 out_close:
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100290 if (ret < 0 && l->bind_conf->xprt == xprt_get(XPRT_RAW) && p->mode == PR_MODE_HTTP) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200291 /* critical error, no more memory, try to emit a 500 response */
292 struct chunk *err_msg = &p->errmsg[HTTP_ERR_500];
293 if (!err_msg->str)
294 err_msg = &http_err_chunks[HTTP_ERR_500];
295 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
296 }
297
298 if (fdtab[cfd].owner)
299 fd_delete(cfd);
300 else
301 close(cfd);
302 return ret;
303}
304
305
306/* prepare the trash with a log prefix for session <sess>. It only works with
307 * embryonic sessions based on a real connection. This function requires that
308 * at sess->origin points to the incoming connection.
309 */
310static void session_prepare_log_prefix(struct session *sess)
311{
312 struct tm tm;
313 char pn[INET6_ADDRSTRLEN];
314 int ret;
315 char *end;
316 struct connection *cli_conn = __objt_conn(sess->origin);
317
318 ret = addr_to_str(&cli_conn->addr.from, pn, sizeof(pn));
319 if (ret <= 0)
320 chunk_printf(&trash, "unknown [");
321 else if (ret == AF_UNIX)
322 chunk_printf(&trash, "%s:%d [", pn, sess->listener->luid);
323 else
324 chunk_printf(&trash, "%s:%d [", pn, get_host_port(&cli_conn->addr.from));
325
326 get_localtime(sess->accept_date.tv_sec, &tm);
327 end = date2str_log(trash.str + trash.len, &tm, &(sess->accept_date), trash.size - trash.len);
328 trash.len = end - trash.str;
329 if (sess->listener->name)
330 chunk_appendf(&trash, "] %s/%s", sess->fe->id, sess->listener->name);
331 else
332 chunk_appendf(&trash, "] %s/%d", sess->fe->id, sess->listener->luid);
333}
334
335/* This function kills an existing embryonic session. It stops the connection's
336 * transport layer, releases assigned resources, resumes the listener if it was
337 * disabled and finally kills the file descriptor. This function requires that
338 * sess->origin points to the incoming connection.
339 */
Willy Tarreau92b10c92016-12-04 20:05:16 +0100340static void session_kill_embryonic(struct session *sess, struct task *task)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200341{
342 int level = LOG_INFO;
343 struct connection *conn = __objt_conn(sess->origin);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200344 unsigned int log = sess->fe->to_log;
345 const char *err_msg;
346
347 if (sess->fe->options2 & PR_O2_LOGERRORS)
348 level = LOG_ERR;
349
350 if (log && (sess->fe->options & PR_O_NULLNOLOG)) {
351 /* with "option dontlognull", we don't log connections with no transfer */
352 if (!conn->err_code ||
353 conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT ||
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100354 conn->err_code == CO_ER_CIP_EMPTY || conn->err_code == CO_ER_CIP_ABORT ||
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200355 conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT)
356 log = 0;
357 }
358
359 if (log) {
360 if (!conn->err_code && (task->state & TASK_WOKEN_TIMER)) {
361 if (conn->flags & CO_FL_ACCEPT_PROXY)
362 conn->err_code = CO_ER_PRX_TIMEOUT;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100363 else if (conn->flags & CO_FL_ACCEPT_CIP)
364 conn->err_code = CO_ER_CIP_TIMEOUT;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200365 else if (conn->flags & CO_FL_SSL_WAIT_HS)
366 conn->err_code = CO_ER_SSL_TIMEOUT;
367 }
368
369 session_prepare_log_prefix(sess);
370 err_msg = conn_err_code_str(conn);
371 if (err_msg)
372 send_log(sess->fe, level, "%s: %s\n", trash.str, err_msg);
373 else
374 send_log(sess->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
375 trash.str, conn->err_code, conn->flags);
376 }
377
378 /* kill the connection now */
379 conn_force_close(conn);
380 conn_free(conn);
381
382 sess->fe->feconn--;
383
384 if (!(sess->listener->options & LI_O_UNLIMITED))
385 actconn--;
386 jobs--;
387 sess->listener->nbconn--;
388 if (sess->listener->state == LI_FULL)
389 resume_listener(sess->listener);
390
391 /* Dequeues all of the listeners waiting for a resource */
392 if (!LIST_ISEMPTY(&global_listener_queue))
393 dequeue_all_listeners(&global_listener_queue);
394
395 if (!LIST_ISEMPTY(&sess->fe->listener_queue) &&
396 (!sess->fe->fe_sps_lim || freq_ctr_remain(&sess->fe->fe_sess_per_sec, sess->fe->fe_sps_lim, 0) > 0))
397 dequeue_all_listeners(&sess->fe->listener_queue);
398
399 task_delete(task);
400 task_free(task);
401 session_free(sess);
402}
403
404/* Manages the embryonic session timeout. It is only called when the timeout
405 * strikes and performs the required cleanup.
406 */
407static struct task *session_expire_embryonic(struct task *t)
408{
409 struct session *sess = t->context;
410
411 if (!(t->state & TASK_WOKEN_TIMER))
412 return t;
413
Willy Tarreau92b10c92016-12-04 20:05:16 +0100414 session_kill_embryonic(sess, t);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200415 return NULL;
416}
417
418/* Finish initializing a session from a connection, or kills it if the
419 * connection shows and error. Returns <0 if the connection was killed.
420 */
421static int conn_complete_session(struct connection *conn)
422{
423 struct task *task = conn->owner;
424 struct session *sess = task->context;
425
Willy Tarreaud1769b82015-04-06 00:25:48 +0200426 if (conn->flags & CO_FL_ERROR)
427 goto fail;
428
Willy Tarreau678be622015-04-08 18:18:15 +0200429 /* if logs require transport layer information, note it on the connection */
430 if (sess->fe->to_log & LW_XPRT)
431 conn->flags |= CO_FL_XPRT_TRACKED;
432
Willy Tarreau620408f2016-10-21 16:37:51 +0200433 /* we may have some tcp-request-session rules */
434 if ((sess->listener->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess))
435 goto fail;
436
Willy Tarreau042cd752015-04-08 18:10:49 +0200437 session_count_new(sess);
Willy Tarreaud1769b82015-04-06 00:25:48 +0200438 task->process = sess->listener->handler;
Willy Tarreau9b82d942016-12-05 00:26:31 +0100439 if (!stream_new(sess, task, &conn->obj_type))
Willy Tarreaud1769b82015-04-06 00:25:48 +0200440 goto fail;
441
Willy Tarreaud1769b82015-04-06 00:25:48 +0200442 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau678be622015-04-08 18:18:15 +0200443
Emeric Brun5f77fef2017-05-29 15:26:51 +0200444 task_wakeup(task, TASK_WOKEN_INIT);
Willy Tarreaud1769b82015-04-06 00:25:48 +0200445 return 0;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200446
Willy Tarreaud1769b82015-04-06 00:25:48 +0200447 fail:
Willy Tarreau92b10c92016-12-04 20:05:16 +0100448 session_kill_embryonic(sess, task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200449 return -1;
450}
451
452/* Update a session status. The connection is killed in case of
453 * error, and <0 will be returned. Otherwise it does nothing.
454 */
455static int conn_update_session(struct connection *conn)
456{
457 struct task *task = conn->owner;
458 struct session *sess = task->context;
459
460 if (conn->flags & CO_FL_ERROR) {
Willy Tarreau92b10c92016-12-04 20:05:16 +0100461 session_kill_embryonic(sess, task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200462 return -1;
463 }
464 return 0;
465}
466
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200467/*
468 * Local variables:
469 * c-indent-level: 8
470 * c-basic-offset: 8
471 * End:
472 */