Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | include/proto/backend.h |
| 3 | Functions prototypes for the backend. |
| 4 | |
| 5 | Copyright (C) 2000-2006 Willy Tarreau - w@1wt.eu |
| 6 | |
| 7 | This library is free software; you can redistribute it and/or |
| 8 | modify it under the terms of the GNU Lesser General Public |
| 9 | License as published by the Free Software Foundation, version 2.1 |
| 10 | exclusively. |
| 11 | |
| 12 | This library is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | Lesser General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU Lesser General Public |
| 18 | License along with this library; if not, write to the Free Software |
| 19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | #ifndef _PROTO_BACKEND_H |
| 23 | #define _PROTO_BACKEND_H |
| 24 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 25 | #include <common/config.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | |
| 27 | #include <types/backend.h> |
| 28 | #include <types/session.h> |
| 29 | |
| 30 | #include <proto/queue.h> |
| 31 | |
| 32 | int assign_server(struct session *s); |
| 33 | int assign_server_address(struct session *s); |
| 34 | int assign_server_and_queue(struct session *s); |
| 35 | int connect_server(struct session *s); |
| 36 | int srv_count_retry_down(struct session *t, int conn_err); |
| 37 | int srv_retryable_connect(struct session *t); |
| 38 | int srv_redispatch_connect(struct session *t); |
| 39 | |
| 40 | void recount_servers(struct proxy *px); |
| 41 | void recalc_server_map(struct proxy *px); |
| 42 | |
| 43 | |
| 44 | /* |
| 45 | * This function tries to find a running server with free connection slots for |
| 46 | * the proxy <px> following the round-robin method. |
| 47 | * If any server is found, it will be returned and px->srv_rr_idx will be updated |
| 48 | * to point to the next server. If no valid server is found, NULL is returned. |
| 49 | */ |
| 50 | static inline struct server *get_server_rr_with_conns(struct proxy *px) |
| 51 | { |
| 52 | int newidx; |
| 53 | struct server *srv; |
| 54 | |
| 55 | if (px->srv_map_sz == 0) |
| 56 | return NULL; |
| 57 | |
| 58 | if (px->srv_rr_idx < 0 || px->srv_rr_idx >= px->srv_map_sz) |
| 59 | px->srv_rr_idx = 0; |
| 60 | newidx = px->srv_rr_idx; |
| 61 | |
| 62 | do { |
| 63 | srv = px->srv_map[newidx++]; |
| 64 | if (!srv->maxconn || srv->cur_sess < srv_dynamic_maxconn(srv)) { |
| 65 | px->srv_rr_idx = newidx; |
| 66 | return srv; |
| 67 | } |
| 68 | if (newidx == px->srv_map_sz) |
| 69 | newidx = 0; |
| 70 | } while (newidx != px->srv_rr_idx); |
| 71 | |
| 72 | return NULL; |
| 73 | } |
| 74 | |
| 75 | |
| 76 | /* |
| 77 | * This function tries to find a running server for the proxy <px> following |
| 78 | * the round-robin method. |
| 79 | * If any server is found, it will be returned and px->srv_rr_idx will be updated |
| 80 | * to point to the next server. If no valid server is found, NULL is returned. |
| 81 | */ |
| 82 | static inline struct server *get_server_rr(struct proxy *px) |
| 83 | { |
| 84 | if (px->srv_map_sz == 0) |
| 85 | return NULL; |
| 86 | |
| 87 | if (px->srv_rr_idx < 0 || px->srv_rr_idx >= px->srv_map_sz) |
| 88 | px->srv_rr_idx = 0; |
| 89 | return px->srv_map[px->srv_rr_idx++]; |
| 90 | } |
| 91 | |
| 92 | |
| 93 | /* |
| 94 | * This function tries to find a running server for the proxy <px> following |
| 95 | * the source hash method. Depending on the number of active/backup servers, |
| 96 | * it will either look for active servers, or for backup servers. |
| 97 | * If any server is found, it will be returned. If no valid server is found, |
| 98 | * NULL is returned. |
| 99 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 100 | static inline struct server *get_server_sh(const struct proxy *px, |
| 101 | const char *addr, int len) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 102 | { |
| 103 | unsigned int h, l; |
| 104 | |
| 105 | if (px->srv_map_sz == 0) |
| 106 | return NULL; |
| 107 | |
| 108 | l = h = 0; |
| 109 | if (px->srv_act > 1 || (px->srv_act == 0 && px->srv_bck > 1)) { |
| 110 | while ((l + sizeof (int)) <= len) { |
| 111 | h ^= ntohl(*(unsigned int *)(&addr[l])); |
| 112 | l += sizeof (int); |
| 113 | } |
| 114 | h %= px->srv_map_sz; |
| 115 | } |
| 116 | return px->srv_map[h]; |
| 117 | } |
| 118 | |
| 119 | |
| 120 | #endif /* _PROTO_BACKEND_H */ |
| 121 | |
| 122 | /* |
| 123 | * Local variables: |
| 124 | * c-indent-level: 8 |
| 125 | * c-basic-offset: 8 |
| 126 | * End: |
| 127 | */ |