Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | ac68c5d | 2009-10-04 23:12:44 +0200 | [diff] [blame] | 2 | * include/proto/proxy.h |
| 3 | * This file defines function prototypes for proxy management. |
| 4 | * |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 5 | * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu |
Willy Tarreau | ac68c5d | 2009-10-04 23:12:44 +0200 | [diff] [blame] | 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 | */ |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 22 | #ifndef _PROTO_PROXY_H |
| 23 | #define _PROTO_PROXY_H |
| 24 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 25 | #include <common/config.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 26 | #include <common/ticks.h> |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 27 | #include <common/time.h> |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 28 | #include <types/applet.h> |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 29 | #include <types/global.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 30 | #include <types/proxy.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 31 | #include <types/listener.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 32 | #include <proto/freq_ctr.h> |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 33 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 34 | extern struct proxy *proxies_list; |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 35 | extern struct eb_root used_proxy_id; /* list of proxy IDs in use */ |
| 36 | extern unsigned int error_snapshot_id; /* global ID assigned to each error then incremented */ |
| 37 | extern struct eb_root proxy_by_name; /* tree of proxies sorted by name */ |
| 38 | |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 39 | extern const struct cfg_opt cfg_opts[]; |
| 40 | extern const struct cfg_opt cfg_opts2[]; |
| 41 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 42 | int start_proxies(int verbose); |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 43 | struct task *manage_proxy(struct task *t, void *context, unsigned short state); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 44 | void soft_stop(void); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 45 | int pause_proxy(struct proxy *p); |
Willy Tarreau | 532a450 | 2011-09-07 22:37:44 +0200 | [diff] [blame] | 46 | int resume_proxy(struct proxy *p); |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 47 | void stop_proxy(struct proxy *p); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 48 | void zombify_proxy(struct proxy *p); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 49 | void pause_proxies(void); |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 50 | void resume_proxies(void); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 51 | int stream_set_backend(struct stream *s, struct proxy *be); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 52 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 53 | const char *proxy_cap_str(int cap); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 54 | const char *proxy_mode_str(int mode); |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 55 | void proxy_store_name(struct proxy *px); |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 56 | struct proxy *proxy_find_by_id(int id, int cap, int table); |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 57 | struct proxy *proxy_find_by_name(const char *name, int cap, int table); |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 58 | struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 59 | struct server *findserver(const struct proxy *px, const char *name); |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 60 | int proxy_cfg_ensure_no_http(struct proxy *curproxy); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 61 | void init_new_proxy(struct proxy *p); |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 62 | int get_backend_server(const char *bk_name, const char *sv_name, |
| 63 | struct proxy **bk, struct server **sv); |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 64 | void proxy_capture_error(struct proxy *proxy, int is_back, |
| 65 | struct proxy *other_end, enum obj_type *target, |
| 66 | const struct session *sess, |
| 67 | const struct buffer *buf, long buf_ofs, |
| 68 | unsigned int buf_out, unsigned int err_pos, |
| 69 | const union error_snapshot_ctx *ctx, |
| 70 | void (*show)(struct buffer *, const struct error_snapshot *)); |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 71 | void proxy_adjust_all_maxconn(); |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 72 | struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 73 | struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 74 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 75 | /* |
| 76 | * This function returns a string containing the type of the proxy in a format |
| 77 | * suitable for error messages, from its capabilities. |
| 78 | */ |
| 79 | static inline const char *proxy_type_str(struct proxy *proxy) |
| 80 | { |
| 81 | return proxy_cap_str(proxy->cap); |
| 82 | } |
| 83 | |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 84 | /* Find the frontend having name <name>. The name may also start with a '#' to |
| 85 | * reference a numeric id. NULL is returned if not found. |
| 86 | */ |
| 87 | static inline struct proxy *proxy_fe_by_name(const char *name) |
| 88 | { |
| 89 | return proxy_find_by_name(name, PR_CAP_FE, 0); |
| 90 | } |
| 91 | |
| 92 | /* Find the backend having name <name>. The name may also start with a '#' to |
| 93 | * reference a numeric id. NULL is returned if not found. |
| 94 | */ |
| 95 | static inline struct proxy *proxy_be_by_name(const char *name) |
| 96 | { |
| 97 | return proxy_find_by_name(name, PR_CAP_BE, 0); |
| 98 | } |
| 99 | |
| 100 | /* Find the table having name <name>. The name may also start with a '#' to |
| 101 | * reference a numeric id. NULL is returned if not found. |
| 102 | */ |
| 103 | static inline struct proxy *proxy_tbl_by_name(const char *name) |
| 104 | { |
| 105 | return proxy_find_by_name(name, 0, 1); |
| 106 | } |
| 107 | |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 108 | /* this function initializes all timeouts for proxy p */ |
| 109 | static inline void proxy_reset_timeouts(struct proxy *proxy) |
| 110 | { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 111 | proxy->timeout.client = TICK_ETERNITY; |
| 112 | proxy->timeout.tarpit = TICK_ETERNITY; |
| 113 | proxy->timeout.queue = TICK_ETERNITY; |
| 114 | proxy->timeout.connect = TICK_ETERNITY; |
| 115 | proxy->timeout.server = TICK_ETERNITY; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 116 | proxy->timeout.httpreq = TICK_ETERNITY; |
| 117 | proxy->timeout.check = TICK_ETERNITY; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 118 | proxy->timeout.tunnel = TICK_ETERNITY; |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 119 | } |
| 120 | |
Willy Tarreau | b36b424 | 2010-06-04 20:59:39 +0200 | [diff] [blame] | 121 | /* increase the number of cumulated connections received on the designated frontend */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 122 | static inline void proxy_inc_fe_conn_ctr(struct listener *l, struct proxy *fe) |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 123 | { |
Olivier Houchard | 11ecfd1 | 2019-03-08 18:48:16 +0100 | [diff] [blame] | 124 | _HA_ATOMIC_ADD(&fe->fe_counters.cum_conn, 1); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 125 | if (l->counters) |
Olivier Houchard | 11ecfd1 | 2019-03-08 18:48:16 +0100 | [diff] [blame] | 126 | _HA_ATOMIC_ADD(&l->counters->cum_conn, 1); |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 127 | HA_ATOMIC_UPDATE_MAX(&fe->fe_counters.cps_max, |
| 128 | update_freq_ctr(&fe->fe_conn_per_sec, 1)); |
Willy Tarreau | b36b424 | 2010-06-04 20:59:39 +0200 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /* increase the number of cumulated connections accepted by the designated frontend */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 132 | static inline void proxy_inc_fe_sess_ctr(struct listener *l, struct proxy *fe) |
Willy Tarreau | b36b424 | 2010-06-04 20:59:39 +0200 | [diff] [blame] | 133 | { |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 134 | |
Olivier Houchard | 11ecfd1 | 2019-03-08 18:48:16 +0100 | [diff] [blame] | 135 | _HA_ATOMIC_ADD(&fe->fe_counters.cum_sess, 1); |
Willy Tarreau | b36b424 | 2010-06-04 20:59:39 +0200 | [diff] [blame] | 136 | if (l->counters) |
Olivier Houchard | 11ecfd1 | 2019-03-08 18:48:16 +0100 | [diff] [blame] | 137 | _HA_ATOMIC_ADD(&l->counters->cum_sess, 1); |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 138 | HA_ATOMIC_UPDATE_MAX(&fe->fe_counters.sps_max, |
| 139 | update_freq_ctr(&fe->fe_sess_per_sec, 1)); |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /* increase the number of cumulated connections on the designated backend */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 143 | static inline void proxy_inc_be_ctr(struct proxy *be) |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 144 | { |
Olivier Houchard | 11ecfd1 | 2019-03-08 18:48:16 +0100 | [diff] [blame] | 145 | _HA_ATOMIC_ADD(&be->be_counters.cum_conn, 1); |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 146 | HA_ATOMIC_UPDATE_MAX(&be->be_counters.sps_max, |
| 147 | update_freq_ctr(&be->be_sess_per_sec, 1)); |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 148 | } |
| 149 | |
Willy Tarreau | d9b587f | 2010-02-26 10:05:55 +0100 | [diff] [blame] | 150 | /* increase the number of cumulated requests on the designated frontend */ |
Willy Tarreau | 0e492e2 | 2019-04-15 21:25:03 +0200 | [diff] [blame] | 151 | static inline void proxy_inc_fe_req_ctr(struct proxy *fe) |
Willy Tarreau | d9b587f | 2010-02-26 10:05:55 +0100 | [diff] [blame] | 152 | { |
Olivier Houchard | 11ecfd1 | 2019-03-08 18:48:16 +0100 | [diff] [blame] | 153 | _HA_ATOMIC_ADD(&fe->fe_counters.p.http.cum_req, 1); |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 154 | HA_ATOMIC_UPDATE_MAX(&fe->fe_counters.p.http.rps_max, |
| 155 | update_freq_ctr(&fe->fe_req_per_sec, 1)); |
Willy Tarreau | d9b587f | 2010-02-26 10:05:55 +0100 | [diff] [blame] | 156 | } |
| 157 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 158 | #endif /* _PROTO_PROXY_H */ |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 159 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 160 | /* |
| 161 | * Local variables: |
| 162 | * c-indent-level: 8 |
| 163 | * c-basic-offset: 8 |
| 164 | * End: |
| 165 | */ |