blob: c0729fc5443fcbec169879e6a7414c810ac3d48f [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau5ab04ec2011-03-20 10:32:26 +01002 * include/types/server.h
3 * This file defines everything related to servers.
4 *
Willy Tarreauf09c6602012-02-13 17:12:08 +01005 * Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu
Willy Tarreau5ab04ec2011-03-20 10:32:26 +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_SERVER_H
23#define _TYPES_SERVER_H
24
25#include <netinet/in.h>
26#include <arpa/inet.h>
27
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020028#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020029#include <common/mini-clist.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010030#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
32#include <types/buffers.h>
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +020033#include <types/counters.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010034#include <types/freq_ctr.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020035#include <types/port_range.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <types/proxy.h>
37#include <types/queue.h>
38#include <types/task.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020039#include <types/checks.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
41
42/* server flags */
Willy Tarreau77074d52006-11-12 23:57:19 +010043#define SRV_RUNNING 0x0001 /* the server is UP */
44#define SRV_BACKUP 0x0002 /* this server is a backup server */
45#define SRV_MAPPORTS 0x0004 /* this server uses mapped ports */
46#define SRV_BIND_SRC 0x0008 /* this server uses a specific source address */
47#define SRV_CHECKED 0x0010 /* this server needs to be checked */
Willy Tarreau48494c02007-11-30 10:41:39 +010048#define SRV_GOINGDOWN 0x0020 /* this server says that it's going down (404) */
Willy Tarreau9909fc12007-11-30 17:42:05 +010049#define SRV_WARMINGUP 0x0040 /* this server is warming up after a failure */
Cyril Bontécd19e512010-01-31 22:34:03 +010050#define SRV_MAINTAIN 0x0080 /* this server is in maintenance mode */
Willy Tarreauc297b522008-01-13 18:12:24 +010051#define SRV_TPROXY_ADDR 0x0100 /* bind to this non-local address to reach this server */
52#define SRV_TPROXY_CIP 0x0200 /* bind to the client's IP address to reach this server */
53#define SRV_TPROXY_CLI 0x0300 /* bind to the client's IP+port to reach this server */
Willy Tarreau090466c2009-09-07 11:51:47 +020054#define SRV_TPROXY_DYN 0x0400 /* bind to a dynamically computed non-local address */
55#define SRV_TPROXY_MASK 0x0700 /* bind to a non-local address to reach this server */
Willy Tarreau5ab04ec2011-03-20 10:32:26 +010056#define SRV_SEND_PROXY 0x0800 /* this server talks the PROXY protocol */
Simon Hormanfa461682011-06-25 09:39:49 +090057#define SRV_NON_STICK 0x1000 /* never add connections allocated to this server to a stick table */
Willy Tarreaubaaee002006-06-26 02:48:02 +020058
59/* function which act on servers need to return various errors */
60#define SRV_STATUS_OK 0 /* everything is OK. */
61#define SRV_STATUS_INTERNAL 1 /* other unrecoverable errors. */
62#define SRV_STATUS_NOSRV 2 /* no server is available */
63#define SRV_STATUS_FULL 3 /* the/all server(s) are saturated */
64#define SRV_STATUS_QUEUED 4 /* the/all server(s) are saturated but the connection was queued */
65
Willy Tarreauc7dd71a2007-11-30 08:33:21 +010066/* bits for s->result used for health-checks */
67#define SRV_CHK_UNKNOWN 0x0000 /* initialized to this by default */
68#define SRV_CHK_ERROR 0x0001 /* error encountered during the check; has precedence */
69#define SRV_CHK_RUNNING 0x0002 /* server seen as running */
70#define SRV_CHK_DISABLE 0x0004 /* server returned a "disable" code */
Willy Tarreaubaaee002006-06-26 02:48:02 +020071
Willy Tarreaub698f0f2007-12-02 11:01:23 +010072/* various constants */
73#define SRV_UWGHT_RANGE 256
74#define SRV_UWGHT_MAX (SRV_UWGHT_RANGE - 1)
75#define SRV_EWGHT_RANGE (SRV_UWGHT_RANGE * BE_WEIGHT_SCALE)
76#define SRV_EWGHT_MAX (SRV_UWGHT_MAX * BE_WEIGHT_SCALE)
77
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020078/* A tree occurrence is a descriptor of a place in a tree, with a pointer back
79 * to the server itself.
80 */
81struct server;
82struct tree_occ {
83 struct server *server;
84 struct eb32_node node;
85};
86
Willy Tarreaubaaee002006-06-26 02:48:02 +020087struct server {
88 struct server *next;
89 int state; /* server state (SRV_*) */
Willy Tarreaub625a082007-11-26 01:15:43 +010090 int prev_state; /* server state before last change (SRV_*) */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020091 int cklen; /* the len of the cookie, to speed up checks */
Willy Tarreau21d2af32008-02-14 20:25:24 +010092 int rdr_len; /* the length of the redirection prefix */
Willy Tarreau91b6f322007-03-25 21:03:01 +020093 char *cookie; /* the id set in the cookie */
Willy Tarreau21d2af32008-02-14 20:25:24 +010094 char *rdr_pfx; /* the redirection prefix */
Willy Tarreau91b6f322007-03-25 21:03:01 +020095
96 struct proxy *proxy; /* the proxy this server belongs to */
Willy Tarreau7c669d72008-06-20 15:04:11 +020097 int served; /* # of active sessions currently being served (ie not pending) */
Willy Tarreauac68c5d2009-10-04 23:12:44 +020098 int cur_sess; /* number of currently active sessions (including syn_sent) */
Willy Tarreau91b6f322007-03-25 21:03:01 +020099 unsigned maxconn, minconn; /* max # of active sessions (0 = unlimited), min# for dynamic limit. */
Willy Tarreauac68c5d2009-10-04 23:12:44 +0200100 int nbpend; /* number of pending connections */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +0200101 int maxqueue; /* maximum number of pending connections allowed */
Willy Tarreau7b815632011-10-21 18:51:57 +0200102 struct freq_ctr sess_per_sec; /* sessions per second on this server */
Willy Tarreauac68c5d2009-10-04 23:12:44 +0200103 struct srvcounters counters; /* statistics counters */
104
Willy Tarreau91b6f322007-03-25 21:03:01 +0200105 struct list pendconns; /* pending connections */
Simon Hormanaf514952011-06-21 14:34:57 +0900106 struct list actconns; /* active connections */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200107 struct task *check; /* the task associated to the health check processing */
Willy Tarreau2e993902011-10-31 11:53:20 +0100108 struct task *warmup; /* the task dedicated to the warmup when slowstart is set */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200109
Willy Tarreauc76721d2009-02-04 20:20:58 +0100110 int iface_len; /* bind interface name length */
111 char *iface_name; /* bind interface name or NULL */
Willy Tarreauc6f4ce82009-06-10 11:09:37 +0200112 struct port_range *sport_range; /* optional per-server TCP source ports */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200113
Willy Tarreau44267702011-10-28 15:35:33 +0200114 struct server *tracknext, *track; /* next server in a tracking list, tracked server */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100115 char *trackit; /* temporary variable to make assignment deferrable */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100116 struct sockaddr_storage check_addr; /* the address to check, if different from <addr> */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 short check_port; /* the port to use for the health checks */
118 int health; /* 0->rise-1 = bad; rise->rise+fall-1 = good */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100119 int consecutive_errors; /* current number of consecutive errors */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200120 int rise, fall; /* time in iterations */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100121 int consecutive_errors_limit; /* number of consecutive errors that triggers an event */
122 short observe, onerror; /* observing mode: one of HANA_OBS_*; what to do on error: on of ANA_ONERR_* */
Simon Hormane0d1bfb2011-06-21 14:34:58 +0900123 short onmarkeddown; /* what to do when marked down: on of HANA_ONMARKEDDOWN_* */
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100124 int inter, fastinter, downinter; /* checks: time in milliseconds */
Willy Tarreau9909fc12007-11-30 17:42:05 +0100125 int slowstart; /* slowstart time in seconds (ms in the conf) */
Willy Tarreauc7dd71a2007-11-30 08:33:21 +0100126 int result; /* health-check result : SRV_CHK_* */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 int curfd; /* file desc used for current test, or -1 if not in test */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200128
129 char *id; /* just for identification */
Willy Tarreau975c50b2009-10-10 19:34:06 +0200130 unsigned iweight,uweight, eweight; /* initial weight, user-specified weight, and effective weight */
Willy Tarreau417fae02007-03-25 21:16:40 +0200131 unsigned wscore; /* weight score, used during srv map computation */
Willy Tarreaub625a082007-11-26 01:15:43 +0100132 unsigned prev_eweight; /* eweight before last change */
133 unsigned rweight; /* remainer of weight in the current LB tree */
134 unsigned npos, lpos; /* next and last positions in the LB tree */
135 struct eb32_node lb_node; /* node used for tree-based load balancing */
136 struct eb_root *lb_tree; /* we want to know in what tree the server is */
137 struct server *next_full; /* next server in the temporary full list */
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200138 unsigned lb_nodes_tot; /* number of allocated lb_nodes (C-HASH) */
139 unsigned lb_nodes_now; /* number of lb_nodes placed in the tree (C-HASH) */
140 struct tree_occ *lb_nodes; /* lb_nodes_tot * struct tree_occ */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200141
Willy Tarreau7b815632011-10-21 18:51:57 +0200142 /* warning, these structs are huge, keep them at the bottom */
143 struct sockaddr_storage addr; /* the address to connect to */
144 struct sockaddr_storage source_addr; /* the address to which we want to bind for connect() */
145#if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_LINUX_TPROXY)
146 struct sockaddr_storage tproxy_addr; /* non-local address we want to bind to for connect() */
147 char *bind_hdr_name; /* bind to this header name if defined */
148 int bind_hdr_len; /* length of the name of the header above */
149 int bind_hdr_occ; /* occurrence number of header above: >0 = from first, <0 = from end, 0=disabled */
150#endif
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200151 unsigned down_time; /* total time the server was down */
152 time_t last_change; /* last time, when the state was changed */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200153 struct timeval check_start; /* last health check start time */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100154 long check_duration; /* time in ms took to finish last health check */
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200155 short check_status, check_code; /* check result, check code */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100156 char check_desc[HCHK_DESC_LEN]; /* health check descritpion */
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200157
Willy Tarreauf09c6602012-02-13 17:12:08 +0100158 int puid; /* proxy-unique server ID, used for SNMP, and "first" LB algo */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200159
Nick Chalk57b1bf72010-03-16 15:50:46 +0000160 char *check_data; /* storage of partial check results */
161 int check_data_len; /* length of partial check results stored in check_data */
162
Willy Tarreau90a570f2009-10-04 20:54:54 +0200163 struct {
164 const char *file; /* file where the section appears */
165 int line; /* line where the section appears */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +0200166 struct eb32_node id; /* place in the tree of used IDs */
Willy Tarreau90a570f2009-10-04 20:54:54 +0200167 } conf; /* config information */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200168};
169
170
171#endif /* _TYPES_SERVER_H */
172
173/*
174 * Local variables:
175 * c-indent-level: 8
176 * c-basic-offset: 8
177 * End:
178 */