blob: fc83989f2dcb427b7f23333a34726fb5cbc68432 [file] [log] [blame]
Willy TARREAU3dc06442006-06-15 21:48:13 +02001/*
Willy Tarreau81f9aa32010-06-01 17:45:26 +02002 * include/proto/session.h
3 * This file defines everything related to sessions.
4 *
5 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy TARREAU3dc06442006-06-15 21:48:13 +020021
Willy Tarreaubaaee002006-06-26 02:48:02 +020022#ifndef _PROTO_SESSION_H
23#define _PROTO_SESSION_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020026#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027#include <types/session.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020028#include <proto/freq_ctr.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020029#include <proto/stick_table.h>
Willy TARREAU3dc06442006-06-15 21:48:13 +020030
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020031extern struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010032extern struct list sessions;
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020033
Willy Tarreaubc174aa2012-11-19 16:10:32 +010034extern struct data_cb sess_conn_cb;
35
Willy Tarreau81f9aa32010-06-01 17:45:26 +020036int session_accept(struct listener *l, int cfd, struct sockaddr_storage *addr);
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020038/* perform minimal intializations, report 0 in case of error, 1 if OK. */
39int init_session();
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
Willy Tarreaua2a64e92011-09-07 23:01:56 +020041/* kill a session and set the termination flags to <why> (one of SN_ERR_*) */
42void session_shutdown(struct session *session, int why);
Simon Hormandec5be42011-06-08 09:19:07 +090043
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +010044void session_process_counters(struct session *s);
Willy Tarreau7c669d72008-06-20 15:04:11 +020045void sess_change_server(struct session *sess, struct server *newsrv);
Willy Tarreau26c25062009-03-08 09:38:41 +010046struct task *process_session(struct task *t);
Willy Tarreau84455332009-03-15 22:34:05 +010047void default_srv_error(struct session *s, struct stream_interface *si);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020048int parse_track_counters(char **args, int *arg,
49 int section_type, struct proxy *curpx,
50 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +020051 struct proxy *defpx, char **err);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020052
Willy Tarreau787add22013-11-23 23:37:04 +010053/* returns the session from a void *owner */
54static inline struct session *session_from_task(struct task *t)
55{
56 return (struct session *)t->context;
57}
58
Willy Tarreaucc08d2c2014-01-28 23:18:23 +010059/* sets the stick counter's entry pointer */
60static inline void stkctr_set_entry(struct stkctr *stkctr, struct stksess *entry)
61{
62 stkctr->entry = caddr_from_ptr(entry, 0);
63}
64
65/* returns the entry pointer from a stick counter */
66static inline struct stksess *stkctr_entry(struct stkctr *stkctr)
67{
68 return caddr_to_ptr(stkctr->entry);
69}
70
71/* returns the two flags from a stick counter */
72static inline unsigned int stkctr_flags(struct stkctr *stkctr)
73{
74 return caddr_to_data(stkctr->entry);
75}
76
77/* sets up to two flags at a time on a composite address */
78static inline void stkctr_set_flags(struct stkctr *stkctr, unsigned int flags)
79{
80 stkctr->entry = caddr_set_flags(stkctr->entry, flags);
81}
82
83/* returns the two flags from a stick counter */
84static inline void stkctr_clr_flags(struct stkctr *stkctr, unsigned int flags)
85{
86 stkctr->entry = caddr_clr_flags(stkctr->entry, flags);
87}
88
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020089/* Remove the refcount from the session to the tracked counters, and clear the
90 * pointer to ensure this is only performed once. The caller is responsible for
91 * ensuring that the pointer is valid first.
92 */
93static inline void session_store_counters(struct session *s)
94{
Willy Tarreauf059a0f2010-08-03 16:29:52 +020095 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +010096 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +020097
Willy Tarreaub4c84932013-07-23 19:15:30 +020098 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreaucc08d2c2014-01-28 23:18:23 +010099 if (!stkctr_entry(&s->stkctr[i]))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100100 continue;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100101 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_CONN_CUR);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200102 if (ptr)
103 stktable_data_cast(ptr, conn_cur)--;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100104 stkctr_entry(&s->stkctr[i])->ref_cnt--;
105 stksess_kill_if_expired(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]));
106 stkctr_set_entry(&s->stkctr[i], NULL);
Willy Tarreau38285c12010-06-18 16:35:43 +0200107 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200108}
109
Willy Tarreauf3338342014-01-28 21:40:28 +0100110/* Remove the refcount from the session counters tracked at the content level if
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200111 * any, and clear the pointer to ensure this is only performed once. The caller
112 * is responsible for ensuring that the pointer is valid first.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200113 */
Willy Tarreauf3338342014-01-28 21:40:28 +0100114static inline void session_stop_content_counters(struct session *s)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200115{
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200116 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100117 int i;
Willy Tarreaue3487932010-06-18 21:03:20 +0200118
Willy Tarreaub4c84932013-07-23 19:15:30 +0200119 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100120 if (!stkctr_entry(&s->stkctr[i]))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100121 continue;
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200122
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100123 if (!(stkctr_flags(&s->stkctr[i]) & STKCTR_TRACK_CONTENT))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100124 continue;
125
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100126 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_CONN_CUR);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200127 if (ptr)
128 stktable_data_cast(ptr, conn_cur)--;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100129 stkctr_entry(&s->stkctr[i])->ref_cnt--;
130 stksess_kill_if_expired(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]));
131 stkctr_set_entry(&s->stkctr[i], NULL);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200132 }
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200133}
Willy Tarreaue3487932010-06-18 21:03:20 +0200134
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200135/* Increase total and concurrent connection count for stick entry <ts> of table
136 * <t>. The caller is responsible for ensuring that <t> and <ts> are valid
137 * pointers, and for calling this only once per connection.
138 */
139static inline void session_start_counters(struct stktable *t, struct stksess *ts)
140{
141 void *ptr;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200142
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200143 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_CUR);
144 if (ptr)
145 stktable_data_cast(ptr, conn_cur)++;
146
147 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_CNT);
148 if (ptr)
149 stktable_data_cast(ptr, conn_cnt)++;
150
151 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_RATE);
152 if (ptr)
153 update_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
154 t->data_arg[STKTABLE_DT_CONN_RATE].u, 1);
155 if (tick_isset(t->expire))
156 ts->expire = tick_add(now_ms, MS_TO_TICKS(t->expire));
157}
158
Willy Tarreau20d46a52012-12-09 15:55:40 +0100159/* Enable tracking of session counters as <stkctr> on stksess <ts>. The caller is
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200160 * responsible for ensuring that <t> and <ts> are valid pointers. Some controls
161 * are performed to ensure the state can still change.
162 */
Willy Tarreau20d46a52012-12-09 15:55:40 +0100163static inline void session_track_stkctr(struct stkctr *ctr, struct stktable *t, struct stksess *ts)
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200164{
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100165 if (stkctr_entry(ctr))
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200166 return;
167
168 ts->ref_cnt++;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100169 ctr->table = t;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100170 stkctr_set_entry(ctr, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200171 session_start_counters(t, ts);
172}
173
Willy Tarreauda7ff642010-06-23 11:44:09 +0200174/* Increase the number of cumulated HTTP requests in the tracked counters */
175static void inline session_inc_http_req_ctr(struct session *s)
176{
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200177 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100178 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200179
Willy Tarreaub4c84932013-07-23 19:15:30 +0200180 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100181 if (!stkctr_entry(&s->stkctr[i]))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100182 continue;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200183
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100184 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200185 if (ptr)
186 stktable_data_cast(ptr, http_req_cnt)++;
187
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100188 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200189 if (ptr)
190 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreau20d46a52012-12-09 15:55:40 +0100191 s->stkctr[i].table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200192 }
193}
194
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100195/* Increase the number of cumulated HTTP requests in the backend's tracked counters */
196static void inline session_inc_be_http_req_ctr(struct session *s)
197{
198 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100199 int i;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100200
Willy Tarreaub4c84932013-07-23 19:15:30 +0200201 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100202 if (!stkctr_entry(&s->stkctr[i]))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100203 continue;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100204
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100205 if (!(stkctr_flags(&s->stkctr[i]) & STKCTR_TRACK_BACKEND))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100206 continue;
207
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100208 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100209 if (ptr)
210 stktable_data_cast(ptr, http_req_cnt)++;
211
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100212 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100213 if (ptr)
214 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreau20d46a52012-12-09 15:55:40 +0100215 s->stkctr[i].table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100216 }
217}
218
Willy Tarreauda7ff642010-06-23 11:44:09 +0200219/* Increase the number of cumulated failed HTTP requests in the tracked
220 * counters. Only 4xx requests should be counted here so that we can
221 * distinguish between errors caused by client behaviour and other ones.
222 * Note that even 404 are interesting because they're generally caused by
223 * vulnerability scans.
224 */
225static void inline session_inc_http_err_ctr(struct session *s)
226{
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200227 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100228 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200229
Willy Tarreaub4c84932013-07-23 19:15:30 +0200230 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100231 if (!stkctr_entry(&s->stkctr[i]))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100232 continue;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200233
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100234 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_HTTP_ERR_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200235 if (ptr)
236 stktable_data_cast(ptr, http_err_cnt)++;
237
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100238 ptr = stktable_data_ptr(s->stkctr[i].table, stkctr_entry(&s->stkctr[i]), STKTABLE_DT_HTTP_ERR_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200239 if (ptr)
240 update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreau20d46a52012-12-09 15:55:40 +0100241 s->stkctr[i].table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200242 }
243}
244
Simon Hormanaf514952011-06-21 14:34:57 +0900245static void inline session_add_srv_conn(struct session *sess, struct server *srv)
246{
247 sess->srv_conn = srv;
248 LIST_ADD(&srv->actconns, &sess->by_srv);
249}
250
251static void inline session_del_srv_conn(struct session *sess)
252{
253 if (!sess->srv_conn)
254 return;
255
256 sess->srv_conn = NULL;
257 LIST_DEL(&sess->by_srv);
258}
259
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200260static void inline session_init_srv_conn(struct session *sess)
261{
262 sess->srv_conn = NULL;
263 LIST_INIT(&sess->by_srv);
264}
265
Willy Tarreaubaaee002006-06-26 02:48:02 +0200266#endif /* _PROTO_SESSION_H */
Willy TARREAU3dc06442006-06-15 21:48:13 +0200267
Willy Tarreaubaaee002006-06-26 02:48:02 +0200268/*
269 * Local variables:
270 * c-indent-level: 8
271 * c-basic-offset: 8
272 * End:
273 */