blob: 429577716bf57fd27f982ecbff2d4df69bf04612 [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;
59 sess->origin = origin;
60 sess->accept_date = date; /* user-visible date for logging */
61 sess->tv_accept = now; /* corrected date for internal use */
62 memset(sess->stkctr, 0, sizeof(sess->stkctr));
Willy Tarreauebcd4842015-06-19 11:59:02 +020063 vars_init(&sess->vars, SCOPE_SESS);
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{
Willy Tarreaubb2ef122015-04-04 16:31:16 +020070 session_store_counters(sess);
Willy Tarreauebcd4842015-06-19 11:59:02 +020071 vars_prune_per_sess(&sess->vars);
Willy Tarreau11c36242015-04-04 15:54:03 +020072 pool_free2(pool2_session, sess);
73}
74
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020075/* perform minimal intializations, report 0 in case of error, 1 if OK. */
76int init_session()
77{
78 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
79 return pool2_session != NULL;
80}
81
Willy Tarreau042cd752015-04-08 18:10:49 +020082/* count a new session to keep frontend, listener and track stats up to date */
83static void session_count_new(struct session *sess)
84{
85 struct stkctr *stkctr;
86 void *ptr;
87 int i;
88
89 proxy_inc_fe_sess_ctr(sess->listener, sess->fe);
90
91 for (i = 0; i < MAX_SESS_STKCTR; i++) {
92 stkctr = &sess->stkctr[i];
93 if (!stkctr_entry(stkctr))
94 continue;
95
96 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT);
97 if (ptr)
98 stktable_data_cast(ptr, sess_cnt)++;
99
100 ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE);
101 if (ptr)
102 update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate),
103 stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u, 1);
104 }
105}
106
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200107/* This function is called from the protocol layer accept() in order to
108 * instanciate a new session on behalf of a given listener and frontend. It
109 * returns a positive value upon success, 0 if the connection can be ignored,
110 * or a negative value upon critical failure. The accepted file descriptor is
111 * closed if we return <= 0. If no handshake is needed, it immediately tries
112 * to instanciate a new stream.
113 */
114int session_accept_fd(struct listener *l, int cfd, struct sockaddr_storage *addr)
115{
116 struct connection *cli_conn;
Willy Tarreauc95bad52016-12-22 00:13:31 +0100117 struct proxy *p = l->bind_conf->frontend;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200118 struct session *sess;
119 struct task *t;
120 int ret;
121
122
123 ret = -1; /* assume unrecoverable error by default */
124
125 if (unlikely((cli_conn = conn_new()) == NULL))
126 goto out_close;
127
Willy Tarreau71a8c7c2016-12-21 22:04:54 +0100128 conn_prepare(cli_conn, l->proto, l->bind_conf->xprt);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200129
130 cli_conn->t.sock.fd = cfd;
131 cli_conn->addr.from = *addr;
132 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
133 cli_conn->target = &l->obj_type;
134 cli_conn->proxy_netns = l->netns;
135
136 conn_ctrl_init(cli_conn);
137
138 /* wait for a PROXY protocol header */
139 if (l->options & LI_O_ACC_PROXY) {
140 cli_conn->flags |= CO_FL_ACCEPT_PROXY;
141 conn_sock_want_recv(cli_conn);
142 }
143
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100144 /* wait for a NetScaler client IP insertion protocol header */
145 if (l->options & LI_O_ACC_CIP) {
146 cli_conn->flags |= CO_FL_ACCEPT_CIP;
147 conn_sock_want_recv(cli_conn);
148 }
149
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200150 conn_data_want_recv(cli_conn);
151 if (conn_xprt_init(cli_conn) < 0)
152 goto out_free_conn;
153
Willy Tarreau64beab22015-04-05 00:39:16 +0200154 sess = session_new(p, l, &cli_conn->obj_type);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200155 if (!sess)
156 goto out_free_conn;
157
158 p->feconn++;
159 /* This session was accepted, count it now */
160 if (p->feconn > p->fe_counters.conn_max)
161 p->fe_counters.conn_max = p->feconn;
162
163 proxy_inc_fe_conn_ctr(l, p);
164
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200165 /* now evaluate the tcp-request layer4 rules. We only need a session
166 * and no stream for these rules.
167 */
Willy Tarreau7d9736f2016-10-21 16:34:21 +0200168 if ((l->options & LI_O_TCP_L4_RULES) && !tcp_exec_l4_rules(sess)) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200169 /* let's do a no-linger now to close with a single RST. */
170 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
171 ret = 0; /* successful termination */
172 goto out_free_sess;
173 }
174
175 /* monitor-net and health mode are processed immediately after TCP
176 * connection rules. This way it's possible to block them, but they
177 * never use the lower data layers, they send directly over the socket,
178 * as they were designed for. We first flush the socket receive buffer
179 * in order to avoid emission of an RST by the system. We ignore any
180 * error.
181 */
182 if (unlikely((p->mode == PR_MODE_HEALTH) ||
183 ((l->options & LI_O_CHK_MONNET) &&
184 addr->ss_family == AF_INET &&
185 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
186 /* we have 4 possibilities here :
187 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
188 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
189 * - HEALTH mode without HTTP check => just send "OK"
190 * - TCP mode from monitoring address => just close
191 */
192 if (l->proto->drain)
193 l->proto->drain(cfd);
194 if (p->mode == PR_MODE_HTTP ||
195 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
196 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
197 else if (p->mode == PR_MODE_HEALTH)
198 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
199 ret = 0;
200 goto out_free_sess;
201 }
202
Willy Tarreauf9d1bc62015-04-05 17:56:47 +0200203 /* Adjust some socket options */
204 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) {
205 setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one));
206
207 if (p->options & PR_O_TCP_CLI_KA)
208 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
209
210 if (p->options & PR_O_TCP_NOLING)
211 fdtab[cfd].linger_risk = 1;
212
213#if defined(TCP_MAXSEG)
214 if (l->maxseg < 0) {
215 /* we just want to reduce the current MSS by that value */
216 int mss;
217 socklen_t mss_len = sizeof(mss);
218 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
219 mss += l->maxseg; /* remember, it's < 0 */
220 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
221 }
222 }
223#endif
224 }
225
226 if (global.tune.client_sndbuf)
227 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
228
229 if (global.tune.client_rcvbuf)
230 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
231
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200232 if (unlikely((t = task_new()) == NULL))
233 goto out_free_sess;
234
235 t->context = sess;
236 t->nice = l->nice;
237
238 /* OK, now either we have a pending handshake to execute with and
239 * then we must return to the I/O layer, or we can proceed with the
240 * end of the stream initialization. In case of handshake, we also
241 * set the I/O timeout to the frontend's client timeout.
242 *
243 * At this point we set the relation between sess/task/conn this way :
244 *
245 * orig -- sess <-- context
246 * | |
247 * v |
248 * conn -- owner ---> task
249 */
250 if (cli_conn->flags & CO_FL_HANDSHAKE) {
251 conn_attach(cli_conn, t, &sess_conn_cb);
252 t->process = session_expire_embryonic;
253 t->expire = tick_add_ifset(now_ms, p->timeout.client);
254 task_queue(t);
Willy Tarreaude40d792017-03-18 17:40:22 +0100255 cli_conn->flags |= CO_FL_INIT_DATA;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200256 return 1;
257 }
258
Willy Tarreau18b95a42015-04-05 01:04:01 +0200259 /* OK let's complete stream initialization since there is no handshake */
260 cli_conn->flags |= CO_FL_CONNECTED;
Willy Tarreau042cd752015-04-08 18:10:49 +0200261
Willy Tarreau678be622015-04-08 18:18:15 +0200262 /* if logs require transport layer information, note it on the connection */
263 if (sess->fe->to_log & LW_XPRT)
264 cli_conn->flags |= CO_FL_XPRT_TRACKED;
265
Willy Tarreau620408f2016-10-21 16:37:51 +0200266 /* we may have some tcp-request-session rules */
267 if ((l->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess))
268 goto out_free_sess;
269
Willy Tarreau042cd752015-04-08 18:10:49 +0200270 session_count_new(sess);
Willy Tarreau9b82d942016-12-05 00:26:31 +0100271 if (!stream_new(sess, t, &cli_conn->obj_type))
Willy Tarreaud1769b82015-04-06 00:25:48 +0200272 goto out_free_task;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200273
Emeric Brun5f77fef2017-05-29 15:26:51 +0200274 task_wakeup(t, TASK_WOKEN_INIT);
Willy Tarreaud1769b82015-04-06 00:25:48 +0200275 return 1;
276
277 out_free_task:
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200278 task_free(t);
279 out_free_sess:
280 p->feconn--;
281 session_free(sess);
282 out_free_conn:
283 cli_conn->flags &= ~CO_FL_XPRT_TRACKED;
284 conn_xprt_close(cli_conn);
285 conn_free(cli_conn);
286 out_close:
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100287 if (ret < 0 && l->bind_conf->xprt == xprt_get(XPRT_RAW) && p->mode == PR_MODE_HTTP) {
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200288 /* critical error, no more memory, try to emit a 500 response */
289 struct chunk *err_msg = &p->errmsg[HTTP_ERR_500];
290 if (!err_msg->str)
291 err_msg = &http_err_chunks[HTTP_ERR_500];
292 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
293 }
294
295 if (fdtab[cfd].owner)
296 fd_delete(cfd);
297 else
298 close(cfd);
299 return ret;
300}
301
302
303/* prepare the trash with a log prefix for session <sess>. It only works with
304 * embryonic sessions based on a real connection. This function requires that
305 * at sess->origin points to the incoming connection.
306 */
307static void session_prepare_log_prefix(struct session *sess)
308{
309 struct tm tm;
310 char pn[INET6_ADDRSTRLEN];
311 int ret;
312 char *end;
313 struct connection *cli_conn = __objt_conn(sess->origin);
314
315 ret = addr_to_str(&cli_conn->addr.from, pn, sizeof(pn));
316 if (ret <= 0)
317 chunk_printf(&trash, "unknown [");
318 else if (ret == AF_UNIX)
319 chunk_printf(&trash, "%s:%d [", pn, sess->listener->luid);
320 else
321 chunk_printf(&trash, "%s:%d [", pn, get_host_port(&cli_conn->addr.from));
322
323 get_localtime(sess->accept_date.tv_sec, &tm);
324 end = date2str_log(trash.str + trash.len, &tm, &(sess->accept_date), trash.size - trash.len);
325 trash.len = end - trash.str;
326 if (sess->listener->name)
327 chunk_appendf(&trash, "] %s/%s", sess->fe->id, sess->listener->name);
328 else
329 chunk_appendf(&trash, "] %s/%d", sess->fe->id, sess->listener->luid);
330}
331
332/* This function kills an existing embryonic session. It stops the connection's
333 * transport layer, releases assigned resources, resumes the listener if it was
334 * disabled and finally kills the file descriptor. This function requires that
335 * sess->origin points to the incoming connection.
336 */
Willy Tarreau92b10c92016-12-04 20:05:16 +0100337static void session_kill_embryonic(struct session *sess, struct task *task)
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200338{
339 int level = LOG_INFO;
340 struct connection *conn = __objt_conn(sess->origin);
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) {
357 if (!conn->err_code && (task->state & TASK_WOKEN_TIMER)) {
358 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)
369 send_log(sess->fe, level, "%s: %s\n", trash.str, err_msg);
370 else
371 send_log(sess->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
372 trash.str, conn->err_code, conn->flags);
373 }
374
375 /* kill the connection now */
376 conn_force_close(conn);
377 conn_free(conn);
378
379 sess->fe->feconn--;
380
381 if (!(sess->listener->options & LI_O_UNLIMITED))
382 actconn--;
383 jobs--;
384 sess->listener->nbconn--;
385 if (sess->listener->state == LI_FULL)
386 resume_listener(sess->listener);
387
388 /* Dequeues all of the listeners waiting for a resource */
389 if (!LIST_ISEMPTY(&global_listener_queue))
390 dequeue_all_listeners(&global_listener_queue);
391
392 if (!LIST_ISEMPTY(&sess->fe->listener_queue) &&
393 (!sess->fe->fe_sps_lim || freq_ctr_remain(&sess->fe->fe_sess_per_sec, sess->fe->fe_sps_lim, 0) > 0))
394 dequeue_all_listeners(&sess->fe->listener_queue);
395
396 task_delete(task);
397 task_free(task);
398 session_free(sess);
399}
400
401/* Manages the embryonic session timeout. It is only called when the timeout
402 * strikes and performs the required cleanup.
403 */
404static struct task *session_expire_embryonic(struct task *t)
405{
406 struct session *sess = t->context;
407
408 if (!(t->state & TASK_WOKEN_TIMER))
409 return t;
410
Willy Tarreau92b10c92016-12-04 20:05:16 +0100411 session_kill_embryonic(sess, t);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200412 return NULL;
413}
414
415/* Finish initializing a session from a connection, or kills it if the
416 * connection shows and error. Returns <0 if the connection was killed.
417 */
418static int conn_complete_session(struct connection *conn)
419{
420 struct task *task = conn->owner;
421 struct session *sess = task->context;
422
Willy Tarreaud1769b82015-04-06 00:25:48 +0200423 if (conn->flags & CO_FL_ERROR)
424 goto fail;
425
Willy Tarreau678be622015-04-08 18:18:15 +0200426 /* if logs require transport layer information, note it on the connection */
427 if (sess->fe->to_log & LW_XPRT)
428 conn->flags |= CO_FL_XPRT_TRACKED;
429
Willy Tarreau620408f2016-10-21 16:37:51 +0200430 /* we may have some tcp-request-session rules */
431 if ((sess->listener->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess))
432 goto fail;
433
Willy Tarreau042cd752015-04-08 18:10:49 +0200434 session_count_new(sess);
Willy Tarreaud1769b82015-04-06 00:25:48 +0200435 task->process = sess->listener->handler;
Willy Tarreau9b82d942016-12-05 00:26:31 +0100436 if (!stream_new(sess, task, &conn->obj_type))
Willy Tarreaud1769b82015-04-06 00:25:48 +0200437 goto fail;
438
Willy Tarreaud1769b82015-04-06 00:25:48 +0200439 conn->flags &= ~CO_FL_INIT_DATA;
Willy Tarreau678be622015-04-08 18:18:15 +0200440
Emeric Brun5f77fef2017-05-29 15:26:51 +0200441 task_wakeup(task, TASK_WOKEN_INIT);
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 Tarreau92b10c92016-12-04 20:05:16 +0100445 session_kill_embryonic(sess, task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200446 return -1;
447}
448
449/* Update a session status. The connection is killed in case of
450 * error, and <0 will be returned. Otherwise it does nothing.
451 */
452static int conn_update_session(struct connection *conn)
453{
454 struct task *task = conn->owner;
455 struct session *sess = task->context;
456
457 if (conn->flags & CO_FL_ERROR) {
Willy Tarreau92b10c92016-12-04 20:05:16 +0100458 session_kill_embryonic(sess, task);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200459 return -1;
460 }
461 return 0;
462}
463
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200464/*
465 * Local variables:
466 * c-indent-level: 8
467 * c-basic-offset: 8
468 * End:
469 */