Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | 4c14eaa | 2010-11-24 14:01:45 +0100 | [diff] [blame] | 10 | * Copyright 2000-2010 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 11 | * |
| 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 Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 19 | #include <import/eb32tree.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 20 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 21 | #include <haproxy/backend.h> |
Willy Tarreau | a55c454 | 2020-06-04 22:59:39 +0200 | [diff] [blame] | 22 | #include <haproxy/queue.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 23 | #include <haproxy/server-t.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 24 | #include <haproxy/tools.h> |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 25 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 26 | /* Return next tree node after <node> which must still be in the tree, or be |
| 27 | * NULL. Lookup wraps around the end to the beginning. If the next node is the |
| 28 | * same node, return NULL. This is designed to find a valid next node before |
| 29 | * deleting one from the tree. |
| 30 | */ |
| 31 | static inline struct eb32_node *chash_skip_node(struct eb_root *root, struct eb32_node *node) |
| 32 | { |
| 33 | struct eb32_node *stop = node; |
| 34 | |
| 35 | if (!node) |
| 36 | return NULL; |
| 37 | node = eb32_next(node); |
| 38 | if (!node) |
| 39 | node = eb32_first(root); |
| 40 | if (node == stop) |
| 41 | return NULL; |
| 42 | return node; |
| 43 | } |
| 44 | |
| 45 | /* Remove all of a server's entries from its tree. This may be used when |
| 46 | * setting a server down. |
| 47 | */ |
| 48 | static inline void chash_dequeue_srv(struct server *s) |
| 49 | { |
| 50 | while (s->lb_nodes_now > 0) { |
| 51 | if (s->lb_nodes_now >= s->lb_nodes_tot) // should always be false anyway |
| 52 | s->lb_nodes_now = s->lb_nodes_tot; |
| 53 | s->lb_nodes_now--; |
| 54 | if (s->proxy->lbprm.chash.last == &s->lb_nodes[s->lb_nodes_now].node) |
| 55 | s->proxy->lbprm.chash.last = chash_skip_node(s->lb_tree, s->proxy->lbprm.chash.last); |
| 56 | eb32_delete(&s->lb_nodes[s->lb_nodes_now].node); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | /* Adjust the number of entries of a server in its tree. The server must appear |
| 61 | * as many times as its weight indicates it. If it's there too often, we remove |
| 62 | * the last occurrences. If it's not there enough, we add more occurrences. To |
| 63 | * remove a server from the tree, normally call this with eweight=0. |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 64 | * |
| 65 | * The server's lock and the lbprm's lock must be held. |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 66 | */ |
| 67 | static inline void chash_queue_dequeue_srv(struct server *s) |
| 68 | { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 69 | while (s->lb_nodes_now > s->next_eweight) { |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 70 | if (s->lb_nodes_now >= s->lb_nodes_tot) // should always be false anyway |
| 71 | s->lb_nodes_now = s->lb_nodes_tot; |
| 72 | s->lb_nodes_now--; |
| 73 | if (s->proxy->lbprm.chash.last == &s->lb_nodes[s->lb_nodes_now].node) |
| 74 | s->proxy->lbprm.chash.last = chash_skip_node(s->lb_tree, s->proxy->lbprm.chash.last); |
| 75 | eb32_delete(&s->lb_nodes[s->lb_nodes_now].node); |
| 76 | } |
| 77 | |
Olivier Houchard | f8eb8d5 | 2017-10-17 15:52:59 +0200 | [diff] [blame] | 78 | /* Attempt to increase the total number of nodes, if the user |
| 79 | * increased the weight beyond the original weight |
| 80 | */ |
| 81 | if (s->lb_nodes_tot < s->next_eweight) { |
Christopher Faulet | 0a52c17 | 2019-08-01 10:09:29 +0200 | [diff] [blame] | 82 | struct tree_occ *new_nodes; |
Olivier Houchard | f8eb8d5 | 2017-10-17 15:52:59 +0200 | [diff] [blame] | 83 | |
Christopher Faulet | 0a52c17 | 2019-08-01 10:09:29 +0200 | [diff] [blame] | 84 | /* First we need to remove all server's entries from its tree |
| 85 | * because the realloc will change all nodes pointers */ |
| 86 | chash_dequeue_srv(s); |
| 87 | |
| 88 | new_nodes = realloc(s->lb_nodes, s->next_eweight * sizeof(*new_nodes)); |
Olivier Houchard | f8eb8d5 | 2017-10-17 15:52:59 +0200 | [diff] [blame] | 89 | if (new_nodes) { |
| 90 | unsigned int j; |
| 91 | |
| 92 | s->lb_nodes = new_nodes; |
| 93 | memset(&s->lb_nodes[s->lb_nodes_tot], 0, |
| 94 | (s->next_eweight - s->lb_nodes_tot) * sizeof(*s->lb_nodes)); |
| 95 | for (j = s->lb_nodes_tot; j < s->next_eweight; j++) { |
| 96 | s->lb_nodes[j].server = s; |
| 97 | s->lb_nodes[j].node.key = full_hash(s->puid * SRV_EWGHT_RANGE + j); |
| 98 | } |
| 99 | s->lb_nodes_tot = s->next_eweight; |
| 100 | } |
| 101 | } |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 102 | while (s->lb_nodes_now < s->next_eweight) { |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 103 | if (s->lb_nodes_now >= s->lb_nodes_tot) // should always be false anyway |
| 104 | break; |
| 105 | if (s->proxy->lbprm.chash.last == &s->lb_nodes[s->lb_nodes_now].node) |
| 106 | s->proxy->lbprm.chash.last = chash_skip_node(s->lb_tree, s->proxy->lbprm.chash.last); |
| 107 | eb32_insert(s->lb_tree, &s->lb_nodes[s->lb_nodes_now].node); |
| 108 | s->lb_nodes_now++; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | /* This function updates the server trees according to server <srv>'s new |
| 113 | * state. It should be called when server <srv>'s status changes to down. |
| 114 | * It is not important whether the server was already down or not. It is not |
| 115 | * important either that the new state is completely down (the caller may not |
| 116 | * know all the variables of a server's state). |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 117 | * |
| 118 | * The server's lock must be held. The lbprm lock will be used. |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 119 | */ |
| 120 | static void chash_set_server_status_down(struct server *srv) |
| 121 | { |
| 122 | struct proxy *p = srv->proxy; |
| 123 | |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 124 | if (!srv_lb_status_changed(srv)) |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 125 | return; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 126 | |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 127 | HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock); |
| 128 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 129 | if (srv_willbe_usable(srv)) |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 130 | goto out_update_state; |
| 131 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 132 | if (!srv_currently_usable(srv)) |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 133 | /* server was already down */ |
| 134 | goto out_update_backend; |
| 135 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 136 | if (srv->flags & SRV_F_BACKUP) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 137 | p->lbprm.tot_wbck -= srv->cur_eweight; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 138 | p->srv_bck--; |
| 139 | |
| 140 | if (srv == p->lbprm.fbck) { |
| 141 | /* we lost the first backup server in a single-backup |
| 142 | * configuration, we must search another one. |
| 143 | */ |
| 144 | struct server *srv2 = p->lbprm.fbck; |
| 145 | do { |
| 146 | srv2 = srv2->next; |
| 147 | } while (srv2 && |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 148 | !((srv2->flags & SRV_F_BACKUP) && |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 149 | srv_willbe_usable(srv2))); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 150 | p->lbprm.fbck = srv2; |
| 151 | } |
| 152 | } else { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 153 | p->lbprm.tot_wact -= srv->cur_eweight; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 154 | p->srv_act--; |
| 155 | } |
| 156 | |
| 157 | chash_dequeue_srv(srv); |
| 158 | |
| 159 | out_update_backend: |
| 160 | /* check/update tot_used, tot_weight */ |
| 161 | update_backend_weight(p); |
| 162 | out_update_state: |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 163 | srv_lb_commit_status(srv); |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 164 | |
| 165 | HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | /* This function updates the server trees according to server <srv>'s new |
| 169 | * state. It should be called when server <srv>'s status changes to up. |
| 170 | * It is not important whether the server was already down or not. It is not |
| 171 | * important either that the new state is completely UP (the caller may not |
| 172 | * know all the variables of a server's state). This function will not change |
| 173 | * the weight of a server which was already up. |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 174 | * |
| 175 | * The server's lock must be held. The lbprm lock will be used. |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 176 | */ |
| 177 | static void chash_set_server_status_up(struct server *srv) |
| 178 | { |
| 179 | struct proxy *p = srv->proxy; |
| 180 | |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 181 | if (!srv_lb_status_changed(srv)) |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 182 | return; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 183 | |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 184 | HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock); |
| 185 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 186 | if (!srv_willbe_usable(srv)) |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 187 | goto out_update_state; |
| 188 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 189 | if (srv_currently_usable(srv)) |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 190 | /* server was already up */ |
| 191 | goto out_update_backend; |
| 192 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 193 | if (srv->flags & SRV_F_BACKUP) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 194 | p->lbprm.tot_wbck += srv->next_eweight; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 195 | p->srv_bck++; |
| 196 | |
| 197 | if (!(p->options & PR_O_USE_ALL_BK)) { |
| 198 | if (!p->lbprm.fbck) { |
| 199 | /* there was no backup server anymore */ |
| 200 | p->lbprm.fbck = srv; |
| 201 | } else { |
| 202 | /* we may have restored a backup server prior to fbck, |
| 203 | * in which case it should replace it. |
| 204 | */ |
| 205 | struct server *srv2 = srv; |
| 206 | do { |
| 207 | srv2 = srv2->next; |
| 208 | } while (srv2 && (srv2 != p->lbprm.fbck)); |
| 209 | if (srv2) |
| 210 | p->lbprm.fbck = srv; |
| 211 | } |
| 212 | } |
| 213 | } else { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 214 | p->lbprm.tot_wact += srv->next_eweight; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 215 | p->srv_act++; |
| 216 | } |
| 217 | |
| 218 | /* note that eweight cannot be 0 here */ |
| 219 | chash_queue_dequeue_srv(srv); |
| 220 | |
| 221 | out_update_backend: |
| 222 | /* check/update tot_used, tot_weight */ |
| 223 | update_backend_weight(p); |
| 224 | out_update_state: |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 225 | srv_lb_commit_status(srv); |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 226 | |
| 227 | HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | /* This function must be called after an update to server <srv>'s effective |
| 231 | * weight. It may be called after a state change too. |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 232 | * |
| 233 | * The server's lock must be held. The lbprm lock may be used. |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 234 | */ |
| 235 | static void chash_update_server_weight(struct server *srv) |
| 236 | { |
| 237 | int old_state, new_state; |
| 238 | struct proxy *p = srv->proxy; |
| 239 | |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 240 | if (!srv_lb_status_changed(srv)) |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 241 | return; |
| 242 | |
| 243 | /* If changing the server's weight changes its state, we simply apply |
| 244 | * the procedures we already have for status change. If the state |
| 245 | * remains down, the server is not in any tree, so it's as easy as |
| 246 | * updating its values. If the state remains up with different weights, |
| 247 | * there are some computations to perform to find a new place and |
| 248 | * possibly a new tree for this server. |
| 249 | */ |
| 250 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 251 | old_state = srv_currently_usable(srv); |
| 252 | new_state = srv_willbe_usable(srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 253 | |
| 254 | if (!old_state && !new_state) { |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 255 | srv_lb_commit_status(srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 256 | return; |
| 257 | } |
| 258 | else if (!old_state && new_state) { |
| 259 | chash_set_server_status_up(srv); |
| 260 | return; |
| 261 | } |
| 262 | else if (old_state && !new_state) { |
| 263 | chash_set_server_status_down(srv); |
| 264 | return; |
| 265 | } |
| 266 | |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 267 | HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock); |
| 268 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 269 | /* only adjust the server's presence in the tree */ |
| 270 | chash_queue_dequeue_srv(srv); |
| 271 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 272 | if (srv->flags & SRV_F_BACKUP) |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 273 | p->lbprm.tot_wbck += srv->next_eweight - srv->cur_eweight; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 274 | else |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 275 | p->lbprm.tot_wact += srv->next_eweight - srv->cur_eweight; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 276 | |
| 277 | update_backend_weight(p); |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 278 | srv_lb_commit_status(srv); |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 279 | |
| 280 | HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | /* |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 284 | * This function implements the "Consistent Hashing with Bounded Loads" algorithm |
| 285 | * of Mirrokni, Thorup, and Zadimoghaddam (arxiv:1608.01350), adapted for use with |
| 286 | * unequal server weights. |
| 287 | */ |
| 288 | int chash_server_is_eligible(struct server *s) |
| 289 | { |
| 290 | /* The total number of slots to allocate is the total number of outstanding requests |
| 291 | * (including the one we're about to make) times the load-balance-factor, rounded up. |
| 292 | */ |
Willy Tarreau | 76e84f5 | 2019-01-14 16:50:58 +0100 | [diff] [blame] | 293 | unsigned tot_slots = ((s->proxy->served + 1) * s->proxy->lbprm.hash_balance_factor + 99) / 100; |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 294 | unsigned slots_per_weight = tot_slots / s->proxy->lbprm.tot_weight; |
| 295 | unsigned remainder = tot_slots % s->proxy->lbprm.tot_weight; |
| 296 | |
| 297 | /* Allocate a whole number of slots per weight unit... */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 298 | unsigned slots = s->cur_eweight * slots_per_weight; |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 299 | |
| 300 | /* And then distribute the rest among servers proportionally to their weight. */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 301 | slots += ((s->cumulative_weight + s->cur_eweight) * remainder) / s->proxy->lbprm.tot_weight |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 302 | - (s->cumulative_weight * remainder) / s->proxy->lbprm.tot_weight; |
| 303 | |
| 304 | /* But never leave a server with 0. */ |
| 305 | if (slots == 0) |
| 306 | slots = 1; |
| 307 | |
| 308 | return s->served < slots; |
| 309 | } |
| 310 | |
| 311 | /* |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 312 | * This function returns the running server from the CHASH tree, which is at |
| 313 | * the closest distance from the value of <hash>. Doing so ensures that even |
| 314 | * with a well imbalanced hash, if some servers are close to each other, they |
| 315 | * will still both receive traffic. If any server is found, it will be returned. |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 316 | * It will also skip server <avoid> if the hash result ends on this one. |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 317 | * If no valid server is found, NULL is returned. |
| 318 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 319 | struct server *chash_get_server_hash(struct proxy *p, unsigned int hash, const struct server *avoid) |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 320 | { |
| 321 | struct eb32_node *next, *prev; |
| 322 | struct server *nsrv, *psrv; |
| 323 | struct eb_root *root; |
| 324 | unsigned int dn, dp; |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 325 | int loop; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 326 | |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 327 | HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock); |
| 328 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 329 | if (p->srv_act) |
| 330 | root = &p->lbprm.chash.act; |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 331 | else if (p->lbprm.fbck) { |
| 332 | nsrv = p->lbprm.fbck; |
| 333 | goto out; |
| 334 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 335 | else if (p->srv_bck) |
| 336 | root = &p->lbprm.chash.bck; |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 337 | else { |
| 338 | nsrv = NULL; |
| 339 | goto out; |
| 340 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 341 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 342 | /* find the node after and the node before */ |
| 343 | next = eb32_lookup_ge(root, hash); |
| 344 | if (!next) |
| 345 | next = eb32_first(root); |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 346 | if (!next) { |
| 347 | nsrv = NULL; /* tree is empty */ |
| 348 | goto out; |
| 349 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 350 | |
| 351 | prev = eb32_prev(next); |
| 352 | if (!prev) |
| 353 | prev = eb32_last(root); |
| 354 | |
| 355 | nsrv = eb32_entry(next, struct tree_occ, node)->server; |
| 356 | psrv = eb32_entry(prev, struct tree_occ, node)->server; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 357 | |
Andrew Rodland | 18330ab | 2017-04-26 02:57:03 -0400 | [diff] [blame] | 358 | /* OK we're located between two servers, let's |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 359 | * compare distances between hash and the two servers |
| 360 | * and select the closest server. |
| 361 | */ |
| 362 | dp = hash - prev->key; |
| 363 | dn = next->key - hash; |
| 364 | |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 365 | if (dp <= dn) { |
| 366 | next = prev; |
| 367 | nsrv = psrv; |
| 368 | } |
| 369 | |
| 370 | loop = 0; |
Willy Tarreau | 76e84f5 | 2019-01-14 16:50:58 +0100 | [diff] [blame] | 371 | while (nsrv == avoid || (p->lbprm.hash_balance_factor && !chash_server_is_eligible(nsrv))) { |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 372 | next = eb32_next(next); |
| 373 | if (!next) { |
| 374 | next = eb32_first(root); |
| 375 | if (++loop > 1) // protection against accidental loop |
| 376 | break; |
| 377 | } |
| 378 | nsrv = eb32_entry(next, struct tree_occ, node)->server; |
| 379 | } |
| 380 | |
Willy Tarreau | 1b87748 | 2018-08-21 19:44:53 +0200 | [diff] [blame] | 381 | out: |
| 382 | HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock); |
Andrew Rodland | 4f88c63 | 2016-10-25 12:50:37 -0400 | [diff] [blame] | 383 | return nsrv; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | /* Return next server from the CHASH tree in backend <p>. If the tree is empty, |
| 387 | * return NULL. Saturated servers are skipped. |
| 388 | */ |
| 389 | struct server *chash_get_next_server(struct proxy *p, struct server *srvtoavoid) |
| 390 | { |
| 391 | struct server *srv, *avoided; |
| 392 | struct eb32_node *node, *stop, *avoided_node; |
| 393 | struct eb_root *root; |
| 394 | |
| 395 | srv = avoided = NULL; |
| 396 | avoided_node = NULL; |
| 397 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 398 | HA_SPIN_LOCK(LBPRM_LOCK, &p->lbprm.lock); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 399 | if (p->srv_act) |
| 400 | root = &p->lbprm.chash.act; |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 401 | else if (p->lbprm.fbck) { |
| 402 | srv = p->lbprm.fbck; |
| 403 | goto out; |
| 404 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 405 | else if (p->srv_bck) |
| 406 | root = &p->lbprm.chash.bck; |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 407 | else { |
| 408 | srv = NULL; |
| 409 | goto out; |
| 410 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 411 | |
| 412 | stop = node = p->lbprm.chash.last; |
| 413 | do { |
| 414 | struct server *s; |
| 415 | |
| 416 | if (node) |
| 417 | node = eb32_next(node); |
| 418 | if (!node) |
| 419 | node = eb32_first(root); |
| 420 | |
| 421 | p->lbprm.chash.last = node; |
Willy Tarreau | 1ed90ac | 2017-11-05 10:54:50 +0100 | [diff] [blame] | 422 | if (!node) { |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 423 | /* no node is available */ |
Willy Tarreau | 1ed90ac | 2017-11-05 10:54:50 +0100 | [diff] [blame] | 424 | srv = NULL; |
| 425 | goto out; |
| 426 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 427 | |
Willy Tarreau | d16a1b2 | 2013-04-12 14:46:51 +0200 | [diff] [blame] | 428 | /* Note: if we came here after a down/up cycle with no last |
| 429 | * pointer, and after a redispatch (srvtoavoid is set), we |
| 430 | * must set stop to non-null otherwise we can loop forever. |
| 431 | */ |
| 432 | if (!stop) |
| 433 | stop = node; |
| 434 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 435 | /* OK, we have a server. However, it may be saturated, in which |
| 436 | * case we don't want to reconsider it for now, so we'll simply |
| 437 | * skip it. Same if it's the server we try to avoid, in which |
| 438 | * case we simply remember it for later use if needed. |
| 439 | */ |
| 440 | s = eb32_entry(node, struct tree_occ, node)->server; |
| 441 | if (!s->maxconn || (!s->nbpend && s->served < srv_dynamic_maxconn(s))) { |
| 442 | if (s != srvtoavoid) { |
| 443 | srv = s; |
| 444 | break; |
| 445 | } |
| 446 | avoided = s; |
| 447 | avoided_node = node; |
| 448 | } |
| 449 | } while (node != stop); |
| 450 | |
| 451 | if (!srv) { |
| 452 | srv = avoided; |
| 453 | p->lbprm.chash.last = avoided_node; |
| 454 | } |
| 455 | |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 456 | out: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 457 | HA_SPIN_UNLOCK(LBPRM_LOCK, &p->lbprm.lock); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 458 | return srv; |
| 459 | } |
| 460 | |
| 461 | /* This function is responsible for building the active and backup trees for |
| 462 | * constistent hashing. The servers receive an array of initialized nodes |
| 463 | * with their assigned keys. It also sets p->lbprm.wdiv to the eweight to |
| 464 | * uweight ratio. |
| 465 | */ |
| 466 | void chash_init_server_tree(struct proxy *p) |
| 467 | { |
| 468 | struct server *srv; |
| 469 | struct eb_root init_head = EB_ROOT; |
| 470 | int node; |
| 471 | |
| 472 | p->lbprm.set_server_status_up = chash_set_server_status_up; |
| 473 | p->lbprm.set_server_status_down = chash_set_server_status_down; |
| 474 | p->lbprm.update_server_eweight = chash_update_server_weight; |
| 475 | p->lbprm.server_take_conn = NULL; |
| 476 | p->lbprm.server_drop_conn = NULL; |
| 477 | |
| 478 | p->lbprm.wdiv = BE_WEIGHT_SCALE; |
| 479 | for (srv = p->srv; srv; srv = srv->next) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 480 | srv->next_eweight = (srv->uweight * p->lbprm.wdiv + p->lbprm.wmult - 1) / p->lbprm.wmult; |
Willy Tarreau | c5150da | 2014-05-13 19:27:31 +0200 | [diff] [blame] | 481 | srv_lb_commit_status(srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | recount_servers(p); |
| 485 | update_backend_weight(p); |
| 486 | |
| 487 | p->lbprm.chash.act = init_head; |
| 488 | p->lbprm.chash.bck = init_head; |
| 489 | p->lbprm.chash.last = NULL; |
| 490 | |
| 491 | /* queue active and backup servers in two distinct groups */ |
| 492 | for (srv = p->srv; srv; srv = srv->next) { |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 493 | srv->lb_tree = (srv->flags & SRV_F_BACKUP) ? &p->lbprm.chash.bck : &p->lbprm.chash.act; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 494 | srv->lb_nodes_tot = srv->uweight * BE_WEIGHT_SCALE; |
| 495 | srv->lb_nodes_now = 0; |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 496 | srv->lb_nodes = calloc(srv->lb_nodes_tot, |
| 497 | sizeof(*srv->lb_nodes)); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 498 | for (node = 0; node < srv->lb_nodes_tot; node++) { |
| 499 | srv->lb_nodes[node].server = srv; |
Willy Tarreau | 4c14eaa | 2010-11-24 14:01:45 +0100 | [diff] [blame] | 500 | srv->lb_nodes[node].node.key = full_hash(srv->puid * SRV_EWGHT_RANGE + node); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 501 | } |
| 502 | |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 503 | if (srv_currently_usable(srv)) |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 504 | chash_queue_dequeue_srv(srv); |
| 505 | } |
| 506 | } |