blob: 402fb0ae98ad400f21ca801f948abfed7702e2c4 [file] [log] [blame]
Willy Tarreau91861262007-10-17 17:06:05 +02001/*
Willy Tarreaueb472682010-05-28 18:46:57 +02002 * Functions dedicated to statistics output and the stats socket
Willy Tarreau91861262007-10-17 17:06:05 +02003 *
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02005 * Copyright 2007-2009 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreau91861262007-10-17 17:06:05 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
14#include <ctype.h>
15#include <errno.h>
16#include <fcntl.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020020#include <pwd.h>
21#include <grp.h>
Willy Tarreau91861262007-10-17 17:06:05 +020022
23#include <sys/socket.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26
Willy Tarreau10522fd2008-07-09 20:12:41 +020027#include <common/cfgparse.h>
Willy Tarreau91861262007-10-17 17:06:05 +020028#include <common/compat.h>
29#include <common/config.h>
30#include <common/debug.h>
31#include <common/memory.h>
32#include <common/mini-clist.h>
33#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020034#include <common/ticks.h>
Willy Tarreau91861262007-10-17 17:06:05 +020035#include <common/time.h>
36#include <common/uri_auth.h>
37#include <common/version.h>
Emeric Brun4147b2e2014-06-16 18:36:30 +020038#include <common/base64.h>
Willy Tarreau91861262007-10-17 17:06:05 +020039
Willy Tarreau91861262007-10-17 17:06:05 +020040#include <types/global.h>
Willy Tarreau91861262007-10-17 17:06:05 +020041
42#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020043#include <proto/channel.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020044#include <proto/checks.h>
William Lallemande3a7d992012-11-20 11:25:20 +010045#include <proto/compression.h>
Willy Tarreau91861262007-10-17 17:06:05 +020046#include <proto/dumpstats.h>
47#include <proto/fd.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010048#include <proto/freq_ctr.h>
Willy Tarreau32b60d42015-03-13 16:14:57 +010049#include <proto/frontend.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020050#include <proto/log.h>
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010051#include <proto/pattern.h>
Willy Tarreaua206fa92009-01-25 14:02:00 +010052#include <proto/pipe.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020053#include <proto/listener.h>
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010054#include <proto/map.h>
Willy Tarreaue6d97022012-11-23 11:19:33 +010055#include <proto/proto_http.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020056#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020057#include <proto/proxy.h>
Willy Tarreau1cf8f082014-02-07 12:14:54 +010058#include <proto/sample.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020059#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020060#include <proto/stream.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020061#include <proto/server.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020062#include <proto/raw_sock.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010063#include <proto/stream_interface.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010064#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020065
Willy Tarreau7a0169a2012-11-19 17:13:16 +010066#ifdef USE_OPENSSL
67#include <proto/ssl_sock.h>
68#endif
69
Willy Tarreau91b843d2014-01-28 16:27:17 +010070/* stats socket states */
71enum {
72 STAT_CLI_INIT = 0, /* initial state, must leave to zero ! */
73 STAT_CLI_END, /* final state, let's close */
74 STAT_CLI_GETREQ, /* wait for a request */
75 STAT_CLI_OUTPUT, /* all states after this one are responses */
76 STAT_CLI_PROMPT, /* display the prompt (first output, same code) */
77 STAT_CLI_PRINT, /* display message in cli->msg */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +010078 STAT_CLI_PRINT_FREE, /* display message in cli->msg. After the display, free the pointer */
Willy Tarreau91b843d2014-01-28 16:27:17 +010079 STAT_CLI_O_INFO, /* dump info */
Willy Tarreau87b09662015-04-03 00:22:06 +020080 STAT_CLI_O_SESS, /* dump streams */
Willy Tarreau91b843d2014-01-28 16:27:17 +010081 STAT_CLI_O_ERR, /* dump errors */
82 STAT_CLI_O_TAB, /* dump tables */
83 STAT_CLI_O_CLR, /* clear tables */
84 STAT_CLI_O_SET, /* set entries in tables */
85 STAT_CLI_O_STAT, /* dump stats */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +010086 STAT_CLI_O_PATS, /* list all pattern reference avalaible */
87 STAT_CLI_O_PAT, /* list all entries of a pattern */
Willy Tarreau91b843d2014-01-28 16:27:17 +010088 STAT_CLI_O_MLOOK, /* lookup a map entry */
Willy Tarreau12833bb2014-01-28 16:49:56 +010089 STAT_CLI_O_POOLS, /* dump memory pools */
Willy Tarreau91b843d2014-01-28 16:27:17 +010090};
91
Willy Tarreaued7df902014-05-22 18:04:49 +020092/* Actions available for the stats admin forms */
93enum {
94 ST_ADM_ACTION_NONE = 0,
Willy Tarreau248a60e2014-05-23 14:59:48 +020095
96 /* enable/disable health checks */
97 ST_ADM_ACTION_DHLTH,
98 ST_ADM_ACTION_EHLTH,
99
100 /* force health check status */
101 ST_ADM_ACTION_HRUNN,
102 ST_ADM_ACTION_HNOLB,
103 ST_ADM_ACTION_HDOWN,
104
105 /* enable/disable agent checks */
106 ST_ADM_ACTION_DAGENT,
107 ST_ADM_ACTION_EAGENT,
108
109 /* force agent check status */
110 ST_ADM_ACTION_ARUNN,
111 ST_ADM_ACTION_ADOWN,
112
113 /* set admin state */
Willy Tarreaued7df902014-05-22 18:04:49 +0200114 ST_ADM_ACTION_READY,
115 ST_ADM_ACTION_DRAIN,
116 ST_ADM_ACTION_MAINT,
117 ST_ADM_ACTION_SHUTDOWN,
118 /* these are the ancient actions, still available for compatibility */
119 ST_ADM_ACTION_DISABLE,
120 ST_ADM_ACTION_ENABLE,
121 ST_ADM_ACTION_STOP,
122 ST_ADM_ACTION_START,
123};
124
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100125static int stats_dump_info_to_buffer(struct stream_interface *si);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100126static int stats_dump_pools_to_buffer(struct stream_interface *si);
Willy Tarreau87b09662015-04-03 00:22:06 +0200127static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct stream *sess);
Simon Horman9bd2c732011-06-15 15:18:44 +0900128static int stats_dump_sess_to_buffer(struct stream_interface *si);
129static int stats_dump_errors_to_buffer(struct stream_interface *si);
Willy Tarreau44455022012-12-05 23:01:12 +0100130static int stats_table_request(struct stream_interface *si, int show);
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100131static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri);
132static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100133static int stats_pats_list(struct stream_interface *si);
134static int stats_pat_list(struct stream_interface *si);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100135static int stats_map_lookup(struct stream_interface *si);
Willy Tarreau44cf5452014-10-22 19:06:31 +0200136static void cli_release_handler(struct stream_interface *si);
Simon Horman9bd2c732011-06-15 15:18:44 +0900137
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100138/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100139 * cli_io_handler()
140 * -> stats_dump_sess_to_buffer() // "show sess"
141 * -> stats_dump_errors_to_buffer() // "show errors"
142 * -> stats_dump_info_to_buffer() // "show info"
143 * -> stats_dump_stat_to_buffer() // "show stat"
144 * -> stats_dump_csv_header()
145 * -> stats_dump_proxy_to_buffer()
146 * -> stats_dump_fe_stats()
147 * -> stats_dump_li_stats()
148 * -> stats_dump_sv_stats()
149 * -> stats_dump_be_stats()
150 *
151 * http_stats_io_handler()
152 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
153 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
154 * -> stats_dump_html_head() // emits the HTML headers
155 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
156 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
157 * -> stats_dump_html_px_hdr()
158 * -> stats_dump_fe_stats()
159 * -> stats_dump_li_stats()
160 * -> stats_dump_sv_stats()
161 * -> stats_dump_be_stats()
162 * -> stats_dump_html_px_end()
163 * -> stats_dump_html_end() // emits HTML trailer
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100164 */
165
Simon Horman9bd2c732011-06-15 15:18:44 +0900166static struct si_applet cli_applet;
167
168static const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200169 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200170 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Willy Tarreau88ee3972010-07-13 13:48:00 +0200171 " clear table : remove an entry from a table\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200172 " help : this message\n"
173 " prompt : toggle interactive mode with prompt\n"
174 " quit : disconnect\n"
175 " show info : report information about the running process\n"
Willy Tarreau12833bb2014-01-28 16:49:56 +0100176 " show pools : report information about the memory pools usage\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200177 " show stat : report counters for each proxy and server\n"
178 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100179 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau69f58c82010-07-12 17:55:33 +0200180 " show table [id]: report table usage stats or dump this table's contents\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +0200181 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +0200182 " set weight : change a server's weight\n"
Willy Tarreau2a4b70f2014-05-22 18:42:35 +0200183 " set server : change a server's state or weight\n"
Willy Tarreau654694e2012-06-07 01:03:16 +0200184 " set table [id] : update or create a table entry's data\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +0100185 " set timeout : change a timeout setting\n"
Willy Tarreau2a0f4d22011-08-02 11:49:05 +0200186 " set maxconn : change a maxconn setting\n"
Willy Tarreauf5b22872011-09-07 16:13:44 +0200187 " set rate-limit : change a rate limiting value\n"
Willy Tarreaua295edc2011-09-07 23:21:03 +0200188 " disable : put a server or frontend in maintenance mode\n"
189 " enable : re-enable a server or frontend which is in maintenance mode\n"
190 " shutdown : kill a session or a frontend (eg:to release listening ports)\n"
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100191 " show acl [id] : report avalaible acls or dump an acl's contents\n"
192 " get acl : reports the patterns matching a sample for an ACL\n"
193 " add acl : add acl entry\n"
194 " del acl : delete acl entry\n"
195 " clear acl <id> : clear the content of this acl\n"
Thierry FOURNIER1432a0c2014-03-11 13:42:38 +0100196 " show map [id] : report avalaible maps or dump a map's contents\n"
197 " get map : reports the keys and values matching a sample for a map\n"
198 " set map : modify map entry\n"
199 " add map : add map entry\n"
200 " del map : delete map entry\n"
201 " clear map <id> : clear the content of this map\n"
Emeric Brun4147b2e2014-06-16 18:36:30 +0200202 " set ssl <stmt> : set statement for ssl\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200203 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200204
Simon Horman9bd2c732011-06-15 15:18:44 +0900205static const char stats_permission_denied_msg[] =
Willy Tarreau6162db22009-10-10 17:13:00 +0200206 "Permission denied\n"
207 "";
208
Willy Tarreau295a8372011-03-10 11:25:07 +0100209/* data transmission states for the stats responses */
210enum {
211 STAT_ST_INIT = 0,
212 STAT_ST_HEAD,
213 STAT_ST_INFO,
214 STAT_ST_LIST,
215 STAT_ST_END,
216 STAT_ST_FIN,
217};
218
219/* data transmission states for the stats responses inside a proxy */
220enum {
221 STAT_PX_ST_INIT = 0,
222 STAT_PX_ST_TH,
223 STAT_PX_ST_FE,
224 STAT_PX_ST_LI,
225 STAT_PX_ST_SV,
226 STAT_PX_ST_BE,
227 STAT_PX_ST_END,
228 STAT_PX_ST_FIN,
229};
230
Cyril Bonté19979e12012-04-04 12:57:21 +0200231extern const char *stat_status_codes[];
232
Willy Tarreau07e9e642010-08-17 21:48:17 +0200233/* allocate a new stats frontend named <name>, and return it
234 * (or NULL in case of lack of memory).
235 */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200236static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
Willy Tarreau07e9e642010-08-17 21:48:17 +0200237{
238 struct proxy *fe;
239
240 fe = (struct proxy *)calloc(1, sizeof(struct proxy));
241 if (!fe)
242 return NULL;
243
Willy Tarreau237250c2011-07-29 01:49:03 +0200244 init_new_proxy(fe);
Willy Tarreau050536d2012-10-04 08:47:34 +0200245 fe->next = proxy;
246 proxy = fe;
Willy Tarreau07e9e642010-08-17 21:48:17 +0200247 fe->last_change = now.tv_sec;
248 fe->id = strdup("GLOBAL");
249 fe->cap = PR_CAP_FE;
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200250 fe->maxconn = 10; /* default to 10 concurrent connections */
251 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200252 fe->conf.file = strdup(file);
253 fe->conf.line = line;
Willy Tarreau32b60d42015-03-13 16:14:57 +0100254 fe->accept = frontend_accept;
Willy Tarreauf87ab942015-03-13 15:55:16 +0100255 fe->default_target = &cli_applet.obj_type;
Willy Tarreau050536d2012-10-04 08:47:34 +0200256
257 /* the stats frontend is the only one able to assign ID #0 */
258 fe->conf.id.key = fe->uuid = 0;
259 eb32_insert(&used_proxy_id, &fe->conf.id);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200260 return fe;
261}
262
Willy Tarreaufbee7132007-10-18 13:53:22 +0200263/* This function parses a "stats" statement in the "global" section. It returns
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200264 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
265 * error message into the <err> buffer which will be preallocated. The trailing
266 * '\n' must not be written. The function must be called with <args> pointing to
267 * the first word after "stats".
Willy Tarreaufbee7132007-10-18 13:53:22 +0200268 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200269static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200270 struct proxy *defpx, const char *file, int line,
271 char **err)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200272{
Willy Tarreau4348fad2012-09-20 16:48:07 +0200273 struct bind_conf *bind_conf;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200274 struct listener *l;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200275
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200276 if (!strcmp(args[1], "socket")) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200277 int cur_arg;
278
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200279 if (*args[2] == 0) {
Willy Tarreauc53d4222012-09-20 20:19:28 +0200280 memprintf(err, "'%s %s' in global section expects an address or a path to a UNIX socket", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200281 return -1;
282 }
283
Willy Tarreau89a63132009-08-16 17:41:45 +0200284 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200285 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200286 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau89a63132009-08-16 17:41:45 +0200287 return -1;
288 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200289 }
290
Willy Tarreau4348fad2012-09-20 16:48:07 +0200291 bind_conf = bind_conf_alloc(&global.stats_fe->conf.bind, file, line, args[2]);
Willy Tarreau290e63a2012-09-20 18:07:14 +0200292 bind_conf->level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200293
Willy Tarreauc53d4222012-09-20 20:19:28 +0200294 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
295 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
296 file, line, args[0], args[1], err && *err ? *err : "error");
297 return -1;
298 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200299
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200300 cur_arg = 3;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200301 while (*args[cur_arg]) {
Willy Tarreaud5781202012-09-22 19:32:35 +0200302 static int bind_dumped;
303 struct bind_kw *kw;
304
305 kw = bind_find_kw(args[cur_arg]);
306 if (kw) {
307 if (!kw->parse) {
308 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
309 args[0], args[1], args[cur_arg]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200310 return -1;
311 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200312
313 if (kw->parse(args, cur_arg, curpx, bind_conf, err) != 0) {
314 if (err && *err)
315 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
316 else
317 memprintf(err, "'%s %s' : error encountered while processing '%s'",
318 args[0], args[1], args[cur_arg]);
Willy Tarreau6162db22009-10-10 17:13:00 +0200319 return -1;
320 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200321
322 cur_arg += 1 + kw->skip;
323 continue;
Willy Tarreau6162db22009-10-10 17:13:00 +0200324 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200325
326 if (!bind_dumped) {
327 bind_dump_kws(err);
328 indent_msg(err, 4);
329 bind_dumped = 1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200330 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200331
332 memprintf(err, "'%s %s' : unknown keyword '%s'.%s%s",
333 args[0], args[1], args[cur_arg],
334 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
335 return -1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200336 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100337
Willy Tarreauc53d4222012-09-20 20:19:28 +0200338 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
339 l->maxconn = global.stats_fe->maxconn;
340 l->backlog = global.stats_fe->backlog;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200341 l->accept = session_accept_fd;
Willy Tarreau87b09662015-04-03 00:22:06 +0200342 l->handler = process_stream;
Willy Tarreau10b688f2015-03-13 16:43:12 +0100343 l->default_target = global.stats_fe->default_target;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200344 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
345 l->nice = -64; /* we want to boost priority for local stats */
346 global.maxsock += l->maxconn;
347 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200348 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200349 else if (!strcmp(args[1], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100350 unsigned timeout;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200351 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100352
353 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200354 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100355 return -1;
356 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200357
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100358 if (!timeout) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200359 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200360 return -1;
361 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200362 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200363 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200364 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200365 return -1;
366 }
367 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200368 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200369 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200370 else if (!strcmp(args[1], "maxconn")) {
371 int maxconn = atol(args[2]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200372
373 if (maxconn <= 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200374 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200375 return -1;
376 }
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200377
378 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200379 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200380 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200381 return -1;
382 }
383 }
384 global.stats_fe->maxconn = maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200385 }
Willy Tarreau35b7b162012-10-22 23:17:18 +0200386 else if (!strcmp(args[1], "bind-process")) { /* enable the socket only on some processes */
387 int cur_arg = 2;
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100388 unsigned long set = 0;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200389
Willy Tarreau91319572013-04-20 09:48:50 +0200390 if (!global.stats_fe) {
391 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
392 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
393 return -1;
394 }
395 }
396
Willy Tarreau35b7b162012-10-22 23:17:18 +0200397 while (*args[cur_arg]) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100398 unsigned int low, high;
399
Willy Tarreau35b7b162012-10-22 23:17:18 +0200400 if (strcmp(args[cur_arg], "all") == 0) {
401 set = 0;
402 break;
403 }
404 else if (strcmp(args[cur_arg], "odd") == 0) {
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100405 set |= ~0UL/3UL; /* 0x555....555 */
Willy Tarreau35b7b162012-10-22 23:17:18 +0200406 }
407 else if (strcmp(args[cur_arg], "even") == 0) {
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100408 set |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Willy Tarreau35b7b162012-10-22 23:17:18 +0200409 }
Willy Tarreau83d84cf2012-11-22 01:04:31 +0100410 else if (isdigit((int)*args[cur_arg])) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100411 char *dash = strchr(args[cur_arg], '-');
412
413 low = high = str2uic(args[cur_arg]);
414 if (dash)
415 high = str2uic(dash + 1);
416
417 if (high < low) {
418 unsigned int swap = low;
419 low = high;
420 high = swap;
421 }
422
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100423 if (low < 1 || high > LONGBITS) {
424 memprintf(err, "'%s %s' supports process numbers from 1 to %d.\n",
425 args[0], args[1], LONGBITS);
Willy Tarreau35b7b162012-10-22 23:17:18 +0200426 return -1;
427 }
Willy Tarreau110ecc12012-11-15 17:50:01 +0100428 while (low <= high)
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100429 set |= 1UL << (low++ - 1);
Willy Tarreau110ecc12012-11-15 17:50:01 +0100430 }
431 else {
432 memprintf(err,
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100433 "'%s %s' expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to %d.\n",
434 args[0], args[1], LONGBITS);
Willy Tarreau110ecc12012-11-15 17:50:01 +0100435 return -1;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200436 }
437 cur_arg++;
438 }
439 global.stats_fe->bind_proc = set;
440 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200441 else {
Willy Tarreau35b7b162012-10-22 23:17:18 +0200442 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200443 return -1;
444 }
445 return 0;
446}
447
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100448/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
449 * for clearing it if needed.
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100450 * NOTE: Some tools happen to rely on the field position instead of its name,
451 * so please only append new fields at the end, never in the middle.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100452 */
453static void stats_dump_csv_header()
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100454{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100455 chunk_appendf(&trash,
456 "# pxname,svname,"
457 "qcur,qmax,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100458 "scur,smax,slim,stot,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100459 "bin,bout,"
460 "dreq,dresp,"
461 "ereq,econ,eresp,"
462 "wretr,wredis,"
463 "status,weight,act,bck,"
464 "chkfail,chkdown,lastchg,downtime,qlimit,"
465 "pid,iid,sid,throttle,lbtot,tracked,type,"
466 "rate,rate_lim,rate_max,"
467 "check_status,check_code,check_duration,"
468 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
469 "req_rate,req_rate_max,req_tot,"
470 "cli_abrt,srv_abrt,"
Willy Tarreauf5b1cc32014-06-17 12:20:59 +0200471 "comp_in,comp_out,comp_byp,comp_rsp,lastsess,last_chk,last_agt,qtime,ctime,rtime,ttime,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100472 "\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100473}
474
Simon Hormand9366582011-06-15 15:18:45 +0900475/* print a string of text buffer to <out>. The format is :
476 * Non-printable chars \t, \n, \r and \e are * encoded in C format.
477 * Other non-printable chars are encoded "\xHH". Space and '\' are also escaped.
478 * Print stopped if null char or <bsize> is reached, or if no more place in the chunk.
479 */
480static int dump_text(struct chunk *out, const char *buf, int bsize)
481{
482 unsigned char c;
483 int ptr = 0;
484
485 while (buf[ptr] && ptr < bsize) {
486 c = buf[ptr];
487 if (isprint(c) && isascii(c) && c != '\\' && c != ' ') {
488 if (out->len > out->size - 1)
489 break;
490 out->str[out->len++] = c;
491 }
492 else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ') {
493 if (out->len > out->size - 2)
494 break;
495 out->str[out->len++] = '\\';
496 switch (c) {
497 case ' ': c = ' '; break;
498 case '\t': c = 't'; break;
499 case '\n': c = 'n'; break;
500 case '\r': c = 'r'; break;
501 case '\e': c = 'e'; break;
502 case '\\': c = '\\'; break;
503 }
504 out->str[out->len++] = c;
505 }
506 else {
507 if (out->len > out->size - 4)
508 break;
509 out->str[out->len++] = '\\';
510 out->str[out->len++] = 'x';
511 out->str[out->len++] = hextab[(c >> 4) & 0xF];
512 out->str[out->len++] = hextab[c & 0xF];
513 }
514 ptr++;
515 }
516
517 return ptr;
518}
519
520/* print a buffer in hexa.
521 * Print stopped if <bsize> is reached, or if no more place in the chunk.
522 */
523static int dump_binary(struct chunk *out, const char *buf, int bsize)
524{
525 unsigned char c;
526 int ptr = 0;
527
528 while (ptr < bsize) {
529 c = buf[ptr];
530
531 if (out->len > out->size - 2)
532 break;
533 out->str[out->len++] = hextab[(c >> 4) & 0xF];
534 out->str[out->len++] = hextab[c & 0xF];
535
536 ptr++;
537 }
538 return ptr;
539}
540
541/* Dump the status of a table to a stream interface's
542 * read buffer. It returns 0 if the output buffer is full
543 * and needs to be called again, otherwise non-zero.
544 */
545static int stats_dump_table_head_to_buffer(struct chunk *msg, struct stream_interface *si,
546 struct proxy *proxy, struct proxy *target)
547{
Willy Tarreau87b09662015-04-03 00:22:06 +0200548 struct stream *s = si_strm(si);
Simon Hormand9366582011-06-15 15:18:45 +0900549
Willy Tarreau77804732012-10-29 16:14:26 +0100550 chunk_appendf(msg, "# table: %s, type: %s, size:%d, used:%d\n",
Simon Hormand9366582011-06-15 15:18:45 +0900551 proxy->id, stktable_types[proxy->table.type].kw, proxy->table.size, proxy->table.current);
552
553 /* any other information should be dumped here */
554
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200555 if (target && strm_li(s)->bind_conf->level < ACCESS_LVL_OPER)
Willy Tarreau77804732012-10-29 16:14:26 +0100556 chunk_appendf(msg, "# contents not dumped due to insufficient privileges\n");
Simon Hormand9366582011-06-15 15:18:45 +0900557
Willy Tarreaubc18da12015-03-13 14:00:47 +0100558 if (bi_putchk(si_ic(si), msg) == -1) {
559 si->flags |= SI_FL_WAIT_ROOM;
Simon Hormand9366582011-06-15 15:18:45 +0900560 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +0100561 }
Simon Hormand9366582011-06-15 15:18:45 +0900562
563 return 1;
564}
565
566/* Dump the a table entry to a stream interface's
567 * read buffer. It returns 0 if the output buffer is full
568 * and needs to be called again, otherwise non-zero.
569 */
570static int stats_dump_table_entry_to_buffer(struct chunk *msg, struct stream_interface *si,
571 struct proxy *proxy, struct stksess *entry)
572{
573 int dt;
574
Willy Tarreau77804732012-10-29 16:14:26 +0100575 chunk_appendf(msg, "%p:", entry);
Simon Hormand9366582011-06-15 15:18:45 +0900576
577 if (proxy->table.type == STKTABLE_TYPE_IP) {
578 char addr[INET_ADDRSTRLEN];
579 inet_ntop(AF_INET, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100580 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900581 }
582 else if (proxy->table.type == STKTABLE_TYPE_IPV6) {
583 char addr[INET6_ADDRSTRLEN];
584 inet_ntop(AF_INET6, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100585 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900586 }
587 else if (proxy->table.type == STKTABLE_TYPE_INTEGER) {
Willy Tarreau77804732012-10-29 16:14:26 +0100588 chunk_appendf(msg, " key=%u", *(unsigned int *)entry->key.key);
Simon Hormand9366582011-06-15 15:18:45 +0900589 }
590 else if (proxy->table.type == STKTABLE_TYPE_STRING) {
Willy Tarreau77804732012-10-29 16:14:26 +0100591 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900592 dump_text(msg, (const char *)entry->key.key, proxy->table.key_size);
593 }
594 else {
Willy Tarreau77804732012-10-29 16:14:26 +0100595 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900596 dump_binary(msg, (const char *)entry->key.key, proxy->table.key_size);
597 }
598
Willy Tarreau77804732012-10-29 16:14:26 +0100599 chunk_appendf(msg, " use=%d exp=%d", entry->ref_cnt - 1, tick_remain(now_ms, entry->expire));
Simon Hormand9366582011-06-15 15:18:45 +0900600
601 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
602 void *ptr;
603
604 if (proxy->table.data_ofs[dt] == 0)
605 continue;
606 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
Willy Tarreau77804732012-10-29 16:14:26 +0100607 chunk_appendf(msg, " %s(%d)=", stktable_data_types[dt].name, proxy->table.data_arg[dt].u);
Simon Hormand9366582011-06-15 15:18:45 +0900608 else
Willy Tarreau77804732012-10-29 16:14:26 +0100609 chunk_appendf(msg, " %s=", stktable_data_types[dt].name);
Simon Hormand9366582011-06-15 15:18:45 +0900610
611 ptr = stktable_data_ptr(&proxy->table, entry, dt);
612 switch (stktable_data_types[dt].std_type) {
613 case STD_T_SINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100614 chunk_appendf(msg, "%d", stktable_data_cast(ptr, std_t_sint));
Simon Hormand9366582011-06-15 15:18:45 +0900615 break;
616 case STD_T_UINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100617 chunk_appendf(msg, "%u", stktable_data_cast(ptr, std_t_uint));
Simon Hormand9366582011-06-15 15:18:45 +0900618 break;
619 case STD_T_ULL:
Willy Tarreau77804732012-10-29 16:14:26 +0100620 chunk_appendf(msg, "%lld", stktable_data_cast(ptr, std_t_ull));
Simon Hormand9366582011-06-15 15:18:45 +0900621 break;
622 case STD_T_FRQP:
Willy Tarreau77804732012-10-29 16:14:26 +0100623 chunk_appendf(msg, "%d",
Simon Hormand9366582011-06-15 15:18:45 +0900624 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
625 proxy->table.data_arg[dt].u));
626 break;
627 }
628 }
Willy Tarreau77804732012-10-29 16:14:26 +0100629 chunk_appendf(msg, "\n");
Simon Hormand9366582011-06-15 15:18:45 +0900630
Willy Tarreaubc18da12015-03-13 14:00:47 +0100631 if (bi_putchk(si_ic(si), msg) == -1) {
632 si->flags |= SI_FL_WAIT_ROOM;
Simon Hormand9366582011-06-15 15:18:45 +0900633 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +0100634 }
Simon Hormand9366582011-06-15 15:18:45 +0900635
636 return 1;
637}
638
Willy Tarreaudec98142012-06-06 23:37:08 +0200639static void stats_sock_table_key_request(struct stream_interface *si, char **args, int action)
Simon Horman121f3052011-06-15 15:18:46 +0900640{
Willy Tarreau87b09662015-04-03 00:22:06 +0200641 struct stream *s = si_strm(si);
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100642 struct appctx *appctx = __objt_appctx(si->end);
643 struct proxy *px = appctx->ctx.table.target;
Simon Horman121f3052011-06-15 15:18:46 +0900644 struct stksess *ts;
Simon Hormancec9a222011-06-15 15:18:51 +0900645 uint32_t uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900646 unsigned char ip6_key[sizeof(struct in6_addr)];
Willy Tarreau654694e2012-06-07 01:03:16 +0200647 long long value;
648 int data_type;
Willy Tarreau47060b62013-08-01 21:11:42 +0200649 int cur_arg;
Willy Tarreau654694e2012-06-07 01:03:16 +0200650 void *ptr;
651 struct freq_ctr_period *frqp;
Simon Horman121f3052011-06-15 15:18:46 +0900652
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100653 appctx->st0 = STAT_CLI_OUTPUT;
Simon Horman121f3052011-06-15 15:18:46 +0900654
655 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100656 appctx->ctx.cli.msg = "Key value expected\n";
657 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900658 return;
659 }
660
Simon Hormanc5b89f62011-06-15 15:18:50 +0900661 switch (px->table.type) {
662 case STKTABLE_TYPE_IP:
Simon Hormancec9a222011-06-15 15:18:51 +0900663 uint32_key = htonl(inetaddr_host(args[4]));
Willy Tarreau07115412012-10-29 21:56:59 +0100664 static_table_key->key = &uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900665 break;
666 case STKTABLE_TYPE_IPV6:
667 inet_pton(AF_INET6, args[4], ip6_key);
Willy Tarreau07115412012-10-29 21:56:59 +0100668 static_table_key->key = &ip6_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900669 break;
Simon Hormancec9a222011-06-15 15:18:51 +0900670 case STKTABLE_TYPE_INTEGER:
671 {
672 char *endptr;
673 unsigned long val;
674 errno = 0;
675 val = strtoul(args[4], &endptr, 10);
676 if ((errno == ERANGE && val == ULONG_MAX) ||
677 (errno != 0 && val == 0) || endptr == args[4] ||
678 val > 0xffffffff) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100679 appctx->ctx.cli.msg = "Invalid key\n";
680 appctx->st0 = STAT_CLI_PRINT;
Simon Hormancec9a222011-06-15 15:18:51 +0900681 return;
682 }
683 uint32_key = (uint32_t) val;
Willy Tarreau07115412012-10-29 21:56:59 +0100684 static_table_key->key = &uint32_key;
Simon Hormancec9a222011-06-15 15:18:51 +0900685 break;
686 }
687 break;
Simon Horman619e3cc2011-06-15 15:18:52 +0900688 case STKTABLE_TYPE_STRING:
Willy Tarreau07115412012-10-29 21:56:59 +0100689 static_table_key->key = args[4];
690 static_table_key->key_len = strlen(args[4]);
Simon Horman619e3cc2011-06-15 15:18:52 +0900691 break;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900692 default:
Willy Tarreaudec98142012-06-06 23:37:08 +0200693 switch (action) {
694 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100695 appctx->ctx.cli.msg = "Showing keys from tables of type other than ip, ipv6, string and integer is not supported\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200696 break;
697 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100698 appctx->ctx.cli.msg = "Removing keys from ip tables of type other than ip, ipv6, string and integer is not supported\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200699 break;
700 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100701 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200702 break;
703 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100704 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900705 return;
706 }
707
708 /* check permissions */
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200709 if (strm_li(s)->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100710 appctx->ctx.cli.msg = stats_permission_denied_msg;
711 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900712 return;
713 }
714
Willy Tarreau07115412012-10-29 21:56:59 +0100715 ts = stktable_lookup_key(&px->table, static_table_key);
Simon Horman17bce342011-06-15 15:18:47 +0900716
Willy Tarreaudec98142012-06-06 23:37:08 +0200717 switch (action) {
718 case STAT_CLI_O_TAB:
719 if (!ts)
720 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100721 chunk_reset(&trash);
722 if (!stats_dump_table_head_to_buffer(&trash, si, px, px))
Simon Horman17bce342011-06-15 15:18:47 +0900723 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100724 stats_dump_table_entry_to_buffer(&trash, si, px, ts);
Simon Horman121f3052011-06-15 15:18:46 +0900725 return;
Willy Tarreaudec98142012-06-06 23:37:08 +0200726
727 case STAT_CLI_O_CLR:
728 if (!ts)
729 return;
730 if (ts->ref_cnt) {
731 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100732 appctx->ctx.cli.msg = "Entry currently in use, cannot remove\n";
733 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200734 return;
735 }
736 stksess_kill(&px->table, ts);
737 break;
Simon Horman17bce342011-06-15 15:18:47 +0900738
Willy Tarreau654694e2012-06-07 01:03:16 +0200739 case STAT_CLI_O_SET:
Willy Tarreau654694e2012-06-07 01:03:16 +0200740 if (ts)
741 stktable_touch(&px->table, ts, 1);
742 else {
Willy Tarreau07115412012-10-29 21:56:59 +0100743 ts = stksess_new(&px->table, static_table_key);
Willy Tarreau654694e2012-06-07 01:03:16 +0200744 if (!ts) {
745 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100746 appctx->ctx.cli.msg = "Unable to allocate a new entry\n";
747 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200748 return;
749 }
750 stktable_store(&px->table, ts, 1);
751 }
752
Willy Tarreau47060b62013-08-01 21:11:42 +0200753 for (cur_arg = 5; *args[cur_arg]; cur_arg += 2) {
754 if (strncmp(args[cur_arg], "data.", 5) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100755 appctx->ctx.cli.msg = "\"data.<type>\" followed by a value expected\n";
756 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200757 return;
758 }
759
760 data_type = stktable_get_data_type(args[cur_arg] + 5);
761 if (data_type < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100762 appctx->ctx.cli.msg = "Unknown data type\n";
763 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200764 return;
765 }
766
767 if (!px->table.data_ofs[data_type]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100768 appctx->ctx.cli.msg = "Data type not stored in this table\n";
769 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200770 return;
771 }
772
773 if (!*args[cur_arg+1] || strl2llrc(args[cur_arg+1], strlen(args[cur_arg+1]), &value) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100774 appctx->ctx.cli.msg = "Require a valid integer value to store\n";
775 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200776 return;
777 }
778
779 ptr = stktable_data_ptr(&px->table, ts, data_type);
780
781 switch (stktable_data_types[data_type].std_type) {
782 case STD_T_SINT:
783 stktable_data_cast(ptr, std_t_sint) = value;
784 break;
785 case STD_T_UINT:
786 stktable_data_cast(ptr, std_t_uint) = value;
787 break;
788 case STD_T_ULL:
789 stktable_data_cast(ptr, std_t_ull) = value;
790 break;
791 case STD_T_FRQP:
792 /* We set both the current and previous values. That way
793 * the reported frequency is stable during all the period
794 * then slowly fades out. This allows external tools to
795 * push measures without having to update them too often.
796 */
797 frqp = &stktable_data_cast(ptr, std_t_frqp);
798 frqp->curr_tick = now_ms;
799 frqp->prev_ctr = 0;
800 frqp->curr_ctr = value;
801 break;
802 }
Willy Tarreau654694e2012-06-07 01:03:16 +0200803 }
804 break;
805
Willy Tarreaudec98142012-06-06 23:37:08 +0200806 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100807 appctx->ctx.cli.msg = "Unknown action\n";
808 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200809 break;
Simon Horman121f3052011-06-15 15:18:46 +0900810 }
Simon Horman121f3052011-06-15 15:18:46 +0900811}
812
Willy Tarreau654694e2012-06-07 01:03:16 +0200813static void stats_sock_table_data_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900814{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100815 struct appctx *appctx = __objt_appctx(si->end);
816
Willy Tarreau04b3a192013-04-13 09:41:37 +0200817 if (action != STAT_CLI_O_TAB && action != STAT_CLI_O_CLR) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100818 appctx->ctx.cli.msg = "content-based lookup is only supported with the \"show\" and \"clear\" actions";
819 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200820 return;
821 }
822
Simon Hormand5b9fd92011-06-15 15:18:48 +0900823 /* condition on stored data value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100824 appctx->ctx.table.data_type = stktable_get_data_type(args[3] + 5);
825 if (appctx->ctx.table.data_type < 0) {
826 appctx->ctx.cli.msg = "Unknown data type\n";
827 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900828 return;
829 }
830
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100831 if (!((struct proxy *)appctx->ctx.table.target)->table.data_ofs[appctx->ctx.table.data_type]) {
832 appctx->ctx.cli.msg = "Data type not stored in this table\n";
833 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900834 return;
835 }
836
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100837 appctx->ctx.table.data_op = get_std_op(args[4]);
838 if (appctx->ctx.table.data_op < 0) {
839 appctx->ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
840 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900841 return;
842 }
843
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100844 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &appctx->ctx.table.value) != 0) {
845 appctx->ctx.cli.msg = "Require a valid integer value to compare against\n";
846 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900847 return;
848 }
849}
850
Willy Tarreaudec98142012-06-06 23:37:08 +0200851static void stats_sock_table_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900852{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100853 struct appctx *appctx = __objt_appctx(si->end);
854
855 appctx->ctx.table.data_type = -1;
856 appctx->st2 = STAT_ST_INIT;
857 appctx->ctx.table.target = NULL;
858 appctx->ctx.table.proxy = NULL;
859 appctx->ctx.table.entry = NULL;
860 appctx->st0 = action;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900861
862 if (*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100863 appctx->ctx.table.target = find_stktable(args[2]);
864 if (!appctx->ctx.table.target) {
865 appctx->ctx.cli.msg = "No such table\n";
866 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900867 return;
868 }
869 }
870 else {
Willy Tarreaudec98142012-06-06 23:37:08 +0200871 if (action != STAT_CLI_O_TAB)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900872 goto err_args;
873 return;
874 }
875
876 if (strcmp(args[3], "key") == 0)
Willy Tarreaudec98142012-06-06 23:37:08 +0200877 stats_sock_table_key_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900878 else if (strncmp(args[3], "data.", 5) == 0)
Willy Tarreau654694e2012-06-07 01:03:16 +0200879 stats_sock_table_data_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900880 else if (*args[3])
Simon Hormand5b9fd92011-06-15 15:18:48 +0900881 goto err_args;
882
883 return;
884
885err_args:
Willy Tarreaudec98142012-06-06 23:37:08 +0200886 switch (action) {
887 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100888 appctx->ctx.cli.msg = "Optional argument only supports \"data.<store_data_type>\" <operator> <value> and key <key>\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200889 break;
890 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100891 appctx->ctx.cli.msg = "Required arguments: <table> \"data.<store_data_type>\" <operator> <value> or <table> key <key>\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200892 break;
893 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100894 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200895 break;
896 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100897 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900898}
899
Willy Tarreau532a4502011-09-07 22:37:44 +0200900/* Expects to find a frontend named <arg> and returns it, otherwise displays various
Willy Tarreau87b09662015-04-03 00:22:06 +0200901 * adequate error messages and returns NULL. This function also expects the stream
Willy Tarreau532a4502011-09-07 22:37:44 +0200902 * level to be admin.
903 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200904static struct proxy *expect_frontend_admin(struct stream *s, struct stream_interface *si, const char *arg)
Willy Tarreau532a4502011-09-07 22:37:44 +0200905{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100906 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau532a4502011-09-07 22:37:44 +0200907 struct proxy *px;
908
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200909 if (strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100910 appctx->ctx.cli.msg = stats_permission_denied_msg;
911 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200912 return NULL;
913 }
914
915 if (!*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100916 appctx->ctx.cli.msg = "A frontend name is expected.\n";
917 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200918 return NULL;
919 }
920
921 px = findproxy(arg, PR_CAP_FE);
922 if (!px) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100923 appctx->ctx.cli.msg = "No such frontend.\n";
924 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200925 return NULL;
926 }
927 return px;
928}
929
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200930/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
931 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau87b09662015-04-03 00:22:06 +0200932 * and returns NULL. This function also expects the stream level to be admin. Note:
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200933 * the <arg> is modified to remove the '/'.
934 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200935static struct server *expect_server_admin(struct stream *s, struct stream_interface *si, char *arg)
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200936{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100937 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200938 struct proxy *px;
939 struct server *sv;
940 char *line;
941
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200942 if (strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100943 appctx->ctx.cli.msg = stats_permission_denied_msg;
944 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200945 return NULL;
946 }
947
948 /* split "backend/server" and make <line> point to server */
949 for (line = arg; *line; line++)
950 if (*line == '/') {
951 *line++ = '\0';
952 break;
953 }
954
955 if (!*line || !*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100956 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
957 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200958 return NULL;
959 }
960
961 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100962 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
963 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200964 return NULL;
965 }
966
967 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100968 appctx->ctx.cli.msg = "Proxy is disabled.\n";
969 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200970 return NULL;
971 }
972
973 return sv;
974}
975
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100976/* This function is used with map and acl management. It permits to browse
977 * each reference. The variable <getnext> must contain the current node,
978 * <end> point to the root node and the <flags> permit to filter required
979 * nodes.
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100980 */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100981static inline
982struct pat_ref *pat_list_get_next(struct pat_ref *getnext, struct list *end,
983 unsigned int flags)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100984{
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100985 struct pat_ref *ref = getnext;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100986
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100987 while (1) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100988
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100989 /* Get next list entry. */
990 ref = LIST_NEXT(&ref->list, struct pat_ref *, list);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100991
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100992 /* If the entry is the last of the list, return NULL. */
993 if (&ref->list == end)
994 return NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100995
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100996 /* If the entry match the flag, return it. */
997 if (ref->flags & flags)
998 return ref;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100999 }
1000}
1001
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001002static inline
1003struct pat_ref *pat_ref_lookup_ref(const char *reference)
1004{
1005 int id;
1006 char *error;
1007
1008 /* If the reference starts by a '#', this is numeric id. */
1009 if (reference[0] == '#') {
1010 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
1011 id = strtol(reference + 1, &error, 10);
1012 if (*error != '\0')
1013 return NULL;
1014
1015 /* Perform the unique id lookup. */
1016 return pat_ref_lookupid(id);
1017 }
1018
1019 /* Perform the string lookup. */
1020 return pat_ref_lookup(reference);
1021}
1022
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001023/* This function is used with map and acl management. It permits to browse
1024 * each reference.
1025 */
1026static inline
1027struct pattern_expr *pat_expr_get_next(struct pattern_expr *getnext, struct list *end)
1028{
1029 struct pattern_expr *expr;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001030 expr = LIST_NEXT(&getnext->list, struct pattern_expr *, list);
1031 if (&expr->list == end)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001032 return NULL;
1033 return expr;
1034}
1035
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001036/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001037 * called from an applet running in a stream interface. The function returns 1
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001038 * if the request was understood, otherwise zero. It sets appctx->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02001039 * designating the function which will have to process the request, which can
1040 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001041 */
Simon Horman9bd2c732011-06-15 15:18:44 +09001042static int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001043{
Willy Tarreau87b09662015-04-03 00:22:06 +02001044 struct stream *s = si_strm(si);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001045 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001046 char *args[MAX_STATS_ARGS + 1];
1047 int arg;
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001048 int i, j;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001049
1050 while (isspace((unsigned char)*line))
1051 line++;
1052
1053 arg = 0;
1054 args[arg] = line;
1055
1056 while (*line && arg < MAX_STATS_ARGS) {
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001057 if (*line == '\\') {
1058 line++;
1059 if (*line == '\0')
1060 break;
1061 }
1062 else if (isspace((unsigned char)*line)) {
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001063 *line++ = '\0';
1064
1065 while (isspace((unsigned char)*line))
1066 line++;
1067
1068 args[++arg] = line;
1069 continue;
1070 }
1071
1072 line++;
1073 }
1074
1075 while (++arg <= MAX_STATS_ARGS)
1076 args[arg] = line;
1077
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001078 /* remove \ */
1079 arg = 0;
1080 while (*args[arg] != '\0') {
1081 j = 0;
1082 for (i=0; args[arg][i] != '\0'; i++) {
1083 if (args[arg][i] == '\\')
1084 continue;
1085 args[arg][j] = args[arg][i];
1086 j++;
1087 }
1088 args[arg][j] = '\0';
1089 arg++;
1090 }
1091
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001092 appctx->ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001093 if (strcmp(args[0], "show") == 0) {
1094 if (strcmp(args[1], "stat") == 0) {
1095 if (*args[2] && *args[3] && *args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001096 appctx->ctx.stats.flags |= STAT_BOUND;
1097 appctx->ctx.stats.iid = atoi(args[2]);
1098 appctx->ctx.stats.type = atoi(args[3]);
1099 appctx->ctx.stats.sid = atoi(args[4]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001100 }
1101
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001102 appctx->st2 = STAT_ST_INIT;
1103 appctx->st0 = STAT_CLI_O_STAT; // stats_dump_stat_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001104 }
1105 else if (strcmp(args[1], "info") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001106 appctx->st2 = STAT_ST_INIT;
1107 appctx->st0 = STAT_CLI_O_INFO; // stats_dump_info_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001108 }
Willy Tarreau12833bb2014-01-28 16:49:56 +01001109 else if (strcmp(args[1], "pools") == 0) {
1110 appctx->st2 = STAT_ST_INIT;
1111 appctx->st0 = STAT_CLI_O_POOLS; // stats_dump_pools_to_buffer
1112 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001113 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001114 appctx->st2 = STAT_ST_INIT;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001115 if (strm_li(s)->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001116 appctx->ctx.cli.msg = stats_permission_denied_msg;
1117 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001118 return 1;
1119 }
Willy Tarreau76153662012-11-26 01:16:39 +01001120 if (*args[2] && strcmp(args[2], "all") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001121 appctx->ctx.sess.target = (void *)-1;
Willy Tarreau76153662012-11-26 01:16:39 +01001122 else if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001123 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01001124 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001125 appctx->ctx.sess.target = NULL;
Willy Tarreau87b09662015-04-03 00:22:06 +02001126 appctx->ctx.sess.section = 0; /* start with stream status */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001127 appctx->ctx.sess.pos = 0;
1128 appctx->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001129 }
1130 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001131 if (strm_li(s)->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001132 appctx->ctx.cli.msg = stats_permission_denied_msg;
1133 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001134 return 1;
1135 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001136 if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001137 appctx->ctx.errors.iid = atoi(args[2]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001138 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001139 appctx->ctx.errors.iid = -1;
1140 appctx->ctx.errors.px = NULL;
1141 appctx->st2 = STAT_ST_INIT;
1142 appctx->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001143 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02001144 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001145 stats_sock_table_request(si, args, STAT_CLI_O_TAB);
Willy Tarreau69f58c82010-07-12 17:55:33 +02001146 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001147 else if (strcmp(args[1], "map") == 0 ||
1148 strcmp(args[1], "acl") == 0) {
1149
1150 /* Set ACL or MAP flags. */
1151 if (args[1][0] == 'm')
1152 appctx->ctx.map.display_flags = PAT_REF_MAP;
1153 else
1154 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001155
1156 /* no parameter: display all map avalaible */
1157 if (!*args[2]) {
1158 appctx->st2 = STAT_ST_INIT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001159 appctx->st0 = STAT_CLI_O_PATS;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001160 return 1;
1161 }
1162
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001163 /* lookup into the refs and check the map flag */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001164 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001165 if (!appctx->ctx.map.ref ||
1166 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
1167 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001168 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001169 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001170 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001171 appctx->st0 = STAT_CLI_PRINT;
1172 return 1;
1173 }
1174 appctx->st2 = STAT_ST_INIT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001175 appctx->st0 = STAT_CLI_O_PAT;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001176 }
Aman Guptaceafb4a2012-04-02 18:57:54 -07001177 else { /* neither "stat" nor "info" nor "sess" nor "errors" nor "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001178 return 0;
1179 }
1180 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001181 else if (strcmp(args[0], "clear") == 0) {
1182 if (strcmp(args[1], "counters") == 0) {
1183 struct proxy *px;
1184 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001185 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001186 int clrall = 0;
1187
1188 if (strcmp(args[2], "all") == 0)
1189 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001190
Willy Tarreau6162db22009-10-10 17:13:00 +02001191 /* check permissions */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001192 if (strm_li(s)->bind_conf->level < ACCESS_LVL_OPER ||
1193 (clrall && strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001194 appctx->ctx.cli.msg = stats_permission_denied_msg;
1195 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001196 return 1;
1197 }
1198
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001199 for (px = proxy; px; px = px->next) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001200 if (clrall) {
1201 memset(&px->be_counters, 0, sizeof(px->be_counters));
1202 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
1203 }
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001204 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001205 px->be_counters.conn_max = 0;
1206 px->be_counters.p.http.rps_max = 0;
1207 px->be_counters.sps_max = 0;
1208 px->be_counters.cps_max = 0;
1209 px->be_counters.nbpend_max = 0;
1210
1211 px->fe_counters.conn_max = 0;
1212 px->fe_counters.p.http.rps_max = 0;
1213 px->fe_counters.sps_max = 0;
1214 px->fe_counters.cps_max = 0;
1215 px->fe_counters.nbpend_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001216 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001217
1218 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001219 if (clrall)
1220 memset(&sv->counters, 0, sizeof(sv->counters));
1221 else {
1222 sv->counters.cur_sess_max = 0;
1223 sv->counters.nbpend_max = 0;
1224 sv->counters.sps_max = 0;
1225 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001226
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001227 list_for_each_entry(li, &px->conf.listeners, by_fe)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001228 if (li->counters) {
1229 if (clrall)
1230 memset(li->counters, 0, sizeof(*li->counters));
1231 else
1232 li->counters->conn_max = 0;
1233 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001234 }
1235
Willy Tarreau81c25d02011-09-07 15:17:21 +02001236 global.cps_max = 0;
Willy Tarreau93e7c002013-10-07 18:51:07 +02001237 global.sps_max = 0;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001238 return 1;
1239 }
Willy Tarreau88ee3972010-07-13 13:48:00 +02001240 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001241 stats_sock_table_request(si, args, STAT_CLI_O_CLR);
Willy Tarreau88ee3972010-07-13 13:48:00 +02001242 /* end of processing */
1243 return 1;
1244 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001245 else if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
1246 /* Set ACL or MAP flags. */
1247 if (args[1][0] == 'm')
1248 appctx->ctx.map.display_flags = PAT_REF_MAP;
1249 else
1250 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001251
1252 /* no parameter */
1253 if (!*args[2]) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001254 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
1255 appctx->ctx.cli.msg = "Missing map identifier.\n";
1256 else
1257 appctx->ctx.cli.msg = "Missing ACL identifier.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001258 appctx->st0 = STAT_CLI_PRINT;
1259 return 1;
1260 }
1261
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001262 /* lookup into the refs and check the map flag */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001263 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001264 if (!appctx->ctx.map.ref ||
1265 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
1266 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001267 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001268 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001269 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001270 appctx->st0 = STAT_CLI_PRINT;
1271 return 1;
1272 }
1273
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001274 /* Clear all. */
1275 pat_ref_prune(appctx->ctx.map.ref);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001276
1277 /* return response */
Thierry FOURNIER07e78c52014-12-18 15:28:01 +01001278 appctx->st0 = STAT_CLI_PROMPT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001279 return 1;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001280 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001281 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +02001282 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001283 return 0;
1284 }
1285 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001286 else if (strcmp(args[0], "get") == 0) {
1287 if (strcmp(args[1], "weight") == 0) {
1288 struct proxy *px;
1289 struct server *sv;
1290
1291 /* split "backend/server" and make <line> point to server */
1292 for (line = args[2]; *line; line++)
1293 if (*line == '/') {
1294 *line++ = '\0';
1295 break;
1296 }
1297
1298 if (!*line) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001299 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
1300 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001301 return 1;
1302 }
1303
1304 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001305 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
1306 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001307 return 1;
1308 }
1309
1310 /* return server's effective weight at the moment */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001311 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
Willy Tarreaubc18da12015-03-13 14:00:47 +01001312 if (bi_putstr(si_ic(si), trash.str) == -1)
1313 si->flags |= SI_FL_WAIT_ROOM;
1314
Willy Tarreau38338fa2009-10-10 18:37:29 +02001315 return 1;
1316 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001317 else if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
1318 /* Set flags. */
1319 if (args[1][0] == 'm')
1320 appctx->ctx.map.display_flags = PAT_REF_MAP;
1321 else
1322 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001323
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001324 /* No parameter. */
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001325 if (!*args[2] || !*args[3]) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001326 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
1327 appctx->ctx.cli.msg = "Missing map identifier and/or key.\n";
1328 else
1329 appctx->ctx.cli.msg = "Missing ACL identifier and/or key.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001330 appctx->st0 = STAT_CLI_PRINT;
1331 return 1;
1332 }
1333
1334 /* lookup into the maps */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001335 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001336 if (!appctx->ctx.map.ref) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001337 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001338 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001339 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001340 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001341 appctx->st0 = STAT_CLI_PRINT;
1342 return 1;
1343 }
1344
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001345 /* copy input string. The string must be allocated because
1346 * it may be used over multiple iterations. It's released
1347 * at the end and upon abort anyway.
1348 */
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001349 appctx->ctx.map.chunk.len = strlen(args[3]);
1350 appctx->ctx.map.chunk.size = appctx->ctx.map.chunk.len + 1;
1351 appctx->ctx.map.chunk.str = strdup(args[3]);
1352 if (!appctx->ctx.map.chunk.str) {
1353 appctx->ctx.cli.msg = "Out of memory error.\n";
1354 appctx->st0 = STAT_CLI_PRINT;
1355 return 1;
1356 }
1357
1358 /* prepare response */
1359 appctx->st2 = STAT_ST_INIT;
1360 appctx->st0 = STAT_CLI_O_MLOOK;
1361 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001362 else { /* not "get weight" */
1363 return 0;
1364 }
1365 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001366 else if (strcmp(args[0], "set") == 0) {
1367 if (strcmp(args[1], "weight") == 0) {
Willy Tarreau4483d432009-10-10 19:30:08 +02001368 struct server *sv;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001369 const char *warning;
Willy Tarreau4483d432009-10-10 19:30:08 +02001370
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001371 sv = expect_server_admin(s, si, args[2]);
1372 if (!sv)
Willy Tarreau4483d432009-10-10 19:30:08 +02001373 return 1;
Willy Tarreau4483d432009-10-10 19:30:08 +02001374
Simon Horman7d09b9a2013-02-12 10:45:51 +09001375 warning = server_parse_weight_change_request(sv, args[3]);
1376 if (warning) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001377 appctx->ctx.cli.msg = warning;
1378 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +02001379 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001380 return 1;
1381 }
Willy Tarreau2a4b70f2014-05-22 18:42:35 +02001382 else if (strcmp(args[1], "server") == 0) {
1383 struct server *sv;
1384 const char *warning;
1385
1386 sv = expect_server_admin(s, si, args[2]);
1387 if (!sv)
1388 return 1;
1389
1390 if (strcmp(args[3], "weight") == 0) {
1391 warning = server_parse_weight_change_request(sv, args[4]);
1392 if (warning) {
1393 appctx->ctx.cli.msg = warning;
1394 appctx->st0 = STAT_CLI_PRINT;
1395 }
1396 }
1397 else if (strcmp(args[3], "state") == 0) {
1398 if (strcmp(args[4], "ready") == 0)
1399 srv_adm_set_ready(sv);
1400 else if (strcmp(args[4], "drain") == 0)
1401 srv_adm_set_drain(sv);
1402 else if (strcmp(args[4], "maint") == 0)
1403 srv_adm_set_maint(sv);
1404 else {
1405 appctx->ctx.cli.msg = "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n";
1406 appctx->st0 = STAT_CLI_PRINT;
1407 }
1408 }
1409 else if (strcmp(args[3], "health") == 0) {
1410 if (sv->track) {
1411 appctx->ctx.cli.msg = "cannot change health on a tracking server.\n";
1412 appctx->st0 = STAT_CLI_PRINT;
1413 }
1414 else if (strcmp(args[4], "up") == 0) {
1415 sv->check.health = sv->check.rise + sv->check.fall - 1;
1416 srv_set_running(sv, "changed from CLI");
1417 }
1418 else if (strcmp(args[4], "stopping") == 0) {
1419 sv->check.health = sv->check.rise + sv->check.fall - 1;
1420 srv_set_stopping(sv, "changed from CLI");
1421 }
1422 else if (strcmp(args[4], "down") == 0) {
1423 sv->check.health = 0;
1424 srv_set_stopped(sv, "changed from CLI");
1425 }
1426 else {
1427 appctx->ctx.cli.msg = "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n";
1428 appctx->st0 = STAT_CLI_PRINT;
1429 }
1430 }
1431 else if (strcmp(args[3], "agent") == 0) {
1432 if (!(sv->agent.state & CHK_ST_ENABLED)) {
1433 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
1434 appctx->st0 = STAT_CLI_PRINT;
1435 }
1436 else if (strcmp(args[4], "up") == 0) {
1437 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
1438 srv_set_running(sv, "changed from CLI");
1439 }
1440 else if (strcmp(args[4], "down") == 0) {
1441 sv->agent.health = 0;
1442 srv_set_stopped(sv, "changed from CLI");
1443 }
1444 else {
1445 appctx->ctx.cli.msg = "'set server <srv> agent' expects 'up' or 'down'.\n";
1446 appctx->st0 = STAT_CLI_PRINT;
1447 }
1448 }
1449 else {
1450 appctx->ctx.cli.msg = "'set server <srv>' only supports 'agent', 'health', 'state' and 'weight'.\n";
1451 appctx->st0 = STAT_CLI_PRINT;
1452 }
1453 return 1;
1454 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001455 else if (strcmp(args[1], "timeout") == 0) {
1456 if (strcmp(args[2], "cli") == 0) {
1457 unsigned timeout;
1458 const char *res;
1459
1460 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001461 appctx->ctx.cli.msg = "Expects an integer value.\n";
1462 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001463 return 1;
1464 }
1465
1466 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1467 if (res || timeout < 1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001468 appctx->ctx.cli.msg = "Invalid timeout value.\n";
1469 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001470 return 1;
1471 }
1472
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001473 s->req.rto = s->res.wto = 1 + MS_TO_TICKS(timeout*1000);
Willy Tarreau7aabd112010-01-26 10:59:06 +01001474 return 1;
1475 }
1476 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001477 appctx->ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
1478 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001479 return 1;
1480 }
1481 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001482 else if (strcmp(args[1], "maxconn") == 0) {
1483 if (strcmp(args[2], "frontend") == 0) {
1484 struct proxy *px;
1485 struct listener *l;
1486 int v;
1487
Willy Tarreau532a4502011-09-07 22:37:44 +02001488 px = expect_frontend_admin(s, si, args[3]);
1489 if (!px)
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001490 return 1;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001491
1492 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001493 appctx->ctx.cli.msg = "Integer value expected.\n";
1494 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001495 return 1;
1496 }
1497
1498 v = atoi(args[4]);
Willy Tarreau3c7a79d2012-09-26 21:07:15 +02001499 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001500 appctx->ctx.cli.msg = "Value out of range.\n";
1501 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001502 return 1;
1503 }
1504
1505 /* OK, the value is fine, so we assign it to the proxy and to all of
1506 * its listeners. The blocked ones will be dequeued.
1507 */
1508 px->maxconn = v;
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001509 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001510 l->maxconn = v;
1511 if (l->state == LI_FULL)
1512 resume_listener(l);
1513 }
1514
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001515 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&strm_fe(s)->listener_queue))
1516 dequeue_all_listeners(&strm_fe(s)->listener_queue);
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001517
1518 return 1;
1519 }
Willy Tarreau91886b62011-09-07 14:38:31 +02001520 else if (strcmp(args[2], "global") == 0) {
1521 int v;
1522
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001523 if (strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001524 appctx->ctx.cli.msg = stats_permission_denied_msg;
1525 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001526 return 1;
1527 }
1528
1529 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001530 appctx->ctx.cli.msg = "Expects an integer value.\n";
1531 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001532 return 1;
1533 }
1534
1535 v = atoi(args[3]);
1536 if (v > global.hardmaxconn) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001537 appctx->ctx.cli.msg = "Value out of range.\n";
1538 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001539 return 1;
1540 }
1541
1542 /* check for unlimited values */
1543 if (v <= 0)
1544 v = global.hardmaxconn;
1545
1546 global.maxconn = v;
1547
1548 /* Dequeues all of the listeners waiting for a resource */
1549 if (!LIST_ISEMPTY(&global_listener_queue))
1550 dequeue_all_listeners(&global_listener_queue);
1551
1552 return 1;
1553 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001554 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001555 appctx->ctx.cli.msg = "'set maxconn' only supports 'frontend' and 'global'.\n";
1556 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001557 return 1;
1558 }
1559 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001560 else if (strcmp(args[1], "rate-limit") == 0) {
1561 if (strcmp(args[2], "connections") == 0) {
1562 if (strcmp(args[3], "global") == 0) {
1563 int v;
1564
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001565 if (strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001566 appctx->ctx.cli.msg = stats_permission_denied_msg;
1567 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001568 return 1;
1569 }
1570
1571 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001572 appctx->ctx.cli.msg = "Expects an integer value.\n";
1573 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001574 return 1;
1575 }
1576
1577 v = atoi(args[4]);
1578 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001579 appctx->ctx.cli.msg = "Value out of range.\n";
1580 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001581 return 1;
1582 }
1583
1584 global.cps_lim = v;
1585
1586 /* Dequeues all of the listeners waiting for a resource */
1587 if (!LIST_ISEMPTY(&global_listener_queue))
1588 dequeue_all_listeners(&global_listener_queue);
1589
1590 return 1;
1591 }
1592 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001593 appctx->ctx.cli.msg = "'set rate-limit connections' only supports 'global'.\n";
1594 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001595 return 1;
1596 }
1597 }
Willy Tarreau93e7c002013-10-07 18:51:07 +02001598 else if (strcmp(args[2], "sessions") == 0) {
1599 if (strcmp(args[3], "global") == 0) {
1600 int v;
1601
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001602 if (strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau93e7c002013-10-07 18:51:07 +02001603 appctx->ctx.cli.msg = stats_permission_denied_msg;
1604 appctx->st0 = STAT_CLI_PRINT;
1605 return 1;
1606 }
1607
1608 if (!*args[4]) {
1609 appctx->ctx.cli.msg = "Expects an integer value.\n";
1610 appctx->st0 = STAT_CLI_PRINT;
1611 return 1;
1612 }
1613
1614 v = atoi(args[4]);
1615 if (v < 0) {
1616 appctx->ctx.cli.msg = "Value out of range.\n";
1617 appctx->st0 = STAT_CLI_PRINT;
1618 return 1;
1619 }
1620
1621 global.sps_lim = v;
1622
1623 /* Dequeues all of the listeners waiting for a resource */
1624 if (!LIST_ISEMPTY(&global_listener_queue))
1625 dequeue_all_listeners(&global_listener_queue);
1626
1627 return 1;
1628 }
1629 else {
1630 appctx->ctx.cli.msg = "'set rate-limit sessions' only supports 'global'.\n";
1631 appctx->st0 = STAT_CLI_PRINT;
1632 return 1;
1633 }
1634 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001635#ifdef USE_OPENSSL
1636 else if (strcmp(args[2], "ssl-sessions") == 0) {
1637 if (strcmp(args[3], "global") == 0) {
1638 int v;
1639
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001640 if (strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreaue43d5322013-10-07 20:01:52 +02001641 appctx->ctx.cli.msg = stats_permission_denied_msg;
1642 appctx->st0 = STAT_CLI_PRINT;
1643 return 1;
1644 }
1645
1646 if (!*args[4]) {
1647 appctx->ctx.cli.msg = "Expects an integer value.\n";
1648 appctx->st0 = STAT_CLI_PRINT;
1649 return 1;
1650 }
1651
1652 v = atoi(args[4]);
1653 if (v < 0) {
1654 appctx->ctx.cli.msg = "Value out of range.\n";
1655 appctx->st0 = STAT_CLI_PRINT;
1656 return 1;
1657 }
1658
1659 global.ssl_lim = v;
1660
1661 /* Dequeues all of the listeners waiting for a resource */
1662 if (!LIST_ISEMPTY(&global_listener_queue))
1663 dequeue_all_listeners(&global_listener_queue);
1664
1665 return 1;
1666 }
1667 else {
1668 appctx->ctx.cli.msg = "'set rate-limit ssl-sessions' only supports 'global'.\n";
1669 appctx->st0 = STAT_CLI_PRINT;
1670 return 1;
1671 }
1672 }
1673#endif
William Lallemandd85f9172012-11-09 17:05:39 +01001674 else if (strcmp(args[2], "http-compression") == 0) {
1675 if (strcmp(args[3], "global") == 0) {
1676 int v;
1677
Willy Tarreau85d47f92012-11-21 00:29:50 +01001678 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001679 appctx->ctx.cli.msg = "Expects a maximum input byte rate in kB/s.\n";
1680 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau85d47f92012-11-21 00:29:50 +01001681 return 1;
1682 }
1683
William Lallemandd85f9172012-11-09 17:05:39 +01001684 v = atoi(args[4]);
1685 global.comp_rate_lim = v * 1024; /* Kilo to bytes. */
1686 }
1687 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001688 appctx->ctx.cli.msg = "'set rate-limit http-compression' only supports 'global'.\n";
1689 appctx->st0 = STAT_CLI_PRINT;
William Lallemandd85f9172012-11-09 17:05:39 +01001690 return 1;
1691 }
1692 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001693 else {
Willy Tarreaue43d5322013-10-07 20:01:52 +02001694 appctx->ctx.cli.msg = "'set rate-limit' supports 'connections', 'sessions', 'ssl-sessions', and 'http-compression'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001695 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001696 return 1;
1697 }
1698 }
Willy Tarreau654694e2012-06-07 01:03:16 +02001699 else if (strcmp(args[1], "table") == 0) {
1700 stats_sock_table_request(si, args, STAT_CLI_O_SET);
1701 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001702 else if (strcmp(args[1], "map") == 0) {
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001703 char *err;
1704
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001705 /* Set flags. */
1706 appctx->ctx.map.display_flags = PAT_REF_MAP;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001707
1708 /* Expect three parameters: map name, key and new value. */
1709 if (!*args[2] || !*args[3] || !*args[4]) {
Thierry FOURNIERd5723432014-03-11 13:52:44 +01001710 appctx->ctx.cli.msg = "'set map' expects three parameters: map identifier, key and value.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001711 appctx->st0 = STAT_CLI_PRINT;
1712 return 1;
1713 }
1714
1715 /* Lookup the reference in the maps. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001716 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001717 if (!appctx->ctx.map.ref) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001718 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001719 appctx->st0 = STAT_CLI_PRINT;
1720 return 1;
1721 }
1722
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001723 /* If the entry identifier start with a '#', it is considered as
1724 * pointer id
1725 */
1726 if (args[3][0] == '#' && args[3][1] == '0' && args[3][2] == 'x') {
1727 struct pat_ref_elt *ref;
1728 long long int conv;
1729 char *error;
1730
1731 /* Convert argument to integer value. */
1732 conv = strtoll(&args[3][1], &error, 16);
1733 if (*error != '\0') {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001734 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001735 appctx->st0 = STAT_CLI_PRINT;
1736 return 1;
1737 }
1738
1739 /* Convert and check integer to pointer. */
1740 ref = (struct pat_ref_elt *)(long)conv;
1741 if ((long long int)(long)ref != conv) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001742 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001743 appctx->st0 = STAT_CLI_PRINT;
1744 return 1;
1745 }
1746
1747 /* Try to delete the entry. */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001748 err = NULL;
1749 if (!pat_ref_set_by_id(appctx->ctx.map.ref, ref, args[4], &err)) {
1750 if (err)
1751 memprintf(&err, "%s.\n", err);
1752 appctx->ctx.cli.err = err;
1753 appctx->st0 = STAT_CLI_PRINT_FREE;
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001754 return 1;
1755 }
1756 }
1757 else {
1758 /* Else, use the entry identifier as pattern
1759 * string, and update the value.
1760 */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001761 err = NULL;
1762 if (!pat_ref_set(appctx->ctx.map.ref, args[3], args[4], &err)) {
1763 if (err)
1764 memprintf(&err, "%s.\n", err);
1765 appctx->ctx.cli.err = err;
1766 appctx->st0 = STAT_CLI_PRINT_FREE;
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001767 return 1;
1768 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001769 }
1770
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001771 /* The set is done, send message. */
Thierry FOURNIER07e78c52014-12-18 15:28:01 +01001772 appctx->st0 = STAT_CLI_PROMPT;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001773 return 1;
1774 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001775#ifdef USE_OPENSSL
1776 else if (strcmp(args[1], "ssl") == 0) {
1777 if (strcmp(args[2], "ocsp-response") == 0) {
Lukas Tribuse4e30f72014-12-09 16:32:51 +01001778#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001779 char *err = NULL;
1780
Emeric Brunaf4ef742014-06-19 14:10:45 +02001781 /* Expect one parameter: the new response in base64 encoding */
Emeric Brun4147b2e2014-06-16 18:36:30 +02001782 if (!*args[3]) {
1783 appctx->ctx.cli.msg = "'set ssl ocsp-response' expects response in base64 encoding.\n";
1784 appctx->st0 = STAT_CLI_PRINT;
1785 return 1;
1786 }
1787
1788 trash.len = base64dec(args[3], strlen(args[3]), trash.str, trash.size);
1789 if (trash.len < 0) {
1790 appctx->ctx.cli.msg = "'set ssl ocsp-response' received invalid base64 encoded response.\n";
1791 appctx->st0 = STAT_CLI_PRINT;
1792 return 1;
1793 }
1794
1795 if (ssl_sock_update_ocsp_response(&trash, &err)) {
1796 if (err) {
1797 memprintf(&err, "%s.\n", err);
1798 appctx->ctx.cli.err = err;
1799 appctx->st0 = STAT_CLI_PRINT_FREE;
1800 }
1801 return 1;
1802 }
1803 appctx->ctx.cli.msg = "OCSP Response updated!";
1804 appctx->st0 = STAT_CLI_PRINT;
1805 return 1;
1806#else
1807 appctx->ctx.cli.msg = "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n";
1808 appctx->st0 = STAT_CLI_PRINT;
1809 return 1;
1810#endif
1811 }
1812 else {
1813 appctx->ctx.cli.msg = "'set ssl' only supports 'ocsp-response'.\n";
1814 appctx->st0 = STAT_CLI_PRINT;
1815 return 1;
1816 }
1817 }
1818#endif
Willy Tarreau7aabd112010-01-26 10:59:06 +01001819 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +02001820 return 0;
1821 }
1822 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001823 else if (strcmp(args[0], "enable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001824 if (strcmp(args[1], "agent") == 0) {
1825 struct server *sv;
1826
1827 sv = expect_server_admin(s, si, args[2]);
1828 if (!sv)
1829 return 1;
1830
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001831 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
1832 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
1833 appctx->st0 = STAT_CLI_PRINT;
1834 return 1;
1835 }
1836
1837 sv->agent.state |= CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001838 return 1;
1839 }
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001840 else if (strcmp(args[1], "health") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001841 struct server *sv;
1842
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001843 sv = expect_server_admin(s, si, args[2]);
1844 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001845 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001846
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001847 if (!(sv->check.state & CHK_ST_CONFIGURED)) {
1848 appctx->ctx.cli.msg = "Health checks are not configured on this server, cannot enable.\n";
1849 appctx->st0 = STAT_CLI_PRINT;
1850 return 1;
1851 }
1852
1853 sv->check.state |= CHK_ST_ENABLED;
1854 return 1;
1855 }
1856 else if (strcmp(args[1], "server") == 0) {
1857 struct server *sv;
1858
1859 sv = expect_server_admin(s, si, args[2]);
1860 if (!sv)
1861 return 1;
1862
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001863 srv_adm_set_ready(sv);
Willy Tarreau532a4502011-09-07 22:37:44 +02001864 return 1;
1865 }
1866 else if (strcmp(args[1], "frontend") == 0) {
1867 struct proxy *px;
1868
1869 px = expect_frontend_admin(s, si, args[2]);
1870 if (!px)
1871 return 1;
1872
1873 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001874 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
1875 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001876 return 1;
1877 }
1878
1879 if (px->state != PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001880 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
1881 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001882 return 1;
1883 }
1884
1885 if (!resume_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001886 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
1887 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001888 return 1;
1889 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001890 return 1;
1891 }
1892 else { /* unknown "enable" parameter */
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001893 appctx->ctx.cli.msg = "'enable' only supports 'agent', 'frontend', 'health', and 'server'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001894 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001895 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001896 }
1897 }
1898 else if (strcmp(args[0], "disable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001899 if (strcmp(args[1], "agent") == 0) {
1900 struct server *sv;
1901
1902 sv = expect_server_admin(s, si, args[2]);
1903 if (!sv)
1904 return 1;
1905
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001906 sv->agent.state &= ~CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001907 return 1;
1908 }
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001909 else if (strcmp(args[1], "health") == 0) {
1910 struct server *sv;
1911
1912 sv = expect_server_admin(s, si, args[2]);
1913 if (!sv)
1914 return 1;
1915
1916 sv->check.state &= ~CHK_ST_ENABLED;
1917 return 1;
1918 }
Simon Horman671b6f02013-11-25 10:46:39 +09001919 else if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001920 struct server *sv;
1921
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001922 sv = expect_server_admin(s, si, args[2]);
1923 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001924 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001925
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001926 srv_adm_set_maint(sv);
Willy Tarreau532a4502011-09-07 22:37:44 +02001927 return 1;
1928 }
1929 else if (strcmp(args[1], "frontend") == 0) {
1930 struct proxy *px;
1931
1932 px = expect_frontend_admin(s, si, args[2]);
1933 if (!px)
1934 return 1;
1935
1936 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001937 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
1938 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001939 return 1;
1940 }
1941
1942 if (px->state == PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001943 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
1944 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001945 return 1;
1946 }
1947
1948 if (!pause_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001949 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
1950 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001951 return 1;
1952 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001953 return 1;
1954 }
1955 else { /* unknown "disable" parameter */
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001956 appctx->ctx.cli.msg = "'disable' only supports 'agent', 'frontend', 'health', and 'server'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001957 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001958 return 1;
1959 }
1960 }
1961 else if (strcmp(args[0], "shutdown") == 0) {
1962 if (strcmp(args[1], "frontend") == 0) {
1963 struct proxy *px;
1964
1965 px = expect_frontend_admin(s, si, args[2]);
1966 if (!px)
1967 return 1;
1968
1969 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001970 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
1971 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001972 return 1;
1973 }
1974
1975 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1976 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1977 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1978 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1979 stop_proxy(px);
1980 return 1;
1981 }
Willy Tarreaua295edc2011-09-07 23:21:03 +02001982 else if (strcmp(args[1], "session") == 0) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001983 struct stream *sess, *ptr;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001984
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001985 if (strm_li(s)->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001986 appctx->ctx.cli.msg = stats_permission_denied_msg;
1987 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001988 return 1;
1989 }
1990
1991 if (!*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001992 appctx->ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
1993 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001994 return 1;
1995 }
1996
1997 ptr = (void *)strtoul(args[2], NULL, 0);
1998
Willy Tarreau87b09662015-04-03 00:22:06 +02001999 /* first, look for the requested stream in the stream table */
2000 list_for_each_entry(sess, &streams, list) {
Willy Tarreaua295edc2011-09-07 23:21:03 +02002001 if (sess == ptr)
2002 break;
2003 }
2004
Willy Tarreau87b09662015-04-03 00:22:06 +02002005 /* do we have the stream ? */
Willy Tarreaua295edc2011-09-07 23:21:03 +02002006 if (sess != ptr) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002007 appctx->ctx.cli.msg = "No such session (use 'show sess').\n";
2008 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02002009 return 1;
2010 }
2011
Willy Tarreaue7dff022015-04-03 01:14:29 +02002012 stream_shutdown(sess, SF_ERR_KILLED);
Willy Tarreaua295edc2011-09-07 23:21:03 +02002013 return 1;
2014 }
Willy Tarreau52b2d222011-09-07 23:48:48 +02002015 else if (strcmp(args[1], "sessions") == 0) {
2016 if (strcmp(args[2], "server") == 0) {
2017 struct server *sv;
Willy Tarreau87b09662015-04-03 00:22:06 +02002018 struct stream *sess, *sess_bck;
Willy Tarreau52b2d222011-09-07 23:48:48 +02002019
2020 sv = expect_server_admin(s, si, args[3]);
2021 if (!sv)
2022 return 1;
2023
Willy Tarreau87b09662015-04-03 00:22:06 +02002024 /* kill all the stream that are on this server */
Willy Tarreau52b2d222011-09-07 23:48:48 +02002025 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
2026 if (sess->srv_conn == sv)
Willy Tarreaue7dff022015-04-03 01:14:29 +02002027 stream_shutdown(sess, SF_ERR_KILLED);
Willy Tarreau52b2d222011-09-07 23:48:48 +02002028
2029 return 1;
2030 }
2031 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002032 appctx->ctx.cli.msg = "'shutdown sessions' only supports 'server'.\n";
2033 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau52b2d222011-09-07 23:48:48 +02002034 return 1;
2035 }
2036 }
Willy Tarreau532a4502011-09-07 22:37:44 +02002037 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002038 appctx->ctx.cli.msg = "'shutdown' only supports 'frontend', 'session' and 'sessions'.\n";
2039 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02002040 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01002041 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002042 }
2043 else if (strcmp(args[0], "del") == 0) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002044 if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
2045 if (args[1][0] == 'm')
2046 appctx->ctx.map.display_flags = PAT_REF_MAP;
2047 else
2048 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002049
2050 /* Expect two parameters: map name and key. */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002051 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
2052 if (!*args[2] || !*args[3]) {
2053 appctx->ctx.cli.msg = "This command expects two parameters: map identifier and key.\n";
2054 appctx->st0 = STAT_CLI_PRINT;
2055 return 1;
2056 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002057 }
2058
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002059 else {
2060 if (!*args[2] || !*args[3]) {
2061 appctx->ctx.cli.msg = "This command expects two parameters: ACL identifier and key.\n";
2062 appctx->st0 = STAT_CLI_PRINT;
2063 return 1;
2064 }
2065 }
2066
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002067 /* Lookup the reference in the maps. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002068 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002069 if (!appctx->ctx.map.ref ||
2070 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002071 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002072 appctx->st0 = STAT_CLI_PRINT;
2073 return 1;
2074 }
2075
Thierry FOURNIER9356c682014-01-28 15:55:37 +01002076 /* If the entry identifier start with a '#', it is considered as
2077 * pointer id
2078 */
2079 if (args[3][0] == '#' && args[3][1] == '0' && args[3][2] == 'x') {
2080 struct pat_ref_elt *ref;
2081 long long int conv;
2082 char *error;
2083
2084 /* Convert argument to integer value. */
2085 conv = strtoll(&args[3][1], &error, 16);
2086 if (*error != '\0') {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002087 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01002088 appctx->st0 = STAT_CLI_PRINT;
2089 return 1;
2090 }
2091
2092 /* Convert and check integer to pointer. */
2093 ref = (struct pat_ref_elt *)(long)conv;
2094 if ((long long int)(long)ref != conv) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002095 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01002096 appctx->st0 = STAT_CLI_PRINT;
2097 return 1;
2098 }
2099
2100 /* Try to delete the entry. */
2101 if (!pat_ref_delete_by_id(appctx->ctx.map.ref, ref)) {
2102 /* The entry is not found, send message. */
2103 appctx->ctx.cli.msg = "Key not found.\n";
2104 appctx->st0 = STAT_CLI_PRINT;
2105 return 1;
2106 }
2107 }
2108 else {
2109 /* Else, use the entry identifier as pattern
2110 * string and try to delete the entry.
2111 */
2112 if (!pat_ref_delete(appctx->ctx.map.ref, args[3])) {
2113 /* The entry is not found, send message. */
2114 appctx->ctx.cli.msg = "Key not found.\n";
2115 appctx->st0 = STAT_CLI_PRINT;
2116 return 1;
2117 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002118 }
2119
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002120 /* The deletion is done, send message. */
Thierry FOURNIER07e78c52014-12-18 15:28:01 +01002121 appctx->st0 = STAT_CLI_PROMPT;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002122 return 1;
2123 }
2124 else { /* unknown "del" parameter */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002125 appctx->ctx.cli.msg = "'del' only supports 'map' or 'acl'.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002126 appctx->st0 = STAT_CLI_PRINT;
2127 return 1;
2128 }
2129 }
2130 else if (strcmp(args[0], "add") == 0) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002131 if (strcmp(args[1], "map") == 0 ||
2132 strcmp(args[1], "acl") == 0) {
2133 int ret;
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002134 char *err;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002135
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002136 /* Set flags. */
2137 if (args[1][0] == 'm')
2138 appctx->ctx.map.display_flags = PAT_REF_MAP;
2139 else
2140 appctx->ctx.map.display_flags = PAT_REF_ACL;
2141
2142 /* If the keywork is "map", we expect three parameters, if it
2143 * is "acl", we expect only two parameters
2144 */
2145 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
2146 if (!*args[2] || !*args[3] || !*args[4]) {
2147 appctx->ctx.cli.msg = "'add map' expects three parameters: map identifier, key and value.\n";
2148 appctx->st0 = STAT_CLI_PRINT;
2149 return 1;
2150 }
2151 }
2152 else {
2153 if (!*args[2] || !*args[3]) {
2154 appctx->ctx.cli.msg = "'add acl' expects two parameters: ACL identifier and pattern.\n";
2155 appctx->st0 = STAT_CLI_PRINT;
2156 return 1;
2157 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002158 }
2159
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002160 /* Lookup for the reference. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002161 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002162 if (!appctx->ctx.map.ref) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002163 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002164 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002165 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002166 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002167 appctx->st0 = STAT_CLI_PRINT;
2168 return 1;
2169 }
2170
Thierry FOURNIER64c585f2014-01-29 20:02:36 +01002171 /* The command "add acl" is prohibited if the reference
2172 * use samples.
2173 */
2174 if ((appctx->ctx.map.display_flags & PAT_REF_ACL) &&
2175 (appctx->ctx.map.ref->flags & PAT_REF_SMP)) {
2176 appctx->ctx.cli.msg = "This ACL is shared with a map containing samples. "
2177 "You must use the command 'add map' to add values.\n";
2178 appctx->st0 = STAT_CLI_PRINT;
2179 return 1;
2180 }
2181
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002182 /* Add value. */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002183 err = NULL;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002184 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02002185 ret = pat_ref_add(appctx->ctx.map.ref, args[3], args[4], &err);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002186 else
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02002187 ret = pat_ref_add(appctx->ctx.map.ref, args[3], NULL, &err);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002188 if (!ret) {
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002189 if (err)
2190 memprintf(&err, "%s.\n", err);
2191 appctx->ctx.cli.err = err;
2192 appctx->st0 = STAT_CLI_PRINT_FREE;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002193 return 1;
2194 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002195
2196 /* The add is done, send message. */
Thierry FOURNIER07e78c52014-12-18 15:28:01 +01002197 appctx->st0 = STAT_CLI_PROMPT;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002198 return 1;
2199 }
2200 else { /* unknown "del" parameter */
2201 appctx->ctx.cli.msg = "'add' only supports 'map'.\n";
2202 appctx->st0 = STAT_CLI_PRINT;
2203 return 1;
2204 }
Cyril Bontécd19e512010-01-31 22:34:03 +01002205 }
2206 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002207 return 0;
2208 }
2209 return 1;
2210}
2211
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002212/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002213 * used to processes I/O from/to the stats unix socket. The system relies on a
2214 * state machine handling requests and various responses. We read a request,
2215 * then we process it and send the response, and we possibly display a prompt.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002216 * Then we can read again. The state is stored in appctx->st0 and is one of the
2217 * STAT_CLI_* constants. appctx->st1 is used to indicate whether prompt is enabled
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002218 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002219 */
Willy Tarreaub24281b2011-02-13 13:16:36 +01002220static void cli_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002221{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002222 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002223 struct channel *req = si_oc(si);
2224 struct channel *res = si_ic(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002225 int reql;
2226 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002227
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002228 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
2229 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002230
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002231 while (1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002232 if (appctx->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002233 /* Stats output not initialized yet */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002234 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
2235 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002236 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002237 else if (appctx->st0 == STAT_CLI_END) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002238 /* Let's close for real now. We just close the request
2239 * side, the conditions below will complete if needed.
2240 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002241 si_shutw(si);
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002242 break;
2243 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002244 else if (appctx->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02002245 /* ensure we have some output room left in the event we
2246 * would want to return some info right after parsing.
2247 */
Willy Tarreau4e4292b2014-11-28 12:18:45 +01002248 if (buffer_almost_full(si_ib(si))) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01002249 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau4e33d862009-10-11 23:35:10 +02002250 break;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002251 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02002252
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002253 reql = bo_getline(si_oc(si), trash.str, trash.size);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002254 if (reql <= 0) { /* closed or EOL not found */
2255 if (reql == 0)
2256 break;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002257 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002258 continue;
2259 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002260
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002261 /* seek for a possible semi-colon. If we find one, we
2262 * replace it with an LF and skip only this part.
2263 */
2264 for (len = 0; len < reql; len++)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002265 if (trash.str[len] == ';') {
2266 trash.str[len] = '\n';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002267 reql = len + 1;
2268 break;
2269 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002270
Willy Tarreau816fc222009-10-04 07:36:58 +02002271 /* now it is time to check that we have a full line,
2272 * remove the trailing \n and possibly \r, then cut the
2273 * line.
2274 */
2275 len = reql - 1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002276 if (trash.str[len] != '\n') {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002277 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002278 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002279 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002280
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002281 if (len && trash.str[len-1] == '\r')
Willy Tarreau816fc222009-10-04 07:36:58 +02002282 len--;
2283
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002284 trash.str[len] = '\0';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002285
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002286 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002287 if (len) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002288 if (strcmp(trash.str, "quit") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002289 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002290 continue;
2291 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002292 else if (strcmp(trash.str, "prompt") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002293 appctx->st1 = !appctx->st1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002294 else if (strcmp(trash.str, "help") == 0 ||
2295 !stats_sock_parse_request(si, trash.str)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002296 appctx->ctx.cli.msg = stats_sock_usage_msg;
2297 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002298 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002299 /* NB: stats_sock_parse_request() may have put
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002300 * another STAT_CLI_O_* into appctx->st0.
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002301 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002302 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002303 else if (!appctx->st1) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002304 /* if prompt is disabled, print help on empty lines,
2305 * so that the user at least knows how to enable
2306 * prompt and find help.
2307 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002308 appctx->ctx.cli.msg = stats_sock_usage_msg;
2309 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002310 }
2311
2312 /* re-adjust req buffer */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002313 bo_skip(si_oc(si), reql);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002314 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002315 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002316 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002317 if (res->flags & (CF_SHUTR_NOW|CF_SHUTR)) {
Willy Tarreau44cf5452014-10-22 19:06:31 +02002318 cli_release_handler(si);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002319 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002320 continue;
2321 }
2322
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002323 switch (appctx->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002324 case STAT_CLI_PRINT:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002325 if (bi_putstr(si_ic(si), appctx->ctx.cli.msg) != -1)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002326 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002327 else
2328 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002329 break;
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002330 case STAT_CLI_PRINT_FREE:
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002331 if (bi_putstr(si_ic(si), appctx->ctx.cli.err) != -1) {
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002332 free(appctx->ctx.cli.err);
2333 appctx->st0 = STAT_CLI_PROMPT;
2334 }
Willy Tarreaubc18da12015-03-13 14:00:47 +01002335 else
2336 si->flags |= SI_FL_WAIT_ROOM;
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002337 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002338 case STAT_CLI_O_INFO:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002339 if (stats_dump_info_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002340 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002341 break;
2342 case STAT_CLI_O_STAT:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002343 if (stats_dump_stat_to_buffer(si, NULL))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002344 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002345 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002346 case STAT_CLI_O_SESS:
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002347 if (stats_dump_sess_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002348 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002349 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002350 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002351 if (stats_dump_errors_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002352 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002353 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002354 case STAT_CLI_O_TAB:
Simon Hormanc88b8872011-06-15 15:18:49 +09002355 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002356 if (stats_table_request(si, appctx->st0))
2357 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002358 break;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002359 case STAT_CLI_O_PATS:
2360 if (stats_pats_list(si))
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002361 appctx->st0 = STAT_CLI_PROMPT;
2362 break;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002363 case STAT_CLI_O_PAT:
2364 if (stats_pat_list(si))
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002365 appctx->st0 = STAT_CLI_PROMPT;
2366 break;
2367 case STAT_CLI_O_MLOOK:
2368 if (stats_map_lookup(si))
2369 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau4efb3532014-01-29 12:13:39 +01002370 break;
Willy Tarreau12833bb2014-01-28 16:49:56 +01002371 case STAT_CLI_O_POOLS:
2372 if (stats_dump_pools_to_buffer(si))
2373 appctx->st0 = STAT_CLI_PROMPT;
2374 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002375 default: /* abnormal state */
Willy Tarreau44cf5452014-10-22 19:06:31 +02002376 cli_release_handler(si);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002377 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002378 break;
2379 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002380
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002381 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002382 if (appctx->st0 == STAT_CLI_PROMPT) {
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002383 if (bi_putstr(si_ic(si), appctx->st1 ? "\n> " : "\n") != -1)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002384 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002385 else
2386 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002387 }
2388
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002389 /* If the output functions are still there, it means they require more room. */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002390 if (appctx->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002391 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002392
2393 /* Now we close the output if one of the writers did so,
2394 * or if we're not in interactive mode and the request
2395 * buffer is empty. This still allows pipelined requests
2396 * to be sent in non-interactive mode.
2397 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002398 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!appctx->st1 && !req->buf->o)) {
2399 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002400 continue;
2401 }
2402
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002403 /* switch state back to GETREQ to read next requests */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002404 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002405 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002406 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002407
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002408 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST) && (appctx->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002409 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
2410 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
Aman Guptaceafb4a2012-04-02 18:57:54 -07002411 /* Other side has closed, let's abort if we have no more processing to do
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002412 * and nothing more to consume. This is comparable to a broken pipe, so
2413 * we forward the close to the request side so that it flows upstream to
2414 * the client.
2415 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002416 si_shutw(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002417 }
2418
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002419 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002420 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
2421 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
2422 /* We have no more processing to do, and nothing more to send, and
2423 * the client side has closed. So we'll forward this state downstream
2424 * on the response buffer.
2425 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002426 si_shutr(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002427 res->flags |= CF_READ_NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002428 }
2429
2430 /* update all other flags and resync with the other side */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002431 si_update(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002432
2433 /* we don't want to expire timeouts while we're processing requests */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01002434 si_ic(si)->rex = TICK_ETERNITY;
2435 si_oc(si)->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002436
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002437 out:
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002438 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rqh=%d, rqs=%d, rh=%d, rs=%d\n",
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002439 __FUNCTION__, __LINE__,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002440 si->state, req->flags, res->flags, req->buf->i, req->buf->o, res->buf->i, res->buf->o);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002441
2442 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
2443 /* check that we have released everything then unregister */
2444 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002445 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002446}
2447
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002448/* This function dumps information onto the stream interface's read buffer.
2449 * It returns 0 as long as it does not complete, non-zero upon completion.
2450 * No state is used.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002451 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002452static int stats_dump_info_to_buffer(struct stream_interface *si)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002453{
2454 unsigned int up = (now.tv_sec - start_date.tv_sec);
2455
Willy Tarreau0c9c2722014-05-28 12:28:58 +02002456#ifdef USE_OPENSSL
2457 int ssl_sess_rate = read_freq_ctr(&global.ssl_per_sec);
2458 int ssl_key_rate = read_freq_ctr(&global.ssl_fe_keys_per_sec);
2459 int ssl_reuse = 0;
2460
2461 if (ssl_key_rate < ssl_sess_rate) {
2462 /* count the ssl reuse ratio and avoid overflows in both directions */
2463 ssl_reuse = 100 - (100 * ssl_key_rate + (ssl_sess_rate - 1) / 2) / ssl_sess_rate;
2464 }
2465#endif
2466
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002467 chunk_printf(&trash,
2468 "Name: " PRODUCT_NAME "\n"
2469 "Version: " HAPROXY_VERSION "\n"
2470 "Release_date: " HAPROXY_DATE "\n"
2471 "Nbproc: %d\n"
2472 "Process_num: %d\n"
2473 "Pid: %d\n"
2474 "Uptime: %dd %dh%02dm%02ds\n"
2475 "Uptime_sec: %d\n"
2476 "Memmax_MB: %d\n"
2477 "Ulimit-n: %d\n"
2478 "Maxsock: %d\n"
2479 "Maxconn: %d\n"
2480 "Hard_maxconn: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002481 "CurrConns: %d\n"
Willy Tarreau71b734c2014-01-28 15:19:44 +01002482 "CumConns: %d\n"
Warren Turkalb197d7f2015-01-27 15:04:16 -08002483 "CumReq: %u\n"
Willy Tarreau71b734c2014-01-28 15:19:44 +01002484#ifdef USE_OPENSSL
2485 "MaxSslConns: %d\n"
2486 "CurrSslConns: %d\n"
2487 "CumSslConns: %d\n"
2488#endif
2489 "Maxpipes: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002490 "PipesUsed: %d\n"
2491 "PipesFree: %d\n"
2492 "ConnRate: %d\n"
2493 "ConnRateLimit: %d\n"
2494 "MaxConnRate: %d\n"
Willy Tarreau93e7c002013-10-07 18:51:07 +02002495 "SessRate: %d\n"
2496 "SessRateLimit: %d\n"
2497 "MaxSessRate: %d\n"
Willy Tarreaue43d5322013-10-07 20:01:52 +02002498#ifdef USE_OPENSSL
2499 "SslRate: %d\n"
2500 "SslRateLimit: %d\n"
2501 "MaxSslRate: %d\n"
Willy Tarreau0c9c2722014-05-28 12:28:58 +02002502 "SslFrontendKeyRate: %d\n"
2503 "SslFrontendMaxKeyRate: %d\n"
2504 "SslFrontendSessionReuse_pct: %d\n"
2505 "SslBackendKeyRate: %d\n"
2506 "SslBackendMaxKeyRate: %d\n"
Willy Tarreauce3f9132014-05-28 16:47:01 +02002507 "SslCacheLookups: %u\n"
2508 "SslCacheMisses: %u\n"
Willy Tarreaue43d5322013-10-07 20:01:52 +02002509#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002510 "CompressBpsIn: %u\n"
2511 "CompressBpsOut: %u\n"
2512 "CompressBpsRateLim: %u\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002513#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002514 "ZlibMemUsage: %ld\n"
2515 "MaxZlibMemUsage: %ld\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002516#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002517 "Tasks: %d\n"
2518 "Run_queue: %d\n"
2519 "Idle_pct: %d\n"
2520 "node: %s\n"
2521 "description: %s\n"
2522 "",
2523 global.nbproc,
2524 relative_pid,
2525 pid,
2526 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
2527 up,
2528 global.rlimit_memmax,
2529 global.rlimit_nofile,
Willy Tarreau71b734c2014-01-28 15:19:44 +01002530 global.maxsock, global.maxconn, global.hardmaxconn,
2531 actconn, totalconn, global.req_count,
2532#ifdef USE_OPENSSL
2533 global.maxsslconn, sslconns, totalsslconns,
2534#endif
2535 global.maxpipes, pipes_used, pipes_free,
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002536 read_freq_ctr(&global.conn_per_sec), global.cps_lim, global.cps_max,
Willy Tarreau93e7c002013-10-07 18:51:07 +02002537 read_freq_ctr(&global.sess_per_sec), global.sps_lim, global.sps_max,
Willy Tarreaue43d5322013-10-07 20:01:52 +02002538#ifdef USE_OPENSSL
Willy Tarreau0c9c2722014-05-28 12:28:58 +02002539 ssl_sess_rate, global.ssl_lim, global.ssl_max,
2540 ssl_key_rate, global.ssl_fe_keys_max,
2541 ssl_reuse,
2542 read_freq_ctr(&global.ssl_be_keys_per_sec), global.ssl_be_keys_max,
Willy Tarreauce3f9132014-05-28 16:47:01 +02002543 global.shctx_lookups, global.shctx_misses,
Willy Tarreaue43d5322013-10-07 20:01:52 +02002544#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002545 read_freq_ctr(&global.comp_bps_in), read_freq_ctr(&global.comp_bps_out),
2546 global.comp_rate_lim,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002547#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002548 zlib_used_memory, global.maxzlibmem,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002549#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002550 nb_tasks_cur, run_queue_cur, idle_pct,
2551 global.node, global.desc ? global.desc : ""
2552 );
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002553
Willy Tarreaubc18da12015-03-13 14:00:47 +01002554 if (bi_putchk(si_ic(si), &trash) == -1) {
2555 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002556 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002557 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002558
2559 return 1;
2560}
2561
Willy Tarreau12833bb2014-01-28 16:49:56 +01002562/* This function dumps memory usage information onto the stream interface's
2563 * read buffer. It returns 0 as long as it does not complete, non-zero upon
2564 * completion. No state is used.
2565 */
2566static int stats_dump_pools_to_buffer(struct stream_interface *si)
2567{
2568 dump_pools_to_trash();
Willy Tarreaubc18da12015-03-13 14:00:47 +01002569 if (bi_putchk(si_ic(si), &trash) == -1) {
2570 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau12833bb2014-01-28 16:49:56 +01002571 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01002572 }
Willy Tarreau12833bb2014-01-28 16:49:56 +01002573 return 1;
2574}
2575
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002576/* Dumps a frontend's line to the trash for the current proxy <px> and uses
2577 * the state from stream interface <si>. The caller is responsible for clearing
2578 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002579 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002580static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002581{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002582 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002583 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002584
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002585 if (!(px->cap & PR_CAP_FE))
2586 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002587
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002588 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_FE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002589 return 0;
2590
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002591 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002592 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002593 /* name, queue */
2594 "<tr class=\"frontend\">");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002595
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002596 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002597 /* Column sub-heading for Enable or Disable server */
2598 chunk_appendf(&trash, "<td></td>");
2599 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02002600
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002601 chunk_appendf(&trash,
2602 "<td class=ac>"
2603 "<a name=\"%s/Frontend\"></a>"
2604 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
2605 "<td colspan=3></td>"
2606 "",
2607 px->id, px->id);
Cyril Bonté70be45d2010-10-12 00:14:35 +02002608
Willy Tarreau466c9b52012-12-23 02:25:03 +01002609 chunk_appendf(&trash,
2610 /* sessions rate : current */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002611 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002612 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
2613 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
2614 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002615 U2H(read_freq_ctr(&px->fe_sess_per_sec)),
2616 U2H(read_freq_ctr(&px->fe_conn_per_sec)),
2617 U2H(read_freq_ctr(&px->fe_sess_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002618
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002619 if (px->mode == PR_MODE_HTTP)
2620 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002621 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002622 U2H(read_freq_ctr(&px->fe_req_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002623
2624 chunk_appendf(&trash,
2625 "</table></div></u></td>"
2626 /* sessions rate : max */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002627 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002628 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
2629 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
2630 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002631 U2H(px->fe_counters.sps_max),
2632 U2H(px->fe_counters.cps_max),
2633 U2H(px->fe_counters.sps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002634
2635 if (px->mode == PR_MODE_HTTP)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002636 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002637 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002638 U2H(px->fe_counters.p.http.rps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002639
2640 chunk_appendf(&trash,
2641 "</table></div></u></td>"
2642 /* sessions rate : limit */
2643 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002644 LIM2A(px->fe_sps_lim, "-"));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002645
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002646 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002647 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002648 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002649 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002650 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
2651 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002652 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002653 U2H(px->feconn), U2H(px->fe_counters.conn_max), U2H(px->maxconn),
2654 U2H(px->fe_counters.cum_sess),
2655 U2H(px->fe_counters.cum_conn),
2656 U2H(px->fe_counters.cum_sess));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002657
Willy Tarreau466c9b52012-12-23 02:25:03 +01002658 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002659 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01002660 chunk_appendf(&trash,
2661 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
2662 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
2663 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
2664 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
2665 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
2666 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
2667 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
2668 "<tr><th>- other responses:</th><td>%s</td></tr>"
2669 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
2670 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002671 U2H(px->fe_counters.p.http.cum_req),
2672 U2H(px->fe_counters.p.http.rsp[1]),
2673 U2H(px->fe_counters.p.http.rsp[2]),
2674 U2H(px->fe_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002675 px->fe_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01002676 (int)(100*px->fe_counters.p.http.comp_rsp/px->fe_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002677 U2H(px->fe_counters.p.http.rsp[3]),
2678 U2H(px->fe_counters.p.http.rsp[4]),
2679 U2H(px->fe_counters.p.http.rsp[5]),
2680 U2H(px->fe_counters.p.http.rsp[0]),
2681 U2H(px->fe_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002682 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002683
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002684 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002685 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002686 /* sessions: lbtot, lastsess */
2687 "<td></td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002688 /* bytes : in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002689 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002690 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002691 U2H(px->fe_counters.bytes_in));
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002692
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002693 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002694 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002695 "<td>%s%s<div class=tips>compression: in=%lld out=%lld bypassed=%lld savings=%d%%</div>%s</td>",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002696 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002697 U2H(px->fe_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002698 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp,
2699 px->fe_counters.comp_in ?
2700 (int)((px->fe_counters.comp_in - px->fe_counters.comp_out)*100/px->fe_counters.comp_in) : 0,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002701 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "</u>":"");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002702
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002703 chunk_appendf(&trash,
2704 /* denied: req, resp */
2705 "<td>%s</td><td>%s</td>"
2706 /* errors : request, connect, response */
2707 "<td>%s</td><td></td><td></td>"
2708 /* warnings: retries, redispatches */
2709 "<td></td><td></td>"
2710 /* server status : reflect frontend status */
2711 "<td class=ac>%s</td>"
2712 /* rest of server: nothing */
2713 "<td class=ac colspan=8></td></tr>"
2714 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002715 U2H(px->fe_counters.denied_req), U2H(px->fe_counters.denied_resp),
2716 U2H(px->fe_counters.failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002717 px->state == PR_STREADY ? "OPEN" :
2718 px->state == PR_STFULL ? "FULL" : "STOP");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002719 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002720 else { /* CSV mode */
2721 chunk_appendf(&trash,
2722 /* pxid, name, queue cur, queue max, */
2723 "%s,FRONTEND,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002724 /* sessions : current, max, limit, total */
2725 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002726 /* bytes : in, out */
2727 "%lld,%lld,"
2728 /* denied: req, resp */
2729 "%lld,%lld,"
2730 /* errors : request, connect, response */
2731 "%lld,,,"
2732 /* warnings: retries, redispatches */
2733 ",,"
2734 /* server status : reflect frontend status */
2735 "%s,"
2736 /* rest of server: nothing */
2737 ",,,,,,,,"
2738 /* pid, iid, sid, throttle, lbtot, tracked, type */
2739 "%d,%d,0,,,,%d,"
2740 /* rate, rate_lim, rate_max */
2741 "%u,%u,%u,"
2742 /* check_status, check_code, check_duration */
2743 ",,,",
2744 px->id,
2745 px->feconn, px->fe_counters.conn_max, px->maxconn, px->fe_counters.cum_sess,
2746 px->fe_counters.bytes_in, px->fe_counters.bytes_out,
2747 px->fe_counters.denied_req, px->fe_counters.denied_resp,
2748 px->fe_counters.failed_req,
2749 px->state == PR_STREADY ? "OPEN" :
2750 px->state == PR_STFULL ? "FULL" : "STOP",
2751 relative_pid, px->uuid, STATS_TYPE_FE,
2752 read_freq_ctr(&px->fe_sess_per_sec),
2753 px->fe_sps_lim, px->fe_counters.sps_max);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002754
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002755 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2756 if (px->mode == PR_MODE_HTTP) {
2757 for (i=1; i<6; i++)
2758 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[i]);
2759 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[0]);
2760 }
2761 else
2762 chunk_appendf(&trash, ",,,,,,");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002763
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002764 /* failed health analyses */
2765 chunk_appendf(&trash, ",");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002766
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002767 /* requests : req_rate, req_rate_max, req_tot, */
2768 chunk_appendf(&trash, "%u,%u,%lld,",
2769 read_freq_ctr(&px->fe_req_per_sec),
2770 px->fe_counters.p.http.rps_max, px->fe_counters.p.http.cum_req);
2771
2772 /* errors: cli_aborts, srv_aborts */
2773 chunk_appendf(&trash, ",,");
2774
2775 /* compression: in, out, bypassed */
2776 chunk_appendf(&trash, "%lld,%lld,%lld,",
2777 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp);
2778
2779 /* compression: comp_rsp */
2780 chunk_appendf(&trash, "%lld,",
2781 px->fe_counters.p.http.comp_rsp);
2782
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02002783 /* lastsess, last_chk, last_agt, qtime, ctime, rtime, ttime, */
2784 chunk_appendf(&trash, ",,,,,,,");
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002785
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002786 /* finish with EOL */
2787 chunk_appendf(&trash, "\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002788 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002789 return 1;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002790}
2791
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002792/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
2793 * from stream interface <si>, and stats flags <flags>. The caller is responsible
2794 * for clearing the trash if needed. Returns non-zero if it emits anything, zero
2795 * otherwise.
Willy Tarreau91861262007-10-17 17:06:05 +02002796 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002797static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l, int flags)
Willy Tarreau91861262007-10-17 17:06:05 +02002798{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002799 struct appctx *appctx = __objt_appctx(si->end);
2800
2801 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002802 chunk_appendf(&trash, "<tr class=socket>");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002803 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002804 /* Column sub-heading for Enable or Disable server */
2805 chunk_appendf(&trash, "<td></td>");
2806 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002807 chunk_appendf(&trash,
2808 /* frontend name, listener name */
2809 "<td class=ac><a name=\"%s/+%s\"></a>%s"
2810 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
2811 "",
2812 px->id, l->name,
2813 (flags & ST_SHLGNDS)?"<u>":"",
2814 px->id, l->name, l->name);
Willy Tarreau91861262007-10-17 17:06:05 +02002815
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002816 if (flags & ST_SHLGNDS) {
2817 char str[INET6_ADDRSTRLEN];
2818 int port;
Willy Tarreau91861262007-10-17 17:06:05 +02002819
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002820 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreau91861262007-10-17 17:06:05 +02002821
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002822 port = get_host_port(&l->addr);
2823 switch (addr_to_str(&l->addr, str, sizeof(str))) {
2824 case AF_INET:
2825 chunk_appendf(&trash, "IPv4: %s:%d, ", str, port);
2826 break;
2827 case AF_INET6:
2828 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, port);
2829 break;
2830 case AF_UNIX:
2831 chunk_appendf(&trash, "unix, ");
2832 break;
2833 case -1:
2834 chunk_appendf(&trash, "(%s), ", strerror(errno));
2835 break;
2836 }
Willy Tarreau91861262007-10-17 17:06:05 +02002837
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002838 /* id */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002839 chunk_appendf(&trash, "id: %d</div>", l->luid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002840 }
Willy Tarreau91861262007-10-17 17:06:05 +02002841
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002842 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002843 /* queue */
2844 "%s</td><td colspan=3></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002845 /* sessions rate: current, max, limit */
2846 "<td colspan=3>&nbsp;</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002847 /* sessions: current, max, limit, total, lbtot, lastsess */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002848 "<td>%s</td><td>%s</td><td>%s</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002849 "<td>%s</td><td>&nbsp;</td><td>&nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002850 /* bytes: in, out */
2851 "<td>%s</td><td>%s</td>"
2852 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002853 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002854 U2H(l->nbconn), U2H(l->counters->conn_max), U2H(l->maxconn),
2855 U2H(l->counters->cum_conn), U2H(l->counters->bytes_in), U2H(l->counters->bytes_out));
Willy Tarreau56a560a2009-09-22 19:27:35 +02002856
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002857 chunk_appendf(&trash,
2858 /* denied: req, resp */
2859 "<td>%s</td><td>%s</td>"
2860 /* errors: request, connect, response */
2861 "<td>%s</td><td></td><td></td>"
2862 /* warnings: retries, redispatches */
2863 "<td></td><td></td>"
2864 /* server status: reflect listener status */
2865 "<td class=ac>%s</td>"
2866 /* rest of server: nothing */
2867 "<td class=ac colspan=8></td></tr>"
2868 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002869 U2H(l->counters->denied_req), U2H(l->counters->denied_resp),
2870 U2H(l->counters->failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002871 (l->nbconn < l->maxconn) ? (l->state == LI_LIMITED) ? "WAITING" : "OPEN" : "FULL");
2872 }
2873 else { /* CSV mode */
2874 chunk_appendf(&trash,
2875 /* pxid, name, queue cur, queue max, */
2876 "%s,%s,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002877 /* sessions: current, max, limit, total */
2878 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002879 /* bytes: in, out */
2880 "%lld,%lld,"
2881 /* denied: req, resp */
2882 "%lld,%lld,"
2883 /* errors: request, connect, response */
2884 "%lld,,,"
2885 /* warnings: retries, redispatches */
2886 ",,"
2887 /* server status: reflect listener status */
2888 "%s,"
2889 /* rest of server: nothing */
2890 ",,,,,,,,"
2891 /* pid, iid, sid, throttle, lbtot, tracked, type */
2892 "%d,%d,%d,,,,%d,"
2893 /* rate, rate_lim, rate_max */
2894 ",,,"
2895 /* check_status, check_code, check_duration */
2896 ",,,"
2897 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2898 ",,,,,,"
2899 /* failed health analyses */
2900 ","
2901 /* requests : req_rate, req_rate_max, req_tot, */
2902 ",,,"
2903 /* errors: cli_aborts, srv_aborts */
2904 ",,"
2905 /* compression: in, out, bypassed, comp_rsp */
2906 ",,,,"
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02002907 /* lastsess, last_chk, last_agt, qtime, ctime, rtime, ttime, */
2908 ",,,,,,,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002909 "\n",
2910 px->id, l->name,
2911 l->nbconn, l->counters->conn_max,
2912 l->maxconn, l->counters->cum_conn,
2913 l->counters->bytes_in, l->counters->bytes_out,
2914 l->counters->denied_req, l->counters->denied_resp,
2915 l->counters->failed_req,
2916 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
2917 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
2918 }
2919 return 1;
2920}
Willy Tarreau91861262007-10-17 17:06:05 +02002921
Simon Horman4d2eab62015-04-23 14:51:26 +09002922enum srv_stats_state {
2923 SRV_STATS_STATE_DOWN = 0,
2924 SRV_STATS_STATE_DOWN_AGENT,
2925 SRV_STATS_STATE_GOING_UP,
2926 SRV_STATS_STATE_UP_GOING_DOWN,
2927 SRV_STATS_STATE_UP,
2928 SRV_STATS_STATE_NOLB_GOING_DOWN,
2929 SRV_STATS_STATE_NOLB,
2930 SRV_STATS_STATE_DRAIN_GOING_DOWN,
2931 SRV_STATS_STATE_DRAIN,
2932 SRV_STATS_STATE_NO_CHECK,
2933
2934 SRV_STATS_STATE_COUNT, /* Must be last */
2935};
2936
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002937/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
2938 * from stream interface <si>, stats flags <flags>, and server state <state>.
2939 * The caller is responsible for clearing the trash if needed. Returns non-zero
Simon Horman4d2eab62015-04-23 14:51:26 +09002940 * if it emits anything, zero otherwise.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002941 */
Simon Horman4d2eab62015-04-23 14:51:26 +09002942static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, int flags, struct server *sv,
2943 enum srv_stats_state state)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002944{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002945 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau32091232014-05-16 13:52:00 +02002946 struct server *via, *ref;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002947 char str[INET6_ADDRSTRLEN];
2948 struct chunk src;
2949 int i;
Willy Tarreau91861262007-10-17 17:06:05 +02002950
Willy Tarreau32091232014-05-16 13:52:00 +02002951 /* we have "via" which is the tracked server as described in the configuration,
2952 * and "ref" which is the checked server and the end of the chain.
2953 */
2954 via = sv->track ? sv->track : sv;
2955 ref = via;
2956 while (ref->track)
2957 ref = ref->track;
2958
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002959 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Simon Horman4d2eab62015-04-23 14:51:26 +09002960 static char *srv_hlt_st[SRV_STATS_STATE_COUNT] = {
2961 [SRV_STATS_STATE_DOWN] = "DOWN",
2962 [SRV_STATS_STATE_DOWN_AGENT] = "DOWN (agent)",
2963 [SRV_STATS_STATE_GOING_UP] = "DN %d/%d &uarr;",
2964 [SRV_STATS_STATE_UP_GOING_DOWN] = "UP %d/%d &darr;",
2965 [SRV_STATS_STATE_UP] = "UP",
2966 [SRV_STATS_STATE_NOLB_GOING_DOWN] = "NOLB %d/%d &darr;",
2967 [SRV_STATS_STATE_NOLB] = "NOLB",
2968 [SRV_STATS_STATE_DRAIN_GOING_DOWN] = "DRAIN %d/%d &darr;",
2969 [SRV_STATS_STATE_DRAIN] = "DRAIN",
2970 [SRV_STATS_STATE_NO_CHECK] = "<i>no check</i>",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002971 };
Willy Tarreau91861262007-10-17 17:06:05 +02002972
Willy Tarreaua0066dd2014-05-16 11:25:16 +02002973 if (sv->admin & SRV_ADMF_MAINT)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002974 chunk_appendf(&trash, "<tr class=\"maintain\">");
2975 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002976 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002977 "<tr class=\"%s%d\">",
Willy Tarreauc93cd162014-05-13 15:54:22 +02002978 (sv->flags & SRV_F_BACKUP) ? "backup" : "active", state);
Willy Tarreau91861262007-10-17 17:06:05 +02002979
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002980 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002981 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002982 "<td><input type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
2983 sv->id);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002984
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002985 chunk_appendf(&trash,
2986 "<td class=ac><a name=\"%s/%s\"></a>%s"
2987 "<a class=lfsb href=\"#%s/%s\">%s</a>"
2988 "",
2989 px->id, sv->id,
2990 (flags & ST_SHLGNDS) ? "<u>" : "",
2991 px->id, sv->id, sv->id);
Willy Tarreau91861262007-10-17 17:06:05 +02002992
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002993 if (flags & ST_SHLGNDS) {
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002994 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002995
2996 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2997 case AF_INET:
2998 chunk_appendf(&trash, "IPv4: %s:%d, ", str, get_host_port(&sv->addr));
2999 break;
3000 case AF_INET6:
3001 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, get_host_port(&sv->addr));
3002 break;
3003 case AF_UNIX:
3004 chunk_appendf(&trash, "unix, ");
3005 break;
3006 case -1:
3007 chunk_appendf(&trash, "(%s), ", strerror(errno));
3008 break;
3009 default: /* address family not supported */
3010 break;
Willy Tarreau55bb8452007-10-17 18:44:57 +02003011 }
Willy Tarreau91861262007-10-17 17:06:05 +02003012
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003013 /* id */
3014 chunk_appendf(&trash, "id: %d", sv->puid);
Willy Tarreau91861262007-10-17 17:06:05 +02003015
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003016 /* cookie */
3017 if (sv->cookie) {
3018 chunk_appendf(&trash, ", cookie: '");
Willy Tarreau5031e6a2007-10-18 11:05:48 +02003019
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003020 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
3021 chunk_htmlencode(&trash, &src);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01003022
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003023 chunk_appendf(&trash, "'");
Cyril Bonté70be45d2010-10-12 00:14:35 +02003024 }
3025
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003026 chunk_appendf(&trash, "</div>");
Willy Tarreau55bb8452007-10-17 18:44:57 +02003027 }
Willy Tarreau91861262007-10-17 17:06:05 +02003028
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003029 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003030 /* queue : current, max, limit */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003031 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003032 /* sessions rate : current, max, limit */
3033 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003034 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003035 (flags & ST_SHLGNDS) ? "</u>" : "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003036 U2H(sv->nbpend), U2H(sv->counters.nbpend_max), LIM2A(sv->maxqueue, "-"),
3037 U2H(read_freq_ctr(&sv->sess_per_sec)), U2H(sv->counters.sps_max));
Willy Tarreau91861262007-10-17 17:06:05 +02003038
Willy Tarreau466c9b52012-12-23 02:25:03 +01003039
3040 chunk_appendf(&trash,
3041 /* sessions: current, max, limit, total */
3042 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003043 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003044 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
3045 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003046 U2H(sv->cur_sess), U2H(sv->counters.cur_sess_max), LIM2A(sv->maxconn, "-"),
3047 U2H(sv->counters.cum_sess),
3048 U2H(sv->counters.cum_sess));
Willy Tarreau91861262007-10-17 17:06:05 +02003049
Willy Tarreau466c9b52012-12-23 02:25:03 +01003050 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
3051 if (px->mode == PR_MODE_HTTP) {
3052 unsigned long long tot;
3053 for (tot = i = 0; i < 6; i++)
3054 tot += sv->counters.p.http.rsp[i];
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003055
Willy Tarreau466c9b52012-12-23 02:25:03 +01003056 chunk_appendf(&trash,
3057 "<tr><th>Cum. HTTP responses:</th><td>%s</td></tr>"
3058 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3059 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3060 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3061 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3062 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3063 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3064 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003065 U2H(tot),
3066 U2H(sv->counters.p.http.rsp[1]), tot ? (int)(100*sv->counters.p.http.rsp[1] / tot) : 0,
3067 U2H(sv->counters.p.http.rsp[2]), tot ? (int)(100*sv->counters.p.http.rsp[2] / tot) : 0,
3068 U2H(sv->counters.p.http.rsp[3]), tot ? (int)(100*sv->counters.p.http.rsp[3] / tot) : 0,
3069 U2H(sv->counters.p.http.rsp[4]), tot ? (int)(100*sv->counters.p.http.rsp[4] / tot) : 0,
3070 U2H(sv->counters.p.http.rsp[5]), tot ? (int)(100*sv->counters.p.http.rsp[5] / tot) : 0,
3071 U2H(sv->counters.p.http.rsp[0]), tot ? (int)(100*sv->counters.p.http.rsp[0] / tot) : 0);
Willy Tarreau91861262007-10-17 17:06:05 +02003072 }
Willy Tarreau91861262007-10-17 17:06:05 +02003073
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003074 chunk_appendf(&trash, "<tr><th colspan=3>Avg over last 1024 success. conn.</th></tr>");
3075 chunk_appendf(&trash, "<tr><th>- Queue time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(sv->counters.q_time, TIME_STATS_SAMPLES)));
3076 chunk_appendf(&trash, "<tr><th>- Connect time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(sv->counters.c_time, TIME_STATS_SAMPLES)));
3077 if (px->mode == PR_MODE_HTTP)
3078 chunk_appendf(&trash, "<tr><th>- Response time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(sv->counters.d_time, TIME_STATS_SAMPLES)));
3079 chunk_appendf(&trash, "<tr><th>- Total time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(sv->counters.t_time, TIME_STATS_SAMPLES)));
3080
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003081 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01003082 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003083 /* sessions: lbtot, last */
3084 "<td>%s</td><td>%s</td>",
3085 U2H(sv->counters.cum_lbconn),
3086 human_time(srv_lastsession(sv), 1));
Willy Tarreau91861262007-10-17 17:06:05 +02003087
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003088 chunk_appendf(&trash,
3089 /* bytes : in, out */
3090 "<td>%s</td><td>%s</td>"
3091 /* denied: req, resp */
3092 "<td></td><td>%s</td>"
3093 /* errors : request, connect */
3094 "<td></td><td>%s</td>"
3095 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003096 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003097 /* warnings: retries, redispatches */
3098 "<td>%lld</td><td>%lld</td>"
3099 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003100 U2H(sv->counters.bytes_in), U2H(sv->counters.bytes_out),
3101 U2H(sv->counters.failed_secu),
3102 U2H(sv->counters.failed_conns),
3103 U2H(sv->counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003104 sv->counters.cli_aborts,
3105 sv->counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003106 sv->counters.retries, sv->counters.redispatches);
3107
3108 /* status, lest check */
3109 chunk_appendf(&trash, "<td class=ac>");
3110
Willy Tarreau20125212014-05-13 19:44:56 +02003111 if (sv->admin & SRV_ADMF_MAINT) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003112 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - sv->last_change, 1));
3113 chunk_appendf(&trash, "MAINT");
3114 }
Simon Horman0766e442014-11-12 15:55:54 +09003115 else if ((ref->agent.state & CHK_ST_ENABLED) && !(sv->agent.health) && (ref->state == SRV_ST_STOPPED)) {
Willy Tarreaucf2924b2014-05-23 12:15:15 +02003116 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
Willy Tarreauac497072014-05-29 01:04:35 +02003117 /* DOWN (agent) */
3118 chunk_appendf(&trash, srv_hlt_st[1], "GCC: your -Werror=format-security is bogus, annoying, and hides real bugs, I don't thank you, really!");
Willy Tarreaucf2924b2014-05-23 12:15:15 +02003119 }
Willy Tarreauff5ae352013-12-11 20:36:34 +01003120 else if (ref->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003121 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
3122 chunk_appendf(&trash,
3123 srv_hlt_st[state],
Willy Tarreau892337c2014-05-13 23:41:20 +02003124 (ref->state != SRV_ST_STOPPED) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
3125 (ref->state != SRV_ST_STOPPED) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreau55bb8452007-10-17 18:44:57 +02003126 }
Willy Tarreau91861262007-10-17 17:06:05 +02003127
Willy Tarreaucf2924b2014-05-23 12:15:15 +02003128 if ((sv->state == SRV_ST_STOPPED) &&
3129 ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) && !(sv->agent.health)) {
3130 chunk_appendf(&trash,
3131 "</td><td class=ac><u> %s%s",
3132 (sv->agent.state & CHK_ST_INPROGRESS) ? "* " : "",
3133 get_check_status_info(sv->agent.status));
3134
3135 if (sv->agent.status >= HCHK_STATUS_L57DATA)
3136 chunk_appendf(&trash, "/%d", sv->agent.code);
3137
3138 if (sv->agent.status >= HCHK_STATUS_CHECKED && sv->agent.duration >= 0)
3139 chunk_appendf(&trash, " in %lums", sv->agent.duration);
3140
3141 chunk_appendf(&trash, "<div class=tips>%s",
3142 get_check_status_description(sv->agent.status));
3143 if (*sv->agent.desc) {
3144 chunk_appendf(&trash, ": ");
3145 chunk_initlen(&src, sv->agent.desc, 0, strlen(sv->agent.desc));
3146 chunk_htmlencode(&trash, &src);
3147 }
3148 chunk_appendf(&trash, "</div></u>");
3149 }
3150 else if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003151 chunk_appendf(&trash,
3152 "</td><td class=ac><u> %s%s",
Willy Tarreau2c115e52013-12-11 19:41:16 +01003153 (sv->check.state & CHK_ST_INPROGRESS) ? "* " : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003154 get_check_status_info(sv->check.status));
3155
3156 if (sv->check.status >= HCHK_STATUS_L57DATA)
3157 chunk_appendf(&trash, "/%d", sv->check.code);
3158
3159 if (sv->check.status >= HCHK_STATUS_CHECKED && sv->check.duration >= 0)
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003160 chunk_appendf(&trash, " in %lums", sv->check.duration);
3161
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003162 chunk_appendf(&trash, "<div class=tips>%s",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003163 get_check_status_description(sv->check.status));
3164 if (*sv->check.desc) {
3165 chunk_appendf(&trash, ": ");
3166 chunk_initlen(&src, sv->check.desc, 0, strlen(sv->check.desc));
3167 chunk_htmlencode(&trash, &src);
3168 }
3169 chunk_appendf(&trash, "</div></u>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003170 }
3171 else
3172 chunk_appendf(&trash, "</td><td>");
3173
3174 chunk_appendf(&trash,
3175 /* weight */
3176 "</td><td class=ac>%d</td>"
3177 /* act, bck */
3178 "<td class=ac>%s</td><td class=ac>%s</td>"
3179 "",
3180 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreauc93cd162014-05-13 15:54:22 +02003181 (sv->flags & SRV_F_BACKUP) ? "-" : "Y",
3182 (sv->flags & SRV_F_BACKUP) ? "Y" : "-");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003183
3184 /* check failures: unique, fatal, down time */
Willy Tarreauff5ae352013-12-11 20:36:34 +01003185 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003186 chunk_appendf(&trash, "<td><u>%lld", ref->counters.failed_checks);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003187
3188 if (ref->observe)
3189 chunk_appendf(&trash, "/%lld", ref->counters.failed_hana);
3190
3191 chunk_appendf(&trash,
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003192 "<div class=tips>Failed Health Checks%s</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003193 "<td>%lld</td><td>%s</td>"
3194 "",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003195 ref->observe ? "/Health Analyses" : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003196 ref->counters.down_trans, human_time(srv_downtime(sv), 1));
3197 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02003198 else if (!(sv->admin & SRV_ADMF_FMAINT) && sv != ref) {
3199 /* tracking a server */
3200 chunk_appendf(&trash,
3201 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s</a></td>",
Willy Tarreau32091232014-05-16 13:52:00 +02003202 via->proxy->id, via->id, via->proxy->id, via->id);
Willy Tarreauf4659942013-11-28 10:50:06 +01003203 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003204 else
3205 chunk_appendf(&trash, "<td colspan=3></td>");
3206
3207 /* throttle */
Willy Tarreau892337c2014-05-13 23:41:20 +02003208 if (sv->state == SRV_ST_STARTING && !server_is_draining(sv))
Willy Tarreaud32c3992013-11-21 15:30:45 +01003209 chunk_appendf(&trash, "<td class=ac>%d %%</td></tr>\n", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003210 else
3211 chunk_appendf(&trash, "<td class=ac>-</td></tr>\n");
3212 }
3213 else { /* CSV mode */
Simon Horman4d2eab62015-04-23 14:51:26 +09003214 static char *srv_hlt_st[SRV_STATS_STATE_COUNT] = {
3215 [SRV_STATS_STATE_DOWN] = "DOWN,",
3216 [SRV_STATS_STATE_DOWN_AGENT] = "DOWN (agent),",
3217 [SRV_STATS_STATE_GOING_UP] = "DOWN %d/%d,",
3218 [SRV_STATS_STATE_UP_GOING_DOWN] = "UP %d/%d,",
3219 [SRV_STATS_STATE_UP] = "UP,",
3220 [SRV_STATS_STATE_NOLB_GOING_DOWN] = "NOLB %d/%d,",
3221 [SRV_STATS_STATE_NOLB] = "NOLB,",
3222 [SRV_STATS_STATE_DRAIN_GOING_DOWN] = "DRAIN %d/%d,",
3223 [SRV_STATS_STATE_DRAIN] = "DRAIN,",
3224 [SRV_STATS_STATE_NO_CHECK] = "no check,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003225 };
3226
3227 chunk_appendf(&trash,
3228 /* pxid, name */
3229 "%s,%s,"
3230 /* queue : current, max */
3231 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003232 /* sessions : current, max, limit, total */
3233 "%d,%d,%s,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003234 /* bytes : in, out */
3235 "%lld,%lld,"
3236 /* denied: req, resp */
3237 ",%lld,"
3238 /* errors : request, connect, response */
3239 ",%lld,%lld,"
3240 /* warnings: retries, redispatches */
3241 "%lld,%lld,"
3242 "",
3243 px->id, sv->id,
3244 sv->nbpend, sv->counters.nbpend_max,
Willy Tarreau56adcf22012-12-23 18:00:29 +01003245 sv->cur_sess, sv->counters.cur_sess_max, LIM2A(sv->maxconn, ""), sv->counters.cum_sess,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003246 sv->counters.bytes_in, sv->counters.bytes_out,
3247 sv->counters.failed_secu,
3248 sv->counters.failed_conns, sv->counters.failed_resp,
3249 sv->counters.retries, sv->counters.redispatches);
3250
3251 /* status */
Willy Tarreaua0066dd2014-05-16 11:25:16 +02003252 if (sv->admin & SRV_ADMF_IMAINT)
Willy Tarreau32091232014-05-16 13:52:00 +02003253 chunk_appendf(&trash, "MAINT (via %s/%s),", via->proxy->id, via->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02003254 else if (sv->admin & SRV_ADMF_MAINT)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003255 chunk_appendf(&trash, "MAINT,");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003256 else
3257 chunk_appendf(&trash,
3258 srv_hlt_st[state],
Willy Tarreau892337c2014-05-13 23:41:20 +02003259 (ref->state != SRV_ST_STOPPED) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
3260 (ref->state != SRV_ST_STOPPED) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003261
3262 chunk_appendf(&trash,
3263 /* weight, active, backup */
3264 "%d,%d,%d,"
3265 "",
3266 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreauc93cd162014-05-13 15:54:22 +02003267 (sv->flags & SRV_F_BACKUP) ? 0 : 1,
3268 (sv->flags & SRV_F_BACKUP) ? 1 : 0);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003269
3270 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreauff5ae352013-12-11 20:36:34 +01003271 if (sv->check.state & CHK_ST_ENABLED)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003272 chunk_appendf(&trash,
3273 "%lld,%lld,%d,%d,",
3274 sv->counters.failed_checks, sv->counters.down_trans,
3275 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
3276 else
3277 chunk_appendf(&trash, ",,,,");
3278
3279 /* queue limit, pid, iid, sid, */
3280 chunk_appendf(&trash,
3281 "%s,"
3282 "%d,%d,%d,",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003283 LIM2A(sv->maxqueue, ""),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003284 relative_pid, px->uuid, sv->puid);
3285
3286 /* throttle */
Willy Tarreau892337c2014-05-13 23:41:20 +02003287 if (sv->state == SRV_ST_STARTING && !server_is_draining(sv))
Willy Tarreaud32c3992013-11-21 15:30:45 +01003288 chunk_appendf(&trash, "%d", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003289
3290 /* sessions: lbtot */
3291 chunk_appendf(&trash, ",%lld,", sv->counters.cum_lbconn);
3292
3293 /* tracked */
3294 if (sv->track)
3295 chunk_appendf(&trash, "%s/%s,",
3296 sv->track->proxy->id, sv->track->id);
3297 else
3298 chunk_appendf(&trash, ",");
3299
3300 /* type */
3301 chunk_appendf(&trash, "%d,", STATS_TYPE_SV);
3302
3303 /* rate */
3304 chunk_appendf(&trash, "%u,,%u,",
3305 read_freq_ctr(&sv->sess_per_sec),
3306 sv->counters.sps_max);
3307
Willy Tarreauff5ae352013-12-11 20:36:34 +01003308 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003309 /* check_status */
3310 chunk_appendf(&trash, "%s,", get_check_status_info(sv->check.status));
3311
3312 /* check_code */
3313 if (sv->check.status >= HCHK_STATUS_L57DATA)
3314 chunk_appendf(&trash, "%u,", sv->check.code);
3315 else
3316 chunk_appendf(&trash, ",");
3317
3318 /* check_duration */
3319 if (sv->check.status >= HCHK_STATUS_CHECKED)
3320 chunk_appendf(&trash, "%lu,", sv->check.duration);
3321 else
3322 chunk_appendf(&trash, ",");
3323
3324 }
3325 else
3326 chunk_appendf(&trash, ",,,");
3327
3328 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3329 if (px->mode == PR_MODE_HTTP) {
3330 for (i=1; i<6; i++)
3331 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[i]);
3332
3333 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[0]);
3334 }
3335 else
3336 chunk_appendf(&trash, ",,,,,,");
3337
3338 /* failed health analyses */
3339 chunk_appendf(&trash, "%lld,", sv->counters.failed_hana);
3340
3341 /* requests : req_rate, req_rate_max, req_tot, */
3342 chunk_appendf(&trash, ",,,");
3343
3344 /* errors: cli_aborts, srv_aborts */
3345 chunk_appendf(&trash, "%lld,%lld,",
3346 sv->counters.cli_aborts, sv->counters.srv_aborts);
3347
3348 /* compression: in, out, bypassed, comp_rsp */
3349 chunk_appendf(&trash, ",,,,");
3350
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003351 /* lastsess */
3352 chunk_appendf(&trash, "%d,", srv_lastsession(sv));
3353
Willy Tarreaua28df3e2014-06-16 16:40:14 +02003354 /* capture of last check and agent statuses */
3355 chunk_appendf(&trash, "%s,", ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) ? cstr(sv->check.desc) : "");
3356 chunk_appendf(&trash, "%s,", ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) ? cstr(sv->agent.desc) : "");
3357
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003358 /* qtime, ctime, rtime, ttime, */
3359 chunk_appendf(&trash, "%u,%u,%u,%u,",
3360 swrate_avg(sv->counters.q_time, TIME_STATS_SAMPLES),
3361 swrate_avg(sv->counters.c_time, TIME_STATS_SAMPLES),
3362 swrate_avg(sv->counters.d_time, TIME_STATS_SAMPLES),
3363 swrate_avg(sv->counters.t_time, TIME_STATS_SAMPLES));
3364
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003365 /* finish with EOL */
3366 chunk_appendf(&trash, "\n");
3367 }
3368 return 1;
3369}
3370
3371/* Dumps a line for backend <px> to the trash for and uses the state from stream
3372 * interface <si> and stats flags <flags>. The caller is responsible for clearing
3373 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
3374 */
3375static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px, int flags)
3376{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003377 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003378 struct chunk src;
3379 int i;
3380
3381 if (!(px->cap & PR_CAP_BE))
3382 return 0;
3383
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003384 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_BE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003385 return 0;
3386
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003387 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003388 chunk_appendf(&trash, "<tr class=\"backend\">");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003389 if (px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003390 /* Column sub-heading for Enable or Disable server */
3391 chunk_appendf(&trash, "<td></td>");
3392 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003393 chunk_appendf(&trash,
3394 "<td class=ac>"
3395 /* name */
3396 "%s<a name=\"%s/Backend\"></a>"
3397 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
3398 "",
3399 (flags & ST_SHLGNDS)?"<u>":"",
3400 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003401
3402 if (flags & ST_SHLGNDS) {
3403 /* balancing */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003404 chunk_appendf(&trash, "<div class=tips>balancing: %s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003405 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
3406
3407 /* cookie */
3408 if (px->cookie_name) {
3409 chunk_appendf(&trash, ", cookie: '");
3410 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
3411 chunk_htmlencode(&trash, &src);
3412 chunk_appendf(&trash, "'");
3413 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003414 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003415 }
3416
3417 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003418 "%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003419 /* queue : current, max */
3420 "<td>%s</td><td>%s</td><td></td>"
3421 /* sessions rate : current, max, limit */
3422 "<td>%s</td><td>%s</td><td></td>"
3423 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003424 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003425 U2H(px->nbpend) /* or px->totpend ? */, U2H(px->be_counters.nbpend_max),
3426 U2H(read_freq_ctr(&px->be_sess_per_sec)), U2H(px->be_counters.sps_max));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003427
3428 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003429 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003430 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003431 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003432 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003433 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003434 U2H(px->beconn), U2H(px->be_counters.conn_max), U2H(px->fullconn),
3435 U2H(px->be_counters.cum_conn),
3436 U2H(px->be_counters.cum_conn));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003437
Willy Tarreau466c9b52012-12-23 02:25:03 +01003438 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003439 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01003440 chunk_appendf(&trash,
3441 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
3442 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
3443 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
3444 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
3445 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
3446 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
3447 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
3448 "<tr><th>- other responses:</th><td>%s</td></tr>"
3449 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003450 "<tr><th colspan=3>Avg over last 1024 success. conn.</th></tr>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003451 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003452 U2H(px->be_counters.p.http.cum_req),
3453 U2H(px->be_counters.p.http.rsp[1]),
3454 U2H(px->be_counters.p.http.rsp[2]),
3455 U2H(px->be_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003456 px->be_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01003457 (int)(100*px->be_counters.p.http.comp_rsp/px->be_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01003458 U2H(px->be_counters.p.http.rsp[3]),
3459 U2H(px->be_counters.p.http.rsp[4]),
3460 U2H(px->be_counters.p.http.rsp[5]),
3461 U2H(px->be_counters.p.http.rsp[0]),
3462 U2H(px->be_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003463 }
3464
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003465 chunk_appendf(&trash, "<tr><th>- Queue time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(px->be_counters.q_time, TIME_STATS_SAMPLES)));
3466 chunk_appendf(&trash, "<tr><th>- Connect time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(px->be_counters.c_time, TIME_STATS_SAMPLES)));
3467 if (px->mode == PR_MODE_HTTP)
3468 chunk_appendf(&trash, "<tr><th>- Response time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(px->be_counters.d_time, TIME_STATS_SAMPLES)));
3469 chunk_appendf(&trash, "<tr><th>- Total time:</th><td>%s</td><td>ms</td></tr>", U2H(swrate_avg(px->be_counters.t_time, TIME_STATS_SAMPLES)));
3470
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003471 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01003472 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003473 /* sessions: lbtot, last */
3474 "<td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003475 /* bytes: in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003476 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003477 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003478 U2H(px->be_counters.cum_lbconn),
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003479 human_time(be_lastsession(px), 1),
Willy Tarreau56adcf22012-12-23 18:00:29 +01003480 U2H(px->be_counters.bytes_in));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003481
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003482 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003483 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003484 "<td>%s%s<div class=tips>compression: in=%lld out=%lld bypassed=%lld savings=%d%%</div>%s</td>",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003485 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003486 U2H(px->be_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003487 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp,
3488 px->be_counters.comp_in ?
3489 (int)((px->be_counters.comp_in - px->be_counters.comp_out)*100/px->be_counters.comp_in) : 0,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003490 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "</u>":"");
3491
3492 chunk_appendf(&trash,
3493 /* denied: req, resp */
3494 "<td>%s</td><td>%s</td>"
3495 /* errors : request, connect */
3496 "<td></td><td>%s</td>"
3497 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003498 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003499 /* warnings: retries, redispatches */
3500 "<td>%lld</td><td>%lld</td>"
3501 /* backend status: reflect backend status (up/down): we display UP
3502 * if the backend has known working servers or if it has no server at
3503 * all (eg: for stats). Then we display the total weight, number of
3504 * active and backups. */
3505 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
3506 "<td class=ac>%d</td><td class=ac>%d</td>"
3507 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003508 U2H(px->be_counters.denied_req), U2H(px->be_counters.denied_resp),
3509 U2H(px->be_counters.failed_conns),
3510 U2H(px->be_counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003511 px->be_counters.cli_aborts,
3512 px->be_counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003513 px->be_counters.retries, px->be_counters.redispatches,
3514 human_time(now.tv_sec - px->last_change, 1),
3515 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
3516 "<font color=\"red\"><b>DOWN</b></font>",
3517 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3518 px->srv_act, px->srv_bck);
3519
3520 chunk_appendf(&trash,
3521 /* rest of backend: nothing, down transitions, total downtime, throttle */
3522 "<td class=ac>&nbsp;</td><td>%d</td>"
3523 "<td>%s</td>"
3524 "<td></td>"
3525 "</tr>",
3526 px->down_trans,
3527 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
3528 }
3529 else { /* CSV mode */
3530 chunk_appendf(&trash,
3531 /* pxid, name */
3532 "%s,BACKEND,"
3533 /* queue : current, max */
3534 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003535 /* sessions : current, max, limit, total */
3536 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003537 /* bytes : in, out */
3538 "%lld,%lld,"
3539 /* denied: req, resp */
3540 "%lld,%lld,"
3541 /* errors : request, connect, response */
3542 ",%lld,%lld,"
3543 /* warnings: retries, redispatches */
3544 "%lld,%lld,"
3545 /* backend status: reflect backend status (up/down): we display UP
3546 * if the backend has known working servers or if it has no server at
3547 * all (eg: for stats). Then we display the total weight, number of
3548 * active and backups. */
3549 "%s,"
3550 "%d,%d,%d,"
3551 /* rest of backend: nothing, down transitions, last change, total downtime */
3552 ",%d,%d,%d,,"
3553 /* pid, iid, sid, throttle, lbtot, tracked, type */
3554 "%d,%d,0,,%lld,,%d,"
3555 /* rate, rate_lim, rate_max, */
3556 "%u,,%u,"
3557 /* check_status, check_code, check_duration */
3558 ",,,",
3559 px->id,
3560 px->nbpend /* or px->totpend ? */, px->be_counters.nbpend_max,
3561 px->beconn, px->be_counters.conn_max, px->fullconn, px->be_counters.cum_conn,
3562 px->be_counters.bytes_in, px->be_counters.bytes_out,
3563 px->be_counters.denied_req, px->be_counters.denied_resp,
3564 px->be_counters.failed_conns, px->be_counters.failed_resp,
3565 px->be_counters.retries, px->be_counters.redispatches,
3566 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
3567 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3568 px->srv_act, px->srv_bck,
3569 px->down_trans, (int)(now.tv_sec - px->last_change),
3570 px->srv?be_downtime(px):0,
3571 relative_pid, px->uuid,
3572 px->be_counters.cum_lbconn, STATS_TYPE_BE,
3573 read_freq_ctr(&px->be_sess_per_sec),
3574 px->be_counters.sps_max);
3575
3576 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3577 if (px->mode == PR_MODE_HTTP) {
3578 for (i=1; i<6; i++)
3579 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[i]);
3580 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[0]);
3581 }
3582 else
3583 chunk_appendf(&trash, ",,,,,,");
3584
3585 /* failed health analyses */
3586 chunk_appendf(&trash, ",");
3587
3588 /* requests : req_rate, req_rate_max, req_tot, */
3589 chunk_appendf(&trash, ",,,");
3590
3591 /* errors: cli_aborts, srv_aborts */
3592 chunk_appendf(&trash, "%lld,%lld,",
3593 px->be_counters.cli_aborts, px->be_counters.srv_aborts);
3594
3595 /* compression: in, out, bypassed */
3596 chunk_appendf(&trash, "%lld,%lld,%lld,",
3597 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp);
3598
3599 /* compression: comp_rsp */
3600 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.comp_rsp);
3601
Willy Tarreaua28df3e2014-06-16 16:40:14 +02003602 /* lastsess, last_chk, last_agt, */
3603 chunk_appendf(&trash, "%d,,,", be_lastsession(px));
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003604
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003605 /* qtime, ctime, rtime, ttime, */
3606 chunk_appendf(&trash, "%u,%u,%u,%u,",
3607 swrate_avg(px->be_counters.q_time, TIME_STATS_SAMPLES),
3608 swrate_avg(px->be_counters.c_time, TIME_STATS_SAMPLES),
3609 swrate_avg(px->be_counters.d_time, TIME_STATS_SAMPLES),
3610 swrate_avg(px->be_counters.t_time, TIME_STATS_SAMPLES));
3611
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003612 /* finish with EOL */
3613 chunk_appendf(&trash, "\n");
3614 }
3615 return 1;
3616}
3617
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003618/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003619 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003620 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003621 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003622static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003623{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003624 struct appctx *appctx = __objt_appctx(si->end);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003625 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
3626
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003627 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003628 /* A form to enable/disable this proxy servers */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003629
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003630 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003631 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003632 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003633 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau4e4292b2014-11-28 12:18:45 +01003634 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si_ob(si)) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003635 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003636 }
3637
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003638 chunk_appendf(&trash,
Jeff Buchbinder2dbbf4d2014-08-29 15:10:08 -05003639 "<form method=\"post\">");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003640 }
3641
3642 /* print a new table */
3643 chunk_appendf(&trash,
3644 "<table class=\"tbl\" width=\"100%%\">\n"
3645 "<tr class=\"titre\">"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003646 "<th class=\"pxname\" width=\"10%%\">");
3647
3648 chunk_appendf(&trash,
3649 "<a name=\"%s\"></a>%s"
3650 "<a class=px href=\"#%s\">%s</a>",
3651 px->id,
3652 (uri->flags & ST_SHLGNDS) ? "<u>":"",
3653 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003654
3655 if (uri->flags & ST_SHLGNDS) {
3656 /* cap, mode, id */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003657 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003658 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
3659 px->uuid);
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003660 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003661 }
3662
3663 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003664 "%s</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003665 "<th class=\"%s\" width=\"90%%\">%s</th>"
3666 "</tr>\n"
3667 "</table>\n"
3668 "<table class=\"tbl\" width=\"100%%\">\n"
3669 "<tr class=\"titre\">",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003670 (uri->flags & ST_SHLGNDS) ? "</u>":"",
3671 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
3672
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003673 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003674 /* Column heading for Enable or Disable server */
3675 chunk_appendf(&trash, "<th rowspan=2 width=1></th>");
Willy Tarreau91861262007-10-17 17:06:05 +02003676 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003677
3678 chunk_appendf(&trash,
3679 "<th rowspan=2></th>"
3680 "<th colspan=3>Queue</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003681 "<th colspan=3>Session rate</th><th colspan=6>Sessions</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003682 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
3683 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
3684 "<th colspan=9>Server</th>"
3685 "</tr>\n"
3686 "<tr class=\"titre\">"
3687 "<th>Cur</th><th>Max</th><th>Limit</th>"
3688 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003689 "<th>Limit</th><th>Total</th><th>LbTot</th><th>Last</th><th>In</th><th>Out</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003690 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
3691 "<th>Resp</th><th>Retr</th><th>Redis</th>"
3692 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
3693 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
3694 "<th>Thrtle</th>\n"
3695 "</tr>");
Willy Tarreau91861262007-10-17 17:06:05 +02003696}
3697
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003698/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003699 * stream interface <si>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003700 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003701static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003702{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003703 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003704 chunk_appendf(&trash, "</table>");
3705
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003706 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003707 /* close the form used to enable/disable this proxy servers */
3708 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003709 "Choose the action to perform on the checked servers : "
3710 "<select name=action>"
3711 "<option value=\"\"></option>"
Willy Tarreaued7df902014-05-22 18:04:49 +02003712 "<option value=\"ready\">Set state to READY</option>"
3713 "<option value=\"drain\">Set state to DRAIN</option>"
Marco Corte8c27bca2014-07-02 17:49:34 +02003714 "<option value=\"maint\">Set state to MAINT</option>"
Willy Tarreau248a60e2014-05-23 14:59:48 +02003715 "<option value=\"dhlth\">Health: disable checks</option>"
3716 "<option value=\"ehlth\">Health: enable checks</option>"
3717 "<option value=\"hrunn\">Health: force UP</option>"
3718 "<option value=\"hnolb\">Health: force NOLB</option>"
3719 "<option value=\"hdown\">Health: force DOWN</option>"
3720 "<option value=\"dagent\">Agent: disable checks</option>"
3721 "<option value=\"eagent\">Agent: enable checks</option>"
3722 "<option value=\"arunn\">Agent: force UP</option>"
3723 "<option value=\"adown\">Agent: force DOWN</option>"
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003724 "<option value=\"shutdown\">Kill Sessions</option>"
3725 "</select>"
3726 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
3727 "&nbsp;<input type=\"submit\" value=\"Apply\">"
3728 "</form>",
3729 px->uuid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003730 }
3731
3732 chunk_appendf(&trash, "<p>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003733}
Willy Tarreau91861262007-10-17 17:06:05 +02003734
3735/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003736 * Dumps statistics for a proxy. The output is sent to the stream interface's
3737 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3738 * buffer space, or non-zero if everything completed. This function is used
3739 * both by the CLI and the HTTP entry points, and is able to dump the output
3740 * in HTML or CSV formats. If the later, <uri> must be NULL.
Willy Tarreau91861262007-10-17 17:06:05 +02003741 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003742static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02003743{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003744 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau87b09662015-04-03 00:22:06 +02003745 struct stream *s = si_strm(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01003746 struct channel *rep = si_ic(si);
Willy Tarreau44267702011-10-28 15:35:33 +02003747 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003748 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02003749
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003750 chunk_reset(&trash);
Willy Tarreau91861262007-10-17 17:06:05 +02003751
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003752 switch (appctx->ctx.stats.px_st) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003753 case STAT_PX_ST_INIT:
Willy Tarreau91861262007-10-17 17:06:05 +02003754 /* we are on a new proxy */
Willy Tarreau91861262007-10-17 17:06:05 +02003755 if (uri && uri->scope) {
3756 /* we have a limited scope, we have to check the proxy name */
3757 struct stat_scope *scope;
3758 int len;
3759
3760 len = strlen(px->id);
3761 scope = uri->scope;
3762
3763 while (scope) {
3764 /* match exact proxy name */
3765 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3766 break;
3767
3768 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02003769 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02003770 break;
3771 scope = scope->next;
3772 }
3773
3774 /* proxy name not found : don't dump anything */
3775 if (scope == NULL)
3776 return 1;
3777 }
3778
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003779 /* if the user has requested a limited output and the proxy
3780 * name does not match, skip it.
3781 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003782 if (appctx->ctx.stats.scope_len &&
Willy Tarreau4e4292b2014-11-28 12:18:45 +01003783 strnistr(px->id, strlen(px->id), bo_ptr(si_ob(si)) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len) == NULL)
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003784 return 1;
3785
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003786 if ((appctx->ctx.stats.flags & STAT_BOUND) &&
3787 (appctx->ctx.stats.iid != -1) &&
3788 (px->uuid != appctx->ctx.stats.iid))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003789 return 1;
3790
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003791 appctx->ctx.stats.px_st = STAT_PX_ST_TH;
Willy Tarreau91861262007-10-17 17:06:05 +02003792 /* fall through */
3793
Willy Tarreau295a8372011-03-10 11:25:07 +01003794 case STAT_PX_ST_TH:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003795 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003796 stats_dump_html_px_hdr(si, px, uri);
Willy Tarreaubc18da12015-03-13 14:00:47 +01003797 if (bi_putchk(rep, &trash) == -1) {
3798 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau55bb8452007-10-17 18:44:57 +02003799 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01003800 }
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003801 }
Willy Tarreau91861262007-10-17 17:06:05 +02003802
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003803 appctx->ctx.stats.px_st = STAT_PX_ST_FE;
Willy Tarreau91861262007-10-17 17:06:05 +02003804 /* fall through */
3805
Willy Tarreau295a8372011-03-10 11:25:07 +01003806 case STAT_PX_ST_FE:
Willy Tarreau91861262007-10-17 17:06:05 +02003807 /* print the frontend */
Willy Tarreaubc18da12015-03-13 14:00:47 +01003808 if (stats_dump_fe_stats(si, px)) {
3809 if (bi_putchk(rep, &trash) == -1) {
3810 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau91861262007-10-17 17:06:05 +02003811 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01003812 }
3813 }
Willy Tarreau91861262007-10-17 17:06:05 +02003814
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003815 appctx->ctx.stats.l = px->conf.listeners.n;
3816 appctx->ctx.stats.px_st = STAT_PX_ST_LI;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003817 /* fall through */
3818
Willy Tarreau295a8372011-03-10 11:25:07 +01003819 case STAT_PX_ST_LI:
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003820 /* stats.l has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003821 for (; appctx->ctx.stats.l != &px->conf.listeners; appctx->ctx.stats.l = l->by_fe.n) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003822 if (buffer_almost_full(rep->buf)) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01003823 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003824 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003825 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003826
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003827 l = LIST_ELEM(appctx->ctx.stats.l, struct listener *, by_fe);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003828 if (!l->counters)
3829 continue;
3830
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003831 if (appctx->ctx.stats.flags & STAT_BOUND) {
3832 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SO)))
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003833 break;
3834
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003835 if (appctx->ctx.stats.sid != -1 && l->luid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003836 continue;
3837 }
3838
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003839 /* print the frontend */
Willy Tarreaubc18da12015-03-13 14:00:47 +01003840 if (stats_dump_li_stats(si, px, l, uri ? uri->flags : 0)) {
3841 if (bi_putchk(rep, &trash) == -1) {
3842 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003843 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01003844 }
3845 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003846 }
3847
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003848 appctx->ctx.stats.sv = px->srv; /* may be NULL */
3849 appctx->ctx.stats.px_st = STAT_PX_ST_SV;
Willy Tarreau91861262007-10-17 17:06:05 +02003850 /* fall through */
3851
Willy Tarreau295a8372011-03-10 11:25:07 +01003852 case STAT_PX_ST_SV:
Willy Tarreau91861262007-10-17 17:06:05 +02003853 /* stats.sv has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003854 for (; appctx->ctx.stats.sv != NULL; appctx->ctx.stats.sv = sv->next) {
Simon Horman4d2eab62015-04-23 14:51:26 +09003855 enum srv_stats_state sv_state;
Willy Tarreau91861262007-10-17 17:06:05 +02003856
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003857 if (buffer_almost_full(rep->buf)) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01003858 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003859 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003860 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003861
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003862 sv = appctx->ctx.stats.sv;
Willy Tarreau91861262007-10-17 17:06:05 +02003863
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003864 if (appctx->ctx.stats.flags & STAT_BOUND) {
3865 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SV)))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003866 break;
3867
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003868 if (appctx->ctx.stats.sid != -1 && sv->puid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003869 continue;
3870 }
3871
Willy Tarreau32091232014-05-16 13:52:00 +02003872 svs = sv;
3873 while (svs->track)
3874 svs = svs->track;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003875
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003876 if (sv->state == SRV_ST_RUNNING || sv->state == SRV_ST_STARTING) {
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003877 if ((svs->check.state & CHK_ST_ENABLED) &&
3878 (svs->check.health < svs->check.rise + svs->check.fall - 1))
Simon Horman4d2eab62015-04-23 14:51:26 +09003879 sv_state = SRV_STATS_STATE_UP_GOING_DOWN;
Willy Tarreau9638efa2014-05-23 11:19:57 +02003880 else
Simon Horman4d2eab62015-04-23 14:51:26 +09003881 sv_state = SRV_STATS_STATE_UP;
Willy Tarreau2ea81932007-11-30 12:04:38 +01003882
Simon Horman4d2eab62015-04-23 14:51:26 +09003883 if (server_is_draining(sv)) {
3884 if (sv_state == SRV_STATS_STATE_UP_GOING_DOWN)
3885 sv_state = SRV_STATS_STATE_DRAIN_GOING_DOWN;
3886 else
3887 sv_state = SRV_STATS_STATE_DRAIN;
3888 }
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003889
Simon Horman4d2eab62015-04-23 14:51:26 +09003890 if (sv_state == SRV_STATS_STATE_UP && !(svs->check.state & CHK_ST_ENABLED))
3891 sv_state = SRV_STATS_STATE_NO_CHECK;
Willy Tarreau2ea81932007-11-30 12:04:38 +01003892 }
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003893 else if (sv->state == SRV_ST_STOPPING) {
3894 if ((!(sv->check.state & CHK_ST_ENABLED) && !sv->track) ||
3895 (svs->check.health == svs->check.rise + svs->check.fall - 1))
Simon Horman4d2eab62015-04-23 14:51:26 +09003896 sv_state = SRV_STATS_STATE_NOLB;
Willy Tarreau91861262007-10-17 17:06:05 +02003897 else
Simon Horman4d2eab62015-04-23 14:51:26 +09003898 sv_state = SRV_STATS_STATE_NOLB_GOING_DOWN;
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003899 }
3900 else { /* stopped */
Willy Tarreau9638efa2014-05-23 11:19:57 +02003901 if ((svs->agent.state & CHK_ST_ENABLED) && !svs->agent.health)
Simon Horman4d2eab62015-04-23 14:51:26 +09003902 sv_state = SRV_STATS_STATE_DOWN_AGENT;
Willy Tarreau9638efa2014-05-23 11:19:57 +02003903 else if ((svs->check.state & CHK_ST_ENABLED) && !svs->check.health)
Simon Horman4d2eab62015-04-23 14:51:26 +09003904 sv_state = SRV_STATS_STATE_DOWN; /* DOWN */
Willy Tarreau9638efa2014-05-23 11:19:57 +02003905 else if ((svs->agent.state & CHK_ST_ENABLED) || (svs->check.state & CHK_ST_ENABLED))
Simon Horman4d2eab62015-04-23 14:51:26 +09003906 sv_state = SRV_STATS_STATE_GOING_UP;
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003907 else
Simon Horman4d2eab62015-04-23 14:51:26 +09003908 sv_state = SRV_STATS_STATE_DOWN; /* DOWN, unchecked */
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003909 }
Willy Tarreau91861262007-10-17 17:06:05 +02003910
Willy Tarreau9638efa2014-05-23 11:19:57 +02003911 if (((sv_state <= 1) || (sv->admin & SRV_ADMF_MAINT)) && (appctx->ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02003912 /* do not report servers which are DOWN */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003913 appctx->ctx.stats.sv = sv->next;
Willy Tarreau91861262007-10-17 17:06:05 +02003914 continue;
3915 }
3916
Willy Tarreaubc18da12015-03-13 14:00:47 +01003917 if (stats_dump_sv_stats(si, px, uri ? uri->flags : 0, sv, sv_state)) {
3918 if (bi_putchk(rep, &trash) == -1) {
3919 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003920 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01003921 }
3922 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003923 } /* for sv */
Cyril Bonté474be412010-10-12 00:14:36 +02003924
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003925 appctx->ctx.stats.px_st = STAT_PX_ST_BE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003926 /* fall through */
Cyril Bonté70be45d2010-10-12 00:14:35 +02003927
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003928 case STAT_PX_ST_BE:
3929 /* print the backend */
Willy Tarreaubc18da12015-03-13 14:00:47 +01003930 if (stats_dump_be_stats(si, px, uri ? uri->flags : 0)) {
3931 if (bi_putchk(rep, &trash) == -1) {
3932 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003933 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01003934 }
3935 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003936
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003937 appctx->ctx.stats.px_st = STAT_PX_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003938 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003939
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003940 case STAT_PX_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003941 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003942 stats_dump_html_px_end(si, px);
Willy Tarreaubc18da12015-03-13 14:00:47 +01003943 if (bi_putchk(rep, &trash) == -1) {
3944 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003945 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01003946 }
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003947 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003948
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003949 appctx->ctx.stats.px_st = STAT_PX_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003950 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003951
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003952 case STAT_PX_ST_FIN:
3953 return 1;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003954
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003955 default:
3956 /* unknown state, we should put an abort() here ! */
3957 return 1;
3958 }
3959}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003960
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003961/* Dumps the HTTP stats head block to the trash for and uses the per-uri
3962 * parameters <uri>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003963 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003964static void stats_dump_html_head(struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003965{
3966 /* WARNING! This must fit in the first buffer !!! */
3967 chunk_appendf(&trash,
3968 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3969 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3970 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3971 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3972 "<style type=\"text/css\"><!--\n"
3973 "body {"
3974 " font-family: arial, helvetica, sans-serif;"
3975 " font-size: 12px;"
3976 " font-weight: normal;"
3977 " color: black;"
3978 " background: white;"
3979 "}\n"
3980 "th,td {"
3981 " font-size: 10px;"
3982 "}\n"
3983 "h1 {"
3984 " font-size: x-large;"
3985 " margin-bottom: 0.5em;"
3986 "}\n"
3987 "h2 {"
3988 " font-family: helvetica, arial;"
3989 " font-size: x-large;"
3990 " font-weight: bold;"
3991 " font-style: italic;"
3992 " color: #6020a0;"
3993 " margin-top: 0em;"
3994 " margin-bottom: 0em;"
3995 "}\n"
3996 "h3 {"
3997 " font-family: helvetica, arial;"
3998 " font-size: 16px;"
3999 " font-weight: bold;"
4000 " color: #b00040;"
4001 " background: #e8e8d0;"
4002 " margin-top: 0em;"
4003 " margin-bottom: 0em;"
4004 "}\n"
4005 "li {"
4006 " margin-top: 0.25em;"
4007 " margin-right: 2em;"
4008 "}\n"
4009 ".hr {margin-top: 0.25em;"
4010 " border-color: black;"
4011 " border-bottom-style: solid;"
4012 "}\n"
4013 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
4014 ".total {background: #20D0D0;color: #ffff80;}\n"
4015 ".frontend {background: #e8e8d0;}\n"
4016 ".socket {background: #d0d0d0;}\n"
4017 ".backend {background: #e8e8d0;}\n"
4018 ".active0 {background: #ff9090;}\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004019 ".active1 {background: #ff9090;}\n"
4020 ".active2 {background: #ffd020;}\n"
4021 ".active3 {background: #ffffa0;}\n"
4022 ".active4 {background: #c0ffc0;}\n"
4023 ".active5 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
4024 ".active6 {background: #20a0ff;}\n" /* NOLB state shows different to be detected */
4025 ".active7 {background: #ffffa0;}\n" /* DRAIN going down = same as going down */
4026 ".active8 {background: #20a0FF;}\n" /* DRAIN must be detected (weight=0) */
4027 ".active9 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004028 ".backup0 {background: #ff9090;}\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004029 ".backup1 {background: #ff9090;}\n"
4030 ".backup2 {background: #ff80ff;}\n"
4031 ".backup3 {background: #c060ff;}\n"
4032 ".backup4 {background: #b0d0ff;}\n"
4033 ".backup5 {background: #c060ff;}\n" /* NOLB state shows same as going down */
4034 ".backup6 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
4035 ".backup7 {background: #c060ff;}\n"
4036 ".backup8 {background: #cc9900;}\n"
4037 ".backup9 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004038 ".maintain {background: #c07820;}\n"
4039 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
4040 "\n"
4041 "a.px:link {color: #ffff40; text-decoration: none;}"
4042 "a.px:visited {color: #ffff40; text-decoration: none;}"
4043 "a.px:hover {color: #ffffff; text-decoration: none;}"
4044 "a.lfsb:link {color: #000000; text-decoration: none;}"
4045 "a.lfsb:visited {color: #000000; text-decoration: none;}"
4046 "a.lfsb:hover {color: #505050; text-decoration: none;}"
4047 "\n"
4048 "table.tbl { border-collapse: collapse; border-style: none;}\n"
4049 "table.tbl td { text-align: right; border-width: 1px 1px 1px 1px; border-style: solid solid solid solid; padding: 2px 3px; border-color: gray; white-space: nowrap;}\n"
4050 "table.tbl td.ac { text-align: center;}\n"
4051 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
4052 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
4053 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
4054 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
4055 "\n"
4056 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
4057 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
4058 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreau466c9b52012-12-23 02:25:03 +01004059 "table.det { border-collapse: collapse; border-style: none; }\n"
4060 "table.det th { text-align: left; border-width: 0px; padding: 0px 1px 0px 0px; font-style:normal;font-size:11px;font-weight:bold;font-family: sans-serif;}\n"
Willy Tarreau6b9d3a82013-12-16 09:00:35 +01004061 "table.det td { text-align: right; border-width: 0px; padding: 0px 0px 0px 4px; white-space: nowrap; font-style:normal;font-size:11px;font-weight:normal;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004062 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02004063 "div.tips {\n"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01004064 " display:block;\n"
4065 " visibility:hidden;\n"
4066 " z-index:2147483647;\n"
4067 " position:absolute;\n"
4068 " padding:2px 4px 3px;\n"
4069 " background:#f0f060; color:#000000;\n"
4070 " border:1px solid #7040c0;\n"
4071 " white-space:nowrap;\n"
4072 " font-style:normal;font-size:11px;font-weight:normal;\n"
4073 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
4074 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
4075 "}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02004076 "u:hover div.tips {visibility:visible;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004077 "-->\n"
4078 "</style></head>\n",
4079 (uri->flags & ST_SHNODE) ? " on " : "",
4080 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
4081 );
4082}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01004083
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004084/* Dumps the HTML stats information block to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004085 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004086 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004087 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004088static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004089{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004090 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004091 unsigned int up = (now.tv_sec - start_date.tv_sec);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004092 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01004093
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004094 /* WARNING! this has to fit the first packet too.
4095 * We are around 3.5 kB, add adding entries will
4096 * become tricky if we want to support 4kB buffers !
4097 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004098 chunk_appendf(&trash,
4099 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
4100 PRODUCT_NAME "%s</a></h1>\n"
4101 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
4102 "<hr width=\"100%%\" class=\"hr\">\n"
4103 "<h3>&gt; General process information</h3>\n"
4104 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
4105 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
4106 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
4107 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
4108 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
4109 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec<br>\n"
4110 "Running tasks: %d/%d; idle = %d %%<br>\n"
4111 "</td><td align=\"center\" nowrap>\n"
4112 "<table class=\"lgd\"><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004113 "<td class=\"active4\">&nbsp;</td><td class=\"noborder\">active UP </td>"
4114 "<td class=\"backup4\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004115 "</tr><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004116 "<td class=\"active3\"></td><td class=\"noborder\">active UP, going down </td>"
4117 "<td class=\"backup3\"></td><td class=\"noborder\">backup UP, going down </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004118 "</tr><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004119 "<td class=\"active2\"></td><td class=\"noborder\">active DOWN, going up </td>"
4120 "<td class=\"backup2\"></td><td class=\"noborder\">backup DOWN, going up </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004121 "</tr><tr>\n"
4122 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004123 "<td class=\"active9\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004124 "</tr><tr>\n"
4125 "<td class=\"maintain\"></td><td class=\"noborder\" colspan=\"3\">active or backup DOWN for maintenance (MAINT) &nbsp;</td>"
Geoff Bucarcc8bb922013-04-18 13:53:16 -07004126 "</tr><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004127 "<td class=\"active8\"></td><td class=\"noborder\" colspan=\"3\">active or backup SOFT STOPPED for maintenance &nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004128 "</tr></table>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01004129 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004130 "</td>"
4131 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
4132 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
4133 "",
4134 (uri->flags & ST_HIDEVER) ? "" : (STATS_VERSION_STRING),
4135 pid, (uri->flags & ST_SHNODE) ? " on " : "",
4136 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
4137 (uri->flags & ST_SHDESC) ? ": " : "",
4138 (uri->flags & ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
4139 pid, relative_pid, global.nbproc,
4140 up / 86400, (up % 86400) / 3600,
4141 (up % 3600) / 60, (up % 60),
4142 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
4143 global.rlimit_memmax ? " MB" : "",
4144 global.rlimit_nofile,
4145 global.maxsock, global.maxconn, global.maxpipes,
4146 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
4147 run_queue_cur, nb_tasks_cur, idle_pct
4148 );
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004149
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004150 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004151 memcpy(scope_txt, bo_ptr(si_ob(si)) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004152 scope_txt[appctx->ctx.stats.scope_len] = '\0';
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004153
4154 chunk_appendf(&trash,
Jeff Buchbinder2dbbf4d2014-08-29 15:10:08 -05004155 "<li><form method=\"GET\">Scope : <input value=\"%s\" name=\"" STAT_SCOPE_INPUT_NAME "\" size=\"8\" maxlength=\"%d\" tabindex=\"1\"/></form>\n",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004156 (appctx->ctx.stats.scope_len > 0) ? scope_txt : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004157 STAT_SCOPE_TXT_MAXLEN);
4158
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004159 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004160 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004161 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004162 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004163 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si_ob(si)) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004164 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004165 }
4166
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004167 if (appctx->ctx.stats.flags & STAT_HIDE_DOWN)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004168 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004169 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004170 uri->uri_prefix,
4171 "",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004172 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004173 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004174 else
4175 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004176 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004177 uri->uri_prefix,
4178 ";up",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004179 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004180 scope_txt);
Willy Tarreau91861262007-10-17 17:06:05 +02004181
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004182 if (uri->refresh > 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004183 if (appctx->ctx.stats.flags & STAT_NO_REFRESH)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004184 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004185 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004186 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004187 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004188 "",
4189 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004190 else
4191 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004192 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004193 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004194 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004195 ";norefresh",
4196 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004197 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02004198
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004199 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004200 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004201 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004202 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4203 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004204 scope_txt);
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02004205
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004206 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004207 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004208 uri->uri_prefix,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004209 (uri->refresh > 0) ? ";norefresh" : "",
4210 scope_txt);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01004211
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004212 chunk_appendf(&trash,
4213 "</ul></td>"
4214 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
4215 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
4216 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
4217 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
4218 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
4219 "</ul>"
4220 "</td>"
4221 "</tr></table>\n"
4222 ""
4223 );
Willy Tarreau4bab24d2007-11-30 18:16:29 +01004224
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004225 if (appctx->ctx.stats.st_code) {
4226 switch (appctx->ctx.stats.st_code) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004227 case STAT_STATUS_DONE:
4228 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004229 "<p><div class=active4>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004230 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004231 "Action processed successfully."
Willy Tarreauba6be982013-04-19 12:16:55 +02004232 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004233 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4234 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004235 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004236 break;
4237 case STAT_STATUS_NONE:
4238 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004239 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004240 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004241 "Nothing has changed."
Willy Tarreauba6be982013-04-19 12:16:55 +02004242 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004243 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4244 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004245 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004246 break;
4247 case STAT_STATUS_PART:
4248 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004249 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004250 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004251 "Action partially processed.<br>"
4252 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
Willy Tarreauba6be982013-04-19 12:16:55 +02004253 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004254 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4255 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004256 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004257 break;
4258 case STAT_STATUS_ERRP:
4259 chunk_appendf(&trash,
4260 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004261 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004262 "Action not processed because of invalid parameters."
4263 "<ul>"
4264 "<li>The action is maybe unknown.</li>"
4265 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
4266 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
4267 "</ul>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004268 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004269 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4270 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004271 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004272 break;
4273 case STAT_STATUS_EXCD:
4274 chunk_appendf(&trash,
4275 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004276 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004277 "<b>Action not processed : the buffer couldn't store all the data.<br>"
4278 "You should retry with less servers at a time.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004279 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004280 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4281 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004282 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004283 break;
4284 case STAT_STATUS_DENY:
4285 chunk_appendf(&trash,
4286 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004287 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004288 "<b>Action denied.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004289 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004290 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4291 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004292 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004293 break;
4294 default:
4295 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004296 "<p><div class=active9>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004297 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004298 "Unexpected result."
Willy Tarreauba6be982013-04-19 12:16:55 +02004299 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004300 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4301 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004302 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004303 }
4304 chunk_appendf(&trash, "<p>\n");
4305 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004306}
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01004307
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004308/* Dumps the HTML stats trailer block to the trash. The caller is responsible
4309 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004310 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004311static void stats_dump_html_end()
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004312{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004313 chunk_appendf(&trash, "</body></html>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004314}
Willy Tarreau7f062c42009-03-05 18:43:00 +01004315
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004316/* This function dumps statistics onto the stream interface's read buffer in
4317 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
Willy Tarreau306f8302013-07-08 15:53:06 +02004318 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
4319 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
Willy Tarreau87b09662015-04-03 00:22:06 +02004320 * and the stream must be closed, or -1 in case of any error. This function is
Willy Tarreau306f8302013-07-08 15:53:06 +02004321 * used by both the CLI and the HTTP handlers.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004322 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004323static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004324{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004325 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004326 struct channel *rep = si_ic(si);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004327 struct proxy *px;
Willy Tarreau7f062c42009-03-05 18:43:00 +01004328
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004329 chunk_reset(&trash);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02004330
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004331 switch (appctx->st2) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004332 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004333 appctx->st2 = STAT_ST_HEAD; /* let's start producing data */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004334 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004335
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004336 case STAT_ST_HEAD:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004337 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004338 stats_dump_html_head(uri);
Willy Tarreau354898b2012-12-23 18:15:23 +01004339 else
4340 stats_dump_csv_header();
Willy Tarreaud9b587f2010-02-26 10:05:55 +01004341
Willy Tarreaubc18da12015-03-13 14:00:47 +01004342 if (bi_putchk(rep, &trash) == -1) {
4343 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004344 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01004345 }
Willy Tarreauae526782010-03-04 20:34:23 +01004346
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004347 appctx->st2 = STAT_ST_INFO;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004348 /* fall through */
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004349
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004350 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004351 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004352 stats_dump_html_info(si, uri);
Willy Tarreaubc18da12015-03-13 14:00:47 +01004353 if (bi_putchk(rep, &trash) == -1) {
4354 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau91861262007-10-17 17:06:05 +02004355 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01004356 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004357 }
Willy Tarreau91861262007-10-17 17:06:05 +02004358
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004359 appctx->ctx.stats.px = proxy;
4360 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
4361 appctx->st2 = STAT_ST_LIST;
Willy Tarreau91861262007-10-17 17:06:05 +02004362 /* fall through */
4363
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004364 case STAT_ST_LIST:
4365 /* dump proxies */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004366 while (appctx->ctx.stats.px) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01004367 if (buffer_almost_full(rep->buf)) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01004368 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004369 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01004370 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004371
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004372 px = appctx->ctx.stats.px;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004373 /* skip the disabled proxies, global frontend and non-networked ones */
4374 if (px->state != PR_STSTOPPED && px->uuid > 0 && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004375 if (stats_dump_proxy_to_buffer(si, px, uri) == 0)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004376 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004377
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004378 appctx->ctx.stats.px = px->next;
4379 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004380 }
4381 /* here, we just have reached the last proxy */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004382
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004383 appctx->st2 = STAT_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004384 /* fall through */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004385
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004386 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004387 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004388 stats_dump_html_end();
Willy Tarreaubc18da12015-03-13 14:00:47 +01004389 if (bi_putchk(rep, &trash) == -1) {
4390 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004391 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01004392 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004393 }
Willy Tarreau55058a72012-11-21 08:27:21 +01004394
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004395 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004396 /* fall through */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02004397
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004398 case STAT_ST_FIN:
4399 return 1;
Willy Tarreau55058a72012-11-21 08:27:21 +01004400
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004401 default:
4402 /* unknown state ! */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004403 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004404 return -1;
4405 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004406}
Willy Tarreauae526782010-03-04 20:34:23 +01004407
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004408/* We reached the stats page through a POST request. The appctx is
4409 * expected to have already been allocated by the caller.
Willy Tarreau347a35d2013-11-22 17:51:09 +01004410 * Parse the posted data and enable/disable servers if necessary.
4411 * Returns 1 if request was parsed or zero if it needs more data.
4412 */
4413static int stats_process_http_post(struct stream_interface *si)
4414{
Willy Tarreau87b09662015-04-03 00:22:06 +02004415 struct stream *s = si_strm(si);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004416 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004417
4418 struct proxy *px = NULL;
4419 struct server *sv = NULL;
4420
4421 char key[LINESIZE];
4422 int action = ST_ADM_ACTION_NONE;
4423 int reprocess = 0;
4424
4425 int total_servers = 0;
4426 int altered_servers = 0;
4427
4428 char *first_param, *cur_param, *next_param, *end_params;
4429 char *st_cur_param = NULL;
4430 char *st_next_param = NULL;
4431
4432 struct chunk *temp;
4433 int reql;
4434
4435 temp = get_trash_chunk();
Willy Tarreaueee5b512015-04-03 23:46:31 +02004436 if (temp->size < s->txn->req.body_len) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004437 /* too large request */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004438 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004439 goto out;
4440 }
4441
Willy Tarreaueee5b512015-04-03 23:46:31 +02004442 reql = bo_getblk(si_oc(si), temp->str, s->txn->req.body_len, s->txn->req.eoh + 2);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004443 if (reql <= 0) {
4444 /* we need more data */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004445 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004446 return 0;
4447 }
4448
4449 first_param = temp->str;
4450 end_params = temp->str + reql;
4451 cur_param = next_param = end_params;
4452 *end_params = '\0';
4453
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004454 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004455
4456 /*
4457 * Parse the parameters in reverse order to only store the last value.
4458 * From the html form, the backend and the action are at the end.
4459 */
4460 while (cur_param > first_param) {
4461 char *value;
4462 int poffset, plen;
4463
4464 cur_param--;
4465
4466 if ((*cur_param == '&') || (cur_param == first_param)) {
4467 reprocess_servers:
4468 /* Parse the key */
4469 poffset = (cur_param != first_param ? 1 : 0);
4470 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
4471 if ((plen > 0) && (plen <= sizeof(key))) {
4472 strncpy(key, cur_param + poffset, plen);
4473 key[plen - 1] = '\0';
4474 } else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004475 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004476 goto out;
4477 }
4478
4479 /* Parse the value */
4480 value = key;
4481 while (*value != '\0' && *value != '=') {
4482 value++;
4483 }
4484 if (*value == '=') {
4485 /* Ok, a value is found, we can mark the end of the key */
4486 *value++ = '\0';
4487 }
4488 if (url_decode(key) < 0 || url_decode(value) < 0)
4489 break;
4490
4491 /* Now we can check the key to see what to do */
4492 if (!px && (strcmp(key, "b") == 0)) {
4493 if ((px = findproxy(value, PR_CAP_BE)) == NULL) {
4494 /* the backend name is unknown or ambiguous (duplicate names) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004495 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004496 goto out;
4497 }
4498 }
4499 else if (!action && (strcmp(key, "action") == 0)) {
Willy Tarreaued7df902014-05-22 18:04:49 +02004500 if (strcmp(value, "ready") == 0) {
4501 action = ST_ADM_ACTION_READY;
4502 }
4503 else if (strcmp(value, "drain") == 0) {
4504 action = ST_ADM_ACTION_DRAIN;
4505 }
4506 else if (strcmp(value, "maint") == 0) {
4507 action = ST_ADM_ACTION_MAINT;
4508 }
4509 else if (strcmp(value, "shutdown") == 0) {
4510 action = ST_ADM_ACTION_SHUTDOWN;
4511 }
Willy Tarreau248a60e2014-05-23 14:59:48 +02004512 else if (strcmp(value, "dhlth") == 0) {
4513 action = ST_ADM_ACTION_DHLTH;
4514 }
4515 else if (strcmp(value, "ehlth") == 0) {
4516 action = ST_ADM_ACTION_EHLTH;
4517 }
4518 else if (strcmp(value, "hrunn") == 0) {
4519 action = ST_ADM_ACTION_HRUNN;
4520 }
4521 else if (strcmp(value, "hnolb") == 0) {
4522 action = ST_ADM_ACTION_HNOLB;
4523 }
4524 else if (strcmp(value, "hdown") == 0) {
4525 action = ST_ADM_ACTION_HDOWN;
4526 }
4527 else if (strcmp(value, "dagent") == 0) {
4528 action = ST_ADM_ACTION_DAGENT;
4529 }
4530 else if (strcmp(value, "eagent") == 0) {
4531 action = ST_ADM_ACTION_EAGENT;
4532 }
4533 else if (strcmp(value, "arunn") == 0) {
4534 action = ST_ADM_ACTION_ARUNN;
4535 }
4536 else if (strcmp(value, "adown") == 0) {
4537 action = ST_ADM_ACTION_ADOWN;
4538 }
Willy Tarreaued7df902014-05-22 18:04:49 +02004539 /* else these are the old supported methods */
4540 else if (strcmp(value, "disable") == 0) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004541 action = ST_ADM_ACTION_DISABLE;
4542 }
4543 else if (strcmp(value, "enable") == 0) {
4544 action = ST_ADM_ACTION_ENABLE;
4545 }
4546 else if (strcmp(value, "stop") == 0) {
4547 action = ST_ADM_ACTION_STOP;
4548 }
4549 else if (strcmp(value, "start") == 0) {
4550 action = ST_ADM_ACTION_START;
4551 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004552 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004553 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004554 goto out;
4555 }
4556 }
4557 else if (strcmp(key, "s") == 0) {
4558 if (!(px && action)) {
4559 /*
4560 * Indicates that we'll need to reprocess the parameters
4561 * as soon as backend and action are known
4562 */
4563 if (!reprocess) {
4564 st_cur_param = cur_param;
4565 st_next_param = next_param;
4566 }
4567 reprocess = 1;
4568 }
4569 else if ((sv = findserver(px, value)) != NULL) {
4570 switch (action) {
4571 case ST_ADM_ACTION_DISABLE:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004572 if (!(sv->admin & SRV_ADMF_FMAINT)) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004573 altered_servers++;
4574 total_servers++;
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004575 srv_set_admin_flag(sv, SRV_ADMF_FMAINT);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004576 }
4577 break;
4578 case ST_ADM_ACTION_ENABLE:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004579 if (sv->admin & SRV_ADMF_FMAINT) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004580 altered_servers++;
4581 total_servers++;
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004582 srv_clr_admin_flag(sv, SRV_ADMF_FMAINT);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004583 }
4584 break;
4585 case ST_ADM_ACTION_STOP:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004586 if (!(sv->admin & SRV_ADMF_FDRAIN)) {
4587 srv_set_admin_flag(sv, SRV_ADMF_FDRAIN);
4588 altered_servers++;
4589 total_servers++;
4590 }
4591 break;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004592 case ST_ADM_ACTION_START:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004593 if (sv->admin & SRV_ADMF_FDRAIN) {
4594 srv_clr_admin_flag(sv, SRV_ADMF_FDRAIN);
4595 altered_servers++;
4596 total_servers++;
4597 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004598 break;
Willy Tarreau248a60e2014-05-23 14:59:48 +02004599 case ST_ADM_ACTION_DHLTH:
4600 if (sv->check.state & CHK_ST_CONFIGURED) {
4601 sv->check.state &= ~CHK_ST_ENABLED;
4602 altered_servers++;
4603 total_servers++;
4604 }
4605 break;
4606 case ST_ADM_ACTION_EHLTH:
4607 if (sv->check.state & CHK_ST_CONFIGURED) {
4608 sv->check.state |= CHK_ST_ENABLED;
4609 altered_servers++;
4610 total_servers++;
4611 }
4612 break;
4613 case ST_ADM_ACTION_HRUNN:
4614 if (!(sv->track)) {
4615 sv->check.health = sv->check.rise + sv->check.fall - 1;
4616 srv_set_running(sv, "changed from Web interface");
4617 altered_servers++;
4618 total_servers++;
4619 }
4620 break;
4621 case ST_ADM_ACTION_HNOLB:
4622 if (!(sv->track)) {
4623 sv->check.health = sv->check.rise + sv->check.fall - 1;
4624 srv_set_stopping(sv, "changed from Web interface");
4625 altered_servers++;
4626 total_servers++;
4627 }
4628 break;
4629 case ST_ADM_ACTION_HDOWN:
4630 if (!(sv->track)) {
4631 sv->check.health = 0;
4632 srv_set_stopped(sv, "changed from Web interface");
4633 altered_servers++;
4634 total_servers++;
4635 }
4636 break;
4637 case ST_ADM_ACTION_DAGENT:
4638 if (sv->agent.state & CHK_ST_CONFIGURED) {
4639 sv->agent.state &= ~CHK_ST_ENABLED;
4640 altered_servers++;
4641 total_servers++;
4642 }
4643 break;
4644 case ST_ADM_ACTION_EAGENT:
4645 if (sv->agent.state & CHK_ST_CONFIGURED) {
4646 sv->agent.state |= CHK_ST_ENABLED;
4647 altered_servers++;
4648 total_servers++;
4649 }
4650 break;
4651 case ST_ADM_ACTION_ARUNN:
4652 if (sv->agent.state & CHK_ST_ENABLED) {
4653 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
4654 srv_set_running(sv, "changed from Web interface");
4655 altered_servers++;
4656 total_servers++;
4657 }
4658 break;
4659 case ST_ADM_ACTION_ADOWN:
4660 if (sv->agent.state & CHK_ST_ENABLED) {
4661 sv->agent.health = 0;
4662 srv_set_stopped(sv, "changed from Web interface");
4663 altered_servers++;
4664 total_servers++;
4665 }
4666 break;
Willy Tarreaued7df902014-05-22 18:04:49 +02004667 case ST_ADM_ACTION_READY:
4668 srv_adm_set_ready(sv);
4669 altered_servers++;
4670 total_servers++;
4671 break;
4672 case ST_ADM_ACTION_DRAIN:
4673 srv_adm_set_drain(sv);
4674 altered_servers++;
4675 total_servers++;
4676 break;
4677 case ST_ADM_ACTION_MAINT:
4678 srv_adm_set_maint(sv);
4679 altered_servers++;
4680 total_servers++;
4681 break;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004682 case ST_ADM_ACTION_SHUTDOWN:
4683 if (px->state != PR_STSTOPPED) {
Willy Tarreau87b09662015-04-03 00:22:06 +02004684 struct stream *sess, *sess_bck;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004685
4686 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
4687 if (sess->srv_conn == sv)
Willy Tarreaue7dff022015-04-03 01:14:29 +02004688 stream_shutdown(sess, SF_ERR_KILLED);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004689
4690 altered_servers++;
4691 total_servers++;
4692 }
4693 break;
4694 }
4695 } else {
4696 /* the server name is unknown or ambiguous (duplicate names) */
4697 total_servers++;
4698 }
4699 }
4700 if (reprocess && px && action) {
4701 /* Now, we know the backend and the action chosen by the user.
4702 * We can safely restart from the first server parameter
4703 * to reprocess them
4704 */
4705 cur_param = st_cur_param;
4706 next_param = st_next_param;
4707 reprocess = 0;
4708 goto reprocess_servers;
4709 }
4710
4711 next_param = cur_param;
4712 }
4713 }
4714
4715 if (total_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004716 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004717 }
4718 else if (altered_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004719 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004720 }
4721 else if (altered_servers == total_servers) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004722 appctx->ctx.stats.st_code = STAT_STATUS_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004723 }
4724 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004725 appctx->ctx.stats.st_code = STAT_STATUS_PART;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004726 }
4727 out:
4728 return 1;
4729}
4730
4731
4732static int stats_send_http_headers(struct stream_interface *si)
4733{
Willy Tarreau87b09662015-04-03 00:22:06 +02004734 struct stream *s = si_strm(si);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004735 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004736 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004737
4738 chunk_printf(&trash,
Willy Tarreau8b8995f2014-04-24 22:51:54 +02004739 "HTTP/1.1 200 OK\r\n"
Willy Tarreau347a35d2013-11-22 17:51:09 +01004740 "Cache-Control: no-cache\r\n"
4741 "Connection: close\r\n"
4742 "Content-Type: %s\r\n",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004743 (appctx->ctx.stats.flags & STAT_FMT_HTML) ? "text/html" : "text/plain");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004744
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004745 if (uri->refresh > 0 && !(appctx->ctx.stats.flags & STAT_NO_REFRESH))
Willy Tarreau347a35d2013-11-22 17:51:09 +01004746 chunk_appendf(&trash, "Refresh: %d\r\n",
4747 uri->refresh);
4748
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004749 /* we don't send the CRLF in chunked mode, it will be sent with the first chunk's size */
4750
4751 if (appctx->ctx.stats.flags & STAT_CHUNKED)
4752 chunk_appendf(&trash, "Transfer-Encoding: chunked\r\n");
4753 else
4754 chunk_appendf(&trash, "\r\n");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004755
Willy Tarreaueee5b512015-04-03 23:46:31 +02004756 s->txn->status = 200;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004757 s->logs.tv_request = now;
4758
Willy Tarreaubc18da12015-03-13 14:00:47 +01004759 if (bi_putchk(si_ic(si), &trash) == -1) {
4760 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004761 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01004762 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004763
4764 return 1;
4765}
4766
4767static int stats_send_http_redirect(struct stream_interface *si)
4768{
4769 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Willy Tarreau87b09662015-04-03 00:22:06 +02004770 struct stream *s = si_strm(si);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004771 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004772 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004773
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004774 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau347a35d2013-11-22 17:51:09 +01004775 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004776 if (appctx->ctx.stats.scope_len) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004777 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004778 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si_ob(si)) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004779 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004780 }
4781
4782 /* We don't want to land on the posted stats page because a refresh will
4783 * repost the data. We don't want this to happen on accident so we redirect
4784 * the browse to the stats page with a GET.
4785 */
4786 chunk_printf(&trash,
4787 "HTTP/1.1 303 See Other\r\n"
4788 "Cache-Control: no-cache\r\n"
4789 "Content-Type: text/plain\r\n"
4790 "Connection: close\r\n"
4791 "Location: %s;st=%s%s%s%s\r\n"
4792 "\r\n",
4793 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004794 ((appctx->ctx.stats.st_code > STAT_STATUS_INIT) &&
4795 (appctx->ctx.stats.st_code < STAT_STATUS_SIZE) &&
4796 stat_status_codes[appctx->ctx.stats.st_code]) ?
4797 stat_status_codes[appctx->ctx.stats.st_code] :
Willy Tarreau347a35d2013-11-22 17:51:09 +01004798 stat_status_codes[STAT_STATUS_UNKN],
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004799 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4800 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreau347a35d2013-11-22 17:51:09 +01004801 scope_txt);
4802
Willy Tarreaueee5b512015-04-03 23:46:31 +02004803 s->txn->status = 303;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004804 s->logs.tv_request = now;
4805
Willy Tarreaubc18da12015-03-13 14:00:47 +01004806 if (bi_putchk(si_ic(si), &trash) == -1) {
4807 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004808 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01004809 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004810
4811 return 1;
4812}
4813
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004814/* This I/O handler runs as an applet embedded in a stream interface. It is
4815 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004816 * appctx->st0 contains the operation in progress (dump, done). The handler
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004817 * automatically unregisters itself once transfer is complete.
4818 */
4819static void http_stats_io_handler(struct stream_interface *si)
4820{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004821 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau87b09662015-04-03 00:22:06 +02004822 struct stream *s = si_strm(si);
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004823 struct channel *req = si_oc(si);
4824 struct channel *res = si_ic(si);
Willy Tarreau55058a72012-11-21 08:27:21 +01004825
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004826 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
4827 goto out;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004828
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004829 /* check that the output is not closed */
4830 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004831 appctx->st0 = STAT_HTTP_DONE;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004832
Willy Tarreau347a35d2013-11-22 17:51:09 +01004833 /* all states are processed in sequence */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004834 if (appctx->st0 == STAT_HTTP_HEAD) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004835 if (stats_send_http_headers(si)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +02004836 if (s->txn->meth == HTTP_METH_HEAD)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004837 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004838 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004839 appctx->st0 = STAT_HTTP_DUMP;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004840 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004841 }
4842
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004843 if (appctx->st0 == STAT_HTTP_DUMP) {
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004844 unsigned int prev_len = si_ib(si)->i;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004845 unsigned int data_len;
4846 unsigned int last_len;
Willy Tarreaucce36482014-04-24 20:26:41 +02004847 unsigned int last_fwd = 0;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004848
4849 if (appctx->ctx.stats.flags & STAT_CHUNKED) {
4850 /* One difficulty we're facing is that we must prevent
4851 * the input data from being automatically forwarded to
4852 * the output area. For this, we temporarily disable
4853 * forwarding on the channel.
4854 */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004855 last_fwd = si_ic(si)->to_forward;
4856 si_ic(si)->to_forward = 0;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004857 chunk_printf(&trash, "\r\n000000\r\n");
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004858 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaubc18da12015-03-13 14:00:47 +01004859 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004860 si_ic(si)->to_forward = last_fwd;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004861 goto fail;
4862 }
4863 }
4864
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004865 data_len = si_ib(si)->i;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004866 if (stats_dump_stat_to_buffer(si, s->be->uri_auth))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004867 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004868
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004869 last_len = si_ib(si)->i;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004870
4871 /* Now we must either adjust or remove the chunk size. This is
4872 * not easy because the chunk size might wrap at the end of the
4873 * buffer, so we pretend we have nothing in the buffer, we write
4874 * the size, then restore the buffer's contents. Note that we can
4875 * only do that because no forwarding is scheduled on the stats
4876 * applet.
4877 */
4878 if (appctx->ctx.stats.flags & STAT_CHUNKED) {
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004879 si_ic(si)->total -= (last_len - prev_len);
4880 si_ib(si)->i -= (last_len - prev_len);
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004881
4882 if (last_len != data_len) {
4883 chunk_printf(&trash, "\r\n%06x\r\n", (last_len - data_len));
Willy Tarreaubc18da12015-03-13 14:00:47 +01004884 if (bi_putchk(si_ic(si), &trash) == -1)
4885 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004886
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004887 si_ic(si)->total += (last_len - data_len);
4888 si_ib(si)->i += (last_len - data_len);
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004889 }
4890 /* now re-enable forwarding */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004891 channel_forward(si_ic(si), last_fwd);
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004892 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004893 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02004894
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004895 if (appctx->st0 == STAT_HTTP_POST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004896 if (stats_process_http_post(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004897 appctx->st0 = STAT_HTTP_LAST;
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004898 else if (si_oc(si)->flags & CF_SHUTR)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004899 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004900 }
4901
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004902 if (appctx->st0 == STAT_HTTP_LAST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004903 if (stats_send_http_redirect(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004904 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004905 }
4906
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004907 if (appctx->st0 == STAT_HTTP_DONE) {
4908 if (appctx->ctx.stats.flags & STAT_CHUNKED) {
4909 chunk_printf(&trash, "\r\n0\r\n\r\n");
Willy Tarreaubc18da12015-03-13 14:00:47 +01004910 if (bi_putchk(si_ic(si), &trash) == -1) {
4911 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004912 goto fail;
Willy Tarreaubc18da12015-03-13 14:00:47 +01004913 }
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004914 }
4915 /* eat the whole request */
Willy Tarreau4e4292b2014-11-28 12:18:45 +01004916 bo_skip(si_oc(si), si_ob(si)->o);
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004917 res->flags |= CF_READ_NULL;
4918 si_shutr(si);
4919 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004920
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004921 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST))
4922 si_shutw(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004923
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004924 if (appctx->st0 == STAT_HTTP_DONE) {
Willy Tarreau96d44912013-11-22 12:25:24 +01004925 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST)) {
4926 si_shutr(si);
4927 res->flags |= CF_READ_NULL;
4928 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004929 }
Willy Tarreau91861262007-10-17 17:06:05 +02004930
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004931 fail:
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004932 /* update all other flags and resync with the other side */
4933 si_update(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004934
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004935 /* we don't want to expire timeouts while we're processing requests */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01004936 si_ic(si)->rex = TICK_ETERNITY;
4937 si_oc(si)->wex = TICK_ETERNITY;
Willy Tarreau91861262007-10-17 17:06:05 +02004938
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004939 out:
4940 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
4941 /* check that we have released everything then unregister */
4942 stream_int_unregister_handler(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004943 }
4944}
4945
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004946
Willy Tarreau909d5172012-11-26 03:04:41 +01004947static inline const char *get_conn_ctrl_name(const struct connection *conn)
4948{
Willy Tarreau3c728722014-01-23 13:50:42 +01004949 if (!conn_ctrl_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004950 return "NONE";
4951 return conn->ctrl->name;
4952}
4953
4954static inline const char *get_conn_xprt_name(const struct connection *conn)
4955{
4956 static char ptr[17];
4957
Willy Tarreauaad69382014-01-23 14:21:42 +01004958 if (!conn_xprt_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004959 return "NONE";
4960
4961 if (conn->xprt == &raw_sock)
4962 return "RAW";
4963
4964#ifdef USE_OPENSSL
4965 if (conn->xprt == &ssl_sock)
4966 return "SSL";
4967#endif
4968 snprintf(ptr, sizeof(ptr), "%p", conn->xprt);
4969 return ptr;
4970}
4971
4972static inline const char *get_conn_data_name(const struct connection *conn)
4973{
4974 static char ptr[17];
4975
4976 if (!conn->data)
4977 return "NONE";
4978
4979 if (conn->data == &sess_conn_cb)
4980 return "SESS";
4981
4982 if (conn->data == &si_conn_cb)
4983 return "STRM";
4984
4985 if (conn->data == &check_conn_cb)
4986 return "CHCK";
4987
4988 snprintf(ptr, sizeof(ptr), "%p", conn->data);
4989 return ptr;
4990}
4991
Willy Tarreau87b09662015-04-03 00:22:06 +02004992/* This function dumps a complete stream state onto the stream interface's
4993 * read buffer. The stream has to be set in sess->target. It returns
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004994 * 0 if the output buffer is full and it needs to be called again, otherwise
4995 * non-zero. It is designed to be called from stats_dump_sess_to_buffer() below.
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004996 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004997static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct stream *sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004998{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004999 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005000 struct tm tm;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005001 extern const char *monthname[12];
5002 char pn[INET6_ADDRSTRLEN];
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005003 struct connection *conn;
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005004 struct appctx *tmpctx;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005005
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005006 chunk_reset(&trash);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005007
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005008 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != sess->uniq_id) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005009 /* stream changed, no need to go any further */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005010 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreaubc18da12015-03-13 14:00:47 +01005011 if (bi_putchk(si_ic(si), &trash) == -1) {
5012 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005013 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01005014 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005015 appctx->ctx.sess.uid = 0;
5016 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005017 return 1;
5018 }
5019
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005020 switch (appctx->ctx.sess.section) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005021 case 0: /* main status of the stream */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005022 appctx->ctx.sess.uid = sess->uniq_id;
5023 appctx->ctx.sess.section = 1;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005024 /* fall through */
5025
5026 case 1:
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005027 get_localtime(sess->logs.accept_date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005028 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005029 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005030 sess,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005031 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
5032 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005033 sess->uniq_id,
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005034 strm_li(sess) && strm_li(sess)->proto->name ? strm_li(sess)->proto->name : "?");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005035
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005036 conn = objt_conn(strm_orig(sess));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005037 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005038 case AF_INET:
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005039 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005040 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005041 pn, get_host_port(&conn->addr.from));
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005042 break;
5043 case AF_UNIX:
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005044 chunk_appendf(&trash, " source=unix:%d\n", strm_li(sess)->luid);
Emeric Brun837ca522010-10-22 16:19:01 +02005045 break;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005046 default:
5047 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005048 chunk_appendf(&trash, "\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005049 break;
5050 }
5051
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005052 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005053 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02005054 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005055
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005056 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07005057 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005058 strm_fe(sess)->id, strm_fe(sess)->uuid, strm_fe(sess)->mode ? "http" : "tcp",
5059 strm_li(sess) ? strm_li(sess)->name ? strm_li(sess)->name : "?" : "?",
5060 strm_li(sess) ? strm_li(sess)->luid : 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005061
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005062 if (conn)
5063 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005064
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005065 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07005066 case AF_INET:
5067 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005068 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005069 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07005070 break;
5071 case AF_UNIX:
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005072 chunk_appendf(&trash, " addr=unix:%d\n", strm_li(sess)->luid);
Daniel Schultze90690c72012-03-23 10:53:36 -07005073 break;
5074 default:
5075 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005076 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005077 break;
5078 }
5079
Willy Tarreau50943332011-09-02 17:33:05 +02005080 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005081 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07005082 " backend=%s (id=%u mode=%s)",
Willy Tarreau50943332011-09-02 17:33:05 +02005083 sess->be->id,
Daniel Schultze90690c72012-03-23 10:53:36 -07005084 sess->be->uuid, sess->be->mode ? "http" : "tcp");
5085 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005086 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
Daniel Schultze90690c72012-03-23 10:53:36 -07005087
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005088 conn = objt_conn(sess->si[1].end);
5089 if (conn)
5090 conn_get_from_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005091
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005092 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07005093 case AF_INET:
5094 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005095 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005096 pn, get_host_port(&conn->addr.from));
Daniel Schultze90690c72012-03-23 10:53:36 -07005097 break;
5098 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005099 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005100 break;
5101 default:
5102 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005103 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005104 break;
5105 }
5106
5107 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005108 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07005109 " server=%s (id=%u)",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005110 objt_server(sess->target) ? objt_server(sess->target)->id : "<none>",
5111 objt_server(sess->target) ? objt_server(sess->target)->puid : 0);
Willy Tarreau50943332011-09-02 17:33:05 +02005112 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005113 chunk_appendf(&trash, " server=<NONE> (id=-1)");
Daniel Schultze90690c72012-03-23 10:53:36 -07005114
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005115 if (conn)
5116 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005117
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005118 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07005119 case AF_INET:
5120 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005121 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005122 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07005123 break;
5124 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005125 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005126 break;
5127 default:
5128 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005129 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005130 break;
5131 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005132
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005133 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005134 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005135 sess->task,
5136 sess->task->state,
5137 sess->task->nice, sess->task->calls,
5138 sess->task->expire ?
5139 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
5140 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
5141 TICKS_TO_MS(1000)) : "<NEVER>",
5142 task_in_rq(sess->task) ? ", running" : "");
5143
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005144 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005145 " age=%s)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005146 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
5147
Willy Tarreaueee5b512015-04-03 23:46:31 +02005148 if (sess->txn)
5149 chunk_appendf(&trash,
Willy Tarreau98410192014-11-26 18:05:38 +01005150 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s waiting=%d\n",
Willy Tarreaueee5b512015-04-03 23:46:31 +02005151 sess->txn, sess->txn->flags, sess->txn->meth, sess->txn->status,
5152 http_msg_state_str(sess->txn->req.msg_state), http_msg_state_str(sess->txn->rsp.msg_state), !LIST_ISEMPTY(&sess->buffer_wait));
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005153
5154 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02005155 " si[0]=%p (state=%s flags=0x%02x endp0=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005156 &sess->si[0],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005157 si_state_str(sess->si[0].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005158 sess->si[0].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005159 obj_type_name(sess->si[0].end),
5160 obj_base_ptr(sess->si[0].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005161 sess->si[0].exp ?
5162 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
5163 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
5164 TICKS_TO_MS(1000)) : "<NEVER>",
5165 sess->si[0].err_type);
5166
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005167 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02005168 " si[1]=%p (state=%s flags=0x%02x endp1=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005169 &sess->si[1],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005170 si_state_str(sess->si[1].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005171 sess->si[1].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005172 obj_type_name(sess->si[1].end),
5173 obj_base_ptr(sess->si[1].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005174 sess->si[1].exp ?
5175 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
5176 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
5177 TICKS_TO_MS(1000)) : "<NEVER>",
5178 sess->si[1].err_type);
5179
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005180 if ((conn = objt_conn(sess->si[0].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005181 chunk_appendf(&trash,
5182 " co0=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005183 conn,
5184 get_conn_ctrl_name(conn),
5185 get_conn_xprt_name(conn),
5186 get_conn_data_name(conn),
5187 obj_type_name(conn->target),
5188 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01005189
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005190 chunk_appendf(&trash,
Willy Tarreau16f649c2014-01-25 19:10:48 +01005191 " flags=0x%08x fd=%d fd.state=%02x fd.cache=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005192 conn->flags,
5193 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01005194 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01005195 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005196 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005197 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005198 else if ((tmpctx = objt_appctx(sess->si[0].end)) != NULL) {
5199 chunk_appendf(&trash,
5200 " app0=%p st0=%d st1=%d st2=%d applet=%s\n",
5201 tmpctx,
5202 tmpctx->st0,
5203 tmpctx->st1,
5204 tmpctx->st2,
5205 tmpctx->applet->name);
5206 }
Willy Tarreaubc174aa2012-11-19 16:10:32 +01005207
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005208 if ((conn = objt_conn(sess->si[1].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005209 chunk_appendf(&trash,
5210 " co1=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005211 conn,
5212 get_conn_ctrl_name(conn),
5213 get_conn_xprt_name(conn),
5214 get_conn_data_name(conn),
5215 obj_type_name(conn->target),
5216 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01005217
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005218 chunk_appendf(&trash,
5219 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005220 conn->flags,
5221 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01005222 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01005223 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005224 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005225 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005226 else if ((tmpctx = objt_appctx(sess->si[1].end)) != NULL) {
5227 chunk_appendf(&trash,
5228 " app1=%p st0=%d st1=%d st2=%d applet=%s\n",
5229 tmpctx,
5230 tmpctx->st0,
5231 tmpctx->st1,
5232 tmpctx->st2,
5233 tmpctx->applet->name);
5234 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005235
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005236 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01005237 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005238 " an_exp=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005239 &sess->req,
5240 sess->req.flags, sess->req.analysers,
5241 sess->req.pipe ? sess->req.pipe->data : 0,
5242 sess->req.to_forward, sess->req.total,
5243 sess->req.analyse_exp ?
5244 human_time(TICKS_TO_MS(sess->req.analyse_exp - now_ms),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005245 TICKS_TO_MS(1000)) : "<NEVER>");
5246
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005247 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005248 " rex=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005249 sess->req.rex ?
5250 human_time(TICKS_TO_MS(sess->req.rex - now_ms),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005251 TICKS_TO_MS(1000)) : "<NEVER>");
5252
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005253 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005254 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01005255 " buf=%p data=%p o=%d p=%d req.next=%d i=%d size=%d\n",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005256 sess->req.wex ?
5257 human_time(TICKS_TO_MS(sess->req.wex - now_ms),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005258 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005259 sess->req.buf,
5260 sess->req.buf->data, sess->req.buf->o,
5261 (int)(sess->req.buf->p - sess->req.buf->data),
Willy Tarreaueee5b512015-04-03 23:46:31 +02005262 sess->txn ? sess->txn->req.next : 0, sess->req.buf->i,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005263 sess->req.buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005264
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005265 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01005266 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005267 " an_exp=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005268 &sess->res,
5269 sess->res.flags, sess->res.analysers,
5270 sess->res.pipe ? sess->res.pipe->data : 0,
5271 sess->res.to_forward, sess->res.total,
5272 sess->res.analyse_exp ?
5273 human_time(TICKS_TO_MS(sess->res.analyse_exp - now_ms),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005274 TICKS_TO_MS(1000)) : "<NEVER>");
5275
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005276 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005277 " rex=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005278 sess->res.rex ?
5279 human_time(TICKS_TO_MS(sess->res.rex - now_ms),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005280 TICKS_TO_MS(1000)) : "<NEVER>");
5281
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005282 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005283 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01005284 " buf=%p data=%p o=%d p=%d rsp.next=%d i=%d size=%d\n",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005285 sess->res.wex ?
5286 human_time(TICKS_TO_MS(sess->res.wex - now_ms),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005287 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005288 sess->res.buf,
5289 sess->res.buf->data, sess->res.buf->o,
5290 (int)(sess->res.buf->p - sess->res.buf->data),
Willy Tarreaueee5b512015-04-03 23:46:31 +02005291 sess->txn ? sess->txn->rsp.next : 0, sess->res.buf->i,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005292 sess->res.buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005293
Willy Tarreaubc18da12015-03-13 14:00:47 +01005294 if (bi_putchk(si_ic(si), &trash) == -1) {
5295 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005296 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01005297 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005298
5299 /* use other states to dump the contents */
5300 }
5301 /* end of dump */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005302 appctx->ctx.sess.uid = 0;
5303 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005304 return 1;
5305}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005306
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005307static int stats_pats_list(struct stream_interface *si)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005308{
5309 struct appctx *appctx = __objt_appctx(si->end);
5310
5311 switch (appctx->st2) {
5312 case STAT_ST_INIT:
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01005313 /* Display the column headers. If the message cannot be sent,
5314 * quit the fucntion with returning 0. The function is called
5315 * later and restart at the state "STAT_ST_INIT".
5316 */
5317 chunk_reset(&trash);
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01005318 chunk_appendf(&trash, "# id (file) description\n");
Willy Tarreaubc18da12015-03-13 14:00:47 +01005319 if (bi_putchk(si_ic(si), &trash) == -1) {
5320 si->flags |= SI_FL_WAIT_ROOM;
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01005321 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01005322 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005323
5324 /* Now, we start the browsing of the references lists.
5325 * Note that the following call to LIST_ELEM return bad pointer. The only
5326 * avalaible field of this pointer is <list>. It is used with the function
5327 * pat_list_get_next() for retruning the first avalaible entry
5328 */
5329 appctx->ctx.map.ref = LIST_ELEM(&pattern_reference, struct pat_ref *, list);
5330 appctx->ctx.map.ref = pat_list_get_next(appctx->ctx.map.ref, &pattern_reference,
5331 appctx->ctx.map.display_flags);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005332 appctx->st2 = STAT_ST_LIST;
5333 /* fall through */
5334
5335 case STAT_ST_LIST:
5336 while (appctx->ctx.map.ref) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005337 chunk_reset(&trash);
5338
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005339 /* Build messages. If the reference is used by another category than
5340 * the listed categorie, display the information in the massage.
5341 */
Thierry FOURNIERf7e04e92014-03-20 11:45:47 +01005342 chunk_appendf(&trash, "%d (%s) %s\n", appctx->ctx.map.ref->unique_id,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01005343 appctx->ctx.map.ref->reference ? appctx->ctx.map.ref->reference : "",
5344 appctx->ctx.map.ref->display);
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01005345
Willy Tarreau2bb4a962014-11-28 11:11:05 +01005346 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005347 /* let's try again later from this stream. We add ourselves into
5348 * this stream's users so that it can remove us upon termination.
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005349 */
Willy Tarreaubc18da12015-03-13 14:00:47 +01005350 si->flags |= SI_FL_WAIT_ROOM;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005351 return 0;
5352 }
5353
5354 /* get next list entry and check the end of the list */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005355 appctx->ctx.map.ref = pat_list_get_next(appctx->ctx.map.ref, &pattern_reference,
5356 appctx->ctx.map.display_flags);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005357 }
5358
5359 appctx->st2 = STAT_ST_FIN;
5360 /* fall through */
5361
5362 default:
5363 appctx->st2 = STAT_ST_FIN;
5364 return 1;
5365 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005366 return 0;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005367}
5368
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005369static int stats_map_lookup(struct stream_interface *si)
5370{
5371 struct appctx *appctx = __objt_appctx(si->end);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005372 struct sample sample;
5373 struct pattern *pat;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005374 int match_method;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005375
5376 switch (appctx->st2) {
5377 case STAT_ST_INIT:
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005378 /* Init to the first entry. The list cannot be change */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01005379 appctx->ctx.map.expr = LIST_ELEM(&appctx->ctx.map.ref->pat, struct pattern_expr *, list);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005380 appctx->ctx.map.expr = pat_expr_get_next(appctx->ctx.map.expr, &appctx->ctx.map.ref->pat);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005381 appctx->st2 = STAT_ST_LIST;
5382 /* fall through */
5383
5384 case STAT_ST_LIST:
5385 /* for each lookup type */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005386 while (appctx->ctx.map.expr) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005387 /* initialise chunk to build new message */
5388 chunk_reset(&trash);
5389
5390 /* execute pattern matching */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01005391 sample.type = SMP_T_STR;
5392 sample.flags |= SMP_F_CONST;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005393 sample.data.str.len = appctx->ctx.map.chunk.len;
5394 sample.data.str.str = appctx->ctx.map.chunk.str;
Thierry FOURNIER5d344082014-01-27 14:19:53 +01005395 if (appctx->ctx.map.expr->pat_head->match &&
5396 sample_convert(&sample, appctx->ctx.map.expr->pat_head->expect_type))
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005397 pat = appctx->ctx.map.expr->pat_head->match(&sample, appctx->ctx.map.expr, 1);
5398 else
5399 pat = NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005400
5401 /* build return message: set type of match */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005402 for (match_method=0; match_method<PAT_MATCH_NUM; match_method++)
5403 if (appctx->ctx.map.expr->pat_head->match == pat_match_fcts[match_method])
5404 break;
5405 if (match_method >= PAT_MATCH_NUM)
5406 chunk_appendf(&trash, "type=unknown(%p)", appctx->ctx.map.expr->pat_head->match);
5407 else
5408 chunk_appendf(&trash, "type=%s", pat_match_names[match_method]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005409
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02005410 /* case sensitive */
5411 if (appctx->ctx.map.expr->mflags & PAT_MF_IGNORE_CASE)
5412 chunk_appendf(&trash, ", case=insensitive");
5413 else
5414 chunk_appendf(&trash, ", case=sensitive");
5415
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005416 /* Display no match, and set default value */
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01005417 if (!pat) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005418 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
5419 chunk_appendf(&trash, ", found=no");
5420 else
5421 chunk_appendf(&trash, ", match=no");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005422 }
5423
5424 /* Display match and match info */
5425 else {
5426 /* display match */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005427 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
5428 chunk_appendf(&trash, ", found=yes");
5429 else
5430 chunk_appendf(&trash, ", match=yes");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005431
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01005432 /* display index mode */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02005433 if (pat->sflags & PAT_SF_TREE)
Thierry FOURNIERb9903842014-03-11 18:48:17 +01005434 chunk_appendf(&trash, ", idx=tree");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005435 else
Thierry FOURNIERb9903842014-03-11 18:48:17 +01005436 chunk_appendf(&trash, ", idx=list");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005437
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005438 /* display pattern */
5439 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
5440 if (pat->ref && pat->ref->pattern)
5441 chunk_appendf(&trash, ", key=\"%s\"", pat->ref->pattern);
5442 else
5443 chunk_appendf(&trash, ", key=unknown");
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005444 }
5445 else {
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005446 if (pat->ref && pat->ref->pattern)
5447 chunk_appendf(&trash, ", pattern=\"%s\"", pat->ref->pattern);
5448 else
5449 chunk_appendf(&trash, ", pattern=unknown");
5450 }
5451
5452 /* display return value */
5453 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
5454 if (pat->smp && pat->ref && pat->ref->sample)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005455 chunk_appendf(&trash, ", value=\"%s\", type=\"%s\"",
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005456 pat->ref->sample, smp_to_type[pat->smp->type]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005457 else
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005458 chunk_appendf(&trash, ", value=none");
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005459 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005460 }
5461
Thierry FOURNIERb9903842014-03-11 18:48:17 +01005462 chunk_appendf(&trash, "\n");
5463
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005464 /* display response */
Willy Tarreau2bb4a962014-11-28 11:11:05 +01005465 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005466 /* let's try again later from this stream. We add ourselves into
5467 * this stream's users so that it can remove us upon termination.
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005468 */
Willy Tarreaubc18da12015-03-13 14:00:47 +01005469 si->flags |= SI_FL_WAIT_ROOM;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005470 return 0;
5471 }
5472
5473 /* get next entry */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005474 appctx->ctx.map.expr = pat_expr_get_next(appctx->ctx.map.expr,
5475 &appctx->ctx.map.ref->pat);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005476 }
5477
5478 appctx->st2 = STAT_ST_FIN;
5479 /* fall through */
5480
5481 default:
5482 appctx->st2 = STAT_ST_FIN;
5483 free(appctx->ctx.map.chunk.str);
5484 return 1;
5485 }
5486}
5487
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005488static int stats_pat_list(struct stream_interface *si)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005489{
5490 struct appctx *appctx = __objt_appctx(si->end);
5491
5492 switch (appctx->st2) {
5493
5494 case STAT_ST_INIT:
5495 /* Init to the first entry. The list cannot be change */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005496 appctx->ctx.map.elt = LIST_NEXT(&appctx->ctx.map.ref->head,
5497 struct pat_ref_elt *, list);
5498 if (&appctx->ctx.map.elt->list == &appctx->ctx.map.ref->head)
5499 appctx->ctx.map.elt = NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005500 appctx->st2 = STAT_ST_LIST;
5501 /* fall through */
5502
5503 case STAT_ST_LIST:
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005504 while (appctx->ctx.map.elt) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005505 chunk_reset(&trash);
5506
5507 /* build messages */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005508 if (appctx->ctx.map.elt->sample)
Thierry FOURNIER9356c682014-01-28 15:55:37 +01005509 chunk_appendf(&trash, "%p %s %s\n",
5510 appctx->ctx.map.elt, appctx->ctx.map.elt->pattern,
5511 appctx->ctx.map.elt->sample);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005512 else
Thierry FOURNIER9356c682014-01-28 15:55:37 +01005513 chunk_appendf(&trash, "%p %s\n",
5514 appctx->ctx.map.elt, appctx->ctx.map.elt->pattern);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005515
Willy Tarreau2bb4a962014-11-28 11:11:05 +01005516 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005517 /* let's try again later from this stream. We add ourselves into
5518 * this stream's users so that it can remove us upon termination.
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005519 */
Willy Tarreaubc18da12015-03-13 14:00:47 +01005520 si->flags |= SI_FL_WAIT_ROOM;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005521 return 0;
5522 }
5523
5524 /* get next list entry and check the end of the list */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005525 appctx->ctx.map.elt = LIST_NEXT(&appctx->ctx.map.elt->list,
5526 struct pat_ref_elt *, list);
5527 if (&appctx->ctx.map.elt->list == &appctx->ctx.map.ref->head)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005528 break;
5529 }
5530
5531 appctx->st2 = STAT_ST_FIN;
5532 /* fall through */
5533
5534 default:
5535 appctx->st2 = STAT_ST_FIN;
5536 return 1;
5537 }
5538}
5539
Willy Tarreau87b09662015-04-03 00:22:06 +02005540/* This function dumps all streams' states onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005541 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005542 * to be called again, otherwise non-zero. It is designed to be called
5543 * from stats_dump_sess_to_buffer() below.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005544 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005545static int stats_dump_sess_to_buffer(struct stream_interface *si)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005546{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005547 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005548 struct connection *conn;
5549
Willy Tarreau2bb4a962014-11-28 11:11:05 +01005550 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005551 /* If we're forced to shut down, we might have to remove our
Willy Tarreau87b09662015-04-03 00:22:06 +02005552 * reference to the last stream being dumped.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005553 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005554 if (appctx->st2 == STAT_ST_LIST) {
5555 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5556 LIST_DEL(&appctx->ctx.sess.bref.users);
5557 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005558 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005559 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005560 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005561 }
5562
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005563 chunk_reset(&trash);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005564
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005565 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005566 case STAT_ST_INIT:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005567 /* the function had not been called yet, let's prepare the
Willy Tarreau87b09662015-04-03 00:22:06 +02005568 * buffer for a response. We initialize the current stream
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005569 * pointer to the first in the global list. When a target
Willy Tarreau87b09662015-04-03 00:22:06 +02005570 * stream is being destroyed, it is responsible for updating
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005571 * this pointer. We know we have reached the end when this
Willy Tarreau87b09662015-04-03 00:22:06 +02005572 * pointer points back to the head of the streams list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005573 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005574 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreau87b09662015-04-03 00:22:06 +02005575 appctx->ctx.sess.bref.ref = streams.n;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005576 appctx->st2 = STAT_ST_LIST;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005577 /* fall through */
5578
Willy Tarreau295a8372011-03-10 11:25:07 +01005579 case STAT_ST_LIST:
Willy Tarreau87b09662015-04-03 00:22:06 +02005580 /* first, let's detach the back-ref from a possible previous stream */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005581 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5582 LIST_DEL(&appctx->ctx.sess.bref.users);
5583 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005584 }
5585
5586 /* and start from where we stopped */
Willy Tarreau87b09662015-04-03 00:22:06 +02005587 while (appctx->ctx.sess.bref.ref != &streams) {
Cyril Bontéacd7d632010-11-01 19:26:02 +01005588 char pn[INET6_ADDRSTRLEN];
Willy Tarreau87b09662015-04-03 00:22:06 +02005589 struct stream *curr_sess;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005590
Willy Tarreau87b09662015-04-03 00:22:06 +02005591 curr_sess = LIST_ELEM(appctx->ctx.sess.bref.ref, struct stream *, list);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005592
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005593 if (appctx->ctx.sess.target) {
5594 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005595 goto next_sess;
5596
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005597 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005598 /* call the proper dump() function and return if we're missing space */
Willy Tarreau76153662012-11-26 01:16:39 +01005599 if (!stats_dump_full_sess_to_buffer(si, curr_sess))
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005600 return 0;
5601
Willy Tarreau87b09662015-04-03 00:22:06 +02005602 /* stream dump complete */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005603 LIST_DEL(&appctx->ctx.sess.bref.users);
5604 LIST_INIT(&appctx->ctx.sess.bref.users);
5605 if (appctx->ctx.sess.target != (void *)-1) {
5606 appctx->ctx.sess.target = NULL;
Willy Tarreau76153662012-11-26 01:16:39 +01005607 break;
5608 }
5609 else
5610 goto next_sess;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005611 }
5612
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005613 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005614 "%p: proto=%s",
5615 curr_sess,
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005616 strm_li(curr_sess)->proto->name);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005617
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005618
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005619 conn = objt_conn(strm_orig(curr_sess));
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005620 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau631f01c2011-09-05 00:36:48 +02005621 case AF_INET:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005622 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005623 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005624 " src=%s:%d fe=%s be=%s srv=%s",
5625 pn,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005626 get_host_port(&conn->addr.from),
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005627 strm_fe(curr_sess)->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005628 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005629 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005630 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005631 break;
5632 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005633 chunk_appendf(&trash,
Emeric Brun837ca522010-10-22 16:19:01 +02005634 " src=unix:%d fe=%s be=%s srv=%s",
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005635 strm_li(curr_sess)->luid,
5636 strm_fe(curr_sess)->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005637 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005638 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Emeric Brun837ca522010-10-22 16:19:01 +02005639 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005640 break;
5641 }
5642
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005643 chunk_appendf(&trash,
Willy Tarreau65671ab2009-10-04 14:24:59 +02005644 " ts=%02x age=%s calls=%d",
5645 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01005646 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
5647 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005648
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005649 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005650 " rq[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005651 curr_sess->req.flags,
5652 curr_sess->req.buf->i,
5653 curr_sess->req.analysers,
5654 curr_sess->req.rex ?
5655 human_time(TICKS_TO_MS(curr_sess->req.rex - now_ms),
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005656 TICKS_TO_MS(1000)) : "");
5657
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005658 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005659 ",wx=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005660 curr_sess->req.wex ?
5661 human_time(TICKS_TO_MS(curr_sess->req.wex - now_ms),
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005662 TICKS_TO_MS(1000)) : "");
5663
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005664 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005665 ",ax=%s]",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005666 curr_sess->req.analyse_exp ?
5667 human_time(TICKS_TO_MS(curr_sess->req.analyse_exp - now_ms),
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005668 TICKS_TO_MS(1000)) : "");
5669
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005670 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005671 " rp[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005672 curr_sess->res.flags,
5673 curr_sess->res.buf->i,
5674 curr_sess->res.analysers,
5675 curr_sess->res.rex ?
5676 human_time(TICKS_TO_MS(curr_sess->res.rex - now_ms),
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005677 TICKS_TO_MS(1000)) : "");
5678
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005679 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005680 ",wx=%s",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005681 curr_sess->res.wex ?
5682 human_time(TICKS_TO_MS(curr_sess->res.wex - now_ms),
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005683 TICKS_TO_MS(1000)) : "");
5684
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005685 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005686 ",ax=%s]",
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005687 curr_sess->res.analyse_exp ?
5688 human_time(TICKS_TO_MS(curr_sess->res.analyse_exp - now_ms),
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005689 TICKS_TO_MS(1000)) : "");
5690
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005691 conn = objt_conn(curr_sess->si[0].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005692 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005693 " s0=[%d,%1xh,fd=%d,ex=%s]",
5694 curr_sess->si[0].state,
5695 curr_sess->si[0].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005696 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005697 curr_sess->si[0].exp ?
5698 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
5699 TICKS_TO_MS(1000)) : "");
5700
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005701 conn = objt_conn(curr_sess->si[1].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005702 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005703 " s1=[%d,%1xh,fd=%d,ex=%s]",
5704 curr_sess->si[1].state,
5705 curr_sess->si[1].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005706 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005707 curr_sess->si[1].exp ?
5708 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
5709 TICKS_TO_MS(1000)) : "");
5710
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005711 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005712 " exp=%s",
5713 curr_sess->task->expire ?
5714 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
5715 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01005716 if (task_in_rq(curr_sess->task))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005717 chunk_appendf(&trash, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005718
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005719 chunk_appendf(&trash, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005720
Willy Tarreau2bb4a962014-11-28 11:11:05 +01005721 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005722 /* let's try again later from this stream. We add ourselves into
5723 * this stream's users so that it can remove us upon termination.
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005724 */
Willy Tarreaubc18da12015-03-13 14:00:47 +01005725 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005726 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005727 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005728 }
5729
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005730 next_sess:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005731 appctx->ctx.sess.bref.ref = curr_sess->list.n;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005732 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005733
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005734 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
Willy Tarreau87b09662015-04-03 00:22:06 +02005735 /* specified stream not found */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005736 if (appctx->ctx.sess.section > 0)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005737 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005738 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005739 chunk_appendf(&trash, "Session not found.\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005740
Willy Tarreaubc18da12015-03-13 14:00:47 +01005741 if (bi_putchk(si_ic(si), &trash) == -1) {
5742 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005743 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01005744 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005745
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005746 appctx->ctx.sess.target = NULL;
5747 appctx->ctx.sess.uid = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005748 return 1;
5749 }
5750
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005751 appctx->st2 = STAT_ST_FIN;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005752 /* fall through */
5753
5754 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005755 appctx->st2 = STAT_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005756 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005757 }
Emeric Brun1e029aa2010-09-23 18:12:53 +02005758}
5759
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005760/* This is called when the stream interface is closed. For instance, upon an
5761 * external abort, we won't call the i/o handler anymore so we may need to
Willy Tarreau87b09662015-04-03 00:22:06 +02005762 * remove back references to the stream currently being dumped.
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005763 */
Simon Horman74d88312013-02-12 10:45:50 +09005764static void cli_release_handler(struct stream_interface *si)
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005765{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005766 struct appctx *appctx = __objt_appctx(si->end);
5767
5768 if (appctx->st0 == STAT_CLI_O_SESS && appctx->st2 == STAT_ST_LIST) {
5769 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
5770 LIST_DEL(&appctx->ctx.sess.bref.users);
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005771 }
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01005772 else if (appctx->st0 == STAT_CLI_PRINT_FREE) {
5773 free(appctx->ctx.cli.err);
5774 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005775 else if (appctx->st0 == STAT_CLI_O_MLOOK) {
5776 free(appctx->ctx.map.chunk.str);
5777 }
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005778}
5779
Willy Tarreau20e99322013-04-13 09:22:25 +02005780/* This function is used to either dump tables states (when action is set
5781 * to STAT_CLI_O_TAB) or clear tables (when action is STAT_CLI_O_CLR).
Willy Tarreau20e99322013-04-13 09:22:25 +02005782 * It returns 0 if the output buffer is full and it needs to be called
5783 * again, otherwise non-zero.
Willy Tarreau69f58c82010-07-12 17:55:33 +02005784 */
Willy Tarreau20e99322013-04-13 09:22:25 +02005785static int stats_table_request(struct stream_interface *si, int action)
Willy Tarreau69f58c82010-07-12 17:55:33 +02005786{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005787 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau87b09662015-04-03 00:22:06 +02005788 struct stream *s = si_strm(si);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005789 struct ebmb_node *eb;
5790 int dt;
Willy Tarreau44455022012-12-05 23:01:12 +01005791 int skip_entry;
Willy Tarreau20e99322013-04-13 09:22:25 +02005792 int show = action == STAT_CLI_O_TAB;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005793
5794 /*
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005795 * We have 3 possible states in appctx->st2 :
Willy Tarreau295a8372011-03-10 11:25:07 +01005796 * - STAT_ST_INIT : the first call
5797 * - STAT_ST_INFO : the proxy pointer points to the next table to
Willy Tarreau69f58c82010-07-12 17:55:33 +02005798 * dump, the entry pointer is NULL ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005799 * - STAT_ST_LIST : the proxy pointer points to the current table
Willy Tarreau69f58c82010-07-12 17:55:33 +02005800 * and the entry pointer points to the next entry to be dumped,
5801 * and the refcount on the next entry is held ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005802 * - STAT_ST_END : nothing left to dump, the buffer may contain some
Willy Tarreau69f58c82010-07-12 17:55:33 +02005803 * data though.
5804 */
5805
Willy Tarreau2bb4a962014-11-28 11:11:05 +01005806 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005807 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005808 if (appctx->st2 == STAT_ST_LIST) {
5809 appctx->ctx.table.entry->ref_cnt--;
5810 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Willy Tarreauf6efda12010-08-03 20:34:06 +02005811 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02005812 return 1;
5813 }
5814
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005815 chunk_reset(&trash);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005816
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005817 while (appctx->st2 != STAT_ST_FIN) {
5818 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005819 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005820 appctx->ctx.table.proxy = appctx->ctx.table.target;
5821 if (!appctx->ctx.table.proxy)
5822 appctx->ctx.table.proxy = proxy;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005823
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005824 appctx->ctx.table.entry = NULL;
5825 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005826 break;
5827
Willy Tarreau295a8372011-03-10 11:25:07 +01005828 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005829 if (!appctx->ctx.table.proxy ||
5830 (appctx->ctx.table.target &&
5831 appctx->ctx.table.proxy != appctx->ctx.table.target)) {
5832 appctx->st2 = STAT_ST_END;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005833 break;
5834 }
5835
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005836 if (appctx->ctx.table.proxy->table.size) {
5837 if (show && !stats_dump_table_head_to_buffer(&trash, si, appctx->ctx.table.proxy,
5838 appctx->ctx.table.target))
Willy Tarreau69f58c82010-07-12 17:55:33 +02005839 return 0;
5840
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005841 if (appctx->ctx.table.target &&
Willy Tarreaud0d8da92015-04-04 02:10:38 +02005842 strm_li(s)->bind_conf->level >= ACCESS_LVL_OPER) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005843 /* dump entries only if table explicitly requested */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005844 eb = ebmb_first(&appctx->ctx.table.proxy->table.keys);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005845 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005846 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
5847 appctx->ctx.table.entry->ref_cnt++;
5848 appctx->st2 = STAT_ST_LIST;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005849 break;
5850 }
5851 }
5852 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005853 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005854 break;
5855
Willy Tarreau295a8372011-03-10 11:25:07 +01005856 case STAT_ST_LIST:
Willy Tarreau44455022012-12-05 23:01:12 +01005857 skip_entry = 0;
Simon Hormanc88b8872011-06-15 15:18:49 +09005858
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005859 if (appctx->ctx.table.data_type >= 0) {
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005860 /* we're filtering on some data contents */
5861 void *ptr;
5862 long long data;
5863
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005864 dt = appctx->ctx.table.data_type;
5865 ptr = stktable_data_ptr(&appctx->ctx.table.proxy->table,
5866 appctx->ctx.table.entry,
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005867 dt);
5868
5869 data = 0;
5870 switch (stktable_data_types[dt].std_type) {
5871 case STD_T_SINT:
5872 data = stktable_data_cast(ptr, std_t_sint);
5873 break;
5874 case STD_T_UINT:
5875 data = stktable_data_cast(ptr, std_t_uint);
5876 break;
5877 case STD_T_ULL:
5878 data = stktable_data_cast(ptr, std_t_ull);
5879 break;
5880 case STD_T_FRQP:
5881 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005882 appctx->ctx.table.proxy->table.data_arg[dt].u);
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005883 break;
5884 }
5885
5886 /* skip the entry if the data does not match the test and the value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005887 if ((data < appctx->ctx.table.value &&
5888 (appctx->ctx.table.data_op == STD_OP_EQ ||
5889 appctx->ctx.table.data_op == STD_OP_GT ||
5890 appctx->ctx.table.data_op == STD_OP_GE)) ||
5891 (data == appctx->ctx.table.value &&
5892 (appctx->ctx.table.data_op == STD_OP_NE ||
5893 appctx->ctx.table.data_op == STD_OP_GT ||
5894 appctx->ctx.table.data_op == STD_OP_LT)) ||
5895 (data > appctx->ctx.table.value &&
5896 (appctx->ctx.table.data_op == STD_OP_EQ ||
5897 appctx->ctx.table.data_op == STD_OP_LT ||
5898 appctx->ctx.table.data_op == STD_OP_LE)))
Willy Tarreau44455022012-12-05 23:01:12 +01005899 skip_entry = 1;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005900 }
5901
Simon Hormanc88b8872011-06-15 15:18:49 +09005902 if (show && !skip_entry &&
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005903 !stats_dump_table_entry_to_buffer(&trash, si, appctx->ctx.table.proxy,
5904 appctx->ctx.table.entry))
Simon Hormand9366582011-06-15 15:18:45 +09005905 return 0;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005906
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005907 appctx->ctx.table.entry->ref_cnt--;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005908
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005909 eb = ebmb_next(&appctx->ctx.table.entry->key);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005910 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005911 struct stksess *old = appctx->ctx.table.entry;
5912 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreau8fa52f42012-01-09 11:50:03 +01005913 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005914 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, old);
5915 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5916 stksess_kill(&appctx->ctx.table.proxy->table, old);
5917 appctx->ctx.table.entry->ref_cnt++;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005918 break;
5919 }
5920
Simon Hormanc88b8872011-06-15 15:18:49 +09005921
5922 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005923 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
5924 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5925 stksess_kill(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Simon Hormanc88b8872011-06-15 15:18:49 +09005926
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005927 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
5928 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005929 break;
5930
Willy Tarreau295a8372011-03-10 11:25:07 +01005931 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005932 appctx->st2 = STAT_ST_FIN;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005933 break;
5934 }
5935 }
5936 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005937}
5938
Willy Tarreaud426a182010-03-05 14:58:26 +01005939/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01005940 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
5941 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
5942 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
5943 * lines are respected within the limit of 70 output chars. Lines that are
5944 * continuation of a previous truncated line begin with "+" instead of " "
5945 * after the offset. The new pointer is returned.
5946 */
Willy Tarreaud426a182010-03-05 14:58:26 +01005947static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
5948 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005949{
5950 int end;
5951 unsigned char c;
5952
5953 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02005954 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005955 return ptr;
5956
Willy Tarreau77804732012-10-29 16:14:26 +01005957 chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01005958
Willy Tarreaud426a182010-03-05 14:58:26 +01005959 while (ptr < len && ptr < bsize) {
5960 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01005961 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005962 if (out->len > end - 2)
5963 break;
5964 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005965 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005966 if (out->len > end - 3)
5967 break;
5968 out->str[out->len++] = '\\';
5969 switch (c) {
5970 case '\t': c = 't'; break;
5971 case '\n': c = 'n'; break;
5972 case '\r': c = 'r'; break;
5973 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005974 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005975 }
5976 out->str[out->len++] = c;
5977 } else {
5978 if (out->len > end - 5)
5979 break;
5980 out->str[out->len++] = '\\';
5981 out->str[out->len++] = 'x';
5982 out->str[out->len++] = hextab[(c >> 4) & 0xF];
5983 out->str[out->len++] = hextab[c & 0xF];
5984 }
Willy Tarreaud426a182010-03-05 14:58:26 +01005985 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005986 /* we had a line break, let's return now */
5987 out->str[out->len++] = '\n';
5988 *line = ptr;
5989 return ptr;
5990 }
5991 }
5992 /* we have an incomplete line, we return it as-is */
5993 out->str[out->len++] = '\n';
5994 return ptr;
5995}
5996
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005997/* This function dumps all captured errors onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005998 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005999 * to be called again, otherwise non-zero.
Willy Tarreau74808cb2009-03-04 15:53:18 +01006000 */
Simon Horman9bd2c732011-06-15 15:18:44 +09006001static int stats_dump_errors_to_buffer(struct stream_interface *si)
Willy Tarreau74808cb2009-03-04 15:53:18 +01006002{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006003 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau74808cb2009-03-04 15:53:18 +01006004 extern const char *monthname[12];
Willy Tarreau74808cb2009-03-04 15:53:18 +01006005
Willy Tarreau2bb4a962014-11-28 11:11:05 +01006006 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau61b34732009-10-03 23:49:35 +02006007 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006008
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006009 chunk_reset(&trash);
Willy Tarreau74808cb2009-03-04 15:53:18 +01006010
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006011 if (!appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006012 /* the function had not been called yet, let's prepare the
6013 * buffer for a response.
6014 */
Willy Tarreau10479e42010-12-12 14:00:34 +01006015 struct tm tm;
6016
6017 get_localtime(date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006018 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
Willy Tarreau10479e42010-12-12 14:00:34 +01006019 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
6020 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
6021 error_snapshot_id);
6022
Willy Tarreau2bb4a962014-11-28 11:11:05 +01006023 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau10479e42010-12-12 14:00:34 +01006024 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreaubc18da12015-03-13 14:00:47 +01006025 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau10479e42010-12-12 14:00:34 +01006026 return 0;
6027 }
6028
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006029 appctx->ctx.errors.px = proxy;
6030 appctx->ctx.errors.buf = 0;
6031 appctx->ctx.errors.bol = 0;
6032 appctx->ctx.errors.ptr = -1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006033 }
6034
6035 /* we have two inner loops here, one for the proxy, the other one for
6036 * the buffer.
6037 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006038 while (appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006039 struct error_snapshot *es;
6040
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006041 if (appctx->ctx.errors.buf == 0)
6042 es = &appctx->ctx.errors.px->invalid_req;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006043 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006044 es = &appctx->ctx.errors.px->invalid_rep;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006045
6046 if (!es->when.tv_sec)
6047 goto next;
6048
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006049 if (appctx->ctx.errors.iid >= 0 &&
6050 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
6051 es->oe->uuid != appctx->ctx.errors.iid)
Willy Tarreau74808cb2009-03-04 15:53:18 +01006052 goto next;
6053
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006054 if (appctx->ctx.errors.ptr < 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006055 /* just print headers now */
6056
6057 char pn[INET6_ADDRSTRLEN];
6058 struct tm tm;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006059 int port;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006060
6061 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006062 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01006063 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02006064 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01006065
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006066 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
6067 case AF_INET:
6068 case AF_INET6:
6069 port = get_host_port(&es->src);
6070 break;
6071 default:
6072 port = 0;
6073 }
6074
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006075 switch (appctx->ctx.errors.buf) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006076 case 0:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006077 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01006078 " frontend %s (#%d): invalid request\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006079 " backend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006080 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006081 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
6082 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreau74808cb2009-03-04 15:53:18 +01006083 break;
6084 case 1:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006085 chunk_appendf(&trash,
Olivier Doucet08afdcb2014-09-08 11:23:00 +02006086 " backend %s (#%d): invalid response\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006087 " frontend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006088 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006089 es->oe->id, es->oe->uuid);
Willy Tarreau74808cb2009-03-04 15:53:18 +01006090 break;
6091 }
6092
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006093 chunk_appendf(&trash,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006094 ", server %s (#%d), event #%u\n"
6095 " src %s:%d, session #%d, session flags 0x%08x\n"
6096 " HTTP msg state %d, msg flags 0x%08x, tx flags 0x%08x\n"
6097 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
6098 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
6099 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
6100 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
6101 es->ev_id,
6102 pn, port, es->sid, es->s_flags,
6103 es->state, es->m_flags, es->t_flags,
6104 es->m_clen, es->m_blen,
6105 es->b_flags, es->b_out, es->b_tot,
6106 es->len, es->b_wrap, es->pos);
6107
Willy Tarreau2bb4a962014-11-28 11:11:05 +01006108 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006109 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreaubc18da12015-03-13 14:00:47 +01006110 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61b34732009-10-03 23:49:35 +02006111 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006112 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006113 appctx->ctx.errors.ptr = 0;
6114 appctx->ctx.errors.sid = es->sid;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006115 }
6116
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006117 if (appctx->ctx.errors.sid != es->sid) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006118 /* the snapshot changed while we were dumping it */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006119 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01006120 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreaubc18da12015-03-13 14:00:47 +01006121 if (bi_putchk(si_ic(si), &trash) == -1) {
6122 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61b34732009-10-03 23:49:35 +02006123 return 0;
Willy Tarreaubc18da12015-03-13 14:00:47 +01006124 }
Willy Tarreau74808cb2009-03-04 15:53:18 +01006125 goto next;
6126 }
6127
6128 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006129 while (appctx->ctx.errors.ptr < es->len && appctx->ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006130 int newptr;
6131 int newline;
6132
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006133 newline = appctx->ctx.errors.bol;
6134 newptr = dump_text_line(&trash, es->buf, sizeof(es->buf), es->len, &newline, appctx->ctx.errors.ptr);
6135 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02006136 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006137
Willy Tarreau2bb4a962014-11-28 11:11:05 +01006138 if (bi_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006139 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreaubc18da12015-03-13 14:00:47 +01006140 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61b34732009-10-03 23:49:35 +02006141 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006142 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006143 appctx->ctx.errors.ptr = newptr;
6144 appctx->ctx.errors.bol = newline;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006145 };
6146 next:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006147 appctx->ctx.errors.bol = 0;
6148 appctx->ctx.errors.ptr = -1;
6149 appctx->ctx.errors.buf++;
6150 if (appctx->ctx.errors.buf > 1) {
6151 appctx->ctx.errors.buf = 0;
6152 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006153 }
6154 }
6155
6156 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02006157 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006158}
6159
Willy Tarreaud5781202012-09-22 19:32:35 +02006160/* parse the "level" argument on the bind lines */
6161static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
6162{
6163 if (!*args[cur_arg + 1]) {
6164 memprintf(err, "'%s' : missing level", args[cur_arg]);
6165 return ERR_ALERT | ERR_FATAL;
6166 }
6167
6168 if (!strcmp(args[cur_arg+1], "user"))
6169 conf->level = ACCESS_LVL_USER;
6170 else if (!strcmp(args[cur_arg+1], "operator"))
6171 conf->level = ACCESS_LVL_OPER;
6172 else if (!strcmp(args[cur_arg+1], "admin"))
6173 conf->level = ACCESS_LVL_ADMIN;
6174 else {
6175 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
6176 args[cur_arg], args[cur_arg+1]);
6177 return ERR_ALERT | ERR_FATAL;
6178 }
6179
6180 return 0;
6181}
6182
Willy Tarreaub24281b2011-02-13 13:16:36 +01006183struct si_applet http_stats_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006184 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006185 .name = "<STATS>", /* used for logging */
6186 .fct = http_stats_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07006187 .release = NULL,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006188};
6189
Simon Horman9bd2c732011-06-15 15:18:44 +09006190static struct si_applet cli_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006191 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006192 .name = "<CLI>", /* used for logging */
6193 .fct = cli_io_handler,
Willy Tarreau5f9a8772012-11-26 02:22:40 +01006194 .release = cli_release_handler,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006195};
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01006196
Willy Tarreaudc13c112013-06-21 23:16:39 +02006197static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau10522fd2008-07-09 20:12:41 +02006198 { CFG_GLOBAL, "stats", stats_parse_global },
6199 { 0, NULL, NULL },
6200}};
6201
Willy Tarreaud5781202012-09-22 19:32:35 +02006202static struct bind_kw_list bind_kws = { "STAT", { }, {
6203 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
6204 { NULL, NULL, 0 },
6205}};
6206
Willy Tarreau10522fd2008-07-09 20:12:41 +02006207__attribute__((constructor))
6208static void __dumpstats_module_init(void)
6209{
6210 cfg_register_keywords(&cfg_kws);
Willy Tarreaud5781202012-09-22 19:32:35 +02006211 bind_register_keywords(&bind_kws);
Willy Tarreau10522fd2008-07-09 20:12:41 +02006212}
6213
Willy Tarreau91861262007-10-17 17:06:05 +02006214/*
6215 * Local variables:
6216 * c-indent-level: 8
6217 * c-basic-offset: 8
6218 * End:
6219 */