Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Backend variables and functions. |
| 3 | * |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 4 | * Copyright 2000-2012 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 | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #include <common/compat.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 23 | #include <common/config.h> |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 24 | #include <common/debug.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 25 | #include <common/ticks.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 26 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | #include <types/global.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 29 | |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 30 | #include <proto/acl.h> |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 31 | #include <proto/arg.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 32 | #include <proto/backend.h> |
Willy Tarreau | 03fa5df | 2010-05-24 21:02:37 +0200 | [diff] [blame] | 33 | #include <proto/frontend.h> |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 34 | #include <proto/lb_chash.h> |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 35 | #include <proto/lb_fas.h> |
Willy Tarreau | f89c187 | 2009-10-01 11:19:37 +0200 | [diff] [blame] | 36 | #include <proto/lb_fwlc.h> |
| 37 | #include <proto/lb_fwrr.h> |
| 38 | #include <proto/lb_map.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 39 | #include <proto/proto_http.h> |
Willy Tarreau | a8f55d5 | 2010-05-31 17:44:19 +0200 | [diff] [blame] | 40 | #include <proto/proto_tcp.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 41 | #include <proto/queue.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 42 | #include <proto/server.h> |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 43 | #include <proto/session.h> |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 44 | #include <proto/stream_interface.h> |
Willy Tarreau | a8f55d5 | 2010-05-31 17:44:19 +0200 | [diff] [blame] | 45 | #include <proto/stream_sock.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 46 | #include <proto/task.h> |
| 47 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | /* |
| 49 | * This function recounts the number of usable active and backup servers for |
| 50 | * 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] | 51 | * This function also recomputes the total active and backup weights. However, |
Willy Tarreau | f4cca45 | 2008-03-08 21:42:54 +0100 | [diff] [blame] | 52 | * 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] | 53 | * this. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 54 | */ |
Willy Tarreau | c5d9c80 | 2009-10-01 09:17:05 +0200 | [diff] [blame] | 55 | void recount_servers(struct proxy *px) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 56 | { |
| 57 | struct server *srv; |
| 58 | |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 59 | px->srv_act = px->srv_bck = 0; |
| 60 | px->lbprm.tot_wact = px->lbprm.tot_wbck = 0; |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 61 | px->lbprm.fbck = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 62 | for (srv = px->srv; srv != NULL; srv = srv->next) { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 63 | if (!srv_is_usable(srv->state, srv->eweight)) |
| 64 | continue; |
| 65 | |
| 66 | if (srv->state & SRV_BACKUP) { |
| 67 | if (!px->srv_bck && |
Willy Tarreau | f4cca45 | 2008-03-08 21:42:54 +0100 | [diff] [blame] | 68 | !(px->options & PR_O_USE_ALL_BK)) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 69 | px->lbprm.fbck = srv; |
| 70 | px->srv_bck++; |
| 71 | px->lbprm.tot_wbck += srv->eweight; |
| 72 | } else { |
| 73 | px->srv_act++; |
| 74 | px->lbprm.tot_wact += srv->eweight; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 75 | } |
| 76 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 77 | } |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 78 | |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 79 | /* This function simply updates the backend's tot_weight and tot_used values |
| 80 | * after servers weights have been updated. It is designed to be used after |
| 81 | * recount_servers() or equivalent. |
| 82 | */ |
Willy Tarreau | c5d9c80 | 2009-10-01 09:17:05 +0200 | [diff] [blame] | 83 | void update_backend_weight(struct proxy *px) |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 84 | { |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 85 | if (px->srv_act) { |
| 86 | px->lbprm.tot_weight = px->lbprm.tot_wact; |
| 87 | px->lbprm.tot_used = px->srv_act; |
| 88 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 89 | else if (px->lbprm.fbck) { |
| 90 | /* use only the first backup server */ |
| 91 | px->lbprm.tot_weight = px->lbprm.fbck->eweight; |
| 92 | px->lbprm.tot_used = 1; |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 93 | } |
| 94 | else { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 95 | px->lbprm.tot_weight = px->lbprm.tot_wbck; |
| 96 | px->lbprm.tot_used = px->srv_bck; |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 97 | } |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 98 | } |
| 99 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 100 | /* |
| 101 | * This function tries to find a running server for the proxy <px> following |
| 102 | * the source hash method. Depending on the number of active/backup servers, |
| 103 | * it will either look for active servers, or for backup servers. |
| 104 | * If any server is found, it will be returned. If no valid server is found, |
| 105 | * NULL is returned. |
| 106 | */ |
| 107 | struct server *get_server_sh(struct proxy *px, const char *addr, int len) |
| 108 | { |
| 109 | unsigned int h, l; |
| 110 | |
| 111 | if (px->lbprm.tot_weight == 0) |
| 112 | return NULL; |
| 113 | |
| 114 | l = h = 0; |
| 115 | |
| 116 | /* note: we won't hash if there's only one server left */ |
| 117 | if (px->lbprm.tot_used == 1) |
| 118 | goto hash_done; |
| 119 | |
| 120 | while ((l + sizeof (int)) <= len) { |
| 121 | h ^= ntohl(*(unsigned int *)(&addr[l])); |
| 122 | l += sizeof (int); |
| 123 | } |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 124 | if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP) |
| 125 | h = full_hash(h); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 126 | hash_done: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 127 | if (px->lbprm.algo & BE_LB_LKUP_CHTREE) |
| 128 | return chash_get_server_hash(px, h); |
| 129 | else |
| 130 | return map_get_server_hash(px, h); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | /* |
| 134 | * This function tries to find a running server for the proxy <px> following |
| 135 | * the URI hash method. In order to optimize cache hits, the hash computation |
| 136 | * ends at the question mark. Depending on the number of active/backup servers, |
| 137 | * it will either look for active servers, or for backup servers. |
| 138 | * If any server is found, it will be returned. If no valid server is found, |
| 139 | * NULL is returned. |
| 140 | * |
| 141 | * This code was contributed by Guillaume Dallaire, who also selected this hash |
| 142 | * algorithm out of a tens because it gave him the best results. |
| 143 | * |
| 144 | */ |
| 145 | struct server *get_server_uh(struct proxy *px, char *uri, int uri_len) |
| 146 | { |
| 147 | unsigned long hash = 0; |
| 148 | int c; |
| 149 | int slashes = 0; |
| 150 | |
| 151 | if (px->lbprm.tot_weight == 0) |
| 152 | return NULL; |
| 153 | |
| 154 | /* note: we won't hash if there's only one server left */ |
| 155 | if (px->lbprm.tot_used == 1) |
| 156 | goto hash_done; |
| 157 | |
| 158 | if (px->uri_len_limit) |
| 159 | uri_len = MIN(uri_len, px->uri_len_limit); |
| 160 | |
| 161 | while (uri_len--) { |
| 162 | c = *uri++; |
| 163 | if (c == '/') { |
| 164 | slashes++; |
| 165 | if (slashes == px->uri_dirs_depth1) /* depth+1 */ |
| 166 | break; |
| 167 | } |
| 168 | else if (c == '?') |
| 169 | break; |
| 170 | |
| 171 | hash = c + (hash << 6) + (hash << 16) - hash; |
| 172 | } |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 173 | if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP) |
| 174 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 175 | hash_done: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 176 | if (px->lbprm.algo & BE_LB_LKUP_CHTREE) |
| 177 | return chash_get_server_hash(px, hash); |
| 178 | else |
| 179 | return map_get_server_hash(px, hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 180 | } |
| 181 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 182 | /* |
| 183 | * This function tries to find a running server for the proxy <px> following |
| 184 | * the URL parameter hash method. It looks for a specific parameter in the |
| 185 | * URL and hashes it to compute the server ID. This is useful to optimize |
| 186 | * performance by avoiding bounces between servers in contexts where sessions |
| 187 | * are shared but cookies are not usable. If the parameter is not found, NULL |
| 188 | * is returned. If any server is found, it will be returned. If no valid server |
| 189 | * is found, NULL is returned. |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 190 | */ |
| 191 | struct server *get_server_ph(struct proxy *px, const char *uri, int uri_len) |
| 192 | { |
| 193 | unsigned long hash = 0; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 194 | const char *p; |
| 195 | const char *params; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 196 | int plen; |
| 197 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 198 | /* when tot_weight is 0 then so is srv_count */ |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 199 | if (px->lbprm.tot_weight == 0) |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 200 | return NULL; |
| 201 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 202 | if ((p = memchr(uri, '?', uri_len)) == NULL) |
| 203 | return NULL; |
| 204 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 205 | p++; |
| 206 | |
| 207 | uri_len -= (p - uri); |
| 208 | plen = px->url_param_len; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 209 | params = p; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 210 | |
| 211 | while (uri_len > plen) { |
| 212 | /* Look for the parameter name followed by an equal symbol */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 213 | if (params[plen] == '=') { |
| 214 | if (memcmp(params, px->url_param_name, plen) == 0) { |
| 215 | /* OK, we have the parameter here at <params>, and |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 216 | * the value after the equal sign, at <p> |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 217 | * skip the equal symbol |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 218 | */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 219 | p += plen + 1; |
| 220 | uri_len -= plen + 1; |
| 221 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 222 | while (uri_len && *p != '&') { |
| 223 | hash = *p + (hash << 6) + (hash << 16) - hash; |
| 224 | uri_len--; |
| 225 | p++; |
| 226 | } |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 227 | if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP) |
| 228 | hash = full_hash(hash); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 229 | if (px->lbprm.algo & BE_LB_LKUP_CHTREE) |
| 230 | return chash_get_server_hash(px, hash); |
| 231 | else |
| 232 | return map_get_server_hash(px, hash); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 233 | } |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 234 | } |
| 235 | /* skip to next parameter */ |
| 236 | p = memchr(params, '&', uri_len); |
| 237 | if (!p) |
| 238 | return NULL; |
| 239 | p++; |
| 240 | uri_len -= (p - params); |
| 241 | params = p; |
| 242 | } |
| 243 | return NULL; |
| 244 | } |
| 245 | |
| 246 | /* |
| 247 | * this does the same as the previous server_ph, but check the body contents |
| 248 | */ |
| 249 | struct server *get_server_ph_post(struct session *s) |
| 250 | { |
| 251 | unsigned long hash = 0; |
| 252 | struct http_txn *txn = &s->txn; |
| 253 | struct buffer *req = s->req; |
| 254 | struct http_msg *msg = &txn->req; |
| 255 | struct proxy *px = s->be; |
| 256 | unsigned int plen = px->url_param_len; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 257 | unsigned long len = msg->body_len; |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 258 | const char *params = req->p + msg->sov; |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 259 | const char *p = params; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 260 | |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 261 | if (len > req->i - (msg->sov - msg->som)) |
| 262 | len = req->i - (msg->sov - msg->som); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 263 | |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 264 | if (len == 0) |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 265 | return NULL; |
| 266 | |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 267 | if (px->lbprm.tot_weight == 0) |
| 268 | return NULL; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 269 | |
| 270 | while (len > plen) { |
| 271 | /* Look for the parameter name followed by an equal symbol */ |
| 272 | if (params[plen] == '=') { |
| 273 | if (memcmp(params, px->url_param_name, plen) == 0) { |
| 274 | /* OK, we have the parameter here at <params>, and |
| 275 | * the value after the equal sign, at <p> |
| 276 | * skip the equal symbol |
| 277 | */ |
| 278 | p += plen + 1; |
| 279 | len -= plen + 1; |
| 280 | |
| 281 | while (len && *p != '&') { |
| 282 | if (unlikely(!HTTP_IS_TOKEN(*p))) { |
Willy Tarreau | 157dd63 | 2009-12-06 19:18:09 +0100 | [diff] [blame] | 283 | /* if in a POST, body must be URI encoded or it's not a URI. |
| 284 | * Do not interprete any possible binary data as a parameter. |
| 285 | */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 286 | if (likely(HTTP_IS_LWS(*p))) /* eol, uncertain uri len */ |
| 287 | break; |
| 288 | return NULL; /* oh, no; this is not uri-encoded. |
| 289 | * This body does not contain parameters. |
| 290 | */ |
| 291 | } |
| 292 | hash = *p + (hash << 6) + (hash << 16) - hash; |
| 293 | len--; |
| 294 | p++; |
| 295 | /* should we break if vlen exceeds limit? */ |
| 296 | } |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 297 | if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP) |
| 298 | hash = full_hash(hash); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 299 | if (px->lbprm.algo & BE_LB_LKUP_CHTREE) |
| 300 | return chash_get_server_hash(px, hash); |
| 301 | else |
| 302 | return map_get_server_hash(px, hash); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 303 | } |
| 304 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 305 | /* skip to next parameter */ |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 306 | p = memchr(params, '&', len); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 307 | if (!p) |
| 308 | return NULL; |
| 309 | p++; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 310 | len -= (p - params); |
| 311 | params = p; |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 312 | } |
| 313 | return NULL; |
| 314 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 315 | |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 316 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 317 | /* |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 318 | * This function tries to find a running server for the proxy <px> following |
| 319 | * the Header parameter hash method. It looks for a specific parameter in the |
| 320 | * URL and hashes it to compute the server ID. This is useful to optimize |
| 321 | * performance by avoiding bounces between servers in contexts where sessions |
| 322 | * are shared but cookies are not usable. If the parameter is not found, NULL |
| 323 | * is returned. If any server is found, it will be returned. If no valid server |
| 324 | * is found, NULL is returned. |
| 325 | */ |
| 326 | struct server *get_server_hh(struct session *s) |
| 327 | { |
| 328 | unsigned long hash = 0; |
| 329 | struct http_txn *txn = &s->txn; |
| 330 | struct http_msg *msg = &txn->req; |
| 331 | struct proxy *px = s->be; |
| 332 | unsigned int plen = px->hh_len; |
| 333 | unsigned long len; |
| 334 | struct hdr_ctx ctx; |
| 335 | const char *p; |
| 336 | |
| 337 | /* tot_weight appears to mean srv_count */ |
| 338 | if (px->lbprm.tot_weight == 0) |
| 339 | return NULL; |
| 340 | |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 341 | ctx.idx = 0; |
| 342 | |
| 343 | /* if the message is chunked, we skip the chunk size, but use the value as len */ |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 344 | http_find_header2(px->hh_name, plen, s->req->p + msg->sol, &txn->hdr_idx, &ctx); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 345 | |
| 346 | /* if the header is not found or empty, let's fallback to round robin */ |
| 347 | if (!ctx.idx || !ctx.vlen) |
| 348 | return NULL; |
| 349 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 350 | /* note: we won't hash if there's only one server left */ |
| 351 | if (px->lbprm.tot_used == 1) |
| 352 | goto hash_done; |
| 353 | |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 354 | /* Found a the hh_name in the headers. |
| 355 | * we will compute the hash based on this value ctx.val. |
| 356 | */ |
| 357 | len = ctx.vlen; |
| 358 | p = (char *)ctx.line + ctx.val; |
| 359 | if (!px->hh_match_domain) { |
| 360 | while (len) { |
| 361 | hash = *p + (hash << 6) + (hash << 16) - hash; |
| 362 | len--; |
| 363 | p++; |
| 364 | } |
| 365 | } else { |
| 366 | int dohash = 0; |
| 367 | p += len - 1; |
| 368 | /* special computation, use only main domain name, not tld/host |
| 369 | * going back from the end of string, start hashing at first |
| 370 | * dot stop at next. |
| 371 | * This is designed to work with the 'Host' header, and requires |
| 372 | * a special option to activate this. |
| 373 | */ |
| 374 | while (len) { |
| 375 | if (*p == '.') { |
| 376 | if (!dohash) |
| 377 | dohash = 1; |
| 378 | else |
| 379 | break; |
| 380 | } else { |
| 381 | if (dohash) |
| 382 | hash = *p + (hash << 6) + (hash << 16) - hash; |
| 383 | } |
| 384 | len--; |
| 385 | p--; |
| 386 | } |
| 387 | } |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 388 | if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP) |
| 389 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 390 | hash_done: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 391 | if (px->lbprm.algo & BE_LB_LKUP_CHTREE) |
| 392 | return chash_get_server_hash(px, hash); |
| 393 | else |
| 394 | return map_get_server_hash(px, hash); |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 395 | } |
| 396 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 397 | /* RDP Cookie HASH. */ |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 398 | struct server *get_server_rch(struct session *s) |
| 399 | { |
| 400 | unsigned long hash = 0; |
| 401 | struct proxy *px = s->be; |
| 402 | unsigned long len; |
| 403 | const char *p; |
| 404 | int ret; |
| 405 | struct acl_expr expr; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 406 | struct sample smp; |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 407 | struct arg args[2]; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 408 | |
| 409 | /* tot_weight appears to mean srv_count */ |
| 410 | if (px->lbprm.tot_weight == 0) |
| 411 | return NULL; |
| 412 | |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 413 | memset(&expr, 0, sizeof(expr)); |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 414 | memset(&smp, 0, sizeof(smp)); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 415 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 416 | args[0].type = ARGT_STR; |
| 417 | args[0].data.str.str = px->hh_name; |
| 418 | args[0].data.str.len = px->hh_len; |
| 419 | args[1].type = ARGT_STOP; |
| 420 | |
| 421 | expr.args = args; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 422 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 423 | ret = acl_fetch_rdp_cookie(px, s, NULL, ACL_DIR_REQ, &expr, &smp); |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 424 | len = smp.data.str.len; |
Willy Tarreau | 664092c | 2011-12-16 19:11:42 +0100 | [diff] [blame] | 425 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 426 | if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || len == 0) |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 427 | return NULL; |
| 428 | |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 429 | /* note: we won't hash if there's only one server left */ |
| 430 | if (px->lbprm.tot_used == 1) |
| 431 | goto hash_done; |
| 432 | |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 433 | /* Found a the hh_name in the headers. |
| 434 | * we will compute the hash based on this value ctx.val. |
| 435 | */ |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 436 | p = smp.data.str.str; |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 437 | while (len) { |
| 438 | hash = *p + (hash << 6) + (hash << 16) - hash; |
| 439 | len--; |
| 440 | p++; |
| 441 | } |
Willy Tarreau | 798a39c | 2010-11-24 15:04:29 +0100 | [diff] [blame] | 442 | if ((px->lbprm.algo & BE_LB_HASH_TYPE) != BE_LB_HASH_MAP) |
| 443 | hash = full_hash(hash); |
Willy Tarreau | 39c9ba7 | 2009-10-01 21:11:15 +0200 | [diff] [blame] | 444 | hash_done: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 445 | if (px->lbprm.algo & BE_LB_LKUP_CHTREE) |
| 446 | return chash_get_server_hash(px, hash); |
| 447 | else |
| 448 | return map_get_server_hash(px, hash); |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 449 | } |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 450 | |
| 451 | /* |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 452 | * This function applies the load-balancing algorithm to the session, as |
| 453 | * defined by the backend it is assigned to. The session is then marked as |
| 454 | * 'assigned'. |
| 455 | * |
| 456 | * This function MAY NOT be called with SN_ASSIGNED already set. If the session |
| 457 | * 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] | 458 | * 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] | 459 | * The function tries to keep the original connection slot if it reconnects to |
| 460 | * the same server, otherwise it releases it and tries to offer it. |
| 461 | * |
| 462 | * It is illegal to call this function with a session in a queue. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 463 | * |
| 464 | * It may return : |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 465 | * SRV_STATUS_OK if everything is OK. ->srv and ->target are assigned. |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 466 | * SRV_STATUS_NOSRV if no server is available. Session is not ASSIGNED |
| 467 | * SRV_STATUS_FULL if all servers are saturated. Session is not ASSIGNED |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 468 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 469 | * |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 470 | * Upon successful return, the session flag SN_ASSIGNED is set to indicate that |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 471 | * it does not need to be called anymore. This means that target_srv(&s->target) |
| 472 | * can be trusted in balance and direct modes. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 473 | * |
| 474 | */ |
| 475 | |
| 476 | int assign_server(struct session *s) |
| 477 | { |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 478 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 479 | struct server *conn_slot; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 480 | struct server *srv, *prev_srv; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 481 | int err; |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 482 | |
Simon Horman | 8effd3d | 2011-08-13 08:03:52 +0900 | [diff] [blame] | 483 | DPRINTF(stderr,"assign_server : s=%p\n",s); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 484 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 485 | err = SRV_STATUS_INTERNAL; |
| 486 | if (unlikely(s->pend_pos || s->flags & SN_ASSIGNED)) |
| 487 | goto out_err; |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 488 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 489 | prev_srv = target_srv(&s->target); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 490 | conn_slot = s->srv_conn; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 491 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 492 | /* We have to release any connection slot before applying any LB algo, |
| 493 | * otherwise we may erroneously end up with no available slot. |
| 494 | */ |
| 495 | if (conn_slot) |
| 496 | sess_change_server(s, NULL); |
| 497 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 498 | /* We will now try to find the good server and store it into <target_srv(&s->target)>. |
| 499 | * Note that <target_srv(&s->target)> may be NULL in case of dispatch or proxy mode, |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 500 | * as well as if no server is available (check error code). |
| 501 | */ |
Willy Tarreau | 1a20a5d | 2007-11-01 21:08:19 +0100 | [diff] [blame] | 502 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 503 | srv = NULL; |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 504 | clear_target(&s->target); |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 505 | |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 506 | if (s->be->lbprm.algo & BE_LB_KIND) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 507 | /* we must check if we have at least one server available */ |
| 508 | if (!s->be->lbprm.tot_weight) { |
| 509 | err = SRV_STATUS_NOSRV; |
| 510 | goto out; |
| 511 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 512 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 513 | /* First check whether we need to fetch some data or simply call |
| 514 | * the LB lookup function. Only the hashing functions will need |
| 515 | * some input data in fact, and will support multiple algorithms. |
| 516 | */ |
| 517 | switch (s->be->lbprm.algo & BE_LB_LKUP) { |
| 518 | case BE_LB_LKUP_RRTREE: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 519 | srv = fwrr_get_next_server(s->be, prev_srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 520 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 521 | |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 522 | case BE_LB_LKUP_FSTREE: |
| 523 | srv = fas_get_next_server(s->be, prev_srv); |
| 524 | break; |
| 525 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 526 | case BE_LB_LKUP_LCTREE: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 527 | srv = fwlc_get_next_server(s->be, prev_srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 528 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 529 | |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 530 | case BE_LB_LKUP_CHTREE: |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 531 | case BE_LB_LKUP_MAP: |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 532 | if ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR) { |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 533 | if (s->be->lbprm.algo & BE_LB_LKUP_CHTREE) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 534 | srv = chash_get_next_server(s->be, prev_srv); |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 535 | else |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 536 | srv = map_get_server_rr(s->be, prev_srv); |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 537 | break; |
| 538 | } |
| 539 | 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] | 540 | /* unknown balancing algorithm */ |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 541 | err = SRV_STATUS_INTERNAL; |
| 542 | goto out; |
| 543 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 544 | |
| 545 | switch (s->be->lbprm.algo & BE_LB_PARM) { |
| 546 | case BE_LB_HASH_SRC: |
Willy Tarreau | 5dd7fa1 | 2012-03-31 19:53:37 +0200 | [diff] [blame] | 547 | if (s->req->prod->addr.from.ss_family == AF_INET) { |
| 548 | srv = get_server_sh(s->be, |
| 549 | (void *)&((struct sockaddr_in *)&s->req->prod->addr.from)->sin_addr, |
| 550 | 4); |
| 551 | } |
| 552 | else if (s->req->prod->addr.from.ss_family == AF_INET6) { |
| 553 | srv = get_server_sh(s->be, |
| 554 | (void *)&((struct sockaddr_in6 *)&s->req->prod->addr.from)->sin6_addr, |
| 555 | 16); |
| 556 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 557 | else { |
| 558 | /* unknown IP family */ |
| 559 | err = SRV_STATUS_INTERNAL; |
| 560 | goto out; |
| 561 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 562 | break; |
| 563 | |
| 564 | case BE_LB_HASH_URI: |
| 565 | /* URI hashing */ |
Willy Tarreau | eaed5a1 | 2010-03-24 14:54:30 +0100 | [diff] [blame] | 566 | if (s->txn.req.msg_state < HTTP_MSG_BODY) |
| 567 | break; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 568 | srv = get_server_uh(s->be, |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 569 | s->req->p + s->txn.req.sol + s->txn.req.sl.rq.u, |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 570 | s->txn.req.sl.rq.u_l); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 571 | break; |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 572 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 573 | case BE_LB_HASH_PRM: |
| 574 | /* URL Parameter hashing */ |
Willy Tarreau | eaed5a1 | 2010-03-24 14:54:30 +0100 | [diff] [blame] | 575 | if (s->txn.req.msg_state < HTTP_MSG_BODY) |
| 576 | break; |
Willy Tarreau | 61a21a3 | 2011-03-01 20:35:49 +0100 | [diff] [blame] | 577 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 578 | srv = get_server_ph(s->be, |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 579 | s->req->p + s->txn.req.sol + s->txn.req.sl.rq.u, |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 580 | s->txn.req.sl.rq.u_l); |
Willy Tarreau | 61a21a3 | 2011-03-01 20:35:49 +0100 | [diff] [blame] | 581 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 582 | if (!srv && s->txn.meth == HTTP_METH_POST) |
| 583 | srv = get_server_ph_post(s); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 584 | break; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 585 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 586 | case BE_LB_HASH_HDR: |
| 587 | /* Header Parameter hashing */ |
Willy Tarreau | eaed5a1 | 2010-03-24 14:54:30 +0100 | [diff] [blame] | 588 | if (s->txn.req.msg_state < HTTP_MSG_BODY) |
| 589 | break; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 590 | srv = get_server_hh(s); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 591 | break; |
| 592 | |
| 593 | case BE_LB_HASH_RDP: |
| 594 | /* RDP Cookie hashing */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 595 | srv = get_server_rch(s); |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 596 | break; |
| 597 | |
| 598 | default: |
| 599 | /* unknown balancing algorithm */ |
| 600 | err = SRV_STATUS_INTERNAL; |
| 601 | goto out; |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 602 | } |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 603 | |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 604 | /* If the hashing parameter was not found, let's fall |
| 605 | * back to round robin on the map. |
| 606 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 607 | if (!srv) { |
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 | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 612 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 613 | |
| 614 | /* end of map-based LB */ |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 615 | break; |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 616 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 617 | default: |
| 618 | /* unknown balancing algorithm */ |
| 619 | err = SRV_STATUS_INTERNAL; |
| 620 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 621 | } |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 622 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 623 | if (!srv) { |
Willy Tarreau | da76f4f | 2009-10-03 12:36:05 +0200 | [diff] [blame] | 624 | err = SRV_STATUS_FULL; |
| 625 | goto out; |
| 626 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 627 | else if (srv != prev_srv) { |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 628 | s->be->be_counters.cum_lbconn++; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 629 | srv->counters.cum_lbconn++; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 630 | } |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 631 | set_target_server(&s->target, srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 632 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 633 | else if (s->be->options & (PR_O_DISPATCH | PR_O_TRANSP)) { |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 634 | set_target_proxy(&s->target, s->be); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 635 | } |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 636 | else if ((s->be->options & PR_O_HTTP_PROXY) && |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 637 | is_addr(&s->req->cons->addr.to)) { |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 638 | /* in proxy mode, we need a valid destination address */ |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 639 | set_target_proxy(&s->target, s->be); |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 640 | } |
| 641 | else { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 642 | err = SRV_STATUS_NOSRV; |
| 643 | goto out; |
| 644 | } |
| 645 | |
| 646 | s->flags |= SN_ASSIGNED; |
| 647 | err = SRV_STATUS_OK; |
| 648 | out: |
| 649 | |
| 650 | /* Either we take back our connection slot, or we offer it to someone |
| 651 | * else if we don't need it anymore. |
| 652 | */ |
| 653 | if (conn_slot) { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 654 | if (conn_slot == srv) { |
| 655 | sess_change_server(s, srv); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 656 | } else { |
| 657 | if (may_dequeue_tasks(conn_slot, s->be)) |
| 658 | process_srv_queue(conn_slot); |
| 659 | } |
| 660 | } |
| 661 | |
| 662 | out_err: |
| 663 | return err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | |
| 667 | /* |
| 668 | * This function assigns a server address to a session, and sets SN_ADDR_SET. |
| 669 | * The address is taken from the currently assigned server, or from the |
| 670 | * dispatch or transparent address. |
| 671 | * |
| 672 | * It may return : |
| 673 | * SRV_STATUS_OK if everything is OK. |
| 674 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 675 | * |
| 676 | * Upon successful return, the session flag SN_ADDR_SET is set. This flag is |
| 677 | * not cleared, so it's to the caller to clear it if required. |
| 678 | * |
| 679 | */ |
| 680 | int assign_server_address(struct session *s) |
| 681 | { |
| 682 | #ifdef DEBUG_FULL |
| 683 | fprintf(stderr,"assign_server_address : s=%p\n",s); |
| 684 | #endif |
| 685 | |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 686 | if ((s->flags & SN_DIRECT) || (s->be->lbprm.algo & BE_LB_KIND)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 687 | /* A server is necessarily known for this session */ |
| 688 | if (!(s->flags & SN_ASSIGNED)) |
| 689 | return SRV_STATUS_INTERNAL; |
| 690 | |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 691 | s->req->cons->addr.to = target_srv(&s->target)->addr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 692 | |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 693 | if (!is_addr(&s->req->cons->addr.to)) { |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 694 | /* if the server has no address, we use the same address |
| 695 | * the client asked, which is handy for remapping ports |
| 696 | * locally on multiple addresses at once. |
| 697 | */ |
Willy Tarreau | 9b061e3 | 2012-04-07 18:03:52 +0200 | [diff] [blame] | 698 | if (!(s->be->options & PR_O_TRANSP)) |
| 699 | stream_sock_get_to_addr(s->req->prod); |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 700 | |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 701 | if (s->req->prod->addr.to.ss_family == AF_INET) { |
| 702 | ((struct sockaddr_in *)&s->req->cons->addr.to)->sin_addr = ((struct sockaddr_in *)&s->req->prod->addr.to)->sin_addr; |
| 703 | } else if (s->req->prod->addr.to.ss_family == AF_INET6) { |
| 704 | ((struct sockaddr_in6 *)&s->req->cons->addr.to)->sin6_addr = ((struct sockaddr_in6 *)&s->req->prod->addr.to)->sin6_addr; |
Emeric Brun | ec810d1 | 2010-10-22 16:36:33 +0200 | [diff] [blame] | 705 | } |
Willy Tarreau | d669a4f | 2010-07-13 14:49:50 +0200 | [diff] [blame] | 706 | } |
| 707 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 708 | /* if this server remaps proxied ports, we'll use |
| 709 | * the port the client connected to with an offset. */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 710 | if (target_srv(&s->target)->state & SRV_MAPPORTS) { |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 711 | int base_port; |
| 712 | |
Willy Tarreau | 9b061e3 | 2012-04-07 18:03:52 +0200 | [diff] [blame] | 713 | if (!(s->be->options & PR_O_TRANSP)) |
| 714 | stream_sock_get_to_addr(s->req->prod); |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 715 | |
| 716 | /* First, retrieve the port from the incoming connection */ |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 717 | base_port = get_host_port(&s->req->prod->addr.to); |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 718 | |
| 719 | /* Second, assign the outgoing connection's port */ |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 720 | base_port += get_host_port(&s->req->cons->addr.to); |
| 721 | set_host_port(&s->req->cons->addr.to, base_port); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 722 | } |
| 723 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 724 | else if (s->be->options & PR_O_DISPATCH) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 725 | /* connect to the defined dispatch addr */ |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 726 | s->req->cons->addr.to = s->be->dispatch_addr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 727 | } |
Willy Tarreau | 4b1f859 | 2008-12-23 23:13:55 +0100 | [diff] [blame] | 728 | else if (s->be->options & PR_O_TRANSP) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 729 | /* in transparent mode, use the original dest addr if no dispatch specified */ |
Willy Tarreau | 9b061e3 | 2012-04-07 18:03:52 +0200 | [diff] [blame] | 730 | stream_sock_get_to_addr(s->req->prod); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 731 | |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 732 | if (s->req->prod->addr.to.ss_family == AF_INET || s->req->prod->addr.to.ss_family == AF_INET6) { |
| 733 | memcpy(&s->req->cons->addr.to, &s->req->prod->addr.to, MIN(sizeof(s->req->cons->addr.to), sizeof(s->req->prod->addr.to))); |
Emeric Brun | ec810d1 | 2010-10-22 16:36:33 +0200 | [diff] [blame] | 734 | } |
Willy Tarreau | bd41428 | 2008-01-19 13:46:35 +0100 | [diff] [blame] | 735 | /* when we support IPv6 on the backend, we may add other tests */ |
| 736 | //qfprintf(stderr, "Cannot get original server address.\n"); |
| 737 | //return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 738 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 739 | else if (s->be->options & PR_O_HTTP_PROXY) { |
| 740 | /* If HTTP PROXY option is set, then server is already assigned |
| 741 | * during incoming client request parsing. */ |
| 742 | } |
Willy Tarreau | 1a1158b | 2007-01-20 11:07:46 +0100 | [diff] [blame] | 743 | else { |
| 744 | /* no server and no LB algorithm ! */ |
| 745 | return SRV_STATUS_INTERNAL; |
| 746 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 747 | |
| 748 | s->flags |= SN_ADDR_SET; |
| 749 | return SRV_STATUS_OK; |
| 750 | } |
| 751 | |
| 752 | |
| 753 | /* This function assigns a server to session <s> if required, and can add the |
| 754 | * connection to either the assigned server's queue or to the proxy's queue. |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 755 | * If ->srv_conn is set, the session is first released from the server. |
| 756 | * It may also be called with SN_DIRECT and/or SN_ASSIGNED though. It will |
| 757 | * be called before any connection and after any retry or redispatch occurs. |
| 758 | * |
| 759 | * It is not allowed to call this function with a session in a queue. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 760 | * |
| 761 | * Returns : |
| 762 | * |
| 763 | * SRV_STATUS_OK if everything is OK. |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 764 | * SRV_STATUS_NOSRV if no server is available. target_srv(&s->target) = NULL. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 765 | * SRV_STATUS_QUEUED if the connection has been queued. |
| 766 | * SRV_STATUS_FULL if the server(s) is/are saturated and the |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 767 | * connection could not be queued at the server's, |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 768 | * which may be NULL if we queue on the backend. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 769 | * SRV_STATUS_INTERNAL for other unrecoverable errors. |
| 770 | * |
| 771 | */ |
| 772 | int assign_server_and_queue(struct session *s) |
| 773 | { |
| 774 | struct pendconn *p; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 775 | struct server *srv; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 776 | int err; |
| 777 | |
| 778 | if (s->pend_pos) |
| 779 | return SRV_STATUS_INTERNAL; |
| 780 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 781 | err = SRV_STATUS_OK; |
| 782 | if (!(s->flags & SN_ASSIGNED)) { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 783 | struct server *prev_srv = target_srv(&s->target); |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 784 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 785 | err = assign_server(s); |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 786 | if (prev_srv) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 787 | /* This session was previously assigned to a server. We have to |
| 788 | * update the session's and the server's stats : |
| 789 | * - if the server changed : |
| 790 | * - set TX_CK_DOWN if txn.flags was TX_CK_VALID |
| 791 | * - set SN_REDISP if it was successfully redispatched |
| 792 | * - increment srv->redispatches and be->redispatches |
| 793 | * - if the server remained the same : update retries. |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 794 | */ |
| 795 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 796 | if (prev_srv != target_srv(&s->target)) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 797 | if ((s->txn.flags & TX_CK_MASK) == TX_CK_VALID) { |
| 798 | s->txn.flags &= ~TX_CK_MASK; |
| 799 | s->txn.flags |= TX_CK_DOWN; |
| 800 | } |
| 801 | s->flags |= SN_REDISP; |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 802 | prev_srv->counters.redispatches++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 803 | s->be->be_counters.redispatches++; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 804 | } else { |
Willy Tarreau | 3d80d91 | 2011-03-10 11:42:13 +0100 | [diff] [blame] | 805 | prev_srv->counters.retries++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 806 | s->be->be_counters.retries++; |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 807 | } |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 808 | } |
| 809 | } |
| 810 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 811 | switch (err) { |
| 812 | case SRV_STATUS_OK: |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 813 | /* we have SN_ASSIGNED set */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 814 | srv = target_srv(&s->target); |
| 815 | if (!srv) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 816 | return SRV_STATUS_OK; /* dispatch or proxy mode */ |
| 817 | |
| 818 | /* 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] | 819 | if (s->srv_conn == srv) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 820 | return SRV_STATUS_OK; |
| 821 | |
| 822 | /* OK, this session already has an assigned server, but no |
| 823 | * connection slot yet. Either it is a redispatch, or it was |
| 824 | * assigned from persistence information (direct mode). |
| 825 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 826 | if ((s->flags & SN_REDIRECTABLE) && srv->rdr_len) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 827 | /* server scheduled for redirection, and already assigned. We |
| 828 | * don't want to go further nor check the queue. |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 829 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 830 | sess_change_server(s, srv); /* not really needed in fact */ |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 831 | return SRV_STATUS_OK; |
| 832 | } |
| 833 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 834 | /* We might have to queue this session if the assigned server is full. |
| 835 | * We know we have to queue it into the server's queue, so if a maxqueue |
| 836 | * is set on the server, we must also check that the server's queue is |
| 837 | * not full, in which case we have to return FULL. |
| 838 | */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 839 | if (srv->maxconn && |
| 840 | (srv->nbpend || srv->served >= srv_dynamic_maxconn(srv))) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 841 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 842 | if (srv->maxqueue > 0 && srv->nbpend >= srv->maxqueue) |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 843 | return SRV_STATUS_FULL; |
| 844 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 845 | p = pendconn_add(s); |
| 846 | if (p) |
| 847 | return SRV_STATUS_QUEUED; |
| 848 | else |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 849 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 850 | } |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 851 | |
| 852 | /* OK, we can use this server. Let's reserve our place */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 853 | sess_change_server(s, srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 854 | return SRV_STATUS_OK; |
| 855 | |
| 856 | case SRV_STATUS_FULL: |
| 857 | /* queue this session into the proxy's queue */ |
| 858 | p = pendconn_add(s); |
| 859 | if (p) |
| 860 | return SRV_STATUS_QUEUED; |
| 861 | else |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 862 | return SRV_STATUS_INTERNAL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 863 | |
| 864 | case SRV_STATUS_NOSRV: |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 865 | return err; |
| 866 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 867 | case SRV_STATUS_INTERNAL: |
| 868 | return err; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 869 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 870 | default: |
| 871 | return SRV_STATUS_INTERNAL; |
| 872 | } |
Willy Tarreau | 5b6995c | 2008-01-13 16:31:17 +0100 | [diff] [blame] | 873 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 874 | |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 875 | /* If an explicit source binding is specified on the server and/or backend, and |
| 876 | * this source makes use of the transparent proxy, then it is extracted now and |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 877 | * assigned to the session's req->cons->addr.from entry. |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 878 | */ |
| 879 | static void assign_tproxy_address(struct session *s) |
| 880 | { |
| 881 | #if defined(CONFIG_HAP_CTTPROXY) || defined(CONFIG_HAP_LINUX_TPROXY) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 882 | struct server *srv = target_srv(&s->target); |
| 883 | |
| 884 | if (srv && srv->state & SRV_BIND_SRC) { |
| 885 | switch (srv->state & SRV_TPROXY_MASK) { |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 886 | case SRV_TPROXY_ADDR: |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 887 | s->req->cons->addr.from = srv->tproxy_addr; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 888 | break; |
| 889 | case SRV_TPROXY_CLI: |
| 890 | case SRV_TPROXY_CIP: |
Emeric Brun | ec810d1 | 2010-10-22 16:36:33 +0200 | [diff] [blame] | 891 | /* FIXME: what can we do if the client connects in IPv6 or unix socket ? */ |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 892 | s->req->cons->addr.from = s->req->prod->addr.from; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 893 | break; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 894 | case SRV_TPROXY_DYN: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 895 | if (srv->bind_hdr_occ) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 896 | char *vptr; |
| 897 | int vlen; |
| 898 | |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 899 | /* bind to the IP in a header */ |
Willy Tarreau | 5dc1e98 | 2011-12-16 21:25:11 +0100 | [diff] [blame] | 900 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_family = AF_INET; |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 901 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_port = 0; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 902 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr = 0; |
| 903 | |
| 904 | if (http_get_hdr(&s->txn.req, srv->bind_hdr_name, srv->bind_hdr_len, |
| 905 | &s->txn.hdr_idx, srv->bind_hdr_occ, NULL, &vptr, &vlen)) { |
| 906 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr = |
| 907 | htonl(inetaddr_host_lim(vptr, vptr + vlen)); |
| 908 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 909 | } |
| 910 | break; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 911 | default: |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 912 | memset(&s->req->cons->addr.from, 0, sizeof(s->req->cons->addr.from)); |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 913 | } |
| 914 | } |
| 915 | else if (s->be->options & PR_O_BIND_SRC) { |
| 916 | switch (s->be->options & PR_O_TPXY_MASK) { |
| 917 | case PR_O_TPXY_ADDR: |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 918 | s->req->cons->addr.from = s->be->tproxy_addr; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 919 | break; |
| 920 | case PR_O_TPXY_CLI: |
| 921 | case PR_O_TPXY_CIP: |
Emeric Brun | ec810d1 | 2010-10-22 16:36:33 +0200 | [diff] [blame] | 922 | /* FIXME: what can we do if the client connects in IPv6 or socket unix? */ |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 923 | s->req->cons->addr.from = s->req->prod->addr.from; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 924 | break; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 925 | case PR_O_TPXY_DYN: |
| 926 | if (s->be->bind_hdr_occ) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 927 | char *vptr; |
| 928 | int vlen; |
| 929 | |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 930 | /* bind to the IP in a header */ |
Willy Tarreau | 5dc1e98 | 2011-12-16 21:25:11 +0100 | [diff] [blame] | 931 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_family = AF_INET; |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 932 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_port = 0; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 933 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr = 0; |
| 934 | |
| 935 | if (http_get_hdr(&s->txn.req, s->be->bind_hdr_name, s->be->bind_hdr_len, |
| 936 | &s->txn.hdr_idx, s->be->bind_hdr_occ, NULL, &vptr, &vlen)) { |
| 937 | ((struct sockaddr_in *)&s->req->cons->addr.from)->sin_addr.s_addr = |
| 938 | htonl(inetaddr_host_lim(vptr, vptr + vlen)); |
| 939 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 940 | } |
| 941 | break; |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 942 | default: |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 943 | memset(&s->req->cons->addr.from, 0, sizeof(s->req->cons->addr.from)); |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 944 | } |
| 945 | } |
| 946 | #endif |
| 947 | } |
| 948 | |
| 949 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 950 | /* |
| 951 | * This function initiates a connection to the server assigned to this session |
Willy Tarreau | 6471afb | 2011-09-23 10:54:59 +0200 | [diff] [blame] | 952 | * (s->target, s->req->cons->addr.to). It will assign a server if none |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 953 | * is assigned yet. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 954 | * It can return one of : |
| 955 | * - SN_ERR_NONE if everything's OK |
| 956 | * - SN_ERR_SRVTO if there are no more servers |
| 957 | * - SN_ERR_SRVCL if the connection was refused by the server |
| 958 | * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn) |
| 959 | * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...) |
| 960 | * - SN_ERR_INTERNAL for any other purely internal errors |
| 961 | * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted. |
| 962 | */ |
| 963 | int connect_server(struct session *s) |
| 964 | { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 965 | struct server *srv; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 966 | int err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 967 | |
| 968 | if (!(s->flags & SN_ADDR_SET)) { |
| 969 | err = assign_server_address(s); |
| 970 | if (err != SRV_STATUS_OK) |
| 971 | return SN_ERR_INTERNAL; |
| 972 | } |
| 973 | |
Willy Tarreau | a8f55d5 | 2010-05-31 17:44:19 +0200 | [diff] [blame] | 974 | /* Prepare the stream interface for a TCP connection. Later |
| 975 | * we may assign a protocol-specific connect() function. |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 976 | * NOTE: when we later support HTTP keep-alive, we'll have to |
| 977 | * decide here if we can reuse the connection by comparing the |
| 978 | * session's freshly assigned target with the stream interface's. |
Willy Tarreau | a8f55d5 | 2010-05-31 17:44:19 +0200 | [diff] [blame] | 979 | */ |
| 980 | stream_sock_prepare_interface(s->req->cons); |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 981 | s->req->cons->connect = tcp_connect_server; |
Willy Tarreau | 9b061e3 | 2012-04-07 18:03:52 +0200 | [diff] [blame] | 982 | s->req->cons->get_src = getsockname; |
| 983 | s->req->cons->get_dst = getpeername; |
Willy Tarreau | 7b7a8e9 | 2011-03-27 19:53:06 +0200 | [diff] [blame] | 984 | /* the target was only on the session, assign it to the SI now */ |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 985 | copy_target(&s->req->cons->target, &s->target); |
Willy Tarreau | d88edf2 | 2009-06-14 15:48:17 +0200 | [diff] [blame] | 986 | |
Willy Tarreau | 5ab04ec | 2011-03-20 10:32:26 +0100 | [diff] [blame] | 987 | /* process the case where the server requires the PROXY protocol to be sent */ |
| 988 | s->req->cons->send_proxy_ofs = 0; |
| 989 | if (s->target.type == TARG_TYPE_SERVER && (s->target.ptr.s->state & SRV_SEND_PROXY)) { |
| 990 | s->req->cons->send_proxy_ofs = 1; /* must compute size */ |
Willy Tarreau | 9b061e3 | 2012-04-07 18:03:52 +0200 | [diff] [blame] | 991 | stream_sock_get_to_addr(s->req->prod); |
Willy Tarreau | 5ab04ec | 2011-03-20 10:32:26 +0100 | [diff] [blame] | 992 | } |
| 993 | |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 994 | assign_tproxy_address(s); |
| 995 | |
William Lallemand | b7ff6a3 | 2012-03-02 14:35:21 +0100 | [diff] [blame] | 996 | /* flag for logging source ip/port */ |
| 997 | if (s->fe->options2 & PR_O2_SRC_ADDR) |
| 998 | s->req->cons->flags |= SI_FL_SRC_ADDR; |
| 999 | |
Willy Tarreau | ac82540 | 2011-03-04 22:04:29 +0100 | [diff] [blame] | 1000 | err = s->req->cons->connect(s->req->cons); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1001 | |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 1002 | if (err != SN_ERR_NONE) |
| 1003 | return err; |
Willy Tarreau | 788e284 | 2008-08-26 13:25:39 +0200 | [diff] [blame] | 1004 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1005 | srv = target_srv(&s->target); |
| 1006 | if (srv) { |
Willy Tarreau | 1e62de6 | 2008-11-11 20:20:02 +0100 | [diff] [blame] | 1007 | s->flags |= SN_CURR_SESS; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1008 | srv->cur_sess++; |
| 1009 | if (srv->cur_sess > srv->counters.cur_sess_max) |
| 1010 | srv->counters.cur_sess_max = srv->cur_sess; |
Willy Tarreau | 5140623 | 2008-03-10 22:04:20 +0100 | [diff] [blame] | 1011 | if (s->be->lbprm.server_take_conn) |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1012 | s->be->lbprm.server_take_conn(srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1013 | } |
| 1014 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1015 | return SN_ERR_NONE; /* connection is OK */ |
| 1016 | } |
| 1017 | |
| 1018 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1019 | /* This function performs the "redispatch" part of a connection attempt. It |
| 1020 | * will assign a server if required, queue the connection if required, and |
| 1021 | * handle errors that might arise at this level. It can change the server |
| 1022 | * state. It will return 1 if it encounters an error, switches the server |
| 1023 | * state, or has to queue a connection. Otherwise, it will return 0 indicating |
| 1024 | * that the connection is ready to use. |
| 1025 | */ |
| 1026 | |
| 1027 | int srv_redispatch_connect(struct session *t) |
| 1028 | { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1029 | struct server *srv; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1030 | int conn_err; |
| 1031 | |
| 1032 | /* We know that we don't have any connection pending, so we will |
| 1033 | * try to get a new one, and wait in this state if it's queued |
| 1034 | */ |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1035 | redispatch: |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1036 | conn_err = assign_server_and_queue(t); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1037 | srv = target_srv(&t->target); |
| 1038 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1039 | switch (conn_err) { |
| 1040 | case SRV_STATUS_OK: |
| 1041 | break; |
| 1042 | |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1043 | case SRV_STATUS_FULL: |
| 1044 | /* The server has reached its maxqueue limit. Either PR_O_REDISP is set |
| 1045 | * and we can redispatch to another server, or it is not and we return |
| 1046 | * 503. This only makes sense in DIRECT mode however, because normal LB |
| 1047 | * algorithms would never select such a server, and hash algorithms |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1048 | * would bring us on the same server again. Note that t->target is set |
| 1049 | * in this case. |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1050 | */ |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 1051 | if (((t->flags & (SN_DIRECT|SN_FORCE_PRST)) == SN_DIRECT) && |
| 1052 | (t->be->options & PR_O_REDISP)) { |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1053 | t->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1054 | goto redispatch; |
| 1055 | } |
| 1056 | |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1057 | if (!t->req->cons->err_type) { |
| 1058 | t->req->cons->err_type = SI_ET_QUEUE_ERR; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1059 | t->req->cons->err_loc = srv; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1060 | } |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1061 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1062 | srv->counters.failed_conns++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 1063 | t->be->be_counters.failed_conns++; |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 1064 | return 1; |
| 1065 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1066 | case SRV_STATUS_NOSRV: |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1067 | /* note: it is guaranteed that srv == NULL here */ |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1068 | if (!t->req->cons->err_type) { |
| 1069 | t->req->cons->err_type = SI_ET_CONN_ERR; |
| 1070 | t->req->cons->err_loc = NULL; |
| 1071 | } |
Krzysztof Piotr Oledzki | 5a329cf | 2008-02-22 03:50:19 +0100 | [diff] [blame] | 1072 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 1073 | t->be->be_counters.failed_conns++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1074 | return 1; |
| 1075 | |
| 1076 | case SRV_STATUS_QUEUED: |
Willy Tarreau | 3537467 | 2008-09-03 18:11:02 +0200 | [diff] [blame] | 1077 | t->req->cons->exp = tick_add_ifset(now_ms, t->be->timeout.queue); |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1078 | t->req->cons->state = SI_ST_QUE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1079 | /* do nothing else and do not wake any other session up */ |
| 1080 | return 1; |
| 1081 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1082 | case SRV_STATUS_INTERNAL: |
| 1083 | default: |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1084 | if (!t->req->cons->err_type) { |
| 1085 | t->req->cons->err_type = SI_ET_CONN_OTHER; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1086 | t->req->cons->err_loc = srv; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 1087 | } |
| 1088 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1089 | if (srv) |
| 1090 | srv_inc_sess_ctr(srv); |
| 1091 | if (srv) |
| 1092 | srv->counters.failed_conns++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 1093 | t->be->be_counters.failed_conns++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1094 | |
| 1095 | /* release other sessions waiting for this server */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1096 | if (may_dequeue_tasks(srv, t->be)) |
| 1097 | process_srv_queue(srv); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1098 | return 1; |
| 1099 | } |
| 1100 | /* if we get here, it's because we got SRV_STATUS_OK, which also |
| 1101 | * means that the connection has not been queued. |
| 1102 | */ |
| 1103 | return 0; |
| 1104 | } |
| 1105 | |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1106 | /* Apply RDP cookie persistence to the current session. For this, the function |
| 1107 | * tries to extract an RDP cookie from the request buffer, and look for the |
| 1108 | * matching server in the list. If the server is found, it is assigned to the |
| 1109 | * session. This always returns 1, and the analyser removes itself from the |
| 1110 | * list. Nothing is performed if a server was already assigned. |
| 1111 | */ |
| 1112 | int tcp_persist_rdp_cookie(struct session *s, struct buffer *req, int an_bit) |
| 1113 | { |
| 1114 | struct proxy *px = s->be; |
| 1115 | int ret; |
| 1116 | struct acl_expr expr; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1117 | struct sample smp; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1118 | struct server *srv = px->srv; |
| 1119 | struct sockaddr_in addr; |
| 1120 | char *p; |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1121 | struct arg args[2]; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1122 | |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 1123 | DPRINTF(stderr,"[%u] %s: session=%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] | 1124 | now_ms, __FUNCTION__, |
| 1125 | s, |
| 1126 | req, |
| 1127 | req->rex, req->wex, |
| 1128 | req->flags, |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 1129 | req->i, |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1130 | req->analysers); |
| 1131 | |
| 1132 | if (s->flags & SN_ASSIGNED) |
| 1133 | goto no_cookie; |
| 1134 | |
| 1135 | memset(&expr, 0, sizeof(expr)); |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1136 | memset(&smp, 0, sizeof(smp)); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1137 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1138 | args[0].type = ARGT_STR; |
| 1139 | args[0].data.str.str = s->be->rdp_cookie_name; |
| 1140 | args[0].data.str.len = s->be->rdp_cookie_len; |
| 1141 | args[1].type = ARGT_STOP; |
| 1142 | |
| 1143 | expr.args = args; |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1144 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1145 | ret = acl_fetch_rdp_cookie(px, s, NULL, ACL_DIR_REQ, &expr, &smp); |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1146 | if (ret == 0 || (smp.flags & SMP_F_MAY_CHANGE) || smp.data.str.len == 0) |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1147 | goto no_cookie; |
| 1148 | |
| 1149 | memset(&addr, 0, sizeof(addr)); |
| 1150 | addr.sin_family = AF_INET; |
| 1151 | |
Willy Tarreau | 664092c | 2011-12-16 19:11:42 +0100 | [diff] [blame] | 1152 | /* Considering an rdp cookie detected using acl, str ended with <cr><lf> and should return */ |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1153 | addr.sin_addr.s_addr = strtoul(smp.data.str.str, &p, 10); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1154 | if (*p != '.') |
| 1155 | goto no_cookie; |
| 1156 | p++; |
| 1157 | addr.sin_port = (unsigned short)strtoul(p, &p, 10); |
| 1158 | if (*p != '.') |
| 1159 | goto no_cookie; |
| 1160 | |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 1161 | clear_target(&s->target); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1162 | while (srv) { |
| 1163 | if (memcmp(&addr, &(srv->addr), sizeof(addr)) == 0) { |
| 1164 | if ((srv->state & SRV_RUNNING) || (px->options & PR_O_PERSIST)) { |
| 1165 | /* we found the server and it is usable */ |
| 1166 | s->flags |= SN_DIRECT | SN_ASSIGNED; |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 1167 | set_target_server(&s->target, srv); |
Willy Tarreau | 44b90cc | 2010-05-24 20:27:29 +0200 | [diff] [blame] | 1168 | break; |
| 1169 | } |
| 1170 | } |
| 1171 | srv = srv->next; |
| 1172 | } |
| 1173 | |
| 1174 | no_cookie: |
| 1175 | req->analysers &= ~an_bit; |
| 1176 | req->analyse_exp = TICK_ETERNITY; |
| 1177 | return 1; |
| 1178 | } |
| 1179 | |
Krzysztof Oledzki | 8513094 | 2007-10-22 16:21:10 +0200 | [diff] [blame] | 1180 | int be_downtime(struct proxy *px) { |
Willy Tarreau | b625a08 | 2007-11-26 01:15:43 +0100 | [diff] [blame] | 1181 | 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] | 1182 | return px->down_time; |
| 1183 | |
| 1184 | return now.tv_sec - px->last_change + px->down_time; |
| 1185 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1186 | |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 1187 | /* |
| 1188 | * This function returns a string containing the balancing |
| 1189 | * mode of the proxy in a format suitable for stats. |
| 1190 | */ |
| 1191 | |
| 1192 | const char *backend_lb_algo_str(int algo) { |
| 1193 | |
| 1194 | if (algo == BE_LB_ALGO_RR) |
| 1195 | return "roundrobin"; |
| 1196 | else if (algo == BE_LB_ALGO_SRR) |
| 1197 | return "static-rr"; |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 1198 | else if (algo == BE_LB_ALGO_FAS) |
| 1199 | return "first"; |
Krzysztof Piotr Oledzki | 15514c2 | 2010-01-04 16:03:09 +0100 | [diff] [blame] | 1200 | else if (algo == BE_LB_ALGO_LC) |
| 1201 | return "leastconn"; |
| 1202 | else if (algo == BE_LB_ALGO_SH) |
| 1203 | return "source"; |
| 1204 | else if (algo == BE_LB_ALGO_UH) |
| 1205 | return "uri"; |
| 1206 | else if (algo == BE_LB_ALGO_PH) |
| 1207 | return "url_param"; |
| 1208 | else if (algo == BE_LB_ALGO_HH) |
| 1209 | return "hdr"; |
| 1210 | else if (algo == BE_LB_ALGO_RCH) |
| 1211 | return "rdp-cookie"; |
| 1212 | else |
| 1213 | return NULL; |
| 1214 | } |
| 1215 | |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1216 | /* This function parses a "balance" statement in a backend section describing |
| 1217 | * <curproxy>. It returns -1 if there is any error, otherwise zero. If it |
| 1218 | * returns -1, it may write an error message into ther <err> buffer, for at |
| 1219 | * most <errlen> bytes, trailing zero included. The trailing '\n' will not be |
| 1220 | * written. The function must be called with <args> pointing to the first word |
| 1221 | * after "balance". |
| 1222 | */ |
| 1223 | int backend_parse_balance(const char **args, char *err, int errlen, struct proxy *curproxy) |
| 1224 | { |
| 1225 | if (!*(args[0])) { |
| 1226 | /* if no option is set, use round-robin by default */ |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1227 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1228 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1229 | return 0; |
| 1230 | } |
| 1231 | |
| 1232 | if (!strcmp(args[0], "roundrobin")) { |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1233 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1234 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1235 | } |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 1236 | else if (!strcmp(args[0], "static-rr")) { |
| 1237 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1238 | curproxy->lbprm.algo |= BE_LB_ALGO_SRR; |
| 1239 | } |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 1240 | else if (!strcmp(args[0], "first")) { |
| 1241 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1242 | curproxy->lbprm.algo |= BE_LB_ALGO_FAS; |
| 1243 | } |
Willy Tarreau | 5140623 | 2008-03-10 22:04:20 +0100 | [diff] [blame] | 1244 | else if (!strcmp(args[0], "leastconn")) { |
| 1245 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1246 | curproxy->lbprm.algo |= BE_LB_ALGO_LC; |
| 1247 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1248 | else if (!strcmp(args[0], "source")) { |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1249 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1250 | curproxy->lbprm.algo |= BE_LB_ALGO_SH; |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1251 | } |
| 1252 | else if (!strcmp(args[0], "uri")) { |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1253 | int arg = 1; |
| 1254 | |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1255 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1256 | curproxy->lbprm.algo |= BE_LB_ALGO_UH; |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1257 | |
| 1258 | while (*args[arg]) { |
| 1259 | if (!strcmp(args[arg], "len")) { |
| 1260 | if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) { |
| 1261 | snprintf(err, errlen, "'balance uri len' expects a positive integer (got '%s').", args[arg+1]); |
| 1262 | return -1; |
| 1263 | } |
| 1264 | curproxy->uri_len_limit = atoi(args[arg+1]); |
| 1265 | arg += 2; |
| 1266 | } |
| 1267 | else if (!strcmp(args[arg], "depth")) { |
| 1268 | if (!*args[arg+1] || (atoi(args[arg+1]) <= 0)) { |
| 1269 | snprintf(err, errlen, "'balance uri depth' expects a positive integer (got '%s').", args[arg+1]); |
| 1270 | return -1; |
| 1271 | } |
| 1272 | /* hint: we store the position of the ending '/' (depth+1) so |
| 1273 | * that we avoid a comparison while computing the hash. |
| 1274 | */ |
| 1275 | curproxy->uri_dirs_depth1 = atoi(args[arg+1]) + 1; |
| 1276 | arg += 2; |
| 1277 | } |
| 1278 | else { |
| 1279 | snprintf(err, errlen, "'balance uri' only accepts parameters 'len' and 'depth' (got '%s').", args[arg]); |
| 1280 | return -1; |
| 1281 | } |
| 1282 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1283 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 1284 | else if (!strcmp(args[0], "url_param")) { |
| 1285 | if (!*args[1]) { |
| 1286 | snprintf(err, errlen, "'balance url_param' requires an URL parameter name."); |
| 1287 | return -1; |
| 1288 | } |
Willy Tarreau | 3168223 | 2007-11-29 15:38:04 +0100 | [diff] [blame] | 1289 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1290 | curproxy->lbprm.algo |= BE_LB_ALGO_PH; |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 1291 | |
| 1292 | free(curproxy->url_param_name); |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 1293 | curproxy->url_param_name = strdup(args[1]); |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 1294 | curproxy->url_param_len = strlen(args[1]); |
Marek Majkowski | 9c30fc1 | 2008-04-27 23:25:55 +0200 | [diff] [blame] | 1295 | if (*args[2]) { |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 1296 | if (strcmp(args[2], "check_post")) { |
| 1297 | snprintf(err, errlen, "'balance url_param' only accepts check_post modifier."); |
| 1298 | return -1; |
| 1299 | } |
| 1300 | if (*args[3]) { |
| 1301 | /* TODO: maybe issue a warning if there is no value, no digits or too long */ |
| 1302 | curproxy->url_param_post_limit = str2ui(args[3]); |
| 1303 | } |
| 1304 | /* if no limit, or faul value in args[3], then default to a moderate wordlen */ |
| 1305 | if (!curproxy->url_param_post_limit) |
| 1306 | curproxy->url_param_post_limit = 48; |
| 1307 | else if ( curproxy->url_param_post_limit < 3 ) |
| 1308 | curproxy->url_param_post_limit = 3; /* minimum example: S=3 or \r\nS=6& */ |
| 1309 | } |
Benoit | affb481 | 2009-03-25 13:02:10 +0100 | [diff] [blame] | 1310 | } |
| 1311 | else if (!strncmp(args[0], "hdr(", 4)) { |
| 1312 | const char *beg, *end; |
| 1313 | |
| 1314 | beg = args[0] + 4; |
| 1315 | end = strchr(beg, ')'); |
| 1316 | |
| 1317 | if (!end || end == beg) { |
| 1318 | snprintf(err, errlen, "'balance hdr(name)' requires an http header field name."); |
| 1319 | return -1; |
| 1320 | } |
| 1321 | |
| 1322 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1323 | curproxy->lbprm.algo |= BE_LB_ALGO_HH; |
| 1324 | |
| 1325 | free(curproxy->hh_name); |
| 1326 | curproxy->hh_len = end - beg; |
| 1327 | curproxy->hh_name = my_strndup(beg, end - beg); |
| 1328 | curproxy->hh_match_domain = 0; |
| 1329 | |
| 1330 | if (*args[1]) { |
| 1331 | if (strcmp(args[1], "use_domain_only")) { |
| 1332 | snprintf(err, errlen, "'balance hdr(name)' only accepts 'use_domain_only' modifier."); |
| 1333 | return -1; |
| 1334 | } |
| 1335 | curproxy->hh_match_domain = 1; |
| 1336 | } |
| 1337 | |
Emeric Brun | 736aa23 | 2009-06-30 17:56:00 +0200 | [diff] [blame] | 1338 | } |
| 1339 | else if (!strncmp(args[0], "rdp-cookie", 10)) { |
| 1340 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 1341 | curproxy->lbprm.algo |= BE_LB_ALGO_RCH; |
| 1342 | |
| 1343 | if ( *(args[0] + 10 ) == '(' ) { /* cookie name */ |
| 1344 | const char *beg, *end; |
| 1345 | |
| 1346 | beg = args[0] + 11; |
| 1347 | end = strchr(beg, ')'); |
| 1348 | |
| 1349 | if (!end || end == beg) { |
| 1350 | snprintf(err, errlen, "'balance rdp-cookie(name)' requires an rdp cookie name."); |
| 1351 | return -1; |
| 1352 | } |
| 1353 | |
| 1354 | free(curproxy->hh_name); |
| 1355 | curproxy->hh_name = my_strndup(beg, end - beg); |
| 1356 | curproxy->hh_len = end - beg; |
| 1357 | } |
| 1358 | else if ( *(args[0] + 10 ) == '\0' ) { /* default cookie name 'mstshash' */ |
| 1359 | free(curproxy->hh_name); |
| 1360 | curproxy->hh_name = strdup("mstshash"); |
| 1361 | curproxy->hh_len = strlen(curproxy->hh_name); |
| 1362 | } |
| 1363 | else { /* syntax */ |
| 1364 | snprintf(err, errlen, "'balance rdp-cookie(name)' requires an rdp cookie name."); |
| 1365 | return -1; |
| 1366 | } |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 1367 | } |
Willy Tarreau | a0cbda6 | 2007-11-01 21:39:54 +0100 | [diff] [blame] | 1368 | else { |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 1369 | snprintf(err, errlen, "'balance' 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] | 1370 | return -1; |
| 1371 | } |
| 1372 | return 0; |
| 1373 | } |
| 1374 | |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1375 | |
| 1376 | /************************************************************************/ |
| 1377 | /* All supported keywords must be declared here. */ |
| 1378 | /************************************************************************/ |
| 1379 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1380 | /* set temp integer to the number of enabled servers on the proxy. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1381 | * 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] | 1382 | * undefined behaviour. |
| 1383 | */ |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1384 | static int |
| 1385 | acl_fetch_nbsrv(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1386 | struct acl_expr *expr, struct sample *smp) |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1387 | { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1388 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1389 | smp->type = SMP_T_UINT; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1390 | px = expr->args->data.prx; |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1391 | |
| 1392 | if (px->srv_act) |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1393 | smp->data.uint = px->srv_act; |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1394 | else if (px->lbprm.fbck) |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1395 | smp->data.uint = 1; |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1396 | else |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1397 | smp->data.uint = px->srv_bck; |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1398 | |
| 1399 | return 1; |
| 1400 | } |
| 1401 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1402 | /* report in smp->flags a success or failure depending on the designated |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 1403 | * 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] | 1404 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 1405 | * undefined behaviour. |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 1406 | */ |
| 1407 | static int |
| 1408 | acl_fetch_srv_is_up(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1409 | struct acl_expr *expr, struct sample *smp) |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 1410 | { |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1411 | struct server *srv = expr->args->data.srv; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 1412 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1413 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1414 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 1415 | if (!(srv->state & SRV_MAINTAIN) && |
| 1416 | (!(srv->state & SRV_CHECKED) || (srv->state & SRV_RUNNING))) |
Willy Tarreau | 197e10a | 2012-04-23 19:18:42 +0200 | [diff] [blame^] | 1417 | smp->data.uint = 1; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 1418 | else |
Willy Tarreau | 197e10a | 2012-04-23 19:18:42 +0200 | [diff] [blame^] | 1419 | smp->data.uint = 0; |
Willy Tarreau | 0b1cd94 | 2010-05-16 22:18:27 +0200 | [diff] [blame] | 1420 | return 1; |
| 1421 | } |
| 1422 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1423 | /* set temp integer to the number of enabled servers on the proxy. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1424 | * 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] | 1425 | * undefined behaviour. |
| 1426 | */ |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 1427 | static int |
| 1428 | acl_fetch_connslots(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1429 | struct acl_expr *expr, struct sample *smp) |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 1430 | { |
| 1431 | struct server *iterator; |
Willy Tarreau | d28c353 | 2012-04-19 19:28:33 +0200 | [diff] [blame] | 1432 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1433 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1434 | smp->type = SMP_T_UINT; |
| 1435 | smp->data.uint = 0; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1436 | |
| 1437 | for (iterator = expr->args->data.prx->srv; iterator; iterator = iterator->next) { |
| 1438 | if ((iterator->state & SRV_RUNNING) == 0) |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 1439 | continue; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1440 | |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 1441 | if (iterator->maxconn == 0 || iterator->maxqueue == 0) { |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1442 | /* configuration is stupid */ |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1443 | smp->data.uint = -1; /* FIXME: stupid value! */ |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 1444 | return 1; |
| 1445 | } |
| 1446 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1447 | smp->data.uint += (iterator->maxconn - iterator->cur_sess) |
Willy Tarreau | 422aa07 | 2012-04-20 20:49:27 +0200 | [diff] [blame] | 1448 | + (iterator->maxqueue - iterator->nbpend); |
Jeffrey 'jf' Lim | 5051d7b | 2008-09-04 01:03:03 +0800 | [diff] [blame] | 1449 | } |
| 1450 | |
| 1451 | return 1; |
| 1452 | } |
| 1453 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1454 | /* set temp integer to the id of the backend */ |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 1455 | static int |
| 1456 | acl_fetch_be_id(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1457 | struct acl_expr *expr, struct sample *smp) |
| 1458 | { |
| 1459 | smp->flags = SMP_F_READ_ONLY; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1460 | smp->flags = SMP_F_VOL_TXN; |
| 1461 | smp->type = SMP_T_UINT; |
| 1462 | smp->data.uint = l4->be->uuid; |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 1463 | return 1; |
| 1464 | } |
| 1465 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1466 | /* set temp integer to the id of the server */ |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 1467 | static int |
| 1468 | acl_fetch_srv_id(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1469 | struct acl_expr *expr, struct sample *smp) |
| 1470 | { |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 1471 | if (!target_srv(&l4->target)) |
Willy Tarreau | 17af419 | 2011-02-23 14:27:06 +0100 | [diff] [blame] | 1472 | return 0; |
| 1473 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1474 | smp->flags = SMP_F_READ_ONLY; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1475 | smp->type = SMP_T_UINT; |
| 1476 | smp->data.uint = target_srv(&l4->target)->puid; |
Hervé COMMOWICK | 35ed801 | 2010-12-15 14:04:51 +0100 | [diff] [blame] | 1477 | |
| 1478 | return 1; |
| 1479 | } |
| 1480 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1481 | /* 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] | 1482 | * 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] | 1483 | * undefined behaviour. |
| 1484 | */ |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 1485 | static int |
| 1486 | acl_fetch_be_sess_rate(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1487 | struct acl_expr *expr, struct sample *smp) |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 1488 | { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1489 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1490 | smp->type = SMP_T_UINT; |
| 1491 | smp->data.uint = read_freq_ctr(&expr->args->data.prx->be_sess_per_sec); |
Willy Tarreau | 079ff0a | 2009-03-05 21:34:28 +0100 | [diff] [blame] | 1492 | return 1; |
| 1493 | } |
| 1494 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1495 | /* set temp integer to the number of concurrent connections on the backend. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1496 | * 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] | 1497 | * undefined behaviour. |
| 1498 | */ |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1499 | static int |
| 1500 | acl_fetch_be_conn(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1501 | struct acl_expr *expr, struct sample *smp) |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1502 | { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1503 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1504 | smp->type = SMP_T_UINT; |
| 1505 | smp->data.uint = expr->args->data.prx->beconn; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1506 | return 1; |
| 1507 | } |
| 1508 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1509 | /* 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] | 1510 | * 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] | 1511 | * undefined behaviour. |
| 1512 | */ |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1513 | static int |
| 1514 | acl_fetch_queue_size(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1515 | struct acl_expr *expr, struct sample *smp) |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1516 | { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1517 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1518 | smp->type = SMP_T_UINT; |
| 1519 | smp->data.uint = expr->args->data.prx->totpend; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1520 | return 1; |
| 1521 | } |
| 1522 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1523 | /* 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] | 1524 | * by the number of running servers and rounded up. If there is no running |
| 1525 | * server, we return twice the total, just as if we had half a running server. |
| 1526 | * This is more or less correct anyway, since we expect the last server to come |
| 1527 | * back soon. |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1528 | * 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] | 1529 | * undefined behaviour. |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1530 | */ |
| 1531 | static int |
| 1532 | acl_fetch_avg_queue_size(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1533 | struct acl_expr *expr, struct sample *smp) |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1534 | { |
| 1535 | int nbsrv; |
| 1536 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1537 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1538 | smp->type = SMP_T_UINT; |
Willy Tarreau | 0146c2e | 2012-04-20 11:37:56 +0200 | [diff] [blame] | 1539 | px = expr->args->data.prx; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1540 | |
| 1541 | if (px->srv_act) |
| 1542 | nbsrv = px->srv_act; |
| 1543 | else if (px->lbprm.fbck) |
| 1544 | nbsrv = 1; |
| 1545 | else |
| 1546 | nbsrv = px->srv_bck; |
| 1547 | |
| 1548 | if (nbsrv > 0) |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1549 | smp->data.uint = (px->totpend + nbsrv - 1) / nbsrv; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1550 | else |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1551 | smp->data.uint = px->totpend * 2; |
Willy Tarreau | a36af91 | 2009-10-10 12:02:45 +0200 | [diff] [blame] | 1552 | |
| 1553 | return 1; |
| 1554 | } |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1555 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 1556 | /* set temp integer to the number of concurrent connections on the server in the backend. |
| 1557 | * Accepts exactly 1 argument. Argument is a server, other types will lead to |
| 1558 | * undefined behaviour. |
| 1559 | */ |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 1560 | static int |
| 1561 | acl_fetch_srv_conn(struct proxy *px, struct session *l4, void *l7, int dir, |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1562 | struct acl_expr *expr, struct sample *smp) |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 1563 | { |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 1564 | smp->flags = SMP_F_VOL_TEST; |
| 1565 | smp->type = SMP_T_UINT; |
| 1566 | smp->data.uint = expr->args->data.srv->cur_sess; |
Hervé COMMOWICK | daa824e | 2011-08-05 12:09:44 +0200 | [diff] [blame] | 1567 | return 1; |
| 1568 | } |
| 1569 | |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 1570 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1571 | * Please take care of keeping this list alphabetically sorted. |
| 1572 | */ |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1573 | static struct acl_kw_list acl_kws = {{ },{ |
Willy Tarreau | fc2c1fd | 2012-04-19 23:35:54 +0200 | [diff] [blame] | 1574 | { "avg_queue", acl_parse_int, acl_fetch_avg_queue_size, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) }, |
| 1575 | { "be_conn", acl_parse_int, acl_fetch_be_conn, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) }, |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 1576 | { "be_id", acl_parse_int, acl_fetch_be_id, acl_match_int, ACL_USE_NOTHING, 0 }, |
Willy Tarreau | fc2c1fd | 2012-04-19 23:35:54 +0200 | [diff] [blame] | 1577 | { "be_sess_rate", acl_parse_int, acl_fetch_be_sess_rate, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) }, |
| 1578 | { "connslots", acl_parse_int, acl_fetch_connslots, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) }, |
| 1579 | { "nbsrv", acl_parse_int, acl_fetch_nbsrv, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) }, |
| 1580 | { "queue", acl_parse_int, acl_fetch_queue_size, acl_match_int, ACL_USE_NOTHING, ARG1(1,BE) }, |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 1581 | { "srv_conn", acl_parse_int, acl_fetch_srv_conn, acl_match_int, ACL_USE_NOTHING, ARG1(1,SRV) }, |
| 1582 | { "srv_id", acl_parse_int, acl_fetch_srv_id, acl_match_int, ACL_USE_RTR_INTERNAL, 0 }, |
| 1583 | { "srv_is_up", acl_parse_nothing, acl_fetch_srv_is_up, acl_match_nothing, ACL_USE_NOTHING, ARG1(1,SRV) }, |
Willy Tarreau | a9d3c1e | 2007-11-30 20:48:53 +0100 | [diff] [blame] | 1584 | { NULL, NULL, NULL, NULL }, |
| 1585 | }}; |
| 1586 | |
| 1587 | |
| 1588 | __attribute__((constructor)) |
| 1589 | static void __backend_init(void) |
| 1590 | { |
| 1591 | acl_register_keywords(&acl_kws); |
| 1592 | } |
| 1593 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1594 | /* |
| 1595 | * Local variables: |
| 1596 | * c-indent-level: 8 |
| 1597 | * c-basic-offset: 8 |
| 1598 | * End: |
| 1599 | */ |