blob: 6662d59ff135a3f446eb03ed5684cd060baf7cd9 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau49801602020-06-04 22:50:02 +02002 * include/haproxy/backend.h
Willy Tarreau62c3be22012-01-20 13:12:32 +01003 * Functions prototypes for the backend.
4 *
5 * Copyright (C) 2000-2012 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 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreau49801602020-06-04 22:50:02 +020022#ifndef _HAPROXY_BACKEND_H
23#define _HAPROXY_BACKEND_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreau49801602020-06-04 22:50:02 +020025#include <haproxy/backend-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020026#include <haproxy/api.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020027#include <haproxy/proxy-t.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020028#include <haproxy/time.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020029#include <types/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020030#include <types/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreau87b09662015-04-03 00:22:06 +020032int assign_server(struct stream *s);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +020033int assign_server_address(struct stream *s);
Willy Tarreau87b09662015-04-03 00:22:06 +020034int assign_server_and_queue(struct stream *s);
35int connect_server(struct stream *s);
36int srv_redispatch_connect(struct stream *t);
Willy Tarreau3a9312a2020-01-09 18:43:15 +010037void back_try_conn_req(struct stream *s);
38void back_handle_st_req(struct stream *s);
39void back_handle_st_con(struct stream *s);
40void back_handle_st_rdy(struct stream *s);
41void back_handle_st_cer(struct stream *s);
42
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +010043const char *backend_lb_algo_str(int algo);
Willy Tarreaua93c74b2012-05-08 18:14:39 +020044int backend_parse_balance(const char **args, char **err, struct proxy *curproxy);
Willy Tarreau87b09662015-04-03 00:22:06 +020045int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit);
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
Krzysztof Oledzki85130942007-10-22 16:21:10 +020047int be_downtime(struct proxy *px);
Willy Tarreauc5d9c802009-10-01 09:17:05 +020048void recount_servers(struct proxy *px);
49void update_backend_weight(struct proxy *px);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050050int be_lastsession(const struct proxy *be);
51
Nenad Merdanovicb7e7c472017-03-12 21:56:55 +010052/* Returns number of usable servers in backend */
53static inline int be_usable_srv(struct proxy *be)
54{
55 if (be->state == PR_STSTOPPED)
56 return 0;
57 else if (be->srv_act)
58 return be->srv_act;
59 else if (be->lbprm.fbck)
60 return 1;
61 else
62 return be->srv_bck;
63}
64
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050065/* set the time of last session on the backend */
Willy Tarreau0e492e22019-04-15 21:25:03 +020066static inline void be_set_sess_last(struct proxy *be)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050067{
68 be->be_counters.last_sess = now.tv_sec;
69}
Willy Tarreauc5d9c802009-10-01 09:17:05 +020070
Emeric Brun52a91d32017-08-31 14:41:55 +020071/* This function returns non-zero if the designated server will be
72 * usable for LB according to pending weight and state.
73 * Otherwise it returns 0.
Willy Tarreauc5d9c802009-10-01 09:17:05 +020074 */
Emeric Brun52a91d32017-08-31 14:41:55 +020075static inline int srv_willbe_usable(const struct server *srv)
Willy Tarreau87eb1d62014-05-13 18:51:40 +020076{
Emeric Brun52a91d32017-08-31 14:41:55 +020077 enum srv_state state = srv->next_state;
Willy Tarreau87eb1d62014-05-13 18:51:40 +020078
Emeric Brun52a91d32017-08-31 14:41:55 +020079 if (!srv->next_eweight)
Willy Tarreau87eb1d62014-05-13 18:51:40 +020080 return 0;
Emeric Brun52a91d32017-08-31 14:41:55 +020081 if (srv->next_admin & SRV_ADMF_MAINT)
Willy Tarreau20125212014-05-13 19:44:56 +020082 return 0;
Emeric Brun52a91d32017-08-31 14:41:55 +020083 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +020084 return 0;
Willy Tarreau892337c2014-05-13 23:41:20 +020085 switch (state) {
86 case SRV_ST_STARTING:
87 case SRV_ST_RUNNING:
88 return 1;
89 case SRV_ST_STOPPING:
90 case SRV_ST_STOPPED:
Willy Tarreau87eb1d62014-05-13 18:51:40 +020091 return 0;
Willy Tarreau892337c2014-05-13 23:41:20 +020092 }
93 return 0;
Willy Tarreau87eb1d62014-05-13 18:51:40 +020094}
95
96/* This function returns non-zero if the designated server was usable for LB
Emeric Brun52a91d32017-08-31 14:41:55 +020097 * according to its current weight and state. Otherwise it returns 0.
Willy Tarreau87eb1d62014-05-13 18:51:40 +020098 */
Emeric Brun52a91d32017-08-31 14:41:55 +020099static inline int srv_currently_usable(const struct server *srv)
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200100{
Emeric Brun52a91d32017-08-31 14:41:55 +0200101 enum srv_state state = srv->cur_state;
Willy Tarreau87eb1d62014-05-13 18:51:40 +0200102
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 if (!srv->cur_eweight)
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200104 return 0;
Emeric Brun52a91d32017-08-31 14:41:55 +0200105 if (srv->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau20125212014-05-13 19:44:56 +0200106 return 0;
Emeric Brun52a91d32017-08-31 14:41:55 +0200107 if (srv->cur_admin & SRV_ADMF_DRAIN)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200108 return 0;
Willy Tarreau892337c2014-05-13 23:41:20 +0200109 switch (state) {
110 case SRV_ST_STARTING:
111 case SRV_ST_RUNNING:
112 return 1;
113 case SRV_ST_STOPPING:
114 case SRV_ST_STOPPED:
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200115 return 0;
Willy Tarreau892337c2014-05-13 23:41:20 +0200116 }
117 return 0;
Willy Tarreauc5d9c802009-10-01 09:17:05 +0200118}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119
Emeric Brun52a91d32017-08-31 14:41:55 +0200120/* This function commits the next server state and weight onto the current
Willy Tarreau9df86f92019-04-16 11:21:14 +0200121 * ones in order to detect future changes. The server's lock is expected to
122 * be held when calling this function.
Willy Tarreauc5150da2014-05-13 19:27:31 +0200123 */
124static inline void srv_lb_commit_status(struct server *srv)
125{
Emeric Brun52a91d32017-08-31 14:41:55 +0200126 srv->cur_state = srv->next_state;
127 srv->cur_admin = srv->next_admin;
128 srv->cur_eweight = srv->next_eweight;
Willy Tarreauc5150da2014-05-13 19:27:31 +0200129}
130
131/* This function returns true when a server has experienced a change since last
132 * commit on its state or weight, otherwise zero.
133 */
134static inline int srv_lb_status_changed(const struct server *srv)
135{
Emeric Brun52a91d32017-08-31 14:41:55 +0200136 return (srv->next_state != srv->cur_state ||
137 srv->next_admin != srv->cur_admin ||
138 srv->next_eweight != srv->cur_eweight);
Willy Tarreauc5150da2014-05-13 19:27:31 +0200139}
140
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200141/* sends a log message when a backend goes down, and also sets last
142 * change date.
143 */
144void set_backend_down(struct proxy *be);
145
Willy Tarreau49801602020-06-04 22:50:02 +0200146#endif /* _HAPROXY_BACKEND_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147
148/*
149 * Local variables:
150 * c-indent-level: 8
151 * c-basic-offset: 8
152 * End:
153 */