blob: 469da71f5f6c1ba831d0a77d054b0fbdae61b144 [file] [log] [blame]
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02001/*
2 * Consistent Hash implementation
3 * Please consult this very well detailed article for more information :
4 * http://www.spiteful.com/2008/03/17/programmers-toolbox-part-3-consistent-hashing/
5 *
6 * Our implementation has to support both weighted hashing and weighted round
7 * robin because we'll use it to replace the previous map-based implementation
8 * which offered both algorithms.
9 *
Willy Tarreau4c14eaa2010-11-24 14:01:45 +010010 * Copyright 2000-2010 Willy Tarreau <w@1wt.eu>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020011 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 */
18
Willy Tarreau1e56f922020-06-04 23:20:13 +020019#include <import/eb32tree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020020#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/backend.h>
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +020022#include <haproxy/errors.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020023#include <haproxy/queue.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020024#include <haproxy/server-t.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020025#include <haproxy/tools.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020026
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020027/* Return next tree node after <node> which must still be in the tree, or be
28 * NULL. Lookup wraps around the end to the beginning. If the next node is the
29 * same node, return NULL. This is designed to find a valid next node before
30 * deleting one from the tree.
31 */
32static inline struct eb32_node *chash_skip_node(struct eb_root *root, struct eb32_node *node)
33{
34 struct eb32_node *stop = node;
35
36 if (!node)
37 return NULL;
38 node = eb32_next(node);
39 if (!node)
40 node = eb32_first(root);
41 if (node == stop)
42 return NULL;
43 return node;
44}
45
46/* Remove all of a server's entries from its tree. This may be used when
47 * setting a server down.
48 */
49static inline void chash_dequeue_srv(struct server *s)
50{
51 while (s->lb_nodes_now > 0) {
52 if (s->lb_nodes_now >= s->lb_nodes_tot) // should always be false anyway
53 s->lb_nodes_now = s->lb_nodes_tot;
54 s->lb_nodes_now--;
55 if (s->proxy->lbprm.chash.last == &s->lb_nodes[s->lb_nodes_now].node)
56 s->proxy->lbprm.chash.last = chash_skip_node(s->lb_tree, s->proxy->lbprm.chash.last);
57 eb32_delete(&s->lb_nodes[s->lb_nodes_now].node);
58 }
59}
60
61/* Adjust the number of entries of a server in its tree. The server must appear
62 * as many times as its weight indicates it. If it's there too often, we remove
63 * the last occurrences. If it's not there enough, we add more occurrences. To
64 * remove a server from the tree, normally call this with eweight=0.
Willy Tarreau1b877482018-08-21 19:44:53 +020065 *
66 * The server's lock and the lbprm's lock must be held.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020067 */
68static inline void chash_queue_dequeue_srv(struct server *s)
69{
Emeric Brun52a91d32017-08-31 14:41:55 +020070 while (s->lb_nodes_now > s->next_eweight) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020071 if (s->lb_nodes_now >= s->lb_nodes_tot) // should always be false anyway
72 s->lb_nodes_now = s->lb_nodes_tot;
73 s->lb_nodes_now--;
74 if (s->proxy->lbprm.chash.last == &s->lb_nodes[s->lb_nodes_now].node)
75 s->proxy->lbprm.chash.last = chash_skip_node(s->lb_tree, s->proxy->lbprm.chash.last);
76 eb32_delete(&s->lb_nodes[s->lb_nodes_now].node);
77 }
78
Olivier Houchardf8eb8d52017-10-17 15:52:59 +020079 /* Attempt to increase the total number of nodes, if the user
80 * increased the weight beyond the original weight
81 */
82 if (s->lb_nodes_tot < s->next_eweight) {
Christopher Faulet0a52c172019-08-01 10:09:29 +020083 struct tree_occ *new_nodes;
Olivier Houchardf8eb8d52017-10-17 15:52:59 +020084
Christopher Faulet0a52c172019-08-01 10:09:29 +020085 /* First we need to remove all server's entries from its tree
86 * because the realloc will change all nodes pointers */
87 chash_dequeue_srv(s);
88
89 new_nodes = realloc(s->lb_nodes, s->next_eweight * sizeof(*new_nodes));
Olivier Houchardf8eb8d52017-10-17 15:52:59 +020090 if (new_nodes) {
91 unsigned int j;
92
93 s->lb_nodes = new_nodes;
94 memset(&s->lb_nodes[s->lb_nodes_tot], 0,
95 (s->next_eweight - s->lb_nodes_tot) * sizeof(*s->lb_nodes));
96 for (j = s->lb_nodes_tot; j < s->next_eweight; j++) {
97 s->lb_nodes[j].server = s;
98 s->lb_nodes[j].node.key = full_hash(s->puid * SRV_EWGHT_RANGE + j);
99 }
100 s->lb_nodes_tot = s->next_eweight;
101 }
102 }
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 while (s->lb_nodes_now < s->next_eweight) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200104 if (s->lb_nodes_now >= s->lb_nodes_tot) // should always be false anyway
105 break;
106 if (s->proxy->lbprm.chash.last == &s->lb_nodes[s->lb_nodes_now].node)
107 s->proxy->lbprm.chash.last = chash_skip_node(s->lb_tree, s->proxy->lbprm.chash.last);
108 eb32_insert(s->lb_tree, &s->lb_nodes[s->lb_nodes_now].node);
109 s->lb_nodes_now++;
110 }
111}
112
113/* This function updates the server trees according to server <srv>'s new
114 * state. It should be called when server <srv>'s status changes to down.
115 * It is not important whether the server was already down or not. It is not
116 * important either that the new state is completely down (the caller may not
117 * know all the variables of a server's state).
Willy Tarreau1b877482018-08-21 19:44:53 +0200118 *
119 * The server's lock must be held. The lbprm lock will be used.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200120 */
121static void chash_set_server_status_down(struct server *srv)
122{
123 struct proxy *p = srv->proxy;
124
Willy Tarreauc5150da2014-05-13 19:27:31 +0200125 if (!srv_lb_status_changed(srv))
Christopher Faulet5b517552017-06-09 14:17:53 +0200126 return;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200127
Willy Tarreaucd10def2020-10-17 18:48:47 +0200128 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200129
Emeric Brun52a91d32017-08-31 14:41:55 +0200130 if (srv_willbe_usable(srv))
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200131 goto out_update_state;
132
Emeric Brun52a91d32017-08-31 14:41:55 +0200133 if (!srv_currently_usable(srv))
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200134 /* server was already down */
135 goto out_update_backend;
136
Willy Tarreauc93cd162014-05-13 15:54:22 +0200137 if (srv->flags & SRV_F_BACKUP) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200138 p->lbprm.tot_wbck -= srv->cur_eweight;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200139 p->srv_bck--;
140
141 if (srv == p->lbprm.fbck) {
142 /* we lost the first backup server in a single-backup
143 * configuration, we must search another one.
144 */
145 struct server *srv2 = p->lbprm.fbck;
146 do {
147 srv2 = srv2->next;
148 } while (srv2 &&
Willy Tarreauc93cd162014-05-13 15:54:22 +0200149 !((srv2->flags & SRV_F_BACKUP) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200150 srv_willbe_usable(srv2)));
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200151 p->lbprm.fbck = srv2;
152 }
153 } else {
Emeric Brun52a91d32017-08-31 14:41:55 +0200154 p->lbprm.tot_wact -= srv->cur_eweight;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200155 p->srv_act--;
156 }
157
158 chash_dequeue_srv(srv);
159
160out_update_backend:
161 /* check/update tot_used, tot_weight */
162 update_backend_weight(p);
163 out_update_state:
Willy Tarreauc5150da2014-05-13 19:27:31 +0200164 srv_lb_commit_status(srv);
Willy Tarreau1b877482018-08-21 19:44:53 +0200165
Willy Tarreaucd10def2020-10-17 18:48:47 +0200166 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200167}
168
169/* This function updates the server trees according to server <srv>'s new
170 * state. It should be called when server <srv>'s status changes to up.
171 * It is not important whether the server was already down or not. It is not
172 * important either that the new state is completely UP (the caller may not
173 * know all the variables of a server's state). This function will not change
174 * the weight of a server which was already up.
Willy Tarreau1b877482018-08-21 19:44:53 +0200175 *
176 * The server's lock must be held. The lbprm lock will be used.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200177 */
178static void chash_set_server_status_up(struct server *srv)
179{
180 struct proxy *p = srv->proxy;
181
Willy Tarreauc5150da2014-05-13 19:27:31 +0200182 if (!srv_lb_status_changed(srv))
Christopher Faulet5b517552017-06-09 14:17:53 +0200183 return;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200184
Willy Tarreaucd10def2020-10-17 18:48:47 +0200185 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200186
Emeric Brun52a91d32017-08-31 14:41:55 +0200187 if (!srv_willbe_usable(srv))
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200188 goto out_update_state;
189
Emeric Brun52a91d32017-08-31 14:41:55 +0200190 if (srv_currently_usable(srv))
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200191 /* server was already up */
192 goto out_update_backend;
193
Willy Tarreauc93cd162014-05-13 15:54:22 +0200194 if (srv->flags & SRV_F_BACKUP) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200195 p->lbprm.tot_wbck += srv->next_eweight;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200196 p->srv_bck++;
197
198 if (!(p->options & PR_O_USE_ALL_BK)) {
199 if (!p->lbprm.fbck) {
200 /* there was no backup server anymore */
201 p->lbprm.fbck = srv;
202 } else {
203 /* we may have restored a backup server prior to fbck,
204 * in which case it should replace it.
205 */
206 struct server *srv2 = srv;
207 do {
208 srv2 = srv2->next;
209 } while (srv2 && (srv2 != p->lbprm.fbck));
210 if (srv2)
211 p->lbprm.fbck = srv;
212 }
213 }
214 } else {
Emeric Brun52a91d32017-08-31 14:41:55 +0200215 p->lbprm.tot_wact += srv->next_eweight;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200216 p->srv_act++;
217 }
218
219 /* note that eweight cannot be 0 here */
220 chash_queue_dequeue_srv(srv);
221
222 out_update_backend:
223 /* check/update tot_used, tot_weight */
224 update_backend_weight(p);
225 out_update_state:
Willy Tarreauc5150da2014-05-13 19:27:31 +0200226 srv_lb_commit_status(srv);
Willy Tarreau1b877482018-08-21 19:44:53 +0200227
Willy Tarreaucd10def2020-10-17 18:48:47 +0200228 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200229}
230
231/* This function must be called after an update to server <srv>'s effective
232 * weight. It may be called after a state change too.
Willy Tarreau1b877482018-08-21 19:44:53 +0200233 *
234 * The server's lock must be held. The lbprm lock may be used.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200235 */
236static void chash_update_server_weight(struct server *srv)
237{
238 int old_state, new_state;
239 struct proxy *p = srv->proxy;
240
Willy Tarreauc5150da2014-05-13 19:27:31 +0200241 if (!srv_lb_status_changed(srv))
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200242 return;
243
244 /* If changing the server's weight changes its state, we simply apply
245 * the procedures we already have for status change. If the state
246 * remains down, the server is not in any tree, so it's as easy as
247 * updating its values. If the state remains up with different weights,
248 * there are some computations to perform to find a new place and
249 * possibly a new tree for this server.
250 */
251
Emeric Brun52a91d32017-08-31 14:41:55 +0200252 old_state = srv_currently_usable(srv);
253 new_state = srv_willbe_usable(srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200254
255 if (!old_state && !new_state) {
Willy Tarreauc5150da2014-05-13 19:27:31 +0200256 srv_lb_commit_status(srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200257 return;
258 }
259 else if (!old_state && new_state) {
260 chash_set_server_status_up(srv);
261 return;
262 }
263 else if (old_state && !new_state) {
264 chash_set_server_status_down(srv);
265 return;
266 }
267
Willy Tarreaucd10def2020-10-17 18:48:47 +0200268 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200269
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200270 /* only adjust the server's presence in the tree */
271 chash_queue_dequeue_srv(srv);
272
Willy Tarreauc93cd162014-05-13 15:54:22 +0200273 if (srv->flags & SRV_F_BACKUP)
Emeric Brun52a91d32017-08-31 14:41:55 +0200274 p->lbprm.tot_wbck += srv->next_eweight - srv->cur_eweight;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200275 else
Emeric Brun52a91d32017-08-31 14:41:55 +0200276 p->lbprm.tot_wact += srv->next_eweight - srv->cur_eweight;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200277
278 update_backend_weight(p);
Willy Tarreauc5150da2014-05-13 19:27:31 +0200279 srv_lb_commit_status(srv);
Willy Tarreau1b877482018-08-21 19:44:53 +0200280
Willy Tarreaucd10def2020-10-17 18:48:47 +0200281 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200282}
283
284/*
Andrew Rodland4f88c632016-10-25 12:50:37 -0400285 * This function implements the "Consistent Hashing with Bounded Loads" algorithm
286 * of Mirrokni, Thorup, and Zadimoghaddam (arxiv:1608.01350), adapted for use with
287 * unequal server weights.
288 */
289int chash_server_is_eligible(struct server *s)
290{
291 /* The total number of slots to allocate is the total number of outstanding requests
292 * (including the one we're about to make) times the load-balance-factor, rounded up.
293 */
Willy Tarreau76e84f52019-01-14 16:50:58 +0100294 unsigned tot_slots = ((s->proxy->served + 1) * s->proxy->lbprm.hash_balance_factor + 99) / 100;
Andrew Rodland4f88c632016-10-25 12:50:37 -0400295 unsigned slots_per_weight = tot_slots / s->proxy->lbprm.tot_weight;
296 unsigned remainder = tot_slots % s->proxy->lbprm.tot_weight;
297
298 /* Allocate a whole number of slots per weight unit... */
Emeric Brun52a91d32017-08-31 14:41:55 +0200299 unsigned slots = s->cur_eweight * slots_per_weight;
Andrew Rodland4f88c632016-10-25 12:50:37 -0400300
301 /* And then distribute the rest among servers proportionally to their weight. */
Emeric Brun52a91d32017-08-31 14:41:55 +0200302 slots += ((s->cumulative_weight + s->cur_eweight) * remainder) / s->proxy->lbprm.tot_weight
Andrew Rodland4f88c632016-10-25 12:50:37 -0400303 - (s->cumulative_weight * remainder) / s->proxy->lbprm.tot_weight;
304
305 /* But never leave a server with 0. */
306 if (slots == 0)
307 slots = 1;
308
309 return s->served < slots;
310}
311
312/*
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200313 * This function returns the running server from the CHASH tree, which is at
314 * the closest distance from the value of <hash>. Doing so ensures that even
315 * with a well imbalanced hash, if some servers are close to each other, they
316 * will still both receive traffic. If any server is found, it will be returned.
Willy Tarreau59884a62019-01-02 14:48:31 +0100317 * It will also skip server <avoid> if the hash result ends on this one.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200318 * If no valid server is found, NULL is returned.
319 */
Willy Tarreau59884a62019-01-02 14:48:31 +0100320struct server *chash_get_server_hash(struct proxy *p, unsigned int hash, const struct server *avoid)
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200321{
322 struct eb32_node *next, *prev;
323 struct server *nsrv, *psrv;
324 struct eb_root *root;
325 unsigned int dn, dp;
Andrew Rodland4f88c632016-10-25 12:50:37 -0400326 int loop;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200327
Willy Tarreau4b6e3c22020-10-17 20:15:49 +0200328 HA_RWLOCK_RDLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau1b877482018-08-21 19:44:53 +0200329
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200330 if (p->srv_act)
331 root = &p->lbprm.chash.act;
Willy Tarreau1b877482018-08-21 19:44:53 +0200332 else if (p->lbprm.fbck) {
333 nsrv = p->lbprm.fbck;
334 goto out;
335 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200336 else if (p->srv_bck)
337 root = &p->lbprm.chash.bck;
Willy Tarreau1b877482018-08-21 19:44:53 +0200338 else {
339 nsrv = NULL;
340 goto out;
341 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200342
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200343 /* find the node after and the node before */
344 next = eb32_lookup_ge(root, hash);
345 if (!next)
346 next = eb32_first(root);
Willy Tarreau1b877482018-08-21 19:44:53 +0200347 if (!next) {
348 nsrv = NULL; /* tree is empty */
349 goto out;
350 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200351
352 prev = eb32_prev(next);
353 if (!prev)
354 prev = eb32_last(root);
355
356 nsrv = eb32_entry(next, struct tree_occ, node)->server;
357 psrv = eb32_entry(prev, struct tree_occ, node)->server;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200358
Andrew Rodland18330ab2017-04-26 02:57:03 -0400359 /* OK we're located between two servers, let's
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200360 * compare distances between hash and the two servers
361 * and select the closest server.
362 */
363 dp = hash - prev->key;
364 dn = next->key - hash;
365
Andrew Rodland4f88c632016-10-25 12:50:37 -0400366 if (dp <= dn) {
367 next = prev;
368 nsrv = psrv;
369 }
370
371 loop = 0;
Willy Tarreau76e84f52019-01-14 16:50:58 +0100372 while (nsrv == avoid || (p->lbprm.hash_balance_factor && !chash_server_is_eligible(nsrv))) {
Andrew Rodland4f88c632016-10-25 12:50:37 -0400373 next = eb32_next(next);
374 if (!next) {
375 next = eb32_first(root);
376 if (++loop > 1) // protection against accidental loop
377 break;
378 }
379 nsrv = eb32_entry(next, struct tree_occ, node)->server;
380 }
381
Willy Tarreau1b877482018-08-21 19:44:53 +0200382 out:
Willy Tarreau4b6e3c22020-10-17 20:15:49 +0200383 HA_RWLOCK_RDUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Andrew Rodland4f88c632016-10-25 12:50:37 -0400384 return nsrv;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200385}
386
387/* Return next server from the CHASH tree in backend <p>. If the tree is empty,
388 * return NULL. Saturated servers are skipped.
389 */
390struct server *chash_get_next_server(struct proxy *p, struct server *srvtoavoid)
391{
392 struct server *srv, *avoided;
393 struct eb32_node *node, *stop, *avoided_node;
394 struct eb_root *root;
395
396 srv = avoided = NULL;
397 avoided_node = NULL;
398
Willy Tarreaucd10def2020-10-17 18:48:47 +0200399 HA_RWLOCK_WRLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200400 if (p->srv_act)
401 root = &p->lbprm.chash.act;
Christopher Faulet5b517552017-06-09 14:17:53 +0200402 else if (p->lbprm.fbck) {
403 srv = p->lbprm.fbck;
404 goto out;
405 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200406 else if (p->srv_bck)
407 root = &p->lbprm.chash.bck;
Christopher Faulet5b517552017-06-09 14:17:53 +0200408 else {
409 srv = NULL;
410 goto out;
411 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200412
413 stop = node = p->lbprm.chash.last;
414 do {
415 struct server *s;
416
417 if (node)
418 node = eb32_next(node);
419 if (!node)
420 node = eb32_first(root);
421
422 p->lbprm.chash.last = node;
Willy Tarreau1ed90ac2017-11-05 10:54:50 +0100423 if (!node) {
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200424 /* no node is available */
Willy Tarreau1ed90ac2017-11-05 10:54:50 +0100425 srv = NULL;
426 goto out;
427 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200428
Willy Tarreaud16a1b22013-04-12 14:46:51 +0200429 /* Note: if we came here after a down/up cycle with no last
430 * pointer, and after a redispatch (srvtoavoid is set), we
431 * must set stop to non-null otherwise we can loop forever.
432 */
433 if (!stop)
434 stop = node;
435
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200436 /* OK, we have a server. However, it may be saturated, in which
437 * case we don't want to reconsider it for now, so we'll simply
438 * skip it. Same if it's the server we try to avoid, in which
439 * case we simply remember it for later use if needed.
440 */
441 s = eb32_entry(node, struct tree_occ, node)->server;
442 if (!s->maxconn || (!s->nbpend && s->served < srv_dynamic_maxconn(s))) {
443 if (s != srvtoavoid) {
444 srv = s;
445 break;
446 }
447 avoided = s;
448 avoided_node = node;
449 }
450 } while (node != stop);
451
452 if (!srv) {
453 srv = avoided;
454 p->lbprm.chash.last = avoided_node;
455 }
456
Christopher Faulet5b517552017-06-09 14:17:53 +0200457 out:
Willy Tarreaucd10def2020-10-17 18:48:47 +0200458 HA_RWLOCK_WRUNLOCK(LBPRM_LOCK, &p->lbprm.lock);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200459 return srv;
460}
461
462/* This function is responsible for building the active and backup trees for
463 * constistent hashing. The servers receive an array of initialized nodes
464 * with their assigned keys. It also sets p->lbprm.wdiv to the eweight to
465 * uweight ratio.
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +0200466 * Return 0 in case of success, -1 in case of allocation failure.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200467 */
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +0200468int chash_init_server_tree(struct proxy *p)
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200469{
470 struct server *srv;
471 struct eb_root init_head = EB_ROOT;
472 int node;
473
474 p->lbprm.set_server_status_up = chash_set_server_status_up;
475 p->lbprm.set_server_status_down = chash_set_server_status_down;
476 p->lbprm.update_server_eweight = chash_update_server_weight;
477 p->lbprm.server_take_conn = NULL;
478 p->lbprm.server_drop_conn = NULL;
479
480 p->lbprm.wdiv = BE_WEIGHT_SCALE;
481 for (srv = p->srv; srv; srv = srv->next) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200482 srv->next_eweight = (srv->uweight * p->lbprm.wdiv + p->lbprm.wmult - 1) / p->lbprm.wmult;
Willy Tarreauc5150da2014-05-13 19:27:31 +0200483 srv_lb_commit_status(srv);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200484 }
485
486 recount_servers(p);
487 update_backend_weight(p);
488
489 p->lbprm.chash.act = init_head;
490 p->lbprm.chash.bck = init_head;
491 p->lbprm.chash.last = NULL;
492
493 /* queue active and backup servers in two distinct groups */
494 for (srv = p->srv; srv; srv = srv->next) {
Willy Tarreauc93cd162014-05-13 15:54:22 +0200495 srv->lb_tree = (srv->flags & SRV_F_BACKUP) ? &p->lbprm.chash.bck : &p->lbprm.chash.act;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200496 srv->lb_nodes_tot = srv->uweight * BE_WEIGHT_SCALE;
497 srv->lb_nodes_now = 0;
Tim Duesterhuse52b6e52020-09-12 20:26:43 +0200498 srv->lb_nodes = calloc(srv->lb_nodes_tot,
499 sizeof(*srv->lb_nodes));
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +0200500 if (!srv->lb_nodes) {
501 ha_alert("failed to allocate lb_nodes for server %s.\n", srv->id);
502 return -1;
503 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200504 for (node = 0; node < srv->lb_nodes_tot; node++) {
505 srv->lb_nodes[node].server = srv;
Willy Tarreau4c14eaa2010-11-24 14:01:45 +0100506 srv->lb_nodes[node].node.key = full_hash(srv->puid * SRV_EWGHT_RANGE + node);
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200507 }
508
Emeric Brun52a91d32017-08-31 14:41:55 +0200509 if (srv_currently_usable(srv))
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200510 chash_queue_dequeue_srv(srv);
511 }
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +0200512 return 0;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +0200513}