blob: aaf4161582f95304c125d3952cd7b3763d871f9e [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 Tarreau9ba2dcc2010-06-14 21:04:55 +020059/* Remove the refcount from the session to the tracked counters, and clear the
60 * pointer to ensure this is only performed once. The caller is responsible for
61 * ensuring that the pointer is valid first.
62 */
63static inline void session_store_counters(struct session *s)
64{
Willy Tarreauf059a0f2010-08-03 16:29:52 +020065 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +010066 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +020067
Willy Tarreaub4c84932013-07-23 19:15:30 +020068 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau20d46a52012-12-09 15:55:40 +010069 if (!s->stkctr[i].entry)
70 continue;
71 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_CONN_CUR);
Willy Tarreauf059a0f2010-08-03 16:29:52 +020072 if (ptr)
73 stktable_data_cast(ptr, conn_cur)--;
Willy Tarreau20d46a52012-12-09 15:55:40 +010074 s->stkctr[i].entry->ref_cnt--;
75 stksess_kill_if_expired(s->stkctr[i].table, s->stkctr[i].entry);
76 s->stkctr[i].entry = NULL;
Willy Tarreau38285c12010-06-18 16:35:43 +020077 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020078}
79
Willy Tarreauf059a0f2010-08-03 16:29:52 +020080/* Remove the refcount from the session counters tracked only by the backend if
81 * any, and clear the pointer to ensure this is only performed once. The caller
82 * is responsible for ensuring that the pointer is valid first.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020083 */
Willy Tarreauf059a0f2010-08-03 16:29:52 +020084static inline void session_stop_backend_counters(struct session *s)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020085{
Willy Tarreauf059a0f2010-08-03 16:29:52 +020086 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +010087 int i;
Willy Tarreaue3487932010-06-18 21:03:20 +020088
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +020089 if (likely(!(s->flags & SN_BE_TRACK_ANY)))
Willy Tarreauf059a0f2010-08-03 16:29:52 +020090 return;
Willy Tarreaue3487932010-06-18 21:03:20 +020091
Willy Tarreaub4c84932013-07-23 19:15:30 +020092 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau20d46a52012-12-09 15:55:40 +010093 if (!s->stkctr[i].entry)
94 continue;
Willy Tarreau0a4838c2010-08-06 20:11:05 +020095
Willy Tarreaube4a3ef2013-06-17 15:04:07 +020096 if (!(s->flags & (SN_BE_TRACK_SC0 << i)))
Willy Tarreau20d46a52012-12-09 15:55:40 +010097 continue;
98
Willy Tarreau20d46a52012-12-09 15:55:40 +010099 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_CONN_CUR);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200100 if (ptr)
101 stktable_data_cast(ptr, conn_cur)--;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100102 s->stkctr[i].entry->ref_cnt--;
103 stksess_kill_if_expired(s->stkctr[i].table, s->stkctr[i].entry);
104 s->stkctr[i].entry = NULL;
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200105 }
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +0200106 s->flags &= ~SN_BE_TRACK_ANY;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200107}
Willy Tarreaue3487932010-06-18 21:03:20 +0200108
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200109/* Increase total and concurrent connection count for stick entry <ts> of table
110 * <t>. The caller is responsible for ensuring that <t> and <ts> are valid
111 * pointers, and for calling this only once per connection.
112 */
113static inline void session_start_counters(struct stktable *t, struct stksess *ts)
114{
115 void *ptr;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200116
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200117 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_CUR);
118 if (ptr)
119 stktable_data_cast(ptr, conn_cur)++;
120
121 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_CNT);
122 if (ptr)
123 stktable_data_cast(ptr, conn_cnt)++;
124
125 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_RATE);
126 if (ptr)
127 update_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
128 t->data_arg[STKTABLE_DT_CONN_RATE].u, 1);
129 if (tick_isset(t->expire))
130 ts->expire = tick_add(now_ms, MS_TO_TICKS(t->expire));
131}
132
Willy Tarreau20d46a52012-12-09 15:55:40 +0100133/* Enable tracking of session counters as <stkctr> on stksess <ts>. The caller is
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200134 * responsible for ensuring that <t> and <ts> are valid pointers. Some controls
135 * are performed to ensure the state can still change.
136 */
Willy Tarreau20d46a52012-12-09 15:55:40 +0100137static inline void session_track_stkctr(struct stkctr *ctr, struct stktable *t, struct stksess *ts)
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200138{
Willy Tarreau20d46a52012-12-09 15:55:40 +0100139 if (ctr->entry)
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200140 return;
141
142 ts->ref_cnt++;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100143 ctr->table = t;
144 ctr->entry = ts;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200145 session_start_counters(t, ts);
146}
147
Willy Tarreauda7ff642010-06-23 11:44:09 +0200148/* Increase the number of cumulated HTTP requests in the tracked counters */
149static void inline session_inc_http_req_ctr(struct session *s)
150{
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200151 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100152 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200153
Willy Tarreaub4c84932013-07-23 19:15:30 +0200154 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau20d46a52012-12-09 15:55:40 +0100155 if (!s->stkctr[i].entry)
156 continue;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200157
Willy Tarreau20d46a52012-12-09 15:55:40 +0100158 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200159 if (ptr)
160 stktable_data_cast(ptr, http_req_cnt)++;
161
Willy Tarreau20d46a52012-12-09 15:55:40 +0100162 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200163 if (ptr)
164 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreau20d46a52012-12-09 15:55:40 +0100165 s->stkctr[i].table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200166 }
167}
168
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100169/* Increase the number of cumulated HTTP requests in the backend's tracked counters */
170static void inline session_inc_be_http_req_ctr(struct session *s)
171{
172 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100173 int i;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100174
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +0200175 if (likely(!(s->flags & SN_BE_TRACK_ANY)))
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100176 return;
177
Willy Tarreaub4c84932013-07-23 19:15:30 +0200178 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau20d46a52012-12-09 15:55:40 +0100179 if (!s->stkctr[i].entry)
180 continue;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100181
Willy Tarreaube4a3ef2013-06-17 15:04:07 +0200182 if (!(s->flags & (SN_BE_TRACK_SC0 << i)))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100183 continue;
184
185 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100186 if (ptr)
187 stktable_data_cast(ptr, http_req_cnt)++;
188
Willy Tarreau20d46a52012-12-09 15:55:40 +0100189 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100190 if (ptr)
191 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreau20d46a52012-12-09 15:55:40 +0100192 s->stkctr[i].table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100193 }
194}
195
Willy Tarreauda7ff642010-06-23 11:44:09 +0200196/* Increase the number of cumulated failed HTTP requests in the tracked
197 * counters. Only 4xx requests should be counted here so that we can
198 * distinguish between errors caused by client behaviour and other ones.
199 * Note that even 404 are interesting because they're generally caused by
200 * vulnerability scans.
201 */
202static void inline session_inc_http_err_ctr(struct session *s)
203{
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200204 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100205 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200206
Willy Tarreaub4c84932013-07-23 19:15:30 +0200207 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau20d46a52012-12-09 15:55:40 +0100208 if (!s->stkctr[i].entry)
209 continue;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200210
Willy Tarreau20d46a52012-12-09 15:55:40 +0100211 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_HTTP_ERR_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200212 if (ptr)
213 stktable_data_cast(ptr, http_err_cnt)++;
214
Willy Tarreau20d46a52012-12-09 15:55:40 +0100215 ptr = stktable_data_ptr(s->stkctr[i].table, s->stkctr[i].entry, STKTABLE_DT_HTTP_ERR_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200216 if (ptr)
217 update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreau20d46a52012-12-09 15:55:40 +0100218 s->stkctr[i].table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200219 }
220}
221
Simon Hormanaf514952011-06-21 14:34:57 +0900222static void inline session_add_srv_conn(struct session *sess, struct server *srv)
223{
224 sess->srv_conn = srv;
225 LIST_ADD(&srv->actconns, &sess->by_srv);
226}
227
228static void inline session_del_srv_conn(struct session *sess)
229{
230 if (!sess->srv_conn)
231 return;
232
233 sess->srv_conn = NULL;
234 LIST_DEL(&sess->by_srv);
235}
236
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200237static void inline session_init_srv_conn(struct session *sess)
238{
239 sess->srv_conn = NULL;
240 LIST_INIT(&sess->by_srv);
241}
242
Willy Tarreaubaaee002006-06-26 02:48:02 +0200243#endif /* _PROTO_SESSION_H */
Willy TARREAU3dc06442006-06-15 21:48:13 +0200244
Willy Tarreaubaaee002006-06-26 02:48:02 +0200245/*
246 * Local variables:
247 * c-indent-level: 8
248 * c-basic-offset: 8
249 * End:
250 */