Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Backend variables and functions. |
| 3 | * |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <errno.h> |
| 14 | #include <fcntl.h> |
| 15 | #include <stdio.h> |
| 16 | #include <stdlib.h> |
| 17 | #include <syslog.h> |
Willy Tarreau | f19cf37 | 2006-11-14 15:40:51 +0100 | [diff] [blame] | 18 | #include <string.h> |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 19 | #include <ctype.h> |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 20 | #include <sys/types.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | 63617db | 2021-10-06 18:23:40 +0200 | [diff] [blame] | 22 | #include <import/ebmbtree.h> |
| 23 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 24 | #include <haproxy/api.h> |
Willy Tarreau | 5d9ddc5 | 2021-10-06 19:54:09 +0200 | [diff] [blame] | 25 | #include <haproxy/acl.h> |
| 26 | #include <haproxy/activity.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 27 | #include <haproxy/arg.h> |
| 28 | #include <haproxy/backend.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 29 | #include <haproxy/channel.h> |
Willy Tarreau | 4aa573d | 2020-06-04 18:21:56 +0200 | [diff] [blame] | 30 | #include <haproxy/check.h> |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 31 | #include <haproxy/conn_stream.h> |
| 32 | #include <haproxy/cs_utils.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 33 | #include <haproxy/frontend.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 34 | #include <haproxy/global.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 35 | #include <haproxy/hash.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 36 | #include <haproxy/http.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 37 | #include <haproxy/http_ana.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 38 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 39 | #include <haproxy/htx.h> |
Willy Tarreau | fbe8da3 | 2020-06-04 14:34:27 +0200 | [diff] [blame] | 40 | #include <haproxy/lb_chash.h> |
Willy Tarreau | b5fc3bf | 2020-06-04 14:37:38 +0200 | [diff] [blame] | 41 | #include <haproxy/lb_fas.h> |
Willy Tarreau | 0254941 | 2020-06-04 14:41:04 +0200 | [diff] [blame] | 42 | #include <haproxy/lb_fwlc.h> |
Willy Tarreau | 546ba42 | 2020-06-04 14:45:03 +0200 | [diff] [blame] | 43 | #include <haproxy/lb_fwrr.h> |
Willy Tarreau | 2867159 | 2020-06-04 20:22:59 +0200 | [diff] [blame] | 44 | #include <haproxy/lb_map.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 45 | #include <haproxy/log.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 46 | #include <haproxy/namespace.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 47 | #include <haproxy/obj_type.h> |
Willy Tarreau | 469509b | 2020-06-04 15:13:30 +0200 | [diff] [blame] | 48 | #include <haproxy/payload.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 49 | #include <haproxy/proto_tcp.h> |
| 50 | #include <haproxy/protocol.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 51 | #include <haproxy/proxy.h> |
Willy Tarreau | a55c454 | 2020-06-04 22:59:39 +0200 | [diff] [blame] | 52 | #include <haproxy/queue.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 53 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 54 | #include <haproxy/server.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 55 | #include <haproxy/session.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 56 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 57 | #include <haproxy/stream.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 58 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 59 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 60 | #include <haproxy/time.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 61 | #include <haproxy/trace.h> |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 62 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 63 | #define TRACE_SOURCE &trace_strm |
| 64 | |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 65 | int be_lastsession(const struct proxy *be) |
| 66 | { |
| 67 | if (be->be_counters.last_sess) |
| 68 | return now.tv_sec - be->be_counters.last_sess; |
| 69 | |
| 70 | return -1; |
| 71 | } |
| 72 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 73 | /* helper function to invoke the correct hash method */ |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 74 | static unsigned int gen_hash(const struct proxy* px, const char* key, unsigned long len) |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 75 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 76 | unsigned int hash; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 77 | |
| 78 | switch (px->lbprm.algo & BE_LB_HASH_FUNC) { |
| 79 | case BE_LB_HFCN_DJB2: |
| 80 | hash = hash_djb2(key, len); |
| 81 | break; |
Willy Tarreau | a0f4271 | 2013-11-14 14:30:35 +0100 | [diff] [blame] | 82 | case BE_LB_HFCN_WT6: |
| 83 | hash = hash_wt6(key, len); |
| 84 | break; |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 85 | case BE_LB_HFCN_CRC32: |
| 86 | hash = hash_crc32(key, len); |
| 87 | break; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 88 | case BE_LB_HFCN_SDBM: |
| 89 | /* this is the default hash function */ |
| 90 | default: |
| 91 | hash = hash_sdbm(key, len); |
| 92 | break; |
| 93 | } |
| 94 | |
| 95 | return hash; |
| 96 | } |
| 97 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 98 | /* |
| 99 | * This function recounts the number of usable active and backup servers for |
| 100 | * proxy <p>. These numbers are returned into the p->srv_act and p->srv_bck. |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 101 | * This function also recomputes the total active and backup weights. However, |
Willy Tarreau | f4cca45 | 2008-03-08 21:42:54 +0100 | [diff] [blame] | 102 | * it does not update tot_weight nor tot_used. Use update_backend_weight() for |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 103 | * this. |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 104 | * This functions is designed to be called before server's weight and state |
| 105 | * commit so it uses 'next' weight and states values. |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 106 | * |
| 107 | * threads: this is the caller responsibility to lock data. For now, this |
| 108 | * function is called from lb modules, so it should be ok. But if you need to |
| 109 | * call it from another place, be careful (and update this comment). |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 110 | */ |
Willy Tarreau | c5d9c80 | 2009-10-01 09:17:05 +0200 | [diff] [blame] | 111 | void recount_servers(struct proxy *px) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 112 | { |
| 113 | struct server *srv; |
| 114 | |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 115 | px->srv_act = px->srv_bck = 0; |
| 116 | px->lbprm.tot_wact = px->lbprm.tot_wbck = 0; |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 117 | px->lbprm.fbck = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 118 | for (srv = px->srv; srv != NULL; srv = srv->next) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 119 | if (!srv_willbe_usable(srv)) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 120 | continue; |
| 121 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 122 | if (srv->flags & SRV_F_BACKUP) { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 123 | if (!px->srv_bck && |
Willy Tarreau | f4cca45 | 2008-03-08 21:42:54 +0100 | [diff] [blame] | 124 | !(px->options & PR_O_USE_ALL_BK)) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 125 | px->lbprm.fbck = srv; |
| 126 | px->srv_bck++; |
Andrew Rodland | 13d5ebb | 2016-10-25 12:49:45 -0400 | [diff] [blame] | 127 | srv->cumulative_weight = px->lbprm.tot_wbck; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 128 | px->lbprm.tot_wbck += srv->next_eweight; |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 129 | } else { |
| 130 | px->srv_act++; |
Andrew Rodland | 13d5ebb | 2016-10-25 12:49:45 -0400 | [diff] [blame] | 131 | srv->cumulative_weight = px->lbprm.tot_wact; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 132 | px->lbprm.tot_wact += srv->next_eweight; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 133 | } |
| 134 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 135 | } |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 136 | |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 137 | /* This function simply updates the backend's tot_weight and tot_used values |
| 138 | * after servers weights have been updated. It is designed to be used after |
| 139 | * recount_servers() or equivalent. |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 140 | * |
| 141 | * threads: this is the caller responsibility to lock data. For now, this |
| 142 | * function is called from lb modules, so it should be ok. But if you need to |
| 143 | * call it from another place, be careful (and update this comment). |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 144 | */ |
Willy Tarreau | c5d9c80 | 2009-10-01 09:17:05 +0200 | [diff] [blame] | 145 | void update_backend_weight(struct proxy *px) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 146 | { |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 147 | if (px->srv_act) { |
| 148 | px->lbprm.tot_weight = px->lbprm.tot_wact; |
| 149 | px->lbprm.tot_used = px->srv_act; |
| 150 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 151 | else if (px->lbprm.fbck) { |
| 152 | /* use only the first backup server */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 153 | px->lbprm.tot_weight = px->lbprm.fbck->next_eweight; |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 154 | px->lbprm.tot_used = 1; |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 155 | } |
| 156 | else { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 157 | px->lbprm.tot_weight = px->lbprm.tot_wbck; |
| 158 | px->lbprm.tot_used = px->srv_bck; |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 159 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 160 | } |
| 161 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 162 | /* |
| 163 | * This function tries to find a running server for the proxy <px> following |
| 164 | * the source hash method. Depending on the number of active/backup servers, |
| 165 | * it will either look for active servers, or for backup servers. |
| 166 | * If any server is found, it will be returned. If no valid server is found, |
| 167 | * NULL is returned. |
| 168 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 169 | static struct server *get_server_sh(struct proxy *px, const char *addr, int len, const struct server *avoid) |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 170 | { |
| 171 | unsigned int h, l; |
| 172 | |
| 173 | if (px->lbprm.tot_weight == 0) |
| 174 | return NULL; |
| 175 | |
| 176 | l = h = 0; |
| 177 | |
| 178 | /* note: we won't hash if there's only one server left */ |
| 179 | if (px->lbprm.tot_used == 1) |
| 180 | goto hash_done; |
| 181 | |
| 182 | while ((l + sizeof (int)) <= len) { |
| 183 | h ^= ntohl(*(unsigned int *)(&addr[l])); |
| 184 | l += sizeof (int); |
| 185 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 186 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 187 | h = full_hash(h); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 188 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 189 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 190 | return chash_get_server_hash(px, h, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 191 | else |
| 192 | return map_get_server_hash(px, h); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /* |
| 196 | * This function tries to find a running server for the proxy <px> following |
| 197 | * the URI hash method. In order to optimize cache hits, the hash computation |
| 198 | * ends at the question mark. Depending on the number of active/backup servers, |
| 199 | * it will either look for active servers, or for backup servers. |
| 200 | * If any server is found, it will be returned. If no valid server is found, |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 201 | * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to |
Willy Tarreau | 3d1119d | 2020-09-23 08:05:47 +0200 | [diff] [blame] | 202 | * the "whole" optional argument (boolean, bit0), the "len" argument (numeric) |
| 203 | * and the "depth" argument (numeric). |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 204 | * |
| 205 | * This code was contributed by Guillaume Dallaire, who also selected this hash |
| 206 | * algorithm out of a tens because it gave him the best results. |
| 207 | * |
| 208 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 209 | static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len, const struct server *avoid) |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 210 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 211 | unsigned int hash = 0; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 212 | int c; |
| 213 | int slashes = 0; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 214 | const char *start, *end; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 215 | |
| 216 | if (px->lbprm.tot_weight == 0) |
| 217 | return NULL; |
| 218 | |
| 219 | /* note: we won't hash if there's only one server left */ |
| 220 | if (px->lbprm.tot_used == 1) |
| 221 | goto hash_done; |
| 222 | |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 223 | if (px->lbprm.arg_opt2) // "len" |
| 224 | uri_len = MIN(uri_len, px->lbprm.arg_opt2); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 225 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 226 | start = end = uri; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 227 | while (uri_len--) { |
Willy Tarreau | fad4ffc | 2014-10-17 12:11:50 +0200 | [diff] [blame] | 228 | c = *end; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 229 | if (c == '/') { |
| 230 | slashes++; |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 231 | if (slashes == px->lbprm.arg_opt3) /* depth+1 */ |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 232 | break; |
| 233 | } |
Willy Tarreau | 3d1119d | 2020-09-23 08:05:47 +0200 | [diff] [blame] | 234 | else if (c == '?' && !(px->lbprm.arg_opt1 & 1)) // "whole" |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 235 | break; |
Willy Tarreau | fad4ffc | 2014-10-17 12:11:50 +0200 | [diff] [blame] | 236 | end++; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 237 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 238 | |
| 239 | hash = gen_hash(px, start, (end - start)); |
| 240 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 241 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 242 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 243 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 244 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 245 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 246 | else |
| 247 | return map_get_server_hash(px, hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 248 | } |
| 249 | |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 250 | /* |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 251 | * This function tries to find a running server for the proxy <px> following |
| 252 | * the URL parameter hash method. It looks for a specific parameter in the |
| 253 | * URL and hashes it to compute the server ID. This is useful to optimize |
| 254 | * performance by avoiding bounces between servers in contexts where sessions |
| 255 | * are shared but cookies are not usable. If the parameter is not found, NULL |
| 256 | * is returned. If any server is found, it will be returned. If no valid server |
| 257 | * is found, NULL is returned. |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 258 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 259 | static struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len, const struct server *avoid) |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 260 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 261 | unsigned int hash = 0; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 262 | const char *start, *end; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 263 | const char *p; |
| 264 | const char *params; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 265 | int plen; |
| 266 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 267 | /* when tot_weight is 0 then so is srv_count */ |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 268 | if (px->lbprm.tot_weight == 0) |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 269 | return NULL; |
| 270 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 271 | if ((p = memchr(uri, '?', uri_len)) == NULL) |
| 272 | return NULL; |
| 273 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 274 | p++; |
| 275 | |
| 276 | uri_len -= (p - uri); |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 277 | plen = px->lbprm.arg_len; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 278 | params = p; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 279 | |
| 280 | while (uri_len > plen) { |
| 281 | /* Look for the parameter name followed by an equal symbol */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 282 | if (params[plen] == '=') { |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 283 | if (memcmp(params, px->lbprm.arg_str, plen) == 0) { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 284 | /* OK, we have the parameter here at <params>, and |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 285 | * the value after the equal sign, at <p> |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 286 | * skip the equal symbol |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 287 | */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 288 | p += plen + 1; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 289 | start = end = p; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 290 | uri_len -= plen + 1; |
| 291 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 292 | while (uri_len && *end != '&') { |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 293 | uri_len--; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 294 | end++; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 295 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 296 | hash = gen_hash(px, start, (end - start)); |
| 297 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 298 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 299 | hash = full_hash(hash); |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 300 | |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 301 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 302 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 303 | else |
| 304 | return map_get_server_hash(px, hash); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 305 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 306 | } |
| 307 | /* skip to next parameter */ |
| 308 | p = memchr(params, '&', uri_len); |
| 309 | if (!p) |
| 310 | return NULL; |
| 311 | p++; |
| 312 | uri_len -= (p - params); |
| 313 | params = p; |
| 314 | } |
| 315 | return NULL; |
| 316 | } |
| 317 | |
| 318 | /* |
| 319 | * this does the same as the previous server_ph, but check the body contents |
| 320 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 321 | static struct server *get_server_ph_post(struct stream *s, const struct server *avoid) |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 322 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 323 | unsigned int hash = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 324 | struct channel *req = &s->req; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 325 | struct proxy *px = s->be; |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 326 | struct htx *htx = htxbuf(&req->buf); |
| 327 | struct htx_blk *blk; |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 328 | unsigned int plen = px->lbprm.arg_len; |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 329 | unsigned long len; |
| 330 | const char *params, *p, *start, *end; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 331 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 332 | if (px->lbprm.tot_weight == 0) |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 333 | return NULL; |
| 334 | |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 335 | p = params = NULL; |
| 336 | len = 0; |
| 337 | for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) { |
| 338 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 339 | struct ist v; |
Willy Tarreau | f69d4ff | 2015-05-02 00:05:47 +0200 | [diff] [blame] | 340 | |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 341 | if (type != HTX_BLK_DATA) |
| 342 | continue; |
| 343 | v = htx_get_blk_value(htx, blk); |
| 344 | p = params = v.ptr; |
| 345 | len = v.len; |
| 346 | break; |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 347 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 348 | |
| 349 | while (len > plen) { |
| 350 | /* Look for the parameter name followed by an equal symbol */ |
| 351 | if (params[plen] == '=') { |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 352 | if (memcmp(params, px->lbprm.arg_str, plen) == 0) { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 353 | /* OK, we have the parameter here at <params>, and |
| 354 | * the value after the equal sign, at <p> |
| 355 | * skip the equal symbol |
| 356 | */ |
| 357 | p += plen + 1; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 358 | start = end = p; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 359 | len -= plen + 1; |
| 360 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 361 | while (len && *end != '&') { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 362 | if (unlikely(!HTTP_IS_TOKEN(*p))) { |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 363 | /* if in a POST, body must be URI encoded or it's not a URI. |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 364 | * Do not interpret any possible binary data as a parameter. |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 365 | */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 366 | if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */ |
| 367 | break; |
| 368 | return NULL; /* oh, no; this is not uri-encoded. |
| 369 | * This body does not contain parameters. |
| 370 | */ |
| 371 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 372 | len--; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 373 | end++; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 374 | /* should we break if vlen exceeds limit? */ |
| 375 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 376 | hash = gen_hash(px, start, (end - start)); |
| 377 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 378 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 379 | hash = full_hash(hash); |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 380 | |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 381 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 382 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 383 | else |
| 384 | return map_get_server_hash(px, hash); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 385 | } |
| 386 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 387 | /* skip to next parameter */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 388 | p = memchr(params, '&', len); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 389 | if (!p) |
| 390 | return NULL; |
| 391 | p++; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 392 | len -= (p - params); |
| 393 | params = p; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 394 | } |
| 395 | return NULL; |
| 396 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 397 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 398 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 399 | /* |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 400 | * This function tries to find a running server for the proxy <px> following |
| 401 | * the Header parameter hash method. It looks for a specific parameter in the |
| 402 | * URL and hashes it to compute the server ID. This is useful to optimize |
| 403 | * performance by avoiding bounces between servers in contexts where sessions |
| 404 | * are shared but cookies are not usable. If the parameter is not found, NULL |
| 405 | * is returned. If any server is found, it will be returned. If no valid server |
Willy Tarreau | 9fed858 | 2019-01-14 16:04:54 +0100 | [diff] [blame] | 406 | * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only |
| 407 | * apply to the middle part of a domain name ("use_domain_only" option). |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 408 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 409 | static struct server *get_server_hh(struct stream *s, const struct server *avoid) |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 410 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 411 | unsigned int hash = 0; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 412 | struct proxy *px = s->be; |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 413 | unsigned int plen = px->lbprm.arg_len; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 414 | unsigned long len; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 415 | const char *p; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 416 | const char *start, *end; |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 417 | struct htx *htx = htxbuf(&s->req.buf); |
| 418 | struct http_hdr_ctx ctx = { .blk = NULL }; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 419 | |
| 420 | /* tot_weight appears to mean srv_count */ |
| 421 | if (px->lbprm.tot_weight == 0) |
| 422 | return NULL; |
| 423 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 424 | /* note: we won't hash if there's only one server left */ |
| 425 | if (px->lbprm.tot_used == 1) |
| 426 | goto hash_done; |
| 427 | |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 428 | http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0); |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 429 | |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 430 | /* if the header is not found or empty, let's fallback to round robin */ |
| 431 | if (!ctx.blk || !ctx.value.len) |
| 432 | return NULL; |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 433 | |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 434 | /* Found a the param_name in the headers. |
| 435 | * we will compute the hash based on this value ctx.val. |
| 436 | */ |
| 437 | len = ctx.value.len; |
| 438 | p = ctx.value.ptr; |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 439 | |
Willy Tarreau | 9fed858 | 2019-01-14 16:04:54 +0100 | [diff] [blame] | 440 | if (!px->lbprm.arg_opt1) { |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 441 | hash = gen_hash(px, p, len); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 442 | } else { |
| 443 | int dohash = 0; |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 444 | p += len; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 445 | /* special computation, use only main domain name, not tld/host |
| 446 | * going back from the end of string, start hashing at first |
| 447 | * dot stop at next. |
| 448 | * This is designed to work with the 'Host' header, and requires |
| 449 | * a special option to activate this. |
| 450 | */ |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 451 | end = p; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 452 | while (len) { |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 453 | if (dohash) { |
| 454 | /* Rewind the pointer until the previous char |
| 455 | * is a dot, this will allow to set the start |
| 456 | * position of the domain. */ |
| 457 | if (*(p - 1) == '.') |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 458 | break; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 459 | } |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 460 | else if (*p == '.') { |
| 461 | /* The pointer is rewinded to the dot before the |
| 462 | * tld, we memorize the end of the domain and |
| 463 | * can enter the domain processing. */ |
| 464 | end = p; |
| 465 | dohash = 1; |
| 466 | } |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 467 | p--; |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 468 | len--; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 469 | } |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 470 | start = p; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 471 | hash = gen_hash(px, start, (end - start)); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 472 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 473 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 474 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 475 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 476 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 477 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 478 | else |
| 479 | return map_get_server_hash(px, hash); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 480 | } |
| 481 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 482 | /* RDP Cookie HASH. */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 483 | static struct server *get_server_rch(struct stream *s, const struct server *avoid) |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 484 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 485 | unsigned int hash = 0; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 486 | struct proxy *px = s->be; |
| 487 | unsigned long len; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 488 | int ret; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 489 | struct sample smp; |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 490 | int rewind; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 491 | |
| 492 | /* tot_weight appears to mean srv_count */ |
| 493 | if (px->lbprm.tot_weight == 0) |
| 494 | return NULL; |
| 495 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 496 | memset(&smp, 0, sizeof(smp)); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 497 | |
Willy Tarreau | 6a445eb | 2018-06-19 07:04:45 +0200 | [diff] [blame] | 498 | rewind = co_data(&s->req); |
| 499 | c_rew(&s->req, rewind); |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 500 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 501 | ret = fetch_rdp_cookie_name(s, &smp, px->lbprm.arg_str, px->lbprm.arg_len); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 502 | len = smp.data.u.str.data; |
Willy Tarreau | 664092c | 2011-12-16 19:11:42 +0100 | [diff] [blame] | 503 | |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 504 | c_adv(&s->req, rewind); |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 505 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 506 | if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0) |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 507 | return NULL; |
| 508 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 509 | /* note: we won't hash if there's only one server left */ |
| 510 | if (px->lbprm.tot_used == 1) |
| 511 | goto hash_done; |
| 512 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 513 | /* Found the param_name in the headers. |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 514 | * we will compute the hash based on this value ctx.val. |
| 515 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 516 | hash = gen_hash(px, smp.data.u.str.area, len); |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 517 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 518 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 519 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 520 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 521 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 522 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 523 | else |
| 524 | return map_get_server_hash(px, hash); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 525 | } |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 526 | |
Willy Tarreau | 7c9a0fe | 2022-04-25 10:25:34 +0200 | [diff] [blame^] | 527 | /* sample expression HASH. Returns NULL if the sample is not found or if there |
| 528 | * are no server, relying on the caller to fall back to round robin instead. |
| 529 | */ |
| 530 | static struct server *get_server_expr(struct stream *s, const struct server *avoid) |
| 531 | { |
| 532 | struct proxy *px = s->be; |
| 533 | struct sample *smp; |
| 534 | unsigned int hash = 0; |
| 535 | |
| 536 | if (px->lbprm.tot_weight == 0) |
| 537 | return NULL; |
| 538 | |
| 539 | /* note: no need to hash if there's only one server left */ |
| 540 | if (px->lbprm.tot_used == 1) |
| 541 | goto hash_done; |
| 542 | |
| 543 | smp = sample_fetch_as_type(px, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, px->lbprm.expr, SMP_T_BIN); |
| 544 | if (!smp) |
| 545 | return NULL; |
| 546 | |
| 547 | /* We have the desired data. Let's hash it according to the configured |
| 548 | * options and algorithm. |
| 549 | */ |
| 550 | hash = gen_hash(px, smp->data.u.str.area, smp->data.u.str.data); |
| 551 | |
| 552 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
| 553 | hash = full_hash(hash); |
| 554 | hash_done: |
| 555 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
| 556 | return chash_get_server_hash(px, hash, avoid); |
| 557 | else |
| 558 | return map_get_server_hash(px, hash); |
| 559 | } |
| 560 | |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 561 | /* random value */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 562 | static struct server *get_server_rnd(struct stream *s, const struct server *avoid) |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 563 | { |
| 564 | unsigned int hash = 0; |
| 565 | struct proxy *px = s->be; |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 566 | struct server *prev, *curr; |
| 567 | int draws = px->lbprm.arg_opt1; // number of draws |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 568 | |
| 569 | /* tot_weight appears to mean srv_count */ |
| 570 | if (px->lbprm.tot_weight == 0) |
| 571 | return NULL; |
| 572 | |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 573 | curr = NULL; |
| 574 | do { |
| 575 | prev = curr; |
Ubuntu | 1adaddb | 2021-03-01 07:57:54 +0000 | [diff] [blame] | 576 | hash = statistical_prng(); |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 577 | curr = chash_get_server_hash(px, hash, avoid); |
| 578 | if (!curr) |
| 579 | break; |
| 580 | |
| 581 | /* compare the new server to the previous best choice and pick |
| 582 | * the one with the least currently served requests. |
| 583 | */ |
| 584 | if (prev && prev != curr && |
| 585 | curr->served * prev->cur_eweight > prev->served * curr->cur_eweight) |
| 586 | curr = prev; |
| 587 | } while (--draws > 0); |
| 588 | |
Willy Tarreau | b88ae18 | 2020-09-29 16:58:30 +0200 | [diff] [blame] | 589 | /* if the selected server is full, pretend we have none so that we reach |
| 590 | * the backend's queue instead. |
| 591 | */ |
| 592 | if (curr && |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 593 | (curr->queue.length || (curr->maxconn && curr->served >= srv_dynamic_maxconn(curr)))) |
Willy Tarreau | b88ae18 | 2020-09-29 16:58:30 +0200 | [diff] [blame] | 594 | curr = NULL; |
| 595 | |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 596 | return curr; |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 597 | } |
| 598 | |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 599 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 600 | * This function applies the load-balancing algorithm to the stream, as |
| 601 | * defined by the backend it is assigned to. The stream is then marked as |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 602 | * 'assigned'. |
| 603 | * |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 604 | * This function MAY NOT be called with SF_ASSIGNED already set. If the stream |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 605 | * had a server previously assigned, it is rebalanced, trying to avoid the same |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 606 | * server, which should still be present in target_srv(&s->target) before the call. |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 607 | * The function tries to keep the original connection slot if it reconnects to |
| 608 | * the same server, otherwise it releases it and tries to offer it. |
| 609 | * |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 610 | * It is illegal to call this function with a stream in a queue. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 611 | * |
| 612 | * It may return : |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 613 | * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned. |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 614 | * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED |
| 615 | * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 616 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 617 | * |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 618 | * Upon successful return, the stream flag SF_ASSIGNED is set to indicate that |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 619 | * it does not need to be called anymore. This means that target_srv(&s->target) |
| 620 | * can be trusted in balance and direct modes. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 621 | * |
| 622 | */ |
| 623 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 624 | int assign_server(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 625 | { |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 626 | struct connection *conn = NULL; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 627 | struct server *conn_slot; |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 628 | struct server *srv = NULL, *prev_srv; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 629 | int err; |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 630 | |
Simon Horman | 8effd3d | 2011-08-13 08:03:52 +0900 | [diff] [blame] | 631 | DPRINTF(stderr,"assign_server : s=%p\n",s); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 632 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 633 | err = SRV_STATUS_INTERNAL; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 634 | if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED)) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 635 | goto out_err; |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 636 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 637 | prev_srv = objt_server(s->target); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 638 | conn_slot = s->srv_conn; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 639 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 640 | /* We have to release any connection slot before applying any LB algo, |
| 641 | * otherwise we may erroneously end up with no available slot. |
| 642 | */ |
| 643 | if (conn_slot) |
| 644 | sess_change_server(s, NULL); |
| 645 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 646 | /* We will now try to find the good server and store it into <objt_server(s->target)>. |
| 647 | * Note that <objt_server(s->target)> may be NULL in case of dispatch or proxy mode, |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 648 | * as well as if no server is available (check error code). |
| 649 | */ |
Willy Tarreau | 1a20a5d | 2007-11-01 21:08:19 +0100 | [diff] [blame] | 650 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 651 | srv = NULL; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 652 | s->target = NULL; |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 653 | |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 654 | if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI && |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 655 | ((s->sess->flags & SESS_FL_PREFER_LAST) || |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 656 | (s->be->options & PR_O_PREF_LAST))) { |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 657 | struct sess_srv_list *srv_list; |
| 658 | list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) { |
| 659 | struct server *tmpsrv = objt_server(srv_list->target); |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 660 | |
| 661 | if (tmpsrv && tmpsrv->proxy == s->be && |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 662 | ((s->sess->flags & SESS_FL_PREFER_LAST) || |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 663 | (!s->be->max_ka_queue || |
| 664 | server_has_room(tmpsrv) || ( |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 665 | tmpsrv->queue.length + 1 < s->be->max_ka_queue))) && |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 666 | srv_currently_usable(tmpsrv)) { |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 667 | list_for_each_entry(conn, &srv_list->conn_list, session_list) { |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 668 | if (!(conn->flags & CO_FL_WAIT_XPRT)) { |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 669 | srv = tmpsrv; |
| 670 | s->target = &srv->obj_type; |
Christopher Faulet | e91a526 | 2020-07-01 18:56:30 +0200 | [diff] [blame] | 671 | if (conn->flags & CO_FL_SESS_IDLE) { |
| 672 | conn->flags &= ~CO_FL_SESS_IDLE; |
| 673 | s->sess->idle_conns--; |
| 674 | } |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 675 | goto out_ok; |
| 676 | } |
| 677 | } |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 678 | } |
| 679 | } |
Willy Tarreau | 9420b12 | 2013-12-15 18:58:25 +0100 | [diff] [blame] | 680 | } |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 681 | |
Willy Tarreau | 82cd5c1 | 2020-09-29 17:07:21 +0200 | [diff] [blame] | 682 | if (s->be->lbprm.algo & BE_LB_KIND) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 683 | /* we must check if we have at least one server available */ |
| 684 | if (!s->be->lbprm.tot_weight) { |
| 685 | err = SRV_STATUS_NOSRV; |
| 686 | goto out; |
| 687 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 688 | |
Willy Tarreau | 82cd5c1 | 2020-09-29 17:07:21 +0200 | [diff] [blame] | 689 | /* if there's some queue on the backend, with certain algos we |
| 690 | * know it's because all servers are full. |
| 691 | */ |
Willy Tarreau | 7f3c1df | 2021-06-18 09:22:21 +0200 | [diff] [blame] | 692 | if (s->be->queue.length && s->be->queue.length != s->be->beconn && |
Willy Tarreau | 8ae8c48 | 2020-10-22 17:19:07 +0200 | [diff] [blame] | 693 | (((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_FAS)|| // first |
Willy Tarreau | 82cd5c1 | 2020-09-29 17:07:21 +0200 | [diff] [blame] | 694 | ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_RR) || // roundrobin |
| 695 | ((s->be->lbprm.algo & (BE_LB_KIND|BE_LB_NEED|BE_LB_PARM)) == BE_LB_ALGO_SRR))) { // static-rr |
| 696 | err = SRV_STATUS_FULL; |
| 697 | goto out; |
| 698 | } |
| 699 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 700 | /* First check whether we need to fetch some data or simply call |
| 701 | * the LB lookup function. Only the hashing functions will need |
| 702 | * some input data in fact, and will support multiple algorithms. |
| 703 | */ |
| 704 | switch (s->be->lbprm.algo & BE_LB_LKUP) { |
| 705 | case BE_LB_LKUP_RRTREE: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 706 | srv = fwrr_get_next_server(s->be, prev_srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 707 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 708 | |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 709 | case BE_LB_LKUP_FSTREE: |
| 710 | srv = fas_get_next_server(s->be, prev_srv); |
| 711 | break; |
| 712 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 713 | case BE_LB_LKUP_LCTREE: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 714 | srv = fwlc_get_next_server(s->be, prev_srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 715 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 716 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 717 | case BE_LB_LKUP_CHTREE: |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 718 | case BE_LB_LKUP_MAP: |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 719 | if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) { |
Willy Tarreau | 5ffb045 | 2021-06-22 17:31:51 +0200 | [diff] [blame] | 720 | /* static-rr (map) or random (chash) */ |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 721 | if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 722 | srv = get_server_rnd(s, prev_srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 723 | else |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 724 | srv = map_get_server_rr(s->be, prev_srv); |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 725 | break; |
| 726 | } |
| 727 | else if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI) { |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 728 | /* unknown balancing algorithm */ |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 729 | err = SRV_STATUS_INTERNAL; |
| 730 | goto out; |
| 731 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 732 | |
| 733 | switch (s->be->lbprm.algo & BE_LB_PARM) { |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 734 | const struct sockaddr_storage *src; |
| 735 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 736 | case BE_LB_HASH_SRC: |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 737 | src = cs_src(s->csf); |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 738 | if (src && src->ss_family == AF_INET) { |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 739 | srv = get_server_sh(s->be, |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 740 | (void *)&((struct sockaddr_in *)src)->sin_addr, |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 741 | 4, prev_srv); |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 742 | } |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 743 | else if (src && src->ss_family == AF_INET6) { |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 744 | srv = get_server_sh(s->be, |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 745 | (void *)&((struct sockaddr_in6 *)src)->sin6_addr, |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 746 | 16, prev_srv); |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 747 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 748 | else { |
| 749 | /* unknown IP family */ |
| 750 | err = SRV_STATUS_INTERNAL; |
| 751 | goto out; |
| 752 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 753 | break; |
| 754 | |
| 755 | case BE_LB_HASH_URI: |
| 756 | /* URI hashing */ |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 757 | if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) { |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 758 | struct ist uri; |
| 759 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 760 | uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf))); |
Willy Tarreau | 57a3741 | 2020-09-23 08:56:29 +0200 | [diff] [blame] | 761 | if (s->be->lbprm.arg_opt1 & 2) { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 762 | struct http_uri_parser parser = |
| 763 | http_uri_parser_init(uri); |
| 764 | |
| 765 | uri = http_parse_path(&parser); |
Tim Duesterhus | 7b5777d | 2021-03-02 18:57:28 +0100 | [diff] [blame] | 766 | if (!isttest(uri)) |
Willy Tarreau | 57a3741 | 2020-09-23 08:56:29 +0200 | [diff] [blame] | 767 | uri = ist(""); |
| 768 | } |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 769 | srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv); |
| 770 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 771 | break; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 772 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 773 | case BE_LB_HASH_PRM: |
| 774 | /* URL Parameter hashing */ |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 775 | if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) { |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 776 | struct ist uri; |
| 777 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 778 | uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf))); |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 779 | srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv); |
Willy Tarreau | 61a21a3 | 2011-03-01 20:35:49 +0100 | [diff] [blame] | 780 | |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 781 | if (!srv && s->txn->meth == HTTP_METH_POST) |
| 782 | srv = get_server_ph_post(s, prev_srv); |
| 783 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 784 | break; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 785 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 786 | case BE_LB_HASH_HDR: |
| 787 | /* Header Parameter hashing */ |
Christopher Faulet | 7d37fbb | 2019-07-15 15:37:57 +0200 | [diff] [blame] | 788 | if (IS_HTX_STRM(s) && s->txn->req.msg_state >= HTTP_MSG_BODY) |
| 789 | srv = get_server_hh(s, prev_srv); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 790 | break; |
| 791 | |
| 792 | case BE_LB_HASH_RDP: |
| 793 | /* RDP Cookie hashing */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 794 | srv = get_server_rch(s, prev_srv); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 795 | break; |
| 796 | |
Willy Tarreau | 7c9a0fe | 2022-04-25 10:25:34 +0200 | [diff] [blame^] | 797 | case BE_LB_HASH_SMP: |
| 798 | /* sample expression hashing */ |
| 799 | srv = get_server_expr(s, prev_srv); |
| 800 | break; |
| 801 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 802 | default: |
| 803 | /* unknown balancing algorithm */ |
| 804 | err = SRV_STATUS_INTERNAL; |
| 805 | goto out; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 806 | } |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 807 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 808 | /* If the hashing parameter was not found, let's fall |
| 809 | * back to round robin on the map. |
| 810 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 811 | if (!srv) { |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 812 | if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 813 | srv = chash_get_next_server(s->be, prev_srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 814 | else |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 815 | srv = map_get_server_rr(s->be, prev_srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 816 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 817 | |
| 818 | /* end of map-based LB */ |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 819 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 820 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 821 | default: |
| 822 | /* unknown balancing algorithm */ |
| 823 | err = SRV_STATUS_INTERNAL; |
| 824 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 825 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 826 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 827 | if (!srv) { |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 828 | err = SRV_STATUS_FULL; |
| 829 | goto out; |
| 830 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 831 | else if (srv != prev_srv) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 832 | _HA_ATOMIC_INC(&s->be->be_counters.cum_lbconn); |
| 833 | _HA_ATOMIC_INC(&srv->counters.cum_lbconn); |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 834 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 835 | s->target = &srv->obj_type; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 836 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 837 | else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 838 | s->target = &s->be->obj_type; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 839 | } |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 840 | else { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 841 | err = SRV_STATUS_NOSRV; |
| 842 | goto out; |
| 843 | } |
| 844 | |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 845 | out_ok: |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 846 | s->flags |= SF_ASSIGNED; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 847 | err = SRV_STATUS_OK; |
| 848 | out: |
| 849 | |
| 850 | /* Either we take back our connection slot, or we offer it to someone |
| 851 | * else if we don't need it anymore. |
| 852 | */ |
| 853 | if (conn_slot) { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 854 | if (conn_slot == srv) { |
| 855 | sess_change_server(s, srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 856 | } else { |
| 857 | if (may_dequeue_tasks(conn_slot, s->be)) |
Willy Tarreau | 9ab7829 | 2021-06-22 18:47:51 +0200 | [diff] [blame] | 858 | process_srv_queue(conn_slot); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 859 | } |
| 860 | } |
| 861 | |
| 862 | out_err: |
| 863 | return err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 864 | } |
| 865 | |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 866 | /* Allocate an address for the destination endpoint |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 867 | * The address is taken from the currently assigned server, or from the |
| 868 | * dispatch or transparent address. |
| 869 | * |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 870 | * Returns SRV_STATUS_OK on success. |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 871 | * On error, no address is allocated and SRV_STATUS_INTERNAL is returned. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 872 | */ |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 873 | static int alloc_dst_address(struct sockaddr_storage **ss, |
| 874 | struct server *srv, struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 875 | { |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 876 | const struct sockaddr_storage *dst; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 877 | |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 878 | *ss = NULL; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 879 | if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 880 | /* A server is necessarily known for this stream */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 881 | if (!(s->flags & SF_ASSIGNED)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 882 | return SRV_STATUS_INTERNAL; |
| 883 | |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 884 | if (!sockaddr_alloc(ss, NULL, 0)) |
| 885 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 886 | |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 887 | **ss = srv->addr; |
| 888 | set_host_port(*ss, srv->svc_port); |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 889 | if (!is_addr(*ss)) { |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 890 | /* if the server has no address, we use the same address |
| 891 | * the client asked, which is handy for remapping ports |
Willy Tarreau | 9cf8d3f | 2014-05-09 22:56:10 +0200 | [diff] [blame] | 892 | * locally on multiple addresses at once. Nothing is done |
| 893 | * for AF_UNIX addresses. |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 894 | */ |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 895 | dst = cs_dst(s->csf); |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 896 | if (dst && dst->ss_family == AF_INET) { |
Christopher Faulet | ae30561 | 2021-03-01 11:33:59 +0100 | [diff] [blame] | 897 | ((struct sockaddr_in *)*ss)->sin_family = AF_INET; |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 898 | ((struct sockaddr_in *)*ss)->sin_addr = |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 899 | ((struct sockaddr_in *)dst)->sin_addr; |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 900 | } else if (dst && dst->ss_family == AF_INET6) { |
Christopher Faulet | ae30561 | 2021-03-01 11:33:59 +0100 | [diff] [blame] | 901 | ((struct sockaddr_in6 *)*ss)->sin6_family = AF_INET6; |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 902 | ((struct sockaddr_in6 *)*ss)->sin6_addr = |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 903 | ((struct sockaddr_in6 *)dst)->sin6_addr; |
Emeric Brun | ec810d1 | 2010-10-22 16:36:33 +0200 | [diff] [blame] | 904 | } |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 905 | } |
| 906 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 907 | /* if this server remaps proxied ports, we'll use |
| 908 | * the port the client connected to with an offset. */ |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 909 | if ((srv->flags & SRV_F_MAPPORTS)) { |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 910 | int base_port; |
| 911 | |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 912 | dst = cs_dst(s->csf); |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 913 | if (dst) { |
| 914 | /* First, retrieve the port from the incoming connection */ |
| 915 | base_port = get_host_port(dst); |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 916 | |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 917 | /* Second, assign the outgoing connection's port */ |
| 918 | base_port += get_host_port(*ss); |
| 919 | set_host_port(*ss, base_port); |
| 920 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 921 | } |
| 922 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 923 | else if (s->be->options & PR_O_DISPATCH) { |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 924 | if (!sockaddr_alloc(ss, NULL, 0)) |
| 925 | return SRV_STATUS_INTERNAL; |
| 926 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 927 | /* connect to the defined dispatch addr */ |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 928 | **ss = s->be->dispatch_addr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 929 | } |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 930 | else if ((s->be->options & PR_O_TRANSP)) { |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 931 | if (!sockaddr_alloc(ss, NULL, 0)) |
Amaury Denoyelle | 68cf395 | 2021-01-11 15:24:31 +0100 | [diff] [blame] | 932 | return SRV_STATUS_INTERNAL; |
| 933 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 934 | /* in transparent mode, use the original dest addr if no dispatch specified */ |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 935 | dst = cs_dst(s->csf); |
Christopher Faulet | 34a3eb4 | 2021-11-05 12:02:56 +0100 | [diff] [blame] | 936 | if (dst && (dst->ss_family == AF_INET || dst->ss_family == AF_INET6)) |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 937 | **ss = *dst; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 938 | } |
Willy Tarreau | 1a1158b | 2007-01-20 11:07:46 +0100 | [diff] [blame] | 939 | else { |
| 940 | /* no server and no LB algorithm ! */ |
| 941 | return SRV_STATUS_INTERNAL; |
| 942 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 943 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 944 | return SRV_STATUS_OK; |
| 945 | } |
| 946 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 947 | /* This function assigns a server to stream <s> if required, and can add the |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 948 | * connection to either the assigned server's queue or to the proxy's queue. |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 949 | * If ->srv_conn is set, the stream is first released from the server. |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 950 | * It may also be called with SF_DIRECT and/or SF_ASSIGNED though. It will |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 951 | * be called before any connection and after any retry or redispatch occurs. |
| 952 | * |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 953 | * It is not allowed to call this function with a stream in a queue. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 954 | * |
| 955 | * Returns : |
| 956 | * |
| 957 | * SRV_STATUS_OK if everything is OK. |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 958 | * SRV_STATUS_NOSRV if no server is available. objt_server(s->target) = NULL. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 959 | * SRV_STATUS_QUEUED if the connection has been queued. |
| 960 | * SRV_STATUS_FULL if the server(s) is/are saturated and the |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 961 | * connection could not be queued at the server's, |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 962 | * which may be NULL if we queue on the backend. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 963 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 964 | * |
| 965 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 966 | int assign_server_and_queue(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 967 | { |
| 968 | struct pendconn *p; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 969 | struct server *srv; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 970 | int err; |
| 971 | |
| 972 | if (s->pend_pos) |
| 973 | return SRV_STATUS_INTERNAL; |
| 974 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 975 | err = SRV_STATUS_OK; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 976 | if (!(s->flags & SF_ASSIGNED)) { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 977 | struct server *prev_srv = objt_server(s->target); |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 978 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 979 | err = assign_server(s); |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 980 | if (prev_srv) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 981 | /* This stream was previously assigned to a server. We have to |
| 982 | * update the stream's and the server's stats : |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 983 | * - if the server changed : |
| 984 | * - set TX_CK_DOWN if txn.flags was TX_CK_VALID |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 985 | * - set SF_REDISP if it was successfully redispatched |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 986 | * - increment srv->redispatches and be->redispatches |
| 987 | * - if the server remained the same : update retries. |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 988 | */ |
| 989 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 990 | if (prev_srv != objt_server(s->target)) { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 991 | if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) { |
| 992 | s->txn->flags &= ~TX_CK_MASK; |
| 993 | s->txn->flags |= TX_CK_DOWN; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 994 | } |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 995 | s->flags |= SF_REDISP; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 996 | _HA_ATOMIC_INC(&prev_srv->counters.redispatches); |
| 997 | _HA_ATOMIC_INC(&s->be->be_counters.redispatches); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 998 | } else { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 999 | _HA_ATOMIC_INC(&prev_srv->counters.retries); |
| 1000 | _HA_ATOMIC_INC(&s->be->be_counters.retries); |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 1001 | } |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 1002 | } |
| 1003 | } |
| 1004 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1005 | switch (err) { |
| 1006 | case SRV_STATUS_OK: |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1007 | /* we have SF_ASSIGNED set */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1008 | srv = objt_server(s->target); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1009 | if (!srv) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1010 | return SRV_STATUS_OK; /* dispatch or proxy mode */ |
| 1011 | |
| 1012 | /* If we already have a connection slot, no need to check any queue */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1013 | if (s->srv_conn == srv) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1014 | return SRV_STATUS_OK; |
| 1015 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1016 | /* OK, this stream already has an assigned server, but no |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1017 | * connection slot yet. Either it is a redispatch, or it was |
| 1018 | * assigned from persistence information (direct mode). |
| 1019 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1020 | if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1021 | /* server scheduled for redirection, and already assigned. We |
| 1022 | * don't want to go further nor check the queue. |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 1023 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1024 | sess_change_server(s, srv); /* not really needed in fact */ |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 1025 | return SRV_STATUS_OK; |
| 1026 | } |
| 1027 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1028 | /* We might have to queue this stream if the assigned server is full. |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1029 | * We know we have to queue it into the server's queue, so if a maxqueue |
| 1030 | * is set on the server, we must also check that the server's queue is |
| 1031 | * not full, in which case we have to return FULL. |
| 1032 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1033 | if (srv->maxconn && |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 1034 | (srv->queue.length || srv->served >= srv_dynamic_maxconn(srv))) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1035 | |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 1036 | if (srv->maxqueue > 0 && srv->queue.length >= srv->maxqueue) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1037 | return SRV_STATUS_FULL; |
| 1038 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1039 | p = pendconn_add(s); |
| 1040 | if (p) |
| 1041 | return SRV_STATUS_QUEUED; |
| 1042 | else |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1043 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1044 | } |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1045 | |
| 1046 | /* OK, we can use this server. Let's reserve our place */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1047 | sess_change_server(s, srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1048 | return SRV_STATUS_OK; |
| 1049 | |
| 1050 | case SRV_STATUS_FULL: |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1051 | /* queue this stream into the proxy's queue */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1052 | p = pendconn_add(s); |
| 1053 | if (p) |
| 1054 | return SRV_STATUS_QUEUED; |
| 1055 | else |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1056 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1057 | |
| 1058 | case SRV_STATUS_NOSRV: |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1059 | return err; |
| 1060 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1061 | case SRV_STATUS_INTERNAL: |
| 1062 | return err; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1063 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1064 | default: |
| 1065 | return SRV_STATUS_INTERNAL; |
| 1066 | } |
Willy Tarreau | 5b6995c | 2008-01-13 16:31:17 +0100 | [diff] [blame] | 1067 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1068 | |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1069 | /* Allocate an address for source binding on the specified server or backend. |
| 1070 | * The allocation is only performed if the connection is intended to be used |
| 1071 | * with transparent mode. |
| 1072 | * |
| 1073 | * Returns SRV_STATUS_OK if no transparent mode or the address was successfully |
| 1074 | * allocated. Otherwise returns SRV_STATUS_INTERNAL. |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1075 | */ |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1076 | static int alloc_bind_address(struct sockaddr_storage **ss, |
| 1077 | struct server *srv, struct stream *s) |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1078 | { |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 1079 | #if defined(CONFIG_HAP_TRANSPARENT) |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 1080 | const struct sockaddr_storage *addr; |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1081 | struct conn_src *src = NULL; |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1082 | struct sockaddr_in *sin; |
| 1083 | char *vptr; |
| 1084 | size_t vlen; |
| 1085 | #endif |
Olivier Houchard | 09a0f03 | 2019-01-17 15:59:13 +0100 | [diff] [blame] | 1086 | |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1087 | *ss = NULL; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1088 | |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1089 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1090 | if (srv && srv->conn_src.opts & CO_SRC_BIND) |
| 1091 | src = &srv->conn_src; |
| 1092 | else if (s->be->conn_src.opts & CO_SRC_BIND) |
| 1093 | src = &s->be->conn_src; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 1094 | |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1095 | /* no transparent mode, no need to allocate an address, returns OK */ |
| 1096 | if (!src) |
| 1097 | return SRV_STATUS_OK; |
Willy Tarreau | c0e16f2 | 2019-07-17 18:16:30 +0200 | [diff] [blame] | 1098 | |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1099 | switch (src->opts & CO_SRC_TPROXY_MASK) { |
| 1100 | case CO_SRC_TPROXY_ADDR: |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1101 | if (!sockaddr_alloc(ss, NULL, 0)) |
| 1102 | return SRV_STATUS_INTERNAL; |
| 1103 | |
| 1104 | **ss = src->tproxy_addr; |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1105 | break; |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1106 | |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1107 | case CO_SRC_TPROXY_CLI: |
| 1108 | case CO_SRC_TPROXY_CIP: |
| 1109 | /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */ |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 1110 | addr = cs_src(s->csf); |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 1111 | if (!addr) |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1112 | return SRV_STATUS_INTERNAL; |
| 1113 | |
| 1114 | if (!sockaddr_alloc(ss, NULL, 0)) |
| 1115 | return SRV_STATUS_INTERNAL; |
| 1116 | |
Christopher Faulet | a8e95fe | 2021-10-25 08:13:25 +0200 | [diff] [blame] | 1117 | **ss = *addr; |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1118 | break; |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1119 | |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1120 | case CO_SRC_TPROXY_DYN: |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1121 | if (!src->bind_hdr_occ || !IS_HTX_STRM(s)) |
| 1122 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 1123 | |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1124 | if (!sockaddr_alloc(ss, NULL, 0)) |
| 1125 | return SRV_STATUS_INTERNAL; |
| 1126 | |
| 1127 | /* bind to the IP in a header */ |
| 1128 | sin = (struct sockaddr_in *)*ss; |
| 1129 | sin->sin_family = AF_INET; |
| 1130 | sin->sin_port = 0; |
| 1131 | sin->sin_addr.s_addr = 0; |
| 1132 | if (!http_get_htx_hdr(htxbuf(&s->req.buf), |
| 1133 | ist2(src->bind_hdr_name, src->bind_hdr_len), |
| 1134 | src->bind_hdr_occ, NULL, &vptr, &vlen)) { |
| 1135 | sockaddr_free(ss); |
| 1136 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1137 | } |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1138 | |
| 1139 | sin->sin_addr.s_addr = htonl(inetaddr_host_lim(vptr, vptr + vlen)); |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1140 | break; |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1141 | |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1142 | default: |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1143 | ; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1144 | } |
| 1145 | #endif |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1146 | |
| 1147 | return SRV_STATUS_OK; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1148 | } |
| 1149 | |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1150 | /* Attempt to get a backend connection from the specified mt_list array |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1151 | * (safe or idle connections). The <is_safe> argument means what type of |
| 1152 | * connection the caller wants. |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1153 | */ |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1154 | static struct connection *conn_backend_get(struct stream *s, struct server *srv, int is_safe, int64_t hash) |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1155 | { |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1156 | struct connection *conn = NULL; |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 1157 | int i; // thread number |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1158 | int found = 0; |
Willy Tarreau | 364f25a | 2020-07-01 15:55:30 +0200 | [diff] [blame] | 1159 | int stop; |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1160 | |
| 1161 | /* We need to lock even if this is our own list, because another |
| 1162 | * thread may be trying to migrate that connection, and we don't want |
| 1163 | * to end up with two threads using the same connection. |
| 1164 | */ |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 1165 | i = tid; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 1166 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1167 | conn = srv_lookup_conn(is_safe ? &srv->per_thr[tid].safe_conns : &srv->per_thr[tid].idle_conns, hash); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1168 | if (conn) |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1169 | conn_delete_from_tree(&conn->hash_node->node); |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1170 | |
| 1171 | /* If we failed to pick a connection from the idle list, let's try again with |
| 1172 | * the safe list. |
| 1173 | */ |
| 1174 | if (!conn && !is_safe && srv->curr_safe_nb > 0) { |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1175 | conn = srv_lookup_conn(&srv->per_thr[tid].safe_conns, hash); |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1176 | if (conn) { |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1177 | conn_delete_from_tree(&conn->hash_node->node); |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1178 | is_safe = 1; |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1179 | } |
| 1180 | } |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 1181 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1182 | |
| 1183 | /* If we found a connection in our own list, and we don't have to |
| 1184 | * steal one from another thread, then we're done. |
| 1185 | */ |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 1186 | if (conn) |
| 1187 | goto done; |
| 1188 | |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 1189 | /* pool sharing globally disabled ? */ |
| 1190 | if (!(global.tune.options & GTUNE_IDLE_POOL_SHARED)) |
| 1191 | goto done; |
| 1192 | |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 1193 | /* Are we allowed to pick from another thread ? We'll still try |
| 1194 | * it if we're running low on FDs as we don't want to create |
| 1195 | * extra conns in this case, otherwise we can give up if we have |
| 1196 | * too few idle conns. |
| 1197 | */ |
| 1198 | if (srv->curr_idle_conns < srv->low_idle_conns && |
| 1199 | ha_used_fds < global.tune.pool_low_count) |
| 1200 | goto done; |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1201 | |
Willy Tarreau | 364f25a | 2020-07-01 15:55:30 +0200 | [diff] [blame] | 1202 | /* Lookup all other threads for an idle connection, starting from last |
| 1203 | * unvisited thread. |
| 1204 | */ |
| 1205 | stop = srv->next_takeover; |
| 1206 | if (stop >= global.nbthread) |
| 1207 | stop = 0; |
| 1208 | |
Amaury Denoyelle | 5f1ded5 | 2020-10-14 18:17:03 +0200 | [diff] [blame] | 1209 | i = stop; |
| 1210 | do { |
Willy Tarreau | 364f25a | 2020-07-01 15:55:30 +0200 | [diff] [blame] | 1211 | if (!srv->curr_idle_thr[i] || i == tid) |
Willy Tarreau | 151c253 | 2020-07-01 08:24:44 +0200 | [diff] [blame] | 1212 | continue; |
| 1213 | |
Ubuntu | b1adf03 | 2021-03-01 06:22:17 +0000 | [diff] [blame] | 1214 | if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0) |
| 1215 | continue; |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1216 | conn = srv_lookup_conn(is_safe ? &srv->per_thr[i].safe_conns : &srv->per_thr[i].idle_conns, hash); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1217 | while (conn) { |
Olivier Houchard | 1662cdb | 2020-07-03 14:04:37 +0200 | [diff] [blame] | 1218 | if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) { |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1219 | conn_delete_from_tree(&conn->hash_node->node); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1220 | _HA_ATOMIC_INC(&activity[tid].fd_takeover); |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1221 | found = 1; |
| 1222 | break; |
| 1223 | } |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1224 | |
| 1225 | conn = srv_lookup_conn_next(conn); |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1226 | } |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1227 | |
| 1228 | if (!found && !is_safe && srv->curr_safe_nb > 0) { |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1229 | conn = srv_lookup_conn(&srv->per_thr[i].safe_conns, hash); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1230 | while (conn) { |
Olivier Houchard | 1662cdb | 2020-07-03 14:04:37 +0200 | [diff] [blame] | 1231 | if (conn->mux->takeover && conn->mux->takeover(conn, i) == 0) { |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1232 | conn_delete_from_tree(&conn->hash_node->node); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1233 | _HA_ATOMIC_INC(&activity[tid].fd_takeover); |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1234 | found = 1; |
| 1235 | is_safe = 1; |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1236 | break; |
| 1237 | } |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1238 | |
| 1239 | conn = srv_lookup_conn_next(conn); |
Willy Tarreau | 0d58711 | 2020-07-01 15:04:38 +0200 | [diff] [blame] | 1240 | } |
| 1241 | } |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 1242 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Amaury Denoyelle | 5f1ded5 | 2020-10-14 18:17:03 +0200 | [diff] [blame] | 1243 | } while (!found && (i = (i + 1 == global.nbthread) ? 0 : i + 1) != stop); |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1244 | |
| 1245 | if (!found) |
| 1246 | conn = NULL; |
Willy Tarreau | 2f3f4d3 | 2020-07-01 07:43:51 +0200 | [diff] [blame] | 1247 | done: |
| 1248 | if (conn) { |
Willy Tarreau | 364f25a | 2020-07-01 15:55:30 +0200 | [diff] [blame] | 1249 | _HA_ATOMIC_STORE(&srv->next_takeover, (i + 1 == global.nbthread) ? 0 : i + 1); |
Amaury Denoyelle | 9c13b62 | 2020-10-14 18:17:04 +0200 | [diff] [blame] | 1250 | |
| 1251 | srv_use_conn(srv, conn); |
| 1252 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1253 | _HA_ATOMIC_DEC(&srv->curr_idle_conns); |
| 1254 | _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb); |
| 1255 | _HA_ATOMIC_DEC(&srv->curr_idle_thr[i]); |
Amaury Denoyelle | 9c13b62 | 2020-10-14 18:17:04 +0200 | [diff] [blame] | 1256 | conn->flags &= ~CO_FL_LIST_MASK; |
| 1257 | __ha_barrier_atomic_store(); |
| 1258 | |
Amaury Denoyelle | 0d21dea | 2020-10-14 18:17:09 +0200 | [diff] [blame] | 1259 | if ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_SAFE && |
| 1260 | conn->mux->flags & MX_FL_HOL_RISK) { |
| 1261 | /* attach the connection to the session private list |
| 1262 | */ |
| 1263 | conn->owner = s->sess; |
Willy Tarreau | 38b4d2e | 2020-11-20 17:08:15 +0100 | [diff] [blame] | 1264 | session_add_conn(s->sess, conn, conn->target); |
Amaury Denoyelle | 0d21dea | 2020-10-14 18:17:09 +0200 | [diff] [blame] | 1265 | } |
| 1266 | else { |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1267 | ebmb_insert(&srv->per_thr[tid].avail_conns, |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1268 | &conn->hash_node->node, |
| 1269 | sizeof(conn->hash_node->hash)); |
Amaury Denoyelle | 0d21dea | 2020-10-14 18:17:09 +0200 | [diff] [blame] | 1270 | } |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1271 | } |
| 1272 | return conn; |
| 1273 | } |
| 1274 | |
Christopher Faulet | 0a4dcb6 | 2022-03-31 09:53:38 +0200 | [diff] [blame] | 1275 | static int do_connect_server(struct stream *s, struct connection *conn) |
| 1276 | { |
| 1277 | int ret = SF_ERR_NONE; |
| 1278 | int conn_flags = 0; |
| 1279 | |
| 1280 | if (unlikely(!conn || !conn->ctrl || !conn->ctrl->connect)) |
| 1281 | return SF_ERR_INTERNAL; |
| 1282 | |
| 1283 | if (!channel_is_empty(&s->res)) |
| 1284 | conn_flags |= CONNECT_HAS_DATA; |
| 1285 | if (s->conn_retries == s->be->conn_retries) |
| 1286 | conn_flags |= CONNECT_CAN_USE_TFO; |
| 1287 | if (!conn_ctrl_ready(conn) || !conn_xprt_ready(conn)) { |
| 1288 | ret = conn->ctrl->connect(conn, conn_flags); |
| 1289 | if (ret != SF_ERR_NONE) |
| 1290 | return ret; |
| 1291 | |
| 1292 | /* we're in the process of establishing a connection */ |
| 1293 | s->csb->state = CS_ST_CON; |
| 1294 | } |
| 1295 | else { |
| 1296 | /* try to reuse the existing connection, it will be |
| 1297 | * confirmed once we can send on it. |
| 1298 | */ |
| 1299 | /* Is the connection really ready ? */ |
| 1300 | if (conn->mux->ctl(conn, MUX_STATUS, NULL) & MUX_STATUS_READY) |
| 1301 | s->csb->state = CS_ST_RDY; |
| 1302 | else |
| 1303 | s->csb->state = CS_ST_CON; |
| 1304 | } |
| 1305 | |
| 1306 | /* needs src ip/port for logging */ |
| 1307 | if (s->flags & SF_SRC_ADDR) |
| 1308 | conn_get_src(conn); |
| 1309 | |
| 1310 | return ret; |
| 1311 | } |
| 1312 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1313 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1314 | * This function initiates a connection to the server assigned to this stream |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 1315 | * (s->target, (s->csb)->addr.to). It will assign a server if none |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 1316 | * is assigned yet. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1317 | * It can return one of : |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1318 | * - SF_ERR_NONE if everything's OK |
| 1319 | * - SF_ERR_SRVTO if there are no more servers |
| 1320 | * - SF_ERR_SRVCL if the connection was refused by the server |
| 1321 | * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn) |
| 1322 | * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...) |
| 1323 | * - SF_ERR_INTERNAL for any other purely internal errors |
Tim Düsterhus | 4896c44 | 2016-11-29 02:15:19 +0100 | [diff] [blame] | 1324 | * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted. |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 1325 | * The server-facing conn-stream is expected to hold a pre-allocated connection. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1326 | */ |
Christopher Faulet | c983b21 | 2022-01-13 09:53:00 +0100 | [diff] [blame] | 1327 | static int connect_server(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1328 | { |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 1329 | struct connection *cli_conn = objt_conn(strm_orig(s)); |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 1330 | struct connection *srv_conn = NULL; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1331 | struct server *srv; |
Amaury Denoyelle | 7f68d81 | 2021-01-26 14:35:26 +0100 | [diff] [blame] | 1332 | const int reuse_mode = s->be->options & PR_O_REUSE_MASK; |
Willy Tarreau | 34601a8 | 2013-12-15 16:33:46 +0100 | [diff] [blame] | 1333 | int reuse = 0; |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1334 | int init_mux = 0; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 1335 | int err; |
Amaury Denoyelle | edadf19 | 2021-02-12 13:49:42 +0100 | [diff] [blame] | 1336 | #ifdef USE_OPENSSL |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 1337 | struct sample *sni_smp = NULL; |
Amaury Denoyelle | edadf19 | 2021-02-12 13:49:42 +0100 | [diff] [blame] | 1338 | #endif |
Amaury Denoyelle | d10a200 | 2021-02-11 19:45:19 +0100 | [diff] [blame] | 1339 | struct sockaddr_storage *bind_addr; |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 1340 | int proxy_line_ret; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1341 | int64_t hash = 0; |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 1342 | struct conn_hash_params hash_params; |
| 1343 | |
Amaury Denoyelle | 8ede3db | 2021-03-02 14:38:53 +0100 | [diff] [blame] | 1344 | /* in standard configuration, srv will be valid |
| 1345 | * it can be NULL for dispatch mode or transparent backend */ |
| 1346 | srv = objt_server(s->target); |
| 1347 | |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1348 | if (!(s->flags & SF_ADDR_SET)) { |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 1349 | err = alloc_dst_address(&s->csb->dst, srv, s); |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1350 | if (err != SRV_STATUS_OK) |
| 1351 | return SF_ERR_INTERNAL; |
Amaury Denoyelle | 1a58aca | 2021-01-22 16:47:46 +0100 | [diff] [blame] | 1352 | |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1353 | s->flags |= SF_ADDR_SET; |
| 1354 | } |
| 1355 | |
| 1356 | err = alloc_bind_address(&bind_addr, srv, s); |
| 1357 | if (err != SRV_STATUS_OK) |
| 1358 | return SF_ERR_INTERNAL; |
Amaury Denoyelle | 1a58aca | 2021-01-22 16:47:46 +0100 | [diff] [blame] | 1359 | |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 1360 | #ifdef USE_OPENSSL |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 1361 | if (srv && srv->ssl_ctx.sni) { |
| 1362 | sni_smp = sample_fetch_as_type(s->be, s->sess, s, |
| 1363 | SMP_OPT_DIR_REQ | SMP_OPT_FINAL, |
| 1364 | srv->ssl_ctx.sni, SMP_T_STR); |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1365 | } |
| 1366 | #endif |
Amaury Denoyelle | 4c09800 | 2021-02-17 15:59:02 +0100 | [diff] [blame] | 1367 | |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1368 | /* do not reuse if mode is not http */ |
| 1369 | if (!IS_HTX_STRM(s)) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1370 | DBG_TRACE_STATE("skip idle connections reuse: no htx", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1371 | goto skip_reuse; |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 1372 | } |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 1373 | |
Amaury Denoyelle | 9c3251d | 2021-10-18 14:39:57 +0200 | [diff] [blame] | 1374 | /* disable reuse if websocket stream and the protocol to use is not the |
| 1375 | * same as the main protocol of the server. |
| 1376 | */ |
| 1377 | if (unlikely(s->flags & SF_WEBSOCKET) && srv) { |
| 1378 | if (!srv_check_reuse_ws(srv)) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1379 | DBG_TRACE_STATE("skip idle connections reuse: websocket stream", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Amaury Denoyelle | 9c3251d | 2021-10-18 14:39:57 +0200 | [diff] [blame] | 1380 | goto skip_reuse; |
| 1381 | } |
| 1382 | } |
| 1383 | |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1384 | /* first, set unique connection parameters and then calculate hash */ |
| 1385 | memset(&hash_params, 0, sizeof(hash_params)); |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1386 | |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1387 | /* 1. target */ |
| 1388 | hash_params.target = s->target; |
| 1389 | |
| 1390 | #ifdef USE_OPENSSL |
| 1391 | /* 2. sni |
| 1392 | * only test if the sample is not null as smp_make_safe (called before |
| 1393 | * ssl_sock_set_servername) can only fails if this is not the case |
| 1394 | */ |
| 1395 | if (sni_smp) { |
| 1396 | hash_params.sni_prehash = |
| 1397 | conn_hash_prehash(sni_smp->data.u.str.area, |
| 1398 | sni_smp->data.u.str.data); |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1399 | } |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1400 | #endif /* USE_OPENSSL */ |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1401 | |
Amaury Denoyelle | 926712a | 2021-10-20 15:04:03 +0200 | [diff] [blame] | 1402 | /* 3. destination address */ |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1403 | if (srv && (!is_addr(&srv->addr) || srv->flags & SRV_F_MAPPORTS)) |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 1404 | hash_params.dst_addr = s->csb->dst; |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1405 | |
Amaury Denoyelle | 8ede3db | 2021-03-02 14:38:53 +0100 | [diff] [blame] | 1406 | /* 4. source address */ |
Amaury Denoyelle | d10a200 | 2021-02-11 19:45:19 +0100 | [diff] [blame] | 1407 | hash_params.src_addr = bind_addr; |
| 1408 | |
Amaury Denoyelle | 8ede3db | 2021-03-02 14:38:53 +0100 | [diff] [blame] | 1409 | /* 5. proxy protocol */ |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 1410 | if (srv && srv->pp_opts) { |
| 1411 | proxy_line_ret = make_proxy_line(trash.area, trash.size, srv, cli_conn, s); |
| 1412 | if (proxy_line_ret) { |
Amaury Denoyelle | 36441f4 | 2021-02-17 16:25:31 +0100 | [diff] [blame] | 1413 | hash_params.proxy_prehash = |
| 1414 | conn_hash_prehash(trash.area, proxy_line_ret); |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 1415 | } |
| 1416 | } |
| 1417 | |
Amaury Denoyelle | 8ede3db | 2021-03-02 14:38:53 +0100 | [diff] [blame] | 1418 | hash = conn_calculate_hash(&hash_params); |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1419 | |
Willy Tarreau | b082186 | 2019-07-18 19:26:11 +0200 | [diff] [blame] | 1420 | /* first, search for a matching connection in the session's idle conns */ |
Amaury Denoyelle | 293dcc4 | 2021-01-25 10:29:35 +0100 | [diff] [blame] | 1421 | srv_conn = session_get_conn(s->sess, s->target, hash); |
Amaury Denoyelle | 1252b6f | 2021-10-20 15:22:01 +0200 | [diff] [blame] | 1422 | if (srv_conn) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1423 | DBG_TRACE_STATE("reuse connection from session", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Christopher Faulet | fcc3d8a | 2020-07-01 16:36:51 +0200 | [diff] [blame] | 1424 | reuse = 1; |
Amaury Denoyelle | 1252b6f | 2021-10-20 15:22:01 +0200 | [diff] [blame] | 1425 | } |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 1426 | |
Amaury Denoyelle | 7f68d81 | 2021-01-26 14:35:26 +0100 | [diff] [blame] | 1427 | if (srv && !reuse && reuse_mode != PR_O_REUSE_NEVR) { |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 1428 | /* Below we pick connections from the safe, idle or |
| 1429 | * available (which are safe too) lists based |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1430 | * on the strategy, the fact that this is a first or second |
| 1431 | * (retryable) request, with the indicated priority (1 or 2) : |
| 1432 | * |
| 1433 | * SAFE AGGR ALWS |
| 1434 | * |
| 1435 | * +-----+-----+ +-----+-----+ +-----+-----+ |
| 1436 | * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd | |
| 1437 | * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+ |
| 1438 | * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 | |
| 1439 | * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+ |
| 1440 | * idle| - | 1 | idle| - | 1 | idle| 2 | 1 | |
| 1441 | * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+ |
Willy Tarreau | b082186 | 2019-07-18 19:26:11 +0200 | [diff] [blame] | 1442 | * |
| 1443 | * Idle conns are necessarily looked up on the same thread so |
| 1444 | * that there is no concurrency issues. |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1445 | */ |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1446 | if (!eb_is_empty(&srv->per_thr[tid].avail_conns)) { |
| 1447 | srv_conn = srv_lookup_conn(&srv->per_thr[tid].avail_conns, hash); |
Amaury Denoyelle | 1252b6f | 2021-10-20 15:22:01 +0200 | [diff] [blame] | 1448 | if (srv_conn) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1449 | DBG_TRACE_STATE("reuse connection from avail", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1450 | reuse = 1; |
Amaury Denoyelle | 1252b6f | 2021-10-20 15:22:01 +0200 | [diff] [blame] | 1451 | } |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1452 | } |
Amaury Denoyelle | 1399d69 | 2021-01-22 19:37:44 +0100 | [diff] [blame] | 1453 | |
Amaury Denoyelle | 7f68d81 | 2021-01-26 14:35:26 +0100 | [diff] [blame] | 1454 | /* if no available connections found, search for an idle/safe */ |
Amaury Denoyelle | 1399d69 | 2021-01-22 19:37:44 +0100 | [diff] [blame] | 1455 | if (!srv_conn && srv->max_idle_conns && srv->curr_idle_conns > 0) { |
Amaury Denoyelle | 7f68d81 | 2021-01-26 14:35:26 +0100 | [diff] [blame] | 1456 | const int not_first_req = s->txn && s->txn->flags & TX_NOT_FIRST; |
| 1457 | const int idle = srv->curr_idle_nb > 0; |
| 1458 | const int safe = srv->curr_safe_nb > 0; |
| 1459 | |
| 1460 | /* second column of the tables above, |
| 1461 | * search for an idle then safe conn */ |
| 1462 | if (not_first_req) { |
| 1463 | if (idle || safe) |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1464 | srv_conn = conn_backend_get(s, srv, 0, hash); |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1465 | } |
Amaury Denoyelle | 7f68d81 | 2021-01-26 14:35:26 +0100 | [diff] [blame] | 1466 | /* first column of the tables above */ |
| 1467 | else if (reuse_mode >= PR_O_REUSE_AGGR) { |
| 1468 | /* search for a safe conn */ |
| 1469 | if (safe) |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1470 | srv_conn = conn_backend_get(s, srv, 1, hash); |
Amaury Denoyelle | aa890ae | 2021-01-25 14:43:17 +0100 | [diff] [blame] | 1471 | |
| 1472 | /* search for an idle conn if no safe conn found |
| 1473 | * on always reuse mode */ |
| 1474 | if (!srv_conn && |
| 1475 | reuse_mode == PR_O_REUSE_ALWS && idle) { |
| 1476 | /* TODO conn_backend_get should not check the |
| 1477 | * safe list is this case */ |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1478 | srv_conn = conn_backend_get(s, srv, 0, hash); |
Amaury Denoyelle | aa890ae | 2021-01-25 14:43:17 +0100 | [diff] [blame] | 1479 | } |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1480 | } |
Amaury Denoyelle | 37e25bc | 2021-01-26 14:35:25 +0100 | [diff] [blame] | 1481 | |
Amaury Denoyelle | 1252b6f | 2021-10-20 15:22:01 +0200 | [diff] [blame] | 1482 | if (srv_conn) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1483 | DBG_TRACE_STATE("reuse connection from idle/safe", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Olivier Houchard | 566df30 | 2020-03-06 18:18:56 +0100 | [diff] [blame] | 1484 | reuse = 1; |
Amaury Denoyelle | 1252b6f | 2021-10-20 15:22:01 +0200 | [diff] [blame] | 1485 | } |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 1486 | } |
Willy Tarreau | 8dff998 | 2015-08-04 20:45:52 +0200 | [diff] [blame] | 1487 | } |
| 1488 | |
Willy Tarreau | b082186 | 2019-07-18 19:26:11 +0200 | [diff] [blame] | 1489 | |
| 1490 | /* here reuse might have been set above, indicating srv_conn finally |
| 1491 | * is OK. |
| 1492 | */ |
Willy Tarreau | b082186 | 2019-07-18 19:26:11 +0200 | [diff] [blame] | 1493 | |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1494 | if (ha_used_fds > global.tune.pool_high_count && srv) { |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1495 | struct connection *tokill_conn = NULL; |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1496 | struct conn_hash_node *conn_node = NULL; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1497 | struct ebmb_node *node = NULL; |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1498 | |
| 1499 | /* We can't reuse a connection, and e have more FDs than deemd |
| 1500 | * acceptable, attempt to kill an idling connection |
| 1501 | */ |
| 1502 | /* First, try from our own idle list */ |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 1503 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1504 | node = ebmb_first(&srv->per_thr[tid].idle_conns); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1505 | if (node) { |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1506 | conn_node = ebmb_entry(node, struct conn_hash_node, node); |
| 1507 | tokill_conn = conn_node->conn; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1508 | ebmb_delete(node); |
Amaury Denoyelle | 65bf600 | 2021-03-23 10:44:43 +0100 | [diff] [blame] | 1509 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 1510 | |
| 1511 | /* Release the idle lock before calling mux->destroy. |
| 1512 | * It will in turn call srv_release_conn through |
| 1513 | * conn_free which also uses it. |
| 1514 | */ |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1515 | tokill_conn->mux->destroy(tokill_conn->ctx); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1516 | } |
Amaury Denoyelle | 65bf600 | 2021-03-23 10:44:43 +0100 | [diff] [blame] | 1517 | else { |
| 1518 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 1519 | } |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 1520 | |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1521 | /* If not, iterate over other thread's idling pool, and try to grab one */ |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 1522 | if (!tokill_conn) { |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1523 | int i; |
| 1524 | |
Willy Tarreau | c35bcfc | 2020-06-29 14:43:16 +0200 | [diff] [blame] | 1525 | for (i = tid; (i = ((i + 1 == global.nbthread) ? 0 : i + 1)) != tid;) { |
Willy Tarreau | 08e2b41 | 2019-05-26 11:50:08 +0200 | [diff] [blame] | 1526 | // just silence stupid gcc which reports an absurd |
| 1527 | // out-of-bounds warning for <i> which is always |
| 1528 | // exactly zero without threads, but it seems to |
| 1529 | // see it possibly larger. |
| 1530 | ALREADY_CHECKED(i); |
| 1531 | |
Willy Tarreau | 9b9f847 | 2021-03-26 20:52:10 +0100 | [diff] [blame] | 1532 | if (HA_SPIN_TRYLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock) != 0) |
| 1533 | continue; |
| 1534 | |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1535 | node = ebmb_first(&srv->per_thr[i].idle_conns); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1536 | if (node) { |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1537 | conn_node = ebmb_entry(node, struct conn_hash_node, node); |
| 1538 | tokill_conn = conn_node->conn; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1539 | ebmb_delete(node); |
| 1540 | } |
| 1541 | |
| 1542 | if (!tokill_conn) { |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1543 | node = ebmb_first(&srv->per_thr[i].safe_conns); |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1544 | if (node) { |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1545 | conn_node = ebmb_entry(node, struct conn_hash_node, node); |
| 1546 | tokill_conn = conn_node->conn; |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1547 | ebmb_delete(node); |
| 1548 | } |
| 1549 | } |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 1550 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock); |
Amaury Denoyelle | a3bf62e | 2021-01-28 10:16:29 +0100 | [diff] [blame] | 1551 | |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1552 | if (tokill_conn) { |
| 1553 | /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */ |
| 1554 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1555 | MT_LIST_APPEND(&idle_conns[i].toremove_conns, |
Amaury Denoyelle | f232cb3 | 2021-01-06 16:14:12 +0100 | [diff] [blame] | 1556 | (struct mt_list *)&tokill_conn->toremove_list); |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 1557 | task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER); |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1558 | break; |
| 1559 | } |
| 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | } |
Willy Tarreau | 34601a8 | 2013-12-15 16:33:46 +0100 | [diff] [blame] | 1564 | |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1565 | if (reuse) { |
Willy Tarreau | b082186 | 2019-07-18 19:26:11 +0200 | [diff] [blame] | 1566 | if (srv_conn->mux) { |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1567 | int avail = srv_conn->mux->avail_streams(srv_conn); |
| 1568 | |
| 1569 | if (avail <= 1) { |
Olivier Houchard | 2442f68 | 2018-12-01 17:03:38 +0100 | [diff] [blame] | 1570 | /* No more streams available, remove it from the list */ |
Christopher Faulet | 7ae48a7 | 2022-04-22 17:56:24 +0200 | [diff] [blame] | 1571 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 1572 | conn_delete_from_tree(&srv_conn->hash_node->node); |
Christopher Faulet | 7ae48a7 | 2022-04-22 17:56:24 +0200 | [diff] [blame] | 1573 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | 2442f68 | 2018-12-01 17:03:38 +0100 | [diff] [blame] | 1574 | } |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1575 | |
| 1576 | if (avail >= 1) { |
Christopher Faulet | 95a61e8 | 2021-12-22 14:22:03 +0100 | [diff] [blame] | 1577 | if (srv_conn->mux->attach(srv_conn, s->csb, s->sess) == -1) { |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1578 | srv_conn = NULL; |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 1579 | if (cs_reset_endp(s->csb) < 0) |
| 1580 | return SF_ERR_INTERNAL; |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 1581 | } |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1582 | } |
Olivier Houchard | 134a204 | 2018-12-28 14:45:47 +0100 | [diff] [blame] | 1583 | else |
| 1584 | srv_conn = NULL; |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1585 | } |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1586 | /* otherwise srv_conn is left intact */ |
| 1587 | } |
| 1588 | else |
| 1589 | srv_conn = NULL; |
| 1590 | |
Amaury Denoyelle | 08d87b3 | 2021-01-26 17:35:46 +0100 | [diff] [blame] | 1591 | skip_reuse: |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1592 | /* no reuse or failed to reuse the connection above, pick a new one */ |
| 1593 | if (!srv_conn) { |
Christopher Faulet | 236c93b | 2020-07-02 09:19:54 +0200 | [diff] [blame] | 1594 | srv_conn = conn_new(s->target); |
Willy Tarreau | dc2ac81 | 2020-07-15 17:46:32 +0200 | [diff] [blame] | 1595 | if (srv_conn) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1596 | DBG_TRACE_STATE("alloc new be connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | dc2ac81 | 2020-07-15 17:46:32 +0200 | [diff] [blame] | 1597 | srv_conn->owner = s->sess; |
Amaury Denoyelle | 8ede3db | 2021-03-02 14:38:53 +0100 | [diff] [blame] | 1598 | |
| 1599 | /* connection will be attached to the session if |
| 1600 | * http-reuse mode is never or it is not targeted to a |
| 1601 | * server */ |
| 1602 | if (reuse_mode == PR_O_REUSE_NEVR || !srv) |
Willy Tarreau | dc2ac81 | 2020-07-15 17:46:32 +0200 | [diff] [blame] | 1603 | conn_set_private(srv_conn); |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1604 | |
Amaury Denoyelle | 68967e5 | 2021-03-02 12:01:06 +0100 | [diff] [blame] | 1605 | /* assign bind_addr to srv_conn */ |
Amaury Denoyelle | d10a200 | 2021-02-11 19:45:19 +0100 | [diff] [blame] | 1606 | srv_conn->src = bind_addr; |
Amaury Denoyelle | 68967e5 | 2021-03-02 12:01:06 +0100 | [diff] [blame] | 1607 | bind_addr = NULL; |
Amaury Denoyelle | f7bdf00 | 2021-01-21 09:40:19 +0100 | [diff] [blame] | 1608 | |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1609 | if (!sockaddr_alloc(&srv_conn->dst, 0, 0)) { |
| 1610 | conn_free(srv_conn); |
| 1611 | return SF_ERR_RESOURCE; |
| 1612 | } |
Amaury Denoyelle | aee4fdb | 2021-10-20 15:22:20 +0200 | [diff] [blame] | 1613 | |
| 1614 | srv_conn->hash_node->hash = hash; |
Olivier Houchard | c0caac2 | 2020-03-20 14:26:32 +0100 | [diff] [blame] | 1615 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1616 | } |
| 1617 | |
Amaury Denoyelle | 68967e5 | 2021-03-02 12:01:06 +0100 | [diff] [blame] | 1618 | /* if bind_addr is non NULL free it */ |
| 1619 | sockaddr_free(&bind_addr); |
| 1620 | |
| 1621 | /* srv_conn is still NULL only on allocation failure */ |
| 1622 | if (!srv_conn) |
| 1623 | return SF_ERR_RESOURCE; |
| 1624 | |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 1625 | /* copy the target address into the connection */ |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 1626 | *srv_conn->dst = *s->csb->dst; |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 1627 | |
| 1628 | /* Copy network namespace from client connection */ |
| 1629 | srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL; |
| 1630 | |
Olivier Houchard | 1b3c931 | 2021-03-05 23:37:48 +0100 | [diff] [blame] | 1631 | if (!srv_conn->xprt) { |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 1632 | /* set the correct protocol on the output conn-stream */ |
Olivier Houchard | 1b3c931 | 2021-03-05 23:37:48 +0100 | [diff] [blame] | 1633 | if (srv) { |
Willy Tarreau | 14e7f29 | 2021-10-27 17:41:07 +0200 | [diff] [blame] | 1634 | if (conn_prepare(srv_conn, protocol_lookup(srv_conn->dst->ss_family, PROTO_TYPE_STREAM, 0), srv->xprt)) { |
Olivier Houchard | 1b3c931 | 2021-03-05 23:37:48 +0100 | [diff] [blame] | 1635 | conn_free(srv_conn); |
| 1636 | return SF_ERR_INTERNAL; |
| 1637 | } |
| 1638 | } else if (obj_type(s->target) == OBJ_TYPE_PROXY) { |
| 1639 | int ret; |
| 1640 | |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1641 | /* proxies exclusively run on raw_sock right now */ |
Willy Tarreau | 14e7f29 | 2021-10-27 17:41:07 +0200 | [diff] [blame] | 1642 | ret = conn_prepare(srv_conn, protocol_lookup(srv_conn->dst->ss_family, PROTO_TYPE_STREAM, 0), xprt_get(XPRT_RAW)); |
Olivier Houchard | 1b3c931 | 2021-03-05 23:37:48 +0100 | [diff] [blame] | 1643 | if (ret < 0 || !(srv_conn->ctrl)) { |
Olivier Houchard | c0caac2 | 2020-03-20 14:26:32 +0100 | [diff] [blame] | 1644 | conn_free(srv_conn); |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1645 | return SF_ERR_INTERNAL; |
Olivier Houchard | c0caac2 | 2020-03-20 14:26:32 +0100 | [diff] [blame] | 1646 | } |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1647 | } |
Olivier Houchard | c0caac2 | 2020-03-20 14:26:32 +0100 | [diff] [blame] | 1648 | else { |
| 1649 | conn_free(srv_conn); |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1650 | return SF_ERR_INTERNAL; /* how did we get there ? */ |
Olivier Houchard | c0caac2 | 2020-03-20 14:26:32 +0100 | [diff] [blame] | 1651 | } |
Willy Tarreau | d02394b | 2012-05-11 18:32:18 +0200 | [diff] [blame] | 1652 | |
Christopher Faulet | 070b91b | 2022-03-31 19:27:18 +0200 | [diff] [blame] | 1653 | if (cs_attach_mux(s->csb, NULL, srv_conn) < 0) { |
| 1654 | conn_free(srv_conn); |
| 1655 | return SF_ERR_INTERNAL; /* how did we get there ? */ |
| 1656 | } |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 1657 | srv_conn->ctx = s->csb; |
| 1658 | |
Olivier Houchard | ecffb7d | 2020-01-24 14:10:55 +0100 | [diff] [blame] | 1659 | #if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation) |
Olivier Houchard | 1295016 | 2018-11-23 14:32:08 +0100 | [diff] [blame] | 1660 | if (!srv || |
Christopher Faulet | b4de420 | 2020-07-30 09:10:36 +0200 | [diff] [blame] | 1661 | (srv->use_ssl != 1 || (!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) || |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 1662 | srv->mux_proto || !IS_HTX_STRM(s))) |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1663 | #endif |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1664 | init_mux = 1; |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 1665 | |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1666 | /* process the case where the server requires the PROXY protocol to be sent */ |
| 1667 | srv_conn->send_proxy_ofs = 0; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1668 | |
Willy Tarreau | 7b00492 | 2015-08-04 19:34:21 +0200 | [diff] [blame] | 1669 | if (srv && srv->pp_opts) { |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1670 | srv_conn->flags |= CO_FL_SEND_PROXY; |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1671 | srv_conn->send_proxy_ofs = 1; /* must compute size */ |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1672 | } |
Willy Tarreau | 2a6e880 | 2013-10-24 15:50:53 +0200 | [diff] [blame] | 1673 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1674 | if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) { |
| 1675 | srv_conn->send_proxy_ofs = 1; |
| 1676 | srv_conn->flags |= CO_FL_SOCKS4; |
| 1677 | } |
Amaury Denoyelle | 9c3251d | 2021-10-18 14:39:57 +0200 | [diff] [blame] | 1678 | |
| 1679 | #if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation) |
| 1680 | /* if websocket stream, try to update connection ALPN. */ |
| 1681 | if (unlikely(s->flags & SF_WEBSOCKET) && |
| 1682 | srv && srv->use_ssl && srv->ssl_ctx.alpn_str) { |
| 1683 | char *alpn = ""; |
| 1684 | int force = 0; |
| 1685 | |
| 1686 | switch (srv->ws) { |
| 1687 | case SRV_WS_AUTO: |
| 1688 | alpn = "\x08http/1.1"; |
| 1689 | force = 0; |
| 1690 | break; |
| 1691 | case SRV_WS_H1: |
| 1692 | alpn = "\x08http/1.1"; |
| 1693 | force = 1; |
| 1694 | break; |
| 1695 | case SRV_WS_H2: |
| 1696 | alpn = "\x02h2"; |
| 1697 | force = 1; |
| 1698 | break; |
| 1699 | } |
| 1700 | |
| 1701 | if (!conn_update_alpn(srv_conn, ist(alpn), force)) |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1702 | DBG_TRACE_STATE("update alpn for websocket", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Amaury Denoyelle | 9c3251d | 2021-10-18 14:39:57 +0200 | [diff] [blame] | 1703 | } |
| 1704 | #endif |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1705 | } |
Olivier Houchard | e8f5f5d | 2019-10-25 17:00:54 +0200 | [diff] [blame] | 1706 | else { |
Amaury Denoyelle | 2b1d917 | 2021-06-17 15:14:49 +0200 | [diff] [blame] | 1707 | s->flags |= SF_SRV_REUSED; |
| 1708 | |
Amaury Denoyelle | d7faa3d | 2021-03-05 15:27:41 +0100 | [diff] [blame] | 1709 | /* Currently there seems to be no known cases of xprt ready |
| 1710 | * without the mux installed here. |
| 1711 | */ |
| 1712 | BUG_ON(!srv_conn->mux); |
| 1713 | |
Amaury Denoyelle | 2b1d917 | 2021-06-17 15:14:49 +0200 | [diff] [blame] | 1714 | if (!(srv_conn->mux->ctl(srv_conn, MUX_STATUS, NULL) & MUX_STATUS_READY)) |
| 1715 | s->flags |= SF_SRV_REUSED_ANTICIPATED; |
Olivier Houchard | e8f5f5d | 2019-10-25 17:00:54 +0200 | [diff] [blame] | 1716 | } |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1717 | |
William Lallemand | b7ff6a3 | 2012-03-02 14:35:21 +0100 | [diff] [blame] | 1718 | /* flag for logging source ip/port */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 1719 | if (strm_fe(s)->options2 & PR_O2_SRC_ADDR) |
Christopher Faulet | d139138 | 2022-03-30 16:26:39 +0200 | [diff] [blame] | 1720 | s->flags |= SF_SRC_ADDR; |
William Lallemand | b7ff6a3 | 2012-03-02 14:35:21 +0100 | [diff] [blame] | 1721 | |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1722 | /* disable lingering */ |
| 1723 | if (s->be->options & PR_O_TCP_NOLING) |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1724 | s->csb->flags |= CS_FL_NOLINGER; |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1725 | |
Willy Tarreau | f157384 | 2018-12-14 11:35:36 +0100 | [diff] [blame] | 1726 | if (s->flags & SF_SRV_REUSED) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1727 | _HA_ATOMIC_INC(&s->be->be_counters.reuse); |
Willy Tarreau | cc79ed2 | 2018-12-15 15:11:36 +0100 | [diff] [blame] | 1728 | if (srv) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1729 | _HA_ATOMIC_INC(&srv->counters.reuse); |
Willy Tarreau | f157384 | 2018-12-14 11:35:36 +0100 | [diff] [blame] | 1730 | } else { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1731 | _HA_ATOMIC_INC(&s->be->be_counters.connect); |
Willy Tarreau | cc79ed2 | 2018-12-15 15:11:36 +0100 | [diff] [blame] | 1732 | if (srv) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1733 | _HA_ATOMIC_INC(&srv->counters.connect); |
Willy Tarreau | f157384 | 2018-12-14 11:35:36 +0100 | [diff] [blame] | 1734 | } |
| 1735 | |
Christopher Faulet | 0a4dcb6 | 2022-03-31 09:53:38 +0200 | [diff] [blame] | 1736 | err = do_connect_server(s, srv_conn); |
Willy Tarreau | 09e0203 | 2019-07-18 16:18:20 +0200 | [diff] [blame] | 1737 | if (err != SF_ERR_NONE) |
| 1738 | return err; |
| 1739 | |
Christopher Faulet | 27bd6ff | 2020-07-01 11:00:18 +0200 | [diff] [blame] | 1740 | #ifdef USE_OPENSSL |
Amaury Denoyelle | 655dec8 | 2021-06-01 17:04:10 +0200 | [diff] [blame] | 1741 | if (!(s->flags & SF_SRV_REUSED)) { |
| 1742 | if (smp_make_safe(sni_smp)) |
| 1743 | ssl_sock_set_servername(srv_conn, sni_smp->data.u.str.area); |
| 1744 | } |
Christopher Faulet | 27bd6ff | 2020-07-01 11:00:18 +0200 | [diff] [blame] | 1745 | #endif /* USE_OPENSSL */ |
| 1746 | |
Willy Tarreau | a3b1756 | 2020-07-31 08:39:31 +0200 | [diff] [blame] | 1747 | /* The CO_FL_SEND_PROXY flag may have been set by the connect method, |
| 1748 | * if so, add our handshake pseudo-XPRT now. |
| 1749 | */ |
| 1750 | if ((srv_conn->flags & CO_FL_HANDSHAKE)) { |
| 1751 | if (xprt_add_hs(srv_conn) < 0) { |
| 1752 | conn_full_close(srv_conn); |
| 1753 | return SF_ERR_INTERNAL; |
| 1754 | } |
| 1755 | } |
Olivier Houchard | 1b3c931 | 2021-03-05 23:37:48 +0100 | [diff] [blame] | 1756 | conn_xprt_start(srv_conn); |
Willy Tarreau | a3b1756 | 2020-07-31 08:39:31 +0200 | [diff] [blame] | 1757 | |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1758 | /* We have to defer the mux initialization until after si_connect() |
| 1759 | * has been called, as we need the xprt to have been properly |
| 1760 | * initialized, or any attempt to recv during the mux init may |
| 1761 | * fail, and flag the connection as CO_FL_ERROR. |
| 1762 | */ |
| 1763 | if (init_mux) { |
Amaury Denoyelle | 9c3251d | 2021-10-18 14:39:57 +0200 | [diff] [blame] | 1764 | const struct mux_ops *alt_mux = |
| 1765 | likely(!(s->flags & SF_WEBSOCKET)) ? NULL : srv_get_ws_proto(srv); |
Christopher Faulet | 95a61e8 | 2021-12-22 14:22:03 +0100 | [diff] [blame] | 1766 | if (conn_install_mux_be(srv_conn, s->csb, s->sess, alt_mux) < 0) { |
Olivier Houchard | 7493114 | 2019-01-29 19:11:16 +0100 | [diff] [blame] | 1767 | conn_full_close(srv_conn); |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1768 | return SF_ERR_INTERNAL; |
Olivier Houchard | 7493114 | 2019-01-29 19:11:16 +0100 | [diff] [blame] | 1769 | } |
Christopher Faulet | 1bb6afa | 2021-03-08 17:57:53 +0100 | [diff] [blame] | 1770 | if (IS_HTX_STRM(s)) { |
Amaury Denoyelle | 08d87b3 | 2021-01-26 17:35:46 +0100 | [diff] [blame] | 1771 | /* If we're doing http-reuse always, and the connection |
| 1772 | * is not private with available streams (an http2 |
| 1773 | * connection), add it to the available list, so that |
| 1774 | * others can use it right away. If the connection is |
| 1775 | * private or we're doing http-reuse safe and the mux |
| 1776 | * protocol supports multiplexing, add it in the |
| 1777 | * session server list. |
| 1778 | */ |
| 1779 | if (srv && reuse_mode == PR_O_REUSE_ALWS && |
| 1780 | !(srv_conn->flags & CO_FL_PRIVATE) && |
| 1781 | srv_conn->mux->avail_streams(srv_conn) > 0) { |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 1782 | ebmb_insert(&srv->per_thr[tid].avail_conns, &srv_conn->hash_node->node, sizeof(srv_conn->hash_node->hash)); |
Amaury Denoyelle | 08d87b3 | 2021-01-26 17:35:46 +0100 | [diff] [blame] | 1783 | } |
| 1784 | else if (srv_conn->flags & CO_FL_PRIVATE || |
| 1785 | (reuse_mode == PR_O_REUSE_SAFE && |
| 1786 | srv_conn->mux->flags & MX_FL_HOL_RISK)) { |
| 1787 | /* If it fail now, the same will be done in mux->detach() callback */ |
| 1788 | session_add_conn(s->sess, srv_conn, srv_conn->target); |
| 1789 | } |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 1790 | } |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1791 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1792 | |
Willy Tarreau | b131049 | 2021-08-30 09:35:18 +0200 | [diff] [blame] | 1793 | #if defined(USE_OPENSSL) && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)) |
Olivier Houchard | 4cd2af4 | 2019-05-06 15:18:27 +0200 | [diff] [blame] | 1794 | |
Olivier Houchard | 8694e5b | 2019-06-15 00:14:05 +0200 | [diff] [blame] | 1795 | if (!reuse && cli_conn && srv && srv_conn->mux && |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1796 | (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) && |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1797 | /* Only attempt to use early data if either the client sent |
| 1798 | * early data, so that we know it can handle a 425, or if |
| 1799 | * we are allwoed to retry requests on early data failure, and |
| 1800 | * it's our first try |
| 1801 | */ |
| 1802 | ((cli_conn->flags & CO_FL_EARLY_DATA) || |
Christopher Faulet | 731c8e6 | 2022-03-29 16:08:44 +0200 | [diff] [blame] | 1803 | ((s->be->retry_type & PR_RE_EARLY_ERROR) && !s->conn_retries)) && |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 1804 | !channel_is_empty(cs_oc(s->csb)) && |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1805 | srv_conn->flags & CO_FL_SSL_WAIT_HS) |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1806 | srv_conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN); |
Willy Tarreau | 46c9d3e | 2017-11-08 14:25:59 +0100 | [diff] [blame] | 1807 | #endif |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1808 | |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1809 | /* set connect timeout */ |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 1810 | s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.connect); |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1811 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1812 | if (srv) { |
Christopher Faulet | 29f77e8 | 2017-06-08 14:04:45 +0200 | [diff] [blame] | 1813 | int count; |
| 1814 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1815 | s->flags |= SF_CURR_SESS; |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 1816 | count = _HA_ATOMIC_ADD_FETCH(&srv->cur_sess, 1); |
Christopher Faulet | 29f77e8 | 2017-06-08 14:04:45 +0200 | [diff] [blame] | 1817 | HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count); |
Willy Tarreau | 59b0fec | 2021-02-17 16:01:37 +0100 | [diff] [blame] | 1818 | if (s->be->lbprm.server_take_conn) |
Willy Tarreau | 5941ef0 | 2021-06-18 18:29:25 +0200 | [diff] [blame] | 1819 | s->be->lbprm.server_take_conn(srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1820 | } |
| 1821 | |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 1822 | /* Now handle synchronously connected sockets. We know the conn-stream |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1823 | * is at least in state CS_ST_CON. These ones typically are UNIX |
Christopher Faulet | af642df | 2022-03-30 10:06:11 +0200 | [diff] [blame] | 1824 | * sockets, socket pairs, andoccasionally TCP connections on the |
Willy Tarreau | ada4c58 | 2020-03-04 16:42:03 +0100 | [diff] [blame] | 1825 | * loopback on a heavily loaded system. |
| 1826 | */ |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 1827 | if (srv_conn->flags & CO_FL_ERROR) |
| 1828 | s->csb->endp->flags |= CS_EP_ERROR; |
Willy Tarreau | ada4c58 | 2020-03-04 16:42:03 +0100 | [diff] [blame] | 1829 | |
| 1830 | /* If we had early data, and the handshake ended, then |
| 1831 | * we can remove the flag, and attempt to wake the task up, |
| 1832 | * in the event there's an analyser waiting for the end of |
| 1833 | * the handshake. |
| 1834 | */ |
| 1835 | if (!(srv_conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS))) |
Christopher Faulet | e9e4820 | 2022-03-22 18:13:29 +0100 | [diff] [blame] | 1836 | s->csb->endp->flags &= ~CS_EP_WAIT_FOR_HS; |
Willy Tarreau | ada4c58 | 2020-03-04 16:42:03 +0100 | [diff] [blame] | 1837 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1838 | if (!cs_state_in(s->csb->state, CS_SB_EST|CS_SB_DIS|CS_SB_CLO) && |
Willy Tarreau | ada4c58 | 2020-03-04 16:42:03 +0100 | [diff] [blame] | 1839 | (srv_conn->flags & CO_FL_WAIT_XPRT) == 0) { |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 1840 | s->conn_exp = TICK_ETERNITY; |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 1841 | cs_oc(s->csb)->flags |= CF_WRITE_NULL; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1842 | if (s->csb->state == CS_ST_CON) |
| 1843 | s->csb->state = CS_ST_RDY; |
Willy Tarreau | ada4c58 | 2020-03-04 16:42:03 +0100 | [diff] [blame] | 1844 | } |
| 1845 | |
| 1846 | /* Report EOI on the channel if it was reached from the mux point of |
| 1847 | * view. |
| 1848 | * |
| 1849 | * Note: This test is only required because si_cs_process is also the SI |
| 1850 | * wake callback. Otherwise si_cs_recv()/si_cs_send() already take |
| 1851 | * care of it. |
| 1852 | */ |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 1853 | if ((s->csb->endp->flags & CS_EP_EOI) && !(cs_ic(s->csb)->flags & CF_EOI)) |
| 1854 | cs_ic(s->csb)->flags |= (CF_EOI|CF_READ_PARTIAL); |
Willy Tarreau | ada4c58 | 2020-03-04 16:42:03 +0100 | [diff] [blame] | 1855 | |
Christopher Faulet | 3f5bcd0 | 2020-07-29 22:42:27 +0200 | [diff] [blame] | 1856 | /* catch all sync connect while the mux is not already installed */ |
| 1857 | if (!srv_conn->mux && !(srv_conn->flags & CO_FL_WAIT_XPRT)) { |
| 1858 | if (conn_create_mux(srv_conn) < 0) { |
| 1859 | conn_full_close(srv_conn); |
| 1860 | return SF_ERR_INTERNAL; |
| 1861 | } |
| 1862 | } |
| 1863 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1864 | return SF_ERR_NONE; /* connection is OK */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1865 | } |
| 1866 | |
| 1867 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1868 | /* This function performs the "redispatch" part of a connection attempt. It |
| 1869 | * will assign a server if required, queue the connection if required, and |
| 1870 | * handle errors that might arise at this level. It can change the server |
| 1871 | * state. It will return 1 if it encounters an error, switches the server |
| 1872 | * state, or has to queue a connection. Otherwise, it will return 0 indicating |
| 1873 | * that the connection is ready to use. |
| 1874 | */ |
| 1875 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1876 | int srv_redispatch_connect(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1877 | { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1878 | struct server *srv; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1879 | int conn_err; |
| 1880 | |
| 1881 | /* We know that we don't have any connection pending, so we will |
| 1882 | * try to get a new one, and wait in this state if it's queued |
| 1883 | */ |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1884 | redispatch: |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1885 | conn_err = assign_server_and_queue(s); |
| 1886 | srv = objt_server(s->target); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1887 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1888 | switch (conn_err) { |
| 1889 | case SRV_STATUS_OK: |
| 1890 | break; |
| 1891 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1892 | case SRV_STATUS_FULL: |
| 1893 | /* The server has reached its maxqueue limit. Either PR_O_REDISP is set |
| 1894 | * and we can redispatch to another server, or it is not and we return |
| 1895 | * 503. This only makes sense in DIRECT mode however, because normal LB |
| 1896 | * algorithms would never select such a server, and hash algorithms |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1897 | * would bring us on the same server again. Note that s->target is set |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1898 | * in this case. |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1899 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1900 | if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) && |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1901 | (s->be->options & PR_O_REDISP)) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1902 | s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET); |
Christopher Faulet | 8da67aa | 2022-03-29 17:53:09 +0200 | [diff] [blame] | 1903 | sockaddr_free(&s->csb->dst); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1904 | goto redispatch; |
| 1905 | } |
| 1906 | |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 1907 | if (!s->conn_err_type) { |
| 1908 | s->conn_err_type = STRM_ET_QUEUE_ERR; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1909 | } |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1910 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1911 | _HA_ATOMIC_INC(&srv->counters.failed_conns); |
| 1912 | _HA_ATOMIC_INC(&s->be->be_counters.failed_conns); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1913 | return 1; |
| 1914 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1915 | case SRV_STATUS_NOSRV: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1916 | /* note: it is guaranteed that srv == NULL here */ |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 1917 | if (!s->conn_err_type) { |
| 1918 | s->conn_err_type = STRM_ET_CONN_ERR; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1919 | } |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 1920 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1921 | _HA_ATOMIC_INC(&s->be->be_counters.failed_conns); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1922 | return 1; |
| 1923 | |
| 1924 | case SRV_STATUS_QUEUED: |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 1925 | s->conn_exp = tick_add_ifset(now_ms, s->be->timeout.queue); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1926 | s->csb->state = CS_ST_QUE; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1927 | /* do nothing else and do not wake any other stream up */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1928 | return 1; |
| 1929 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1930 | case SRV_STATUS_INTERNAL: |
| 1931 | default: |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 1932 | if (!s->conn_err_type) { |
| 1933 | s->conn_err_type = STRM_ET_CONN_OTHER; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1934 | } |
| 1935 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1936 | if (srv) |
| 1937 | srv_inc_sess_ctr(srv); |
| 1938 | if (srv) |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 1939 | srv_set_sess_last(srv); |
| 1940 | if (srv) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1941 | _HA_ATOMIC_INC(&srv->counters.failed_conns); |
| 1942 | _HA_ATOMIC_INC(&s->be->be_counters.failed_conns); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1943 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1944 | /* release other streams waiting for this server */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1945 | if (may_dequeue_tasks(srv, s->be)) |
Willy Tarreau | 9ab7829 | 2021-06-22 18:47:51 +0200 | [diff] [blame] | 1946 | process_srv_queue(srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1947 | return 1; |
| 1948 | } |
| 1949 | /* if we get here, it's because we got SRV_STATUS_OK, which also |
| 1950 | * means that the connection has not been queued. |
| 1951 | */ |
| 1952 | return 0; |
| 1953 | } |
| 1954 | |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 1955 | /* Check if the connection request is in such a state that it can be aborted. */ |
| 1956 | static int back_may_abort_req(struct channel *req, struct stream *s) |
| 1957 | { |
| 1958 | return ((req->flags & (CF_READ_ERROR)) || |
| 1959 | ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */ |
| 1960 | (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))); |
| 1961 | } |
| 1962 | |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 1963 | /* Update back conn-stream status for input states CS_ST_ASS, CS_ST_QUE, |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1964 | * CS_ST_TAR. Other input states are simply ignored. |
| 1965 | * Possible output states are CS_ST_CLO, CS_ST_TAR, CS_ST_ASS, CS_ST_REQ, CS_ST_CON |
| 1966 | * and CS_ST_EST. Flags must have previously been updated for timeouts and other |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 1967 | * conditions. |
| 1968 | */ |
| 1969 | void back_try_conn_req(struct stream *s) |
| 1970 | { |
| 1971 | struct server *srv = objt_server(s->target); |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 1972 | struct conn_stream *cs = s->csb; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 1973 | struct channel *req = &s->req; |
| 1974 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1975 | DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 1976 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1977 | if (cs->state == CS_ST_ASS) { |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 1978 | /* Server assigned to connection request, we have to try to connect now */ |
| 1979 | int conn_err; |
| 1980 | |
| 1981 | /* Before we try to initiate the connection, see if the |
| 1982 | * request may be aborted instead. |
| 1983 | */ |
| 1984 | if (back_may_abort_req(req, s)) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 1985 | s->conn_err_type |= STRM_ET_CONN_ABRT; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1986 | DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 1987 | goto abort_connection; |
| 1988 | } |
| 1989 | |
| 1990 | conn_err = connect_server(s); |
| 1991 | srv = objt_server(s->target); |
| 1992 | |
| 1993 | if (conn_err == SF_ERR_NONE) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1994 | /* state = CS_ST_CON or CS_ST_EST now */ |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 1995 | if (srv) |
| 1996 | srv_inc_sess_ctr(srv); |
| 1997 | if (srv) |
| 1998 | srv_set_sess_last(srv); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1999 | DBG_TRACE_STATE("connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2000 | goto end; |
| 2001 | } |
| 2002 | |
| 2003 | /* We have received a synchronous error. We might have to |
| 2004 | * abort, retry immediately or redispatch. |
| 2005 | */ |
| 2006 | if (conn_err == SF_ERR_INTERNAL) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2007 | if (!s->conn_err_type) { |
| 2008 | s->conn_err_type = STRM_ET_CONN_OTHER; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2009 | } |
| 2010 | |
| 2011 | if (srv) |
| 2012 | srv_inc_sess_ctr(srv); |
| 2013 | if (srv) |
| 2014 | srv_set_sess_last(srv); |
| 2015 | if (srv) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2016 | _HA_ATOMIC_INC(&srv->counters.failed_conns); |
| 2017 | _HA_ATOMIC_INC(&s->be->be_counters.failed_conns); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2018 | |
| 2019 | /* release other streams waiting for this server */ |
| 2020 | sess_change_server(s, NULL); |
| 2021 | if (may_dequeue_tasks(srv, s->be)) |
Willy Tarreau | 9ab7829 | 2021-06-22 18:47:51 +0200 | [diff] [blame] | 2022 | process_srv_queue(srv); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2023 | |
| 2024 | /* Failed and not retryable. */ |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2025 | cs_shutr(cs); |
| 2026 | cs_shutw(cs); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2027 | req->flags |= CF_WRITE_ERROR; |
| 2028 | |
| 2029 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 2030 | |
| 2031 | /* we may need to know the position in the queue for logging */ |
| 2032 | pendconn_cond_unlink(s->pend_pos); |
| 2033 | |
| 2034 | /* no stream was ever accounted for this server */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2035 | cs->state = CS_ST_CLO; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2036 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2037 | s->srv_error(s, cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2038 | DBG_TRACE_STATE("internal error during connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2039 | goto end; |
| 2040 | } |
| 2041 | |
| 2042 | /* We are facing a retryable error, but we don't want to run a |
| 2043 | * turn-around now, as the problem is likely a source port |
| 2044 | * allocation problem, so we want to retry now. |
| 2045 | */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2046 | cs->state = CS_ST_CER; |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2047 | cs->endp->flags &= ~CS_EP_ERROR; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2048 | back_handle_st_cer(s); |
| 2049 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2050 | DBG_TRACE_STATE("connection error, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
| 2051 | /* now cs->state is one of CS_ST_CLO, CS_ST_TAR, CS_ST_ASS, CS_ST_REQ */ |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2052 | } |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2053 | else if (cs->state == CS_ST_QUE) { |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2054 | /* connection request was queued, check for any update */ |
| 2055 | if (!pendconn_dequeue(s)) { |
| 2056 | /* The connection is not in the queue anymore. Either |
| 2057 | * we have a server connection slot available and we |
| 2058 | * go directly to the assigned state, or we need to |
| 2059 | * load-balance first and go to the INI state. |
| 2060 | */ |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2061 | s->conn_exp = TICK_ETERNITY; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2062 | if (unlikely(!(s->flags & SF_ASSIGNED))) |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2063 | cs->state = CS_ST_REQ; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2064 | else { |
| 2065 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2066 | cs->state = CS_ST_ASS; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2067 | } |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2068 | DBG_TRACE_STATE("dequeue connection request", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2069 | goto end; |
| 2070 | } |
| 2071 | |
| 2072 | /* Connection request still in queue... */ |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2073 | if (s->flags & SF_CONN_EXP) { |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2074 | /* ... and timeout expired */ |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2075 | s->conn_exp = TICK_ETERNITY; |
| 2076 | s->flags &= ~SF_CONN_EXP; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2077 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 2078 | |
| 2079 | /* we may need to know the position in the queue for logging */ |
| 2080 | pendconn_cond_unlink(s->pend_pos); |
| 2081 | |
| 2082 | if (srv) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2083 | _HA_ATOMIC_INC(&srv->counters.failed_conns); |
| 2084 | _HA_ATOMIC_INC(&s->be->be_counters.failed_conns); |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2085 | cs_shutr(cs); |
| 2086 | cs_shutw(cs); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2087 | req->flags |= CF_WRITE_TIMEOUT; |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2088 | if (!s->conn_err_type) |
| 2089 | s->conn_err_type = STRM_ET_QUEUE_TO; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2090 | cs->state = CS_ST_CLO; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2091 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2092 | s->srv_error(s, cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2093 | DBG_TRACE_STATE("connection request still queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2094 | goto end; |
| 2095 | } |
| 2096 | |
| 2097 | /* Connection remains in queue, check if we have to abort it */ |
| 2098 | if (back_may_abort_req(req, s)) { |
| 2099 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 2100 | |
| 2101 | /* we may need to know the position in the queue for logging */ |
| 2102 | pendconn_cond_unlink(s->pend_pos); |
| 2103 | |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2104 | s->conn_err_type |= STRM_ET_QUEUE_ABRT; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2105 | DBG_TRACE_STATE("abort queued connection request", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2106 | goto abort_connection; |
| 2107 | } |
| 2108 | |
| 2109 | /* Nothing changed */ |
| 2110 | } |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2111 | else if (cs->state == CS_ST_TAR) { |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2112 | /* Connection request might be aborted */ |
| 2113 | if (back_may_abort_req(req, s)) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2114 | s->conn_err_type |= STRM_ET_CONN_ABRT; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2115 | DBG_TRACE_STATE("connection aborted", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2116 | goto abort_connection; |
| 2117 | } |
| 2118 | |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2119 | if (!(s->flags & SF_CONN_EXP)) |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2120 | return; /* still in turn-around */ |
| 2121 | |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2122 | s->flags &= ~SF_CONN_EXP; |
| 2123 | s->conn_exp = TICK_ETERNITY; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2124 | |
| 2125 | /* we keep trying on the same server as long as the stream is |
| 2126 | * marked "assigned". |
| 2127 | * FIXME: Should we force a redispatch attempt when the server is down ? |
| 2128 | */ |
| 2129 | if (s->flags & SF_ASSIGNED) |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2130 | cs->state = CS_ST_ASS; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2131 | else |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2132 | cs->state = CS_ST_REQ; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2133 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2134 | DBG_TRACE_STATE("retry connection now", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2135 | } |
| 2136 | |
| 2137 | end: |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2138 | DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2139 | return; |
| 2140 | |
| 2141 | abort_connection: |
| 2142 | /* give up */ |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2143 | s->conn_exp = TICK_ETERNITY; |
| 2144 | s->flags &= ~SF_CONN_EXP; |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2145 | cs_shutr(cs); |
| 2146 | cs_shutw(cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2147 | cs->state = CS_ST_CLO; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2148 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2149 | s->srv_error(s, cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2150 | DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2151 | return; |
| 2152 | } |
| 2153 | |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 2154 | /* This function initiates a server connection request on a conn-stream |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2155 | * already in CS_ST_REQ state. Upon success, the state goes to CS_ST_ASS for |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2156 | * a real connection to a server, indicating that a server has been assigned, |
Christopher Faulet | a33ff7a | 2022-04-21 11:52:07 +0200 | [diff] [blame] | 2157 | * or CS_ST_RDY for a successful connection to an applet. It may also return |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2158 | * CS_ST_QUE, or CS_ST_CLO upon error. |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2159 | */ |
| 2160 | void back_handle_st_req(struct stream *s) |
| 2161 | { |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 2162 | struct conn_stream *cs = s->csb; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2163 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2164 | if (cs->state != CS_ST_REQ) |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2165 | return; |
| 2166 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2167 | DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2168 | |
| 2169 | if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) { |
Christopher Faulet | a33ff7a | 2022-04-21 11:52:07 +0200 | [diff] [blame] | 2170 | struct appctx *appctx; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2171 | |
Christopher Faulet | a33ff7a | 2022-04-21 11:52:07 +0200 | [diff] [blame] | 2172 | /* The target is an applet but the CS is in CS_ST_REQ. Thus it |
| 2173 | * means no appctx are attached to the CS. Otherwise, it will be |
| 2174 | * in CS_ST_RDY state. So, try to create the appctx now. |
| 2175 | */ |
| 2176 | BUG_ON(cs_appctx(cs)); |
| 2177 | appctx = cs_applet_create(cs, objt_applet(s->target)); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2178 | if (!appctx) { |
| 2179 | /* No more memory, let's immediately abort. Force the |
| 2180 | * error code to ignore the ERR_LOCAL which is not a |
| 2181 | * real error. |
| 2182 | */ |
| 2183 | s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK); |
| 2184 | |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2185 | cs_shutr(cs); |
| 2186 | cs_shutw(cs); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2187 | s->req.flags |= CF_WRITE_ERROR; |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2188 | s->conn_err_type = STRM_ET_CONN_RES; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2189 | cs->state = CS_ST_CLO; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2190 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2191 | s->srv_error(s, cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2192 | DBG_TRACE_STATE("failed to register applet", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2193 | goto end; |
| 2194 | } |
| 2195 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2196 | DBG_TRACE_STATE("applet registered", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2197 | goto end; |
| 2198 | } |
| 2199 | |
| 2200 | /* Try to assign a server */ |
| 2201 | if (srv_redispatch_connect(s) != 0) { |
| 2202 | /* We did not get a server. Either we queued the |
| 2203 | * connection request, or we encountered an error. |
| 2204 | */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2205 | if (cs->state == CS_ST_QUE) { |
| 2206 | DBG_TRACE_STATE("connection request queued", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2207 | goto end; |
| 2208 | } |
| 2209 | |
| 2210 | /* we did not get any server, let's check the cause */ |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2211 | cs_shutr(cs); |
| 2212 | cs_shutw(cs); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2213 | s->req.flags |= CF_WRITE_ERROR; |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2214 | if (!s->conn_err_type) |
| 2215 | s->conn_err_type = STRM_ET_CONN_OTHER; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2216 | cs->state = CS_ST_CLO; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2217 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2218 | s->srv_error(s, cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2219 | DBG_TRACE_STATE("connection request failed", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2220 | goto end; |
| 2221 | } |
| 2222 | |
| 2223 | /* The server is assigned */ |
| 2224 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2225 | cs->state = CS_ST_ASS; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2226 | be_set_sess_last(s->be); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2227 | DBG_TRACE_STATE("connection request assigned to a server", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2228 | |
| 2229 | end: |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2230 | DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2231 | } |
| 2232 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2233 | /* This function is called with (cs->state == CS_ST_CON) meaning that a |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2234 | * connection was attempted and that the file descriptor is already allocated. |
| 2235 | * We must check for timeout, error and abort. Possible output states are |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2236 | * CS_ST_CER (error), CS_ST_DIS (abort), and CS_ST_CON (no change). This only |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2237 | * works with connection-based streams. We know that there were no I/O event |
| 2238 | * when reaching this function. Timeouts and errors are *not* cleared. |
| 2239 | */ |
| 2240 | void back_handle_st_con(struct stream *s) |
| 2241 | { |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 2242 | struct conn_stream *cs = s->csb; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2243 | struct channel *req = &s->req; |
| 2244 | struct channel *rep = &s->res; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2245 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2246 | DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2247 | |
| 2248 | /* the client might want to abort */ |
| 2249 | if ((rep->flags & CF_SHUTW) || |
| 2250 | ((req->flags & CF_SHUTW_NOW) && |
| 2251 | (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) { |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 2252 | cs->flags |= CS_FL_NOLINGER; |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2253 | cs_shutw(cs); |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2254 | s->conn_err_type |= STRM_ET_CONN_ABRT; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2255 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2256 | s->srv_error(s, cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2257 | /* Note: state = CS_ST_DIS now */ |
| 2258 | DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 062df2c | 2020-01-10 06:17:03 +0100 | [diff] [blame] | 2259 | goto end; |
| 2260 | } |
| 2261 | |
Willy Tarreau | 062df2c | 2020-01-10 06:17:03 +0100 | [diff] [blame] | 2262 | done: |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2263 | /* retryable error ? */ |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2264 | if ((s->flags & SF_CONN_EXP) || (cs->endp->flags & CS_EP_ERROR)) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2265 | if (!s->conn_err_type) { |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2266 | if (cs->endp->flags & CS_EP_ERROR) |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2267 | s->conn_err_type = STRM_ET_CONN_ERR; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2268 | else |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2269 | s->conn_err_type = STRM_ET_CONN_TO; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2270 | } |
| 2271 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2272 | cs->state = CS_ST_CER; |
| 2273 | DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2274 | } |
| 2275 | |
Willy Tarreau | 062df2c | 2020-01-10 06:17:03 +0100 | [diff] [blame] | 2276 | end: |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2277 | DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2278 | } |
| 2279 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2280 | /* This function is called with (cs->state == CS_ST_CER) meaning that a |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2281 | * previous connection attempt has failed and that the file descriptor |
| 2282 | * has already been released. Possible causes include asynchronous error |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2283 | * notification and time out. Possible output states are CS_ST_CLO when |
| 2284 | * retries are exhausted, CS_ST_TAR when a delay is wanted before a new |
| 2285 | * connection attempt, CS_ST_ASS when it's wise to retry on the same server, |
| 2286 | * and CS_ST_REQ when an immediate redispatch is wanted. The buffers are |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2287 | * marked as in error state. Timeouts and errors are cleared before retrying. |
| 2288 | */ |
| 2289 | void back_handle_st_cer(struct stream *s) |
| 2290 | { |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 2291 | struct conn_stream *cs = s->csb; |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2292 | int must_tar = (cs->endp->flags & CS_EP_ERROR); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2293 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2294 | DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2295 | |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2296 | s->conn_exp = TICK_ETERNITY; |
| 2297 | s->flags &= ~SF_CONN_EXP; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2298 | |
Christopher Faulet | 731c8e6 | 2022-03-29 16:08:44 +0200 | [diff] [blame] | 2299 | s->conn_retries++; |
| 2300 | |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2301 | /* we probably have to release last stream from the server */ |
| 2302 | if (objt_server(s->target)) { |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 2303 | struct connection *conn = cs_conn(cs); |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 2304 | |
Willy Tarreau | 88bc800 | 2021-12-06 07:01:02 +0000 | [diff] [blame] | 2305 | health_adjust(__objt_server(s->target), HANA_STATUS_L4_ERR); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2306 | |
| 2307 | if (s->flags & SF_CURR_SESS) { |
| 2308 | s->flags &= ~SF_CURR_SESS; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2309 | _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2310 | } |
| 2311 | |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2312 | if ((cs->endp->flags & CS_EP_ERROR) && |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2313 | conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) { |
| 2314 | /* We tried to connect to a server which is configured |
| 2315 | * with "verify required" and which doesn't have the |
| 2316 | * "verifyhost" directive. The server presented a wrong |
| 2317 | * certificate (a certificate for an unexpected name), |
| 2318 | * which implies that we have used SNI in the handshake, |
| 2319 | * and that the server doesn't have the associated cert |
| 2320 | * and presented a default one. |
| 2321 | * |
| 2322 | * This is a serious enough issue not to retry. It's |
| 2323 | * especially important because this wrong name might |
| 2324 | * either be the result of a configuration error, and |
| 2325 | * retrying will only hammer the server, or is caused |
| 2326 | * by the use of a wrong SNI value, most likely |
| 2327 | * provided by the client and we don't want to let the |
| 2328 | * client provoke retries. |
| 2329 | */ |
Christopher Faulet | 731c8e6 | 2022-03-29 16:08:44 +0200 | [diff] [blame] | 2330 | s->conn_retries = s->be->conn_retries; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2331 | DBG_TRACE_DEVEL("Bad SSL cert, disable connection retries", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2332 | } |
| 2333 | } |
| 2334 | |
| 2335 | /* ensure that we have enough retries left */ |
Christopher Faulet | 731c8e6 | 2022-03-29 16:08:44 +0200 | [diff] [blame] | 2336 | if (s->conn_retries >= s->be->conn_retries || !(s->be->retry_type & PR_RE_CONN_FAILED)) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2337 | if (!s->conn_err_type) { |
| 2338 | s->conn_err_type = STRM_ET_CONN_ERR; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2339 | } |
| 2340 | |
| 2341 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2342 | _HA_ATOMIC_INC(&objt_server(s->target)->counters.failed_conns); |
| 2343 | _HA_ATOMIC_INC(&s->be->be_counters.failed_conns); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2344 | sess_change_server(s, NULL); |
| 2345 | if (may_dequeue_tasks(objt_server(s->target), s->be)) |
Willy Tarreau | 9ab7829 | 2021-06-22 18:47:51 +0200 | [diff] [blame] | 2346 | process_srv_queue(objt_server(s->target)); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2347 | |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2348 | /* shutw is enough to stop a connecting socket */ |
| 2349 | cs_shutw(cs); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2350 | s->req.flags |= CF_WRITE_ERROR; |
| 2351 | s->res.flags |= CF_READ_ERROR; |
| 2352 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2353 | cs->state = CS_ST_CLO; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2354 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2355 | s->srv_error(s, cs); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2356 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2357 | DBG_TRACE_STATE("connection failed", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2358 | goto end; |
| 2359 | } |
| 2360 | |
Christopher Faulet | f822dec | 2021-06-01 14:06:05 +0200 | [diff] [blame] | 2361 | /* At this stage, we will trigger a connection retry (with or without |
Christopher Faulet | e00ad35 | 2021-12-16 14:44:31 +0100 | [diff] [blame] | 2362 | * redispatch). Thus we must reset the SI endpoint on the server side |
Christopher Faulet | f822dec | 2021-06-01 14:06:05 +0200 | [diff] [blame] | 2363 | * an close the attached connection. It is especially important to do it |
| 2364 | * now if the retry is not immediately performed, to be sure to release |
Ilya Shipitsin | 213bb99 | 2021-06-12 15:55:27 +0500 | [diff] [blame] | 2365 | * resources as soon as possible and to not catch errors from the lower |
Christopher Faulet | f822dec | 2021-06-01 14:06:05 +0200 | [diff] [blame] | 2366 | * layers in an unexpected state (i.e < ST_CONN). |
| 2367 | * |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 2368 | * Note: the conn-stream will be switched to ST_REQ, ST_ASS or |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2369 | * ST_TAR and CS_EP_ERROR and SF_CONN_EXP flags will be unset. |
Christopher Faulet | f822dec | 2021-06-01 14:06:05 +0200 | [diff] [blame] | 2370 | */ |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 2371 | if (cs_reset_endp(cs) < 0) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2372 | if (!s->conn_err_type) |
| 2373 | s->conn_err_type = STRM_ET_CONN_OTHER; |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 2374 | |
| 2375 | if (objt_server(s->target)) |
| 2376 | _HA_ATOMIC_INC(&objt_server(s->target)->counters.internal_errors); |
| 2377 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
| 2378 | sess_change_server(s, NULL); |
| 2379 | if (may_dequeue_tasks(objt_server(s->target), s->be)) |
| 2380 | process_srv_queue(objt_server(s->target)); |
| 2381 | |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2382 | /* shutw is enough to stop a connecting socket */ |
| 2383 | cs_shutw(cs); |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 2384 | s->req.flags |= CF_WRITE_ERROR; |
| 2385 | s->res.flags |= CF_READ_ERROR; |
| 2386 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2387 | cs->state = CS_ST_CLO; |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 2388 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2389 | s->srv_error(s, cs); |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 2390 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2391 | DBG_TRACE_STATE("error resetting endpoint", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 2392 | goto end; |
| 2393 | } |
Christopher Faulet | f822dec | 2021-06-01 14:06:05 +0200 | [diff] [blame] | 2394 | |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2395 | stream_choose_redispatch(s); |
| 2396 | |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2397 | if (must_tar) { |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2398 | /* The error was an asynchronous connection error, and we will |
| 2399 | * likely have to retry connecting to the same server, most |
| 2400 | * likely leading to the same result. To avoid this, we wait |
| 2401 | * MIN(one second, connect timeout) before retrying. We don't |
| 2402 | * do it when the failure happened on a reused connection |
| 2403 | * though. |
| 2404 | */ |
| 2405 | |
| 2406 | int delay = 1000; |
Amaury Denoyelle | 2b1d917 | 2021-06-17 15:14:49 +0200 | [diff] [blame] | 2407 | const int reused = (s->flags & SF_SRV_REUSED) && |
| 2408 | !(s->flags & SF_SRV_REUSED_ANTICIPATED); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2409 | |
| 2410 | if (s->be->timeout.connect && s->be->timeout.connect < delay) |
| 2411 | delay = s->be->timeout.connect; |
| 2412 | |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2413 | if (!s->conn_err_type) |
| 2414 | s->conn_err_type = STRM_ET_CONN_ERR; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2415 | |
| 2416 | /* only wait when we're retrying on the same server */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2417 | if ((cs->state == CS_ST_ASS || |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2418 | (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR || |
Amaury Denoyelle | 2b1d917 | 2021-06-17 15:14:49 +0200 | [diff] [blame] | 2419 | (s->be->srv_act <= 1)) && !reused) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2420 | cs->state = CS_ST_TAR; |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2421 | s->conn_exp = tick_add(now_ms, MS_TO_TICKS(delay)); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2422 | } |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2423 | DBG_TRACE_STATE("retry a new connection", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2424 | } |
| 2425 | |
| 2426 | end: |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2427 | DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2428 | } |
| 2429 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2430 | /* This function is called with (cs->state == CS_ST_RDY) meaning that a |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2431 | * connection was attempted, that the file descriptor is already allocated, |
| 2432 | * and that it has succeeded. We must still check for errors and aborts. |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2433 | * Possible output states are CS_ST_EST (established), CS_ST_CER (error), |
| 2434 | * and CS_ST_DIS (abort). This only works with connection-based streams. |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2435 | * Timeouts and errors are *not* cleared. |
| 2436 | */ |
| 2437 | void back_handle_st_rdy(struct stream *s) |
| 2438 | { |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 2439 | struct conn_stream *cs = s->csb; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2440 | struct channel *req = &s->req; |
| 2441 | struct channel *rep = &s->res; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2442 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2443 | DBG_TRACE_ENTER(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Christopher Faulet | a33ff7a | 2022-04-21 11:52:07 +0200 | [diff] [blame] | 2444 | |
| 2445 | if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) { |
| 2446 | /* Here the appctx must exists because the CS was set to |
| 2447 | * CS_ST_RDY state when the appctx was created. |
| 2448 | */ |
| 2449 | BUG_ON(!cs_appctx(s->csb)); |
| 2450 | |
| 2451 | if (tv_iszero(&s->logs.tv_request)) |
| 2452 | s->logs.tv_request = now; |
| 2453 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 2454 | be_set_sess_last(s->be); |
| 2455 | } |
| 2456 | |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2457 | /* We know the connection at least succeeded, though it could have |
| 2458 | * since met an error for any other reason. At least it didn't time out |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 2459 | * even though the timeout might have been reported right after success. |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2460 | * We need to take care of various situations here : |
| 2461 | * - everything might be OK. We have to switch to established. |
| 2462 | * - an I/O error might have been reported after a successful transfer, |
| 2463 | * which is not retryable and needs to be logged correctly, and needs |
| 2464 | * established as well |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2465 | * - CS_ST_CON implies !CF_WROTE_DATA but not conversely as we could |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2466 | * have validated a connection with incoming data (e.g. TCP with a |
| 2467 | * banner protocol), or just a successful connect() probe. |
| 2468 | * - the client might have requested a connection abort, this needs to |
| 2469 | * be checked before we decide to retry anything. |
| 2470 | */ |
| 2471 | |
| 2472 | /* it's still possible to handle client aborts or connection retries |
| 2473 | * before any data were sent. |
| 2474 | */ |
| 2475 | if (!(req->flags & CF_WROTE_DATA)) { |
| 2476 | /* client abort ? */ |
| 2477 | if ((rep->flags & CF_SHUTW) || |
| 2478 | ((req->flags & CF_SHUTW_NOW) && |
| 2479 | (channel_is_empty(req) || (s->be->options & PR_O_ABRT_CLOSE)))) { |
| 2480 | /* give up */ |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 2481 | cs->flags |= CS_FL_NOLINGER; |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 2482 | cs_shutw(cs); |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2483 | s->conn_err_type |= STRM_ET_CONN_ABRT; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2484 | if (s->srv_error) |
Christopher Faulet | 0eb32c0 | 2022-04-04 11:06:31 +0200 | [diff] [blame] | 2485 | s->srv_error(s, cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2486 | DBG_TRACE_STATE("client abort during connection attempt", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2487 | goto end; |
| 2488 | } |
| 2489 | |
| 2490 | /* retryable error ? */ |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 2491 | if (cs->endp->flags & CS_EP_ERROR) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2492 | if (!s->conn_err_type) |
| 2493 | s->conn_err_type = STRM_ET_CONN_ERR; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2494 | cs->state = CS_ST_CER; |
| 2495 | DBG_TRACE_STATE("connection failed, retry", STRM_EV_STRM_PROC|STRM_EV_CS_ST|STRM_EV_STRM_ERR, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2496 | goto end; |
| 2497 | } |
| 2498 | } |
| 2499 | |
| 2500 | /* data were sent and/or we had no error, back_establish() will |
| 2501 | * now take over. |
| 2502 | */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2503 | DBG_TRACE_STATE("connection established", STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2504 | s->conn_err_type = STRM_ET_NONE; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2505 | cs->state = CS_ST_EST; |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2506 | |
| 2507 | end: |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 2508 | DBG_TRACE_LEAVE(STRM_EV_STRM_PROC|STRM_EV_CS_ST, s); |
Willy Tarreau | 3a9312a | 2020-01-09 18:43:15 +0100 | [diff] [blame] | 2509 | } |
| 2510 | |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 2511 | /* sends a log message when a backend goes down, and also sets last |
| 2512 | * change date. |
| 2513 | */ |
| 2514 | void set_backend_down(struct proxy *be) |
| 2515 | { |
| 2516 | be->last_change = now.tv_sec; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2517 | _HA_ATOMIC_INC(&be->down_trans); |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 2518 | |
Willy Tarreau | 6fb8dc1 | 2016-11-03 19:42:36 +0100 | [diff] [blame] | 2519 | if (!(global.mode & MODE_STARTING)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2520 | ha_alert("%s '%s' has no server available!\n", proxy_type_str(be), be->id); |
Willy Tarreau | 6fb8dc1 | 2016-11-03 19:42:36 +0100 | [diff] [blame] | 2521 | send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id); |
| 2522 | } |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 2523 | } |
| 2524 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2525 | /* Apply RDP cookie persistence to the current stream. For this, the function |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2526 | * tries to extract an RDP cookie from the request buffer, and look for the |
| 2527 | * matching server in the list. If the server is found, it is assigned to the |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2528 | * stream. This always returns 1, and the analyser removes itself from the |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2529 | * list. Nothing is performed if a server was already assigned. |
| 2530 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2531 | int tcp_persist_rdp_cookie(struct stream *s, struct channel *req, int an_bit) |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2532 | { |
| 2533 | struct proxy *px = s->be; |
| 2534 | int ret; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2535 | struct sample smp; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2536 | struct server *srv = px->srv; |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 2537 | uint16_t port; |
| 2538 | uint32_t addr; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2539 | char *p; |
| 2540 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2541 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2542 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2543 | if (s->flags & SF_ASSIGNED) |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2544 | goto no_cookie; |
| 2545 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2546 | memset(&smp, 0, sizeof(smp)); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2547 | |
Willy Tarreau | cadd8c9 | 2013-07-22 18:09:52 +0200 | [diff] [blame] | 2548 | ret = fetch_rdp_cookie_name(s, &smp, s->be->rdp_cookie_name, s->be->rdp_cookie_len); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2549 | if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.u.str.data == 0) |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2550 | goto no_cookie; |
| 2551 | |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 2552 | /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return. |
| 2553 | * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the |
| 2554 | * server's IP address in network order, and "port" is the integer corresponding to the |
| 2555 | * server's port in network order. Comments please Emeric. |
| 2556 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2557 | addr = strtoul(smp.data.u.str.area, &p, 10); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2558 | if (*p != '.') |
| 2559 | goto no_cookie; |
| 2560 | p++; |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 2561 | |
| 2562 | port = ntohs(strtoul(p, &p, 10)); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2563 | if (*p != '.') |
| 2564 | goto no_cookie; |
| 2565 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2566 | s->target = NULL; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2567 | while (srv) { |
Willy Tarreau | 28e9d06 | 2014-05-09 22:47:50 +0200 | [diff] [blame] | 2568 | if (srv->addr.ss_family == AF_INET && |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 2569 | port == srv->svc_port && |
| 2570 | addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2571 | if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) { |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2572 | /* we found the server and it is usable */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 2573 | s->flags |= SF_DIRECT | SF_ASSIGNED; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2574 | s->target = &srv->obj_type; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2575 | break; |
| 2576 | } |
| 2577 | } |
| 2578 | srv = srv->next; |
| 2579 | } |
| 2580 | |
| 2581 | no_cookie: |
| 2582 | req->analysers &= ~an_bit; |
| 2583 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2584 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 2585 | return 1; |
| 2586 | } |
| 2587 | |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 2588 | int be_downtime(struct proxy *px) { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 2589 | if (px->lbprm.tot_weight && px->last_change < now.tv_sec) // ignore negative time |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 2590 | return px->down_time; |
| 2591 | |
| 2592 | return now.tv_sec - px->last_change + px->down_time; |
| 2593 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2594 | |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 2595 | /* |
| 2596 | * This function returns a string containing the balancing |
| 2597 | * mode of the proxy in a format suitable for stats. |
| 2598 | */ |
| 2599 | |
| 2600 | const char *backend_lb_algo_str(int algo) { |
| 2601 | |
| 2602 | if (algo == BE_LB_ALGO_RR) |
| 2603 | return "roundrobin"; |
| 2604 | else if (algo == BE_LB_ALGO_SRR) |
| 2605 | return "static-rr"; |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 2606 | else if (algo == BE_LB_ALGO_FAS) |
| 2607 | return "first"; |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 2608 | else if (algo == BE_LB_ALGO_LC) |
| 2609 | return "leastconn"; |
| 2610 | else if (algo == BE_LB_ALGO_SH) |
| 2611 | return "source"; |
| 2612 | else if (algo == BE_LB_ALGO_UH) |
| 2613 | return "uri"; |
| 2614 | else if (algo == BE_LB_ALGO_PH) |
| 2615 | return "url_param"; |
| 2616 | else if (algo == BE_LB_ALGO_HH) |
| 2617 | return "hdr"; |
| 2618 | else if (algo == BE_LB_ALGO_RCH) |
| 2619 | return "rdp-cookie"; |
Willy Tarreau | 7c9a0fe | 2022-04-25 10:25:34 +0200 | [diff] [blame^] | 2620 | else if (algo == BE_LB_ALGO_SMP) |
| 2621 | return "hash"; |
Willy Tarreau | b3e111b | 2016-11-26 15:52:04 +0100 | [diff] [blame] | 2622 | else if (algo == BE_LB_ALGO_NONE) |
| 2623 | return "none"; |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 2624 | else |
Willy Tarreau | b3e111b | 2016-11-26 15:52:04 +0100 | [diff] [blame] | 2625 | return "unknown"; |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 2626 | } |
| 2627 | |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2628 | /* This function parses a "balance" statement in a backend section describing |
| 2629 | * <curproxy>. It returns -1 if there is any error, otherwise zero. If it |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2630 | * returns -1, it will write an error message into the <err> buffer which will |
| 2631 | * automatically be allocated and must be passed as NULL. The trailing '\n' |
| 2632 | * will not be written. The function must be called with <args> pointing to the |
| 2633 | * first word after "balance". |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2634 | */ |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2635 | int backend_parse_balance(const char **args, char **err, struct proxy *curproxy) |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2636 | { |
| 2637 | if (!*(args[0])) { |
| 2638 | /* if no option is set, use round-robin by default */ |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 2639 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2640 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2641 | return 0; |
| 2642 | } |
| 2643 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2644 | if (strcmp(args[0], "roundrobin") == 0) { |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 2645 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2646 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2647 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2648 | else if (strcmp(args[0], "static-rr") == 0) { |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 2649 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2650 | curproxy->lbprm.algo |= BE_LB_ALGO_SRR; |
| 2651 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2652 | else if (strcmp(args[0], "first") == 0) { |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 2653 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2654 | curproxy->lbprm.algo |= BE_LB_ALGO_FAS; |
| 2655 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2656 | else if (strcmp(args[0], "leastconn") == 0) { |
Willy Tarreau | 5140623 | 2008-03-10 22:04:20 +0100 | [diff] [blame] | 2657 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2658 | curproxy->lbprm.algo |= BE_LB_ALGO_LC; |
| 2659 | } |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 2660 | else if (!strncmp(args[0], "random", 6)) { |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 2661 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2662 | curproxy->lbprm.algo |= BE_LB_ALGO_RND; |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 2663 | curproxy->lbprm.arg_opt1 = 2; |
| 2664 | |
| 2665 | if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */ |
| 2666 | const char *beg; |
| 2667 | char *end; |
| 2668 | |
| 2669 | beg = args[0] + 7; |
| 2670 | curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0); |
| 2671 | |
| 2672 | if (*end != ')') { |
| 2673 | if (!*end) |
| 2674 | memprintf(err, "random : missing closing parenthesis."); |
| 2675 | else |
| 2676 | memprintf(err, "random : unexpected character '%c' after argument.", *end); |
| 2677 | return -1; |
| 2678 | } |
| 2679 | |
| 2680 | if (curproxy->lbprm.arg_opt1 < 1) { |
| 2681 | memprintf(err, "random : number of draws must be at least 1."); |
| 2682 | return -1; |
| 2683 | } |
| 2684 | } |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 2685 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2686 | else if (strcmp(args[0], "source") == 0) { |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 2687 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2688 | curproxy->lbprm.algo |= BE_LB_ALGO_SH; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2689 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2690 | else if (strcmp(args[0], "uri") == 0) { |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2691 | int arg = 1; |
| 2692 | |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 2693 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2694 | curproxy->lbprm.algo |= BE_LB_ALGO_UH; |
Willy Tarreau | 57a3741 | 2020-09-23 08:56:29 +0200 | [diff] [blame] | 2695 | curproxy->lbprm.arg_opt1 = 0; // "whole", "path-only" |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 2696 | curproxy->lbprm.arg_opt2 = 0; // "len" |
| 2697 | curproxy->lbprm.arg_opt3 = 0; // "depth" |
Oskar Stolc | 8dc4184 | 2012-05-19 10:19:54 +0100 | [diff] [blame] | 2698 | |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2699 | while (*args[arg]) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2700 | if (strcmp(args[arg], "len") == 0) { |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2701 | if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2702 | memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2703 | return -1; |
| 2704 | } |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 2705 | curproxy->lbprm.arg_opt2 = atoi(args[arg+1]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2706 | arg += 2; |
| 2707 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2708 | else if (strcmp(args[arg], "depth") == 0) { |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2709 | if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2710 | memprintf(err, "%s : '%s' expects a positive integer (got '%s').", args[0], args[arg], args[arg+1]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2711 | return -1; |
| 2712 | } |
| 2713 | /* hint: we store the position of the ending '/' (depth+1) so |
| 2714 | * that we avoid a comparison while computing the hash. |
| 2715 | */ |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 2716 | curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1; |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2717 | arg += 2; |
| 2718 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2719 | else if (strcmp(args[arg], "whole") == 0) { |
Willy Tarreau | 3d1119d | 2020-09-23 08:05:47 +0200 | [diff] [blame] | 2720 | curproxy->lbprm.arg_opt1 |= 1; |
Oskar Stolc | 8dc4184 | 2012-05-19 10:19:54 +0100 | [diff] [blame] | 2721 | arg += 1; |
| 2722 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2723 | else if (strcmp(args[arg], "path-only") == 0) { |
Willy Tarreau | 57a3741 | 2020-09-23 08:56:29 +0200 | [diff] [blame] | 2724 | curproxy->lbprm.arg_opt1 |= 2; |
| 2725 | arg += 1; |
| 2726 | } |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2727 | else { |
Willy Tarreau | 57a3741 | 2020-09-23 08:56:29 +0200 | [diff] [blame] | 2728 | memprintf(err, "%s only accepts parameters 'len', 'depth', 'path-only', and 'whole' (got '%s').", args[0], args[arg]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2729 | return -1; |
| 2730 | } |
| 2731 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2732 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2733 | else if (strcmp(args[0], "url_param") == 0) { |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2734 | if (!*args[1]) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2735 | memprintf(err, "%s requires an URL parameter name.", args[0]); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2736 | return -1; |
| 2737 | } |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 2738 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2739 | curproxy->lbprm.algo |= BE_LB_ALGO_PH; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2740 | |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 2741 | free(curproxy->lbprm.arg_str); |
| 2742 | curproxy->lbprm.arg_str = strdup(args[1]); |
| 2743 | curproxy->lbprm.arg_len = strlen(args[1]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2744 | if (*args[2]) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2745 | if (strcmp(args[2], "check_post") != 0) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2746 | memprintf(err, "%s only accepts 'check_post' modifier (got '%s').", args[0], args[2]); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 2747 | return -1; |
| 2748 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 2749 | } |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2750 | } |
Willy Tarreau | 7c9a0fe | 2022-04-25 10:25:34 +0200 | [diff] [blame^] | 2751 | else if (strcmp(args[0], "hash") == 0) { |
| 2752 | if (!*args[1]) { |
| 2753 | memprintf(err, "%s requires a sample expression.", args[0]); |
| 2754 | return -1; |
| 2755 | } |
| 2756 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2757 | curproxy->lbprm.algo |= BE_LB_ALGO_SMP; |
| 2758 | |
| 2759 | ha_free(&curproxy->lbprm.arg_str); |
| 2760 | curproxy->lbprm.arg_str = strdup(args[1]); |
| 2761 | curproxy->lbprm.arg_len = strlen(args[1]); |
| 2762 | |
| 2763 | if (*args[2]) { |
| 2764 | memprintf(err, "%s takes no other argument (got '%s').", args[0], args[2]); |
| 2765 | return -1; |
| 2766 | } |
| 2767 | } |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2768 | else if (!strncmp(args[0], "hdr(", 4)) { |
| 2769 | const char *beg, *end; |
| 2770 | |
| 2771 | beg = args[0] + 4; |
| 2772 | end = strchr(beg, ')'); |
| 2773 | |
| 2774 | if (!end || end == beg) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2775 | memprintf(err, "hdr requires an http header field name."); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2776 | return -1; |
| 2777 | } |
| 2778 | |
| 2779 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2780 | curproxy->lbprm.algo |= BE_LB_ALGO_HH; |
| 2781 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 2782 | free(curproxy->lbprm.arg_str); |
| 2783 | curproxy->lbprm.arg_len = end - beg; |
| 2784 | curproxy->lbprm.arg_str = my_strndup(beg, end - beg); |
Willy Tarreau | 9fed858 | 2019-01-14 16:04:54 +0100 | [diff] [blame] | 2785 | curproxy->lbprm.arg_opt1 = 0; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2786 | |
| 2787 | if (*args[1]) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2788 | if (strcmp(args[1], "use_domain_only") != 0) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2789 | memprintf(err, "%s only accepts 'use_domain_only' modifier (got '%s').", args[0], args[1]); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2790 | return -1; |
| 2791 | } |
Willy Tarreau | 9fed858 | 2019-01-14 16:04:54 +0100 | [diff] [blame] | 2792 | curproxy->lbprm.arg_opt1 = 1; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2793 | } |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2794 | } |
| 2795 | else if (!strncmp(args[0], "rdp-cookie", 10)) { |
| 2796 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2797 | curproxy->lbprm.algo |= BE_LB_ALGO_RCH; |
| 2798 | |
| 2799 | if ( *(args[0] + 10 ) == '(' ) { /* cookie name */ |
| 2800 | const char *beg, *end; |
| 2801 | |
| 2802 | beg = args[0] + 11; |
| 2803 | end = strchr(beg, ')'); |
| 2804 | |
| 2805 | if (!end || end == beg) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2806 | memprintf(err, "rdp-cookie : missing cookie name."); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2807 | return -1; |
| 2808 | } |
| 2809 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 2810 | free(curproxy->lbprm.arg_str); |
| 2811 | curproxy->lbprm.arg_str = my_strndup(beg, end - beg); |
| 2812 | curproxy->lbprm.arg_len = end - beg; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2813 | } |
| 2814 | else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */ |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 2815 | free(curproxy->lbprm.arg_str); |
| 2816 | curproxy->lbprm.arg_str = strdup("mstshash"); |
| 2817 | curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2818 | } |
| 2819 | else { /* syntax */ |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2820 | memprintf(err, "rdp-cookie : missing cookie name."); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2821 | return -1; |
| 2822 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2823 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2824 | else { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2825 | memprintf(err, "only supports 'roundrobin', 'static-rr', 'leastconn', 'source', 'uri', 'url_param', 'hdr(name)' and 'rdp-cookie(name)' options."); |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2826 | return -1; |
| 2827 | } |
| 2828 | return 0; |
| 2829 | } |
| 2830 | |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2831 | |
| 2832 | /************************************************************************/ |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 2833 | /* All supported sample and ACL keywords must be declared here. */ |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2834 | /************************************************************************/ |
| 2835 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2836 | /* set temp integer to the number of enabled servers on the proxy. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2837 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2838 | * undefined behaviour. |
| 2839 | */ |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2840 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2841 | smp_fetch_nbsrv(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2842 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 2843 | struct proxy *px = args->data.prx; |
| 2844 | |
| 2845 | if (px == NULL) |
| 2846 | return 0; |
| 2847 | if (px->cap & PR_CAP_DEF) |
| 2848 | px = smp->px; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2849 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2850 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2851 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2852 | |
Nenad Merdanovic | 2754fbc | 2017-03-12 21:56:56 +0100 | [diff] [blame] | 2853 | smp->data.u.sint = be_usable_srv(px); |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2854 | |
| 2855 | return 1; |
| 2856 | } |
| 2857 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2858 | /* report in smp->flags a success or failure depending on the designated |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2859 | * server's state. There is no match function involved since there's no pattern. |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2860 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 2861 | * undefined behaviour. |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2862 | */ |
| 2863 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2864 | smp_fetch_srv_is_up(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2865 | { |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 2866 | struct server *srv = args->data.srv; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2867 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2868 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2869 | smp->data.type = SMP_T_BOOL; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2870 | if (!(srv->cur_admin & SRV_ADMF_MAINT) && |
| 2871 | (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED))) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2872 | smp->data.u.sint = 1; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2873 | else |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2874 | smp->data.u.sint = 0; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2875 | return 1; |
| 2876 | } |
| 2877 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2878 | /* set temp integer to the number of enabled servers on the proxy. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2879 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2880 | * undefined behaviour. |
| 2881 | */ |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2882 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2883 | smp_fetch_connslots(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2884 | { |
| 2885 | struct server *iterator; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 2886 | struct proxy *px = args->data.prx; |
| 2887 | |
| 2888 | if (px == NULL) |
| 2889 | return 0; |
| 2890 | if (px->cap & PR_CAP_DEF) |
| 2891 | px = smp->px; |
Willy Tarreau | d28c353 | 2012-04-19 19:28:33 +0200 | [diff] [blame] | 2892 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2893 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2894 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2895 | smp->data.u.sint = 0; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2896 | |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 2897 | for (iterator = px->srv; iterator; iterator = iterator->next) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2898 | if (iterator->cur_state == SRV_ST_STOPPED) |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2899 | continue; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2900 | |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2901 | if (iterator->maxconn == 0 || iterator->maxqueue == 0) { |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 2902 | /* configuration is stupid */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2903 | smp->data.u.sint = -1; /* FIXME: stupid value! */ |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2904 | return 1; |
| 2905 | } |
| 2906 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2907 | smp->data.u.sint += (iterator->maxconn - iterator->cur_sess) |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 2908 | + (iterator->maxqueue - iterator->queue.length); |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2909 | } |
| 2910 | |
| 2911 | return 1; |
| 2912 | } |
| 2913 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 2914 | /* set temp integer to the id of the backend */ |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2915 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2916 | smp_fetch_be_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2917 | { |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2918 | struct proxy *px = NULL; |
| 2919 | |
| 2920 | if (smp->strm) |
| 2921 | px = smp->strm->be; |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 2922 | else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2923 | px = __objt_check(smp->sess->origin)->proxy; |
| 2924 | if (!px) |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 2925 | return 0; |
| 2926 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 2927 | smp->flags = SMP_F_VOL_TXN; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2928 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2929 | smp->data.u.sint = px->uuid; |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2930 | return 1; |
| 2931 | } |
| 2932 | |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2933 | /* set string to the name of the backend */ |
| 2934 | static int |
| 2935 | smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2936 | { |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2937 | struct proxy *px = NULL; |
| 2938 | |
| 2939 | if (smp->strm) |
| 2940 | px = smp->strm->be; |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 2941 | else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2942 | px = __objt_check(smp->sess->origin)->proxy; |
| 2943 | if (!px) |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2944 | return 0; |
| 2945 | |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2946 | smp->data.u.str.area = (char *)px->id; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2947 | if (!smp->data.u.str.area) |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2948 | return 0; |
| 2949 | |
| 2950 | smp->data.type = SMP_T_STR; |
| 2951 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2952 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2953 | |
| 2954 | return 1; |
| 2955 | } |
| 2956 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 2957 | /* set temp integer to the id of the server */ |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2958 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2959 | smp_fetch_srv_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2960 | { |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2961 | struct server *srv = NULL; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 2962 | |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2963 | if (smp->strm) |
| 2964 | srv = objt_server(smp->strm->target); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 2965 | else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2966 | srv = __objt_check(smp->sess->origin)->server; |
| 2967 | if (!srv) |
Willy Tarreau | 17af419 | 2011-02-23 14:27:06 +0100 | [diff] [blame] | 2968 | return 0; |
| 2969 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2970 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2971 | smp->data.u.sint = srv->puid; |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2972 | |
| 2973 | return 1; |
| 2974 | } |
| 2975 | |
vkill | 1dfd165 | 2019-10-30 16:58:14 +0800 | [diff] [blame] | 2976 | /* set string to the name of the server */ |
| 2977 | static int |
| 2978 | smp_fetch_srv_name(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2979 | { |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2980 | struct server *srv = NULL; |
vkill | 1dfd165 | 2019-10-30 16:58:14 +0800 | [diff] [blame] | 2981 | |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2982 | if (smp->strm) |
| 2983 | srv = objt_server(smp->strm->target); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 2984 | else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2985 | srv = __objt_check(smp->sess->origin)->server; |
| 2986 | if (!srv) |
vkill | 1dfd165 | 2019-10-30 16:58:14 +0800 | [diff] [blame] | 2987 | return 0; |
| 2988 | |
Christopher Faulet | d1b4464 | 2020-04-30 09:51:15 +0200 | [diff] [blame] | 2989 | smp->data.u.str.area = srv->id; |
vkill | 1dfd165 | 2019-10-30 16:58:14 +0800 | [diff] [blame] | 2990 | if (!smp->data.u.str.area) |
| 2991 | return 0; |
| 2992 | |
| 2993 | smp->data.type = SMP_T_STR; |
| 2994 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
| 2995 | |
| 2996 | return 1; |
| 2997 | } |
| 2998 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2999 | /* set temp integer to the number of connections per second reaching the backend. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 3000 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 3001 | * undefined behaviour. |
| 3002 | */ |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 3003 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3004 | smp_fetch_be_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 3005 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3006 | struct proxy *px = args->data.prx; |
| 3007 | |
| 3008 | if (px == NULL) |
| 3009 | return 0; |
| 3010 | if (px->cap & PR_CAP_DEF) |
| 3011 | px = smp->px; |
| 3012 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 3013 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3014 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3015 | smp->data.u.sint = read_freq_ctr(&px->be_sess_per_sec); |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 3016 | return 1; |
| 3017 | } |
| 3018 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 3019 | /* set temp integer to the number of concurrent connections on the backend. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 3020 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 3021 | * undefined behaviour. |
| 3022 | */ |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3023 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3024 | smp_fetch_be_conn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3025 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3026 | struct proxy *px = args->data.prx; |
| 3027 | |
| 3028 | if (px == NULL) |
| 3029 | return 0; |
| 3030 | if (px->cap & PR_CAP_DEF) |
| 3031 | px = smp->px; |
| 3032 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 3033 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3034 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3035 | smp->data.u.sint = px->beconn; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3036 | return 1; |
| 3037 | } |
| 3038 | |
Patrick Hemmer | 4cdf3ab | 2018-06-14 17:10:27 -0400 | [diff] [blame] | 3039 | /* set temp integer to the number of available connections across available |
| 3040 | * servers on the backend. |
| 3041 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
| 3042 | * undefined behaviour. |
| 3043 | */ |
| 3044 | static int |
| 3045 | smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 3046 | { |
| 3047 | struct server *iterator; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3048 | struct proxy *px = args->data.prx; |
Patrick Hemmer | 4cdf3ab | 2018-06-14 17:10:27 -0400 | [diff] [blame] | 3049 | unsigned int maxconn; |
| 3050 | |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3051 | if (px == NULL) |
| 3052 | return 0; |
| 3053 | if (px->cap & PR_CAP_DEF) |
| 3054 | px = smp->px; |
| 3055 | |
Patrick Hemmer | 4cdf3ab | 2018-06-14 17:10:27 -0400 | [diff] [blame] | 3056 | smp->flags = SMP_F_VOL_TEST; |
| 3057 | smp->data.type = SMP_T_SINT; |
| 3058 | smp->data.u.sint = 0; |
| 3059 | |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3060 | for (iterator = px->srv; iterator; iterator = iterator->next) { |
Patrick Hemmer | 4cdf3ab | 2018-06-14 17:10:27 -0400 | [diff] [blame] | 3061 | if (iterator->cur_state == SRV_ST_STOPPED) |
| 3062 | continue; |
| 3063 | |
| 3064 | px = iterator->proxy; |
| 3065 | if (!srv_currently_usable(iterator) || |
| 3066 | ((iterator->flags & SRV_F_BACKUP) && |
| 3067 | (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK))))) |
| 3068 | continue; |
| 3069 | |
| 3070 | if (iterator->maxconn == 0) { |
| 3071 | /* one active server is unlimited, return -1 */ |
| 3072 | smp->data.u.sint = -1; |
| 3073 | return 1; |
| 3074 | } |
| 3075 | |
| 3076 | maxconn = srv_dynamic_maxconn(iterator); |
| 3077 | if (maxconn > iterator->cur_sess) |
| 3078 | smp->data.u.sint += maxconn - iterator->cur_sess; |
| 3079 | } |
| 3080 | |
| 3081 | return 1; |
| 3082 | } |
| 3083 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 3084 | /* set temp integer to the total number of queued connections on the backend. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 3085 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 3086 | * undefined behaviour. |
| 3087 | */ |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3088 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3089 | smp_fetch_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3090 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3091 | struct proxy *px = args->data.prx; |
| 3092 | |
| 3093 | if (px == NULL) |
| 3094 | return 0; |
| 3095 | if (px->cap & PR_CAP_DEF) |
| 3096 | px = smp->px; |
| 3097 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 3098 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3099 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3100 | smp->data.u.sint = px->totpend; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3101 | return 1; |
| 3102 | } |
| 3103 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 3104 | /* set temp integer to the total number of queued connections on the backend divided |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3105 | * by the number of running servers and rounded up. If there is no running |
| 3106 | * server, we return twice the total, just as if we had half a running server. |
| 3107 | * This is more or less correct anyway, since we expect the last server to come |
| 3108 | * back soon. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 3109 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 3110 | * undefined behaviour. |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3111 | */ |
| 3112 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3113 | smp_fetch_avg_queue_size(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3114 | { |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3115 | struct proxy *px = args->data.prx; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3116 | int nbsrv; |
Christopher Faulet | 37a9e21 | 2021-10-12 18:48:05 +0200 | [diff] [blame] | 3117 | |
| 3118 | if (px == NULL) |
| 3119 | return 0; |
| 3120 | if (px->cap & PR_CAP_DEF) |
| 3121 | px = smp->px; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3122 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 3123 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3124 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3125 | |
Nenad Merdanovic | 2754fbc | 2017-03-12 21:56:56 +0100 | [diff] [blame] | 3126 | nbsrv = be_usable_srv(px); |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3127 | |
| 3128 | if (nbsrv > 0) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3129 | smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3130 | else |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3131 | smp->data.u.sint = px->totpend * 2; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 3132 | |
| 3133 | return 1; |
| 3134 | } |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 3135 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 3136 | /* set temp integer to the number of concurrent connections on the server in the backend. |
| 3137 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 3138 | * undefined behaviour. |
| 3139 | */ |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 3140 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3141 | smp_fetch_srv_conn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 3142 | { |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 3143 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3144 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3145 | smp->data.u.sint = args->data.srv->cur_sess; |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 3146 | return 1; |
| 3147 | } |
| 3148 | |
Patrick Hemmer | 155e93e | 2018-06-14 18:01:35 -0400 | [diff] [blame] | 3149 | /* set temp integer to the number of available connections on the server in the backend. |
| 3150 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 3151 | * undefined behaviour. |
| 3152 | */ |
| 3153 | static int |
| 3154 | smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 3155 | { |
| 3156 | unsigned int maxconn; |
| 3157 | |
| 3158 | smp->flags = SMP_F_VOL_TEST; |
| 3159 | smp->data.type = SMP_T_SINT; |
| 3160 | |
| 3161 | if (args->data.srv->maxconn == 0) { |
| 3162 | /* one active server is unlimited, return -1 */ |
| 3163 | smp->data.u.sint = -1; |
| 3164 | return 1; |
| 3165 | } |
| 3166 | |
| 3167 | maxconn = srv_dynamic_maxconn(args->data.srv); |
| 3168 | if (maxconn > args->data.srv->cur_sess) |
| 3169 | smp->data.u.sint = maxconn - args->data.srv->cur_sess; |
| 3170 | else |
| 3171 | smp->data.u.sint = 0; |
| 3172 | |
| 3173 | return 1; |
| 3174 | } |
| 3175 | |
Willy Tarreau | ff2b7af | 2017-10-13 11:46:26 +0200 | [diff] [blame] | 3176 | /* set temp integer to the number of connections pending in the server's queue. |
| 3177 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 3178 | * undefined behaviour. |
| 3179 | */ |
| 3180 | static int |
| 3181 | smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 3182 | { |
| 3183 | smp->flags = SMP_F_VOL_TEST; |
| 3184 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 3185 | smp->data.u.sint = args->data.srv->queue.length; |
Willy Tarreau | ff2b7af | 2017-10-13 11:46:26 +0200 | [diff] [blame] | 3186 | return 1; |
| 3187 | } |
| 3188 | |
Tait Clarridge | 7896d52 | 2012-12-05 21:39:31 -0500 | [diff] [blame] | 3189 | /* set temp integer to the number of enabled servers on the proxy. |
| 3190 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 3191 | * undefined behaviour. |
| 3192 | */ |
| 3193 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3194 | smp_fetch_srv_sess_rate(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Tait Clarridge | 7896d52 | 2012-12-05 21:39:31 -0500 | [diff] [blame] | 3195 | { |
| 3196 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 3197 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 3198 | smp->data.u.sint = read_freq_ctr(&args->data.srv->sess_per_sec); |
Tait Clarridge | 7896d52 | 2012-12-05 21:39:31 -0500 | [diff] [blame] | 3199 | return 1; |
| 3200 | } |
| 3201 | |
Christopher Faulet | 1bea865 | 2020-07-10 16:03:45 +0200 | [diff] [blame] | 3202 | /* set temp integer to the server weight. |
| 3203 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 3204 | * undefined behaviour. |
| 3205 | */ |
| 3206 | static int |
| 3207 | smp_fetch_srv_weight(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 3208 | { |
| 3209 | struct server *srv = args->data.srv; |
| 3210 | struct proxy *px = srv->proxy; |
| 3211 | |
| 3212 | smp->flags = SMP_F_VOL_TEST; |
| 3213 | smp->data.type = SMP_T_SINT; |
| 3214 | smp->data.u.sint = (srv->cur_eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv; |
| 3215 | return 1; |
| 3216 | } |
| 3217 | |
| 3218 | /* set temp integer to the server initial weight. |
| 3219 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 3220 | * undefined behaviour. |
| 3221 | */ |
| 3222 | static int |
| 3223 | smp_fetch_srv_iweight(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 3224 | { |
| 3225 | smp->flags = SMP_F_VOL_TEST; |
| 3226 | smp->data.type = SMP_T_SINT; |
| 3227 | smp->data.u.sint = args->data.srv->iweight; |
| 3228 | return 1; |
| 3229 | } |
| 3230 | |
| 3231 | /* set temp integer to the server user-specified weight. |
| 3232 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 3233 | * undefined behaviour. |
| 3234 | */ |
| 3235 | static int |
| 3236 | smp_fetch_srv_uweight(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 3237 | { |
| 3238 | smp->flags = SMP_F_VOL_TEST; |
| 3239 | smp->data.type = SMP_T_SINT; |
| 3240 | smp->data.u.sint = args->data.srv->uweight; |
| 3241 | return 1; |
| 3242 | } |
| 3243 | |
Amaury Denoyelle | d91d779 | 2020-12-10 13:43:56 +0100 | [diff] [blame] | 3244 | static int |
| 3245 | smp_fetch_be_server_timeout(const struct arg *args, struct sample *smp, const char *km, void *private) |
| 3246 | { |
| 3247 | struct proxy *px = NULL; |
| 3248 | |
| 3249 | if (smp->strm) |
| 3250 | px = smp->strm->be; |
| 3251 | else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
| 3252 | px = __objt_check(smp->sess->origin)->proxy; |
| 3253 | if (!px) |
| 3254 | return 0; |
| 3255 | |
| 3256 | smp->flags = SMP_F_VOL_TXN; |
| 3257 | smp->data.type = SMP_T_SINT; |
| 3258 | smp->data.u.sint = TICKS_TO_MS(px->timeout.server); |
| 3259 | return 1; |
| 3260 | } |
| 3261 | |
| 3262 | static int |
| 3263 | smp_fetch_be_tunnel_timeout(const struct arg *args, struct sample *smp, const char *km, void *private) |
| 3264 | { |
| 3265 | struct proxy *px = NULL; |
| 3266 | |
| 3267 | if (smp->strm) |
| 3268 | px = smp->strm->be; |
| 3269 | else if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
| 3270 | px = __objt_check(smp->sess->origin)->proxy; |
| 3271 | if (!px) |
| 3272 | return 0; |
| 3273 | |
| 3274 | smp->flags = SMP_F_VOL_TXN; |
| 3275 | smp->data.type = SMP_T_SINT; |
| 3276 | smp->data.u.sint = TICKS_TO_MS(px->timeout.tunnel); |
| 3277 | return 1; |
| 3278 | } |
| 3279 | |
Nenad Merdanovic | b7e7c47 | 2017-03-12 21:56:55 +0100 | [diff] [blame] | 3280 | static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private) |
| 3281 | { |
| 3282 | |
| 3283 | struct proxy *px; |
| 3284 | |
| 3285 | if (!smp_make_safe(smp)) |
| 3286 | return 0; |
| 3287 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3288 | px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0); |
Nenad Merdanovic | b7e7c47 | 2017-03-12 21:56:55 +0100 | [diff] [blame] | 3289 | if (!px) |
| 3290 | return 0; |
| 3291 | |
| 3292 | smp->data.type = SMP_T_SINT; |
| 3293 | smp->data.u.sint = be_usable_srv(px); |
| 3294 | |
| 3295 | return 1; |
| 3296 | } |
| 3297 | |
Nenad Merdanovic | 177adc9 | 2019-08-27 01:58:13 +0200 | [diff] [blame] | 3298 | static int |
| 3299 | sample_conv_srv_queue(const struct arg *args, struct sample *smp, void *private) |
| 3300 | { |
| 3301 | struct proxy *px; |
| 3302 | struct server *srv; |
| 3303 | char *bksep; |
| 3304 | |
| 3305 | if (!smp_make_safe(smp)) |
| 3306 | return 0; |
| 3307 | |
| 3308 | bksep = strchr(smp->data.u.str.area, '/'); |
| 3309 | |
| 3310 | if (bksep) { |
| 3311 | *bksep = '\0'; |
| 3312 | px = proxy_find_by_name(smp->data.u.str.area, PR_CAP_BE, 0); |
| 3313 | if (!px) |
| 3314 | return 0; |
| 3315 | smp->data.u.str.area = bksep + 1; |
| 3316 | } else { |
| 3317 | if (!(smp->px->cap & PR_CAP_BE)) |
| 3318 | return 0; |
| 3319 | px = smp->px; |
| 3320 | } |
| 3321 | |
| 3322 | srv = server_find_by_name(px, smp->data.u.str.area); |
| 3323 | if (!srv) |
| 3324 | return 0; |
| 3325 | |
| 3326 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | a057045 | 2021-06-18 09:30:30 +0200 | [diff] [blame] | 3327 | smp->data.u.sint = srv->queue.length; |
Nenad Merdanovic | 177adc9 | 2019-08-27 01:58:13 +0200 | [diff] [blame] | 3328 | return 1; |
| 3329 | } |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 3330 | |
| 3331 | /* Note: must not be declared <const> as its list will be overwritten. |
| 3332 | * Please take care of keeping this list alphabetically sorted. |
| 3333 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 3334 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Amaury Denoyelle | d91d779 | 2020-12-10 13:43:56 +0100 | [diff] [blame] | 3335 | { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3336 | { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3337 | { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3338 | { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, }, |
| 3339 | { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, }, |
| 3340 | { "be_server_timeout", smp_fetch_be_server_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, }, |
| 3341 | { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3342 | { "be_tunnel_timeout", smp_fetch_be_tunnel_timeout, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, }, |
| 3343 | { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3344 | { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3345 | { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3346 | { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3347 | { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3348 | { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, }, |
| 3349 | { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, }, |
| 3350 | { "srv_name", smp_fetch_srv_name, 0, NULL, SMP_T_STR, SMP_USE_SERVR, }, |
| 3351 | { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3352 | { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3353 | { "srv_weight", smp_fetch_srv_weight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3354 | { "srv_iweight", smp_fetch_srv_iweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 3355 | { "srv_uweight", smp_fetch_srv_uweight, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 3356 | { /* END */ }, |
| 3357 | }}; |
| 3358 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3359 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
| 3360 | |
Nenad Merdanovic | b7e7c47 | 2017-03-12 21:56:55 +0100 | [diff] [blame] | 3361 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 3362 | static struct sample_conv_kw_list sample_conv_kws = {ILH, { |
Nenad Merdanovic | 177adc9 | 2019-08-27 01:58:13 +0200 | [diff] [blame] | 3363 | { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT }, |
| 3364 | { "srv_queue", sample_conv_srv_queue, 0, NULL, SMP_T_STR, SMP_T_SINT }, |
Nenad Merdanovic | b7e7c47 | 2017-03-12 21:56:55 +0100 | [diff] [blame] | 3365 | { /* END */ }, |
| 3366 | }}; |
| 3367 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3368 | INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws); |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 3369 | |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 3370 | /* Note: must not be declared <const> as its list will be overwritten. |
| 3371 | * Please take care of keeping this list alphabetically sorted. |
| 3372 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 3373 | static struct acl_kw_list acl_kws = {ILH, { |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 3374 | { /* END */ }, |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 3375 | }}; |
| 3376 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3377 | INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws); |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 3378 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3379 | /* |
| 3380 | * Local variables: |
| 3381 | * c-indent-level: 8 |
| 3382 | * c-basic-offset: 8 |
| 3383 | * End: |
| 3384 | */ |