haproxy/src/lb_ss.c
Maxime Henrion 87a4f6d47e MINOR: lb: make LB initialization even more declarative
This lets lb_ops specify the conditions necessary to bind to this set of
ops. The condition is expressed as a list of mask and match fields on
the algorithm flags. This is then used in proxy_finalize() to locate the
lb_ops corresponding to the current configuration, by iterating  over
the list of lb_ops structures. This list is implemented using the same
mechanisms used for configuration keywords: an INITCALL1 macro to a
registration function.

This also moves the lookup and property flags into the lb_ops structure
that were previously applied manually on a case by case basis.
2026-05-11 08:50:40 +02:00

194 lines
4.8 KiB
C

/*
* sticky load-balancing
*
* Copyright 2024 HAProxy Technologies
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <haproxy/api.h>
#include <haproxy/backend.h>
#include <haproxy/lb_ss.h>
#include <haproxy/list.h>
#include <haproxy/server-t.h>
/* This function elects a new stick server for proxy px.
*
* The lbprm's lock must be held.
*/
static void recalc_server_ss(struct proxy *px)
{
struct server *cur, *first;
int flag;
if (!px->lbprm.tot_used)
return; /* no server */
/* here we *know* that we have some servers */
if (px->srv_act)
flag = 0;
else
flag = SRV_F_BACKUP;
first = NULL;
for (cur = px->srv; cur; cur = cur->next) {
if ((cur->flags & SRV_F_BACKUP) == flag &&
srv_willbe_usable(cur)) {
first = cur;
break;
}
}
px->lbprm.ss.srv = first;
}
/* this function updates the stick server according to server <srv>'s new state.
*
* The server's lock must be held. The lbprm's lock will be used.
*/
static void ss_set_server_status_down(struct server *srv)
{
struct proxy *p = srv->proxy;
if (!srv_lb_status_changed(srv))
return;
if (srv_willbe_usable(srv))
goto out_update_state;
HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
if (!srv_currently_usable(srv))
/* server was already down */
goto out_update_backend;
if (srv->flags & SRV_F_BACKUP) {
p->lbprm.tot_wbck -= srv->cur_eweight;
p->srv_bck--;
} else {
p->lbprm.tot_wact -= srv->cur_eweight;
p->srv_act--;
}
if (srv == p->lbprm.ss.srv) {
/* sticked server is down, elect a new server
* that we will be sticking on.
*/
recalc_server_ss(p);
}
out_update_backend:
/* check/update tot_used, tot_weight */
update_backend_weight(p);
HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
out_update_state:
srv_lb_commit_status(srv);
}
/* This function updates the stick server according to server <srv>'s new state.
*
* The server's lock must be held. The lbprm's lock will be used.
*/
static void ss_set_server_status_up(struct server *srv)
{
struct proxy *p = srv->proxy;
if (!srv_lb_status_changed(srv))
return;
if (!srv_willbe_usable(srv))
goto out_update_state;
HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
if (srv_currently_usable(srv))
/* server was already up */
goto out_update_backend;
if (srv->flags & SRV_F_BACKUP) {
p->lbprm.tot_wbck += srv->next_eweight;
p->srv_bck++;
} else {
p->lbprm.tot_wact += srv->next_eweight;
p->srv_act++;
}
if (!p->lbprm.ss.srv ||
((p->lbprm.ss.srv->flags & SRV_F_BACKUP) && !(srv->flags & SRV_F_BACKUP))) {
/* we didn't have a server or were sticking on a backup server,
* but now we have an active server, let's switch to it
*/
p->lbprm.ss.srv = srv;
}
out_update_backend:
/* check/update tot_used, tot_weight */
update_backend_weight(p);
HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
out_update_state:
srv_lb_commit_status(srv);
}
/* This function is responsible for preparing sticky LB algorithm.
* It should be called only once per proxy, at config time.
*/
static int init_server_ss(struct proxy *p)
{
struct server *srv;
if (!p->srv)
return 0;
for (srv = p->srv; srv; srv = srv->next) {
srv->next_eweight = 1; /* ignore weights, all servers have the same weight */
srv_lb_commit_status(srv);
}
/* recounts servers and their weights */
recount_servers(p);
update_backend_weight(p);
recalc_server_ss(p);
return 0;
}
/*
* This function returns the server that we're sticking on. If any server
* is found, it will be returned. If no valid server is found, NULL is
* returned.
*
* The lbprm's lock will be used.
*/
struct server *ss_get_server(struct proxy *px)
{
struct server *srv = NULL;
HA_RWLOCK_RDLOCK(LBPRM_LOCK, &px->lbprm.lock);
srv = px->lbprm.ss.srv;
HA_RWLOCK_RDUNLOCK(LBPRM_LOCK, &px->lbprm.lock);
return srv;
}
static struct lb_ops lb_ss_ops = {ILH,
.map = {
{ .mask = BE_LB_KIND | BE_LB_PARM, .match = BE_LB_KIND_SA | BE_LB_SA_SS },
{ 0, 0 }
},
.algo_prop = BE_LB_PROP_DYN,
.proxy_init = init_server_ss,
.set_server_status_up = ss_set_server_status_up,
.set_server_status_down = ss_set_server_status_down,
};
INITCALL1(STG_REGISTER, lb_ops_register, &lb_ss_ops);