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