blob: 66b1db3cd9a8d6565f13cc5c15e438e64465c3bc [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/types/session.h
3 This file defines everything related to sessions.
4
5 Copyright (C) 2000-2006 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*/
21
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>
35#include <types/proxy.h>
36#include <types/queue.h>
37#include <types/server.h>
38#include <types/task.h>
39
40
41/* various session flags, bits values 0x01 to 0x20 (shift 0) */
42#define SN_DIRECT 0x00000001 /* connection made on the server matching the client cookie */
43#define SN_CLDENY 0x00000002 /* a client header matches a deny regex */
44#define SN_CLALLOW 0x00000004 /* a client header matches an allow regex */
45#define SN_SVDENY 0x00000008 /* a server header matches a deny regex */
46#define SN_SVALLOW 0x00000010 /* a server header matches an allow regex */
47#define SN_POST 0x00000020 /* the request was an HTTP POST */
48
49/* session flags dedicated to cookies : bits values 0x40, 0x80 (0-3 shift 6) */
50#define SN_CK_NONE 0x00000000 /* this session had no cookie */
51#define SN_CK_INVALID 0x00000040 /* this session had a cookie which matches no server */
52#define SN_CK_DOWN 0x00000080 /* this session had cookie matching a down server */
53#define SN_CK_VALID 0x000000C0 /* this session had cookie matching a valid server */
54#define SN_CK_MASK 0x000000C0 /* mask to get this session's cookie flags */
55#define SN_CK_SHIFT 6 /* bit shift */
56
57/* session termination conditions, bits values 0x100 to 0x700 (0-7 shift 8) */
58#define SN_ERR_NONE 0x00000000
59#define SN_ERR_CLITO 0x00000100 /* client time-out */
60#define SN_ERR_CLICL 0x00000200 /* client closed (read/write error) */
61#define SN_ERR_SRVTO 0x00000300 /* server time-out, connect time-out */
62#define SN_ERR_SRVCL 0x00000400 /* server closed (connect/read/write error) */
63#define SN_ERR_PRXCOND 0x00000500 /* the proxy decided to close (deny...) */
64#define SN_ERR_RESOURCE 0x00000600 /* the proxy encountered a lack of a local resources (fd, mem, ...) */
65#define SN_ERR_INTERNAL 0x00000700 /* the proxy encountered an internal error */
66#define SN_ERR_MASK 0x00000700 /* mask to get only session error flags */
67#define SN_ERR_SHIFT 8 /* bit shift */
68
69/* session state at termination, bits values 0x1000 to 0x7000 (0-7 shift 12) */
70#define SN_FINST_R 0x00001000 /* session ended during client request */
71#define SN_FINST_C 0x00002000 /* session ended during server connect */
72#define SN_FINST_H 0x00003000 /* session ended during server headers */
73#define SN_FINST_D 0x00004000 /* session ended during data phase */
74#define SN_FINST_L 0x00005000 /* session ended while pushing last data to client */
75#define SN_FINST_Q 0x00006000 /* session ended while waiting in queue for a server slot */
Willy Tarreaub8750a82006-09-03 09:56:00 +020076#define SN_FINST_T 0x00007000 /* session ended tarpitted */
Willy Tarreaubaaee002006-06-26 02:48:02 +020077#define SN_FINST_MASK 0x00007000 /* mask to get only final session state flags */
78#define SN_FINST_SHIFT 12 /* bit shift */
79
80/* cookie information, bits values 0x10000 to 0x80000 (0-8 shift 16) */
81#define SN_SCK_NONE 0x00000000 /* no set-cookie seen for the server cookie */
82#define SN_SCK_DELETED 0x00010000 /* existing set-cookie deleted or changed */
83#define SN_SCK_INSERTED 0x00020000 /* new set-cookie inserted or changed existing one */
84#define SN_SCK_SEEN 0x00040000 /* set-cookie seen for the server cookie */
85#define SN_SCK_MASK 0x00070000 /* mask to get the set-cookie field */
86#define SN_SCK_ANY 0x00080000 /* at least one set-cookie seen (not to be counted) */
87#define SN_SCK_SHIFT 16 /* bit shift */
88
89/* cacheability management, bits values 0x100000 to 0x300000 (0-3 shift 20) */
90#define SN_CACHEABLE 0x00100000 /* at least part of the response is cacheable */
91#define SN_CACHE_COOK 0x00200000 /* a cookie in the response is cacheable */
92#define SN_CACHE_SHIFT 20 /* bit shift */
93
94/* various other session flags, bits values 0x400000 and above */
95#define SN_MONITOR 0x00400000 /* this session comes from a monitoring system */
96#define SN_ASSIGNED 0x00800000 /* no need to assign a server to this session */
97#define SN_ADDR_SET 0x01000000 /* this session's server address has been set */
98#define SN_SELF_GEN 0x02000000 /* the proxy generates data for the client (eg: stats) */
Willy Tarreaub8750a82006-09-03 09:56:00 +020099#define SN_CLTARPIT 0x04000000 /* the session is tarpitted (anti-dos) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200100
101
102/* WARNING: if new fields are added, they must be initialized in event_accept() */
103struct session {
104 struct task *task; /* the task associated with this session */
105 /* application specific below */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106 struct proxy *proxy; /* the proxy this socket belongs to */
107 int cli_fd; /* the client side fd */
108 int srv_fd; /* the server side fd */
109 int cli_state; /* state of the client side */
110 int srv_state; /* state of the server side */
111 int conn_retries; /* number of connect retries left */
112 int flags; /* some flags describing the session */
113 struct buffer *req; /* request buffer */
114 struct buffer *rep; /* response buffer */
115 struct sockaddr_storage cli_addr; /* the client address */
116 struct sockaddr_in srv_addr; /* the address to connect to */
117 struct server *srv; /* the server being used */
118 struct pendconn *pend_pos; /* if not NULL, points to the position in the pending queue */
119 char **req_cap; /* array of captured request headers (may be NULL) */
120 char **rsp_cap; /* array of captured response headers (may be NULL) */
121 struct chunk req_line; /* points to first line */
122 struct chunk auth_hdr; /* points to 'Authorization:' header */
123 struct {
124 int logwait; /* log fields waiting to be collected : LW_* */
125 struct timeval tv_accept; /* date of the accept() (beginning of the session) */
126 long t_request; /* delay before the end of the request arrives, -1 if never occurs */
127 long t_queue; /* delay before the session gets out of the connect queue, -1 if never occurs */
128 long t_connect; /* delay before the connect() to the server succeeds, -1 if never occurs */
129 long t_data; /* delay before the first data byte from the server ... */
130 unsigned long t_close; /* total session duration */
131 unsigned long srv_queue_size; /* number of sessions waiting for a connect slot on this server at accept() time (in direct assignment) */
132 unsigned long prx_queue_size; /* overall number of sessions waiting for a connect slot on this instance at accept() time */
133 char *uri; /* first line if log needed, NULL otherwise */
134 char *cli_cookie; /* cookie presented by the client, in capture mode */
135 char *srv_cookie; /* cookie presented by the server, in capture mode */
136 int status; /* HTTP status from the server, negative if from proxy */
137 long long bytes; /* number of bytes transferred from the server */
138 } logs;
139 short int data_source; /* where to get the data we generate ourselves */
140 short int data_state; /* where to get the data we generate ourselves */
141 union {
142 struct {
143 struct proxy *px;
144 struct server *sv;
145 short px_st, sv_st; /* DATA_ST_INIT or DATA_ST_DATA */
146 } stats;
147 } data_ctx;
148 unsigned int uniq_id; /* unique ID used for the traces */
149};
150
151
152#define sizeof_session sizeof(struct session)
153extern void **pool_session;
154
155
156#endif /* _TYPES_SESSION_H */
157
158/*
159 * Local variables:
160 * c-indent-level: 8
161 * c-basic-offset: 8
162 * End:
163 */