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