Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Backend variables and functions. |
| 3 | * |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <errno.h> |
| 14 | #include <fcntl.h> |
| 15 | #include <stdio.h> |
| 16 | #include <stdlib.h> |
| 17 | #include <syslog.h> |
Willy Tarreau | f19cf37 | 2006-11-14 15:40:51 +0100 | [diff] [blame] | 18 | #include <string.h> |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 19 | #include <ctype.h> |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 20 | #include <sys/types.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 22 | #include <common/buffer.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 23 | #include <common/compat.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 24 | #include <common/config.h> |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 25 | #include <common/debug.h> |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 26 | #include <common/hash.h> |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 27 | #include <common/htx.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 28 | #include <common/initcall.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 29 | #include <common/ticks.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 30 | #include <common/time.h> |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 31 | #include <common/namespace.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 32 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | #include <types/global.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 34 | |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 35 | #include <proto/acl.h> |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 36 | #include <proto/arg.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 37 | #include <proto/backend.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 38 | #include <proto/channel.h> |
Willy Tarreau | 03fa5df | 2010-05-24 21:02:37 +0200 | [diff] [blame] | 39 | #include <proto/frontend.h> |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 40 | #include <proto/http_htx.h> |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 41 | #include <proto/lb_chash.h> |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 42 | #include <proto/lb_fas.h> |
Willy Tarreau | f89c187 | 2009-10-01 11:19:37 +0200 | [diff] [blame] | 43 | #include <proto/lb_fwlc.h> |
| 44 | #include <proto/lb_fwrr.h> |
| 45 | #include <proto/lb_map.h> |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 46 | #include <proto/log.h> |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 47 | #include <proto/mux_pt.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 48 | #include <proto/obj_type.h> |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 49 | #include <proto/payload.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 50 | #include <proto/protocol.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 51 | #include <proto/proto_http.h> |
Willy Tarreau | a8f55d5 | 2010-05-31 17:44:19 +0200 | [diff] [blame] | 52 | #include <proto/proto_tcp.h> |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 53 | #include <proto/proxy.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 54 | #include <proto/queue.h> |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 55 | #include <proto/sample.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 56 | #include <proto/server.h> |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 57 | #include <proto/session.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 58 | #include <proto/stream.h> |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 59 | #include <proto/stream_interface.h> |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 60 | #include <proto/ssl_sock.h> |
Willy Tarreau | c125cef | 2019-05-10 09:58:43 +0200 | [diff] [blame] | 61 | #include <proto/task.h> |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 62 | |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 63 | int be_lastsession(const struct proxy *be) |
| 64 | { |
| 65 | if (be->be_counters.last_sess) |
| 66 | return now.tv_sec - be->be_counters.last_sess; |
| 67 | |
| 68 | return -1; |
| 69 | } |
| 70 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 71 | /* helper function to invoke the correct hash method */ |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 72 | 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] | 73 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 74 | unsigned int hash; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 75 | |
| 76 | switch (px->lbprm.algo & BE_LB_HASH_FUNC) { |
| 77 | case BE_LB_HFCN_DJB2: |
| 78 | hash = hash_djb2(key, len); |
| 79 | break; |
Willy Tarreau | a0f4271 | 2013-11-14 14:30:35 +0100 | [diff] [blame] | 80 | case BE_LB_HFCN_WT6: |
| 81 | hash = hash_wt6(key, len); |
| 82 | break; |
Willy Tarreau | 324f07f | 2015-01-20 19:44:50 +0100 | [diff] [blame] | 83 | case BE_LB_HFCN_CRC32: |
| 84 | hash = hash_crc32(key, len); |
| 85 | break; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 86 | case BE_LB_HFCN_SDBM: |
| 87 | /* this is the default hash function */ |
| 88 | default: |
| 89 | hash = hash_sdbm(key, len); |
| 90 | break; |
| 91 | } |
| 92 | |
| 93 | return hash; |
| 94 | } |
| 95 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 96 | /* |
| 97 | * This function recounts the number of usable active and backup servers for |
| 98 | * 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] | 99 | * This function also recomputes the total active and backup weights. However, |
Willy Tarreau | f4cca45 | 2008-03-08 21:42:54 +0100 | [diff] [blame] | 100 | * 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] | 101 | * this. |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 102 | * This functions is designed to be called before server's weight and state |
| 103 | * commit so it uses 'next' weight and states values. |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 104 | * |
| 105 | * threads: this is the caller responsibility to lock data. For now, this |
| 106 | * function is called from lb modules, so it should be ok. But if you need to |
| 107 | * call it from another place, be careful (and update this comment). |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 108 | */ |
Willy Tarreau | c5d9c80 | 2009-10-01 09:17:05 +0200 | [diff] [blame] | 109 | void recount_servers(struct proxy *px) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 110 | { |
| 111 | struct server *srv; |
| 112 | |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 113 | px->srv_act = px->srv_bck = 0; |
| 114 | px->lbprm.tot_wact = px->lbprm.tot_wbck = 0; |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 115 | px->lbprm.fbck = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 116 | for (srv = px->srv; srv != NULL; srv = srv->next) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 117 | if (!srv_willbe_usable(srv)) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 118 | continue; |
| 119 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 120 | if (srv->flags & SRV_F_BACKUP) { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 121 | if (!px->srv_bck && |
Willy Tarreau | f4cca45 | 2008-03-08 21:42:54 +0100 | [diff] [blame] | 122 | !(px->options & PR_O_USE_ALL_BK)) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 123 | px->lbprm.fbck = srv; |
| 124 | px->srv_bck++; |
Andrew Rodland | 13d5ebb | 2016-10-25 12:49:45 -0400 | [diff] [blame] | 125 | srv->cumulative_weight = px->lbprm.tot_wbck; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 126 | px->lbprm.tot_wbck += srv->next_eweight; |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 127 | } else { |
| 128 | px->srv_act++; |
Andrew Rodland | 13d5ebb | 2016-10-25 12:49:45 -0400 | [diff] [blame] | 129 | srv->cumulative_weight = px->lbprm.tot_wact; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 130 | px->lbprm.tot_wact += srv->next_eweight; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 131 | } |
| 132 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 133 | } |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 134 | |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 135 | /* This function simply updates the backend's tot_weight and tot_used values |
| 136 | * after servers weights have been updated. It is designed to be used after |
| 137 | * recount_servers() or equivalent. |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 138 | * |
| 139 | * threads: this is the caller responsibility to lock data. For now, this |
| 140 | * function is called from lb modules, so it should be ok. But if you need to |
| 141 | * call it from another place, be careful (and update this comment). |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 142 | */ |
Willy Tarreau | c5d9c80 | 2009-10-01 09:17:05 +0200 | [diff] [blame] | 143 | void update_backend_weight(struct proxy *px) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 144 | { |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 145 | if (px->srv_act) { |
| 146 | px->lbprm.tot_weight = px->lbprm.tot_wact; |
| 147 | px->lbprm.tot_used = px->srv_act; |
| 148 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 149 | else if (px->lbprm.fbck) { |
| 150 | /* use only the first backup server */ |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 151 | px->lbprm.tot_weight = px->lbprm.fbck->next_eweight; |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 152 | px->lbprm.tot_used = 1; |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 153 | } |
| 154 | else { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 155 | px->lbprm.tot_weight = px->lbprm.tot_wbck; |
| 156 | px->lbprm.tot_used = px->srv_bck; |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 157 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 158 | } |
| 159 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 160 | /* |
| 161 | * This function tries to find a running server for the proxy <px> following |
| 162 | * the source hash method. Depending on the number of active/backup servers, |
| 163 | * it will either look for active servers, or for backup servers. |
| 164 | * If any server is found, it will be returned. If no valid server is found, |
| 165 | * NULL is returned. |
| 166 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 167 | 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] | 168 | { |
| 169 | unsigned int h, l; |
| 170 | |
| 171 | if (px->lbprm.tot_weight == 0) |
| 172 | return NULL; |
| 173 | |
| 174 | l = h = 0; |
| 175 | |
| 176 | /* note: we won't hash if there's only one server left */ |
| 177 | if (px->lbprm.tot_used == 1) |
| 178 | goto hash_done; |
| 179 | |
| 180 | while ((l + sizeof (int)) <= len) { |
| 181 | h ^= ntohl(*(unsigned int *)(&addr[l])); |
| 182 | l += sizeof (int); |
| 183 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 184 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 185 | h = full_hash(h); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 186 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 187 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 188 | return chash_get_server_hash(px, h, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 189 | else |
| 190 | return map_get_server_hash(px, h); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | /* |
| 194 | * This function tries to find a running server for the proxy <px> following |
| 195 | * the URI hash method. In order to optimize cache hits, the hash computation |
| 196 | * ends at the question mark. Depending on the number of active/backup servers, |
| 197 | * it will either look for active servers, or for backup servers. |
| 198 | * 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] | 199 | * NULL is returned. The lbprm.arg_opt{1,2,3} values correspond respectively to |
| 200 | * the "whole" optional argument (boolean), the "len" argument (numeric) and |
| 201 | * the "depth" argument (numeric). |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 202 | * |
| 203 | * This code was contributed by Guillaume Dallaire, who also selected this hash |
| 204 | * algorithm out of a tens because it gave him the best results. |
| 205 | * |
| 206 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 207 | 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] | 208 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 209 | unsigned int hash = 0; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 210 | int c; |
| 211 | int slashes = 0; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 212 | const char *start, *end; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 213 | |
| 214 | if (px->lbprm.tot_weight == 0) |
| 215 | return NULL; |
| 216 | |
| 217 | /* note: we won't hash if there's only one server left */ |
| 218 | if (px->lbprm.tot_used == 1) |
| 219 | goto hash_done; |
| 220 | |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 221 | if (px->lbprm.arg_opt2) // "len" |
| 222 | uri_len = MIN(uri_len, px->lbprm.arg_opt2); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 223 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 224 | start = end = uri; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 225 | while (uri_len--) { |
Willy Tarreau | fad4ffc | 2014-10-17 12:11:50 +0200 | [diff] [blame] | 226 | c = *end; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 227 | if (c == '/') { |
| 228 | slashes++; |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 229 | if (slashes == px->lbprm.arg_opt3) /* depth+1 */ |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 230 | break; |
| 231 | } |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 232 | else if (c == '?' && !px->lbprm.arg_opt1) // "whole" |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 233 | break; |
Willy Tarreau | fad4ffc | 2014-10-17 12:11:50 +0200 | [diff] [blame] | 234 | end++; |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 235 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 236 | |
| 237 | hash = gen_hash(px, start, (end - start)); |
| 238 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 239 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 240 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 241 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 242 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 243 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 244 | else |
| 245 | return map_get_server_hash(px, hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 246 | } |
| 247 | |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 248 | /* |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 249 | * This function tries to find a running server for the proxy <px> following |
| 250 | * the URL parameter hash method. It looks for a specific parameter in the |
| 251 | * URL and hashes it to compute the server ID. This is useful to optimize |
| 252 | * performance by avoiding bounces between servers in contexts where sessions |
| 253 | * are shared but cookies are not usable. If the parameter is not found, NULL |
| 254 | * is returned. If any server is found, it will be returned. If no valid server |
| 255 | * is found, NULL is returned. |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 256 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 257 | 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] | 258 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 259 | unsigned int hash = 0; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 260 | const char *start, *end; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 261 | const char *p; |
| 262 | const char *params; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 263 | int plen; |
| 264 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 265 | /* when tot_weight is 0 then so is srv_count */ |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 266 | if (px->lbprm.tot_weight == 0) |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 267 | return NULL; |
| 268 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 269 | if ((p = memchr(uri, '?', uri_len)) == NULL) |
| 270 | return NULL; |
| 271 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 272 | p++; |
| 273 | |
| 274 | uri_len -= (p - uri); |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 275 | plen = px->lbprm.arg_len; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 276 | params = p; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 277 | |
| 278 | while (uri_len > plen) { |
| 279 | /* Look for the parameter name followed by an equal symbol */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 280 | if (params[plen] == '=') { |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 281 | if (memcmp(params, px->lbprm.arg_str, plen) == 0) { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 282 | /* OK, we have the parameter here at <params>, and |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 283 | * the value after the equal sign, at <p> |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 284 | * skip the equal symbol |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 285 | */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 286 | p += plen + 1; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 287 | start = end = p; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 288 | uri_len -= plen + 1; |
| 289 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 290 | while (uri_len && *end != '&') { |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 291 | uri_len--; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 292 | end++; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 293 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 294 | hash = gen_hash(px, start, (end - start)); |
| 295 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 296 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 297 | hash = full_hash(hash); |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 298 | |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 299 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 300 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 301 | else |
| 302 | return map_get_server_hash(px, hash); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 303 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 304 | } |
| 305 | /* skip to next parameter */ |
| 306 | p = memchr(params, '&', uri_len); |
| 307 | if (!p) |
| 308 | return NULL; |
| 309 | p++; |
| 310 | uri_len -= (p - params); |
| 311 | params = p; |
| 312 | } |
| 313 | return NULL; |
| 314 | } |
| 315 | |
| 316 | /* |
| 317 | * this does the same as the previous server_ph, but check the body contents |
| 318 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 319 | 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] | 320 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 321 | unsigned int hash = 0; |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 322 | struct channel *req = &s->req; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 323 | struct proxy *px = s->be; |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 324 | unsigned int plen = px->lbprm.arg_len; |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 325 | unsigned long len; |
| 326 | const char *params, *p, *start, *end; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 327 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 328 | if (px->lbprm.tot_weight == 0) |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 329 | return NULL; |
| 330 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 331 | if (!IS_HTX_STRM(s)) { |
| 332 | struct http_txn *txn = s->txn; |
| 333 | struct http_msg *msg = &txn->req; |
Willy Tarreau | f69d4ff | 2015-05-02 00:05:47 +0200 | [diff] [blame] | 334 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 335 | len = http_body_bytes(msg); |
| 336 | p = params = c_ptr(req, -http_data_rewind(msg)); |
| 337 | |
| 338 | if (len == 0) |
| 339 | return NULL; |
| 340 | if (len > b_wrap(&req->buf) - p) |
| 341 | len = b_wrap(&req->buf) - p; |
| 342 | |
| 343 | } |
| 344 | else { |
| 345 | struct htx *htx = htxbuf(&req->buf); |
| 346 | struct htx_blk *blk; |
| 347 | |
| 348 | p = params = NULL; |
| 349 | len = 0; |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 350 | for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) { |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 351 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 352 | struct ist v; |
| 353 | |
| 354 | if (type != HTX_BLK_DATA) |
| 355 | continue; |
| 356 | v = htx_get_blk_value(htx, blk); |
| 357 | p = params = v.ptr; |
| 358 | len = v.len; |
| 359 | break; |
| 360 | } |
| 361 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 362 | |
| 363 | while (len > plen) { |
| 364 | /* Look for the parameter name followed by an equal symbol */ |
| 365 | if (params[plen] == '=') { |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 366 | if (memcmp(params, px->lbprm.arg_str, plen) == 0) { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 367 | /* OK, we have the parameter here at <params>, and |
| 368 | * the value after the equal sign, at <p> |
| 369 | * skip the equal symbol |
| 370 | */ |
| 371 | p += plen + 1; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 372 | start = end = p; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 373 | len -= plen + 1; |
| 374 | |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 375 | while (len && *end != '&') { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 376 | if (unlikely(!HTTP_IS_TOKEN(*p))) { |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 377 | /* 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] | 378 | * Do not interpret any possible binary data as a parameter. |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 379 | */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 380 | if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */ |
| 381 | break; |
| 382 | return NULL; /* oh, no; this is not uri-encoded. |
| 383 | * This body does not contain parameters. |
| 384 | */ |
| 385 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 386 | len--; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 387 | end++; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 388 | /* should we break if vlen exceeds limit? */ |
| 389 | } |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 390 | hash = gen_hash(px, start, (end - start)); |
| 391 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 392 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 393 | hash = full_hash(hash); |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 394 | |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 395 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 396 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 397 | else |
| 398 | return map_get_server_hash(px, hash); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 399 | } |
| 400 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 401 | /* skip to next parameter */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 402 | p = memchr(params, '&', len); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 403 | if (!p) |
| 404 | return NULL; |
| 405 | p++; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 406 | len -= (p - params); |
| 407 | params = p; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 408 | } |
| 409 | return NULL; |
| 410 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 411 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 412 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 413 | /* |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 414 | * This function tries to find a running server for the proxy <px> following |
| 415 | * the Header parameter hash method. It looks for a specific parameter in the |
| 416 | * URL and hashes it to compute the server ID. This is useful to optimize |
| 417 | * performance by avoiding bounces between servers in contexts where sessions |
| 418 | * are shared but cookies are not usable. If the parameter is not found, NULL |
| 419 | * 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] | 420 | * is found, NULL is returned. When lbprm.arg_opt1 is set, the hash will only |
| 421 | * apply to the middle part of a domain name ("use_domain_only" option). |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 422 | */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 423 | static struct server *get_server_hh(struct stream *s, const struct server *avoid) |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 424 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 425 | unsigned int hash = 0; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 426 | struct proxy *px = s->be; |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 427 | unsigned int plen = px->lbprm.arg_len; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 428 | unsigned long len; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 429 | const char *p; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 430 | const char *start, *end; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 431 | |
| 432 | /* tot_weight appears to mean srv_count */ |
| 433 | if (px->lbprm.tot_weight == 0) |
| 434 | return NULL; |
| 435 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 436 | /* note: we won't hash if there's only one server left */ |
| 437 | if (px->lbprm.tot_used == 1) |
| 438 | goto hash_done; |
| 439 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 440 | if (!IS_HTX_STRM(s)) { |
| 441 | struct http_txn *txn = s->txn; |
| 442 | struct hdr_ctx ctx = { .idx = 0 }; |
| 443 | |
| 444 | /* if the message is chunked, we skip the chunk size, but use the value as len */ |
| 445 | http_find_header2(px->lbprm.arg_str, plen, c_ptr(&s->req, -http_hdr_rewind(&txn->req)), |
| 446 | &txn->hdr_idx, &ctx); |
| 447 | |
| 448 | /* if the header is not found or empty, let's fallback to round robin */ |
| 449 | if (!ctx.idx || !ctx.vlen) |
| 450 | return NULL; |
| 451 | |
| 452 | /* Found the param_name in the headers. |
| 453 | * we will compute the hash based on this value ctx.val. |
| 454 | */ |
| 455 | len = ctx.vlen; |
| 456 | p = (char *)ctx.line + ctx.val; |
| 457 | } |
| 458 | else { |
| 459 | struct htx *htx = htxbuf(&s->req.buf); |
| 460 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 461 | |
| 462 | http_find_header(htx, ist2(px->lbprm.arg_str, plen), &ctx, 0); |
| 463 | |
| 464 | /* if the header is not found or empty, let's fallback to round robin */ |
| 465 | if (!ctx.blk || !ctx.value.len) |
| 466 | return NULL; |
| 467 | |
| 468 | /* Found a the param_name in the headers. |
| 469 | * we will compute the hash based on this value ctx.val. |
| 470 | */ |
| 471 | len = ctx.value.len; |
| 472 | p = ctx.value.ptr; |
| 473 | } |
| 474 | |
Willy Tarreau | 9fed858 | 2019-01-14 16:04:54 +0100 | [diff] [blame] | 475 | if (!px->lbprm.arg_opt1) { |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 476 | hash = gen_hash(px, p, len); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 477 | } else { |
| 478 | int dohash = 0; |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 479 | p += len; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 480 | /* special computation, use only main domain name, not tld/host |
| 481 | * going back from the end of string, start hashing at first |
| 482 | * dot stop at next. |
| 483 | * This is designed to work with the 'Host' header, and requires |
| 484 | * a special option to activate this. |
| 485 | */ |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 486 | end = p; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 487 | while (len) { |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 488 | if (dohash) { |
| 489 | /* Rewind the pointer until the previous char |
| 490 | * is a dot, this will allow to set the start |
| 491 | * position of the domain. */ |
| 492 | if (*(p - 1) == '.') |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 493 | break; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 494 | } |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 495 | else if (*p == '.') { |
| 496 | /* The pointer is rewinded to the dot before the |
| 497 | * tld, we memorize the end of the domain and |
| 498 | * can enter the domain processing. */ |
| 499 | end = p; |
| 500 | dohash = 1; |
| 501 | } |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 502 | p--; |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 503 | len--; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 504 | } |
Cyril Bonté | f607d81 | 2015-01-04 15:17:36 +0100 | [diff] [blame] | 505 | start = p; |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 506 | hash = gen_hash(px, start, (end - start)); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 507 | } |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 508 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 509 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 510 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 511 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 512 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 513 | else |
| 514 | return map_get_server_hash(px, hash); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 515 | } |
| 516 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 517 | /* RDP Cookie HASH. */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 518 | 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] | 519 | { |
Dan Dubovik | bd57a9f | 2014-07-08 08:51:03 -0700 | [diff] [blame] | 520 | unsigned int hash = 0; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 521 | struct proxy *px = s->be; |
| 522 | unsigned long len; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 523 | int ret; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 524 | struct sample smp; |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 525 | int rewind; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 526 | |
| 527 | /* tot_weight appears to mean srv_count */ |
| 528 | if (px->lbprm.tot_weight == 0) |
| 529 | return NULL; |
| 530 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 531 | memset(&smp, 0, sizeof(smp)); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 532 | |
Willy Tarreau | 6a445eb | 2018-06-19 07:04:45 +0200 | [diff] [blame] | 533 | rewind = co_data(&s->req); |
| 534 | c_rew(&s->req, rewind); |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 535 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 536 | 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] | 537 | len = smp.data.u.str.data; |
Willy Tarreau | 664092c | 2011-12-16 19:11:42 +0100 | [diff] [blame] | 538 | |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 539 | c_adv(&s->req, rewind); |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 540 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 541 | if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0) |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 542 | return NULL; |
| 543 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 544 | /* note: we won't hash if there's only one server left */ |
| 545 | if (px->lbprm.tot_used == 1) |
| 546 | goto hash_done; |
| 547 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 548 | /* Found the param_name in the headers. |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 549 | * we will compute the hash based on this value ctx.val. |
| 550 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 551 | hash = gen_hash(px, smp.data.u.str.area, len); |
Bhaskar | 98634f0 | 2013-10-29 23:30:51 -0400 | [diff] [blame] | 552 | |
Bhaskar Maddala | b6c0ac9 | 2013-11-05 11:54:02 -0500 | [diff] [blame] | 553 | if ((px->lbprm.algo & BE_LB_HASH_MOD) == BE_LB_HMOD_AVAL) |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 554 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 555 | hash_done: |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 556 | if ((px->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 557 | return chash_get_server_hash(px, hash, avoid); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 558 | else |
| 559 | return map_get_server_hash(px, hash); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 560 | } |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 561 | |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 562 | /* random value */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 563 | 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] | 564 | { |
| 565 | unsigned int hash = 0; |
| 566 | struct proxy *px = s->be; |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 567 | struct server *prev, *curr; |
| 568 | int draws = px->lbprm.arg_opt1; // number of draws |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 569 | |
| 570 | /* tot_weight appears to mean srv_count */ |
| 571 | if (px->lbprm.tot_weight == 0) |
| 572 | return NULL; |
| 573 | |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 574 | curr = NULL; |
| 575 | do { |
| 576 | prev = curr; |
| 577 | /* ensure all 32 bits are covered as long as RAND_MAX >= 65535 */ |
| 578 | hash = ((uint64_t)random() * ((uint64_t)RAND_MAX + 1)) ^ random(); |
| 579 | curr = chash_get_server_hash(px, hash, avoid); |
| 580 | if (!curr) |
| 581 | break; |
| 582 | |
| 583 | /* compare the new server to the previous best choice and pick |
| 584 | * the one with the least currently served requests. |
| 585 | */ |
| 586 | if (prev && prev != curr && |
| 587 | curr->served * prev->cur_eweight > prev->served * curr->cur_eweight) |
| 588 | curr = prev; |
| 589 | } while (--draws > 0); |
| 590 | |
| 591 | return curr; |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 592 | } |
| 593 | |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 594 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 595 | * This function applies the load-balancing algorithm to the stream, as |
| 596 | * 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] | 597 | * 'assigned'. |
| 598 | * |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 599 | * 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] | 600 | * 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] | 601 | * 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] | 602 | * The function tries to keep the original connection slot if it reconnects to |
| 603 | * the same server, otherwise it releases it and tries to offer it. |
| 604 | * |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 605 | * 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] | 606 | * |
| 607 | * It may return : |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 608 | * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned. |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 609 | * SRV_STATUS_NOSRV if no server is available. Stream is not ASSIGNED |
| 610 | * SRV_STATUS_FULL if all servers are saturated. Stream is not ASSIGNED |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 611 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 612 | * |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 613 | * 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] | 614 | * it does not need to be called anymore. This means that target_srv(&s->target) |
| 615 | * can be trusted in balance and direct modes. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 616 | * |
| 617 | */ |
| 618 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 619 | int assign_server(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 620 | { |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 621 | struct connection *conn = NULL; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 622 | struct server *conn_slot; |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 623 | struct server *srv = NULL, *prev_srv; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 624 | int err; |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 625 | |
Simon Horman | 8effd3d | 2011-08-13 08:03:52 +0900 | [diff] [blame] | 626 | DPRINTF(stderr,"assign_server : s=%p\n",s); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 627 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 628 | err = SRV_STATUS_INTERNAL; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 629 | if (unlikely(s->pend_pos || s->flags & SF_ASSIGNED)) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 630 | goto out_err; |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 631 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 632 | prev_srv = objt_server(s->target); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 633 | conn_slot = s->srv_conn; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 634 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 635 | /* We have to release any connection slot before applying any LB algo, |
| 636 | * otherwise we may erroneously end up with no available slot. |
| 637 | */ |
| 638 | if (conn_slot) |
| 639 | sess_change_server(s, NULL); |
| 640 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 641 | /* We will now try to find the good server and store it into <objt_server(s->target)>. |
| 642 | * 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] | 643 | * as well as if no server is available (check error code). |
| 644 | */ |
Willy Tarreau | 1a20a5d | 2007-11-01 21:08:19 +0100 | [diff] [blame] | 645 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 646 | srv = NULL; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 647 | s->target = NULL; |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 648 | |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 649 | if ((s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_HI && |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 650 | ((s->sess->flags & SESS_FL_PREFER_LAST) || |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 651 | (s->be->options & PR_O_PREF_LAST))) { |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 652 | struct sess_srv_list *srv_list; |
| 653 | list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) { |
| 654 | struct server *tmpsrv = objt_server(srv_list->target); |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 655 | |
| 656 | if (tmpsrv && tmpsrv->proxy == s->be && |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 657 | ((s->sess->flags & SESS_FL_PREFER_LAST) || |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 658 | (!s->be->max_ka_queue || |
| 659 | server_has_room(tmpsrv) || ( |
| 660 | tmpsrv->nbpend + 1 < s->be->max_ka_queue))) && |
| 661 | srv_currently_usable(tmpsrv)) { |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 662 | list_for_each_entry(conn, &srv_list->conn_list, session_list) { |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 663 | if (conn->flags & CO_FL_CONNECTED) { |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 664 | |
Olivier Houchard | ba4fff5 | 2018-12-01 14:40:40 +0100 | [diff] [blame] | 665 | srv = tmpsrv; |
| 666 | s->target = &srv->obj_type; |
| 667 | goto out_ok; |
| 668 | } |
| 669 | } |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 670 | } |
| 671 | } |
Willy Tarreau | 9420b12 | 2013-12-15 18:58:25 +0100 | [diff] [blame] | 672 | } |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 673 | if (s->be->lbprm.algo & BE_LB_KIND) { |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 674 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 675 | /* we must check if we have at least one server available */ |
| 676 | if (!s->be->lbprm.tot_weight) { |
| 677 | err = SRV_STATUS_NOSRV; |
| 678 | goto out; |
| 679 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 680 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 681 | /* First check whether we need to fetch some data or simply call |
| 682 | * the LB lookup function. Only the hashing functions will need |
| 683 | * some input data in fact, and will support multiple algorithms. |
| 684 | */ |
| 685 | switch (s->be->lbprm.algo & BE_LB_LKUP) { |
| 686 | case BE_LB_LKUP_RRTREE: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 687 | srv = fwrr_get_next_server(s->be, prev_srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 688 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 689 | |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 690 | case BE_LB_LKUP_FSTREE: |
| 691 | srv = fas_get_next_server(s->be, prev_srv); |
| 692 | break; |
| 693 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 694 | case BE_LB_LKUP_LCTREE: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 695 | srv = fwlc_get_next_server(s->be, prev_srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 696 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 697 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 698 | case BE_LB_LKUP_CHTREE: |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 699 | case BE_LB_LKUP_MAP: |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 700 | if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) { |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 701 | if ((s->be->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 702 | srv = get_server_rnd(s, prev_srv); |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 703 | else if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 704 | srv = chash_get_next_server(s->be, prev_srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 705 | else |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 706 | srv = map_get_server_rr(s->be, prev_srv); |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 707 | break; |
| 708 | } |
| 709 | 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] | 710 | /* unknown balancing algorithm */ |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 711 | err = SRV_STATUS_INTERNAL; |
| 712 | goto out; |
| 713 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 714 | |
| 715 | switch (s->be->lbprm.algo & BE_LB_PARM) { |
| 716 | case BE_LB_HASH_SRC: |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 717 | conn = objt_conn(strm_orig(s)); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 718 | if (conn && conn->addr.from.ss_family == AF_INET) { |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 719 | srv = get_server_sh(s->be, |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 720 | (void *)&((struct sockaddr_in *)&conn->addr.from)->sin_addr, |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 721 | 4, prev_srv); |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 722 | } |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 723 | else if (conn && conn->addr.from.ss_family == AF_INET6) { |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 724 | srv = get_server_sh(s->be, |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 725 | (void *)&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr, |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 726 | 16, prev_srv); |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 727 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 728 | else { |
| 729 | /* unknown IP family */ |
| 730 | err = SRV_STATUS_INTERNAL; |
| 731 | goto out; |
| 732 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 733 | break; |
| 734 | |
| 735 | case BE_LB_HASH_URI: |
| 736 | /* URI hashing */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 737 | if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | eaed5a1 | 2010-03-24 14:54:30 +0100 | [diff] [blame] | 738 | break; |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 739 | if (!IS_HTX_STRM(s)) |
| 740 | srv = get_server_uh(s->be, |
| 741 | c_ptr(&s->req, -http_uri_rewind(&s->txn->req)), |
| 742 | s->txn->req.sl.rq.u_l, prev_srv); |
| 743 | else { |
| 744 | struct ist uri; |
| 745 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 746 | uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf))); |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 747 | srv = get_server_uh(s->be, uri.ptr, uri.len, prev_srv); |
| 748 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 749 | break; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 750 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 751 | case BE_LB_HASH_PRM: |
| 752 | /* URL Parameter hashing */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 753 | if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | eaed5a1 | 2010-03-24 14:54:30 +0100 | [diff] [blame] | 754 | break; |
Willy Tarreau | 61a21a3 | 2011-03-01 20:35:49 +0100 | [diff] [blame] | 755 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 756 | if (!IS_HTX_STRM(s)) |
| 757 | srv = get_server_ph(s->be, |
| 758 | c_ptr(&s->req, -http_uri_rewind(&s->txn->req)), |
| 759 | s->txn->req.sl.rq.u_l, prev_srv); |
| 760 | else { |
| 761 | struct ist uri; |
| 762 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 763 | uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf))); |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 764 | srv = get_server_ph(s->be, uri.ptr, uri.len, prev_srv); |
| 765 | } |
Willy Tarreau | 61a21a3 | 2011-03-01 20:35:49 +0100 | [diff] [blame] | 766 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 767 | if (!srv && s->txn->meth == HTTP_METH_POST) |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 768 | srv = get_server_ph_post(s, prev_srv); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 769 | break; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 770 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 771 | case BE_LB_HASH_HDR: |
| 772 | /* Header Parameter hashing */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 773 | if (!s->txn || s->txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | eaed5a1 | 2010-03-24 14:54:30 +0100 | [diff] [blame] | 774 | break; |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 775 | srv = get_server_hh(s, prev_srv); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 776 | break; |
| 777 | |
| 778 | case BE_LB_HASH_RDP: |
| 779 | /* RDP Cookie hashing */ |
Willy Tarreau | 59884a6 | 2019-01-02 14:48:31 +0100 | [diff] [blame] | 780 | srv = get_server_rch(s, prev_srv); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 781 | break; |
| 782 | |
| 783 | default: |
| 784 | /* unknown balancing algorithm */ |
| 785 | err = SRV_STATUS_INTERNAL; |
| 786 | goto out; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 787 | } |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 788 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 789 | /* If the hashing parameter was not found, let's fall |
| 790 | * back to round robin on the map. |
| 791 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 792 | if (!srv) { |
Willy Tarreau | 6c30be5 | 2019-01-14 17:07:39 +0100 | [diff] [blame] | 793 | if ((s->be->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_CHTREE) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 794 | srv = chash_get_next_server(s->be, prev_srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 795 | else |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 796 | srv = map_get_server_rr(s->be, prev_srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 797 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 798 | |
| 799 | /* end of map-based LB */ |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 800 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 801 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 802 | default: |
| 803 | /* unknown balancing algorithm */ |
| 804 | err = SRV_STATUS_INTERNAL; |
| 805 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 806 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 807 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 808 | if (!srv) { |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 809 | err = SRV_STATUS_FULL; |
| 810 | goto out; |
| 811 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 812 | else if (srv != prev_srv) { |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 813 | _HA_ATOMIC_ADD(&s->be->be_counters.cum_lbconn, 1); |
| 814 | _HA_ATOMIC_ADD(&srv->counters.cum_lbconn, 1); |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 815 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 816 | s->target = &srv->obj_type; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 817 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 818 | else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 819 | s->target = &s->be->obj_type; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 820 | } |
Olivier Houchard | 2442f68 | 2018-12-01 17:03:38 +0100 | [diff] [blame] | 821 | else if ((s->be->options & PR_O_HTTP_PROXY)) { |
| 822 | conn = cs_conn(objt_cs(s->si[1].end)); |
| 823 | |
| 824 | if (conn && is_addr(&conn->addr.to)) { |
| 825 | /* in proxy mode, we need a valid destination address */ |
| 826 | s->target = &s->be->obj_type; |
| 827 | } else { |
| 828 | err = SRV_STATUS_NOSRV; |
| 829 | goto out; |
| 830 | } |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 831 | } |
| 832 | else { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 833 | err = SRV_STATUS_NOSRV; |
| 834 | goto out; |
| 835 | } |
| 836 | |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 837 | out_ok: |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 838 | s->flags |= SF_ASSIGNED; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 839 | err = SRV_STATUS_OK; |
| 840 | out: |
| 841 | |
| 842 | /* Either we take back our connection slot, or we offer it to someone |
| 843 | * else if we don't need it anymore. |
| 844 | */ |
| 845 | if (conn_slot) { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 846 | if (conn_slot == srv) { |
| 847 | sess_change_server(s, srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 848 | } else { |
| 849 | if (may_dequeue_tasks(conn_slot, s->be)) |
| 850 | process_srv_queue(conn_slot); |
| 851 | } |
| 852 | } |
| 853 | |
| 854 | out_err: |
| 855 | return err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 856 | } |
| 857 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 858 | /* |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 859 | * This function assigns a server address to a stream, and sets SF_ADDR_SET. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 860 | * The address is taken from the currently assigned server, or from the |
| 861 | * dispatch or transparent address. |
| 862 | * |
| 863 | * It may return : |
| 864 | * SRV_STATUS_OK if everything is OK. |
| 865 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 866 | * |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 867 | * Upon successful return, the stream flag SF_ADDR_SET is set. This flag is |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 868 | * not cleared, so it's to the caller to clear it if required. |
| 869 | * |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 870 | * The caller is responsible for having already assigned a connection |
| 871 | * to si->end. |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 872 | * |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 873 | */ |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 874 | int assign_server_address(struct stream *s, struct connection *srv_conn) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 875 | { |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 876 | struct connection *cli_conn = objt_conn(strm_orig(s)); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 877 | |
Christopher Faulet | 56803b1 | 2017-11-24 16:06:18 +0100 | [diff] [blame] | 878 | DPRINTF(stderr,"assign_server_address : s=%p\n",s); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 879 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 880 | if ((s->flags & SF_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 881 | /* A server is necessarily known for this stream */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 882 | if (!(s->flags & SF_ASSIGNED)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 883 | return SRV_STATUS_INTERNAL; |
| 884 | |
Willy Tarreau | 1e582e5 | 2018-09-20 11:29:28 +0200 | [diff] [blame] | 885 | srv_conn->addr.to = __objt_server(s->target)->addr; |
| 886 | set_host_port(&srv_conn->addr.to, __objt_server(s->target)->svc_port); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 887 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 888 | if (!is_addr(&srv_conn->addr.to) && cli_conn) { |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 889 | /* if the server has no address, we use the same address |
| 890 | * the client asked, which is handy for remapping ports |
Willy Tarreau | 9cf8d3f | 2014-05-09 22:56:10 +0200 | [diff] [blame] | 891 | * locally on multiple addresses at once. Nothing is done |
| 892 | * for AF_UNIX addresses. |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 893 | */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 894 | conn_get_to_addr(cli_conn); |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 895 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 896 | if (cli_conn->addr.to.ss_family == AF_INET) { |
| 897 | ((struct sockaddr_in *)&srv_conn->addr.to)->sin_addr = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr; |
| 898 | } else if (cli_conn->addr.to.ss_family == AF_INET6) { |
| 899 | ((struct sockaddr_in6 *)&srv_conn->addr.to)->sin6_addr = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr; |
Emeric Brun | ec810d1 | 2010-10-22 16:36:33 +0200 | [diff] [blame] | 900 | } |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 901 | } |
| 902 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 903 | /* if this server remaps proxied ports, we'll use |
| 904 | * the port the client connected to with an offset. */ |
Willy Tarreau | 1e582e5 | 2018-09-20 11:29:28 +0200 | [diff] [blame] | 905 | if ((__objt_server(s->target)->flags & SRV_F_MAPPORTS) && cli_conn) { |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 906 | int base_port; |
| 907 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 908 | conn_get_to_addr(cli_conn); |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 909 | |
| 910 | /* First, retrieve the port from the incoming connection */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 911 | base_port = get_host_port(&cli_conn->addr.to); |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 912 | |
| 913 | /* Second, assign the outgoing connection's port */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 914 | base_port += get_host_port(&srv_conn->addr.to); |
| 915 | set_host_port(&srv_conn->addr.to, base_port); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 916 | } |
| 917 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 918 | else if (s->be->options & PR_O_DISPATCH) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 919 | /* connect to the defined dispatch addr */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 920 | srv_conn->addr.to = s->be->dispatch_addr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 921 | } |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 922 | else if ((s->be->options & PR_O_TRANSP) && cli_conn) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 923 | /* in transparent mode, use the original dest addr if no dispatch specified */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 924 | conn_get_to_addr(cli_conn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 925 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 926 | if (cli_conn->addr.to.ss_family == AF_INET || cli_conn->addr.to.ss_family == AF_INET6) |
| 927 | srv_conn->addr.to = cli_conn->addr.to; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 928 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 929 | else if (s->be->options & PR_O_HTTP_PROXY) { |
| 930 | /* If HTTP PROXY option is set, then server is already assigned |
| 931 | * during incoming client request parsing. */ |
| 932 | } |
Willy Tarreau | 1a1158b | 2007-01-20 11:07:46 +0100 | [diff] [blame] | 933 | else { |
| 934 | /* no server and no LB algorithm ! */ |
| 935 | return SRV_STATUS_INTERNAL; |
| 936 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 937 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 938 | /* Copy network namespace from client connection */ |
Thierry FOURNIER | fe1ebcd | 2014-12-19 13:37:11 +0100 | [diff] [blame] | 939 | srv_conn->proxy_netns = cli_conn ? cli_conn->proxy_netns : NULL; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 940 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 941 | s->flags |= SF_ADDR_SET; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 942 | return SRV_STATUS_OK; |
| 943 | } |
| 944 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 945 | /* 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] | 946 | * 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] | 947 | * 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] | 948 | * 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] | 949 | * be called before any connection and after any retry or redispatch occurs. |
| 950 | * |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 951 | * 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] | 952 | * |
| 953 | * Returns : |
| 954 | * |
| 955 | * SRV_STATUS_OK if everything is OK. |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 956 | * 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] | 957 | * SRV_STATUS_QUEUED if the connection has been queued. |
| 958 | * SRV_STATUS_FULL if the server(s) is/are saturated and the |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 959 | * connection could not be queued at the server's, |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 960 | * which may be NULL if we queue on the backend. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 961 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 962 | * |
| 963 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 964 | int assign_server_and_queue(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 965 | { |
| 966 | struct pendconn *p; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 967 | struct server *srv; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 968 | int err; |
| 969 | |
| 970 | if (s->pend_pos) |
| 971 | return SRV_STATUS_INTERNAL; |
| 972 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 973 | err = SRV_STATUS_OK; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 974 | if (!(s->flags & SF_ASSIGNED)) { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 975 | struct server *prev_srv = objt_server(s->target); |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 976 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 977 | err = assign_server(s); |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 978 | if (prev_srv) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 979 | /* This stream was previously assigned to a server. We have to |
| 980 | * update the stream's and the server's stats : |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 981 | * - if the server changed : |
| 982 | * - set TX_CK_DOWN if txn.flags was TX_CK_VALID |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 983 | * - set SF_REDISP if it was successfully redispatched |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 984 | * - increment srv->redispatches and be->redispatches |
| 985 | * - if the server remained the same : update retries. |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 986 | */ |
| 987 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 988 | if (prev_srv != objt_server(s->target)) { |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 989 | if (s->txn && (s->txn->flags & TX_CK_MASK) == TX_CK_VALID) { |
| 990 | s->txn->flags &= ~TX_CK_MASK; |
| 991 | s->txn->flags |= TX_CK_DOWN; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 992 | } |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 993 | s->flags |= SF_REDISP; |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 994 | _HA_ATOMIC_ADD(&prev_srv->counters.redispatches, 1); |
| 995 | _HA_ATOMIC_ADD(&s->be->be_counters.redispatches, 1); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 996 | } else { |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 997 | _HA_ATOMIC_ADD(&prev_srv->counters.retries, 1); |
| 998 | _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1); |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 999 | } |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 1000 | } |
| 1001 | } |
| 1002 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1003 | switch (err) { |
| 1004 | case SRV_STATUS_OK: |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1005 | /* we have SF_ASSIGNED set */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1006 | srv = objt_server(s->target); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1007 | if (!srv) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1008 | return SRV_STATUS_OK; /* dispatch or proxy mode */ |
| 1009 | |
| 1010 | /* 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] | 1011 | if (s->srv_conn == srv) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1012 | return SRV_STATUS_OK; |
| 1013 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1014 | /* OK, this stream already has an assigned server, but no |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1015 | * connection slot yet. Either it is a redispatch, or it was |
| 1016 | * assigned from persistence information (direct mode). |
| 1017 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1018 | if ((s->flags & SF_REDIRECTABLE) && srv->rdr_len) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1019 | /* server scheduled for redirection, and already assigned. We |
| 1020 | * don't want to go further nor check the queue. |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 1021 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1022 | sess_change_server(s, srv); /* not really needed in fact */ |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 1023 | return SRV_STATUS_OK; |
| 1024 | } |
| 1025 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1026 | /* 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] | 1027 | * We know we have to queue it into the server's queue, so if a maxqueue |
| 1028 | * is set on the server, we must also check that the server's queue is |
| 1029 | * not full, in which case we have to return FULL. |
| 1030 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1031 | if (srv->maxconn && |
| 1032 | (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1033 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1034 | if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1035 | return SRV_STATUS_FULL; |
| 1036 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1037 | p = pendconn_add(s); |
| 1038 | if (p) |
| 1039 | return SRV_STATUS_QUEUED; |
| 1040 | else |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1041 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1042 | } |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1043 | |
| 1044 | /* OK, we can use this server. Let's reserve our place */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1045 | sess_change_server(s, srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1046 | return SRV_STATUS_OK; |
| 1047 | |
| 1048 | case SRV_STATUS_FULL: |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1049 | /* queue this stream into the proxy's queue */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1050 | p = pendconn_add(s); |
| 1051 | if (p) |
| 1052 | return SRV_STATUS_QUEUED; |
| 1053 | else |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1054 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1055 | |
| 1056 | case SRV_STATUS_NOSRV: |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1057 | return err; |
| 1058 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1059 | case SRV_STATUS_INTERNAL: |
| 1060 | return err; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1061 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1062 | default: |
| 1063 | return SRV_STATUS_INTERNAL; |
| 1064 | } |
Willy Tarreau | 5b6995c | 2008-01-13 16:31:17 +0100 | [diff] [blame] | 1065 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1066 | |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1067 | /* If an explicit source binding is specified on the server and/or backend, and |
| 1068 | * this source makes use of the transparent proxy, then it is extracted now and |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1069 | * assigned to the stream's pending connection. This function assumes that an |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1070 | * outgoing connection has already been assigned to s->si[1].end. |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1071 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1072 | static void assign_tproxy_address(struct stream *s) |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1073 | { |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 1074 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1075 | struct server *srv = objt_server(s->target); |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1076 | struct conn_src *src; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1077 | struct connection *cli_conn; |
Olivier Houchard | 09a0f03 | 2019-01-17 15:59:13 +0100 | [diff] [blame] | 1078 | struct connection *srv_conn; |
| 1079 | |
| 1080 | if (objt_cs(s->si[1].end)) |
| 1081 | srv_conn = cs_conn(__objt_cs(s->si[1].end)); |
| 1082 | else |
| 1083 | srv_conn = objt_conn(s->si[1].end); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1084 | |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1085 | if (srv && srv->conn_src.opts & CO_SRC_BIND) |
| 1086 | src = &srv->conn_src; |
| 1087 | else if (s->be->conn_src.opts & CO_SRC_BIND) |
| 1088 | src = &s->be->conn_src; |
| 1089 | else |
| 1090 | return; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 1091 | |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1092 | switch (src->opts & CO_SRC_TPROXY_MASK) { |
| 1093 | case CO_SRC_TPROXY_ADDR: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1094 | srv_conn->addr.from = src->tproxy_addr; |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1095 | break; |
| 1096 | case CO_SRC_TPROXY_CLI: |
| 1097 | case CO_SRC_TPROXY_CIP: |
| 1098 | /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 1099 | cli_conn = objt_conn(strm_orig(s)); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1100 | if (cli_conn) |
| 1101 | srv_conn->addr.from = cli_conn->addr.from; |
| 1102 | else |
| 1103 | memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from)); |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1104 | break; |
| 1105 | case CO_SRC_TPROXY_DYN: |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1106 | if (src->bind_hdr_occ && s->txn) { |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1107 | char *vptr; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1108 | size_t vlen; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 1109 | |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1110 | /* bind to the IP in a header */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1111 | ((struct sockaddr_in *)&srv_conn->addr.from)->sin_family = AF_INET; |
| 1112 | ((struct sockaddr_in *)&srv_conn->addr.from)->sin_port = 0; |
| 1113 | ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = 0; |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 1114 | if (!IS_HTX_STRM(s)) { |
| 1115 | int rewind; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 1116 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 1117 | c_rew(&s->req, rewind = http_hdr_rewind(&s->txn->req)); |
| 1118 | if (http_get_hdr(&s->txn->req, src->bind_hdr_name, src->bind_hdr_len, |
| 1119 | &s->txn->hdr_idx, src->bind_hdr_occ, NULL, &vptr, &vlen)) { |
| 1120 | ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = |
| 1121 | htonl(inetaddr_host_lim(vptr, vptr + vlen)); |
| 1122 | } |
| 1123 | c_adv(&s->req, rewind); |
| 1124 | } |
| 1125 | else { |
| 1126 | if (http_get_htx_hdr(htxbuf(&s->req.buf), |
| 1127 | ist2(src->bind_hdr_name, src->bind_hdr_len), |
| 1128 | src->bind_hdr_occ, NULL, &vptr, &vlen)) { |
| 1129 | ((struct sockaddr_in *)&srv_conn->addr.from)->sin_addr.s_addr = |
| 1130 | htonl(inetaddr_host_lim(vptr, vptr + vlen)); |
| 1131 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 1132 | } |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1133 | } |
Willy Tarreau | 9cd7d6c | 2012-12-08 23:13:33 +0100 | [diff] [blame] | 1134 | break; |
| 1135 | default: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1136 | memset(&srv_conn->addr.from, 0, sizeof(srv_conn->addr.from)); |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1137 | } |
| 1138 | #endif |
| 1139 | } |
| 1140 | |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 1141 | #if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation) |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1142 | /* |
| 1143 | * Pick the right mux once the connection is established, we should now have |
Willy Tarreau | 94031d3 | 2018-12-19 14:36:29 +0100 | [diff] [blame] | 1144 | * an alpn if available, so we are now able to choose. In this specific case |
| 1145 | * the connection's context is &si[i].end. |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1146 | */ |
| 1147 | static int conn_complete_server(struct connection *conn) |
| 1148 | { |
| 1149 | struct conn_stream *cs = NULL; |
Willy Tarreau | 94031d3 | 2018-12-19 14:36:29 +0100 | [diff] [blame] | 1150 | struct stream *s = container_of(conn->ctx, struct stream, si[1].end); |
Olivier Houchard | bf024f0 | 2018-11-29 17:08:53 +0100 | [diff] [blame] | 1151 | struct server *srv; |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1152 | |
Olivier Houchard | 70d9b2f | 2018-11-29 16:57:32 +0100 | [diff] [blame] | 1153 | task_wakeup(s->task, TASK_WOKEN_IO); |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1154 | conn_clear_xprt_done_cb(conn); |
| 1155 | /* Verify if the connection just established. */ |
| 1156 | if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) |
| 1157 | conn->flags |= CO_FL_CONNECTED; |
| 1158 | |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1159 | if (conn->flags & CO_FL_ERROR) |
| 1160 | goto fail; |
Olivier Houchard | d76bd2d | 2018-11-29 16:58:49 +0100 | [diff] [blame] | 1161 | si_detach_endpoint(&s->si[1]); |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1162 | cs = si_alloc_cs(&s->si[1], conn); |
| 1163 | if (!cs) |
| 1164 | goto fail; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 1165 | if (conn_install_mux_be(conn, cs, s->sess) < 0) |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1166 | goto fail; |
Olivier Houchard | bf024f0 | 2018-11-29 17:08:53 +0100 | [diff] [blame] | 1167 | srv = objt_server(s->target); |
Olivier Houchard | 7aec9ed | 2018-12-14 19:31:51 +0100 | [diff] [blame] | 1168 | if (srv && ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) && |
Olivier Houchard | bf024f0 | 2018-11-29 17:08:53 +0100 | [diff] [blame] | 1169 | conn->mux->avail_streams(conn) > 0) |
| 1170 | LIST_ADD(&srv->idle_conns[tid], &conn->list); |
| 1171 | |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1172 | return 0; |
| 1173 | |
| 1174 | fail: |
Willy Tarreau | d822013 | 2019-01-28 16:33:35 +0100 | [diff] [blame] | 1175 | si_detach_endpoint(&s->si[1]); |
| 1176 | |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1177 | if (cs) |
| 1178 | cs_free(cs); |
| 1179 | /* kill the connection now */ |
| 1180 | conn_stop_tracking(conn); |
| 1181 | conn_full_close(conn); |
| 1182 | conn_free(conn); |
Olivier Houchard | 4f41751 | 2018-12-27 18:59:46 +0100 | [diff] [blame] | 1183 | /* Let process_stream know it went wrong */ |
| 1184 | s->si[1].flags |= SI_FL_ERR; |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1185 | return -1; |
| 1186 | } |
Olivier Houchard | c6e0bb4 | 2018-11-23 14:24:10 +0100 | [diff] [blame] | 1187 | #endif |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1188 | |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1189 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1190 | /* |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1191 | * This function initiates a connection to the server assigned to this stream |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1192 | * (s->target, s->si[1].addr.to). It will assign a server if none |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 1193 | * is assigned yet. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1194 | * It can return one of : |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1195 | * - SF_ERR_NONE if everything's OK |
| 1196 | * - SF_ERR_SRVTO if there are no more servers |
| 1197 | * - SF_ERR_SRVCL if the connection was refused by the server |
| 1198 | * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn) |
| 1199 | * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...) |
| 1200 | * - SF_ERR_INTERNAL for any other purely internal errors |
Tim Düsterhus | 4896c44 | 2016-11-29 02:15:19 +0100 | [diff] [blame] | 1201 | * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted. |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1202 | * The server-facing stream interface is expected to hold a pre-allocated connection |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1203 | * in s->si[1].conn. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1204 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1205 | int connect_server(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1206 | { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1207 | struct connection *cli_conn = NULL; |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 1208 | struct connection *srv_conn = NULL; |
| 1209 | struct connection *old_conn = NULL; |
Olivier Houchard | 2442f68 | 2018-12-01 17:03:38 +0100 | [diff] [blame] | 1210 | struct conn_stream *srv_cs = NULL; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1211 | struct server *srv; |
Willy Tarreau | 34601a8 | 2013-12-15 16:33:46 +0100 | [diff] [blame] | 1212 | int reuse = 0; |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 1213 | int reuse_orphan = 0; |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1214 | int init_mux = 0; |
Olivier Houchard | 4dc8553 | 2019-01-29 15:50:38 +0100 | [diff] [blame] | 1215 | int alloced_cs = 0; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 1216 | int err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1217 | |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1218 | |
Olivier Houchard | 0fa989f | 2018-12-05 17:08:55 +0100 | [diff] [blame] | 1219 | /* Some, such as http_proxy and the LUA, create their connection and |
| 1220 | * conn_stream manually, so if we already have a conn_stream, try |
| 1221 | * to use it. |
| 1222 | */ |
| 1223 | srv_cs = objt_cs(s->si[1].end); |
Olivier Houchard | 9ef5155 | 2019-01-28 15:33:15 +0100 | [diff] [blame] | 1224 | if (!srv_cs) |
| 1225 | srv_conn = objt_conn(s->si[1].end); |
| 1226 | else |
| 1227 | srv_conn = cs_conn(srv_cs); |
| 1228 | |
| 1229 | if (srv_conn) { |
| 1230 | if (!srv_conn->target || srv_conn->target == s->target) { |
| 1231 | srv_conn->flags &= ~(CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH); |
| 1232 | if (srv_cs) |
Willy Tarreau | 7bb39d7 | 2019-06-03 14:23:33 +0200 | [diff] [blame] | 1233 | srv_cs->flags &= ~(CS_FL_ERROR | CS_FL_EOS); |
Olivier Houchard | 0fa989f | 2018-12-05 17:08:55 +0100 | [diff] [blame] | 1234 | reuse = 1; |
Olivier Houchard | 9ef5155 | 2019-01-28 15:33:15 +0100 | [diff] [blame] | 1235 | old_conn = srv_conn; |
| 1236 | } else { |
| 1237 | srv_conn = NULL; |
Olivier Houchard | a9da467 | 2019-07-08 16:30:32 +0200 | [diff] [blame] | 1238 | srv_cs = NULL; |
Olivier Houchard | 9ef5155 | 2019-01-28 15:33:15 +0100 | [diff] [blame] | 1239 | si_release_endpoint(&s->si[1]); |
Olivier Houchard | ac1ce6f | 2018-12-08 19:08:48 +0100 | [diff] [blame] | 1240 | } |
Olivier Houchard | 9ef5155 | 2019-01-28 15:33:15 +0100 | [diff] [blame] | 1241 | } |
| 1242 | |
| 1243 | if (!old_conn) { |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1244 | struct sess_srv_list *srv_list; |
| 1245 | list_for_each_entry(srv_list, &s->sess->srv_list, srv_list) { |
| 1246 | if (srv_list->target == s->target) { |
| 1247 | list_for_each_entry(srv_conn, &srv_list->conn_list, |
Olivier Houchard | 2442f68 | 2018-12-01 17:03:38 +0100 | [diff] [blame] | 1248 | session_list) { |
| 1249 | if (conn_xprt_ready(srv_conn) && |
| 1250 | srv_conn->mux && (srv_conn->mux->avail_streams(srv_conn) > 0)) { |
| 1251 | reuse = 1; |
| 1252 | break; |
| 1253 | } |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 1254 | } |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1255 | break; |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 1256 | } |
| 1257 | } |
Olivier Houchard | c3fa638 | 2018-12-27 15:29:53 +0100 | [diff] [blame] | 1258 | if (reuse == 0) { |
| 1259 | srv_conn = NULL; |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1260 | if (!LIST_ISEMPTY(&s->sess->srv_list)) { |
| 1261 | srv_list = LIST_ELEM(s->sess->srv_list.n, |
| 1262 | struct sess_srv_list *, srv_list); |
| 1263 | if (!LIST_ISEMPTY(&srv_list->conn_list)) |
| 1264 | srv_conn = LIST_ELEM(srv_list->conn_list.n, |
| 1265 | struct connection *, session_list); |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 1266 | } |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1267 | |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 1268 | } |
| 1269 | } |
| 1270 | old_conn = srv_conn; |
| 1271 | |
Willy Tarreau | 7b00492 | 2015-08-04 19:34:21 +0200 | [diff] [blame] | 1272 | srv = objt_server(s->target); |
Willy Tarreau | 34601a8 | 2013-12-15 16:33:46 +0100 | [diff] [blame] | 1273 | |
Willy Tarreau | 8dff998 | 2015-08-04 20:45:52 +0200 | [diff] [blame] | 1274 | if (srv && !reuse) { |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1275 | srv_conn = NULL; |
Willy Tarreau | 8dff998 | 2015-08-04 20:45:52 +0200 | [diff] [blame] | 1276 | |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1277 | /* Below we pick connections from the safe or idle lists based |
| 1278 | * on the strategy, the fact that this is a first or second |
| 1279 | * (retryable) request, with the indicated priority (1 or 2) : |
| 1280 | * |
| 1281 | * SAFE AGGR ALWS |
| 1282 | * |
| 1283 | * +-----+-----+ +-----+-----+ +-----+-----+ |
| 1284 | * req| 1st | 2nd | req| 1st | 2nd | req| 1st | 2nd | |
| 1285 | * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+ |
| 1286 | * safe| - | 2 | safe| 1 | 2 | safe| 1 | 2 | |
| 1287 | * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+ |
| 1288 | * idle| - | 1 | idle| - | 1 | idle| 2 | 1 | |
| 1289 | * ----+-----+-----+ ----+-----+-----+ ----+-----+-----+ |
| 1290 | */ |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 1291 | if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) && |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1292 | ((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR && |
| 1293 | s->txn && (s->txn->flags & TX_NOT_FIRST))) { |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 1294 | srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list); |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1295 | } |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 1296 | else if (srv->safe_conns && !LIST_ISEMPTY(&srv->safe_conns[tid]) && |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1297 | ((s->txn && (s->txn->flags & TX_NOT_FIRST)) || |
| 1298 | (s->be->options & PR_O_REUSE_MASK) >= PR_O_REUSE_AGGR)) { |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 1299 | srv_conn = LIST_ELEM(srv->safe_conns[tid].n, struct connection *, list); |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1300 | } |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 1301 | else if (srv->idle_conns && !LIST_ISEMPTY(&srv->idle_conns[tid]) && |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1302 | (s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) { |
Christopher Faulet | 40a007c | 2017-07-03 15:41:01 +0200 | [diff] [blame] | 1303 | srv_conn = LIST_ELEM(srv->idle_conns[tid].n, struct connection *, list); |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 1304 | } else if (srv->idle_orphan_conns && !LIST_ISEMPTY(&srv->idle_orphan_conns[tid]) && |
| 1305 | (((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) || |
| 1306 | (((s->be->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) && |
| 1307 | s->txn && (s->txn->flags & TX_NOT_FIRST)))) { |
Olivier Houchard | 7f1bc31 | 2019-01-22 16:11:03 +0100 | [diff] [blame] | 1308 | srv_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[tid], |
Willy Tarreau | c912f94 | 2019-02-28 16:06:56 +0100 | [diff] [blame] | 1309 | struct connection *, list); |
| 1310 | if (srv_conn) |
Olivier Houchard | 7f1bc31 | 2019-01-22 16:11:03 +0100 | [diff] [blame] | 1311 | reuse_orphan = 1; |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1312 | } |
Willy Tarreau | 8dff998 | 2015-08-04 20:45:52 +0200 | [diff] [blame] | 1313 | |
Willy Tarreau | 449d74a | 2015-08-05 17:16:33 +0200 | [diff] [blame] | 1314 | /* If we've picked a connection from the pool, we now have to |
| 1315 | * detach it. We may have to get rid of the previous idle |
| 1316 | * connection we had, so for this we try to swap it with the |
| 1317 | * other owner's. That way it may remain alive for others to |
| 1318 | * pick. |
| 1319 | */ |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1320 | if (srv_conn) |
Willy Tarreau | 8dff998 | 2015-08-04 20:45:52 +0200 | [diff] [blame] | 1321 | reuse = 1; |
Willy Tarreau | 8dff998 | 2015-08-04 20:45:52 +0200 | [diff] [blame] | 1322 | } |
| 1323 | |
Willy Tarreau | 34601a8 | 2013-12-15 16:33:46 +0100 | [diff] [blame] | 1324 | if (reuse) { |
| 1325 | /* Disable connection reuse if a dynamic source is used. |
| 1326 | * As long as we don't share connections between servers, |
| 1327 | * we don't need to disable connection reuse on no-idempotent |
| 1328 | * requests nor when PROXY protocol is used. |
| 1329 | */ |
Willy Tarreau | 34601a8 | 2013-12-15 16:33:46 +0100 | [diff] [blame] | 1330 | if (srv && srv->conn_src.opts & CO_SRC_BIND) { |
| 1331 | if ((srv->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN) |
| 1332 | reuse = 0; |
| 1333 | } |
| 1334 | else if (s->be->conn_src.opts & CO_SRC_BIND) { |
| 1335 | if ((s->be->conn_src.opts & CO_SRC_TPROXY_MASK) == CO_SRC_TPROXY_DYN) |
| 1336 | reuse = 0; |
| 1337 | } |
| 1338 | } |
Olivier Houchard | 14fcc2e | 2019-06-05 13:55:01 +0200 | [diff] [blame] | 1339 | if (((!reuse || (srv_conn && !(srv_conn->flags & CO_FL_CONNECTED))) |
Christopher Faulet | 88e4765 | 2019-09-13 10:01:36 +0200 | [diff] [blame] | 1340 | && ha_used_fds > global.tune.pool_high_count) && srv && srv->idle_orphan_conns) { |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1341 | struct connection *tokill_conn; |
| 1342 | |
| 1343 | /* We can't reuse a connection, and e have more FDs than deemd |
| 1344 | * acceptable, attempt to kill an idling connection |
| 1345 | */ |
| 1346 | /* First, try from our own idle list */ |
| 1347 | tokill_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[tid], |
| 1348 | struct connection *, list); |
| 1349 | if (tokill_conn) |
| 1350 | tokill_conn->mux->destroy(tokill_conn->ctx); |
| 1351 | /* If not, iterate over other thread's idling pool, and try to grab one */ |
| 1352 | else { |
| 1353 | int i; |
| 1354 | |
| 1355 | for (i = 0; i < global.nbthread; i++) { |
| 1356 | if (i == tid) |
| 1357 | continue; |
Willy Tarreau | 08e2b41 | 2019-05-26 11:50:08 +0200 | [diff] [blame] | 1358 | |
| 1359 | // just silence stupid gcc which reports an absurd |
| 1360 | // out-of-bounds warning for <i> which is always |
| 1361 | // exactly zero without threads, but it seems to |
| 1362 | // see it possibly larger. |
| 1363 | ALREADY_CHECKED(i); |
| 1364 | |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 1365 | tokill_conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[i], |
| 1366 | struct connection *, list); |
| 1367 | if (tokill_conn) { |
| 1368 | /* We got one, put it into the concerned thread's to kill list, and wake it's kill task */ |
| 1369 | |
| 1370 | LIST_ADDQ_LOCKED(&toremove_connections[i], |
| 1371 | &tokill_conn->list); |
| 1372 | task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER); |
| 1373 | break; |
| 1374 | } |
| 1375 | } |
| 1376 | } |
| 1377 | |
| 1378 | } |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 1379 | /* If we're really reusing the connection, remove it from the orphan |
| 1380 | * list and add it back to the idle list. |
| 1381 | */ |
Christopher Faulet | 46451d6 | 2019-04-19 15:39:22 +0200 | [diff] [blame] | 1382 | if (reuse) { |
| 1383 | if (reuse_orphan) { |
| 1384 | srv_conn->idle_time = 0; |
| 1385 | _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1); |
| 1386 | __ha_barrier_atomic_store(); |
| 1387 | srv->curr_idle_thr[tid]--; |
| 1388 | LIST_ADDQ(&srv->idle_conns[tid], &srv_conn->list); |
| 1389 | } |
| 1390 | else { |
| 1391 | if (srv_conn->flags & CO_FL_SESS_IDLE) { |
| 1392 | struct session *sess = srv_conn->owner; |
Olivier Houchard | a2dbeb2 | 2018-12-28 18:50:57 +0100 | [diff] [blame] | 1393 | |
Christopher Faulet | 46451d6 | 2019-04-19 15:39:22 +0200 | [diff] [blame] | 1394 | srv_conn->flags &= ~CO_FL_SESS_IDLE; |
| 1395 | sess->idle_conns--; |
| 1396 | } |
Olivier Houchard | a2dbeb2 | 2018-12-28 18:50:57 +0100 | [diff] [blame] | 1397 | } |
Olivier Houchard | 0c18a6f | 2018-12-02 14:11:41 +0100 | [diff] [blame] | 1398 | } |
Willy Tarreau | 34601a8 | 2013-12-15 16:33:46 +0100 | [diff] [blame] | 1399 | |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1400 | /* We're about to use another connection, let the mux know we're |
| 1401 | * done with this one |
| 1402 | */ |
Olivier Houchard | c685d70 | 2018-12-28 16:20:25 +0100 | [diff] [blame] | 1403 | if (old_conn != srv_conn && old_conn && reuse && !reuse_orphan) { |
| 1404 | struct session *sess = srv_conn->owner; |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1405 | |
Olivier Houchard | c685d70 | 2018-12-28 16:20:25 +0100 | [diff] [blame] | 1406 | if (sess) { |
| 1407 | if (old_conn && !(old_conn->flags & CO_FL_PRIVATE) && |
| 1408 | old_conn->mux != NULL) { |
Olivier Houchard | a2dbeb2 | 2018-12-28 18:50:57 +0100 | [diff] [blame] | 1409 | if (old_conn->flags & CO_FL_SESS_IDLE) |
| 1410 | s->sess->idle_conns--; |
Olivier Houchard | c685d70 | 2018-12-28 16:20:25 +0100 | [diff] [blame] | 1411 | session_unown_conn(s->sess, old_conn); |
| 1412 | old_conn->owner = sess; |
Willy Tarreau | 3c4e19f | 2019-02-01 11:54:23 +0100 | [diff] [blame] | 1413 | if (!session_add_conn(sess, old_conn, old_conn->target)) { |
Olivier Houchard | a48237f | 2019-05-02 12:04:15 +0200 | [diff] [blame] | 1414 | old_conn->flags &= ~CO_FL_SESS_IDLE; |
Olivier Houchard | c685d70 | 2018-12-28 16:20:25 +0100 | [diff] [blame] | 1415 | old_conn->owner = NULL; |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 1416 | old_conn->mux->destroy(old_conn->ctx); |
Olivier Houchard | c685d70 | 2018-12-28 16:20:25 +0100 | [diff] [blame] | 1417 | } else |
| 1418 | session_check_idle_conn(sess, old_conn); |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1419 | } |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1420 | } |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1421 | } |
| 1422 | |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1423 | if (reuse) { |
Olivier Houchard | 2442f68 | 2018-12-01 17:03:38 +0100 | [diff] [blame] | 1424 | /* We already created a cs earlier when using http_proxy, so |
| 1425 | * only create a new one if we don't have one already. |
| 1426 | */ |
Olivier Houchard | 9ef5155 | 2019-01-28 15:33:15 +0100 | [diff] [blame] | 1427 | if (!srv_cs && srv_conn->mux) { |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1428 | int avail = srv_conn->mux->avail_streams(srv_conn); |
| 1429 | |
| 1430 | if (avail <= 1) { |
Olivier Houchard | 2442f68 | 2018-12-01 17:03:38 +0100 | [diff] [blame] | 1431 | /* No more streams available, remove it from the list */ |
| 1432 | LIST_DEL(&srv_conn->list); |
| 1433 | LIST_INIT(&srv_conn->list); |
| 1434 | } |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1435 | |
| 1436 | if (avail >= 1) { |
| 1437 | srv_cs = srv_conn->mux->attach(srv_conn, s->sess); |
Olivier Houchard | 4dc8553 | 2019-01-29 15:50:38 +0100 | [diff] [blame] | 1438 | if (srv_cs) { |
| 1439 | alloced_cs = 1; |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1440 | si_attach_cs(&s->si[1], srv_cs); |
Olivier Houchard | 4dc8553 | 2019-01-29 15:50:38 +0100 | [diff] [blame] | 1441 | } else |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1442 | srv_conn = NULL; |
| 1443 | } |
Olivier Houchard | 134a204 | 2018-12-28 14:45:47 +0100 | [diff] [blame] | 1444 | else |
| 1445 | srv_conn = NULL; |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1446 | } |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1447 | /* otherwise srv_conn is left intact */ |
| 1448 | } |
| 1449 | else |
| 1450 | srv_conn = NULL; |
| 1451 | |
| 1452 | /* no reuse or failed to reuse the connection above, pick a new one */ |
| 1453 | if (!srv_conn) { |
| 1454 | srv_conn = conn_new(); |
Willy Tarreau | 1da41ec | 2019-02-01 16:38:48 +0100 | [diff] [blame] | 1455 | if (srv_conn) |
| 1456 | srv_conn->target = s->target; |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1457 | srv_cs = NULL; |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1458 | } |
Willy Tarreau | 2c7dedd | 2019-01-24 18:22:19 +0100 | [diff] [blame] | 1459 | |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1460 | if (srv_conn && old_conn != srv_conn) { |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1461 | if (srv_conn->owner) |
| 1462 | session_unown_conn(srv_conn->owner, srv_conn); |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1463 | srv_conn->owner = s->sess; |
Willy Tarreau | 3c4e19f | 2019-02-01 11:54:23 +0100 | [diff] [blame] | 1464 | if (!session_add_conn(s->sess, srv_conn, srv_conn->target)) { |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1465 | /* If we failed to attach the connection, detach the |
| 1466 | * conn_stream, possibly destroying the connection */ |
Olivier Houchard | 4dc8553 | 2019-01-29 15:50:38 +0100 | [diff] [blame] | 1467 | if (alloced_cs) |
| 1468 | si_release_endpoint(&s->si[1]); |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1469 | srv_conn->owner = NULL; |
Olivier Houchard | 26da323 | 2019-01-29 16:05:02 +0100 | [diff] [blame] | 1470 | if (srv_conn->mux && !srv_add_to_idle_list(objt_server(srv_conn->target), srv_conn)) |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1471 | /* The server doesn't want it, let's kill the connection right away */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 1472 | srv_conn->mux->destroy(srv_conn->ctx); |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 1473 | srv_conn = NULL; |
| 1474 | |
| 1475 | } |
Willy Tarreau | 323a2d9 | 2015-08-04 19:00:17 +0200 | [diff] [blame] | 1476 | } |
Willy Tarreau | c12b5e6 | 2015-08-04 19:45:36 +0200 | [diff] [blame] | 1477 | |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1478 | if (!srv_conn) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1479 | return SF_ERR_RESOURCE; |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 1480 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1481 | if (!(s->flags & SF_ADDR_SET)) { |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1482 | err = assign_server_address(s, srv_conn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1483 | if (err != SRV_STATUS_OK) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1484 | return SF_ERR_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1485 | } |
| 1486 | |
Olivier Houchard | 9a86fcb | 2018-12-11 16:47:14 +0100 | [diff] [blame] | 1487 | if (!conn_xprt_ready(srv_conn) && !srv_conn->mux) { |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1488 | /* set the correct protocol on the output stream interface */ |
Christopher Faulet | 2bf88c0 | 2018-02-28 10:33:34 +0100 | [diff] [blame] | 1489 | if (srv) |
Willy Tarreau | 7b00492 | 2015-08-04 19:34:21 +0200 | [diff] [blame] | 1490 | conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), srv->xprt); |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1491 | else if (obj_type(s->target) == OBJ_TYPE_PROXY) { |
| 1492 | /* proxies exclusively run on raw_sock right now */ |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 1493 | conn_prepare(srv_conn, protocol_by_family(srv_conn->addr.to.ss_family), xprt_get(XPRT_RAW)); |
Olivier Houchard | 1295016 | 2018-11-23 14:32:08 +0100 | [diff] [blame] | 1494 | if (!(srv_conn->ctrl)) |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1495 | return SF_ERR_INTERNAL; |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1496 | } |
| 1497 | else |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1498 | return SF_ERR_INTERNAL; /* how did we get there ? */ |
Willy Tarreau | d02394b | 2012-05-11 18:32:18 +0200 | [diff] [blame] | 1499 | |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 1500 | #if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation) |
Olivier Houchard | 1295016 | 2018-11-23 14:32:08 +0100 | [diff] [blame] | 1501 | if (!srv || |
| 1502 | ((!(srv->ssl_ctx.alpn_str) && !(srv->ssl_ctx.npn_str)) || |
Olivier Houchard | b4a8b2c | 2019-06-15 00:13:15 +0200 | [diff] [blame] | 1503 | srv->mux_proto || s->be->mode != PR_MODE_HTTP)) |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1504 | #endif |
| 1505 | { |
Olivier Houchard | 0fa989f | 2018-12-05 17:08:55 +0100 | [diff] [blame] | 1506 | srv_cs = objt_cs(s->si[1].end); |
| 1507 | if (!srv_cs || srv_cs->conn != srv_conn) |
| 1508 | srv_cs = si_alloc_cs(&s->si[1], srv_conn); |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1509 | if (!srv_cs) { |
| 1510 | conn_free(srv_conn); |
| 1511 | return SF_ERR_RESOURCE; |
| 1512 | } |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1513 | init_mux = 1; |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1514 | } |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 1515 | #if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation) |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1516 | else { |
Willy Tarreau | 94031d3 | 2018-12-19 14:36:29 +0100 | [diff] [blame] | 1517 | srv_conn->ctx = &s->si[1].end; |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1518 | /* Store the connection into the stream interface, |
| 1519 | * while we still don't have a mux, so that if the |
| 1520 | * stream is destroyed before the connection is |
Olivier Houchard | ee23b2a | 2018-11-23 17:07:04 +0100 | [diff] [blame] | 1521 | * established, we have a chance to destroy it even |
| 1522 | * if it is no longer referenced in the session. |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1523 | */ |
Olivier Houchard | ee23b2a | 2018-11-23 17:07:04 +0100 | [diff] [blame] | 1524 | s->si[1].end = &srv_conn->obj_type; |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1525 | conn_set_xprt_done_cb(srv_conn, conn_complete_server); |
| 1526 | } |
| 1527 | |
| 1528 | #endif |
| 1529 | |
Christopher Faulet | 2bf88c0 | 2018-02-28 10:33:34 +0100 | [diff] [blame] | 1530 | |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1531 | /* process the case where the server requires the PROXY protocol to be sent */ |
| 1532 | srv_conn->send_proxy_ofs = 0; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1533 | cli_conn = objt_conn(strm_orig(s)); |
| 1534 | |
Willy Tarreau | 7b00492 | 2015-08-04 19:34:21 +0200 | [diff] [blame] | 1535 | if (srv && srv->pp_opts) { |
Willy Tarreau | 387ebf8 | 2015-08-04 19:24:13 +0200 | [diff] [blame] | 1536 | srv_conn->flags |= CO_FL_PRIVATE; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1537 | srv_conn->flags |= CO_FL_SEND_PROXY; |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1538 | srv_conn->send_proxy_ofs = 1; /* must compute size */ |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1539 | if (cli_conn) |
| 1540 | conn_get_to_addr(cli_conn); |
| 1541 | } |
Willy Tarreau | 2a6e880 | 2013-10-24 15:50:53 +0200 | [diff] [blame] | 1542 | |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1543 | assign_tproxy_address(s); |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1544 | |
| 1545 | if (srv && (srv->flags & SRV_F_SOCKS4_PROXY)) { |
| 1546 | srv_conn->send_proxy_ofs = 1; |
| 1547 | srv_conn->flags |= CO_FL_SOCKS4; |
| 1548 | } |
Willy Tarreau | ff605db | 2013-12-20 11:09:51 +0100 | [diff] [blame] | 1549 | } |
Olivier Houchard | 9a86fcb | 2018-12-11 16:47:14 +0100 | [diff] [blame] | 1550 | else if (!conn_xprt_ready(srv_conn)) { |
| 1551 | if (srv_conn->mux->reset) |
| 1552 | srv_conn->mux->reset(srv_conn); |
| 1553 | } |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 1554 | else |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1555 | s->flags |= SF_SRV_REUSED; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 1556 | |
William Lallemand | b7ff6a3 | 2012-03-02 14:35:21 +0100 | [diff] [blame] | 1557 | /* flag for logging source ip/port */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 1558 | if (strm_fe(s)->options2 & PR_O2_SRC_ADDR) |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1559 | s->si[1].flags |= SI_FL_SRC_ADDR; |
William Lallemand | b7ff6a3 | 2012-03-02 14:35:21 +0100 | [diff] [blame] | 1560 | |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1561 | /* disable lingering */ |
| 1562 | if (s->be->options & PR_O_TCP_NOLING) |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1563 | s->si[1].flags |= SI_FL_NOLINGER; |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1564 | |
Willy Tarreau | f157384 | 2018-12-14 11:35:36 +0100 | [diff] [blame] | 1565 | if (s->flags & SF_SRV_REUSED) { |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1566 | _HA_ATOMIC_ADD(&s->be->be_counters.reuse, 1); |
Willy Tarreau | cc79ed2 | 2018-12-15 15:11:36 +0100 | [diff] [blame] | 1567 | if (srv) |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1568 | _HA_ATOMIC_ADD(&srv->counters.reuse, 1); |
Willy Tarreau | f157384 | 2018-12-14 11:35:36 +0100 | [diff] [blame] | 1569 | } else { |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1570 | _HA_ATOMIC_ADD(&s->be->be_counters.connect, 1); |
Willy Tarreau | cc79ed2 | 2018-12-15 15:11:36 +0100 | [diff] [blame] | 1571 | if (srv) |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1572 | _HA_ATOMIC_ADD(&srv->counters.connect, 1); |
Willy Tarreau | f157384 | 2018-12-14 11:35:36 +0100 | [diff] [blame] | 1573 | } |
| 1574 | |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 1575 | err = si_connect(&s->si[1], srv_conn); |
Willy Tarreau | d9b35d9 | 2019-07-18 16:18:20 +0200 | [diff] [blame] | 1576 | if (err != SF_ERR_NONE) |
| 1577 | return err; |
| 1578 | |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1579 | /* We have to defer the mux initialization until after si_connect() |
| 1580 | * has been called, as we need the xprt to have been properly |
| 1581 | * initialized, or any attempt to recv during the mux init may |
| 1582 | * fail, and flag the connection as CO_FL_ERROR. |
| 1583 | */ |
| 1584 | if (init_mux) { |
Olivier Houchard | 7493114 | 2019-01-29 19:11:16 +0100 | [diff] [blame] | 1585 | if (conn_install_mux_be(srv_conn, srv_cs, s->sess) < 0) { |
| 1586 | conn_full_close(srv_conn); |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1587 | return SF_ERR_INTERNAL; |
Olivier Houchard | 7493114 | 2019-01-29 19:11:16 +0100 | [diff] [blame] | 1588 | } |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1589 | /* If we're doing http-reuse always, and the connection |
| 1590 | * is an http2 connection, add it to the available list, |
| 1591 | * so that others can use it right away. |
| 1592 | */ |
| 1593 | if (srv && ((s->be->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) && |
| 1594 | srv_conn->mux->avail_streams(srv_conn) > 0) |
| 1595 | LIST_ADD(&srv->idle_conns[tid], &srv_conn->list); |
| 1596 | } |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 1597 | /* The CO_FL_SEND_PROXY flag may have been set by the connect method, |
| 1598 | * if so, add our handshake pseudo-XPRT now. |
| 1599 | */ |
Olivier Houchard | fc4c35a | 2019-06-24 18:19:40 +0200 | [diff] [blame] | 1600 | if ((srv_conn->flags & CO_FL_HANDSHAKE_NOSSL)) { |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 1601 | if (xprt_add_hs(srv_conn) < 0) { |
| 1602 | conn_full_close(srv_conn); |
| 1603 | return SF_ERR_INTERNAL; |
| 1604 | } |
| 1605 | } |
Olivier Houchard | 5cd6217 | 2019-01-04 15:52:26 +0100 | [diff] [blame] | 1606 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1607 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 1608 | #if USE_OPENSSL && (defined(OPENSSL_IS_BORINGSSL) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)) |
Olivier Houchard | 4cd2af4 | 2019-05-06 15:18:27 +0200 | [diff] [blame] | 1609 | |
Olivier Houchard | 8694e5b | 2019-06-15 00:14:05 +0200 | [diff] [blame] | 1610 | if (!reuse && cli_conn && srv && srv_conn->mux && |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1611 | (srv->ssl_ctx.options & SRV_SSL_O_EARLY_DATA) && |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1612 | /* Only attempt to use early data if either the client sent |
| 1613 | * early data, so that we know it can handle a 425, or if |
| 1614 | * we are allwoed to retry requests on early data failure, and |
| 1615 | * it's our first try |
| 1616 | */ |
| 1617 | ((cli_conn->flags & CO_FL_EARLY_DATA) || |
| 1618 | ((s->be->retry_type & PR_RE_EARLY_ERROR) && |
| 1619 | s->si[1].conn_retries == s->be->conn_retries)) && |
| 1620 | !channel_is_empty(si_oc(&s->si[1])) && |
| 1621 | srv_conn->flags & CO_FL_SSL_WAIT_HS) |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1622 | 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] | 1623 | #endif |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 1624 | |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1625 | /* set connect timeout */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1626 | s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.connect); |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 1627 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1628 | if (srv) { |
Christopher Faulet | 29f77e8 | 2017-06-08 14:04:45 +0200 | [diff] [blame] | 1629 | int count; |
| 1630 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1631 | s->flags |= SF_CURR_SESS; |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1632 | count = _HA_ATOMIC_ADD(&srv->cur_sess, 1); |
Christopher Faulet | 29f77e8 | 2017-06-08 14:04:45 +0200 | [diff] [blame] | 1633 | HA_ATOMIC_UPDATE_MAX(&srv->counters.cur_sess_max, count); |
Willy Tarreau | 5140623 | 2008-03-10 22:04:20 +0100 | [diff] [blame] | 1634 | if (s->be->lbprm.server_take_conn) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1635 | s->be->lbprm.server_take_conn(srv); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 1636 | |
| 1637 | #ifdef USE_OPENSSL |
| 1638 | if (srv->ssl_ctx.sni) { |
| 1639 | struct sample *smp; |
| 1640 | int rewind; |
| 1641 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 1642 | if (!IS_HTX_STRM(s)) { |
| 1643 | /* Tricky case : we have already scheduled the pending |
| 1644 | * HTTP request or TCP data for leaving. So in HTTP we |
| 1645 | * rewind exactly the headers, otherwise we rewind the |
| 1646 | * output data. |
| 1647 | */ |
| 1648 | rewind = s->txn ? http_hdr_rewind(&s->txn->req) : co_data(&s->req); |
| 1649 | c_rew(&s->req, rewind); |
| 1650 | |
| 1651 | smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, |
| 1652 | srv->ssl_ctx.sni, SMP_T_STR); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 1653 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 1654 | /* restore the pointers */ |
| 1655 | c_adv(&s->req, rewind); |
| 1656 | } |
| 1657 | else { |
| 1658 | /* rewind the output data. */ |
| 1659 | rewind = co_data(&s->req); |
| 1660 | c_rew(&s->req, rewind); |
| 1661 | |
| 1662 | smp = sample_fetch_as_type(s->be, s->sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, |
| 1663 | srv->ssl_ctx.sni, SMP_T_STR); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 1664 | |
Christopher Faulet | f7679ad | 2019-02-04 12:02:18 +0100 | [diff] [blame] | 1665 | /* restore the pointers */ |
| 1666 | c_adv(&s->req, rewind); |
| 1667 | } |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 1668 | |
Willy Tarreau | 2e0565c | 2016-08-09 11:55:21 +0200 | [diff] [blame] | 1669 | if (smp_make_safe(smp)) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1670 | ssl_sock_set_servername(srv_conn, |
| 1671 | smp->data.u.str.area); |
Willy Tarreau | 387ebf8 | 2015-08-04 19:24:13 +0200 | [diff] [blame] | 1672 | srv_conn->flags |= CO_FL_PRIVATE; |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 1673 | } |
| 1674 | } |
| 1675 | #endif /* USE_OPENSSL */ |
| 1676 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1677 | } |
| 1678 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1679 | return SF_ERR_NONE; /* connection is OK */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1680 | } |
| 1681 | |
| 1682 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1683 | /* This function performs the "redispatch" part of a connection attempt. It |
| 1684 | * will assign a server if required, queue the connection if required, and |
| 1685 | * handle errors that might arise at this level. It can change the server |
| 1686 | * state. It will return 1 if it encounters an error, switches the server |
| 1687 | * state, or has to queue a connection. Otherwise, it will return 0 indicating |
| 1688 | * that the connection is ready to use. |
| 1689 | */ |
| 1690 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1691 | int srv_redispatch_connect(struct stream *s) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1692 | { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1693 | struct server *srv; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1694 | int conn_err; |
| 1695 | |
| 1696 | /* We know that we don't have any connection pending, so we will |
| 1697 | * try to get a new one, and wait in this state if it's queued |
| 1698 | */ |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1699 | redispatch: |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1700 | conn_err = assign_server_and_queue(s); |
| 1701 | srv = objt_server(s->target); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1702 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1703 | switch (conn_err) { |
| 1704 | case SRV_STATUS_OK: |
| 1705 | break; |
| 1706 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1707 | case SRV_STATUS_FULL: |
| 1708 | /* The server has reached its maxqueue limit. Either PR_O_REDISP is set |
| 1709 | * and we can redispatch to another server, or it is not and we return |
| 1710 | * 503. This only makes sense in DIRECT mode however, because normal LB |
| 1711 | * algorithms would never select such a server, and hash algorithms |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1712 | * 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] | 1713 | * in this case. |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1714 | */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1715 | if (((s->flags & (SF_DIRECT|SF_FORCE_PRST)) == SF_DIRECT) && |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1716 | (s->be->options & PR_O_REDISP)) { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1717 | s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1718 | goto redispatch; |
| 1719 | } |
| 1720 | |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1721 | if (!s->si[1].err_type) { |
| 1722 | s->si[1].err_type = SI_ET_QUEUE_ERR; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1723 | } |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1724 | |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1725 | _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1); |
| 1726 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1727 | return 1; |
| 1728 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1729 | case SRV_STATUS_NOSRV: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1730 | /* note: it is guaranteed that srv == NULL here */ |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1731 | if (!s->si[1].err_type) { |
| 1732 | s->si[1].err_type = SI_ET_CONN_ERR; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1733 | } |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 1734 | |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1735 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1736 | return 1; |
| 1737 | |
| 1738 | case SRV_STATUS_QUEUED: |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1739 | s->si[1].exp = tick_add_ifset(now_ms, s->be->timeout.queue); |
| 1740 | s->si[1].state = SI_ST_QUE; |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1741 | /* do nothing else and do not wake any other stream up */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1742 | return 1; |
| 1743 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1744 | case SRV_STATUS_INTERNAL: |
| 1745 | default: |
Willy Tarreau | 350f487 | 2014-11-28 14:42:25 +0100 | [diff] [blame] | 1746 | if (!s->si[1].err_type) { |
| 1747 | s->si[1].err_type = SI_ET_CONN_OTHER; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1748 | } |
| 1749 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1750 | if (srv) |
| 1751 | srv_inc_sess_ctr(srv); |
| 1752 | if (srv) |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 1753 | srv_set_sess_last(srv); |
| 1754 | if (srv) |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1755 | _HA_ATOMIC_ADD(&srv->counters.failed_conns, 1); |
| 1756 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1757 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1758 | /* release other streams waiting for this server */ |
Willy Tarreau | f1fd9dc | 2014-04-24 20:47:57 +0200 | [diff] [blame] | 1759 | if (may_dequeue_tasks(srv, s->be)) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1760 | process_srv_queue(srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1761 | return 1; |
| 1762 | } |
| 1763 | /* if we get here, it's because we got SRV_STATUS_OK, which also |
| 1764 | * means that the connection has not been queued. |
| 1765 | */ |
| 1766 | return 0; |
| 1767 | } |
| 1768 | |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1769 | /* sends a log message when a backend goes down, and also sets last |
| 1770 | * change date. |
| 1771 | */ |
| 1772 | void set_backend_down(struct proxy *be) |
| 1773 | { |
| 1774 | be->last_change = now.tv_sec; |
Olivier Houchard | 237f781 | 2019-03-08 18:49:07 +0100 | [diff] [blame] | 1775 | _HA_ATOMIC_ADD(&be->down_trans, 1); |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1776 | |
Willy Tarreau | 6fb8dc1 | 2016-11-03 19:42:36 +0100 | [diff] [blame] | 1777 | if (!(global.mode & MODE_STARTING)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1778 | 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] | 1779 | send_log(be, LOG_EMERG, "%s %s has no server available!\n", proxy_type_str(be), be->id); |
| 1780 | } |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 1781 | } |
| 1782 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1783 | /* Apply RDP cookie persistence to the current stream. For this, the function |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1784 | * tries to extract an RDP cookie from the request buffer, and look for the |
| 1785 | * 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] | 1786 | * stream. This always returns 1, and the analyser removes itself from the |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1787 | * list. Nothing is performed if a server was already assigned. |
| 1788 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1789 | 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] | 1790 | { |
| 1791 | struct proxy *px = s->be; |
| 1792 | int ret; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1793 | struct sample smp; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1794 | struct server *srv = px->srv; |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 1795 | uint16_t port; |
| 1796 | uint32_t addr; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1797 | char *p; |
| 1798 | |
Christopher Faulet | 4507351 | 2018-07-20 10:16:29 +0200 | [diff] [blame] | 1799 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1800 | now_ms, __FUNCTION__, |
| 1801 | s, |
| 1802 | req, |
| 1803 | req->rex, req->wex, |
| 1804 | req->flags, |
Christopher Faulet | 4507351 | 2018-07-20 10:16:29 +0200 | [diff] [blame] | 1805 | ci_data(req), |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1806 | req->analysers); |
| 1807 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1808 | if (s->flags & SF_ASSIGNED) |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1809 | goto no_cookie; |
| 1810 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1811 | memset(&smp, 0, sizeof(smp)); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1812 | |
Willy Tarreau | cadd8c9 | 2013-07-22 18:09:52 +0200 | [diff] [blame] | 1813 | 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] | 1814 | 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] | 1815 | goto no_cookie; |
| 1816 | |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 1817 | /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return. |
| 1818 | * The cookie format is <ip> "." <port> where "ip" is the integer corresponding to the |
| 1819 | * server's IP address in network order, and "port" is the integer corresponding to the |
| 1820 | * server's port in network order. Comments please Emeric. |
| 1821 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1822 | addr = strtoul(smp.data.u.str.area, &p, 10); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1823 | if (*p != '.') |
| 1824 | goto no_cookie; |
| 1825 | p++; |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 1826 | |
| 1827 | port = ntohs(strtoul(p, &p, 10)); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1828 | if (*p != '.') |
| 1829 | goto no_cookie; |
| 1830 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1831 | s->target = NULL; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1832 | while (srv) { |
Willy Tarreau | 28e9d06 | 2014-05-09 22:47:50 +0200 | [diff] [blame] | 1833 | if (srv->addr.ss_family == AF_INET && |
Willy Tarreau | 04276f3 | 2017-01-06 17:41:29 +0100 | [diff] [blame] | 1834 | port == srv->svc_port && |
| 1835 | addr == ((struct sockaddr_in *)&srv->addr)->sin_addr.s_addr) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1836 | if ((srv->cur_state != SRV_ST_STOPPED) || (px->options & PR_O_PERSIST)) { |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1837 | /* we found the server and it is usable */ |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1838 | s->flags |= SF_DIRECT | SF_ASSIGNED; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1839 | s->target = &srv->obj_type; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1840 | break; |
| 1841 | } |
| 1842 | } |
| 1843 | srv = srv->next; |
| 1844 | } |
| 1845 | |
| 1846 | no_cookie: |
| 1847 | req->analysers &= ~an_bit; |
| 1848 | req->analyse_exp = TICK_ETERNITY; |
| 1849 | return 1; |
| 1850 | } |
| 1851 | |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 1852 | int be_downtime(struct proxy *px) { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 1853 | 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] | 1854 | return px->down_time; |
| 1855 | |
| 1856 | return now.tv_sec - px->last_change + px->down_time; |
| 1857 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1858 | |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 1859 | /* |
| 1860 | * This function returns a string containing the balancing |
| 1861 | * mode of the proxy in a format suitable for stats. |
| 1862 | */ |
| 1863 | |
| 1864 | const char *backend_lb_algo_str(int algo) { |
| 1865 | |
| 1866 | if (algo == BE_LB_ALGO_RR) |
| 1867 | return "roundrobin"; |
| 1868 | else if (algo == BE_LB_ALGO_SRR) |
| 1869 | return "static-rr"; |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 1870 | else if (algo == BE_LB_ALGO_FAS) |
| 1871 | return "first"; |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 1872 | else if (algo == BE_LB_ALGO_LC) |
| 1873 | return "leastconn"; |
| 1874 | else if (algo == BE_LB_ALGO_SH) |
| 1875 | return "source"; |
| 1876 | else if (algo == BE_LB_ALGO_UH) |
| 1877 | return "uri"; |
| 1878 | else if (algo == BE_LB_ALGO_PH) |
| 1879 | return "url_param"; |
| 1880 | else if (algo == BE_LB_ALGO_HH) |
| 1881 | return "hdr"; |
| 1882 | else if (algo == BE_LB_ALGO_RCH) |
| 1883 | return "rdp-cookie"; |
Willy Tarreau | b3e111b | 2016-11-26 15:52:04 +0100 | [diff] [blame] | 1884 | else if (algo == BE_LB_ALGO_NONE) |
| 1885 | return "none"; |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 1886 | else |
Willy Tarreau | b3e111b | 2016-11-26 15:52:04 +0100 | [diff] [blame] | 1887 | return "unknown"; |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 1888 | } |
| 1889 | |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1890 | /* This function parses a "balance" statement in a backend section describing |
| 1891 | * <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] | 1892 | * returns -1, it will write an error message into the <err> buffer which will |
| 1893 | * automatically be allocated and must be passed as NULL. The trailing '\n' |
| 1894 | * will not be written. The function must be called with <args> pointing to the |
| 1895 | * first word after "balance". |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1896 | */ |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 1897 | int backend_parse_balance(const char **args, char **err, struct proxy *curproxy) |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1898 | { |
| 1899 | if (!*(args[0])) { |
| 1900 | /* if no option is set, use round-robin by default */ |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1901 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1902 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1903 | return 0; |
| 1904 | } |
| 1905 | |
| 1906 | if (!strcmp(args[0], "roundrobin")) { |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1907 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1908 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1909 | } |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 1910 | else if (!strcmp(args[0], "static-rr")) { |
| 1911 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1912 | curproxy->lbprm.algo |= BE_LB_ALGO_SRR; |
| 1913 | } |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 1914 | else if (!strcmp(args[0], "first")) { |
| 1915 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1916 | curproxy->lbprm.algo |= BE_LB_ALGO_FAS; |
| 1917 | } |
Willy Tarreau | 5140623 | 2008-03-10 22:04:20 +0100 | [diff] [blame] | 1918 | else if (!strcmp(args[0], "leastconn")) { |
| 1919 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1920 | curproxy->lbprm.algo |= BE_LB_ALGO_LC; |
| 1921 | } |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 1922 | else if (!strncmp(args[0], "random", 6)) { |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 1923 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1924 | curproxy->lbprm.algo |= BE_LB_ALGO_RND; |
Willy Tarreau | 21c741a | 2019-01-14 18:14:27 +0100 | [diff] [blame] | 1925 | curproxy->lbprm.arg_opt1 = 2; |
| 1926 | |
| 1927 | if (*(args[0] + 6) == '(' && *(args[0] + 7) != ')') { /* number of draws */ |
| 1928 | const char *beg; |
| 1929 | char *end; |
| 1930 | |
| 1931 | beg = args[0] + 7; |
| 1932 | curproxy->lbprm.arg_opt1 = strtol(beg, &end, 0); |
| 1933 | |
| 1934 | if (*end != ')') { |
| 1935 | if (!*end) |
| 1936 | memprintf(err, "random : missing closing parenthesis."); |
| 1937 | else |
| 1938 | memprintf(err, "random : unexpected character '%c' after argument.", *end); |
| 1939 | return -1; |
| 1940 | } |
| 1941 | |
| 1942 | if (curproxy->lbprm.arg_opt1 < 1) { |
| 1943 | memprintf(err, "random : number of draws must be at least 1."); |
| 1944 | return -1; |
| 1945 | } |
| 1946 | } |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 1947 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1948 | else if (!strcmp(args[0], "source")) { |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1949 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1950 | curproxy->lbprm.algo |= BE_LB_ALGO_SH; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1951 | } |
| 1952 | else if (!strcmp(args[0], "uri")) { |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1953 | int arg = 1; |
| 1954 | |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1955 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1956 | curproxy->lbprm.algo |= BE_LB_ALGO_UH; |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 1957 | curproxy->lbprm.arg_opt1 = 0; // "whole" |
| 1958 | curproxy->lbprm.arg_opt2 = 0; // "len" |
| 1959 | curproxy->lbprm.arg_opt3 = 0; // "depth" |
Oskar Stolc | 8dc4184 | 2012-05-19 10:19:54 +0100 | [diff] [blame] | 1960 | |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1961 | while (*args[arg]) { |
| 1962 | if (!strcmp(args[arg], "len")) { |
| 1963 | if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 1964 | 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] | 1965 | return -1; |
| 1966 | } |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 1967 | curproxy->lbprm.arg_opt2 = atoi(args[arg+1]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1968 | arg += 2; |
| 1969 | } |
| 1970 | else if (!strcmp(args[arg], "depth")) { |
| 1971 | if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 1972 | 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] | 1973 | return -1; |
| 1974 | } |
| 1975 | /* hint: we store the position of the ending '/' (depth+1) so |
| 1976 | * that we avoid a comparison while computing the hash. |
| 1977 | */ |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 1978 | curproxy->lbprm.arg_opt3 = atoi(args[arg+1]) + 1; |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1979 | arg += 2; |
| 1980 | } |
Oskar Stolc | 8dc4184 | 2012-05-19 10:19:54 +0100 | [diff] [blame] | 1981 | else if (!strcmp(args[arg], "whole")) { |
Willy Tarreau | a9a7249 | 2019-01-14 16:14:15 +0100 | [diff] [blame] | 1982 | curproxy->lbprm.arg_opt1 = 1; |
Oskar Stolc | 8dc4184 | 2012-05-19 10:19:54 +0100 | [diff] [blame] | 1983 | arg += 1; |
| 1984 | } |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1985 | else { |
Oskar Stolc | 8dc4184 | 2012-05-19 10:19:54 +0100 | [diff] [blame] | 1986 | memprintf(err, "%s only accepts parameters 'len', 'depth', and 'whole' (got '%s').", args[0], args[arg]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1987 | return -1; |
| 1988 | } |
| 1989 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1990 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 1991 | else if (!strcmp(args[0], "url_param")) { |
| 1992 | if (!*args[1]) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 1993 | memprintf(err, "%s requires an URL parameter name.", args[0]); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 1994 | return -1; |
| 1995 | } |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1996 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1997 | curproxy->lbprm.algo |= BE_LB_ALGO_PH; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 1998 | |
Willy Tarreau | 4c03d1c | 2019-01-14 15:23:54 +0100 | [diff] [blame] | 1999 | free(curproxy->lbprm.arg_str); |
| 2000 | curproxy->lbprm.arg_str = strdup(args[1]); |
| 2001 | curproxy->lbprm.arg_len = strlen(args[1]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 2002 | if (*args[2]) { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 2003 | if (strcmp(args[2], "check_post")) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2004 | 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] | 2005 | return -1; |
| 2006 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 2007 | } |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2008 | } |
| 2009 | else if (!strncmp(args[0], "hdr(", 4)) { |
| 2010 | const char *beg, *end; |
| 2011 | |
| 2012 | beg = args[0] + 4; |
| 2013 | end = strchr(beg, ')'); |
| 2014 | |
| 2015 | if (!end || end == beg) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2016 | memprintf(err, "hdr requires an http header field name."); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2017 | return -1; |
| 2018 | } |
| 2019 | |
| 2020 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2021 | curproxy->lbprm.algo |= BE_LB_ALGO_HH; |
| 2022 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 2023 | free(curproxy->lbprm.arg_str); |
| 2024 | curproxy->lbprm.arg_len = end - beg; |
| 2025 | curproxy->lbprm.arg_str = my_strndup(beg, end - beg); |
Willy Tarreau | 9fed858 | 2019-01-14 16:04:54 +0100 | [diff] [blame] | 2026 | curproxy->lbprm.arg_opt1 = 0; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2027 | |
| 2028 | if (*args[1]) { |
| 2029 | if (strcmp(args[1], "use_domain_only")) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2030 | 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] | 2031 | return -1; |
| 2032 | } |
Willy Tarreau | 9fed858 | 2019-01-14 16:04:54 +0100 | [diff] [blame] | 2033 | curproxy->lbprm.arg_opt1 = 1; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 2034 | } |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2035 | } |
| 2036 | else if (!strncmp(args[0], "rdp-cookie", 10)) { |
| 2037 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2038 | curproxy->lbprm.algo |= BE_LB_ALGO_RCH; |
| 2039 | |
| 2040 | if ( *(args[0] + 10 ) == '(' ) { /* cookie name */ |
| 2041 | const char *beg, *end; |
| 2042 | |
| 2043 | beg = args[0] + 11; |
| 2044 | end = strchr(beg, ')'); |
| 2045 | |
| 2046 | if (!end || end == beg) { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2047 | memprintf(err, "rdp-cookie : missing cookie name."); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2048 | return -1; |
| 2049 | } |
| 2050 | |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 2051 | free(curproxy->lbprm.arg_str); |
| 2052 | curproxy->lbprm.arg_str = my_strndup(beg, end - beg); |
| 2053 | curproxy->lbprm.arg_len = end - beg; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2054 | } |
| 2055 | else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */ |
Willy Tarreau | 484ff07 | 2019-01-14 15:28:53 +0100 | [diff] [blame] | 2056 | free(curproxy->lbprm.arg_str); |
| 2057 | curproxy->lbprm.arg_str = strdup("mstshash"); |
| 2058 | curproxy->lbprm.arg_len = strlen(curproxy->lbprm.arg_str); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2059 | } |
| 2060 | else { /* syntax */ |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2061 | memprintf(err, "rdp-cookie : missing cookie name."); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 2062 | return -1; |
| 2063 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 2064 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 2065 | else { |
Willy Tarreau | a93c74b | 2012-05-08 18:14:39 +0200 | [diff] [blame] | 2066 | 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] | 2067 | return -1; |
| 2068 | } |
| 2069 | return 0; |
| 2070 | } |
| 2071 | |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2072 | |
| 2073 | /************************************************************************/ |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 2074 | /* All supported sample and ACL keywords must be declared here. */ |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2075 | /************************************************************************/ |
| 2076 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2077 | /* set temp integer to the number of enabled servers on the proxy. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2078 | * 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] | 2079 | * undefined behaviour. |
| 2080 | */ |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2081 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2082 | 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] | 2083 | { |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2084 | struct proxy *px; |
| 2085 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2086 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2087 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 2088 | px = args->data.prx; |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2089 | |
Nenad Merdanovic | 2754fbc | 2017-03-12 21:56:56 +0100 | [diff] [blame] | 2090 | smp->data.u.sint = be_usable_srv(px); |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2091 | |
| 2092 | return 1; |
| 2093 | } |
| 2094 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2095 | /* report in smp->flags a success or failure depending on the designated |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2096 | * 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] | 2097 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 2098 | * undefined behaviour. |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2099 | */ |
| 2100 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2101 | 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] | 2102 | { |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 2103 | struct server *srv = args->data.srv; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2104 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2105 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2106 | smp->data.type = SMP_T_BOOL; |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2107 | if (!(srv->cur_admin & SRV_ADMF_MAINT) && |
| 2108 | (!(srv->check.state & CHK_ST_CONFIGURED) || (srv->cur_state != SRV_ST_STOPPED))) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2109 | smp->data.u.sint = 1; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2110 | else |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2111 | smp->data.u.sint = 0; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 2112 | return 1; |
| 2113 | } |
| 2114 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2115 | /* set temp integer to the number of enabled servers on the proxy. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2116 | * 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] | 2117 | * undefined behaviour. |
| 2118 | */ |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2119 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2120 | 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] | 2121 | { |
| 2122 | struct server *iterator; |
Willy Tarreau | d28c353 | 2012-04-19 19:28:33 +0200 | [diff] [blame] | 2123 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2124 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2125 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2126 | smp->data.u.sint = 0; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2127 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 2128 | for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) { |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 2129 | if (iterator->cur_state == SRV_ST_STOPPED) |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2130 | continue; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2131 | |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2132 | if (iterator->maxconn == 0 || iterator->maxqueue == 0) { |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 2133 | /* configuration is stupid */ |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2134 | smp->data.u.sint = -1; /* FIXME: stupid value! */ |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2135 | return 1; |
| 2136 | } |
| 2137 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2138 | smp->data.u.sint += (iterator->maxconn - iterator->cur_sess) |
Willy Tarreau | 422aa07 | 2012-04-20 20:49:27 +0200 | [diff] [blame] | 2139 | + (iterator->maxqueue - iterator->nbpend); |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 2140 | } |
| 2141 | |
| 2142 | return 1; |
| 2143 | } |
| 2144 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 2145 | /* set temp integer to the id of the backend */ |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2146 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2147 | 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] | 2148 | { |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 2149 | if (!smp->strm) |
| 2150 | return 0; |
| 2151 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 2152 | smp->flags = SMP_F_VOL_TXN; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2153 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2154 | smp->data.u.sint = smp->strm->be->uuid; |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2155 | return 1; |
| 2156 | } |
| 2157 | |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2158 | /* set string to the name of the backend */ |
| 2159 | static int |
| 2160 | smp_fetch_be_name(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2161 | { |
| 2162 | if (!smp->strm) |
| 2163 | return 0; |
| 2164 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2165 | smp->data.u.str.area = (char *)smp->strm->be->id; |
| 2166 | if (!smp->data.u.str.area) |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2167 | return 0; |
| 2168 | |
| 2169 | smp->data.type = SMP_T_STR; |
| 2170 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2171 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2172 | |
| 2173 | return 1; |
| 2174 | } |
| 2175 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 2176 | /* set temp integer to the id of the server */ |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2177 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2178 | 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] | 2179 | { |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 2180 | if (!smp->strm) |
| 2181 | return 0; |
| 2182 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2183 | if (!objt_server(smp->strm->target)) |
Willy Tarreau | 17af419 | 2011-02-23 14:27:06 +0100 | [diff] [blame] | 2184 | return 0; |
| 2185 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2186 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 1e582e5 | 2018-09-20 11:29:28 +0200 | [diff] [blame] | 2187 | smp->data.u.sint = __objt_server(smp->strm->target)->puid; |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 2188 | |
| 2189 | return 1; |
| 2190 | } |
| 2191 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2192 | /* 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] | 2193 | * 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] | 2194 | * undefined behaviour. |
| 2195 | */ |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 2196 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2197 | 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] | 2198 | { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2199 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2200 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2201 | smp->data.u.sint = read_freq_ctr(&args->data.prx->be_sess_per_sec); |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 2202 | return 1; |
| 2203 | } |
| 2204 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2205 | /* set temp integer to the number of concurrent connections on the backend. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2206 | * 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] | 2207 | * undefined behaviour. |
| 2208 | */ |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2209 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2210 | 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] | 2211 | { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2212 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2213 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2214 | smp->data.u.sint = args->data.prx->beconn; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2215 | return 1; |
| 2216 | } |
| 2217 | |
Patrick Hemmer | 4cdf3ab | 2018-06-14 17:10:27 -0400 | [diff] [blame] | 2218 | /* set temp integer to the number of available connections across available |
| 2219 | * servers on the backend. |
| 2220 | * Accepts exactly 1 argument. Argument is a backend, other types will lead to |
| 2221 | * undefined behaviour. |
| 2222 | */ |
| 2223 | static int |
| 2224 | smp_fetch_be_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2225 | { |
| 2226 | struct server *iterator; |
| 2227 | struct proxy *px; |
| 2228 | unsigned int maxconn; |
| 2229 | |
| 2230 | smp->flags = SMP_F_VOL_TEST; |
| 2231 | smp->data.type = SMP_T_SINT; |
| 2232 | smp->data.u.sint = 0; |
| 2233 | |
| 2234 | for (iterator = args->data.prx->srv; iterator; iterator = iterator->next) { |
| 2235 | if (iterator->cur_state == SRV_ST_STOPPED) |
| 2236 | continue; |
| 2237 | |
| 2238 | px = iterator->proxy; |
| 2239 | if (!srv_currently_usable(iterator) || |
| 2240 | ((iterator->flags & SRV_F_BACKUP) && |
| 2241 | (px->srv_act || (iterator != px->lbprm.fbck && !(px->options & PR_O_USE_ALL_BK))))) |
| 2242 | continue; |
| 2243 | |
| 2244 | if (iterator->maxconn == 0) { |
| 2245 | /* one active server is unlimited, return -1 */ |
| 2246 | smp->data.u.sint = -1; |
| 2247 | return 1; |
| 2248 | } |
| 2249 | |
| 2250 | maxconn = srv_dynamic_maxconn(iterator); |
| 2251 | if (maxconn > iterator->cur_sess) |
| 2252 | smp->data.u.sint += maxconn - iterator->cur_sess; |
| 2253 | } |
| 2254 | |
| 2255 | return 1; |
| 2256 | } |
| 2257 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2258 | /* 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] | 2259 | * 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] | 2260 | * undefined behaviour. |
| 2261 | */ |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2262 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2263 | 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] | 2264 | { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2265 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2266 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2267 | smp->data.u.sint = args->data.prx->totpend; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2268 | return 1; |
| 2269 | } |
| 2270 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 2271 | /* 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] | 2272 | * by the number of running servers and rounded up. If there is no running |
| 2273 | * server, we return twice the total, just as if we had half a running server. |
| 2274 | * This is more or less correct anyway, since we expect the last server to come |
| 2275 | * back soon. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 2276 | * 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] | 2277 | * undefined behaviour. |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2278 | */ |
| 2279 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2280 | 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] | 2281 | { |
| 2282 | int nbsrv; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 2283 | struct proxy *px; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2284 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 2285 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2286 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 2287 | px = args->data.prx; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2288 | |
Nenad Merdanovic | 2754fbc | 2017-03-12 21:56:56 +0100 | [diff] [blame] | 2289 | nbsrv = be_usable_srv(px); |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2290 | |
| 2291 | if (nbsrv > 0) |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2292 | smp->data.u.sint = (px->totpend + nbsrv - 1) / nbsrv; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2293 | else |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2294 | smp->data.u.sint = px->totpend * 2; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 2295 | |
| 2296 | return 1; |
| 2297 | } |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2298 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 2299 | /* set temp integer to the number of concurrent connections on the server in the backend. |
| 2300 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 2301 | * undefined behaviour. |
| 2302 | */ |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 2303 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2304 | 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] | 2305 | { |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 2306 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2307 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2308 | smp->data.u.sint = args->data.srv->cur_sess; |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 2309 | return 1; |
| 2310 | } |
| 2311 | |
Patrick Hemmer | 155e93e | 2018-06-14 18:01:35 -0400 | [diff] [blame] | 2312 | /* set temp integer to the number of available connections on the server in the backend. |
| 2313 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 2314 | * undefined behaviour. |
| 2315 | */ |
| 2316 | static int |
| 2317 | smp_fetch_srv_conn_free(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2318 | { |
| 2319 | unsigned int maxconn; |
| 2320 | |
| 2321 | smp->flags = SMP_F_VOL_TEST; |
| 2322 | smp->data.type = SMP_T_SINT; |
| 2323 | |
| 2324 | if (args->data.srv->maxconn == 0) { |
| 2325 | /* one active server is unlimited, return -1 */ |
| 2326 | smp->data.u.sint = -1; |
| 2327 | return 1; |
| 2328 | } |
| 2329 | |
| 2330 | maxconn = srv_dynamic_maxconn(args->data.srv); |
| 2331 | if (maxconn > args->data.srv->cur_sess) |
| 2332 | smp->data.u.sint = maxconn - args->data.srv->cur_sess; |
| 2333 | else |
| 2334 | smp->data.u.sint = 0; |
| 2335 | |
| 2336 | return 1; |
| 2337 | } |
| 2338 | |
Willy Tarreau | ff2b7af | 2017-10-13 11:46:26 +0200 | [diff] [blame] | 2339 | /* set temp integer to the number of connections pending in the server's queue. |
| 2340 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 2341 | * undefined behaviour. |
| 2342 | */ |
| 2343 | static int |
| 2344 | smp_fetch_srv_queue(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2345 | { |
| 2346 | smp->flags = SMP_F_VOL_TEST; |
| 2347 | smp->data.type = SMP_T_SINT; |
| 2348 | smp->data.u.sint = args->data.srv->nbpend; |
| 2349 | return 1; |
| 2350 | } |
| 2351 | |
Tait Clarridge | 7896d52 | 2012-12-05 21:39:31 -0500 | [diff] [blame] | 2352 | /* set temp integer to the number of enabled servers on the proxy. |
| 2353 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 2354 | * undefined behaviour. |
| 2355 | */ |
| 2356 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 2357 | 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] | 2358 | { |
| 2359 | smp->flags = SMP_F_VOL_TEST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 2360 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 2361 | 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] | 2362 | return 1; |
| 2363 | } |
| 2364 | |
Nenad Merdanovic | b7e7c47 | 2017-03-12 21:56:55 +0100 | [diff] [blame] | 2365 | static int sample_conv_nbsrv(const struct arg *args, struct sample *smp, void *private) |
| 2366 | { |
| 2367 | |
| 2368 | struct proxy *px; |
| 2369 | |
| 2370 | if (!smp_make_safe(smp)) |
| 2371 | return 0; |
| 2372 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2373 | 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] | 2374 | if (!px) |
| 2375 | return 0; |
| 2376 | |
| 2377 | smp->data.type = SMP_T_SINT; |
| 2378 | smp->data.u.sint = be_usable_srv(px); |
| 2379 | |
| 2380 | return 1; |
| 2381 | } |
| 2382 | |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 2383 | |
| 2384 | /* Note: must not be declared <const> as its list will be overwritten. |
| 2385 | * Please take care of keeping this list alphabetically sorted. |
| 2386 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 2387 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2388 | { "avg_queue", smp_fetch_avg_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 2389 | { "be_conn", smp_fetch_be_conn, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Patrick Hemmer | 4cdf3ab | 2018-06-14 17:10:27 -0400 | [diff] [blame] | 2390 | { "be_conn_free", smp_fetch_be_conn_free, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2391 | { "be_id", smp_fetch_be_id, 0, NULL, SMP_T_SINT, SMP_USE_BKEND, }, |
Marcin Deranek | d2471c2 | 2016-12-12 14:08:05 +0100 | [diff] [blame] | 2392 | { "be_name", smp_fetch_be_name, 0, NULL, SMP_T_STR, SMP_USE_BKEND, }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2393 | { "be_sess_rate", smp_fetch_be_sess_rate, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 2394 | { "connslots", smp_fetch_connslots, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 2395 | { "nbsrv", smp_fetch_nbsrv, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 2396 | { "queue", smp_fetch_queue_size, ARG1(1,BE), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
| 2397 | { "srv_conn", smp_fetch_srv_conn, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Patrick Hemmer | 155e93e | 2018-06-14 18:01:35 -0400 | [diff] [blame] | 2398 | { "srv_conn_free", smp_fetch_srv_conn_free, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2399 | { "srv_id", smp_fetch_srv_id, 0, NULL, SMP_T_SINT, SMP_USE_SERVR, }, |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 2400 | { "srv_is_up", smp_fetch_srv_is_up, ARG1(1,SRV), NULL, SMP_T_BOOL, SMP_USE_INTRN, }, |
Willy Tarreau | ff2b7af | 2017-10-13 11:46:26 +0200 | [diff] [blame] | 2401 | { "srv_queue", smp_fetch_srv_queue, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 2402 | { "srv_sess_rate", smp_fetch_srv_sess_rate, ARG1(1,SRV), NULL, SMP_T_SINT, SMP_USE_INTRN, }, |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 2403 | { /* END */ }, |
| 2404 | }}; |
| 2405 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2406 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
| 2407 | |
Nenad Merdanovic | b7e7c47 | 2017-03-12 21:56:55 +0100 | [diff] [blame] | 2408 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 2409 | static struct sample_conv_kw_list sample_conv_kws = {ILH, { |
| 2410 | { "nbsrv", sample_conv_nbsrv, 0, NULL, SMP_T_STR, SMP_T_SINT }, |
| 2411 | { /* END */ }, |
| 2412 | }}; |
| 2413 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2414 | INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws); |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 2415 | |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 2416 | /* Note: must not be declared <const> as its list will be overwritten. |
| 2417 | * Please take care of keeping this list alphabetically sorted. |
| 2418 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 2419 | static struct acl_kw_list acl_kws = {ILH, { |
Willy Tarreau | 1a7eca1 | 2013-01-07 22:38:03 +0100 | [diff] [blame] | 2420 | { /* END */ }, |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2421 | }}; |
| 2422 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2423 | INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws); |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 2424 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2425 | /* |
| 2426 | * Local variables: |
| 2427 | * c-indent-level: 8 |
| 2428 | * c-basic-offset: 8 |
| 2429 | * End: |
| 2430 | */ |