blob: f6768c9203c0a05e33f62b3457bdaac60e53a71d [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 */
75 STAT_CLI_O_INFO, /* dump info */
76 STAT_CLI_O_SESS, /* dump sessions */
77 STAT_CLI_O_ERR, /* dump errors */
78 STAT_CLI_O_TAB, /* dump tables */
79 STAT_CLI_O_CLR, /* clear tables */
80 STAT_CLI_O_SET, /* set entries in tables */
81 STAT_CLI_O_STAT, /* dump stats */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +010082 STAT_CLI_O_PATS, /* list all pattern reference avalaible */
83 STAT_CLI_O_PAT, /* list all entries of a pattern */
Willy Tarreau91b843d2014-01-28 16:27:17 +010084 STAT_CLI_O_MLOOK, /* lookup a map entry */
Willy Tarreau12833bb2014-01-28 16:49:56 +010085 STAT_CLI_O_POOLS, /* dump memory pools */
Willy Tarreau91b843d2014-01-28 16:27:17 +010086};
87
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010088static int stats_dump_info_to_buffer(struct stream_interface *si);
Willy Tarreau12833bb2014-01-28 16:49:56 +010089static int stats_dump_pools_to_buffer(struct stream_interface *si);
Willy Tarreau76153662012-11-26 01:16:39 +010090static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess);
Simon Horman9bd2c732011-06-15 15:18:44 +090091static int stats_dump_sess_to_buffer(struct stream_interface *si);
92static int stats_dump_errors_to_buffer(struct stream_interface *si);
Willy Tarreau44455022012-12-05 23:01:12 +010093static int stats_table_request(struct stream_interface *si, int show);
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010094static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri);
95static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +010096static int stats_pats_list(struct stream_interface *si);
97static int stats_pat_list(struct stream_interface *si);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010098static int stats_map_lookup(struct stream_interface *si);
Simon Horman9bd2c732011-06-15 15:18:44 +090099
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100100/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100101 * cli_io_handler()
102 * -> stats_dump_sess_to_buffer() // "show sess"
103 * -> stats_dump_errors_to_buffer() // "show errors"
104 * -> stats_dump_info_to_buffer() // "show info"
105 * -> stats_dump_stat_to_buffer() // "show stat"
106 * -> stats_dump_csv_header()
107 * -> stats_dump_proxy_to_buffer()
108 * -> stats_dump_fe_stats()
109 * -> stats_dump_li_stats()
110 * -> stats_dump_sv_stats()
111 * -> stats_dump_be_stats()
112 *
113 * http_stats_io_handler()
114 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
115 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
116 * -> stats_dump_html_head() // emits the HTML headers
117 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
118 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
119 * -> stats_dump_html_px_hdr()
120 * -> stats_dump_fe_stats()
121 * -> stats_dump_li_stats()
122 * -> stats_dump_sv_stats()
123 * -> stats_dump_be_stats()
124 * -> stats_dump_html_px_end()
125 * -> stats_dump_html_end() // emits HTML trailer
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100126 */
127
Simon Horman9bd2c732011-06-15 15:18:44 +0900128static struct si_applet cli_applet;
129
130static const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200131 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200132 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Willy Tarreau88ee3972010-07-13 13:48:00 +0200133 " clear table : remove an entry from a table\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200134 " help : this message\n"
135 " prompt : toggle interactive mode with prompt\n"
136 " quit : disconnect\n"
137 " show info : report information about the running process\n"
Willy Tarreau12833bb2014-01-28 16:49:56 +0100138 " show pools : report information about the memory pools usage\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200139 " show stat : report counters for each proxy and server\n"
140 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100141 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau69f58c82010-07-12 17:55:33 +0200142 " show table [id]: report table usage stats or dump this table's contents\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +0200143 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +0200144 " set weight : change a server's weight\n"
Willy Tarreau654694e2012-06-07 01:03:16 +0200145 " set table [id] : update or create a table entry's data\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +0100146 " set timeout : change a timeout setting\n"
Willy Tarreau2a0f4d22011-08-02 11:49:05 +0200147 " set maxconn : change a maxconn setting\n"
Willy Tarreauf5b22872011-09-07 16:13:44 +0200148 " set rate-limit : change a rate limiting value\n"
Willy Tarreaua295edc2011-09-07 23:21:03 +0200149 " disable : put a server or frontend in maintenance mode\n"
150 " enable : re-enable a server or frontend which is in maintenance mode\n"
151 " shutdown : kill a session or a frontend (eg:to release listening ports)\n"
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100152 " show acl [id] : report avalaible acls or dump an acl's contents\n"
153 " get acl : reports the patterns matching a sample for an ACL\n"
154 " add acl : add acl entry\n"
155 " del acl : delete acl entry\n"
156 " clear acl <id> : clear the content of this acl\n"
Thierry FOURNIER1432a0c2014-03-11 13:42:38 +0100157 " show map [id] : report avalaible maps or dump a map's contents\n"
158 " get map : reports the keys and values matching a sample for a map\n"
159 " set map : modify map entry\n"
160 " add map : add map entry\n"
161 " del map : delete map entry\n"
162 " clear map <id> : clear the content of this map\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200163 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200164
Simon Horman9bd2c732011-06-15 15:18:44 +0900165static const char stats_permission_denied_msg[] =
Willy Tarreau6162db22009-10-10 17:13:00 +0200166 "Permission denied\n"
167 "";
168
Willy Tarreau295a8372011-03-10 11:25:07 +0100169/* data transmission states for the stats responses */
170enum {
171 STAT_ST_INIT = 0,
172 STAT_ST_HEAD,
173 STAT_ST_INFO,
174 STAT_ST_LIST,
175 STAT_ST_END,
176 STAT_ST_FIN,
177};
178
179/* data transmission states for the stats responses inside a proxy */
180enum {
181 STAT_PX_ST_INIT = 0,
182 STAT_PX_ST_TH,
183 STAT_PX_ST_FE,
184 STAT_PX_ST_LI,
185 STAT_PX_ST_SV,
186 STAT_PX_ST_BE,
187 STAT_PX_ST_END,
188 STAT_PX_ST_FIN,
189};
190
Cyril Bonté19979e12012-04-04 12:57:21 +0200191extern const char *stat_status_codes[];
192
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200193/* This function is called from the session-level accept() in order to instanciate
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200194 * a new stats socket. It returns a positive value upon success, 0 if the session
Willy Tarreaueb472682010-05-28 18:46:57 +0200195 * needs to be closed and ignored, or a negative value upon critical failure.
196 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900197static int stats_accept(struct session *s)
Willy Tarreaueb472682010-05-28 18:46:57 +0200198{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100199 s->target = &cli_applet.obj_type;
Willy Tarreau4171e9e2013-12-01 12:32:30 +0100200 /* no need to initialize the applet, it will start with st0=st1 = 0 */
Willy Tarreaueb472682010-05-28 18:46:57 +0200201
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200202 tv_zero(&s->logs.tv_request);
203 s->logs.t_queue = 0;
204 s->logs.t_connect = 0;
205 s->logs.t_data = 0;
206 s->logs.t_close = 0;
207 s->logs.bytes_in = s->logs.bytes_out = 0;
208 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
209 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaueb472682010-05-28 18:46:57 +0200210
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200211 s->req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreaueb472682010-05-28 18:46:57 +0200212
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200213 if (s->listener->timeout) {
214 s->req->rto = *s->listener->timeout;
215 s->rep->wto = *s->listener->timeout;
Willy Tarreaueb472682010-05-28 18:46:57 +0200216 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200217 return 1;
Willy Tarreaueb472682010-05-28 18:46:57 +0200218}
219
Willy Tarreau07e9e642010-08-17 21:48:17 +0200220/* allocate a new stats frontend named <name>, and return it
221 * (or NULL in case of lack of memory).
222 */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200223static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
Willy Tarreau07e9e642010-08-17 21:48:17 +0200224{
225 struct proxy *fe;
226
227 fe = (struct proxy *)calloc(1, sizeof(struct proxy));
228 if (!fe)
229 return NULL;
230
Willy Tarreau237250c2011-07-29 01:49:03 +0200231 init_new_proxy(fe);
Willy Tarreau050536d2012-10-04 08:47:34 +0200232 fe->next = proxy;
233 proxy = fe;
Willy Tarreau07e9e642010-08-17 21:48:17 +0200234 fe->last_change = now.tv_sec;
235 fe->id = strdup("GLOBAL");
236 fe->cap = PR_CAP_FE;
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200237 fe->maxconn = 10; /* default to 10 concurrent connections */
238 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200239 fe->conf.file = strdup(file);
240 fe->conf.line = line;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200241 fe->accept = stats_accept;
Willy Tarreau050536d2012-10-04 08:47:34 +0200242
243 /* the stats frontend is the only one able to assign ID #0 */
244 fe->conf.id.key = fe->uuid = 0;
245 eb32_insert(&used_proxy_id, &fe->conf.id);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200246 return fe;
247}
248
Willy Tarreaufbee7132007-10-18 13:53:22 +0200249/* This function parses a "stats" statement in the "global" section. It returns
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200250 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
251 * error message into the <err> buffer which will be preallocated. The trailing
252 * '\n' must not be written. The function must be called with <args> pointing to
253 * the first word after "stats".
Willy Tarreaufbee7132007-10-18 13:53:22 +0200254 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200255static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200256 struct proxy *defpx, const char *file, int line,
257 char **err)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200258{
Willy Tarreau4348fad2012-09-20 16:48:07 +0200259 struct bind_conf *bind_conf;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200260 struct listener *l;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200261
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200262 if (!strcmp(args[1], "socket")) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200263 int cur_arg;
264
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200265 if (*args[2] == 0) {
Willy Tarreauc53d4222012-09-20 20:19:28 +0200266 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 +0200267 return -1;
268 }
269
Willy Tarreau89a63132009-08-16 17:41:45 +0200270 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200271 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200272 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau89a63132009-08-16 17:41:45 +0200273 return -1;
274 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200275 }
276
Willy Tarreau4348fad2012-09-20 16:48:07 +0200277 bind_conf = bind_conf_alloc(&global.stats_fe->conf.bind, file, line, args[2]);
Willy Tarreau290e63a2012-09-20 18:07:14 +0200278 bind_conf->level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200279
Willy Tarreauc53d4222012-09-20 20:19:28 +0200280 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
281 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
282 file, line, args[0], args[1], err && *err ? *err : "error");
283 return -1;
284 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200285
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200286 cur_arg = 3;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200287 while (*args[cur_arg]) {
Willy Tarreaud5781202012-09-22 19:32:35 +0200288 static int bind_dumped;
289 struct bind_kw *kw;
290
291 kw = bind_find_kw(args[cur_arg]);
292 if (kw) {
293 if (!kw->parse) {
294 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
295 args[0], args[1], args[cur_arg]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200296 return -1;
297 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200298
299 if (kw->parse(args, cur_arg, curpx, bind_conf, err) != 0) {
300 if (err && *err)
301 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
302 else
303 memprintf(err, "'%s %s' : error encountered while processing '%s'",
304 args[0], args[1], args[cur_arg]);
Willy Tarreau6162db22009-10-10 17:13:00 +0200305 return -1;
306 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200307
308 cur_arg += 1 + kw->skip;
309 continue;
Willy Tarreau6162db22009-10-10 17:13:00 +0200310 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200311
312 if (!bind_dumped) {
313 bind_dump_kws(err);
314 indent_msg(err, 4);
315 bind_dumped = 1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200316 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200317
318 memprintf(err, "'%s %s' : unknown keyword '%s'.%s%s",
319 args[0], args[1], args[cur_arg],
320 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
321 return -1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200322 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100323
Willy Tarreauc53d4222012-09-20 20:19:28 +0200324 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
325 l->maxconn = global.stats_fe->maxconn;
326 l->backlog = global.stats_fe->backlog;
327 l->timeout = &global.stats_fe->timeout.client;
328 l->accept = session_accept;
329 l->handler = process_session;
330 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
331 l->nice = -64; /* we want to boost priority for local stats */
332 global.maxsock += l->maxconn;
333 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200334 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200335 else if (!strcmp(args[1], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100336 unsigned timeout;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200337 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100338
339 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200340 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100341 return -1;
342 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200343
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100344 if (!timeout) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200345 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200346 return -1;
347 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200348 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200349 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200350 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200351 return -1;
352 }
353 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200354 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200355 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200356 else if (!strcmp(args[1], "maxconn")) {
357 int maxconn = atol(args[2]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200358
359 if (maxconn <= 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200360 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200361 return -1;
362 }
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200363
364 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200365 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200366 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200367 return -1;
368 }
369 }
370 global.stats_fe->maxconn = maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200371 }
Willy Tarreau35b7b162012-10-22 23:17:18 +0200372 else if (!strcmp(args[1], "bind-process")) { /* enable the socket only on some processes */
373 int cur_arg = 2;
374 unsigned int set = 0;
375
Willy Tarreau91319572013-04-20 09:48:50 +0200376 if (!global.stats_fe) {
377 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
378 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
379 return -1;
380 }
381 }
382
Willy Tarreau35b7b162012-10-22 23:17:18 +0200383 while (*args[cur_arg]) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100384 unsigned int low, high;
385
Willy Tarreau35b7b162012-10-22 23:17:18 +0200386 if (strcmp(args[cur_arg], "all") == 0) {
387 set = 0;
388 break;
389 }
390 else if (strcmp(args[cur_arg], "odd") == 0) {
391 set |= 0x55555555;
392 }
393 else if (strcmp(args[cur_arg], "even") == 0) {
394 set |= 0xAAAAAAAA;
395 }
Willy Tarreau83d84cf2012-11-22 01:04:31 +0100396 else if (isdigit((int)*args[cur_arg])) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100397 char *dash = strchr(args[cur_arg], '-');
398
399 low = high = str2uic(args[cur_arg]);
400 if (dash)
401 high = str2uic(dash + 1);
402
403 if (high < low) {
404 unsigned int swap = low;
405 low = high;
406 high = swap;
407 }
408
409 if (low < 1 || high > 32) {
410 memprintf(err, "'%s %s' supports process numbers from 1 to 32.\n",
411 args[0], args[1]);
Willy Tarreau35b7b162012-10-22 23:17:18 +0200412 return -1;
413 }
Willy Tarreau110ecc12012-11-15 17:50:01 +0100414
415 while (low <= high)
416 set |= 1 << (low++ - 1);
417 }
418 else {
419 memprintf(err,
420 "'%s %s' expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to 32.\n",
421 args[0], args[1]);
422 return -1;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200423 }
424 cur_arg++;
425 }
426 global.stats_fe->bind_proc = set;
427 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200428 else {
Willy Tarreau35b7b162012-10-22 23:17:18 +0200429 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200430 return -1;
431 }
432 return 0;
433}
434
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100435/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
436 * for clearing it if needed.
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100437 * NOTE: Some tools happen to rely on the field position instead of its name,
438 * so please only append new fields at the end, never in the middle.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100439 */
440static void stats_dump_csv_header()
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100441{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100442 chunk_appendf(&trash,
443 "# pxname,svname,"
444 "qcur,qmax,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100445 "scur,smax,slim,stot,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100446 "bin,bout,"
447 "dreq,dresp,"
448 "ereq,econ,eresp,"
449 "wretr,wredis,"
450 "status,weight,act,bck,"
451 "chkfail,chkdown,lastchg,downtime,qlimit,"
452 "pid,iid,sid,throttle,lbtot,tracked,type,"
453 "rate,rate_lim,rate_max,"
454 "check_status,check_code,check_duration,"
455 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
456 "req_rate,req_rate_max,req_tot,"
457 "cli_abrt,srv_abrt,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100458 "comp_in,comp_out,comp_byp,comp_rsp,lastsess,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100459 "\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100460}
461
Simon Hormand9366582011-06-15 15:18:45 +0900462/* print a string of text buffer to <out>. The format is :
463 * Non-printable chars \t, \n, \r and \e are * encoded in C format.
464 * Other non-printable chars are encoded "\xHH". Space and '\' are also escaped.
465 * Print stopped if null char or <bsize> is reached, or if no more place in the chunk.
466 */
467static int dump_text(struct chunk *out, const char *buf, int bsize)
468{
469 unsigned char c;
470 int ptr = 0;
471
472 while (buf[ptr] && ptr < bsize) {
473 c = buf[ptr];
474 if (isprint(c) && isascii(c) && c != '\\' && c != ' ') {
475 if (out->len > out->size - 1)
476 break;
477 out->str[out->len++] = c;
478 }
479 else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ') {
480 if (out->len > out->size - 2)
481 break;
482 out->str[out->len++] = '\\';
483 switch (c) {
484 case ' ': c = ' '; break;
485 case '\t': c = 't'; break;
486 case '\n': c = 'n'; break;
487 case '\r': c = 'r'; break;
488 case '\e': c = 'e'; break;
489 case '\\': c = '\\'; break;
490 }
491 out->str[out->len++] = c;
492 }
493 else {
494 if (out->len > out->size - 4)
495 break;
496 out->str[out->len++] = '\\';
497 out->str[out->len++] = 'x';
498 out->str[out->len++] = hextab[(c >> 4) & 0xF];
499 out->str[out->len++] = hextab[c & 0xF];
500 }
501 ptr++;
502 }
503
504 return ptr;
505}
506
507/* print a buffer in hexa.
508 * Print stopped if <bsize> is reached, or if no more place in the chunk.
509 */
510static int dump_binary(struct chunk *out, const char *buf, int bsize)
511{
512 unsigned char c;
513 int ptr = 0;
514
515 while (ptr < bsize) {
516 c = buf[ptr];
517
518 if (out->len > out->size - 2)
519 break;
520 out->str[out->len++] = hextab[(c >> 4) & 0xF];
521 out->str[out->len++] = hextab[c & 0xF];
522
523 ptr++;
524 }
525 return ptr;
526}
527
528/* Dump the status of a table to a stream interface's
529 * read buffer. It returns 0 if the output buffer is full
530 * and needs to be called again, otherwise non-zero.
531 */
532static int stats_dump_table_head_to_buffer(struct chunk *msg, struct stream_interface *si,
533 struct proxy *proxy, struct proxy *target)
534{
Willy Tarreau306f8302013-07-08 15:53:06 +0200535 struct session *s = session_from_task(si->owner);
Simon Hormand9366582011-06-15 15:18:45 +0900536
Willy Tarreau77804732012-10-29 16:14:26 +0100537 chunk_appendf(msg, "# table: %s, type: %s, size:%d, used:%d\n",
Simon Hormand9366582011-06-15 15:18:45 +0900538 proxy->id, stktable_types[proxy->table.type].kw, proxy->table.size, proxy->table.current);
539
540 /* any other information should be dumped here */
541
Willy Tarreau290e63a2012-09-20 18:07:14 +0200542 if (target && s->listener->bind_conf->level < ACCESS_LVL_OPER)
Willy Tarreau77804732012-10-29 16:14:26 +0100543 chunk_appendf(msg, "# contents not dumped due to insufficient privileges\n");
Simon Hormand9366582011-06-15 15:18:45 +0900544
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200545 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900546 return 0;
547
548 return 1;
549}
550
551/* Dump the a table entry to a stream interface's
552 * read buffer. It returns 0 if the output buffer is full
553 * and needs to be called again, otherwise non-zero.
554 */
555static int stats_dump_table_entry_to_buffer(struct chunk *msg, struct stream_interface *si,
556 struct proxy *proxy, struct stksess *entry)
557{
558 int dt;
559
Willy Tarreau77804732012-10-29 16:14:26 +0100560 chunk_appendf(msg, "%p:", entry);
Simon Hormand9366582011-06-15 15:18:45 +0900561
562 if (proxy->table.type == STKTABLE_TYPE_IP) {
563 char addr[INET_ADDRSTRLEN];
564 inet_ntop(AF_INET, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100565 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900566 }
567 else if (proxy->table.type == STKTABLE_TYPE_IPV6) {
568 char addr[INET6_ADDRSTRLEN];
569 inet_ntop(AF_INET6, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100570 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900571 }
572 else if (proxy->table.type == STKTABLE_TYPE_INTEGER) {
Willy Tarreau77804732012-10-29 16:14:26 +0100573 chunk_appendf(msg, " key=%u", *(unsigned int *)entry->key.key);
Simon Hormand9366582011-06-15 15:18:45 +0900574 }
575 else if (proxy->table.type == STKTABLE_TYPE_STRING) {
Willy Tarreau77804732012-10-29 16:14:26 +0100576 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900577 dump_text(msg, (const char *)entry->key.key, proxy->table.key_size);
578 }
579 else {
Willy Tarreau77804732012-10-29 16:14:26 +0100580 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900581 dump_binary(msg, (const char *)entry->key.key, proxy->table.key_size);
582 }
583
Willy Tarreau77804732012-10-29 16:14:26 +0100584 chunk_appendf(msg, " use=%d exp=%d", entry->ref_cnt - 1, tick_remain(now_ms, entry->expire));
Simon Hormand9366582011-06-15 15:18:45 +0900585
586 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
587 void *ptr;
588
589 if (proxy->table.data_ofs[dt] == 0)
590 continue;
591 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
Willy Tarreau77804732012-10-29 16:14:26 +0100592 chunk_appendf(msg, " %s(%d)=", stktable_data_types[dt].name, proxy->table.data_arg[dt].u);
Simon Hormand9366582011-06-15 15:18:45 +0900593 else
Willy Tarreau77804732012-10-29 16:14:26 +0100594 chunk_appendf(msg, " %s=", stktable_data_types[dt].name);
Simon Hormand9366582011-06-15 15:18:45 +0900595
596 ptr = stktable_data_ptr(&proxy->table, entry, dt);
597 switch (stktable_data_types[dt].std_type) {
598 case STD_T_SINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100599 chunk_appendf(msg, "%d", stktable_data_cast(ptr, std_t_sint));
Simon Hormand9366582011-06-15 15:18:45 +0900600 break;
601 case STD_T_UINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100602 chunk_appendf(msg, "%u", stktable_data_cast(ptr, std_t_uint));
Simon Hormand9366582011-06-15 15:18:45 +0900603 break;
604 case STD_T_ULL:
Willy Tarreau77804732012-10-29 16:14:26 +0100605 chunk_appendf(msg, "%lld", stktable_data_cast(ptr, std_t_ull));
Simon Hormand9366582011-06-15 15:18:45 +0900606 break;
607 case STD_T_FRQP:
Willy Tarreau77804732012-10-29 16:14:26 +0100608 chunk_appendf(msg, "%d",
Simon Hormand9366582011-06-15 15:18:45 +0900609 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
610 proxy->table.data_arg[dt].u));
611 break;
612 }
613 }
Willy Tarreau77804732012-10-29 16:14:26 +0100614 chunk_appendf(msg, "\n");
Simon Hormand9366582011-06-15 15:18:45 +0900615
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200616 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900617 return 0;
618
619 return 1;
620}
621
Willy Tarreaudec98142012-06-06 23:37:08 +0200622static void stats_sock_table_key_request(struct stream_interface *si, char **args, int action)
Simon Horman121f3052011-06-15 15:18:46 +0900623{
Willy Tarreau306f8302013-07-08 15:53:06 +0200624 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100625 struct appctx *appctx = __objt_appctx(si->end);
626 struct proxy *px = appctx->ctx.table.target;
Simon Horman121f3052011-06-15 15:18:46 +0900627 struct stksess *ts;
Simon Hormancec9a222011-06-15 15:18:51 +0900628 uint32_t uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900629 unsigned char ip6_key[sizeof(struct in6_addr)];
Willy Tarreau654694e2012-06-07 01:03:16 +0200630 long long value;
631 int data_type;
Willy Tarreau47060b62013-08-01 21:11:42 +0200632 int cur_arg;
Willy Tarreau654694e2012-06-07 01:03:16 +0200633 void *ptr;
634 struct freq_ctr_period *frqp;
Simon Horman121f3052011-06-15 15:18:46 +0900635
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100636 appctx->st0 = STAT_CLI_OUTPUT;
Simon Horman121f3052011-06-15 15:18:46 +0900637
638 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100639 appctx->ctx.cli.msg = "Key value expected\n";
640 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900641 return;
642 }
643
Simon Hormanc5b89f62011-06-15 15:18:50 +0900644 switch (px->table.type) {
645 case STKTABLE_TYPE_IP:
Simon Hormancec9a222011-06-15 15:18:51 +0900646 uint32_key = htonl(inetaddr_host(args[4]));
Willy Tarreau07115412012-10-29 21:56:59 +0100647 static_table_key->key = &uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900648 break;
649 case STKTABLE_TYPE_IPV6:
650 inet_pton(AF_INET6, args[4], ip6_key);
Willy Tarreau07115412012-10-29 21:56:59 +0100651 static_table_key->key = &ip6_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900652 break;
Simon Hormancec9a222011-06-15 15:18:51 +0900653 case STKTABLE_TYPE_INTEGER:
654 {
655 char *endptr;
656 unsigned long val;
657 errno = 0;
658 val = strtoul(args[4], &endptr, 10);
659 if ((errno == ERANGE && val == ULONG_MAX) ||
660 (errno != 0 && val == 0) || endptr == args[4] ||
661 val > 0xffffffff) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100662 appctx->ctx.cli.msg = "Invalid key\n";
663 appctx->st0 = STAT_CLI_PRINT;
Simon Hormancec9a222011-06-15 15:18:51 +0900664 return;
665 }
666 uint32_key = (uint32_t) val;
Willy Tarreau07115412012-10-29 21:56:59 +0100667 static_table_key->key = &uint32_key;
Simon Hormancec9a222011-06-15 15:18:51 +0900668 break;
669 }
670 break;
Simon Horman619e3cc2011-06-15 15:18:52 +0900671 case STKTABLE_TYPE_STRING:
Willy Tarreau07115412012-10-29 21:56:59 +0100672 static_table_key->key = args[4];
673 static_table_key->key_len = strlen(args[4]);
Simon Horman619e3cc2011-06-15 15:18:52 +0900674 break;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900675 default:
Willy Tarreaudec98142012-06-06 23:37:08 +0200676 switch (action) {
677 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100678 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 +0200679 break;
680 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100681 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 +0200682 break;
683 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100684 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200685 break;
686 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100687 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900688 return;
689 }
690
691 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +0200692 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100693 appctx->ctx.cli.msg = stats_permission_denied_msg;
694 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900695 return;
696 }
697
Willy Tarreau07115412012-10-29 21:56:59 +0100698 ts = stktable_lookup_key(&px->table, static_table_key);
Simon Horman17bce342011-06-15 15:18:47 +0900699
Willy Tarreaudec98142012-06-06 23:37:08 +0200700 switch (action) {
701 case STAT_CLI_O_TAB:
702 if (!ts)
703 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100704 chunk_reset(&trash);
705 if (!stats_dump_table_head_to_buffer(&trash, si, px, px))
Simon Horman17bce342011-06-15 15:18:47 +0900706 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100707 stats_dump_table_entry_to_buffer(&trash, si, px, ts);
Simon Horman121f3052011-06-15 15:18:46 +0900708 return;
Willy Tarreaudec98142012-06-06 23:37:08 +0200709
710 case STAT_CLI_O_CLR:
711 if (!ts)
712 return;
713 if (ts->ref_cnt) {
714 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100715 appctx->ctx.cli.msg = "Entry currently in use, cannot remove\n";
716 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200717 return;
718 }
719 stksess_kill(&px->table, ts);
720 break;
Simon Horman17bce342011-06-15 15:18:47 +0900721
Willy Tarreau654694e2012-06-07 01:03:16 +0200722 case STAT_CLI_O_SET:
Willy Tarreau654694e2012-06-07 01:03:16 +0200723 if (ts)
724 stktable_touch(&px->table, ts, 1);
725 else {
Willy Tarreau07115412012-10-29 21:56:59 +0100726 ts = stksess_new(&px->table, static_table_key);
Willy Tarreau654694e2012-06-07 01:03:16 +0200727 if (!ts) {
728 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100729 appctx->ctx.cli.msg = "Unable to allocate a new entry\n";
730 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200731 return;
732 }
733 stktable_store(&px->table, ts, 1);
734 }
735
Willy Tarreau47060b62013-08-01 21:11:42 +0200736 for (cur_arg = 5; *args[cur_arg]; cur_arg += 2) {
737 if (strncmp(args[cur_arg], "data.", 5) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100738 appctx->ctx.cli.msg = "\"data.<type>\" followed by a value expected\n";
739 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200740 return;
741 }
742
743 data_type = stktable_get_data_type(args[cur_arg] + 5);
744 if (data_type < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100745 appctx->ctx.cli.msg = "Unknown data type\n";
746 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200747 return;
748 }
749
750 if (!px->table.data_ofs[data_type]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100751 appctx->ctx.cli.msg = "Data type not stored in this table\n";
752 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200753 return;
754 }
755
756 if (!*args[cur_arg+1] || strl2llrc(args[cur_arg+1], strlen(args[cur_arg+1]), &value) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100757 appctx->ctx.cli.msg = "Require a valid integer value to store\n";
758 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200759 return;
760 }
761
762 ptr = stktable_data_ptr(&px->table, ts, data_type);
763
764 switch (stktable_data_types[data_type].std_type) {
765 case STD_T_SINT:
766 stktable_data_cast(ptr, std_t_sint) = value;
767 break;
768 case STD_T_UINT:
769 stktable_data_cast(ptr, std_t_uint) = value;
770 break;
771 case STD_T_ULL:
772 stktable_data_cast(ptr, std_t_ull) = value;
773 break;
774 case STD_T_FRQP:
775 /* We set both the current and previous values. That way
776 * the reported frequency is stable during all the period
777 * then slowly fades out. This allows external tools to
778 * push measures without having to update them too often.
779 */
780 frqp = &stktable_data_cast(ptr, std_t_frqp);
781 frqp->curr_tick = now_ms;
782 frqp->prev_ctr = 0;
783 frqp->curr_ctr = value;
784 break;
785 }
Willy Tarreau654694e2012-06-07 01:03:16 +0200786 }
787 break;
788
Willy Tarreaudec98142012-06-06 23:37:08 +0200789 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100790 appctx->ctx.cli.msg = "Unknown action\n";
791 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200792 break;
Simon Horman121f3052011-06-15 15:18:46 +0900793 }
Simon Horman121f3052011-06-15 15:18:46 +0900794}
795
Willy Tarreau654694e2012-06-07 01:03:16 +0200796static void stats_sock_table_data_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900797{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100798 struct appctx *appctx = __objt_appctx(si->end);
799
Willy Tarreau04b3a192013-04-13 09:41:37 +0200800 if (action != STAT_CLI_O_TAB && action != STAT_CLI_O_CLR) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100801 appctx->ctx.cli.msg = "content-based lookup is only supported with the \"show\" and \"clear\" actions";
802 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200803 return;
804 }
805
Simon Hormand5b9fd92011-06-15 15:18:48 +0900806 /* condition on stored data value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100807 appctx->ctx.table.data_type = stktable_get_data_type(args[3] + 5);
808 if (appctx->ctx.table.data_type < 0) {
809 appctx->ctx.cli.msg = "Unknown data type\n";
810 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900811 return;
812 }
813
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100814 if (!((struct proxy *)appctx->ctx.table.target)->table.data_ofs[appctx->ctx.table.data_type]) {
815 appctx->ctx.cli.msg = "Data type not stored in this table\n";
816 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900817 return;
818 }
819
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100820 appctx->ctx.table.data_op = get_std_op(args[4]);
821 if (appctx->ctx.table.data_op < 0) {
822 appctx->ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
823 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900824 return;
825 }
826
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100827 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &appctx->ctx.table.value) != 0) {
828 appctx->ctx.cli.msg = "Require a valid integer value to compare against\n";
829 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900830 return;
831 }
832}
833
Willy Tarreaudec98142012-06-06 23:37:08 +0200834static void stats_sock_table_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900835{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100836 struct appctx *appctx = __objt_appctx(si->end);
837
838 appctx->ctx.table.data_type = -1;
839 appctx->st2 = STAT_ST_INIT;
840 appctx->ctx.table.target = NULL;
841 appctx->ctx.table.proxy = NULL;
842 appctx->ctx.table.entry = NULL;
843 appctx->st0 = action;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900844
845 if (*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100846 appctx->ctx.table.target = find_stktable(args[2]);
847 if (!appctx->ctx.table.target) {
848 appctx->ctx.cli.msg = "No such table\n";
849 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900850 return;
851 }
852 }
853 else {
Willy Tarreaudec98142012-06-06 23:37:08 +0200854 if (action != STAT_CLI_O_TAB)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900855 goto err_args;
856 return;
857 }
858
859 if (strcmp(args[3], "key") == 0)
Willy Tarreaudec98142012-06-06 23:37:08 +0200860 stats_sock_table_key_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900861 else if (strncmp(args[3], "data.", 5) == 0)
Willy Tarreau654694e2012-06-07 01:03:16 +0200862 stats_sock_table_data_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900863 else if (*args[3])
Simon Hormand5b9fd92011-06-15 15:18:48 +0900864 goto err_args;
865
866 return;
867
868err_args:
Willy Tarreaudec98142012-06-06 23:37:08 +0200869 switch (action) {
870 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100871 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 +0200872 break;
873 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100874 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 +0200875 break;
876 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100877 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200878 break;
879 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100880 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900881}
882
Willy Tarreau532a4502011-09-07 22:37:44 +0200883/* Expects to find a frontend named <arg> and returns it, otherwise displays various
884 * adequate error messages and returns NULL. This function also expects the session
885 * level to be admin.
886 */
887static struct proxy *expect_frontend_admin(struct session *s, struct stream_interface *si, const char *arg)
888{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100889 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau532a4502011-09-07 22:37:44 +0200890 struct proxy *px;
891
Willy Tarreau290e63a2012-09-20 18:07:14 +0200892 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100893 appctx->ctx.cli.msg = stats_permission_denied_msg;
894 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200895 return NULL;
896 }
897
898 if (!*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100899 appctx->ctx.cli.msg = "A frontend name is expected.\n";
900 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200901 return NULL;
902 }
903
904 px = findproxy(arg, PR_CAP_FE);
905 if (!px) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100906 appctx->ctx.cli.msg = "No such frontend.\n";
907 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200908 return NULL;
909 }
910 return px;
911}
912
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200913/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
914 * and returns the pointer to the server. Otherwise, display adequate error messages
915 * and returns NULL. This function also expects the session level to be admin. Note:
916 * the <arg> is modified to remove the '/'.
917 */
918static struct server *expect_server_admin(struct session *s, struct stream_interface *si, char *arg)
919{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100920 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200921 struct proxy *px;
922 struct server *sv;
923 char *line;
924
Willy Tarreau290e63a2012-09-20 18:07:14 +0200925 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100926 appctx->ctx.cli.msg = stats_permission_denied_msg;
927 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200928 return NULL;
929 }
930
931 /* split "backend/server" and make <line> point to server */
932 for (line = arg; *line; line++)
933 if (*line == '/') {
934 *line++ = '\0';
935 break;
936 }
937
938 if (!*line || !*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100939 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
940 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200941 return NULL;
942 }
943
944 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100945 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
946 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200947 return NULL;
948 }
949
950 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100951 appctx->ctx.cli.msg = "Proxy is disabled.\n";
952 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200953 return NULL;
954 }
955
956 return sv;
957}
958
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100959/* This function is used with map and acl management. It permits to browse
960 * each reference. The variable <getnext> must contain the current node,
961 * <end> point to the root node and the <flags> permit to filter required
962 * nodes.
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100963 */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100964static inline
965struct pat_ref *pat_list_get_next(struct pat_ref *getnext, struct list *end,
966 unsigned int flags)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100967{
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100968 struct pat_ref *ref = getnext;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100969
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100970 while (1) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100971
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100972 /* Get next list entry. */
973 ref = LIST_NEXT(&ref->list, struct pat_ref *, list);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100974
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100975 /* If the entry is the last of the list, return NULL. */
976 if (&ref->list == end)
977 return NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100978
Thierry FOURNIER1e00d382014-02-11 11:31:40 +0100979 /* If the entry match the flag, return it. */
980 if (ref->flags & flags)
981 return ref;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100982 }
983}
984
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100985static inline
986struct pat_ref *pat_ref_lookup_ref(const char *reference)
987{
988 int id;
989 char *error;
990
991 /* If the reference starts by a '#', this is numeric id. */
992 if (reference[0] == '#') {
993 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
994 id = strtol(reference + 1, &error, 10);
995 if (*error != '\0')
996 return NULL;
997
998 /* Perform the unique id lookup. */
999 return pat_ref_lookupid(id);
1000 }
1001
1002 /* Perform the string lookup. */
1003 return pat_ref_lookup(reference);
1004}
1005
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001006/* This function is used with map and acl management. It permits to browse
1007 * each reference.
1008 */
1009static inline
1010struct pattern_expr *pat_expr_get_next(struct pattern_expr *getnext, struct list *end)
1011{
1012 struct pattern_expr *expr;
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01001013 expr = LIST_NEXT(&getnext->list, struct pattern_expr *, list);
1014 if (&expr->list == end)
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001015 return NULL;
1016 return expr;
1017}
1018
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001019/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001020 * called from an applet running in a stream interface. The function returns 1
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001021 * if the request was understood, otherwise zero. It sets appctx->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02001022 * designating the function which will have to process the request, which can
1023 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001024 */
Simon Horman9bd2c732011-06-15 15:18:44 +09001025static int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001026{
Willy Tarreau306f8302013-07-08 15:53:06 +02001027 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001028 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001029 char *args[MAX_STATS_ARGS + 1];
1030 int arg;
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001031 int i, j;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001032
1033 while (isspace((unsigned char)*line))
1034 line++;
1035
1036 arg = 0;
1037 args[arg] = line;
1038
1039 while (*line && arg < MAX_STATS_ARGS) {
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001040 if (*line == '\\') {
1041 line++;
1042 if (*line == '\0')
1043 break;
1044 }
1045 else if (isspace((unsigned char)*line)) {
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001046 *line++ = '\0';
1047
1048 while (isspace((unsigned char)*line))
1049 line++;
1050
1051 args[++arg] = line;
1052 continue;
1053 }
1054
1055 line++;
1056 }
1057
1058 while (++arg <= MAX_STATS_ARGS)
1059 args[arg] = line;
1060
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001061 /* remove \ */
1062 arg = 0;
1063 while (*args[arg] != '\0') {
1064 j = 0;
1065 for (i=0; args[arg][i] != '\0'; i++) {
1066 if (args[arg][i] == '\\')
1067 continue;
1068 args[arg][j] = args[arg][i];
1069 j++;
1070 }
1071 args[arg][j] = '\0';
1072 arg++;
1073 }
1074
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001075 appctx->ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001076 if (strcmp(args[0], "show") == 0) {
1077 if (strcmp(args[1], "stat") == 0) {
1078 if (*args[2] && *args[3] && *args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001079 appctx->ctx.stats.flags |= STAT_BOUND;
1080 appctx->ctx.stats.iid = atoi(args[2]);
1081 appctx->ctx.stats.type = atoi(args[3]);
1082 appctx->ctx.stats.sid = atoi(args[4]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001083 }
1084
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001085 appctx->st2 = STAT_ST_INIT;
1086 appctx->st0 = STAT_CLI_O_STAT; // stats_dump_stat_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001087 }
1088 else if (strcmp(args[1], "info") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001089 appctx->st2 = STAT_ST_INIT;
1090 appctx->st0 = STAT_CLI_O_INFO; // stats_dump_info_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001091 }
Willy Tarreau12833bb2014-01-28 16:49:56 +01001092 else if (strcmp(args[1], "pools") == 0) {
1093 appctx->st2 = STAT_ST_INIT;
1094 appctx->st0 = STAT_CLI_O_POOLS; // stats_dump_pools_to_buffer
1095 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001096 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001097 appctx->st2 = STAT_ST_INIT;
Willy Tarreau290e63a2012-09-20 18:07:14 +02001098 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001099 appctx->ctx.cli.msg = stats_permission_denied_msg;
1100 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001101 return 1;
1102 }
Willy Tarreau76153662012-11-26 01:16:39 +01001103 if (*args[2] && strcmp(args[2], "all") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001104 appctx->ctx.sess.target = (void *)-1;
Willy Tarreau76153662012-11-26 01:16:39 +01001105 else if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001106 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01001107 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001108 appctx->ctx.sess.target = NULL;
1109 appctx->ctx.sess.section = 0; /* start with session status */
1110 appctx->ctx.sess.pos = 0;
1111 appctx->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001112 }
1113 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau290e63a2012-09-20 18:07:14 +02001114 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001115 appctx->ctx.cli.msg = stats_permission_denied_msg;
1116 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001117 return 1;
1118 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001119 if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001120 appctx->ctx.errors.iid = atoi(args[2]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001121 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001122 appctx->ctx.errors.iid = -1;
1123 appctx->ctx.errors.px = NULL;
1124 appctx->st2 = STAT_ST_INIT;
1125 appctx->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001126 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02001127 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001128 stats_sock_table_request(si, args, STAT_CLI_O_TAB);
Willy Tarreau69f58c82010-07-12 17:55:33 +02001129 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001130 else if (strcmp(args[1], "map") == 0 ||
1131 strcmp(args[1], "acl") == 0) {
1132
1133 /* Set ACL or MAP flags. */
1134 if (args[1][0] == 'm')
1135 appctx->ctx.map.display_flags = PAT_REF_MAP;
1136 else
1137 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001138
1139 /* no parameter: display all map avalaible */
1140 if (!*args[2]) {
1141 appctx->st2 = STAT_ST_INIT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001142 appctx->st0 = STAT_CLI_O_PATS;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001143 return 1;
1144 }
1145
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001146 /* lookup into the refs and check the map flag */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001147 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001148 if (!appctx->ctx.map.ref ||
1149 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
1150 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001151 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <name>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001152 else
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001153 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <name>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001154 appctx->st0 = STAT_CLI_PRINT;
1155 return 1;
1156 }
1157 appctx->st2 = STAT_ST_INIT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001158 appctx->st0 = STAT_CLI_O_PAT;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001159 }
Aman Guptaceafb4a2012-04-02 18:57:54 -07001160 else { /* neither "stat" nor "info" nor "sess" nor "errors" nor "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001161 return 0;
1162 }
1163 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001164 else if (strcmp(args[0], "clear") == 0) {
1165 if (strcmp(args[1], "counters") == 0) {
1166 struct proxy *px;
1167 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001168 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001169 int clrall = 0;
1170
1171 if (strcmp(args[2], "all") == 0)
1172 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001173
Willy Tarreau6162db22009-10-10 17:13:00 +02001174 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +02001175 if (s->listener->bind_conf->level < ACCESS_LVL_OPER ||
1176 (clrall && s->listener->bind_conf->level < ACCESS_LVL_ADMIN)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001177 appctx->ctx.cli.msg = stats_permission_denied_msg;
1178 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001179 return 1;
1180 }
1181
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001182 for (px = proxy; px; px = px->next) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001183 if (clrall) {
1184 memset(&px->be_counters, 0, sizeof(px->be_counters));
1185 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
1186 }
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001187 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001188 px->be_counters.conn_max = 0;
1189 px->be_counters.p.http.rps_max = 0;
1190 px->be_counters.sps_max = 0;
1191 px->be_counters.cps_max = 0;
1192 px->be_counters.nbpend_max = 0;
1193
1194 px->fe_counters.conn_max = 0;
1195 px->fe_counters.p.http.rps_max = 0;
1196 px->fe_counters.sps_max = 0;
1197 px->fe_counters.cps_max = 0;
1198 px->fe_counters.nbpend_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001199 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001200
1201 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001202 if (clrall)
1203 memset(&sv->counters, 0, sizeof(sv->counters));
1204 else {
1205 sv->counters.cur_sess_max = 0;
1206 sv->counters.nbpend_max = 0;
1207 sv->counters.sps_max = 0;
1208 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001209
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001210 list_for_each_entry(li, &px->conf.listeners, by_fe)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001211 if (li->counters) {
1212 if (clrall)
1213 memset(li->counters, 0, sizeof(*li->counters));
1214 else
1215 li->counters->conn_max = 0;
1216 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001217 }
1218
Willy Tarreau81c25d02011-09-07 15:17:21 +02001219 global.cps_max = 0;
Willy Tarreau93e7c002013-10-07 18:51:07 +02001220 global.sps_max = 0;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001221 return 1;
1222 }
Willy Tarreau88ee3972010-07-13 13:48:00 +02001223 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001224 stats_sock_table_request(si, args, STAT_CLI_O_CLR);
Willy Tarreau88ee3972010-07-13 13:48:00 +02001225 /* end of processing */
1226 return 1;
1227 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001228 else if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
1229 /* Set ACL or MAP flags. */
1230 if (args[1][0] == 'm')
1231 appctx->ctx.map.display_flags = PAT_REF_MAP;
1232 else
1233 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001234
1235 /* no parameter */
1236 if (!*args[2]) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001237 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
1238 appctx->ctx.cli.msg = "Missing map identifier.\n";
1239 else
1240 appctx->ctx.cli.msg = "Missing ACL identifier.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001241 appctx->st0 = STAT_CLI_PRINT;
1242 return 1;
1243 }
1244
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001245 /* lookup into the refs and check the map flag */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001246 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001247 if (!appctx->ctx.map.ref ||
1248 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
1249 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001250 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <name>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001251 else
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001252 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <name>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001253 appctx->st0 = STAT_CLI_PRINT;
1254 return 1;
1255 }
1256
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001257 /* Clear all. */
1258 pat_ref_prune(appctx->ctx.map.ref);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001259
1260 /* return response */
1261 appctx->ctx.cli.msg = "Done.\n";
1262 appctx->st0 = STAT_CLI_PRINT;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001263 return 1;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001264 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001265 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +02001266 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001267 return 0;
1268 }
1269 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001270 else if (strcmp(args[0], "get") == 0) {
1271 if (strcmp(args[1], "weight") == 0) {
1272 struct proxy *px;
1273 struct server *sv;
1274
1275 /* split "backend/server" and make <line> point to server */
1276 for (line = args[2]; *line; line++)
1277 if (*line == '/') {
1278 *line++ = '\0';
1279 break;
1280 }
1281
1282 if (!*line) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001283 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
1284 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001285 return 1;
1286 }
1287
1288 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001289 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
1290 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001291 return 1;
1292 }
1293
1294 /* return server's effective weight at the moment */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001295 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
1296 bi_putstr(si->ib, trash.str);
Willy Tarreau38338fa2009-10-10 18:37:29 +02001297 return 1;
1298 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001299 else if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
1300 /* Set flags. */
1301 if (args[1][0] == 'm')
1302 appctx->ctx.map.display_flags = PAT_REF_MAP;
1303 else
1304 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001305
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001306 /* No parameter. */
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001307 if (!*args[2] || !*args[3]) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001308 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
1309 appctx->ctx.cli.msg = "Missing map identifier and/or key.\n";
1310 else
1311 appctx->ctx.cli.msg = "Missing ACL identifier and/or key.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001312 appctx->st0 = STAT_CLI_PRINT;
1313 return 1;
1314 }
1315
1316 /* lookup into the maps */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001317 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001318 if (!appctx->ctx.map.ref) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001319 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001320 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <name>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001321 else
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001322 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <name>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001323 appctx->st0 = STAT_CLI_PRINT;
1324 return 1;
1325 }
1326
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001327 /* copy input string. The string must be allocated because
1328 * it may be used over multiple iterations. It's released
1329 * at the end and upon abort anyway.
1330 */
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001331 appctx->ctx.map.chunk.len = strlen(args[3]);
1332 appctx->ctx.map.chunk.size = appctx->ctx.map.chunk.len + 1;
1333 appctx->ctx.map.chunk.str = strdup(args[3]);
1334 if (!appctx->ctx.map.chunk.str) {
1335 appctx->ctx.cli.msg = "Out of memory error.\n";
1336 appctx->st0 = STAT_CLI_PRINT;
1337 return 1;
1338 }
1339
1340 /* prepare response */
1341 appctx->st2 = STAT_ST_INIT;
1342 appctx->st0 = STAT_CLI_O_MLOOK;
1343 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001344 else { /* not "get weight" */
1345 return 0;
1346 }
1347 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001348 else if (strcmp(args[0], "set") == 0) {
1349 if (strcmp(args[1], "weight") == 0) {
Willy Tarreau4483d432009-10-10 19:30:08 +02001350 struct server *sv;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001351 const char *warning;
Willy Tarreau4483d432009-10-10 19:30:08 +02001352
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001353 sv = expect_server_admin(s, si, args[2]);
1354 if (!sv)
Willy Tarreau4483d432009-10-10 19:30:08 +02001355 return 1;
Willy Tarreau4483d432009-10-10 19:30:08 +02001356
Simon Horman7d09b9a2013-02-12 10:45:51 +09001357 warning = server_parse_weight_change_request(sv, args[3]);
Simon Horman8c3d0be2013-11-25 10:46:40 +09001358 /*
1359 * The user-weight may now be zero and thus
1360 * the server considered to be draining.
1361 * Update the server's drain state as necessary.
1362 */
1363 set_server_drain_state(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001364 if (warning) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001365 appctx->ctx.cli.msg = warning;
1366 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +02001367 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001368 return 1;
1369 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001370 else if (strcmp(args[1], "timeout") == 0) {
1371 if (strcmp(args[2], "cli") == 0) {
1372 unsigned timeout;
1373 const char *res;
1374
1375 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001376 appctx->ctx.cli.msg = "Expects an integer value.\n";
1377 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001378 return 1;
1379 }
1380
1381 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1382 if (res || timeout < 1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001383 appctx->ctx.cli.msg = "Invalid timeout value.\n";
1384 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001385 return 1;
1386 }
1387
1388 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
1389 return 1;
1390 }
1391 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001392 appctx->ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
1393 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001394 return 1;
1395 }
1396 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001397 else if (strcmp(args[1], "maxconn") == 0) {
1398 if (strcmp(args[2], "frontend") == 0) {
1399 struct proxy *px;
1400 struct listener *l;
1401 int v;
1402
Willy Tarreau532a4502011-09-07 22:37:44 +02001403 px = expect_frontend_admin(s, si, args[3]);
1404 if (!px)
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001405 return 1;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001406
1407 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001408 appctx->ctx.cli.msg = "Integer value expected.\n";
1409 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001410 return 1;
1411 }
1412
1413 v = atoi(args[4]);
Willy Tarreau3c7a79d2012-09-26 21:07:15 +02001414 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001415 appctx->ctx.cli.msg = "Value out of range.\n";
1416 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001417 return 1;
1418 }
1419
1420 /* OK, the value is fine, so we assign it to the proxy and to all of
1421 * its listeners. The blocked ones will be dequeued.
1422 */
1423 px->maxconn = v;
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001424 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001425 l->maxconn = v;
1426 if (l->state == LI_FULL)
1427 resume_listener(l);
1428 }
1429
1430 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&s->fe->listener_queue))
1431 dequeue_all_listeners(&s->fe->listener_queue);
1432
1433 return 1;
1434 }
Willy Tarreau91886b62011-09-07 14:38:31 +02001435 else if (strcmp(args[2], "global") == 0) {
1436 int v;
1437
Willy Tarreau290e63a2012-09-20 18:07:14 +02001438 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001439 appctx->ctx.cli.msg = stats_permission_denied_msg;
1440 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001441 return 1;
1442 }
1443
1444 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001445 appctx->ctx.cli.msg = "Expects an integer value.\n";
1446 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001447 return 1;
1448 }
1449
1450 v = atoi(args[3]);
1451 if (v > global.hardmaxconn) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001452 appctx->ctx.cli.msg = "Value out of range.\n";
1453 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001454 return 1;
1455 }
1456
1457 /* check for unlimited values */
1458 if (v <= 0)
1459 v = global.hardmaxconn;
1460
1461 global.maxconn = v;
1462
1463 /* Dequeues all of the listeners waiting for a resource */
1464 if (!LIST_ISEMPTY(&global_listener_queue))
1465 dequeue_all_listeners(&global_listener_queue);
1466
1467 return 1;
1468 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001469 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001470 appctx->ctx.cli.msg = "'set maxconn' only supports 'frontend' and 'global'.\n";
1471 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001472 return 1;
1473 }
1474 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001475 else if (strcmp(args[1], "rate-limit") == 0) {
1476 if (strcmp(args[2], "connections") == 0) {
1477 if (strcmp(args[3], "global") == 0) {
1478 int v;
1479
Willy Tarreau290e63a2012-09-20 18:07:14 +02001480 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001481 appctx->ctx.cli.msg = stats_permission_denied_msg;
1482 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001483 return 1;
1484 }
1485
1486 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001487 appctx->ctx.cli.msg = "Expects an integer value.\n";
1488 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001489 return 1;
1490 }
1491
1492 v = atoi(args[4]);
1493 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001494 appctx->ctx.cli.msg = "Value out of range.\n";
1495 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001496 return 1;
1497 }
1498
1499 global.cps_lim = v;
1500
1501 /* Dequeues all of the listeners waiting for a resource */
1502 if (!LIST_ISEMPTY(&global_listener_queue))
1503 dequeue_all_listeners(&global_listener_queue);
1504
1505 return 1;
1506 }
1507 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001508 appctx->ctx.cli.msg = "'set rate-limit connections' only supports 'global'.\n";
1509 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001510 return 1;
1511 }
1512 }
Willy Tarreau93e7c002013-10-07 18:51:07 +02001513 else if (strcmp(args[2], "sessions") == 0) {
1514 if (strcmp(args[3], "global") == 0) {
1515 int v;
1516
1517 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
1518 appctx->ctx.cli.msg = stats_permission_denied_msg;
1519 appctx->st0 = STAT_CLI_PRINT;
1520 return 1;
1521 }
1522
1523 if (!*args[4]) {
1524 appctx->ctx.cli.msg = "Expects an integer value.\n";
1525 appctx->st0 = STAT_CLI_PRINT;
1526 return 1;
1527 }
1528
1529 v = atoi(args[4]);
1530 if (v < 0) {
1531 appctx->ctx.cli.msg = "Value out of range.\n";
1532 appctx->st0 = STAT_CLI_PRINT;
1533 return 1;
1534 }
1535
1536 global.sps_lim = v;
1537
1538 /* Dequeues all of the listeners waiting for a resource */
1539 if (!LIST_ISEMPTY(&global_listener_queue))
1540 dequeue_all_listeners(&global_listener_queue);
1541
1542 return 1;
1543 }
1544 else {
1545 appctx->ctx.cli.msg = "'set rate-limit sessions' only supports 'global'.\n";
1546 appctx->st0 = STAT_CLI_PRINT;
1547 return 1;
1548 }
1549 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001550#ifdef USE_OPENSSL
1551 else if (strcmp(args[2], "ssl-sessions") == 0) {
1552 if (strcmp(args[3], "global") == 0) {
1553 int v;
1554
1555 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
1556 appctx->ctx.cli.msg = stats_permission_denied_msg;
1557 appctx->st0 = STAT_CLI_PRINT;
1558 return 1;
1559 }
1560
1561 if (!*args[4]) {
1562 appctx->ctx.cli.msg = "Expects an integer value.\n";
1563 appctx->st0 = STAT_CLI_PRINT;
1564 return 1;
1565 }
1566
1567 v = atoi(args[4]);
1568 if (v < 0) {
1569 appctx->ctx.cli.msg = "Value out of range.\n";
1570 appctx->st0 = STAT_CLI_PRINT;
1571 return 1;
1572 }
1573
1574 global.ssl_lim = v;
1575
1576 /* Dequeues all of the listeners waiting for a resource */
1577 if (!LIST_ISEMPTY(&global_listener_queue))
1578 dequeue_all_listeners(&global_listener_queue);
1579
1580 return 1;
1581 }
1582 else {
1583 appctx->ctx.cli.msg = "'set rate-limit ssl-sessions' only supports 'global'.\n";
1584 appctx->st0 = STAT_CLI_PRINT;
1585 return 1;
1586 }
1587 }
1588#endif
William Lallemandd85f9172012-11-09 17:05:39 +01001589 else if (strcmp(args[2], "http-compression") == 0) {
1590 if (strcmp(args[3], "global") == 0) {
1591 int v;
1592
Willy Tarreau85d47f92012-11-21 00:29:50 +01001593 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001594 appctx->ctx.cli.msg = "Expects a maximum input byte rate in kB/s.\n";
1595 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau85d47f92012-11-21 00:29:50 +01001596 return 1;
1597 }
1598
William Lallemandd85f9172012-11-09 17:05:39 +01001599 v = atoi(args[4]);
1600 global.comp_rate_lim = v * 1024; /* Kilo to bytes. */
1601 }
1602 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001603 appctx->ctx.cli.msg = "'set rate-limit http-compression' only supports 'global'.\n";
1604 appctx->st0 = STAT_CLI_PRINT;
William Lallemandd85f9172012-11-09 17:05:39 +01001605 return 1;
1606 }
1607 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001608 else {
Willy Tarreaue43d5322013-10-07 20:01:52 +02001609 appctx->ctx.cli.msg = "'set rate-limit' supports 'connections', 'sessions', 'ssl-sessions', and 'http-compression'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001610 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001611 return 1;
1612 }
1613 }
Willy Tarreau654694e2012-06-07 01:03:16 +02001614 else if (strcmp(args[1], "table") == 0) {
1615 stats_sock_table_request(si, args, STAT_CLI_O_SET);
1616 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001617 else if (strcmp(args[1], "map") == 0) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001618 /* Set flags. */
1619 appctx->ctx.map.display_flags = PAT_REF_MAP;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001620
1621 /* Expect three parameters: map name, key and new value. */
1622 if (!*args[2] || !*args[3] || !*args[4]) {
Thierry FOURNIERd5723432014-03-11 13:52:44 +01001623 appctx->ctx.cli.msg = "'set map' expects three parameters: map identifier, key and value.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001624 appctx->st0 = STAT_CLI_PRINT;
1625 return 1;
1626 }
1627
1628 /* Lookup the reference in the maps. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001629 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001630 if (!appctx->ctx.map.ref) {
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001631 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <name>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001632 appctx->st0 = STAT_CLI_PRINT;
1633 return 1;
1634 }
1635
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001636 /* Update the value. */
1637 if (!pat_ref_set(appctx->ctx.map.ref, args[3], args[4])) {
1638 appctx->ctx.cli.msg = "Pattern not found.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001639 appctx->st0 = STAT_CLI_PRINT;
1640 return 1;
1641 }
1642
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001643 /* The set is done, send message. */
1644 appctx->ctx.cli.msg = "Done.\n";
1645 appctx->st0 = STAT_CLI_PRINT;
1646 return 1;
1647 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001648 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +02001649 return 0;
1650 }
1651 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001652 else if (strcmp(args[0], "enable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001653 if (strcmp(args[1], "agent") == 0) {
1654 struct server *sv;
1655
1656 sv = expect_server_admin(s, si, args[2]);
1657 if (!sv)
1658 return 1;
1659
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001660 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
1661 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
1662 appctx->st0 = STAT_CLI_PRINT;
1663 return 1;
1664 }
1665
1666 sv->agent.state |= CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001667 return 1;
1668 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001669 if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001670 struct server *sv;
1671
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001672 sv = expect_server_admin(s, si, args[2]);
1673 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001674 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001675
Cyril Bontécd19e512010-01-31 22:34:03 +01001676 if (sv->state & SRV_MAINTAIN) {
1677 /* The server is really in maintenance, we can change the server state */
Willy Tarreau44267702011-10-28 15:35:33 +02001678 if (sv->track) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001679 /* If this server tracks the status of another one,
1680 * we must restore the good status.
1681 */
Willy Tarreau44267702011-10-28 15:35:33 +02001682 if (sv->track->state & SRV_RUNNING) {
Simon Horman4a741432013-02-23 15:35:38 +09001683 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001684 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001685 } else {
1686 sv->state &= ~SRV_MAINTAIN;
Willy Tarreau33a08db2013-12-11 21:03:31 +01001687 sv->check.state &= ~CHK_ST_PAUSED;
Simon Horman4a741432013-02-23 15:35:38 +09001688 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001689 }
1690 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001691 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001692 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001693 }
1694 }
1695
Willy Tarreau532a4502011-09-07 22:37:44 +02001696 return 1;
1697 }
1698 else if (strcmp(args[1], "frontend") == 0) {
1699 struct proxy *px;
1700
1701 px = expect_frontend_admin(s, si, args[2]);
1702 if (!px)
1703 return 1;
1704
1705 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001706 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
1707 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001708 return 1;
1709 }
1710
1711 if (px->state != PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001712 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
1713 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001714 return 1;
1715 }
1716
1717 if (!resume_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001718 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
1719 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001720 return 1;
1721 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001722 return 1;
1723 }
1724 else { /* unknown "enable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001725 appctx->ctx.cli.msg = "'enable' only supports 'frontend' and 'server'.\n";
1726 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001727 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001728 }
1729 }
1730 else if (strcmp(args[0], "disable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001731 if (strcmp(args[1], "agent") == 0) {
1732 struct server *sv;
1733
1734 sv = expect_server_admin(s, si, args[2]);
1735 if (!sv)
1736 return 1;
1737
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001738 sv->agent.state &= ~CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001739 return 1;
1740 }
1741 else if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001742 struct server *sv;
1743
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001744 sv = expect_server_admin(s, si, args[2]);
1745 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001746 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001747
Cyril Bontécd19e512010-01-31 22:34:03 +01001748 if (! (sv->state & SRV_MAINTAIN)) {
1749 /* Not already in maintenance, we can change the server state */
1750 sv->state |= SRV_MAINTAIN;
Willy Tarreau33a08db2013-12-11 21:03:31 +01001751 sv->check.state |= CHK_ST_PAUSED;
Simon Horman4a741432013-02-23 15:35:38 +09001752 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001753 }
1754
Willy Tarreau532a4502011-09-07 22:37:44 +02001755 return 1;
1756 }
1757 else if (strcmp(args[1], "frontend") == 0) {
1758 struct proxy *px;
1759
1760 px = expect_frontend_admin(s, si, args[2]);
1761 if (!px)
1762 return 1;
1763
1764 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001765 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
1766 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001767 return 1;
1768 }
1769
1770 if (px->state == PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001771 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
1772 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001773 return 1;
1774 }
1775
1776 if (!pause_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001777 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
1778 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001779 return 1;
1780 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001781 return 1;
1782 }
1783 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001784 appctx->ctx.cli.msg = "'disable' only supports 'frontend' and 'server'.\n";
1785 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001786 return 1;
1787 }
1788 }
1789 else if (strcmp(args[0], "shutdown") == 0) {
1790 if (strcmp(args[1], "frontend") == 0) {
1791 struct proxy *px;
1792
1793 px = expect_frontend_admin(s, si, args[2]);
1794 if (!px)
1795 return 1;
1796
1797 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001798 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
1799 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001800 return 1;
1801 }
1802
1803 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1804 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1805 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1806 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1807 stop_proxy(px);
1808 return 1;
1809 }
Willy Tarreaua295edc2011-09-07 23:21:03 +02001810 else if (strcmp(args[1], "session") == 0) {
1811 struct session *sess, *ptr;
1812
Willy Tarreau290e63a2012-09-20 18:07:14 +02001813 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001814 appctx->ctx.cli.msg = stats_permission_denied_msg;
1815 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001816 return 1;
1817 }
1818
1819 if (!*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001820 appctx->ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
1821 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001822 return 1;
1823 }
1824
1825 ptr = (void *)strtoul(args[2], NULL, 0);
1826
1827 /* first, look for the requested session in the session table */
1828 list_for_each_entry(sess, &sessions, list) {
1829 if (sess == ptr)
1830 break;
1831 }
1832
1833 /* do we have the session ? */
1834 if (sess != ptr) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001835 appctx->ctx.cli.msg = "No such session (use 'show sess').\n";
1836 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001837 return 1;
1838 }
1839
1840 session_shutdown(sess, SN_ERR_KILLED);
1841 return 1;
1842 }
Willy Tarreau52b2d222011-09-07 23:48:48 +02001843 else if (strcmp(args[1], "sessions") == 0) {
1844 if (strcmp(args[2], "server") == 0) {
1845 struct server *sv;
1846 struct session *sess, *sess_bck;
1847
1848 sv = expect_server_admin(s, si, args[3]);
1849 if (!sv)
1850 return 1;
1851
1852 /* kill all the session that are on this server */
1853 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
1854 if (sess->srv_conn == sv)
1855 session_shutdown(sess, SN_ERR_KILLED);
1856
1857 return 1;
1858 }
1859 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001860 appctx->ctx.cli.msg = "'shutdown sessions' only supports 'server'.\n";
1861 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau52b2d222011-09-07 23:48:48 +02001862 return 1;
1863 }
1864 }
Willy Tarreau532a4502011-09-07 22:37:44 +02001865 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001866 appctx->ctx.cli.msg = "'shutdown' only supports 'frontend', 'session' and 'sessions'.\n";
1867 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001868 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001869 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001870 }
1871 else if (strcmp(args[0], "del") == 0) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001872 if (strcmp(args[1], "map") == 0 || strcmp(args[1], "acl") == 0) {
1873 if (args[1][0] == 'm')
1874 appctx->ctx.map.display_flags = PAT_REF_MAP;
1875 else
1876 appctx->ctx.map.display_flags = PAT_REF_ACL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001877
1878 /* Expect two parameters: map name and key. */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001879 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
1880 if (!*args[2] || !*args[3]) {
1881 appctx->ctx.cli.msg = "This command expects two parameters: map identifier and key.\n";
1882 appctx->st0 = STAT_CLI_PRINT;
1883 return 1;
1884 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001885 }
1886
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001887 else {
1888 if (!*args[2] || !*args[3]) {
1889 appctx->ctx.cli.msg = "This command expects two parameters: ACL identifier and key.\n";
1890 appctx->st0 = STAT_CLI_PRINT;
1891 return 1;
1892 }
1893 }
1894
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001895 /* Lookup the reference in the maps. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001896 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001897 if (!appctx->ctx.map.ref ||
1898 !(appctx->ctx.map.ref->flags & appctx->ctx.map.display_flags)) {
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001899 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <name>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001900 appctx->st0 = STAT_CLI_PRINT;
1901 return 1;
1902 }
1903
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001904 /* Try to delete the entry. */
1905 if (!pat_ref_delete(appctx->ctx.map.ref, args[3])) {
1906 /* The entry is not found, send message. */
Thierry FOURNIERd5723432014-03-11 13:52:44 +01001907 appctx->ctx.cli.msg = "Key not found.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001908 appctx->st0 = STAT_CLI_PRINT;
1909 return 1;
1910 }
1911
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001912 /* The deletion is done, send message. */
1913 appctx->ctx.cli.msg = "Done.\n";
1914 appctx->st0 = STAT_CLI_PRINT;
1915 return 1;
1916 }
1917 else { /* unknown "del" parameter */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001918 appctx->ctx.cli.msg = "'del' only supports 'map' or 'acl'.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001919 appctx->st0 = STAT_CLI_PRINT;
1920 return 1;
1921 }
1922 }
1923 else if (strcmp(args[0], "add") == 0) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001924 if (strcmp(args[1], "map") == 0 ||
1925 strcmp(args[1], "acl") == 0) {
1926 int ret;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001927
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001928 /* Set flags. */
1929 if (args[1][0] == 'm')
1930 appctx->ctx.map.display_flags = PAT_REF_MAP;
1931 else
1932 appctx->ctx.map.display_flags = PAT_REF_ACL;
1933
1934 /* If the keywork is "map", we expect three parameters, if it
1935 * is "acl", we expect only two parameters
1936 */
1937 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
1938 if (!*args[2] || !*args[3] || !*args[4]) {
1939 appctx->ctx.cli.msg = "'add map' expects three parameters: map identifier, key and value.\n";
1940 appctx->st0 = STAT_CLI_PRINT;
1941 return 1;
1942 }
1943 }
1944 else {
1945 if (!*args[2] || !*args[3]) {
1946 appctx->ctx.cli.msg = "'add acl' expects two parameters: ACL identifier and pattern.\n";
1947 appctx->st0 = STAT_CLI_PRINT;
1948 return 1;
1949 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001950 }
1951
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001952 /* Lookup for the reference. */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001953 appctx->ctx.map.ref = pat_ref_lookup_ref(args[2]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001954 if (!appctx->ctx.map.ref) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001955 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001956 appctx->ctx.cli.msg = "Unknown map identifier. Please use #<id> or <name>.\n";
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001957 else
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001958 appctx->ctx.cli.msg = "Unknown ACL identifier. Please use #<id> or <name>.\n";
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001959 appctx->st0 = STAT_CLI_PRINT;
1960 return 1;
1961 }
1962
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01001963 /* Add value. */
1964 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
1965 ret = pat_ref_add(appctx->ctx.map.ref, args[3], args[4], NULL);
1966 else
1967 ret = pat_ref_add(appctx->ctx.map.ref, args[3], NULL, NULL);
1968 if (!ret) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001969 appctx->ctx.cli.msg = "Out of memory error.\n";
1970 appctx->st0 = STAT_CLI_PRINT;
1971 return 1;
1972 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001973
1974 /* The add is done, send message. */
1975 appctx->ctx.cli.msg = "Done.\n";
1976 appctx->st0 = STAT_CLI_PRINT;
1977 return 1;
1978 }
1979 else { /* unknown "del" parameter */
1980 appctx->ctx.cli.msg = "'add' only supports 'map'.\n";
1981 appctx->st0 = STAT_CLI_PRINT;
1982 return 1;
1983 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001984 }
1985 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001986 return 0;
1987 }
1988 return 1;
1989}
1990
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001991/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001992 * used to processes I/O from/to the stats unix socket. The system relies on a
1993 * state machine handling requests and various responses. We read a request,
1994 * then we process it and send the response, and we possibly display a prompt.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001995 * Then we can read again. The state is stored in appctx->st0 and is one of the
1996 * STAT_CLI_* constants. appctx->st1 is used to indicate whether prompt is enabled
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001997 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001998 */
Willy Tarreaub24281b2011-02-13 13:16:36 +01001999static void cli_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002000{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002001 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau7421efb2012-07-02 15:11:27 +02002002 struct channel *req = si->ob;
2003 struct channel *res = si->ib;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002004 int reql;
2005 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002006
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002007 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
2008 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002009
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002010 while (1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002011 if (appctx->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002012 /* Stats output not initialized yet */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002013 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
2014 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002015 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002016 else if (appctx->st0 == STAT_CLI_END) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002017 /* Let's close for real now. We just close the request
2018 * side, the conditions below will complete if needed.
2019 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002020 si_shutw(si);
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002021 break;
2022 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002023 else if (appctx->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02002024 /* ensure we have some output room left in the event we
2025 * would want to return some info right after parsing.
2026 */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002027 if (buffer_almost_full(si->ib->buf)) {
2028 si->ib->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02002029 break;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002030 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02002031
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002032 reql = bo_getline(si->ob, trash.str, trash.size);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002033 if (reql <= 0) { /* closed or EOL not found */
2034 if (reql == 0)
2035 break;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002036 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002037 continue;
2038 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002039
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002040 /* seek for a possible semi-colon. If we find one, we
2041 * replace it with an LF and skip only this part.
2042 */
2043 for (len = 0; len < reql; len++)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002044 if (trash.str[len] == ';') {
2045 trash.str[len] = '\n';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002046 reql = len + 1;
2047 break;
2048 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002049
Willy Tarreau816fc222009-10-04 07:36:58 +02002050 /* now it is time to check that we have a full line,
2051 * remove the trailing \n and possibly \r, then cut the
2052 * line.
2053 */
2054 len = reql - 1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002055 if (trash.str[len] != '\n') {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002056 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002057 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002058 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002059
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002060 if (len && trash.str[len-1] == '\r')
Willy Tarreau816fc222009-10-04 07:36:58 +02002061 len--;
2062
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002063 trash.str[len] = '\0';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002064
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002065 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002066 if (len) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002067 if (strcmp(trash.str, "quit") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002068 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002069 continue;
2070 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002071 else if (strcmp(trash.str, "prompt") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002072 appctx->st1 = !appctx->st1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002073 else if (strcmp(trash.str, "help") == 0 ||
2074 !stats_sock_parse_request(si, trash.str)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002075 appctx->ctx.cli.msg = stats_sock_usage_msg;
2076 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002077 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002078 /* NB: stats_sock_parse_request() may have put
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002079 * another STAT_CLI_O_* into appctx->st0.
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002080 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002081 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002082 else if (!appctx->st1) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002083 /* if prompt is disabled, print help on empty lines,
2084 * so that the user at least knows how to enable
2085 * prompt and find help.
2086 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002087 appctx->ctx.cli.msg = stats_sock_usage_msg;
2088 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002089 }
2090
2091 /* re-adjust req buffer */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02002092 bo_skip(si->ob, reql);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002093 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002094 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002095 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002096 if (res->flags & (CF_SHUTR_NOW|CF_SHUTR)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002097 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002098 continue;
2099 }
2100
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002101 switch (appctx->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002102 case STAT_CLI_PRINT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002103 if (bi_putstr(si->ib, appctx->ctx.cli.msg) != -1)
2104 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002105 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002106 case STAT_CLI_O_INFO:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002107 if (stats_dump_info_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002108 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002109 break;
2110 case STAT_CLI_O_STAT:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002111 if (stats_dump_stat_to_buffer(si, NULL))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002112 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002113 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002114 case STAT_CLI_O_SESS:
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002115 if (stats_dump_sess_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002116 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002117 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002118 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002119 if (stats_dump_errors_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002120 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002121 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002122 case STAT_CLI_O_TAB:
Simon Hormanc88b8872011-06-15 15:18:49 +09002123 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002124 if (stats_table_request(si, appctx->st0))
2125 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002126 break;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002127 case STAT_CLI_O_PATS:
2128 if (stats_pats_list(si))
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002129 appctx->st0 = STAT_CLI_PROMPT;
2130 break;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01002131 case STAT_CLI_O_PAT:
2132 if (stats_pat_list(si))
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002133 appctx->st0 = STAT_CLI_PROMPT;
2134 break;
2135 case STAT_CLI_O_MLOOK:
2136 if (stats_map_lookup(si))
2137 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau4efb3532014-01-29 12:13:39 +01002138 break;
Willy Tarreau12833bb2014-01-28 16:49:56 +01002139 case STAT_CLI_O_POOLS:
2140 if (stats_dump_pools_to_buffer(si))
2141 appctx->st0 = STAT_CLI_PROMPT;
2142 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002143 default: /* abnormal state */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002144 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002145 break;
2146 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002147
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002148 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002149 if (appctx->st0 == STAT_CLI_PROMPT) {
2150 if (bi_putstr(si->ib, appctx->st1 ? "\n> " : "\n") != -1)
2151 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002152 }
2153
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002154 /* If the output functions are still there, it means they require more room. */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002155 if (appctx->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002156 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002157
2158 /* Now we close the output if one of the writers did so,
2159 * or if we're not in interactive mode and the request
2160 * buffer is empty. This still allows pipelined requests
2161 * to be sent in non-interactive mode.
2162 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002163 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!appctx->st1 && !req->buf->o)) {
2164 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002165 continue;
2166 }
2167
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002168 /* switch state back to GETREQ to read next requests */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002169 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002170 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002171 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002172
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002173 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST) && (appctx->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002174 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
2175 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
Aman Guptaceafb4a2012-04-02 18:57:54 -07002176 /* Other side has closed, let's abort if we have no more processing to do
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002177 * and nothing more to consume. This is comparable to a broken pipe, so
2178 * we forward the close to the request side so that it flows upstream to
2179 * the client.
2180 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002181 si_shutw(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002182 }
2183
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002184 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002185 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
2186 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
2187 /* We have no more processing to do, and nothing more to send, and
2188 * the client side has closed. So we'll forward this state downstream
2189 * on the response buffer.
2190 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002191 si_shutr(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002192 res->flags |= CF_READ_NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002193 }
2194
2195 /* update all other flags and resync with the other side */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002196 si_update(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002197
2198 /* we don't want to expire timeouts while we're processing requests */
2199 si->ib->rex = TICK_ETERNITY;
2200 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002201
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002202 out:
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002203 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 +02002204 __FUNCTION__, __LINE__,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002205 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 +02002206
2207 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
2208 /* check that we have released everything then unregister */
2209 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002210 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002211}
2212
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002213/* This function dumps information onto the stream interface's read buffer.
2214 * It returns 0 as long as it does not complete, non-zero upon completion.
2215 * No state is used.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002216 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002217static int stats_dump_info_to_buffer(struct stream_interface *si)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002218{
2219 unsigned int up = (now.tv_sec - start_date.tv_sec);
2220
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002221 chunk_printf(&trash,
2222 "Name: " PRODUCT_NAME "\n"
2223 "Version: " HAPROXY_VERSION "\n"
2224 "Release_date: " HAPROXY_DATE "\n"
2225 "Nbproc: %d\n"
2226 "Process_num: %d\n"
2227 "Pid: %d\n"
2228 "Uptime: %dd %dh%02dm%02ds\n"
2229 "Uptime_sec: %d\n"
2230 "Memmax_MB: %d\n"
2231 "Ulimit-n: %d\n"
2232 "Maxsock: %d\n"
2233 "Maxconn: %d\n"
2234 "Hard_maxconn: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002235 "CurrConns: %d\n"
Willy Tarreau71b734c2014-01-28 15:19:44 +01002236 "CumConns: %d\n"
2237 "CumReq: %d\n"
2238#ifdef USE_OPENSSL
2239 "MaxSslConns: %d\n"
2240 "CurrSslConns: %d\n"
2241 "CumSslConns: %d\n"
2242#endif
2243 "Maxpipes: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002244 "PipesUsed: %d\n"
2245 "PipesFree: %d\n"
2246 "ConnRate: %d\n"
2247 "ConnRateLimit: %d\n"
2248 "MaxConnRate: %d\n"
Willy Tarreau93e7c002013-10-07 18:51:07 +02002249 "SessRate: %d\n"
2250 "SessRateLimit: %d\n"
2251 "MaxSessRate: %d\n"
Willy Tarreaue43d5322013-10-07 20:01:52 +02002252#ifdef USE_OPENSSL
2253 "SslRate: %d\n"
2254 "SslRateLimit: %d\n"
2255 "MaxSslRate: %d\n"
2256#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002257 "CompressBpsIn: %u\n"
2258 "CompressBpsOut: %u\n"
2259 "CompressBpsRateLim: %u\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002260#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002261 "ZlibMemUsage: %ld\n"
2262 "MaxZlibMemUsage: %ld\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002263#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002264 "Tasks: %d\n"
2265 "Run_queue: %d\n"
2266 "Idle_pct: %d\n"
2267 "node: %s\n"
2268 "description: %s\n"
2269 "",
2270 global.nbproc,
2271 relative_pid,
2272 pid,
2273 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
2274 up,
2275 global.rlimit_memmax,
2276 global.rlimit_nofile,
Willy Tarreau71b734c2014-01-28 15:19:44 +01002277 global.maxsock, global.maxconn, global.hardmaxconn,
2278 actconn, totalconn, global.req_count,
2279#ifdef USE_OPENSSL
2280 global.maxsslconn, sslconns, totalsslconns,
2281#endif
2282 global.maxpipes, pipes_used, pipes_free,
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002283 read_freq_ctr(&global.conn_per_sec), global.cps_lim, global.cps_max,
Willy Tarreau93e7c002013-10-07 18:51:07 +02002284 read_freq_ctr(&global.sess_per_sec), global.sps_lim, global.sps_max,
Willy Tarreaue43d5322013-10-07 20:01:52 +02002285#ifdef USE_OPENSSL
2286 read_freq_ctr(&global.ssl_per_sec), global.ssl_lim, global.ssl_max,
2287#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002288 read_freq_ctr(&global.comp_bps_in), read_freq_ctr(&global.comp_bps_out),
2289 global.comp_rate_lim,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002290#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002291 zlib_used_memory, global.maxzlibmem,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002292#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002293 nb_tasks_cur, run_queue_cur, idle_pct,
2294 global.node, global.desc ? global.desc : ""
2295 );
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002296
2297 if (bi_putchk(si->ib, &trash) == -1)
2298 return 0;
2299
2300 return 1;
2301}
2302
Willy Tarreau12833bb2014-01-28 16:49:56 +01002303/* This function dumps memory usage information onto the stream interface's
2304 * read buffer. It returns 0 as long as it does not complete, non-zero upon
2305 * completion. No state is used.
2306 */
2307static int stats_dump_pools_to_buffer(struct stream_interface *si)
2308{
2309 dump_pools_to_trash();
2310 if (bi_putchk(si->ib, &trash) == -1)
2311 return 0;
2312 return 1;
2313}
2314
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002315/* Dumps a frontend's line to the trash for the current proxy <px> and uses
2316 * the state from stream interface <si>. The caller is responsible for clearing
2317 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002318 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002319static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002320{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002321 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002322 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002323
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002324 if (!(px->cap & PR_CAP_FE))
2325 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002326
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002327 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_FE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002328 return 0;
2329
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002330 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002331 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002332 /* name, queue */
2333 "<tr class=\"frontend\">");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002334
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002335 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002336 /* Column sub-heading for Enable or Disable server */
2337 chunk_appendf(&trash, "<td></td>");
2338 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02002339
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002340 chunk_appendf(&trash,
2341 "<td class=ac>"
2342 "<a name=\"%s/Frontend\"></a>"
2343 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
2344 "<td colspan=3></td>"
2345 "",
2346 px->id, px->id);
Cyril Bonté70be45d2010-10-12 00:14:35 +02002347
Willy Tarreau466c9b52012-12-23 02:25:03 +01002348 chunk_appendf(&trash,
2349 /* sessions rate : current */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002350 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002351 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
2352 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
2353 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002354 U2H(read_freq_ctr(&px->fe_sess_per_sec)),
2355 U2H(read_freq_ctr(&px->fe_conn_per_sec)),
2356 U2H(read_freq_ctr(&px->fe_sess_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002357
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002358 if (px->mode == PR_MODE_HTTP)
2359 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002360 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002361 U2H(read_freq_ctr(&px->fe_req_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002362
2363 chunk_appendf(&trash,
2364 "</table></div></u></td>"
2365 /* sessions rate : max */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002366 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002367 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
2368 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
2369 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002370 U2H(px->fe_counters.sps_max),
2371 U2H(px->fe_counters.cps_max),
2372 U2H(px->fe_counters.sps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002373
2374 if (px->mode == PR_MODE_HTTP)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002375 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002376 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002377 U2H(px->fe_counters.p.http.rps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002378
2379 chunk_appendf(&trash,
2380 "</table></div></u></td>"
2381 /* sessions rate : limit */
2382 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002383 LIM2A(px->fe_sps_lim, "-"));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002384
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002385 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002386 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002387 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002388 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002389 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
2390 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002391 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002392 U2H(px->feconn), U2H(px->fe_counters.conn_max), U2H(px->maxconn),
2393 U2H(px->fe_counters.cum_sess),
2394 U2H(px->fe_counters.cum_conn),
2395 U2H(px->fe_counters.cum_sess));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002396
Willy Tarreau466c9b52012-12-23 02:25:03 +01002397 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002398 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01002399 chunk_appendf(&trash,
2400 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
2401 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
2402 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
2403 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
2404 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
2405 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
2406 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
2407 "<tr><th>- other responses:</th><td>%s</td></tr>"
2408 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
2409 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002410 U2H(px->fe_counters.p.http.cum_req),
2411 U2H(px->fe_counters.p.http.rsp[1]),
2412 U2H(px->fe_counters.p.http.rsp[2]),
2413 U2H(px->fe_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002414 px->fe_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01002415 (int)(100*px->fe_counters.p.http.comp_rsp/px->fe_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002416 U2H(px->fe_counters.p.http.rsp[3]),
2417 U2H(px->fe_counters.p.http.rsp[4]),
2418 U2H(px->fe_counters.p.http.rsp[5]),
2419 U2H(px->fe_counters.p.http.rsp[0]),
2420 U2H(px->fe_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002421 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002422
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002423 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002424 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002425 /* sessions: lbtot, lastsess */
2426 "<td></td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002427 /* bytes : in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002428 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002429 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002430 U2H(px->fe_counters.bytes_in));
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002431
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002432 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002433 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002434 "<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 +01002435 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002436 U2H(px->fe_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002437 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp,
2438 px->fe_counters.comp_in ?
2439 (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 +01002440 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "</u>":"");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002441
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002442 chunk_appendf(&trash,
2443 /* denied: req, resp */
2444 "<td>%s</td><td>%s</td>"
2445 /* errors : request, connect, response */
2446 "<td>%s</td><td></td><td></td>"
2447 /* warnings: retries, redispatches */
2448 "<td></td><td></td>"
2449 /* server status : reflect frontend status */
2450 "<td class=ac>%s</td>"
2451 /* rest of server: nothing */
2452 "<td class=ac colspan=8></td></tr>"
2453 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002454 U2H(px->fe_counters.denied_req), U2H(px->fe_counters.denied_resp),
2455 U2H(px->fe_counters.failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002456 px->state == PR_STREADY ? "OPEN" :
2457 px->state == PR_STFULL ? "FULL" : "STOP");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002458 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002459 else { /* CSV mode */
2460 chunk_appendf(&trash,
2461 /* pxid, name, queue cur, queue max, */
2462 "%s,FRONTEND,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002463 /* sessions : current, max, limit, total */
2464 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002465 /* bytes : in, out */
2466 "%lld,%lld,"
2467 /* denied: req, resp */
2468 "%lld,%lld,"
2469 /* errors : request, connect, response */
2470 "%lld,,,"
2471 /* warnings: retries, redispatches */
2472 ",,"
2473 /* server status : reflect frontend status */
2474 "%s,"
2475 /* rest of server: nothing */
2476 ",,,,,,,,"
2477 /* pid, iid, sid, throttle, lbtot, tracked, type */
2478 "%d,%d,0,,,,%d,"
2479 /* rate, rate_lim, rate_max */
2480 "%u,%u,%u,"
2481 /* check_status, check_code, check_duration */
2482 ",,,",
2483 px->id,
2484 px->feconn, px->fe_counters.conn_max, px->maxconn, px->fe_counters.cum_sess,
2485 px->fe_counters.bytes_in, px->fe_counters.bytes_out,
2486 px->fe_counters.denied_req, px->fe_counters.denied_resp,
2487 px->fe_counters.failed_req,
2488 px->state == PR_STREADY ? "OPEN" :
2489 px->state == PR_STFULL ? "FULL" : "STOP",
2490 relative_pid, px->uuid, STATS_TYPE_FE,
2491 read_freq_ctr(&px->fe_sess_per_sec),
2492 px->fe_sps_lim, px->fe_counters.sps_max);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002493
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002494 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2495 if (px->mode == PR_MODE_HTTP) {
2496 for (i=1; i<6; i++)
2497 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[i]);
2498 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[0]);
2499 }
2500 else
2501 chunk_appendf(&trash, ",,,,,,");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002502
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002503 /* failed health analyses */
2504 chunk_appendf(&trash, ",");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002505
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002506 /* requests : req_rate, req_rate_max, req_tot, */
2507 chunk_appendf(&trash, "%u,%u,%lld,",
2508 read_freq_ctr(&px->fe_req_per_sec),
2509 px->fe_counters.p.http.rps_max, px->fe_counters.p.http.cum_req);
2510
2511 /* errors: cli_aborts, srv_aborts */
2512 chunk_appendf(&trash, ",,");
2513
2514 /* compression: in, out, bypassed */
2515 chunk_appendf(&trash, "%lld,%lld,%lld,",
2516 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp);
2517
2518 /* compression: comp_rsp */
2519 chunk_appendf(&trash, "%lld,",
2520 px->fe_counters.p.http.comp_rsp);
2521
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002522 /* lastsess */
2523 chunk_appendf(&trash, ",");
2524
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002525 /* finish with EOL */
2526 chunk_appendf(&trash, "\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002527 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002528 return 1;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002529}
2530
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002531/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
2532 * from stream interface <si>, and stats flags <flags>. The caller is responsible
2533 * for clearing the trash if needed. Returns non-zero if it emits anything, zero
2534 * otherwise.
Willy Tarreau91861262007-10-17 17:06:05 +02002535 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002536static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l, int flags)
Willy Tarreau91861262007-10-17 17:06:05 +02002537{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002538 struct appctx *appctx = __objt_appctx(si->end);
2539
2540 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002541 chunk_appendf(&trash, "<tr class=socket>");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002542 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002543 /* Column sub-heading for Enable or Disable server */
2544 chunk_appendf(&trash, "<td></td>");
2545 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002546 chunk_appendf(&trash,
2547 /* frontend name, listener name */
2548 "<td class=ac><a name=\"%s/+%s\"></a>%s"
2549 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
2550 "",
2551 px->id, l->name,
2552 (flags & ST_SHLGNDS)?"<u>":"",
2553 px->id, l->name, l->name);
Willy Tarreau91861262007-10-17 17:06:05 +02002554
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002555 if (flags & ST_SHLGNDS) {
2556 char str[INET6_ADDRSTRLEN];
2557 int port;
Willy Tarreau91861262007-10-17 17:06:05 +02002558
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002559 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreau91861262007-10-17 17:06:05 +02002560
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002561 port = get_host_port(&l->addr);
2562 switch (addr_to_str(&l->addr, str, sizeof(str))) {
2563 case AF_INET:
2564 chunk_appendf(&trash, "IPv4: %s:%d, ", str, port);
2565 break;
2566 case AF_INET6:
2567 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, port);
2568 break;
2569 case AF_UNIX:
2570 chunk_appendf(&trash, "unix, ");
2571 break;
2572 case -1:
2573 chunk_appendf(&trash, "(%s), ", strerror(errno));
2574 break;
2575 }
Willy Tarreau91861262007-10-17 17:06:05 +02002576
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002577 /* id */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002578 chunk_appendf(&trash, "id: %d</div>", l->luid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002579 }
Willy Tarreau91861262007-10-17 17:06:05 +02002580
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002581 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002582 /* queue */
2583 "%s</td><td colspan=3></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002584 /* sessions rate: current, max, limit */
2585 "<td colspan=3>&nbsp;</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002586 /* sessions: current, max, limit, total, lbtot, lastsess */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002587 "<td>%s</td><td>%s</td><td>%s</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002588 "<td>%s</td><td>&nbsp;</td><td>&nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002589 /* bytes: in, out */
2590 "<td>%s</td><td>%s</td>"
2591 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002592 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002593 U2H(l->nbconn), U2H(l->counters->conn_max), U2H(l->maxconn),
2594 U2H(l->counters->cum_conn), U2H(l->counters->bytes_in), U2H(l->counters->bytes_out));
Willy Tarreau56a560a2009-09-22 19:27:35 +02002595
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002596 chunk_appendf(&trash,
2597 /* denied: req, resp */
2598 "<td>%s</td><td>%s</td>"
2599 /* errors: request, connect, response */
2600 "<td>%s</td><td></td><td></td>"
2601 /* warnings: retries, redispatches */
2602 "<td></td><td></td>"
2603 /* server status: reflect listener status */
2604 "<td class=ac>%s</td>"
2605 /* rest of server: nothing */
2606 "<td class=ac colspan=8></td></tr>"
2607 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002608 U2H(l->counters->denied_req), U2H(l->counters->denied_resp),
2609 U2H(l->counters->failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002610 (l->nbconn < l->maxconn) ? (l->state == LI_LIMITED) ? "WAITING" : "OPEN" : "FULL");
2611 }
2612 else { /* CSV mode */
2613 chunk_appendf(&trash,
2614 /* pxid, name, queue cur, queue max, */
2615 "%s,%s,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002616 /* sessions: current, max, limit, total */
2617 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002618 /* bytes: in, out */
2619 "%lld,%lld,"
2620 /* denied: req, resp */
2621 "%lld,%lld,"
2622 /* errors: request, connect, response */
2623 "%lld,,,"
2624 /* warnings: retries, redispatches */
2625 ",,"
2626 /* server status: reflect listener status */
2627 "%s,"
2628 /* rest of server: nothing */
2629 ",,,,,,,,"
2630 /* pid, iid, sid, throttle, lbtot, tracked, type */
2631 "%d,%d,%d,,,,%d,"
2632 /* rate, rate_lim, rate_max */
2633 ",,,"
2634 /* check_status, check_code, check_duration */
2635 ",,,"
2636 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2637 ",,,,,,"
2638 /* failed health analyses */
2639 ","
2640 /* requests : req_rate, req_rate_max, req_tot, */
2641 ",,,"
2642 /* errors: cli_aborts, srv_aborts */
2643 ",,"
2644 /* compression: in, out, bypassed, comp_rsp */
2645 ",,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002646 /* lastsess */
2647 ","
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002648 "\n",
2649 px->id, l->name,
2650 l->nbconn, l->counters->conn_max,
2651 l->maxconn, l->counters->cum_conn,
2652 l->counters->bytes_in, l->counters->bytes_out,
2653 l->counters->denied_req, l->counters->denied_resp,
2654 l->counters->failed_req,
2655 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
2656 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
2657 }
2658 return 1;
2659}
Willy Tarreau91861262007-10-17 17:06:05 +02002660
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002661/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
2662 * from stream interface <si>, stats flags <flags>, and server state <state>.
2663 * The caller is responsible for clearing the trash if needed. Returns non-zero
2664 * if it emits anything, zero otherwise. The <state> parameter can take the
Simon Horman8c3d0be2013-11-25 10:46:40 +09002665 * following values : 0=DOWN, 1=going up, 2=going down, 3=UP, 4,5=NOLB,
2666 * 6,7=DRAIN, 8=unchecked.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002667 */
2668static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, int flags, struct server *sv, int state)
2669{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002670 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002671 struct server *ref = sv->track ? sv->track : sv;
2672 char str[INET6_ADDRSTRLEN];
2673 struct chunk src;
2674 int i;
Willy Tarreau91861262007-10-17 17:06:05 +02002675
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002676 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Simon Horman8c3d0be2013-11-25 10:46:40 +09002677 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002678 "DOWN",
2679 "DN %d/%d &uarr;",
2680 "UP %d/%d &darr;",
2681 "UP",
2682 "NOLB %d/%d &darr;",
2683 "NOLB",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002684 "DRAIN %d/%d &darr;",
2685 "DRAIN",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002686 "<i>no check</i>"
2687 };
Willy Tarreau91861262007-10-17 17:06:05 +02002688
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002689 if ((sv->state & SRV_MAINTAIN) || (ref->state & SRV_MAINTAIN))
2690 chunk_appendf(&trash, "<tr class=\"maintain\">");
2691 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002692 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002693 "<tr class=\"%s%d\">",
2694 (sv->state & SRV_BACKUP) ? "backup" : "active", state);
Willy Tarreau91861262007-10-17 17:06:05 +02002695
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002696 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002697 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002698 "<td><input type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
2699 sv->id);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002700
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002701 chunk_appendf(&trash,
2702 "<td class=ac><a name=\"%s/%s\"></a>%s"
2703 "<a class=lfsb href=\"#%s/%s\">%s</a>"
2704 "",
2705 px->id, sv->id,
2706 (flags & ST_SHLGNDS) ? "<u>" : "",
2707 px->id, sv->id, sv->id);
Willy Tarreau91861262007-10-17 17:06:05 +02002708
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002709 if (flags & ST_SHLGNDS) {
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002710 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002711
2712 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2713 case AF_INET:
2714 chunk_appendf(&trash, "IPv4: %s:%d, ", str, get_host_port(&sv->addr));
2715 break;
2716 case AF_INET6:
2717 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, get_host_port(&sv->addr));
2718 break;
2719 case AF_UNIX:
2720 chunk_appendf(&trash, "unix, ");
2721 break;
2722 case -1:
2723 chunk_appendf(&trash, "(%s), ", strerror(errno));
2724 break;
2725 default: /* address family not supported */
2726 break;
Willy Tarreau55bb8452007-10-17 18:44:57 +02002727 }
Willy Tarreau91861262007-10-17 17:06:05 +02002728
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002729 /* id */
2730 chunk_appendf(&trash, "id: %d", sv->puid);
Willy Tarreau91861262007-10-17 17:06:05 +02002731
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002732 /* cookie */
2733 if (sv->cookie) {
2734 chunk_appendf(&trash, ", cookie: '");
Willy Tarreau5031e6a2007-10-18 11:05:48 +02002735
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002736 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
2737 chunk_htmlencode(&trash, &src);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002738
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002739 chunk_appendf(&trash, "'");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002740 }
2741
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002742 chunk_appendf(&trash, "</div>");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002743 }
Willy Tarreau91861262007-10-17 17:06:05 +02002744
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002745 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002746 /* queue : current, max, limit */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002747 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002748 /* sessions rate : current, max, limit */
2749 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002750 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002751 (flags & ST_SHLGNDS) ? "</u>" : "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002752 U2H(sv->nbpend), U2H(sv->counters.nbpend_max), LIM2A(sv->maxqueue, "-"),
2753 U2H(read_freq_ctr(&sv->sess_per_sec)), U2H(sv->counters.sps_max));
Willy Tarreau91861262007-10-17 17:06:05 +02002754
Willy Tarreau466c9b52012-12-23 02:25:03 +01002755
2756 chunk_appendf(&trash,
2757 /* sessions: current, max, limit, total */
2758 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002759 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002760 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
2761 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002762 U2H(sv->cur_sess), U2H(sv->counters.cur_sess_max), LIM2A(sv->maxconn, "-"),
2763 U2H(sv->counters.cum_sess),
2764 U2H(sv->counters.cum_sess));
Willy Tarreau91861262007-10-17 17:06:05 +02002765
Willy Tarreau466c9b52012-12-23 02:25:03 +01002766 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2767 if (px->mode == PR_MODE_HTTP) {
2768 unsigned long long tot;
2769 for (tot = i = 0; i < 6; i++)
2770 tot += sv->counters.p.http.rsp[i];
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002771
Willy Tarreau466c9b52012-12-23 02:25:03 +01002772 chunk_appendf(&trash,
2773 "<tr><th>Cum. HTTP responses:</th><td>%s</td></tr>"
2774 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2775 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2776 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2777 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2778 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2779 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2780 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002781 U2H(tot),
2782 U2H(sv->counters.p.http.rsp[1]), tot ? (int)(100*sv->counters.p.http.rsp[1] / tot) : 0,
2783 U2H(sv->counters.p.http.rsp[2]), tot ? (int)(100*sv->counters.p.http.rsp[2] / tot) : 0,
2784 U2H(sv->counters.p.http.rsp[3]), tot ? (int)(100*sv->counters.p.http.rsp[3] / tot) : 0,
2785 U2H(sv->counters.p.http.rsp[4]), tot ? (int)(100*sv->counters.p.http.rsp[4] / tot) : 0,
2786 U2H(sv->counters.p.http.rsp[5]), tot ? (int)(100*sv->counters.p.http.rsp[5] / tot) : 0,
2787 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 +02002788 }
Willy Tarreau91861262007-10-17 17:06:05 +02002789
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002790 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002791 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002792 /* sessions: lbtot, last */
2793 "<td>%s</td><td>%s</td>",
2794 U2H(sv->counters.cum_lbconn),
2795 human_time(srv_lastsession(sv), 1));
Willy Tarreau91861262007-10-17 17:06:05 +02002796
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002797 chunk_appendf(&trash,
2798 /* bytes : in, out */
2799 "<td>%s</td><td>%s</td>"
2800 /* denied: req, resp */
2801 "<td></td><td>%s</td>"
2802 /* errors : request, connect */
2803 "<td></td><td>%s</td>"
2804 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002805 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002806 /* warnings: retries, redispatches */
2807 "<td>%lld</td><td>%lld</td>"
2808 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002809 U2H(sv->counters.bytes_in), U2H(sv->counters.bytes_out),
2810 U2H(sv->counters.failed_secu),
2811 U2H(sv->counters.failed_conns),
2812 U2H(sv->counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002813 sv->counters.cli_aborts,
2814 sv->counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002815 sv->counters.retries, sv->counters.redispatches);
2816
2817 /* status, lest check */
2818 chunk_appendf(&trash, "<td class=ac>");
2819
2820 if (sv->state & SRV_MAINTAIN) {
2821 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - sv->last_change, 1));
2822 chunk_appendf(&trash, "MAINT");
2823 }
2824 else if (ref != sv && ref->state & SRV_MAINTAIN) {
2825 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2826 chunk_appendf(&trash, "MAINT(via)");
2827 }
Willy Tarreauff5ae352013-12-11 20:36:34 +01002828 else if (ref->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002829 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2830 chunk_appendf(&trash,
2831 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002832 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2833 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreau55bb8452007-10-17 18:44:57 +02002834 }
Willy Tarreau91861262007-10-17 17:06:05 +02002835
Willy Tarreauff5ae352013-12-11 20:36:34 +01002836 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002837 chunk_appendf(&trash,
2838 "</td><td class=ac><u> %s%s",
Willy Tarreau2c115e52013-12-11 19:41:16 +01002839 (sv->check.state & CHK_ST_INPROGRESS) ? "* " : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002840 get_check_status_info(sv->check.status));
2841
2842 if (sv->check.status >= HCHK_STATUS_L57DATA)
2843 chunk_appendf(&trash, "/%d", sv->check.code);
2844
2845 if (sv->check.status >= HCHK_STATUS_CHECKED && sv->check.duration >= 0)
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002846 chunk_appendf(&trash, " in %lums", sv->check.duration);
2847
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002848 chunk_appendf(&trash, "<div class=tips>%s",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002849 get_check_status_description(sv->check.status));
2850 if (*sv->check.desc) {
2851 chunk_appendf(&trash, ": ");
2852 chunk_initlen(&src, sv->check.desc, 0, strlen(sv->check.desc));
2853 chunk_htmlencode(&trash, &src);
2854 }
2855 chunk_appendf(&trash, "</div></u>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002856 }
2857 else
2858 chunk_appendf(&trash, "</td><td>");
2859
2860 chunk_appendf(&trash,
2861 /* weight */
2862 "</td><td class=ac>%d</td>"
2863 /* act, bck */
2864 "<td class=ac>%s</td><td class=ac>%s</td>"
2865 "",
2866 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2867 (sv->state & SRV_BACKUP) ? "-" : "Y",
2868 (sv->state & SRV_BACKUP) ? "Y" : "-");
2869
2870 /* check failures: unique, fatal, down time */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002871 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002872 chunk_appendf(&trash, "<td><u>%lld", ref->counters.failed_checks);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002873
2874 if (ref->observe)
2875 chunk_appendf(&trash, "/%lld", ref->counters.failed_hana);
2876
2877 chunk_appendf(&trash,
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002878 "<div class=tips>Failed Health Checks%s</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002879 "<td>%lld</td><td>%s</td>"
2880 "",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002881 ref->observe ? "/Health Analyses" : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002882 ref->counters.down_trans, human_time(srv_downtime(sv), 1));
2883 }
Willy Tarreauf4659942013-11-28 10:50:06 +01002884 else if (sv != ref) {
2885 if (sv->state & SRV_MAINTAIN)
2886 chunk_appendf(&trash,
2887 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\"><a></td>",
2888 ref->proxy->id, ref->id);
2889 else
2890 chunk_appendf(&trash,
2891 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
2892 ref->proxy->id, ref->id, ref->proxy->id, ref->id);
2893 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002894 else
2895 chunk_appendf(&trash, "<td colspan=3></td>");
2896
2897 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01002898 if (sv->state & SRV_WARMINGUP)
2899 chunk_appendf(&trash, "<td class=ac>%d %%</td></tr>\n", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002900 else
2901 chunk_appendf(&trash, "<td class=ac>-</td></tr>\n");
2902 }
2903 else { /* CSV mode */
Simon Horman8c3d0be2013-11-25 10:46:40 +09002904 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002905 "DOWN,",
2906 "DOWN %d/%d,",
2907 "UP %d/%d,",
2908 "UP,",
2909 "NOLB %d/%d,",
2910 "NOLB,",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002911 "DRAIN %d/%d,",
2912 "DRAIN,",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002913 "no check,"
2914 };
2915
2916 chunk_appendf(&trash,
2917 /* pxid, name */
2918 "%s,%s,"
2919 /* queue : current, max */
2920 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002921 /* sessions : current, max, limit, total */
2922 "%d,%d,%s,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002923 /* bytes : in, out */
2924 "%lld,%lld,"
2925 /* denied: req, resp */
2926 ",%lld,"
2927 /* errors : request, connect, response */
2928 ",%lld,%lld,"
2929 /* warnings: retries, redispatches */
2930 "%lld,%lld,"
2931 "",
2932 px->id, sv->id,
2933 sv->nbpend, sv->counters.nbpend_max,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002934 sv->cur_sess, sv->counters.cur_sess_max, LIM2A(sv->maxconn, ""), sv->counters.cum_sess,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002935 sv->counters.bytes_in, sv->counters.bytes_out,
2936 sv->counters.failed_secu,
2937 sv->counters.failed_conns, sv->counters.failed_resp,
2938 sv->counters.retries, sv->counters.redispatches);
2939
2940 /* status */
2941 if (sv->state & SRV_MAINTAIN)
2942 chunk_appendf(&trash, "MAINT,");
2943 else if (ref != sv && ref->state & SRV_MAINTAIN)
2944 chunk_appendf(&trash, "MAINT(via),");
2945 else
2946 chunk_appendf(&trash,
2947 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002948 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2949 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002950
2951 chunk_appendf(&trash,
2952 /* weight, active, backup */
2953 "%d,%d,%d,"
2954 "",
2955 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2956 (sv->state & SRV_BACKUP) ? 0 : 1,
2957 (sv->state & SRV_BACKUP) ? 1 : 0);
2958
2959 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002960 if (sv->check.state & CHK_ST_ENABLED)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002961 chunk_appendf(&trash,
2962 "%lld,%lld,%d,%d,",
2963 sv->counters.failed_checks, sv->counters.down_trans,
2964 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
2965 else
2966 chunk_appendf(&trash, ",,,,");
2967
2968 /* queue limit, pid, iid, sid, */
2969 chunk_appendf(&trash,
2970 "%s,"
2971 "%d,%d,%d,",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002972 LIM2A(sv->maxqueue, ""),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002973 relative_pid, px->uuid, sv->puid);
2974
2975 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01002976 if (sv->state & SRV_WARMINGUP)
2977 chunk_appendf(&trash, "%d", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002978
2979 /* sessions: lbtot */
2980 chunk_appendf(&trash, ",%lld,", sv->counters.cum_lbconn);
2981
2982 /* tracked */
2983 if (sv->track)
2984 chunk_appendf(&trash, "%s/%s,",
2985 sv->track->proxy->id, sv->track->id);
2986 else
2987 chunk_appendf(&trash, ",");
2988
2989 /* type */
2990 chunk_appendf(&trash, "%d,", STATS_TYPE_SV);
2991
2992 /* rate */
2993 chunk_appendf(&trash, "%u,,%u,",
2994 read_freq_ctr(&sv->sess_per_sec),
2995 sv->counters.sps_max);
2996
Willy Tarreauff5ae352013-12-11 20:36:34 +01002997 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002998 /* check_status */
2999 chunk_appendf(&trash, "%s,", get_check_status_info(sv->check.status));
3000
3001 /* check_code */
3002 if (sv->check.status >= HCHK_STATUS_L57DATA)
3003 chunk_appendf(&trash, "%u,", sv->check.code);
3004 else
3005 chunk_appendf(&trash, ",");
3006
3007 /* check_duration */
3008 if (sv->check.status >= HCHK_STATUS_CHECKED)
3009 chunk_appendf(&trash, "%lu,", sv->check.duration);
3010 else
3011 chunk_appendf(&trash, ",");
3012
3013 }
3014 else
3015 chunk_appendf(&trash, ",,,");
3016
3017 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3018 if (px->mode == PR_MODE_HTTP) {
3019 for (i=1; i<6; i++)
3020 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[i]);
3021
3022 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[0]);
3023 }
3024 else
3025 chunk_appendf(&trash, ",,,,,,");
3026
3027 /* failed health analyses */
3028 chunk_appendf(&trash, "%lld,", sv->counters.failed_hana);
3029
3030 /* requests : req_rate, req_rate_max, req_tot, */
3031 chunk_appendf(&trash, ",,,");
3032
3033 /* errors: cli_aborts, srv_aborts */
3034 chunk_appendf(&trash, "%lld,%lld,",
3035 sv->counters.cli_aborts, sv->counters.srv_aborts);
3036
3037 /* compression: in, out, bypassed, comp_rsp */
3038 chunk_appendf(&trash, ",,,,");
3039
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003040 /* lastsess */
3041 chunk_appendf(&trash, "%d,", srv_lastsession(sv));
3042
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003043 /* finish with EOL */
3044 chunk_appendf(&trash, "\n");
3045 }
3046 return 1;
3047}
3048
3049/* Dumps a line for backend <px> to the trash for and uses the state from stream
3050 * interface <si> and stats flags <flags>. The caller is responsible for clearing
3051 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
3052 */
3053static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px, int flags)
3054{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003055 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003056 struct chunk src;
3057 int i;
3058
3059 if (!(px->cap & PR_CAP_BE))
3060 return 0;
3061
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003062 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_BE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003063 return 0;
3064
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003065 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003066 chunk_appendf(&trash, "<tr class=\"backend\">");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003067 if (px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003068 /* Column sub-heading for Enable or Disable server */
3069 chunk_appendf(&trash, "<td></td>");
3070 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003071 chunk_appendf(&trash,
3072 "<td class=ac>"
3073 /* name */
3074 "%s<a name=\"%s/Backend\"></a>"
3075 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
3076 "",
3077 (flags & ST_SHLGNDS)?"<u>":"",
3078 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003079
3080 if (flags & ST_SHLGNDS) {
3081 /* balancing */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003082 chunk_appendf(&trash, "<div class=tips>balancing: %s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003083 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
3084
3085 /* cookie */
3086 if (px->cookie_name) {
3087 chunk_appendf(&trash, ", cookie: '");
3088 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
3089 chunk_htmlencode(&trash, &src);
3090 chunk_appendf(&trash, "'");
3091 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003092 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003093 }
3094
3095 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003096 "%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003097 /* queue : current, max */
3098 "<td>%s</td><td>%s</td><td></td>"
3099 /* sessions rate : current, max, limit */
3100 "<td>%s</td><td>%s</td><td></td>"
3101 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003102 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003103 U2H(px->nbpend) /* or px->totpend ? */, U2H(px->be_counters.nbpend_max),
3104 U2H(read_freq_ctr(&px->be_sess_per_sec)), U2H(px->be_counters.sps_max));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003105
3106 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003107 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003108 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003109 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003110 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003111 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003112 U2H(px->beconn), U2H(px->be_counters.conn_max), U2H(px->fullconn),
3113 U2H(px->be_counters.cum_conn),
3114 U2H(px->be_counters.cum_conn));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003115
Willy Tarreau466c9b52012-12-23 02:25:03 +01003116 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003117 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01003118 chunk_appendf(&trash,
3119 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
3120 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
3121 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
3122 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
3123 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
3124 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
3125 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
3126 "<tr><th>- other responses:</th><td>%s</td></tr>"
3127 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
3128 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003129 U2H(px->be_counters.p.http.cum_req),
3130 U2H(px->be_counters.p.http.rsp[1]),
3131 U2H(px->be_counters.p.http.rsp[2]),
3132 U2H(px->be_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003133 px->be_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01003134 (int)(100*px->be_counters.p.http.comp_rsp/px->be_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01003135 U2H(px->be_counters.p.http.rsp[3]),
3136 U2H(px->be_counters.p.http.rsp[4]),
3137 U2H(px->be_counters.p.http.rsp[5]),
3138 U2H(px->be_counters.p.http.rsp[0]),
3139 U2H(px->be_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003140 }
3141
3142 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01003143 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003144 /* sessions: lbtot, last */
3145 "<td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003146 /* bytes: in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003147 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003148 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003149 U2H(px->be_counters.cum_lbconn),
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003150 human_time(be_lastsession(px), 1),
Willy Tarreau56adcf22012-12-23 18:00:29 +01003151 U2H(px->be_counters.bytes_in));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003152
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003153 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003154 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003155 "<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 +01003156 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003157 U2H(px->be_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003158 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp,
3159 px->be_counters.comp_in ?
3160 (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 +01003161 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "</u>":"");
3162
3163 chunk_appendf(&trash,
3164 /* denied: req, resp */
3165 "<td>%s</td><td>%s</td>"
3166 /* errors : request, connect */
3167 "<td></td><td>%s</td>"
3168 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003169 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003170 /* warnings: retries, redispatches */
3171 "<td>%lld</td><td>%lld</td>"
3172 /* backend status: reflect backend status (up/down): we display UP
3173 * if the backend has known working servers or if it has no server at
3174 * all (eg: for stats). Then we display the total weight, number of
3175 * active and backups. */
3176 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
3177 "<td class=ac>%d</td><td class=ac>%d</td>"
3178 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003179 U2H(px->be_counters.denied_req), U2H(px->be_counters.denied_resp),
3180 U2H(px->be_counters.failed_conns),
3181 U2H(px->be_counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003182 px->be_counters.cli_aborts,
3183 px->be_counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003184 px->be_counters.retries, px->be_counters.redispatches,
3185 human_time(now.tv_sec - px->last_change, 1),
3186 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
3187 "<font color=\"red\"><b>DOWN</b></font>",
3188 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3189 px->srv_act, px->srv_bck);
3190
3191 chunk_appendf(&trash,
3192 /* rest of backend: nothing, down transitions, total downtime, throttle */
3193 "<td class=ac>&nbsp;</td><td>%d</td>"
3194 "<td>%s</td>"
3195 "<td></td>"
3196 "</tr>",
3197 px->down_trans,
3198 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
3199 }
3200 else { /* CSV mode */
3201 chunk_appendf(&trash,
3202 /* pxid, name */
3203 "%s,BACKEND,"
3204 /* queue : current, max */
3205 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003206 /* sessions : current, max, limit, total */
3207 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003208 /* bytes : in, out */
3209 "%lld,%lld,"
3210 /* denied: req, resp */
3211 "%lld,%lld,"
3212 /* errors : request, connect, response */
3213 ",%lld,%lld,"
3214 /* warnings: retries, redispatches */
3215 "%lld,%lld,"
3216 /* backend status: reflect backend status (up/down): we display UP
3217 * if the backend has known working servers or if it has no server at
3218 * all (eg: for stats). Then we display the total weight, number of
3219 * active and backups. */
3220 "%s,"
3221 "%d,%d,%d,"
3222 /* rest of backend: nothing, down transitions, last change, total downtime */
3223 ",%d,%d,%d,,"
3224 /* pid, iid, sid, throttle, lbtot, tracked, type */
3225 "%d,%d,0,,%lld,,%d,"
3226 /* rate, rate_lim, rate_max, */
3227 "%u,,%u,"
3228 /* check_status, check_code, check_duration */
3229 ",,,",
3230 px->id,
3231 px->nbpend /* or px->totpend ? */, px->be_counters.nbpend_max,
3232 px->beconn, px->be_counters.conn_max, px->fullconn, px->be_counters.cum_conn,
3233 px->be_counters.bytes_in, px->be_counters.bytes_out,
3234 px->be_counters.denied_req, px->be_counters.denied_resp,
3235 px->be_counters.failed_conns, px->be_counters.failed_resp,
3236 px->be_counters.retries, px->be_counters.redispatches,
3237 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
3238 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3239 px->srv_act, px->srv_bck,
3240 px->down_trans, (int)(now.tv_sec - px->last_change),
3241 px->srv?be_downtime(px):0,
3242 relative_pid, px->uuid,
3243 px->be_counters.cum_lbconn, STATS_TYPE_BE,
3244 read_freq_ctr(&px->be_sess_per_sec),
3245 px->be_counters.sps_max);
3246
3247 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3248 if (px->mode == PR_MODE_HTTP) {
3249 for (i=1; i<6; i++)
3250 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[i]);
3251 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[0]);
3252 }
3253 else
3254 chunk_appendf(&trash, ",,,,,,");
3255
3256 /* failed health analyses */
3257 chunk_appendf(&trash, ",");
3258
3259 /* requests : req_rate, req_rate_max, req_tot, */
3260 chunk_appendf(&trash, ",,,");
3261
3262 /* errors: cli_aborts, srv_aborts */
3263 chunk_appendf(&trash, "%lld,%lld,",
3264 px->be_counters.cli_aborts, px->be_counters.srv_aborts);
3265
3266 /* compression: in, out, bypassed */
3267 chunk_appendf(&trash, "%lld,%lld,%lld,",
3268 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp);
3269
3270 /* compression: comp_rsp */
3271 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.comp_rsp);
3272
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003273 /* lastsess */
3274 chunk_appendf(&trash, "%d,", be_lastsession(px));
3275
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003276 /* finish with EOL */
3277 chunk_appendf(&trash, "\n");
3278 }
3279 return 1;
3280}
3281
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003282/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003283 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003284 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003285 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003286static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003287{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003288 struct appctx *appctx = __objt_appctx(si->end);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003289 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
3290
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003291 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003292 /* A form to enable/disable this proxy servers */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003293
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003294 /* 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 +02003295 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003296 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003297 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003298 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3299 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003300 }
3301
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003302 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003303 "<form action=\"%s%s%s%s\" method=\"post\">",
3304 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003305 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3306 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003307 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003308 }
3309
3310 /* print a new table */
3311 chunk_appendf(&trash,
3312 "<table class=\"tbl\" width=\"100%%\">\n"
3313 "<tr class=\"titre\">"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003314 "<th class=\"pxname\" width=\"10%%\">");
3315
3316 chunk_appendf(&trash,
3317 "<a name=\"%s\"></a>%s"
3318 "<a class=px href=\"#%s\">%s</a>",
3319 px->id,
3320 (uri->flags & ST_SHLGNDS) ? "<u>":"",
3321 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003322
3323 if (uri->flags & ST_SHLGNDS) {
3324 /* cap, mode, id */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003325 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003326 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
3327 px->uuid);
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003328 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003329 }
3330
3331 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003332 "%s</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003333 "<th class=\"%s\" width=\"90%%\">%s</th>"
3334 "</tr>\n"
3335 "</table>\n"
3336 "<table class=\"tbl\" width=\"100%%\">\n"
3337 "<tr class=\"titre\">",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003338 (uri->flags & ST_SHLGNDS) ? "</u>":"",
3339 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
3340
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003341 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003342 /* Column heading for Enable or Disable server */
3343 chunk_appendf(&trash, "<th rowspan=2 width=1></th>");
Willy Tarreau91861262007-10-17 17:06:05 +02003344 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003345
3346 chunk_appendf(&trash,
3347 "<th rowspan=2></th>"
3348 "<th colspan=3>Queue</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003349 "<th colspan=3>Session rate</th><th colspan=6>Sessions</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003350 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
3351 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
3352 "<th colspan=9>Server</th>"
3353 "</tr>\n"
3354 "<tr class=\"titre\">"
3355 "<th>Cur</th><th>Max</th><th>Limit</th>"
3356 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003357 "<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 +01003358 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
3359 "<th>Resp</th><th>Retr</th><th>Redis</th>"
3360 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
3361 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
3362 "<th>Thrtle</th>\n"
3363 "</tr>");
Willy Tarreau91861262007-10-17 17:06:05 +02003364}
3365
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003366/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003367 * stream interface <si>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003368 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003369static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003370{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003371 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003372 chunk_appendf(&trash, "</table>");
3373
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003374 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003375 /* close the form used to enable/disable this proxy servers */
3376 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003377 "Choose the action to perform on the checked servers : "
3378 "<select name=action>"
3379 "<option value=\"\"></option>"
3380 "<option value=\"disable\">Disable</option>"
3381 "<option value=\"enable\">Enable</option>"
3382 "<option value=\"stop\">Soft Stop</option>"
3383 "<option value=\"start\">Soft Start</option>"
3384 "<option value=\"shutdown\">Kill Sessions</option>"
3385 "</select>"
3386 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
3387 "&nbsp;<input type=\"submit\" value=\"Apply\">"
3388 "</form>",
3389 px->uuid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003390 }
3391
3392 chunk_appendf(&trash, "<p>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003393}
Willy Tarreau91861262007-10-17 17:06:05 +02003394
3395/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003396 * Dumps statistics for a proxy. The output is sent to the stream interface's
3397 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3398 * buffer space, or non-zero if everything completed. This function is used
3399 * both by the CLI and the HTTP entry points, and is able to dump the output
3400 * in HTML or CSV formats. If the later, <uri> must be NULL.
Willy Tarreau91861262007-10-17 17:06:05 +02003401 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003402static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02003403{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003404 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02003405 struct session *s = session_from_task(si->owner);
Willy Tarreau7421efb2012-07-02 15:11:27 +02003406 struct channel *rep = si->ib;
Willy Tarreau44267702011-10-28 15:35:33 +02003407 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003408 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02003409
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003410 chunk_reset(&trash);
Willy Tarreau91861262007-10-17 17:06:05 +02003411
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003412 switch (appctx->ctx.stats.px_st) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003413 case STAT_PX_ST_INIT:
Willy Tarreau91861262007-10-17 17:06:05 +02003414 /* we are on a new proxy */
Willy Tarreau91861262007-10-17 17:06:05 +02003415 if (uri && uri->scope) {
3416 /* we have a limited scope, we have to check the proxy name */
3417 struct stat_scope *scope;
3418 int len;
3419
3420 len = strlen(px->id);
3421 scope = uri->scope;
3422
3423 while (scope) {
3424 /* match exact proxy name */
3425 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3426 break;
3427
3428 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02003429 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02003430 break;
3431 scope = scope->next;
3432 }
3433
3434 /* proxy name not found : don't dump anything */
3435 if (scope == NULL)
3436 return 1;
3437 }
3438
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003439 /* if the user has requested a limited output and the proxy
3440 * name does not match, skip it.
3441 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003442 if (appctx->ctx.stats.scope_len &&
3443 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 +02003444 return 1;
3445
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003446 if ((appctx->ctx.stats.flags & STAT_BOUND) &&
3447 (appctx->ctx.stats.iid != -1) &&
3448 (px->uuid != appctx->ctx.stats.iid))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003449 return 1;
3450
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003451 appctx->ctx.stats.px_st = STAT_PX_ST_TH;
Willy Tarreau91861262007-10-17 17:06:05 +02003452 /* fall through */
3453
Willy Tarreau295a8372011-03-10 11:25:07 +01003454 case STAT_PX_ST_TH:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003455 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003456 stats_dump_html_px_hdr(si, px, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003457 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau55bb8452007-10-17 18:44:57 +02003458 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003459 }
Willy Tarreau91861262007-10-17 17:06:05 +02003460
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003461 appctx->ctx.stats.px_st = STAT_PX_ST_FE;
Willy Tarreau91861262007-10-17 17:06:05 +02003462 /* fall through */
3463
Willy Tarreau295a8372011-03-10 11:25:07 +01003464 case STAT_PX_ST_FE:
Willy Tarreau91861262007-10-17 17:06:05 +02003465 /* print the frontend */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003466 if (stats_dump_fe_stats(si, px))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003467 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003468 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02003469
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003470 appctx->ctx.stats.l = px->conf.listeners.n;
3471 appctx->ctx.stats.px_st = STAT_PX_ST_LI;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003472 /* fall through */
3473
Willy Tarreau295a8372011-03-10 11:25:07 +01003474 case STAT_PX_ST_LI:
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003475 /* stats.l has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003476 for (; appctx->ctx.stats.l != &px->conf.listeners; appctx->ctx.stats.l = l->by_fe.n) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003477 if (buffer_almost_full(rep->buf)) {
3478 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003479 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003480 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003481
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003482 l = LIST_ELEM(appctx->ctx.stats.l, struct listener *, by_fe);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003483 if (!l->counters)
3484 continue;
3485
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003486 if (appctx->ctx.stats.flags & STAT_BOUND) {
3487 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SO)))
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003488 break;
3489
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003490 if (appctx->ctx.stats.sid != -1 && l->luid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003491 continue;
3492 }
3493
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003494 /* print the frontend */
3495 if (stats_dump_li_stats(si, px, l, uri ? uri->flags : 0))
3496 if (bi_putchk(rep, &trash) == -1)
3497 return 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003498 }
3499
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003500 appctx->ctx.stats.sv = px->srv; /* may be NULL */
3501 appctx->ctx.stats.px_st = STAT_PX_ST_SV;
Willy Tarreau91861262007-10-17 17:06:05 +02003502 /* fall through */
3503
Willy Tarreau295a8372011-03-10 11:25:07 +01003504 case STAT_PX_ST_SV:
Willy Tarreau91861262007-10-17 17:06:05 +02003505 /* stats.sv has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003506 for (; appctx->ctx.stats.sv != NULL; appctx->ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01003507 int sv_state; /* 0=DOWN, 1=going up, 2=going down, 3=UP, 4,5=NOLB, 6=unchecked */
Willy Tarreau91861262007-10-17 17:06:05 +02003508
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003509 if (buffer_almost_full(rep->buf)) {
3510 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003511 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003512 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003513
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003514 sv = appctx->ctx.stats.sv;
Willy Tarreau91861262007-10-17 17:06:05 +02003515
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003516 if (appctx->ctx.stats.flags & STAT_BOUND) {
3517 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SV)))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003518 break;
3519
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003520 if (appctx->ctx.stats.sid != -1 && sv->puid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003521 continue;
3522 }
3523
Willy Tarreau44267702011-10-28 15:35:33 +02003524 if (sv->track)
3525 svs = sv->track;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003526 else
3527 svs = sv;
3528
Willy Tarreau91861262007-10-17 17:06:05 +02003529 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Willy Tarreauff5ae352013-12-11 20:36:34 +01003530 if (!(svs->check.state & CHK_ST_ENABLED))
Simon Horman8c3d0be2013-11-25 10:46:40 +09003531 sv_state = 8;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003532 else if (svs->state & SRV_RUNNING) {
Simon Horman58c32972013-11-25 10:46:38 +09003533 if (svs->check.health == svs->check.rise + svs->check.fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02003534 sv_state = 3; /* UP */
3535 else
3536 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01003537
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003538 if (svs->state & SRV_DRAIN)
Simon Horman8c3d0be2013-11-25 10:46:40 +09003539 sv_state += 4;
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003540 else if (svs->state & SRV_GOINGDOWN)
3541 sv_state += 2;
Willy Tarreau2ea81932007-11-30 12:04:38 +01003542 }
Willy Tarreau91861262007-10-17 17:06:05 +02003543 else
Simon Horman125d0992013-02-24 17:23:38 +09003544 if (svs->check.health)
Willy Tarreau91861262007-10-17 17:06:05 +02003545 sv_state = 1; /* going up */
3546 else
3547 sv_state = 0; /* DOWN */
3548
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003549 if (((sv_state == 0) || (sv->state & SRV_MAINTAIN)) && (appctx->ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02003550 /* do not report servers which are DOWN */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003551 appctx->ctx.stats.sv = sv->next;
Willy Tarreau91861262007-10-17 17:06:05 +02003552 continue;
3553 }
3554
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003555 if (stats_dump_sv_stats(si, px, uri ? uri->flags : 0, sv, sv_state))
3556 if (bi_putchk(rep, &trash) == -1)
3557 return 0;
3558 } /* for sv */
Cyril Bonté474be412010-10-12 00:14:36 +02003559
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003560 appctx->ctx.stats.px_st = STAT_PX_ST_BE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003561 /* fall through */
Cyril Bonté70be45d2010-10-12 00:14:35 +02003562
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003563 case STAT_PX_ST_BE:
3564 /* print the backend */
3565 if (stats_dump_be_stats(si, px, uri ? uri->flags : 0))
3566 if (bi_putchk(rep, &trash) == -1)
3567 return 0;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003568
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003569 appctx->ctx.stats.px_st = STAT_PX_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003570 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003571
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003572 case STAT_PX_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003573 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003574 stats_dump_html_px_end(si, px);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003575 if (bi_putchk(rep, &trash) == -1)
3576 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003577 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003578
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003579 appctx->ctx.stats.px_st = STAT_PX_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003580 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003581
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003582 case STAT_PX_ST_FIN:
3583 return 1;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003584
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003585 default:
3586 /* unknown state, we should put an abort() here ! */
3587 return 1;
3588 }
3589}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003590
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003591/* Dumps the HTTP stats head block to the trash for and uses the per-uri
3592 * parameters <uri>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003593 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003594static void stats_dump_html_head(struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003595{
3596 /* WARNING! This must fit in the first buffer !!! */
3597 chunk_appendf(&trash,
3598 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3599 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3600 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3601 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3602 "<style type=\"text/css\"><!--\n"
3603 "body {"
3604 " font-family: arial, helvetica, sans-serif;"
3605 " font-size: 12px;"
3606 " font-weight: normal;"
3607 " color: black;"
3608 " background: white;"
3609 "}\n"
3610 "th,td {"
3611 " font-size: 10px;"
3612 "}\n"
3613 "h1 {"
3614 " font-size: x-large;"
3615 " margin-bottom: 0.5em;"
3616 "}\n"
3617 "h2 {"
3618 " font-family: helvetica, arial;"
3619 " font-size: x-large;"
3620 " font-weight: bold;"
3621 " font-style: italic;"
3622 " color: #6020a0;"
3623 " margin-top: 0em;"
3624 " margin-bottom: 0em;"
3625 "}\n"
3626 "h3 {"
3627 " font-family: helvetica, arial;"
3628 " font-size: 16px;"
3629 " font-weight: bold;"
3630 " color: #b00040;"
3631 " background: #e8e8d0;"
3632 " margin-top: 0em;"
3633 " margin-bottom: 0em;"
3634 "}\n"
3635 "li {"
3636 " margin-top: 0.25em;"
3637 " margin-right: 2em;"
3638 "}\n"
3639 ".hr {margin-top: 0.25em;"
3640 " border-color: black;"
3641 " border-bottom-style: solid;"
3642 "}\n"
3643 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3644 ".total {background: #20D0D0;color: #ffff80;}\n"
3645 ".frontend {background: #e8e8d0;}\n"
3646 ".socket {background: #d0d0d0;}\n"
3647 ".backend {background: #e8e8d0;}\n"
3648 ".active0 {background: #ff9090;}\n"
3649 ".active1 {background: #ffd020;}\n"
3650 ".active2 {background: #ffffa0;}\n"
3651 ".active3 {background: #c0ffc0;}\n"
3652 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003653 ".active5 {background: #20a0ff;}\n" /* NOLB state shows different to be detected */
3654 ".active6 {background: #ffffa0;}\n" /* DRAIN going down = same as going down */
3655 ".active7 {background: #20a0FF;}\n" /* DRAIN must be detected (weight=0) */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003656 ".active8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003657 ".backup0 {background: #ff9090;}\n"
3658 ".backup1 {background: #ff80ff;}\n"
3659 ".backup2 {background: #c060ff;}\n"
3660 ".backup3 {background: #b0d0ff;}\n"
3661 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
3662 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003663 ".backup6 {background: #c060ff;}\n"
3664 ".backup7 {background: #cc9900;}\n"
3665 ".backup8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003666 ".maintain {background: #c07820;}\n"
3667 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3668 "\n"
3669 "a.px:link {color: #ffff40; text-decoration: none;}"
3670 "a.px:visited {color: #ffff40; text-decoration: none;}"
3671 "a.px:hover {color: #ffffff; text-decoration: none;}"
3672 "a.lfsb:link {color: #000000; text-decoration: none;}"
3673 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3674 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3675 "\n"
3676 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3677 "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"
3678 "table.tbl td.ac { text-align: center;}\n"
3679 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3680 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3681 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3682 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3683 "\n"
3684 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3685 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3686 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003687 "table.det { border-collapse: collapse; border-style: none; }\n"
3688 "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 +01003689 "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 +01003690 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003691 "div.tips {\n"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003692 " display:block;\n"
3693 " visibility:hidden;\n"
3694 " z-index:2147483647;\n"
3695 " position:absolute;\n"
3696 " padding:2px 4px 3px;\n"
3697 " background:#f0f060; color:#000000;\n"
3698 " border:1px solid #7040c0;\n"
3699 " white-space:nowrap;\n"
3700 " font-style:normal;font-size:11px;font-weight:normal;\n"
3701 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3702 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3703 "}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003704 "u:hover div.tips {visibility:visible;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003705 "-->\n"
3706 "</style></head>\n",
3707 (uri->flags & ST_SHNODE) ? " on " : "",
3708 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
3709 );
3710}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003711
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003712/* Dumps the HTML stats information block to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003713 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003714 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003715 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003716static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003717{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003718 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003719 unsigned int up = (now.tv_sec - start_date.tv_sec);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003720 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003721
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003722 /* WARNING! this has to fit the first packet too.
3723 * We are around 3.5 kB, add adding entries will
3724 * become tricky if we want to support 4kB buffers !
3725 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003726 chunk_appendf(&trash,
3727 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3728 PRODUCT_NAME "%s</a></h1>\n"
3729 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3730 "<hr width=\"100%%\" class=\"hr\">\n"
3731 "<h3>&gt; General process information</h3>\n"
3732 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
3733 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
3734 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3735 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3736 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
3737 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec<br>\n"
3738 "Running tasks: %d/%d; idle = %d %%<br>\n"
3739 "</td><td align=\"center\" nowrap>\n"
3740 "<table class=\"lgd\"><tr>\n"
3741 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
3742 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
3743 "</tr><tr>\n"
3744 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
3745 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
3746 "</tr><tr>\n"
3747 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
3748 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3749 "</tr><tr>\n"
3750 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Simon Horman8c3d0be2013-11-25 10:46:40 +09003751 "</tr><tr>\n"
3752 "<td class=\"active8\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003753 "</tr><tr>\n"
3754 "<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 -07003755 "</tr><tr>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003756 "<td class=\"active7\"></td><td class=\"noborder\" colspan=\"3\">active or backup SOFT STOPPED for maintenance &nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003757 "</tr></table>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003758 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003759 "</td>"
3760 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3761 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3762 "",
3763 (uri->flags & ST_HIDEVER) ? "" : (STATS_VERSION_STRING),
3764 pid, (uri->flags & ST_SHNODE) ? " on " : "",
3765 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3766 (uri->flags & ST_SHDESC) ? ": " : "",
3767 (uri->flags & ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
3768 pid, relative_pid, global.nbproc,
3769 up / 86400, (up % 86400) / 3600,
3770 (up % 3600) / 60, (up % 60),
3771 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3772 global.rlimit_memmax ? " MB" : "",
3773 global.rlimit_nofile,
3774 global.maxsock, global.maxconn, global.maxpipes,
3775 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
3776 run_queue_cur, nb_tasks_cur, idle_pct
3777 );
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003778
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003779 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3780 memcpy(scope_txt, bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3781 scope_txt[appctx->ctx.stats.scope_len] = '\0';
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003782
3783 chunk_appendf(&trash,
Cyril Bonté54656842013-04-18 22:38:35 +02003784 "<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 +02003785 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003786 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3787 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3788 (appctx->ctx.stats.scope_len > 0) ? scope_txt : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003789 STAT_SCOPE_TXT_MAXLEN);
3790
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003791 /* 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 +02003792 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003793 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003794 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003795 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3796 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003797 }
3798
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003799 if (appctx->ctx.stats.flags & STAT_HIDE_DOWN)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003800 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003801 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003802 uri->uri_prefix,
3803 "",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003804 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003805 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003806 else
3807 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003808 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003809 uri->uri_prefix,
3810 ";up",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003811 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003812 scope_txt);
Willy Tarreau91861262007-10-17 17:06:05 +02003813
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003814 if (uri->refresh > 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003815 if (appctx->ctx.stats.flags & STAT_NO_REFRESH)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003816 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003817 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003818 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003819 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003820 "",
3821 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003822 else
3823 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003824 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003825 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003826 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003827 ";norefresh",
3828 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003829 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02003830
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003831 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003832 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003833 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003834 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3835 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003836 scope_txt);
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02003837
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003838 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003839 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003840 uri->uri_prefix,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003841 (uri->refresh > 0) ? ";norefresh" : "",
3842 scope_txt);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003843
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003844 chunk_appendf(&trash,
3845 "</ul></td>"
3846 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3847 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3848 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3849 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3850 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3851 "</ul>"
3852 "</td>"
3853 "</tr></table>\n"
3854 ""
3855 );
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003856
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003857 if (appctx->ctx.stats.st_code) {
3858 switch (appctx->ctx.stats.st_code) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003859 case STAT_STATUS_DONE:
3860 chunk_appendf(&trash,
3861 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003862 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003863 "Action processed successfully."
Willy Tarreauba6be982013-04-19 12:16:55 +02003864 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003865 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3866 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003867 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003868 break;
3869 case STAT_STATUS_NONE:
3870 chunk_appendf(&trash,
3871 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003872 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003873 "Nothing has changed."
Willy Tarreauba6be982013-04-19 12:16:55 +02003874 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003875 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3876 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003877 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003878 break;
3879 case STAT_STATUS_PART:
3880 chunk_appendf(&trash,
3881 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003882 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003883 "Action partially processed.<br>"
3884 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
Willy Tarreauba6be982013-04-19 12:16:55 +02003885 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003886 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3887 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003888 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003889 break;
3890 case STAT_STATUS_ERRP:
3891 chunk_appendf(&trash,
3892 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003893 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003894 "Action not processed because of invalid parameters."
3895 "<ul>"
3896 "<li>The action is maybe unknown.</li>"
3897 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3898 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3899 "</ul>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003900 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003901 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3902 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003903 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003904 break;
3905 case STAT_STATUS_EXCD:
3906 chunk_appendf(&trash,
3907 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003908 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003909 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3910 "You should retry with less servers at a time.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003911 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003912 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3913 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003914 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003915 break;
3916 case STAT_STATUS_DENY:
3917 chunk_appendf(&trash,
3918 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003919 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003920 "<b>Action denied.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003921 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003922 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3923 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003924 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003925 break;
3926 default:
3927 chunk_appendf(&trash,
Simon Horman8c3d0be2013-11-25 10:46:40 +09003928 "<p><div class=active8>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003929 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003930 "Unexpected result."
Willy Tarreauba6be982013-04-19 12:16:55 +02003931 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003932 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3933 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003934 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003935 }
3936 chunk_appendf(&trash, "<p>\n");
3937 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003938}
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003939
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003940/* Dumps the HTML stats trailer block to the trash. The caller is responsible
3941 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003942 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003943static void stats_dump_html_end()
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003944{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003945 chunk_appendf(&trash, "</body></html>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003946}
Willy Tarreau7f062c42009-03-05 18:43:00 +01003947
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003948/* This function dumps statistics onto the stream interface's read buffer in
3949 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
Willy Tarreau306f8302013-07-08 15:53:06 +02003950 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
3951 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
3952 * and the session must be closed, or -1 in case of any error. This function is
3953 * used by both the CLI and the HTTP handlers.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003954 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003955static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003956{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003957 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003958 struct channel *rep = si->ib;
3959 struct proxy *px;
Willy Tarreau7f062c42009-03-05 18:43:00 +01003960
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003961 chunk_reset(&trash);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02003962
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003963 switch (appctx->st2) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003964 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003965 appctx->st2 = STAT_ST_HEAD; /* let's start producing data */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003966 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01003967
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003968 case STAT_ST_HEAD:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003969 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003970 stats_dump_html_head(uri);
Willy Tarreau354898b2012-12-23 18:15:23 +01003971 else
3972 stats_dump_csv_header();
Willy Tarreaud9b587f2010-02-26 10:05:55 +01003973
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003974 if (bi_putchk(rep, &trash) == -1)
3975 return 0;
Willy Tarreauae526782010-03-04 20:34:23 +01003976
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003977 appctx->st2 = STAT_ST_INFO;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003978 /* fall through */
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003979
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003980 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003981 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003982 stats_dump_html_info(si, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003983 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003984 return 0;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003985 }
Willy Tarreau91861262007-10-17 17:06:05 +02003986
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003987 appctx->ctx.stats.px = proxy;
3988 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
3989 appctx->st2 = STAT_ST_LIST;
Willy Tarreau91861262007-10-17 17:06:05 +02003990 /* fall through */
3991
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003992 case STAT_ST_LIST:
3993 /* dump proxies */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003994 while (appctx->ctx.stats.px) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003995 if (buffer_almost_full(rep->buf)) {
3996 rep->flags |= CF_WAKE_WRITE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003997 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003998 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003999
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004000 px = appctx->ctx.stats.px;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004001 /* skip the disabled proxies, global frontend and non-networked ones */
4002 if (px->state != PR_STSTOPPED && px->uuid > 0 && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004003 if (stats_dump_proxy_to_buffer(si, px, uri) == 0)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004004 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004005
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004006 appctx->ctx.stats.px = px->next;
4007 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004008 }
4009 /* here, we just have reached the last proxy */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004010
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004011 appctx->st2 = STAT_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004012 /* fall through */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004013
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004014 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004015 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004016 stats_dump_html_end();
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004017 if (bi_putchk(rep, &trash) == -1)
4018 return 0;
4019 }
Willy Tarreau55058a72012-11-21 08:27:21 +01004020
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004021 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004022 /* fall through */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02004023
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004024 case STAT_ST_FIN:
4025 return 1;
Willy Tarreau55058a72012-11-21 08:27:21 +01004026
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004027 default:
4028 /* unknown state ! */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004029 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004030 return -1;
4031 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004032}
Willy Tarreauae526782010-03-04 20:34:23 +01004033
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004034/* We reached the stats page through a POST request. The appctx is
4035 * expected to have already been allocated by the caller.
Willy Tarreau347a35d2013-11-22 17:51:09 +01004036 * Parse the posted data and enable/disable servers if necessary.
4037 * Returns 1 if request was parsed or zero if it needs more data.
4038 */
4039static int stats_process_http_post(struct stream_interface *si)
4040{
4041 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004042 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004043
4044 struct proxy *px = NULL;
4045 struct server *sv = NULL;
4046
4047 char key[LINESIZE];
4048 int action = ST_ADM_ACTION_NONE;
4049 int reprocess = 0;
4050
4051 int total_servers = 0;
4052 int altered_servers = 0;
4053
4054 char *first_param, *cur_param, *next_param, *end_params;
4055 char *st_cur_param = NULL;
4056 char *st_next_param = NULL;
4057
4058 struct chunk *temp;
4059 int reql;
4060
4061 temp = get_trash_chunk();
4062 if (temp->size < s->txn.req.body_len) {
4063 /* too large request */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004064 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004065 goto out;
4066 }
4067
4068 reql = bo_getblk(si->ob, temp->str, s->txn.req.body_len, s->txn.req.eoh + 2);
4069 if (reql <= 0) {
4070 /* we need more data */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004071 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004072 return 0;
4073 }
4074
4075 first_param = temp->str;
4076 end_params = temp->str + reql;
4077 cur_param = next_param = end_params;
4078 *end_params = '\0';
4079
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004080 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004081
4082 /*
4083 * Parse the parameters in reverse order to only store the last value.
4084 * From the html form, the backend and the action are at the end.
4085 */
4086 while (cur_param > first_param) {
4087 char *value;
4088 int poffset, plen;
4089
4090 cur_param--;
4091
4092 if ((*cur_param == '&') || (cur_param == first_param)) {
4093 reprocess_servers:
4094 /* Parse the key */
4095 poffset = (cur_param != first_param ? 1 : 0);
4096 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
4097 if ((plen > 0) && (plen <= sizeof(key))) {
4098 strncpy(key, cur_param + poffset, plen);
4099 key[plen - 1] = '\0';
4100 } else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004101 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004102 goto out;
4103 }
4104
4105 /* Parse the value */
4106 value = key;
4107 while (*value != '\0' && *value != '=') {
4108 value++;
4109 }
4110 if (*value == '=') {
4111 /* Ok, a value is found, we can mark the end of the key */
4112 *value++ = '\0';
4113 }
4114 if (url_decode(key) < 0 || url_decode(value) < 0)
4115 break;
4116
4117 /* Now we can check the key to see what to do */
4118 if (!px && (strcmp(key, "b") == 0)) {
4119 if ((px = findproxy(value, PR_CAP_BE)) == NULL) {
4120 /* the backend name is unknown or ambiguous (duplicate names) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004121 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004122 goto out;
4123 }
4124 }
4125 else if (!action && (strcmp(key, "action") == 0)) {
4126 if (strcmp(value, "disable") == 0) {
4127 action = ST_ADM_ACTION_DISABLE;
4128 }
4129 else if (strcmp(value, "enable") == 0) {
4130 action = ST_ADM_ACTION_ENABLE;
4131 }
4132 else if (strcmp(value, "stop") == 0) {
4133 action = ST_ADM_ACTION_STOP;
4134 }
4135 else if (strcmp(value, "start") == 0) {
4136 action = ST_ADM_ACTION_START;
4137 }
4138 else if (strcmp(value, "shutdown") == 0) {
4139 action = ST_ADM_ACTION_SHUTDOWN;
4140 }
4141 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004142 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004143 goto out;
4144 }
4145 }
4146 else if (strcmp(key, "s") == 0) {
4147 if (!(px && action)) {
4148 /*
4149 * Indicates that we'll need to reprocess the parameters
4150 * as soon as backend and action are known
4151 */
4152 if (!reprocess) {
4153 st_cur_param = cur_param;
4154 st_next_param = next_param;
4155 }
4156 reprocess = 1;
4157 }
4158 else if ((sv = findserver(px, value)) != NULL) {
4159 switch (action) {
4160 case ST_ADM_ACTION_DISABLE:
4161 if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) {
4162 /* Not already in maintenance, we can change the server state */
4163 sv->state |= SRV_MAINTAIN;
Willy Tarreau33a08db2013-12-11 21:03:31 +01004164 sv->check.state |= CHK_ST_PAUSED;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004165 set_server_down(&sv->check);
4166 altered_servers++;
4167 total_servers++;
4168 }
4169 break;
4170 case ST_ADM_ACTION_ENABLE:
4171 if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) {
Willy Tarreaua3ae9322013-12-28 21:28:49 +01004172 /* Already in maintenance, we can change the server state.
4173 * If this server tracks the status of another one,
4174 * we must restore the good status.
4175 */
4176 if (!sv->track || (sv->track->state & SRV_RUNNING)) {
4177 set_server_up(&sv->check);
4178 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
4179 }
4180 else {
4181 sv->state &= ~SRV_MAINTAIN;
4182 sv->check.state &= ~CHK_ST_PAUSED;
4183 set_server_down(&sv->check);
4184 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004185 altered_servers++;
4186 total_servers++;
4187 }
4188 break;
4189 case ST_ADM_ACTION_STOP:
4190 case ST_ADM_ACTION_START:
4191 if (action == ST_ADM_ACTION_START)
4192 sv->uweight = sv->iweight;
4193 else
4194 sv->uweight = 0;
4195
4196 server_recalc_eweight(sv);
4197 set_server_drain_state(sv);
4198
4199 altered_servers++;
4200 total_servers++;
4201 break;
4202 case ST_ADM_ACTION_SHUTDOWN:
4203 if (px->state != PR_STSTOPPED) {
4204 struct session *sess, *sess_bck;
4205
4206 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
4207 if (sess->srv_conn == sv)
4208 session_shutdown(sess, SN_ERR_KILLED);
4209
4210 altered_servers++;
4211 total_servers++;
4212 }
4213 break;
4214 }
4215 } else {
4216 /* the server name is unknown or ambiguous (duplicate names) */
4217 total_servers++;
4218 }
4219 }
4220 if (reprocess && px && action) {
4221 /* Now, we know the backend and the action chosen by the user.
4222 * We can safely restart from the first server parameter
4223 * to reprocess them
4224 */
4225 cur_param = st_cur_param;
4226 next_param = st_next_param;
4227 reprocess = 0;
4228 goto reprocess_servers;
4229 }
4230
4231 next_param = cur_param;
4232 }
4233 }
4234
4235 if (total_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004236 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004237 }
4238 else if (altered_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004239 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004240 }
4241 else if (altered_servers == total_servers) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004242 appctx->ctx.stats.st_code = STAT_STATUS_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004243 }
4244 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004245 appctx->ctx.stats.st_code = STAT_STATUS_PART;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004246 }
4247 out:
4248 return 1;
4249}
4250
4251
4252static int stats_send_http_headers(struct stream_interface *si)
4253{
4254 struct session *s = session_from_task(si->owner);
4255 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004256 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004257
4258 chunk_printf(&trash,
Willy Tarreau51437d22013-12-29 00:43:40 +01004259 "HTTP/1.0 200 OK\r\n"
Willy Tarreau347a35d2013-11-22 17:51:09 +01004260 "Cache-Control: no-cache\r\n"
4261 "Connection: close\r\n"
4262 "Content-Type: %s\r\n",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004263 (appctx->ctx.stats.flags & STAT_FMT_HTML) ? "text/html" : "text/plain");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004264
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004265 if (uri->refresh > 0 && !(appctx->ctx.stats.flags & STAT_NO_REFRESH))
Willy Tarreau347a35d2013-11-22 17:51:09 +01004266 chunk_appendf(&trash, "Refresh: %d\r\n",
4267 uri->refresh);
4268
Willy Tarreau51437d22013-12-29 00:43:40 +01004269 chunk_appendf(&trash, "\r\n");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004270
4271 s->txn.status = 200;
4272 s->logs.tv_request = now;
4273
4274 if (bi_putchk(si->ib, &trash) == -1)
4275 return 0;
4276
4277 return 1;
4278}
4279
4280static int stats_send_http_redirect(struct stream_interface *si)
4281{
4282 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
4283 struct session *s = session_from_task(si->owner);
4284 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004285 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004286
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004287 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau347a35d2013-11-22 17:51:09 +01004288 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004289 if (appctx->ctx.stats.scope_len) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004290 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004291 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
4292 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004293 }
4294
4295 /* We don't want to land on the posted stats page because a refresh will
4296 * repost the data. We don't want this to happen on accident so we redirect
4297 * the browse to the stats page with a GET.
4298 */
4299 chunk_printf(&trash,
4300 "HTTP/1.1 303 See Other\r\n"
4301 "Cache-Control: no-cache\r\n"
4302 "Content-Type: text/plain\r\n"
4303 "Connection: close\r\n"
4304 "Location: %s;st=%s%s%s%s\r\n"
4305 "\r\n",
4306 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004307 ((appctx->ctx.stats.st_code > STAT_STATUS_INIT) &&
4308 (appctx->ctx.stats.st_code < STAT_STATUS_SIZE) &&
4309 stat_status_codes[appctx->ctx.stats.st_code]) ?
4310 stat_status_codes[appctx->ctx.stats.st_code] :
Willy Tarreau347a35d2013-11-22 17:51:09 +01004311 stat_status_codes[STAT_STATUS_UNKN],
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004312 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4313 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreau347a35d2013-11-22 17:51:09 +01004314 scope_txt);
4315
4316 s->txn.status = 303;
4317 s->logs.tv_request = now;
4318
4319 if (bi_putchk(si->ib, &trash) == -1)
4320 return 0;
4321
4322 return 1;
4323}
4324
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004325/* This I/O handler runs as an applet embedded in a stream interface. It is
4326 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004327 * appctx->st0 contains the operation in progress (dump, done). The handler
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004328 * automatically unregisters itself once transfer is complete.
4329 */
4330static void http_stats_io_handler(struct stream_interface *si)
4331{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004332 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02004333 struct session *s = session_from_task(si->owner);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004334 struct channel *req = si->ob;
4335 struct channel *res = si->ib;
Willy Tarreau55058a72012-11-21 08:27:21 +01004336
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004337 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
4338 goto out;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004339
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004340 /* check that the output is not closed */
4341 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004342 appctx->st0 = STAT_HTTP_DONE;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004343
Willy Tarreau347a35d2013-11-22 17:51:09 +01004344 /* all states are processed in sequence */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004345 if (appctx->st0 == STAT_HTTP_HEAD) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004346 if (stats_send_http_headers(si)) {
4347 if (s->txn.meth == HTTP_METH_HEAD)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004348 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004349 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004350 appctx->st0 = STAT_HTTP_DUMP;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004351 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004352 }
4353
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004354 if (appctx->st0 == STAT_HTTP_DUMP) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004355 if (stats_dump_stat_to_buffer(si, s->be->uri_auth))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004356 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004357 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02004358
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004359 if (appctx->st0 == STAT_HTTP_POST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004360 if (stats_process_http_post(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004361 appctx->st0 = STAT_HTTP_LAST;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004362 else if (si->ob->flags & CF_SHUTR)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004363 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004364 }
4365
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004366 if (appctx->st0 == STAT_HTTP_LAST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004367 if (stats_send_http_redirect(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004368 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004369 }
4370
Willy Tarreau51437d22013-12-29 00:43:40 +01004371 if (appctx->st0 == STAT_HTTP_DONE)
4372 si_shutw(si);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004373
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004374 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST))
4375 si_shutw(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004376
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004377 if (appctx->st0 == STAT_HTTP_DONE) {
Willy Tarreau96d44912013-11-22 12:25:24 +01004378 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST)) {
4379 si_shutr(si);
4380 res->flags |= CF_READ_NULL;
4381 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004382 }
Willy Tarreau91861262007-10-17 17:06:05 +02004383
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004384 /* update all other flags and resync with the other side */
4385 si_update(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004386
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004387 /* we don't want to expire timeouts while we're processing requests */
4388 si->ib->rex = TICK_ETERNITY;
4389 si->ob->wex = TICK_ETERNITY;
Willy Tarreau91861262007-10-17 17:06:05 +02004390
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004391 out:
4392 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
4393 /* check that we have released everything then unregister */
4394 stream_int_unregister_handler(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004395 }
4396}
4397
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004398
Willy Tarreau909d5172012-11-26 03:04:41 +01004399static inline const char *get_conn_ctrl_name(const struct connection *conn)
4400{
Willy Tarreau3c728722014-01-23 13:50:42 +01004401 if (!conn_ctrl_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004402 return "NONE";
4403 return conn->ctrl->name;
4404}
4405
4406static inline const char *get_conn_xprt_name(const struct connection *conn)
4407{
4408 static char ptr[17];
4409
Willy Tarreauaad69382014-01-23 14:21:42 +01004410 if (!conn_xprt_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004411 return "NONE";
4412
4413 if (conn->xprt == &raw_sock)
4414 return "RAW";
4415
4416#ifdef USE_OPENSSL
4417 if (conn->xprt == &ssl_sock)
4418 return "SSL";
4419#endif
4420 snprintf(ptr, sizeof(ptr), "%p", conn->xprt);
4421 return ptr;
4422}
4423
4424static inline const char *get_conn_data_name(const struct connection *conn)
4425{
4426 static char ptr[17];
4427
4428 if (!conn->data)
4429 return "NONE";
4430
4431 if (conn->data == &sess_conn_cb)
4432 return "SESS";
4433
4434 if (conn->data == &si_conn_cb)
4435 return "STRM";
4436
4437 if (conn->data == &check_conn_cb)
4438 return "CHCK";
4439
4440 snprintf(ptr, sizeof(ptr), "%p", conn->data);
4441 return ptr;
4442}
4443
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02004444/* This function dumps a complete session state onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02004445 * read buffer. The session has to be set in sess->target. It returns
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004446 * 0 if the output buffer is full and it needs to be called again, otherwise
4447 * non-zero. It is designed to be called from stats_dump_sess_to_buffer() below.
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004448 */
Willy Tarreau76153662012-11-26 01:16:39 +01004449static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004450{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004451 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004452 struct tm tm;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004453 extern const char *monthname[12];
4454 char pn[INET6_ADDRSTRLEN];
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004455 struct connection *conn;
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004456 struct appctx *tmpctx;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004457
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004458 chunk_reset(&trash);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004459
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004460 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != sess->uniq_id) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004461 /* session changed, no need to go any further */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004462 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
4463 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004464 return 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004465 appctx->ctx.sess.uid = 0;
4466 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004467 return 1;
4468 }
4469
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004470 switch (appctx->ctx.sess.section) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004471 case 0: /* main status of the session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004472 appctx->ctx.sess.uid = sess->uniq_id;
4473 appctx->ctx.sess.section = 1;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004474 /* fall through */
4475
4476 case 1:
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004477 get_localtime(sess->logs.accept_date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004478 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004479 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004480 sess,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004481 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
4482 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004483 sess->uniq_id,
Willy Tarreaue95c4ce2013-01-24 00:48:39 +01004484 sess->listener && sess->listener->proto->name ? sess->listener->proto->name : "?");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004485
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004486 conn = objt_conn(sess->si[0].end);
4487 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004488 case AF_INET:
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004489 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004490 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004491 pn, get_host_port(&conn->addr.from));
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004492 break;
4493 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004494 chunk_appendf(&trash, " source=unix:%d\n", sess->listener->luid);
Emeric Brun837ca522010-10-22 16:19:01 +02004495 break;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004496 default:
4497 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004498 chunk_appendf(&trash, "\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004499 break;
4500 }
4501
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004502 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004503 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02004504 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004505
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004506 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004507 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004508 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
4509 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
4510 sess->listener ? sess->listener->luid : 0);
4511
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004512 if (conn)
4513 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004514
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004515 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004516 case AF_INET:
4517 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004518 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004519 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07004520 break;
4521 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004522 chunk_appendf(&trash, " addr=unix:%d\n", sess->listener->luid);
Daniel Schultze90690c72012-03-23 10:53:36 -07004523 break;
4524 default:
4525 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004526 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004527 break;
4528 }
4529
Willy Tarreau50943332011-09-02 17:33:05 +02004530 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004531 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004532 " backend=%s (id=%u mode=%s)",
Willy Tarreau50943332011-09-02 17:33:05 +02004533 sess->be->id,
Daniel Schultze90690c72012-03-23 10:53:36 -07004534 sess->be->uuid, sess->be->mode ? "http" : "tcp");
4535 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004536 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
Daniel Schultze90690c72012-03-23 10:53:36 -07004537
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004538 conn = objt_conn(sess->si[1].end);
4539 if (conn)
4540 conn_get_from_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004541
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004542 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004543 case AF_INET:
4544 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004545 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004546 pn, get_host_port(&conn->addr.from));
Daniel Schultze90690c72012-03-23 10:53:36 -07004547 break;
4548 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004549 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004550 break;
4551 default:
4552 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004553 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004554 break;
4555 }
4556
4557 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004558 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004559 " server=%s (id=%u)",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004560 objt_server(sess->target) ? objt_server(sess->target)->id : "<none>",
4561 objt_server(sess->target) ? objt_server(sess->target)->puid : 0);
Willy Tarreau50943332011-09-02 17:33:05 +02004562 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004563 chunk_appendf(&trash, " server=<NONE> (id=-1)");
Daniel Schultze90690c72012-03-23 10:53:36 -07004564
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004565 if (conn)
4566 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004567
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004568 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004569 case AF_INET:
4570 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004571 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004572 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07004573 break;
4574 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004575 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004576 break;
4577 default:
4578 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004579 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004580 break;
4581 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004582
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004583 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004584 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004585 sess->task,
4586 sess->task->state,
4587 sess->task->nice, sess->task->calls,
4588 sess->task->expire ?
4589 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
4590 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
4591 TICKS_TO_MS(1000)) : "<NEVER>",
4592 task_in_rq(sess->task) ? ", running" : "");
4593
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004594 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004595 " age=%s)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004596 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
4597
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004598 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004599 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s\n",
4600 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
4601 http_msg_state_str(sess->txn.req.msg_state), http_msg_state_str(sess->txn.rsp.msg_state));
4602
4603 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004604 " si[0]=%p (state=%s flags=0x%02x endp0=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004605 &sess->si[0],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004606 si_state_str(sess->si[0].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004607 sess->si[0].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004608 obj_type_name(sess->si[0].end),
4609 obj_base_ptr(sess->si[0].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004610 sess->si[0].exp ?
4611 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
4612 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
4613 TICKS_TO_MS(1000)) : "<NEVER>",
4614 sess->si[0].err_type);
4615
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004616 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004617 " si[1]=%p (state=%s flags=0x%02x endp1=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004618 &sess->si[1],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004619 si_state_str(sess->si[1].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004620 sess->si[1].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004621 obj_type_name(sess->si[1].end),
4622 obj_base_ptr(sess->si[1].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004623 sess->si[1].exp ?
4624 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
4625 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
4626 TICKS_TO_MS(1000)) : "<NEVER>",
4627 sess->si[1].err_type);
4628
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004629 if ((conn = objt_conn(sess->si[0].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004630 chunk_appendf(&trash,
4631 " co0=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004632 conn,
4633 get_conn_ctrl_name(conn),
4634 get_conn_xprt_name(conn),
4635 get_conn_data_name(conn),
4636 obj_type_name(conn->target),
4637 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01004638
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004639 chunk_appendf(&trash,
Willy Tarreau16f649c2014-01-25 19:10:48 +01004640 " flags=0x%08x fd=%d fd.state=%02x fd.cache=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004641 conn->flags,
4642 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01004643 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01004644 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004645 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004646 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004647 else if ((tmpctx = objt_appctx(sess->si[0].end)) != NULL) {
4648 chunk_appendf(&trash,
4649 " app0=%p st0=%d st1=%d st2=%d applet=%s\n",
4650 tmpctx,
4651 tmpctx->st0,
4652 tmpctx->st1,
4653 tmpctx->st2,
4654 tmpctx->applet->name);
4655 }
Willy Tarreaubc174aa2012-11-19 16:10:32 +01004656
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004657 if ((conn = objt_conn(sess->si[1].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004658 chunk_appendf(&trash,
4659 " co1=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004660 conn,
4661 get_conn_ctrl_name(conn),
4662 get_conn_xprt_name(conn),
4663 get_conn_data_name(conn),
4664 obj_type_name(conn->target),
4665 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01004666
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004667 chunk_appendf(&trash,
4668 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004669 conn->flags,
4670 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01004671 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01004672 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004673 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004674 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004675 else if ((tmpctx = objt_appctx(sess->si[1].end)) != NULL) {
4676 chunk_appendf(&trash,
4677 " app1=%p st0=%d st1=%d st2=%d applet=%s\n",
4678 tmpctx,
4679 tmpctx->st0,
4680 tmpctx->st1,
4681 tmpctx->st2,
4682 tmpctx->applet->name);
4683 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004684
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004685 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01004686 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004687 " an_exp=%s",
4688 sess->req,
4689 sess->req->flags, sess->req->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004690 sess->req->pipe ? sess->req->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01004691 sess->req->to_forward, sess->req->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004692 sess->req->analyse_exp ?
4693 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
4694 TICKS_TO_MS(1000)) : "<NEVER>");
4695
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004696 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004697 " rex=%s",
4698 sess->req->rex ?
4699 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
4700 TICKS_TO_MS(1000)) : "<NEVER>");
4701
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004702 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004703 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01004704 " buf=%p data=%p o=%d p=%d req.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004705 sess->req->wex ?
4706 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
4707 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01004708 sess->req->buf,
4709 sess->req->buf->data, sess->req->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004710 (int)(sess->req->buf->p - sess->req->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01004711 sess->txn.req.next, sess->req->buf->i,
4712 sess->req->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004713
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004714 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01004715 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004716 " an_exp=%s",
4717 sess->rep,
4718 sess->rep->flags, sess->rep->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004719 sess->rep->pipe ? sess->rep->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01004720 sess->rep->to_forward, sess->rep->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004721 sess->rep->analyse_exp ?
4722 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
4723 TICKS_TO_MS(1000)) : "<NEVER>");
4724
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004725 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004726 " rex=%s",
4727 sess->rep->rex ?
4728 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
4729 TICKS_TO_MS(1000)) : "<NEVER>");
4730
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004731 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004732 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01004733 " buf=%p data=%p o=%d p=%d rsp.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004734 sess->rep->wex ?
4735 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
4736 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01004737 sess->rep->buf,
4738 sess->rep->buf->data, sess->rep->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004739 (int)(sess->rep->buf->p - sess->rep->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01004740 sess->txn.rsp.next, sess->rep->buf->i,
4741 sess->rep->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004742
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004743 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004744 return 0;
4745
4746 /* use other states to dump the contents */
4747 }
4748 /* end of dump */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004749 appctx->ctx.sess.uid = 0;
4750 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004751 return 1;
4752}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004753
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004754static int stats_pats_list(struct stream_interface *si)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004755{
4756 struct appctx *appctx = __objt_appctx(si->end);
4757
4758 switch (appctx->st2) {
4759 case STAT_ST_INIT:
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01004760 /* Display the column headers. If the message cannot be sent,
4761 * quit the fucntion with returning 0. The function is called
4762 * later and restart at the state "STAT_ST_INIT".
4763 */
4764 chunk_reset(&trash);
4765 chunk_appendf(&trash, "# id (name)\n");
4766 if (bi_putchk(si->ib, &trash) == -1)
4767 return 0;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004768
4769 /* Now, we start the browsing of the references lists.
4770 * Note that the following call to LIST_ELEM return bad pointer. The only
4771 * avalaible field of this pointer is <list>. It is used with the function
4772 * pat_list_get_next() for retruning the first avalaible entry
4773 */
4774 appctx->ctx.map.ref = LIST_ELEM(&pattern_reference, struct pat_ref *, list);
4775 appctx->ctx.map.ref = pat_list_get_next(appctx->ctx.map.ref, &pattern_reference,
4776 appctx->ctx.map.display_flags);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004777 appctx->st2 = STAT_ST_LIST;
4778 /* fall through */
4779
4780 case STAT_ST_LIST:
4781 while (appctx->ctx.map.ref) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004782 chunk_reset(&trash);
4783
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004784 /* Build messages. If the reference is used by another category than
4785 * the listed categorie, display the information in the massage.
4786 */
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01004787 chunk_appendf(&trash, "%d (%s)", appctx->ctx.map.ref->unique_id,
4788 appctx->ctx.map.ref->reference ? appctx->ctx.map.ref->reference : "");
4789
4790 if (appctx->ctx.map.display_flags & PAT_REF_MAP) {
4791 if (appctx->ctx.map.ref->flags & PAT_REF_ACL)
4792 chunk_appendf(&trash, " - also used by an ACL");
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004793 }
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01004794 else {
4795 if (appctx->ctx.map.ref->flags & PAT_REF_MAP)
4796 chunk_appendf(&trash, " - also used by a map");
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004797 }
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01004798 chunk_appendf(&trash, "\n");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004799
4800 if (bi_putchk(si->ib, &trash) == -1) {
4801 /* let's try again later from this session. We add ourselves into
4802 * this session's users so that it can remove us upon termination.
4803 */
4804 return 0;
4805 }
4806
4807 /* get next list entry and check the end of the list */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004808 appctx->ctx.map.ref = pat_list_get_next(appctx->ctx.map.ref, &pattern_reference,
4809 appctx->ctx.map.display_flags);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004810 }
4811
4812 appctx->st2 = STAT_ST_FIN;
4813 /* fall through */
4814
4815 default:
4816 appctx->st2 = STAT_ST_FIN;
4817 return 1;
4818 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004819 return 0;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004820}
4821
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004822static int stats_map_lookup(struct stream_interface *si)
4823{
4824 struct appctx *appctx = __objt_appctx(si->end);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004825 struct sample sample;
4826 struct pattern *pat;
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004827 int match_method;
4828 struct sample_storage *smp;
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004829 struct sockaddr_storage addr;
4830 char s_addr[INET_ADDRSTRLEN];
4831 char s_mask[INET_ADDRSTRLEN];
4832 char s_addr6[INET6_ADDRSTRLEN];
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004833 const char *keystr;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004834
4835 switch (appctx->st2) {
4836 case STAT_ST_INIT:
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004837 /* Init to the first entry. The list cannot be change */
Thierry FOURNIERc5959fd2014-01-20 14:29:33 +01004838 appctx->ctx.map.expr = LIST_ELEM(&appctx->ctx.map.ref->pat, struct pattern_expr *, list);
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004839 appctx->ctx.map.expr = pat_expr_get_next(appctx->ctx.map.expr, &appctx->ctx.map.ref->pat);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004840 appctx->st2 = STAT_ST_LIST;
4841 /* fall through */
4842
4843 case STAT_ST_LIST:
4844 /* for each lookup type */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004845 while (appctx->ctx.map.expr) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004846 /* initialise chunk to build new message */
4847 chunk_reset(&trash);
4848
4849 /* execute pattern matching */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01004850 sample.type = SMP_T_STR;
4851 sample.flags |= SMP_F_CONST;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004852 sample.data.str.len = appctx->ctx.map.chunk.len;
4853 sample.data.str.str = appctx->ctx.map.chunk.str;
Thierry FOURNIER5d344082014-01-27 14:19:53 +01004854 if (appctx->ctx.map.expr->pat_head->match &&
4855 sample_convert(&sample, appctx->ctx.map.expr->pat_head->expect_type))
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004856 pat = appctx->ctx.map.expr->pat_head->match(&sample, appctx->ctx.map.expr, 1);
4857 else
4858 pat = NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004859
4860 /* build return message: set type of match */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004861 for (match_method=0; match_method<PAT_MATCH_NUM; match_method++)
4862 if (appctx->ctx.map.expr->pat_head->match == pat_match_fcts[match_method])
4863 break;
4864 if (match_method >= PAT_MATCH_NUM)
4865 chunk_appendf(&trash, "type=unknown(%p)", appctx->ctx.map.expr->pat_head->match);
4866 else
4867 chunk_appendf(&trash, "type=%s", pat_match_names[match_method]);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004868
4869 /* Display no match, and set default value */
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004870 if (!pat) {
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004871 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
4872 chunk_appendf(&trash, ", found=no");
4873 else
4874 chunk_appendf(&trash, ", match=no");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004875 }
4876
4877 /* Display match and match info */
4878 else {
4879 /* display match */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004880 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
4881 chunk_appendf(&trash, ", found=yes");
4882 else
4883 chunk_appendf(&trash, ", match=yes");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004884
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004885 /* display index mode */
4886 if (pat->flags & PAT_F_TREE)
Thierry FOURNIERb9903842014-03-11 18:48:17 +01004887 chunk_appendf(&trash, ", idx=tree");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004888 else
Thierry FOURNIERb9903842014-03-11 18:48:17 +01004889 chunk_appendf(&trash, ", idx=list");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004890
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004891 /* case sensitive */
4892 if (pat->flags & PAT_F_IGNORE_CASE)
Thierry FOURNIERb9903842014-03-11 18:48:17 +01004893 chunk_appendf(&trash, ", case=insensitive");
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004894 else
Thierry FOURNIERb9903842014-03-11 18:48:17 +01004895 chunk_appendf(&trash, ", case=sensitive");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004896
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004897 /* display source */
4898 if (pat->flags & PAT_F_FROM_FILE)
Thierry FOURNIERb9903842014-03-11 18:48:17 +01004899 chunk_appendf(&trash, ", src=file");
Thierry FOURNIERd5723432014-03-11 13:52:44 +01004900 else
Thierry FOURNIERb9903842014-03-11 18:48:17 +01004901 chunk_appendf(&trash, ", src=conf");
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004902
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004903 if (appctx->ctx.map.display_flags == PAT_REF_MAP)
4904 keystr = "key";
4905 else
4906 keystr = "pattern";
4907
4908 switch (match_method) {
4909 case PAT_MATCH_STR:
4910 case PAT_MATCH_BEG:
4911 case PAT_MATCH_SUB:
4912 case PAT_MATCH_DIR:
4913 case PAT_MATCH_DOM:
4914 case PAT_MATCH_END:
4915 /* display string */
4916 chunk_appendf(&trash, ", %s=\"%s\"", keystr, pat->ptr.str);
4917 break;
4918
4919 case PAT_MATCH_IP:
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004920 /* display IPv4/v6 */
4921 if (pat->type == SMP_T_IPV4) {
4922 ((struct sockaddr_in *)&addr)->sin_family = AF_INET;
4923 memcpy(&((struct sockaddr_in *)&addr)->sin_addr, &pat->val.ipv4.addr,
4924 sizeof(pat->val.ipv4.addr));
4925 if (addr_to_str(&addr, s_addr, INET_ADDRSTRLEN)) {
4926 memcpy(&((struct sockaddr_in *)&addr)->sin_addr, &pat->val.ipv4.mask,
4927 sizeof(pat->val.ipv4.mask));
4928 if (addr_to_str(&addr, s_mask, INET_ADDRSTRLEN))
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004929 chunk_appendf(&trash, ", %s=\"%s/%s\"", keystr, s_addr, s_mask);
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004930 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004931 }
Thierry FOURNIER1794fdf2014-01-17 15:25:13 +01004932 else if (pat->type == SMP_T_IPV6) {
4933 ((struct sockaddr_in6 *)&addr)->sin6_family = AF_INET6;
4934 memcpy(&((struct sockaddr_in6 *)&addr)->sin6_addr, &pat->val.ipv6.addr,
4935 sizeof(pat->val.ipv6.addr));
4936 if (addr_to_str(&addr, s_addr6, INET6_ADDRSTRLEN))
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004937 chunk_appendf(&trash, ", %s=\"%s/%d\"", keystr, s_addr6, pat->val.ipv6.mask);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004938 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004939 break;
4940
4941 case PAT_MATCH_INT:
Thierry FOURNIERb4be1292014-01-17 15:14:41 +01004942 /* display int */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004943 chunk_appendf(&trash, ", %s=\"", keystr);
Thierry FOURNIERb4be1292014-01-17 15:14:41 +01004944 if (pat->val.range.min_set && pat->val.range.max_set &&
4945 pat->val.range.min == pat->val.range.max) {
4946 chunk_appendf(&trash, "%lld", pat->val.range.min);
4947 }
4948 else {
4949 if (pat->val.range.min_set)
4950 chunk_appendf(&trash, "is >= %lld", pat->val.range.min);
4951 if (pat->val.range.min_set && pat->val.range.max_set)
4952 chunk_appendf(&trash, " and ");
4953 if (pat->val.range.max_set)
4954 chunk_appendf(&trash, "is <= %lld", pat->val.range.max);
4955 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004956 chunk_appendf(&trash, "\"");
4957 break;
4958
4959 /* Dont display other types. */
4960 default:
4961 break;
Thierry FOURNIERb4be1292014-01-17 15:14:41 +01004962 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004963 }
4964
4965 /* display return value */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004966 if (appctx->ctx.map.display_flags == PAT_REF_MAP) {
4967 if (!pat || !pat->smp) {
4968 chunk_appendf(&trash, ", value=nothing");
4969 }
4970 else {
4971 smp = pat->smp;
4972 memcpy(&sample.data, &smp->data, sizeof(sample.data));
4973 sample.type = smp->type;
4974 if (sample_casts[sample.type][SMP_T_STR] &&
4975 sample_casts[sample.type][SMP_T_STR](&sample))
4976 chunk_appendf(&trash, ", value=\"%s\", type=\"%s\"",
4977 sample.data.str.str, smp_to_type[smp->type]);
4978 else
4979 chunk_appendf(&trash, ", value=cannot-display, type=\"%s\"",
4980 smp_to_type[smp->type]);
4981 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004982 }
4983
Thierry FOURNIERb9903842014-03-11 18:48:17 +01004984 chunk_appendf(&trash, "\n");
4985
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004986 /* display response */
4987 if (bi_putchk(si->ib, &trash) == -1) {
4988 /* let's try again later from this session. We add ourselves into
4989 * this session's users so that it can remove us upon termination.
4990 */
4991 return 0;
4992 }
4993
4994 /* get next entry */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01004995 appctx->ctx.map.expr = pat_expr_get_next(appctx->ctx.map.expr,
4996 &appctx->ctx.map.ref->pat);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004997 }
4998
4999 appctx->st2 = STAT_ST_FIN;
5000 /* fall through */
5001
5002 default:
5003 appctx->st2 = STAT_ST_FIN;
5004 free(appctx->ctx.map.chunk.str);
5005 return 1;
5006 }
5007}
5008
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005009static int stats_pat_list(struct stream_interface *si)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005010{
5011 struct appctx *appctx = __objt_appctx(si->end);
5012
5013 switch (appctx->st2) {
5014
5015 case STAT_ST_INIT:
5016 /* Init to the first entry. The list cannot be change */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005017 appctx->ctx.map.elt = LIST_NEXT(&appctx->ctx.map.ref->head,
5018 struct pat_ref_elt *, list);
5019 if (&appctx->ctx.map.elt->list == &appctx->ctx.map.ref->head)
5020 appctx->ctx.map.elt = NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005021 appctx->st2 = STAT_ST_LIST;
5022 /* fall through */
5023
5024 case STAT_ST_LIST:
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005025 while (appctx->ctx.map.elt) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005026 chunk_reset(&trash);
5027
5028 /* build messages */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005029 if (appctx->ctx.map.elt->sample)
5030 chunk_appendf(&trash, "%s %s\n",
5031 appctx->ctx.map.elt->pattern, appctx->ctx.map.elt->sample);
5032 else
5033 chunk_appendf(&trash, "%s\n", appctx->ctx.map.elt->pattern);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005034
5035 if (bi_putchk(si->ib, &trash) == -1) {
5036 /* let's try again later from this session. We add ourselves into
5037 * this session's users so that it can remove us upon termination.
5038 */
5039 return 0;
5040 }
5041
5042 /* get next list entry and check the end of the list */
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005043 appctx->ctx.map.elt = LIST_NEXT(&appctx->ctx.map.elt->list,
5044 struct pat_ref_elt *, list);
5045 if (&appctx->ctx.map.elt->list == &appctx->ctx.map.ref->head)
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01005046 break;
5047 }
5048
5049 appctx->st2 = STAT_ST_FIN;
5050 /* fall through */
5051
5052 default:
5053 appctx->st2 = STAT_ST_FIN;
5054 return 1;
5055 }
5056}
5057
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005058/* This function dumps all sessions' states onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005059 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005060 * to be called again, otherwise non-zero. It is designed to be called
5061 * from stats_dump_sess_to_buffer() below.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005062 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005063static int stats_dump_sess_to_buffer(struct stream_interface *si)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005064{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005065 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005066 struct connection *conn;
5067
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005068 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005069 /* If we're forced to shut down, we might have to remove our
5070 * reference to the last session being dumped.
5071 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005072 if (appctx->st2 == STAT_ST_LIST) {
5073 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5074 LIST_DEL(&appctx->ctx.sess.bref.users);
5075 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005076 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005077 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005078 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005079 }
5080
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005081 chunk_reset(&trash);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005082
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005083 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005084 case STAT_ST_INIT:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005085 /* the function had not been called yet, let's prepare the
5086 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005087 * pointer to the first in the global list. When a target
5088 * session is being destroyed, it is responsible for updating
5089 * this pointer. We know we have reached the end when this
5090 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005091 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005092 LIST_INIT(&appctx->ctx.sess.bref.users);
5093 appctx->ctx.sess.bref.ref = sessions.n;
5094 appctx->st2 = STAT_ST_LIST;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005095 /* fall through */
5096
Willy Tarreau295a8372011-03-10 11:25:07 +01005097 case STAT_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005098 /* first, let's detach the back-ref from a possible previous session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005099 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5100 LIST_DEL(&appctx->ctx.sess.bref.users);
5101 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005102 }
5103
5104 /* and start from where we stopped */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005105 while (appctx->ctx.sess.bref.ref != &sessions) {
Cyril Bontéacd7d632010-11-01 19:26:02 +01005106 char pn[INET6_ADDRSTRLEN];
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005107 struct session *curr_sess;
5108
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005109 curr_sess = LIST_ELEM(appctx->ctx.sess.bref.ref, struct session *, list);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005110
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005111 if (appctx->ctx.sess.target) {
5112 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005113 goto next_sess;
5114
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005115 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005116 /* call the proper dump() function and return if we're missing space */
Willy Tarreau76153662012-11-26 01:16:39 +01005117 if (!stats_dump_full_sess_to_buffer(si, curr_sess))
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005118 return 0;
5119
5120 /* session dump complete */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005121 LIST_DEL(&appctx->ctx.sess.bref.users);
5122 LIST_INIT(&appctx->ctx.sess.bref.users);
5123 if (appctx->ctx.sess.target != (void *)-1) {
5124 appctx->ctx.sess.target = NULL;
Willy Tarreau76153662012-11-26 01:16:39 +01005125 break;
5126 }
5127 else
5128 goto next_sess;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005129 }
5130
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005131 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005132 "%p: proto=%s",
5133 curr_sess,
5134 curr_sess->listener->proto->name);
5135
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005136
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005137 conn = objt_conn(curr_sess->si[0].end);
5138 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau631f01c2011-09-05 00:36:48 +02005139 case AF_INET:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005140 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005141 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005142 " src=%s:%d fe=%s be=%s srv=%s",
5143 pn,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005144 get_host_port(&conn->addr.from),
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005145 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005146 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005147 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005148 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005149 break;
5150 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005151 chunk_appendf(&trash,
Emeric Brun837ca522010-10-22 16:19:01 +02005152 " src=unix:%d fe=%s be=%s srv=%s",
5153 curr_sess->listener->luid,
5154 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005155 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005156 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Emeric Brun837ca522010-10-22 16:19:01 +02005157 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005158 break;
5159 }
5160
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005161 chunk_appendf(&trash,
Willy Tarreau65671ab2009-10-04 14:24:59 +02005162 " ts=%02x age=%s calls=%d",
5163 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01005164 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
5165 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005166
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005167 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005168 " rq[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005169 curr_sess->req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005170 curr_sess->req->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005171 curr_sess->req->analysers,
5172 curr_sess->req->rex ?
5173 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
5174 TICKS_TO_MS(1000)) : "");
5175
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005176 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005177 ",wx=%s",
5178 curr_sess->req->wex ?
5179 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
5180 TICKS_TO_MS(1000)) : "");
5181
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005182 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005183 ",ax=%s]",
5184 curr_sess->req->analyse_exp ?
5185 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
5186 TICKS_TO_MS(1000)) : "");
5187
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005188 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005189 " rp[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005190 curr_sess->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005191 curr_sess->rep->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005192 curr_sess->rep->analysers,
5193 curr_sess->rep->rex ?
5194 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
5195 TICKS_TO_MS(1000)) : "");
5196
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005197 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005198 ",wx=%s",
5199 curr_sess->rep->wex ?
5200 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
5201 TICKS_TO_MS(1000)) : "");
5202
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005203 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005204 ",ax=%s]",
5205 curr_sess->rep->analyse_exp ?
5206 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
5207 TICKS_TO_MS(1000)) : "");
5208
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005209 conn = objt_conn(curr_sess->si[0].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005210 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005211 " s0=[%d,%1xh,fd=%d,ex=%s]",
5212 curr_sess->si[0].state,
5213 curr_sess->si[0].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005214 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005215 curr_sess->si[0].exp ?
5216 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
5217 TICKS_TO_MS(1000)) : "");
5218
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005219 conn = objt_conn(curr_sess->si[1].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005220 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005221 " s1=[%d,%1xh,fd=%d,ex=%s]",
5222 curr_sess->si[1].state,
5223 curr_sess->si[1].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005224 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005225 curr_sess->si[1].exp ?
5226 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
5227 TICKS_TO_MS(1000)) : "");
5228
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005229 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005230 " exp=%s",
5231 curr_sess->task->expire ?
5232 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
5233 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01005234 if (task_in_rq(curr_sess->task))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005235 chunk_appendf(&trash, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005236
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005237 chunk_appendf(&trash, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005238
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005239 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005240 /* let's try again later from this session. We add ourselves into
5241 * this session's users so that it can remove us upon termination.
5242 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005243 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005244 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005245 }
5246
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005247 next_sess:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005248 appctx->ctx.sess.bref.ref = curr_sess->list.n;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005249 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005250
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005251 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005252 /* specified session not found */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005253 if (appctx->ctx.sess.section > 0)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005254 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005255 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005256 chunk_appendf(&trash, "Session not found.\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005257
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005258 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005259 return 0;
5260
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005261 appctx->ctx.sess.target = NULL;
5262 appctx->ctx.sess.uid = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005263 return 1;
5264 }
5265
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005266 appctx->st2 = STAT_ST_FIN;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005267 /* fall through */
5268
5269 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005270 appctx->st2 = STAT_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005271 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005272 }
Emeric Brun1e029aa2010-09-23 18:12:53 +02005273}
5274
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005275/* This is called when the stream interface is closed. For instance, upon an
5276 * external abort, we won't call the i/o handler anymore so we may need to
5277 * remove back references to the session currently being dumped.
5278 */
Simon Horman74d88312013-02-12 10:45:50 +09005279static void cli_release_handler(struct stream_interface *si)
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005280{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005281 struct appctx *appctx = __objt_appctx(si->end);
5282
5283 if (appctx->st0 == STAT_CLI_O_SESS && appctx->st2 == STAT_ST_LIST) {
5284 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
5285 LIST_DEL(&appctx->ctx.sess.bref.users);
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005286 }
Thierry FOURNIER1e00d382014-02-11 11:31:40 +01005287 else if (appctx->st0 == STAT_CLI_O_MLOOK) {
5288 free(appctx->ctx.map.chunk.str);
5289 }
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005290}
5291
Willy Tarreau20e99322013-04-13 09:22:25 +02005292/* This function is used to either dump tables states (when action is set
5293 * to STAT_CLI_O_TAB) or clear tables (when action is STAT_CLI_O_CLR).
Willy Tarreau20e99322013-04-13 09:22:25 +02005294 * It returns 0 if the output buffer is full and it needs to be called
5295 * again, otherwise non-zero.
Willy Tarreau69f58c82010-07-12 17:55:33 +02005296 */
Willy Tarreau20e99322013-04-13 09:22:25 +02005297static int stats_table_request(struct stream_interface *si, int action)
Willy Tarreau69f58c82010-07-12 17:55:33 +02005298{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005299 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02005300 struct session *s = session_from_task(si->owner);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005301 struct ebmb_node *eb;
5302 int dt;
Willy Tarreau44455022012-12-05 23:01:12 +01005303 int skip_entry;
Willy Tarreau20e99322013-04-13 09:22:25 +02005304 int show = action == STAT_CLI_O_TAB;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005305
5306 /*
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005307 * We have 3 possible states in appctx->st2 :
Willy Tarreau295a8372011-03-10 11:25:07 +01005308 * - STAT_ST_INIT : the first call
5309 * - STAT_ST_INFO : the proxy pointer points to the next table to
Willy Tarreau69f58c82010-07-12 17:55:33 +02005310 * dump, the entry pointer is NULL ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005311 * - STAT_ST_LIST : the proxy pointer points to the current table
Willy Tarreau69f58c82010-07-12 17:55:33 +02005312 * and the entry pointer points to the next entry to be dumped,
5313 * and the refcount on the next entry is held ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005314 * - STAT_ST_END : nothing left to dump, the buffer may contain some
Willy Tarreau69f58c82010-07-12 17:55:33 +02005315 * data though.
5316 */
5317
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005318 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005319 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005320 if (appctx->st2 == STAT_ST_LIST) {
5321 appctx->ctx.table.entry->ref_cnt--;
5322 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Willy Tarreauf6efda12010-08-03 20:34:06 +02005323 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02005324 return 1;
5325 }
5326
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005327 chunk_reset(&trash);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005328
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005329 while (appctx->st2 != STAT_ST_FIN) {
5330 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005331 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005332 appctx->ctx.table.proxy = appctx->ctx.table.target;
5333 if (!appctx->ctx.table.proxy)
5334 appctx->ctx.table.proxy = proxy;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005335
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005336 appctx->ctx.table.entry = NULL;
5337 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005338 break;
5339
Willy Tarreau295a8372011-03-10 11:25:07 +01005340 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005341 if (!appctx->ctx.table.proxy ||
5342 (appctx->ctx.table.target &&
5343 appctx->ctx.table.proxy != appctx->ctx.table.target)) {
5344 appctx->st2 = STAT_ST_END;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005345 break;
5346 }
5347
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005348 if (appctx->ctx.table.proxy->table.size) {
5349 if (show && !stats_dump_table_head_to_buffer(&trash, si, appctx->ctx.table.proxy,
5350 appctx->ctx.table.target))
Willy Tarreau69f58c82010-07-12 17:55:33 +02005351 return 0;
5352
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005353 if (appctx->ctx.table.target &&
Willy Tarreau290e63a2012-09-20 18:07:14 +02005354 s->listener->bind_conf->level >= ACCESS_LVL_OPER) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005355 /* dump entries only if table explicitly requested */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005356 eb = ebmb_first(&appctx->ctx.table.proxy->table.keys);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005357 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005358 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
5359 appctx->ctx.table.entry->ref_cnt++;
5360 appctx->st2 = STAT_ST_LIST;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005361 break;
5362 }
5363 }
5364 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005365 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005366 break;
5367
Willy Tarreau295a8372011-03-10 11:25:07 +01005368 case STAT_ST_LIST:
Willy Tarreau44455022012-12-05 23:01:12 +01005369 skip_entry = 0;
Simon Hormanc88b8872011-06-15 15:18:49 +09005370
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005371 if (appctx->ctx.table.data_type >= 0) {
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005372 /* we're filtering on some data contents */
5373 void *ptr;
5374 long long data;
5375
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005376 dt = appctx->ctx.table.data_type;
5377 ptr = stktable_data_ptr(&appctx->ctx.table.proxy->table,
5378 appctx->ctx.table.entry,
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005379 dt);
5380
5381 data = 0;
5382 switch (stktable_data_types[dt].std_type) {
5383 case STD_T_SINT:
5384 data = stktable_data_cast(ptr, std_t_sint);
5385 break;
5386 case STD_T_UINT:
5387 data = stktable_data_cast(ptr, std_t_uint);
5388 break;
5389 case STD_T_ULL:
5390 data = stktable_data_cast(ptr, std_t_ull);
5391 break;
5392 case STD_T_FRQP:
5393 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005394 appctx->ctx.table.proxy->table.data_arg[dt].u);
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005395 break;
5396 }
5397
5398 /* skip the entry if the data does not match the test and the value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005399 if ((data < appctx->ctx.table.value &&
5400 (appctx->ctx.table.data_op == STD_OP_EQ ||
5401 appctx->ctx.table.data_op == STD_OP_GT ||
5402 appctx->ctx.table.data_op == STD_OP_GE)) ||
5403 (data == appctx->ctx.table.value &&
5404 (appctx->ctx.table.data_op == STD_OP_NE ||
5405 appctx->ctx.table.data_op == STD_OP_GT ||
5406 appctx->ctx.table.data_op == STD_OP_LT)) ||
5407 (data > appctx->ctx.table.value &&
5408 (appctx->ctx.table.data_op == STD_OP_EQ ||
5409 appctx->ctx.table.data_op == STD_OP_LT ||
5410 appctx->ctx.table.data_op == STD_OP_LE)))
Willy Tarreau44455022012-12-05 23:01:12 +01005411 skip_entry = 1;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005412 }
5413
Simon Hormanc88b8872011-06-15 15:18:49 +09005414 if (show && !skip_entry &&
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005415 !stats_dump_table_entry_to_buffer(&trash, si, appctx->ctx.table.proxy,
5416 appctx->ctx.table.entry))
Simon Hormand9366582011-06-15 15:18:45 +09005417 return 0;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005418
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005419 appctx->ctx.table.entry->ref_cnt--;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005420
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005421 eb = ebmb_next(&appctx->ctx.table.entry->key);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005422 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005423 struct stksess *old = appctx->ctx.table.entry;
5424 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreau8fa52f42012-01-09 11:50:03 +01005425 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005426 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, old);
5427 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5428 stksess_kill(&appctx->ctx.table.proxy->table, old);
5429 appctx->ctx.table.entry->ref_cnt++;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005430 break;
5431 }
5432
Simon Hormanc88b8872011-06-15 15:18:49 +09005433
5434 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005435 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
5436 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5437 stksess_kill(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Simon Hormanc88b8872011-06-15 15:18:49 +09005438
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005439 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
5440 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005441 break;
5442
Willy Tarreau295a8372011-03-10 11:25:07 +01005443 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005444 appctx->st2 = STAT_ST_FIN;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005445 break;
5446 }
5447 }
5448 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005449}
5450
Willy Tarreaud426a182010-03-05 14:58:26 +01005451/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01005452 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
5453 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
5454 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
5455 * lines are respected within the limit of 70 output chars. Lines that are
5456 * continuation of a previous truncated line begin with "+" instead of " "
5457 * after the offset. The new pointer is returned.
5458 */
Willy Tarreaud426a182010-03-05 14:58:26 +01005459static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
5460 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005461{
5462 int end;
5463 unsigned char c;
5464
5465 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02005466 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005467 return ptr;
5468
Willy Tarreau77804732012-10-29 16:14:26 +01005469 chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01005470
Willy Tarreaud426a182010-03-05 14:58:26 +01005471 while (ptr < len && ptr < bsize) {
5472 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01005473 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005474 if (out->len > end - 2)
5475 break;
5476 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005477 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005478 if (out->len > end - 3)
5479 break;
5480 out->str[out->len++] = '\\';
5481 switch (c) {
5482 case '\t': c = 't'; break;
5483 case '\n': c = 'n'; break;
5484 case '\r': c = 'r'; break;
5485 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005486 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005487 }
5488 out->str[out->len++] = c;
5489 } else {
5490 if (out->len > end - 5)
5491 break;
5492 out->str[out->len++] = '\\';
5493 out->str[out->len++] = 'x';
5494 out->str[out->len++] = hextab[(c >> 4) & 0xF];
5495 out->str[out->len++] = hextab[c & 0xF];
5496 }
Willy Tarreaud426a182010-03-05 14:58:26 +01005497 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005498 /* we had a line break, let's return now */
5499 out->str[out->len++] = '\n';
5500 *line = ptr;
5501 return ptr;
5502 }
5503 }
5504 /* we have an incomplete line, we return it as-is */
5505 out->str[out->len++] = '\n';
5506 return ptr;
5507}
5508
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005509/* This function dumps all captured errors onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005510 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005511 * to be called again, otherwise non-zero.
Willy Tarreau74808cb2009-03-04 15:53:18 +01005512 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005513static int stats_dump_errors_to_buffer(struct stream_interface *si)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005514{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005515 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005516 extern const char *monthname[12];
Willy Tarreau74808cb2009-03-04 15:53:18 +01005517
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005518 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau61b34732009-10-03 23:49:35 +02005519 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005520
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005521 chunk_reset(&trash);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005522
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005523 if (!appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005524 /* the function had not been called yet, let's prepare the
5525 * buffer for a response.
5526 */
Willy Tarreau10479e42010-12-12 14:00:34 +01005527 struct tm tm;
5528
5529 get_localtime(date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005530 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
Willy Tarreau10479e42010-12-12 14:00:34 +01005531 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
5532 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
5533 error_snapshot_id);
5534
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005535 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau10479e42010-12-12 14:00:34 +01005536 /* Socket buffer full. Let's try again later from the same point */
5537 return 0;
5538 }
5539
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005540 appctx->ctx.errors.px = proxy;
5541 appctx->ctx.errors.buf = 0;
5542 appctx->ctx.errors.bol = 0;
5543 appctx->ctx.errors.ptr = -1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005544 }
5545
5546 /* we have two inner loops here, one for the proxy, the other one for
5547 * the buffer.
5548 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005549 while (appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005550 struct error_snapshot *es;
5551
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005552 if (appctx->ctx.errors.buf == 0)
5553 es = &appctx->ctx.errors.px->invalid_req;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005554 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005555 es = &appctx->ctx.errors.px->invalid_rep;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005556
5557 if (!es->when.tv_sec)
5558 goto next;
5559
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005560 if (appctx->ctx.errors.iid >= 0 &&
5561 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
5562 es->oe->uuid != appctx->ctx.errors.iid)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005563 goto next;
5564
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005565 if (appctx->ctx.errors.ptr < 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005566 /* just print headers now */
5567
5568 char pn[INET6_ADDRSTRLEN];
5569 struct tm tm;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005570 int port;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005571
5572 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005573 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01005574 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02005575 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01005576
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005577 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
5578 case AF_INET:
5579 case AF_INET6:
5580 port = get_host_port(&es->src);
5581 break;
5582 default:
5583 port = 0;
5584 }
5585
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005586 switch (appctx->ctx.errors.buf) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005587 case 0:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005588 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005589 " frontend %s (#%d): invalid request\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005590 " backend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005591 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005592 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
5593 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005594 break;
5595 case 1:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005596 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005597 " backend %s (#%d) : invalid response\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005598 " frontend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005599 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005600 es->oe->id, es->oe->uuid);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005601 break;
5602 }
5603
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005604 chunk_appendf(&trash,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005605 ", server %s (#%d), event #%u\n"
5606 " src %s:%d, session #%d, session flags 0x%08x\n"
5607 " HTTP msg state %d, msg flags 0x%08x, tx flags 0x%08x\n"
5608 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
5609 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
5610 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
5611 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
5612 es->ev_id,
5613 pn, port, es->sid, es->s_flags,
5614 es->state, es->m_flags, es->t_flags,
5615 es->m_clen, es->m_blen,
5616 es->b_flags, es->b_out, es->b_tot,
5617 es->len, es->b_wrap, es->pos);
5618
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005619 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005620 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02005621 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005622 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005623 appctx->ctx.errors.ptr = 0;
5624 appctx->ctx.errors.sid = es->sid;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005625 }
5626
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005627 if (appctx->ctx.errors.sid != es->sid) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005628 /* the snapshot changed while we were dumping it */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005629 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005630 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005631 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau61b34732009-10-03 23:49:35 +02005632 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005633 goto next;
5634 }
5635
5636 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005637 while (appctx->ctx.errors.ptr < es->len && appctx->ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005638 int newptr;
5639 int newline;
5640
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005641 newline = appctx->ctx.errors.bol;
5642 newptr = dump_text_line(&trash, es->buf, sizeof(es->buf), es->len, &newline, appctx->ctx.errors.ptr);
5643 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02005644 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005645
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005646 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005647 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02005648 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005649 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005650 appctx->ctx.errors.ptr = newptr;
5651 appctx->ctx.errors.bol = newline;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005652 };
5653 next:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005654 appctx->ctx.errors.bol = 0;
5655 appctx->ctx.errors.ptr = -1;
5656 appctx->ctx.errors.buf++;
5657 if (appctx->ctx.errors.buf > 1) {
5658 appctx->ctx.errors.buf = 0;
5659 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005660 }
5661 }
5662
5663 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02005664 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005665}
5666
Willy Tarreaud5781202012-09-22 19:32:35 +02005667/* parse the "level" argument on the bind lines */
5668static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
5669{
5670 if (!*args[cur_arg + 1]) {
5671 memprintf(err, "'%s' : missing level", args[cur_arg]);
5672 return ERR_ALERT | ERR_FATAL;
5673 }
5674
5675 if (!strcmp(args[cur_arg+1], "user"))
5676 conf->level = ACCESS_LVL_USER;
5677 else if (!strcmp(args[cur_arg+1], "operator"))
5678 conf->level = ACCESS_LVL_OPER;
5679 else if (!strcmp(args[cur_arg+1], "admin"))
5680 conf->level = ACCESS_LVL_ADMIN;
5681 else {
5682 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
5683 args[cur_arg], args[cur_arg+1]);
5684 return ERR_ALERT | ERR_FATAL;
5685 }
5686
5687 return 0;
5688}
5689
Willy Tarreaub24281b2011-02-13 13:16:36 +01005690struct si_applet http_stats_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005691 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005692 .name = "<STATS>", /* used for logging */
5693 .fct = http_stats_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07005694 .release = NULL,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005695};
5696
Simon Horman9bd2c732011-06-15 15:18:44 +09005697static struct si_applet cli_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005698 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005699 .name = "<CLI>", /* used for logging */
5700 .fct = cli_io_handler,
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005701 .release = cli_release_handler,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005702};
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005703
Willy Tarreaudc13c112013-06-21 23:16:39 +02005704static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau10522fd2008-07-09 20:12:41 +02005705 { CFG_GLOBAL, "stats", stats_parse_global },
5706 { 0, NULL, NULL },
5707}};
5708
Willy Tarreaud5781202012-09-22 19:32:35 +02005709static struct bind_kw_list bind_kws = { "STAT", { }, {
5710 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
5711 { NULL, NULL, 0 },
5712}};
5713
Willy Tarreau10522fd2008-07-09 20:12:41 +02005714__attribute__((constructor))
5715static void __dumpstats_module_init(void)
5716{
5717 cfg_register_keywords(&cfg_kws);
Willy Tarreaud5781202012-09-22 19:32:35 +02005718 bind_register_keywords(&bind_kws);
Willy Tarreau10522fd2008-07-09 20:12:41 +02005719}
5720
Willy Tarreau91861262007-10-17 17:06:05 +02005721/*
5722 * Local variables:
5723 * c-indent-level: 8
5724 * c-basic-offset: 8
5725 * End:
5726 */