blob: a2e11c30e1c3fb8c1f5d228c9710b5146e3c13b6 [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
Emeric Brunc6545ac2012-05-18 15:46:21 +020028#ifdef USE_OPENSSL
29#include <openssl/ssl.h>
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +020030#include <types/ssl_sock.h>
Emeric Brunc6545ac2012-05-18 15:46:21 +020031#endif
32
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020033#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020034#include <common/mini-clist.h>
Christopher Faulet29f77e82017-06-08 14:04:45 +020035#include <common/hathreads.h>
36
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010037#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
Willy Tarreauda92e2f2012-07-06 09:40:59 +020039#include <types/connection.h>
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +020040#include <types/counters.h>
Thierry Fournierada34842016-02-17 21:25:09 +010041#include <types/dns.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010042#include <types/freq_ctr.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010043#include <types/obj_type.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#include <types/proxy.h>
45#include <types/queue.h>
46#include <types/task.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020047#include <types/checks.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020048
49
Godbachf2dd68d2014-12-10 10:21:30 +080050/* server states. Only SRV_ST_STOPPED indicates a down server. */
Willy Tarreauc93cd162014-05-13 15:54:22 +020051enum srv_state {
Willy Tarreau892337c2014-05-13 23:41:20 +020052 SRV_ST_STOPPED = 0, /* the server is down. Please keep set to zero. */
53 SRV_ST_STARTING, /* the server is warming up (up but throttled) */
54 SRV_ST_RUNNING, /* the server is fully up */
55 SRV_ST_STOPPING, /* the server is up but soft-stopping (eg: 404) */
Willy Tarreaud7e33bb2017-11-26 07:26:48 +010056} __attribute__((packed));
Willy Tarreauc93cd162014-05-13 15:54:22 +020057
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +020058/* Administrative status : a server runs in one of these 3 stats :
59 * - READY : normal mode
60 * - DRAIN : takes no new visitor, equivalent to weight == 0
61 * - MAINT : maintenance mode, no more traffic nor health checks.
62 *
63 * Each server may be in maintenance by itself or may inherit this status from
64 * another server it tracks. It can also be in drain mode by itself or inherit
65 * it from another server. Let's store these origins here as flags. These flags
66 * are combined this way :
67 *
68 * FMAINT IMAINT FDRAIN IDRAIN Resulting state
69 * 0 0 0 0 READY
70 * 0 0 0 1 DRAIN
71 * 0 0 1 x DRAIN
72 * 0 1 x x MAINT
73 * 1 x x x MAINT
74 *
75 * This can be simplified this way :
76 *
77 * state_str = (state & MAINT) ? "MAINT" : (state & DRAIN) : "DRAIN" : "READY"
Willy Tarreau20125212014-05-13 19:44:56 +020078 */
79enum srv_admin {
Baptiste Assmann9f5ada32015-08-08 15:49:13 +020080 SRV_ADMF_FMAINT = 0x01, /* the server was explicitly forced into maintenance */
81 SRV_ADMF_IMAINT = 0x02, /* the server has inherited the maintenance status from a tracked server */
Baptiste Assmann89aa7f32016-11-02 21:31:27 +010082 SRV_ADMF_MAINT = 0x23, /* mask to check if any maintenance flag is present */
Baptiste Assmann9f5ada32015-08-08 15:49:13 +020083 SRV_ADMF_CMAINT = 0x04, /* the server is in maintenance because of the configuration */
Baptiste Assmann9f5ada32015-08-08 15:49:13 +020084 SRV_ADMF_FDRAIN = 0x08, /* the server was explicitly forced into drain state */
85 SRV_ADMF_IDRAIN = 0x10, /* the server has inherited the drain status from a tracked server */
86 SRV_ADMF_DRAIN = 0x18, /* mask to check if any drain flag is present */
Baptiste Assmann89aa7f32016-11-02 21:31:27 +010087 SRV_ADMF_RMAINT = 0x20, /* the server is down because of an IP address resolution failure */
Frédéric Lécailleb418c122017-04-26 11:24:02 +020088 SRV_ADMF_HMAINT = 0x40, /* the server FQDN has been set from socket stats */
Willy Tarreaud7e33bb2017-11-26 07:26:48 +010089} __attribute__((packed));
Willy Tarreau20125212014-05-13 19:44:56 +020090
Baptiste Assmann25938272016-09-21 20:26:16 +020091/* options for servers' "init-addr" parameter
92 * this parameter may be used to drive HAProxy's behavior when parsing a server
93 * address at start up time.
94 * These values are stored as a list into an integer ordered from first to last
95 * starting with the lowest to highest bits. SRV_IADDR_END (0) is used to
96 * indicate the end of the list. 3 bits are enough to store each value.
97 */
98enum srv_initaddr {
99 SRV_IADDR_END = 0, /* end of the list */
100 SRV_IADDR_NONE = 1, /* the server won't have any address at start up */
101 SRV_IADDR_LIBC = 2, /* address set using the libc DNS resolver */
102 SRV_IADDR_LAST = 3, /* we set the IP address found in state-file for this server */
Willy Tarreau4310d362016-11-02 15:05:56 +0100103 SRV_IADDR_IP = 4, /* we set an arbitrary IP address to the server */
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100104} __attribute__((packed));
Baptiste Assmann25938272016-09-21 20:26:16 +0200105
Baptiste Assmann41472f42015-05-08 23:34:06 +0200106/* server-state-file version */
107#define SRV_STATE_FILE_VERSION 1
108#define SRV_STATE_FILE_VERSION_MIN 1
109#define SRV_STATE_FILE_VERSION_MAX 1
Frédéric Lécailleb418c122017-04-26 11:24:02 +0200110#define SRV_STATE_FILE_FIELD_NAMES \
111 "be_id " \
112 "be_name " \
113 "srv_id " \
114 "srv_name " \
115 "srv_addr " \
116 "srv_op_state " \
117 "srv_admin_state " \
118 "srv_uweight " \
119 "srv_iweight " \
120 "srv_time_since_last_change " \
121 "srv_check_status " \
122 "srv_check_result " \
123 "srv_check_health " \
124 "srv_check_state " \
125 "srv_agent_state " \
126 "bk_f_forced_id " \
127 "srv_f_forced_id " \
Frédéric Lécaille31694712017-08-01 08:47:19 +0200128 "srv_fqdn " \
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +0200129 "srv_port " \
130 "srvrecord"
Frédéric Lécailleb418c122017-04-26 11:24:02 +0200131
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +0200132#define SRV_STATE_FILE_MAX_FIELDS 20
133#define SRV_STATE_FILE_NB_FIELDS_VERSION_1 19
Baptiste Assmann41472f42015-05-08 23:34:06 +0200134#define SRV_STATE_LINE_MAXLEN 512
135
Willy Tarreauc0752562017-01-23 21:38:57 +0100136/* server flags -- 32 bits */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200137#define SRV_F_BACKUP 0x0001 /* this server is a backup server */
138#define SRV_F_MAPPORTS 0x0002 /* this server uses mapped ports */
139#define SRV_F_NON_STICK 0x0004 /* never add connections allocated to this server to a stick table */
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100140#define SRV_F_USE_NS_FROM_PP 0x0008 /* use namespace associated with connection if present */
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200141#define SRV_F_FORCED_ID 0x0010 /* server's ID was forced in the configuration */
Baptiste Assmann6b453f12016-08-11 23:12:18 +0200142#define SRV_F_CHECKADDR 0x0020 /* this server has a check addr configured */
143#define SRV_F_CHECKPORT 0x0040 /* this server has a check port configured */
144#define SRV_F_AGENTADDR 0x0080 /* this server has a agent addr configured */
Olivier Houchard4e694042017-03-14 20:01:29 +0100145#define SRV_F_COOKIESET 0x0100 /* this server has a cookie configured, so don't generate dynamic cookies */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200146
David Safb76832014-05-08 23:42:08 -0400147/* configured server options for send-proxy (server->pp_opts) */
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100148#define SRV_PP_V1 0x0001 /* proxy protocol version 1 */
149#define SRV_PP_V2 0x0002 /* proxy protocol version 2 */
150#define SRV_PP_V2_SSL 0x0004 /* proxy protocol version 2 with SSL */
151#define SRV_PP_V2_SSL_CN 0x0008 /* proxy protocol version 2 with CN */
152#define SRV_PP_V2_SSL_KEY_ALG 0x0010 /* proxy protocol version 2 with cert key algorithm */
153#define SRV_PP_V2_SSL_SIG_ALG 0x0020 /* proxy protocol version 2 with cert signature algorithm */
154#define SRV_PP_V2_SSL_CIPHER 0x0040 /* proxy protocol version 2 with cipher used */
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100155#define SRV_PP_V2_AUTHORITY 0x0080 /* proxy protocol version 2 with authority */
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100156#define SRV_PP_V2_CRC32C 0x0100 /* proxy protocol version 2 with crc32c */
David Safb76832014-05-08 23:42:08 -0400157
Willy Tarreaubaaee002006-06-26 02:48:02 +0200158/* function which act on servers need to return various errors */
159#define SRV_STATUS_OK 0 /* everything is OK. */
160#define SRV_STATUS_INTERNAL 1 /* other unrecoverable errors. */
161#define SRV_STATUS_NOSRV 2 /* no server is available */
162#define SRV_STATUS_FULL 3 /* the/all server(s) are saturated */
163#define SRV_STATUS_QUEUED 4 /* the/all server(s) are saturated but the connection was queued */
164
Willy Tarreaub698f0f2007-12-02 11:01:23 +0100165/* various constants */
166#define SRV_UWGHT_RANGE 256
Godbacha34bdc02013-07-22 07:44:53 +0800167#define SRV_UWGHT_MAX (SRV_UWGHT_RANGE)
Willy Tarreaub698f0f2007-12-02 11:01:23 +0100168#define SRV_EWGHT_RANGE (SRV_UWGHT_RANGE * BE_WEIGHT_SCALE)
169#define SRV_EWGHT_MAX (SRV_UWGHT_MAX * BE_WEIGHT_SCALE)
170
Emeric Brun89675492012-10-05 13:48:26 +0200171#ifdef USE_OPENSSL
172/* server ssl options */
173#define SRV_SSL_O_NONE 0x0000
Emeric Brunf9c5c472012-10-11 15:28:34 +0200174#define SRV_SSL_O_NO_TLS_TICKETS 0x0100 /* disable session resumption tickets */
Willy Tarreau2a3fb1c2015-02-05 16:47:07 +0100175#define SRV_SSL_O_NO_REUSE 0x200 /* disable session reuse */
Olivier Houchard522eea72017-11-03 16:27:47 +0100176#define SRV_SSL_O_EARLY_DATA 0x400 /* Allow using early data */
Emeric Brun89675492012-10-05 13:48:26 +0200177#endif
178
Simon Horman98637e52014-06-20 12:30:16 +0900179struct pid_list {
180 struct list list;
181 pid_t pid;
182 struct task *t;
183 int status;
184 int exited;
185};
186
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200187/* A tree occurrence is a descriptor of a place in a tree, with a pointer back
188 * to the server itself.
189 */
190struct server;
191struct tree_occ {
192 struct server *server;
193 struct eb32_node node;
194};
195
Willy Tarreaubaaee002006-06-26 02:48:02 +0200196struct server {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100197 enum obj_type obj_type; /* object type == OBJ_TYPE_SERVER */
Emeric Brun52a91d32017-08-31 14:41:55 +0200198 enum srv_state next_state, cur_state; /* server state among SRV_ST_* */
199 enum srv_admin next_admin, cur_admin; /* server maintenance status : SRV_ADMF_* */
Emmanuel Hocdet49529852018-03-19 18:14:02 +0100200 unsigned char use_ssl; /* ssl enabled */
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100201 unsigned int pp_opts; /* proxy protocol options (SRV_PP_*) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202 struct server *next;
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200203 int cklen; /* the len of the cookie, to speed up checks */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100204 int rdr_len; /* the length of the redirection prefix */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200205 char *cookie; /* the id set in the cookie */
Willy Tarreau21d2af32008-02-14 20:25:24 +0100206 char *rdr_pfx; /* the redirection prefix */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200207
208 struct proxy *proxy; /* the proxy this server belongs to */
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200209 struct mux_proto_list *mux_proto; /* the mux to use for all outgoing connections (specified by the "proto" keyword) */
Willy Tarreau7c669d72008-06-20 15:04:11 +0200210 int served; /* # of active sessions currently being served (ie not pending) */
Willy Tarreauac68c5d2009-10-04 23:12:44 +0200211 int cur_sess; /* number of currently active sessions (including syn_sent) */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200212 unsigned maxconn, minconn; /* max # of active sessions (0 = unlimited), min# for dynamic limit. */
Willy Tarreauac68c5d2009-10-04 23:12:44 +0200213 int nbpend; /* number of pending connections */
Patrick Hemmerda282f42018-05-11 12:52:31 -0400214 unsigned int queue_idx; /* count of pending connections which have been de-queued */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +0200215 int maxqueue; /* maximum number of pending connections allowed */
Willy Tarreau7b815632011-10-21 18:51:57 +0200216 struct freq_ctr sess_per_sec; /* sessions per second on this server */
Willy Tarreauae9bea02016-11-25 14:44:52 +0100217 struct be_counters counters; /* statistics counters */
Willy Tarreauac68c5d2009-10-04 23:12:44 +0200218
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400219 struct eb_root pendconns; /* pending connections */
Simon Hormanaf514952011-06-21 14:34:57 +0900220 struct list actconns; /* active connections */
Christopher Faulet40a007c2017-07-03 15:41:01 +0200221 struct list *priv_conns; /* private idle connections attached to stream interfaces */
222 struct list *idle_conns; /* sharable idle connections attached or not to a stream interface */
223 struct list *safe_conns; /* safe idle connections attached to stream interfaces, shared */
Willy Tarreau2e993902011-10-31 11:53:20 +0100224 struct task *warmup; /* the task dedicated to the warmup when slowstart is set */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200225
Willy Tarreauef9a3602012-12-08 22:29:20 +0100226 struct conn_src conn_src; /* connection source settings */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200227
Willy Tarreau1a53a3a2013-12-11 15:27:05 +0100228 struct server *track; /* the server we're currently tracking, if any */
229 struct server *trackers; /* the list of servers tracking us, if any */
230 struct server *tracknext; /* next server tracking <track> in <track>'s trackers list */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100231 char *trackit; /* temporary variable to make assignment deferrable */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100232 int consecutive_errors; /* current number of consecutive errors */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100233 int consecutive_errors_limit; /* number of consecutive errors that triggers an event */
234 short observe, onerror; /* observing mode: one of HANA_OBS_*; what to do on error: on of ANA_ONERR_* */
Justin Karnegeseb2c24a2012-05-24 15:28:52 -0700235 short onmarkeddown; /* what to do when marked down: one of HANA_ONMARKEDDOWN_* */
236 short onmarkedup; /* what to do when marked up: one of HANA_ONMARKEDUP_* */
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100237 unsigned int flags; /* server flags (SRV_F_*) */
Willy Tarreau9909fc12007-11-30 17:42:05 +0100238 int slowstart; /* slowstart time in seconds (ms in the conf) */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200239
240 char *id; /* just for identification */
Emeric Brun52a91d32017-08-31 14:41:55 +0200241 unsigned iweight,uweight, cur_eweight; /* initial weight, user-specified weight, and effective weight */
Willy Tarreau417fae02007-03-25 21:16:40 +0200242 unsigned wscore; /* weight score, used during srv map computation */
Emeric Brun52a91d32017-08-31 14:41:55 +0200243 unsigned next_eweight; /* next pending eweight to commit */
Willy Tarreaub625a082007-11-26 01:15:43 +0100244 unsigned rweight; /* remainer of weight in the current LB tree */
Andrew Rodland13d5ebb2016-10-25 12:49:45 -0400245 unsigned cumulative_weight; /* weight of servers prior to this one in the same group, for chash balancing */
Willy Tarreaub625a082007-11-26 01:15:43 +0100246 unsigned npos, lpos; /* next and last positions in the LB tree */
247 struct eb32_node lb_node; /* node used for tree-based load balancing */
248 struct eb_root *lb_tree; /* we want to know in what tree the server is */
249 struct server *next_full; /* next server in the temporary full list */
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200250 unsigned lb_nodes_tot; /* number of allocated lb_nodes (C-HASH) */
251 unsigned lb_nodes_now; /* number of lb_nodes placed in the tree (C-HASH) */
252 struct tree_occ *lb_nodes; /* lb_nodes_tot * struct tree_occ */
Willy Tarreau91b6f322007-03-25 21:03:01 +0200253
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100254 const struct netns_entry *netns; /* contains network namespace name or NULL. Network namespace comes from configuration */
Willy Tarreau7b815632011-10-21 18:51:57 +0200255 /* warning, these structs are huge, keep them at the bottom */
Willy Tarreau04276f32017-01-06 17:41:29 +0100256 struct sockaddr_storage addr; /* the address to connect to, doesn't include the port */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200257 struct xprt_ops *xprt; /* transport-layer operations */
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100258 unsigned int svc_port; /* the port to connect to (for relevant families) */
Krzysztof Oledzki85130942007-10-22 16:21:10 +0200259 unsigned down_time; /* total time the server was down */
260 time_t last_change; /* last time, when the state was changed */
261
Willy Tarreauf09c6602012-02-13 17:12:08 +0100262 int puid; /* proxy-unique server ID, used for SNMP, and "first" LB algo */
Willy Tarreau163d4622015-10-13 16:16:41 +0200263 int tcp_ut; /* for TCP, user timeout */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200264
Frédéric Lécaille65aa3562017-03-14 11:20:13 +0100265 int do_check; /* temporary variable used during parsing to denote if health checks must be enabled */
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +0100266 int do_agent; /* temporary variable used during parsing to denote if an auxiliary agent check must be enabled */
Simon Horman66183002013-02-23 10:16:43 +0900267 struct check check; /* health-check specific configuration */
Simon Hormand60d6912013-11-25 10:46:36 +0900268 struct check agent; /* agent specific configuration */
Nick Chalk57b1bf72010-03-16 15:50:46 +0000269
Baptiste Assmann201c07f2017-05-22 15:17:15 +0200270 struct dns_requester *dns_requester; /* used to link a server to its DNS resolution */
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200271 char *resolvers_id; /* resolvers section used by this server */
Baptiste Assmann42746372017-05-03 12:12:02 +0200272 struct dns_resolvers *resolvers; /* pointer to the resolvers structure used by this server */
Baptiste Assmann83cbaa52016-11-02 15:34:05 +0100273 char *lastaddr; /* the address string provided by the server-state file */
Thierry Fournierada34842016-02-17 21:25:09 +0100274 struct dns_options dns_opts;
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100275 int hostname_dn_len; /* sting lenght of the server hostname in Domain Name format */
276 char *hostname_dn; /* server hostname in Domain Name format */
277 char *hostname; /* server hostname */
Willy Tarreau4310d362016-11-02 15:05:56 +0100278 struct sockaddr_storage init_addr; /* plain IP address specified on the init-addr line */
Baptiste Assmann25938272016-09-21 20:26:16 +0200279 unsigned int init_addr_methods; /* initial address setting, 3-bit per method, ends at 0, enough to store 10 entries */
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200280
Emeric Brunc6545ac2012-05-18 15:46:21 +0200281#ifdef USE_OPENSSL
Frédéric Lécaille9a146de2017-03-20 14:54:41 +0100282 char *sni_expr; /* Temporary variable to store a sample expression for SNI */
Emeric Brunc6545ac2012-05-18 15:46:21 +0200283 struct {
284 SSL_CTX *ctx;
Olivier Houcharde6060c52017-11-16 17:42:52 +0100285 struct {
286 unsigned char *ptr;
287 int size;
288 int allocated_size;
289 } * reused_sess;
Willy Tarreaud7aacbf2012-09-03 23:34:19 +0200290 char *ciphers; /* cipher suite to use if non-null */
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200291#if (OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL && !defined LIBRESSL_VERSION_NUMBER)
292 char *ciphersuites; /* TLS 1.3 cipher suite to use if non-null */
293#endif
Emeric Brun89675492012-10-05 13:48:26 +0200294 int options; /* ssl options */
Emeric Brunef42d922012-10-11 16:11:36 +0200295 int verify; /* verify method (set of SSL_VERIFY_* flags) */
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100296 struct tls_version_filter methods; /* ssl methods */
Evan Broderbe554312013-06-27 00:05:25 -0700297 char *verify_host; /* hostname of certificate must match this host */
Emeric Brunef42d922012-10-11 16:11:36 +0200298 char *ca_file; /* CAfile to use on verify */
299 char *crl_file; /* CRLfile to use on verify */
Emeric Bruna7aa3092012-10-26 12:58:00 +0200300 char *client_crt; /* client certificate to send */
Willy Tarreau732eac42015-07-09 11:40:25 +0200301 struct sample_expr *sni; /* sample expression for SNI */
Emeric Brunc6545ac2012-05-18 15:46:21 +0200302 } ssl_ctx;
303#endif
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100304 struct dns_srvrq *srvrq; /* Pointer representing the DNS SRV requeest, if any */
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100305 __decl_hathreads(HA_SPINLOCK_T lock);
Willy Tarreau90a570f2009-10-04 20:54:54 +0200306 struct {
307 const char *file; /* file where the section appears */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +0200308 struct eb32_node id; /* place in the tree of used IDs */
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100309 int line; /* line where the section appears */
Willy Tarreau90a570f2009-10-04 20:54:54 +0200310 } conf; /* config information */
Frédéric Lécailleb82f7422017-04-13 18:24:23 +0200311 /* Template information used only for server objects which
312 * serve as template filled at parsing time and used during
313 * server allocations from server templates.
314 */
315 struct {
316 char *prefix;
317 int nb_low;
318 int nb_high;
319 } tmpl_info;
Emeric Brun5a133512017-10-19 14:42:30 +0200320 struct {
Emeric Brun5a133512017-10-19 14:42:30 +0200321 long duration;
Willy Tarreaud7e33bb2017-11-26 07:26:48 +0100322 short status, code;
323 char reason[128];
Emeric Brun5a133512017-10-19 14:42:30 +0200324 } op_st_chg; /* operational status change's reason */
Emeric Brun64cc49c2017-10-03 14:46:45 +0200325 char adm_st_chg_cause[48]; /* adminstrative status change's cause */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326};
327
Willy Tarreau21faa912012-10-10 08:27:36 +0200328/* Descriptor for a "server" keyword. The ->parse() function returns 0 in case of
329 * success, or a combination of ERR_* flags if an error is encountered. The
330 * function pointer can be NULL if not implemented. The function also has an
331 * access to the current "server" config line. The ->skip value tells the parser
332 * how many words have to be skipped after the keyword. If the function needs to
333 * parse more keywords, it needs to update cur_arg.
334 */
335struct srv_kw {
336 const char *kw;
337 int (*parse)(char **args, int *cur_arg, struct proxy *px, struct server *srv, char **err);
338 int skip; /* nb min of args to skip, for use when kw is not handled */
339 int default_ok; /* non-zero if kw is supported in default-server section */
340};
341
342/*
343 * A keyword list. It is a NULL-terminated array of keywords. It embeds a
344 * struct list in order to be linked to other lists, allowing it to easily
345 * be declared where it is needed, and linked without duplicating data nor
346 * allocating memory. It is also possible to indicate a scope for the keywords.
347 */
348struct srv_kw_list {
349 const char *scope;
350 struct list list;
351 struct srv_kw kw[VAR_ARRAY];
352};
Willy Tarreaubaaee002006-06-26 02:48:02 +0200353
354#endif /* _TYPES_SERVER_H */
355
356/*
357 * Local variables:
358 * c-indent-level: 8
359 * c-basic-offset: 8
360 * End:
361 */