blob: 343d4ad049ba34d6d4d2b6d4f425cc12988c6eb2 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau5b4c2b52009-10-03 11:21:53 +02002 * include/types/proxy.h
3 * This file defines everything related to proxies.
4 *
Willy Tarreauff011f22011-01-06 17:51:27 +01005 * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu
Willy Tarreau5b4c2b52009-10-03 11:21:53 +02006 *
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_PROXY_H
23#define _TYPES_PROXY_H
24
Willy Tarreau7d677682006-10-15 23:18:47 +020025#include <sys/types.h>
26#include <sys/socket.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027#include <netinet/in.h>
28#include <arpa/inet.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020029
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/appsession.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020031#include <common/chunk.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020032#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020033#include <common/mini-clist.h>
34#include <common/regex.h>
Willy Tarreau51041c72007-09-09 21:56:53 +020035#include <common/sessionhash.h>
Willy Tarreaua8cff1d2007-04-09 16:10:57 +020036#include <common/tools.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010037#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
Willy Tarreaueb0c6142007-05-07 00:53:22 +020039#include <types/acl.h>
Willy Tarreau5b4c2b52009-10-03 11:21:53 +020040#include <types/backend.h>
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +020041#include <types/counters.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010042#include <types/freq_ctr.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020043#include <types/listener.h>
Robert Tsai81ae1952007-12-05 10:47:29 +010044#include <types/log.h>
Willy Tarreau436d9ed2011-05-11 16:10:11 +020045#include <types/proto_http.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020046#include <types/sample.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047#include <types/session.h>
48#include <types/server.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010049#include <types/stick_table.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
51/* values for proxy->state */
Willy Tarreau562515c2011-07-25 08:11:52 +020052enum {
53 PR_STNEW = 0, /* proxy has not been initialized yet */
54 PR_STREADY, /* proxy has been initialized and is ready */
55 PR_STFULL, /* frontend is full (maxconn reached) */
56 PR_STPAUSED, /* frontend is paused (during hot restart) */
57 PR_STSTOPPED, /* proxy is stopped (end of a restart) */
58 PR_STERROR, /* proxy experienced an unrecoverable error */
59};
Willy Tarreaubaaee002006-06-26 02:48:02 +020060
61/* values for proxy->mode */
62#define PR_MODE_TCP 0
63#define PR_MODE_HTTP 1
64#define PR_MODE_HEALTH 2
65
Willy Tarreau977b8e42006-12-29 14:19:17 +010066/* flag values for proxy->cap. This is a bitmask of capabilities supported by the proxy */
67#define PR_CAP_NONE 0x0000
68#define PR_CAP_FE 0x0001
69#define PR_CAP_BE 0x0002
70#define PR_CAP_RS 0x0004
71#define PR_CAP_LISTEN (PR_CAP_FE|PR_CAP_BE|PR_CAP_RS)
72
Willy Tarreau31682232007-11-29 15:38:04 +010073/* bits for proxy->options */
74#define PR_O_REDISP 0x00000001 /* allow reconnection to dispatch in case of errors */
75#define PR_O_TRANSP 0x00000002 /* transparent mode : use original DEST as dispatch */
Willy Tarreau67402132012-05-31 20:40:20 +020076/* unused: 0x04, 0x08, 0x10, 0x20 */
Willy Tarreau1620ec32011-08-06 17:05:02 +020077#define PR_O_DISPATCH 0x00000040 /* use dispatch mode */
Willy Tarreau31682232007-11-29 15:38:04 +010078#define PR_O_KEEPALIVE 0x00000080 /* follow keep-alive sessions */
Willy Tarreau87cf5142011-08-19 22:57:24 +020079#define PR_O_FWDFOR 0x00000100 /* conditionally insert x-forwarded-for with client address */
Willy Tarreau31682232007-11-29 15:38:04 +010080#define PR_O_BIND_SRC 0x00000200 /* bind to a specific source address when connect()ing */
81#define PR_O_NULLNOLOG 0x00000400 /* a connect without request will not be logged */
Willy Tarreau67402132012-05-31 20:40:20 +020082/* unused: 0x0800, 0x1000 */
Willy Tarreau87cf5142011-08-19 22:57:24 +020083#define PR_O_FF_ALWAYS 0x00002000 /* always set x-forwarded-for */
Willy Tarreau31682232007-11-29 15:38:04 +010084#define PR_O_PERSIST 0x00004000 /* server persistence stays effective even when server is down */
85#define PR_O_LOGASAP 0x00008000 /* log as soon as possible, without waiting for the session to complete */
86#define PR_O_HTTP_CLOSE 0x00010000 /* force 'connection: close' in both directions */
87#define PR_O_CHK_CACHE 0x00020000 /* require examination of cacheability of the 'set-cookie' field */
88#define PR_O_TCP_CLI_KA 0x00040000 /* enable TCP keep-alive on client-side sessions */
89#define PR_O_TCP_SRV_KA 0x00080000 /* enable TCP keep-alive on server-side sessions */
90#define PR_O_USE_ALL_BK 0x00100000 /* load-balance between backup servers */
91#define PR_O_FORCE_CLO 0x00200000 /* enforce the connection close immediately after server response */
92#define PR_O_TCP_NOLING 0x00400000 /* disable lingering on client and server connections */
93#define PR_O_ABRT_CLOSE 0x00800000 /* immediately abort request when client closes */
Willy Tarreau31682232007-11-29 15:38:04 +010094
95/* TPXY: exclusive values */
Willy Tarreau090466c2009-09-07 11:51:47 +020096#define PR_O_TPXY_ADDR 0x01000000 /* bind to this non-local address when connect()ing */
97#define PR_O_TPXY_CIP 0x02000000 /* bind to the client's IP address when connect()ing */
98#define PR_O_TPXY_CLI 0x03000000 /* bind to the client's IP+port when connect()ing */
99#define PR_O_TPXY_DYN 0x04000000 /* bind to a dynamically computed non-local address */
100#define PR_O_TPXY_MASK 0x07000000 /* bind to a non-local address when connect()ing */
Willy Tarreau31682232007-11-29 15:38:04 +0100101
Willy Tarreaub608feb2010-01-02 22:47:18 +0100102#define PR_O_SERVER_CLO 0x08000000 /* option http-server-close */
Willy Tarreau31682232007-11-29 15:38:04 +0100103#define PR_O_CONTSTATS 0x10000000 /* continous counters */
Alexandre Cassen5eb1a902007-11-29 15:43:32 +0100104#define PR_O_HTTP_PROXY 0x20000000 /* Enable session to use HTTP proxy operations */
Willy Tarreau48494c02007-11-30 10:41:39 +0100105#define PR_O_DISABLE404 0x40000000 /* Disable a server on a 404 response to a health-check */
Maik Broemme2850cb42009-04-17 18:53:21 +0200106#define PR_O_ORGTO 0x80000000 /* insert x-original-to with destination address */
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100107
108/* bits for proxy->options2 */
109#define PR_O2_SPLIC_REQ 0x00000001 /* transfer requests using linux kernel's splice() */
110#define PR_O2_SPLIC_RTR 0x00000002 /* transfer responses using linux kernel's splice() */
111#define PR_O2_SPLIC_AUT 0x00000004 /* automatically use linux kernel's splice() */
112#define PR_O2_SPLIC_ANY (PR_O2_SPLIC_REQ|PR_O2_SPLIC_RTR|PR_O2_SPLIC_AUT)
Willy Tarreau32a4ec02009-04-02 11:35:18 +0200113#define PR_O2_REQBUG_OK 0x00000008 /* let buggy requests pass through */
114#define PR_O2_RSPBUG_OK 0x00000010 /* let buggy responses pass through */
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +0200115#define PR_O2_NOLOGNORM 0x00000020 /* don't log normal traffic, only errors and retries */
116#define PR_O2_LOGERRORS 0x00000040 /* log errors and retries at level LOG_ERR */
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200117#define PR_O2_SMARTACC 0x00000080 /* don't immediately ACK request after accept */
Willy Tarreaud88edf22009-06-14 15:48:17 +0200118#define PR_O2_SMARTCON 0x00000100 /* don't immediately send empty ACK after connect */
Emeric Brun647caf12009-06-30 17:57:00 +0200119#define PR_O2_RDPC_PRST 0x00000200 /* Actvate rdp cookie analyser */
Emeric Brun3a058f32009-06-30 18:26:00 +0200120#define PR_O2_CLFLOG 0x00000400 /* log into clf format */
Krzysztof Piotr Oledzki213014e2009-09-27 15:50:02 +0200121#define PR_O2_LOGHCHKS 0x00000800 /* log health checks */
Jamie Gloudon801a0a32012-08-25 00:18:33 -0400122#define PR_O2_INDEPSTR 0x00001000 /* independent streams, don't update rex on write */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200123#define PR_O2_SOCKSTAT 0x00002000 /* collect & provide separate statistics for sockets */
Cyril Bontéb21570a2009-11-29 20:04:48 +0100124
125/* appsession */
126#define PR_O2_AS_REQL 0x00004000 /* learn the session id from the request */
127#define PR_O2_AS_PFX 0x00008000 /* match on the cookie prefix */
128
129/* Encoding of appsession cookie matching modes : 2 possible values => 1 bit */
130#define PR_O2_AS_M_PP 0x00000000 /* path-parameters mode (the default mode) */
131#define PR_O2_AS_M_QS 0x00010000 /* query-string mode */
132#define PR_O2_AS_M_ANY 0x00010000 /* mask covering all PR_O2_AS_M_* values */
Willy Tarreau1620ec32011-08-06 17:05:02 +0200133#define PR_O2_NODELAY 0x00020000 /* fully interactive mode, never delay outgoing data */
Willy Tarreau88d349d2010-01-25 12:15:43 +0100134#define PR_O2_USE_PXHDR 0x00040000 /* use Proxy-Connection for proxy requests */
Willy Tarreauef781042010-01-27 11:53:01 +0100135#define PR_O2_CHK_SNDST 0x00080000 /* send the state of each server along with HTTP health checks */
William Lallemandb7ff6a32012-03-02 14:35:21 +0100136
137#define PR_O2_SRC_ADDR 0x00100000 /* get the source ip and port for logs */
138
Willy Tarreau8a8e1d92010-04-05 16:15:16 +0200139#define PR_O2_FAKE_KA 0x00200000 /* pretend we do keep-alive with server eventhough we close */
Willy Tarreau1620ec32011-08-06 17:05:02 +0200140/* unused: 0x00400000 */
Willy Tarreaubd741542010-03-16 18:46:54 +0100141#define PR_O2_EXP_NONE 0x00000000 /* http-check : no expect rule */
142#define PR_O2_EXP_STS 0x00800000 /* http-check expect status */
143#define PR_O2_EXP_RSTS 0x01000000 /* http-check expect rstatus */
144#define PR_O2_EXP_STR 0x01800000 /* http-check expect string */
145#define PR_O2_EXP_RSTR 0x02000000 /* http-check expect rstring */
146#define PR_O2_EXP_TYPE 0x03800000 /* mask for http-check expect type */
147#define PR_O2_EXP_INV 0x04000000 /* http-check expect !<rule> */
Willy Tarreau67402132012-05-31 20:40:20 +0200148/* unused: 0x08000000 */
Rauf Kuliyev38b41562011-01-04 15:14:13 +0100149
Willy Tarreau1620ec32011-08-06 17:05:02 +0200150/* server health checks */
151#define PR_O2_CHK_NONE 0x00000000 /* no L7 health checks configured (TCP by default) */
Rauf Kuliyev38b41562011-01-04 15:14:13 +0100152#define PR_O2_PGSQL_CHK 0x10000000 /* use PGSQL check for server health */
Willy Tarreau1620ec32011-08-06 17:05:02 +0200153#define PR_O2_REDIS_CHK 0x20000000 /* use LDAP check for server health */
154#define PR_O2_SMTP_CHK 0x30000000 /* use SMTP EHLO check for server health - pvandijk@vision6.com.au */
155#define PR_O2_HTTP_CHK 0x40000000 /* use HTTP 'OPTIONS' method to check server health */
156#define PR_O2_MYSQL_CHK 0x50000000 /* use MYSQL check for server health */
157#define PR_O2_LDAP_CHK 0x60000000 /* use LDAP check for server health */
158#define PR_O2_SSL3_CHK 0x70000000 /* use SSLv3 CLIENT_HELLO packets for server health */
159/* unused: 0x80000000 to 0xF000000, reserved for health checks */
160#define PR_O2_CHK_ANY 0xF0000000 /* Mask to cover any check */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100161/* end of proxy->options2 */
162
Willy Tarreau67402132012-05-31 20:40:20 +0200163/* Cookie settings for pr->ck_opts */
Willy Tarreaub5ba17e2012-05-31 20:43:11 +0200164#define PR_CK_RW 0x00000001 /* rewrite all direct cookies with the right serverid */
165#define PR_CK_IND 0x00000002 /* keep only indirect cookies */
166#define PR_CK_INS 0x00000004 /* insert cookies when not accessing a server directly */
167#define PR_CK_PFX 0x00000008 /* rewrite all cookies by prefixing the right serverid */
168#define PR_CK_ANY (PR_CK_RW | PR_CK_IND | PR_CK_INS | PR_CK_PFX)
169#define PR_CK_NOC 0x00000010 /* add a 'Cache-control' header with the cookie */
170#define PR_CK_POST 0x00000020 /* don't insert cookies for requests other than a POST */
171#define PR_CK_PSV 0x00000040 /* cookie ... preserve */
Willy Tarreau4992dd22012-05-31 21:02:17 +0200172#define PR_CK_HTTPONLY 0x00000080 /* emit the "HttpOnly" attribute */
173#define PR_CK_SECURE 0x00000100 /* emit the "Secure" attribute */
Willy Tarreau67402132012-05-31 20:40:20 +0200174
Emeric Brunb982a3d2010-01-04 15:45:53 +0100175/* bits for sticking rules */
176#define STK_IS_MATCH 0x00000001 /* match on request fetch */
177#define STK_IS_STORE 0x00000002 /* store on request fetch */
178#define STK_ON_RSP 0x00000004 /* store on response fetch */
Hervé COMMOWICK698ae002010-01-12 09:25:13 +0100179
Willy Tarreauf073a832009-03-01 23:21:47 +0100180struct error_snapshot {
181 struct timeval when; /* date of this event, (tv_sec == 0) means "never" */
182 unsigned int len; /* original length of the last invalid request/response */
183 unsigned int pos; /* position of the first invalid character */
184 unsigned int sid; /* ID of the faulty session */
Willy Tarreau10479e42010-12-12 14:00:34 +0100185 unsigned int ev_id; /* event number (counter incremented for each capture) */
Willy Tarreau078272e2010-12-12 12:46:33 +0100186 unsigned int state; /* message state before the error (when saved) */
Willy Tarreaud04b1bc2012-05-08 11:03:10 +0200187 unsigned int b_flags; /* buffer flags */
188 unsigned int s_flags; /* session flags */
189 unsigned int t_flags; /* transaction flags */
190 unsigned int m_flags; /* message flags */
191 unsigned int b_out; /* pending output bytes */
192 unsigned int b_wrap; /* position where the buffer is expected to wrap */
193 unsigned long long b_tot; /* total bytes transferred via this buffer */
194 unsigned long long m_clen; /* chunk len for this message */
195 unsigned long long m_blen; /* body len for this message */
Willy Tarreauf073a832009-03-01 23:21:47 +0100196 struct server *srv; /* server associated with the error (or NULL) */
197 struct proxy *oe; /* other end = frontend or backend involved */
198 struct sockaddr_storage src; /* client's address */
199 char buf[BUFSIZE]; /* copy of the beginning of the message */
200};
201
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202struct proxy {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200203 struct in_addr mon_net, mon_mask; /* don't forward connections from this net (network order) FIXME: should support IPv6 */
204 int state; /* proxy state */
Willy Tarreau35d66b02007-01-02 00:28:21 +0100205 int options; /* PR_O_REDISP, PR_O_TRANSP, ... */
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100206 int options2; /* PR_O2_* */
Willy Tarreau67402132012-05-31 20:40:20 +0200207 unsigned int ck_opts; /* PR_CK_* (cookie options) */
Willy Tarreauc1a21672009-08-16 22:37:44 +0200208 unsigned int fe_req_ana, be_req_ana; /* bitmap of common request protocol analysers for the frontend and backend */
Willy Tarreau4e5b8282009-08-16 22:57:50 +0200209 unsigned int fe_rsp_ana, be_rsp_ana; /* bitmap of common response protocol analysers for the frontend and backend */
Willy Tarreau35d66b02007-01-02 00:28:21 +0100210 int mode; /* mode = PR_MODE_TCP, PR_MODE_HTTP or PR_MODE_HEALTH */
Willy Tarreau5fdfb912007-01-01 23:11:07 +0100211 union {
212 struct proxy *be; /* default backend, or NULL if none set */
213 char *name; /* default backend name during config parse */
214 } defbe;
Willy Tarreaueb0c6142007-05-07 00:53:22 +0200215 struct list acl; /* ACL declared on this proxy */
Willy Tarreauff011f22011-01-06 17:51:27 +0100216 struct list http_req_rules; /* HTTP request rules: allow/deny/http-auth */
Willy Tarreau5c8e3e02007-05-07 00:58:25 +0200217 struct list block_cond; /* early blocking conditions (chained) */
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200218 struct list redirect_rules; /* content redirecting rules (chained) */
Willy Tarreau55ea7572007-06-17 19:56:27 +0200219 struct list switching_rules; /* content switching rules (chained) */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200220 struct list persist_rules; /* 'force-persist' and 'ignore-persist' rules (chained) */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100221 struct list sticking_rules; /* content sticking rules (chained) */
222 struct list storersp_rules; /* content store response rules (chained) */
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200223 struct list server_rules; /* server switching rules (chained) */
Willy Tarreaub6866442008-07-14 23:54:42 +0200224 struct { /* TCP request processing */
Willy Tarreauc7e961e2008-08-17 17:13:47 +0200225 unsigned int inspect_delay; /* inspection delay */
Willy Tarreaub6866442008-07-14 23:54:42 +0200226 struct list inspect_rules; /* inspection rules */
Willy Tarreauab786192010-05-23 22:39:25 +0200227 struct list l4_rules; /* layer4 rules */
Willy Tarreaub6866442008-07-14 23:54:42 +0200228 } tcp_req;
Emeric Brun97679e72010-09-23 17:56:44 +0200229 struct { /* TCP request processing */
230 unsigned int inspect_delay; /* inspection delay */
231 struct list inspect_rules; /* inspection rules */
232 } tcp_rep;
Willy Tarreaua9fb0832009-07-10 20:53:53 +0200233 int acl_requires; /* Elements required to satisfy all ACLs (ACL_USE_*) */
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100234 struct server *srv, defsrv; /* known servers; default server configuration */
Willy Tarreaub625a082007-11-26 01:15:43 +0100235 int srv_act, srv_bck; /* # of servers eligible for LB (UP|!checked) AND (enabled+weight!=0) */
Willy Tarreau5b4c2b52009-10-03 11:21:53 +0200236 struct lbprm lbprm; /* load-balancing parameters */
Krzysztof Piotr Oledzki1acf2172008-05-29 23:03:34 +0200237 char *cookie_domain; /* domain used to insert the cookie */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200238 char *cookie_name; /* name of the cookie to look for */
239 int cookie_len; /* strlen(cookie_name), computed only once */
Willy Tarreau31936852010-10-06 16:59:56 +0200240 unsigned int cookie_maxidle; /* max idle time for this cookie */
241 unsigned int cookie_maxlife; /* max life time for this cookie */
Emeric Brun647caf12009-06-30 17:57:00 +0200242 char *rdp_cookie_name; /* name of the RDP cookie to look for */
243 int rdp_cookie_len; /* strlen(rdp_cookie_name), computed only once */
Willy Tarreau01732802007-11-01 22:48:15 +0100244 char *url_param_name; /* name of the URL parameter used for hashing */
245 int url_param_len; /* strlen(url_param_name), computed only once */
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +0200246 unsigned url_param_post_limit; /* if checking POST body for URI parameter, max body to wait for */
Marek Majkowski9c30fc12008-04-27 23:25:55 +0200247 int uri_len_limit; /* character limit for uri balancing algorithm */
248 int uri_dirs_depth1; /* directories+1 (slashes) limit for uri balancing algorithm */
Oskar Stolc8dc41842012-05-19 10:19:54 +0100249 int uri_whole; /* if != 0, calculates the hash from the whole uri. Still honors the len_limit and dirs_depth1 */
Benoitaffb4812009-03-25 13:02:10 +0100250 char *hh_name; /* name of the header parameter used for hashing */
251 int hh_len; /* strlen(hh_name), computed only once */
252 int hh_match_domain; /* toggle use of special match function */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200253 char *appsession_name; /* name of the cookie to look for */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200254 int appsession_name_len; /* strlen(appsession_name), computed only once */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200255 int appsession_len; /* length of the appsession cookie value to be used */
Willy Tarreau51041c72007-09-09 21:56:53 +0200256 struct appsession_hash htbl_proxy; /* Per Proxy hashtable */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200257 char *capture_name; /* beginning of the name of the cookie to capture */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200258 int capture_namelen; /* length of the cookie name to match */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200259 int capture_len; /* length of the string to be captured */
260 struct uri_auth *uri_auth; /* if non-NULL, the (list of) per-URI authentications */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200261 char *monitor_uri; /* a special URI to which we respond with HTTP/200 OK */
262 int monitor_uri_len; /* length of the string above. 0 if unused */
Willy Tarreaub80c2302007-11-30 20:51:32 +0100263 struct list mon_fail_cond; /* list of conditions to fail monitoring requests (chained) */
Willy Tarreau3a70f942008-02-15 11:15:34 +0100264 struct { /* WARNING! check proxy_reset_timeouts() in proxy.h !!! */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200265 int client; /* client I/O timeout (in ticks) */
266 int tarpit; /* tarpit timeout, defaults to connect if unspecified */
267 int queue; /* queue timeout, defaults to connect if unspecified */
268 int connect; /* connect timeout (in ticks) */
269 int server; /* server I/O timeout (in ticks) */
270 int appsession; /* appsession cookie expiration */
271 int httpreq; /* maximum time for complete HTTP request */
Willy Tarreaub16a5742010-01-10 14:46:16 +0100272 int httpka; /* maximum time for a new HTTP request when using keep-alive */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200273 int check; /* maximum time for complete check */
Willy Tarreauce887fd2012-05-12 12:50:00 +0200274 int tunnel; /* I/O timeout to use in tunnel mode (in ticks) */
Willy Tarreau1fa31262007-12-03 00:36:16 +0100275 } timeout;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200276 char *id, *desc; /* proxy id (name) and description */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200277 struct list pendconns; /* pending connections with no server assigned yet */
Willy Tarreauac68c5d2009-10-04 23:12:44 +0200278 int nbpend; /* number of pending connections with no server assigned yet */
Willy Tarreau1c47f852006-07-09 08:22:27 +0200279 int totpend; /* total number of pending connections on this instance (for stats) */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200280 unsigned int feconn, beconn; /* # of active frontend and backends sessions */
Willy Tarreaud9b587f2010-02-26 10:05:55 +0100281 struct freq_ctr fe_req_per_sec; /* HTTP requests per second on the frontend */
Willy Tarreaub36b4242010-06-04 20:59:39 +0200282 struct freq_ctr fe_conn_per_sec; /* received connections per second on the frontend */
283 struct freq_ctr fe_sess_per_sec; /* accepted sessions per second on the frontend (after tcp rules) */
Willy Tarreau7f062c42009-03-05 18:43:00 +0100284 struct freq_ctr be_sess_per_sec; /* sessions per second on the backend */
Willy Tarreau86034312006-12-29 00:10:33 +0100285 unsigned int maxconn; /* max # of active sessions on the frontend */
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200286 unsigned int fe_sps_lim; /* limit on new sessions per second on the frontend */
Willy Tarreau86034312006-12-29 00:10:33 +0100287 unsigned int fullconn; /* #conns on backend above which servers are used at full load */
Willy Tarreau7ac51f62007-03-25 16:00:04 +0200288 struct in_addr except_net, except_mask; /* don't x-forward-for for this address. FIXME: should support IPv6 */
Maik Broemme2850cb42009-04-17 18:53:21 +0200289 struct in_addr except_to; /* don't x-original-to for this address. */
290 struct in_addr except_mask_to; /* the netmask for except_to. */
Ross Westaf72a1d2008-08-03 10:51:45 +0200291 char *fwdfor_hdr_name; /* header to use - default: "x-forwarded-for" */
292 int fwdfor_hdr_len; /* length of "x-forwarded-for" header */
Maik Broemme2850cb42009-04-17 18:53:21 +0200293 char *orgto_hdr_name; /* header to use - default: "x-original-to" */
294 int orgto_hdr_len; /* length of "x-original-to" header */
Mark Lamourinec2247f02012-01-04 13:02:01 -0500295 char *server_id_hdr_name; /* the header to use to send the server id (name) */
296 int server_id_hdr_len; /* the length of the id (name) header... name */
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200297
298 unsigned down_trans; /* up-down transitions */
299 unsigned down_time; /* total time the proxy was down */
300 time_t last_change; /* last time, when the state was changed */
301
Willy Tarreaubaaee002006-06-26 02:48:02 +0200302 int conn_retries; /* maximum number of connect retries */
Willy Tarreau977b8e42006-12-29 14:19:17 +0100303 int cap; /* supported capabilities (PR_CAP_*) */
Willy Tarreaud53f96b2009-02-04 18:46:54 +0100304 int iface_len; /* bind interface name length */
305 char *iface_name; /* bind interface name or NULL */
Willy Tarreauf229eb82010-06-01 17:14:24 +0200306 int (*accept)(struct session *s); /* application layer's accept() */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307 struct proxy *next;
William Lallemand0f99e342011-10-12 17:50:54 +0200308 struct list logsrvs;
William Lallemand723b73a2012-02-08 16:37:49 +0100309 struct list logformat; /* log_format linked list */
William Lallemanda73203e2012-03-12 12:48:57 +0100310 char *header_unique_id; /* unique-id header */
311 struct list format_unique_id; /* unique-id format */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200312 int to_log; /* things to be logged (LW_*) */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200313 int stop_time; /* date to stop listening, when stopping != 0 (int ticks) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200314 struct hdr_exp *req_exp; /* regular expressions for request headers */
315 struct hdr_exp *rsp_exp; /* regular expressions for response headers */
316 int nb_req_cap, nb_rsp_cap; /* # of headers to be captured */
317 struct cap_hdr *req_cap; /* chained list of request headers to be captured */
318 struct cap_hdr *rsp_cap; /* chained list of response headers to be captured */
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200319 struct pool_head *req_cap_pool, /* pools of pre-allocated char ** used to build the sessions */
320 *rsp_cap_pool;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +0100321 struct list req_add, rsp_add; /* headers to be added */
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100322 struct pxcounters be_counters; /* backend statistics counters */
323 struct pxcounters fe_counters; /* frontend statistics counters */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100324
Willy Tarreau07687c12011-07-24 23:55:06 +0200325 struct list listener_queue; /* list of the temporarily limited listeners because of lack of a proxy resource */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100326 struct stktable table; /* table for storing sticking sessions */
327
Willy Tarreaud1a33e32012-10-04 00:14:33 +0200328 struct task *task; /* the associated task, mandatory to manage rate limiting, stopping and resource shortage, NULL if disabled */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200329 int grace; /* grace time after stop request */
Willy Tarreauf3c69202006-07-09 16:42:34 +0200330 char *check_req; /* HTTP or SSL request to use for PR_O_HTTP_CHK|PR_O_SSL3_CHK */
331 int check_len; /* Length of the HTTP or SSL3 request */
Willy Tarreau1ee51a62011-08-19 20:04:17 +0200332 char *expect_str; /* http-check expected content : string or text version of the regex */
Willy Tarreaubd741542010-03-16 18:46:54 +0100333 regex_t *expect_regex; /* http-check expected content */
Willy Tarreau0f772532006-12-23 20:51:41 +0100334 struct chunk errmsg[HTTP_ERR_SIZE]; /* default or customized error messages for known errors */
Willy Tarreaudcd47712007-11-04 23:35:08 +0100335 int uuid; /* universally unique proxy ID, used for SNMP */
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100336 unsigned int backlog; /* force the frontend's listen backlog */
Willy Tarreau0b9c02c2009-02-04 22:05:05 +0100337 unsigned int bind_proc; /* bitmask of processes using this proxy. 0 = all. */
Willy Tarreau7b815632011-10-21 18:51:57 +0200338
339 /* warning: these structs are huge, keep them at the bottom */
340 struct sockaddr_storage dispatch_addr; /* the default address to connect to */
341 struct sockaddr_storage source_addr; /* the address to which we want to bind for connect() */
342#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_LINUX_TPROXY)
343 struct sockaddr_storage tproxy_addr; /* non-local address we want to bind to for connect() */
344 char *bind_hdr_name; /* bind to this header name if defined */
345 int bind_hdr_len; /* length of the name of the header above */
346 int bind_hdr_occ; /* occurrence number of header above: >0 = from first, <0 = from end, 0=disabled */
347#endif
Willy Tarreauf073a832009-03-01 23:21:47 +0100348 struct error_snapshot invalid_req, invalid_rep; /* captures of last errors */
Willy Tarreau84b57da2009-06-14 11:10:45 +0200349
350 /* used only during configuration parsing */
351 int no_options; /* PR_O_REDISP, PR_O_TRANSP, ... */
352 int no_options2; /* PR_O2_* */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200353
Willy Tarreau196729e2012-05-31 19:30:26 +0200354 char *logformat_string; /* log format string */
355 char *uniqueid_format_string; /* unique-id format string */
Willy Tarreau90a570f2009-10-04 20:54:54 +0200356 struct {
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200357 char *file; /* file where the section appears */
Willy Tarreau90a570f2009-10-04 20:54:54 +0200358 int line; /* line where the section appears */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +0200359 struct eb32_node id; /* place in the tree of used IDs */
360 struct eb_root used_listener_id;/* list of listener IDs in use */
361 struct eb_root used_server_id; /* list of server IDs in use */
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200362 struct list bind; /* list of bind settings */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200363 struct list listeners; /* list of listeners belonging to this frontend */
Willy Tarreau90a570f2009-10-04 20:54:54 +0200364 } conf; /* config information */
Willy Tarreau258a14b2010-07-13 16:24:48 +0200365 void *parent; /* parent of the proxy when applicable */
William Lallemand82fe75c2012-10-23 10:25:10 +0200366 struct comp *comp; /* http compression */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200367};
368
Willy Tarreau55ea7572007-06-17 19:56:27 +0200369struct switching_rule {
370 struct list list; /* list linked to from the proxy */
371 struct acl_cond *cond; /* acl condition to meet */
372 union {
373 struct proxy *backend; /* target backend */
374 char *name; /* target backend name during config parsing */
375 } be;
376};
377
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200378struct server_rule {
379 struct list list; /* list linked to from the proxy */
380 struct acl_cond *cond; /* acl condition to meet */
381 union {
382 struct server *ptr; /* target server */
383 char *name; /* target server name during config parsing */
384 } srv;
385};
386
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200387struct persist_rule {
Willy Tarreau4de91492010-01-22 19:10:05 +0100388 struct list list; /* list linked to from the proxy */
389 struct acl_cond *cond; /* acl condition to meet */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200390 int type;
Willy Tarreau4de91492010-01-22 19:10:05 +0100391};
392
Emeric Brunb982a3d2010-01-04 15:45:53 +0100393struct sticking_rule {
394 struct list list; /* list linked to from the proxy */
395 struct acl_cond *cond; /* acl condition to meet */
Willy Tarreau12785782012-04-27 21:37:17 +0200396 struct sample_expr *expr; /* fetch expr to fetch key */
Emeric Brunb982a3d2010-01-04 15:45:53 +0100397 int flags; /* STK_* */
398 union {
399 struct stktable *t; /* target table */
400 char *name; /* target table name during config parsing */
401 } table;
402};
403
404
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200405struct redirect_rule {
406 struct list list; /* list linked to from the proxy */
407 struct acl_cond *cond; /* acl condition to meet */
408 int type;
409 int rdr_len;
410 char *rdr_str;
411 int code;
Willy Tarreau79da4692008-11-19 20:03:04 +0100412 unsigned int flags;
Willy Tarreau0140f252008-11-19 21:07:09 +0100413 int cookie_len;
414 char *cookie_str;
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200415};
416
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417extern struct proxy *proxy;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +0200418extern struct eb_root used_proxy_id; /* list of proxy IDs in use */
Willy Tarreau10479e42010-12-12 14:00:34 +0100419extern unsigned int error_snapshot_id; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420
421#endif /* _TYPES_PROXY_H */
422
423/*
424 * Local variables:
425 * c-indent-level: 8
426 * c-basic-offset: 8
427 * End:
428 */