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