blob: f1b7451029c678d50f63afa108e99b8cdcd34134 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau5b154472009-12-21 20:11:07 +01002 * include/types/session.h
3 * This file defines everything related to sessions.
4 *
Willy Tarreau4de91492010-01-22 19:10:05 +01005 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
Willy Tarreau5b154472009-12-21 20:11:07 +01006 *
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 Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _TYPES_SESSION_H
23#define _TYPES_SESSION_H
24
25
26#include <sys/time.h>
27#include <unistd.h>
28#include <netinet/in.h>
29#include <arpa/inet.h>
30
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020031#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020032#include <common/mini-clist.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
34#include <types/buffers.h>
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010035#include <types/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <types/proxy.h>
37#include <types/queue.h>
38#include <types/server.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020039#include <types/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <types/task.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010041#include <types/stick_table.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042
43
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010044/* various session flags, bits values 0x01 to 0x100 (shift 0) */
Willy Tarreaubaaee002006-06-26 02:48:02 +020045#define SN_DIRECT 0x00000001 /* connection made on the server matching the client cookie */
Willy Tarreau3d300592007-03-18 18:34:41 +010046#define SN_ASSIGNED 0x00000002 /* no need to assign a server to this session */
47#define SN_ADDR_SET 0x00000004 /* this session's server address has been set */
48#define SN_BE_ASSIGNED 0x00000008 /* a backend was assigned. Conns are accounted. */
Willy Tarreau5b154472009-12-21 20:11:07 +010049
Willy Tarreau4de91492010-01-22 19:10:05 +010050#define SN_FORCE_PRST 0x00000010 /* force persistence here, even if server is down */
Willy Tarreau3d300592007-03-18 18:34:41 +010051#define SN_MONITOR 0x00000020 /* this session comes from a monitoring system */
Willy Tarreau1e62de62008-11-11 20:20:02 +010052#define SN_CURR_SESS 0x00000040 /* a connection is currently being counted on the server */
Willy Tarreau9b061e32012-04-07 18:03:52 +020053/* unused: 0x00000080 */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010054#define SN_REDISP 0x00000100 /* set if this session was redispatched from one server to another */
Willy Tarreau541b5c22008-01-06 23:34:21 +010055#define SN_CONN_TAR 0x00000200 /* set if this session is turning around before reconnecting */
Willy Tarreau21d2af32008-02-14 20:25:24 +010056#define SN_REDIRECTABLE 0x00000400 /* set if this session is redirectable (GET or HEAD) */
Willy Tarreaud0f06fc2009-11-30 12:19:56 +010057#define SN_TUNNEL 0x00000800 /* tunnel-mode session, nothing to catch after data */
Willy Tarreaubaaee002006-06-26 02:48:02 +020058
Willy Tarreaua2a64e92011-09-07 23:01:56 +020059/* session termination conditions, bits values 0x1000 to 0x7000 (0-9 shift 12) */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010060#define SN_ERR_NONE 0x00000000
61#define SN_ERR_CLITO 0x00001000 /* client time-out */
62#define SN_ERR_CLICL 0x00002000 /* client closed (read/write error) */
63#define SN_ERR_SRVTO 0x00003000 /* server time-out, connect time-out */
64#define SN_ERR_SRVCL 0x00004000 /* server closed (connect/read/write error) */
65#define SN_ERR_PRXCOND 0x00005000 /* the proxy decided to close (deny...) */
66#define SN_ERR_RESOURCE 0x00006000 /* the proxy encountered a lack of a local resources (fd, mem, ...) */
67#define SN_ERR_INTERNAL 0x00007000 /* the proxy encountered an internal error */
Simon Horman752dc4a2011-06-21 14:34:59 +090068#define SN_ERR_DOWN 0x00008000 /* the proxy killed a session because the backend became unavailable */
Willy Tarreaua2a64e92011-09-07 23:01:56 +020069#define SN_ERR_KILLED 0x00009000 /* the proxy killed a session because it was asked to do so */
Simon Horman752dc4a2011-06-21 14:34:59 +090070#define SN_ERR_MASK 0x0000f000 /* mask to get only session error flags */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010071#define SN_ERR_SHIFT 12 /* bit shift */
Willy Tarreaubaaee002006-06-26 02:48:02 +020072
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010073/* session state at termination, bits values 0x10000 to 0x70000 (0-7 shift 16) */
74#define SN_FINST_R 0x00010000 /* session ended during client request */
75#define SN_FINST_C 0x00020000 /* session ended during server connect */
76#define SN_FINST_H 0x00030000 /* session ended during server headers */
77#define SN_FINST_D 0x00040000 /* session ended during data phase */
78#define SN_FINST_L 0x00050000 /* session ended while pushing last data to client */
79#define SN_FINST_Q 0x00060000 /* session ended while waiting in queue for a server slot */
80#define SN_FINST_T 0x00070000 /* session ended tarpitted */
81#define SN_FINST_MASK 0x00070000 /* mask to get only final session state flags */
82#define SN_FINST_SHIFT 16 /* bit shift */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010083
Simon Horman752dc4a2011-06-21 14:34:59 +090084#define SN_IGNORE_PRST 0x00080000 /* ignore persistence */
85#define SN_BE_TRACK_SC1 0x00100000 /* backend tracks stick-counter 1 */
86#define SN_BE_TRACK_SC2 0x00200000 /* backend tracks stick-counter 2 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +020087
Willy Tarreauf8533202008-08-16 14:55:08 +020088/* Termination sequence tracing.
89 *
90 * These values have to be set into the field term_trace of a session when
91 * closing a session (half or full). They are only meant for post-mortem
92 * analysis. The value must be assigned this way :
93 * trace_term(s, TT_XXX);
94 *
95 * One TT_XXX value is assigned to each location in the code which may be
96 * involved in a connection closing. Since a full session close generally
97 * involves 4 steps, we will be able to read these steps afterwards by simply
98 * checking the code. Value TT_NONE is zero and must never be set, as it means
99 * the connection was not closed. Value TT_ANON must be used when no value was
100 * assigned to a specific code part. Never ever reuse an already assigned code
101 * as it will defeat the purpose of this trace. It is wise to use a per-file
102 * anonymous value though.
103 */
104#define TT_BIT_SHIFT 8
105enum {
106 TT_NONE = 0,
107 TT_ANON = 1,
108 TT_CLIENT = 0x10,
109 TT_CLIENT_1,
110 TT_CLIENT_2,
111 TT_HTTP_CLI = 0x20,
112 TT_HTTP_CLI_1,
113 TT_HTTP_CLI_2,
114 TT_HTTP_CLI_3,
115 TT_HTTP_CLI_4,
116 TT_HTTP_CLI_5,
117 TT_HTTP_CLI_6,
118 TT_HTTP_CLI_7,
119 TT_HTTP_CLI_8,
120 TT_HTTP_CLI_9,
121 TT_HTTP_CLI_10,
122 TT_HTTP_SRV = 0x30,
123 TT_HTTP_SRV_1,
124 TT_HTTP_SRV_2,
125 TT_HTTP_SRV_3,
126 TT_HTTP_SRV_4,
127 TT_HTTP_SRV_5,
128 TT_HTTP_SRV_6,
129 TT_HTTP_SRV_7,
130 TT_HTTP_SRV_8,
131 TT_HTTP_SRV_9,
132 TT_HTTP_SRV_10,
133 TT_HTTP_SRV_11,
134 TT_HTTP_SRV_12,
135 TT_HTTP_SRV_13,
136 TT_HTTP_SRV_14,
137 TT_HTTP_CNT = 0x40,
138 TT_HTTP_CNT_1,
139 TT_HTTP_URI = 0x50,
140 TT_HTTP_URI_1,
141};
142
143
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200144/* WARNING: if new fields are added, they must be initialized in event_accept()
145 * and freed in session_free() !
146 */
147
Willy Tarreau7c669d72008-06-20 15:04:11 +0200148/*
149 * Note: some session flags have dependencies :
150 * - SN_DIRECT cannot exist without SN_ASSIGNED, because a server is
151 * immediately assigned when SN_DIRECT is determined. Both must be cleared
152 * when clearing SN_DIRECT (eg: redispatch).
153 * - ->srv has no meaning without SN_ASSIGNED and must not be checked without
Willy Tarreau3d80d912011-03-10 11:42:13 +0100154 * it. ->target and ->target_type may be used to check previous ->srv after
155 * a failed connection attempt.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200156 * - a session being processed has srv_conn set.
157 * - srv_conn might remain after SN_DIRECT has been reset, but the assigned
158 * server should eventually be released.
159 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160struct session {
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100161 struct list list; /* position in global sessions list */
Simon Hormanaf514952011-06-21 14:34:57 +0900162 struct list by_srv; /* position in server session list */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100163 struct list back_refs; /* list of users tracking this session */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200164 struct task *task; /* the task associated with this session */
165 /* application specific below */
Willy Tarreaub5654f62008-12-07 16:45:10 +0100166 struct listener *listener; /* the listener by which the request arrived */
Willy Tarreau73de9892006-11-30 11:40:23 +0100167 struct proxy *fe; /* the proxy this session depends on for the client side */
Willy Tarreau73de9892006-11-30 11:40:23 +0100168 struct proxy *be; /* the proxy this session depends on for the server side */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169 int flags; /* some flags describing the session */
Willy Tarreauf8533202008-08-16 14:55:08 +0200170 unsigned term_trace; /* term trace: 4*8 bits indicating which part of the code closed */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200171 struct buffer *req; /* request buffer */
172 struct buffer *rep; /* response buffer */
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200173 struct stream_interface si[2]; /* client and server stream interfaces */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200174 struct server *srv_conn; /* session already has a slot on a server and is not in queue */
Willy Tarreau664beb82011-03-10 11:38:29 +0100175 struct target target; /* target to use for this session */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176 struct pendconn *pend_pos; /* if not NULL, points to the position in the pending queue */
Willy Tarreaub326fcc2007-03-03 13:54:32 +0100177 struct http_txn txn; /* current HTTP transaction being processed. Should become a list. */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100178
179 struct {
180 struct stksess *ts;
181 struct stktable *table;
182 int flags;
183 } store[8]; /* tracked stickiness values to store */
184 int store_count;
Willy Tarreau56123282010-08-06 19:06:56 +0200185
186 struct stksess *stkctr1_entry; /* entry containing counters currently being tracked as set 1 by this session */
187 struct stktable *stkctr1_table; /* table the counters above belong to (undefined if counters are null) */
188 struct stksess *stkctr2_entry; /* entry containing counters currently being tracked as set 2 by this session */
189 struct stktable *stkctr2_table; /* table the counters above belong to (undefined if counters are null) */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100190
Willy Tarreaubaaee002006-06-26 02:48:02 +0200191 struct {
192 int logwait; /* log fields waiting to be collected : LW_* */
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200193 struct timeval accept_date; /* date of the accept() in user date */
194 struct timeval tv_accept; /* date of the accept() in internal date (monotonic) */
Willy Tarreau70089872008-06-13 21:12:51 +0200195 struct timeval tv_request; /* date the request arrives, {0,0} if never occurs */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200196 long t_queue; /* delay before the session gets out of the connect queue, -1 if never occurs */
197 long t_connect; /* delay before the connect() to the server succeeds, -1 if never occurs */
198 long t_data; /* delay before the first data byte from the server ... */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100199 unsigned long t_close; /* total session duration */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200200 unsigned long srv_queue_size; /* number of sessions waiting for a connect slot on this server at accept() time (in direct assignment) */
201 unsigned long prx_queue_size; /* overall number of sessions waiting for a connect slot on this instance at accept() time */
Willy Tarreau35d66b02007-01-02 00:28:21 +0100202 long long bytes_in; /* number of bytes transferred from the client to the server */
203 long long bytes_out; /* number of bytes transferred from the server to the client */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204 } logs;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100205 void (*do_log)(struct session *s); /* the function to call in order to log (or NULL) */
206 void (*srv_error)(struct session *s, /* the function to call upon unrecoverable server errors (or NULL) */
207 struct stream_interface *si);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200208 unsigned int uniq_id; /* unique ID used for the traces */
William Lallemanda73203e2012-03-12 12:48:57 +0100209 char *unique_id; /* custom unique ID */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200210};
211
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200212/* parameters to configure tracked counters */
213struct track_ctr_prm {
214 int type; /* type of the key */
215 union {
216 struct stktable *t; /* a pointer to the table */
217 char *n; /* or its name during parsing. */
218 } table;
219};
220
Willy Tarreaubaaee002006-06-26 02:48:02 +0200221
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222#endif /* _TYPES_SESSION_H */
223
224/*
225 * Local variables:
226 * c-indent-level: 8
227 * c-basic-offset: 8
228 * End:
229 */