blob: e0d3c2274f606f1aeea174507dd8e0c0c18f5b8a [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
Willy Tarreauc7e42382012-08-24 19:22:53 +020034#include <types/channel.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020035#include <types/compression.h>
William Lallemand08289f12012-10-31 11:19:18 +010036
Willy Tarreau3fdb3662012-11-12 00:42:33 +010037#include <types/obj_type.h>
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010038#include <types/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <types/proxy.h>
40#include <types/queue.h>
41#include <types/server.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020042#include <types/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <types/task.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010044#include <types/stick_table.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045
46
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010047/* various session flags, bits values 0x01 to 0x100 (shift 0) */
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#define SN_DIRECT 0x00000001 /* connection made on the server matching the client cookie */
Willy Tarreau3d300592007-03-18 18:34:41 +010049#define SN_ASSIGNED 0x00000002 /* no need to assign a server to this session */
50#define SN_ADDR_SET 0x00000004 /* this session's server address has been set */
51#define SN_BE_ASSIGNED 0x00000008 /* a backend was assigned. Conns are accounted. */
Willy Tarreau5b154472009-12-21 20:11:07 +010052
Willy Tarreau4de91492010-01-22 19:10:05 +010053#define SN_FORCE_PRST 0x00000010 /* force persistence here, even if server is down */
Willy Tarreau3d300592007-03-18 18:34:41 +010054#define SN_MONITOR 0x00000020 /* this session comes from a monitoring system */
Willy Tarreau1e62de62008-11-11 20:20:02 +010055#define SN_CURR_SESS 0x00000040 /* a connection is currently being counted on the server */
Willy Tarreau2542b532012-08-31 16:01:23 +020056#define SN_INITIALIZED 0x00000080 /* the session was fully initialized */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010057#define SN_REDISP 0x00000100 /* set if this session was redispatched from one server to another */
Willy Tarreau541b5c22008-01-06 23:34:21 +010058#define SN_CONN_TAR 0x00000200 /* set if this session is turning around before reconnecting */
Willy Tarreau21d2af32008-02-14 20:25:24 +010059#define SN_REDIRECTABLE 0x00000400 /* set if this session is redirectable (GET or HEAD) */
Willy Tarreaud0f06fc2009-11-30 12:19:56 +010060#define SN_TUNNEL 0x00000800 /* tunnel-mode session, nothing to catch after data */
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreaua2a64e92011-09-07 23:01:56 +020062/* session termination conditions, bits values 0x1000 to 0x7000 (0-9 shift 12) */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010063#define SN_ERR_NONE 0x00000000
64#define SN_ERR_CLITO 0x00001000 /* client time-out */
65#define SN_ERR_CLICL 0x00002000 /* client closed (read/write error) */
66#define SN_ERR_SRVTO 0x00003000 /* server time-out, connect time-out */
67#define SN_ERR_SRVCL 0x00004000 /* server closed (connect/read/write error) */
68#define SN_ERR_PRXCOND 0x00005000 /* the proxy decided to close (deny...) */
69#define SN_ERR_RESOURCE 0x00006000 /* the proxy encountered a lack of a local resources (fd, mem, ...) */
70#define SN_ERR_INTERNAL 0x00007000 /* the proxy encountered an internal error */
Simon Horman752dc4a2011-06-21 14:34:59 +090071#define SN_ERR_DOWN 0x00008000 /* the proxy killed a session because the backend became unavailable */
Willy Tarreaua2a64e92011-09-07 23:01:56 +020072#define SN_ERR_KILLED 0x00009000 /* the proxy killed a session because it was asked to do so */
Justin Karnegeseb2c24a2012-05-24 15:28:52 -070073#define SN_ERR_UP 0x0000a000 /* the proxy killed a session because a preferred backend became available */
Simon Horman752dc4a2011-06-21 14:34:59 +090074#define SN_ERR_MASK 0x0000f000 /* mask to get only session error flags */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010075#define SN_ERR_SHIFT 12 /* bit shift */
Willy Tarreaubaaee002006-06-26 02:48:02 +020076
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010077/* session state at termination, bits values 0x10000 to 0x70000 (0-7 shift 16) */
78#define SN_FINST_R 0x00010000 /* session ended during client request */
79#define SN_FINST_C 0x00020000 /* session ended during server connect */
80#define SN_FINST_H 0x00030000 /* session ended during server headers */
81#define SN_FINST_D 0x00040000 /* session ended during data phase */
82#define SN_FINST_L 0x00050000 /* session ended while pushing last data to client */
83#define SN_FINST_Q 0x00060000 /* session ended while waiting in queue for a server slot */
84#define SN_FINST_T 0x00070000 /* session ended tarpitted */
85#define SN_FINST_MASK 0x00070000 /* mask to get only final session state flags */
86#define SN_FINST_SHIFT 16 /* bit shift */
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +010087
Simon Horman752dc4a2011-06-21 14:34:59 +090088#define SN_IGNORE_PRST 0x00080000 /* ignore persistence */
89#define SN_BE_TRACK_SC1 0x00100000 /* backend tracks stick-counter 1 */
90#define SN_BE_TRACK_SC2 0x00200000 /* backend tracks stick-counter 2 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +020091
William Lallemandec3e3892012-11-12 17:02:18 +010092#define SN_COMP_READY 0x00400000 /* the compression is initialized */
93
Willy Tarreauf8533202008-08-16 14:55:08 +020094
Willy Tarreau0a4838c2010-08-06 20:11:05 +020095/* WARNING: if new fields are added, they must be initialized in event_accept()
96 * and freed in session_free() !
97 */
98
Willy Tarreau7c669d72008-06-20 15:04:11 +020099/*
100 * Note: some session flags have dependencies :
101 * - SN_DIRECT cannot exist without SN_ASSIGNED, because a server is
102 * immediately assigned when SN_DIRECT is determined. Both must be cleared
103 * when clearing SN_DIRECT (eg: redispatch).
104 * - ->srv has no meaning without SN_ASSIGNED and must not be checked without
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100105 * it. ->target may be used to check previous ->srv after a failed connection attempt.
Willy Tarreau7c669d72008-06-20 15:04:11 +0200106 * - a session being processed has srv_conn set.
107 * - srv_conn might remain after SN_DIRECT has been reset, but the assigned
108 * server should eventually be released.
109 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110struct session {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111 int flags; /* some flags describing the session */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100112 enum obj_type *target; /* target to use for this session */
Willy Tarreau109e95a2012-10-13 11:22:24 +0200113
Willy Tarreau7421efb2012-07-02 15:11:27 +0200114 struct channel *req; /* request buffer */
115 struct channel *rep; /* response buffer */
Willy Tarreau109e95a2012-10-13 11:22:24 +0200116
117 struct proxy *fe; /* the proxy this session depends on for the client side */
118 struct proxy *be; /* the proxy this session depends on for the server side */
119
120 struct listener *listener; /* the listener by which the request arrived */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200121 struct server *srv_conn; /* session already has a slot on a server and is not in queue */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122 struct pendconn *pend_pos; /* if not NULL, points to the position in the pending queue */
Willy Tarreau109e95a2012-10-13 11:22:24 +0200123
Willy Tarreaub326fcc2007-03-03 13:54:32 +0100124 struct http_txn txn; /* current HTTP transaction being processed. Should become a list. */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100125
Willy Tarreau109e95a2012-10-13 11:22:24 +0200126 struct task *task; /* the task associated with this session */
127 struct list list; /* position in global sessions list */
128 struct list by_srv; /* position in server session list */
129 struct list back_refs; /* list of users tracking this session */
130
Emeric Brunb982a3d2010-01-04 15:45:53 +0100131 struct {
132 struct stksess *ts;
133 struct stktable *table;
134 int flags;
135 } store[8]; /* tracked stickiness values to store */
136 int store_count;
Willy Tarreau56123282010-08-06 19:06:56 +0200137
138 struct stksess *stkctr1_entry; /* entry containing counters currently being tracked as set 1 by this session */
139 struct stktable *stkctr1_table; /* table the counters above belong to (undefined if counters are null) */
140 struct stksess *stkctr2_entry; /* entry containing counters currently being tracked as set 2 by this session */
141 struct stktable *stkctr2_table; /* table the counters above belong to (undefined if counters are null) */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100142
Willy Tarreau109e95a2012-10-13 11:22:24 +0200143 struct stream_interface si[2]; /* client and server stream interfaces */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144 struct {
145 int logwait; /* log fields waiting to be collected : LW_* */
Willy Tarreaub7f694f2008-06-22 17:18:02 +0200146 struct timeval accept_date; /* date of the accept() in user date */
147 struct timeval tv_accept; /* date of the accept() in internal date (monotonic) */
Willy Tarreau70089872008-06-13 21:12:51 +0200148 struct timeval tv_request; /* date the request arrives, {0,0} if never occurs */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149 long t_queue; /* delay before the session gets out of the connect queue, -1 if never occurs */
150 long t_connect; /* delay before the connect() to the server succeeds, -1 if never occurs */
151 long t_data; /* delay before the first data byte from the server ... */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100152 unsigned long t_close; /* total session duration */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153 unsigned long srv_queue_size; /* number of sessions waiting for a connect slot on this server at accept() time (in direct assignment) */
154 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 +0100155 long long bytes_in; /* number of bytes transferred from the client to the server */
156 long long bytes_out; /* number of bytes transferred from the server to the client */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157 } logs;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100158 void (*do_log)(struct session *s); /* the function to call in order to log (or NULL) */
159 void (*srv_error)(struct session *s, /* the function to call upon unrecoverable server errors (or NULL) */
160 struct stream_interface *si);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161 unsigned int uniq_id; /* unique ID used for the traces */
William Lallemand8b52bb32012-11-16 18:06:41 +0100162 struct comp_ctx *comp_ctx; /* HTTP compression context */
William Lallemand82fe75c2012-10-23 10:25:10 +0200163 struct comp_algo *comp_algo; /* HTTP compression algorithm if not NULL */
William Lallemanda73203e2012-03-12 12:48:57 +0100164 char *unique_id; /* custom unique ID */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200165};
166
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200167/* parameters to configure tracked counters */
168struct track_ctr_prm {
169 int type; /* type of the key */
170 union {
171 struct stktable *t; /* a pointer to the table */
172 char *n; /* or its name during parsing. */
173 } table;
174};
175
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177#endif /* _TYPES_SESSION_H */
178
179/*
180 * Local variables:
181 * c-indent-level: 8
182 * c-basic-offset: 8
183 * End:
184 */