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