blob: 1b435019779eee50829baeb5c3baa3b32a8aea2b [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>
Willy Tarreaua206fa92009-01-25 14:02:00 +010049#include <proto/pipe.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020050#include <proto/listener.h>
Willy Tarreaue6d97022012-11-23 11:19:33 +010051#include <proto/proto_http.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020052#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020053#include <proto/proxy.h>
Willy Tarreau91861262007-10-17 17:06:05 +020054#include <proto/session.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020055#include <proto/server.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020056#include <proto/raw_sock.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010057#include <proto/stream_interface.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010058#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020059
Willy Tarreau7a0169a2012-11-19 17:13:16 +010060#ifdef USE_OPENSSL
61#include <proto/ssl_sock.h>
62#endif
63
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010064static int stats_dump_info_to_buffer(struct stream_interface *si);
Willy Tarreau76153662012-11-26 01:16:39 +010065static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess);
Simon Horman9bd2c732011-06-15 15:18:44 +090066static int stats_dump_sess_to_buffer(struct stream_interface *si);
67static int stats_dump_errors_to_buffer(struct stream_interface *si);
Willy Tarreau44455022012-12-05 23:01:12 +010068static int stats_table_request(struct stream_interface *si, int show);
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010069static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri);
70static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri);
Simon Horman9bd2c732011-06-15 15:18:44 +090071
Willy Tarreaud9bdcd52012-12-22 20:31:10 +010072/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010073 * cli_io_handler()
74 * -> stats_dump_sess_to_buffer() // "show sess"
75 * -> stats_dump_errors_to_buffer() // "show errors"
76 * -> stats_dump_info_to_buffer() // "show info"
77 * -> stats_dump_stat_to_buffer() // "show stat"
78 * -> stats_dump_csv_header()
79 * -> stats_dump_proxy_to_buffer()
80 * -> stats_dump_fe_stats()
81 * -> stats_dump_li_stats()
82 * -> stats_dump_sv_stats()
83 * -> stats_dump_be_stats()
84 *
85 * http_stats_io_handler()
86 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
87 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
88 * -> stats_dump_html_head() // emits the HTML headers
89 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
90 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
91 * -> stats_dump_html_px_hdr()
92 * -> stats_dump_fe_stats()
93 * -> stats_dump_li_stats()
94 * -> stats_dump_sv_stats()
95 * -> stats_dump_be_stats()
96 * -> stats_dump_html_px_end()
97 * -> stats_dump_html_end() // emits HTML trailer
Willy Tarreaud9bdcd52012-12-22 20:31:10 +010098 */
99
Simon Horman9bd2c732011-06-15 15:18:44 +0900100static struct si_applet cli_applet;
101
102static const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200103 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200104 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Willy Tarreau88ee3972010-07-13 13:48:00 +0200105 " clear table : remove an entry from a table\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200106 " help : this message\n"
107 " prompt : toggle interactive mode with prompt\n"
108 " quit : disconnect\n"
109 " show info : report information about the running process\n"
110 " show stat : report counters for each proxy and server\n"
111 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100112 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau69f58c82010-07-12 17:55:33 +0200113 " show table [id]: report table usage stats or dump this table's contents\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +0200114 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +0200115 " set weight : change a server's weight\n"
Willy Tarreau654694e2012-06-07 01:03:16 +0200116 " set table [id] : update or create a table entry's data\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +0100117 " set timeout : change a timeout setting\n"
Willy Tarreau2a0f4d22011-08-02 11:49:05 +0200118 " set maxconn : change a maxconn setting\n"
Willy Tarreauf5b22872011-09-07 16:13:44 +0200119 " set rate-limit : change a rate limiting value\n"
Willy Tarreaua295edc2011-09-07 23:21:03 +0200120 " disable : put a server or frontend in maintenance mode\n"
121 " enable : re-enable a server or frontend which is in maintenance mode\n"
122 " shutdown : kill a session or a frontend (eg:to release listening ports)\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200123 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200124
Simon Horman9bd2c732011-06-15 15:18:44 +0900125static const char stats_permission_denied_msg[] =
Willy Tarreau6162db22009-10-10 17:13:00 +0200126 "Permission denied\n"
127 "";
128
Willy Tarreau295a8372011-03-10 11:25:07 +0100129/* data transmission states for the stats responses */
130enum {
131 STAT_ST_INIT = 0,
132 STAT_ST_HEAD,
133 STAT_ST_INFO,
134 STAT_ST_LIST,
135 STAT_ST_END,
136 STAT_ST_FIN,
137};
138
139/* data transmission states for the stats responses inside a proxy */
140enum {
141 STAT_PX_ST_INIT = 0,
142 STAT_PX_ST_TH,
143 STAT_PX_ST_FE,
144 STAT_PX_ST_LI,
145 STAT_PX_ST_SV,
146 STAT_PX_ST_BE,
147 STAT_PX_ST_END,
148 STAT_PX_ST_FIN,
149};
150
Cyril Bonté19979e12012-04-04 12:57:21 +0200151extern const char *stat_status_codes[];
152
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200153/* This function is called from the session-level accept() in order to instanciate
Willy Tarreaueb472682010-05-28 18:46:57 +0200154 * a new stats socket. It returns a positive value upon success, 0 if the connection
155 * needs to be closed and ignored, or a negative value upon critical failure.
156 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900157static int stats_accept(struct session *s)
Willy Tarreaueb472682010-05-28 18:46:57 +0200158{
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200159 /* we have a dedicated I/O handler for the stats */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100160 stream_int_register_handler(&s->si[1], &cli_applet);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100161 s->target = s->si[1].conn->target; // for logging only
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200162 s->si[1].conn->xprt_ctx = s;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100163 s->si[1].applet.st1 = 0;
164 s->si[1].applet.st0 = STAT_CLI_INIT;
Willy Tarreaueb472682010-05-28 18:46:57 +0200165
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200166 tv_zero(&s->logs.tv_request);
167 s->logs.t_queue = 0;
168 s->logs.t_connect = 0;
169 s->logs.t_data = 0;
170 s->logs.t_close = 0;
171 s->logs.bytes_in = s->logs.bytes_out = 0;
172 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
173 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaueb472682010-05-28 18:46:57 +0200174
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200175 s->req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreaueb472682010-05-28 18:46:57 +0200176
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200177 if (s->listener->timeout) {
178 s->req->rto = *s->listener->timeout;
179 s->rep->wto = *s->listener->timeout;
Willy Tarreaueb472682010-05-28 18:46:57 +0200180 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200181 return 1;
Willy Tarreaueb472682010-05-28 18:46:57 +0200182}
183
Willy Tarreau07e9e642010-08-17 21:48:17 +0200184/* allocate a new stats frontend named <name>, and return it
185 * (or NULL in case of lack of memory).
186 */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200187static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
Willy Tarreau07e9e642010-08-17 21:48:17 +0200188{
189 struct proxy *fe;
190
191 fe = (struct proxy *)calloc(1, sizeof(struct proxy));
192 if (!fe)
193 return NULL;
194
Willy Tarreau237250c2011-07-29 01:49:03 +0200195 init_new_proxy(fe);
Willy Tarreau050536d2012-10-04 08:47:34 +0200196 fe->next = proxy;
197 proxy = fe;
Willy Tarreau07e9e642010-08-17 21:48:17 +0200198 fe->last_change = now.tv_sec;
199 fe->id = strdup("GLOBAL");
200 fe->cap = PR_CAP_FE;
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200201 fe->maxconn = 10; /* default to 10 concurrent connections */
202 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200203 fe->conf.file = strdup(file);
204 fe->conf.line = line;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200205 fe->accept = stats_accept;
Willy Tarreau050536d2012-10-04 08:47:34 +0200206
207 /* the stats frontend is the only one able to assign ID #0 */
208 fe->conf.id.key = fe->uuid = 0;
209 eb32_insert(&used_proxy_id, &fe->conf.id);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200210 return fe;
211}
212
Willy Tarreaufbee7132007-10-18 13:53:22 +0200213/* This function parses a "stats" statement in the "global" section. It returns
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200214 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
215 * error message into the <err> buffer which will be preallocated. The trailing
216 * '\n' must not be written. The function must be called with <args> pointing to
217 * the first word after "stats".
Willy Tarreaufbee7132007-10-18 13:53:22 +0200218 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200219static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200220 struct proxy *defpx, const char *file, int line,
221 char **err)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200222{
Willy Tarreau4348fad2012-09-20 16:48:07 +0200223 struct bind_conf *bind_conf;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200224 struct listener *l;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200225
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200226 if (!strcmp(args[1], "socket")) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200227 int cur_arg;
228
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200229 if (*args[2] == 0) {
Willy Tarreauc53d4222012-09-20 20:19:28 +0200230 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 +0200231 return -1;
232 }
233
Willy Tarreau89a63132009-08-16 17:41:45 +0200234 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200235 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200236 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau89a63132009-08-16 17:41:45 +0200237 return -1;
238 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200239 }
240
Willy Tarreau4348fad2012-09-20 16:48:07 +0200241 bind_conf = bind_conf_alloc(&global.stats_fe->conf.bind, file, line, args[2]);
Willy Tarreau290e63a2012-09-20 18:07:14 +0200242 bind_conf->level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200243
Willy Tarreauc53d4222012-09-20 20:19:28 +0200244 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
245 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
246 file, line, args[0], args[1], err && *err ? *err : "error");
247 return -1;
248 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200249
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200250 cur_arg = 3;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200251 while (*args[cur_arg]) {
Willy Tarreaud5781202012-09-22 19:32:35 +0200252 static int bind_dumped;
253 struct bind_kw *kw;
254
255 kw = bind_find_kw(args[cur_arg]);
256 if (kw) {
257 if (!kw->parse) {
258 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
259 args[0], args[1], args[cur_arg]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200260 return -1;
261 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200262
263 if (kw->parse(args, cur_arg, curpx, bind_conf, err) != 0) {
264 if (err && *err)
265 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
266 else
267 memprintf(err, "'%s %s' : error encountered while processing '%s'",
268 args[0], args[1], args[cur_arg]);
Willy Tarreau6162db22009-10-10 17:13:00 +0200269 return -1;
270 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200271
272 cur_arg += 1 + kw->skip;
273 continue;
Willy Tarreau6162db22009-10-10 17:13:00 +0200274 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200275
276 if (!bind_dumped) {
277 bind_dump_kws(err);
278 indent_msg(err, 4);
279 bind_dumped = 1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200280 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200281
282 memprintf(err, "'%s %s' : unknown keyword '%s'.%s%s",
283 args[0], args[1], args[cur_arg],
284 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
285 return -1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200286 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100287
Willy Tarreauc53d4222012-09-20 20:19:28 +0200288 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
289 l->maxconn = global.stats_fe->maxconn;
290 l->backlog = global.stats_fe->backlog;
291 l->timeout = &global.stats_fe->timeout.client;
292 l->accept = session_accept;
293 l->handler = process_session;
294 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
295 l->nice = -64; /* we want to boost priority for local stats */
296 global.maxsock += l->maxconn;
297 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200298 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200299 else if (!strcmp(args[1], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100300 unsigned timeout;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200301 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100302
303 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200304 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100305 return -1;
306 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200307
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100308 if (!timeout) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200309 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200310 return -1;
311 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200312 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200313 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200314 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200315 return -1;
316 }
317 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200318 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200319 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200320 else if (!strcmp(args[1], "maxconn")) {
321 int maxconn = atol(args[2]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200322
323 if (maxconn <= 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200324 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200325 return -1;
326 }
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200327
328 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200329 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200330 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200331 return -1;
332 }
333 }
334 global.stats_fe->maxconn = maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200335 }
Willy Tarreau35b7b162012-10-22 23:17:18 +0200336 else if (!strcmp(args[1], "bind-process")) { /* enable the socket only on some processes */
337 int cur_arg = 2;
338 unsigned int set = 0;
339
Willy Tarreau91319572013-04-20 09:48:50 +0200340 if (!global.stats_fe) {
341 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
342 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
343 return -1;
344 }
345 }
346
Willy Tarreau35b7b162012-10-22 23:17:18 +0200347 while (*args[cur_arg]) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100348 unsigned int low, high;
349
Willy Tarreau35b7b162012-10-22 23:17:18 +0200350 if (strcmp(args[cur_arg], "all") == 0) {
351 set = 0;
352 break;
353 }
354 else if (strcmp(args[cur_arg], "odd") == 0) {
355 set |= 0x55555555;
356 }
357 else if (strcmp(args[cur_arg], "even") == 0) {
358 set |= 0xAAAAAAAA;
359 }
Willy Tarreau83d84cf2012-11-22 01:04:31 +0100360 else if (isdigit((int)*args[cur_arg])) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100361 char *dash = strchr(args[cur_arg], '-');
362
363 low = high = str2uic(args[cur_arg]);
364 if (dash)
365 high = str2uic(dash + 1);
366
367 if (high < low) {
368 unsigned int swap = low;
369 low = high;
370 high = swap;
371 }
372
373 if (low < 1 || high > 32) {
374 memprintf(err, "'%s %s' supports process numbers from 1 to 32.\n",
375 args[0], args[1]);
Willy Tarreau35b7b162012-10-22 23:17:18 +0200376 return -1;
377 }
Willy Tarreau110ecc12012-11-15 17:50:01 +0100378
379 while (low <= high)
380 set |= 1 << (low++ - 1);
381 }
382 else {
383 memprintf(err,
384 "'%s %s' expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to 32.\n",
385 args[0], args[1]);
386 return -1;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200387 }
388 cur_arg++;
389 }
390 global.stats_fe->bind_proc = set;
391 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200392 else {
Willy Tarreau35b7b162012-10-22 23:17:18 +0200393 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200394 return -1;
395 }
396 return 0;
397}
398
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100399/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
400 * for clearing it if needed.
401 */
402static void stats_dump_csv_header()
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100403{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100404 chunk_appendf(&trash,
405 "# pxname,svname,"
406 "qcur,qmax,"
407 "scur,smax,slim,stot,"
408 "bin,bout,"
409 "dreq,dresp,"
410 "ereq,econ,eresp,"
411 "wretr,wredis,"
412 "status,weight,act,bck,"
413 "chkfail,chkdown,lastchg,downtime,qlimit,"
414 "pid,iid,sid,throttle,lbtot,tracked,type,"
415 "rate,rate_lim,rate_max,"
416 "check_status,check_code,check_duration,"
417 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
418 "req_rate,req_rate_max,req_tot,"
419 "cli_abrt,srv_abrt,"
420 "comp_in,comp_out,comp_byp,comp_rsp,"
421 "\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100422}
423
Simon Hormand9366582011-06-15 15:18:45 +0900424/* print a string of text buffer to <out>. The format is :
425 * Non-printable chars \t, \n, \r and \e are * encoded in C format.
426 * Other non-printable chars are encoded "\xHH". Space and '\' are also escaped.
427 * Print stopped if null char or <bsize> is reached, or if no more place in the chunk.
428 */
429static int dump_text(struct chunk *out, const char *buf, int bsize)
430{
431 unsigned char c;
432 int ptr = 0;
433
434 while (buf[ptr] && ptr < bsize) {
435 c = buf[ptr];
436 if (isprint(c) && isascii(c) && c != '\\' && c != ' ') {
437 if (out->len > out->size - 1)
438 break;
439 out->str[out->len++] = c;
440 }
441 else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ') {
442 if (out->len > out->size - 2)
443 break;
444 out->str[out->len++] = '\\';
445 switch (c) {
446 case ' ': c = ' '; break;
447 case '\t': c = 't'; break;
448 case '\n': c = 'n'; break;
449 case '\r': c = 'r'; break;
450 case '\e': c = 'e'; break;
451 case '\\': c = '\\'; break;
452 }
453 out->str[out->len++] = c;
454 }
455 else {
456 if (out->len > out->size - 4)
457 break;
458 out->str[out->len++] = '\\';
459 out->str[out->len++] = 'x';
460 out->str[out->len++] = hextab[(c >> 4) & 0xF];
461 out->str[out->len++] = hextab[c & 0xF];
462 }
463 ptr++;
464 }
465
466 return ptr;
467}
468
469/* print a buffer in hexa.
470 * Print stopped if <bsize> is reached, or if no more place in the chunk.
471 */
472static int dump_binary(struct chunk *out, const char *buf, int bsize)
473{
474 unsigned char c;
475 int ptr = 0;
476
477 while (ptr < bsize) {
478 c = buf[ptr];
479
480 if (out->len > out->size - 2)
481 break;
482 out->str[out->len++] = hextab[(c >> 4) & 0xF];
483 out->str[out->len++] = hextab[c & 0xF];
484
485 ptr++;
486 }
487 return ptr;
488}
489
490/* Dump the status of a table to a stream interface's
491 * read buffer. It returns 0 if the output buffer is full
492 * and needs to be called again, otherwise non-zero.
493 */
494static int stats_dump_table_head_to_buffer(struct chunk *msg, struct stream_interface *si,
495 struct proxy *proxy, struct proxy *target)
496{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200497 struct session *s = si->conn->xprt_ctx;
Simon Hormand9366582011-06-15 15:18:45 +0900498
Willy Tarreau77804732012-10-29 16:14:26 +0100499 chunk_appendf(msg, "# table: %s, type: %s, size:%d, used:%d\n",
Simon Hormand9366582011-06-15 15:18:45 +0900500 proxy->id, stktable_types[proxy->table.type].kw, proxy->table.size, proxy->table.current);
501
502 /* any other information should be dumped here */
503
Willy Tarreau290e63a2012-09-20 18:07:14 +0200504 if (target && s->listener->bind_conf->level < ACCESS_LVL_OPER)
Willy Tarreau77804732012-10-29 16:14:26 +0100505 chunk_appendf(msg, "# contents not dumped due to insufficient privileges\n");
Simon Hormand9366582011-06-15 15:18:45 +0900506
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200507 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900508 return 0;
509
510 return 1;
511}
512
513/* Dump the a table entry to a stream interface's
514 * read buffer. It returns 0 if the output buffer is full
515 * and needs to be called again, otherwise non-zero.
516 */
517static int stats_dump_table_entry_to_buffer(struct chunk *msg, struct stream_interface *si,
518 struct proxy *proxy, struct stksess *entry)
519{
520 int dt;
521
Willy Tarreau77804732012-10-29 16:14:26 +0100522 chunk_appendf(msg, "%p:", entry);
Simon Hormand9366582011-06-15 15:18:45 +0900523
524 if (proxy->table.type == STKTABLE_TYPE_IP) {
525 char addr[INET_ADDRSTRLEN];
526 inet_ntop(AF_INET, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100527 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900528 }
529 else if (proxy->table.type == STKTABLE_TYPE_IPV6) {
530 char addr[INET6_ADDRSTRLEN];
531 inet_ntop(AF_INET6, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100532 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900533 }
534 else if (proxy->table.type == STKTABLE_TYPE_INTEGER) {
Willy Tarreau77804732012-10-29 16:14:26 +0100535 chunk_appendf(msg, " key=%u", *(unsigned int *)entry->key.key);
Simon Hormand9366582011-06-15 15:18:45 +0900536 }
537 else if (proxy->table.type == STKTABLE_TYPE_STRING) {
Willy Tarreau77804732012-10-29 16:14:26 +0100538 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900539 dump_text(msg, (const char *)entry->key.key, proxy->table.key_size);
540 }
541 else {
Willy Tarreau77804732012-10-29 16:14:26 +0100542 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900543 dump_binary(msg, (const char *)entry->key.key, proxy->table.key_size);
544 }
545
Willy Tarreau77804732012-10-29 16:14:26 +0100546 chunk_appendf(msg, " use=%d exp=%d", entry->ref_cnt - 1, tick_remain(now_ms, entry->expire));
Simon Hormand9366582011-06-15 15:18:45 +0900547
548 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
549 void *ptr;
550
551 if (proxy->table.data_ofs[dt] == 0)
552 continue;
553 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
Willy Tarreau77804732012-10-29 16:14:26 +0100554 chunk_appendf(msg, " %s(%d)=", stktable_data_types[dt].name, proxy->table.data_arg[dt].u);
Simon Hormand9366582011-06-15 15:18:45 +0900555 else
Willy Tarreau77804732012-10-29 16:14:26 +0100556 chunk_appendf(msg, " %s=", stktable_data_types[dt].name);
Simon Hormand9366582011-06-15 15:18:45 +0900557
558 ptr = stktable_data_ptr(&proxy->table, entry, dt);
559 switch (stktable_data_types[dt].std_type) {
560 case STD_T_SINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100561 chunk_appendf(msg, "%d", stktable_data_cast(ptr, std_t_sint));
Simon Hormand9366582011-06-15 15:18:45 +0900562 break;
563 case STD_T_UINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100564 chunk_appendf(msg, "%u", stktable_data_cast(ptr, std_t_uint));
Simon Hormand9366582011-06-15 15:18:45 +0900565 break;
566 case STD_T_ULL:
Willy Tarreau77804732012-10-29 16:14:26 +0100567 chunk_appendf(msg, "%lld", stktable_data_cast(ptr, std_t_ull));
Simon Hormand9366582011-06-15 15:18:45 +0900568 break;
569 case STD_T_FRQP:
Willy Tarreau77804732012-10-29 16:14:26 +0100570 chunk_appendf(msg, "%d",
Simon Hormand9366582011-06-15 15:18:45 +0900571 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
572 proxy->table.data_arg[dt].u));
573 break;
574 }
575 }
Willy Tarreau77804732012-10-29 16:14:26 +0100576 chunk_appendf(msg, "\n");
Simon Hormand9366582011-06-15 15:18:45 +0900577
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200578 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900579 return 0;
580
581 return 1;
582}
583
Willy Tarreaudec98142012-06-06 23:37:08 +0200584static void stats_sock_table_key_request(struct stream_interface *si, char **args, int action)
Simon Horman121f3052011-06-15 15:18:46 +0900585{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200586 struct session *s = si->conn->xprt_ctx;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900587 struct proxy *px = si->applet.ctx.table.target;
Simon Horman121f3052011-06-15 15:18:46 +0900588 struct stksess *ts;
Simon Hormancec9a222011-06-15 15:18:51 +0900589 uint32_t uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900590 unsigned char ip6_key[sizeof(struct in6_addr)];
Willy Tarreau654694e2012-06-07 01:03:16 +0200591 long long value;
592 int data_type;
Willy Tarreau47060b62013-08-01 21:11:42 +0200593 int cur_arg;
Willy Tarreau654694e2012-06-07 01:03:16 +0200594 void *ptr;
595 struct freq_ctr_period *frqp;
Simon Horman121f3052011-06-15 15:18:46 +0900596
Simon Hormand5b9fd92011-06-15 15:18:48 +0900597 si->applet.st0 = STAT_CLI_OUTPUT;
Simon Horman121f3052011-06-15 15:18:46 +0900598
599 if (!*args[4]) {
600 si->applet.ctx.cli.msg = "Key value expected\n";
601 si->applet.st0 = STAT_CLI_PRINT;
602 return;
603 }
604
Simon Hormanc5b89f62011-06-15 15:18:50 +0900605 switch (px->table.type) {
606 case STKTABLE_TYPE_IP:
Simon Hormancec9a222011-06-15 15:18:51 +0900607 uint32_key = htonl(inetaddr_host(args[4]));
Willy Tarreau07115412012-10-29 21:56:59 +0100608 static_table_key->key = &uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900609 break;
610 case STKTABLE_TYPE_IPV6:
611 inet_pton(AF_INET6, args[4], ip6_key);
Willy Tarreau07115412012-10-29 21:56:59 +0100612 static_table_key->key = &ip6_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900613 break;
Simon Hormancec9a222011-06-15 15:18:51 +0900614 case STKTABLE_TYPE_INTEGER:
615 {
616 char *endptr;
617 unsigned long val;
618 errno = 0;
619 val = strtoul(args[4], &endptr, 10);
620 if ((errno == ERANGE && val == ULONG_MAX) ||
621 (errno != 0 && val == 0) || endptr == args[4] ||
622 val > 0xffffffff) {
623 si->applet.ctx.cli.msg = "Invalid key\n";
624 si->applet.st0 = STAT_CLI_PRINT;
625 return;
626 }
627 uint32_key = (uint32_t) val;
Willy Tarreau07115412012-10-29 21:56:59 +0100628 static_table_key->key = &uint32_key;
Simon Hormancec9a222011-06-15 15:18:51 +0900629 break;
630 }
631 break;
Simon Horman619e3cc2011-06-15 15:18:52 +0900632 case STKTABLE_TYPE_STRING:
Willy Tarreau07115412012-10-29 21:56:59 +0100633 static_table_key->key = args[4];
634 static_table_key->key_len = strlen(args[4]);
Simon Horman619e3cc2011-06-15 15:18:52 +0900635 break;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900636 default:
Willy Tarreaudec98142012-06-06 23:37:08 +0200637 switch (action) {
638 case STAT_CLI_O_TAB:
639 si->applet.ctx.cli.msg = "Showing keys from tables of type other than ip, ipv6, string and integer is not supported\n";
640 break;
641 case STAT_CLI_O_CLR:
642 si->applet.ctx.cli.msg = "Removing keys from ip tables of type other than ip, ipv6, string and integer is not supported\n";
643 break;
644 default:
645 si->applet.ctx.cli.msg = "Unknown action\n";
646 break;
647 }
Simon Horman121f3052011-06-15 15:18:46 +0900648 si->applet.st0 = STAT_CLI_PRINT;
649 return;
650 }
651
652 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +0200653 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Simon Horman121f3052011-06-15 15:18:46 +0900654 si->applet.ctx.cli.msg = stats_permission_denied_msg;
655 si->applet.st0 = STAT_CLI_PRINT;
656 return;
657 }
658
Willy Tarreau07115412012-10-29 21:56:59 +0100659 ts = stktable_lookup_key(&px->table, static_table_key);
Simon Horman17bce342011-06-15 15:18:47 +0900660
Willy Tarreaudec98142012-06-06 23:37:08 +0200661 switch (action) {
662 case STAT_CLI_O_TAB:
663 if (!ts)
664 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100665 chunk_reset(&trash);
666 if (!stats_dump_table_head_to_buffer(&trash, si, px, px))
Simon Horman17bce342011-06-15 15:18:47 +0900667 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100668 stats_dump_table_entry_to_buffer(&trash, si, px, ts);
Simon Horman121f3052011-06-15 15:18:46 +0900669 return;
Willy Tarreaudec98142012-06-06 23:37:08 +0200670
671 case STAT_CLI_O_CLR:
672 if (!ts)
673 return;
674 if (ts->ref_cnt) {
675 /* don't delete an entry which is currently referenced */
676 si->applet.ctx.cli.msg = "Entry currently in use, cannot remove\n";
677 si->applet.st0 = STAT_CLI_PRINT;
678 return;
679 }
680 stksess_kill(&px->table, ts);
681 break;
Simon Horman17bce342011-06-15 15:18:47 +0900682
Willy Tarreau654694e2012-06-07 01:03:16 +0200683 case STAT_CLI_O_SET:
Willy Tarreau654694e2012-06-07 01:03:16 +0200684 if (ts)
685 stktable_touch(&px->table, ts, 1);
686 else {
Willy Tarreau07115412012-10-29 21:56:59 +0100687 ts = stksess_new(&px->table, static_table_key);
Willy Tarreau654694e2012-06-07 01:03:16 +0200688 if (!ts) {
689 /* don't delete an entry which is currently referenced */
690 si->applet.ctx.cli.msg = "Unable to allocate a new entry\n";
691 si->applet.st0 = STAT_CLI_PRINT;
692 return;
693 }
694 stktable_store(&px->table, ts, 1);
695 }
696
Willy Tarreau47060b62013-08-01 21:11:42 +0200697 for (cur_arg = 5; *args[cur_arg]; cur_arg += 2) {
698 if (strncmp(args[cur_arg], "data.", 5) != 0) {
699 si->applet.ctx.cli.msg = "\"data.<type>\" followed by a value expected\n";
700 si->applet.st0 = STAT_CLI_PRINT;
701 return;
702 }
703
704 data_type = stktable_get_data_type(args[cur_arg] + 5);
705 if (data_type < 0) {
706 si->applet.ctx.cli.msg = "Unknown data type\n";
707 si->applet.st0 = STAT_CLI_PRINT;
708 return;
709 }
710
711 if (!px->table.data_ofs[data_type]) {
712 si->applet.ctx.cli.msg = "Data type not stored in this table\n";
713 si->applet.st0 = STAT_CLI_PRINT;
714 return;
715 }
716
717 if (!*args[cur_arg+1] || strl2llrc(args[cur_arg+1], strlen(args[cur_arg+1]), &value) != 0) {
718 si->applet.ctx.cli.msg = "Require a valid integer value to store\n";
719 si->applet.st0 = STAT_CLI_PRINT;
720 return;
721 }
722
723 ptr = stktable_data_ptr(&px->table, ts, data_type);
724
725 switch (stktable_data_types[data_type].std_type) {
726 case STD_T_SINT:
727 stktable_data_cast(ptr, std_t_sint) = value;
728 break;
729 case STD_T_UINT:
730 stktable_data_cast(ptr, std_t_uint) = value;
731 break;
732 case STD_T_ULL:
733 stktable_data_cast(ptr, std_t_ull) = value;
734 break;
735 case STD_T_FRQP:
736 /* We set both the current and previous values. That way
737 * the reported frequency is stable during all the period
738 * then slowly fades out. This allows external tools to
739 * push measures without having to update them too often.
740 */
741 frqp = &stktable_data_cast(ptr, std_t_frqp);
742 frqp->curr_tick = now_ms;
743 frqp->prev_ctr = 0;
744 frqp->curr_ctr = value;
745 break;
746 }
Willy Tarreau654694e2012-06-07 01:03:16 +0200747 }
748 break;
749
Willy Tarreaudec98142012-06-06 23:37:08 +0200750 default:
751 si->applet.ctx.cli.msg = "Unknown action\n";
Simon Horman121f3052011-06-15 15:18:46 +0900752 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200753 break;
Simon Horman121f3052011-06-15 15:18:46 +0900754 }
Simon Horman121f3052011-06-15 15:18:46 +0900755}
756
Willy Tarreau654694e2012-06-07 01:03:16 +0200757static void stats_sock_table_data_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900758{
Willy Tarreau04b3a192013-04-13 09:41:37 +0200759 if (action != STAT_CLI_O_TAB && action != STAT_CLI_O_CLR) {
760 si->applet.ctx.cli.msg = "content-based lookup is only supported with the \"show\" and \"clear\" actions";
Willy Tarreau654694e2012-06-07 01:03:16 +0200761 si->applet.st0 = STAT_CLI_PRINT;
762 return;
763 }
764
Simon Hormand5b9fd92011-06-15 15:18:48 +0900765 /* condition on stored data value */
766 si->applet.ctx.table.data_type = stktable_get_data_type(args[3] + 5);
767 if (si->applet.ctx.table.data_type < 0) {
768 si->applet.ctx.cli.msg = "Unknown data type\n";
769 si->applet.st0 = STAT_CLI_PRINT;
770 return;
771 }
772
773 if (!((struct proxy *)si->applet.ctx.table.target)->table.data_ofs[si->applet.ctx.table.data_type]) {
774 si->applet.ctx.cli.msg = "Data type not stored in this table\n";
775 si->applet.st0 = STAT_CLI_PRINT;
776 return;
777 }
778
779 si->applet.ctx.table.data_op = get_std_op(args[4]);
780 if (si->applet.ctx.table.data_op < 0) {
781 si->applet.ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
782 si->applet.st0 = STAT_CLI_PRINT;
783 return;
784 }
785
786 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &si->applet.ctx.table.value) != 0) {
787 si->applet.ctx.cli.msg = "Require a valid integer value to compare against\n";
788 si->applet.st0 = STAT_CLI_PRINT;
789 return;
790 }
791}
792
Willy Tarreaudec98142012-06-06 23:37:08 +0200793static void stats_sock_table_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900794{
795 si->applet.ctx.table.data_type = -1;
Willy Tarreaua94d2d72013-07-08 15:38:15 +0200796 si->applet.st2 = STAT_ST_INIT;
Willy Tarreaue17a8d02011-08-24 08:23:34 +0200797 si->applet.ctx.table.target = NULL;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900798 si->applet.ctx.table.proxy = NULL;
799 si->applet.ctx.table.entry = NULL;
Willy Tarreaudec98142012-06-06 23:37:08 +0200800 si->applet.st0 = action;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900801
802 if (*args[2]) {
803 si->applet.ctx.table.target = find_stktable(args[2]);
804 if (!si->applet.ctx.table.target) {
805 si->applet.ctx.cli.msg = "No such table\n";
806 si->applet.st0 = STAT_CLI_PRINT;
807 return;
808 }
809 }
810 else {
Willy Tarreaudec98142012-06-06 23:37:08 +0200811 if (action != STAT_CLI_O_TAB)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900812 goto err_args;
813 return;
814 }
815
816 if (strcmp(args[3], "key") == 0)
Willy Tarreaudec98142012-06-06 23:37:08 +0200817 stats_sock_table_key_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900818 else if (strncmp(args[3], "data.", 5) == 0)
Willy Tarreau654694e2012-06-07 01:03:16 +0200819 stats_sock_table_data_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900820 else if (*args[3])
Simon Hormand5b9fd92011-06-15 15:18:48 +0900821 goto err_args;
822
823 return;
824
825err_args:
Willy Tarreaudec98142012-06-06 23:37:08 +0200826 switch (action) {
827 case STAT_CLI_O_TAB:
Simon Hormand5b9fd92011-06-15 15:18:48 +0900828 si->applet.ctx.cli.msg = "Optional argument only supports \"data.<store_data_type>\" <operator> <value> and key <key>\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200829 break;
830 case STAT_CLI_O_CLR:
Simon Hormanc88b8872011-06-15 15:18:49 +0900831 si->applet.ctx.cli.msg = "Required arguments: <table> \"data.<store_data_type>\" <operator> <value> or <table> key <key>\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200832 break;
833 default:
834 si->applet.ctx.cli.msg = "Unknown action\n";
835 break;
836 }
Simon Hormand5b9fd92011-06-15 15:18:48 +0900837 si->applet.st0 = STAT_CLI_PRINT;
838}
839
Willy Tarreau532a4502011-09-07 22:37:44 +0200840/* Expects to find a frontend named <arg> and returns it, otherwise displays various
841 * adequate error messages and returns NULL. This function also expects the session
842 * level to be admin.
843 */
844static struct proxy *expect_frontend_admin(struct session *s, struct stream_interface *si, const char *arg)
845{
846 struct proxy *px;
847
Willy Tarreau290e63a2012-09-20 18:07:14 +0200848 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau532a4502011-09-07 22:37:44 +0200849 si->applet.ctx.cli.msg = stats_permission_denied_msg;
850 si->applet.st0 = STAT_CLI_PRINT;
851 return NULL;
852 }
853
854 if (!*arg) {
855 si->applet.ctx.cli.msg = "A frontend name is expected.\n";
856 si->applet.st0 = STAT_CLI_PRINT;
857 return NULL;
858 }
859
860 px = findproxy(arg, PR_CAP_FE);
861 if (!px) {
862 si->applet.ctx.cli.msg = "No such frontend.\n";
863 si->applet.st0 = STAT_CLI_PRINT;
864 return NULL;
865 }
866 return px;
867}
868
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200869/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
870 * and returns the pointer to the server. Otherwise, display adequate error messages
871 * and returns NULL. This function also expects the session level to be admin. Note:
872 * the <arg> is modified to remove the '/'.
873 */
874static struct server *expect_server_admin(struct session *s, struct stream_interface *si, char *arg)
875{
876 struct proxy *px;
877 struct server *sv;
878 char *line;
879
Willy Tarreau290e63a2012-09-20 18:07:14 +0200880 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200881 si->applet.ctx.cli.msg = stats_permission_denied_msg;
882 si->applet.st0 = STAT_CLI_PRINT;
883 return NULL;
884 }
885
886 /* split "backend/server" and make <line> point to server */
887 for (line = arg; *line; line++)
888 if (*line == '/') {
889 *line++ = '\0';
890 break;
891 }
892
893 if (!*line || !*arg) {
894 si->applet.ctx.cli.msg = "Require 'backend/server'.\n";
895 si->applet.st0 = STAT_CLI_PRINT;
896 return NULL;
897 }
898
899 if (!get_backend_server(arg, line, &px, &sv)) {
900 si->applet.ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
901 si->applet.st0 = STAT_CLI_PRINT;
902 return NULL;
903 }
904
905 if (px->state == PR_STSTOPPED) {
906 si->applet.ctx.cli.msg = "Proxy is disabled.\n";
907 si->applet.st0 = STAT_CLI_PRINT;
908 return NULL;
909 }
910
911 return sv;
912}
913
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200914/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200915 * called from an applet running in a stream interface. The function returns 1
Willy Tarreaubc4af052011-02-13 13:25:14 +0100916 * if the request was understood, otherwise zero. It sets si->applet.st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200917 * designating the function which will have to process the request, which can
918 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200919 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900920static int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200921{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200922 struct session *s = si->conn->xprt_ctx;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200923 char *args[MAX_STATS_ARGS + 1];
924 int arg;
925
926 while (isspace((unsigned char)*line))
927 line++;
928
929 arg = 0;
930 args[arg] = line;
931
932 while (*line && arg < MAX_STATS_ARGS) {
933 if (isspace((unsigned char)*line)) {
934 *line++ = '\0';
935
936 while (isspace((unsigned char)*line))
937 line++;
938
939 args[++arg] = line;
940 continue;
941 }
942
943 line++;
944 }
945
946 while (++arg <= MAX_STATS_ARGS)
947 args[arg] = line;
948
Willy Tarreau295a8372011-03-10 11:25:07 +0100949 si->applet.ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200950 if (strcmp(args[0], "show") == 0) {
951 if (strcmp(args[1], "stat") == 0) {
952 if (*args[2] && *args[3] && *args[4]) {
Willy Tarreau295a8372011-03-10 11:25:07 +0100953 si->applet.ctx.stats.flags |= STAT_BOUND;
954 si->applet.ctx.stats.iid = atoi(args[2]);
955 si->applet.ctx.stats.type = atoi(args[3]);
956 si->applet.ctx.stats.sid = atoi(args[4]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200957 }
958
Willy Tarreaua94d2d72013-07-08 15:38:15 +0200959 si->applet.st2 = STAT_ST_INIT;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100960 si->applet.st0 = STAT_CLI_O_STAT; // stats_dump_stat_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200961 }
962 else if (strcmp(args[1], "info") == 0) {
Willy Tarreaua94d2d72013-07-08 15:38:15 +0200963 si->applet.st2 = STAT_ST_INIT;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100964 si->applet.st0 = STAT_CLI_O_INFO; // stats_dump_info_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200965 }
966 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreaua94d2d72013-07-08 15:38:15 +0200967 si->applet.st2 = STAT_ST_INIT;
Willy Tarreau290e63a2012-09-20 18:07:14 +0200968 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau295a8372011-03-10 11:25:07 +0100969 si->applet.ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100970 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200971 return 1;
972 }
Willy Tarreau76153662012-11-26 01:16:39 +0100973 if (*args[2] && strcmp(args[2], "all") == 0)
974 si->applet.ctx.sess.target = (void *)-1;
975 else if (*args[2])
Willy Tarreau295a8372011-03-10 11:25:07 +0100976 si->applet.ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100977 else
Willy Tarreau295a8372011-03-10 11:25:07 +0100978 si->applet.ctx.sess.target = NULL;
979 si->applet.ctx.sess.section = 0; /* start with session status */
980 si->applet.ctx.sess.pos = 0;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100981 si->applet.st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200982 }
983 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau290e63a2012-09-20 18:07:14 +0200984 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau295a8372011-03-10 11:25:07 +0100985 si->applet.ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100986 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200987 return 1;
988 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200989 if (*args[2])
Willy Tarreau295a8372011-03-10 11:25:07 +0100990 si->applet.ctx.errors.iid = atoi(args[2]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200991 else
Willy Tarreau295a8372011-03-10 11:25:07 +0100992 si->applet.ctx.errors.iid = -1;
993 si->applet.ctx.errors.px = NULL;
Willy Tarreaua94d2d72013-07-08 15:38:15 +0200994 si->applet.st2 = STAT_ST_INIT;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100995 si->applet.st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200996 }
Willy Tarreau69f58c82010-07-12 17:55:33 +0200997 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +0200998 stats_sock_table_request(si, args, STAT_CLI_O_TAB);
Willy Tarreau69f58c82010-07-12 17:55:33 +0200999 }
Aman Guptaceafb4a2012-04-02 18:57:54 -07001000 else { /* neither "stat" nor "info" nor "sess" nor "errors" nor "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001001 return 0;
1002 }
1003 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001004 else if (strcmp(args[0], "clear") == 0) {
1005 if (strcmp(args[1], "counters") == 0) {
1006 struct proxy *px;
1007 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001008 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001009 int clrall = 0;
1010
1011 if (strcmp(args[2], "all") == 0)
1012 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001013
Willy Tarreau6162db22009-10-10 17:13:00 +02001014 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +02001015 if (s->listener->bind_conf->level < ACCESS_LVL_OPER ||
1016 (clrall && s->listener->bind_conf->level < ACCESS_LVL_ADMIN)) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001017 si->applet.ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001018 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001019 return 1;
1020 }
1021
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001022 for (px = proxy; px; px = px->next) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001023 if (clrall) {
1024 memset(&px->be_counters, 0, sizeof(px->be_counters));
1025 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
1026 }
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001027 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001028 px->be_counters.conn_max = 0;
1029 px->be_counters.p.http.rps_max = 0;
1030 px->be_counters.sps_max = 0;
1031 px->be_counters.cps_max = 0;
1032 px->be_counters.nbpend_max = 0;
1033
1034 px->fe_counters.conn_max = 0;
1035 px->fe_counters.p.http.rps_max = 0;
1036 px->fe_counters.sps_max = 0;
1037 px->fe_counters.cps_max = 0;
1038 px->fe_counters.nbpend_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001039 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001040
1041 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001042 if (clrall)
1043 memset(&sv->counters, 0, sizeof(sv->counters));
1044 else {
1045 sv->counters.cur_sess_max = 0;
1046 sv->counters.nbpend_max = 0;
1047 sv->counters.sps_max = 0;
1048 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001049
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001050 list_for_each_entry(li, &px->conf.listeners, by_fe)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001051 if (li->counters) {
1052 if (clrall)
1053 memset(li->counters, 0, sizeof(*li->counters));
1054 else
1055 li->counters->conn_max = 0;
1056 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001057 }
1058
Willy Tarreau81c25d02011-09-07 15:17:21 +02001059 global.cps_max = 0;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001060 return 1;
1061 }
Willy Tarreau88ee3972010-07-13 13:48:00 +02001062 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001063 stats_sock_table_request(si, args, STAT_CLI_O_CLR);
Willy Tarreau88ee3972010-07-13 13:48:00 +02001064 /* end of processing */
1065 return 1;
1066 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001067 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +02001068 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001069 return 0;
1070 }
1071 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001072 else if (strcmp(args[0], "get") == 0) {
1073 if (strcmp(args[1], "weight") == 0) {
1074 struct proxy *px;
1075 struct server *sv;
1076
1077 /* split "backend/server" and make <line> point to server */
1078 for (line = args[2]; *line; line++)
1079 if (*line == '/') {
1080 *line++ = '\0';
1081 break;
1082 }
1083
1084 if (!*line) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001085 si->applet.ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001086 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001087 return 1;
1088 }
1089
1090 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001091 si->applet.ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001092 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001093 return 1;
1094 }
1095
1096 /* return server's effective weight at the moment */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001097 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
1098 bi_putstr(si->ib, trash.str);
Willy Tarreau38338fa2009-10-10 18:37:29 +02001099 return 1;
1100 }
1101 else { /* not "get weight" */
1102 return 0;
1103 }
1104 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001105 else if (strcmp(args[0], "set") == 0) {
1106 if (strcmp(args[1], "weight") == 0) {
Willy Tarreau4483d432009-10-10 19:30:08 +02001107 struct server *sv;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001108 const char *warning;
Willy Tarreau4483d432009-10-10 19:30:08 +02001109
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001110 sv = expect_server_admin(s, si, args[2]);
1111 if (!sv)
Willy Tarreau4483d432009-10-10 19:30:08 +02001112 return 1;
Willy Tarreau4483d432009-10-10 19:30:08 +02001113
Simon Horman7d09b9a2013-02-12 10:45:51 +09001114 warning = server_parse_weight_change_request(sv, args[3]);
Simon Horman8c3d0be2013-11-25 10:46:40 +09001115 /*
1116 * The user-weight may now be zero and thus
1117 * the server considered to be draining.
1118 * Update the server's drain state as necessary.
1119 */
1120 set_server_drain_state(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001121 if (warning) {
1122 si->applet.ctx.cli.msg = warning;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001123 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +02001124 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001125 return 1;
1126 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001127 else if (strcmp(args[1], "timeout") == 0) {
1128 if (strcmp(args[2], "cli") == 0) {
1129 unsigned timeout;
1130 const char *res;
1131
1132 if (!*args[3]) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001133 si->applet.ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001134 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001135 return 1;
1136 }
1137
1138 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1139 if (res || timeout < 1) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001140 si->applet.ctx.cli.msg = "Invalid timeout value.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001141 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001142 return 1;
1143 }
1144
1145 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
1146 return 1;
1147 }
1148 else {
Willy Tarreau295a8372011-03-10 11:25:07 +01001149 si->applet.ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001150 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001151 return 1;
1152 }
1153 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001154 else if (strcmp(args[1], "maxconn") == 0) {
1155 if (strcmp(args[2], "frontend") == 0) {
1156 struct proxy *px;
1157 struct listener *l;
1158 int v;
1159
Willy Tarreau532a4502011-09-07 22:37:44 +02001160 px = expect_frontend_admin(s, si, args[3]);
1161 if (!px)
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001162 return 1;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001163
1164 if (!*args[4]) {
1165 si->applet.ctx.cli.msg = "Integer value expected.\n";
1166 si->applet.st0 = STAT_CLI_PRINT;
1167 return 1;
1168 }
1169
1170 v = atoi(args[4]);
Willy Tarreau3c7a79d2012-09-26 21:07:15 +02001171 if (v < 0) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001172 si->applet.ctx.cli.msg = "Value out of range.\n";
1173 si->applet.st0 = STAT_CLI_PRINT;
1174 return 1;
1175 }
1176
1177 /* OK, the value is fine, so we assign it to the proxy and to all of
1178 * its listeners. The blocked ones will be dequeued.
1179 */
1180 px->maxconn = v;
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001181 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001182 l->maxconn = v;
1183 if (l->state == LI_FULL)
1184 resume_listener(l);
1185 }
1186
1187 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&s->fe->listener_queue))
1188 dequeue_all_listeners(&s->fe->listener_queue);
1189
1190 return 1;
1191 }
Willy Tarreau91886b62011-09-07 14:38:31 +02001192 else if (strcmp(args[2], "global") == 0) {
1193 int v;
1194
Willy Tarreau290e63a2012-09-20 18:07:14 +02001195 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau91886b62011-09-07 14:38:31 +02001196 si->applet.ctx.cli.msg = stats_permission_denied_msg;
1197 si->applet.st0 = STAT_CLI_PRINT;
1198 return 1;
1199 }
1200
1201 if (!*args[3]) {
1202 si->applet.ctx.cli.msg = "Expects an integer value.\n";
1203 si->applet.st0 = STAT_CLI_PRINT;
1204 return 1;
1205 }
1206
1207 v = atoi(args[3]);
1208 if (v > global.hardmaxconn) {
1209 si->applet.ctx.cli.msg = "Value out of range.\n";
1210 si->applet.st0 = STAT_CLI_PRINT;
1211 return 1;
1212 }
1213
1214 /* check for unlimited values */
1215 if (v <= 0)
1216 v = global.hardmaxconn;
1217
1218 global.maxconn = v;
1219
1220 /* Dequeues all of the listeners waiting for a resource */
1221 if (!LIST_ISEMPTY(&global_listener_queue))
1222 dequeue_all_listeners(&global_listener_queue);
1223
1224 return 1;
1225 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001226 else {
Willy Tarreau91886b62011-09-07 14:38:31 +02001227 si->applet.ctx.cli.msg = "'set maxconn' only supports 'frontend' and 'global'.\n";
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001228 si->applet.st0 = STAT_CLI_PRINT;
1229 return 1;
1230 }
1231 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001232 else if (strcmp(args[1], "rate-limit") == 0) {
1233 if (strcmp(args[2], "connections") == 0) {
1234 if (strcmp(args[3], "global") == 0) {
1235 int v;
1236
Willy Tarreau290e63a2012-09-20 18:07:14 +02001237 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreauf5b22872011-09-07 16:13:44 +02001238 si->applet.ctx.cli.msg = stats_permission_denied_msg;
1239 si->applet.st0 = STAT_CLI_PRINT;
1240 return 1;
1241 }
1242
1243 if (!*args[4]) {
1244 si->applet.ctx.cli.msg = "Expects an integer value.\n";
1245 si->applet.st0 = STAT_CLI_PRINT;
1246 return 1;
1247 }
1248
1249 v = atoi(args[4]);
1250 if (v < 0) {
1251 si->applet.ctx.cli.msg = "Value out of range.\n";
1252 si->applet.st0 = STAT_CLI_PRINT;
1253 return 1;
1254 }
1255
1256 global.cps_lim = v;
1257
1258 /* Dequeues all of the listeners waiting for a resource */
1259 if (!LIST_ISEMPTY(&global_listener_queue))
1260 dequeue_all_listeners(&global_listener_queue);
1261
1262 return 1;
1263 }
1264 else {
1265 si->applet.ctx.cli.msg = "'set rate-limit connections' only supports 'global'.\n";
1266 si->applet.st0 = STAT_CLI_PRINT;
1267 return 1;
1268 }
1269 }
William Lallemandd85f9172012-11-09 17:05:39 +01001270 else if (strcmp(args[2], "http-compression") == 0) {
1271 if (strcmp(args[3], "global") == 0) {
1272 int v;
1273
Willy Tarreau85d47f92012-11-21 00:29:50 +01001274 if (!*args[4]) {
1275 si->applet.ctx.cli.msg = "Expects a maximum input byte rate in kB/s.\n";
1276 si->applet.st0 = STAT_CLI_PRINT;
1277 return 1;
1278 }
1279
William Lallemandd85f9172012-11-09 17:05:39 +01001280 v = atoi(args[4]);
1281 global.comp_rate_lim = v * 1024; /* Kilo to bytes. */
1282 }
1283 else {
1284 si->applet.ctx.cli.msg = "'set rate-limit http-compression' only supports 'global'.\n";
1285 si->applet.st0 = STAT_CLI_PRINT;
1286 return 1;
1287 }
1288 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001289 else {
William Lallemandd85f9172012-11-09 17:05:39 +01001290 si->applet.ctx.cli.msg = "'set rate-limit' supports 'connections' and 'http-compression'.\n";
Willy Tarreauf5b22872011-09-07 16:13:44 +02001291 si->applet.st0 = STAT_CLI_PRINT;
1292 return 1;
1293 }
1294 }
Willy Tarreau654694e2012-06-07 01:03:16 +02001295 else if (strcmp(args[1], "table") == 0) {
1296 stats_sock_table_request(si, args, STAT_CLI_O_SET);
1297 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001298 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +02001299 return 0;
1300 }
1301 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001302 else if (strcmp(args[0], "enable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001303 if (strcmp(args[1], "agent") == 0) {
1304 struct server *sv;
1305
1306 sv = expect_server_admin(s, si, args[2]);
1307 if (!sv)
1308 return 1;
1309
1310 sv->agent.state &= ~CHK_STATE_DISABLED;
1311
1312 return 1;
1313 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001314 if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001315 struct server *sv;
1316
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001317 sv = expect_server_admin(s, si, args[2]);
1318 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001319 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001320
Cyril Bontécd19e512010-01-31 22:34:03 +01001321 if (sv->state & SRV_MAINTAIN) {
1322 /* The server is really in maintenance, we can change the server state */
Willy Tarreau44267702011-10-28 15:35:33 +02001323 if (sv->track) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001324 /* If this server tracks the status of another one,
1325 * we must restore the good status.
1326 */
Willy Tarreau44267702011-10-28 15:35:33 +02001327 if (sv->track->state & SRV_RUNNING) {
Simon Horman4a741432013-02-23 15:35:38 +09001328 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001329 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001330 } else {
1331 sv->state &= ~SRV_MAINTAIN;
Simon Horman4a741432013-02-23 15:35:38 +09001332 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001333 }
1334 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001335 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001336 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001337 }
1338 }
1339
Willy Tarreau532a4502011-09-07 22:37:44 +02001340 return 1;
1341 }
1342 else if (strcmp(args[1], "frontend") == 0) {
1343 struct proxy *px;
1344
1345 px = expect_frontend_admin(s, si, args[2]);
1346 if (!px)
1347 return 1;
1348
1349 if (px->state == PR_STSTOPPED) {
1350 si->applet.ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
1351 si->applet.st0 = STAT_CLI_PRINT;
1352 return 1;
1353 }
1354
1355 if (px->state != PR_STPAUSED) {
1356 si->applet.ctx.cli.msg = "Frontend is already enabled.\n";
1357 si->applet.st0 = STAT_CLI_PRINT;
1358 return 1;
1359 }
1360
1361 if (!resume_proxy(px)) {
1362 si->applet.ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
1363 si->applet.st0 = STAT_CLI_PRINT;
1364 return 1;
1365 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001366 return 1;
1367 }
1368 else { /* unknown "enable" parameter */
Willy Tarreau532a4502011-09-07 22:37:44 +02001369 si->applet.ctx.cli.msg = "'enable' only supports 'frontend' and 'server'.\n";
1370 si->applet.st0 = STAT_CLI_PRINT;
1371 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001372 }
1373 }
1374 else if (strcmp(args[0], "disable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001375 if (strcmp(args[1], "agent") == 0) {
1376 struct server *sv;
1377
1378 sv = expect_server_admin(s, si, args[2]);
1379 if (!sv)
1380 return 1;
1381
1382 sv->agent.state |= CHK_STATE_DISABLED;
1383
1384 return 1;
1385 }
1386 else if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001387 struct server *sv;
1388
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001389 sv = expect_server_admin(s, si, args[2]);
1390 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001391 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001392
Cyril Bontécd19e512010-01-31 22:34:03 +01001393 if (! (sv->state & SRV_MAINTAIN)) {
1394 /* Not already in maintenance, we can change the server state */
1395 sv->state |= SRV_MAINTAIN;
Simon Horman4a741432013-02-23 15:35:38 +09001396 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001397 }
1398
Willy Tarreau532a4502011-09-07 22:37:44 +02001399 return 1;
1400 }
1401 else if (strcmp(args[1], "frontend") == 0) {
1402 struct proxy *px;
1403
1404 px = expect_frontend_admin(s, si, args[2]);
1405 if (!px)
1406 return 1;
1407
1408 if (px->state == PR_STSTOPPED) {
1409 si->applet.ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
1410 si->applet.st0 = STAT_CLI_PRINT;
1411 return 1;
1412 }
1413
1414 if (px->state == PR_STPAUSED) {
1415 si->applet.ctx.cli.msg = "Frontend is already disabled.\n";
1416 si->applet.st0 = STAT_CLI_PRINT;
1417 return 1;
1418 }
1419
1420 if (!pause_proxy(px)) {
1421 si->applet.ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
1422 si->applet.st0 = STAT_CLI_PRINT;
1423 return 1;
1424 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001425 return 1;
1426 }
1427 else { /* unknown "disable" parameter */
Willy Tarreau532a4502011-09-07 22:37:44 +02001428 si->applet.ctx.cli.msg = "'disable' only supports 'frontend' and 'server'.\n";
1429 si->applet.st0 = STAT_CLI_PRINT;
1430 return 1;
1431 }
1432 }
1433 else if (strcmp(args[0], "shutdown") == 0) {
1434 if (strcmp(args[1], "frontend") == 0) {
1435 struct proxy *px;
1436
1437 px = expect_frontend_admin(s, si, args[2]);
1438 if (!px)
1439 return 1;
1440
1441 if (px->state == PR_STSTOPPED) {
1442 si->applet.ctx.cli.msg = "Frontend was already shut down.\n";
1443 si->applet.st0 = STAT_CLI_PRINT;
1444 return 1;
1445 }
1446
1447 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1448 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1449 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1450 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1451 stop_proxy(px);
1452 return 1;
1453 }
Willy Tarreaua295edc2011-09-07 23:21:03 +02001454 else if (strcmp(args[1], "session") == 0) {
1455 struct session *sess, *ptr;
1456
Willy Tarreau290e63a2012-09-20 18:07:14 +02001457 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreaua295edc2011-09-07 23:21:03 +02001458 si->applet.ctx.cli.msg = stats_permission_denied_msg;
1459 si->applet.st0 = STAT_CLI_PRINT;
1460 return 1;
1461 }
1462
1463 if (!*args[2]) {
1464 si->applet.ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
1465 si->applet.st0 = STAT_CLI_PRINT;
1466 return 1;
1467 }
1468
1469 ptr = (void *)strtoul(args[2], NULL, 0);
1470
1471 /* first, look for the requested session in the session table */
1472 list_for_each_entry(sess, &sessions, list) {
1473 if (sess == ptr)
1474 break;
1475 }
1476
1477 /* do we have the session ? */
1478 if (sess != ptr) {
1479 si->applet.ctx.cli.msg = "No such session (use 'show sess').\n";
1480 si->applet.st0 = STAT_CLI_PRINT;
1481 return 1;
1482 }
1483
1484 session_shutdown(sess, SN_ERR_KILLED);
1485 return 1;
1486 }
Willy Tarreau52b2d222011-09-07 23:48:48 +02001487 else if (strcmp(args[1], "sessions") == 0) {
1488 if (strcmp(args[2], "server") == 0) {
1489 struct server *sv;
1490 struct session *sess, *sess_bck;
1491
1492 sv = expect_server_admin(s, si, args[3]);
1493 if (!sv)
1494 return 1;
1495
1496 /* kill all the session that are on this server */
1497 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
1498 if (sess->srv_conn == sv)
1499 session_shutdown(sess, SN_ERR_KILLED);
1500
1501 return 1;
1502 }
1503 else {
1504 si->applet.ctx.cli.msg = "'shutdown sessions' only supports 'server'.\n";
1505 si->applet.st0 = STAT_CLI_PRINT;
1506 return 1;
1507 }
1508 }
Willy Tarreau532a4502011-09-07 22:37:44 +02001509 else { /* unknown "disable" parameter */
Willy Tarreau52b2d222011-09-07 23:48:48 +02001510 si->applet.ctx.cli.msg = "'shutdown' only supports 'frontend', 'session' and 'sessions'.\n";
Willy Tarreau532a4502011-09-07 22:37:44 +02001511 si->applet.st0 = STAT_CLI_PRINT;
1512 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001513 }
1514 }
1515 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001516 return 0;
1517 }
1518 return 1;
1519}
1520
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001521/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001522 * used to processes I/O from/to the stats unix socket. The system relies on a
1523 * state machine handling requests and various responses. We read a request,
1524 * then we process it and send the response, and we possibly display a prompt.
Willy Tarreaubc4af052011-02-13 13:25:14 +01001525 * Then we can read again. The state is stored in si->applet.st0 and is one of the
1526 * STAT_CLI_* constants. si->applet.st1 is used to indicate whether prompt is enabled
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001527 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001528 */
Willy Tarreaub24281b2011-02-13 13:16:36 +01001529static void cli_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001530{
Willy Tarreau7421efb2012-07-02 15:11:27 +02001531 struct channel *req = si->ob;
1532 struct channel *res = si->ib;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001533 int reql;
1534 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001535
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001536 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
1537 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001538
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001539 while (1) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001540 if (si->applet.st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001541 /* Stats output not initialized yet */
Willy Tarreau295a8372011-03-10 11:25:07 +01001542 memset(&si->applet.ctx.stats, 0, sizeof(si->applet.ctx.stats));
Willy Tarreaubc4af052011-02-13 13:25:14 +01001543 si->applet.st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001544 }
Willy Tarreaubc4af052011-02-13 13:25:14 +01001545 else if (si->applet.st0 == STAT_CLI_END) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001546 /* Let's close for real now. We just close the request
1547 * side, the conditions below will complete if needed.
1548 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001549 si_shutw(si);
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001550 break;
1551 }
Willy Tarreaubc4af052011-02-13 13:25:14 +01001552 else if (si->applet.st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001553 /* ensure we have some output room left in the event we
1554 * would want to return some info right after parsing.
1555 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001556 if (buffer_almost_full(si->ib->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02001557 break;
1558
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001559 reql = bo_getline(si->ob, trash.str, trash.size);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001560 if (reql <= 0) { /* closed or EOL not found */
1561 if (reql == 0)
1562 break;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001563 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001564 continue;
1565 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001566
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001567 /* seek for a possible semi-colon. If we find one, we
1568 * replace it with an LF and skip only this part.
1569 */
1570 for (len = 0; len < reql; len++)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001571 if (trash.str[len] == ';') {
1572 trash.str[len] = '\n';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001573 reql = len + 1;
1574 break;
1575 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001576
Willy Tarreau816fc222009-10-04 07:36:58 +02001577 /* now it is time to check that we have a full line,
1578 * remove the trailing \n and possibly \r, then cut the
1579 * line.
1580 */
1581 len = reql - 1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001582 if (trash.str[len] != '\n') {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001583 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001584 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001585 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001586
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001587 if (len && trash.str[len-1] == '\r')
Willy Tarreau816fc222009-10-04 07:36:58 +02001588 len--;
1589
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001590 trash.str[len] = '\0';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001591
Willy Tarreaubc4af052011-02-13 13:25:14 +01001592 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001593 if (len) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001594 if (strcmp(trash.str, "quit") == 0) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001595 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001596 continue;
1597 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001598 else if (strcmp(trash.str, "prompt") == 0)
Willy Tarreaubc4af052011-02-13 13:25:14 +01001599 si->applet.st1 = !si->applet.st1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001600 else if (strcmp(trash.str, "help") == 0 ||
1601 !stats_sock_parse_request(si, trash.str)) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001602 si->applet.ctx.cli.msg = stats_sock_usage_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001603 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02001604 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001605 /* NB: stats_sock_parse_request() may have put
Willy Tarreaubc4af052011-02-13 13:25:14 +01001606 * another STAT_CLI_O_* into si->applet.st0.
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001607 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001608 }
Willy Tarreaubc4af052011-02-13 13:25:14 +01001609 else if (!si->applet.st1) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001610 /* if prompt is disabled, print help on empty lines,
1611 * so that the user at least knows how to enable
1612 * prompt and find help.
1613 */
Willy Tarreau295a8372011-03-10 11:25:07 +01001614 si->applet.ctx.cli.msg = stats_sock_usage_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001615 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001616 }
1617
1618 /* re-adjust req buffer */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02001619 bo_skip(si->ob, reql);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001620 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001621 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001622 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001623 if (res->flags & (CF_SHUTR_NOW|CF_SHUTR)) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001624 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001625 continue;
1626 }
1627
Willy Tarreaubc4af052011-02-13 13:25:14 +01001628 switch (si->applet.st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02001629 case STAT_CLI_PRINT:
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02001630 if (bi_putstr(si->ib, si->applet.ctx.cli.msg) != -1)
Willy Tarreaubc4af052011-02-13 13:25:14 +01001631 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001632 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001633 case STAT_CLI_O_INFO:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001634 if (stats_dump_info_to_buffer(si))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001635 si->applet.st0 = STAT_CLI_PROMPT;
1636 break;
1637 case STAT_CLI_O_STAT:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001638 if (stats_dump_stat_to_buffer(si, NULL))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001639 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001640 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001641 case STAT_CLI_O_SESS:
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01001642 if (stats_dump_sess_to_buffer(si))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001643 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001644 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001645 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01001646 if (stats_dump_errors_to_buffer(si))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001647 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001648 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02001649 case STAT_CLI_O_TAB:
Simon Hormanc88b8872011-06-15 15:18:49 +09001650 case STAT_CLI_O_CLR:
Willy Tarreaudec98142012-06-06 23:37:08 +02001651 if (stats_table_request(si, si->applet.st0))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001652 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau69f58c82010-07-12 17:55:33 +02001653 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001654 default: /* abnormal state */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001655 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001656 break;
1657 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001658
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001659 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001660 if (si->applet.st0 == STAT_CLI_PROMPT) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02001661 if (bi_putstr(si->ib, si->applet.st1 ? "\n> " : "\n") != -1)
Willy Tarreaubc4af052011-02-13 13:25:14 +01001662 si->applet.st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001663 }
1664
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001665 /* If the output functions are still there, it means they require more room. */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001666 if (si->applet.st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001667 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001668
1669 /* Now we close the output if one of the writers did so,
1670 * or if we're not in interactive mode and the request
1671 * buffer is empty. This still allows pipelined requests
1672 * to be sent in non-interactive mode.
1673 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001674 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!si->applet.st1 && !req->buf->o)) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001675 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001676 continue;
1677 }
1678
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001679 /* switch state back to GETREQ to read next requests */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001680 si->applet.st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001681 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001682 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001683
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001684 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST) && (si->applet.st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001685 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
1686 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
Aman Guptaceafb4a2012-04-02 18:57:54 -07001687 /* Other side has closed, let's abort if we have no more processing to do
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001688 * and nothing more to consume. This is comparable to a broken pipe, so
1689 * we forward the close to the request side so that it flows upstream to
1690 * the client.
1691 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001692 si_shutw(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001693 }
1694
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001695 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (si->applet.st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001696 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
1697 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
1698 /* We have no more processing to do, and nothing more to send, and
1699 * the client side has closed. So we'll forward this state downstream
1700 * on the response buffer.
1701 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001702 si_shutr(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001703 res->flags |= CF_READ_NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001704 }
1705
1706 /* update all other flags and resync with the other side */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001707 si_update(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001708
1709 /* we don't want to expire timeouts while we're processing requests */
1710 si->ib->rex = TICK_ETERNITY;
1711 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001712
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001713 out:
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001714 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 +02001715 __FUNCTION__, __LINE__,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001716 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 +02001717
1718 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
1719 /* check that we have released everything then unregister */
1720 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001721 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001722}
1723
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001724/* This function dumps information onto the stream interface's read buffer.
1725 * It returns 0 as long as it does not complete, non-zero upon completion.
1726 * No state is used.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001727 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001728static int stats_dump_info_to_buffer(struct stream_interface *si)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001729{
1730 unsigned int up = (now.tv_sec - start_date.tv_sec);
1731
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001732 chunk_printf(&trash,
1733 "Name: " PRODUCT_NAME "\n"
1734 "Version: " HAPROXY_VERSION "\n"
1735 "Release_date: " HAPROXY_DATE "\n"
1736 "Nbproc: %d\n"
1737 "Process_num: %d\n"
1738 "Pid: %d\n"
1739 "Uptime: %dd %dh%02dm%02ds\n"
1740 "Uptime_sec: %d\n"
1741 "Memmax_MB: %d\n"
1742 "Ulimit-n: %d\n"
1743 "Maxsock: %d\n"
1744 "Maxconn: %d\n"
1745 "Hard_maxconn: %d\n"
1746 "Maxpipes: %d\n"
1747 "CurrConns: %d\n"
1748 "PipesUsed: %d\n"
1749 "PipesFree: %d\n"
1750 "ConnRate: %d\n"
1751 "ConnRateLimit: %d\n"
1752 "MaxConnRate: %d\n"
1753 "CompressBpsIn: %u\n"
1754 "CompressBpsOut: %u\n"
1755 "CompressBpsRateLim: %u\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001756#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001757 "ZlibMemUsage: %ld\n"
1758 "MaxZlibMemUsage: %ld\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001759#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001760 "Tasks: %d\n"
1761 "Run_queue: %d\n"
1762 "Idle_pct: %d\n"
1763 "node: %s\n"
1764 "description: %s\n"
1765 "",
1766 global.nbproc,
1767 relative_pid,
1768 pid,
1769 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
1770 up,
1771 global.rlimit_memmax,
1772 global.rlimit_nofile,
1773 global.maxsock, global.maxconn, global.hardmaxconn, global.maxpipes,
1774 actconn, pipes_used, pipes_free,
1775 read_freq_ctr(&global.conn_per_sec), global.cps_lim, global.cps_max,
1776 read_freq_ctr(&global.comp_bps_in), read_freq_ctr(&global.comp_bps_out),
1777 global.comp_rate_lim,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001778#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001779 zlib_used_memory, global.maxzlibmem,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001780#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001781 nb_tasks_cur, run_queue_cur, idle_pct,
1782 global.node, global.desc ? global.desc : ""
1783 );
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001784
1785 if (bi_putchk(si->ib, &trash) == -1)
1786 return 0;
1787
1788 return 1;
1789}
1790
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001791/* Dumps a frontend's line to the trash for the current proxy <px> and uses
1792 * the state from stream interface <si>. The caller is responsible for clearing
1793 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
Cyril Bonté70be45d2010-10-12 00:14:35 +02001794 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001795static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
Cyril Bonté70be45d2010-10-12 00:14:35 +02001796{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001797 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02001798
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001799 if (!(px->cap & PR_CAP_FE))
1800 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02001801
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001802 if ((si->applet.ctx.stats.flags & STAT_BOUND) && !(si->applet.ctx.stats.type & (1 << STATS_TYPE_FE)))
1803 return 0;
1804
Willy Tarreau354898b2012-12-23 18:15:23 +01001805 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001806 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001807 /* name, queue */
1808 "<tr class=\"frontend\">");
Cyril Bonté70be45d2010-10-12 00:14:35 +02001809
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001810 if (px->cap & PR_CAP_BE && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
1811 /* Column sub-heading for Enable or Disable server */
1812 chunk_appendf(&trash, "<td></td>");
1813 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02001814
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001815 chunk_appendf(&trash,
1816 "<td class=ac>"
1817 "<a name=\"%s/Frontend\"></a>"
1818 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
1819 "<td colspan=3></td>"
1820 "",
1821 px->id, px->id);
Cyril Bonté70be45d2010-10-12 00:14:35 +02001822
Willy Tarreau466c9b52012-12-23 02:25:03 +01001823 chunk_appendf(&trash,
1824 /* sessions rate : current */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001825 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01001826 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
1827 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
1828 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001829 U2H(read_freq_ctr(&px->fe_sess_per_sec)),
1830 U2H(read_freq_ctr(&px->fe_conn_per_sec)),
1831 U2H(read_freq_ctr(&px->fe_sess_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001832
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001833 if (px->mode == PR_MODE_HTTP)
1834 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01001835 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001836 U2H(read_freq_ctr(&px->fe_req_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001837
1838 chunk_appendf(&trash,
1839 "</table></div></u></td>"
1840 /* sessions rate : max */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001841 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01001842 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
1843 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
1844 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001845 U2H(px->fe_counters.sps_max),
1846 U2H(px->fe_counters.cps_max),
1847 U2H(px->fe_counters.sps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001848
1849 if (px->mode == PR_MODE_HTTP)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001850 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01001851 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001852 U2H(px->fe_counters.p.http.rps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001853
1854 chunk_appendf(&trash,
1855 "</table></div></u></td>"
1856 /* sessions rate : limit */
1857 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001858 LIM2A(px->fe_sps_lim, "-"));
Cyril Bonté70be45d2010-10-12 00:14:35 +02001859
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001860 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001861 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001862 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001863 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01001864 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
1865 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001866 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001867 U2H(px->feconn), U2H(px->fe_counters.conn_max), U2H(px->maxconn),
1868 U2H(px->fe_counters.cum_sess),
1869 U2H(px->fe_counters.cum_conn),
1870 U2H(px->fe_counters.cum_sess));
Cyril Bonté70be45d2010-10-12 00:14:35 +02001871
Willy Tarreau466c9b52012-12-23 02:25:03 +01001872 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001873 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01001874 chunk_appendf(&trash,
1875 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
1876 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
1877 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
1878 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
1879 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
1880 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
1881 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
1882 "<tr><th>- other responses:</th><td>%s</td></tr>"
1883 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
1884 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001885 U2H(px->fe_counters.p.http.cum_req),
1886 U2H(px->fe_counters.p.http.rsp[1]),
1887 U2H(px->fe_counters.p.http.rsp[2]),
1888 U2H(px->fe_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001889 px->fe_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01001890 (int)(100*px->fe_counters.p.http.comp_rsp/px->fe_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01001891 U2H(px->fe_counters.p.http.rsp[3]),
1892 U2H(px->fe_counters.p.http.rsp[4]),
1893 U2H(px->fe_counters.p.http.rsp[5]),
1894 U2H(px->fe_counters.p.http.rsp[0]),
1895 U2H(px->fe_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001896 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001897
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001898 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01001899 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001900 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01001901 "<td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001902 /* bytes : in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001903 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001904 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001905 U2H(px->fe_counters.bytes_in));
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001906
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001907 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001908 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001909 "<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 +01001910 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001911 U2H(px->fe_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001912 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp,
1913 px->fe_counters.comp_in ?
1914 (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 +01001915 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "</u>":"");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001916
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001917 chunk_appendf(&trash,
1918 /* denied: req, resp */
1919 "<td>%s</td><td>%s</td>"
1920 /* errors : request, connect, response */
1921 "<td>%s</td><td></td><td></td>"
1922 /* warnings: retries, redispatches */
1923 "<td></td><td></td>"
1924 /* server status : reflect frontend status */
1925 "<td class=ac>%s</td>"
1926 /* rest of server: nothing */
1927 "<td class=ac colspan=8></td></tr>"
1928 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001929 U2H(px->fe_counters.denied_req), U2H(px->fe_counters.denied_resp),
1930 U2H(px->fe_counters.failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001931 px->state == PR_STREADY ? "OPEN" :
1932 px->state == PR_STFULL ? "FULL" : "STOP");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001933 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001934 else { /* CSV mode */
1935 chunk_appendf(&trash,
1936 /* pxid, name, queue cur, queue max, */
1937 "%s,FRONTEND,,,"
1938 /* sessions : current, max, limit, total */
1939 "%d,%d,%d,%lld,"
1940 /* bytes : in, out */
1941 "%lld,%lld,"
1942 /* denied: req, resp */
1943 "%lld,%lld,"
1944 /* errors : request, connect, response */
1945 "%lld,,,"
1946 /* warnings: retries, redispatches */
1947 ",,"
1948 /* server status : reflect frontend status */
1949 "%s,"
1950 /* rest of server: nothing */
1951 ",,,,,,,,"
1952 /* pid, iid, sid, throttle, lbtot, tracked, type */
1953 "%d,%d,0,,,,%d,"
1954 /* rate, rate_lim, rate_max */
1955 "%u,%u,%u,"
1956 /* check_status, check_code, check_duration */
1957 ",,,",
1958 px->id,
1959 px->feconn, px->fe_counters.conn_max, px->maxconn, px->fe_counters.cum_sess,
1960 px->fe_counters.bytes_in, px->fe_counters.bytes_out,
1961 px->fe_counters.denied_req, px->fe_counters.denied_resp,
1962 px->fe_counters.failed_req,
1963 px->state == PR_STREADY ? "OPEN" :
1964 px->state == PR_STFULL ? "FULL" : "STOP",
1965 relative_pid, px->uuid, STATS_TYPE_FE,
1966 read_freq_ctr(&px->fe_sess_per_sec),
1967 px->fe_sps_lim, px->fe_counters.sps_max);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001968
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001969 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1970 if (px->mode == PR_MODE_HTTP) {
1971 for (i=1; i<6; i++)
1972 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[i]);
1973 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[0]);
1974 }
1975 else
1976 chunk_appendf(&trash, ",,,,,,");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001977
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001978 /* failed health analyses */
1979 chunk_appendf(&trash, ",");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001980
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001981 /* requests : req_rate, req_rate_max, req_tot, */
1982 chunk_appendf(&trash, "%u,%u,%lld,",
1983 read_freq_ctr(&px->fe_req_per_sec),
1984 px->fe_counters.p.http.rps_max, px->fe_counters.p.http.cum_req);
1985
1986 /* errors: cli_aborts, srv_aborts */
1987 chunk_appendf(&trash, ",,");
1988
1989 /* compression: in, out, bypassed */
1990 chunk_appendf(&trash, "%lld,%lld,%lld,",
1991 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp);
1992
1993 /* compression: comp_rsp */
1994 chunk_appendf(&trash, "%lld,",
1995 px->fe_counters.p.http.comp_rsp);
1996
1997 /* finish with EOL */
1998 chunk_appendf(&trash, "\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001999 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002000 return 1;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002001}
2002
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002003/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
2004 * from stream interface <si>, and stats flags <flags>. The caller is responsible
2005 * for clearing the trash if needed. Returns non-zero if it emits anything, zero
2006 * otherwise.
Willy Tarreau91861262007-10-17 17:06:05 +02002007 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002008static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l, int flags)
Willy Tarreau91861262007-10-17 17:06:05 +02002009{
Willy Tarreau354898b2012-12-23 18:15:23 +01002010 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002011 chunk_appendf(&trash, "<tr class=socket>");
2012 if (px->cap & PR_CAP_BE && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2013 /* Column sub-heading for Enable or Disable server */
2014 chunk_appendf(&trash, "<td></td>");
2015 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002016 chunk_appendf(&trash,
2017 /* frontend name, listener name */
2018 "<td class=ac><a name=\"%s/+%s\"></a>%s"
2019 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
2020 "",
2021 px->id, l->name,
2022 (flags & ST_SHLGNDS)?"<u>":"",
2023 px->id, l->name, l->name);
Willy Tarreau91861262007-10-17 17:06:05 +02002024
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002025 if (flags & ST_SHLGNDS) {
2026 char str[INET6_ADDRSTRLEN];
2027 int port;
Willy Tarreau91861262007-10-17 17:06:05 +02002028
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002029 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreau91861262007-10-17 17:06:05 +02002030
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002031 port = get_host_port(&l->addr);
2032 switch (addr_to_str(&l->addr, str, sizeof(str))) {
2033 case AF_INET:
2034 chunk_appendf(&trash, "IPv4: %s:%d, ", str, port);
2035 break;
2036 case AF_INET6:
2037 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, port);
2038 break;
2039 case AF_UNIX:
2040 chunk_appendf(&trash, "unix, ");
2041 break;
2042 case -1:
2043 chunk_appendf(&trash, "(%s), ", strerror(errno));
2044 break;
2045 }
Willy Tarreau91861262007-10-17 17:06:05 +02002046
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002047 /* id */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002048 chunk_appendf(&trash, "id: %d</div>", l->luid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002049 }
Willy Tarreau91861262007-10-17 17:06:05 +02002050
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002051 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002052 /* queue */
2053 "%s</td><td colspan=3></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002054 /* sessions rate: current, max, limit */
2055 "<td colspan=3>&nbsp;</td>"
2056 /* sessions: current, max, limit, total, lbtot */
2057 "<td>%s</td><td>%s</td><td>%s</td>"
2058 "<td>%s</td><td>&nbsp;</td>"
2059 /* bytes: in, out */
2060 "<td>%s</td><td>%s</td>"
2061 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002062 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002063 U2H(l->nbconn), U2H(l->counters->conn_max), U2H(l->maxconn),
2064 U2H(l->counters->cum_conn), U2H(l->counters->bytes_in), U2H(l->counters->bytes_out));
Willy Tarreau56a560a2009-09-22 19:27:35 +02002065
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002066 chunk_appendf(&trash,
2067 /* denied: req, resp */
2068 "<td>%s</td><td>%s</td>"
2069 /* errors: request, connect, response */
2070 "<td>%s</td><td></td><td></td>"
2071 /* warnings: retries, redispatches */
2072 "<td></td><td></td>"
2073 /* server status: reflect listener status */
2074 "<td class=ac>%s</td>"
2075 /* rest of server: nothing */
2076 "<td class=ac colspan=8></td></tr>"
2077 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002078 U2H(l->counters->denied_req), U2H(l->counters->denied_resp),
2079 U2H(l->counters->failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002080 (l->nbconn < l->maxconn) ? (l->state == LI_LIMITED) ? "WAITING" : "OPEN" : "FULL");
2081 }
2082 else { /* CSV mode */
2083 chunk_appendf(&trash,
2084 /* pxid, name, queue cur, queue max, */
2085 "%s,%s,,,"
2086 /* sessions: current, max, limit, total */
2087 "%d,%d,%d,%lld,"
2088 /* bytes: in, out */
2089 "%lld,%lld,"
2090 /* denied: req, resp */
2091 "%lld,%lld,"
2092 /* errors: request, connect, response */
2093 "%lld,,,"
2094 /* warnings: retries, redispatches */
2095 ",,"
2096 /* server status: reflect listener status */
2097 "%s,"
2098 /* rest of server: nothing */
2099 ",,,,,,,,"
2100 /* pid, iid, sid, throttle, lbtot, tracked, type */
2101 "%d,%d,%d,,,,%d,"
2102 /* rate, rate_lim, rate_max */
2103 ",,,"
2104 /* check_status, check_code, check_duration */
2105 ",,,"
2106 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2107 ",,,,,,"
2108 /* failed health analyses */
2109 ","
2110 /* requests : req_rate, req_rate_max, req_tot, */
2111 ",,,"
2112 /* errors: cli_aborts, srv_aborts */
2113 ",,"
2114 /* compression: in, out, bypassed, comp_rsp */
2115 ",,,,"
2116 "\n",
2117 px->id, l->name,
2118 l->nbconn, l->counters->conn_max,
2119 l->maxconn, l->counters->cum_conn,
2120 l->counters->bytes_in, l->counters->bytes_out,
2121 l->counters->denied_req, l->counters->denied_resp,
2122 l->counters->failed_req,
2123 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
2124 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
2125 }
2126 return 1;
2127}
Willy Tarreau91861262007-10-17 17:06:05 +02002128
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002129/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
2130 * from stream interface <si>, stats flags <flags>, and server state <state>.
2131 * The caller is responsible for clearing the trash if needed. Returns non-zero
2132 * if it emits anything, zero otherwise. The <state> parameter can take the
Simon Horman8c3d0be2013-11-25 10:46:40 +09002133 * following values : 0=DOWN, 1=going up, 2=going down, 3=UP, 4,5=NOLB,
2134 * 6,7=DRAIN, 8=unchecked.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002135 */
2136static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, int flags, struct server *sv, int state)
2137{
2138 struct server *ref = sv->track ? sv->track : sv;
2139 char str[INET6_ADDRSTRLEN];
2140 struct chunk src;
2141 int i;
Willy Tarreau91861262007-10-17 17:06:05 +02002142
Willy Tarreau354898b2012-12-23 18:15:23 +01002143 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Simon Horman8c3d0be2013-11-25 10:46:40 +09002144 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002145 "DOWN",
2146 "DN %d/%d &uarr;",
2147 "UP %d/%d &darr;",
2148 "UP",
2149 "NOLB %d/%d &darr;",
2150 "NOLB",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002151 "DRAIN %d/%d &darr;",
2152 "DRAIN",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002153 "<i>no check</i>"
2154 };
Willy Tarreau91861262007-10-17 17:06:05 +02002155
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002156 if ((sv->state & SRV_MAINTAIN) || (ref->state & SRV_MAINTAIN))
2157 chunk_appendf(&trash, "<tr class=\"maintain\">");
2158 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002159 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002160 "<tr class=\"%s%d\">",
2161 (sv->state & SRV_BACKUP) ? "backup" : "active", state);
Willy Tarreau91861262007-10-17 17:06:05 +02002162
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002163 if ((px->cap & PR_CAP_BE) && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002164 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002165 "<td><input type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
2166 sv->id);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002167
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002168 chunk_appendf(&trash,
2169 "<td class=ac><a name=\"%s/%s\"></a>%s"
2170 "<a class=lfsb href=\"#%s/%s\">%s</a>"
2171 "",
2172 px->id, sv->id,
2173 (flags & ST_SHLGNDS) ? "<u>" : "",
2174 px->id, sv->id, sv->id);
Willy Tarreau91861262007-10-17 17:06:05 +02002175
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002176 if (flags & ST_SHLGNDS) {
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002177 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002178
2179 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2180 case AF_INET:
2181 chunk_appendf(&trash, "IPv4: %s:%d, ", str, get_host_port(&sv->addr));
2182 break;
2183 case AF_INET6:
2184 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, get_host_port(&sv->addr));
2185 break;
2186 case AF_UNIX:
2187 chunk_appendf(&trash, "unix, ");
2188 break;
2189 case -1:
2190 chunk_appendf(&trash, "(%s), ", strerror(errno));
2191 break;
2192 default: /* address family not supported */
2193 break;
Willy Tarreau55bb8452007-10-17 18:44:57 +02002194 }
Willy Tarreau91861262007-10-17 17:06:05 +02002195
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002196 /* id */
2197 chunk_appendf(&trash, "id: %d", sv->puid);
Willy Tarreau91861262007-10-17 17:06:05 +02002198
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002199 /* cookie */
2200 if (sv->cookie) {
2201 chunk_appendf(&trash, ", cookie: '");
Willy Tarreau5031e6a2007-10-18 11:05:48 +02002202
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002203 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
2204 chunk_htmlencode(&trash, &src);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002205
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002206 chunk_appendf(&trash, "'");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002207 }
2208
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002209 chunk_appendf(&trash, "</div>");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002210 }
Willy Tarreau91861262007-10-17 17:06:05 +02002211
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002212 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002213 /* queue : current, max, limit */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002214 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002215 /* sessions rate : current, max, limit */
2216 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002217 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002218 (flags & ST_SHLGNDS) ? "</u>" : "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002219 U2H(sv->nbpend), U2H(sv->counters.nbpend_max), LIM2A(sv->maxqueue, "-"),
2220 U2H(read_freq_ctr(&sv->sess_per_sec)), U2H(sv->counters.sps_max));
Willy Tarreau91861262007-10-17 17:06:05 +02002221
Willy Tarreau466c9b52012-12-23 02:25:03 +01002222
2223 chunk_appendf(&trash,
2224 /* sessions: current, max, limit, total */
2225 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002226 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002227 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
2228 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002229 U2H(sv->cur_sess), U2H(sv->counters.cur_sess_max), LIM2A(sv->maxconn, "-"),
2230 U2H(sv->counters.cum_sess),
2231 U2H(sv->counters.cum_sess));
Willy Tarreau91861262007-10-17 17:06:05 +02002232
Willy Tarreau466c9b52012-12-23 02:25:03 +01002233 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2234 if (px->mode == PR_MODE_HTTP) {
2235 unsigned long long tot;
2236 for (tot = i = 0; i < 6; i++)
2237 tot += sv->counters.p.http.rsp[i];
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002238
Willy Tarreau466c9b52012-12-23 02:25:03 +01002239 chunk_appendf(&trash,
2240 "<tr><th>Cum. HTTP responses:</th><td>%s</td></tr>"
2241 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2242 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2243 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2244 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2245 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2246 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2247 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002248 U2H(tot),
2249 U2H(sv->counters.p.http.rsp[1]), tot ? (int)(100*sv->counters.p.http.rsp[1] / tot) : 0,
2250 U2H(sv->counters.p.http.rsp[2]), tot ? (int)(100*sv->counters.p.http.rsp[2] / tot) : 0,
2251 U2H(sv->counters.p.http.rsp[3]), tot ? (int)(100*sv->counters.p.http.rsp[3] / tot) : 0,
2252 U2H(sv->counters.p.http.rsp[4]), tot ? (int)(100*sv->counters.p.http.rsp[4] / tot) : 0,
2253 U2H(sv->counters.p.http.rsp[5]), tot ? (int)(100*sv->counters.p.http.rsp[5] / tot) : 0,
2254 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 +02002255 }
Willy Tarreau91861262007-10-17 17:06:05 +02002256
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002257 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002258 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002259 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01002260 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002261 U2H(sv->counters.cum_lbconn));
Willy Tarreau91861262007-10-17 17:06:05 +02002262
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002263 chunk_appendf(&trash,
2264 /* bytes : in, out */
2265 "<td>%s</td><td>%s</td>"
2266 /* denied: req, resp */
2267 "<td></td><td>%s</td>"
2268 /* errors : request, connect */
2269 "<td></td><td>%s</td>"
2270 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002271 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002272 /* warnings: retries, redispatches */
2273 "<td>%lld</td><td>%lld</td>"
2274 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002275 U2H(sv->counters.bytes_in), U2H(sv->counters.bytes_out),
2276 U2H(sv->counters.failed_secu),
2277 U2H(sv->counters.failed_conns),
2278 U2H(sv->counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002279 sv->counters.cli_aborts,
2280 sv->counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002281 sv->counters.retries, sv->counters.redispatches);
2282
2283 /* status, lest check */
2284 chunk_appendf(&trash, "<td class=ac>");
2285
2286 if (sv->state & SRV_MAINTAIN) {
2287 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - sv->last_change, 1));
2288 chunk_appendf(&trash, "MAINT");
2289 }
2290 else if (ref != sv && ref->state & SRV_MAINTAIN) {
2291 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2292 chunk_appendf(&trash, "MAINT(via)");
2293 }
2294 else if (ref->state & SRV_CHECKED) {
2295 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2296 chunk_appendf(&trash,
2297 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002298 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2299 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreau55bb8452007-10-17 18:44:57 +02002300 }
Willy Tarreau91861262007-10-17 17:06:05 +02002301
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002302 if (sv->state & SRV_CHECKED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002303 chunk_appendf(&trash,
2304 "</td><td class=ac><u> %s%s",
Simon Hormancd5d7b62013-02-24 17:23:38 +09002305 (sv->check.state & CHK_STATE_RUNNING) ? "* " : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002306 get_check_status_info(sv->check.status));
2307
2308 if (sv->check.status >= HCHK_STATUS_L57DATA)
2309 chunk_appendf(&trash, "/%d", sv->check.code);
2310
2311 if (sv->check.status >= HCHK_STATUS_CHECKED && sv->check.duration >= 0)
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002312 chunk_appendf(&trash, " in %lums", sv->check.duration);
2313
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002314 chunk_appendf(&trash, "<div class=tips>%s",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002315 get_check_status_description(sv->check.status));
2316 if (*sv->check.desc) {
2317 chunk_appendf(&trash, ": ");
2318 chunk_initlen(&src, sv->check.desc, 0, strlen(sv->check.desc));
2319 chunk_htmlencode(&trash, &src);
2320 }
2321 chunk_appendf(&trash, "</div></u>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002322 }
2323 else
2324 chunk_appendf(&trash, "</td><td>");
2325
2326 chunk_appendf(&trash,
2327 /* weight */
2328 "</td><td class=ac>%d</td>"
2329 /* act, bck */
2330 "<td class=ac>%s</td><td class=ac>%s</td>"
2331 "",
2332 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2333 (sv->state & SRV_BACKUP) ? "-" : "Y",
2334 (sv->state & SRV_BACKUP) ? "Y" : "-");
2335
2336 /* check failures: unique, fatal, down time */
2337 if (sv->state & SRV_CHECKED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002338 chunk_appendf(&trash, "<td><u>%lld", ref->counters.failed_checks);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002339
2340 if (ref->observe)
2341 chunk_appendf(&trash, "/%lld", ref->counters.failed_hana);
2342
2343 chunk_appendf(&trash,
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002344 "<div class=tips>Failed Health Checks%s</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002345 "<td>%lld</td><td>%s</td>"
2346 "",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002347 ref->observe ? "/Health Analyses" : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002348 ref->counters.down_trans, human_time(srv_downtime(sv), 1));
2349 }
Willy Tarreauf4659942013-11-28 10:50:06 +01002350 else if (sv != ref) {
2351 if (sv->state & SRV_MAINTAIN)
2352 chunk_appendf(&trash,
2353 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\"><a></td>",
2354 ref->proxy->id, ref->id);
2355 else
2356 chunk_appendf(&trash,
2357 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
2358 ref->proxy->id, ref->id, ref->proxy->id, ref->id);
2359 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002360 else
2361 chunk_appendf(&trash, "<td colspan=3></td>");
2362
2363 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01002364 if (sv->state & SRV_WARMINGUP)
2365 chunk_appendf(&trash, "<td class=ac>%d %%</td></tr>\n", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002366 else
2367 chunk_appendf(&trash, "<td class=ac>-</td></tr>\n");
2368 }
2369 else { /* CSV mode */
Simon Horman8c3d0be2013-11-25 10:46:40 +09002370 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002371 "DOWN,",
2372 "DOWN %d/%d,",
2373 "UP %d/%d,",
2374 "UP,",
2375 "NOLB %d/%d,",
2376 "NOLB,",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002377 "DRAIN %d/%d,",
2378 "DRAIN,",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002379 "no check,"
2380 };
2381
2382 chunk_appendf(&trash,
2383 /* pxid, name */
2384 "%s,%s,"
2385 /* queue : current, max */
2386 "%d,%d,"
2387 /* sessions : current, max, limit, total */
2388 "%d,%d,%s,%lld,"
2389 /* bytes : in, out */
2390 "%lld,%lld,"
2391 /* denied: req, resp */
2392 ",%lld,"
2393 /* errors : request, connect, response */
2394 ",%lld,%lld,"
2395 /* warnings: retries, redispatches */
2396 "%lld,%lld,"
2397 "",
2398 px->id, sv->id,
2399 sv->nbpend, sv->counters.nbpend_max,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002400 sv->cur_sess, sv->counters.cur_sess_max, LIM2A(sv->maxconn, ""), sv->counters.cum_sess,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002401 sv->counters.bytes_in, sv->counters.bytes_out,
2402 sv->counters.failed_secu,
2403 sv->counters.failed_conns, sv->counters.failed_resp,
2404 sv->counters.retries, sv->counters.redispatches);
2405
2406 /* status */
2407 if (sv->state & SRV_MAINTAIN)
2408 chunk_appendf(&trash, "MAINT,");
2409 else if (ref != sv && ref->state & SRV_MAINTAIN)
2410 chunk_appendf(&trash, "MAINT(via),");
2411 else
2412 chunk_appendf(&trash,
2413 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002414 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2415 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002416
2417 chunk_appendf(&trash,
2418 /* weight, active, backup */
2419 "%d,%d,%d,"
2420 "",
2421 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2422 (sv->state & SRV_BACKUP) ? 0 : 1,
2423 (sv->state & SRV_BACKUP) ? 1 : 0);
2424
2425 /* check failures: unique, fatal; last change, total downtime */
2426 if (sv->state & SRV_CHECKED)
2427 chunk_appendf(&trash,
2428 "%lld,%lld,%d,%d,",
2429 sv->counters.failed_checks, sv->counters.down_trans,
2430 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
2431 else
2432 chunk_appendf(&trash, ",,,,");
2433
2434 /* queue limit, pid, iid, sid, */
2435 chunk_appendf(&trash,
2436 "%s,"
2437 "%d,%d,%d,",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002438 LIM2A(sv->maxqueue, ""),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002439 relative_pid, px->uuid, sv->puid);
2440
2441 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01002442 if (sv->state & SRV_WARMINGUP)
2443 chunk_appendf(&trash, "%d", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002444
2445 /* sessions: lbtot */
2446 chunk_appendf(&trash, ",%lld,", sv->counters.cum_lbconn);
2447
2448 /* tracked */
2449 if (sv->track)
2450 chunk_appendf(&trash, "%s/%s,",
2451 sv->track->proxy->id, sv->track->id);
2452 else
2453 chunk_appendf(&trash, ",");
2454
2455 /* type */
2456 chunk_appendf(&trash, "%d,", STATS_TYPE_SV);
2457
2458 /* rate */
2459 chunk_appendf(&trash, "%u,,%u,",
2460 read_freq_ctr(&sv->sess_per_sec),
2461 sv->counters.sps_max);
2462
2463 if (sv->state & SRV_CHECKED) {
2464 /* check_status */
2465 chunk_appendf(&trash, "%s,", get_check_status_info(sv->check.status));
2466
2467 /* check_code */
2468 if (sv->check.status >= HCHK_STATUS_L57DATA)
2469 chunk_appendf(&trash, "%u,", sv->check.code);
2470 else
2471 chunk_appendf(&trash, ",");
2472
2473 /* check_duration */
2474 if (sv->check.status >= HCHK_STATUS_CHECKED)
2475 chunk_appendf(&trash, "%lu,", sv->check.duration);
2476 else
2477 chunk_appendf(&trash, ",");
2478
2479 }
2480 else
2481 chunk_appendf(&trash, ",,,");
2482
2483 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2484 if (px->mode == PR_MODE_HTTP) {
2485 for (i=1; i<6; i++)
2486 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[i]);
2487
2488 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[0]);
2489 }
2490 else
2491 chunk_appendf(&trash, ",,,,,,");
2492
2493 /* failed health analyses */
2494 chunk_appendf(&trash, "%lld,", sv->counters.failed_hana);
2495
2496 /* requests : req_rate, req_rate_max, req_tot, */
2497 chunk_appendf(&trash, ",,,");
2498
2499 /* errors: cli_aborts, srv_aborts */
2500 chunk_appendf(&trash, "%lld,%lld,",
2501 sv->counters.cli_aborts, sv->counters.srv_aborts);
2502
2503 /* compression: in, out, bypassed, comp_rsp */
2504 chunk_appendf(&trash, ",,,,");
2505
2506 /* finish with EOL */
2507 chunk_appendf(&trash, "\n");
2508 }
2509 return 1;
2510}
2511
2512/* Dumps a line for backend <px> to the trash for and uses the state from stream
2513 * interface <si> and stats flags <flags>. The caller is responsible for clearing
2514 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
2515 */
2516static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px, int flags)
2517{
2518 struct chunk src;
2519 int i;
2520
2521 if (!(px->cap & PR_CAP_BE))
2522 return 0;
2523
2524 if ((si->applet.ctx.stats.flags & STAT_BOUND) && !(si->applet.ctx.stats.type & (1 << STATS_TYPE_BE)))
2525 return 0;
2526
Willy Tarreau354898b2012-12-23 18:15:23 +01002527 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002528 chunk_appendf(&trash, "<tr class=\"backend\">");
2529 if (px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2530 /* Column sub-heading for Enable or Disable server */
2531 chunk_appendf(&trash, "<td></td>");
2532 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002533 chunk_appendf(&trash,
2534 "<td class=ac>"
2535 /* name */
2536 "%s<a name=\"%s/Backend\"></a>"
2537 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
2538 "",
2539 (flags & ST_SHLGNDS)?"<u>":"",
2540 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002541
2542 if (flags & ST_SHLGNDS) {
2543 /* balancing */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002544 chunk_appendf(&trash, "<div class=tips>balancing: %s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002545 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
2546
2547 /* cookie */
2548 if (px->cookie_name) {
2549 chunk_appendf(&trash, ", cookie: '");
2550 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
2551 chunk_htmlencode(&trash, &src);
2552 chunk_appendf(&trash, "'");
2553 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002554 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002555 }
2556
2557 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002558 "%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002559 /* queue : current, max */
2560 "<td>%s</td><td>%s</td><td></td>"
2561 /* sessions rate : current, max, limit */
2562 "<td>%s</td><td>%s</td><td></td>"
2563 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002564 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002565 U2H(px->nbpend) /* or px->totpend ? */, U2H(px->be_counters.nbpend_max),
2566 U2H(read_freq_ctr(&px->be_sess_per_sec)), U2H(px->be_counters.sps_max));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002567
2568 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002569 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002570 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002571 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002572 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002573 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002574 U2H(px->beconn), U2H(px->be_counters.conn_max), U2H(px->fullconn),
2575 U2H(px->be_counters.cum_conn),
2576 U2H(px->be_counters.cum_conn));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002577
Willy Tarreau466c9b52012-12-23 02:25:03 +01002578 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002579 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01002580 chunk_appendf(&trash,
2581 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
2582 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
2583 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
2584 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
2585 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
2586 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
2587 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
2588 "<tr><th>- other responses:</th><td>%s</td></tr>"
2589 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
2590 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002591 U2H(px->be_counters.p.http.cum_req),
2592 U2H(px->be_counters.p.http.rsp[1]),
2593 U2H(px->be_counters.p.http.rsp[2]),
2594 U2H(px->be_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002595 px->be_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01002596 (int)(100*px->be_counters.p.http.comp_rsp/px->be_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002597 U2H(px->be_counters.p.http.rsp[3]),
2598 U2H(px->be_counters.p.http.rsp[4]),
2599 U2H(px->be_counters.p.http.rsp[5]),
2600 U2H(px->be_counters.p.http.rsp[0]),
2601 U2H(px->be_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002602 }
2603
2604 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002605 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002606 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01002607 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002608 /* bytes: in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002609 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002610 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002611 U2H(px->be_counters.cum_lbconn),
2612 U2H(px->be_counters.bytes_in));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002613
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002614 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002615 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002616 "<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 +01002617 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002618 U2H(px->be_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002619 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp,
2620 px->be_counters.comp_in ?
2621 (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 +01002622 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "</u>":"");
2623
2624 chunk_appendf(&trash,
2625 /* denied: req, resp */
2626 "<td>%s</td><td>%s</td>"
2627 /* errors : request, connect */
2628 "<td></td><td>%s</td>"
2629 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002630 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002631 /* warnings: retries, redispatches */
2632 "<td>%lld</td><td>%lld</td>"
2633 /* backend status: reflect backend status (up/down): we display UP
2634 * if the backend has known working servers or if it has no server at
2635 * all (eg: for stats). Then we display the total weight, number of
2636 * active and backups. */
2637 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
2638 "<td class=ac>%d</td><td class=ac>%d</td>"
2639 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002640 U2H(px->be_counters.denied_req), U2H(px->be_counters.denied_resp),
2641 U2H(px->be_counters.failed_conns),
2642 U2H(px->be_counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002643 px->be_counters.cli_aborts,
2644 px->be_counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002645 px->be_counters.retries, px->be_counters.redispatches,
2646 human_time(now.tv_sec - px->last_change, 1),
2647 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
2648 "<font color=\"red\"><b>DOWN</b></font>",
2649 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2650 px->srv_act, px->srv_bck);
2651
2652 chunk_appendf(&trash,
2653 /* rest of backend: nothing, down transitions, total downtime, throttle */
2654 "<td class=ac>&nbsp;</td><td>%d</td>"
2655 "<td>%s</td>"
2656 "<td></td>"
2657 "</tr>",
2658 px->down_trans,
2659 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
2660 }
2661 else { /* CSV mode */
2662 chunk_appendf(&trash,
2663 /* pxid, name */
2664 "%s,BACKEND,"
2665 /* queue : current, max */
2666 "%d,%d,"
2667 /* sessions : current, max, limit, total */
2668 "%d,%d,%d,%lld,"
2669 /* bytes : in, out */
2670 "%lld,%lld,"
2671 /* denied: req, resp */
2672 "%lld,%lld,"
2673 /* errors : request, connect, response */
2674 ",%lld,%lld,"
2675 /* warnings: retries, redispatches */
2676 "%lld,%lld,"
2677 /* backend status: reflect backend status (up/down): we display UP
2678 * if the backend has known working servers or if it has no server at
2679 * all (eg: for stats). Then we display the total weight, number of
2680 * active and backups. */
2681 "%s,"
2682 "%d,%d,%d,"
2683 /* rest of backend: nothing, down transitions, last change, total downtime */
2684 ",%d,%d,%d,,"
2685 /* pid, iid, sid, throttle, lbtot, tracked, type */
2686 "%d,%d,0,,%lld,,%d,"
2687 /* rate, rate_lim, rate_max, */
2688 "%u,,%u,"
2689 /* check_status, check_code, check_duration */
2690 ",,,",
2691 px->id,
2692 px->nbpend /* or px->totpend ? */, px->be_counters.nbpend_max,
2693 px->beconn, px->be_counters.conn_max, px->fullconn, px->be_counters.cum_conn,
2694 px->be_counters.bytes_in, px->be_counters.bytes_out,
2695 px->be_counters.denied_req, px->be_counters.denied_resp,
2696 px->be_counters.failed_conns, px->be_counters.failed_resp,
2697 px->be_counters.retries, px->be_counters.redispatches,
2698 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
2699 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2700 px->srv_act, px->srv_bck,
2701 px->down_trans, (int)(now.tv_sec - px->last_change),
2702 px->srv?be_downtime(px):0,
2703 relative_pid, px->uuid,
2704 px->be_counters.cum_lbconn, STATS_TYPE_BE,
2705 read_freq_ctr(&px->be_sess_per_sec),
2706 px->be_counters.sps_max);
2707
2708 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2709 if (px->mode == PR_MODE_HTTP) {
2710 for (i=1; i<6; i++)
2711 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[i]);
2712 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[0]);
2713 }
2714 else
2715 chunk_appendf(&trash, ",,,,,,");
2716
2717 /* failed health analyses */
2718 chunk_appendf(&trash, ",");
2719
2720 /* requests : req_rate, req_rate_max, req_tot, */
2721 chunk_appendf(&trash, ",,,");
2722
2723 /* errors: cli_aborts, srv_aborts */
2724 chunk_appendf(&trash, "%lld,%lld,",
2725 px->be_counters.cli_aborts, px->be_counters.srv_aborts);
2726
2727 /* compression: in, out, bypassed */
2728 chunk_appendf(&trash, "%lld,%lld,%lld,",
2729 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp);
2730
2731 /* compression: comp_rsp */
2732 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.comp_rsp);
2733
2734 /* finish with EOL */
2735 chunk_appendf(&trash, "\n");
2736 }
2737 return 1;
2738}
2739
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002740/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002741 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002742 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002743 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002744static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002745{
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002746 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
2747
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002748 if (px->cap & PR_CAP_BE && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2749 /* A form to enable/disable this proxy servers */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002750
2751 /* scope_txt = search pattern + search query, si->applet.ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
2752 scope_txt[0] = 0;
2753 if (si->applet.ctx.stats.scope_len) {
2754 strcpy(scope_txt, STAT_SCOPE_PATTERN);
2755 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len);
2756 scope_txt[strlen(STAT_SCOPE_PATTERN) + si->applet.ctx.stats.scope_len] = 0;
2757 }
2758
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002759 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002760 "<form action=\"%s%s%s%s\" method=\"post\">",
2761 uri->uri_prefix,
2762 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
2763 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
2764 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002765 }
2766
2767 /* print a new table */
2768 chunk_appendf(&trash,
2769 "<table class=\"tbl\" width=\"100%%\">\n"
2770 "<tr class=\"titre\">"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002771 "<th class=\"pxname\" width=\"10%%\">");
2772
2773 chunk_appendf(&trash,
2774 "<a name=\"%s\"></a>%s"
2775 "<a class=px href=\"#%s\">%s</a>",
2776 px->id,
2777 (uri->flags & ST_SHLGNDS) ? "<u>":"",
2778 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002779
2780 if (uri->flags & ST_SHLGNDS) {
2781 /* cap, mode, id */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002782 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002783 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
2784 px->uuid);
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002785 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002786 }
2787
2788 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002789 "%s</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002790 "<th class=\"%s\" width=\"90%%\">%s</th>"
2791 "</tr>\n"
2792 "</table>\n"
2793 "<table class=\"tbl\" width=\"100%%\">\n"
2794 "<tr class=\"titre\">",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002795 (uri->flags & ST_SHLGNDS) ? "</u>":"",
2796 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
2797
2798 if ((px->cap & PR_CAP_BE) && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2799 /* Column heading for Enable or Disable server */
2800 chunk_appendf(&trash, "<th rowspan=2 width=1></th>");
Willy Tarreau91861262007-10-17 17:06:05 +02002801 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002802
2803 chunk_appendf(&trash,
2804 "<th rowspan=2></th>"
2805 "<th colspan=3>Queue</th>"
2806 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
2807 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
2808 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
2809 "<th colspan=9>Server</th>"
2810 "</tr>\n"
2811 "<tr class=\"titre\">"
2812 "<th>Cur</th><th>Max</th><th>Limit</th>"
2813 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
2814 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
2815 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
2816 "<th>Resp</th><th>Retr</th><th>Redis</th>"
2817 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
2818 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
2819 "<th>Thrtle</th>\n"
2820 "</tr>");
Willy Tarreau91861262007-10-17 17:06:05 +02002821}
2822
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002823/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002824 * stream interface <si>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002825 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002826static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002827{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002828 chunk_appendf(&trash, "</table>");
2829
2830 if ((px->cap & PR_CAP_BE) && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2831 /* close the form used to enable/disable this proxy servers */
2832 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002833 "Choose the action to perform on the checked servers : "
2834 "<select name=action>"
2835 "<option value=\"\"></option>"
2836 "<option value=\"disable\">Disable</option>"
2837 "<option value=\"enable\">Enable</option>"
2838 "<option value=\"stop\">Soft Stop</option>"
2839 "<option value=\"start\">Soft Start</option>"
2840 "<option value=\"shutdown\">Kill Sessions</option>"
2841 "</select>"
2842 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
2843 "&nbsp;<input type=\"submit\" value=\"Apply\">"
2844 "</form>",
2845 px->uuid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002846 }
2847
2848 chunk_appendf(&trash, "<p>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002849}
Willy Tarreau91861262007-10-17 17:06:05 +02002850
2851/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002852 * Dumps statistics for a proxy. The output is sent to the stream interface's
2853 * input buffer. Returns 0 if it had to stop dumping data because of lack of
2854 * buffer space, or non-zero if everything completed. This function is used
2855 * both by the CLI and the HTTP entry points, and is able to dump the output
2856 * in HTML or CSV formats. If the later, <uri> must be NULL.
Willy Tarreau91861262007-10-17 17:06:05 +02002857 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002858static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02002859{
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002860 struct session *s = si->conn->xprt_ctx;
Willy Tarreau7421efb2012-07-02 15:11:27 +02002861 struct channel *rep = si->ib;
Willy Tarreau44267702011-10-28 15:35:33 +02002862 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002863 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02002864
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002865 chunk_reset(&trash);
Willy Tarreau91861262007-10-17 17:06:05 +02002866
Willy Tarreau295a8372011-03-10 11:25:07 +01002867 switch (si->applet.ctx.stats.px_st) {
2868 case STAT_PX_ST_INIT:
Willy Tarreau91861262007-10-17 17:06:05 +02002869 /* we are on a new proxy */
Willy Tarreau91861262007-10-17 17:06:05 +02002870 if (uri && uri->scope) {
2871 /* we have a limited scope, we have to check the proxy name */
2872 struct stat_scope *scope;
2873 int len;
2874
2875 len = strlen(px->id);
2876 scope = uri->scope;
2877
2878 while (scope) {
2879 /* match exact proxy name */
2880 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
2881 break;
2882
2883 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02002884 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02002885 break;
2886 scope = scope->next;
2887 }
2888
2889 /* proxy name not found : don't dump anything */
2890 if (scope == NULL)
2891 return 1;
2892 }
2893
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002894 /* if the user has requested a limited output and the proxy
2895 * name does not match, skip it.
2896 */
2897 if (si->applet.ctx.stats.scope_len &&
2898 strnistr(px->id, strlen(px->id), bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len) == NULL)
2899 return 1;
2900
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002901 if ((si->applet.ctx.stats.flags & STAT_BOUND) &&
2902 (si->applet.ctx.stats.iid != -1) &&
2903 (px->uuid != si->applet.ctx.stats.iid))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002904 return 1;
2905
Willy Tarreau295a8372011-03-10 11:25:07 +01002906 si->applet.ctx.stats.px_st = STAT_PX_ST_TH;
Willy Tarreau91861262007-10-17 17:06:05 +02002907 /* fall through */
2908
Willy Tarreau295a8372011-03-10 11:25:07 +01002909 case STAT_PX_ST_TH:
Willy Tarreau354898b2012-12-23 18:15:23 +01002910 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002911 stats_dump_html_px_hdr(si, px, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002912 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau55bb8452007-10-17 18:44:57 +02002913 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002914 }
Willy Tarreau91861262007-10-17 17:06:05 +02002915
Willy Tarreau295a8372011-03-10 11:25:07 +01002916 si->applet.ctx.stats.px_st = STAT_PX_ST_FE;
Willy Tarreau91861262007-10-17 17:06:05 +02002917 /* fall through */
2918
Willy Tarreau295a8372011-03-10 11:25:07 +01002919 case STAT_PX_ST_FE:
Willy Tarreau91861262007-10-17 17:06:05 +02002920 /* print the frontend */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002921 if (stats_dump_fe_stats(si, px))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002922 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02002923 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02002924
Willy Tarreau4348fad2012-09-20 16:48:07 +02002925 si->applet.ctx.stats.l = px->conf.listeners.n;
Willy Tarreau295a8372011-03-10 11:25:07 +01002926 si->applet.ctx.stats.px_st = STAT_PX_ST_LI;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002927 /* fall through */
2928
Willy Tarreau295a8372011-03-10 11:25:07 +01002929 case STAT_PX_ST_LI:
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002930 /* stats.l has been initialized above */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002931 for (; si->applet.ctx.stats.l != &px->conf.listeners; si->applet.ctx.stats.l = l->by_fe.n) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02002932 if (buffer_almost_full(rep->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02002933 return 0;
2934
Willy Tarreau4348fad2012-09-20 16:48:07 +02002935 l = LIST_ELEM(si->applet.ctx.stats.l, struct listener *, by_fe);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002936 if (!l->counters)
2937 continue;
2938
Willy Tarreau295a8372011-03-10 11:25:07 +01002939 if (si->applet.ctx.stats.flags & STAT_BOUND) {
2940 if (!(si->applet.ctx.stats.type & (1 << STATS_TYPE_SO)))
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002941 break;
2942
Willy Tarreau295a8372011-03-10 11:25:07 +01002943 if (si->applet.ctx.stats.sid != -1 && l->luid != si->applet.ctx.stats.sid)
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002944 continue;
2945 }
2946
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002947 /* print the frontend */
2948 if (stats_dump_li_stats(si, px, l, uri ? uri->flags : 0))
2949 if (bi_putchk(rep, &trash) == -1)
2950 return 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002951 }
2952
Willy Tarreau295a8372011-03-10 11:25:07 +01002953 si->applet.ctx.stats.sv = px->srv; /* may be NULL */
2954 si->applet.ctx.stats.px_st = STAT_PX_ST_SV;
Willy Tarreau91861262007-10-17 17:06:05 +02002955 /* fall through */
2956
Willy Tarreau295a8372011-03-10 11:25:07 +01002957 case STAT_PX_ST_SV:
Willy Tarreau91861262007-10-17 17:06:05 +02002958 /* stats.sv has been initialized above */
Willy Tarreau295a8372011-03-10 11:25:07 +01002959 for (; si->applet.ctx.stats.sv != NULL; si->applet.ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01002960 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 +02002961
Willy Tarreau9b28e032012-10-12 23:49:43 +02002962 if (buffer_almost_full(rep->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02002963 return 0;
2964
Willy Tarreau295a8372011-03-10 11:25:07 +01002965 sv = si->applet.ctx.stats.sv;
Willy Tarreau91861262007-10-17 17:06:05 +02002966
Willy Tarreau295a8372011-03-10 11:25:07 +01002967 if (si->applet.ctx.stats.flags & STAT_BOUND) {
2968 if (!(si->applet.ctx.stats.type & (1 << STATS_TYPE_SV)))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002969 break;
2970
Willy Tarreau295a8372011-03-10 11:25:07 +01002971 if (si->applet.ctx.stats.sid != -1 && sv->puid != si->applet.ctx.stats.sid)
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002972 continue;
2973 }
2974
Willy Tarreau44267702011-10-28 15:35:33 +02002975 if (sv->track)
2976 svs = sv->track;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002977 else
2978 svs = sv;
2979
Willy Tarreau91861262007-10-17 17:06:05 +02002980 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002981 if (!(svs->state & SRV_CHECKED))
Simon Horman8c3d0be2013-11-25 10:46:40 +09002982 sv_state = 8;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002983 else if (svs->state & SRV_RUNNING) {
Simon Horman58c32972013-11-25 10:46:38 +09002984 if (svs->check.health == svs->check.rise + svs->check.fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02002985 sv_state = 3; /* UP */
2986 else
2987 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01002988
Willy Tarreau6b7764a2013-12-04 00:43:21 +01002989 if (svs->state & SRV_DRAIN)
Simon Horman8c3d0be2013-11-25 10:46:40 +09002990 sv_state += 4;
Willy Tarreau6b7764a2013-12-04 00:43:21 +01002991 else if (svs->state & SRV_GOINGDOWN)
2992 sv_state += 2;
Willy Tarreau2ea81932007-11-30 12:04:38 +01002993 }
Willy Tarreau91861262007-10-17 17:06:05 +02002994 else
Simon Horman125d0992013-02-24 17:23:38 +09002995 if (svs->check.health)
Willy Tarreau91861262007-10-17 17:06:05 +02002996 sv_state = 1; /* going up */
2997 else
2998 sv_state = 0; /* DOWN */
2999
Willy Tarreau295a8372011-03-10 11:25:07 +01003000 if (((sv_state == 0) || (sv->state & SRV_MAINTAIN)) && (si->applet.ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02003001 /* do not report servers which are DOWN */
Willy Tarreau295a8372011-03-10 11:25:07 +01003002 si->applet.ctx.stats.sv = sv->next;
Willy Tarreau91861262007-10-17 17:06:05 +02003003 continue;
3004 }
3005
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003006 if (stats_dump_sv_stats(si, px, uri ? uri->flags : 0, sv, sv_state))
3007 if (bi_putchk(rep, &trash) == -1)
3008 return 0;
3009 } /* for sv */
Cyril Bonté474be412010-10-12 00:14:36 +02003010
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003011 si->applet.ctx.stats.px_st = STAT_PX_ST_BE;
3012 /* fall through */
Cyril Bonté70be45d2010-10-12 00:14:35 +02003013
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003014 case STAT_PX_ST_BE:
3015 /* print the backend */
3016 if (stats_dump_be_stats(si, px, uri ? uri->flags : 0))
3017 if (bi_putchk(rep, &trash) == -1)
3018 return 0;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003019
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003020 si->applet.ctx.stats.px_st = STAT_PX_ST_END;
3021 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003022
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003023 case STAT_PX_ST_END:
Willy Tarreau354898b2012-12-23 18:15:23 +01003024 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003025 stats_dump_html_px_end(si, px);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003026 if (bi_putchk(rep, &trash) == -1)
3027 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003028 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003029
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003030 si->applet.ctx.stats.px_st = STAT_PX_ST_FIN;
3031 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003032
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003033 case STAT_PX_ST_FIN:
3034 return 1;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003035
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003036 default:
3037 /* unknown state, we should put an abort() here ! */
3038 return 1;
3039 }
3040}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003041
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003042/* Dumps the HTTP stats head block to the trash for and uses the per-uri
3043 * parameters <uri>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003044 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003045static void stats_dump_html_head(struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003046{
3047 /* WARNING! This must fit in the first buffer !!! */
3048 chunk_appendf(&trash,
3049 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3050 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3051 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3052 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3053 "<style type=\"text/css\"><!--\n"
3054 "body {"
3055 " font-family: arial, helvetica, sans-serif;"
3056 " font-size: 12px;"
3057 " font-weight: normal;"
3058 " color: black;"
3059 " background: white;"
3060 "}\n"
3061 "th,td {"
3062 " font-size: 10px;"
3063 "}\n"
3064 "h1 {"
3065 " font-size: x-large;"
3066 " margin-bottom: 0.5em;"
3067 "}\n"
3068 "h2 {"
3069 " font-family: helvetica, arial;"
3070 " font-size: x-large;"
3071 " font-weight: bold;"
3072 " font-style: italic;"
3073 " color: #6020a0;"
3074 " margin-top: 0em;"
3075 " margin-bottom: 0em;"
3076 "}\n"
3077 "h3 {"
3078 " font-family: helvetica, arial;"
3079 " font-size: 16px;"
3080 " font-weight: bold;"
3081 " color: #b00040;"
3082 " background: #e8e8d0;"
3083 " margin-top: 0em;"
3084 " margin-bottom: 0em;"
3085 "}\n"
3086 "li {"
3087 " margin-top: 0.25em;"
3088 " margin-right: 2em;"
3089 "}\n"
3090 ".hr {margin-top: 0.25em;"
3091 " border-color: black;"
3092 " border-bottom-style: solid;"
3093 "}\n"
3094 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3095 ".total {background: #20D0D0;color: #ffff80;}\n"
3096 ".frontend {background: #e8e8d0;}\n"
3097 ".socket {background: #d0d0d0;}\n"
3098 ".backend {background: #e8e8d0;}\n"
3099 ".active0 {background: #ff9090;}\n"
3100 ".active1 {background: #ffd020;}\n"
3101 ".active2 {background: #ffffa0;}\n"
3102 ".active3 {background: #c0ffc0;}\n"
3103 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003104 ".active5 {background: #20a0ff;}\n" /* NOLB state shows different to be detected */
3105 ".active6 {background: #ffffa0;}\n" /* DRAIN going down = same as going down */
3106 ".active7 {background: #20a0FF;}\n" /* DRAIN must be detected (weight=0) */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003107 ".active8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003108 ".backup0 {background: #ff9090;}\n"
3109 ".backup1 {background: #ff80ff;}\n"
3110 ".backup2 {background: #c060ff;}\n"
3111 ".backup3 {background: #b0d0ff;}\n"
3112 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
3113 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003114 ".backup6 {background: #c060ff;}\n"
3115 ".backup7 {background: #cc9900;}\n"
3116 ".backup8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003117 ".maintain {background: #c07820;}\n"
3118 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3119 "\n"
3120 "a.px:link {color: #ffff40; text-decoration: none;}"
3121 "a.px:visited {color: #ffff40; text-decoration: none;}"
3122 "a.px:hover {color: #ffffff; text-decoration: none;}"
3123 "a.lfsb:link {color: #000000; text-decoration: none;}"
3124 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3125 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3126 "\n"
3127 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3128 "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"
3129 "table.tbl td.ac { text-align: center;}\n"
3130 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3131 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3132 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3133 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3134 "\n"
3135 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3136 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3137 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003138 "table.det { border-collapse: collapse; border-style: none; }\n"
3139 "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"
3140 "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;font-family: monospace;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003141 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003142 "div.tips {\n"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003143 " display:block;\n"
3144 " visibility:hidden;\n"
3145 " z-index:2147483647;\n"
3146 " position:absolute;\n"
3147 " padding:2px 4px 3px;\n"
3148 " background:#f0f060; color:#000000;\n"
3149 " border:1px solid #7040c0;\n"
3150 " white-space:nowrap;\n"
3151 " font-style:normal;font-size:11px;font-weight:normal;\n"
3152 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3153 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3154 "}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003155 "u:hover div.tips {visibility:visible;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003156 "-->\n"
3157 "</style></head>\n",
3158 (uri->flags & ST_SHNODE) ? " on " : "",
3159 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
3160 );
3161}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003162
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003163/* Dumps the HTML stats information block to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003164 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003165 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003166 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003167static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003168{
3169 unsigned int up = (now.tv_sec - start_date.tv_sec);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003170 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003171
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003172 /* WARNING! this has to fit the first packet too.
3173 * We are around 3.5 kB, add adding entries will
3174 * become tricky if we want to support 4kB buffers !
3175 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003176 chunk_appendf(&trash,
3177 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3178 PRODUCT_NAME "%s</a></h1>\n"
3179 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3180 "<hr width=\"100%%\" class=\"hr\">\n"
3181 "<h3>&gt; General process information</h3>\n"
3182 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
3183 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
3184 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3185 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3186 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
3187 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec<br>\n"
3188 "Running tasks: %d/%d; idle = %d %%<br>\n"
3189 "</td><td align=\"center\" nowrap>\n"
3190 "<table class=\"lgd\"><tr>\n"
3191 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
3192 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
3193 "</tr><tr>\n"
3194 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
3195 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
3196 "</tr><tr>\n"
3197 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
3198 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3199 "</tr><tr>\n"
3200 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Simon Horman8c3d0be2013-11-25 10:46:40 +09003201 "</tr><tr>\n"
3202 "<td class=\"active8\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003203 "</tr><tr>\n"
3204 "<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 -07003205 "</tr><tr>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003206 "<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 +01003207 "</tr></table>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003208 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003209 "</td>"
3210 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3211 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3212 "",
3213 (uri->flags & ST_HIDEVER) ? "" : (STATS_VERSION_STRING),
3214 pid, (uri->flags & ST_SHNODE) ? " on " : "",
3215 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3216 (uri->flags & ST_SHDESC) ? ": " : "",
3217 (uri->flags & ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
3218 pid, relative_pid, global.nbproc,
3219 up / 86400, (up % 86400) / 3600,
3220 (up % 3600) / 60, (up % 60),
3221 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3222 global.rlimit_memmax ? " MB" : "",
3223 global.rlimit_nofile,
3224 global.maxsock, global.maxconn, global.maxpipes,
3225 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
3226 run_queue_cur, nb_tasks_cur, idle_pct
3227 );
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003228
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003229 /* scope_txt = search query, si->applet.ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3230 memcpy(scope_txt, bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len);
3231 scope_txt[si->applet.ctx.stats.scope_len] = '\0';
3232
3233 chunk_appendf(&trash,
Cyril Bonté54656842013-04-18 22:38:35 +02003234 "<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 +02003235 uri->uri_prefix,
3236 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3237 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3238 (si->applet.ctx.stats.scope_len > 0) ? scope_txt : "",
3239 STAT_SCOPE_TXT_MAXLEN);
3240
3241 /* scope_txt = search pattern + search query, si->applet.ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3242 scope_txt[0] = 0;
3243 if (si->applet.ctx.stats.scope_len) {
3244 strcpy(scope_txt, STAT_SCOPE_PATTERN);
3245 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len);
3246 scope_txt[strlen(STAT_SCOPE_PATTERN) + si->applet.ctx.stats.scope_len] = 0;
3247 }
3248
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003249 if (si->applet.ctx.stats.flags & STAT_HIDE_DOWN)
3250 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003251 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003252 uri->uri_prefix,
3253 "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003254 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3255 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003256 else
3257 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003258 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003259 uri->uri_prefix,
3260 ";up",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003261 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3262 scope_txt);
Willy Tarreau91861262007-10-17 17:06:05 +02003263
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003264 if (uri->refresh > 0) {
3265 if (si->applet.ctx.stats.flags & STAT_NO_REFRESH)
3266 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003267 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003268 uri->uri_prefix,
3269 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003270 "",
3271 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003272 else
3273 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003274 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003275 uri->uri_prefix,
3276 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003277 ";norefresh",
3278 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003279 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02003280
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003281 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003282 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003283 uri->uri_prefix,
3284 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003285 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3286 scope_txt);
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02003287
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003288 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003289 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003290 uri->uri_prefix,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003291 (uri->refresh > 0) ? ";norefresh" : "",
3292 scope_txt);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003293
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003294 chunk_appendf(&trash,
3295 "</ul></td>"
3296 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3297 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3298 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3299 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3300 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3301 "</ul>"
3302 "</td>"
3303 "</tr></table>\n"
3304 ""
3305 );
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003306
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003307 if (si->applet.ctx.stats.st_code) {
3308 switch (si->applet.ctx.stats.st_code) {
3309 case STAT_STATUS_DONE:
3310 chunk_appendf(&trash,
3311 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003312 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003313 "Action processed successfully."
Willy Tarreauba6be982013-04-19 12:16:55 +02003314 "</div>\n", uri->uri_prefix,
3315 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3316 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3317 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003318 break;
3319 case STAT_STATUS_NONE:
3320 chunk_appendf(&trash,
3321 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003322 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003323 "Nothing has changed."
Willy Tarreauba6be982013-04-19 12:16:55 +02003324 "</div>\n", uri->uri_prefix,
3325 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3326 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3327 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003328 break;
3329 case STAT_STATUS_PART:
3330 chunk_appendf(&trash,
3331 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003332 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003333 "Action partially processed.<br>"
3334 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
Willy Tarreauba6be982013-04-19 12:16:55 +02003335 "</div>\n", uri->uri_prefix,
3336 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3337 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3338 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003339 break;
3340 case STAT_STATUS_ERRP:
3341 chunk_appendf(&trash,
3342 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003343 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003344 "Action not processed because of invalid parameters."
3345 "<ul>"
3346 "<li>The action is maybe unknown.</li>"
3347 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3348 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3349 "</ul>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003350 "</div>\n", uri->uri_prefix,
3351 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3352 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3353 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003354 break;
3355 case STAT_STATUS_EXCD:
3356 chunk_appendf(&trash,
3357 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003358 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003359 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3360 "You should retry with less servers at a time.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003361 "</div>\n", uri->uri_prefix,
3362 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3363 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3364 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003365 break;
3366 case STAT_STATUS_DENY:
3367 chunk_appendf(&trash,
3368 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003369 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003370 "<b>Action denied.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003371 "</div>\n", uri->uri_prefix,
3372 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3373 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3374 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003375 break;
3376 default:
3377 chunk_appendf(&trash,
Simon Horman8c3d0be2013-11-25 10:46:40 +09003378 "<p><div class=active8>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003379 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003380 "Unexpected result."
Willy Tarreauba6be982013-04-19 12:16:55 +02003381 "</div>\n", uri->uri_prefix,
3382 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3383 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3384 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003385 }
3386 chunk_appendf(&trash, "<p>\n");
3387 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003388}
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003389
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003390/* Dumps the HTML stats trailer block to the trash. The caller is responsible
3391 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003392 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003393static void stats_dump_html_end()
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003394{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003395 chunk_appendf(&trash, "</body></html>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003396}
Willy Tarreau7f062c42009-03-05 18:43:00 +01003397
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003398/* This function dumps statistics onto the stream interface's read buffer in
3399 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
3400 * are ignored for CSV format (hence <uri> may be NULL there). The xprt_ctx must
3401 * have been zeroed first, and the flags properly set. It returns 0 if it had to
3402 * stop writing data and an I/O is needed, 1 if the dump is finished and the
3403 * session must be closed, or -1 in case of any error. This function is used by
3404 * both the CLI and the HTTP handlers.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003405 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003406static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003407{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003408 struct channel *rep = si->ib;
3409 struct proxy *px;
Willy Tarreau7f062c42009-03-05 18:43:00 +01003410
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003411 chunk_reset(&trash);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02003412
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003413 switch (si->applet.st2) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003414 case STAT_ST_INIT:
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003415 si->applet.st2 = STAT_ST_HEAD; /* let's start producing data */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003416 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01003417
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003418 case STAT_ST_HEAD:
Willy Tarreau354898b2012-12-23 18:15:23 +01003419 if (si->applet.ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003420 stats_dump_html_head(uri);
Willy Tarreau354898b2012-12-23 18:15:23 +01003421 else
3422 stats_dump_csv_header();
Willy Tarreaud9b587f2010-02-26 10:05:55 +01003423
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003424 if (bi_putchk(rep, &trash) == -1)
3425 return 0;
Willy Tarreauae526782010-03-04 20:34:23 +01003426
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003427 si->applet.st2 = STAT_ST_INFO;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003428 /* fall through */
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003429
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003430 case STAT_ST_INFO:
Willy Tarreau354898b2012-12-23 18:15:23 +01003431 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003432 stats_dump_html_info(si, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003433 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003434 return 0;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003435 }
Willy Tarreau91861262007-10-17 17:06:05 +02003436
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003437 si->applet.ctx.stats.px = proxy;
3438 si->applet.ctx.stats.px_st = STAT_PX_ST_INIT;
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003439 si->applet.st2 = STAT_ST_LIST;
Willy Tarreau91861262007-10-17 17:06:05 +02003440 /* fall through */
3441
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003442 case STAT_ST_LIST:
3443 /* dump proxies */
3444 while (si->applet.ctx.stats.px) {
3445 if (buffer_almost_full(rep->buf))
3446 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003447
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003448 px = si->applet.ctx.stats.px;
3449 /* skip the disabled proxies, global frontend and non-networked ones */
3450 if (px->state != PR_STSTOPPED && px->uuid > 0 && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003451 if (stats_dump_proxy_to_buffer(si, px, uri) == 0)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003452 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003453
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003454 si->applet.ctx.stats.px = px->next;
3455 si->applet.ctx.stats.px_st = STAT_PX_ST_INIT;
3456 }
3457 /* here, we just have reached the last proxy */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003458
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003459 si->applet.st2 = STAT_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003460 /* fall through */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003461
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003462 case STAT_ST_END:
Willy Tarreau354898b2012-12-23 18:15:23 +01003463 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003464 stats_dump_html_end();
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003465 if (bi_putchk(rep, &trash) == -1)
3466 return 0;
3467 }
Willy Tarreau55058a72012-11-21 08:27:21 +01003468
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003469 si->applet.st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003470 /* fall through */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02003471
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003472 case STAT_ST_FIN:
3473 return 1;
Willy Tarreau55058a72012-11-21 08:27:21 +01003474
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003475 default:
3476 /* unknown state ! */
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003477 si->applet.st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003478 return -1;
3479 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003480}
Willy Tarreauae526782010-03-04 20:34:23 +01003481
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003482/* This I/O handler runs as an applet embedded in a stream interface. It is
3483 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
3484 * si->applet.st0 becomes non-zero once the transfer is finished. The handler
3485 * automatically unregisters itself once transfer is complete.
3486 */
3487static void http_stats_io_handler(struct stream_interface *si)
3488{
3489 struct session *s = si->conn->xprt_ctx;
3490 struct channel *req = si->ob;
3491 struct channel *res = si->ib;
Willy Tarreau55058a72012-11-21 08:27:21 +01003492
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003493 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
3494 goto out;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003495
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003496 /* check that the output is not closed */
3497 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW))
3498 si->applet.st0 = 1;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003499
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003500 if (!si->applet.st0) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003501 if (stats_dump_stat_to_buffer(si, s->be->uri_auth)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003502 si->applet.st0 = 1;
3503 si_shutw(si);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003504 }
3505 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02003506
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003507 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST))
3508 si_shutw(si);
Willy Tarreau91861262007-10-17 17:06:05 +02003509
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003510 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && si->applet.st0) {
3511 si_shutr(si);
3512 res->flags |= CF_READ_NULL;
3513 }
Willy Tarreau91861262007-10-17 17:06:05 +02003514
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003515 /* update all other flags and resync with the other side */
3516 si_update(si);
Willy Tarreau91861262007-10-17 17:06:05 +02003517
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003518 /* we don't want to expire timeouts while we're processing requests */
3519 si->ib->rex = TICK_ETERNITY;
3520 si->ob->wex = TICK_ETERNITY;
Willy Tarreau91861262007-10-17 17:06:05 +02003521
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003522 out:
3523 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
3524 /* check that we have released everything then unregister */
3525 stream_int_unregister_handler(si);
Willy Tarreau91861262007-10-17 17:06:05 +02003526 }
3527}
3528
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003529
Willy Tarreau909d5172012-11-26 03:04:41 +01003530static inline const char *get_conn_ctrl_name(const struct connection *conn)
3531{
3532 if (!conn->ctrl)
3533 return "NONE";
3534 return conn->ctrl->name;
3535}
3536
3537static inline const char *get_conn_xprt_name(const struct connection *conn)
3538{
3539 static char ptr[17];
3540
3541 if (!conn->xprt)
3542 return "NONE";
3543
3544 if (conn->xprt == &raw_sock)
3545 return "RAW";
3546
3547#ifdef USE_OPENSSL
3548 if (conn->xprt == &ssl_sock)
3549 return "SSL";
3550#endif
3551 snprintf(ptr, sizeof(ptr), "%p", conn->xprt);
3552 return ptr;
3553}
3554
3555static inline const char *get_conn_data_name(const struct connection *conn)
3556{
3557 static char ptr[17];
3558
3559 if (!conn->data)
3560 return "NONE";
3561
3562 if (conn->data == &sess_conn_cb)
3563 return "SESS";
3564
3565 if (conn->data == &si_conn_cb)
3566 return "STRM";
3567
3568 if (conn->data == &check_conn_cb)
3569 return "CHCK";
3570
3571 snprintf(ptr, sizeof(ptr), "%p", conn->data);
3572 return ptr;
3573}
3574
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003575/* This function dumps a complete session state onto the stream interface's
3576 * read buffer. The xprt_ctx must have been zeroed first, and the flags
3577 * properly set. The session has to be set in xprt_ctx.sess.target. It returns
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01003578 * 0 if the output buffer is full and it needs to be called again, otherwise
3579 * non-zero. It is designed to be called from stats_dump_sess_to_buffer() below.
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003580 */
Willy Tarreau76153662012-11-26 01:16:39 +01003581static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003582{
3583 struct tm tm;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003584 extern const char *monthname[12];
3585 char pn[INET6_ADDRSTRLEN];
3586
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003587 chunk_reset(&trash);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003588
Willy Tarreau295a8372011-03-10 11:25:07 +01003589 if (si->applet.ctx.sess.section > 0 && si->applet.ctx.sess.uid != sess->uniq_id) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003590 /* session changed, no need to go any further */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003591 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
3592 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003593 return 0;
Willy Tarreau295a8372011-03-10 11:25:07 +01003594 si->applet.ctx.sess.uid = 0;
Willy Tarreau76153662012-11-26 01:16:39 +01003595 si->applet.ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003596 return 1;
3597 }
3598
Willy Tarreau295a8372011-03-10 11:25:07 +01003599 switch (si->applet.ctx.sess.section) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003600 case 0: /* main status of the session */
Willy Tarreau295a8372011-03-10 11:25:07 +01003601 si->applet.ctx.sess.uid = sess->uniq_id;
3602 si->applet.ctx.sess.section = 1;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003603 /* fall through */
3604
3605 case 1:
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003606 get_localtime(sess->logs.accept_date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003607 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003608 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003609 sess,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003610 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3611 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003612 sess->uniq_id,
Willy Tarreaue95c4ce2013-01-24 00:48:39 +01003613 sess->listener && sess->listener->proto->name ? sess->listener->proto->name : "?");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003614
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003615 switch (addr_to_str(&sess->si[0].conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003616 case AF_INET:
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003617 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003618 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003619 pn, get_host_port(&sess->si[0].conn->addr.from));
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003620 break;
3621 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003622 chunk_appendf(&trash, " source=unix:%d\n", sess->listener->luid);
Emeric Brun837ca522010-10-22 16:19:01 +02003623 break;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003624 default:
3625 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003626 chunk_appendf(&trash, "\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003627 break;
3628 }
3629
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003630 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003631 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02003632 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003633
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003634 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07003635 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003636 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
3637 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
3638 sess->listener ? sess->listener->luid : 0);
3639
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003640 conn_get_to_addr(sess->si[0].conn);
3641 switch (addr_to_str(&sess->si[0].conn->addr.to, pn, sizeof(pn))) {
Daniel Schultze90690c72012-03-23 10:53:36 -07003642 case AF_INET:
3643 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003644 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003645 pn, get_host_port(&sess->si[0].conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07003646 break;
3647 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003648 chunk_appendf(&trash, " addr=unix:%d\n", sess->listener->luid);
Daniel Schultze90690c72012-03-23 10:53:36 -07003649 break;
3650 default:
3651 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003652 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003653 break;
3654 }
3655
Willy Tarreau50943332011-09-02 17:33:05 +02003656 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003657 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07003658 " backend=%s (id=%u mode=%s)",
Willy Tarreau50943332011-09-02 17:33:05 +02003659 sess->be->id,
Daniel Schultze90690c72012-03-23 10:53:36 -07003660 sess->be->uuid, sess->be->mode ? "http" : "tcp");
3661 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003662 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
Daniel Schultze90690c72012-03-23 10:53:36 -07003663
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003664 conn_get_from_addr(sess->si[1].conn);
3665 switch (addr_to_str(&sess->si[1].conn->addr.from, pn, sizeof(pn))) {
Daniel Schultze90690c72012-03-23 10:53:36 -07003666 case AF_INET:
3667 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003668 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003669 pn, get_host_port(&sess->si[1].conn->addr.from));
Daniel Schultze90690c72012-03-23 10:53:36 -07003670 break;
3671 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003672 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003673 break;
3674 default:
3675 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003676 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003677 break;
3678 }
3679
3680 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003681 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07003682 " server=%s (id=%u)",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003683 objt_server(sess->target) ? objt_server(sess->target)->id : "<none>",
3684 objt_server(sess->target) ? objt_server(sess->target)->puid : 0);
Willy Tarreau50943332011-09-02 17:33:05 +02003685 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003686 chunk_appendf(&trash, " server=<NONE> (id=-1)");
Daniel Schultze90690c72012-03-23 10:53:36 -07003687
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003688 conn_get_to_addr(sess->si[1].conn);
3689 switch (addr_to_str(&sess->si[1].conn->addr.to, pn, sizeof(pn))) {
Daniel Schultze90690c72012-03-23 10:53:36 -07003690 case AF_INET:
3691 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003692 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003693 pn, get_host_port(&sess->si[1].conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07003694 break;
3695 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003696 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003697 break;
3698 default:
3699 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003700 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003701 break;
3702 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003703
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003704 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003705 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003706 sess->task,
3707 sess->task->state,
3708 sess->task->nice, sess->task->calls,
3709 sess->task->expire ?
3710 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
3711 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
3712 TICKS_TO_MS(1000)) : "<NEVER>",
3713 task_in_rq(sess->task) ? ", running" : "");
3714
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003715 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003716 " age=%s)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003717 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
3718
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003719 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003720 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s\n",
3721 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
3722 http_msg_state_str(sess->txn.req.msg_state), http_msg_state_str(sess->txn.rsp.msg_state));
3723
3724 chunk_appendf(&trash,
3725 " si[0]=%p (state=%s flags=0x%02x conn0=%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003726 &sess->si[0],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003727 si_state_str(sess->si[0].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003728 sess->si[0].flags,
Willy Tarreaubc174aa2012-11-19 16:10:32 +01003729 sess->si[0].conn,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003730 sess->si[0].exp ?
3731 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
3732 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
3733 TICKS_TO_MS(1000)) : "<NEVER>",
3734 sess->si[0].err_type);
3735
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003736 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003737 " si[1]=%p (state=%s flags=0x%02x conn1=%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003738 &sess->si[1],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003739 si_state_str(sess->si[1].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003740 sess->si[1].flags,
Willy Tarreaubc174aa2012-11-19 16:10:32 +01003741 sess->si[1].conn,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003742 sess->si[1].exp ?
3743 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
3744 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
3745 TICKS_TO_MS(1000)) : "<NEVER>",
3746 sess->si[1].err_type);
3747
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003748 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003749 " co0=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreau909d5172012-11-26 03:04:41 +01003750 sess->si[0].conn,
3751 get_conn_ctrl_name(sess->si[0].conn),
3752 get_conn_xprt_name(sess->si[0].conn),
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003753 get_conn_data_name(sess->si[0].conn),
3754 obj_type_name(sess->si[0].conn->target),
3755 obj_base_ptr(sess->si[0].conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01003756
3757 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003758 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreau1feca012012-11-19 18:15:19 +01003759 sess->si[0].conn->flags,
3760 sess->si[0].conn->t.sock.fd,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003761 sess->si[0].conn->t.sock.fd >= 0 ? fdtab[sess->si[0].conn->t.sock.fd].spec_e : 0,
3762 sess->si[0].conn->t.sock.fd >= 0 ? fdtab[sess->si[0].conn->t.sock.fd].spec_p : 0,
3763 sess->si[0].conn->t.sock.fd >= 0 ? fdtab[sess->si[0].conn->t.sock.fd].updated : 0);
Willy Tarreaubc174aa2012-11-19 16:10:32 +01003764
3765 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003766 " co1=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreau909d5172012-11-26 03:04:41 +01003767 sess->si[1].conn,
3768 get_conn_ctrl_name(sess->si[1].conn),
3769 get_conn_xprt_name(sess->si[1].conn),
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003770 get_conn_data_name(sess->si[1].conn),
3771 obj_type_name(sess->si[1].conn->target),
3772 obj_base_ptr(sess->si[1].conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01003773
3774 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003775 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreau1feca012012-11-19 18:15:19 +01003776 sess->si[1].conn->flags,
3777 sess->si[1].conn->t.sock.fd,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003778 sess->si[1].conn->t.sock.fd >= 0 ? fdtab[sess->si[1].conn->t.sock.fd].spec_e : 0,
3779 sess->si[1].conn->t.sock.fd >= 0 ? fdtab[sess->si[1].conn->t.sock.fd].spec_p : 0,
3780 sess->si[1].conn->t.sock.fd >= 0 ? fdtab[sess->si[1].conn->t.sock.fd].updated : 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003781
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003782 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01003783 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003784 " an_exp=%s",
3785 sess->req,
3786 sess->req->flags, sess->req->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003787 sess->req->pipe ? sess->req->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01003788 sess->req->to_forward, sess->req->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003789 sess->req->analyse_exp ?
3790 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
3791 TICKS_TO_MS(1000)) : "<NEVER>");
3792
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003793 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003794 " rex=%s",
3795 sess->req->rex ?
3796 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
3797 TICKS_TO_MS(1000)) : "<NEVER>");
3798
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003799 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003800 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01003801 " buf=%p data=%p o=%d p=%d req.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003802 sess->req->wex ?
3803 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
3804 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01003805 sess->req->buf,
3806 sess->req->buf->data, sess->req->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003807 (int)(sess->req->buf->p - sess->req->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01003808 sess->txn.req.next, sess->req->buf->i,
3809 sess->req->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003810
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003811 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01003812 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003813 " an_exp=%s",
3814 sess->rep,
3815 sess->rep->flags, sess->rep->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003816 sess->rep->pipe ? sess->rep->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01003817 sess->rep->to_forward, sess->rep->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003818 sess->rep->analyse_exp ?
3819 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
3820 TICKS_TO_MS(1000)) : "<NEVER>");
3821
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003822 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003823 " rex=%s",
3824 sess->rep->rex ?
3825 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
3826 TICKS_TO_MS(1000)) : "<NEVER>");
3827
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003828 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003829 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01003830 " buf=%p data=%p o=%d p=%d rsp.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003831 sess->rep->wex ?
3832 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
3833 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01003834 sess->rep->buf,
3835 sess->rep->buf->data, sess->rep->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003836 (int)(sess->rep->buf->p - sess->rep->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01003837 sess->txn.rsp.next, sess->rep->buf->i,
3838 sess->rep->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003839
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003840 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003841 return 0;
3842
3843 /* use other states to dump the contents */
3844 }
3845 /* end of dump */
Willy Tarreau295a8372011-03-10 11:25:07 +01003846 si->applet.ctx.sess.uid = 0;
Willy Tarreau76153662012-11-26 01:16:39 +01003847 si->applet.ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003848 return 1;
3849}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003850
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003851/* This function dumps all sessions' states onto the stream interface's
3852 * read buffer. The xprt_ctx must have been zeroed first, and the flags
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01003853 * properly set. It returns 0 if the output buffer is full and it needs
3854 * to be called again, otherwise non-zero. It is designed to be called
3855 * from stats_dump_sess_to_buffer() below.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003856 */
Simon Horman9bd2c732011-06-15 15:18:44 +09003857static int stats_dump_sess_to_buffer(struct stream_interface *si)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003858{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003859 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003860 /* If we're forced to shut down, we might have to remove our
3861 * reference to the last session being dumped.
3862 */
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003863 if (si->applet.st2 == STAT_ST_LIST) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003864 if (!LIST_ISEMPTY(&si->applet.ctx.sess.bref.users)) {
3865 LIST_DEL(&si->applet.ctx.sess.bref.users);
3866 LIST_INIT(&si->applet.ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003867 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003868 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02003869 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003870 }
3871
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003872 chunk_reset(&trash);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003873
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003874 switch (si->applet.st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003875 case STAT_ST_INIT:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003876 /* the function had not been called yet, let's prepare the
3877 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003878 * pointer to the first in the global list. When a target
3879 * session is being destroyed, it is responsible for updating
3880 * this pointer. We know we have reached the end when this
3881 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003882 */
Willy Tarreau295a8372011-03-10 11:25:07 +01003883 LIST_INIT(&si->applet.ctx.sess.bref.users);
3884 si->applet.ctx.sess.bref.ref = sessions.n;
Willy Tarreaua94d2d72013-07-08 15:38:15 +02003885 si->applet.st2 = STAT_ST_LIST;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003886 /* fall through */
3887
Willy Tarreau295a8372011-03-10 11:25:07 +01003888 case STAT_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003889 /* first, let's detach the back-ref from a possible previous session */
Willy Tarreau295a8372011-03-10 11:25:07 +01003890 if (!LIST_ISEMPTY(&si->applet.ctx.sess.bref.users)) {
3891 LIST_DEL(&si->applet.ctx.sess.bref.users);
3892 LIST_INIT(&si->applet.ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003893 }
3894
3895 /* and start from where we stopped */
Willy Tarreau295a8372011-03-10 11:25:07 +01003896 while (si->applet.ctx.sess.bref.ref != &sessions) {
Cyril Bontéacd7d632010-11-01 19:26:02 +01003897 char pn[INET6_ADDRSTRLEN];
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003898 struct session *curr_sess;
3899
Willy Tarreau295a8372011-03-10 11:25:07 +01003900 curr_sess = LIST_ELEM(si->applet.ctx.sess.bref.ref, struct session *, list);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003901
Willy Tarreau295a8372011-03-10 11:25:07 +01003902 if (si->applet.ctx.sess.target) {
Willy Tarreau76153662012-11-26 01:16:39 +01003903 if (si->applet.ctx.sess.target != (void *)-1 && si->applet.ctx.sess.target != curr_sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003904 goto next_sess;
3905
Willy Tarreau295a8372011-03-10 11:25:07 +01003906 LIST_ADDQ(&curr_sess->back_refs, &si->applet.ctx.sess.bref.users);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003907 /* call the proper dump() function and return if we're missing space */
Willy Tarreau76153662012-11-26 01:16:39 +01003908 if (!stats_dump_full_sess_to_buffer(si, curr_sess))
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003909 return 0;
3910
3911 /* session dump complete */
Willy Tarreau295a8372011-03-10 11:25:07 +01003912 LIST_DEL(&si->applet.ctx.sess.bref.users);
3913 LIST_INIT(&si->applet.ctx.sess.bref.users);
Willy Tarreau76153662012-11-26 01:16:39 +01003914 if (si->applet.ctx.sess.target != (void *)-1) {
3915 si->applet.ctx.sess.target = NULL;
3916 break;
3917 }
3918 else
3919 goto next_sess;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003920 }
3921
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003922 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003923 "%p: proto=%s",
3924 curr_sess,
3925 curr_sess->listener->proto->name);
3926
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003927
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003928 switch (addr_to_str(&curr_sess->si[0].conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +02003929 case AF_INET:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003930 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003931 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003932 " src=%s:%d fe=%s be=%s srv=%s",
3933 pn,
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003934 get_host_port(&curr_sess->si[0].conn->addr.from),
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003935 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02003936 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003937 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003938 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003939 break;
3940 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003941 chunk_appendf(&trash,
Emeric Brun837ca522010-10-22 16:19:01 +02003942 " src=unix:%d fe=%s be=%s srv=%s",
3943 curr_sess->listener->luid,
3944 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02003945 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003946 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Emeric Brun837ca522010-10-22 16:19:01 +02003947 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003948 break;
3949 }
3950
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003951 chunk_appendf(&trash,
Willy Tarreau65671ab2009-10-04 14:24:59 +02003952 " ts=%02x age=%s calls=%d",
3953 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01003954 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
3955 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003956
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003957 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003958 " rq[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003959 curr_sess->req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003960 curr_sess->req->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003961 curr_sess->req->analysers,
3962 curr_sess->req->rex ?
3963 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
3964 TICKS_TO_MS(1000)) : "");
3965
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003966 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003967 ",wx=%s",
3968 curr_sess->req->wex ?
3969 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
3970 TICKS_TO_MS(1000)) : "");
3971
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003972 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003973 ",ax=%s]",
3974 curr_sess->req->analyse_exp ?
3975 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
3976 TICKS_TO_MS(1000)) : "");
3977
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003978 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003979 " rp[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003980 curr_sess->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003981 curr_sess->rep->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003982 curr_sess->rep->analysers,
3983 curr_sess->rep->rex ?
3984 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
3985 TICKS_TO_MS(1000)) : "");
3986
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003987 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003988 ",wx=%s",
3989 curr_sess->rep->wex ?
3990 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
3991 TICKS_TO_MS(1000)) : "");
3992
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003993 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003994 ",ax=%s]",
3995 curr_sess->rep->analyse_exp ?
3996 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
3997 TICKS_TO_MS(1000)) : "");
3998
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003999 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004000 " s0=[%d,%1xh,fd=%d,ex=%s]",
4001 curr_sess->si[0].state,
4002 curr_sess->si[0].flags,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01004003 curr_sess->si[0].conn->t.sock.fd,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004004 curr_sess->si[0].exp ?
4005 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
4006 TICKS_TO_MS(1000)) : "");
4007
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004008 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004009 " s1=[%d,%1xh,fd=%d,ex=%s]",
4010 curr_sess->si[1].state,
4011 curr_sess->si[1].flags,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01004012 curr_sess->si[1].conn->t.sock.fd,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004013 curr_sess->si[1].exp ?
4014 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
4015 TICKS_TO_MS(1000)) : "");
4016
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004017 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004018 " exp=%s",
4019 curr_sess->task->expire ?
4020 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
4021 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01004022 if (task_in_rq(curr_sess->task))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004023 chunk_appendf(&trash, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004024
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004025 chunk_appendf(&trash, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004026
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004027 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01004028 /* let's try again later from this session. We add ourselves into
4029 * this session's users so that it can remove us upon termination.
4030 */
Willy Tarreau295a8372011-03-10 11:25:07 +01004031 LIST_ADDQ(&curr_sess->back_refs, &si->applet.ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02004032 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004033 }
4034
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004035 next_sess:
Willy Tarreau295a8372011-03-10 11:25:07 +01004036 si->applet.ctx.sess.bref.ref = curr_sess->list.n;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004037 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004038
Willy Tarreau76153662012-11-26 01:16:39 +01004039 if (si->applet.ctx.sess.target && si->applet.ctx.sess.target != (void *)-1) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004040 /* specified session not found */
Willy Tarreau295a8372011-03-10 11:25:07 +01004041 if (si->applet.ctx.sess.section > 0)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004042 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004043 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004044 chunk_appendf(&trash, "Session not found.\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004045
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004046 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004047 return 0;
4048
Willy Tarreau295a8372011-03-10 11:25:07 +01004049 si->applet.ctx.sess.target = NULL;
4050 si->applet.ctx.sess.uid = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004051 return 1;
4052 }
4053
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004054 si->applet.st2 = STAT_ST_FIN;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004055 /* fall through */
4056
4057 default:
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004058 si->applet.st2 = STAT_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02004059 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004060 }
Emeric Brun1e029aa2010-09-23 18:12:53 +02004061}
4062
Willy Tarreau5f9a8772012-11-26 02:22:40 +01004063/* This is called when the stream interface is closed. For instance, upon an
4064 * external abort, we won't call the i/o handler anymore so we may need to
4065 * remove back references to the session currently being dumped.
4066 */
Simon Horman74d88312013-02-12 10:45:50 +09004067static void cli_release_handler(struct stream_interface *si)
Willy Tarreau5f9a8772012-11-26 02:22:40 +01004068{
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004069 if (si->applet.st0 == STAT_CLI_O_SESS && si->applet.st2 == STAT_ST_LIST) {
Willy Tarreau5f9a8772012-11-26 02:22:40 +01004070 if (!LIST_ISEMPTY(&si->applet.ctx.sess.bref.users))
4071 LIST_DEL(&si->applet.ctx.sess.bref.users);
4072 }
4073}
4074
Willy Tarreau20e99322013-04-13 09:22:25 +02004075/* This function is used to either dump tables states (when action is set
4076 * to STAT_CLI_O_TAB) or clear tables (when action is STAT_CLI_O_CLR).
4077 * The xprt_ctx must have been zeroed first, and the flags properly set.
4078 * It returns 0 if the output buffer is full and it needs to be called
4079 * again, otherwise non-zero.
Willy Tarreau69f58c82010-07-12 17:55:33 +02004080 */
Willy Tarreau20e99322013-04-13 09:22:25 +02004081static int stats_table_request(struct stream_interface *si, int action)
Willy Tarreau69f58c82010-07-12 17:55:33 +02004082{
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004083 struct session *s = si->conn->xprt_ctx;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004084 struct ebmb_node *eb;
4085 int dt;
Willy Tarreau44455022012-12-05 23:01:12 +01004086 int skip_entry;
Willy Tarreau20e99322013-04-13 09:22:25 +02004087 int show = action == STAT_CLI_O_TAB;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004088
4089 /*
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004090 * We have 3 possible states in si->applet.st2 :
Willy Tarreau295a8372011-03-10 11:25:07 +01004091 * - STAT_ST_INIT : the first call
4092 * - STAT_ST_INFO : the proxy pointer points to the next table to
Willy Tarreau69f58c82010-07-12 17:55:33 +02004093 * dump, the entry pointer is NULL ;
Willy Tarreau295a8372011-03-10 11:25:07 +01004094 * - STAT_ST_LIST : the proxy pointer points to the current table
Willy Tarreau69f58c82010-07-12 17:55:33 +02004095 * and the entry pointer points to the next entry to be dumped,
4096 * and the refcount on the next entry is held ;
Willy Tarreau295a8372011-03-10 11:25:07 +01004097 * - STAT_ST_END : nothing left to dump, the buffer may contain some
Willy Tarreau69f58c82010-07-12 17:55:33 +02004098 * data though.
4099 */
4100
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004101 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02004102 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004103 if (si->applet.st2 == STAT_ST_LIST) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004104 si->applet.ctx.table.entry->ref_cnt--;
4105 stksess_kill_if_expired(&si->applet.ctx.table.proxy->table, si->applet.ctx.table.entry);
Willy Tarreauf6efda12010-08-03 20:34:06 +02004106 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02004107 return 1;
4108 }
4109
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004110 chunk_reset(&trash);
Willy Tarreau69f58c82010-07-12 17:55:33 +02004111
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004112 while (si->applet.st2 != STAT_ST_FIN) {
4113 switch (si->applet.st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004114 case STAT_ST_INIT:
4115 si->applet.ctx.table.proxy = si->applet.ctx.table.target;
4116 if (!si->applet.ctx.table.proxy)
4117 si->applet.ctx.table.proxy = proxy;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004118
Willy Tarreau295a8372011-03-10 11:25:07 +01004119 si->applet.ctx.table.entry = NULL;
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004120 si->applet.st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004121 break;
4122
Willy Tarreau295a8372011-03-10 11:25:07 +01004123 case STAT_ST_INFO:
4124 if (!si->applet.ctx.table.proxy ||
4125 (si->applet.ctx.table.target &&
4126 si->applet.ctx.table.proxy != si->applet.ctx.table.target)) {
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004127 si->applet.st2 = STAT_ST_END;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004128 break;
4129 }
4130
Willy Tarreau295a8372011-03-10 11:25:07 +01004131 if (si->applet.ctx.table.proxy->table.size) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004132 if (show && !stats_dump_table_head_to_buffer(&trash, si, si->applet.ctx.table.proxy,
Simon Hormanc88b8872011-06-15 15:18:49 +09004133 si->applet.ctx.table.target))
Willy Tarreau69f58c82010-07-12 17:55:33 +02004134 return 0;
4135
Willy Tarreau295a8372011-03-10 11:25:07 +01004136 if (si->applet.ctx.table.target &&
Willy Tarreau290e63a2012-09-20 18:07:14 +02004137 s->listener->bind_conf->level >= ACCESS_LVL_OPER) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02004138 /* dump entries only if table explicitly requested */
Willy Tarreau295a8372011-03-10 11:25:07 +01004139 eb = ebmb_first(&si->applet.ctx.table.proxy->table.keys);
Willy Tarreau69f58c82010-07-12 17:55:33 +02004140 if (eb) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004141 si->applet.ctx.table.entry = ebmb_entry(eb, struct stksess, key);
4142 si->applet.ctx.table.entry->ref_cnt++;
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004143 si->applet.st2 = STAT_ST_LIST;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004144 break;
4145 }
4146 }
4147 }
Willy Tarreau295a8372011-03-10 11:25:07 +01004148 si->applet.ctx.table.proxy = si->applet.ctx.table.proxy->next;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004149 break;
4150
Willy Tarreau295a8372011-03-10 11:25:07 +01004151 case STAT_ST_LIST:
Willy Tarreau44455022012-12-05 23:01:12 +01004152 skip_entry = 0;
Simon Hormanc88b8872011-06-15 15:18:49 +09004153
Willy Tarreau295a8372011-03-10 11:25:07 +01004154 if (si->applet.ctx.table.data_type >= 0) {
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004155 /* we're filtering on some data contents */
4156 void *ptr;
4157 long long data;
4158
Willy Tarreau295a8372011-03-10 11:25:07 +01004159 dt = si->applet.ctx.table.data_type;
4160 ptr = stktable_data_ptr(&si->applet.ctx.table.proxy->table,
4161 si->applet.ctx.table.entry,
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004162 dt);
4163
4164 data = 0;
4165 switch (stktable_data_types[dt].std_type) {
4166 case STD_T_SINT:
4167 data = stktable_data_cast(ptr, std_t_sint);
4168 break;
4169 case STD_T_UINT:
4170 data = stktable_data_cast(ptr, std_t_uint);
4171 break;
4172 case STD_T_ULL:
4173 data = stktable_data_cast(ptr, std_t_ull);
4174 break;
4175 case STD_T_FRQP:
4176 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau295a8372011-03-10 11:25:07 +01004177 si->applet.ctx.table.proxy->table.data_arg[dt].u);
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004178 break;
4179 }
4180
4181 /* skip the entry if the data does not match the test and the value */
Willy Tarreau295a8372011-03-10 11:25:07 +01004182 if ((data < si->applet.ctx.table.value &&
4183 (si->applet.ctx.table.data_op == STD_OP_EQ ||
4184 si->applet.ctx.table.data_op == STD_OP_GT ||
4185 si->applet.ctx.table.data_op == STD_OP_GE)) ||
4186 (data == si->applet.ctx.table.value &&
4187 (si->applet.ctx.table.data_op == STD_OP_NE ||
4188 si->applet.ctx.table.data_op == STD_OP_GT ||
4189 si->applet.ctx.table.data_op == STD_OP_LT)) ||
4190 (data > si->applet.ctx.table.value &&
4191 (si->applet.ctx.table.data_op == STD_OP_EQ ||
4192 si->applet.ctx.table.data_op == STD_OP_LT ||
4193 si->applet.ctx.table.data_op == STD_OP_LE)))
Willy Tarreau44455022012-12-05 23:01:12 +01004194 skip_entry = 1;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004195 }
4196
Simon Hormanc88b8872011-06-15 15:18:49 +09004197 if (show && !skip_entry &&
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004198 !stats_dump_table_entry_to_buffer(&trash, si, si->applet.ctx.table.proxy,
Simon Hormand9366582011-06-15 15:18:45 +09004199 si->applet.ctx.table.entry))
4200 return 0;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004201
Willy Tarreau295a8372011-03-10 11:25:07 +01004202 si->applet.ctx.table.entry->ref_cnt--;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004203
Willy Tarreau295a8372011-03-10 11:25:07 +01004204 eb = ebmb_next(&si->applet.ctx.table.entry->key);
Willy Tarreau69f58c82010-07-12 17:55:33 +02004205 if (eb) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004206 struct stksess *old = si->applet.ctx.table.entry;
4207 si->applet.ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreau8fa52f42012-01-09 11:50:03 +01004208 if (show)
4209 stksess_kill_if_expired(&si->applet.ctx.table.proxy->table, old);
Willy Tarreau33fba6f2013-08-13 16:44:40 +02004210 else if (!skip_entry && !si->applet.ctx.table.entry->ref_cnt)
Willy Tarreau8fa52f42012-01-09 11:50:03 +01004211 stksess_kill(&si->applet.ctx.table.proxy->table, old);
Willy Tarreau295a8372011-03-10 11:25:07 +01004212 si->applet.ctx.table.entry->ref_cnt++;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004213 break;
4214 }
4215
Simon Hormanc88b8872011-06-15 15:18:49 +09004216
4217 if (show)
4218 stksess_kill_if_expired(&si->applet.ctx.table.proxy->table, si->applet.ctx.table.entry);
4219 else if (!skip_entry && !si->applet.ctx.table.entry->ref_cnt)
4220 stksess_kill(&si->applet.ctx.table.proxy->table, si->applet.ctx.table.entry);
4221
Willy Tarreau295a8372011-03-10 11:25:07 +01004222 si->applet.ctx.table.proxy = si->applet.ctx.table.proxy->next;
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004223 si->applet.st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004224 break;
4225
Willy Tarreau295a8372011-03-10 11:25:07 +01004226 case STAT_ST_END:
Willy Tarreaua94d2d72013-07-08 15:38:15 +02004227 si->applet.st2 = STAT_ST_FIN;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004228 break;
4229 }
4230 }
4231 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004232}
4233
Willy Tarreaud426a182010-03-05 14:58:26 +01004234/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01004235 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
4236 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
4237 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
4238 * lines are respected within the limit of 70 output chars. Lines that are
4239 * continuation of a previous truncated line begin with "+" instead of " "
4240 * after the offset. The new pointer is returned.
4241 */
Willy Tarreaud426a182010-03-05 14:58:26 +01004242static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
4243 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004244{
4245 int end;
4246 unsigned char c;
4247
4248 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02004249 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004250 return ptr;
4251
Willy Tarreau77804732012-10-29 16:14:26 +01004252 chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01004253
Willy Tarreaud426a182010-03-05 14:58:26 +01004254 while (ptr < len && ptr < bsize) {
4255 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01004256 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004257 if (out->len > end - 2)
4258 break;
4259 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01004260 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004261 if (out->len > end - 3)
4262 break;
4263 out->str[out->len++] = '\\';
4264 switch (c) {
4265 case '\t': c = 't'; break;
4266 case '\n': c = 'n'; break;
4267 case '\r': c = 'r'; break;
4268 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01004269 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004270 }
4271 out->str[out->len++] = c;
4272 } else {
4273 if (out->len > end - 5)
4274 break;
4275 out->str[out->len++] = '\\';
4276 out->str[out->len++] = 'x';
4277 out->str[out->len++] = hextab[(c >> 4) & 0xF];
4278 out->str[out->len++] = hextab[c & 0xF];
4279 }
Willy Tarreaud426a182010-03-05 14:58:26 +01004280 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004281 /* we had a line break, let's return now */
4282 out->str[out->len++] = '\n';
4283 *line = ptr;
4284 return ptr;
4285 }
4286 }
4287 /* we have an incomplete line, we return it as-is */
4288 out->str[out->len++] = '\n';
4289 return ptr;
4290}
4291
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02004292/* This function dumps all captured errors onto the stream interface's
4293 * read buffer. The xprt_ctx must have been zeroed first, and the flags
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004294 * properly set. It returns 0 if the output buffer is full and it needs
4295 * to be called again, otherwise non-zero.
Willy Tarreau74808cb2009-03-04 15:53:18 +01004296 */
Simon Horman9bd2c732011-06-15 15:18:44 +09004297static int stats_dump_errors_to_buffer(struct stream_interface *si)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004298{
4299 extern const char *monthname[12];
Willy Tarreau74808cb2009-03-04 15:53:18 +01004300
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004301 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau61b34732009-10-03 23:49:35 +02004302 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004303
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004304 chunk_reset(&trash);
Willy Tarreau74808cb2009-03-04 15:53:18 +01004305
Willy Tarreau295a8372011-03-10 11:25:07 +01004306 if (!si->applet.ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004307 /* the function had not been called yet, let's prepare the
4308 * buffer for a response.
4309 */
Willy Tarreau10479e42010-12-12 14:00:34 +01004310 struct tm tm;
4311
4312 get_localtime(date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004313 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
Willy Tarreau10479e42010-12-12 14:00:34 +01004314 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
4315 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
4316 error_snapshot_id);
4317
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004318 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau10479e42010-12-12 14:00:34 +01004319 /* Socket buffer full. Let's try again later from the same point */
4320 return 0;
4321 }
4322
Willy Tarreau295a8372011-03-10 11:25:07 +01004323 si->applet.ctx.errors.px = proxy;
4324 si->applet.ctx.errors.buf = 0;
4325 si->applet.ctx.errors.bol = 0;
4326 si->applet.ctx.errors.ptr = -1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004327 }
4328
4329 /* we have two inner loops here, one for the proxy, the other one for
4330 * the buffer.
4331 */
Willy Tarreau295a8372011-03-10 11:25:07 +01004332 while (si->applet.ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004333 struct error_snapshot *es;
4334
Willy Tarreau295a8372011-03-10 11:25:07 +01004335 if (si->applet.ctx.errors.buf == 0)
4336 es = &si->applet.ctx.errors.px->invalid_req;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004337 else
Willy Tarreau295a8372011-03-10 11:25:07 +01004338 es = &si->applet.ctx.errors.px->invalid_rep;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004339
4340 if (!es->when.tv_sec)
4341 goto next;
4342
Willy Tarreau295a8372011-03-10 11:25:07 +01004343 if (si->applet.ctx.errors.iid >= 0 &&
4344 si->applet.ctx.errors.px->uuid != si->applet.ctx.errors.iid &&
4345 es->oe->uuid != si->applet.ctx.errors.iid)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004346 goto next;
4347
Willy Tarreau295a8372011-03-10 11:25:07 +01004348 if (si->applet.ctx.errors.ptr < 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004349 /* just print headers now */
4350
4351 char pn[INET6_ADDRSTRLEN];
4352 struct tm tm;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004353 int port;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004354
4355 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004356 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01004357 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02004358 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01004359
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004360 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
4361 case AF_INET:
4362 case AF_INET6:
4363 port = get_host_port(&es->src);
4364 break;
4365 default:
4366 port = 0;
4367 }
4368
Willy Tarreau295a8372011-03-10 11:25:07 +01004369 switch (si->applet.ctx.errors.buf) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004370 case 0:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004371 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01004372 " frontend %s (#%d): invalid request\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004373 " backend %s (#%d)",
Willy Tarreau295a8372011-03-10 11:25:07 +01004374 si->applet.ctx.errors.px->id, si->applet.ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004375 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
4376 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreau74808cb2009-03-04 15:53:18 +01004377 break;
4378 case 1:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004379 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01004380 " backend %s (#%d) : invalid response\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004381 " frontend %s (#%d)",
Willy Tarreau295a8372011-03-10 11:25:07 +01004382 si->applet.ctx.errors.px->id, si->applet.ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004383 es->oe->id, es->oe->uuid);
Willy Tarreau74808cb2009-03-04 15:53:18 +01004384 break;
4385 }
4386
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004387 chunk_appendf(&trash,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004388 ", server %s (#%d), event #%u\n"
4389 " src %s:%d, session #%d, session flags 0x%08x\n"
4390 " HTTP msg state %d, msg flags 0x%08x, tx flags 0x%08x\n"
4391 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
4392 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
4393 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
4394 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
4395 es->ev_id,
4396 pn, port, es->sid, es->s_flags,
4397 es->state, es->m_flags, es->t_flags,
4398 es->m_clen, es->m_blen,
4399 es->b_flags, es->b_out, es->b_tot,
4400 es->len, es->b_wrap, es->pos);
4401
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004402 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004403 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02004404 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004405 }
Willy Tarreau295a8372011-03-10 11:25:07 +01004406 si->applet.ctx.errors.ptr = 0;
4407 si->applet.ctx.errors.sid = es->sid;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004408 }
4409
Willy Tarreau295a8372011-03-10 11:25:07 +01004410 if (si->applet.ctx.errors.sid != es->sid) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004411 /* the snapshot changed while we were dumping it */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004412 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01004413 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004414 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau61b34732009-10-03 23:49:35 +02004415 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004416 goto next;
4417 }
4418
4419 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau295a8372011-03-10 11:25:07 +01004420 while (si->applet.ctx.errors.ptr < es->len && si->applet.ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004421 int newptr;
4422 int newline;
4423
Willy Tarreau295a8372011-03-10 11:25:07 +01004424 newline = si->applet.ctx.errors.bol;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004425 newptr = dump_text_line(&trash, es->buf, sizeof(es->buf), es->len, &newline, si->applet.ctx.errors.ptr);
Willy Tarreau295a8372011-03-10 11:25:07 +01004426 if (newptr == si->applet.ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02004427 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004428
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004429 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004430 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02004431 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004432 }
Willy Tarreau295a8372011-03-10 11:25:07 +01004433 si->applet.ctx.errors.ptr = newptr;
4434 si->applet.ctx.errors.bol = newline;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004435 };
4436 next:
Willy Tarreau295a8372011-03-10 11:25:07 +01004437 si->applet.ctx.errors.bol = 0;
4438 si->applet.ctx.errors.ptr = -1;
4439 si->applet.ctx.errors.buf++;
4440 if (si->applet.ctx.errors.buf > 1) {
4441 si->applet.ctx.errors.buf = 0;
4442 si->applet.ctx.errors.px = si->applet.ctx.errors.px->next;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004443 }
4444 }
4445
4446 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02004447 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004448}
4449
Willy Tarreaud5781202012-09-22 19:32:35 +02004450/* parse the "level" argument on the bind lines */
4451static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
4452{
4453 if (!*args[cur_arg + 1]) {
4454 memprintf(err, "'%s' : missing level", args[cur_arg]);
4455 return ERR_ALERT | ERR_FATAL;
4456 }
4457
4458 if (!strcmp(args[cur_arg+1], "user"))
4459 conf->level = ACCESS_LVL_USER;
4460 else if (!strcmp(args[cur_arg+1], "operator"))
4461 conf->level = ACCESS_LVL_OPER;
4462 else if (!strcmp(args[cur_arg+1], "admin"))
4463 conf->level = ACCESS_LVL_ADMIN;
4464 else {
4465 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
4466 args[cur_arg], args[cur_arg+1]);
4467 return ERR_ALERT | ERR_FATAL;
4468 }
4469
4470 return 0;
4471}
4472
Willy Tarreaub24281b2011-02-13 13:16:36 +01004473struct si_applet http_stats_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004474 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004475 .name = "<STATS>", /* used for logging */
4476 .fct = http_stats_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07004477 .release = NULL,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004478};
4479
Simon Horman9bd2c732011-06-15 15:18:44 +09004480static struct si_applet cli_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004481 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004482 .name = "<CLI>", /* used for logging */
4483 .fct = cli_io_handler,
Willy Tarreau5f9a8772012-11-26 02:22:40 +01004484 .release = cli_release_handler,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004485};
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004486
Willy Tarreaudc13c112013-06-21 23:16:39 +02004487static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau10522fd2008-07-09 20:12:41 +02004488 { CFG_GLOBAL, "stats", stats_parse_global },
4489 { 0, NULL, NULL },
4490}};
4491
Willy Tarreaud5781202012-09-22 19:32:35 +02004492static struct bind_kw_list bind_kws = { "STAT", { }, {
4493 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
4494 { NULL, NULL, 0 },
4495}};
4496
Willy Tarreau10522fd2008-07-09 20:12:41 +02004497__attribute__((constructor))
4498static void __dumpstats_module_init(void)
4499{
4500 cfg_register_keywords(&cfg_kws);
Willy Tarreaud5781202012-09-22 19:32:35 +02004501 bind_register_keywords(&bind_kws);
Willy Tarreau10522fd2008-07-09 20:12:41 +02004502}
4503
Willy Tarreau91861262007-10-17 17:06:05 +02004504/*
4505 * Local variables:
4506 * c-indent-level: 8
4507 * c-basic-offset: 8
4508 * End:
4509 */