blob: 36ae7cb404b4f16230e7e2c220566c645b0a06bf [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/types/server.h
3 This file defines everything related to servers.
4
Willy Tarreaub625a082007-11-26 01:15:43 +01005 Copyright (C) 2000-2007 Willy Tarreau - w@1wt.eu
Willy Tarreaubaaee002006-06-26 02:48:02 +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*/
21
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 Tarreaub625a082007-11-26 01:15:43 +010029#include <common/eb32tree.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/mini-clist.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
32#include <types/buffers.h>
33#include <types/proxy.h>
34#include <types/queue.h>
35#include <types/task.h>
36
37
38/* server flags */
Willy Tarreau77074d52006-11-12 23:57:19 +010039#define SRV_RUNNING 0x0001 /* the server is UP */
40#define SRV_BACKUP 0x0002 /* this server is a backup server */
41#define SRV_MAPPORTS 0x0004 /* this server uses mapped ports */
42#define SRV_BIND_SRC 0x0008 /* this server uses a specific source address */
43#define SRV_CHECKED 0x0010 /* this server needs to be checked */
Willy Tarreau48494c02007-11-30 10:41:39 +010044#define SRV_GOINGDOWN 0x0020 /* this server says that it's going down (404) */
Willy Tarreau9909fc12007-11-30 17:42:05 +010045#define SRV_WARMINGUP 0x0040 /* this server is warming up after a failure */
Willy Tarreau77074d52006-11-12 23:57:19 +010046
47#define SRV_TPROXY_ADDR 0x0020 /* bind to this non-local address to reach this server */
48#define SRV_TPROXY_CIP 0x0040 /* bind to the client's IP address to reach this server */
49#define SRV_TPROXY_CLI 0x0060 /* bind to the client's IP+port to reach this server */
50#define SRV_TPROXY_MASK 0x0060 /* bind to a non-local address to reach this server */
Willy Tarreaubaaee002006-06-26 02:48:02 +020051
52/* function which act on servers need to return various errors */
53#define SRV_STATUS_OK 0 /* everything is OK. */
54#define SRV_STATUS_INTERNAL 1 /* other unrecoverable errors. */
55#define SRV_STATUS_NOSRV 2 /* no server is available */
56#define SRV_STATUS_FULL 3 /* the/all server(s) are saturated */
57#define SRV_STATUS_QUEUED 4 /* the/all server(s) are saturated but the connection was queued */
58
Willy Tarreauc7dd71a2007-11-30 08:33:21 +010059/* bits for s->result used for health-checks */
60#define SRV_CHK_UNKNOWN 0x0000 /* initialized to this by default */
61#define SRV_CHK_ERROR 0x0001 /* error encountered during the check; has precedence */
62#define SRV_CHK_RUNNING 0x0002 /* server seen as running */
63#define SRV_CHK_DISABLE 0x0004 /* server returned a "disable" code */
Willy Tarreaubaaee002006-06-26 02:48:02 +020064
65struct server {
66 struct server *next;
67 int state; /* server state (SRV_*) */
Willy Tarreaub625a082007-11-26 01:15:43 +010068 int prev_state; /* server state before last change (SRV_*) */
Willy Tarreaubaaee002006-06-26 02:48:02 +020069 int cklen; /* the len of the cookie, to speed up checks */
Willy Tarreau91b6f322007-03-25 21:03:01 +020070 char *cookie; /* the id set in the cookie */
71
72 struct proxy *proxy; /* the proxy this server belongs to */
73 int cur_sess, cur_sess_max; /* number of currently active sessions (including syn_sent) */
74 unsigned maxconn, minconn; /* max # of active sessions (0 = unlimited), min# for dynamic limit. */
75 int nbpend, nbpend_max; /* number of pending connections */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +020076 int maxqueue; /* maximum number of pending connections allowed */
Willy Tarreau91b6f322007-03-25 21:03:01 +020077 struct list pendconns; /* pending connections */
78 struct task *queue_mgt; /* the task associated to the queue processing */
79
Willy Tarreaubaaee002006-06-26 02:48:02 +020080 struct sockaddr_in addr; /* the address to connect to */
Willy Tarreau91b6f322007-03-25 21:03:01 +020081 struct sockaddr_in source_addr; /* the address to which we want to bind for connect() */
Willy Tarreau77074d52006-11-12 23:57:19 +010082#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau91b6f322007-03-25 21:03:01 +020083 struct sockaddr_in tproxy_addr; /* non-local address we want to bind to for connect() */
Willy Tarreau77074d52006-11-12 23:57:19 +010084#endif
Willy Tarreau91b6f322007-03-25 21:03:01 +020085
Willy Tarreau0f03c6f2007-03-25 20:46:19 +020086 struct sockaddr_in check_addr; /* the address to check, if different from <addr> */
Willy Tarreaubaaee002006-06-26 02:48:02 +020087 short check_port; /* the port to use for the health checks */
88 int health; /* 0->rise-1 = bad; rise->rise+fall-1 = good */
Willy Tarreau91b6f322007-03-25 21:03:01 +020089 int rise, fall; /* time in iterations */
Willy Tarreaubaaee002006-06-26 02:48:02 +020090 int inter; /* time in milliseconds */
Willy Tarreau9909fc12007-11-30 17:42:05 +010091 int slowstart; /* slowstart time in seconds (ms in the conf) */
Willy Tarreauc7dd71a2007-11-30 08:33:21 +010092 int result; /* health-check result : SRV_CHK_* */
Willy Tarreaubaaee002006-06-26 02:48:02 +020093 int curfd; /* file desc used for current test, or -1 if not in test */
Willy Tarreau91b6f322007-03-25 21:03:01 +020094
95 char *id; /* just for identification */
Willy Tarreau417fae02007-03-25 21:16:40 +020096 unsigned uweight, eweight; /* user-specified weight, and effective weight */
97 unsigned wscore; /* weight score, used during srv map computation */
Willy Tarreaub625a082007-11-26 01:15:43 +010098 unsigned prev_eweight; /* eweight before last change */
99 unsigned rweight; /* remainer of weight in the current LB tree */
100 unsigned npos, lpos; /* next and last positions in the LB tree */
101 struct eb32_node lb_node; /* node used for tree-based load balancing */
102 struct eb_root *lb_tree; /* we want to know in what tree the server is */
103 struct server *next_full; /* next server in the temporary full list */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200104
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105 unsigned failed_checks, down_trans; /* failed checks and up-down transitions */
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200106 unsigned down_time; /* total time the server was down */
107 time_t last_change; /* last time, when the state was changed */
108
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109 unsigned failed_conns, failed_resp; /* failed connect() and responses */
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +0200110 unsigned retries; /* retried connections */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200111 unsigned failed_secu; /* blocked responses because of security concerns */
112 unsigned cum_sess; /* cumulated number of sessions really sent to this server */
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200113
Willy Tarreau91b6f322007-03-25 21:03:01 +0200114 long long bytes_in; /* number of bytes transferred from the client to the server */
115 long long bytes_out; /* number of bytes transferred from the server to the client */
Willy Tarreaudcd47712007-11-04 23:35:08 +0100116 int puid; /* proxy-unique server ID, used for SNMP */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117};
118
119
120#endif /* _TYPES_SERVER_H */
121
122/*
123 * Local variables:
124 * c-indent-level: 8
125 * c-basic-offset: 8
126 * End:
127 */