blob: 6ae2592fe1b049127da978f12abbeb3436a3ea73 [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>
25#include <proto/proto_tcp.h>
26#include <proto/proxy.h>
27#include <proto/raw_sock.h>
Willy Tarreaubb2ef122015-04-04 16:31:16 +020028#include <proto/session.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020029#include <proto/stream.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,
43};
44
Willy Tarreauc38f71c2015-04-05 00:38:48 +020045/* Create a a new session and assign it to frontend <fe>, listener <li>,
46 * origin <origin>, set the current date and clear the stick counters pointers.
47 * Returns the session upon success or NULL. The session may be released using
48 * session_free().
49 */
50struct session *session_new(struct proxy *fe, struct listener *li, enum obj_type *origin)
51{
52 struct session *sess;
53
54 sess = pool_alloc2(pool2_session);
55 if (sess) {
56 sess->listener = li;
57 sess->fe = fe;
58 sess->origin = origin;
59 sess->accept_date = date; /* user-visible date for logging */
60 sess->tv_accept = now; /* corrected date for internal use */
61 memset(sess->stkctr, 0, sizeof(sess->stkctr));
62 }
63 return sess;
64}
65
Willy Tarreau11c36242015-04-04 15:54:03 +020066void session_free(struct session *sess)
67{
Willy Tarreaubb2ef122015-04-04 16:31:16 +020068 session_store_counters(sess);
Willy Tarreau11c36242015-04-04 15:54:03 +020069 pool_free2(pool2_session, sess);
70}
71
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020072/* perform minimal intializations, report 0 in case of error, 1 if OK. */
73int init_session()
74{
75 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
76 return pool2_session != NULL;
77}
78
Willy Tarreau9903f0e2015-04-04 18:50:31 +020079/* This function is called from the protocol layer accept() in order to
80 * instanciate a new session on behalf of a given listener and frontend. It
81 * returns a positive value upon success, 0 if the connection can be ignored,
82 * or a negative value upon critical failure. The accepted file descriptor is
83 * closed if we return <= 0. If no handshake is needed, it immediately tries
84 * to instanciate a new stream.
85 */
86int session_accept_fd(struct listener *l, int cfd, struct sockaddr_storage *addr)
87{
88 struct connection *cli_conn;
89 struct proxy *p = l->frontend;
90 struct session *sess;
Willy Tarreaud1769b82015-04-06 00:25:48 +020091 struct stream *strm;
Willy Tarreau9903f0e2015-04-04 18:50:31 +020092 struct task *t;
93 int ret;
94
95
96 ret = -1; /* assume unrecoverable error by default */
97
98 if (unlikely((cli_conn = conn_new()) == NULL))
99 goto out_close;
100
101 conn_prepare(cli_conn, l->proto, l->xprt);
102
103 cli_conn->t.sock.fd = cfd;
104 cli_conn->addr.from = *addr;
105 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
106 cli_conn->target = &l->obj_type;
107 cli_conn->proxy_netns = l->netns;
108
109 conn_ctrl_init(cli_conn);
110
111 /* wait for a PROXY protocol header */
112 if (l->options & LI_O_ACC_PROXY) {
113 cli_conn->flags |= CO_FL_ACCEPT_PROXY;
114 conn_sock_want_recv(cli_conn);
115 }
116
117 conn_data_want_recv(cli_conn);
118 if (conn_xprt_init(cli_conn) < 0)
119 goto out_free_conn;
120
Willy Tarreau64beab22015-04-05 00:39:16 +0200121 sess = session_new(p, l, &cli_conn->obj_type);
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200122 if (!sess)
123 goto out_free_conn;
124
125 p->feconn++;
126 /* This session was accepted, count it now */
127 if (p->feconn > p->fe_counters.conn_max)
128 p->fe_counters.conn_max = p->feconn;
129
130 proxy_inc_fe_conn_ctr(l, p);
131
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200132 /* now evaluate the tcp-request layer4 rules. We only need a session
133 * and no stream for these rules.
134 */
135 if ((l->options & LI_O_TCP_RULES) && !tcp_exec_req_rules(sess)) {
136 /* let's do a no-linger now to close with a single RST. */
137 setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
138 ret = 0; /* successful termination */
139 goto out_free_sess;
140 }
141
142 /* monitor-net and health mode are processed immediately after TCP
143 * connection rules. This way it's possible to block them, but they
144 * never use the lower data layers, they send directly over the socket,
145 * as they were designed for. We first flush the socket receive buffer
146 * in order to avoid emission of an RST by the system. We ignore any
147 * error.
148 */
149 if (unlikely((p->mode == PR_MODE_HEALTH) ||
150 ((l->options & LI_O_CHK_MONNET) &&
151 addr->ss_family == AF_INET &&
152 (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) {
153 /* we have 4 possibilities here :
154 * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK"
155 * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK"
156 * - HEALTH mode without HTTP check => just send "OK"
157 * - TCP mode from monitoring address => just close
158 */
159 if (l->proto->drain)
160 l->proto->drain(cfd);
161 if (p->mode == PR_MODE_HTTP ||
162 (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK))
163 send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
164 else if (p->mode == PR_MODE_HEALTH)
165 send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE);
166 ret = 0;
167 goto out_free_sess;
168 }
169
Willy Tarreauf9d1bc62015-04-05 17:56:47 +0200170 /* Adjust some socket options */
171 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) {
172 setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one));
173
174 if (p->options & PR_O_TCP_CLI_KA)
175 setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one));
176
177 if (p->options & PR_O_TCP_NOLING)
178 fdtab[cfd].linger_risk = 1;
179
180#if defined(TCP_MAXSEG)
181 if (l->maxseg < 0) {
182 /* we just want to reduce the current MSS by that value */
183 int mss;
184 socklen_t mss_len = sizeof(mss);
185 if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) {
186 mss += l->maxseg; /* remember, it's < 0 */
187 setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss));
188 }
189 }
190#endif
191 }
192
193 if (global.tune.client_sndbuf)
194 setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf));
195
196 if (global.tune.client_rcvbuf)
197 setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf));
198
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200199 if (unlikely((t = task_new()) == NULL))
200 goto out_free_sess;
201
202 t->context = sess;
203 t->nice = l->nice;
204
205 /* OK, now either we have a pending handshake to execute with and
206 * then we must return to the I/O layer, or we can proceed with the
207 * end of the stream initialization. In case of handshake, we also
208 * set the I/O timeout to the frontend's client timeout.
209 *
210 * At this point we set the relation between sess/task/conn this way :
211 *
212 * orig -- sess <-- context
213 * | |
214 * v |
215 * conn -- owner ---> task
216 */
217 if (cli_conn->flags & CO_FL_HANDSHAKE) {
218 conn_attach(cli_conn, t, &sess_conn_cb);
219 t->process = session_expire_embryonic;
220 t->expire = tick_add_ifset(now_ms, p->timeout.client);
221 task_queue(t);
222 cli_conn->flags |= CO_FL_INIT_DATA | CO_FL_WAKE_DATA;
223 return 1;
224 }
225
Willy Tarreau18b95a42015-04-05 01:04:01 +0200226 /* OK let's complete stream initialization since there is no handshake */
227 cli_conn->flags |= CO_FL_CONNECTED;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200228 strm = stream_new(sess, t);
229 if (!strm)
230 goto out_free_task;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200231
Willy Tarreaud1769b82015-04-06 00:25:48 +0200232 strm->target = sess->listener->default_target;
233 strm->req.analysers = sess->listener->analysers;
234 return 1;
235
236 out_free_task:
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200237 task_free(t);
238 out_free_sess:
239 p->feconn--;
240 session_free(sess);
241 out_free_conn:
242 cli_conn->flags &= ~CO_FL_XPRT_TRACKED;
243 conn_xprt_close(cli_conn);
244 conn_free(cli_conn);
245 out_close:
246 if (ret < 0 && l->xprt == &raw_sock && p->mode == PR_MODE_HTTP) {
247 /* critical error, no more memory, try to emit a 500 response */
248 struct chunk *err_msg = &p->errmsg[HTTP_ERR_500];
249 if (!err_msg->str)
250 err_msg = &http_err_chunks[HTTP_ERR_500];
251 send(cfd, err_msg->str, err_msg->len, MSG_DONTWAIT|MSG_NOSIGNAL);
252 }
253
254 if (fdtab[cfd].owner)
255 fd_delete(cfd);
256 else
257 close(cfd);
258 return ret;
259}
260
261
262/* prepare the trash with a log prefix for session <sess>. It only works with
263 * embryonic sessions based on a real connection. This function requires that
264 * at sess->origin points to the incoming connection.
265 */
266static void session_prepare_log_prefix(struct session *sess)
267{
268 struct tm tm;
269 char pn[INET6_ADDRSTRLEN];
270 int ret;
271 char *end;
272 struct connection *cli_conn = __objt_conn(sess->origin);
273
274 ret = addr_to_str(&cli_conn->addr.from, pn, sizeof(pn));
275 if (ret <= 0)
276 chunk_printf(&trash, "unknown [");
277 else if (ret == AF_UNIX)
278 chunk_printf(&trash, "%s:%d [", pn, sess->listener->luid);
279 else
280 chunk_printf(&trash, "%s:%d [", pn, get_host_port(&cli_conn->addr.from));
281
282 get_localtime(sess->accept_date.tv_sec, &tm);
283 end = date2str_log(trash.str + trash.len, &tm, &(sess->accept_date), trash.size - trash.len);
284 trash.len = end - trash.str;
285 if (sess->listener->name)
286 chunk_appendf(&trash, "] %s/%s", sess->fe->id, sess->listener->name);
287 else
288 chunk_appendf(&trash, "] %s/%d", sess->fe->id, sess->listener->luid);
289}
290
291/* This function kills an existing embryonic session. It stops the connection's
292 * transport layer, releases assigned resources, resumes the listener if it was
293 * disabled and finally kills the file descriptor. This function requires that
294 * sess->origin points to the incoming connection.
295 */
296static void session_kill_embryonic(struct session *sess)
297{
298 int level = LOG_INFO;
299 struct connection *conn = __objt_conn(sess->origin);
300 struct task *task = conn->owner;
301 unsigned int log = sess->fe->to_log;
302 const char *err_msg;
303
304 if (sess->fe->options2 & PR_O2_LOGERRORS)
305 level = LOG_ERR;
306
307 if (log && (sess->fe->options & PR_O_NULLNOLOG)) {
308 /* with "option dontlognull", we don't log connections with no transfer */
309 if (!conn->err_code ||
310 conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT ||
311 conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT)
312 log = 0;
313 }
314
315 if (log) {
316 if (!conn->err_code && (task->state & TASK_WOKEN_TIMER)) {
317 if (conn->flags & CO_FL_ACCEPT_PROXY)
318 conn->err_code = CO_ER_PRX_TIMEOUT;
319 else if (conn->flags & CO_FL_SSL_WAIT_HS)
320 conn->err_code = CO_ER_SSL_TIMEOUT;
321 }
322
323 session_prepare_log_prefix(sess);
324 err_msg = conn_err_code_str(conn);
325 if (err_msg)
326 send_log(sess->fe, level, "%s: %s\n", trash.str, err_msg);
327 else
328 send_log(sess->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n",
329 trash.str, conn->err_code, conn->flags);
330 }
331
332 /* kill the connection now */
333 conn_force_close(conn);
334 conn_free(conn);
335
336 sess->fe->feconn--;
337
338 if (!(sess->listener->options & LI_O_UNLIMITED))
339 actconn--;
340 jobs--;
341 sess->listener->nbconn--;
342 if (sess->listener->state == LI_FULL)
343 resume_listener(sess->listener);
344
345 /* Dequeues all of the listeners waiting for a resource */
346 if (!LIST_ISEMPTY(&global_listener_queue))
347 dequeue_all_listeners(&global_listener_queue);
348
349 if (!LIST_ISEMPTY(&sess->fe->listener_queue) &&
350 (!sess->fe->fe_sps_lim || freq_ctr_remain(&sess->fe->fe_sess_per_sec, sess->fe->fe_sps_lim, 0) > 0))
351 dequeue_all_listeners(&sess->fe->listener_queue);
352
353 task_delete(task);
354 task_free(task);
355 session_free(sess);
356}
357
358/* Manages the embryonic session timeout. It is only called when the timeout
359 * strikes and performs the required cleanup.
360 */
361static struct task *session_expire_embryonic(struct task *t)
362{
363 struct session *sess = t->context;
364
365 if (!(t->state & TASK_WOKEN_TIMER))
366 return t;
367
368 session_kill_embryonic(sess);
369 return NULL;
370}
371
372/* Finish initializing a session from a connection, or kills it if the
373 * connection shows and error. Returns <0 if the connection was killed.
374 */
375static int conn_complete_session(struct connection *conn)
376{
377 struct task *task = conn->owner;
378 struct session *sess = task->context;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200379 struct stream *strm;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200380
Willy Tarreaud1769b82015-04-06 00:25:48 +0200381 if (conn->flags & CO_FL_ERROR)
382 goto fail;
383
384 task->process = sess->listener->handler;
385 strm = stream_new(sess, task);
386 if (!strm)
387 goto fail;
388
389 strm->target = sess->listener->default_target;
390 strm->req.analysers = sess->listener->analysers;
391 conn->flags &= ~CO_FL_INIT_DATA;
392 return 0;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200393
Willy Tarreaud1769b82015-04-06 00:25:48 +0200394 fail:
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200395 session_kill_embryonic(sess);
396 return -1;
397}
398
399/* Update a session status. The connection is killed in case of
400 * error, and <0 will be returned. Otherwise it does nothing.
401 */
402static int conn_update_session(struct connection *conn)
403{
404 struct task *task = conn->owner;
405 struct session *sess = task->context;
406
407 if (conn->flags & CO_FL_ERROR) {
408 session_kill_embryonic(sess);
409 return -1;
410 }
411 return 0;
412}
413
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200414/*
415 * Local variables:
416 * c-indent-level: 8
417 * c-basic-offset: 8
418 * End:
419 */