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