blob: bc0bea7d05c8e2b9fc1d7928f1521074780d7edc [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>
38
Willy Tarreau91861262007-10-17 17:06:05 +020039#include <types/global.h>
Willy Tarreau91861262007-10-17 17:06:05 +020040
41#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020042#include <proto/channel.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020043#include <proto/checks.h>
William Lallemande3a7d992012-11-20 11:25:20 +010044#include <proto/compression.h>
Willy Tarreau91861262007-10-17 17:06:05 +020045#include <proto/dumpstats.h>
46#include <proto/fd.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010047#include <proto/freq_ctr.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020048#include <proto/log.h>
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010049#include <proto/pattern.h>
Willy Tarreaua206fa92009-01-25 14:02:00 +010050#include <proto/pipe.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020051#include <proto/listener.h>
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010052#include <proto/map.h>
Willy Tarreaue6d97022012-11-23 11:19:33 +010053#include <proto/proto_http.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020054#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020055#include <proto/proxy.h>
Willy Tarreau1cf8f082014-02-07 12:14:54 +010056#include <proto/sample.h>
Willy Tarreau91861262007-10-17 17:06:05 +020057#include <proto/session.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020058#include <proto/server.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020059#include <proto/raw_sock.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010060#include <proto/stream_interface.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010061#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020062
Willy Tarreau7a0169a2012-11-19 17:13:16 +010063#ifdef USE_OPENSSL
64#include <proto/ssl_sock.h>
65#endif
66
Willy Tarreau91b843d2014-01-28 16:27:17 +010067/* stats socket states */
68enum {
69 STAT_CLI_INIT = 0, /* initial state, must leave to zero ! */
70 STAT_CLI_END, /* final state, let's close */
71 STAT_CLI_GETREQ, /* wait for a request */
72 STAT_CLI_OUTPUT, /* all states after this one are responses */
73 STAT_CLI_PROMPT, /* display the prompt (first output, same code) */
74 STAT_CLI_PRINT, /* display message in cli->msg */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +010075 STAT_CLI_PRINT_FREE, /* display message in cli->msg. After the display, free the pointer */
Willy Tarreau91b843d2014-01-28 16:27:17 +010076 STAT_CLI_O_INFO, /* dump info */
77 STAT_CLI_O_SESS, /* dump sessions */
78 STAT_CLI_O_ERR, /* dump errors */
79 STAT_CLI_O_TAB, /* dump tables */
80 STAT_CLI_O_CLR, /* clear tables */
81 STAT_CLI_O_SET, /* set entries in tables */
82 STAT_CLI_O_STAT, /* dump stats */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +010083 STAT_CLI_O_PATS, /* list all pattern reference avalaible */
84 STAT_CLI_O_PAT, /* list all entries of a pattern */
Willy Tarreau91b843d2014-01-28 16:27:17 +010085 STAT_CLI_O_MLOOK, /* lookup a map entry */
Willy Tarreau12833bb2014-01-28 16:49:56 +010086 STAT_CLI_O_POOLS, /* dump memory pools */
Willy Tarreau91b843d2014-01-28 16:27:17 +010087};
88
Willy Tarreaued7df902014-05-22 18:04:49 +020089/* Actions available for the stats admin forms */
90enum {
91 ST_ADM_ACTION_NONE = 0,
Willy Tarreau248a60e2014-05-23 14:59:48 +020092
93 /* enable/disable health checks */
94 ST_ADM_ACTION_DHLTH,
95 ST_ADM_ACTION_EHLTH,
96
97 /* force health check status */
98 ST_ADM_ACTION_HRUNN,
99 ST_ADM_ACTION_HNOLB,
100 ST_ADM_ACTION_HDOWN,
101
102 /* enable/disable agent checks */
103 ST_ADM_ACTION_DAGENT,
104 ST_ADM_ACTION_EAGENT,
105
106 /* force agent check status */
107 ST_ADM_ACTION_ARUNN,
108 ST_ADM_ACTION_ADOWN,
109
110 /* set admin state */
Willy Tarreaued7df902014-05-22 18:04:49 +0200111 ST_ADM_ACTION_READY,
112 ST_ADM_ACTION_DRAIN,
113 ST_ADM_ACTION_MAINT,
114 ST_ADM_ACTION_SHUTDOWN,
115 /* these are the ancient actions, still available for compatibility */
116 ST_ADM_ACTION_DISABLE,
117 ST_ADM_ACTION_ENABLE,
118 ST_ADM_ACTION_STOP,
119 ST_ADM_ACTION_START,
120};
121
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100122static int stats_dump_info_to_buffer(struct stream_interface *si);
Willy Tarreau12833bb2014-01-28 16:49:56 +0100123static int stats_dump_pools_to_buffer(struct stream_interface *si);
Willy Tarreau76153662012-11-26 01:16:39 +0100124static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess);
Simon Horman9bd2c732011-06-15 15:18:44 +0900125static int stats_dump_sess_to_buffer(struct stream_interface *si);
126static int stats_dump_errors_to_buffer(struct stream_interface *si);
Willy Tarreau44455022012-12-05 23:01:12 +0100127static int stats_table_request(struct stream_interface *si, int show);
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100128static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri);
129static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100130static int stats_pats_list(struct stream_interface *si);
131static int stats_pat_list(struct stream_interface *si);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100132static int stats_map_lookup(struct stream_interface *si);
Simon Horman9bd2c732011-06-15 15:18:44 +0900133
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100134/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100135 * cli_io_handler()
136 * -> stats_dump_sess_to_buffer() // "show sess"
137 * -> stats_dump_errors_to_buffer() // "show errors"
138 * -> stats_dump_info_to_buffer() // "show info"
139 * -> stats_dump_stat_to_buffer() // "show stat"
140 * -> stats_dump_csv_header()
141 * -> stats_dump_proxy_to_buffer()
142 * -> stats_dump_fe_stats()
143 * -> stats_dump_li_stats()
144 * -> stats_dump_sv_stats()
145 * -> stats_dump_be_stats()
146 *
147 * http_stats_io_handler()
148 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
149 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
150 * -> stats_dump_html_head() // emits the HTML headers
151 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
152 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
153 * -> stats_dump_html_px_hdr()
154 * -> stats_dump_fe_stats()
155 * -> stats_dump_li_stats()
156 * -> stats_dump_sv_stats()
157 * -> stats_dump_be_stats()
158 * -> stats_dump_html_px_end()
159 * -> stats_dump_html_end() // emits HTML trailer
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100160 */
161
Simon Horman9bd2c732011-06-15 15:18:44 +0900162static struct si_applet cli_applet;
163
164static const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200165 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200166 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Willy Tarreau88ee3972010-07-13 13:48:00 +0200167 " clear table : remove an entry from a table\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200168 " help : this message\n"
169 " prompt : toggle interactive mode with prompt\n"
170 " quit : disconnect\n"
171 " show info : report information about the running process\n"
Willy Tarreau12833bb2014-01-28 16:49:56 +0100172 " show pools : report information about the memory pools usage\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200173 " show stat : report counters for each proxy and server\n"
174 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100175 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau69f58c82010-07-12 17:55:33 +0200176 " show table [id]: report table usage stats or dump this table's contents\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +0200177 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +0200178 " set weight : change a server's weight\n"
Willy Tarreau2a4b70f2014-05-22 18:42:35 +0200179 " set server : change a server's state or weight\n"
Willy Tarreau654694e2012-06-07 01:03:16 +0200180 " set table [id] : update or create a table entry's data\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +0100181 " set timeout : change a timeout setting\n"
Willy Tarreau2a0f4d22011-08-02 11:49:05 +0200182 " set maxconn : change a maxconn setting\n"
Willy Tarreauf5b22872011-09-07 16:13:44 +0200183 " set rate-limit : change a rate limiting value\n"
Willy Tarreaua295edc2011-09-07 23:21:03 +0200184 " disable : put a server or frontend in maintenance mode\n"
185 " enable : re-enable a server or frontend which is in maintenance mode\n"
186 " shutdown : kill a session or a frontend (eg:to release listening ports)\n"
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100187 " show acl [id] : report avalaible acls or dump an acl's contents\n"
188 " get acl : reports the patterns matching a sample for an ACL\n"
189 " add acl : add acl entry\n"
190 " del acl : delete acl entry\n"
191 " clear acl <id> : clear the content of this acl\n"
Thierry FOURNIER1432a0c2014-03-11 13:42:38 +0100192 " show map [id] : report avalaible maps or dump a map's contents\n"
193 " get map : reports the keys and values matching a sample for a map\n"
194 " set map : modify map entry\n"
195 " add map : add map entry\n"
196 " del map : delete map entry\n"
197 " clear map <id> : clear the content of this map\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200198 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200199
Simon Horman9bd2c732011-06-15 15:18:44 +0900200static const char stats_permission_denied_msg[] =
Willy Tarreau6162db22009-10-10 17:13:00 +0200201 "Permission denied\n"
202 "";
203
Willy Tarreau295a8372011-03-10 11:25:07 +0100204/* data transmission states for the stats responses */
205enum {
206 STAT_ST_INIT = 0,
207 STAT_ST_HEAD,
208 STAT_ST_INFO,
209 STAT_ST_LIST,
210 STAT_ST_END,
211 STAT_ST_FIN,
212};
213
214/* data transmission states for the stats responses inside a proxy */
215enum {
216 STAT_PX_ST_INIT = 0,
217 STAT_PX_ST_TH,
218 STAT_PX_ST_FE,
219 STAT_PX_ST_LI,
220 STAT_PX_ST_SV,
221 STAT_PX_ST_BE,
222 STAT_PX_ST_END,
223 STAT_PX_ST_FIN,
224};
225
Cyril Bonté19979e12012-04-04 12:57:21 +0200226extern const char *stat_status_codes[];
227
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200228/* This function is called from the session-level accept() in order to instanciate
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200229 * a new stats socket. It returns a positive value upon success, 0 if the session
Willy Tarreaueb472682010-05-28 18:46:57 +0200230 * needs to be closed and ignored, or a negative value upon critical failure.
231 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900232static int stats_accept(struct session *s)
Willy Tarreaueb472682010-05-28 18:46:57 +0200233{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100234 s->target = &cli_applet.obj_type;
Willy Tarreau4171e9e2013-12-01 12:32:30 +0100235 /* no need to initialize the applet, it will start with st0=st1 = 0 */
Willy Tarreaueb472682010-05-28 18:46:57 +0200236
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200237 tv_zero(&s->logs.tv_request);
238 s->logs.t_queue = 0;
239 s->logs.t_connect = 0;
240 s->logs.t_data = 0;
241 s->logs.t_close = 0;
242 s->logs.bytes_in = s->logs.bytes_out = 0;
243 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
244 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaueb472682010-05-28 18:46:57 +0200245
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200246 s->req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreaueb472682010-05-28 18:46:57 +0200247
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200248 if (s->listener->timeout) {
249 s->req->rto = *s->listener->timeout;
250 s->rep->wto = *s->listener->timeout;
Willy Tarreaueb472682010-05-28 18:46:57 +0200251 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200252 return 1;
Willy Tarreaueb472682010-05-28 18:46:57 +0200253}
254
Willy Tarreau07e9e642010-08-17 21:48:17 +0200255/* allocate a new stats frontend named <name>, and return it
256 * (or NULL in case of lack of memory).
257 */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200258static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
Willy Tarreau07e9e642010-08-17 21:48:17 +0200259{
260 struct proxy *fe;
261
262 fe = (struct proxy *)calloc(1, sizeof(struct proxy));
263 if (!fe)
264 return NULL;
265
Willy Tarreau237250c2011-07-29 01:49:03 +0200266 init_new_proxy(fe);
Willy Tarreau050536d2012-10-04 08:47:34 +0200267 fe->next = proxy;
268 proxy = fe;
Willy Tarreau07e9e642010-08-17 21:48:17 +0200269 fe->last_change = now.tv_sec;
270 fe->id = strdup("GLOBAL");
271 fe->cap = PR_CAP_FE;
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200272 fe->maxconn = 10; /* default to 10 concurrent connections */
273 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200274 fe->conf.file = strdup(file);
275 fe->conf.line = line;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200276 fe->accept = stats_accept;
Willy Tarreau050536d2012-10-04 08:47:34 +0200277
278 /* the stats frontend is the only one able to assign ID #0 */
279 fe->conf.id.key = fe->uuid = 0;
280 eb32_insert(&used_proxy_id, &fe->conf.id);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200281 return fe;
282}
283
Willy Tarreaufbee7132007-10-18 13:53:22 +0200284/* This function parses a "stats" statement in the "global" section. It returns
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200285 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
286 * error message into the <err> buffer which will be preallocated. The trailing
287 * '\n' must not be written. The function must be called with <args> pointing to
288 * the first word after "stats".
Willy Tarreaufbee7132007-10-18 13:53:22 +0200289 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200290static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200291 struct proxy *defpx, const char *file, int line,
292 char **err)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200293{
Willy Tarreau4348fad2012-09-20 16:48:07 +0200294 struct bind_conf *bind_conf;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200295 struct listener *l;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200296
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200297 if (!strcmp(args[1], "socket")) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200298 int cur_arg;
299
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200300 if (*args[2] == 0) {
Willy Tarreauc53d4222012-09-20 20:19:28 +0200301 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 +0200302 return -1;
303 }
304
Willy Tarreau89a63132009-08-16 17:41:45 +0200305 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200306 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200307 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau89a63132009-08-16 17:41:45 +0200308 return -1;
309 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200310 }
311
Willy Tarreau4348fad2012-09-20 16:48:07 +0200312 bind_conf = bind_conf_alloc(&global.stats_fe->conf.bind, file, line, args[2]);
Willy Tarreau290e63a2012-09-20 18:07:14 +0200313 bind_conf->level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200314
Willy Tarreauc53d4222012-09-20 20:19:28 +0200315 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
316 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
317 file, line, args[0], args[1], err && *err ? *err : "error");
318 return -1;
319 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200320
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200321 cur_arg = 3;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200322 while (*args[cur_arg]) {
Willy Tarreaud5781202012-09-22 19:32:35 +0200323 static int bind_dumped;
324 struct bind_kw *kw;
325
326 kw = bind_find_kw(args[cur_arg]);
327 if (kw) {
328 if (!kw->parse) {
329 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
330 args[0], args[1], args[cur_arg]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200331 return -1;
332 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200333
334 if (kw->parse(args, cur_arg, curpx, bind_conf, err) != 0) {
335 if (err && *err)
336 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
337 else
338 memprintf(err, "'%s %s' : error encountered while processing '%s'",
339 args[0], args[1], args[cur_arg]);
Willy Tarreau6162db22009-10-10 17:13:00 +0200340 return -1;
341 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200342
343 cur_arg += 1 + kw->skip;
344 continue;
Willy Tarreau6162db22009-10-10 17:13:00 +0200345 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200346
347 if (!bind_dumped) {
348 bind_dump_kws(err);
349 indent_msg(err, 4);
350 bind_dumped = 1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200351 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200352
353 memprintf(err, "'%s %s' : unknown keyword '%s'.%s%s",
354 args[0], args[1], args[cur_arg],
355 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
356 return -1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200357 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100358
Willy Tarreauc53d4222012-09-20 20:19:28 +0200359 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
360 l->maxconn = global.stats_fe->maxconn;
361 l->backlog = global.stats_fe->backlog;
362 l->timeout = &global.stats_fe->timeout.client;
363 l->accept = session_accept;
364 l->handler = process_session;
365 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
366 l->nice = -64; /* we want to boost priority for local stats */
367 global.maxsock += l->maxconn;
368 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200369 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200370 else if (!strcmp(args[1], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100371 unsigned timeout;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200372 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100373
374 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200375 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100376 return -1;
377 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200378
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100379 if (!timeout) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200380 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200381 return -1;
382 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200383 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200384 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200385 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200386 return -1;
387 }
388 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200389 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200390 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200391 else if (!strcmp(args[1], "maxconn")) {
392 int maxconn = atol(args[2]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200393
394 if (maxconn <= 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200395 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200396 return -1;
397 }
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200398
399 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200400 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200401 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200402 return -1;
403 }
404 }
405 global.stats_fe->maxconn = maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200406 }
Willy Tarreau35b7b162012-10-22 23:17:18 +0200407 else if (!strcmp(args[1], "bind-process")) { /* enable the socket only on some processes */
408 int cur_arg = 2;
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100409 unsigned long set = 0;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200410
Willy Tarreau91319572013-04-20 09:48:50 +0200411 if (!global.stats_fe) {
412 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
413 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
414 return -1;
415 }
416 }
417
Willy Tarreau35b7b162012-10-22 23:17:18 +0200418 while (*args[cur_arg]) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100419 unsigned int low, high;
420
Willy Tarreau35b7b162012-10-22 23:17:18 +0200421 if (strcmp(args[cur_arg], "all") == 0) {
422 set = 0;
423 break;
424 }
425 else if (strcmp(args[cur_arg], "odd") == 0) {
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100426 set |= ~0UL/3UL; /* 0x555....555 */
Willy Tarreau35b7b162012-10-22 23:17:18 +0200427 }
428 else if (strcmp(args[cur_arg], "even") == 0) {
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100429 set |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Willy Tarreau35b7b162012-10-22 23:17:18 +0200430 }
Willy Tarreau83d84cf2012-11-22 01:04:31 +0100431 else if (isdigit((int)*args[cur_arg])) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100432 char *dash = strchr(args[cur_arg], '-');
433
434 low = high = str2uic(args[cur_arg]);
435 if (dash)
436 high = str2uic(dash + 1);
437
438 if (high < low) {
439 unsigned int swap = low;
440 low = high;
441 high = swap;
442 }
443
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100444 if (low < 1 || high > LONGBITS) {
445 memprintf(err, "'%s %s' supports process numbers from 1 to %d.\n",
446 args[0], args[1], LONGBITS);
Willy Tarreau35b7b162012-10-22 23:17:18 +0200447 return -1;
448 }
Willy Tarreau110ecc12012-11-15 17:50:01 +0100449 while (low <= high)
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100450 set |= 1UL << (low++ - 1);
Willy Tarreau110ecc12012-11-15 17:50:01 +0100451 }
452 else {
453 memprintf(err,
Willy Tarreaua9db57e2013-01-18 11:29:29 +0100454 "'%s %s' expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to %d.\n",
455 args[0], args[1], LONGBITS);
Willy Tarreau110ecc12012-11-15 17:50:01 +0100456 return -1;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200457 }
458 cur_arg++;
459 }
460 global.stats_fe->bind_proc = set;
461 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200462 else {
Willy Tarreau35b7b162012-10-22 23:17:18 +0200463 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200464 return -1;
465 }
466 return 0;
467}
468
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100469/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
470 * for clearing it if needed.
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100471 * NOTE: Some tools happen to rely on the field position instead of its name,
472 * so please only append new fields at the end, never in the middle.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100473 */
474static void stats_dump_csv_header()
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100475{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100476 chunk_appendf(&trash,
477 "# pxname,svname,"
478 "qcur,qmax,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100479 "scur,smax,slim,stot,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100480 "bin,bout,"
481 "dreq,dresp,"
482 "ereq,econ,eresp,"
483 "wretr,wredis,"
484 "status,weight,act,bck,"
485 "chkfail,chkdown,lastchg,downtime,qlimit,"
486 "pid,iid,sid,throttle,lbtot,tracked,type,"
487 "rate,rate_lim,rate_max,"
488 "check_status,check_code,check_duration,"
489 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
490 "req_rate,req_rate_max,req_tot,"
491 "cli_abrt,srv_abrt,"
Willy Tarreauf5b1cc32014-06-17 12:20:59 +0200492 "comp_in,comp_out,comp_byp,comp_rsp,lastsess,last_chk,last_agt,qtime,ctime,rtime,ttime,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100493 "\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100494}
495
Simon Hormand9366582011-06-15 15:18:45 +0900496/* print a string of text buffer to <out>. The format is :
497 * Non-printable chars \t, \n, \r and \e are * encoded in C format.
498 * Other non-printable chars are encoded "\xHH". Space and '\' are also escaped.
499 * Print stopped if null char or <bsize> is reached, or if no more place in the chunk.
500 */
501static int dump_text(struct chunk *out, const char *buf, int bsize)
502{
503 unsigned char c;
504 int ptr = 0;
505
506 while (buf[ptr] && ptr < bsize) {
507 c = buf[ptr];
508 if (isprint(c) && isascii(c) && c != '\\' && c != ' ') {
509 if (out->len > out->size - 1)
510 break;
511 out->str[out->len++] = c;
512 }
513 else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ') {
514 if (out->len > out->size - 2)
515 break;
516 out->str[out->len++] = '\\';
517 switch (c) {
518 case ' ': c = ' '; break;
519 case '\t': c = 't'; break;
520 case '\n': c = 'n'; break;
521 case '\r': c = 'r'; break;
522 case '\e': c = 'e'; break;
523 case '\\': c = '\\'; break;
524 }
525 out->str[out->len++] = c;
526 }
527 else {
528 if (out->len > out->size - 4)
529 break;
530 out->str[out->len++] = '\\';
531 out->str[out->len++] = 'x';
532 out->str[out->len++] = hextab[(c >> 4) & 0xF];
533 out->str[out->len++] = hextab[c & 0xF];
534 }
535 ptr++;
536 }
537
538 return ptr;
539}
540
541/* print a buffer in hexa.
542 * Print stopped if <bsize> is reached, or if no more place in the chunk.
543 */
544static int dump_binary(struct chunk *out, const char *buf, int bsize)
545{
546 unsigned char c;
547 int ptr = 0;
548
549 while (ptr < bsize) {
550 c = buf[ptr];
551
552 if (out->len > out->size - 2)
553 break;
554 out->str[out->len++] = hextab[(c >> 4) & 0xF];
555 out->str[out->len++] = hextab[c & 0xF];
556
557 ptr++;
558 }
559 return ptr;
560}
561
562/* Dump the status of a table to a stream interface's
563 * read buffer. It returns 0 if the output buffer is full
564 * and needs to be called again, otherwise non-zero.
565 */
566static int stats_dump_table_head_to_buffer(struct chunk *msg, struct stream_interface *si,
567 struct proxy *proxy, struct proxy *target)
568{
Willy Tarreau306f8302013-07-08 15:53:06 +0200569 struct session *s = session_from_task(si->owner);
Simon Hormand9366582011-06-15 15:18:45 +0900570
Willy Tarreau77804732012-10-29 16:14:26 +0100571 chunk_appendf(msg, "# table: %s, type: %s, size:%d, used:%d\n",
Simon Hormand9366582011-06-15 15:18:45 +0900572 proxy->id, stktable_types[proxy->table.type].kw, proxy->table.size, proxy->table.current);
573
574 /* any other information should be dumped here */
575
Willy Tarreau290e63a2012-09-20 18:07:14 +0200576 if (target && s->listener->bind_conf->level < ACCESS_LVL_OPER)
Willy Tarreau77804732012-10-29 16:14:26 +0100577 chunk_appendf(msg, "# contents not dumped due to insufficient privileges\n");
Simon Hormand9366582011-06-15 15:18:45 +0900578
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200579 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900580 return 0;
581
582 return 1;
583}
584
585/* Dump the a table entry to a stream interface's
586 * read buffer. It returns 0 if the output buffer is full
587 * and needs to be called again, otherwise non-zero.
588 */
589static int stats_dump_table_entry_to_buffer(struct chunk *msg, struct stream_interface *si,
590 struct proxy *proxy, struct stksess *entry)
591{
592 int dt;
593
Willy Tarreau77804732012-10-29 16:14:26 +0100594 chunk_appendf(msg, "%p:", entry);
Simon Hormand9366582011-06-15 15:18:45 +0900595
596 if (proxy->table.type == STKTABLE_TYPE_IP) {
597 char addr[INET_ADDRSTRLEN];
598 inet_ntop(AF_INET, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100599 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900600 }
601 else if (proxy->table.type == STKTABLE_TYPE_IPV6) {
602 char addr[INET6_ADDRSTRLEN];
603 inet_ntop(AF_INET6, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100604 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900605 }
606 else if (proxy->table.type == STKTABLE_TYPE_INTEGER) {
Willy Tarreau77804732012-10-29 16:14:26 +0100607 chunk_appendf(msg, " key=%u", *(unsigned int *)entry->key.key);
Simon Hormand9366582011-06-15 15:18:45 +0900608 }
609 else if (proxy->table.type == STKTABLE_TYPE_STRING) {
Willy Tarreau77804732012-10-29 16:14:26 +0100610 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900611 dump_text(msg, (const char *)entry->key.key, proxy->table.key_size);
612 }
613 else {
Willy Tarreau77804732012-10-29 16:14:26 +0100614 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900615 dump_binary(msg, (const char *)entry->key.key, proxy->table.key_size);
616 }
617
Willy Tarreau77804732012-10-29 16:14:26 +0100618 chunk_appendf(msg, " use=%d exp=%d", entry->ref_cnt - 1, tick_remain(now_ms, entry->expire));
Simon Hormand9366582011-06-15 15:18:45 +0900619
620 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
621 void *ptr;
622
623 if (proxy->table.data_ofs[dt] == 0)
624 continue;
625 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
Willy Tarreau77804732012-10-29 16:14:26 +0100626 chunk_appendf(msg, " %s(%d)=", stktable_data_types[dt].name, proxy->table.data_arg[dt].u);
Simon Hormand9366582011-06-15 15:18:45 +0900627 else
Willy Tarreau77804732012-10-29 16:14:26 +0100628 chunk_appendf(msg, " %s=", stktable_data_types[dt].name);
Simon Hormand9366582011-06-15 15:18:45 +0900629
630 ptr = stktable_data_ptr(&proxy->table, entry, dt);
631 switch (stktable_data_types[dt].std_type) {
632 case STD_T_SINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100633 chunk_appendf(msg, "%d", stktable_data_cast(ptr, std_t_sint));
Simon Hormand9366582011-06-15 15:18:45 +0900634 break;
635 case STD_T_UINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100636 chunk_appendf(msg, "%u", stktable_data_cast(ptr, std_t_uint));
Simon Hormand9366582011-06-15 15:18:45 +0900637 break;
638 case STD_T_ULL:
Willy Tarreau77804732012-10-29 16:14:26 +0100639 chunk_appendf(msg, "%lld", stktable_data_cast(ptr, std_t_ull));
Simon Hormand9366582011-06-15 15:18:45 +0900640 break;
641 case STD_T_FRQP:
Willy Tarreau77804732012-10-29 16:14:26 +0100642 chunk_appendf(msg, "%d",
Simon Hormand9366582011-06-15 15:18:45 +0900643 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
644 proxy->table.data_arg[dt].u));
645 break;
646 }
647 }
Willy Tarreau77804732012-10-29 16:14:26 +0100648 chunk_appendf(msg, "\n");
Simon Hormand9366582011-06-15 15:18:45 +0900649
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200650 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900651 return 0;
652
653 return 1;
654}
655
Willy Tarreaudec98142012-06-06 23:37:08 +0200656static void stats_sock_table_key_request(struct stream_interface *si, char **args, int action)
Simon Horman121f3052011-06-15 15:18:46 +0900657{
Willy Tarreau306f8302013-07-08 15:53:06 +0200658 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100659 struct appctx *appctx = __objt_appctx(si->end);
660 struct proxy *px = appctx->ctx.table.target;
Simon Horman121f3052011-06-15 15:18:46 +0900661 struct stksess *ts;
Simon Hormancec9a222011-06-15 15:18:51 +0900662 uint32_t uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900663 unsigned char ip6_key[sizeof(struct in6_addr)];
Willy Tarreau654694e2012-06-07 01:03:16 +0200664 long long value;
665 int data_type;
Willy Tarreau47060b62013-08-01 21:11:42 +0200666 int cur_arg;
Willy Tarreau654694e2012-06-07 01:03:16 +0200667 void *ptr;
668 struct freq_ctr_period *frqp;
Simon Horman121f3052011-06-15 15:18:46 +0900669
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100670 appctx->st0 = STAT_CLI_OUTPUT;
Simon Horman121f3052011-06-15 15:18:46 +0900671
672 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100673 appctx->ctx.cli.msg = "Key value expected\n";
674 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900675 return;
676 }
677
Simon Hormanc5b89f62011-06-15 15:18:50 +0900678 switch (px->table.type) {
679 case STKTABLE_TYPE_IP:
Simon Hormancec9a222011-06-15 15:18:51 +0900680 uint32_key = htonl(inetaddr_host(args[4]));
Willy Tarreau07115412012-10-29 21:56:59 +0100681 static_table_key->key = &uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900682 break;
683 case STKTABLE_TYPE_IPV6:
684 inet_pton(AF_INET6, args[4], ip6_key);
Willy Tarreau07115412012-10-29 21:56:59 +0100685 static_table_key->key = &ip6_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900686 break;
Simon Hormancec9a222011-06-15 15:18:51 +0900687 case STKTABLE_TYPE_INTEGER:
688 {
689 char *endptr;
690 unsigned long val;
691 errno = 0;
692 val = strtoul(args[4], &endptr, 10);
693 if ((errno == ERANGE && val == ULONG_MAX) ||
694 (errno != 0 && val == 0) || endptr == args[4] ||
695 val > 0xffffffff) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100696 appctx->ctx.cli.msg = "Invalid key\n";
697 appctx->st0 = STAT_CLI_PRINT;
Simon Hormancec9a222011-06-15 15:18:51 +0900698 return;
699 }
700 uint32_key = (uint32_t) val;
Willy Tarreau07115412012-10-29 21:56:59 +0100701 static_table_key->key = &uint32_key;
Simon Hormancec9a222011-06-15 15:18:51 +0900702 break;
703 }
704 break;
Simon Horman619e3cc2011-06-15 15:18:52 +0900705 case STKTABLE_TYPE_STRING:
Willy Tarreau07115412012-10-29 21:56:59 +0100706 static_table_key->key = args[4];
707 static_table_key->key_len = strlen(args[4]);
Simon Horman619e3cc2011-06-15 15:18:52 +0900708 break;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900709 default:
Willy Tarreaudec98142012-06-06 23:37:08 +0200710 switch (action) {
711 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100712 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 +0200713 break;
714 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100715 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 +0200716 break;
717 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100718 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200719 break;
720 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100721 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900722 return;
723 }
724
725 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +0200726 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100727 appctx->ctx.cli.msg = stats_permission_denied_msg;
728 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900729 return;
730 }
731
Willy Tarreau07115412012-10-29 21:56:59 +0100732 ts = stktable_lookup_key(&px->table, static_table_key);
Simon Horman17bce342011-06-15 15:18:47 +0900733
Willy Tarreaudec98142012-06-06 23:37:08 +0200734 switch (action) {
735 case STAT_CLI_O_TAB:
736 if (!ts)
737 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100738 chunk_reset(&trash);
739 if (!stats_dump_table_head_to_buffer(&trash, si, px, px))
Simon Horman17bce342011-06-15 15:18:47 +0900740 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100741 stats_dump_table_entry_to_buffer(&trash, si, px, ts);
Simon Horman121f3052011-06-15 15:18:46 +0900742 return;
Willy Tarreaudec98142012-06-06 23:37:08 +0200743
744 case STAT_CLI_O_CLR:
745 if (!ts)
746 return;
747 if (ts->ref_cnt) {
748 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100749 appctx->ctx.cli.msg = "Entry currently in use, cannot remove\n";
750 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200751 return;
752 }
753 stksess_kill(&px->table, ts);
754 break;
Simon Horman17bce342011-06-15 15:18:47 +0900755
Willy Tarreau654694e2012-06-07 01:03:16 +0200756 case STAT_CLI_O_SET:
Willy Tarreau654694e2012-06-07 01:03:16 +0200757 if (ts)
758 stktable_touch(&px->table, ts, 1);
759 else {
Willy Tarreau07115412012-10-29 21:56:59 +0100760 ts = stksess_new(&px->table, static_table_key);
Willy Tarreau654694e2012-06-07 01:03:16 +0200761 if (!ts) {
762 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100763 appctx->ctx.cli.msg = "Unable to allocate a new entry\n";
764 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200765 return;
766 }
767 stktable_store(&px->table, ts, 1);
768 }
769
Willy Tarreau47060b62013-08-01 21:11:42 +0200770 for (cur_arg = 5; *args[cur_arg]; cur_arg += 2) {
771 if (strncmp(args[cur_arg], "data.", 5) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100772 appctx->ctx.cli.msg = "\"data.<type>\" followed by a value expected\n";
773 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200774 return;
775 }
776
777 data_type = stktable_get_data_type(args[cur_arg] + 5);
778 if (data_type < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100779 appctx->ctx.cli.msg = "Unknown data type\n";
780 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200781 return;
782 }
783
784 if (!px->table.data_ofs[data_type]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100785 appctx->ctx.cli.msg = "Data type not stored in this table\n";
786 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200787 return;
788 }
789
790 if (!*args[cur_arg+1] || strl2llrc(args[cur_arg+1], strlen(args[cur_arg+1]), &value) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100791 appctx->ctx.cli.msg = "Require a valid integer value to store\n";
792 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200793 return;
794 }
795
796 ptr = stktable_data_ptr(&px->table, ts, data_type);
797
798 switch (stktable_data_types[data_type].std_type) {
799 case STD_T_SINT:
800 stktable_data_cast(ptr, std_t_sint) = value;
801 break;
802 case STD_T_UINT:
803 stktable_data_cast(ptr, std_t_uint) = value;
804 break;
805 case STD_T_ULL:
806 stktable_data_cast(ptr, std_t_ull) = value;
807 break;
808 case STD_T_FRQP:
809 /* We set both the current and previous values. That way
810 * the reported frequency is stable during all the period
811 * then slowly fades out. This allows external tools to
812 * push measures without having to update them too often.
813 */
814 frqp = &stktable_data_cast(ptr, std_t_frqp);
815 frqp->curr_tick = now_ms;
816 frqp->prev_ctr = 0;
817 frqp->curr_ctr = value;
818 break;
819 }
Willy Tarreau654694e2012-06-07 01:03:16 +0200820 }
821 break;
822
Willy Tarreaudec98142012-06-06 23:37:08 +0200823 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100824 appctx->ctx.cli.msg = "Unknown action\n";
825 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200826 break;
Simon Horman121f3052011-06-15 15:18:46 +0900827 }
Simon Horman121f3052011-06-15 15:18:46 +0900828}
829
Willy Tarreau654694e2012-06-07 01:03:16 +0200830static void stats_sock_table_data_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900831{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100832 struct appctx *appctx = __objt_appctx(si->end);
833
Willy Tarreau04b3a192013-04-13 09:41:37 +0200834 if (action != STAT_CLI_O_TAB && action != STAT_CLI_O_CLR) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100835 appctx->ctx.cli.msg = "content-based lookup is only supported with the \"show\" and \"clear\" actions";
836 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200837 return;
838 }
839
Simon Hormand5b9fd92011-06-15 15:18:48 +0900840 /* condition on stored data value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100841 appctx->ctx.table.data_type = stktable_get_data_type(args[3] + 5);
842 if (appctx->ctx.table.data_type < 0) {
843 appctx->ctx.cli.msg = "Unknown data type\n";
844 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900845 return;
846 }
847
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100848 if (!((struct proxy *)appctx->ctx.table.target)->table.data_ofs[appctx->ctx.table.data_type]) {
849 appctx->ctx.cli.msg = "Data type not stored in this table\n";
850 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900851 return;
852 }
853
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100854 appctx->ctx.table.data_op = get_std_op(args[4]);
855 if (appctx->ctx.table.data_op < 0) {
856 appctx->ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
857 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900858 return;
859 }
860
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100861 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &appctx->ctx.table.value) != 0) {
862 appctx->ctx.cli.msg = "Require a valid integer value to compare against\n";
863 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900864 return;
865 }
866}
867
Willy Tarreaudec98142012-06-06 23:37:08 +0200868static void stats_sock_table_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900869{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100870 struct appctx *appctx = __objt_appctx(si->end);
871
872 appctx->ctx.table.data_type = -1;
873 appctx->st2 = STAT_ST_INIT;
874 appctx->ctx.table.target = NULL;
875 appctx->ctx.table.proxy = NULL;
876 appctx->ctx.table.entry = NULL;
877 appctx->st0 = action;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900878
879 if (*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100880 appctx->ctx.table.target = find_stktable(args[2]);
881 if (!appctx->ctx.table.target) {
882 appctx->ctx.cli.msg = "No such table\n";
883 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900884 return;
885 }
886 }
887 else {
Willy Tarreaudec98142012-06-06 23:37:08 +0200888 if (action != STAT_CLI_O_TAB)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900889 goto err_args;
890 return;
891 }
892
893 if (strcmp(args[3], "key") == 0)
Willy Tarreaudec98142012-06-06 23:37:08 +0200894 stats_sock_table_key_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900895 else if (strncmp(args[3], "data.", 5) == 0)
Willy Tarreau654694e2012-06-07 01:03:16 +0200896 stats_sock_table_data_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900897 else if (*args[3])
Simon Hormand5b9fd92011-06-15 15:18:48 +0900898 goto err_args;
899
900 return;
901
902err_args:
Willy Tarreaudec98142012-06-06 23:37:08 +0200903 switch (action) {
904 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100905 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 +0200906 break;
907 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100908 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 +0200909 break;
910 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100911 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200912 break;
913 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100914 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900915}
916
Willy Tarreau532a4502011-09-07 22:37:44 +0200917/* Expects to find a frontend named <arg> and returns it, otherwise displays various
918 * adequate error messages and returns NULL. This function also expects the session
919 * level to be admin.
920 */
921static struct proxy *expect_frontend_admin(struct session *s, struct stream_interface *si, const char *arg)
922{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100923 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau532a4502011-09-07 22:37:44 +0200924 struct proxy *px;
925
Willy Tarreau290e63a2012-09-20 18:07:14 +0200926 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100927 appctx->ctx.cli.msg = stats_permission_denied_msg;
928 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200929 return NULL;
930 }
931
932 if (!*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100933 appctx->ctx.cli.msg = "A frontend name is expected.\n";
934 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200935 return NULL;
936 }
937
938 px = findproxy(arg, PR_CAP_FE);
939 if (!px) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100940 appctx->ctx.cli.msg = "No such frontend.\n";
941 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200942 return NULL;
943 }
944 return px;
945}
946
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200947/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
948 * and returns the pointer to the server. Otherwise, display adequate error messages
949 * and returns NULL. This function also expects the session level to be admin. Note:
950 * the <arg> is modified to remove the '/'.
951 */
952static struct server *expect_server_admin(struct session *s, struct stream_interface *si, char *arg)
953{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100954 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200955 struct proxy *px;
956 struct server *sv;
957 char *line;
958
Willy Tarreau290e63a2012-09-20 18:07:14 +0200959 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100960 appctx->ctx.cli.msg = stats_permission_denied_msg;
961 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200962 return NULL;
963 }
964
965 /* split "backend/server" and make <line> point to server */
966 for (line = arg; *line; line++)
967 if (*line == '/') {
968 *line++ = '\0';
969 break;
970 }
971
972 if (!*line || !*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100973 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
974 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200975 return NULL;
976 }
977
978 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100979 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
980 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200981 return NULL;
982 }
983
984 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100985 appctx->ctx.cli.msg = "Proxy is disabled.\n";
986 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200987 return NULL;
988 }
989
990 return sv;
991}
992
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100993/* This function is used with map and acl management. It permits to browse
994 * each reference. The variable <getnext> must contain the current node,
995 * <end> point to the root node and the <flags> permit to filter required
996 * nodes.
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100997 */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100998static inline
999struct pat_ref *pat_list_get_next(struct pat_ref *getnext, struct list *end,
1000 unsigned int flags)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001001{
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001002 struct pat_ref *ref = getnext;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001003
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001004 while (1) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001005
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001006 /* Get next list entry. */
1007 ref = LIST_NEXT(&ref->list, struct pat_ref *, list);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001008
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001009 /* If the entry is the last of the list, return NULL. */
1010 if (&ref->list == end)
1011 return NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001012
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001013 /* If the entry match the flag, return it. */
1014 if (ref->flags & flags)
1015 return ref;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001016 }
1017}
1018
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001019static inline
1020struct pat_ref *pat_ref_lookup_ref(const char *reference)
1021{
1022 int id;
1023 char *error;
1024
1025 /* If the reference starts by a '#', this is numeric id. */
1026 if (reference[0] == '#') {
1027 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
1028 id = strtol(reference + 1, &error, 10);
1029 if (*error != '\0')
1030 return NULL;
1031
1032 /* Perform the unique id lookup. */
1033 return pat_ref_lookupid(id);
1034 }
1035
1036 /* Perform the string lookup. */
1037 return pat_ref_lookup(reference);
1038}
1039
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001040/* This function is used with map and acl management. It permits to browse
1041 * each reference.
1042 */
1043static inline
1044struct pattern_expr *pat_expr_get_next(struct pattern_expr *getnext, struct list *end)
1045{
1046 struct pattern_expr *expr;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001047 expr = LIST_NEXT(&getnext->list, struct pattern_expr *, list);
1048 if (&expr->list == end)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001049 return NULL;
1050 return expr;
1051}
1052
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001053/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001054 * called from an applet running in a stream interface. The function returns 1
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001055 * if the request was understood, otherwise zero. It sets appctx->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02001056 * designating the function which will have to process the request, which can
1057 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001058 */
Simon Horman9bd2c732011-06-15 15:18:44 +09001059static int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001060{
Willy Tarreau306f8302013-07-08 15:53:06 +02001061 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001062 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001063 char *args[MAX_STATS_ARGS + 1];
1064 int arg;
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001065 int i, j;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001066
1067 while (isspace((unsigned char)*line))
1068 line++;
1069
1070 arg = 0;
1071 args[arg] = line;
1072
1073 while (*line && arg < MAX_STATS_ARGS) {
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001074 if (*line == '\\') {
1075 line++;
1076 if (*line == '\0')
1077 break;
1078 }
1079 else if (isspace((unsigned char)*line)) {
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001080 *line++ = '\0';
1081
1082 while (isspace((unsigned char)*line))
1083 line++;
1084
1085 args[++arg] = line;
1086 continue;
1087 }
1088
1089 line++;
1090 }
1091
1092 while (++arg <= MAX_STATS_ARGS)
1093 args[arg] = line;
1094
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001095 /* remove \ */
1096 arg = 0;
1097 while (*args[arg] != '\0') {
1098 j = 0;
1099 for (i=0; args[arg][i] != '\0'; i++) {
1100 if (args[arg][i] == '\\')
1101 continue;
1102 args[arg][j] = args[arg][i];
1103 j++;
1104 }
1105 args[arg][j] = '\0';
1106 arg++;
1107 }
1108
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001109 appctx->ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001110 if (strcmp(args[0], "show") == 0) {
1111 if (strcmp(args[1], "stat") == 0) {
1112 if (*args[2] && *args[3] && *args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001113 appctx->ctx.stats.flags |= STAT_BOUND;
1114 appctx->ctx.stats.iid = atoi(args[2]);
1115 appctx->ctx.stats.type = atoi(args[3]);
1116 appctx->ctx.stats.sid = atoi(args[4]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001117 }
1118
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001119 appctx->st2 = STAT_ST_INIT;
1120 appctx->st0 = STAT_CLI_O_STAT; // stats_dump_stat_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001121 }
1122 else if (strcmp(args[1], "info") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001123 appctx->st2 = STAT_ST_INIT;
1124 appctx->st0 = STAT_CLI_O_INFO; // stats_dump_info_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001125 }
Willy Tarreau12833bb2014-01-28 16:49:56 +01001126 else if (strcmp(args[1], "pools") == 0) {
1127 appctx->st2 = STAT_ST_INIT;
1128 appctx->st0 = STAT_CLI_O_POOLS; // stats_dump_pools_to_buffer
1129 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001130 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001131 appctx->st2 = STAT_ST_INIT;
Willy Tarreau290e63a2012-09-20 18:07:14 +02001132 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001133 appctx->ctx.cli.msg = stats_permission_denied_msg;
1134 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001135 return 1;
1136 }
Willy Tarreau76153662012-11-26 01:16:39 +01001137 if (*args[2] && strcmp(args[2], "all") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001138 appctx->ctx.sess.target = (void *)-1;
Willy Tarreau76153662012-11-26 01:16:39 +01001139 else if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001140 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01001141 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001142 appctx->ctx.sess.target = NULL;
1143 appctx->ctx.sess.section = 0; /* start with session status */
1144 appctx->ctx.sess.pos = 0;
1145 appctx->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001146 }
1147 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau290e63a2012-09-20 18:07:14 +02001148 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001149 appctx->ctx.cli.msg = stats_permission_denied_msg;
1150 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001151 return 1;
1152 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001153 if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001154 appctx->ctx.errors.iid = atoi(args[2]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001155 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001156 appctx->ctx.errors.iid = -1;
1157 appctx->ctx.errors.px = NULL;
1158 appctx->st2 = STAT_ST_INIT;
1159 appctx->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001160 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02001161 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001162 stats_sock_table_request(si, args, STAT_CLI_O_TAB);
Willy Tarreau69f58c82010-07-12 17:55:33 +02001163 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001164 else if (strcmp(args[1], "map") == 0 ||
1165 strcmp(args[1], "acl") == 0) {
1166
1167 /* Set ACL or MAP flags. */
1168 if (args[1][0] == 'm')
1169 appctx->ctx.map.display_flags = PAT_REF_MAP;
1170 else
1171 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001172
1173 /* no parameter: display all map avalaible */
1174 if (!*args[2]) {
1175 appctx->st2 = STAT_ST_INIT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001176 appctx->st0 = STAT_CLI_O_PATS;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001177 return 1;
1178 }
1179
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001180 /* lookup into the refs and check the map flag */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001181 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001182 if (!appctx->ctx.map.ref ||
1183 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
1184 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001185 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001186 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001187 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001188 appctx->st0 = STAT_CLI_PRINT;
1189 return 1;
1190 }
1191 appctx->st2 = STAT_ST_INIT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001192 appctx->st0 = STAT_CLI_O_PAT;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001193 }
Aman Guptaceafb4a2012-04-02 18:57:54 -07001194 else { /* neither "stat" nor "info" nor "sess" nor "errors" nor "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001195 return 0;
1196 }
1197 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001198 else if (strcmp(args[0], "clear") == 0) {
1199 if (strcmp(args[1], "counters") == 0) {
1200 struct proxy *px;
1201 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001202 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001203 int clrall = 0;
1204
1205 if (strcmp(args[2], "all") == 0)
1206 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001207
Willy Tarreau6162db22009-10-10 17:13:00 +02001208 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +02001209 if (s->listener->bind_conf->level < ACCESS_LVL_OPER ||
1210 (clrall && s->listener->bind_conf->level < ACCESS_LVL_ADMIN)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001211 appctx->ctx.cli.msg = stats_permission_denied_msg;
1212 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001213 return 1;
1214 }
1215
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001216 for (px = proxy; px; px = px->next) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001217 if (clrall) {
1218 memset(&px->be_counters, 0, sizeof(px->be_counters));
1219 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
1220 }
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001221 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001222 px->be_counters.conn_max = 0;
1223 px->be_counters.p.http.rps_max = 0;
1224 px->be_counters.sps_max = 0;
1225 px->be_counters.cps_max = 0;
1226 px->be_counters.nbpend_max = 0;
1227
1228 px->fe_counters.conn_max = 0;
1229 px->fe_counters.p.http.rps_max = 0;
1230 px->fe_counters.sps_max = 0;
1231 px->fe_counters.cps_max = 0;
1232 px->fe_counters.nbpend_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001233 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001234
1235 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001236 if (clrall)
1237 memset(&sv->counters, 0, sizeof(sv->counters));
1238 else {
1239 sv->counters.cur_sess_max = 0;
1240 sv->counters.nbpend_max = 0;
1241 sv->counters.sps_max = 0;
1242 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001243
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001244 list_for_each_entry(li, &px->conf.listeners, by_fe)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001245 if (li->counters) {
1246 if (clrall)
1247 memset(li->counters, 0, sizeof(*li->counters));
1248 else
1249 li->counters->conn_max = 0;
1250 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001251 }
1252
Willy Tarreau81c25d02011-09-07 15:17:21 +02001253 global.cps_max = 0;
Willy Tarreau93e7c002013-10-07 18:51:07 +02001254 global.sps_max = 0;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001255 return 1;
1256 }
Willy Tarreau88ee3972010-07-13 13:48:00 +02001257 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001258 stats_sock_table_request(si, args, STAT_CLI_O_CLR);
Willy Tarreau88ee3972010-07-13 13:48:00 +02001259 /* end of processing */
1260 return 1;
1261 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001262 else if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
1263 /* Set ACL or MAP flags. */
1264 if (args[1][0] == 'm')
1265 appctx->ctx.map.display_flags = PAT_REF_MAP;
1266 else
1267 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001268
1269 /* no parameter */
1270 if (!*args[2]) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001271 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
1272 appctx->ctx.cli.msg = "Missing map identifier.\n";
1273 else
1274 appctx->ctx.cli.msg = "Missing ACL identifier.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001275 appctx->st0 = STAT_CLI_PRINT;
1276 return 1;
1277 }
1278
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001279 /* lookup into the refs and check the map flag */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001280 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001281 if (!appctx->ctx.map.ref ||
1282 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
1283 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001284 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001285 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001286 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001287 appctx->st0 = STAT_CLI_PRINT;
1288 return 1;
1289 }
1290
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001291 /* Clear all. */
1292 pat_ref_prune(appctx->ctx.map.ref);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001293
1294 /* return response */
1295 appctx->ctx.cli.msg = "Done.\n";
1296 appctx->st0 = STAT_CLI_PRINT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001297 return 1;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001298 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001299 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +02001300 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001301 return 0;
1302 }
1303 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001304 else if (strcmp(args[0], "get") == 0) {
1305 if (strcmp(args[1], "weight") == 0) {
1306 struct proxy *px;
1307 struct server *sv;
1308
1309 /* split "backend/server" and make <line> point to server */
1310 for (line = args[2]; *line; line++)
1311 if (*line == '/') {
1312 *line++ = '\0';
1313 break;
1314 }
1315
1316 if (!*line) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001317 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
1318 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001319 return 1;
1320 }
1321
1322 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001323 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
1324 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001325 return 1;
1326 }
1327
1328 /* return server's effective weight at the moment */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001329 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
1330 bi_putstr(si->ib, trash.str);
Willy Tarreau38338fa2009-10-10 18:37:29 +02001331 return 1;
1332 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001333 else if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
1334 /* Set flags. */
1335 if (args[1][0] == 'm')
1336 appctx->ctx.map.display_flags = PAT_REF_MAP;
1337 else
1338 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001339
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001340 /* No parameter. */
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001341 if (!*args[2] || !*args[3]) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001342 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
1343 appctx->ctx.cli.msg = "Missing map identifier and/or key.\n";
1344 else
1345 appctx->ctx.cli.msg = "Missing ACL identifier and/or key.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001346 appctx->st0 = STAT_CLI_PRINT;
1347 return 1;
1348 }
1349
1350 /* lookup into the maps */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001351 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001352 if (!appctx->ctx.map.ref) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001353 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001354 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001355 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001356 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001357 appctx->st0 = STAT_CLI_PRINT;
1358 return 1;
1359 }
1360
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001361 /* copy input string. The string must be allocated because
1362 * it may be used over multiple iterations. It's released
1363 * at the end and upon abort anyway.
1364 */
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001365 appctx->ctx.map.chunk.len = strlen(args[3]);
1366 appctx->ctx.map.chunk.size = appctx->ctx.map.chunk.len + 1;
1367 appctx->ctx.map.chunk.str = strdup(args[3]);
1368 if (!appctx->ctx.map.chunk.str) {
1369 appctx->ctx.cli.msg = "Out of memory error.\n";
1370 appctx->st0 = STAT_CLI_PRINT;
1371 return 1;
1372 }
1373
1374 /* prepare response */
1375 appctx->st2 = STAT_ST_INIT;
1376 appctx->st0 = STAT_CLI_O_MLOOK;
1377 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001378 else { /* not "get weight" */
1379 return 0;
1380 }
1381 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001382 else if (strcmp(args[0], "set") == 0) {
1383 if (strcmp(args[1], "weight") == 0) {
Willy Tarreau4483d432009-10-10 19:30:08 +02001384 struct server *sv;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001385 const char *warning;
Willy Tarreau4483d432009-10-10 19:30:08 +02001386
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001387 sv = expect_server_admin(s, si, args[2]);
1388 if (!sv)
Willy Tarreau4483d432009-10-10 19:30:08 +02001389 return 1;
Willy Tarreau4483d432009-10-10 19:30:08 +02001390
Simon Horman7d09b9a2013-02-12 10:45:51 +09001391 warning = server_parse_weight_change_request(sv, args[3]);
1392 if (warning) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001393 appctx->ctx.cli.msg = warning;
1394 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +02001395 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001396 return 1;
1397 }
Willy Tarreau2a4b70f2014-05-22 18:42:35 +02001398 else if (strcmp(args[1], "server") == 0) {
1399 struct server *sv;
1400 const char *warning;
1401
1402 sv = expect_server_admin(s, si, args[2]);
1403 if (!sv)
1404 return 1;
1405
1406 if (strcmp(args[3], "weight") == 0) {
1407 warning = server_parse_weight_change_request(sv, args[4]);
1408 if (warning) {
1409 appctx->ctx.cli.msg = warning;
1410 appctx->st0 = STAT_CLI_PRINT;
1411 }
1412 }
1413 else if (strcmp(args[3], "state") == 0) {
1414 if (strcmp(args[4], "ready") == 0)
1415 srv_adm_set_ready(sv);
1416 else if (strcmp(args[4], "drain") == 0)
1417 srv_adm_set_drain(sv);
1418 else if (strcmp(args[4], "maint") == 0)
1419 srv_adm_set_maint(sv);
1420 else {
1421 appctx->ctx.cli.msg = "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n";
1422 appctx->st0 = STAT_CLI_PRINT;
1423 }
1424 }
1425 else if (strcmp(args[3], "health") == 0) {
1426 if (sv->track) {
1427 appctx->ctx.cli.msg = "cannot change health on a tracking server.\n";
1428 appctx->st0 = STAT_CLI_PRINT;
1429 }
1430 else if (strcmp(args[4], "up") == 0) {
1431 sv->check.health = sv->check.rise + sv->check.fall - 1;
1432 srv_set_running(sv, "changed from CLI");
1433 }
1434 else if (strcmp(args[4], "stopping") == 0) {
1435 sv->check.health = sv->check.rise + sv->check.fall - 1;
1436 srv_set_stopping(sv, "changed from CLI");
1437 }
1438 else if (strcmp(args[4], "down") == 0) {
1439 sv->check.health = 0;
1440 srv_set_stopped(sv, "changed from CLI");
1441 }
1442 else {
1443 appctx->ctx.cli.msg = "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n";
1444 appctx->st0 = STAT_CLI_PRINT;
1445 }
1446 }
1447 else if (strcmp(args[3], "agent") == 0) {
1448 if (!(sv->agent.state & CHK_ST_ENABLED)) {
1449 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
1450 appctx->st0 = STAT_CLI_PRINT;
1451 }
1452 else if (strcmp(args[4], "up") == 0) {
1453 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
1454 srv_set_running(sv, "changed from CLI");
1455 }
1456 else if (strcmp(args[4], "down") == 0) {
1457 sv->agent.health = 0;
1458 srv_set_stopped(sv, "changed from CLI");
1459 }
1460 else {
1461 appctx->ctx.cli.msg = "'set server <srv> agent' expects 'up' or 'down'.\n";
1462 appctx->st0 = STAT_CLI_PRINT;
1463 }
1464 }
1465 else {
1466 appctx->ctx.cli.msg = "'set server <srv>' only supports 'agent', 'health', 'state' and 'weight'.\n";
1467 appctx->st0 = STAT_CLI_PRINT;
1468 }
1469 return 1;
1470 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001471 else if (strcmp(args[1], "timeout") == 0) {
1472 if (strcmp(args[2], "cli") == 0) {
1473 unsigned timeout;
1474 const char *res;
1475
1476 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001477 appctx->ctx.cli.msg = "Expects an integer value.\n";
1478 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001479 return 1;
1480 }
1481
1482 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1483 if (res || timeout < 1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001484 appctx->ctx.cli.msg = "Invalid timeout value.\n";
1485 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001486 return 1;
1487 }
1488
1489 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
1490 return 1;
1491 }
1492 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001493 appctx->ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
1494 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001495 return 1;
1496 }
1497 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001498 else if (strcmp(args[1], "maxconn") == 0) {
1499 if (strcmp(args[2], "frontend") == 0) {
1500 struct proxy *px;
1501 struct listener *l;
1502 int v;
1503
Willy Tarreau532a4502011-09-07 22:37:44 +02001504 px = expect_frontend_admin(s, si, args[3]);
1505 if (!px)
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001506 return 1;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001507
1508 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001509 appctx->ctx.cli.msg = "Integer value expected.\n";
1510 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001511 return 1;
1512 }
1513
1514 v = atoi(args[4]);
Willy Tarreau3c7a79d2012-09-26 21:07:15 +02001515 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001516 appctx->ctx.cli.msg = "Value out of range.\n";
1517 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001518 return 1;
1519 }
1520
1521 /* OK, the value is fine, so we assign it to the proxy and to all of
1522 * its listeners. The blocked ones will be dequeued.
1523 */
1524 px->maxconn = v;
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001525 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001526 l->maxconn = v;
1527 if (l->state == LI_FULL)
1528 resume_listener(l);
1529 }
1530
1531 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&s->fe->listener_queue))
1532 dequeue_all_listeners(&s->fe->listener_queue);
1533
1534 return 1;
1535 }
Willy Tarreau91886b62011-09-07 14:38:31 +02001536 else if (strcmp(args[2], "global") == 0) {
1537 int v;
1538
Willy Tarreau290e63a2012-09-20 18:07:14 +02001539 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001540 appctx->ctx.cli.msg = stats_permission_denied_msg;
1541 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001542 return 1;
1543 }
1544
1545 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001546 appctx->ctx.cli.msg = "Expects an integer value.\n";
1547 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001548 return 1;
1549 }
1550
1551 v = atoi(args[3]);
1552 if (v > global.hardmaxconn) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001553 appctx->ctx.cli.msg = "Value out of range.\n";
1554 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001555 return 1;
1556 }
1557
1558 /* check for unlimited values */
1559 if (v <= 0)
1560 v = global.hardmaxconn;
1561
1562 global.maxconn = v;
1563
1564 /* Dequeues all of the listeners waiting for a resource */
1565 if (!LIST_ISEMPTY(&global_listener_queue))
1566 dequeue_all_listeners(&global_listener_queue);
1567
1568 return 1;
1569 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001570 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001571 appctx->ctx.cli.msg = "'set maxconn' only supports 'frontend' and 'global'.\n";
1572 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001573 return 1;
1574 }
1575 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001576 else if (strcmp(args[1], "rate-limit") == 0) {
1577 if (strcmp(args[2], "connections") == 0) {
1578 if (strcmp(args[3], "global") == 0) {
1579 int v;
1580
Willy Tarreau290e63a2012-09-20 18:07:14 +02001581 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001582 appctx->ctx.cli.msg = stats_permission_denied_msg;
1583 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001584 return 1;
1585 }
1586
1587 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001588 appctx->ctx.cli.msg = "Expects an integer value.\n";
1589 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001590 return 1;
1591 }
1592
1593 v = atoi(args[4]);
1594 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001595 appctx->ctx.cli.msg = "Value out of range.\n";
1596 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001597 return 1;
1598 }
1599
1600 global.cps_lim = v;
1601
1602 /* Dequeues all of the listeners waiting for a resource */
1603 if (!LIST_ISEMPTY(&global_listener_queue))
1604 dequeue_all_listeners(&global_listener_queue);
1605
1606 return 1;
1607 }
1608 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001609 appctx->ctx.cli.msg = "'set rate-limit connections' only supports 'global'.\n";
1610 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001611 return 1;
1612 }
1613 }
Willy Tarreau93e7c002013-10-07 18:51:07 +02001614 else if (strcmp(args[2], "sessions") == 0) {
1615 if (strcmp(args[3], "global") == 0) {
1616 int v;
1617
1618 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
1619 appctx->ctx.cli.msg = stats_permission_denied_msg;
1620 appctx->st0 = STAT_CLI_PRINT;
1621 return 1;
1622 }
1623
1624 if (!*args[4]) {
1625 appctx->ctx.cli.msg = "Expects an integer value.\n";
1626 appctx->st0 = STAT_CLI_PRINT;
1627 return 1;
1628 }
1629
1630 v = atoi(args[4]);
1631 if (v < 0) {
1632 appctx->ctx.cli.msg = "Value out of range.\n";
1633 appctx->st0 = STAT_CLI_PRINT;
1634 return 1;
1635 }
1636
1637 global.sps_lim = v;
1638
1639 /* Dequeues all of the listeners waiting for a resource */
1640 if (!LIST_ISEMPTY(&global_listener_queue))
1641 dequeue_all_listeners(&global_listener_queue);
1642
1643 return 1;
1644 }
1645 else {
1646 appctx->ctx.cli.msg = "'set rate-limit sessions' only supports 'global'.\n";
1647 appctx->st0 = STAT_CLI_PRINT;
1648 return 1;
1649 }
1650 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001651#ifdef USE_OPENSSL
1652 else if (strcmp(args[2], "ssl-sessions") == 0) {
1653 if (strcmp(args[3], "global") == 0) {
1654 int v;
1655
1656 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
1657 appctx->ctx.cli.msg = stats_permission_denied_msg;
1658 appctx->st0 = STAT_CLI_PRINT;
1659 return 1;
1660 }
1661
1662 if (!*args[4]) {
1663 appctx->ctx.cli.msg = "Expects an integer value.\n";
1664 appctx->st0 = STAT_CLI_PRINT;
1665 return 1;
1666 }
1667
1668 v = atoi(args[4]);
1669 if (v < 0) {
1670 appctx->ctx.cli.msg = "Value out of range.\n";
1671 appctx->st0 = STAT_CLI_PRINT;
1672 return 1;
1673 }
1674
1675 global.ssl_lim = v;
1676
1677 /* Dequeues all of the listeners waiting for a resource */
1678 if (!LIST_ISEMPTY(&global_listener_queue))
1679 dequeue_all_listeners(&global_listener_queue);
1680
1681 return 1;
1682 }
1683 else {
1684 appctx->ctx.cli.msg = "'set rate-limit ssl-sessions' only supports 'global'.\n";
1685 appctx->st0 = STAT_CLI_PRINT;
1686 return 1;
1687 }
1688 }
1689#endif
William Lallemandd85f9172012-11-09 17:05:39 +01001690 else if (strcmp(args[2], "http-compression") == 0) {
1691 if (strcmp(args[3], "global") == 0) {
1692 int v;
1693
Willy Tarreau85d47f92012-11-21 00:29:50 +01001694 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001695 appctx->ctx.cli.msg = "Expects a maximum input byte rate in kB/s.\n";
1696 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau85d47f92012-11-21 00:29:50 +01001697 return 1;
1698 }
1699
William Lallemandd85f9172012-11-09 17:05:39 +01001700 v = atoi(args[4]);
1701 global.comp_rate_lim = v * 1024; /* Kilo to bytes. */
1702 }
1703 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001704 appctx->ctx.cli.msg = "'set rate-limit http-compression' only supports 'global'.\n";
1705 appctx->st0 = STAT_CLI_PRINT;
William Lallemandd85f9172012-11-09 17:05:39 +01001706 return 1;
1707 }
1708 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001709 else {
Willy Tarreaue43d5322013-10-07 20:01:52 +02001710 appctx->ctx.cli.msg = "'set rate-limit' supports 'connections', 'sessions', 'ssl-sessions', and 'http-compression'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001711 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001712 return 1;
1713 }
1714 }
Willy Tarreau654694e2012-06-07 01:03:16 +02001715 else if (strcmp(args[1], "table") == 0) {
1716 stats_sock_table_request(si, args, STAT_CLI_O_SET);
1717 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001718 else if (strcmp(args[1], "map") == 0) {
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001719 char *err;
1720
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001721 /* Set flags. */
1722 appctx->ctx.map.display_flags = PAT_REF_MAP;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001723
1724 /* Expect three parameters: map name, key and new value. */
1725 if (!*args[2] || !*args[3] || !*args[4]) {
Thierry FOURNIERd5723432014-03-11 13:52:44 +01001726 appctx->ctx.cli.msg = "'set map' expects three parameters: map identifier, key and value.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001727 appctx->st0 = STAT_CLI_PRINT;
1728 return 1;
1729 }
1730
1731 /* Lookup the reference in the maps. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001732 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001733 if (!appctx->ctx.map.ref) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001734 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001735 appctx->st0 = STAT_CLI_PRINT;
1736 return 1;
1737 }
1738
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001739 /* If the entry identifier start with a '#', it is considered as
1740 * pointer id
1741 */
1742 if (args[3][0] == '#' && args[3][1] == '0' && args[3][2] == 'x') {
1743 struct pat_ref_elt *ref;
1744 long long int conv;
1745 char *error;
1746
1747 /* Convert argument to integer value. */
1748 conv = strtoll(&args[3][1], &error, 16);
1749 if (*error != '\0') {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001750 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001751 appctx->st0 = STAT_CLI_PRINT;
1752 return 1;
1753 }
1754
1755 /* Convert and check integer to pointer. */
1756 ref = (struct pat_ref_elt *)(long)conv;
1757 if ((long long int)(long)ref != conv) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01001758 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001759 appctx->st0 = STAT_CLI_PRINT;
1760 return 1;
1761 }
1762
1763 /* Try to delete the entry. */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001764 err = NULL;
1765 if (!pat_ref_set_by_id(appctx->ctx.map.ref, ref, args[4], &err)) {
1766 if (err)
1767 memprintf(&err, "%s.\n", err);
1768 appctx->ctx.cli.err = err;
1769 appctx->st0 = STAT_CLI_PRINT_FREE;
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001770 return 1;
1771 }
1772 }
1773 else {
1774 /* Else, use the entry identifier as pattern
1775 * string, and update the value.
1776 */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01001777 err = NULL;
1778 if (!pat_ref_set(appctx->ctx.map.ref, args[3], args[4], &err)) {
1779 if (err)
1780 memprintf(&err, "%s.\n", err);
1781 appctx->ctx.cli.err = err;
1782 appctx->st0 = STAT_CLI_PRINT_FREE;
Thierry FOURNIER9356c682014-01-28 15:55:37 +01001783 return 1;
1784 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001785 }
1786
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001787 /* The set is done, send message. */
1788 appctx->ctx.cli.msg = "Done.\n";
1789 appctx->st0 = STAT_CLI_PRINT;
1790 return 1;
1791 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001792 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +02001793 return 0;
1794 }
1795 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001796 else if (strcmp(args[0], "enable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001797 if (strcmp(args[1], "agent") == 0) {
1798 struct server *sv;
1799
1800 sv = expect_server_admin(s, si, args[2]);
1801 if (!sv)
1802 return 1;
1803
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001804 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
1805 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
1806 appctx->st0 = STAT_CLI_PRINT;
1807 return 1;
1808 }
1809
1810 sv->agent.state |= CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001811 return 1;
1812 }
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001813 else if (strcmp(args[1], "health") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001814 struct server *sv;
1815
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001816 sv = expect_server_admin(s, si, args[2]);
1817 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001818 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001819
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001820 if (!(sv->check.state & CHK_ST_CONFIGURED)) {
1821 appctx->ctx.cli.msg = "Health checks are not configured on this server, cannot enable.\n";
1822 appctx->st0 = STAT_CLI_PRINT;
1823 return 1;
1824 }
1825
1826 sv->check.state |= CHK_ST_ENABLED;
1827 return 1;
1828 }
1829 else if (strcmp(args[1], "server") == 0) {
1830 struct server *sv;
1831
1832 sv = expect_server_admin(s, si, args[2]);
1833 if (!sv)
1834 return 1;
1835
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001836 srv_adm_set_ready(sv);
Willy Tarreau532a4502011-09-07 22:37:44 +02001837 return 1;
1838 }
1839 else if (strcmp(args[1], "frontend") == 0) {
1840 struct proxy *px;
1841
1842 px = expect_frontend_admin(s, si, args[2]);
1843 if (!px)
1844 return 1;
1845
1846 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001847 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
1848 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001849 return 1;
1850 }
1851
1852 if (px->state != PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001853 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
1854 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001855 return 1;
1856 }
1857
1858 if (!resume_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001859 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
1860 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001861 return 1;
1862 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001863 return 1;
1864 }
1865 else { /* unknown "enable" parameter */
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001866 appctx->ctx.cli.msg = "'enable' only supports 'agent', 'frontend', 'health', and 'server'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001867 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001868 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001869 }
1870 }
1871 else if (strcmp(args[0], "disable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001872 if (strcmp(args[1], "agent") == 0) {
1873 struct server *sv;
1874
1875 sv = expect_server_admin(s, si, args[2]);
1876 if (!sv)
1877 return 1;
1878
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001879 sv->agent.state &= ~CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001880 return 1;
1881 }
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001882 else if (strcmp(args[1], "health") == 0) {
1883 struct server *sv;
1884
1885 sv = expect_server_admin(s, si, args[2]);
1886 if (!sv)
1887 return 1;
1888
1889 sv->check.state &= ~CHK_ST_ENABLED;
1890 return 1;
1891 }
Simon Horman671b6f02013-11-25 10:46:39 +09001892 else if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001893 struct server *sv;
1894
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001895 sv = expect_server_admin(s, si, args[2]);
1896 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001897 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001898
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001899 srv_adm_set_maint(sv);
Willy Tarreau532a4502011-09-07 22:37:44 +02001900 return 1;
1901 }
1902 else if (strcmp(args[1], "frontend") == 0) {
1903 struct proxy *px;
1904
1905 px = expect_frontend_admin(s, si, args[2]);
1906 if (!px)
1907 return 1;
1908
1909 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001910 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
1911 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001912 return 1;
1913 }
1914
1915 if (px->state == PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001916 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
1917 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001918 return 1;
1919 }
1920
1921 if (!pause_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001922 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
1923 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001924 return 1;
1925 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001926 return 1;
1927 }
1928 else { /* unknown "disable" parameter */
Willy Tarreau9b5aecd2014-05-23 11:53:10 +02001929 appctx->ctx.cli.msg = "'disable' only supports 'agent', 'frontend', 'health', and 'server'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001930 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001931 return 1;
1932 }
1933 }
1934 else if (strcmp(args[0], "shutdown") == 0) {
1935 if (strcmp(args[1], "frontend") == 0) {
1936 struct proxy *px;
1937
1938 px = expect_frontend_admin(s, si, args[2]);
1939 if (!px)
1940 return 1;
1941
1942 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001943 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
1944 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001945 return 1;
1946 }
1947
1948 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1949 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1950 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1951 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1952 stop_proxy(px);
1953 return 1;
1954 }
Willy Tarreaua295edc2011-09-07 23:21:03 +02001955 else if (strcmp(args[1], "session") == 0) {
1956 struct session *sess, *ptr;
1957
Willy Tarreau290e63a2012-09-20 18:07:14 +02001958 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001959 appctx->ctx.cli.msg = stats_permission_denied_msg;
1960 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001961 return 1;
1962 }
1963
1964 if (!*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001965 appctx->ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
1966 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001967 return 1;
1968 }
1969
1970 ptr = (void *)strtoul(args[2], NULL, 0);
1971
1972 /* first, look for the requested session in the session table */
1973 list_for_each_entry(sess, &sessions, list) {
1974 if (sess == ptr)
1975 break;
1976 }
1977
1978 /* do we have the session ? */
1979 if (sess != ptr) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001980 appctx->ctx.cli.msg = "No such session (use 'show sess').\n";
1981 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001982 return 1;
1983 }
1984
1985 session_shutdown(sess, SN_ERR_KILLED);
1986 return 1;
1987 }
Willy Tarreau52b2d222011-09-07 23:48:48 +02001988 else if (strcmp(args[1], "sessions") == 0) {
1989 if (strcmp(args[2], "server") == 0) {
1990 struct server *sv;
1991 struct session *sess, *sess_bck;
1992
1993 sv = expect_server_admin(s, si, args[3]);
1994 if (!sv)
1995 return 1;
1996
1997 /* kill all the session that are on this server */
1998 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
1999 if (sess->srv_conn == sv)
2000 session_shutdown(sess, SN_ERR_KILLED);
2001
2002 return 1;
2003 }
2004 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002005 appctx->ctx.cli.msg = "'shutdown sessions' only supports 'server'.\n";
2006 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau52b2d222011-09-07 23:48:48 +02002007 return 1;
2008 }
2009 }
Willy Tarreau532a4502011-09-07 22:37:44 +02002010 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002011 appctx->ctx.cli.msg = "'shutdown' only supports 'frontend', 'session' and 'sessions'.\n";
2012 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02002013 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01002014 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002015 }
2016 else if (strcmp(args[0], "del") == 0) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002017 if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
2018 if (args[1][0] == 'm')
2019 appctx->ctx.map.display_flags = PAT_REF_MAP;
2020 else
2021 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002022
2023 /* Expect two parameters: map name and key. */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002024 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
2025 if (!*args[2] || !*args[3]) {
2026 appctx->ctx.cli.msg = "This command expects two parameters: map identifier and key.\n";
2027 appctx->st0 = STAT_CLI_PRINT;
2028 return 1;
2029 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002030 }
2031
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002032 else {
2033 if (!*args[2] || !*args[3]) {
2034 appctx->ctx.cli.msg = "This command expects two parameters: ACL identifier and key.\n";
2035 appctx->st0 = STAT_CLI_PRINT;
2036 return 1;
2037 }
2038 }
2039
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002040 /* Lookup the reference in the maps. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002041 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002042 if (!appctx->ctx.map.ref ||
2043 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002044 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002045 appctx->st0 = STAT_CLI_PRINT;
2046 return 1;
2047 }
2048
Thierry FOURNIER9356c682014-01-28 15:55:37 +01002049 /* If the entry identifier start with a '#', it is considered as
2050 * pointer id
2051 */
2052 if (args[3][0] == '#' && args[3][1] == '0' && args[3][2] == 'x') {
2053 struct pat_ref_elt *ref;
2054 long long int conv;
2055 char *error;
2056
2057 /* Convert argument to integer value. */
2058 conv = strtoll(&args[3][1], &error, 16);
2059 if (*error != '\0') {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002060 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01002061 appctx->st0 = STAT_CLI_PRINT;
2062 return 1;
2063 }
2064
2065 /* Convert and check integer to pointer. */
2066 ref = (struct pat_ref_elt *)(long)conv;
2067 if ((long long int)(long)ref != conv) {
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002068 appctx->ctx.cli.msg = "Malformed identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER9356c682014-01-28 15:55:37 +01002069 appctx->st0 = STAT_CLI_PRINT;
2070 return 1;
2071 }
2072
2073 /* Try to delete the entry. */
2074 if (!pat_ref_delete_by_id(appctx->ctx.map.ref, ref)) {
2075 /* The entry is not found, send message. */
2076 appctx->ctx.cli.msg = "Key not found.\n";
2077 appctx->st0 = STAT_CLI_PRINT;
2078 return 1;
2079 }
2080 }
2081 else {
2082 /* Else, use the entry identifier as pattern
2083 * string and try to delete the entry.
2084 */
2085 if (!pat_ref_delete(appctx->ctx.map.ref, args[3])) {
2086 /* The entry is not found, send message. */
2087 appctx->ctx.cli.msg = "Key not found.\n";
2088 appctx->st0 = STAT_CLI_PRINT;
2089 return 1;
2090 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002091 }
2092
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002093 /* The deletion is done, send message. */
2094 appctx->ctx.cli.msg = "Done.\n";
2095 appctx->st0 = STAT_CLI_PRINT;
2096 return 1;
2097 }
2098 else { /* unknown "del" parameter */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002099 appctx->ctx.cli.msg = "'del' only supports 'map' or 'acl'.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002100 appctx->st0 = STAT_CLI_PRINT;
2101 return 1;
2102 }
2103 }
2104 else if (strcmp(args[0], "add") == 0) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002105 if (strcmp(args[1], "map") == 0 ||
2106 strcmp(args[1], "acl") == 0) {
2107 int ret;
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002108 char *err;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002109
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002110 /* Set flags. */
2111 if (args[1][0] == 'm')
2112 appctx->ctx.map.display_flags = PAT_REF_MAP;
2113 else
2114 appctx->ctx.map.display_flags = PAT_REF_ACL;
2115
2116 /* If the keywork is "map", we expect three parameters, if it
2117 * is "acl", we expect only two parameters
2118 */
2119 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
2120 if (!*args[2] || !*args[3] || !*args[4]) {
2121 appctx->ctx.cli.msg = "'add map' expects three parameters: map identifier, key and value.\n";
2122 appctx->st0 = STAT_CLI_PRINT;
2123 return 1;
2124 }
2125 }
2126 else {
2127 if (!*args[2] || !*args[3]) {
2128 appctx->ctx.cli.msg = "'add acl' expects two parameters: ACL identifier and pattern.\n";
2129 appctx->st0 = STAT_CLI_PRINT;
2130 return 1;
2131 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002132 }
2133
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002134 /* Lookup for the reference. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01002135 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002136 if (!appctx->ctx.map.ref) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002137 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002138 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <file>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002139 else
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01002140 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <file>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002141 appctx->st0 = STAT_CLI_PRINT;
2142 return 1;
2143 }
2144
Thierry FOURNIER64c585f2014-01-29 20:02:36 +01002145 /* The command "add acl" is prohibited if the reference
2146 * use samples.
2147 */
2148 if ((appctx->ctx.map.display_flags & PAT_REF_ACL) &&
2149 (appctx->ctx.map.ref->flags & PAT_REF_SMP)) {
2150 appctx->ctx.cli.msg = "This ACL is shared with a map containing samples. "
2151 "You must use the command 'add map' to add values.\n";
2152 appctx->st0 = STAT_CLI_PRINT;
2153 return 1;
2154 }
2155
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002156 /* Add value. */
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002157 err = NULL;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002158 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02002159 ret = pat_ref_add(appctx->ctx.map.ref, args[3], args[4], &err);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002160 else
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02002161 ret = pat_ref_add(appctx->ctx.map.ref, args[3], NULL, &err);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002162 if (!ret) {
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002163 if (err)
2164 memprintf(&err, "%s.\n", err);
2165 appctx->ctx.cli.err = err;
2166 appctx->st0 = STAT_CLI_PRINT_FREE;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002167 return 1;
2168 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002169
2170 /* The add is done, send message. */
2171 appctx->ctx.cli.msg = "Done.\n";
2172 appctx->st0 = STAT_CLI_PRINT;
2173 return 1;
2174 }
2175 else { /* unknown "del" parameter */
2176 appctx->ctx.cli.msg = "'add' only supports 'map'.\n";
2177 appctx->st0 = STAT_CLI_PRINT;
2178 return 1;
2179 }
Cyril Bontécd19e512010-01-31 22:34:03 +01002180 }
2181 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002182 return 0;
2183 }
2184 return 1;
2185}
2186
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002187/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002188 * used to processes I/O from/to the stats unix socket. The system relies on a
2189 * state machine handling requests and various responses. We read a request,
2190 * then we process it and send the response, and we possibly display a prompt.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002191 * Then we can read again. The state is stored in appctx->st0 and is one of the
2192 * STAT_CLI_* constants. appctx->st1 is used to indicate whether prompt is enabled
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002193 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002194 */
Willy Tarreaub24281b2011-02-13 13:16:36 +01002195static void cli_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002196{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002197 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau7421efb2012-07-02 15:11:27 +02002198 struct channel *req = si->ob;
2199 struct channel *res = si->ib;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002200 int reql;
2201 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002202
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002203 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
2204 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002205
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002206 while (1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002207 if (appctx->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002208 /* Stats output not initialized yet */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002209 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
2210 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002211 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002212 else if (appctx->st0 == STAT_CLI_END) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002213 /* Let's close for real now. We just close the request
2214 * side, the conditions below will complete if needed.
2215 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002216 si_shutw(si);
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002217 break;
2218 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002219 else if (appctx->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02002220 /* ensure we have some output room left in the event we
2221 * would want to return some info right after parsing.
2222 */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002223 if (buffer_almost_full(si->ib->buf)) {
2224 si->ib->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02002225 break;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002226 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02002227
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002228 reql = bo_getline(si->ob, trash.str, trash.size);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002229 if (reql <= 0) { /* closed or EOL not found */
2230 if (reql == 0)
2231 break;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002232 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002233 continue;
2234 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002235
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002236 /* seek for a possible semi-colon. If we find one, we
2237 * replace it with an LF and skip only this part.
2238 */
2239 for (len = 0; len < reql; len++)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002240 if (trash.str[len] == ';') {
2241 trash.str[len] = '\n';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002242 reql = len + 1;
2243 break;
2244 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002245
Willy Tarreau816fc222009-10-04 07:36:58 +02002246 /* now it is time to check that we have a full line,
2247 * remove the trailing \n and possibly \r, then cut the
2248 * line.
2249 */
2250 len = reql - 1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002251 if (trash.str[len] != '\n') {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002252 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002253 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002254 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002255
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002256 if (len && trash.str[len-1] == '\r')
Willy Tarreau816fc222009-10-04 07:36:58 +02002257 len--;
2258
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002259 trash.str[len] = '\0';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002260
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002261 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002262 if (len) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002263 if (strcmp(trash.str, "quit") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002264 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002265 continue;
2266 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002267 else if (strcmp(trash.str, "prompt") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002268 appctx->st1 = !appctx->st1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002269 else if (strcmp(trash.str, "help") == 0 ||
2270 !stats_sock_parse_request(si, trash.str)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002271 appctx->ctx.cli.msg = stats_sock_usage_msg;
2272 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002273 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002274 /* NB: stats_sock_parse_request() may have put
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002275 * another STAT_CLI_O_* into appctx->st0.
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002276 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002277 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002278 else if (!appctx->st1) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002279 /* if prompt is disabled, print help on empty lines,
2280 * so that the user at least knows how to enable
2281 * prompt and find help.
2282 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002283 appctx->ctx.cli.msg = stats_sock_usage_msg;
2284 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002285 }
2286
2287 /* re-adjust req buffer */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02002288 bo_skip(si->ob, reql);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002289 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002290 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002291 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002292 if (res->flags & (CF_SHUTR_NOW|CF_SHUTR)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002293 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002294 continue;
2295 }
2296
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002297 switch (appctx->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002298 case STAT_CLI_PRINT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002299 if (bi_putstr(si->ib, appctx->ctx.cli.msg) != -1)
2300 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002301 break;
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01002302 case STAT_CLI_PRINT_FREE:
2303 if (bi_putstr(si->ib, appctx->ctx.cli.err) != -1) {
2304 free(appctx->ctx.cli.err);
2305 appctx->st0 = STAT_CLI_PROMPT;
2306 }
2307 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002308 case STAT_CLI_O_INFO:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002309 if (stats_dump_info_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002310 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002311 break;
2312 case STAT_CLI_O_STAT:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002313 if (stats_dump_stat_to_buffer(si, NULL))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002314 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002315 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002316 case STAT_CLI_O_SESS:
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002317 if (stats_dump_sess_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002318 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002319 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002320 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002321 if (stats_dump_errors_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002322 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002323 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002324 case STAT_CLI_O_TAB:
Simon Hormanc88b8872011-06-15 15:18:49 +09002325 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002326 if (stats_table_request(si, appctx->st0))
2327 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002328 break;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002329 case STAT_CLI_O_PATS:
2330 if (stats_pats_list(si))
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002331 appctx->st0 = STAT_CLI_PROMPT;
2332 break;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002333 case STAT_CLI_O_PAT:
2334 if (stats_pat_list(si))
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002335 appctx->st0 = STAT_CLI_PROMPT;
2336 break;
2337 case STAT_CLI_O_MLOOK:
2338 if (stats_map_lookup(si))
2339 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau4efb3532014-01-29 12:13:39 +01002340 break;
Willy Tarreau12833bb2014-01-28 16:49:56 +01002341 case STAT_CLI_O_POOLS:
2342 if (stats_dump_pools_to_buffer(si))
2343 appctx->st0 = STAT_CLI_PROMPT;
2344 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002345 default: /* abnormal state */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002346 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002347 break;
2348 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002349
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002350 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002351 if (appctx->st0 == STAT_CLI_PROMPT) {
2352 if (bi_putstr(si->ib, appctx->st1 ? "\n> " : "\n") != -1)
2353 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002354 }
2355
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002356 /* If the output functions are still there, it means they require more room. */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002357 if (appctx->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002358 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002359
2360 /* Now we close the output if one of the writers did so,
2361 * or if we're not in interactive mode and the request
2362 * buffer is empty. This still allows pipelined requests
2363 * to be sent in non-interactive mode.
2364 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002365 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!appctx->st1 && !req->buf->o)) {
2366 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002367 continue;
2368 }
2369
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002370 /* switch state back to GETREQ to read next requests */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002371 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002372 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002373 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002374
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002375 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST) && (appctx->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002376 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
2377 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
Aman Guptaceafb4a2012-04-02 18:57:54 -07002378 /* Other side has closed, let's abort if we have no more processing to do
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002379 * and nothing more to consume. This is comparable to a broken pipe, so
2380 * we forward the close to the request side so that it flows upstream to
2381 * the client.
2382 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002383 si_shutw(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002384 }
2385
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002386 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002387 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
2388 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
2389 /* We have no more processing to do, and nothing more to send, and
2390 * the client side has closed. So we'll forward this state downstream
2391 * on the response buffer.
2392 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002393 si_shutr(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002394 res->flags |= CF_READ_NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002395 }
2396
2397 /* update all other flags and resync with the other side */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002398 si_update(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002399
2400 /* we don't want to expire timeouts while we're processing requests */
2401 si->ib->rex = TICK_ETERNITY;
2402 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002403
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002404 out:
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002405 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 +02002406 __FUNCTION__, __LINE__,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002407 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 +02002408
2409 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
2410 /* check that we have released everything then unregister */
2411 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002412 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002413}
2414
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002415/* This function dumps information onto the stream interface's read buffer.
2416 * It returns 0 as long as it does not complete, non-zero upon completion.
2417 * No state is used.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002418 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002419static int stats_dump_info_to_buffer(struct stream_interface *si)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002420{
2421 unsigned int up = (now.tv_sec - start_date.tv_sec);
2422
Willy Tarreau0c9c2722014-05-28 12:28:58 +02002423#ifdef USE_OPENSSL
2424 int ssl_sess_rate = read_freq_ctr(&global.ssl_per_sec);
2425 int ssl_key_rate = read_freq_ctr(&global.ssl_fe_keys_per_sec);
2426 int ssl_reuse = 0;
2427
2428 if (ssl_key_rate < ssl_sess_rate) {
2429 /* count the ssl reuse ratio and avoid overflows in both directions */
2430 ssl_reuse = 100 - (100 * ssl_key_rate + (ssl_sess_rate - 1) / 2) / ssl_sess_rate;
2431 }
2432#endif
2433
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002434 chunk_printf(&trash,
2435 "Name: " PRODUCT_NAME "\n"
2436 "Version: " HAPROXY_VERSION "\n"
2437 "Release_date: " HAPROXY_DATE "\n"
2438 "Nbproc: %d\n"
2439 "Process_num: %d\n"
2440 "Pid: %d\n"
2441 "Uptime: %dd %dh%02dm%02ds\n"
2442 "Uptime_sec: %d\n"
2443 "Memmax_MB: %d\n"
2444 "Ulimit-n: %d\n"
2445 "Maxsock: %d\n"
2446 "Maxconn: %d\n"
2447 "Hard_maxconn: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002448 "CurrConns: %d\n"
Willy Tarreau71b734c2014-01-28 15:19:44 +01002449 "CumConns: %d\n"
2450 "CumReq: %d\n"
2451#ifdef USE_OPENSSL
2452 "MaxSslConns: %d\n"
2453 "CurrSslConns: %d\n"
2454 "CumSslConns: %d\n"
2455#endif
2456 "Maxpipes: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002457 "PipesUsed: %d\n"
2458 "PipesFree: %d\n"
2459 "ConnRate: %d\n"
2460 "ConnRateLimit: %d\n"
2461 "MaxConnRate: %d\n"
Willy Tarreau93e7c002013-10-07 18:51:07 +02002462 "SessRate: %d\n"
2463 "SessRateLimit: %d\n"
2464 "MaxSessRate: %d\n"
Willy Tarreaue43d5322013-10-07 20:01:52 +02002465#ifdef USE_OPENSSL
2466 "SslRate: %d\n"
2467 "SslRateLimit: %d\n"
2468 "MaxSslRate: %d\n"
Willy Tarreau0c9c2722014-05-28 12:28:58 +02002469 "SslFrontendKeyRate: %d\n"
2470 "SslFrontendMaxKeyRate: %d\n"
2471 "SslFrontendSessionReuse_pct: %d\n"
2472 "SslBackendKeyRate: %d\n"
2473 "SslBackendMaxKeyRate: %d\n"
Willy Tarreauce3f9132014-05-28 16:47:01 +02002474 "SslCacheLookups: %u\n"
2475 "SslCacheMisses: %u\n"
Willy Tarreaue43d5322013-10-07 20:01:52 +02002476#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002477 "CompressBpsIn: %u\n"
2478 "CompressBpsOut: %u\n"
2479 "CompressBpsRateLim: %u\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002480#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002481 "ZlibMemUsage: %ld\n"
2482 "MaxZlibMemUsage: %ld\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002483#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002484 "Tasks: %d\n"
2485 "Run_queue: %d\n"
2486 "Idle_pct: %d\n"
2487 "node: %s\n"
2488 "description: %s\n"
2489 "",
2490 global.nbproc,
2491 relative_pid,
2492 pid,
2493 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
2494 up,
2495 global.rlimit_memmax,
2496 global.rlimit_nofile,
Willy Tarreau71b734c2014-01-28 15:19:44 +01002497 global.maxsock, global.maxconn, global.hardmaxconn,
2498 actconn, totalconn, global.req_count,
2499#ifdef USE_OPENSSL
2500 global.maxsslconn, sslconns, totalsslconns,
2501#endif
2502 global.maxpipes, pipes_used, pipes_free,
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002503 read_freq_ctr(&global.conn_per_sec), global.cps_lim, global.cps_max,
Willy Tarreau93e7c002013-10-07 18:51:07 +02002504 read_freq_ctr(&global.sess_per_sec), global.sps_lim, global.sps_max,
Willy Tarreaue43d5322013-10-07 20:01:52 +02002505#ifdef USE_OPENSSL
Willy Tarreau0c9c2722014-05-28 12:28:58 +02002506 ssl_sess_rate, global.ssl_lim, global.ssl_max,
2507 ssl_key_rate, global.ssl_fe_keys_max,
2508 ssl_reuse,
2509 read_freq_ctr(&global.ssl_be_keys_per_sec), global.ssl_be_keys_max,
Willy Tarreauce3f9132014-05-28 16:47:01 +02002510 global.shctx_lookups, global.shctx_misses,
Willy Tarreaue43d5322013-10-07 20:01:52 +02002511#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002512 read_freq_ctr(&global.comp_bps_in), read_freq_ctr(&global.comp_bps_out),
2513 global.comp_rate_lim,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002514#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002515 zlib_used_memory, global.maxzlibmem,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002516#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002517 nb_tasks_cur, run_queue_cur, idle_pct,
2518 global.node, global.desc ? global.desc : ""
2519 );
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002520
2521 if (bi_putchk(si->ib, &trash) == -1)
2522 return 0;
2523
2524 return 1;
2525}
2526
Willy Tarreau12833bb2014-01-28 16:49:56 +01002527/* This function dumps memory usage information onto the stream interface's
2528 * read buffer. It returns 0 as long as it does not complete, non-zero upon
2529 * completion. No state is used.
2530 */
2531static int stats_dump_pools_to_buffer(struct stream_interface *si)
2532{
2533 dump_pools_to_trash();
2534 if (bi_putchk(si->ib, &trash) == -1)
2535 return 0;
2536 return 1;
2537}
2538
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002539/* Dumps a frontend's line to the trash for the current proxy <px> and uses
2540 * the state from stream interface <si>. The caller is responsible for clearing
2541 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002542 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002543static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002544{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002545 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002546 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002547
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002548 if (!(px->cap & PR_CAP_FE))
2549 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002550
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002551 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_FE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002552 return 0;
2553
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002554 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002555 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002556 /* name, queue */
2557 "<tr class=\"frontend\">");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002558
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002559 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002560 /* Column sub-heading for Enable or Disable server */
2561 chunk_appendf(&trash, "<td></td>");
2562 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02002563
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002564 chunk_appendf(&trash,
2565 "<td class=ac>"
2566 "<a name=\"%s/Frontend\"></a>"
2567 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
2568 "<td colspan=3></td>"
2569 "",
2570 px->id, px->id);
Cyril Bonté70be45d2010-10-12 00:14:35 +02002571
Willy Tarreau466c9b52012-12-23 02:25:03 +01002572 chunk_appendf(&trash,
2573 /* sessions rate : current */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002574 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002575 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
2576 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
2577 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002578 U2H(read_freq_ctr(&px->fe_sess_per_sec)),
2579 U2H(read_freq_ctr(&px->fe_conn_per_sec)),
2580 U2H(read_freq_ctr(&px->fe_sess_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002581
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002582 if (px->mode == PR_MODE_HTTP)
2583 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002584 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002585 U2H(read_freq_ctr(&px->fe_req_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002586
2587 chunk_appendf(&trash,
2588 "</table></div></u></td>"
2589 /* sessions rate : max */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002590 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002591 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
2592 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
2593 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002594 U2H(px->fe_counters.sps_max),
2595 U2H(px->fe_counters.cps_max),
2596 U2H(px->fe_counters.sps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002597
2598 if (px->mode == PR_MODE_HTTP)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002599 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002600 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002601 U2H(px->fe_counters.p.http.rps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002602
2603 chunk_appendf(&trash,
2604 "</table></div></u></td>"
2605 /* sessions rate : limit */
2606 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002607 LIM2A(px->fe_sps_lim, "-"));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002608
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002609 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002610 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002611 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002612 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002613 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
2614 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002615 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002616 U2H(px->feconn), U2H(px->fe_counters.conn_max), U2H(px->maxconn),
2617 U2H(px->fe_counters.cum_sess),
2618 U2H(px->fe_counters.cum_conn),
2619 U2H(px->fe_counters.cum_sess));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002620
Willy Tarreau466c9b52012-12-23 02:25:03 +01002621 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002622 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01002623 chunk_appendf(&trash,
2624 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
2625 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
2626 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
2627 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
2628 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
2629 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
2630 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
2631 "<tr><th>- other responses:</th><td>%s</td></tr>"
2632 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
2633 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002634 U2H(px->fe_counters.p.http.cum_req),
2635 U2H(px->fe_counters.p.http.rsp[1]),
2636 U2H(px->fe_counters.p.http.rsp[2]),
2637 U2H(px->fe_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002638 px->fe_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01002639 (int)(100*px->fe_counters.p.http.comp_rsp/px->fe_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002640 U2H(px->fe_counters.p.http.rsp[3]),
2641 U2H(px->fe_counters.p.http.rsp[4]),
2642 U2H(px->fe_counters.p.http.rsp[5]),
2643 U2H(px->fe_counters.p.http.rsp[0]),
2644 U2H(px->fe_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002645 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002646
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002647 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002648 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002649 /* sessions: lbtot, lastsess */
2650 "<td></td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002651 /* bytes : in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002652 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002653 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002654 U2H(px->fe_counters.bytes_in));
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002655
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002656 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002657 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002658 "<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 +01002659 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002660 U2H(px->fe_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002661 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp,
2662 px->fe_counters.comp_in ?
2663 (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 +01002664 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "</u>":"");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002665
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002666 chunk_appendf(&trash,
2667 /* denied: req, resp */
2668 "<td>%s</td><td>%s</td>"
2669 /* errors : request, connect, response */
2670 "<td>%s</td><td></td><td></td>"
2671 /* warnings: retries, redispatches */
2672 "<td></td><td></td>"
2673 /* server status : reflect frontend status */
2674 "<td class=ac>%s</td>"
2675 /* rest of server: nothing */
2676 "<td class=ac colspan=8></td></tr>"
2677 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002678 U2H(px->fe_counters.denied_req), U2H(px->fe_counters.denied_resp),
2679 U2H(px->fe_counters.failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002680 px->state == PR_STREADY ? "OPEN" :
2681 px->state == PR_STFULL ? "FULL" : "STOP");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002682 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002683 else { /* CSV mode */
2684 chunk_appendf(&trash,
2685 /* pxid, name, queue cur, queue max, */
2686 "%s,FRONTEND,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002687 /* sessions : current, max, limit, total */
2688 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002689 /* bytes : in, out */
2690 "%lld,%lld,"
2691 /* denied: req, resp */
2692 "%lld,%lld,"
2693 /* errors : request, connect, response */
2694 "%lld,,,"
2695 /* warnings: retries, redispatches */
2696 ",,"
2697 /* server status : reflect frontend status */
2698 "%s,"
2699 /* rest of server: nothing */
2700 ",,,,,,,,"
2701 /* pid, iid, sid, throttle, lbtot, tracked, type */
2702 "%d,%d,0,,,,%d,"
2703 /* rate, rate_lim, rate_max */
2704 "%u,%u,%u,"
2705 /* check_status, check_code, check_duration */
2706 ",,,",
2707 px->id,
2708 px->feconn, px->fe_counters.conn_max, px->maxconn, px->fe_counters.cum_sess,
2709 px->fe_counters.bytes_in, px->fe_counters.bytes_out,
2710 px->fe_counters.denied_req, px->fe_counters.denied_resp,
2711 px->fe_counters.failed_req,
2712 px->state == PR_STREADY ? "OPEN" :
2713 px->state == PR_STFULL ? "FULL" : "STOP",
2714 relative_pid, px->uuid, STATS_TYPE_FE,
2715 read_freq_ctr(&px->fe_sess_per_sec),
2716 px->fe_sps_lim, px->fe_counters.sps_max);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002717
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002718 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2719 if (px->mode == PR_MODE_HTTP) {
2720 for (i=1; i<6; i++)
2721 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[i]);
2722 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[0]);
2723 }
2724 else
2725 chunk_appendf(&trash, ",,,,,,");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002726
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002727 /* failed health analyses */
2728 chunk_appendf(&trash, ",");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002729
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002730 /* requests : req_rate, req_rate_max, req_tot, */
2731 chunk_appendf(&trash, "%u,%u,%lld,",
2732 read_freq_ctr(&px->fe_req_per_sec),
2733 px->fe_counters.p.http.rps_max, px->fe_counters.p.http.cum_req);
2734
2735 /* errors: cli_aborts, srv_aborts */
2736 chunk_appendf(&trash, ",,");
2737
2738 /* compression: in, out, bypassed */
2739 chunk_appendf(&trash, "%lld,%lld,%lld,",
2740 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp);
2741
2742 /* compression: comp_rsp */
2743 chunk_appendf(&trash, "%lld,",
2744 px->fe_counters.p.http.comp_rsp);
2745
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02002746 /* lastsess, last_chk, last_agt, qtime, ctime, rtime, ttime, */
2747 chunk_appendf(&trash, ",,,,,,,");
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002748
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002749 /* finish with EOL */
2750 chunk_appendf(&trash, "\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002751 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002752 return 1;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002753}
2754
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002755/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
2756 * from stream interface <si>, and stats flags <flags>. The caller is responsible
2757 * for clearing the trash if needed. Returns non-zero if it emits anything, zero
2758 * otherwise.
Willy Tarreau91861262007-10-17 17:06:05 +02002759 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002760static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l, int flags)
Willy Tarreau91861262007-10-17 17:06:05 +02002761{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002762 struct appctx *appctx = __objt_appctx(si->end);
2763
2764 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002765 chunk_appendf(&trash, "<tr class=socket>");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002766 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002767 /* Column sub-heading for Enable or Disable server */
2768 chunk_appendf(&trash, "<td></td>");
2769 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002770 chunk_appendf(&trash,
2771 /* frontend name, listener name */
2772 "<td class=ac><a name=\"%s/+%s\"></a>%s"
2773 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
2774 "",
2775 px->id, l->name,
2776 (flags & ST_SHLGNDS)?"<u>":"",
2777 px->id, l->name, l->name);
Willy Tarreau91861262007-10-17 17:06:05 +02002778
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002779 if (flags & ST_SHLGNDS) {
2780 char str[INET6_ADDRSTRLEN];
2781 int port;
Willy Tarreau91861262007-10-17 17:06:05 +02002782
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002783 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreau91861262007-10-17 17:06:05 +02002784
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002785 port = get_host_port(&l->addr);
2786 switch (addr_to_str(&l->addr, str, sizeof(str))) {
2787 case AF_INET:
2788 chunk_appendf(&trash, "IPv4: %s:%d, ", str, port);
2789 break;
2790 case AF_INET6:
2791 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, port);
2792 break;
2793 case AF_UNIX:
2794 chunk_appendf(&trash, "unix, ");
2795 break;
2796 case -1:
2797 chunk_appendf(&trash, "(%s), ", strerror(errno));
2798 break;
2799 }
Willy Tarreau91861262007-10-17 17:06:05 +02002800
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002801 /* id */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002802 chunk_appendf(&trash, "id: %d</div>", l->luid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002803 }
Willy Tarreau91861262007-10-17 17:06:05 +02002804
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002805 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002806 /* queue */
2807 "%s</td><td colspan=3></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002808 /* sessions rate: current, max, limit */
2809 "<td colspan=3>&nbsp;</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002810 /* sessions: current, max, limit, total, lbtot, lastsess */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002811 "<td>%s</td><td>%s</td><td>%s</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002812 "<td>%s</td><td>&nbsp;</td><td>&nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002813 /* bytes: in, out */
2814 "<td>%s</td><td>%s</td>"
2815 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002816 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002817 U2H(l->nbconn), U2H(l->counters->conn_max), U2H(l->maxconn),
2818 U2H(l->counters->cum_conn), U2H(l->counters->bytes_in), U2H(l->counters->bytes_out));
Willy Tarreau56a560a2009-09-22 19:27:35 +02002819
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002820 chunk_appendf(&trash,
2821 /* denied: req, resp */
2822 "<td>%s</td><td>%s</td>"
2823 /* errors: request, connect, response */
2824 "<td>%s</td><td></td><td></td>"
2825 /* warnings: retries, redispatches */
2826 "<td></td><td></td>"
2827 /* server status: reflect listener status */
2828 "<td class=ac>%s</td>"
2829 /* rest of server: nothing */
2830 "<td class=ac colspan=8></td></tr>"
2831 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002832 U2H(l->counters->denied_req), U2H(l->counters->denied_resp),
2833 U2H(l->counters->failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002834 (l->nbconn < l->maxconn) ? (l->state == LI_LIMITED) ? "WAITING" : "OPEN" : "FULL");
2835 }
2836 else { /* CSV mode */
2837 chunk_appendf(&trash,
2838 /* pxid, name, queue cur, queue max, */
2839 "%s,%s,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002840 /* sessions: current, max, limit, total */
2841 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002842 /* bytes: in, out */
2843 "%lld,%lld,"
2844 /* denied: req, resp */
2845 "%lld,%lld,"
2846 /* errors: request, connect, response */
2847 "%lld,,,"
2848 /* warnings: retries, redispatches */
2849 ",,"
2850 /* server status: reflect listener status */
2851 "%s,"
2852 /* rest of server: nothing */
2853 ",,,,,,,,"
2854 /* pid, iid, sid, throttle, lbtot, tracked, type */
2855 "%d,%d,%d,,,,%d,"
2856 /* rate, rate_lim, rate_max */
2857 ",,,"
2858 /* check_status, check_code, check_duration */
2859 ",,,"
2860 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2861 ",,,,,,"
2862 /* failed health analyses */
2863 ","
2864 /* requests : req_rate, req_rate_max, req_tot, */
2865 ",,,"
2866 /* errors: cli_aborts, srv_aborts */
2867 ",,"
2868 /* compression: in, out, bypassed, comp_rsp */
2869 ",,,,"
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02002870 /* lastsess, last_chk, last_agt, qtime, ctime, rtime, ttime, */
2871 ",,,,,,,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002872 "\n",
2873 px->id, l->name,
2874 l->nbconn, l->counters->conn_max,
2875 l->maxconn, l->counters->cum_conn,
2876 l->counters->bytes_in, l->counters->bytes_out,
2877 l->counters->denied_req, l->counters->denied_resp,
2878 l->counters->failed_req,
2879 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
2880 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
2881 }
2882 return 1;
2883}
Willy Tarreau91861262007-10-17 17:06:05 +02002884
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002885/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
2886 * from stream interface <si>, stats flags <flags>, and server state <state>.
2887 * The caller is responsible for clearing the trash if needed. Returns non-zero
2888 * if it emits anything, zero otherwise. The <state> parameter can take the
Willy Tarreau9638efa2014-05-23 11:19:57 +02002889 * following values : 0=DOWN, 1=DOWN(agent) 2=going up, 3=going down, 4=UP, 5,6=NOLB,
2890 * 7,8=DRAIN, 9=unchecked.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002891 */
2892static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, int flags, struct server *sv, int state)
2893{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002894 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau32091232014-05-16 13:52:00 +02002895 struct server *via, *ref;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002896 char str[INET6_ADDRSTRLEN];
2897 struct chunk src;
2898 int i;
Willy Tarreau91861262007-10-17 17:06:05 +02002899
Willy Tarreau32091232014-05-16 13:52:00 +02002900 /* we have "via" which is the tracked server as described in the configuration,
2901 * and "ref" which is the checked server and the end of the chain.
2902 */
2903 via = sv->track ? sv->track : sv;
2904 ref = via;
2905 while (ref->track)
2906 ref = ref->track;
2907
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002908 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau9638efa2014-05-23 11:19:57 +02002909 static char *srv_hlt_st[10] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002910 "DOWN",
Willy Tarreau9638efa2014-05-23 11:19:57 +02002911 "DOWN (agent)",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002912 "DN %d/%d &uarr;",
2913 "UP %d/%d &darr;",
2914 "UP",
2915 "NOLB %d/%d &darr;",
2916 "NOLB",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002917 "DRAIN %d/%d &darr;",
2918 "DRAIN",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002919 "<i>no check</i>"
2920 };
Willy Tarreau91861262007-10-17 17:06:05 +02002921
Willy Tarreaua0066dd2014-05-16 11:25:16 +02002922 if (sv->admin & SRV_ADMF_MAINT)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002923 chunk_appendf(&trash, "<tr class=\"maintain\">");
2924 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002925 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002926 "<tr class=\"%s%d\">",
Willy Tarreauc93cd162014-05-13 15:54:22 +02002927 (sv->flags & SRV_F_BACKUP) ? "backup" : "active", state);
Willy Tarreau91861262007-10-17 17:06:05 +02002928
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002929 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002930 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002931 "<td><input type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
2932 sv->id);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002933
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002934 chunk_appendf(&trash,
2935 "<td class=ac><a name=\"%s/%s\"></a>%s"
2936 "<a class=lfsb href=\"#%s/%s\">%s</a>"
2937 "",
2938 px->id, sv->id,
2939 (flags & ST_SHLGNDS) ? "<u>" : "",
2940 px->id, sv->id, sv->id);
Willy Tarreau91861262007-10-17 17:06:05 +02002941
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002942 if (flags & ST_SHLGNDS) {
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002943 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002944
2945 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2946 case AF_INET:
2947 chunk_appendf(&trash, "IPv4: %s:%d, ", str, get_host_port(&sv->addr));
2948 break;
2949 case AF_INET6:
2950 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, get_host_port(&sv->addr));
2951 break;
2952 case AF_UNIX:
2953 chunk_appendf(&trash, "unix, ");
2954 break;
2955 case -1:
2956 chunk_appendf(&trash, "(%s), ", strerror(errno));
2957 break;
2958 default: /* address family not supported */
2959 break;
Willy Tarreau55bb8452007-10-17 18:44:57 +02002960 }
Willy Tarreau91861262007-10-17 17:06:05 +02002961
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002962 /* id */
2963 chunk_appendf(&trash, "id: %d", sv->puid);
Willy Tarreau91861262007-10-17 17:06:05 +02002964
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002965 /* cookie */
2966 if (sv->cookie) {
2967 chunk_appendf(&trash, ", cookie: '");
Willy Tarreau5031e6a2007-10-18 11:05:48 +02002968
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002969 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
2970 chunk_htmlencode(&trash, &src);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002971
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002972 chunk_appendf(&trash, "'");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002973 }
2974
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002975 chunk_appendf(&trash, "</div>");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002976 }
Willy Tarreau91861262007-10-17 17:06:05 +02002977
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002978 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002979 /* queue : current, max, limit */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002980 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002981 /* sessions rate : current, max, limit */
2982 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002983 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002984 (flags & ST_SHLGNDS) ? "</u>" : "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002985 U2H(sv->nbpend), U2H(sv->counters.nbpend_max), LIM2A(sv->maxqueue, "-"),
2986 U2H(read_freq_ctr(&sv->sess_per_sec)), U2H(sv->counters.sps_max));
Willy Tarreau91861262007-10-17 17:06:05 +02002987
Willy Tarreau466c9b52012-12-23 02:25:03 +01002988
2989 chunk_appendf(&trash,
2990 /* sessions: current, max, limit, total */
2991 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002992 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002993 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
2994 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002995 U2H(sv->cur_sess), U2H(sv->counters.cur_sess_max), LIM2A(sv->maxconn, "-"),
2996 U2H(sv->counters.cum_sess),
2997 U2H(sv->counters.cum_sess));
Willy Tarreau91861262007-10-17 17:06:05 +02002998
Willy Tarreau466c9b52012-12-23 02:25:03 +01002999 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
3000 if (px->mode == PR_MODE_HTTP) {
3001 unsigned long long tot;
3002 for (tot = i = 0; i < 6; i++)
3003 tot += sv->counters.p.http.rsp[i];
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003004
Willy Tarreau466c9b52012-12-23 02:25:03 +01003005 chunk_appendf(&trash,
3006 "<tr><th>Cum. HTTP responses:</th><td>%s</td></tr>"
3007 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3008 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3009 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3010 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3011 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3012 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
3013 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003014 U2H(tot),
3015 U2H(sv->counters.p.http.rsp[1]), tot ? (int)(100*sv->counters.p.http.rsp[1] / tot) : 0,
3016 U2H(sv->counters.p.http.rsp[2]), tot ? (int)(100*sv->counters.p.http.rsp[2] / tot) : 0,
3017 U2H(sv->counters.p.http.rsp[3]), tot ? (int)(100*sv->counters.p.http.rsp[3] / tot) : 0,
3018 U2H(sv->counters.p.http.rsp[4]), tot ? (int)(100*sv->counters.p.http.rsp[4] / tot) : 0,
3019 U2H(sv->counters.p.http.rsp[5]), tot ? (int)(100*sv->counters.p.http.rsp[5] / tot) : 0,
3020 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 +02003021 }
Willy Tarreau91861262007-10-17 17:06:05 +02003022
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003023 chunk_appendf(&trash, "<tr><th colspan=3>Avg over last 1024 success. conn.</th></tr>");
3024 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)));
3025 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)));
3026 if (px->mode == PR_MODE_HTTP)
3027 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)));
3028 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)));
3029
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003030 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01003031 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003032 /* sessions: lbtot, last */
3033 "<td>%s</td><td>%s</td>",
3034 U2H(sv->counters.cum_lbconn),
3035 human_time(srv_lastsession(sv), 1));
Willy Tarreau91861262007-10-17 17:06:05 +02003036
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003037 chunk_appendf(&trash,
3038 /* bytes : in, out */
3039 "<td>%s</td><td>%s</td>"
3040 /* denied: req, resp */
3041 "<td></td><td>%s</td>"
3042 /* errors : request, connect */
3043 "<td></td><td>%s</td>"
3044 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003045 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003046 /* warnings: retries, redispatches */
3047 "<td>%lld</td><td>%lld</td>"
3048 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003049 U2H(sv->counters.bytes_in), U2H(sv->counters.bytes_out),
3050 U2H(sv->counters.failed_secu),
3051 U2H(sv->counters.failed_conns),
3052 U2H(sv->counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003053 sv->counters.cli_aborts,
3054 sv->counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003055 sv->counters.retries, sv->counters.redispatches);
3056
3057 /* status, lest check */
3058 chunk_appendf(&trash, "<td class=ac>");
3059
Willy Tarreau20125212014-05-13 19:44:56 +02003060 if (sv->admin & SRV_ADMF_MAINT) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003061 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - sv->last_change, 1));
3062 chunk_appendf(&trash, "MAINT");
3063 }
Willy Tarreaucf2924b2014-05-23 12:15:15 +02003064 else if ((ref->agent.state & CHK_ST_ENABLED) && (ref->state == SRV_ST_STOPPED)) {
3065 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
Willy Tarreauac497072014-05-29 01:04:35 +02003066 /* DOWN (agent) */
3067 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 +02003068 }
Willy Tarreauff5ae352013-12-11 20:36:34 +01003069 else if (ref->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003070 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
3071 chunk_appendf(&trash,
3072 srv_hlt_st[state],
Willy Tarreau892337c2014-05-13 23:41:20 +02003073 (ref->state != SRV_ST_STOPPED) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
3074 (ref->state != SRV_ST_STOPPED) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreau55bb8452007-10-17 18:44:57 +02003075 }
Willy Tarreau91861262007-10-17 17:06:05 +02003076
Willy Tarreaucf2924b2014-05-23 12:15:15 +02003077 if ((sv->state == SRV_ST_STOPPED) &&
3078 ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) && !(sv->agent.health)) {
3079 chunk_appendf(&trash,
3080 "</td><td class=ac><u> %s%s",
3081 (sv->agent.state & CHK_ST_INPROGRESS) ? "* " : "",
3082 get_check_status_info(sv->agent.status));
3083
3084 if (sv->agent.status >= HCHK_STATUS_L57DATA)
3085 chunk_appendf(&trash, "/%d", sv->agent.code);
3086
3087 if (sv->agent.status >= HCHK_STATUS_CHECKED && sv->agent.duration >= 0)
3088 chunk_appendf(&trash, " in %lums", sv->agent.duration);
3089
3090 chunk_appendf(&trash, "<div class=tips>%s",
3091 get_check_status_description(sv->agent.status));
3092 if (*sv->agent.desc) {
3093 chunk_appendf(&trash, ": ");
3094 chunk_initlen(&src, sv->agent.desc, 0, strlen(sv->agent.desc));
3095 chunk_htmlencode(&trash, &src);
3096 }
3097 chunk_appendf(&trash, "</div></u>");
3098 }
3099 else if ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003100 chunk_appendf(&trash,
3101 "</td><td class=ac><u> %s%s",
Willy Tarreau2c115e52013-12-11 19:41:16 +01003102 (sv->check.state & CHK_ST_INPROGRESS) ? "* " : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003103 get_check_status_info(sv->check.status));
3104
3105 if (sv->check.status >= HCHK_STATUS_L57DATA)
3106 chunk_appendf(&trash, "/%d", sv->check.code);
3107
3108 if (sv->check.status >= HCHK_STATUS_CHECKED && sv->check.duration >= 0)
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003109 chunk_appendf(&trash, " in %lums", sv->check.duration);
3110
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003111 chunk_appendf(&trash, "<div class=tips>%s",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003112 get_check_status_description(sv->check.status));
3113 if (*sv->check.desc) {
3114 chunk_appendf(&trash, ": ");
3115 chunk_initlen(&src, sv->check.desc, 0, strlen(sv->check.desc));
3116 chunk_htmlencode(&trash, &src);
3117 }
3118 chunk_appendf(&trash, "</div></u>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003119 }
3120 else
3121 chunk_appendf(&trash, "</td><td>");
3122
3123 chunk_appendf(&trash,
3124 /* weight */
3125 "</td><td class=ac>%d</td>"
3126 /* act, bck */
3127 "<td class=ac>%s</td><td class=ac>%s</td>"
3128 "",
3129 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreauc93cd162014-05-13 15:54:22 +02003130 (sv->flags & SRV_F_BACKUP) ? "-" : "Y",
3131 (sv->flags & SRV_F_BACKUP) ? "Y" : "-");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003132
3133 /* check failures: unique, fatal, down time */
Willy Tarreauff5ae352013-12-11 20:36:34 +01003134 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003135 chunk_appendf(&trash, "<td><u>%lld", ref->counters.failed_checks);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003136
3137 if (ref->observe)
3138 chunk_appendf(&trash, "/%lld", ref->counters.failed_hana);
3139
3140 chunk_appendf(&trash,
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003141 "<div class=tips>Failed Health Checks%s</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003142 "<td>%lld</td><td>%s</td>"
3143 "",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003144 ref->observe ? "/Health Analyses" : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003145 ref->counters.down_trans, human_time(srv_downtime(sv), 1));
3146 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02003147 else if (!(sv->admin & SRV_ADMF_FMAINT) && sv != ref) {
3148 /* tracking a server */
3149 chunk_appendf(&trash,
3150 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s</a></td>",
Willy Tarreau32091232014-05-16 13:52:00 +02003151 via->proxy->id, via->id, via->proxy->id, via->id);
Willy Tarreauf4659942013-11-28 10:50:06 +01003152 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003153 else
3154 chunk_appendf(&trash, "<td colspan=3></td>");
3155
3156 /* throttle */
Willy Tarreau892337c2014-05-13 23:41:20 +02003157 if (sv->state == SRV_ST_STARTING && !server_is_draining(sv))
Willy Tarreaud32c3992013-11-21 15:30:45 +01003158 chunk_appendf(&trash, "<td class=ac>%d %%</td></tr>\n", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003159 else
3160 chunk_appendf(&trash, "<td class=ac>-</td></tr>\n");
3161 }
3162 else { /* CSV mode */
Willy Tarreau9638efa2014-05-23 11:19:57 +02003163 static char *srv_hlt_st[10] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003164 "DOWN,",
Willy Tarreau9638efa2014-05-23 11:19:57 +02003165 "DOWN (agent),",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003166 "DOWN %d/%d,",
3167 "UP %d/%d,",
3168 "UP,",
3169 "NOLB %d/%d,",
3170 "NOLB,",
Simon Horman8c3d0be2013-11-25 10:46:40 +09003171 "DRAIN %d/%d,",
3172 "DRAIN,",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003173 "no check,"
3174 };
3175
3176 chunk_appendf(&trash,
3177 /* pxid, name */
3178 "%s,%s,"
3179 /* queue : current, max */
3180 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003181 /* sessions : current, max, limit, total */
3182 "%d,%d,%s,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003183 /* bytes : in, out */
3184 "%lld,%lld,"
3185 /* denied: req, resp */
3186 ",%lld,"
3187 /* errors : request, connect, response */
3188 ",%lld,%lld,"
3189 /* warnings: retries, redispatches */
3190 "%lld,%lld,"
3191 "",
3192 px->id, sv->id,
3193 sv->nbpend, sv->counters.nbpend_max,
Willy Tarreau56adcf22012-12-23 18:00:29 +01003194 sv->cur_sess, sv->counters.cur_sess_max, LIM2A(sv->maxconn, ""), sv->counters.cum_sess,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003195 sv->counters.bytes_in, sv->counters.bytes_out,
3196 sv->counters.failed_secu,
3197 sv->counters.failed_conns, sv->counters.failed_resp,
3198 sv->counters.retries, sv->counters.redispatches);
3199
3200 /* status */
Willy Tarreaua0066dd2014-05-16 11:25:16 +02003201 if (sv->admin & SRV_ADMF_IMAINT)
Willy Tarreau32091232014-05-16 13:52:00 +02003202 chunk_appendf(&trash, "MAINT (via %s/%s),", via->proxy->id, via->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02003203 else if (sv->admin & SRV_ADMF_MAINT)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003204 chunk_appendf(&trash, "MAINT,");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003205 else
3206 chunk_appendf(&trash,
3207 srv_hlt_st[state],
Willy Tarreau892337c2014-05-13 23:41:20 +02003208 (ref->state != SRV_ST_STOPPED) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
3209 (ref->state != SRV_ST_STOPPED) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003210
3211 chunk_appendf(&trash,
3212 /* weight, active, backup */
3213 "%d,%d,%d,"
3214 "",
3215 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreauc93cd162014-05-13 15:54:22 +02003216 (sv->flags & SRV_F_BACKUP) ? 0 : 1,
3217 (sv->flags & SRV_F_BACKUP) ? 1 : 0);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003218
3219 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreauff5ae352013-12-11 20:36:34 +01003220 if (sv->check.state & CHK_ST_ENABLED)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003221 chunk_appendf(&trash,
3222 "%lld,%lld,%d,%d,",
3223 sv->counters.failed_checks, sv->counters.down_trans,
3224 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
3225 else
3226 chunk_appendf(&trash, ",,,,");
3227
3228 /* queue limit, pid, iid, sid, */
3229 chunk_appendf(&trash,
3230 "%s,"
3231 "%d,%d,%d,",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003232 LIM2A(sv->maxqueue, ""),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003233 relative_pid, px->uuid, sv->puid);
3234
3235 /* throttle */
Willy Tarreau892337c2014-05-13 23:41:20 +02003236 if (sv->state == SRV_ST_STARTING && !server_is_draining(sv))
Willy Tarreaud32c3992013-11-21 15:30:45 +01003237 chunk_appendf(&trash, "%d", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003238
3239 /* sessions: lbtot */
3240 chunk_appendf(&trash, ",%lld,", sv->counters.cum_lbconn);
3241
3242 /* tracked */
3243 if (sv->track)
3244 chunk_appendf(&trash, "%s/%s,",
3245 sv->track->proxy->id, sv->track->id);
3246 else
3247 chunk_appendf(&trash, ",");
3248
3249 /* type */
3250 chunk_appendf(&trash, "%d,", STATS_TYPE_SV);
3251
3252 /* rate */
3253 chunk_appendf(&trash, "%u,,%u,",
3254 read_freq_ctr(&sv->sess_per_sec),
3255 sv->counters.sps_max);
3256
Willy Tarreauff5ae352013-12-11 20:36:34 +01003257 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003258 /* check_status */
3259 chunk_appendf(&trash, "%s,", get_check_status_info(sv->check.status));
3260
3261 /* check_code */
3262 if (sv->check.status >= HCHK_STATUS_L57DATA)
3263 chunk_appendf(&trash, "%u,", sv->check.code);
3264 else
3265 chunk_appendf(&trash, ",");
3266
3267 /* check_duration */
3268 if (sv->check.status >= HCHK_STATUS_CHECKED)
3269 chunk_appendf(&trash, "%lu,", sv->check.duration);
3270 else
3271 chunk_appendf(&trash, ",");
3272
3273 }
3274 else
3275 chunk_appendf(&trash, ",,,");
3276
3277 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3278 if (px->mode == PR_MODE_HTTP) {
3279 for (i=1; i<6; i++)
3280 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[i]);
3281
3282 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[0]);
3283 }
3284 else
3285 chunk_appendf(&trash, ",,,,,,");
3286
3287 /* failed health analyses */
3288 chunk_appendf(&trash, "%lld,", sv->counters.failed_hana);
3289
3290 /* requests : req_rate, req_rate_max, req_tot, */
3291 chunk_appendf(&trash, ",,,");
3292
3293 /* errors: cli_aborts, srv_aborts */
3294 chunk_appendf(&trash, "%lld,%lld,",
3295 sv->counters.cli_aborts, sv->counters.srv_aborts);
3296
3297 /* compression: in, out, bypassed, comp_rsp */
3298 chunk_appendf(&trash, ",,,,");
3299
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003300 /* lastsess */
3301 chunk_appendf(&trash, "%d,", srv_lastsession(sv));
3302
Willy Tarreaua28df3e2014-06-16 16:40:14 +02003303 /* capture of last check and agent statuses */
3304 chunk_appendf(&trash, "%s,", ((sv->check.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) ? cstr(sv->check.desc) : "");
3305 chunk_appendf(&trash, "%s,", ((sv->agent.state & (CHK_ST_ENABLED|CHK_ST_PAUSED)) == CHK_ST_ENABLED) ? cstr(sv->agent.desc) : "");
3306
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003307 /* qtime, ctime, rtime, ttime, */
3308 chunk_appendf(&trash, "%u,%u,%u,%u,",
3309 swrate_avg(sv->counters.q_time, TIME_STATS_SAMPLES),
3310 swrate_avg(sv->counters.c_time, TIME_STATS_SAMPLES),
3311 swrate_avg(sv->counters.d_time, TIME_STATS_SAMPLES),
3312 swrate_avg(sv->counters.t_time, TIME_STATS_SAMPLES));
3313
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003314 /* finish with EOL */
3315 chunk_appendf(&trash, "\n");
3316 }
3317 return 1;
3318}
3319
3320/* Dumps a line for backend <px> to the trash for and uses the state from stream
3321 * interface <si> and stats flags <flags>. The caller is responsible for clearing
3322 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
3323 */
3324static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px, int flags)
3325{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003326 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003327 struct chunk src;
3328 int i;
3329
3330 if (!(px->cap & PR_CAP_BE))
3331 return 0;
3332
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003333 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_BE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003334 return 0;
3335
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003336 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003337 chunk_appendf(&trash, "<tr class=\"backend\">");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003338 if (px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003339 /* Column sub-heading for Enable or Disable server */
3340 chunk_appendf(&trash, "<td></td>");
3341 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003342 chunk_appendf(&trash,
3343 "<td class=ac>"
3344 /* name */
3345 "%s<a name=\"%s/Backend\"></a>"
3346 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
3347 "",
3348 (flags & ST_SHLGNDS)?"<u>":"",
3349 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003350
3351 if (flags & ST_SHLGNDS) {
3352 /* balancing */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003353 chunk_appendf(&trash, "<div class=tips>balancing: %s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003354 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
3355
3356 /* cookie */
3357 if (px->cookie_name) {
3358 chunk_appendf(&trash, ", cookie: '");
3359 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
3360 chunk_htmlencode(&trash, &src);
3361 chunk_appendf(&trash, "'");
3362 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003363 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003364 }
3365
3366 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003367 "%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003368 /* queue : current, max */
3369 "<td>%s</td><td>%s</td><td></td>"
3370 /* sessions rate : current, max, limit */
3371 "<td>%s</td><td>%s</td><td></td>"
3372 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003373 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003374 U2H(px->nbpend) /* or px->totpend ? */, U2H(px->be_counters.nbpend_max),
3375 U2H(read_freq_ctr(&px->be_sess_per_sec)), U2H(px->be_counters.sps_max));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003376
3377 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003378 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003379 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003380 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003381 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003382 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003383 U2H(px->beconn), U2H(px->be_counters.conn_max), U2H(px->fullconn),
3384 U2H(px->be_counters.cum_conn),
3385 U2H(px->be_counters.cum_conn));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003386
Willy Tarreau466c9b52012-12-23 02:25:03 +01003387 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003388 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01003389 chunk_appendf(&trash,
3390 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
3391 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
3392 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
3393 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
3394 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
3395 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
3396 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
3397 "<tr><th>- other responses:</th><td>%s</td></tr>"
3398 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003399 "<tr><th colspan=3>Avg over last 1024 success. conn.</th></tr>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003400 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003401 U2H(px->be_counters.p.http.cum_req),
3402 U2H(px->be_counters.p.http.rsp[1]),
3403 U2H(px->be_counters.p.http.rsp[2]),
3404 U2H(px->be_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003405 px->be_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01003406 (int)(100*px->be_counters.p.http.comp_rsp/px->be_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01003407 U2H(px->be_counters.p.http.rsp[3]),
3408 U2H(px->be_counters.p.http.rsp[4]),
3409 U2H(px->be_counters.p.http.rsp[5]),
3410 U2H(px->be_counters.p.http.rsp[0]),
3411 U2H(px->be_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003412 }
3413
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003414 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)));
3415 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)));
3416 if (px->mode == PR_MODE_HTTP)
3417 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)));
3418 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)));
3419
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003420 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01003421 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003422 /* sessions: lbtot, last */
3423 "<td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003424 /* bytes: in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003425 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003426 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003427 U2H(px->be_counters.cum_lbconn),
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003428 human_time(be_lastsession(px), 1),
Willy Tarreau56adcf22012-12-23 18:00:29 +01003429 U2H(px->be_counters.bytes_in));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003430
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003431 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003432 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003433 "<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 +01003434 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003435 U2H(px->be_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003436 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp,
3437 px->be_counters.comp_in ?
3438 (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 +01003439 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "</u>":"");
3440
3441 chunk_appendf(&trash,
3442 /* denied: req, resp */
3443 "<td>%s</td><td>%s</td>"
3444 /* errors : request, connect */
3445 "<td></td><td>%s</td>"
3446 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003447 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003448 /* warnings: retries, redispatches */
3449 "<td>%lld</td><td>%lld</td>"
3450 /* backend status: reflect backend status (up/down): we display UP
3451 * if the backend has known working servers or if it has no server at
3452 * all (eg: for stats). Then we display the total weight, number of
3453 * active and backups. */
3454 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
3455 "<td class=ac>%d</td><td class=ac>%d</td>"
3456 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003457 U2H(px->be_counters.denied_req), U2H(px->be_counters.denied_resp),
3458 U2H(px->be_counters.failed_conns),
3459 U2H(px->be_counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003460 px->be_counters.cli_aborts,
3461 px->be_counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003462 px->be_counters.retries, px->be_counters.redispatches,
3463 human_time(now.tv_sec - px->last_change, 1),
3464 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
3465 "<font color=\"red\"><b>DOWN</b></font>",
3466 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3467 px->srv_act, px->srv_bck);
3468
3469 chunk_appendf(&trash,
3470 /* rest of backend: nothing, down transitions, total downtime, throttle */
3471 "<td class=ac>&nbsp;</td><td>%d</td>"
3472 "<td>%s</td>"
3473 "<td></td>"
3474 "</tr>",
3475 px->down_trans,
3476 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
3477 }
3478 else { /* CSV mode */
3479 chunk_appendf(&trash,
3480 /* pxid, name */
3481 "%s,BACKEND,"
3482 /* queue : current, max */
3483 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003484 /* sessions : current, max, limit, total */
3485 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003486 /* bytes : in, out */
3487 "%lld,%lld,"
3488 /* denied: req, resp */
3489 "%lld,%lld,"
3490 /* errors : request, connect, response */
3491 ",%lld,%lld,"
3492 /* warnings: retries, redispatches */
3493 "%lld,%lld,"
3494 /* backend status: reflect backend status (up/down): we display UP
3495 * if the backend has known working servers or if it has no server at
3496 * all (eg: for stats). Then we display the total weight, number of
3497 * active and backups. */
3498 "%s,"
3499 "%d,%d,%d,"
3500 /* rest of backend: nothing, down transitions, last change, total downtime */
3501 ",%d,%d,%d,,"
3502 /* pid, iid, sid, throttle, lbtot, tracked, type */
3503 "%d,%d,0,,%lld,,%d,"
3504 /* rate, rate_lim, rate_max, */
3505 "%u,,%u,"
3506 /* check_status, check_code, check_duration */
3507 ",,,",
3508 px->id,
3509 px->nbpend /* or px->totpend ? */, px->be_counters.nbpend_max,
3510 px->beconn, px->be_counters.conn_max, px->fullconn, px->be_counters.cum_conn,
3511 px->be_counters.bytes_in, px->be_counters.bytes_out,
3512 px->be_counters.denied_req, px->be_counters.denied_resp,
3513 px->be_counters.failed_conns, px->be_counters.failed_resp,
3514 px->be_counters.retries, px->be_counters.redispatches,
3515 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
3516 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3517 px->srv_act, px->srv_bck,
3518 px->down_trans, (int)(now.tv_sec - px->last_change),
3519 px->srv?be_downtime(px):0,
3520 relative_pid, px->uuid,
3521 px->be_counters.cum_lbconn, STATS_TYPE_BE,
3522 read_freq_ctr(&px->be_sess_per_sec),
3523 px->be_counters.sps_max);
3524
3525 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3526 if (px->mode == PR_MODE_HTTP) {
3527 for (i=1; i<6; i++)
3528 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[i]);
3529 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[0]);
3530 }
3531 else
3532 chunk_appendf(&trash, ",,,,,,");
3533
3534 /* failed health analyses */
3535 chunk_appendf(&trash, ",");
3536
3537 /* requests : req_rate, req_rate_max, req_tot, */
3538 chunk_appendf(&trash, ",,,");
3539
3540 /* errors: cli_aborts, srv_aborts */
3541 chunk_appendf(&trash, "%lld,%lld,",
3542 px->be_counters.cli_aborts, px->be_counters.srv_aborts);
3543
3544 /* compression: in, out, bypassed */
3545 chunk_appendf(&trash, "%lld,%lld,%lld,",
3546 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp);
3547
3548 /* compression: comp_rsp */
3549 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.comp_rsp);
3550
Willy Tarreaua28df3e2014-06-16 16:40:14 +02003551 /* lastsess, last_chk, last_agt, */
3552 chunk_appendf(&trash, "%d,,,", be_lastsession(px));
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003553
Willy Tarreauf5b1cc32014-06-17 12:20:59 +02003554 /* qtime, ctime, rtime, ttime, */
3555 chunk_appendf(&trash, "%u,%u,%u,%u,",
3556 swrate_avg(px->be_counters.q_time, TIME_STATS_SAMPLES),
3557 swrate_avg(px->be_counters.c_time, TIME_STATS_SAMPLES),
3558 swrate_avg(px->be_counters.d_time, TIME_STATS_SAMPLES),
3559 swrate_avg(px->be_counters.t_time, TIME_STATS_SAMPLES));
3560
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003561 /* finish with EOL */
3562 chunk_appendf(&trash, "\n");
3563 }
3564 return 1;
3565}
3566
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003567/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003568 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003569 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003570 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003571static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003572{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003573 struct appctx *appctx = __objt_appctx(si->end);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003574 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
3575
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003576 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003577 /* A form to enable/disable this proxy servers */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003578
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003579 /* 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 +02003580 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003581 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003582 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003583 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3584 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003585 }
3586
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003587 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003588 "<form action=\"%s%s%s%s\" method=\"post\">",
3589 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003590 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3591 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003592 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003593 }
3594
3595 /* print a new table */
3596 chunk_appendf(&trash,
3597 "<table class=\"tbl\" width=\"100%%\">\n"
3598 "<tr class=\"titre\">"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003599 "<th class=\"pxname\" width=\"10%%\">");
3600
3601 chunk_appendf(&trash,
3602 "<a name=\"%s\"></a>%s"
3603 "<a class=px href=\"#%s\">%s</a>",
3604 px->id,
3605 (uri->flags & ST_SHLGNDS) ? "<u>":"",
3606 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003607
3608 if (uri->flags & ST_SHLGNDS) {
3609 /* cap, mode, id */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003610 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003611 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
3612 px->uuid);
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003613 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003614 }
3615
3616 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003617 "%s</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003618 "<th class=\"%s\" width=\"90%%\">%s</th>"
3619 "</tr>\n"
3620 "</table>\n"
3621 "<table class=\"tbl\" width=\"100%%\">\n"
3622 "<tr class=\"titre\">",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003623 (uri->flags & ST_SHLGNDS) ? "</u>":"",
3624 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
3625
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003626 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003627 /* Column heading for Enable or Disable server */
3628 chunk_appendf(&trash, "<th rowspan=2 width=1></th>");
Willy Tarreau91861262007-10-17 17:06:05 +02003629 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003630
3631 chunk_appendf(&trash,
3632 "<th rowspan=2></th>"
3633 "<th colspan=3>Queue</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003634 "<th colspan=3>Session rate</th><th colspan=6>Sessions</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003635 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
3636 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
3637 "<th colspan=9>Server</th>"
3638 "</tr>\n"
3639 "<tr class=\"titre\">"
3640 "<th>Cur</th><th>Max</th><th>Limit</th>"
3641 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003642 "<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 +01003643 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
3644 "<th>Resp</th><th>Retr</th><th>Redis</th>"
3645 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
3646 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
3647 "<th>Thrtle</th>\n"
3648 "</tr>");
Willy Tarreau91861262007-10-17 17:06:05 +02003649}
3650
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003651/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003652 * stream interface <si>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003653 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003654static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003655{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003656 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003657 chunk_appendf(&trash, "</table>");
3658
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003659 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003660 /* close the form used to enable/disable this proxy servers */
3661 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003662 "Choose the action to perform on the checked servers : "
3663 "<select name=action>"
3664 "<option value=\"\"></option>"
Willy Tarreaued7df902014-05-22 18:04:49 +02003665 "<option value=\"ready\">Set state to READY</option>"
3666 "<option value=\"drain\">Set state to DRAIN</option>"
3667 "<option value=\"maint\">set state to MAINT</option>"
Willy Tarreau248a60e2014-05-23 14:59:48 +02003668 "<option value=\"dhlth\">Health: disable checks</option>"
3669 "<option value=\"ehlth\">Health: enable checks</option>"
3670 "<option value=\"hrunn\">Health: force UP</option>"
3671 "<option value=\"hnolb\">Health: force NOLB</option>"
3672 "<option value=\"hdown\">Health: force DOWN</option>"
3673 "<option value=\"dagent\">Agent: disable checks</option>"
3674 "<option value=\"eagent\">Agent: enable checks</option>"
3675 "<option value=\"arunn\">Agent: force UP</option>"
3676 "<option value=\"adown\">Agent: force DOWN</option>"
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003677 "<option value=\"shutdown\">Kill Sessions</option>"
3678 "</select>"
3679 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
3680 "&nbsp;<input type=\"submit\" value=\"Apply\">"
3681 "</form>",
3682 px->uuid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003683 }
3684
3685 chunk_appendf(&trash, "<p>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003686}
Willy Tarreau91861262007-10-17 17:06:05 +02003687
3688/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003689 * Dumps statistics for a proxy. The output is sent to the stream interface's
3690 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3691 * buffer space, or non-zero if everything completed. This function is used
3692 * both by the CLI and the HTTP entry points, and is able to dump the output
3693 * in HTML or CSV formats. If the later, <uri> must be NULL.
Willy Tarreau91861262007-10-17 17:06:05 +02003694 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003695static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02003696{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003697 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02003698 struct session *s = session_from_task(si->owner);
Willy Tarreau7421efb2012-07-02 15:11:27 +02003699 struct channel *rep = si->ib;
Willy Tarreau44267702011-10-28 15:35:33 +02003700 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003701 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02003702
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003703 chunk_reset(&trash);
Willy Tarreau91861262007-10-17 17:06:05 +02003704
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003705 switch (appctx->ctx.stats.px_st) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003706 case STAT_PX_ST_INIT:
Willy Tarreau91861262007-10-17 17:06:05 +02003707 /* we are on a new proxy */
Willy Tarreau91861262007-10-17 17:06:05 +02003708 if (uri && uri->scope) {
3709 /* we have a limited scope, we have to check the proxy name */
3710 struct stat_scope *scope;
3711 int len;
3712
3713 len = strlen(px->id);
3714 scope = uri->scope;
3715
3716 while (scope) {
3717 /* match exact proxy name */
3718 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3719 break;
3720
3721 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02003722 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02003723 break;
3724 scope = scope->next;
3725 }
3726
3727 /* proxy name not found : don't dump anything */
3728 if (scope == NULL)
3729 return 1;
3730 }
3731
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003732 /* if the user has requested a limited output and the proxy
3733 * name does not match, skip it.
3734 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003735 if (appctx->ctx.stats.scope_len &&
3736 strnistr(px->id, strlen(px->id), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len) == NULL)
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003737 return 1;
3738
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003739 if ((appctx->ctx.stats.flags & STAT_BOUND) &&
3740 (appctx->ctx.stats.iid != -1) &&
3741 (px->uuid != appctx->ctx.stats.iid))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003742 return 1;
3743
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003744 appctx->ctx.stats.px_st = STAT_PX_ST_TH;
Willy Tarreau91861262007-10-17 17:06:05 +02003745 /* fall through */
3746
Willy Tarreau295a8372011-03-10 11:25:07 +01003747 case STAT_PX_ST_TH:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003748 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003749 stats_dump_html_px_hdr(si, px, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003750 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau55bb8452007-10-17 18:44:57 +02003751 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003752 }
Willy Tarreau91861262007-10-17 17:06:05 +02003753
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003754 appctx->ctx.stats.px_st = STAT_PX_ST_FE;
Willy Tarreau91861262007-10-17 17:06:05 +02003755 /* fall through */
3756
Willy Tarreau295a8372011-03-10 11:25:07 +01003757 case STAT_PX_ST_FE:
Willy Tarreau91861262007-10-17 17:06:05 +02003758 /* print the frontend */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003759 if (stats_dump_fe_stats(si, px))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003760 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003761 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02003762
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003763 appctx->ctx.stats.l = px->conf.listeners.n;
3764 appctx->ctx.stats.px_st = STAT_PX_ST_LI;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003765 /* fall through */
3766
Willy Tarreau295a8372011-03-10 11:25:07 +01003767 case STAT_PX_ST_LI:
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003768 /* stats.l has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003769 for (; appctx->ctx.stats.l != &px->conf.listeners; appctx->ctx.stats.l = l->by_fe.n) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003770 if (buffer_almost_full(rep->buf)) {
3771 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003772 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003773 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003774
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003775 l = LIST_ELEM(appctx->ctx.stats.l, struct listener *, by_fe);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003776 if (!l->counters)
3777 continue;
3778
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003779 if (appctx->ctx.stats.flags & STAT_BOUND) {
3780 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SO)))
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003781 break;
3782
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003783 if (appctx->ctx.stats.sid != -1 && l->luid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003784 continue;
3785 }
3786
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003787 /* print the frontend */
3788 if (stats_dump_li_stats(si, px, l, uri ? uri->flags : 0))
3789 if (bi_putchk(rep, &trash) == -1)
3790 return 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003791 }
3792
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003793 appctx->ctx.stats.sv = px->srv; /* may be NULL */
3794 appctx->ctx.stats.px_st = STAT_PX_ST_SV;
Willy Tarreau91861262007-10-17 17:06:05 +02003795 /* fall through */
3796
Willy Tarreau295a8372011-03-10 11:25:07 +01003797 case STAT_PX_ST_SV:
Willy Tarreau91861262007-10-17 17:06:05 +02003798 /* stats.sv has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003799 for (; appctx->ctx.stats.sv != NULL; appctx->ctx.stats.sv = sv->next) {
Willy Tarreau9638efa2014-05-23 11:19:57 +02003800 int sv_state;
Willy Tarreau91861262007-10-17 17:06:05 +02003801
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003802 if (buffer_almost_full(rep->buf)) {
3803 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003804 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003805 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003806
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003807 sv = appctx->ctx.stats.sv;
Willy Tarreau91861262007-10-17 17:06:05 +02003808
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003809 if (appctx->ctx.stats.flags & STAT_BOUND) {
3810 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SV)))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003811 break;
3812
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003813 if (appctx->ctx.stats.sid != -1 && sv->puid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003814 continue;
3815 }
3816
Willy Tarreau32091232014-05-16 13:52:00 +02003817 svs = sv;
3818 while (svs->track)
3819 svs = svs->track;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003820
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003821 if (sv->state == SRV_ST_RUNNING || sv->state == SRV_ST_STARTING) {
3822 /* server is UP. The possibilities are :
Willy Tarreau9638efa2014-05-23 11:19:57 +02003823 * - UP, draining, going down => state = 7
3824 * - UP, going down => state = 3
3825 * - UP, draining => state = 8
3826 * - UP, checked => state = 4
3827 * - UP, not checked nor tracked => state = 9
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003828 */
3829
3830 if ((svs->check.state & CHK_ST_ENABLED) &&
3831 (svs->check.health < svs->check.rise + svs->check.fall - 1))
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003832 sv_state = 3;
Willy Tarreau9638efa2014-05-23 11:19:57 +02003833 else
3834 sv_state = 4;
Willy Tarreau2ea81932007-11-30 12:04:38 +01003835
Willy Tarreauefe28222014-05-21 17:13:13 +02003836 if (server_is_draining(sv))
Simon Horman8c3d0be2013-11-25 10:46:40 +09003837 sv_state += 4;
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003838
Willy Tarreau9638efa2014-05-23 11:19:57 +02003839 if (sv_state == 4 && !(svs->check.state & CHK_ST_ENABLED))
3840 sv_state = 9; /* unchecked UP */
Willy Tarreau2ea81932007-11-30 12:04:38 +01003841 }
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003842 else if (sv->state == SRV_ST_STOPPING) {
3843 if ((!(sv->check.state & CHK_ST_ENABLED) && !sv->track) ||
3844 (svs->check.health == svs->check.rise + svs->check.fall - 1))
Willy Tarreau9638efa2014-05-23 11:19:57 +02003845 sv_state = 6; /* NOLB */
Willy Tarreau91861262007-10-17 17:06:05 +02003846 else
Willy Tarreau9638efa2014-05-23 11:19:57 +02003847 sv_state = 5; /* NOLB going down */
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003848 }
3849 else { /* stopped */
Willy Tarreau9638efa2014-05-23 11:19:57 +02003850 if ((svs->agent.state & CHK_ST_ENABLED) && !svs->agent.health)
3851 sv_state = 1; /* DOWN (agent) */
3852 else if ((svs->check.state & CHK_ST_ENABLED) && !svs->check.health)
Willy Tarreau91861262007-10-17 17:06:05 +02003853 sv_state = 0; /* DOWN */
Willy Tarreau9638efa2014-05-23 11:19:57 +02003854 else if ((svs->agent.state & CHK_ST_ENABLED) || (svs->check.state & CHK_ST_ENABLED))
3855 sv_state = 2; /* going up */
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003856 else
Willy Tarreau9638efa2014-05-23 11:19:57 +02003857 sv_state = 0; /* DOWN, unchecked */
Willy Tarreauf4e38b32014-05-21 15:04:05 +02003858 }
Willy Tarreau91861262007-10-17 17:06:05 +02003859
Willy Tarreau9638efa2014-05-23 11:19:57 +02003860 if (((sv_state <= 1) || (sv->admin & SRV_ADMF_MAINT)) && (appctx->ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02003861 /* do not report servers which are DOWN */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003862 appctx->ctx.stats.sv = sv->next;
Willy Tarreau91861262007-10-17 17:06:05 +02003863 continue;
3864 }
3865
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003866 if (stats_dump_sv_stats(si, px, uri ? uri->flags : 0, sv, sv_state))
3867 if (bi_putchk(rep, &trash) == -1)
3868 return 0;
3869 } /* for sv */
Cyril Bonté474be412010-10-12 00:14:36 +02003870
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003871 appctx->ctx.stats.px_st = STAT_PX_ST_BE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003872 /* fall through */
Cyril Bonté70be45d2010-10-12 00:14:35 +02003873
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003874 case STAT_PX_ST_BE:
3875 /* print the backend */
3876 if (stats_dump_be_stats(si, px, uri ? uri->flags : 0))
3877 if (bi_putchk(rep, &trash) == -1)
3878 return 0;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003879
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003880 appctx->ctx.stats.px_st = STAT_PX_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003881 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003882
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003883 case STAT_PX_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003884 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003885 stats_dump_html_px_end(si, px);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003886 if (bi_putchk(rep, &trash) == -1)
3887 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003888 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003889
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003890 appctx->ctx.stats.px_st = STAT_PX_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003891 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003892
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003893 case STAT_PX_ST_FIN:
3894 return 1;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003895
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003896 default:
3897 /* unknown state, we should put an abort() here ! */
3898 return 1;
3899 }
3900}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003901
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003902/* Dumps the HTTP stats head block to the trash for and uses the per-uri
3903 * parameters <uri>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003904 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003905static void stats_dump_html_head(struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003906{
3907 /* WARNING! This must fit in the first buffer !!! */
3908 chunk_appendf(&trash,
3909 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3910 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3911 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3912 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3913 "<style type=\"text/css\"><!--\n"
3914 "body {"
3915 " font-family: arial, helvetica, sans-serif;"
3916 " font-size: 12px;"
3917 " font-weight: normal;"
3918 " color: black;"
3919 " background: white;"
3920 "}\n"
3921 "th,td {"
3922 " font-size: 10px;"
3923 "}\n"
3924 "h1 {"
3925 " font-size: x-large;"
3926 " margin-bottom: 0.5em;"
3927 "}\n"
3928 "h2 {"
3929 " font-family: helvetica, arial;"
3930 " font-size: x-large;"
3931 " font-weight: bold;"
3932 " font-style: italic;"
3933 " color: #6020a0;"
3934 " margin-top: 0em;"
3935 " margin-bottom: 0em;"
3936 "}\n"
3937 "h3 {"
3938 " font-family: helvetica, arial;"
3939 " font-size: 16px;"
3940 " font-weight: bold;"
3941 " color: #b00040;"
3942 " background: #e8e8d0;"
3943 " margin-top: 0em;"
3944 " margin-bottom: 0em;"
3945 "}\n"
3946 "li {"
3947 " margin-top: 0.25em;"
3948 " margin-right: 2em;"
3949 "}\n"
3950 ".hr {margin-top: 0.25em;"
3951 " border-color: black;"
3952 " border-bottom-style: solid;"
3953 "}\n"
3954 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3955 ".total {background: #20D0D0;color: #ffff80;}\n"
3956 ".frontend {background: #e8e8d0;}\n"
3957 ".socket {background: #d0d0d0;}\n"
3958 ".backend {background: #e8e8d0;}\n"
3959 ".active0 {background: #ff9090;}\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02003960 ".active1 {background: #ff9090;}\n"
3961 ".active2 {background: #ffd020;}\n"
3962 ".active3 {background: #ffffa0;}\n"
3963 ".active4 {background: #c0ffc0;}\n"
3964 ".active5 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
3965 ".active6 {background: #20a0ff;}\n" /* NOLB state shows different to be detected */
3966 ".active7 {background: #ffffa0;}\n" /* DRAIN going down = same as going down */
3967 ".active8 {background: #20a0FF;}\n" /* DRAIN must be detected (weight=0) */
3968 ".active9 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003969 ".backup0 {background: #ff9090;}\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02003970 ".backup1 {background: #ff9090;}\n"
3971 ".backup2 {background: #ff80ff;}\n"
3972 ".backup3 {background: #c060ff;}\n"
3973 ".backup4 {background: #b0d0ff;}\n"
3974 ".backup5 {background: #c060ff;}\n" /* NOLB state shows same as going down */
3975 ".backup6 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
3976 ".backup7 {background: #c060ff;}\n"
3977 ".backup8 {background: #cc9900;}\n"
3978 ".backup9 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003979 ".maintain {background: #c07820;}\n"
3980 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3981 "\n"
3982 "a.px:link {color: #ffff40; text-decoration: none;}"
3983 "a.px:visited {color: #ffff40; text-decoration: none;}"
3984 "a.px:hover {color: #ffffff; text-decoration: none;}"
3985 "a.lfsb:link {color: #000000; text-decoration: none;}"
3986 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3987 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3988 "\n"
3989 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3990 "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"
3991 "table.tbl td.ac { text-align: center;}\n"
3992 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3993 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3994 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3995 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3996 "\n"
3997 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3998 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3999 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreau466c9b52012-12-23 02:25:03 +01004000 "table.det { border-collapse: collapse; border-style: none; }\n"
4001 "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 +01004002 "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 +01004003 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02004004 "div.tips {\n"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01004005 " display:block;\n"
4006 " visibility:hidden;\n"
4007 " z-index:2147483647;\n"
4008 " position:absolute;\n"
4009 " padding:2px 4px 3px;\n"
4010 " background:#f0f060; color:#000000;\n"
4011 " border:1px solid #7040c0;\n"
4012 " white-space:nowrap;\n"
4013 " font-style:normal;font-size:11px;font-weight:normal;\n"
4014 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
4015 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
4016 "}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02004017 "u:hover div.tips {visibility:visible;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004018 "-->\n"
4019 "</style></head>\n",
4020 (uri->flags & ST_SHNODE) ? " on " : "",
4021 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
4022 );
4023}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01004024
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004025/* Dumps the HTML stats information block to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004026 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004027 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004028 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004029static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004030{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004031 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004032 unsigned int up = (now.tv_sec - start_date.tv_sec);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004033 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01004034
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004035 /* WARNING! this has to fit the first packet too.
4036 * We are around 3.5 kB, add adding entries will
4037 * become tricky if we want to support 4kB buffers !
4038 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004039 chunk_appendf(&trash,
4040 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
4041 PRODUCT_NAME "%s</a></h1>\n"
4042 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
4043 "<hr width=\"100%%\" class=\"hr\">\n"
4044 "<h3>&gt; General process information</h3>\n"
4045 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
4046 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
4047 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
4048 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
4049 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
4050 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec<br>\n"
4051 "Running tasks: %d/%d; idle = %d %%<br>\n"
4052 "</td><td align=\"center\" nowrap>\n"
4053 "<table class=\"lgd\"><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004054 "<td class=\"active4\">&nbsp;</td><td class=\"noborder\">active UP </td>"
4055 "<td class=\"backup4\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004056 "</tr><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004057 "<td class=\"active3\"></td><td class=\"noborder\">active UP, going down </td>"
4058 "<td class=\"backup3\"></td><td class=\"noborder\">backup UP, going down </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004059 "</tr><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004060 "<td class=\"active2\"></td><td class=\"noborder\">active DOWN, going up </td>"
4061 "<td class=\"backup2\"></td><td class=\"noborder\">backup DOWN, going up </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004062 "</tr><tr>\n"
4063 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004064 "<td class=\"active9\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004065 "</tr><tr>\n"
4066 "<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 -07004067 "</tr><tr>\n"
Willy Tarreau9638efa2014-05-23 11:19:57 +02004068 "<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 +01004069 "</tr></table>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01004070 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004071 "</td>"
4072 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
4073 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
4074 "",
4075 (uri->flags & ST_HIDEVER) ? "" : (STATS_VERSION_STRING),
4076 pid, (uri->flags & ST_SHNODE) ? " on " : "",
4077 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
4078 (uri->flags & ST_SHDESC) ? ": " : "",
4079 (uri->flags & ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
4080 pid, relative_pid, global.nbproc,
4081 up / 86400, (up % 86400) / 3600,
4082 (up % 3600) / 60, (up % 60),
4083 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
4084 global.rlimit_memmax ? " MB" : "",
4085 global.rlimit_nofile,
4086 global.maxsock, global.maxconn, global.maxpipes,
4087 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
4088 run_queue_cur, nb_tasks_cur, idle_pct
4089 );
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004090
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004091 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
4092 memcpy(scope_txt, bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
4093 scope_txt[appctx->ctx.stats.scope_len] = '\0';
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004094
4095 chunk_appendf(&trash,
Cyril Bonté54656842013-04-18 22:38:35 +02004096 "<li><form method=\"GET\" action=\"%s%s%s\">Scope : <input value=\"%s\" name=\"" STAT_SCOPE_INPUT_NAME "\" size=\"8\" maxlength=\"%d\" tabindex=\"1\"/></form>\n",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004097 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004098 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4099 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
4100 (appctx->ctx.stats.scope_len > 0) ? scope_txt : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004101 STAT_SCOPE_TXT_MAXLEN);
4102
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004103 /* 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 +02004104 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004105 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004106 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004107 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
4108 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004109 }
4110
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004111 if (appctx->ctx.stats.flags & STAT_HIDE_DOWN)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004112 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004113 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004114 uri->uri_prefix,
4115 "",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004116 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004117 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004118 else
4119 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004120 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004121 uri->uri_prefix,
4122 ";up",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004123 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004124 scope_txt);
Willy Tarreau91861262007-10-17 17:06:05 +02004125
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004126 if (uri->refresh > 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004127 if (appctx->ctx.stats.flags & STAT_NO_REFRESH)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004128 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004129 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004130 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004131 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004132 "",
4133 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004134 else
4135 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004136 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004137 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004138 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004139 ";norefresh",
4140 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004141 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02004142
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004143 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004144 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004145 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004146 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4147 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004148 scope_txt);
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02004149
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004150 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004151 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004152 uri->uri_prefix,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02004153 (uri->refresh > 0) ? ";norefresh" : "",
4154 scope_txt);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01004155
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004156 chunk_appendf(&trash,
4157 "</ul></td>"
4158 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
4159 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
4160 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
4161 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
4162 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
4163 "</ul>"
4164 "</td>"
4165 "</tr></table>\n"
4166 ""
4167 );
Willy Tarreau4bab24d2007-11-30 18:16:29 +01004168
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004169 if (appctx->ctx.stats.st_code) {
4170 switch (appctx->ctx.stats.st_code) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004171 case STAT_STATUS_DONE:
4172 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004173 "<p><div class=active4>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004174 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004175 "Action processed successfully."
Willy Tarreauba6be982013-04-19 12:16:55 +02004176 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004177 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4178 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004179 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004180 break;
4181 case STAT_STATUS_NONE:
4182 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004183 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004184 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004185 "Nothing has changed."
Willy Tarreauba6be982013-04-19 12:16:55 +02004186 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004187 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4188 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004189 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004190 break;
4191 case STAT_STATUS_PART:
4192 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004193 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004194 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004195 "Action partially processed.<br>"
4196 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
Willy Tarreauba6be982013-04-19 12:16:55 +02004197 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004198 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4199 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004200 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004201 break;
4202 case STAT_STATUS_ERRP:
4203 chunk_appendf(&trash,
4204 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004205 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004206 "Action not processed because of invalid parameters."
4207 "<ul>"
4208 "<li>The action is maybe unknown.</li>"
4209 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
4210 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
4211 "</ul>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004212 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004213 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4214 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004215 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004216 break;
4217 case STAT_STATUS_EXCD:
4218 chunk_appendf(&trash,
4219 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004220 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004221 "<b>Action not processed : the buffer couldn't store all the data.<br>"
4222 "You should retry with less servers at a time.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004223 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004224 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4225 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004226 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004227 break;
4228 case STAT_STATUS_DENY:
4229 chunk_appendf(&trash,
4230 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004231 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004232 "<b>Action denied.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004233 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004234 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4235 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004236 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004237 break;
4238 default:
4239 chunk_appendf(&trash,
Willy Tarreau9638efa2014-05-23 11:19:57 +02004240 "<p><div class=active9>"
Willy Tarreauba6be982013-04-19 12:16:55 +02004241 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004242 "Unexpected result."
Willy Tarreauba6be982013-04-19 12:16:55 +02004243 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004244 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4245 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02004246 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004247 }
4248 chunk_appendf(&trash, "<p>\n");
4249 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004250}
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01004251
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004252/* Dumps the HTML stats trailer block to the trash. The caller is responsible
4253 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004254 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004255static void stats_dump_html_end()
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004256{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004257 chunk_appendf(&trash, "</body></html>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004258}
Willy Tarreau7f062c42009-03-05 18:43:00 +01004259
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004260/* This function dumps statistics onto the stream interface's read buffer in
4261 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
Willy Tarreau306f8302013-07-08 15:53:06 +02004262 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
4263 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
4264 * and the session must be closed, or -1 in case of any error. This function is
4265 * used by both the CLI and the HTTP handlers.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004266 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004267static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004268{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004269 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004270 struct channel *rep = si->ib;
4271 struct proxy *px;
Willy Tarreau7f062c42009-03-05 18:43:00 +01004272
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004273 chunk_reset(&trash);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02004274
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004275 switch (appctx->st2) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004276 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004277 appctx->st2 = STAT_ST_HEAD; /* let's start producing data */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004278 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004279
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004280 case STAT_ST_HEAD:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004281 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004282 stats_dump_html_head(uri);
Willy Tarreau354898b2012-12-23 18:15:23 +01004283 else
4284 stats_dump_csv_header();
Willy Tarreaud9b587f2010-02-26 10:05:55 +01004285
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004286 if (bi_putchk(rep, &trash) == -1)
4287 return 0;
Willy Tarreauae526782010-03-04 20:34:23 +01004288
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004289 appctx->st2 = STAT_ST_INFO;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004290 /* fall through */
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004291
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004292 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004293 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004294 stats_dump_html_info(si, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004295 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02004296 return 0;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004297 }
Willy Tarreau91861262007-10-17 17:06:05 +02004298
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004299 appctx->ctx.stats.px = proxy;
4300 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
4301 appctx->st2 = STAT_ST_LIST;
Willy Tarreau91861262007-10-17 17:06:05 +02004302 /* fall through */
4303
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004304 case STAT_ST_LIST:
4305 /* dump proxies */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004306 while (appctx->ctx.stats.px) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01004307 if (buffer_almost_full(rep->buf)) {
4308 rep->flags |= CF_WAKE_WRITE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004309 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01004310 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004311
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004312 px = appctx->ctx.stats.px;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004313 /* skip the disabled proxies, global frontend and non-networked ones */
4314 if (px->state != PR_STSTOPPED && px->uuid > 0 && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004315 if (stats_dump_proxy_to_buffer(si, px, uri) == 0)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004316 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004317
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004318 appctx->ctx.stats.px = px->next;
4319 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004320 }
4321 /* here, we just have reached the last proxy */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004322
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004323 appctx->st2 = STAT_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004324 /* fall through */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004325
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004326 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004327 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004328 stats_dump_html_end();
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004329 if (bi_putchk(rep, &trash) == -1)
4330 return 0;
4331 }
Willy Tarreau55058a72012-11-21 08:27:21 +01004332
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004333 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004334 /* fall through */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02004335
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004336 case STAT_ST_FIN:
4337 return 1;
Willy Tarreau55058a72012-11-21 08:27:21 +01004338
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004339 default:
4340 /* unknown state ! */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004341 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004342 return -1;
4343 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004344}
Willy Tarreauae526782010-03-04 20:34:23 +01004345
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004346/* We reached the stats page through a POST request. The appctx is
4347 * expected to have already been allocated by the caller.
Willy Tarreau347a35d2013-11-22 17:51:09 +01004348 * Parse the posted data and enable/disable servers if necessary.
4349 * Returns 1 if request was parsed or zero if it needs more data.
4350 */
4351static int stats_process_http_post(struct stream_interface *si)
4352{
4353 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004354 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004355
4356 struct proxy *px = NULL;
4357 struct server *sv = NULL;
4358
4359 char key[LINESIZE];
4360 int action = ST_ADM_ACTION_NONE;
4361 int reprocess = 0;
4362
4363 int total_servers = 0;
4364 int altered_servers = 0;
4365
4366 char *first_param, *cur_param, *next_param, *end_params;
4367 char *st_cur_param = NULL;
4368 char *st_next_param = NULL;
4369
4370 struct chunk *temp;
4371 int reql;
4372
4373 temp = get_trash_chunk();
4374 if (temp->size < s->txn.req.body_len) {
4375 /* too large request */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004376 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004377 goto out;
4378 }
4379
4380 reql = bo_getblk(si->ob, temp->str, s->txn.req.body_len, s->txn.req.eoh + 2);
4381 if (reql <= 0) {
4382 /* we need more data */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004383 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004384 return 0;
4385 }
4386
4387 first_param = temp->str;
4388 end_params = temp->str + reql;
4389 cur_param = next_param = end_params;
4390 *end_params = '\0';
4391
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004392 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004393
4394 /*
4395 * Parse the parameters in reverse order to only store the last value.
4396 * From the html form, the backend and the action are at the end.
4397 */
4398 while (cur_param > first_param) {
4399 char *value;
4400 int poffset, plen;
4401
4402 cur_param--;
4403
4404 if ((*cur_param == '&') || (cur_param == first_param)) {
4405 reprocess_servers:
4406 /* Parse the key */
4407 poffset = (cur_param != first_param ? 1 : 0);
4408 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
4409 if ((plen > 0) && (plen <= sizeof(key))) {
4410 strncpy(key, cur_param + poffset, plen);
4411 key[plen - 1] = '\0';
4412 } else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004413 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004414 goto out;
4415 }
4416
4417 /* Parse the value */
4418 value = key;
4419 while (*value != '\0' && *value != '=') {
4420 value++;
4421 }
4422 if (*value == '=') {
4423 /* Ok, a value is found, we can mark the end of the key */
4424 *value++ = '\0';
4425 }
4426 if (url_decode(key) < 0 || url_decode(value) < 0)
4427 break;
4428
4429 /* Now we can check the key to see what to do */
4430 if (!px && (strcmp(key, "b") == 0)) {
4431 if ((px = findproxy(value, PR_CAP_BE)) == NULL) {
4432 /* the backend name is unknown or ambiguous (duplicate names) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004433 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004434 goto out;
4435 }
4436 }
4437 else if (!action && (strcmp(key, "action") == 0)) {
Willy Tarreaued7df902014-05-22 18:04:49 +02004438 if (strcmp(value, "ready") == 0) {
4439 action = ST_ADM_ACTION_READY;
4440 }
4441 else if (strcmp(value, "drain") == 0) {
4442 action = ST_ADM_ACTION_DRAIN;
4443 }
4444 else if (strcmp(value, "maint") == 0) {
4445 action = ST_ADM_ACTION_MAINT;
4446 }
4447 else if (strcmp(value, "shutdown") == 0) {
4448 action = ST_ADM_ACTION_SHUTDOWN;
4449 }
Willy Tarreau248a60e2014-05-23 14:59:48 +02004450 else if (strcmp(value, "dhlth") == 0) {
4451 action = ST_ADM_ACTION_DHLTH;
4452 }
4453 else if (strcmp(value, "ehlth") == 0) {
4454 action = ST_ADM_ACTION_EHLTH;
4455 }
4456 else if (strcmp(value, "hrunn") == 0) {
4457 action = ST_ADM_ACTION_HRUNN;
4458 }
4459 else if (strcmp(value, "hnolb") == 0) {
4460 action = ST_ADM_ACTION_HNOLB;
4461 }
4462 else if (strcmp(value, "hdown") == 0) {
4463 action = ST_ADM_ACTION_HDOWN;
4464 }
4465 else if (strcmp(value, "dagent") == 0) {
4466 action = ST_ADM_ACTION_DAGENT;
4467 }
4468 else if (strcmp(value, "eagent") == 0) {
4469 action = ST_ADM_ACTION_EAGENT;
4470 }
4471 else if (strcmp(value, "arunn") == 0) {
4472 action = ST_ADM_ACTION_ARUNN;
4473 }
4474 else if (strcmp(value, "adown") == 0) {
4475 action = ST_ADM_ACTION_ADOWN;
4476 }
Willy Tarreaued7df902014-05-22 18:04:49 +02004477 /* else these are the old supported methods */
4478 else if (strcmp(value, "disable") == 0) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004479 action = ST_ADM_ACTION_DISABLE;
4480 }
4481 else if (strcmp(value, "enable") == 0) {
4482 action = ST_ADM_ACTION_ENABLE;
4483 }
4484 else if (strcmp(value, "stop") == 0) {
4485 action = ST_ADM_ACTION_STOP;
4486 }
4487 else if (strcmp(value, "start") == 0) {
4488 action = ST_ADM_ACTION_START;
4489 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004490 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004491 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004492 goto out;
4493 }
4494 }
4495 else if (strcmp(key, "s") == 0) {
4496 if (!(px && action)) {
4497 /*
4498 * Indicates that we'll need to reprocess the parameters
4499 * as soon as backend and action are known
4500 */
4501 if (!reprocess) {
4502 st_cur_param = cur_param;
4503 st_next_param = next_param;
4504 }
4505 reprocess = 1;
4506 }
4507 else if ((sv = findserver(px, value)) != NULL) {
4508 switch (action) {
4509 case ST_ADM_ACTION_DISABLE:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004510 if (!(sv->admin & SRV_ADMF_FMAINT)) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004511 altered_servers++;
4512 total_servers++;
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004513 srv_set_admin_flag(sv, SRV_ADMF_FMAINT);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004514 }
4515 break;
4516 case ST_ADM_ACTION_ENABLE:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004517 if (sv->admin & SRV_ADMF_FMAINT) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004518 altered_servers++;
4519 total_servers++;
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004520 srv_clr_admin_flag(sv, SRV_ADMF_FMAINT);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004521 }
4522 break;
4523 case ST_ADM_ACTION_STOP:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004524 if (!(sv->admin & SRV_ADMF_FDRAIN)) {
4525 srv_set_admin_flag(sv, SRV_ADMF_FDRAIN);
4526 altered_servers++;
4527 total_servers++;
4528 }
4529 break;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004530 case ST_ADM_ACTION_START:
Willy Tarreaufae3a7e2014-05-22 17:22:34 +02004531 if (sv->admin & SRV_ADMF_FDRAIN) {
4532 srv_clr_admin_flag(sv, SRV_ADMF_FDRAIN);
4533 altered_servers++;
4534 total_servers++;
4535 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004536 break;
Willy Tarreau248a60e2014-05-23 14:59:48 +02004537 case ST_ADM_ACTION_DHLTH:
4538 if (sv->check.state & CHK_ST_CONFIGURED) {
4539 sv->check.state &= ~CHK_ST_ENABLED;
4540 altered_servers++;
4541 total_servers++;
4542 }
4543 break;
4544 case ST_ADM_ACTION_EHLTH:
4545 if (sv->check.state & CHK_ST_CONFIGURED) {
4546 sv->check.state |= CHK_ST_ENABLED;
4547 altered_servers++;
4548 total_servers++;
4549 }
4550 break;
4551 case ST_ADM_ACTION_HRUNN:
4552 if (!(sv->track)) {
4553 sv->check.health = sv->check.rise + sv->check.fall - 1;
4554 srv_set_running(sv, "changed from Web interface");
4555 altered_servers++;
4556 total_servers++;
4557 }
4558 break;
4559 case ST_ADM_ACTION_HNOLB:
4560 if (!(sv->track)) {
4561 sv->check.health = sv->check.rise + sv->check.fall - 1;
4562 srv_set_stopping(sv, "changed from Web interface");
4563 altered_servers++;
4564 total_servers++;
4565 }
4566 break;
4567 case ST_ADM_ACTION_HDOWN:
4568 if (!(sv->track)) {
4569 sv->check.health = 0;
4570 srv_set_stopped(sv, "changed from Web interface");
4571 altered_servers++;
4572 total_servers++;
4573 }
4574 break;
4575 case ST_ADM_ACTION_DAGENT:
4576 if (sv->agent.state & CHK_ST_CONFIGURED) {
4577 sv->agent.state &= ~CHK_ST_ENABLED;
4578 altered_servers++;
4579 total_servers++;
4580 }
4581 break;
4582 case ST_ADM_ACTION_EAGENT:
4583 if (sv->agent.state & CHK_ST_CONFIGURED) {
4584 sv->agent.state |= CHK_ST_ENABLED;
4585 altered_servers++;
4586 total_servers++;
4587 }
4588 break;
4589 case ST_ADM_ACTION_ARUNN:
4590 if (sv->agent.state & CHK_ST_ENABLED) {
4591 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
4592 srv_set_running(sv, "changed from Web interface");
4593 altered_servers++;
4594 total_servers++;
4595 }
4596 break;
4597 case ST_ADM_ACTION_ADOWN:
4598 if (sv->agent.state & CHK_ST_ENABLED) {
4599 sv->agent.health = 0;
4600 srv_set_stopped(sv, "changed from Web interface");
4601 altered_servers++;
4602 total_servers++;
4603 }
4604 break;
Willy Tarreaued7df902014-05-22 18:04:49 +02004605 case ST_ADM_ACTION_READY:
4606 srv_adm_set_ready(sv);
4607 altered_servers++;
4608 total_servers++;
4609 break;
4610 case ST_ADM_ACTION_DRAIN:
4611 srv_adm_set_drain(sv);
4612 altered_servers++;
4613 total_servers++;
4614 break;
4615 case ST_ADM_ACTION_MAINT:
4616 srv_adm_set_maint(sv);
4617 altered_servers++;
4618 total_servers++;
4619 break;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004620 case ST_ADM_ACTION_SHUTDOWN:
4621 if (px->state != PR_STSTOPPED) {
4622 struct session *sess, *sess_bck;
4623
4624 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
4625 if (sess->srv_conn == sv)
4626 session_shutdown(sess, SN_ERR_KILLED);
4627
4628 altered_servers++;
4629 total_servers++;
4630 }
4631 break;
4632 }
4633 } else {
4634 /* the server name is unknown or ambiguous (duplicate names) */
4635 total_servers++;
4636 }
4637 }
4638 if (reprocess && px && action) {
4639 /* Now, we know the backend and the action chosen by the user.
4640 * We can safely restart from the first server parameter
4641 * to reprocess them
4642 */
4643 cur_param = st_cur_param;
4644 next_param = st_next_param;
4645 reprocess = 0;
4646 goto reprocess_servers;
4647 }
4648
4649 next_param = cur_param;
4650 }
4651 }
4652
4653 if (total_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004654 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004655 }
4656 else if (altered_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004657 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004658 }
4659 else if (altered_servers == total_servers) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004660 appctx->ctx.stats.st_code = STAT_STATUS_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004661 }
4662 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004663 appctx->ctx.stats.st_code = STAT_STATUS_PART;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004664 }
4665 out:
4666 return 1;
4667}
4668
4669
4670static int stats_send_http_headers(struct stream_interface *si)
4671{
4672 struct session *s = session_from_task(si->owner);
4673 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004674 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004675
4676 chunk_printf(&trash,
Willy Tarreau8b8995f2014-04-24 22:51:54 +02004677 "HTTP/1.1 200 OK\r\n"
Willy Tarreau347a35d2013-11-22 17:51:09 +01004678 "Cache-Control: no-cache\r\n"
4679 "Connection: close\r\n"
4680 "Content-Type: %s\r\n",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004681 (appctx->ctx.stats.flags & STAT_FMT_HTML) ? "text/html" : "text/plain");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004682
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004683 if (uri->refresh > 0 && !(appctx->ctx.stats.flags & STAT_NO_REFRESH))
Willy Tarreau347a35d2013-11-22 17:51:09 +01004684 chunk_appendf(&trash, "Refresh: %d\r\n",
4685 uri->refresh);
4686
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004687 /* we don't send the CRLF in chunked mode, it will be sent with the first chunk's size */
4688
4689 if (appctx->ctx.stats.flags & STAT_CHUNKED)
4690 chunk_appendf(&trash, "Transfer-Encoding: chunked\r\n");
4691 else
4692 chunk_appendf(&trash, "\r\n");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004693
4694 s->txn.status = 200;
4695 s->logs.tv_request = now;
4696
4697 if (bi_putchk(si->ib, &trash) == -1)
4698 return 0;
4699
4700 return 1;
4701}
4702
4703static int stats_send_http_redirect(struct stream_interface *si)
4704{
4705 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
4706 struct session *s = session_from_task(si->owner);
4707 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004708 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004709
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004710 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau347a35d2013-11-22 17:51:09 +01004711 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004712 if (appctx->ctx.stats.scope_len) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004713 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004714 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
4715 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004716 }
4717
4718 /* We don't want to land on the posted stats page because a refresh will
4719 * repost the data. We don't want this to happen on accident so we redirect
4720 * the browse to the stats page with a GET.
4721 */
4722 chunk_printf(&trash,
4723 "HTTP/1.1 303 See Other\r\n"
4724 "Cache-Control: no-cache\r\n"
4725 "Content-Type: text/plain\r\n"
4726 "Connection: close\r\n"
4727 "Location: %s;st=%s%s%s%s\r\n"
4728 "\r\n",
4729 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004730 ((appctx->ctx.stats.st_code > STAT_STATUS_INIT) &&
4731 (appctx->ctx.stats.st_code < STAT_STATUS_SIZE) &&
4732 stat_status_codes[appctx->ctx.stats.st_code]) ?
4733 stat_status_codes[appctx->ctx.stats.st_code] :
Willy Tarreau347a35d2013-11-22 17:51:09 +01004734 stat_status_codes[STAT_STATUS_UNKN],
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004735 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4736 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreau347a35d2013-11-22 17:51:09 +01004737 scope_txt);
4738
4739 s->txn.status = 303;
4740 s->logs.tv_request = now;
4741
4742 if (bi_putchk(si->ib, &trash) == -1)
4743 return 0;
4744
4745 return 1;
4746}
4747
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004748/* This I/O handler runs as an applet embedded in a stream interface. It is
4749 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004750 * appctx->st0 contains the operation in progress (dump, done). The handler
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004751 * automatically unregisters itself once transfer is complete.
4752 */
4753static void http_stats_io_handler(struct stream_interface *si)
4754{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004755 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02004756 struct session *s = session_from_task(si->owner);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004757 struct channel *req = si->ob;
4758 struct channel *res = si->ib;
Willy Tarreau55058a72012-11-21 08:27:21 +01004759
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004760 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
4761 goto out;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004762
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004763 /* check that the output is not closed */
4764 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004765 appctx->st0 = STAT_HTTP_DONE;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004766
Willy Tarreau347a35d2013-11-22 17:51:09 +01004767 /* all states are processed in sequence */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004768 if (appctx->st0 == STAT_HTTP_HEAD) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004769 if (stats_send_http_headers(si)) {
4770 if (s->txn.meth == HTTP_METH_HEAD)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004771 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004772 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004773 appctx->st0 = STAT_HTTP_DUMP;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004774 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004775 }
4776
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004777 if (appctx->st0 == STAT_HTTP_DUMP) {
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004778 unsigned int prev_len = si->ib->buf->i;
4779 unsigned int data_len;
4780 unsigned int last_len;
Willy Tarreaucce36482014-04-24 20:26:41 +02004781 unsigned int last_fwd = 0;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004782
4783 if (appctx->ctx.stats.flags & STAT_CHUNKED) {
4784 /* One difficulty we're facing is that we must prevent
4785 * the input data from being automatically forwarded to
4786 * the output area. For this, we temporarily disable
4787 * forwarding on the channel.
4788 */
4789 last_fwd = si->ib->to_forward;
4790 si->ib->to_forward = 0;
4791 chunk_printf(&trash, "\r\n000000\r\n");
4792 if (bi_putchk(si->ib, &trash) == -1) {
4793 si->ib->to_forward = last_fwd;
4794 goto fail;
4795 }
4796 }
4797
4798 data_len = si->ib->buf->i;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004799 if (stats_dump_stat_to_buffer(si, s->be->uri_auth))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004800 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004801
4802 last_len = si->ib->buf->i;
4803
4804 /* Now we must either adjust or remove the chunk size. This is
4805 * not easy because the chunk size might wrap at the end of the
4806 * buffer, so we pretend we have nothing in the buffer, we write
4807 * the size, then restore the buffer's contents. Note that we can
4808 * only do that because no forwarding is scheduled on the stats
4809 * applet.
4810 */
4811 if (appctx->ctx.stats.flags & STAT_CHUNKED) {
4812 si->ib->total -= (last_len - prev_len);
4813 si->ib->buf->i -= (last_len - prev_len);
4814
4815 if (last_len != data_len) {
4816 chunk_printf(&trash, "\r\n%06x\r\n", (last_len - data_len));
4817 bi_putchk(si->ib, &trash);
4818
4819 si->ib->total += (last_len - data_len);
4820 si->ib->buf->i += (last_len - data_len);
4821 }
4822 /* now re-enable forwarding */
4823 channel_forward(si->ib, last_fwd);
4824 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004825 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02004826
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004827 if (appctx->st0 == STAT_HTTP_POST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004828 if (stats_process_http_post(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004829 appctx->st0 = STAT_HTTP_LAST;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004830 else if (si->ob->flags & CF_SHUTR)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004831 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004832 }
4833
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004834 if (appctx->st0 == STAT_HTTP_LAST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004835 if (stats_send_http_redirect(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004836 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004837 }
4838
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004839 if (appctx->st0 == STAT_HTTP_DONE) {
4840 if (appctx->ctx.stats.flags & STAT_CHUNKED) {
4841 chunk_printf(&trash, "\r\n0\r\n\r\n");
4842 if (bi_putchk(si->ib, &trash) == -1)
4843 goto fail;
4844 }
4845 /* eat the whole request */
4846 bo_skip(si->ob, si->ob->buf->o);
4847 res->flags |= CF_READ_NULL;
4848 si_shutr(si);
4849 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004850
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004851 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST))
4852 si_shutw(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004853
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004854 if (appctx->st0 == STAT_HTTP_DONE) {
Willy Tarreau96d44912013-11-22 12:25:24 +01004855 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST)) {
4856 si_shutr(si);
4857 res->flags |= CF_READ_NULL;
4858 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004859 }
Willy Tarreau91861262007-10-17 17:06:05 +02004860
Willy Tarreauaf3cf702014-04-22 22:19:53 +02004861 fail:
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004862 /* update all other flags and resync with the other side */
4863 si_update(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004864
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004865 /* we don't want to expire timeouts while we're processing requests */
4866 si->ib->rex = TICK_ETERNITY;
4867 si->ob->wex = TICK_ETERNITY;
Willy Tarreau91861262007-10-17 17:06:05 +02004868
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004869 out:
4870 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
4871 /* check that we have released everything then unregister */
4872 stream_int_unregister_handler(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004873 }
4874}
4875
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004876
Willy Tarreau909d5172012-11-26 03:04:41 +01004877static inline const char *get_conn_ctrl_name(const struct connection *conn)
4878{
Willy Tarreau3c728722014-01-23 13:50:42 +01004879 if (!conn_ctrl_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004880 return "NONE";
4881 return conn->ctrl->name;
4882}
4883
4884static inline const char *get_conn_xprt_name(const struct connection *conn)
4885{
4886 static char ptr[17];
4887
Willy Tarreauaad69382014-01-23 14:21:42 +01004888 if (!conn_xprt_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004889 return "NONE";
4890
4891 if (conn->xprt == &raw_sock)
4892 return "RAW";
4893
4894#ifdef USE_OPENSSL
4895 if (conn->xprt == &ssl_sock)
4896 return "SSL";
4897#endif
4898 snprintf(ptr, sizeof(ptr), "%p", conn->xprt);
4899 return ptr;
4900}
4901
4902static inline const char *get_conn_data_name(const struct connection *conn)
4903{
4904 static char ptr[17];
4905
4906 if (!conn->data)
4907 return "NONE";
4908
4909 if (conn->data == &sess_conn_cb)
4910 return "SESS";
4911
4912 if (conn->data == &si_conn_cb)
4913 return "STRM";
4914
4915 if (conn->data == &check_conn_cb)
4916 return "CHCK";
4917
4918 snprintf(ptr, sizeof(ptr), "%p", conn->data);
4919 return ptr;
4920}
4921
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02004922/* This function dumps a complete session state onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02004923 * read buffer. The session has to be set in sess->target. It returns
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004924 * 0 if the output buffer is full and it needs to be called again, otherwise
4925 * non-zero. It is designed to be called from stats_dump_sess_to_buffer() below.
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004926 */
Willy Tarreau76153662012-11-26 01:16:39 +01004927static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004928{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004929 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004930 struct tm tm;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004931 extern const char *monthname[12];
4932 char pn[INET6_ADDRSTRLEN];
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004933 struct connection *conn;
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004934 struct appctx *tmpctx;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004935
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004936 chunk_reset(&trash);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004937
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004938 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != sess->uniq_id) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004939 /* session changed, no need to go any further */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004940 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
4941 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004942 return 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004943 appctx->ctx.sess.uid = 0;
4944 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004945 return 1;
4946 }
4947
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004948 switch (appctx->ctx.sess.section) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004949 case 0: /* main status of the session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004950 appctx->ctx.sess.uid = sess->uniq_id;
4951 appctx->ctx.sess.section = 1;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004952 /* fall through */
4953
4954 case 1:
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004955 get_localtime(sess->logs.accept_date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004956 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004957 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004958 sess,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004959 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
4960 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004961 sess->uniq_id,
Willy Tarreaue95c4ce2013-01-24 00:48:39 +01004962 sess->listener && sess->listener->proto->name ? sess->listener->proto->name : "?");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004963
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004964 conn = objt_conn(sess->si[0].end);
4965 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004966 case AF_INET:
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004967 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004968 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004969 pn, get_host_port(&conn->addr.from));
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004970 break;
4971 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004972 chunk_appendf(&trash, " source=unix:%d\n", sess->listener->luid);
Emeric Brun837ca522010-10-22 16:19:01 +02004973 break;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004974 default:
4975 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004976 chunk_appendf(&trash, "\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004977 break;
4978 }
4979
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004980 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004981 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02004982 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004983
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004984 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004985 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004986 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
4987 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
4988 sess->listener ? sess->listener->luid : 0);
4989
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004990 if (conn)
4991 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004992
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004993 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004994 case AF_INET:
4995 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004996 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004997 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07004998 break;
4999 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005000 chunk_appendf(&trash, " addr=unix:%d\n", sess->listener->luid);
Daniel Schultze90690c72012-03-23 10:53:36 -07005001 break;
5002 default:
5003 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005004 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005005 break;
5006 }
5007
Willy Tarreau50943332011-09-02 17:33:05 +02005008 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005009 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07005010 " backend=%s (id=%u mode=%s)",
Willy Tarreau50943332011-09-02 17:33:05 +02005011 sess->be->id,
Daniel Schultze90690c72012-03-23 10:53:36 -07005012 sess->be->uuid, sess->be->mode ? "http" : "tcp");
5013 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005014 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
Daniel Schultze90690c72012-03-23 10:53:36 -07005015
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005016 conn = objt_conn(sess->si[1].end);
5017 if (conn)
5018 conn_get_from_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005019
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005020 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07005021 case AF_INET:
5022 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005023 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005024 pn, get_host_port(&conn->addr.from));
Daniel Schultze90690c72012-03-23 10:53:36 -07005025 break;
5026 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005027 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005028 break;
5029 default:
5030 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005031 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005032 break;
5033 }
5034
5035 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005036 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07005037 " server=%s (id=%u)",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005038 objt_server(sess->target) ? objt_server(sess->target)->id : "<none>",
5039 objt_server(sess->target) ? objt_server(sess->target)->puid : 0);
Willy Tarreau50943332011-09-02 17:33:05 +02005040 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005041 chunk_appendf(&trash, " server=<NONE> (id=-1)");
Daniel Schultze90690c72012-03-23 10:53:36 -07005042
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005043 if (conn)
5044 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005045
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005046 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07005047 case AF_INET:
5048 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005049 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005050 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07005051 break;
5052 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005053 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005054 break;
5055 default:
5056 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005057 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07005058 break;
5059 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005060
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005061 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005062 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005063 sess->task,
5064 sess->task->state,
5065 sess->task->nice, sess->task->calls,
5066 sess->task->expire ?
5067 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
5068 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
5069 TICKS_TO_MS(1000)) : "<NEVER>",
5070 task_in_rq(sess->task) ? ", running" : "");
5071
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005072 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005073 " age=%s)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005074 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
5075
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005076 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005077 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s\n",
5078 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
5079 http_msg_state_str(sess->txn.req.msg_state), http_msg_state_str(sess->txn.rsp.msg_state));
5080
5081 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02005082 " si[0]=%p (state=%s flags=0x%02x endp0=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005083 &sess->si[0],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005084 si_state_str(sess->si[0].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005085 sess->si[0].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005086 obj_type_name(sess->si[0].end),
5087 obj_base_ptr(sess->si[0].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005088 sess->si[0].exp ?
5089 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
5090 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
5091 TICKS_TO_MS(1000)) : "<NEVER>",
5092 sess->si[0].err_type);
5093
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005094 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02005095 " si[1]=%p (state=%s flags=0x%02x endp1=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005096 &sess->si[1],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01005097 si_state_str(sess->si[1].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005098 sess->si[1].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005099 obj_type_name(sess->si[1].end),
5100 obj_base_ptr(sess->si[1].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005101 sess->si[1].exp ?
5102 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
5103 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
5104 TICKS_TO_MS(1000)) : "<NEVER>",
5105 sess->si[1].err_type);
5106
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005107 if ((conn = objt_conn(sess->si[0].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005108 chunk_appendf(&trash,
5109 " co0=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005110 conn,
5111 get_conn_ctrl_name(conn),
5112 get_conn_xprt_name(conn),
5113 get_conn_data_name(conn),
5114 obj_type_name(conn->target),
5115 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01005116
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005117 chunk_appendf(&trash,
Willy Tarreau16f649c2014-01-25 19:10:48 +01005118 " flags=0x%08x fd=%d fd.state=%02x fd.cache=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005119 conn->flags,
5120 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01005121 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01005122 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005123 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005124 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005125 else if ((tmpctx = objt_appctx(sess->si[0].end)) != NULL) {
5126 chunk_appendf(&trash,
5127 " app0=%p st0=%d st1=%d st2=%d applet=%s\n",
5128 tmpctx,
5129 tmpctx->st0,
5130 tmpctx->st1,
5131 tmpctx->st2,
5132 tmpctx->applet->name);
5133 }
Willy Tarreaubc174aa2012-11-19 16:10:32 +01005134
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005135 if ((conn = objt_conn(sess->si[1].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005136 chunk_appendf(&trash,
5137 " co1=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005138 conn,
5139 get_conn_ctrl_name(conn),
5140 get_conn_xprt_name(conn),
5141 get_conn_data_name(conn),
5142 obj_type_name(conn->target),
5143 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01005144
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005145 chunk_appendf(&trash,
5146 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005147 conn->flags,
5148 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01005149 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01005150 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005151 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02005152 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01005153 else if ((tmpctx = objt_appctx(sess->si[1].end)) != NULL) {
5154 chunk_appendf(&trash,
5155 " app1=%p st0=%d st1=%d st2=%d applet=%s\n",
5156 tmpctx,
5157 tmpctx->st0,
5158 tmpctx->st1,
5159 tmpctx->st2,
5160 tmpctx->applet->name);
5161 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005162
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005163 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01005164 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005165 " an_exp=%s",
5166 sess->req,
5167 sess->req->flags, sess->req->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005168 sess->req->pipe ? sess->req->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01005169 sess->req->to_forward, sess->req->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005170 sess->req->analyse_exp ?
5171 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
5172 TICKS_TO_MS(1000)) : "<NEVER>");
5173
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005174 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005175 " rex=%s",
5176 sess->req->rex ?
5177 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
5178 TICKS_TO_MS(1000)) : "<NEVER>");
5179
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005180 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005181 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01005182 " buf=%p data=%p o=%d p=%d req.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005183 sess->req->wex ?
5184 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
5185 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01005186 sess->req->buf,
5187 sess->req->buf->data, sess->req->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005188 (int)(sess->req->buf->p - sess->req->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01005189 sess->txn.req.next, sess->req->buf->i,
5190 sess->req->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005191
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005192 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01005193 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005194 " an_exp=%s",
5195 sess->rep,
5196 sess->rep->flags, sess->rep->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005197 sess->rep->pipe ? sess->rep->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01005198 sess->rep->to_forward, sess->rep->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005199 sess->rep->analyse_exp ?
5200 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
5201 TICKS_TO_MS(1000)) : "<NEVER>");
5202
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005203 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005204 " rex=%s",
5205 sess->rep->rex ?
5206 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
5207 TICKS_TO_MS(1000)) : "<NEVER>");
5208
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005209 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005210 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01005211 " buf=%p data=%p o=%d p=%d rsp.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005212 sess->rep->wex ?
5213 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
5214 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01005215 sess->rep->buf,
5216 sess->rep->buf->data, sess->rep->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005217 (int)(sess->rep->buf->p - sess->rep->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01005218 sess->txn.rsp.next, sess->rep->buf->i,
5219 sess->rep->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005220
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005221 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005222 return 0;
5223
5224 /* use other states to dump the contents */
5225 }
5226 /* end of dump */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005227 appctx->ctx.sess.uid = 0;
5228 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005229 return 1;
5230}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005231
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005232static int stats_pats_list(struct stream_interface *si)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005233{
5234 struct appctx *appctx = __objt_appctx(si->end);
5235
5236 switch (appctx->st2) {
5237 case STAT_ST_INIT:
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01005238 /* Display the column headers. If the message cannot be sent,
5239 * quit the fucntion with returning 0. The function is called
5240 * later and restart at the state "STAT_ST_INIT".
5241 */
5242 chunk_reset(&trash);
Thierry FOURNIER65ce6132014-03-20 11:42:45 +01005243 chunk_appendf(&trash, "# id (file) description\n");
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01005244 if (bi_putchk(si->ib, &trash) == -1)
5245 return 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005246
5247 /* Now, we start the browsing of the references lists.
5248 * Note that the following call to LIST_ELEM return bad pointer. The only
5249 * avalaible field of this pointer is <list>. It is used with the function
5250 * pat_list_get_next() for retruning the first avalaible entry
5251 */
5252 appctx->ctx.map.ref = LIST_ELEM(&pattern_reference, struct pat_ref *, list);
5253 appctx->ctx.map.ref = pat_list_get_next(appctx->ctx.map.ref, &pattern_reference,
5254 appctx->ctx.map.display_flags);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005255 appctx->st2 = STAT_ST_LIST;
5256 /* fall through */
5257
5258 case STAT_ST_LIST:
5259 while (appctx->ctx.map.ref) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005260 chunk_reset(&trash);
5261
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005262 /* Build messages. If the reference is used by another category than
5263 * the listed categorie, display the information in the massage.
5264 */
Thierry FOURNIERf7e04e92014-03-20 11:45:47 +01005265 chunk_appendf(&trash, "%d (%s) %s\n", appctx->ctx.map.ref->unique_id,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01005266 appctx->ctx.map.ref->reference ? appctx->ctx.map.ref->reference : "",
5267 appctx->ctx.map.ref->display);
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01005268
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005269 if (bi_putchk(si->ib, &trash) == -1) {
5270 /* let's try again later from this session. We add ourselves into
5271 * this session's users so that it can remove us upon termination.
5272 */
5273 return 0;
5274 }
5275
5276 /* get next list entry and check the end of the list */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005277 appctx->ctx.map.ref = pat_list_get_next(appctx->ctx.map.ref, &pattern_reference,
5278 appctx->ctx.map.display_flags);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005279 }
5280
5281 appctx->st2 = STAT_ST_FIN;
5282 /* fall through */
5283
5284 default:
5285 appctx->st2 = STAT_ST_FIN;
5286 return 1;
5287 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005288 return 0;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005289}
5290
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005291static int stats_map_lookup(struct stream_interface *si)
5292{
5293 struct appctx *appctx = __objt_appctx(si->end);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005294 struct sample sample;
5295 struct pattern *pat;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005296 int match_method;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005297
5298 switch (appctx->st2) {
5299 case STAT_ST_INIT:
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005300 /* Init to the first entry. The list cannot be change */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01005301 appctx->ctx.map.expr = LIST_ELEM(&appctx->ctx.map.ref->pat, struct pattern_expr *, list);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005302 appctx->ctx.map.expr = pat_expr_get_next(appctx->ctx.map.expr, &appctx->ctx.map.ref->pat);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005303 appctx->st2 = STAT_ST_LIST;
5304 /* fall through */
5305
5306 case STAT_ST_LIST:
5307 /* for each lookup type */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005308 while (appctx->ctx.map.expr) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005309 /* initialise chunk to build new message */
5310 chunk_reset(&trash);
5311
5312 /* execute pattern matching */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01005313 sample.type = SMP_T_STR;
5314 sample.flags |= SMP_F_CONST;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005315 sample.data.str.len = appctx->ctx.map.chunk.len;
5316 sample.data.str.str = appctx->ctx.map.chunk.str;
Thierry FOURNIER5d344082014-01-27 14:19:53 +01005317 if (appctx->ctx.map.expr->pat_head->match &&
5318 sample_convert(&sample, appctx->ctx.map.expr->pat_head->expect_type))
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005319 pat = appctx->ctx.map.expr->pat_head->match(&sample, appctx->ctx.map.expr, 1);
5320 else
5321 pat = NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005322
5323 /* build return message: set type of match */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005324 for (match_method=0; match_method<PAT_MATCH_NUM; match_method++)
5325 if (appctx->ctx.map.expr->pat_head->match == pat_match_fcts[match_method])
5326 break;
5327 if (match_method >= PAT_MATCH_NUM)
5328 chunk_appendf(&trash, "type=unknown(%p)", appctx->ctx.map.expr->pat_head->match);
5329 else
5330 chunk_appendf(&trash, "type=%s", pat_match_names[match_method]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005331
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02005332 /* case sensitive */
5333 if (appctx->ctx.map.expr->mflags & PAT_MF_IGNORE_CASE)
5334 chunk_appendf(&trash, ", case=insensitive");
5335 else
5336 chunk_appendf(&trash, ", case=sensitive");
5337
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005338 /* Display no match, and set default value */
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01005339 if (!pat) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005340 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
5341 chunk_appendf(&trash, ", found=no");
5342 else
5343 chunk_appendf(&trash, ", match=no");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005344 }
5345
5346 /* Display match and match info */
5347 else {
5348 /* display match */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005349 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
5350 chunk_appendf(&trash, ", found=yes");
5351 else
5352 chunk_appendf(&trash, ", match=yes");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005353
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01005354 /* display index mode */
Thierry FOURNIERe47e4e22014-04-28 11:18:57 +02005355 if (pat->sflags & PAT_SF_TREE)
Thierry FOURNIERb9903842014-03-11 18:48:17 +01005356 chunk_appendf(&trash, ", idx=tree");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005357 else
Thierry FOURNIERb9903842014-03-11 18:48:17 +01005358 chunk_appendf(&trash, ", idx=list");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005359
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005360 /* display pattern */
5361 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
5362 if (pat->ref && pat->ref->pattern)
5363 chunk_appendf(&trash, ", key=\"%s\"", pat->ref->pattern);
5364 else
5365 chunk_appendf(&trash, ", key=unknown");
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005366 }
5367 else {
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005368 if (pat->ref && pat->ref->pattern)
5369 chunk_appendf(&trash, ", pattern=\"%s\"", pat->ref->pattern);
5370 else
5371 chunk_appendf(&trash, ", pattern=unknown");
5372 }
5373
5374 /* display return value */
5375 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
5376 if (pat->smp && pat->ref && pat->ref->sample)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005377 chunk_appendf(&trash, ", value=\"%s\", type=\"%s\"",
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005378 pat->ref->sample, smp_to_type[pat->smp->type]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005379 else
Thierry FOURNIER86db66a2014-03-11 18:37:58 +01005380 chunk_appendf(&trash, ", value=none");
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005381 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005382 }
5383
Thierry FOURNIERb9903842014-03-11 18:48:17 +01005384 chunk_appendf(&trash, "\n");
5385
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005386 /* display response */
5387 if (bi_putchk(si->ib, &trash) == -1) {
5388 /* let's try again later from this session. We add ourselves into
5389 * this session's users so that it can remove us upon termination.
5390 */
5391 return 0;
5392 }
5393
5394 /* get next entry */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005395 appctx->ctx.map.expr = pat_expr_get_next(appctx->ctx.map.expr,
5396 &appctx->ctx.map.ref->pat);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005397 }
5398
5399 appctx->st2 = STAT_ST_FIN;
5400 /* fall through */
5401
5402 default:
5403 appctx->st2 = STAT_ST_FIN;
5404 free(appctx->ctx.map.chunk.str);
5405 return 1;
5406 }
5407}
5408
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005409static int stats_pat_list(struct stream_interface *si)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005410{
5411 struct appctx *appctx = __objt_appctx(si->end);
5412
5413 switch (appctx->st2) {
5414
5415 case STAT_ST_INIT:
5416 /* Init to the first entry. The list cannot be change */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005417 appctx->ctx.map.elt = LIST_NEXT(&appctx->ctx.map.ref->head,
5418 struct pat_ref_elt *, list);
5419 if (&appctx->ctx.map.elt->list == &appctx->ctx.map.ref->head)
5420 appctx->ctx.map.elt = NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005421 appctx->st2 = STAT_ST_LIST;
5422 /* fall through */
5423
5424 case STAT_ST_LIST:
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005425 while (appctx->ctx.map.elt) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005426 chunk_reset(&trash);
5427
5428 /* build messages */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005429 if (appctx->ctx.map.elt->sample)
Thierry FOURNIER9356c682014-01-28 15:55:37 +01005430 chunk_appendf(&trash, "%p %s %s\n",
5431 appctx->ctx.map.elt, appctx->ctx.map.elt->pattern,
5432 appctx->ctx.map.elt->sample);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005433 else
Thierry FOURNIER9356c682014-01-28 15:55:37 +01005434 chunk_appendf(&trash, "%p %s\n",
5435 appctx->ctx.map.elt, appctx->ctx.map.elt->pattern);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005436
5437 if (bi_putchk(si->ib, &trash) == -1) {
5438 /* let's try again later from this session. We add ourselves into
5439 * this session's users so that it can remove us upon termination.
5440 */
5441 return 0;
5442 }
5443
5444 /* get next list entry and check the end of the list */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005445 appctx->ctx.map.elt = LIST_NEXT(&appctx->ctx.map.elt->list,
5446 struct pat_ref_elt *, list);
5447 if (&appctx->ctx.map.elt->list == &appctx->ctx.map.ref->head)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005448 break;
5449 }
5450
5451 appctx->st2 = STAT_ST_FIN;
5452 /* fall through */
5453
5454 default:
5455 appctx->st2 = STAT_ST_FIN;
5456 return 1;
5457 }
5458}
5459
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005460/* This function dumps all sessions' states onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005461 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005462 * to be called again, otherwise non-zero. It is designed to be called
5463 * from stats_dump_sess_to_buffer() below.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005464 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005465static int stats_dump_sess_to_buffer(struct stream_interface *si)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005466{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005467 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005468 struct connection *conn;
5469
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005470 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005471 /* If we're forced to shut down, we might have to remove our
5472 * reference to the last session being dumped.
5473 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005474 if (appctx->st2 == STAT_ST_LIST) {
5475 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5476 LIST_DEL(&appctx->ctx.sess.bref.users);
5477 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005478 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005479 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005480 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005481 }
5482
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005483 chunk_reset(&trash);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005484
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005485 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005486 case STAT_ST_INIT:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005487 /* the function had not been called yet, let's prepare the
5488 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005489 * pointer to the first in the global list. When a target
5490 * session is being destroyed, it is responsible for updating
5491 * this pointer. We know we have reached the end when this
5492 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005493 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005494 LIST_INIT(&appctx->ctx.sess.bref.users);
5495 appctx->ctx.sess.bref.ref = sessions.n;
5496 appctx->st2 = STAT_ST_LIST;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005497 /* fall through */
5498
Willy Tarreau295a8372011-03-10 11:25:07 +01005499 case STAT_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005500 /* first, let's detach the back-ref from a possible previous session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005501 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5502 LIST_DEL(&appctx->ctx.sess.bref.users);
5503 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005504 }
5505
5506 /* and start from where we stopped */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005507 while (appctx->ctx.sess.bref.ref != &sessions) {
Cyril Bontéacd7d632010-11-01 19:26:02 +01005508 char pn[INET6_ADDRSTRLEN];
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005509 struct session *curr_sess;
5510
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005511 curr_sess = LIST_ELEM(appctx->ctx.sess.bref.ref, struct session *, list);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005512
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005513 if (appctx->ctx.sess.target) {
5514 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005515 goto next_sess;
5516
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005517 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005518 /* call the proper dump() function and return if we're missing space */
Willy Tarreau76153662012-11-26 01:16:39 +01005519 if (!stats_dump_full_sess_to_buffer(si, curr_sess))
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005520 return 0;
5521
5522 /* session dump complete */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005523 LIST_DEL(&appctx->ctx.sess.bref.users);
5524 LIST_INIT(&appctx->ctx.sess.bref.users);
5525 if (appctx->ctx.sess.target != (void *)-1) {
5526 appctx->ctx.sess.target = NULL;
Willy Tarreau76153662012-11-26 01:16:39 +01005527 break;
5528 }
5529 else
5530 goto next_sess;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005531 }
5532
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005533 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005534 "%p: proto=%s",
5535 curr_sess,
5536 curr_sess->listener->proto->name);
5537
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005538
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005539 conn = objt_conn(curr_sess->si[0].end);
5540 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau631f01c2011-09-05 00:36:48 +02005541 case AF_INET:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005542 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005543 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005544 " src=%s:%d fe=%s be=%s srv=%s",
5545 pn,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005546 get_host_port(&conn->addr.from),
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005547 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005548 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005549 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005550 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005551 break;
5552 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005553 chunk_appendf(&trash,
Emeric Brun837ca522010-10-22 16:19:01 +02005554 " src=unix:%d fe=%s be=%s srv=%s",
5555 curr_sess->listener->luid,
5556 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005557 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005558 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Emeric Brun837ca522010-10-22 16:19:01 +02005559 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005560 break;
5561 }
5562
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005563 chunk_appendf(&trash,
Willy Tarreau65671ab2009-10-04 14:24:59 +02005564 " ts=%02x age=%s calls=%d",
5565 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01005566 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
5567 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005568
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005569 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005570 " rq[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005571 curr_sess->req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005572 curr_sess->req->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005573 curr_sess->req->analysers,
5574 curr_sess->req->rex ?
5575 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
5576 TICKS_TO_MS(1000)) : "");
5577
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005578 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005579 ",wx=%s",
5580 curr_sess->req->wex ?
5581 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
5582 TICKS_TO_MS(1000)) : "");
5583
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005584 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005585 ",ax=%s]",
5586 curr_sess->req->analyse_exp ?
5587 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
5588 TICKS_TO_MS(1000)) : "");
5589
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005590 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005591 " rp[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005592 curr_sess->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005593 curr_sess->rep->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005594 curr_sess->rep->analysers,
5595 curr_sess->rep->rex ?
5596 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
5597 TICKS_TO_MS(1000)) : "");
5598
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005599 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005600 ",wx=%s",
5601 curr_sess->rep->wex ?
5602 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
5603 TICKS_TO_MS(1000)) : "");
5604
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005605 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005606 ",ax=%s]",
5607 curr_sess->rep->analyse_exp ?
5608 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
5609 TICKS_TO_MS(1000)) : "");
5610
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005611 conn = objt_conn(curr_sess->si[0].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005612 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005613 " s0=[%d,%1xh,fd=%d,ex=%s]",
5614 curr_sess->si[0].state,
5615 curr_sess->si[0].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005616 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005617 curr_sess->si[0].exp ?
5618 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
5619 TICKS_TO_MS(1000)) : "");
5620
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005621 conn = objt_conn(curr_sess->si[1].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005622 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005623 " s1=[%d,%1xh,fd=%d,ex=%s]",
5624 curr_sess->si[1].state,
5625 curr_sess->si[1].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005626 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005627 curr_sess->si[1].exp ?
5628 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
5629 TICKS_TO_MS(1000)) : "");
5630
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005631 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005632 " exp=%s",
5633 curr_sess->task->expire ?
5634 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
5635 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01005636 if (task_in_rq(curr_sess->task))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005637 chunk_appendf(&trash, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005638
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005639 chunk_appendf(&trash, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005640
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005641 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005642 /* let's try again later from this session. We add ourselves into
5643 * this session's users so that it can remove us upon termination.
5644 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005645 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005646 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005647 }
5648
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005649 next_sess:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005650 appctx->ctx.sess.bref.ref = curr_sess->list.n;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005651 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005652
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005653 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005654 /* specified session not found */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005655 if (appctx->ctx.sess.section > 0)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005656 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005657 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005658 chunk_appendf(&trash, "Session not found.\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005659
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005660 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005661 return 0;
5662
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005663 appctx->ctx.sess.target = NULL;
5664 appctx->ctx.sess.uid = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005665 return 1;
5666 }
5667
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005668 appctx->st2 = STAT_ST_FIN;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005669 /* fall through */
5670
5671 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005672 appctx->st2 = STAT_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005673 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005674 }
Emeric Brun1e029aa2010-09-23 18:12:53 +02005675}
5676
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005677/* This is called when the stream interface is closed. For instance, upon an
5678 * external abort, we won't call the i/o handler anymore so we may need to
5679 * remove back references to the session currently being dumped.
5680 */
Simon Horman74d88312013-02-12 10:45:50 +09005681static void cli_release_handler(struct stream_interface *si)
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005682{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005683 struct appctx *appctx = __objt_appctx(si->end);
5684
5685 if (appctx->st0 == STAT_CLI_O_SESS && appctx->st2 == STAT_ST_LIST) {
5686 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
5687 LIST_DEL(&appctx->ctx.sess.bref.users);
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005688 }
Thierry FOURNIER364cfdf2014-01-29 19:08:49 +01005689 else if (appctx->st0 == STAT_CLI_PRINT_FREE) {
5690 free(appctx->ctx.cli.err);
5691 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005692 else if (appctx->st0 == STAT_CLI_O_MLOOK) {
5693 free(appctx->ctx.map.chunk.str);
5694 }
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005695}
5696
Willy Tarreau20e99322013-04-13 09:22:25 +02005697/* This function is used to either dump tables states (when action is set
5698 * to STAT_CLI_O_TAB) or clear tables (when action is STAT_CLI_O_CLR).
Willy Tarreau20e99322013-04-13 09:22:25 +02005699 * It returns 0 if the output buffer is full and it needs to be called
5700 * again, otherwise non-zero.
Willy Tarreau69f58c82010-07-12 17:55:33 +02005701 */
Willy Tarreau20e99322013-04-13 09:22:25 +02005702static int stats_table_request(struct stream_interface *si, int action)
Willy Tarreau69f58c82010-07-12 17:55:33 +02005703{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005704 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02005705 struct session *s = session_from_task(si->owner);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005706 struct ebmb_node *eb;
5707 int dt;
Willy Tarreau44455022012-12-05 23:01:12 +01005708 int skip_entry;
Willy Tarreau20e99322013-04-13 09:22:25 +02005709 int show = action == STAT_CLI_O_TAB;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005710
5711 /*
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005712 * We have 3 possible states in appctx->st2 :
Willy Tarreau295a8372011-03-10 11:25:07 +01005713 * - STAT_ST_INIT : the first call
5714 * - STAT_ST_INFO : the proxy pointer points to the next table to
Willy Tarreau69f58c82010-07-12 17:55:33 +02005715 * dump, the entry pointer is NULL ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005716 * - STAT_ST_LIST : the proxy pointer points to the current table
Willy Tarreau69f58c82010-07-12 17:55:33 +02005717 * and the entry pointer points to the next entry to be dumped,
5718 * and the refcount on the next entry is held ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005719 * - STAT_ST_END : nothing left to dump, the buffer may contain some
Willy Tarreau69f58c82010-07-12 17:55:33 +02005720 * data though.
5721 */
5722
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005723 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005724 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005725 if (appctx->st2 == STAT_ST_LIST) {
5726 appctx->ctx.table.entry->ref_cnt--;
5727 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Willy Tarreauf6efda12010-08-03 20:34:06 +02005728 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02005729 return 1;
5730 }
5731
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005732 chunk_reset(&trash);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005733
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005734 while (appctx->st2 != STAT_ST_FIN) {
5735 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005736 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005737 appctx->ctx.table.proxy = appctx->ctx.table.target;
5738 if (!appctx->ctx.table.proxy)
5739 appctx->ctx.table.proxy = proxy;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005740
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005741 appctx->ctx.table.entry = NULL;
5742 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005743 break;
5744
Willy Tarreau295a8372011-03-10 11:25:07 +01005745 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005746 if (!appctx->ctx.table.proxy ||
5747 (appctx->ctx.table.target &&
5748 appctx->ctx.table.proxy != appctx->ctx.table.target)) {
5749 appctx->st2 = STAT_ST_END;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005750 break;
5751 }
5752
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005753 if (appctx->ctx.table.proxy->table.size) {
5754 if (show && !stats_dump_table_head_to_buffer(&trash, si, appctx->ctx.table.proxy,
5755 appctx->ctx.table.target))
Willy Tarreau69f58c82010-07-12 17:55:33 +02005756 return 0;
5757
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005758 if (appctx->ctx.table.target &&
Willy Tarreau290e63a2012-09-20 18:07:14 +02005759 s->listener->bind_conf->level >= ACCESS_LVL_OPER) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005760 /* dump entries only if table explicitly requested */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005761 eb = ebmb_first(&appctx->ctx.table.proxy->table.keys);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005762 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005763 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
5764 appctx->ctx.table.entry->ref_cnt++;
5765 appctx->st2 = STAT_ST_LIST;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005766 break;
5767 }
5768 }
5769 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005770 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005771 break;
5772
Willy Tarreau295a8372011-03-10 11:25:07 +01005773 case STAT_ST_LIST:
Willy Tarreau44455022012-12-05 23:01:12 +01005774 skip_entry = 0;
Simon Hormanc88b8872011-06-15 15:18:49 +09005775
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005776 if (appctx->ctx.table.data_type >= 0) {
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005777 /* we're filtering on some data contents */
5778 void *ptr;
5779 long long data;
5780
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005781 dt = appctx->ctx.table.data_type;
5782 ptr = stktable_data_ptr(&appctx->ctx.table.proxy->table,
5783 appctx->ctx.table.entry,
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005784 dt);
5785
5786 data = 0;
5787 switch (stktable_data_types[dt].std_type) {
5788 case STD_T_SINT:
5789 data = stktable_data_cast(ptr, std_t_sint);
5790 break;
5791 case STD_T_UINT:
5792 data = stktable_data_cast(ptr, std_t_uint);
5793 break;
5794 case STD_T_ULL:
5795 data = stktable_data_cast(ptr, std_t_ull);
5796 break;
5797 case STD_T_FRQP:
5798 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005799 appctx->ctx.table.proxy->table.data_arg[dt].u);
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005800 break;
5801 }
5802
5803 /* skip the entry if the data does not match the test and the value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005804 if ((data < appctx->ctx.table.value &&
5805 (appctx->ctx.table.data_op == STD_OP_EQ ||
5806 appctx->ctx.table.data_op == STD_OP_GT ||
5807 appctx->ctx.table.data_op == STD_OP_GE)) ||
5808 (data == appctx->ctx.table.value &&
5809 (appctx->ctx.table.data_op == STD_OP_NE ||
5810 appctx->ctx.table.data_op == STD_OP_GT ||
5811 appctx->ctx.table.data_op == STD_OP_LT)) ||
5812 (data > appctx->ctx.table.value &&
5813 (appctx->ctx.table.data_op == STD_OP_EQ ||
5814 appctx->ctx.table.data_op == STD_OP_LT ||
5815 appctx->ctx.table.data_op == STD_OP_LE)))
Willy Tarreau44455022012-12-05 23:01:12 +01005816 skip_entry = 1;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005817 }
5818
Simon Hormanc88b8872011-06-15 15:18:49 +09005819 if (show && !skip_entry &&
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005820 !stats_dump_table_entry_to_buffer(&trash, si, appctx->ctx.table.proxy,
5821 appctx->ctx.table.entry))
Simon Hormand9366582011-06-15 15:18:45 +09005822 return 0;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005823
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005824 appctx->ctx.table.entry->ref_cnt--;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005825
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005826 eb = ebmb_next(&appctx->ctx.table.entry->key);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005827 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005828 struct stksess *old = appctx->ctx.table.entry;
5829 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreau8fa52f42012-01-09 11:50:03 +01005830 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005831 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, old);
5832 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5833 stksess_kill(&appctx->ctx.table.proxy->table, old);
5834 appctx->ctx.table.entry->ref_cnt++;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005835 break;
5836 }
5837
Simon Hormanc88b8872011-06-15 15:18:49 +09005838
5839 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005840 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
5841 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5842 stksess_kill(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Simon Hormanc88b8872011-06-15 15:18:49 +09005843
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005844 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
5845 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005846 break;
5847
Willy Tarreau295a8372011-03-10 11:25:07 +01005848 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005849 appctx->st2 = STAT_ST_FIN;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005850 break;
5851 }
5852 }
5853 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005854}
5855
Willy Tarreaud426a182010-03-05 14:58:26 +01005856/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01005857 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
5858 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
5859 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
5860 * lines are respected within the limit of 70 output chars. Lines that are
5861 * continuation of a previous truncated line begin with "+" instead of " "
5862 * after the offset. The new pointer is returned.
5863 */
Willy Tarreaud426a182010-03-05 14:58:26 +01005864static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
5865 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005866{
5867 int end;
5868 unsigned char c;
5869
5870 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02005871 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005872 return ptr;
5873
Willy Tarreau77804732012-10-29 16:14:26 +01005874 chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01005875
Willy Tarreaud426a182010-03-05 14:58:26 +01005876 while (ptr < len && ptr < bsize) {
5877 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01005878 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005879 if (out->len > end - 2)
5880 break;
5881 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005882 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005883 if (out->len > end - 3)
5884 break;
5885 out->str[out->len++] = '\\';
5886 switch (c) {
5887 case '\t': c = 't'; break;
5888 case '\n': c = 'n'; break;
5889 case '\r': c = 'r'; break;
5890 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005891 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005892 }
5893 out->str[out->len++] = c;
5894 } else {
5895 if (out->len > end - 5)
5896 break;
5897 out->str[out->len++] = '\\';
5898 out->str[out->len++] = 'x';
5899 out->str[out->len++] = hextab[(c >> 4) & 0xF];
5900 out->str[out->len++] = hextab[c & 0xF];
5901 }
Willy Tarreaud426a182010-03-05 14:58:26 +01005902 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005903 /* we had a line break, let's return now */
5904 out->str[out->len++] = '\n';
5905 *line = ptr;
5906 return ptr;
5907 }
5908 }
5909 /* we have an incomplete line, we return it as-is */
5910 out->str[out->len++] = '\n';
5911 return ptr;
5912}
5913
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005914/* This function dumps all captured errors onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005915 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005916 * to be called again, otherwise non-zero.
Willy Tarreau74808cb2009-03-04 15:53:18 +01005917 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005918static int stats_dump_errors_to_buffer(struct stream_interface *si)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005919{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005920 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005921 extern const char *monthname[12];
Willy Tarreau74808cb2009-03-04 15:53:18 +01005922
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005923 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau61b34732009-10-03 23:49:35 +02005924 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005925
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005926 chunk_reset(&trash);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005927
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005928 if (!appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005929 /* the function had not been called yet, let's prepare the
5930 * buffer for a response.
5931 */
Willy Tarreau10479e42010-12-12 14:00:34 +01005932 struct tm tm;
5933
5934 get_localtime(date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005935 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
Willy Tarreau10479e42010-12-12 14:00:34 +01005936 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
5937 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
5938 error_snapshot_id);
5939
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005940 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau10479e42010-12-12 14:00:34 +01005941 /* Socket buffer full. Let's try again later from the same point */
5942 return 0;
5943 }
5944
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005945 appctx->ctx.errors.px = proxy;
5946 appctx->ctx.errors.buf = 0;
5947 appctx->ctx.errors.bol = 0;
5948 appctx->ctx.errors.ptr = -1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005949 }
5950
5951 /* we have two inner loops here, one for the proxy, the other one for
5952 * the buffer.
5953 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005954 while (appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005955 struct error_snapshot *es;
5956
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005957 if (appctx->ctx.errors.buf == 0)
5958 es = &appctx->ctx.errors.px->invalid_req;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005959 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005960 es = &appctx->ctx.errors.px->invalid_rep;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005961
5962 if (!es->when.tv_sec)
5963 goto next;
5964
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005965 if (appctx->ctx.errors.iid >= 0 &&
5966 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
5967 es->oe->uuid != appctx->ctx.errors.iid)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005968 goto next;
5969
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005970 if (appctx->ctx.errors.ptr < 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005971 /* just print headers now */
5972
5973 char pn[INET6_ADDRSTRLEN];
5974 struct tm tm;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005975 int port;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005976
5977 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005978 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01005979 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02005980 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01005981
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005982 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
5983 case AF_INET:
5984 case AF_INET6:
5985 port = get_host_port(&es->src);
5986 break;
5987 default:
5988 port = 0;
5989 }
5990
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005991 switch (appctx->ctx.errors.buf) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005992 case 0:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005993 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005994 " frontend %s (#%d): invalid request\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005995 " backend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005996 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005997 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
5998 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005999 break;
6000 case 1:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006001 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01006002 " backend %s (#%d) : invalid response\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006003 " frontend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006004 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006005 es->oe->id, es->oe->uuid);
Willy Tarreau74808cb2009-03-04 15:53:18 +01006006 break;
6007 }
6008
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006009 chunk_appendf(&trash,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02006010 ", server %s (#%d), event #%u\n"
6011 " src %s:%d, session #%d, session flags 0x%08x\n"
6012 " HTTP msg state %d, msg flags 0x%08x, tx flags 0x%08x\n"
6013 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
6014 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
6015 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
6016 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
6017 es->ev_id,
6018 pn, port, es->sid, es->s_flags,
6019 es->state, es->m_flags, es->t_flags,
6020 es->m_clen, es->m_blen,
6021 es->b_flags, es->b_out, es->b_tot,
6022 es->len, es->b_wrap, es->pos);
6023
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006024 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006025 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02006026 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006027 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006028 appctx->ctx.errors.ptr = 0;
6029 appctx->ctx.errors.sid = es->sid;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006030 }
6031
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006032 if (appctx->ctx.errors.sid != es->sid) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006033 /* the snapshot changed while we were dumping it */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006034 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01006035 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006036 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau61b34732009-10-03 23:49:35 +02006037 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006038 goto next;
6039 }
6040
6041 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006042 while (appctx->ctx.errors.ptr < es->len && appctx->ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006043 int newptr;
6044 int newline;
6045
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006046 newline = appctx->ctx.errors.bol;
6047 newptr = dump_text_line(&trash, es->buf, sizeof(es->buf), es->len, &newline, appctx->ctx.errors.ptr);
6048 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02006049 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006050
Willy Tarreau19d14ef2012-10-29 16:51:55 +01006051 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01006052 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02006053 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006054 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006055 appctx->ctx.errors.ptr = newptr;
6056 appctx->ctx.errors.bol = newline;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006057 };
6058 next:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01006059 appctx->ctx.errors.bol = 0;
6060 appctx->ctx.errors.ptr = -1;
6061 appctx->ctx.errors.buf++;
6062 if (appctx->ctx.errors.buf > 1) {
6063 appctx->ctx.errors.buf = 0;
6064 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006065 }
6066 }
6067
6068 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02006069 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01006070}
6071
Willy Tarreaud5781202012-09-22 19:32:35 +02006072/* parse the "level" argument on the bind lines */
6073static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
6074{
6075 if (!*args[cur_arg + 1]) {
6076 memprintf(err, "'%s' : missing level", args[cur_arg]);
6077 return ERR_ALERT | ERR_FATAL;
6078 }
6079
6080 if (!strcmp(args[cur_arg+1], "user"))
6081 conf->level = ACCESS_LVL_USER;
6082 else if (!strcmp(args[cur_arg+1], "operator"))
6083 conf->level = ACCESS_LVL_OPER;
6084 else if (!strcmp(args[cur_arg+1], "admin"))
6085 conf->level = ACCESS_LVL_ADMIN;
6086 else {
6087 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
6088 args[cur_arg], args[cur_arg+1]);
6089 return ERR_ALERT | ERR_FATAL;
6090 }
6091
6092 return 0;
6093}
6094
Willy Tarreaub24281b2011-02-13 13:16:36 +01006095struct si_applet http_stats_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006096 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006097 .name = "<STATS>", /* used for logging */
6098 .fct = http_stats_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07006099 .release = NULL,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006100};
6101
Simon Horman9bd2c732011-06-15 15:18:44 +09006102static struct si_applet cli_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01006103 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006104 .name = "<CLI>", /* used for logging */
6105 .fct = cli_io_handler,
Willy Tarreau5f9a8772012-11-26 02:22:40 +01006106 .release = cli_release_handler,
Willy Tarreaub24281b2011-02-13 13:16:36 +01006107};
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01006108
Willy Tarreaudc13c112013-06-21 23:16:39 +02006109static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau10522fd2008-07-09 20:12:41 +02006110 { CFG_GLOBAL, "stats", stats_parse_global },
6111 { 0, NULL, NULL },
6112}};
6113
Willy Tarreaud5781202012-09-22 19:32:35 +02006114static struct bind_kw_list bind_kws = { "STAT", { }, {
6115 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
6116 { NULL, NULL, 0 },
6117}};
6118
Willy Tarreau10522fd2008-07-09 20:12:41 +02006119__attribute__((constructor))
6120static void __dumpstats_module_init(void)
6121{
6122 cfg_register_keywords(&cfg_kws);
Willy Tarreaud5781202012-09-22 19:32:35 +02006123 bind_register_keywords(&bind_kws);
Willy Tarreau10522fd2008-07-09 20:12:41 +02006124}
6125
Willy Tarreau91861262007-10-17 17:06:05 +02006126/*
6127 * Local variables:
6128 * c-indent-level: 8
6129 * c-basic-offset: 8
6130 * End:
6131 */