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