blob: 17efeff0a65f3c6eefc46c4e71e528c613696d69 [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
340 while (*args[cur_arg]) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100341 unsigned int low, high;
342
Willy Tarreau35b7b162012-10-22 23:17:18 +0200343 if (strcmp(args[cur_arg], "all") == 0) {
344 set = 0;
345 break;
346 }
347 else if (strcmp(args[cur_arg], "odd") == 0) {
348 set |= 0x55555555;
349 }
350 else if (strcmp(args[cur_arg], "even") == 0) {
351 set |= 0xAAAAAAAA;
352 }
Willy Tarreau83d84cf2012-11-22 01:04:31 +0100353 else if (isdigit((int)*args[cur_arg])) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100354 char *dash = strchr(args[cur_arg], '-');
355
356 low = high = str2uic(args[cur_arg]);
357 if (dash)
358 high = str2uic(dash + 1);
359
360 if (high < low) {
361 unsigned int swap = low;
362 low = high;
363 high = swap;
364 }
365
366 if (low < 1 || high > 32) {
367 memprintf(err, "'%s %s' supports process numbers from 1 to 32.\n",
368 args[0], args[1]);
Willy Tarreau35b7b162012-10-22 23:17:18 +0200369 return -1;
370 }
Willy Tarreau110ecc12012-11-15 17:50:01 +0100371
372 while (low <= high)
373 set |= 1 << (low++ - 1);
374 }
375 else {
376 memprintf(err,
377 "'%s %s' expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to 32.\n",
378 args[0], args[1]);
379 return -1;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200380 }
381 cur_arg++;
382 }
383 global.stats_fe->bind_proc = set;
384 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200385 else {
Willy Tarreau35b7b162012-10-22 23:17:18 +0200386 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200387 return -1;
388 }
389 return 0;
390}
391
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100392/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
393 * for clearing it if needed.
394 */
395static void stats_dump_csv_header()
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100396{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100397 chunk_appendf(&trash,
398 "# pxname,svname,"
399 "qcur,qmax,"
400 "scur,smax,slim,stot,"
401 "bin,bout,"
402 "dreq,dresp,"
403 "ereq,econ,eresp,"
404 "wretr,wredis,"
405 "status,weight,act,bck,"
406 "chkfail,chkdown,lastchg,downtime,qlimit,"
407 "pid,iid,sid,throttle,lbtot,tracked,type,"
408 "rate,rate_lim,rate_max,"
409 "check_status,check_code,check_duration,"
410 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
411 "req_rate,req_rate_max,req_tot,"
412 "cli_abrt,srv_abrt,"
413 "comp_in,comp_out,comp_byp,comp_rsp,"
414 "\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100415}
416
Simon Hormand9366582011-06-15 15:18:45 +0900417/* print a string of text buffer to <out>. The format is :
418 * Non-printable chars \t, \n, \r and \e are * encoded in C format.
419 * Other non-printable chars are encoded "\xHH". Space and '\' are also escaped.
420 * Print stopped if null char or <bsize> is reached, or if no more place in the chunk.
421 */
422static int dump_text(struct chunk *out, const char *buf, int bsize)
423{
424 unsigned char c;
425 int ptr = 0;
426
427 while (buf[ptr] && ptr < bsize) {
428 c = buf[ptr];
429 if (isprint(c) && isascii(c) && c != '\\' && c != ' ') {
430 if (out->len > out->size - 1)
431 break;
432 out->str[out->len++] = c;
433 }
434 else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ') {
435 if (out->len > out->size - 2)
436 break;
437 out->str[out->len++] = '\\';
438 switch (c) {
439 case ' ': c = ' '; break;
440 case '\t': c = 't'; break;
441 case '\n': c = 'n'; break;
442 case '\r': c = 'r'; break;
443 case '\e': c = 'e'; break;
444 case '\\': c = '\\'; break;
445 }
446 out->str[out->len++] = c;
447 }
448 else {
449 if (out->len > out->size - 4)
450 break;
451 out->str[out->len++] = '\\';
452 out->str[out->len++] = 'x';
453 out->str[out->len++] = hextab[(c >> 4) & 0xF];
454 out->str[out->len++] = hextab[c & 0xF];
455 }
456 ptr++;
457 }
458
459 return ptr;
460}
461
462/* print a buffer in hexa.
463 * Print stopped if <bsize> is reached, or if no more place in the chunk.
464 */
465static int dump_binary(struct chunk *out, const char *buf, int bsize)
466{
467 unsigned char c;
468 int ptr = 0;
469
470 while (ptr < bsize) {
471 c = buf[ptr];
472
473 if (out->len > out->size - 2)
474 break;
475 out->str[out->len++] = hextab[(c >> 4) & 0xF];
476 out->str[out->len++] = hextab[c & 0xF];
477
478 ptr++;
479 }
480 return ptr;
481}
482
483/* Dump the status of a table to a stream interface's
484 * read buffer. It returns 0 if the output buffer is full
485 * and needs to be called again, otherwise non-zero.
486 */
487static int stats_dump_table_head_to_buffer(struct chunk *msg, struct stream_interface *si,
488 struct proxy *proxy, struct proxy *target)
489{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200490 struct session *s = si->conn->xprt_ctx;
Simon Hormand9366582011-06-15 15:18:45 +0900491
Willy Tarreau77804732012-10-29 16:14:26 +0100492 chunk_appendf(msg, "# table: %s, type: %s, size:%d, used:%d\n",
Simon Hormand9366582011-06-15 15:18:45 +0900493 proxy->id, stktable_types[proxy->table.type].kw, proxy->table.size, proxy->table.current);
494
495 /* any other information should be dumped here */
496
Willy Tarreau290e63a2012-09-20 18:07:14 +0200497 if (target && s->listener->bind_conf->level < ACCESS_LVL_OPER)
Willy Tarreau77804732012-10-29 16:14:26 +0100498 chunk_appendf(msg, "# contents not dumped due to insufficient privileges\n");
Simon Hormand9366582011-06-15 15:18:45 +0900499
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200500 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900501 return 0;
502
503 return 1;
504}
505
506/* Dump the a table entry to a stream interface's
507 * read buffer. It returns 0 if the output buffer is full
508 * and needs to be called again, otherwise non-zero.
509 */
510static int stats_dump_table_entry_to_buffer(struct chunk *msg, struct stream_interface *si,
511 struct proxy *proxy, struct stksess *entry)
512{
513 int dt;
514
Willy Tarreau77804732012-10-29 16:14:26 +0100515 chunk_appendf(msg, "%p:", entry);
Simon Hormand9366582011-06-15 15:18:45 +0900516
517 if (proxy->table.type == STKTABLE_TYPE_IP) {
518 char addr[INET_ADDRSTRLEN];
519 inet_ntop(AF_INET, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100520 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900521 }
522 else if (proxy->table.type == STKTABLE_TYPE_IPV6) {
523 char addr[INET6_ADDRSTRLEN];
524 inet_ntop(AF_INET6, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100525 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900526 }
527 else if (proxy->table.type == STKTABLE_TYPE_INTEGER) {
Willy Tarreau77804732012-10-29 16:14:26 +0100528 chunk_appendf(msg, " key=%u", *(unsigned int *)entry->key.key);
Simon Hormand9366582011-06-15 15:18:45 +0900529 }
530 else if (proxy->table.type == STKTABLE_TYPE_STRING) {
Willy Tarreau77804732012-10-29 16:14:26 +0100531 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900532 dump_text(msg, (const char *)entry->key.key, proxy->table.key_size);
533 }
534 else {
Willy Tarreau77804732012-10-29 16:14:26 +0100535 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900536 dump_binary(msg, (const char *)entry->key.key, proxy->table.key_size);
537 }
538
Willy Tarreau77804732012-10-29 16:14:26 +0100539 chunk_appendf(msg, " use=%d exp=%d", entry->ref_cnt - 1, tick_remain(now_ms, entry->expire));
Simon Hormand9366582011-06-15 15:18:45 +0900540
541 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
542 void *ptr;
543
544 if (proxy->table.data_ofs[dt] == 0)
545 continue;
546 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
Willy Tarreau77804732012-10-29 16:14:26 +0100547 chunk_appendf(msg, " %s(%d)=", stktable_data_types[dt].name, proxy->table.data_arg[dt].u);
Simon Hormand9366582011-06-15 15:18:45 +0900548 else
Willy Tarreau77804732012-10-29 16:14:26 +0100549 chunk_appendf(msg, " %s=", stktable_data_types[dt].name);
Simon Hormand9366582011-06-15 15:18:45 +0900550
551 ptr = stktable_data_ptr(&proxy->table, entry, dt);
552 switch (stktable_data_types[dt].std_type) {
553 case STD_T_SINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100554 chunk_appendf(msg, "%d", stktable_data_cast(ptr, std_t_sint));
Simon Hormand9366582011-06-15 15:18:45 +0900555 break;
556 case STD_T_UINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100557 chunk_appendf(msg, "%u", stktable_data_cast(ptr, std_t_uint));
Simon Hormand9366582011-06-15 15:18:45 +0900558 break;
559 case STD_T_ULL:
Willy Tarreau77804732012-10-29 16:14:26 +0100560 chunk_appendf(msg, "%lld", stktable_data_cast(ptr, std_t_ull));
Simon Hormand9366582011-06-15 15:18:45 +0900561 break;
562 case STD_T_FRQP:
Willy Tarreau77804732012-10-29 16:14:26 +0100563 chunk_appendf(msg, "%d",
Simon Hormand9366582011-06-15 15:18:45 +0900564 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
565 proxy->table.data_arg[dt].u));
566 break;
567 }
568 }
Willy Tarreau77804732012-10-29 16:14:26 +0100569 chunk_appendf(msg, "\n");
Simon Hormand9366582011-06-15 15:18:45 +0900570
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200571 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900572 return 0;
573
574 return 1;
575}
576
Willy Tarreaudec98142012-06-06 23:37:08 +0200577static void stats_sock_table_key_request(struct stream_interface *si, char **args, int action)
Simon Horman121f3052011-06-15 15:18:46 +0900578{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200579 struct session *s = si->conn->xprt_ctx;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900580 struct proxy *px = si->applet.ctx.table.target;
Simon Horman121f3052011-06-15 15:18:46 +0900581 struct stksess *ts;
Simon Hormancec9a222011-06-15 15:18:51 +0900582 uint32_t uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900583 unsigned char ip6_key[sizeof(struct in6_addr)];
Willy Tarreau654694e2012-06-07 01:03:16 +0200584 long long value;
585 int data_type;
586 void *ptr;
587 struct freq_ctr_period *frqp;
Simon Horman121f3052011-06-15 15:18:46 +0900588
Simon Hormand5b9fd92011-06-15 15:18:48 +0900589 si->applet.st0 = STAT_CLI_OUTPUT;
Simon Horman121f3052011-06-15 15:18:46 +0900590
591 if (!*args[4]) {
592 si->applet.ctx.cli.msg = "Key value expected\n";
593 si->applet.st0 = STAT_CLI_PRINT;
594 return;
595 }
596
Simon Hormanc5b89f62011-06-15 15:18:50 +0900597 switch (px->table.type) {
598 case STKTABLE_TYPE_IP:
Simon Hormancec9a222011-06-15 15:18:51 +0900599 uint32_key = htonl(inetaddr_host(args[4]));
Willy Tarreau07115412012-10-29 21:56:59 +0100600 static_table_key->key = &uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900601 break;
602 case STKTABLE_TYPE_IPV6:
603 inet_pton(AF_INET6, args[4], ip6_key);
Willy Tarreau07115412012-10-29 21:56:59 +0100604 static_table_key->key = &ip6_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900605 break;
Simon Hormancec9a222011-06-15 15:18:51 +0900606 case STKTABLE_TYPE_INTEGER:
607 {
608 char *endptr;
609 unsigned long val;
610 errno = 0;
611 val = strtoul(args[4], &endptr, 10);
612 if ((errno == ERANGE && val == ULONG_MAX) ||
613 (errno != 0 && val == 0) || endptr == args[4] ||
614 val > 0xffffffff) {
615 si->applet.ctx.cli.msg = "Invalid key\n";
616 si->applet.st0 = STAT_CLI_PRINT;
617 return;
618 }
619 uint32_key = (uint32_t) val;
Willy Tarreau07115412012-10-29 21:56:59 +0100620 static_table_key->key = &uint32_key;
Simon Hormancec9a222011-06-15 15:18:51 +0900621 break;
622 }
623 break;
Simon Horman619e3cc2011-06-15 15:18:52 +0900624 case STKTABLE_TYPE_STRING:
Willy Tarreau07115412012-10-29 21:56:59 +0100625 static_table_key->key = args[4];
626 static_table_key->key_len = strlen(args[4]);
Simon Horman619e3cc2011-06-15 15:18:52 +0900627 break;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900628 default:
Willy Tarreaudec98142012-06-06 23:37:08 +0200629 switch (action) {
630 case STAT_CLI_O_TAB:
631 si->applet.ctx.cli.msg = "Showing keys from tables of type other than ip, ipv6, string and integer is not supported\n";
632 break;
633 case STAT_CLI_O_CLR:
634 si->applet.ctx.cli.msg = "Removing keys from ip tables of type other than ip, ipv6, string and integer is not supported\n";
635 break;
636 default:
637 si->applet.ctx.cli.msg = "Unknown action\n";
638 break;
639 }
Simon Horman121f3052011-06-15 15:18:46 +0900640 si->applet.st0 = STAT_CLI_PRINT;
641 return;
642 }
643
644 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +0200645 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Simon Horman121f3052011-06-15 15:18:46 +0900646 si->applet.ctx.cli.msg = stats_permission_denied_msg;
647 si->applet.st0 = STAT_CLI_PRINT;
648 return;
649 }
650
Willy Tarreau07115412012-10-29 21:56:59 +0100651 ts = stktable_lookup_key(&px->table, static_table_key);
Simon Horman17bce342011-06-15 15:18:47 +0900652
Willy Tarreaudec98142012-06-06 23:37:08 +0200653 switch (action) {
654 case STAT_CLI_O_TAB:
655 if (!ts)
656 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100657 chunk_reset(&trash);
658 if (!stats_dump_table_head_to_buffer(&trash, si, px, px))
Simon Horman17bce342011-06-15 15:18:47 +0900659 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100660 stats_dump_table_entry_to_buffer(&trash, si, px, ts);
Simon Horman121f3052011-06-15 15:18:46 +0900661 return;
Willy Tarreaudec98142012-06-06 23:37:08 +0200662
663 case STAT_CLI_O_CLR:
664 if (!ts)
665 return;
666 if (ts->ref_cnt) {
667 /* don't delete an entry which is currently referenced */
668 si->applet.ctx.cli.msg = "Entry currently in use, cannot remove\n";
669 si->applet.st0 = STAT_CLI_PRINT;
670 return;
671 }
672 stksess_kill(&px->table, ts);
673 break;
Simon Horman17bce342011-06-15 15:18:47 +0900674
Willy Tarreau654694e2012-06-07 01:03:16 +0200675 case STAT_CLI_O_SET:
676 if (strncmp(args[5], "data.", 5) != 0) {
677 si->applet.ctx.cli.msg = "\"data.<type>\" followed by a value expected\n";
678 si->applet.st0 = STAT_CLI_PRINT;
679 return;
680 }
681
682 data_type = stktable_get_data_type(args[5] + 5);
683 if (data_type < 0) {
684 si->applet.ctx.cli.msg = "Unknown data type\n";
685 si->applet.st0 = STAT_CLI_PRINT;
686 return;
687 }
688
689 if (!px->table.data_ofs[data_type]) {
690 si->applet.ctx.cli.msg = "Data type not stored in this table\n";
691 si->applet.st0 = STAT_CLI_PRINT;
692 return;
693 }
694
695 if (!*args[6] || strl2llrc(args[6], strlen(args[6]), &value) != 0) {
696 si->applet.ctx.cli.msg = "Require a valid integer value to store\n";
697 si->applet.st0 = STAT_CLI_PRINT;
698 return;
699 }
700
701 if (ts)
702 stktable_touch(&px->table, ts, 1);
703 else {
Willy Tarreau07115412012-10-29 21:56:59 +0100704 ts = stksess_new(&px->table, static_table_key);
Willy Tarreau654694e2012-06-07 01:03:16 +0200705 if (!ts) {
706 /* don't delete an entry which is currently referenced */
707 si->applet.ctx.cli.msg = "Unable to allocate a new entry\n";
708 si->applet.st0 = STAT_CLI_PRINT;
709 return;
710 }
711 stktable_store(&px->table, ts, 1);
712 }
713
714 ptr = stktable_data_ptr(&px->table, ts, data_type);
715 switch (stktable_data_types[data_type].std_type) {
716 case STD_T_SINT:
717 stktable_data_cast(ptr, std_t_sint) = value;
718 break;
719 case STD_T_UINT:
720 stktable_data_cast(ptr, std_t_uint) = value;
721 break;
722 case STD_T_ULL:
723 stktable_data_cast(ptr, std_t_ull) = value;
724 break;
725 case STD_T_FRQP:
726 /* We only reset the previous value so that it slowly fades out */
727 frqp = &stktable_data_cast(ptr, std_t_frqp);
728 frqp->curr_tick = now_ms;
729 frqp->prev_ctr = value;
730 frqp->curr_ctr = 0;
731 break;
732 }
733 break;
734
Willy Tarreaudec98142012-06-06 23:37:08 +0200735 default:
736 si->applet.ctx.cli.msg = "Unknown action\n";
Simon Horman121f3052011-06-15 15:18:46 +0900737 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200738 break;
Simon Horman121f3052011-06-15 15:18:46 +0900739 }
Simon Horman121f3052011-06-15 15:18:46 +0900740}
741
Willy Tarreau654694e2012-06-07 01:03:16 +0200742static void stats_sock_table_data_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900743{
Willy Tarreau04b3a192013-04-13 09:41:37 +0200744 if (action != STAT_CLI_O_TAB && action != STAT_CLI_O_CLR) {
745 si->applet.ctx.cli.msg = "content-based lookup is only supported with the \"show\" and \"clear\" actions";
Willy Tarreau654694e2012-06-07 01:03:16 +0200746 si->applet.st0 = STAT_CLI_PRINT;
747 return;
748 }
749
Simon Hormand5b9fd92011-06-15 15:18:48 +0900750 /* condition on stored data value */
751 si->applet.ctx.table.data_type = stktable_get_data_type(args[3] + 5);
752 if (si->applet.ctx.table.data_type < 0) {
753 si->applet.ctx.cli.msg = "Unknown data type\n";
754 si->applet.st0 = STAT_CLI_PRINT;
755 return;
756 }
757
758 if (!((struct proxy *)si->applet.ctx.table.target)->table.data_ofs[si->applet.ctx.table.data_type]) {
759 si->applet.ctx.cli.msg = "Data type not stored in this table\n";
760 si->applet.st0 = STAT_CLI_PRINT;
761 return;
762 }
763
764 si->applet.ctx.table.data_op = get_std_op(args[4]);
765 if (si->applet.ctx.table.data_op < 0) {
766 si->applet.ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
767 si->applet.st0 = STAT_CLI_PRINT;
768 return;
769 }
770
771 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &si->applet.ctx.table.value) != 0) {
772 si->applet.ctx.cli.msg = "Require a valid integer value to compare against\n";
773 si->applet.st0 = STAT_CLI_PRINT;
774 return;
775 }
776}
777
Willy Tarreaudec98142012-06-06 23:37:08 +0200778static void stats_sock_table_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900779{
780 si->applet.ctx.table.data_type = -1;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200781 si->conn->xprt_st = STAT_ST_INIT;
Willy Tarreaue17a8d02011-08-24 08:23:34 +0200782 si->applet.ctx.table.target = NULL;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900783 si->applet.ctx.table.proxy = NULL;
784 si->applet.ctx.table.entry = NULL;
Willy Tarreaudec98142012-06-06 23:37:08 +0200785 si->applet.st0 = action;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900786
787 if (*args[2]) {
788 si->applet.ctx.table.target = find_stktable(args[2]);
789 if (!si->applet.ctx.table.target) {
790 si->applet.ctx.cli.msg = "No such table\n";
791 si->applet.st0 = STAT_CLI_PRINT;
792 return;
793 }
794 }
795 else {
Willy Tarreaudec98142012-06-06 23:37:08 +0200796 if (action != STAT_CLI_O_TAB)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900797 goto err_args;
798 return;
799 }
800
801 if (strcmp(args[3], "key") == 0)
Willy Tarreaudec98142012-06-06 23:37:08 +0200802 stats_sock_table_key_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900803 else if (strncmp(args[3], "data.", 5) == 0)
Willy Tarreau654694e2012-06-07 01:03:16 +0200804 stats_sock_table_data_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900805 else if (*args[3])
Simon Hormand5b9fd92011-06-15 15:18:48 +0900806 goto err_args;
807
808 return;
809
810err_args:
Willy Tarreaudec98142012-06-06 23:37:08 +0200811 switch (action) {
812 case STAT_CLI_O_TAB:
Simon Hormand5b9fd92011-06-15 15:18:48 +0900813 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 +0200814 break;
815 case STAT_CLI_O_CLR:
Simon Hormanc88b8872011-06-15 15:18:49 +0900816 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 +0200817 break;
818 default:
819 si->applet.ctx.cli.msg = "Unknown action\n";
820 break;
821 }
Simon Hormand5b9fd92011-06-15 15:18:48 +0900822 si->applet.st0 = STAT_CLI_PRINT;
823}
824
Willy Tarreau532a4502011-09-07 22:37:44 +0200825/* Expects to find a frontend named <arg> and returns it, otherwise displays various
826 * adequate error messages and returns NULL. This function also expects the session
827 * level to be admin.
828 */
829static struct proxy *expect_frontend_admin(struct session *s, struct stream_interface *si, const char *arg)
830{
831 struct proxy *px;
832
Willy Tarreau290e63a2012-09-20 18:07:14 +0200833 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau532a4502011-09-07 22:37:44 +0200834 si->applet.ctx.cli.msg = stats_permission_denied_msg;
835 si->applet.st0 = STAT_CLI_PRINT;
836 return NULL;
837 }
838
839 if (!*arg) {
840 si->applet.ctx.cli.msg = "A frontend name is expected.\n";
841 si->applet.st0 = STAT_CLI_PRINT;
842 return NULL;
843 }
844
845 px = findproxy(arg, PR_CAP_FE);
846 if (!px) {
847 si->applet.ctx.cli.msg = "No such frontend.\n";
848 si->applet.st0 = STAT_CLI_PRINT;
849 return NULL;
850 }
851 return px;
852}
853
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200854/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
855 * and returns the pointer to the server. Otherwise, display adequate error messages
856 * and returns NULL. This function also expects the session level to be admin. Note:
857 * the <arg> is modified to remove the '/'.
858 */
859static struct server *expect_server_admin(struct session *s, struct stream_interface *si, char *arg)
860{
861 struct proxy *px;
862 struct server *sv;
863 char *line;
864
Willy Tarreau290e63a2012-09-20 18:07:14 +0200865 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200866 si->applet.ctx.cli.msg = stats_permission_denied_msg;
867 si->applet.st0 = STAT_CLI_PRINT;
868 return NULL;
869 }
870
871 /* split "backend/server" and make <line> point to server */
872 for (line = arg; *line; line++)
873 if (*line == '/') {
874 *line++ = '\0';
875 break;
876 }
877
878 if (!*line || !*arg) {
879 si->applet.ctx.cli.msg = "Require 'backend/server'.\n";
880 si->applet.st0 = STAT_CLI_PRINT;
881 return NULL;
882 }
883
884 if (!get_backend_server(arg, line, &px, &sv)) {
885 si->applet.ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
886 si->applet.st0 = STAT_CLI_PRINT;
887 return NULL;
888 }
889
890 if (px->state == PR_STSTOPPED) {
891 si->applet.ctx.cli.msg = "Proxy is disabled.\n";
892 si->applet.st0 = STAT_CLI_PRINT;
893 return NULL;
894 }
895
896 return sv;
897}
898
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200899/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200900 * called from an applet running in a stream interface. The function returns 1
Willy Tarreaubc4af052011-02-13 13:25:14 +0100901 * if the request was understood, otherwise zero. It sets si->applet.st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200902 * designating the function which will have to process the request, which can
903 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200904 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900905static int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200906{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200907 struct session *s = si->conn->xprt_ctx;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200908 char *args[MAX_STATS_ARGS + 1];
909 int arg;
910
911 while (isspace((unsigned char)*line))
912 line++;
913
914 arg = 0;
915 args[arg] = line;
916
917 while (*line && arg < MAX_STATS_ARGS) {
918 if (isspace((unsigned char)*line)) {
919 *line++ = '\0';
920
921 while (isspace((unsigned char)*line))
922 line++;
923
924 args[++arg] = line;
925 continue;
926 }
927
928 line++;
929 }
930
931 while (++arg <= MAX_STATS_ARGS)
932 args[arg] = line;
933
Willy Tarreau295a8372011-03-10 11:25:07 +0100934 si->applet.ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200935 if (strcmp(args[0], "show") == 0) {
936 if (strcmp(args[1], "stat") == 0) {
937 if (*args[2] && *args[3] && *args[4]) {
Willy Tarreau295a8372011-03-10 11:25:07 +0100938 si->applet.ctx.stats.flags |= STAT_BOUND;
939 si->applet.ctx.stats.iid = atoi(args[2]);
940 si->applet.ctx.stats.type = atoi(args[3]);
941 si->applet.ctx.stats.sid = atoi(args[4]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200942 }
943
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200944 si->conn->xprt_st = STAT_ST_INIT;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100945 si->applet.st0 = STAT_CLI_O_STAT; // stats_dump_stat_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200946 }
947 else if (strcmp(args[1], "info") == 0) {
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200948 si->conn->xprt_st = STAT_ST_INIT;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100949 si->applet.st0 = STAT_CLI_O_INFO; // stats_dump_info_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200950 }
951 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200952 si->conn->xprt_st = STAT_ST_INIT;
Willy Tarreau290e63a2012-09-20 18:07:14 +0200953 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau295a8372011-03-10 11:25:07 +0100954 si->applet.ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100955 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200956 return 1;
957 }
Willy Tarreau76153662012-11-26 01:16:39 +0100958 if (*args[2] && strcmp(args[2], "all") == 0)
959 si->applet.ctx.sess.target = (void *)-1;
960 else if (*args[2])
Willy Tarreau295a8372011-03-10 11:25:07 +0100961 si->applet.ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100962 else
Willy Tarreau295a8372011-03-10 11:25:07 +0100963 si->applet.ctx.sess.target = NULL;
964 si->applet.ctx.sess.section = 0; /* start with session status */
965 si->applet.ctx.sess.pos = 0;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100966 si->applet.st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200967 }
968 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau290e63a2012-09-20 18:07:14 +0200969 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau295a8372011-03-10 11:25:07 +0100970 si->applet.ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100971 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200972 return 1;
973 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200974 if (*args[2])
Willy Tarreau295a8372011-03-10 11:25:07 +0100975 si->applet.ctx.errors.iid = atoi(args[2]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200976 else
Willy Tarreau295a8372011-03-10 11:25:07 +0100977 si->applet.ctx.errors.iid = -1;
978 si->applet.ctx.errors.px = NULL;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200979 si->conn->xprt_st = STAT_ST_INIT;
Willy Tarreaubc4af052011-02-13 13:25:14 +0100980 si->applet.st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200981 }
Willy Tarreau69f58c82010-07-12 17:55:33 +0200982 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +0200983 stats_sock_table_request(si, args, STAT_CLI_O_TAB);
Willy Tarreau69f58c82010-07-12 17:55:33 +0200984 }
Aman Guptaceafb4a2012-04-02 18:57:54 -0700985 else { /* neither "stat" nor "info" nor "sess" nor "errors" nor "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200986 return 0;
987 }
988 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200989 else if (strcmp(args[0], "clear") == 0) {
990 if (strcmp(args[1], "counters") == 0) {
991 struct proxy *px;
992 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200993 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200994 int clrall = 0;
995
996 if (strcmp(args[2], "all") == 0)
997 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200998
Willy Tarreau6162db22009-10-10 17:13:00 +0200999 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +02001000 if (s->listener->bind_conf->level < ACCESS_LVL_OPER ||
1001 (clrall && s->listener->bind_conf->level < ACCESS_LVL_ADMIN)) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001002 si->applet.ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001003 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001004 return 1;
1005 }
1006
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001007 for (px = proxy; px; px = px->next) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001008 if (clrall) {
1009 memset(&px->be_counters, 0, sizeof(px->be_counters));
1010 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
1011 }
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001012 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001013 px->be_counters.conn_max = 0;
1014 px->be_counters.p.http.rps_max = 0;
1015 px->be_counters.sps_max = 0;
1016 px->be_counters.cps_max = 0;
1017 px->be_counters.nbpend_max = 0;
1018
1019 px->fe_counters.conn_max = 0;
1020 px->fe_counters.p.http.rps_max = 0;
1021 px->fe_counters.sps_max = 0;
1022 px->fe_counters.cps_max = 0;
1023 px->fe_counters.nbpend_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001024 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001025
1026 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001027 if (clrall)
1028 memset(&sv->counters, 0, sizeof(sv->counters));
1029 else {
1030 sv->counters.cur_sess_max = 0;
1031 sv->counters.nbpend_max = 0;
1032 sv->counters.sps_max = 0;
1033 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001034
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001035 list_for_each_entry(li, &px->conf.listeners, by_fe)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001036 if (li->counters) {
1037 if (clrall)
1038 memset(li->counters, 0, sizeof(*li->counters));
1039 else
1040 li->counters->conn_max = 0;
1041 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001042 }
1043
Willy Tarreau81c25d02011-09-07 15:17:21 +02001044 global.cps_max = 0;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001045 return 1;
1046 }
Willy Tarreau88ee3972010-07-13 13:48:00 +02001047 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001048 stats_sock_table_request(si, args, STAT_CLI_O_CLR);
Willy Tarreau88ee3972010-07-13 13:48:00 +02001049 /* end of processing */
1050 return 1;
1051 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001052 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +02001053 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001054 return 0;
1055 }
1056 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001057 else if (strcmp(args[0], "get") == 0) {
1058 if (strcmp(args[1], "weight") == 0) {
1059 struct proxy *px;
1060 struct server *sv;
1061
1062 /* split "backend/server" and make <line> point to server */
1063 for (line = args[2]; *line; line++)
1064 if (*line == '/') {
1065 *line++ = '\0';
1066 break;
1067 }
1068
1069 if (!*line) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001070 si->applet.ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001071 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001072 return 1;
1073 }
1074
1075 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001076 si->applet.ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001077 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001078 return 1;
1079 }
1080
1081 /* return server's effective weight at the moment */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001082 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
1083 bi_putstr(si->ib, trash.str);
Willy Tarreau38338fa2009-10-10 18:37:29 +02001084 return 1;
1085 }
1086 else { /* not "get weight" */
1087 return 0;
1088 }
1089 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001090 else if (strcmp(args[0], "set") == 0) {
1091 if (strcmp(args[1], "weight") == 0) {
Willy Tarreau4483d432009-10-10 19:30:08 +02001092 struct server *sv;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001093 const char *warning;
Willy Tarreau4483d432009-10-10 19:30:08 +02001094
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001095 sv = expect_server_admin(s, si, args[2]);
1096 if (!sv)
Willy Tarreau4483d432009-10-10 19:30:08 +02001097 return 1;
Willy Tarreau4483d432009-10-10 19:30:08 +02001098
Simon Horman7d09b9a2013-02-12 10:45:51 +09001099 warning = server_parse_weight_change_request(sv, args[3]);
1100 if (warning) {
1101 si->applet.ctx.cli.msg = warning;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001102 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +02001103 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001104 return 1;
1105 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001106 else if (strcmp(args[1], "timeout") == 0) {
1107 if (strcmp(args[2], "cli") == 0) {
1108 unsigned timeout;
1109 const char *res;
1110
1111 if (!*args[3]) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001112 si->applet.ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001113 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001114 return 1;
1115 }
1116
1117 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1118 if (res || timeout < 1) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001119 si->applet.ctx.cli.msg = "Invalid timeout value.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001120 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001121 return 1;
1122 }
1123
1124 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
1125 return 1;
1126 }
1127 else {
Willy Tarreau295a8372011-03-10 11:25:07 +01001128 si->applet.ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
Willy Tarreaubc4af052011-02-13 13:25:14 +01001129 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001130 return 1;
1131 }
1132 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001133 else if (strcmp(args[1], "maxconn") == 0) {
1134 if (strcmp(args[2], "frontend") == 0) {
1135 struct proxy *px;
1136 struct listener *l;
1137 int v;
1138
Willy Tarreau532a4502011-09-07 22:37:44 +02001139 px = expect_frontend_admin(s, si, args[3]);
1140 if (!px)
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001141 return 1;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001142
1143 if (!*args[4]) {
1144 si->applet.ctx.cli.msg = "Integer value expected.\n";
1145 si->applet.st0 = STAT_CLI_PRINT;
1146 return 1;
1147 }
1148
1149 v = atoi(args[4]);
Willy Tarreau3c7a79d2012-09-26 21:07:15 +02001150 if (v < 0) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001151 si->applet.ctx.cli.msg = "Value out of range.\n";
1152 si->applet.st0 = STAT_CLI_PRINT;
1153 return 1;
1154 }
1155
1156 /* OK, the value is fine, so we assign it to the proxy and to all of
1157 * its listeners. The blocked ones will be dequeued.
1158 */
1159 px->maxconn = v;
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001160 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001161 l->maxconn = v;
1162 if (l->state == LI_FULL)
1163 resume_listener(l);
1164 }
1165
1166 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&s->fe->listener_queue))
1167 dequeue_all_listeners(&s->fe->listener_queue);
1168
1169 return 1;
1170 }
Willy Tarreau91886b62011-09-07 14:38:31 +02001171 else if (strcmp(args[2], "global") == 0) {
1172 int v;
1173
Willy Tarreau290e63a2012-09-20 18:07:14 +02001174 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau91886b62011-09-07 14:38:31 +02001175 si->applet.ctx.cli.msg = stats_permission_denied_msg;
1176 si->applet.st0 = STAT_CLI_PRINT;
1177 return 1;
1178 }
1179
1180 if (!*args[3]) {
1181 si->applet.ctx.cli.msg = "Expects an integer value.\n";
1182 si->applet.st0 = STAT_CLI_PRINT;
1183 return 1;
1184 }
1185
1186 v = atoi(args[3]);
1187 if (v > global.hardmaxconn) {
1188 si->applet.ctx.cli.msg = "Value out of range.\n";
1189 si->applet.st0 = STAT_CLI_PRINT;
1190 return 1;
1191 }
1192
1193 /* check for unlimited values */
1194 if (v <= 0)
1195 v = global.hardmaxconn;
1196
1197 global.maxconn = v;
1198
1199 /* Dequeues all of the listeners waiting for a resource */
1200 if (!LIST_ISEMPTY(&global_listener_queue))
1201 dequeue_all_listeners(&global_listener_queue);
1202
1203 return 1;
1204 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001205 else {
Willy Tarreau91886b62011-09-07 14:38:31 +02001206 si->applet.ctx.cli.msg = "'set maxconn' only supports 'frontend' and 'global'.\n";
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001207 si->applet.st0 = STAT_CLI_PRINT;
1208 return 1;
1209 }
1210 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001211 else if (strcmp(args[1], "rate-limit") == 0) {
1212 if (strcmp(args[2], "connections") == 0) {
1213 if (strcmp(args[3], "global") == 0) {
1214 int v;
1215
Willy Tarreau290e63a2012-09-20 18:07:14 +02001216 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreauf5b22872011-09-07 16:13:44 +02001217 si->applet.ctx.cli.msg = stats_permission_denied_msg;
1218 si->applet.st0 = STAT_CLI_PRINT;
1219 return 1;
1220 }
1221
1222 if (!*args[4]) {
1223 si->applet.ctx.cli.msg = "Expects an integer value.\n";
1224 si->applet.st0 = STAT_CLI_PRINT;
1225 return 1;
1226 }
1227
1228 v = atoi(args[4]);
1229 if (v < 0) {
1230 si->applet.ctx.cli.msg = "Value out of range.\n";
1231 si->applet.st0 = STAT_CLI_PRINT;
1232 return 1;
1233 }
1234
1235 global.cps_lim = v;
1236
1237 /* Dequeues all of the listeners waiting for a resource */
1238 if (!LIST_ISEMPTY(&global_listener_queue))
1239 dequeue_all_listeners(&global_listener_queue);
1240
1241 return 1;
1242 }
1243 else {
1244 si->applet.ctx.cli.msg = "'set rate-limit connections' only supports 'global'.\n";
1245 si->applet.st0 = STAT_CLI_PRINT;
1246 return 1;
1247 }
1248 }
William Lallemandd85f9172012-11-09 17:05:39 +01001249 else if (strcmp(args[2], "http-compression") == 0) {
1250 if (strcmp(args[3], "global") == 0) {
1251 int v;
1252
Willy Tarreau85d47f92012-11-21 00:29:50 +01001253 if (!*args[4]) {
1254 si->applet.ctx.cli.msg = "Expects a maximum input byte rate in kB/s.\n";
1255 si->applet.st0 = STAT_CLI_PRINT;
1256 return 1;
1257 }
1258
William Lallemandd85f9172012-11-09 17:05:39 +01001259 v = atoi(args[4]);
1260 global.comp_rate_lim = v * 1024; /* Kilo to bytes. */
1261 }
1262 else {
1263 si->applet.ctx.cli.msg = "'set rate-limit http-compression' only supports 'global'.\n";
1264 si->applet.st0 = STAT_CLI_PRINT;
1265 return 1;
1266 }
1267 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001268 else {
William Lallemandd85f9172012-11-09 17:05:39 +01001269 si->applet.ctx.cli.msg = "'set rate-limit' supports 'connections' and 'http-compression'.\n";
Willy Tarreauf5b22872011-09-07 16:13:44 +02001270 si->applet.st0 = STAT_CLI_PRINT;
1271 return 1;
1272 }
1273 }
Willy Tarreau654694e2012-06-07 01:03:16 +02001274 else if (strcmp(args[1], "table") == 0) {
1275 stats_sock_table_request(si, args, STAT_CLI_O_SET);
1276 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001277 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +02001278 return 0;
1279 }
1280 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001281 else if (strcmp(args[0], "enable") == 0) {
1282 if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001283 struct server *sv;
1284
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001285 sv = expect_server_admin(s, si, args[2]);
1286 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001287 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001288
Cyril Bontécd19e512010-01-31 22:34:03 +01001289 if (sv->state & SRV_MAINTAIN) {
1290 /* The server is really in maintenance, we can change the server state */
Willy Tarreau44267702011-10-28 15:35:33 +02001291 if (sv->track) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001292 /* If this server tracks the status of another one,
1293 * we must restore the good status.
1294 */
Willy Tarreau44267702011-10-28 15:35:33 +02001295 if (sv->track->state & SRV_RUNNING) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001296 set_server_up(sv);
Willy Tarreau70461302010-10-22 14:39:02 +02001297 sv->health = sv->rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001298 } else {
1299 sv->state &= ~SRV_MAINTAIN;
1300 set_server_down(sv);
1301 }
1302 } else {
1303 set_server_up(sv);
Willy Tarreau70461302010-10-22 14:39:02 +02001304 sv->health = sv->rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001305 }
1306 }
1307
Willy Tarreau532a4502011-09-07 22:37:44 +02001308 return 1;
1309 }
1310 else if (strcmp(args[1], "frontend") == 0) {
1311 struct proxy *px;
1312
1313 px = expect_frontend_admin(s, si, args[2]);
1314 if (!px)
1315 return 1;
1316
1317 if (px->state == PR_STSTOPPED) {
1318 si->applet.ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
1319 si->applet.st0 = STAT_CLI_PRINT;
1320 return 1;
1321 }
1322
1323 if (px->state != PR_STPAUSED) {
1324 si->applet.ctx.cli.msg = "Frontend is already enabled.\n";
1325 si->applet.st0 = STAT_CLI_PRINT;
1326 return 1;
1327 }
1328
1329 if (!resume_proxy(px)) {
1330 si->applet.ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
1331 si->applet.st0 = STAT_CLI_PRINT;
1332 return 1;
1333 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001334 return 1;
1335 }
1336 else { /* unknown "enable" parameter */
Willy Tarreau532a4502011-09-07 22:37:44 +02001337 si->applet.ctx.cli.msg = "'enable' only supports 'frontend' and 'server'.\n";
1338 si->applet.st0 = STAT_CLI_PRINT;
1339 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001340 }
1341 }
1342 else if (strcmp(args[0], "disable") == 0) {
1343 if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001344 struct server *sv;
1345
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001346 sv = expect_server_admin(s, si, args[2]);
1347 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001348 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001349
Cyril Bontécd19e512010-01-31 22:34:03 +01001350 if (! (sv->state & SRV_MAINTAIN)) {
1351 /* Not already in maintenance, we can change the server state */
1352 sv->state |= SRV_MAINTAIN;
1353 set_server_down(sv);
1354 }
1355
Willy Tarreau532a4502011-09-07 22:37:44 +02001356 return 1;
1357 }
1358 else if (strcmp(args[1], "frontend") == 0) {
1359 struct proxy *px;
1360
1361 px = expect_frontend_admin(s, si, args[2]);
1362 if (!px)
1363 return 1;
1364
1365 if (px->state == PR_STSTOPPED) {
1366 si->applet.ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
1367 si->applet.st0 = STAT_CLI_PRINT;
1368 return 1;
1369 }
1370
1371 if (px->state == PR_STPAUSED) {
1372 si->applet.ctx.cli.msg = "Frontend is already disabled.\n";
1373 si->applet.st0 = STAT_CLI_PRINT;
1374 return 1;
1375 }
1376
1377 if (!pause_proxy(px)) {
1378 si->applet.ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
1379 si->applet.st0 = STAT_CLI_PRINT;
1380 return 1;
1381 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001382 return 1;
1383 }
1384 else { /* unknown "disable" parameter */
Willy Tarreau532a4502011-09-07 22:37:44 +02001385 si->applet.ctx.cli.msg = "'disable' only supports 'frontend' and 'server'.\n";
1386 si->applet.st0 = STAT_CLI_PRINT;
1387 return 1;
1388 }
1389 }
1390 else if (strcmp(args[0], "shutdown") == 0) {
1391 if (strcmp(args[1], "frontend") == 0) {
1392 struct proxy *px;
1393
1394 px = expect_frontend_admin(s, si, args[2]);
1395 if (!px)
1396 return 1;
1397
1398 if (px->state == PR_STSTOPPED) {
1399 si->applet.ctx.cli.msg = "Frontend was already shut down.\n";
1400 si->applet.st0 = STAT_CLI_PRINT;
1401 return 1;
1402 }
1403
1404 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1405 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1406 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1407 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1408 stop_proxy(px);
1409 return 1;
1410 }
Willy Tarreaua295edc2011-09-07 23:21:03 +02001411 else if (strcmp(args[1], "session") == 0) {
1412 struct session *sess, *ptr;
1413
Willy Tarreau290e63a2012-09-20 18:07:14 +02001414 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreaua295edc2011-09-07 23:21:03 +02001415 si->applet.ctx.cli.msg = stats_permission_denied_msg;
1416 si->applet.st0 = STAT_CLI_PRINT;
1417 return 1;
1418 }
1419
1420 if (!*args[2]) {
1421 si->applet.ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
1422 si->applet.st0 = STAT_CLI_PRINT;
1423 return 1;
1424 }
1425
1426 ptr = (void *)strtoul(args[2], NULL, 0);
1427
1428 /* first, look for the requested session in the session table */
1429 list_for_each_entry(sess, &sessions, list) {
1430 if (sess == ptr)
1431 break;
1432 }
1433
1434 /* do we have the session ? */
1435 if (sess != ptr) {
1436 si->applet.ctx.cli.msg = "No such session (use 'show sess').\n";
1437 si->applet.st0 = STAT_CLI_PRINT;
1438 return 1;
1439 }
1440
1441 session_shutdown(sess, SN_ERR_KILLED);
1442 return 1;
1443 }
Willy Tarreau52b2d222011-09-07 23:48:48 +02001444 else if (strcmp(args[1], "sessions") == 0) {
1445 if (strcmp(args[2], "server") == 0) {
1446 struct server *sv;
1447 struct session *sess, *sess_bck;
1448
1449 sv = expect_server_admin(s, si, args[3]);
1450 if (!sv)
1451 return 1;
1452
1453 /* kill all the session that are on this server */
1454 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
1455 if (sess->srv_conn == sv)
1456 session_shutdown(sess, SN_ERR_KILLED);
1457
1458 return 1;
1459 }
1460 else {
1461 si->applet.ctx.cli.msg = "'shutdown sessions' only supports 'server'.\n";
1462 si->applet.st0 = STAT_CLI_PRINT;
1463 return 1;
1464 }
1465 }
Willy Tarreau532a4502011-09-07 22:37:44 +02001466 else { /* unknown "disable" parameter */
Willy Tarreau52b2d222011-09-07 23:48:48 +02001467 si->applet.ctx.cli.msg = "'shutdown' only supports 'frontend', 'session' and 'sessions'.\n";
Willy Tarreau532a4502011-09-07 22:37:44 +02001468 si->applet.st0 = STAT_CLI_PRINT;
1469 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001470 }
1471 }
1472 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001473 return 0;
1474 }
1475 return 1;
1476}
1477
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001478/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001479 * used to processes I/O from/to the stats unix socket. The system relies on a
1480 * state machine handling requests and various responses. We read a request,
1481 * then we process it and send the response, and we possibly display a prompt.
Willy Tarreaubc4af052011-02-13 13:25:14 +01001482 * Then we can read again. The state is stored in si->applet.st0 and is one of the
1483 * STAT_CLI_* constants. si->applet.st1 is used to indicate whether prompt is enabled
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001484 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001485 */
Willy Tarreaub24281b2011-02-13 13:16:36 +01001486static void cli_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001487{
Willy Tarreau7421efb2012-07-02 15:11:27 +02001488 struct channel *req = si->ob;
1489 struct channel *res = si->ib;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001490 int reql;
1491 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001492
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001493 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
1494 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001495
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001496 while (1) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001497 if (si->applet.st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001498 /* Stats output not initialized yet */
Willy Tarreau295a8372011-03-10 11:25:07 +01001499 memset(&si->applet.ctx.stats, 0, sizeof(si->applet.ctx.stats));
Willy Tarreaubc4af052011-02-13 13:25:14 +01001500 si->applet.st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001501 }
Willy Tarreaubc4af052011-02-13 13:25:14 +01001502 else if (si->applet.st0 == STAT_CLI_END) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001503 /* Let's close for real now. We just close the request
1504 * side, the conditions below will complete if needed.
1505 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001506 si_shutw(si);
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001507 break;
1508 }
Willy Tarreaubc4af052011-02-13 13:25:14 +01001509 else if (si->applet.st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001510 /* ensure we have some output room left in the event we
1511 * would want to return some info right after parsing.
1512 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001513 if (buffer_almost_full(si->ib->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02001514 break;
1515
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001516 reql = bo_getline(si->ob, trash.str, trash.size);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001517 if (reql <= 0) { /* closed or EOL not found */
1518 if (reql == 0)
1519 break;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001520 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001521 continue;
1522 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001523
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001524 /* seek for a possible semi-colon. If we find one, we
1525 * replace it with an LF and skip only this part.
1526 */
1527 for (len = 0; len < reql; len++)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001528 if (trash.str[len] == ';') {
1529 trash.str[len] = '\n';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001530 reql = len + 1;
1531 break;
1532 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001533
Willy Tarreau816fc222009-10-04 07:36:58 +02001534 /* now it is time to check that we have a full line,
1535 * remove the trailing \n and possibly \r, then cut the
1536 * line.
1537 */
1538 len = reql - 1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001539 if (trash.str[len] != '\n') {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001540 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001541 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001542 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001543
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001544 if (len && trash.str[len-1] == '\r')
Willy Tarreau816fc222009-10-04 07:36:58 +02001545 len--;
1546
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001547 trash.str[len] = '\0';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001548
Willy Tarreaubc4af052011-02-13 13:25:14 +01001549 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001550 if (len) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001551 if (strcmp(trash.str, "quit") == 0) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001552 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001553 continue;
1554 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001555 else if (strcmp(trash.str, "prompt") == 0)
Willy Tarreaubc4af052011-02-13 13:25:14 +01001556 si->applet.st1 = !si->applet.st1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001557 else if (strcmp(trash.str, "help") == 0 ||
1558 !stats_sock_parse_request(si, trash.str)) {
Willy Tarreau295a8372011-03-10 11:25:07 +01001559 si->applet.ctx.cli.msg = stats_sock_usage_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001560 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02001561 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001562 /* NB: stats_sock_parse_request() may have put
Willy Tarreaubc4af052011-02-13 13:25:14 +01001563 * another STAT_CLI_O_* into si->applet.st0.
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001564 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001565 }
Willy Tarreaubc4af052011-02-13 13:25:14 +01001566 else if (!si->applet.st1) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001567 /* if prompt is disabled, print help on empty lines,
1568 * so that the user at least knows how to enable
1569 * prompt and find help.
1570 */
Willy Tarreau295a8372011-03-10 11:25:07 +01001571 si->applet.ctx.cli.msg = stats_sock_usage_msg;
Willy Tarreaubc4af052011-02-13 13:25:14 +01001572 si->applet.st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001573 }
1574
1575 /* re-adjust req buffer */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02001576 bo_skip(si->ob, reql);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001577 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001578 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001579 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001580 if (res->flags & (CF_SHUTR_NOW|CF_SHUTR)) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001581 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001582 continue;
1583 }
1584
Willy Tarreaubc4af052011-02-13 13:25:14 +01001585 switch (si->applet.st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02001586 case STAT_CLI_PRINT:
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02001587 if (bi_putstr(si->ib, si->applet.ctx.cli.msg) != -1)
Willy Tarreaubc4af052011-02-13 13:25:14 +01001588 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001589 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001590 case STAT_CLI_O_INFO:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001591 if (stats_dump_info_to_buffer(si))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001592 si->applet.st0 = STAT_CLI_PROMPT;
1593 break;
1594 case STAT_CLI_O_STAT:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001595 if (stats_dump_stat_to_buffer(si, NULL))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001596 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001597 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001598 case STAT_CLI_O_SESS:
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01001599 if (stats_dump_sess_to_buffer(si))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001600 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001601 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001602 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01001603 if (stats_dump_errors_to_buffer(si))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001604 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001605 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02001606 case STAT_CLI_O_TAB:
Simon Hormanc88b8872011-06-15 15:18:49 +09001607 case STAT_CLI_O_CLR:
Willy Tarreaudec98142012-06-06 23:37:08 +02001608 if (stats_table_request(si, si->applet.st0))
Willy Tarreaubc4af052011-02-13 13:25:14 +01001609 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau69f58c82010-07-12 17:55:33 +02001610 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001611 default: /* abnormal state */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001612 si->applet.st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001613 break;
1614 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001615
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001616 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001617 if (si->applet.st0 == STAT_CLI_PROMPT) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02001618 if (bi_putstr(si->ib, si->applet.st1 ? "\n> " : "\n") != -1)
Willy Tarreaubc4af052011-02-13 13:25:14 +01001619 si->applet.st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001620 }
1621
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001622 /* If the output functions are still there, it means they require more room. */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001623 if (si->applet.st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001624 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001625
1626 /* Now we close the output if one of the writers did so,
1627 * or if we're not in interactive mode and the request
1628 * buffer is empty. This still allows pipelined requests
1629 * to be sent in non-interactive mode.
1630 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001631 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!si->applet.st1 && !req->buf->o)) {
Willy Tarreaubc4af052011-02-13 13:25:14 +01001632 si->applet.st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001633 continue;
1634 }
1635
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001636 /* switch state back to GETREQ to read next requests */
Willy Tarreaubc4af052011-02-13 13:25:14 +01001637 si->applet.st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001638 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001639 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001640
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001641 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST) && (si->applet.st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001642 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
1643 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
Aman Guptaceafb4a2012-04-02 18:57:54 -07001644 /* Other side has closed, let's abort if we have no more processing to do
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001645 * and nothing more to consume. This is comparable to a broken pipe, so
1646 * we forward the close to the request side so that it flows upstream to
1647 * the client.
1648 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001649 si_shutw(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001650 }
1651
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001652 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (si->applet.st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001653 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
1654 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
1655 /* We have no more processing to do, and nothing more to send, and
1656 * the client side has closed. So we'll forward this state downstream
1657 * on the response buffer.
1658 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001659 si_shutr(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001660 res->flags |= CF_READ_NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001661 }
1662
1663 /* update all other flags and resync with the other side */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001664 si_update(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001665
1666 /* we don't want to expire timeouts while we're processing requests */
1667 si->ib->rex = TICK_ETERNITY;
1668 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001669
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001670 out:
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001671 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 +02001672 __FUNCTION__, __LINE__,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001673 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 +02001674
1675 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
1676 /* check that we have released everything then unregister */
1677 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001678 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001679}
1680
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001681/* This function dumps information onto the stream interface's read buffer.
1682 * It returns 0 as long as it does not complete, non-zero upon completion.
1683 * No state is used.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001684 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001685static int stats_dump_info_to_buffer(struct stream_interface *si)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001686{
1687 unsigned int up = (now.tv_sec - start_date.tv_sec);
1688
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001689 chunk_printf(&trash,
1690 "Name: " PRODUCT_NAME "\n"
1691 "Version: " HAPROXY_VERSION "\n"
1692 "Release_date: " HAPROXY_DATE "\n"
1693 "Nbproc: %d\n"
1694 "Process_num: %d\n"
1695 "Pid: %d\n"
1696 "Uptime: %dd %dh%02dm%02ds\n"
1697 "Uptime_sec: %d\n"
1698 "Memmax_MB: %d\n"
1699 "Ulimit-n: %d\n"
1700 "Maxsock: %d\n"
1701 "Maxconn: %d\n"
1702 "Hard_maxconn: %d\n"
1703 "Maxpipes: %d\n"
1704 "CurrConns: %d\n"
1705 "PipesUsed: %d\n"
1706 "PipesFree: %d\n"
1707 "ConnRate: %d\n"
1708 "ConnRateLimit: %d\n"
1709 "MaxConnRate: %d\n"
1710 "CompressBpsIn: %u\n"
1711 "CompressBpsOut: %u\n"
1712 "CompressBpsRateLim: %u\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001713#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001714 "ZlibMemUsage: %ld\n"
1715 "MaxZlibMemUsage: %ld\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001716#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001717 "Tasks: %d\n"
1718 "Run_queue: %d\n"
1719 "Idle_pct: %d\n"
1720 "node: %s\n"
1721 "description: %s\n"
1722 "",
1723 global.nbproc,
1724 relative_pid,
1725 pid,
1726 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
1727 up,
1728 global.rlimit_memmax,
1729 global.rlimit_nofile,
1730 global.maxsock, global.maxconn, global.hardmaxconn, global.maxpipes,
1731 actconn, pipes_used, pipes_free,
1732 read_freq_ctr(&global.conn_per_sec), global.cps_lim, global.cps_max,
1733 read_freq_ctr(&global.comp_bps_in), read_freq_ctr(&global.comp_bps_out),
1734 global.comp_rate_lim,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001735#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001736 zlib_used_memory, global.maxzlibmem,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001737#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01001738 nb_tasks_cur, run_queue_cur, idle_pct,
1739 global.node, global.desc ? global.desc : ""
1740 );
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001741
1742 if (bi_putchk(si->ib, &trash) == -1)
1743 return 0;
1744
1745 return 1;
1746}
1747
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001748/* Dumps a frontend's line to the trash for the current proxy <px> and uses
1749 * the state from stream interface <si>. The caller is responsible for clearing
1750 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
Cyril Bonté70be45d2010-10-12 00:14:35 +02001751 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001752static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
Cyril Bonté70be45d2010-10-12 00:14:35 +02001753{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001754 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02001755
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001756 if (!(px->cap & PR_CAP_FE))
1757 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02001758
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001759 if ((si->applet.ctx.stats.flags & STAT_BOUND) && !(si->applet.ctx.stats.type & (1 << STATS_TYPE_FE)))
1760 return 0;
1761
Willy Tarreau354898b2012-12-23 18:15:23 +01001762 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001763 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001764 /* name, queue */
1765 "<tr class=\"frontend\">");
Cyril Bonté70be45d2010-10-12 00:14:35 +02001766
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001767 if (px->cap & PR_CAP_BE && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
1768 /* Column sub-heading for Enable or Disable server */
1769 chunk_appendf(&trash, "<td></td>");
1770 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02001771
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001772 chunk_appendf(&trash,
1773 "<td class=ac>"
1774 "<a name=\"%s/Frontend\"></a>"
1775 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
1776 "<td colspan=3></td>"
1777 "",
1778 px->id, px->id);
Cyril Bonté70be45d2010-10-12 00:14:35 +02001779
Willy Tarreau466c9b52012-12-23 02:25:03 +01001780 chunk_appendf(&trash,
1781 /* sessions rate : current */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001782 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01001783 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
1784 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
1785 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001786 U2H(read_freq_ctr(&px->fe_sess_per_sec)),
1787 U2H(read_freq_ctr(&px->fe_conn_per_sec)),
1788 U2H(read_freq_ctr(&px->fe_sess_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001789
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001790 if (px->mode == PR_MODE_HTTP)
1791 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01001792 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001793 U2H(read_freq_ctr(&px->fe_req_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001794
1795 chunk_appendf(&trash,
1796 "</table></div></u></td>"
1797 /* sessions rate : max */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001798 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01001799 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
1800 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
1801 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001802 U2H(px->fe_counters.sps_max),
1803 U2H(px->fe_counters.cps_max),
1804 U2H(px->fe_counters.sps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001805
1806 if (px->mode == PR_MODE_HTTP)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001807 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01001808 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001809 U2H(px->fe_counters.p.http.rps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01001810
1811 chunk_appendf(&trash,
1812 "</table></div></u></td>"
1813 /* sessions rate : limit */
1814 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001815 LIM2A(px->fe_sps_lim, "-"));
Cyril Bonté70be45d2010-10-12 00:14:35 +02001816
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001817 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001818 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001819 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001820 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01001821 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
1822 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001823 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001824 U2H(px->feconn), U2H(px->fe_counters.conn_max), U2H(px->maxconn),
1825 U2H(px->fe_counters.cum_sess),
1826 U2H(px->fe_counters.cum_conn),
1827 U2H(px->fe_counters.cum_sess));
Cyril Bonté70be45d2010-10-12 00:14:35 +02001828
Willy Tarreau466c9b52012-12-23 02:25:03 +01001829 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001830 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01001831 chunk_appendf(&trash,
1832 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
1833 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
1834 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
1835 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
1836 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
1837 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
1838 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
1839 "<tr><th>- other responses:</th><td>%s</td></tr>"
1840 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
1841 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001842 U2H(px->fe_counters.p.http.cum_req),
1843 U2H(px->fe_counters.p.http.rsp[1]),
1844 U2H(px->fe_counters.p.http.rsp[2]),
1845 U2H(px->fe_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001846 px->fe_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01001847 (int)(100*px->fe_counters.p.http.comp_rsp/px->fe_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01001848 U2H(px->fe_counters.p.http.rsp[3]),
1849 U2H(px->fe_counters.p.http.rsp[4]),
1850 U2H(px->fe_counters.p.http.rsp[5]),
1851 U2H(px->fe_counters.p.http.rsp[0]),
1852 U2H(px->fe_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001853 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001854
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001855 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01001856 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001857 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01001858 "<td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001859 /* bytes : in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001860 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001861 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001862 U2H(px->fe_counters.bytes_in));
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001863
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001864 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001865 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001866 "<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 +01001867 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001868 U2H(px->fe_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001869 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp,
1870 px->fe_counters.comp_in ?
1871 (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 +01001872 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "</u>":"");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001873
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001874 chunk_appendf(&trash,
1875 /* denied: req, resp */
1876 "<td>%s</td><td>%s</td>"
1877 /* errors : request, connect, response */
1878 "<td>%s</td><td></td><td></td>"
1879 /* warnings: retries, redispatches */
1880 "<td></td><td></td>"
1881 /* server status : reflect frontend status */
1882 "<td class=ac>%s</td>"
1883 /* rest of server: nothing */
1884 "<td class=ac colspan=8></td></tr>"
1885 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01001886 U2H(px->fe_counters.denied_req), U2H(px->fe_counters.denied_resp),
1887 U2H(px->fe_counters.failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001888 px->state == PR_STREADY ? "OPEN" :
1889 px->state == PR_STFULL ? "FULL" : "STOP");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001890 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001891 else { /* CSV mode */
1892 chunk_appendf(&trash,
1893 /* pxid, name, queue cur, queue max, */
1894 "%s,FRONTEND,,,"
1895 /* sessions : current, max, limit, total */
1896 "%d,%d,%d,%lld,"
1897 /* bytes : in, out */
1898 "%lld,%lld,"
1899 /* denied: req, resp */
1900 "%lld,%lld,"
1901 /* errors : request, connect, response */
1902 "%lld,,,"
1903 /* warnings: retries, redispatches */
1904 ",,"
1905 /* server status : reflect frontend status */
1906 "%s,"
1907 /* rest of server: nothing */
1908 ",,,,,,,,"
1909 /* pid, iid, sid, throttle, lbtot, tracked, type */
1910 "%d,%d,0,,,,%d,"
1911 /* rate, rate_lim, rate_max */
1912 "%u,%u,%u,"
1913 /* check_status, check_code, check_duration */
1914 ",,,",
1915 px->id,
1916 px->feconn, px->fe_counters.conn_max, px->maxconn, px->fe_counters.cum_sess,
1917 px->fe_counters.bytes_in, px->fe_counters.bytes_out,
1918 px->fe_counters.denied_req, px->fe_counters.denied_resp,
1919 px->fe_counters.failed_req,
1920 px->state == PR_STREADY ? "OPEN" :
1921 px->state == PR_STFULL ? "FULL" : "STOP",
1922 relative_pid, px->uuid, STATS_TYPE_FE,
1923 read_freq_ctr(&px->fe_sess_per_sec),
1924 px->fe_sps_lim, px->fe_counters.sps_max);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001925
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001926 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1927 if (px->mode == PR_MODE_HTTP) {
1928 for (i=1; i<6; i++)
1929 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[i]);
1930 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[0]);
1931 }
1932 else
1933 chunk_appendf(&trash, ",,,,,,");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001934
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001935 /* failed health analyses */
1936 chunk_appendf(&trash, ",");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001937
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001938 /* requests : req_rate, req_rate_max, req_tot, */
1939 chunk_appendf(&trash, "%u,%u,%lld,",
1940 read_freq_ctr(&px->fe_req_per_sec),
1941 px->fe_counters.p.http.rps_max, px->fe_counters.p.http.cum_req);
1942
1943 /* errors: cli_aborts, srv_aborts */
1944 chunk_appendf(&trash, ",,");
1945
1946 /* compression: in, out, bypassed */
1947 chunk_appendf(&trash, "%lld,%lld,%lld,",
1948 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp);
1949
1950 /* compression: comp_rsp */
1951 chunk_appendf(&trash, "%lld,",
1952 px->fe_counters.p.http.comp_rsp);
1953
1954 /* finish with EOL */
1955 chunk_appendf(&trash, "\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001956 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001957 return 1;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001958}
1959
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001960/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
1961 * from stream interface <si>, and stats flags <flags>. The caller is responsible
1962 * for clearing the trash if needed. Returns non-zero if it emits anything, zero
1963 * otherwise.
Willy Tarreau91861262007-10-17 17:06:05 +02001964 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001965static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l, int flags)
Willy Tarreau91861262007-10-17 17:06:05 +02001966{
Willy Tarreau354898b2012-12-23 18:15:23 +01001967 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001968 chunk_appendf(&trash, "<tr class=socket>");
1969 if (px->cap & PR_CAP_BE && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
1970 /* Column sub-heading for Enable or Disable server */
1971 chunk_appendf(&trash, "<td></td>");
1972 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01001973 chunk_appendf(&trash,
1974 /* frontend name, listener name */
1975 "<td class=ac><a name=\"%s/+%s\"></a>%s"
1976 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
1977 "",
1978 px->id, l->name,
1979 (flags & ST_SHLGNDS)?"<u>":"",
1980 px->id, l->name, l->name);
Willy Tarreau91861262007-10-17 17:06:05 +02001981
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001982 if (flags & ST_SHLGNDS) {
1983 char str[INET6_ADDRSTRLEN];
1984 int port;
Willy Tarreau91861262007-10-17 17:06:05 +02001985
Willy Tarreau656a9ce2013-04-19 14:41:29 +02001986 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreau91861262007-10-17 17:06:05 +02001987
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01001988 port = get_host_port(&l->addr);
1989 switch (addr_to_str(&l->addr, str, sizeof(str))) {
1990 case AF_INET:
1991 chunk_appendf(&trash, "IPv4: %s:%d, ", str, port);
1992 break;
1993 case AF_INET6:
1994 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, port);
1995 break;
1996 case AF_UNIX:
1997 chunk_appendf(&trash, "unix, ");
1998 break;
1999 case -1:
2000 chunk_appendf(&trash, "(%s), ", strerror(errno));
2001 break;
2002 }
Willy Tarreau91861262007-10-17 17:06:05 +02002003
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002004 /* id */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002005 chunk_appendf(&trash, "id: %d</div>", l->luid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002006 }
Willy Tarreau91861262007-10-17 17:06:05 +02002007
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002008 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002009 /* queue */
2010 "%s</td><td colspan=3></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002011 /* sessions rate: current, max, limit */
2012 "<td colspan=3>&nbsp;</td>"
2013 /* sessions: current, max, limit, total, lbtot */
2014 "<td>%s</td><td>%s</td><td>%s</td>"
2015 "<td>%s</td><td>&nbsp;</td>"
2016 /* bytes: in, out */
2017 "<td>%s</td><td>%s</td>"
2018 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002019 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002020 U2H(l->nbconn), U2H(l->counters->conn_max), U2H(l->maxconn),
2021 U2H(l->counters->cum_conn), U2H(l->counters->bytes_in), U2H(l->counters->bytes_out));
Willy Tarreau56a560a2009-09-22 19:27:35 +02002022
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002023 chunk_appendf(&trash,
2024 /* denied: req, resp */
2025 "<td>%s</td><td>%s</td>"
2026 /* errors: request, connect, response */
2027 "<td>%s</td><td></td><td></td>"
2028 /* warnings: retries, redispatches */
2029 "<td></td><td></td>"
2030 /* server status: reflect listener status */
2031 "<td class=ac>%s</td>"
2032 /* rest of server: nothing */
2033 "<td class=ac colspan=8></td></tr>"
2034 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002035 U2H(l->counters->denied_req), U2H(l->counters->denied_resp),
2036 U2H(l->counters->failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002037 (l->nbconn < l->maxconn) ? (l->state == LI_LIMITED) ? "WAITING" : "OPEN" : "FULL");
2038 }
2039 else { /* CSV mode */
2040 chunk_appendf(&trash,
2041 /* pxid, name, queue cur, queue max, */
2042 "%s,%s,,,"
2043 /* sessions: current, max, limit, total */
2044 "%d,%d,%d,%lld,"
2045 /* bytes: in, out */
2046 "%lld,%lld,"
2047 /* denied: req, resp */
2048 "%lld,%lld,"
2049 /* errors: request, connect, response */
2050 "%lld,,,"
2051 /* warnings: retries, redispatches */
2052 ",,"
2053 /* server status: reflect listener status */
2054 "%s,"
2055 /* rest of server: nothing */
2056 ",,,,,,,,"
2057 /* pid, iid, sid, throttle, lbtot, tracked, type */
2058 "%d,%d,%d,,,,%d,"
2059 /* rate, rate_lim, rate_max */
2060 ",,,"
2061 /* check_status, check_code, check_duration */
2062 ",,,"
2063 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2064 ",,,,,,"
2065 /* failed health analyses */
2066 ","
2067 /* requests : req_rate, req_rate_max, req_tot, */
2068 ",,,"
2069 /* errors: cli_aborts, srv_aborts */
2070 ",,"
2071 /* compression: in, out, bypassed, comp_rsp */
2072 ",,,,"
2073 "\n",
2074 px->id, l->name,
2075 l->nbconn, l->counters->conn_max,
2076 l->maxconn, l->counters->cum_conn,
2077 l->counters->bytes_in, l->counters->bytes_out,
2078 l->counters->denied_req, l->counters->denied_resp,
2079 l->counters->failed_req,
2080 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
2081 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
2082 }
2083 return 1;
2084}
Willy Tarreau91861262007-10-17 17:06:05 +02002085
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002086/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
2087 * from stream interface <si>, stats flags <flags>, and server state <state>.
2088 * The caller is responsible for clearing the trash if needed. Returns non-zero
2089 * if it emits anything, zero otherwise. The <state> parameter can take the
2090 * following values : 0=DOWN, 1=going up, 2=going down, 3=UP, 4,5=NOLB, 6=unchecked.
2091 */
2092static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, int flags, struct server *sv, int state)
2093{
2094 struct server *ref = sv->track ? sv->track : sv;
2095 char str[INET6_ADDRSTRLEN];
2096 struct chunk src;
2097 int i;
Willy Tarreau91861262007-10-17 17:06:05 +02002098
Willy Tarreau354898b2012-12-23 18:15:23 +01002099 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002100 static char *srv_hlt_st[7] = {
2101 "DOWN",
2102 "DN %d/%d &uarr;",
2103 "UP %d/%d &darr;",
2104 "UP",
2105 "NOLB %d/%d &darr;",
2106 "NOLB",
2107 "<i>no check</i>"
2108 };
Willy Tarreau91861262007-10-17 17:06:05 +02002109
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002110 if ((sv->state & SRV_MAINTAIN) || (ref->state & SRV_MAINTAIN))
2111 chunk_appendf(&trash, "<tr class=\"maintain\">");
Geoff Bucarcc8bb922013-04-18 13:53:16 -07002112 else if (sv->eweight == 0)
2113 chunk_appendf(&trash, "<tr class=\"softstop\">");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002114 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002115 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002116 "<tr class=\"%s%d\">",
2117 (sv->state & SRV_BACKUP) ? "backup" : "active", state);
Willy Tarreau91861262007-10-17 17:06:05 +02002118
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002119 if ((px->cap & PR_CAP_BE) && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002120 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002121 "<td><input type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
2122 sv->id);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002123
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002124 chunk_appendf(&trash,
2125 "<td class=ac><a name=\"%s/%s\"></a>%s"
2126 "<a class=lfsb href=\"#%s/%s\">%s</a>"
2127 "",
2128 px->id, sv->id,
2129 (flags & ST_SHLGNDS) ? "<u>" : "",
2130 px->id, sv->id, sv->id);
Willy Tarreau91861262007-10-17 17:06:05 +02002131
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002132 if (flags & ST_SHLGNDS) {
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002133 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002134
2135 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2136 case AF_INET:
2137 chunk_appendf(&trash, "IPv4: %s:%d, ", str, get_host_port(&sv->addr));
2138 break;
2139 case AF_INET6:
2140 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, get_host_port(&sv->addr));
2141 break;
2142 case AF_UNIX:
2143 chunk_appendf(&trash, "unix, ");
2144 break;
2145 case -1:
2146 chunk_appendf(&trash, "(%s), ", strerror(errno));
2147 break;
2148 default: /* address family not supported */
2149 break;
Willy Tarreau55bb8452007-10-17 18:44:57 +02002150 }
Willy Tarreau91861262007-10-17 17:06:05 +02002151
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002152 /* id */
2153 chunk_appendf(&trash, "id: %d", sv->puid);
Willy Tarreau91861262007-10-17 17:06:05 +02002154
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002155 /* cookie */
2156 if (sv->cookie) {
2157 chunk_appendf(&trash, ", cookie: '");
Willy Tarreau5031e6a2007-10-18 11:05:48 +02002158
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002159 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
2160 chunk_htmlencode(&trash, &src);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002161
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002162 chunk_appendf(&trash, "'");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002163 }
2164
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002165 chunk_appendf(&trash, "</div>");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002166 }
Willy Tarreau91861262007-10-17 17:06:05 +02002167
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002168 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002169 /* queue : current, max, limit */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002170 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002171 /* sessions rate : current, max, limit */
2172 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002173 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002174 (flags & ST_SHLGNDS) ? "</u>" : "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002175 U2H(sv->nbpend), U2H(sv->counters.nbpend_max), LIM2A(sv->maxqueue, "-"),
2176 U2H(read_freq_ctr(&sv->sess_per_sec)), U2H(sv->counters.sps_max));
Willy Tarreau91861262007-10-17 17:06:05 +02002177
Willy Tarreau466c9b52012-12-23 02:25:03 +01002178
2179 chunk_appendf(&trash,
2180 /* sessions: current, max, limit, total */
2181 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002182 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002183 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
2184 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002185 U2H(sv->cur_sess), U2H(sv->counters.cur_sess_max), LIM2A(sv->maxconn, "-"),
2186 U2H(sv->counters.cum_sess),
2187 U2H(sv->counters.cum_sess));
Willy Tarreau91861262007-10-17 17:06:05 +02002188
Willy Tarreau466c9b52012-12-23 02:25:03 +01002189 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2190 if (px->mode == PR_MODE_HTTP) {
2191 unsigned long long tot;
2192 for (tot = i = 0; i < 6; i++)
2193 tot += sv->counters.p.http.rsp[i];
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002194
Willy Tarreau466c9b52012-12-23 02:25:03 +01002195 chunk_appendf(&trash,
2196 "<tr><th>Cum. HTTP responses:</th><td>%s</td></tr>"
2197 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2198 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2199 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2200 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2201 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2202 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2203 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002204 U2H(tot),
2205 U2H(sv->counters.p.http.rsp[1]), tot ? (int)(100*sv->counters.p.http.rsp[1] / tot) : 0,
2206 U2H(sv->counters.p.http.rsp[2]), tot ? (int)(100*sv->counters.p.http.rsp[2] / tot) : 0,
2207 U2H(sv->counters.p.http.rsp[3]), tot ? (int)(100*sv->counters.p.http.rsp[3] / tot) : 0,
2208 U2H(sv->counters.p.http.rsp[4]), tot ? (int)(100*sv->counters.p.http.rsp[4] / tot) : 0,
2209 U2H(sv->counters.p.http.rsp[5]), tot ? (int)(100*sv->counters.p.http.rsp[5] / tot) : 0,
2210 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 +02002211 }
Willy Tarreau91861262007-10-17 17:06:05 +02002212
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002213 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002214 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002215 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01002216 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002217 U2H(sv->counters.cum_lbconn));
Willy Tarreau91861262007-10-17 17:06:05 +02002218
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002219 chunk_appendf(&trash,
2220 /* bytes : in, out */
2221 "<td>%s</td><td>%s</td>"
2222 /* denied: req, resp */
2223 "<td></td><td>%s</td>"
2224 /* errors : request, connect */
2225 "<td></td><td>%s</td>"
2226 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002227 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002228 /* warnings: retries, redispatches */
2229 "<td>%lld</td><td>%lld</td>"
2230 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002231 U2H(sv->counters.bytes_in), U2H(sv->counters.bytes_out),
2232 U2H(sv->counters.failed_secu),
2233 U2H(sv->counters.failed_conns),
2234 U2H(sv->counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002235 sv->counters.cli_aborts,
2236 sv->counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002237 sv->counters.retries, sv->counters.redispatches);
2238
2239 /* status, lest check */
2240 chunk_appendf(&trash, "<td class=ac>");
2241
2242 if (sv->state & SRV_MAINTAIN) {
2243 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - sv->last_change, 1));
2244 chunk_appendf(&trash, "MAINT");
2245 }
2246 else if (ref != sv && ref->state & SRV_MAINTAIN) {
2247 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2248 chunk_appendf(&trash, "MAINT(via)");
2249 }
2250 else if (ref->state & SRV_CHECKED) {
2251 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2252 chunk_appendf(&trash,
2253 srv_hlt_st[state],
2254 (ref->state & SRV_RUNNING) ? (ref->health - ref->rise + 1) : (ref->health),
2255 (ref->state & SRV_RUNNING) ? (ref->fall) : (ref->rise));
Willy Tarreau55bb8452007-10-17 18:44:57 +02002256 }
Willy Tarreau91861262007-10-17 17:06:05 +02002257
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002258 if (sv->state & SRV_CHECKED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002259 chunk_appendf(&trash,
2260 "</td><td class=ac><u> %s%s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002261 (sv->state & SRV_CHK_RUNNING) ? "* " : "",
2262 get_check_status_info(sv->check.status));
2263
2264 if (sv->check.status >= HCHK_STATUS_L57DATA)
2265 chunk_appendf(&trash, "/%d", sv->check.code);
2266
2267 if (sv->check.status >= HCHK_STATUS_CHECKED && sv->check.duration >= 0)
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002268 chunk_appendf(&trash, " in %lums", sv->check.duration);
2269
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002270 chunk_appendf(&trash, "<div class=tips>%s",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002271 get_check_status_description(sv->check.status));
2272 if (*sv->check.desc) {
2273 chunk_appendf(&trash, ": ");
2274 chunk_initlen(&src, sv->check.desc, 0, strlen(sv->check.desc));
2275 chunk_htmlencode(&trash, &src);
2276 }
2277 chunk_appendf(&trash, "</div></u>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002278 }
2279 else
2280 chunk_appendf(&trash, "</td><td>");
2281
2282 chunk_appendf(&trash,
2283 /* weight */
2284 "</td><td class=ac>%d</td>"
2285 /* act, bck */
2286 "<td class=ac>%s</td><td class=ac>%s</td>"
2287 "",
2288 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2289 (sv->state & SRV_BACKUP) ? "-" : "Y",
2290 (sv->state & SRV_BACKUP) ? "Y" : "-");
2291
2292 /* check failures: unique, fatal, down time */
2293 if (sv->state & SRV_CHECKED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002294 chunk_appendf(&trash, "<td><u>%lld", ref->counters.failed_checks);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002295
2296 if (ref->observe)
2297 chunk_appendf(&trash, "/%lld", ref->counters.failed_hana);
2298
2299 chunk_appendf(&trash,
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002300 "<div class=tips>Failed Health Checks%s</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002301 "<td>%lld</td><td>%s</td>"
2302 "",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002303 ref->observe ? "/Health Analyses" : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002304 ref->counters.down_trans, human_time(srv_downtime(sv), 1));
2305 }
2306 else if (sv != ref)
2307 chunk_appendf(&trash,
2308 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
2309 ref->proxy->id, ref->id, ref->proxy->id, ref->id);
2310 else
2311 chunk_appendf(&trash, "<td colspan=3></td>");
2312
2313 /* throttle */
2314 if ((sv->state & SRV_WARMINGUP) &&
2315 now.tv_sec < sv->last_change + sv->slowstart &&
2316 now.tv_sec >= sv->last_change) {
2317 chunk_appendf(&trash, "<td class=ac>%d %%</td></tr>\n",
2318 (int)MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart));
2319 }
2320 else
2321 chunk_appendf(&trash, "<td class=ac>-</td></tr>\n");
2322 }
2323 else { /* CSV mode */
2324 static char *srv_hlt_st[7] = {
2325 "DOWN,",
2326 "DOWN %d/%d,",
2327 "UP %d/%d,",
2328 "UP,",
2329 "NOLB %d/%d,",
2330 "NOLB,",
2331 "no check,"
2332 };
2333
2334 chunk_appendf(&trash,
2335 /* pxid, name */
2336 "%s,%s,"
2337 /* queue : current, max */
2338 "%d,%d,"
2339 /* sessions : current, max, limit, total */
2340 "%d,%d,%s,%lld,"
2341 /* bytes : in, out */
2342 "%lld,%lld,"
2343 /* denied: req, resp */
2344 ",%lld,"
2345 /* errors : request, connect, response */
2346 ",%lld,%lld,"
2347 /* warnings: retries, redispatches */
2348 "%lld,%lld,"
2349 "",
2350 px->id, sv->id,
2351 sv->nbpend, sv->counters.nbpend_max,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002352 sv->cur_sess, sv->counters.cur_sess_max, LIM2A(sv->maxconn, ""), sv->counters.cum_sess,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002353 sv->counters.bytes_in, sv->counters.bytes_out,
2354 sv->counters.failed_secu,
2355 sv->counters.failed_conns, sv->counters.failed_resp,
2356 sv->counters.retries, sv->counters.redispatches);
2357
2358 /* status */
2359 if (sv->state & SRV_MAINTAIN)
2360 chunk_appendf(&trash, "MAINT,");
2361 else if (ref != sv && ref->state & SRV_MAINTAIN)
2362 chunk_appendf(&trash, "MAINT(via),");
2363 else
2364 chunk_appendf(&trash,
2365 srv_hlt_st[state],
2366 (ref->state & SRV_RUNNING) ? (ref->health - ref->rise + 1) : (ref->health),
2367 (ref->state & SRV_RUNNING) ? (ref->fall) : (ref->rise));
2368
2369 chunk_appendf(&trash,
2370 /* weight, active, backup */
2371 "%d,%d,%d,"
2372 "",
2373 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2374 (sv->state & SRV_BACKUP) ? 0 : 1,
2375 (sv->state & SRV_BACKUP) ? 1 : 0);
2376
2377 /* check failures: unique, fatal; last change, total downtime */
2378 if (sv->state & SRV_CHECKED)
2379 chunk_appendf(&trash,
2380 "%lld,%lld,%d,%d,",
2381 sv->counters.failed_checks, sv->counters.down_trans,
2382 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
2383 else
2384 chunk_appendf(&trash, ",,,,");
2385
2386 /* queue limit, pid, iid, sid, */
2387 chunk_appendf(&trash,
2388 "%s,"
2389 "%d,%d,%d,",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002390 LIM2A(sv->maxqueue, ""),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002391 relative_pid, px->uuid, sv->puid);
2392
2393 /* throttle */
2394 if ((sv->state & SRV_WARMINGUP) &&
2395 now.tv_sec < sv->last_change + sv->slowstart &&
2396 now.tv_sec >= sv->last_change)
2397 chunk_appendf(&trash, "%d", (int)MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart));
2398
2399 /* sessions: lbtot */
2400 chunk_appendf(&trash, ",%lld,", sv->counters.cum_lbconn);
2401
2402 /* tracked */
2403 if (sv->track)
2404 chunk_appendf(&trash, "%s/%s,",
2405 sv->track->proxy->id, sv->track->id);
2406 else
2407 chunk_appendf(&trash, ",");
2408
2409 /* type */
2410 chunk_appendf(&trash, "%d,", STATS_TYPE_SV);
2411
2412 /* rate */
2413 chunk_appendf(&trash, "%u,,%u,",
2414 read_freq_ctr(&sv->sess_per_sec),
2415 sv->counters.sps_max);
2416
2417 if (sv->state & SRV_CHECKED) {
2418 /* check_status */
2419 chunk_appendf(&trash, "%s,", get_check_status_info(sv->check.status));
2420
2421 /* check_code */
2422 if (sv->check.status >= HCHK_STATUS_L57DATA)
2423 chunk_appendf(&trash, "%u,", sv->check.code);
2424 else
2425 chunk_appendf(&trash, ",");
2426
2427 /* check_duration */
2428 if (sv->check.status >= HCHK_STATUS_CHECKED)
2429 chunk_appendf(&trash, "%lu,", sv->check.duration);
2430 else
2431 chunk_appendf(&trash, ",");
2432
2433 }
2434 else
2435 chunk_appendf(&trash, ",,,");
2436
2437 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2438 if (px->mode == PR_MODE_HTTP) {
2439 for (i=1; i<6; i++)
2440 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[i]);
2441
2442 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[0]);
2443 }
2444 else
2445 chunk_appendf(&trash, ",,,,,,");
2446
2447 /* failed health analyses */
2448 chunk_appendf(&trash, "%lld,", sv->counters.failed_hana);
2449
2450 /* requests : req_rate, req_rate_max, req_tot, */
2451 chunk_appendf(&trash, ",,,");
2452
2453 /* errors: cli_aborts, srv_aborts */
2454 chunk_appendf(&trash, "%lld,%lld,",
2455 sv->counters.cli_aborts, sv->counters.srv_aborts);
2456
2457 /* compression: in, out, bypassed, comp_rsp */
2458 chunk_appendf(&trash, ",,,,");
2459
2460 /* finish with EOL */
2461 chunk_appendf(&trash, "\n");
2462 }
2463 return 1;
2464}
2465
2466/* Dumps a line for backend <px> to the trash for and uses the state from stream
2467 * interface <si> and stats flags <flags>. The caller is responsible for clearing
2468 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
2469 */
2470static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px, int flags)
2471{
2472 struct chunk src;
2473 int i;
2474
2475 if (!(px->cap & PR_CAP_BE))
2476 return 0;
2477
2478 if ((si->applet.ctx.stats.flags & STAT_BOUND) && !(si->applet.ctx.stats.type & (1 << STATS_TYPE_BE)))
2479 return 0;
2480
Willy Tarreau354898b2012-12-23 18:15:23 +01002481 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002482 chunk_appendf(&trash, "<tr class=\"backend\">");
2483 if (px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2484 /* Column sub-heading for Enable or Disable server */
2485 chunk_appendf(&trash, "<td></td>");
2486 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002487 chunk_appendf(&trash,
2488 "<td class=ac>"
2489 /* name */
2490 "%s<a name=\"%s/Backend\"></a>"
2491 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
2492 "",
2493 (flags & ST_SHLGNDS)?"<u>":"",
2494 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002495
2496 if (flags & ST_SHLGNDS) {
2497 /* balancing */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002498 chunk_appendf(&trash, "<div class=tips>balancing: %s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002499 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
2500
2501 /* cookie */
2502 if (px->cookie_name) {
2503 chunk_appendf(&trash, ", cookie: '");
2504 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
2505 chunk_htmlencode(&trash, &src);
2506 chunk_appendf(&trash, "'");
2507 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002508 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002509 }
2510
2511 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002512 "%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002513 /* queue : current, max */
2514 "<td>%s</td><td>%s</td><td></td>"
2515 /* sessions rate : current, max, limit */
2516 "<td>%s</td><td>%s</td><td></td>"
2517 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002518 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002519 U2H(px->nbpend) /* or px->totpend ? */, U2H(px->be_counters.nbpend_max),
2520 U2H(read_freq_ctr(&px->be_sess_per_sec)), U2H(px->be_counters.sps_max));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002521
2522 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002523 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002524 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002525 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002526 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002527 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002528 U2H(px->beconn), U2H(px->be_counters.conn_max), U2H(px->fullconn),
2529 U2H(px->be_counters.cum_conn),
2530 U2H(px->be_counters.cum_conn));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002531
Willy Tarreau466c9b52012-12-23 02:25:03 +01002532 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002533 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01002534 chunk_appendf(&trash,
2535 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
2536 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
2537 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
2538 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
2539 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
2540 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
2541 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
2542 "<tr><th>- other responses:</th><td>%s</td></tr>"
2543 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
2544 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002545 U2H(px->be_counters.p.http.cum_req),
2546 U2H(px->be_counters.p.http.rsp[1]),
2547 U2H(px->be_counters.p.http.rsp[2]),
2548 U2H(px->be_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002549 px->be_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01002550 (int)(100*px->be_counters.p.http.comp_rsp/px->be_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002551 U2H(px->be_counters.p.http.rsp[3]),
2552 U2H(px->be_counters.p.http.rsp[4]),
2553 U2H(px->be_counters.p.http.rsp[5]),
2554 U2H(px->be_counters.p.http.rsp[0]),
2555 U2H(px->be_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002556 }
2557
2558 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002559 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002560 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01002561 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002562 /* bytes: in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002563 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002564 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002565 U2H(px->be_counters.cum_lbconn),
2566 U2H(px->be_counters.bytes_in));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002567
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002568 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002569 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002570 "<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 +01002571 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002572 U2H(px->be_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002573 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp,
2574 px->be_counters.comp_in ?
2575 (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 +01002576 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "</u>":"");
2577
2578 chunk_appendf(&trash,
2579 /* denied: req, resp */
2580 "<td>%s</td><td>%s</td>"
2581 /* errors : request, connect */
2582 "<td></td><td>%s</td>"
2583 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002584 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002585 /* warnings: retries, redispatches */
2586 "<td>%lld</td><td>%lld</td>"
2587 /* backend status: reflect backend status (up/down): we display UP
2588 * if the backend has known working servers or if it has no server at
2589 * all (eg: for stats). Then we display the total weight, number of
2590 * active and backups. */
2591 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
2592 "<td class=ac>%d</td><td class=ac>%d</td>"
2593 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002594 U2H(px->be_counters.denied_req), U2H(px->be_counters.denied_resp),
2595 U2H(px->be_counters.failed_conns),
2596 U2H(px->be_counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002597 px->be_counters.cli_aborts,
2598 px->be_counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002599 px->be_counters.retries, px->be_counters.redispatches,
2600 human_time(now.tv_sec - px->last_change, 1),
2601 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
2602 "<font color=\"red\"><b>DOWN</b></font>",
2603 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2604 px->srv_act, px->srv_bck);
2605
2606 chunk_appendf(&trash,
2607 /* rest of backend: nothing, down transitions, total downtime, throttle */
2608 "<td class=ac>&nbsp;</td><td>%d</td>"
2609 "<td>%s</td>"
2610 "<td></td>"
2611 "</tr>",
2612 px->down_trans,
2613 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
2614 }
2615 else { /* CSV mode */
2616 chunk_appendf(&trash,
2617 /* pxid, name */
2618 "%s,BACKEND,"
2619 /* queue : current, max */
2620 "%d,%d,"
2621 /* sessions : current, max, limit, total */
2622 "%d,%d,%d,%lld,"
2623 /* bytes : in, out */
2624 "%lld,%lld,"
2625 /* denied: req, resp */
2626 "%lld,%lld,"
2627 /* errors : request, connect, response */
2628 ",%lld,%lld,"
2629 /* warnings: retries, redispatches */
2630 "%lld,%lld,"
2631 /* backend status: reflect backend status (up/down): we display UP
2632 * if the backend has known working servers or if it has no server at
2633 * all (eg: for stats). Then we display the total weight, number of
2634 * active and backups. */
2635 "%s,"
2636 "%d,%d,%d,"
2637 /* rest of backend: nothing, down transitions, last change, total downtime */
2638 ",%d,%d,%d,,"
2639 /* pid, iid, sid, throttle, lbtot, tracked, type */
2640 "%d,%d,0,,%lld,,%d,"
2641 /* rate, rate_lim, rate_max, */
2642 "%u,,%u,"
2643 /* check_status, check_code, check_duration */
2644 ",,,",
2645 px->id,
2646 px->nbpend /* or px->totpend ? */, px->be_counters.nbpend_max,
2647 px->beconn, px->be_counters.conn_max, px->fullconn, px->be_counters.cum_conn,
2648 px->be_counters.bytes_in, px->be_counters.bytes_out,
2649 px->be_counters.denied_req, px->be_counters.denied_resp,
2650 px->be_counters.failed_conns, px->be_counters.failed_resp,
2651 px->be_counters.retries, px->be_counters.redispatches,
2652 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
2653 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2654 px->srv_act, px->srv_bck,
2655 px->down_trans, (int)(now.tv_sec - px->last_change),
2656 px->srv?be_downtime(px):0,
2657 relative_pid, px->uuid,
2658 px->be_counters.cum_lbconn, STATS_TYPE_BE,
2659 read_freq_ctr(&px->be_sess_per_sec),
2660 px->be_counters.sps_max);
2661
2662 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2663 if (px->mode == PR_MODE_HTTP) {
2664 for (i=1; i<6; i++)
2665 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[i]);
2666 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[0]);
2667 }
2668 else
2669 chunk_appendf(&trash, ",,,,,,");
2670
2671 /* failed health analyses */
2672 chunk_appendf(&trash, ",");
2673
2674 /* requests : req_rate, req_rate_max, req_tot, */
2675 chunk_appendf(&trash, ",,,");
2676
2677 /* errors: cli_aborts, srv_aborts */
2678 chunk_appendf(&trash, "%lld,%lld,",
2679 px->be_counters.cli_aborts, px->be_counters.srv_aborts);
2680
2681 /* compression: in, out, bypassed */
2682 chunk_appendf(&trash, "%lld,%lld,%lld,",
2683 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp);
2684
2685 /* compression: comp_rsp */
2686 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.comp_rsp);
2687
2688 /* finish with EOL */
2689 chunk_appendf(&trash, "\n");
2690 }
2691 return 1;
2692}
2693
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002694/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002695 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002696 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002697 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002698static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002699{
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002700 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
2701
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002702 if (px->cap & PR_CAP_BE && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2703 /* A form to enable/disable this proxy servers */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002704
2705 /* scope_txt = search pattern + search query, si->applet.ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
2706 scope_txt[0] = 0;
2707 if (si->applet.ctx.stats.scope_len) {
2708 strcpy(scope_txt, STAT_SCOPE_PATTERN);
2709 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len);
2710 scope_txt[strlen(STAT_SCOPE_PATTERN) + si->applet.ctx.stats.scope_len] = 0;
2711 }
2712
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002713 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002714 "<form action=\"%s%s%s%s\" method=\"post\">",
2715 uri->uri_prefix,
2716 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
2717 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
2718 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002719 }
2720
2721 /* print a new table */
2722 chunk_appendf(&trash,
2723 "<table class=\"tbl\" width=\"100%%\">\n"
2724 "<tr class=\"titre\">"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002725 "<th class=\"pxname\" width=\"10%%\">");
2726
2727 chunk_appendf(&trash,
2728 "<a name=\"%s\"></a>%s"
2729 "<a class=px href=\"#%s\">%s</a>",
2730 px->id,
2731 (uri->flags & ST_SHLGNDS) ? "<u>":"",
2732 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002733
2734 if (uri->flags & ST_SHLGNDS) {
2735 /* cap, mode, id */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002736 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002737 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
2738 px->uuid);
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002739 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002740 }
2741
2742 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002743 "%s</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002744 "<th class=\"%s\" width=\"90%%\">%s</th>"
2745 "</tr>\n"
2746 "</table>\n"
2747 "<table class=\"tbl\" width=\"100%%\">\n"
2748 "<tr class=\"titre\">",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002749 (uri->flags & ST_SHLGNDS) ? "</u>":"",
2750 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
2751
2752 if ((px->cap & PR_CAP_BE) && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2753 /* Column heading for Enable or Disable server */
2754 chunk_appendf(&trash, "<th rowspan=2 width=1></th>");
Willy Tarreau91861262007-10-17 17:06:05 +02002755 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002756
2757 chunk_appendf(&trash,
2758 "<th rowspan=2></th>"
2759 "<th colspan=3>Queue</th>"
2760 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
2761 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
2762 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
2763 "<th colspan=9>Server</th>"
2764 "</tr>\n"
2765 "<tr class=\"titre\">"
2766 "<th>Cur</th><th>Max</th><th>Limit</th>"
2767 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
2768 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
2769 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
2770 "<th>Resp</th><th>Retr</th><th>Redis</th>"
2771 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
2772 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
2773 "<th>Thrtle</th>\n"
2774 "</tr>");
Willy Tarreau91861262007-10-17 17:06:05 +02002775}
2776
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002777/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002778 * stream interface <si>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002779 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002780static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002781{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002782 chunk_appendf(&trash, "</table>");
2783
2784 if ((px->cap & PR_CAP_BE) && px->srv && (si->applet.ctx.stats.flags & STAT_ADMIN)) {
2785 /* close the form used to enable/disable this proxy servers */
2786 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002787 "Choose the action to perform on the checked servers : "
2788 "<select name=action>"
2789 "<option value=\"\"></option>"
2790 "<option value=\"disable\">Disable</option>"
2791 "<option value=\"enable\">Enable</option>"
2792 "<option value=\"stop\">Soft Stop</option>"
2793 "<option value=\"start\">Soft Start</option>"
2794 "<option value=\"shutdown\">Kill Sessions</option>"
2795 "</select>"
2796 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
2797 "&nbsp;<input type=\"submit\" value=\"Apply\">"
2798 "</form>",
2799 px->uuid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002800 }
2801
2802 chunk_appendf(&trash, "<p>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002803}
Willy Tarreau91861262007-10-17 17:06:05 +02002804
2805/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002806 * Dumps statistics for a proxy. The output is sent to the stream interface's
2807 * input buffer. Returns 0 if it had to stop dumping data because of lack of
2808 * buffer space, or non-zero if everything completed. This function is used
2809 * both by the CLI and the HTTP entry points, and is able to dump the output
2810 * in HTML or CSV formats. If the later, <uri> must be NULL.
Willy Tarreau91861262007-10-17 17:06:05 +02002811 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002812static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02002813{
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002814 struct session *s = si->conn->xprt_ctx;
Willy Tarreau7421efb2012-07-02 15:11:27 +02002815 struct channel *rep = si->ib;
Willy Tarreau44267702011-10-28 15:35:33 +02002816 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002817 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02002818
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002819 chunk_reset(&trash);
Willy Tarreau91861262007-10-17 17:06:05 +02002820
Willy Tarreau295a8372011-03-10 11:25:07 +01002821 switch (si->applet.ctx.stats.px_st) {
2822 case STAT_PX_ST_INIT:
Willy Tarreau91861262007-10-17 17:06:05 +02002823 /* we are on a new proxy */
Willy Tarreau91861262007-10-17 17:06:05 +02002824 if (uri && uri->scope) {
2825 /* we have a limited scope, we have to check the proxy name */
2826 struct stat_scope *scope;
2827 int len;
2828
2829 len = strlen(px->id);
2830 scope = uri->scope;
2831
2832 while (scope) {
2833 /* match exact proxy name */
2834 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
2835 break;
2836
2837 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02002838 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02002839 break;
2840 scope = scope->next;
2841 }
2842
2843 /* proxy name not found : don't dump anything */
2844 if (scope == NULL)
2845 return 1;
2846 }
2847
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02002848 /* if the user has requested a limited output and the proxy
2849 * name does not match, skip it.
2850 */
2851 if (si->applet.ctx.stats.scope_len &&
2852 strnistr(px->id, strlen(px->id), bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len) == NULL)
2853 return 1;
2854
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002855 if ((si->applet.ctx.stats.flags & STAT_BOUND) &&
2856 (si->applet.ctx.stats.iid != -1) &&
2857 (px->uuid != si->applet.ctx.stats.iid))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002858 return 1;
2859
Willy Tarreau295a8372011-03-10 11:25:07 +01002860 si->applet.ctx.stats.px_st = STAT_PX_ST_TH;
Willy Tarreau91861262007-10-17 17:06:05 +02002861 /* fall through */
2862
Willy Tarreau295a8372011-03-10 11:25:07 +01002863 case STAT_PX_ST_TH:
Willy Tarreau354898b2012-12-23 18:15:23 +01002864 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002865 stats_dump_html_px_hdr(si, px, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002866 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau55bb8452007-10-17 18:44:57 +02002867 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002868 }
Willy Tarreau91861262007-10-17 17:06:05 +02002869
Willy Tarreau295a8372011-03-10 11:25:07 +01002870 si->applet.ctx.stats.px_st = STAT_PX_ST_FE;
Willy Tarreau91861262007-10-17 17:06:05 +02002871 /* fall through */
2872
Willy Tarreau295a8372011-03-10 11:25:07 +01002873 case STAT_PX_ST_FE:
Willy Tarreau91861262007-10-17 17:06:05 +02002874 /* print the frontend */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002875 if (stats_dump_fe_stats(si, px))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002876 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02002877 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02002878
Willy Tarreau4348fad2012-09-20 16:48:07 +02002879 si->applet.ctx.stats.l = px->conf.listeners.n;
Willy Tarreau295a8372011-03-10 11:25:07 +01002880 si->applet.ctx.stats.px_st = STAT_PX_ST_LI;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002881 /* fall through */
2882
Willy Tarreau295a8372011-03-10 11:25:07 +01002883 case STAT_PX_ST_LI:
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002884 /* stats.l has been initialized above */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002885 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 +02002886 if (buffer_almost_full(rep->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02002887 return 0;
2888
Willy Tarreau4348fad2012-09-20 16:48:07 +02002889 l = LIST_ELEM(si->applet.ctx.stats.l, struct listener *, by_fe);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002890 if (!l->counters)
2891 continue;
2892
Willy Tarreau295a8372011-03-10 11:25:07 +01002893 if (si->applet.ctx.stats.flags & STAT_BOUND) {
2894 if (!(si->applet.ctx.stats.type & (1 << STATS_TYPE_SO)))
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002895 break;
2896
Willy Tarreau295a8372011-03-10 11:25:07 +01002897 if (si->applet.ctx.stats.sid != -1 && l->luid != si->applet.ctx.stats.sid)
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002898 continue;
2899 }
2900
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002901 /* print the frontend */
2902 if (stats_dump_li_stats(si, px, l, uri ? uri->flags : 0))
2903 if (bi_putchk(rep, &trash) == -1)
2904 return 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002905 }
2906
Willy Tarreau295a8372011-03-10 11:25:07 +01002907 si->applet.ctx.stats.sv = px->srv; /* may be NULL */
2908 si->applet.ctx.stats.px_st = STAT_PX_ST_SV;
Willy Tarreau91861262007-10-17 17:06:05 +02002909 /* fall through */
2910
Willy Tarreau295a8372011-03-10 11:25:07 +01002911 case STAT_PX_ST_SV:
Willy Tarreau91861262007-10-17 17:06:05 +02002912 /* stats.sv has been initialized above */
Willy Tarreau295a8372011-03-10 11:25:07 +01002913 for (; si->applet.ctx.stats.sv != NULL; si->applet.ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01002914 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 +02002915
Willy Tarreau9b28e032012-10-12 23:49:43 +02002916 if (buffer_almost_full(rep->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02002917 return 0;
2918
Willy Tarreau295a8372011-03-10 11:25:07 +01002919 sv = si->applet.ctx.stats.sv;
Willy Tarreau91861262007-10-17 17:06:05 +02002920
Willy Tarreau295a8372011-03-10 11:25:07 +01002921 if (si->applet.ctx.stats.flags & STAT_BOUND) {
2922 if (!(si->applet.ctx.stats.type & (1 << STATS_TYPE_SV)))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002923 break;
2924
Willy Tarreau295a8372011-03-10 11:25:07 +01002925 if (si->applet.ctx.stats.sid != -1 && sv->puid != si->applet.ctx.stats.sid)
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002926 continue;
2927 }
2928
Willy Tarreau44267702011-10-28 15:35:33 +02002929 if (sv->track)
2930 svs = sv->track;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002931 else
2932 svs = sv;
2933
Willy Tarreau91861262007-10-17 17:06:05 +02002934 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002935 if (!(svs->state & SRV_CHECKED))
Willy Tarreau2ea81932007-11-30 12:04:38 +01002936 sv_state = 6;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002937 else if (svs->state & SRV_RUNNING) {
2938 if (svs->health == svs->rise + svs->fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02002939 sv_state = 3; /* UP */
2940 else
2941 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01002942
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002943 if (svs->state & SRV_GOINGDOWN)
Willy Tarreau2ea81932007-11-30 12:04:38 +01002944 sv_state += 2;
2945 }
Willy Tarreau91861262007-10-17 17:06:05 +02002946 else
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002947 if (svs->health)
Willy Tarreau91861262007-10-17 17:06:05 +02002948 sv_state = 1; /* going up */
2949 else
2950 sv_state = 0; /* DOWN */
2951
Willy Tarreau295a8372011-03-10 11:25:07 +01002952 if (((sv_state == 0) || (sv->state & SRV_MAINTAIN)) && (si->applet.ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02002953 /* do not report servers which are DOWN */
Willy Tarreau295a8372011-03-10 11:25:07 +01002954 si->applet.ctx.stats.sv = sv->next;
Willy Tarreau91861262007-10-17 17:06:05 +02002955 continue;
2956 }
2957
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002958 if (stats_dump_sv_stats(si, px, uri ? uri->flags : 0, sv, sv_state))
2959 if (bi_putchk(rep, &trash) == -1)
2960 return 0;
2961 } /* for sv */
Cyril Bonté474be412010-10-12 00:14:36 +02002962
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002963 si->applet.ctx.stats.px_st = STAT_PX_ST_BE;
2964 /* fall through */
Cyril Bonté70be45d2010-10-12 00:14:35 +02002965
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002966 case STAT_PX_ST_BE:
2967 /* print the backend */
2968 if (stats_dump_be_stats(si, px, uri ? uri->flags : 0))
2969 if (bi_putchk(rep, &trash) == -1)
2970 return 0;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002971
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002972 si->applet.ctx.stats.px_st = STAT_PX_ST_END;
2973 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002974
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002975 case STAT_PX_ST_END:
Willy Tarreau354898b2012-12-23 18:15:23 +01002976 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002977 stats_dump_html_px_end(si, px);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002978 if (bi_putchk(rep, &trash) == -1)
2979 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002980 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002981
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002982 si->applet.ctx.stats.px_st = STAT_PX_ST_FIN;
2983 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002984
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002985 case STAT_PX_ST_FIN:
2986 return 1;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002987
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002988 default:
2989 /* unknown state, we should put an abort() here ! */
2990 return 1;
2991 }
2992}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002993
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002994/* Dumps the HTTP stats head block to the trash for and uses the per-uri
2995 * parameters <uri>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002996 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002997static void stats_dump_html_head(struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002998{
2999 /* WARNING! This must fit in the first buffer !!! */
3000 chunk_appendf(&trash,
3001 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3002 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3003 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3004 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3005 "<style type=\"text/css\"><!--\n"
3006 "body {"
3007 " font-family: arial, helvetica, sans-serif;"
3008 " font-size: 12px;"
3009 " font-weight: normal;"
3010 " color: black;"
3011 " background: white;"
3012 "}\n"
3013 "th,td {"
3014 " font-size: 10px;"
3015 "}\n"
3016 "h1 {"
3017 " font-size: x-large;"
3018 " margin-bottom: 0.5em;"
3019 "}\n"
3020 "h2 {"
3021 " font-family: helvetica, arial;"
3022 " font-size: x-large;"
3023 " font-weight: bold;"
3024 " font-style: italic;"
3025 " color: #6020a0;"
3026 " margin-top: 0em;"
3027 " margin-bottom: 0em;"
3028 "}\n"
3029 "h3 {"
3030 " font-family: helvetica, arial;"
3031 " font-size: 16px;"
3032 " font-weight: bold;"
3033 " color: #b00040;"
3034 " background: #e8e8d0;"
3035 " margin-top: 0em;"
3036 " margin-bottom: 0em;"
3037 "}\n"
3038 "li {"
3039 " margin-top: 0.25em;"
3040 " margin-right: 2em;"
3041 "}\n"
3042 ".hr {margin-top: 0.25em;"
3043 " border-color: black;"
3044 " border-bottom-style: solid;"
3045 "}\n"
3046 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3047 ".total {background: #20D0D0;color: #ffff80;}\n"
3048 ".frontend {background: #e8e8d0;}\n"
3049 ".socket {background: #d0d0d0;}\n"
3050 ".backend {background: #e8e8d0;}\n"
3051 ".active0 {background: #ff9090;}\n"
3052 ".active1 {background: #ffd020;}\n"
3053 ".active2 {background: #ffffa0;}\n"
3054 ".active3 {background: #c0ffc0;}\n"
3055 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
3056 ".active5 {background: #a0e0a0;}\n" /* NOLB state shows darker than up */
3057 ".active6 {background: #e0e0e0;}\n"
3058 ".backup0 {background: #ff9090;}\n"
3059 ".backup1 {background: #ff80ff;}\n"
3060 ".backup2 {background: #c060ff;}\n"
3061 ".backup3 {background: #b0d0ff;}\n"
3062 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
3063 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
3064 ".backup6 {background: #e0e0e0;}\n"
3065 ".maintain {background: #c07820;}\n"
Geoff Bucarcc8bb922013-04-18 13:53:16 -07003066 ".softstop {background: #0067FF;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003067 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3068 "\n"
3069 "a.px:link {color: #ffff40; text-decoration: none;}"
3070 "a.px:visited {color: #ffff40; text-decoration: none;}"
3071 "a.px:hover {color: #ffffff; text-decoration: none;}"
3072 "a.lfsb:link {color: #000000; text-decoration: none;}"
3073 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3074 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3075 "\n"
3076 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3077 "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"
3078 "table.tbl td.ac { text-align: center;}\n"
3079 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3080 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3081 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3082 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3083 "\n"
3084 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3085 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3086 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003087 "table.det { border-collapse: collapse; border-style: none; }\n"
3088 "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"
3089 "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 +01003090 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003091 "div.tips {\n"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003092 " display:block;\n"
3093 " visibility:hidden;\n"
3094 " z-index:2147483647;\n"
3095 " position:absolute;\n"
3096 " padding:2px 4px 3px;\n"
3097 " background:#f0f060; color:#000000;\n"
3098 " border:1px solid #7040c0;\n"
3099 " white-space:nowrap;\n"
3100 " font-style:normal;font-size:11px;font-weight:normal;\n"
3101 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3102 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3103 "}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003104 "u:hover div.tips {visibility:visible;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003105 "-->\n"
3106 "</style></head>\n",
3107 (uri->flags & ST_SHNODE) ? " on " : "",
3108 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
3109 );
3110}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003111
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003112/* Dumps the HTML stats information block to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003113 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003114 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003115 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003116static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003117{
3118 unsigned int up = (now.tv_sec - start_date.tv_sec);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003119 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003120
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003121 /* WARNING! this has to fit the first packet too.
3122 * We are around 3.5 kB, add adding entries will
3123 * become tricky if we want to support 4kB buffers !
3124 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003125 chunk_appendf(&trash,
3126 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3127 PRODUCT_NAME "%s</a></h1>\n"
3128 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3129 "<hr width=\"100%%\" class=\"hr\">\n"
3130 "<h3>&gt; General process information</h3>\n"
3131 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
3132 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
3133 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3134 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3135 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
3136 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec<br>\n"
3137 "Running tasks: %d/%d; idle = %d %%<br>\n"
3138 "</td><td align=\"center\" nowrap>\n"
3139 "<table class=\"lgd\"><tr>\n"
3140 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
3141 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
3142 "</tr><tr>\n"
3143 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
3144 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
3145 "</tr><tr>\n"
3146 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
3147 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3148 "</tr><tr>\n"
3149 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
3150 "<td class=\"active6\"></td><td class=\"noborder\">not checked </td>"
3151 "</tr><tr>\n"
3152 "<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 -07003153 "</tr><tr>\n"
3154 "<td class=\"softstop\"></td><td class=\"noborder\" colspan=\"3\">active or backup SOFT STOPPED for maintenance &nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003155 "</tr></table>\n"
3156 "Note: UP with load-balancing disabled is reported as \"NOLB\"."
3157 "</td>"
3158 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3159 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3160 "",
3161 (uri->flags & ST_HIDEVER) ? "" : (STATS_VERSION_STRING),
3162 pid, (uri->flags & ST_SHNODE) ? " on " : "",
3163 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3164 (uri->flags & ST_SHDESC) ? ": " : "",
3165 (uri->flags & ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
3166 pid, relative_pid, global.nbproc,
3167 up / 86400, (up % 86400) / 3600,
3168 (up % 3600) / 60, (up % 60),
3169 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3170 global.rlimit_memmax ? " MB" : "",
3171 global.rlimit_nofile,
3172 global.maxsock, global.maxconn, global.maxpipes,
3173 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
3174 run_queue_cur, nb_tasks_cur, idle_pct
3175 );
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003176
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003177 /* scope_txt = search query, si->applet.ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3178 memcpy(scope_txt, bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len);
3179 scope_txt[si->applet.ctx.stats.scope_len] = '\0';
3180
3181 chunk_appendf(&trash,
Cyril Bonté54656842013-04-18 22:38:35 +02003182 "<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 +02003183 uri->uri_prefix,
3184 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3185 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3186 (si->applet.ctx.stats.scope_len > 0) ? scope_txt : "",
3187 STAT_SCOPE_TXT_MAXLEN);
3188
3189 /* scope_txt = search pattern + search query, si->applet.ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3190 scope_txt[0] = 0;
3191 if (si->applet.ctx.stats.scope_len) {
3192 strcpy(scope_txt, STAT_SCOPE_PATTERN);
3193 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + si->applet.ctx.stats.scope_str, si->applet.ctx.stats.scope_len);
3194 scope_txt[strlen(STAT_SCOPE_PATTERN) + si->applet.ctx.stats.scope_len] = 0;
3195 }
3196
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003197 if (si->applet.ctx.stats.flags & STAT_HIDE_DOWN)
3198 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003199 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003200 uri->uri_prefix,
3201 "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003202 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3203 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003204 else
3205 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003206 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003207 uri->uri_prefix,
3208 ";up",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003209 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3210 scope_txt);
Willy Tarreau91861262007-10-17 17:06:05 +02003211
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003212 if (uri->refresh > 0) {
3213 if (si->applet.ctx.stats.flags & STAT_NO_REFRESH)
3214 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003215 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003216 uri->uri_prefix,
3217 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003218 "",
3219 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003220 else
3221 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003222 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003223 uri->uri_prefix,
3224 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003225 ";norefresh",
3226 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003227 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02003228
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003229 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003230 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003231 uri->uri_prefix,
3232 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003233 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3234 scope_txt);
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02003235
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003236 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003237 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003238 uri->uri_prefix,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003239 (uri->refresh > 0) ? ";norefresh" : "",
3240 scope_txt);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003241
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003242 chunk_appendf(&trash,
3243 "</ul></td>"
3244 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3245 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3246 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3247 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3248 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3249 "</ul>"
3250 "</td>"
3251 "</tr></table>\n"
3252 ""
3253 );
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003254
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003255 if (si->applet.ctx.stats.st_code) {
3256 switch (si->applet.ctx.stats.st_code) {
3257 case STAT_STATUS_DONE:
3258 chunk_appendf(&trash,
3259 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003260 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003261 "Action processed successfully."
Willy Tarreauba6be982013-04-19 12:16:55 +02003262 "</div>\n", uri->uri_prefix,
3263 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3264 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3265 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003266 break;
3267 case STAT_STATUS_NONE:
3268 chunk_appendf(&trash,
3269 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003270 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003271 "Nothing has changed."
Willy Tarreauba6be982013-04-19 12:16:55 +02003272 "</div>\n", uri->uri_prefix,
3273 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3274 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3275 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003276 break;
3277 case STAT_STATUS_PART:
3278 chunk_appendf(&trash,
3279 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003280 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003281 "Action partially processed.<br>"
3282 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
Willy Tarreauba6be982013-04-19 12:16:55 +02003283 "</div>\n", uri->uri_prefix,
3284 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3285 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3286 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003287 break;
3288 case STAT_STATUS_ERRP:
3289 chunk_appendf(&trash,
3290 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003291 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003292 "Action not processed because of invalid parameters."
3293 "<ul>"
3294 "<li>The action is maybe unknown.</li>"
3295 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3296 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3297 "</ul>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003298 "</div>\n", uri->uri_prefix,
3299 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3300 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3301 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003302 break;
3303 case STAT_STATUS_EXCD:
3304 chunk_appendf(&trash,
3305 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003306 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003307 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3308 "You should retry with less servers at a time.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003309 "</div>\n", uri->uri_prefix,
3310 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3311 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3312 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003313 break;
3314 case STAT_STATUS_DENY:
3315 chunk_appendf(&trash,
3316 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003317 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003318 "<b>Action denied.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003319 "</div>\n", uri->uri_prefix,
3320 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3321 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3322 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003323 break;
3324 default:
3325 chunk_appendf(&trash,
3326 "<p><div class=active6>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003327 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003328 "Unexpected result."
Willy Tarreauba6be982013-04-19 12:16:55 +02003329 "</div>\n", uri->uri_prefix,
3330 (si->applet.ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3331 (si->applet.ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3332 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003333 }
3334 chunk_appendf(&trash, "<p>\n");
3335 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003336}
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003337
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003338/* Dumps the HTML stats trailer block to the trash. The caller is responsible
3339 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003340 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003341static void stats_dump_html_end()
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003342{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003343 chunk_appendf(&trash, "</body></html>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003344}
Willy Tarreau7f062c42009-03-05 18:43:00 +01003345
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003346/* This function dumps statistics onto the stream interface's read buffer in
3347 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
3348 * are ignored for CSV format (hence <uri> may be NULL there). The xprt_ctx must
3349 * have been zeroed first, and the flags properly set. It returns 0 if it had to
3350 * stop writing data and an I/O is needed, 1 if the dump is finished and the
3351 * session must be closed, or -1 in case of any error. This function is used by
3352 * both the CLI and the HTTP handlers.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003353 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003354static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003355{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003356 struct channel *rep = si->ib;
3357 struct proxy *px;
Willy Tarreau7f062c42009-03-05 18:43:00 +01003358
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003359 chunk_reset(&trash);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02003360
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003361 switch (si->conn->xprt_st) {
3362 case STAT_ST_INIT:
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003363 si->conn->xprt_st = STAT_ST_HEAD; /* let's start producing data */
3364 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01003365
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003366 case STAT_ST_HEAD:
Willy Tarreau354898b2012-12-23 18:15:23 +01003367 if (si->applet.ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003368 stats_dump_html_head(uri);
Willy Tarreau354898b2012-12-23 18:15:23 +01003369 else
3370 stats_dump_csv_header();
Willy Tarreaud9b587f2010-02-26 10:05:55 +01003371
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003372 if (bi_putchk(rep, &trash) == -1)
3373 return 0;
Willy Tarreauae526782010-03-04 20:34:23 +01003374
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003375 si->conn->xprt_st = STAT_ST_INFO;
3376 /* fall through */
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003377
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003378 case STAT_ST_INFO:
Willy Tarreau354898b2012-12-23 18:15:23 +01003379 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003380 stats_dump_html_info(si, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003381 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003382 return 0;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003383 }
Willy Tarreau91861262007-10-17 17:06:05 +02003384
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003385 si->applet.ctx.stats.px = proxy;
3386 si->applet.ctx.stats.px_st = STAT_PX_ST_INIT;
3387 si->conn->xprt_st = STAT_ST_LIST;
Willy Tarreau91861262007-10-17 17:06:05 +02003388 /* fall through */
3389
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003390 case STAT_ST_LIST:
3391 /* dump proxies */
3392 while (si->applet.ctx.stats.px) {
3393 if (buffer_almost_full(rep->buf))
3394 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003395
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003396 px = si->applet.ctx.stats.px;
3397 /* skip the disabled proxies, global frontend and non-networked ones */
3398 if (px->state != PR_STSTOPPED && px->uuid > 0 && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003399 if (stats_dump_proxy_to_buffer(si, px, uri) == 0)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003400 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003401
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003402 si->applet.ctx.stats.px = px->next;
3403 si->applet.ctx.stats.px_st = STAT_PX_ST_INIT;
3404 }
3405 /* here, we just have reached the last proxy */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003406
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003407 si->conn->xprt_st = STAT_ST_END;
3408 /* fall through */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003409
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003410 case STAT_ST_END:
Willy Tarreau354898b2012-12-23 18:15:23 +01003411 if (si->applet.ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003412 stats_dump_html_end();
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003413 if (bi_putchk(rep, &trash) == -1)
3414 return 0;
3415 }
Willy Tarreau55058a72012-11-21 08:27:21 +01003416
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003417 si->conn->xprt_st = STAT_ST_FIN;
3418 /* fall through */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02003419
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003420 case STAT_ST_FIN:
3421 return 1;
Willy Tarreau55058a72012-11-21 08:27:21 +01003422
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003423 default:
3424 /* unknown state ! */
3425 si->conn->xprt_st = STAT_ST_FIN;
3426 return -1;
3427 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003428}
Willy Tarreauae526782010-03-04 20:34:23 +01003429
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003430/* This I/O handler runs as an applet embedded in a stream interface. It is
3431 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
3432 * si->applet.st0 becomes non-zero once the transfer is finished. The handler
3433 * automatically unregisters itself once transfer is complete.
3434 */
3435static void http_stats_io_handler(struct stream_interface *si)
3436{
3437 struct session *s = si->conn->xprt_ctx;
3438 struct channel *req = si->ob;
3439 struct channel *res = si->ib;
Willy Tarreau55058a72012-11-21 08:27:21 +01003440
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003441 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
3442 goto out;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003443
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003444 /* check that the output is not closed */
3445 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW))
3446 si->applet.st0 = 1;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003447
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003448 if (!si->applet.st0) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003449 if (stats_dump_stat_to_buffer(si, s->be->uri_auth)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01003450 si->applet.st0 = 1;
3451 si_shutw(si);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003452 }
3453 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02003454
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003455 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST))
3456 si_shutw(si);
Willy Tarreau91861262007-10-17 17:06:05 +02003457
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003458 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && si->applet.st0) {
3459 si_shutr(si);
3460 res->flags |= CF_READ_NULL;
3461 }
Willy Tarreau91861262007-10-17 17:06:05 +02003462
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003463 /* update all other flags and resync with the other side */
3464 si_update(si);
Willy Tarreau91861262007-10-17 17:06:05 +02003465
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003466 /* we don't want to expire timeouts while we're processing requests */
3467 si->ib->rex = TICK_ETERNITY;
3468 si->ob->wex = TICK_ETERNITY;
Willy Tarreau91861262007-10-17 17:06:05 +02003469
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003470 out:
3471 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
3472 /* check that we have released everything then unregister */
3473 stream_int_unregister_handler(si);
Willy Tarreau91861262007-10-17 17:06:05 +02003474 }
3475}
3476
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003477
Willy Tarreau909d5172012-11-26 03:04:41 +01003478static inline const char *get_conn_ctrl_name(const struct connection *conn)
3479{
3480 if (!conn->ctrl)
3481 return "NONE";
3482 return conn->ctrl->name;
3483}
3484
3485static inline const char *get_conn_xprt_name(const struct connection *conn)
3486{
3487 static char ptr[17];
3488
3489 if (!conn->xprt)
3490 return "NONE";
3491
3492 if (conn->xprt == &raw_sock)
3493 return "RAW";
3494
3495#ifdef USE_OPENSSL
3496 if (conn->xprt == &ssl_sock)
3497 return "SSL";
3498#endif
3499 snprintf(ptr, sizeof(ptr), "%p", conn->xprt);
3500 return ptr;
3501}
3502
3503static inline const char *get_conn_data_name(const struct connection *conn)
3504{
3505 static char ptr[17];
3506
3507 if (!conn->data)
3508 return "NONE";
3509
3510 if (conn->data == &sess_conn_cb)
3511 return "SESS";
3512
3513 if (conn->data == &si_conn_cb)
3514 return "STRM";
3515
3516 if (conn->data == &check_conn_cb)
3517 return "CHCK";
3518
3519 snprintf(ptr, sizeof(ptr), "%p", conn->data);
3520 return ptr;
3521}
3522
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003523/* This function dumps a complete session state onto the stream interface's
3524 * read buffer. The xprt_ctx must have been zeroed first, and the flags
3525 * properly set. The session has to be set in xprt_ctx.sess.target. It returns
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01003526 * 0 if the output buffer is full and it needs to be called again, otherwise
3527 * non-zero. It is designed to be called from stats_dump_sess_to_buffer() below.
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003528 */
Willy Tarreau76153662012-11-26 01:16:39 +01003529static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003530{
3531 struct tm tm;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003532 extern const char *monthname[12];
3533 char pn[INET6_ADDRSTRLEN];
3534
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003535 chunk_reset(&trash);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003536
Willy Tarreau295a8372011-03-10 11:25:07 +01003537 if (si->applet.ctx.sess.section > 0 && si->applet.ctx.sess.uid != sess->uniq_id) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003538 /* session changed, no need to go any further */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003539 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
3540 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003541 return 0;
Willy Tarreau295a8372011-03-10 11:25:07 +01003542 si->applet.ctx.sess.uid = 0;
Willy Tarreau76153662012-11-26 01:16:39 +01003543 si->applet.ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003544 return 1;
3545 }
3546
Willy Tarreau295a8372011-03-10 11:25:07 +01003547 switch (si->applet.ctx.sess.section) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003548 case 0: /* main status of the session */
Willy Tarreau295a8372011-03-10 11:25:07 +01003549 si->applet.ctx.sess.uid = sess->uniq_id;
3550 si->applet.ctx.sess.section = 1;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003551 /* fall through */
3552
3553 case 1:
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003554 get_localtime(sess->logs.accept_date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003555 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003556 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003557 sess,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003558 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3559 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003560 sess->uniq_id,
Willy Tarreaue95c4ce2013-01-24 00:48:39 +01003561 sess->listener && sess->listener->proto->name ? sess->listener->proto->name : "?");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003562
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003563 switch (addr_to_str(&sess->si[0].conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003564 case AF_INET:
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003565 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003566 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003567 pn, get_host_port(&sess->si[0].conn->addr.from));
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003568 break;
3569 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003570 chunk_appendf(&trash, " source=unix:%d\n", sess->listener->luid);
Emeric Brun837ca522010-10-22 16:19:01 +02003571 break;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003572 default:
3573 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003574 chunk_appendf(&trash, "\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003575 break;
3576 }
3577
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003578 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003579 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02003580 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003581
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003582 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07003583 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003584 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
3585 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
3586 sess->listener ? sess->listener->luid : 0);
3587
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003588 conn_get_to_addr(sess->si[0].conn);
3589 switch (addr_to_str(&sess->si[0].conn->addr.to, pn, sizeof(pn))) {
Daniel Schultze90690c72012-03-23 10:53:36 -07003590 case AF_INET:
3591 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003592 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003593 pn, get_host_port(&sess->si[0].conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07003594 break;
3595 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003596 chunk_appendf(&trash, " addr=unix:%d\n", sess->listener->luid);
Daniel Schultze90690c72012-03-23 10:53:36 -07003597 break;
3598 default:
3599 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003600 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003601 break;
3602 }
3603
Willy Tarreau50943332011-09-02 17:33:05 +02003604 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003605 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07003606 " backend=%s (id=%u mode=%s)",
Willy Tarreau50943332011-09-02 17:33:05 +02003607 sess->be->id,
Daniel Schultze90690c72012-03-23 10:53:36 -07003608 sess->be->uuid, sess->be->mode ? "http" : "tcp");
3609 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003610 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
Daniel Schultze90690c72012-03-23 10:53:36 -07003611
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003612 conn_get_from_addr(sess->si[1].conn);
3613 switch (addr_to_str(&sess->si[1].conn->addr.from, pn, sizeof(pn))) {
Daniel Schultze90690c72012-03-23 10:53:36 -07003614 case AF_INET:
3615 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003616 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003617 pn, get_host_port(&sess->si[1].conn->addr.from));
Daniel Schultze90690c72012-03-23 10:53:36 -07003618 break;
3619 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003620 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003621 break;
3622 default:
3623 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003624 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003625 break;
3626 }
3627
3628 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003629 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07003630 " server=%s (id=%u)",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003631 objt_server(sess->target) ? objt_server(sess->target)->id : "<none>",
3632 objt_server(sess->target) ? objt_server(sess->target)->puid : 0);
Willy Tarreau50943332011-09-02 17:33:05 +02003633 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003634 chunk_appendf(&trash, " server=<NONE> (id=-1)");
Daniel Schultze90690c72012-03-23 10:53:36 -07003635
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003636 conn_get_to_addr(sess->si[1].conn);
3637 switch (addr_to_str(&sess->si[1].conn->addr.to, pn, sizeof(pn))) {
Daniel Schultze90690c72012-03-23 10:53:36 -07003638 case AF_INET:
3639 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003640 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003641 pn, get_host_port(&sess->si[1].conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07003642 break;
3643 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003644 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003645 break;
3646 default:
3647 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003648 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07003649 break;
3650 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003651
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003652 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003653 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003654 sess->task,
3655 sess->task->state,
3656 sess->task->nice, sess->task->calls,
3657 sess->task->expire ?
3658 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
3659 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
3660 TICKS_TO_MS(1000)) : "<NEVER>",
3661 task_in_rq(sess->task) ? ", running" : "");
3662
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003663 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003664 " age=%s)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003665 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
3666
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003667 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003668 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s\n",
3669 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
3670 http_msg_state_str(sess->txn.req.msg_state), http_msg_state_str(sess->txn.rsp.msg_state));
3671
3672 chunk_appendf(&trash,
3673 " si[0]=%p (state=%s flags=0x%02x conn0=%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003674 &sess->si[0],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003675 si_state_str(sess->si[0].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003676 sess->si[0].flags,
Willy Tarreaubc174aa2012-11-19 16:10:32 +01003677 sess->si[0].conn,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003678 sess->si[0].exp ?
3679 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
3680 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
3681 TICKS_TO_MS(1000)) : "<NEVER>",
3682 sess->si[0].err_type);
3683
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003684 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003685 " si[1]=%p (state=%s flags=0x%02x conn1=%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003686 &sess->si[1],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003687 si_state_str(sess->si[1].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003688 sess->si[1].flags,
Willy Tarreaubc174aa2012-11-19 16:10:32 +01003689 sess->si[1].conn,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003690 sess->si[1].exp ?
3691 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
3692 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
3693 TICKS_TO_MS(1000)) : "<NEVER>",
3694 sess->si[1].err_type);
3695
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003696 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003697 " co0=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreau909d5172012-11-26 03:04:41 +01003698 sess->si[0].conn,
3699 get_conn_ctrl_name(sess->si[0].conn),
3700 get_conn_xprt_name(sess->si[0].conn),
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003701 get_conn_data_name(sess->si[0].conn),
3702 obj_type_name(sess->si[0].conn->target),
3703 obj_base_ptr(sess->si[0].conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01003704
3705 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003706 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreau1feca012012-11-19 18:15:19 +01003707 sess->si[0].conn->flags,
3708 sess->si[0].conn->t.sock.fd,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003709 sess->si[0].conn->t.sock.fd >= 0 ? fdtab[sess->si[0].conn->t.sock.fd].spec_e : 0,
3710 sess->si[0].conn->t.sock.fd >= 0 ? fdtab[sess->si[0].conn->t.sock.fd].spec_p : 0,
3711 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 +01003712
3713 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003714 " co1=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreau909d5172012-11-26 03:04:41 +01003715 sess->si[1].conn,
3716 get_conn_ctrl_name(sess->si[1].conn),
3717 get_conn_xprt_name(sess->si[1].conn),
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003718 get_conn_data_name(sess->si[1].conn),
3719 obj_type_name(sess->si[1].conn->target),
3720 obj_base_ptr(sess->si[1].conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01003721
3722 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003723 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreau1feca012012-11-19 18:15:19 +01003724 sess->si[1].conn->flags,
3725 sess->si[1].conn->t.sock.fd,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01003726 sess->si[1].conn->t.sock.fd >= 0 ? fdtab[sess->si[1].conn->t.sock.fd].spec_e : 0,
3727 sess->si[1].conn->t.sock.fd >= 0 ? fdtab[sess->si[1].conn->t.sock.fd].spec_p : 0,
3728 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 +01003729
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003730 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01003731 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003732 " an_exp=%s",
3733 sess->req,
3734 sess->req->flags, sess->req->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003735 sess->req->pipe ? sess->req->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01003736 sess->req->to_forward, sess->req->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003737 sess->req->analyse_exp ?
3738 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
3739 TICKS_TO_MS(1000)) : "<NEVER>");
3740
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003741 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003742 " rex=%s",
3743 sess->req->rex ?
3744 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
3745 TICKS_TO_MS(1000)) : "<NEVER>");
3746
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003747 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003748 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01003749 " buf=%p data=%p o=%d p=%d req.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003750 sess->req->wex ?
3751 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
3752 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01003753 sess->req->buf,
3754 sess->req->buf->data, sess->req->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003755 (int)(sess->req->buf->p - sess->req->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01003756 sess->txn.req.next, sess->req->buf->i,
3757 sess->req->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003758
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003759 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01003760 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003761 " an_exp=%s",
3762 sess->rep,
3763 sess->rep->flags, sess->rep->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003764 sess->rep->pipe ? sess->rep->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01003765 sess->rep->to_forward, sess->rep->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003766 sess->rep->analyse_exp ?
3767 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
3768 TICKS_TO_MS(1000)) : "<NEVER>");
3769
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003770 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003771 " rex=%s",
3772 sess->rep->rex ?
3773 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
3774 TICKS_TO_MS(1000)) : "<NEVER>");
3775
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003776 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003777 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01003778 " buf=%p data=%p o=%d p=%d rsp.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003779 sess->rep->wex ?
3780 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
3781 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01003782 sess->rep->buf,
3783 sess->rep->buf->data, sess->rep->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003784 (int)(sess->rep->buf->p - sess->rep->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01003785 sess->txn.rsp.next, sess->rep->buf->i,
3786 sess->rep->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003787
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003788 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003789 return 0;
3790
3791 /* use other states to dump the contents */
3792 }
3793 /* end of dump */
Willy Tarreau295a8372011-03-10 11:25:07 +01003794 si->applet.ctx.sess.uid = 0;
Willy Tarreau76153662012-11-26 01:16:39 +01003795 si->applet.ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003796 return 1;
3797}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003798
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003799/* This function dumps all sessions' states onto the stream interface's
3800 * read buffer. The xprt_ctx must have been zeroed first, and the flags
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01003801 * properly set. It returns 0 if the output buffer is full and it needs
3802 * to be called again, otherwise non-zero. It is designed to be called
3803 * from stats_dump_sess_to_buffer() below.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003804 */
Simon Horman9bd2c732011-06-15 15:18:44 +09003805static int stats_dump_sess_to_buffer(struct stream_interface *si)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003806{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003807 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003808 /* If we're forced to shut down, we might have to remove our
3809 * reference to the last session being dumped.
3810 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003811 if (si->conn->xprt_st == STAT_ST_LIST) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003812 if (!LIST_ISEMPTY(&si->applet.ctx.sess.bref.users)) {
3813 LIST_DEL(&si->applet.ctx.sess.bref.users);
3814 LIST_INIT(&si->applet.ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003815 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003816 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02003817 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003818 }
3819
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003820 chunk_reset(&trash);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003821
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003822 switch (si->conn->xprt_st) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003823 case STAT_ST_INIT:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003824 /* the function had not been called yet, let's prepare the
3825 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003826 * pointer to the first in the global list. When a target
3827 * session is being destroyed, it is responsible for updating
3828 * this pointer. We know we have reached the end when this
3829 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003830 */
Willy Tarreau295a8372011-03-10 11:25:07 +01003831 LIST_INIT(&si->applet.ctx.sess.bref.users);
3832 si->applet.ctx.sess.bref.ref = sessions.n;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003833 si->conn->xprt_st = STAT_ST_LIST;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003834 /* fall through */
3835
Willy Tarreau295a8372011-03-10 11:25:07 +01003836 case STAT_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003837 /* first, let's detach the back-ref from a possible previous session */
Willy Tarreau295a8372011-03-10 11:25:07 +01003838 if (!LIST_ISEMPTY(&si->applet.ctx.sess.bref.users)) {
3839 LIST_DEL(&si->applet.ctx.sess.bref.users);
3840 LIST_INIT(&si->applet.ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003841 }
3842
3843 /* and start from where we stopped */
Willy Tarreau295a8372011-03-10 11:25:07 +01003844 while (si->applet.ctx.sess.bref.ref != &sessions) {
Cyril Bontéacd7d632010-11-01 19:26:02 +01003845 char pn[INET6_ADDRSTRLEN];
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003846 struct session *curr_sess;
3847
Willy Tarreau295a8372011-03-10 11:25:07 +01003848 curr_sess = LIST_ELEM(si->applet.ctx.sess.bref.ref, struct session *, list);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003849
Willy Tarreau295a8372011-03-10 11:25:07 +01003850 if (si->applet.ctx.sess.target) {
Willy Tarreau76153662012-11-26 01:16:39 +01003851 if (si->applet.ctx.sess.target != (void *)-1 && si->applet.ctx.sess.target != curr_sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003852 goto next_sess;
3853
Willy Tarreau295a8372011-03-10 11:25:07 +01003854 LIST_ADDQ(&curr_sess->back_refs, &si->applet.ctx.sess.bref.users);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003855 /* call the proper dump() function and return if we're missing space */
Willy Tarreau76153662012-11-26 01:16:39 +01003856 if (!stats_dump_full_sess_to_buffer(si, curr_sess))
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003857 return 0;
3858
3859 /* session dump complete */
Willy Tarreau295a8372011-03-10 11:25:07 +01003860 LIST_DEL(&si->applet.ctx.sess.bref.users);
3861 LIST_INIT(&si->applet.ctx.sess.bref.users);
Willy Tarreau76153662012-11-26 01:16:39 +01003862 if (si->applet.ctx.sess.target != (void *)-1) {
3863 si->applet.ctx.sess.target = NULL;
3864 break;
3865 }
3866 else
3867 goto next_sess;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003868 }
3869
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003870 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003871 "%p: proto=%s",
3872 curr_sess,
3873 curr_sess->listener->proto->name);
3874
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003875
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003876 switch (addr_to_str(&curr_sess->si[0].conn->addr.from, pn, sizeof(pn))) {
Willy Tarreau631f01c2011-09-05 00:36:48 +02003877 case AF_INET:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003878 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003879 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003880 " src=%s:%d fe=%s be=%s srv=%s",
3881 pn,
Willy Tarreauf2943dc2012-10-26 20:10:28 +02003882 get_host_port(&curr_sess->si[0].conn->addr.from),
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003883 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02003884 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003885 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003886 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003887 break;
3888 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003889 chunk_appendf(&trash,
Emeric Brun837ca522010-10-22 16:19:01 +02003890 " src=unix:%d fe=%s be=%s srv=%s",
3891 curr_sess->listener->luid,
3892 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02003893 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003894 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Emeric Brun837ca522010-10-22 16:19:01 +02003895 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003896 break;
3897 }
3898
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003899 chunk_appendf(&trash,
Willy Tarreau65671ab2009-10-04 14:24:59 +02003900 " ts=%02x age=%s calls=%d",
3901 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01003902 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
3903 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003904
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003905 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003906 " rq[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003907 curr_sess->req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003908 curr_sess->req->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003909 curr_sess->req->analysers,
3910 curr_sess->req->rex ?
3911 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
3912 TICKS_TO_MS(1000)) : "");
3913
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003914 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003915 ",wx=%s",
3916 curr_sess->req->wex ?
3917 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
3918 TICKS_TO_MS(1000)) : "");
3919
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003920 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003921 ",ax=%s]",
3922 curr_sess->req->analyse_exp ?
3923 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
3924 TICKS_TO_MS(1000)) : "");
3925
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003926 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01003927 " rp[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003928 curr_sess->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02003929 curr_sess->rep->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003930 curr_sess->rep->analysers,
3931 curr_sess->rep->rex ?
3932 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
3933 TICKS_TO_MS(1000)) : "");
3934
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003935 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003936 ",wx=%s",
3937 curr_sess->rep->wex ?
3938 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
3939 TICKS_TO_MS(1000)) : "");
3940
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003941 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003942 ",ax=%s]",
3943 curr_sess->rep->analyse_exp ?
3944 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
3945 TICKS_TO_MS(1000)) : "");
3946
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003947 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003948 " s0=[%d,%1xh,fd=%d,ex=%s]",
3949 curr_sess->si[0].state,
3950 curr_sess->si[0].flags,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01003951 curr_sess->si[0].conn->t.sock.fd,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003952 curr_sess->si[0].exp ?
3953 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
3954 TICKS_TO_MS(1000)) : "");
3955
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003956 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003957 " s1=[%d,%1xh,fd=%d,ex=%s]",
3958 curr_sess->si[1].state,
3959 curr_sess->si[1].flags,
Willy Tarreau7f7ad912012-11-11 19:27:15 +01003960 curr_sess->si[1].conn->t.sock.fd,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003961 curr_sess->si[1].exp ?
3962 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
3963 TICKS_TO_MS(1000)) : "");
3964
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003965 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003966 " exp=%s",
3967 curr_sess->task->expire ?
3968 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
3969 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01003970 if (task_in_rq(curr_sess->task))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003971 chunk_appendf(&trash, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01003972
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003973 chunk_appendf(&trash, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003974
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003975 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01003976 /* let's try again later from this session. We add ourselves into
3977 * this session's users so that it can remove us upon termination.
3978 */
Willy Tarreau295a8372011-03-10 11:25:07 +01003979 LIST_ADDQ(&curr_sess->back_refs, &si->applet.ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02003980 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003981 }
3982
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003983 next_sess:
Willy Tarreau295a8372011-03-10 11:25:07 +01003984 si->applet.ctx.sess.bref.ref = curr_sess->list.n;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003985 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003986
Willy Tarreau76153662012-11-26 01:16:39 +01003987 if (si->applet.ctx.sess.target && si->applet.ctx.sess.target != (void *)-1) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003988 /* specified session not found */
Willy Tarreau295a8372011-03-10 11:25:07 +01003989 if (si->applet.ctx.sess.section > 0)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003990 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003991 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003992 chunk_appendf(&trash, "Session not found.\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003993
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003994 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003995 return 0;
3996
Willy Tarreau295a8372011-03-10 11:25:07 +01003997 si->applet.ctx.sess.target = NULL;
3998 si->applet.ctx.sess.uid = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01003999 return 1;
4000 }
4001
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004002 si->conn->xprt_st = STAT_ST_FIN;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004003 /* fall through */
4004
4005 default:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004006 si->conn->xprt_st = STAT_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02004007 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004008 }
Emeric Brun1e029aa2010-09-23 18:12:53 +02004009}
4010
Willy Tarreau5f9a8772012-11-26 02:22:40 +01004011/* This is called when the stream interface is closed. For instance, upon an
4012 * external abort, we won't call the i/o handler anymore so we may need to
4013 * remove back references to the session currently being dumped.
4014 */
Simon Horman74d88312013-02-12 10:45:50 +09004015static void cli_release_handler(struct stream_interface *si)
Willy Tarreau5f9a8772012-11-26 02:22:40 +01004016{
4017 if (si->applet.st0 == STAT_CLI_O_SESS && si->conn->xprt_st == STAT_ST_LIST) {
4018 if (!LIST_ISEMPTY(&si->applet.ctx.sess.bref.users))
4019 LIST_DEL(&si->applet.ctx.sess.bref.users);
4020 }
4021}
4022
Willy Tarreau20e99322013-04-13 09:22:25 +02004023/* This function is used to either dump tables states (when action is set
4024 * to STAT_CLI_O_TAB) or clear tables (when action is STAT_CLI_O_CLR).
4025 * The xprt_ctx must have been zeroed first, and the flags properly set.
4026 * It returns 0 if the output buffer is full and it needs to be called
4027 * again, otherwise non-zero.
Willy Tarreau69f58c82010-07-12 17:55:33 +02004028 */
Willy Tarreau20e99322013-04-13 09:22:25 +02004029static int stats_table_request(struct stream_interface *si, int action)
Willy Tarreau69f58c82010-07-12 17:55:33 +02004030{
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004031 struct session *s = si->conn->xprt_ctx;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004032 struct ebmb_node *eb;
4033 int dt;
Willy Tarreau44455022012-12-05 23:01:12 +01004034 int skip_entry;
Willy Tarreau20e99322013-04-13 09:22:25 +02004035 int show = action == STAT_CLI_O_TAB;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004036
4037 /*
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004038 * We have 3 possible states in si->conn->xprt_st :
Willy Tarreau295a8372011-03-10 11:25:07 +01004039 * - STAT_ST_INIT : the first call
4040 * - STAT_ST_INFO : the proxy pointer points to the next table to
Willy Tarreau69f58c82010-07-12 17:55:33 +02004041 * dump, the entry pointer is NULL ;
Willy Tarreau295a8372011-03-10 11:25:07 +01004042 * - STAT_ST_LIST : the proxy pointer points to the current table
Willy Tarreau69f58c82010-07-12 17:55:33 +02004043 * and the entry pointer points to the next entry to be dumped,
4044 * and the refcount on the next entry is held ;
Willy Tarreau295a8372011-03-10 11:25:07 +01004045 * - STAT_ST_END : nothing left to dump, the buffer may contain some
Willy Tarreau69f58c82010-07-12 17:55:33 +02004046 * data though.
4047 */
4048
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004049 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02004050 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004051 if (si->conn->xprt_st == STAT_ST_LIST) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004052 si->applet.ctx.table.entry->ref_cnt--;
4053 stksess_kill_if_expired(&si->applet.ctx.table.proxy->table, si->applet.ctx.table.entry);
Willy Tarreauf6efda12010-08-03 20:34:06 +02004054 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02004055 return 1;
4056 }
4057
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004058 chunk_reset(&trash);
Willy Tarreau69f58c82010-07-12 17:55:33 +02004059
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004060 while (si->conn->xprt_st != STAT_ST_FIN) {
4061 switch (si->conn->xprt_st) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004062 case STAT_ST_INIT:
4063 si->applet.ctx.table.proxy = si->applet.ctx.table.target;
4064 if (!si->applet.ctx.table.proxy)
4065 si->applet.ctx.table.proxy = proxy;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004066
Willy Tarreau295a8372011-03-10 11:25:07 +01004067 si->applet.ctx.table.entry = NULL;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004068 si->conn->xprt_st = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004069 break;
4070
Willy Tarreau295a8372011-03-10 11:25:07 +01004071 case STAT_ST_INFO:
4072 if (!si->applet.ctx.table.proxy ||
4073 (si->applet.ctx.table.target &&
4074 si->applet.ctx.table.proxy != si->applet.ctx.table.target)) {
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004075 si->conn->xprt_st = STAT_ST_END;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004076 break;
4077 }
4078
Willy Tarreau295a8372011-03-10 11:25:07 +01004079 if (si->applet.ctx.table.proxy->table.size) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004080 if (show && !stats_dump_table_head_to_buffer(&trash, si, si->applet.ctx.table.proxy,
Simon Hormanc88b8872011-06-15 15:18:49 +09004081 si->applet.ctx.table.target))
Willy Tarreau69f58c82010-07-12 17:55:33 +02004082 return 0;
4083
Willy Tarreau295a8372011-03-10 11:25:07 +01004084 if (si->applet.ctx.table.target &&
Willy Tarreau290e63a2012-09-20 18:07:14 +02004085 s->listener->bind_conf->level >= ACCESS_LVL_OPER) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02004086 /* dump entries only if table explicitly requested */
Willy Tarreau295a8372011-03-10 11:25:07 +01004087 eb = ebmb_first(&si->applet.ctx.table.proxy->table.keys);
Willy Tarreau69f58c82010-07-12 17:55:33 +02004088 if (eb) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004089 si->applet.ctx.table.entry = ebmb_entry(eb, struct stksess, key);
4090 si->applet.ctx.table.entry->ref_cnt++;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004091 si->conn->xprt_st = STAT_ST_LIST;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004092 break;
4093 }
4094 }
4095 }
Willy Tarreau295a8372011-03-10 11:25:07 +01004096 si->applet.ctx.table.proxy = si->applet.ctx.table.proxy->next;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004097 break;
4098
Willy Tarreau295a8372011-03-10 11:25:07 +01004099 case STAT_ST_LIST:
Willy Tarreau44455022012-12-05 23:01:12 +01004100 skip_entry = 0;
Simon Hormanc88b8872011-06-15 15:18:49 +09004101
Willy Tarreau295a8372011-03-10 11:25:07 +01004102 if (si->applet.ctx.table.data_type >= 0) {
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004103 /* we're filtering on some data contents */
4104 void *ptr;
4105 long long data;
4106
Willy Tarreau295a8372011-03-10 11:25:07 +01004107 dt = si->applet.ctx.table.data_type;
4108 ptr = stktable_data_ptr(&si->applet.ctx.table.proxy->table,
4109 si->applet.ctx.table.entry,
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004110 dt);
4111
4112 data = 0;
4113 switch (stktable_data_types[dt].std_type) {
4114 case STD_T_SINT:
4115 data = stktable_data_cast(ptr, std_t_sint);
4116 break;
4117 case STD_T_UINT:
4118 data = stktable_data_cast(ptr, std_t_uint);
4119 break;
4120 case STD_T_ULL:
4121 data = stktable_data_cast(ptr, std_t_ull);
4122 break;
4123 case STD_T_FRQP:
4124 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau295a8372011-03-10 11:25:07 +01004125 si->applet.ctx.table.proxy->table.data_arg[dt].u);
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004126 break;
4127 }
4128
4129 /* skip the entry if the data does not match the test and the value */
Willy Tarreau295a8372011-03-10 11:25:07 +01004130 if ((data < si->applet.ctx.table.value &&
4131 (si->applet.ctx.table.data_op == STD_OP_EQ ||
4132 si->applet.ctx.table.data_op == STD_OP_GT ||
4133 si->applet.ctx.table.data_op == STD_OP_GE)) ||
4134 (data == si->applet.ctx.table.value &&
4135 (si->applet.ctx.table.data_op == STD_OP_NE ||
4136 si->applet.ctx.table.data_op == STD_OP_GT ||
4137 si->applet.ctx.table.data_op == STD_OP_LT)) ||
4138 (data > si->applet.ctx.table.value &&
4139 (si->applet.ctx.table.data_op == STD_OP_EQ ||
4140 si->applet.ctx.table.data_op == STD_OP_LT ||
4141 si->applet.ctx.table.data_op == STD_OP_LE)))
Willy Tarreau44455022012-12-05 23:01:12 +01004142 skip_entry = 1;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02004143 }
4144
Simon Hormanc88b8872011-06-15 15:18:49 +09004145 if (show && !skip_entry &&
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004146 !stats_dump_table_entry_to_buffer(&trash, si, si->applet.ctx.table.proxy,
Simon Hormand9366582011-06-15 15:18:45 +09004147 si->applet.ctx.table.entry))
4148 return 0;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004149
Willy Tarreau295a8372011-03-10 11:25:07 +01004150 si->applet.ctx.table.entry->ref_cnt--;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004151
Willy Tarreau295a8372011-03-10 11:25:07 +01004152 eb = ebmb_next(&si->applet.ctx.table.entry->key);
Willy Tarreau69f58c82010-07-12 17:55:33 +02004153 if (eb) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004154 struct stksess *old = si->applet.ctx.table.entry;
4155 si->applet.ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreau8fa52f42012-01-09 11:50:03 +01004156 if (show)
4157 stksess_kill_if_expired(&si->applet.ctx.table.proxy->table, old);
4158 else
4159 stksess_kill(&si->applet.ctx.table.proxy->table, old);
Willy Tarreau295a8372011-03-10 11:25:07 +01004160 si->applet.ctx.table.entry->ref_cnt++;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004161 break;
4162 }
4163
Simon Hormanc88b8872011-06-15 15:18:49 +09004164
4165 if (show)
4166 stksess_kill_if_expired(&si->applet.ctx.table.proxy->table, si->applet.ctx.table.entry);
4167 else if (!skip_entry && !si->applet.ctx.table.entry->ref_cnt)
4168 stksess_kill(&si->applet.ctx.table.proxy->table, si->applet.ctx.table.entry);
4169
Willy Tarreau295a8372011-03-10 11:25:07 +01004170 si->applet.ctx.table.proxy = si->applet.ctx.table.proxy->next;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004171 si->conn->xprt_st = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004172 break;
4173
Willy Tarreau295a8372011-03-10 11:25:07 +01004174 case STAT_ST_END:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02004175 si->conn->xprt_st = STAT_ST_FIN;
Willy Tarreau69f58c82010-07-12 17:55:33 +02004176 break;
4177 }
4178 }
4179 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004180}
4181
Willy Tarreaud426a182010-03-05 14:58:26 +01004182/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01004183 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
4184 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
4185 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
4186 * lines are respected within the limit of 70 output chars. Lines that are
4187 * continuation of a previous truncated line begin with "+" instead of " "
4188 * after the offset. The new pointer is returned.
4189 */
Willy Tarreaud426a182010-03-05 14:58:26 +01004190static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
4191 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004192{
4193 int end;
4194 unsigned char c;
4195
4196 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02004197 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004198 return ptr;
4199
Willy Tarreau77804732012-10-29 16:14:26 +01004200 chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01004201
Willy Tarreaud426a182010-03-05 14:58:26 +01004202 while (ptr < len && ptr < bsize) {
4203 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01004204 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004205 if (out->len > end - 2)
4206 break;
4207 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01004208 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004209 if (out->len > end - 3)
4210 break;
4211 out->str[out->len++] = '\\';
4212 switch (c) {
4213 case '\t': c = 't'; break;
4214 case '\n': c = 'n'; break;
4215 case '\r': c = 'r'; break;
4216 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01004217 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004218 }
4219 out->str[out->len++] = c;
4220 } else {
4221 if (out->len > end - 5)
4222 break;
4223 out->str[out->len++] = '\\';
4224 out->str[out->len++] = 'x';
4225 out->str[out->len++] = hextab[(c >> 4) & 0xF];
4226 out->str[out->len++] = hextab[c & 0xF];
4227 }
Willy Tarreaud426a182010-03-05 14:58:26 +01004228 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004229 /* we had a line break, let's return now */
4230 out->str[out->len++] = '\n';
4231 *line = ptr;
4232 return ptr;
4233 }
4234 }
4235 /* we have an incomplete line, we return it as-is */
4236 out->str[out->len++] = '\n';
4237 return ptr;
4238}
4239
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02004240/* This function dumps all captured errors onto the stream interface's
4241 * read buffer. The xprt_ctx must have been zeroed first, and the flags
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004242 * properly set. It returns 0 if the output buffer is full and it needs
4243 * to be called again, otherwise non-zero.
Willy Tarreau74808cb2009-03-04 15:53:18 +01004244 */
Simon Horman9bd2c732011-06-15 15:18:44 +09004245static int stats_dump_errors_to_buffer(struct stream_interface *si)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004246{
4247 extern const char *monthname[12];
Willy Tarreau74808cb2009-03-04 15:53:18 +01004248
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004249 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau61b34732009-10-03 23:49:35 +02004250 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004251
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004252 chunk_reset(&trash);
Willy Tarreau74808cb2009-03-04 15:53:18 +01004253
Willy Tarreau295a8372011-03-10 11:25:07 +01004254 if (!si->applet.ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004255 /* the function had not been called yet, let's prepare the
4256 * buffer for a response.
4257 */
Willy Tarreau10479e42010-12-12 14:00:34 +01004258 struct tm tm;
4259
4260 get_localtime(date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004261 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
Willy Tarreau10479e42010-12-12 14:00:34 +01004262 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
4263 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
4264 error_snapshot_id);
4265
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004266 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau10479e42010-12-12 14:00:34 +01004267 /* Socket buffer full. Let's try again later from the same point */
4268 return 0;
4269 }
4270
Willy Tarreau295a8372011-03-10 11:25:07 +01004271 si->applet.ctx.errors.px = proxy;
4272 si->applet.ctx.errors.buf = 0;
4273 si->applet.ctx.errors.bol = 0;
4274 si->applet.ctx.errors.ptr = -1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004275 }
4276
4277 /* we have two inner loops here, one for the proxy, the other one for
4278 * the buffer.
4279 */
Willy Tarreau295a8372011-03-10 11:25:07 +01004280 while (si->applet.ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004281 struct error_snapshot *es;
4282
Willy Tarreau295a8372011-03-10 11:25:07 +01004283 if (si->applet.ctx.errors.buf == 0)
4284 es = &si->applet.ctx.errors.px->invalid_req;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004285 else
Willy Tarreau295a8372011-03-10 11:25:07 +01004286 es = &si->applet.ctx.errors.px->invalid_rep;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004287
4288 if (!es->when.tv_sec)
4289 goto next;
4290
Willy Tarreau295a8372011-03-10 11:25:07 +01004291 if (si->applet.ctx.errors.iid >= 0 &&
4292 si->applet.ctx.errors.px->uuid != si->applet.ctx.errors.iid &&
4293 es->oe->uuid != si->applet.ctx.errors.iid)
Willy Tarreau74808cb2009-03-04 15:53:18 +01004294 goto next;
4295
Willy Tarreau295a8372011-03-10 11:25:07 +01004296 if (si->applet.ctx.errors.ptr < 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004297 /* just print headers now */
4298
4299 char pn[INET6_ADDRSTRLEN];
4300 struct tm tm;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004301 int port;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004302
4303 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004304 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01004305 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02004306 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01004307
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004308 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
4309 case AF_INET:
4310 case AF_INET6:
4311 port = get_host_port(&es->src);
4312 break;
4313 default:
4314 port = 0;
4315 }
4316
Willy Tarreau295a8372011-03-10 11:25:07 +01004317 switch (si->applet.ctx.errors.buf) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004318 case 0:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004319 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01004320 " frontend %s (#%d): invalid request\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004321 " backend %s (#%d)",
Willy Tarreau295a8372011-03-10 11:25:07 +01004322 si->applet.ctx.errors.px->id, si->applet.ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004323 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
4324 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreau74808cb2009-03-04 15:53:18 +01004325 break;
4326 case 1:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004327 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01004328 " backend %s (#%d) : invalid response\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004329 " frontend %s (#%d)",
Willy Tarreau295a8372011-03-10 11:25:07 +01004330 si->applet.ctx.errors.px->id, si->applet.ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004331 es->oe->id, es->oe->uuid);
Willy Tarreau74808cb2009-03-04 15:53:18 +01004332 break;
4333 }
4334
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004335 chunk_appendf(&trash,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02004336 ", server %s (#%d), event #%u\n"
4337 " src %s:%d, session #%d, session flags 0x%08x\n"
4338 " HTTP msg state %d, msg flags 0x%08x, tx flags 0x%08x\n"
4339 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
4340 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
4341 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
4342 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
4343 es->ev_id,
4344 pn, port, es->sid, es->s_flags,
4345 es->state, es->m_flags, es->t_flags,
4346 es->m_clen, es->m_blen,
4347 es->b_flags, es->b_out, es->b_tot,
4348 es->len, es->b_wrap, es->pos);
4349
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004350 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004351 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02004352 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004353 }
Willy Tarreau295a8372011-03-10 11:25:07 +01004354 si->applet.ctx.errors.ptr = 0;
4355 si->applet.ctx.errors.sid = es->sid;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004356 }
4357
Willy Tarreau295a8372011-03-10 11:25:07 +01004358 if (si->applet.ctx.errors.sid != es->sid) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004359 /* the snapshot changed while we were dumping it */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004360 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01004361 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004362 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau61b34732009-10-03 23:49:35 +02004363 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004364 goto next;
4365 }
4366
4367 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau295a8372011-03-10 11:25:07 +01004368 while (si->applet.ctx.errors.ptr < es->len && si->applet.ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004369 int newptr;
4370 int newline;
4371
Willy Tarreau295a8372011-03-10 11:25:07 +01004372 newline = si->applet.ctx.errors.bol;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004373 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 +01004374 if (newptr == si->applet.ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02004375 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004376
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004377 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01004378 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02004379 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004380 }
Willy Tarreau295a8372011-03-10 11:25:07 +01004381 si->applet.ctx.errors.ptr = newptr;
4382 si->applet.ctx.errors.bol = newline;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004383 };
4384 next:
Willy Tarreau295a8372011-03-10 11:25:07 +01004385 si->applet.ctx.errors.bol = 0;
4386 si->applet.ctx.errors.ptr = -1;
4387 si->applet.ctx.errors.buf++;
4388 if (si->applet.ctx.errors.buf > 1) {
4389 si->applet.ctx.errors.buf = 0;
4390 si->applet.ctx.errors.px = si->applet.ctx.errors.px->next;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004391 }
4392 }
4393
4394 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02004395 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01004396}
4397
Willy Tarreaud5781202012-09-22 19:32:35 +02004398/* parse the "level" argument on the bind lines */
4399static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
4400{
4401 if (!*args[cur_arg + 1]) {
4402 memprintf(err, "'%s' : missing level", args[cur_arg]);
4403 return ERR_ALERT | ERR_FATAL;
4404 }
4405
4406 if (!strcmp(args[cur_arg+1], "user"))
4407 conf->level = ACCESS_LVL_USER;
4408 else if (!strcmp(args[cur_arg+1], "operator"))
4409 conf->level = ACCESS_LVL_OPER;
4410 else if (!strcmp(args[cur_arg+1], "admin"))
4411 conf->level = ACCESS_LVL_ADMIN;
4412 else {
4413 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
4414 args[cur_arg], args[cur_arg+1]);
4415 return ERR_ALERT | ERR_FATAL;
4416 }
4417
4418 return 0;
4419}
4420
Willy Tarreaub24281b2011-02-13 13:16:36 +01004421struct si_applet http_stats_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004422 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004423 .name = "<STATS>", /* used for logging */
4424 .fct = http_stats_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07004425 .release = NULL,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004426};
4427
Simon Horman9bd2c732011-06-15 15:18:44 +09004428static struct si_applet cli_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004429 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004430 .name = "<CLI>", /* used for logging */
4431 .fct = cli_io_handler,
Willy Tarreau5f9a8772012-11-26 02:22:40 +01004432 .release = cli_release_handler,
Willy Tarreaub24281b2011-02-13 13:16:36 +01004433};
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004434
Willy Tarreau10522fd2008-07-09 20:12:41 +02004435static struct cfg_kw_list cfg_kws = {{ },{
4436 { CFG_GLOBAL, "stats", stats_parse_global },
4437 { 0, NULL, NULL },
4438}};
4439
Willy Tarreaud5781202012-09-22 19:32:35 +02004440static struct bind_kw_list bind_kws = { "STAT", { }, {
4441 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
4442 { NULL, NULL, 0 },
4443}};
4444
Willy Tarreau10522fd2008-07-09 20:12:41 +02004445__attribute__((constructor))
4446static void __dumpstats_module_init(void)
4447{
4448 cfg_register_keywords(&cfg_kws);
Willy Tarreaud5781202012-09-22 19:32:35 +02004449 bind_register_keywords(&bind_kws);
Willy Tarreau10522fd2008-07-09 20:12:41 +02004450}
4451
Willy Tarreau91861262007-10-17 17:06:05 +02004452/*
4453 * Local variables:
4454 * c-indent-level: 8
4455 * c-basic-offset: 8
4456 * End:
4457 */