blob: aa5aed24d6d5eafa85cc2f01ce7edeeb6bcd84aa [file] [log] [blame]
Willy Tarreau91861262007-10-17 17:06:05 +02001/*
Willy Tarreaueb472682010-05-28 18:46:57 +02002 * Functions dedicated to statistics output and the stats socket
Willy Tarreau91861262007-10-17 17:06:05 +02003 *
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02005 * Copyright 2007-2009 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreau91861262007-10-17 17:06:05 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
14#include <ctype.h>
15#include <errno.h>
16#include <fcntl.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020020#include <pwd.h>
21#include <grp.h>
Willy Tarreau91861262007-10-17 17:06:05 +020022
23#include <sys/socket.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26
Willy Tarreau10522fd2008-07-09 20:12:41 +020027#include <common/cfgparse.h>
Willy Tarreau91861262007-10-17 17:06:05 +020028#include <common/compat.h>
29#include <common/config.h>
30#include <common/debug.h>
31#include <common/memory.h>
32#include <common/mini-clist.h>
33#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020034#include <common/ticks.h>
Willy Tarreau91861262007-10-17 17:06:05 +020035#include <common/time.h>
36#include <common/uri_auth.h>
37#include <common/version.h>
38
Willy Tarreau91861262007-10-17 17:06:05 +020039#include <types/global.h>
Willy Tarreau91861262007-10-17 17:06:05 +020040
41#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020042#include <proto/channel.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020043#include <proto/checks.h>
William Lallemande3a7d992012-11-20 11:25:20 +010044#include <proto/compression.h>
Willy Tarreau91861262007-10-17 17:06:05 +020045#include <proto/dumpstats.h>
46#include <proto/fd.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010047#include <proto/freq_ctr.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020048#include <proto/log.h>
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010049#include <proto/pattern.h>
Willy Tarreaua206fa92009-01-25 14:02:00 +010050#include <proto/pipe.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020051#include <proto/listener.h>
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010052#include <proto/map.h>
Willy Tarreaue6d97022012-11-23 11:19:33 +010053#include <proto/proto_http.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020054#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020055#include <proto/proxy.h>
Willy Tarreau91861262007-10-17 17:06:05 +020056#include <proto/session.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020057#include <proto/server.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020058#include <proto/raw_sock.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010059#include <proto/stream_interface.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010060#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020061
Willy Tarreau7a0169a2012-11-19 17:13:16 +010062#ifdef USE_OPENSSL
63#include <proto/ssl_sock.h>
64#endif
65
Willy Tarreau91b843d2014-01-28 16:27:17 +010066/* stats socket states */
67enum {
68 STAT_CLI_INIT = 0, /* initial state, must leave to zero ! */
69 STAT_CLI_END, /* final state, let's close */
70 STAT_CLI_GETREQ, /* wait for a request */
71 STAT_CLI_OUTPUT, /* all states after this one are responses */
72 STAT_CLI_PROMPT, /* display the prompt (first output, same code) */
73 STAT_CLI_PRINT, /* display message in cli->msg */
74 STAT_CLI_O_INFO, /* dump info */
75 STAT_CLI_O_SESS, /* dump sessions */
76 STAT_CLI_O_ERR, /* dump errors */
77 STAT_CLI_O_TAB, /* dump tables */
78 STAT_CLI_O_CLR, /* clear tables */
79 STAT_CLI_O_SET, /* set entries in tables */
80 STAT_CLI_O_STAT, /* dump stats */
81 STAT_CLI_O_MAPS, /* list all maps */
82 STAT_CLI_O_MAP, /* list all map entries of a map */
83 STAT_CLI_O_MLOOK, /* lookup a map entry */
Willy Tarreau12833bb2014-01-28 16:49:56 +010084 STAT_CLI_O_POOLS, /* dump memory pools */
Willy Tarreau91b843d2014-01-28 16:27:17 +010085};
86
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010087static int stats_dump_info_to_buffer(struct stream_interface *si);
Willy Tarreau12833bb2014-01-28 16:49:56 +010088static int stats_dump_pools_to_buffer(struct stream_interface *si);
Willy Tarreau76153662012-11-26 01:16:39 +010089static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess);
Simon Horman9bd2c732011-06-15 15:18:44 +090090static int stats_dump_sess_to_buffer(struct stream_interface *si);
91static int stats_dump_errors_to_buffer(struct stream_interface *si);
Willy Tarreau44455022012-12-05 23:01:12 +010092static int stats_table_request(struct stream_interface *si, int show);
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010093static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri);
94static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010095static int stats_maps_list(struct stream_interface *si);
96static int stats_map_list(struct stream_interface *si);
97static int stats_map_lookup(struct stream_interface *si);
Simon Horman9bd2c732011-06-15 15:18:44 +090098
Willy Tarreaud9bdcd52012-12-22 20:31:10 +010099/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +0100100 * cli_io_handler()
101 * -> stats_dump_sess_to_buffer() // "show sess"
102 * -> stats_dump_errors_to_buffer() // "show errors"
103 * -> stats_dump_info_to_buffer() // "show info"
104 * -> stats_dump_stat_to_buffer() // "show stat"
105 * -> stats_dump_csv_header()
106 * -> stats_dump_proxy_to_buffer()
107 * -> stats_dump_fe_stats()
108 * -> stats_dump_li_stats()
109 * -> stats_dump_sv_stats()
110 * -> stats_dump_be_stats()
111 *
112 * http_stats_io_handler()
113 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
114 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
115 * -> stats_dump_html_head() // emits the HTML headers
116 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
117 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
118 * -> stats_dump_html_px_hdr()
119 * -> stats_dump_fe_stats()
120 * -> stats_dump_li_stats()
121 * -> stats_dump_sv_stats()
122 * -> stats_dump_be_stats()
123 * -> stats_dump_html_px_end()
124 * -> stats_dump_html_end() // emits HTML trailer
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100125 */
126
Simon Horman9bd2c732011-06-15 15:18:44 +0900127static struct si_applet cli_applet;
128
129static const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200130 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200131 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Willy Tarreau88ee3972010-07-13 13:48:00 +0200132 " clear table : remove an entry from a table\n"
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100133 " clear map [id] : clear the content of this map\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200134 " help : this message\n"
135 " prompt : toggle interactive mode with prompt\n"
136 " quit : disconnect\n"
137 " show info : report information about the running process\n"
Willy Tarreau12833bb2014-01-28 16:49:56 +0100138 " show pools : report information about the memory pools usage\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200139 " show stat : report counters for each proxy and server\n"
140 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100141 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau69f58c82010-07-12 17:55:33 +0200142 " show table [id]: report table usage stats or dump this table's contents\n"
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100143 " show map [id] : report avalaible maps or dump this map's contents\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +0200144 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +0200145 " set weight : change a server's weight\n"
Willy Tarreau654694e2012-06-07 01:03:16 +0200146 " set table [id] : update or create a table entry's data\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +0100147 " set timeout : change a timeout setting\n"
Willy Tarreau2a0f4d22011-08-02 11:49:05 +0200148 " set maxconn : change a maxconn setting\n"
Willy Tarreauf5b22872011-09-07 16:13:44 +0200149 " set rate-limit : change a rate limiting value\n"
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100150 " set map [id] [key] [value] : modify map entry\n"
151 " add map [id] [key] [value] : add map entry\n"
152 " del map [id] [key] : delete map entry\n"
Willy Tarreaua295edc2011-09-07 23:21:03 +0200153 " disable : put a server or frontend in maintenance mode\n"
154 " enable : re-enable a server or frontend which is in maintenance mode\n"
155 " shutdown : kill a session or a frontend (eg:to release listening ports)\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200156 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200157
Simon Horman9bd2c732011-06-15 15:18:44 +0900158static const char stats_permission_denied_msg[] =
Willy Tarreau6162db22009-10-10 17:13:00 +0200159 "Permission denied\n"
160 "";
161
Willy Tarreau295a8372011-03-10 11:25:07 +0100162/* data transmission states for the stats responses */
163enum {
164 STAT_ST_INIT = 0,
165 STAT_ST_HEAD,
166 STAT_ST_INFO,
167 STAT_ST_LIST,
168 STAT_ST_END,
169 STAT_ST_FIN,
170};
171
172/* data transmission states for the stats responses inside a proxy */
173enum {
174 STAT_PX_ST_INIT = 0,
175 STAT_PX_ST_TH,
176 STAT_PX_ST_FE,
177 STAT_PX_ST_LI,
178 STAT_PX_ST_SV,
179 STAT_PX_ST_BE,
180 STAT_PX_ST_END,
181 STAT_PX_ST_FIN,
182};
183
Cyril Bonté19979e12012-04-04 12:57:21 +0200184extern const char *stat_status_codes[];
185
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200186/* This function is called from the session-level accept() in order to instanciate
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200187 * a new stats socket. It returns a positive value upon success, 0 if the session
Willy Tarreaueb472682010-05-28 18:46:57 +0200188 * needs to be closed and ignored, or a negative value upon critical failure.
189 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900190static int stats_accept(struct session *s)
Willy Tarreaueb472682010-05-28 18:46:57 +0200191{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100192 s->target = &cli_applet.obj_type;
Willy Tarreau4171e9e2013-12-01 12:32:30 +0100193 /* no need to initialize the applet, it will start with st0=st1 = 0 */
Willy Tarreaueb472682010-05-28 18:46:57 +0200194
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200195 tv_zero(&s->logs.tv_request);
196 s->logs.t_queue = 0;
197 s->logs.t_connect = 0;
198 s->logs.t_data = 0;
199 s->logs.t_close = 0;
200 s->logs.bytes_in = s->logs.bytes_out = 0;
201 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
202 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaueb472682010-05-28 18:46:57 +0200203
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200204 s->req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreaueb472682010-05-28 18:46:57 +0200205
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200206 if (s->listener->timeout) {
207 s->req->rto = *s->listener->timeout;
208 s->rep->wto = *s->listener->timeout;
Willy Tarreaueb472682010-05-28 18:46:57 +0200209 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200210 return 1;
Willy Tarreaueb472682010-05-28 18:46:57 +0200211}
212
Willy Tarreau07e9e642010-08-17 21:48:17 +0200213/* allocate a new stats frontend named <name>, and return it
214 * (or NULL in case of lack of memory).
215 */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200216static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
Willy Tarreau07e9e642010-08-17 21:48:17 +0200217{
218 struct proxy *fe;
219
220 fe = (struct proxy *)calloc(1, sizeof(struct proxy));
221 if (!fe)
222 return NULL;
223
Willy Tarreau237250c2011-07-29 01:49:03 +0200224 init_new_proxy(fe);
Willy Tarreau050536d2012-10-04 08:47:34 +0200225 fe->next = proxy;
226 proxy = fe;
Willy Tarreau07e9e642010-08-17 21:48:17 +0200227 fe->last_change = now.tv_sec;
228 fe->id = strdup("GLOBAL");
229 fe->cap = PR_CAP_FE;
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200230 fe->maxconn = 10; /* default to 10 concurrent connections */
231 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200232 fe->conf.file = strdup(file);
233 fe->conf.line = line;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200234 fe->accept = stats_accept;
Willy Tarreau050536d2012-10-04 08:47:34 +0200235
236 /* the stats frontend is the only one able to assign ID #0 */
237 fe->conf.id.key = fe->uuid = 0;
238 eb32_insert(&used_proxy_id, &fe->conf.id);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200239 return fe;
240}
241
Willy Tarreaufbee7132007-10-18 13:53:22 +0200242/* This function parses a "stats" statement in the "global" section. It returns
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200243 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
244 * error message into the <err> buffer which will be preallocated. The trailing
245 * '\n' must not be written. The function must be called with <args> pointing to
246 * the first word after "stats".
Willy Tarreaufbee7132007-10-18 13:53:22 +0200247 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200248static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200249 struct proxy *defpx, const char *file, int line,
250 char **err)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200251{
Willy Tarreau4348fad2012-09-20 16:48:07 +0200252 struct bind_conf *bind_conf;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200253 struct listener *l;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200254
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200255 if (!strcmp(args[1], "socket")) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200256 int cur_arg;
257
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200258 if (*args[2] == 0) {
Willy Tarreauc53d4222012-09-20 20:19:28 +0200259 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 +0200260 return -1;
261 }
262
Willy Tarreau89a63132009-08-16 17:41:45 +0200263 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200264 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200265 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau89a63132009-08-16 17:41:45 +0200266 return -1;
267 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200268 }
269
Willy Tarreau4348fad2012-09-20 16:48:07 +0200270 bind_conf = bind_conf_alloc(&global.stats_fe->conf.bind, file, line, args[2]);
Willy Tarreau290e63a2012-09-20 18:07:14 +0200271 bind_conf->level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200272
Willy Tarreauc53d4222012-09-20 20:19:28 +0200273 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
274 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
275 file, line, args[0], args[1], err && *err ? *err : "error");
276 return -1;
277 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200278
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200279 cur_arg = 3;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200280 while (*args[cur_arg]) {
Willy Tarreaud5781202012-09-22 19:32:35 +0200281 static int bind_dumped;
282 struct bind_kw *kw;
283
284 kw = bind_find_kw(args[cur_arg]);
285 if (kw) {
286 if (!kw->parse) {
287 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
288 args[0], args[1], args[cur_arg]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200289 return -1;
290 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200291
292 if (kw->parse(args, cur_arg, curpx, bind_conf, err) != 0) {
293 if (err && *err)
294 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
295 else
296 memprintf(err, "'%s %s' : error encountered while processing '%s'",
297 args[0], args[1], args[cur_arg]);
Willy Tarreau6162db22009-10-10 17:13:00 +0200298 return -1;
299 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200300
301 cur_arg += 1 + kw->skip;
302 continue;
Willy Tarreau6162db22009-10-10 17:13:00 +0200303 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200304
305 if (!bind_dumped) {
306 bind_dump_kws(err);
307 indent_msg(err, 4);
308 bind_dumped = 1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200309 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200310
311 memprintf(err, "'%s %s' : unknown keyword '%s'.%s%s",
312 args[0], args[1], args[cur_arg],
313 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
314 return -1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200315 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100316
Willy Tarreauc53d4222012-09-20 20:19:28 +0200317 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
318 l->maxconn = global.stats_fe->maxconn;
319 l->backlog = global.stats_fe->backlog;
320 l->timeout = &global.stats_fe->timeout.client;
321 l->accept = session_accept;
322 l->handler = process_session;
323 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
324 l->nice = -64; /* we want to boost priority for local stats */
325 global.maxsock += l->maxconn;
326 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200327 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200328 else if (!strcmp(args[1], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100329 unsigned timeout;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200330 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100331
332 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200333 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100334 return -1;
335 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200336
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100337 if (!timeout) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200338 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200339 return -1;
340 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200341 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200342 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200343 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200344 return -1;
345 }
346 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200347 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200348 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200349 else if (!strcmp(args[1], "maxconn")) {
350 int maxconn = atol(args[2]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200351
352 if (maxconn <= 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200353 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200354 return -1;
355 }
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200356
357 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200358 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200359 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200360 return -1;
361 }
362 }
363 global.stats_fe->maxconn = maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200364 }
Willy Tarreau35b7b162012-10-22 23:17:18 +0200365 else if (!strcmp(args[1], "bind-process")) { /* enable the socket only on some processes */
366 int cur_arg = 2;
367 unsigned int set = 0;
368
Willy Tarreau91319572013-04-20 09:48:50 +0200369 if (!global.stats_fe) {
370 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
371 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
372 return -1;
373 }
374 }
375
Willy Tarreau35b7b162012-10-22 23:17:18 +0200376 while (*args[cur_arg]) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100377 unsigned int low, high;
378
Willy Tarreau35b7b162012-10-22 23:17:18 +0200379 if (strcmp(args[cur_arg], "all") == 0) {
380 set = 0;
381 break;
382 }
383 else if (strcmp(args[cur_arg], "odd") == 0) {
384 set |= 0x55555555;
385 }
386 else if (strcmp(args[cur_arg], "even") == 0) {
387 set |= 0xAAAAAAAA;
388 }
Willy Tarreau83d84cf2012-11-22 01:04:31 +0100389 else if (isdigit((int)*args[cur_arg])) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100390 char *dash = strchr(args[cur_arg], '-');
391
392 low = high = str2uic(args[cur_arg]);
393 if (dash)
394 high = str2uic(dash + 1);
395
396 if (high < low) {
397 unsigned int swap = low;
398 low = high;
399 high = swap;
400 }
401
402 if (low < 1 || high > 32) {
403 memprintf(err, "'%s %s' supports process numbers from 1 to 32.\n",
404 args[0], args[1]);
Willy Tarreau35b7b162012-10-22 23:17:18 +0200405 return -1;
406 }
Willy Tarreau110ecc12012-11-15 17:50:01 +0100407
408 while (low <= high)
409 set |= 1 << (low++ - 1);
410 }
411 else {
412 memprintf(err,
413 "'%s %s' expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to 32.\n",
414 args[0], args[1]);
415 return -1;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200416 }
417 cur_arg++;
418 }
419 global.stats_fe->bind_proc = set;
420 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200421 else {
Willy Tarreau35b7b162012-10-22 23:17:18 +0200422 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200423 return -1;
424 }
425 return 0;
426}
427
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100428/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
429 * for clearing it if needed.
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100430 * NOTE: Some tools happen to rely on the field position instead of its name,
431 * so please only append new fields at the end, never in the middle.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100432 */
433static void stats_dump_csv_header()
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100434{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100435 chunk_appendf(&trash,
436 "# pxname,svname,"
437 "qcur,qmax,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100438 "scur,smax,slim,stot,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100439 "bin,bout,"
440 "dreq,dresp,"
441 "ereq,econ,eresp,"
442 "wretr,wredis,"
443 "status,weight,act,bck,"
444 "chkfail,chkdown,lastchg,downtime,qlimit,"
445 "pid,iid,sid,throttle,lbtot,tracked,type,"
446 "rate,rate_lim,rate_max,"
447 "check_status,check_code,check_duration,"
448 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
449 "req_rate,req_rate_max,req_tot,"
450 "cli_abrt,srv_abrt,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +0100451 "comp_in,comp_out,comp_byp,comp_rsp,lastsess,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100452 "\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100453}
454
Simon Hormand9366582011-06-15 15:18:45 +0900455/* print a string of text buffer to <out>. The format is :
456 * Non-printable chars \t, \n, \r and \e are * encoded in C format.
457 * Other non-printable chars are encoded "\xHH". Space and '\' are also escaped.
458 * Print stopped if null char or <bsize> is reached, or if no more place in the chunk.
459 */
460static int dump_text(struct chunk *out, const char *buf, int bsize)
461{
462 unsigned char c;
463 int ptr = 0;
464
465 while (buf[ptr] && ptr < bsize) {
466 c = buf[ptr];
467 if (isprint(c) && isascii(c) && c != '\\' && c != ' ') {
468 if (out->len > out->size - 1)
469 break;
470 out->str[out->len++] = c;
471 }
472 else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ') {
473 if (out->len > out->size - 2)
474 break;
475 out->str[out->len++] = '\\';
476 switch (c) {
477 case ' ': c = ' '; break;
478 case '\t': c = 't'; break;
479 case '\n': c = 'n'; break;
480 case '\r': c = 'r'; break;
481 case '\e': c = 'e'; break;
482 case '\\': c = '\\'; break;
483 }
484 out->str[out->len++] = c;
485 }
486 else {
487 if (out->len > out->size - 4)
488 break;
489 out->str[out->len++] = '\\';
490 out->str[out->len++] = 'x';
491 out->str[out->len++] = hextab[(c >> 4) & 0xF];
492 out->str[out->len++] = hextab[c & 0xF];
493 }
494 ptr++;
495 }
496
497 return ptr;
498}
499
500/* print a buffer in hexa.
501 * Print stopped if <bsize> is reached, or if no more place in the chunk.
502 */
503static int dump_binary(struct chunk *out, const char *buf, int bsize)
504{
505 unsigned char c;
506 int ptr = 0;
507
508 while (ptr < bsize) {
509 c = buf[ptr];
510
511 if (out->len > out->size - 2)
512 break;
513 out->str[out->len++] = hextab[(c >> 4) & 0xF];
514 out->str[out->len++] = hextab[c & 0xF];
515
516 ptr++;
517 }
518 return ptr;
519}
520
521/* Dump the status of a table to a stream interface's
522 * read buffer. It returns 0 if the output buffer is full
523 * and needs to be called again, otherwise non-zero.
524 */
525static int stats_dump_table_head_to_buffer(struct chunk *msg, struct stream_interface *si,
526 struct proxy *proxy, struct proxy *target)
527{
Willy Tarreau306f8302013-07-08 15:53:06 +0200528 struct session *s = session_from_task(si->owner);
Simon Hormand9366582011-06-15 15:18:45 +0900529
Willy Tarreau77804732012-10-29 16:14:26 +0100530 chunk_appendf(msg, "# table: %s, type: %s, size:%d, used:%d\n",
Simon Hormand9366582011-06-15 15:18:45 +0900531 proxy->id, stktable_types[proxy->table.type].kw, proxy->table.size, proxy->table.current);
532
533 /* any other information should be dumped here */
534
Willy Tarreau290e63a2012-09-20 18:07:14 +0200535 if (target && s->listener->bind_conf->level < ACCESS_LVL_OPER)
Willy Tarreau77804732012-10-29 16:14:26 +0100536 chunk_appendf(msg, "# contents not dumped due to insufficient privileges\n");
Simon Hormand9366582011-06-15 15:18:45 +0900537
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200538 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900539 return 0;
540
541 return 1;
542}
543
544/* Dump the a table entry to a stream interface's
545 * read buffer. It returns 0 if the output buffer is full
546 * and needs to be called again, otherwise non-zero.
547 */
548static int stats_dump_table_entry_to_buffer(struct chunk *msg, struct stream_interface *si,
549 struct proxy *proxy, struct stksess *entry)
550{
551 int dt;
552
Willy Tarreau77804732012-10-29 16:14:26 +0100553 chunk_appendf(msg, "%p:", entry);
Simon Hormand9366582011-06-15 15:18:45 +0900554
555 if (proxy->table.type == STKTABLE_TYPE_IP) {
556 char addr[INET_ADDRSTRLEN];
557 inet_ntop(AF_INET, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100558 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900559 }
560 else if (proxy->table.type == STKTABLE_TYPE_IPV6) {
561 char addr[INET6_ADDRSTRLEN];
562 inet_ntop(AF_INET6, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100563 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900564 }
565 else if (proxy->table.type == STKTABLE_TYPE_INTEGER) {
Willy Tarreau77804732012-10-29 16:14:26 +0100566 chunk_appendf(msg, " key=%u", *(unsigned int *)entry->key.key);
Simon Hormand9366582011-06-15 15:18:45 +0900567 }
568 else if (proxy->table.type == STKTABLE_TYPE_STRING) {
Willy Tarreau77804732012-10-29 16:14:26 +0100569 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900570 dump_text(msg, (const char *)entry->key.key, proxy->table.key_size);
571 }
572 else {
Willy Tarreau77804732012-10-29 16:14:26 +0100573 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900574 dump_binary(msg, (const char *)entry->key.key, proxy->table.key_size);
575 }
576
Willy Tarreau77804732012-10-29 16:14:26 +0100577 chunk_appendf(msg, " use=%d exp=%d", entry->ref_cnt - 1, tick_remain(now_ms, entry->expire));
Simon Hormand9366582011-06-15 15:18:45 +0900578
579 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
580 void *ptr;
581
582 if (proxy->table.data_ofs[dt] == 0)
583 continue;
584 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
Willy Tarreau77804732012-10-29 16:14:26 +0100585 chunk_appendf(msg, " %s(%d)=", stktable_data_types[dt].name, proxy->table.data_arg[dt].u);
Simon Hormand9366582011-06-15 15:18:45 +0900586 else
Willy Tarreau77804732012-10-29 16:14:26 +0100587 chunk_appendf(msg, " %s=", stktable_data_types[dt].name);
Simon Hormand9366582011-06-15 15:18:45 +0900588
589 ptr = stktable_data_ptr(&proxy->table, entry, dt);
590 switch (stktable_data_types[dt].std_type) {
591 case STD_T_SINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100592 chunk_appendf(msg, "%d", stktable_data_cast(ptr, std_t_sint));
Simon Hormand9366582011-06-15 15:18:45 +0900593 break;
594 case STD_T_UINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100595 chunk_appendf(msg, "%u", stktable_data_cast(ptr, std_t_uint));
Simon Hormand9366582011-06-15 15:18:45 +0900596 break;
597 case STD_T_ULL:
Willy Tarreau77804732012-10-29 16:14:26 +0100598 chunk_appendf(msg, "%lld", stktable_data_cast(ptr, std_t_ull));
Simon Hormand9366582011-06-15 15:18:45 +0900599 break;
600 case STD_T_FRQP:
Willy Tarreau77804732012-10-29 16:14:26 +0100601 chunk_appendf(msg, "%d",
Simon Hormand9366582011-06-15 15:18:45 +0900602 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
603 proxy->table.data_arg[dt].u));
604 break;
605 }
606 }
Willy Tarreau77804732012-10-29 16:14:26 +0100607 chunk_appendf(msg, "\n");
Simon Hormand9366582011-06-15 15:18:45 +0900608
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200609 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900610 return 0;
611
612 return 1;
613}
614
Willy Tarreaudec98142012-06-06 23:37:08 +0200615static void stats_sock_table_key_request(struct stream_interface *si, char **args, int action)
Simon Horman121f3052011-06-15 15:18:46 +0900616{
Willy Tarreau306f8302013-07-08 15:53:06 +0200617 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100618 struct appctx *appctx = __objt_appctx(si->end);
619 struct proxy *px = appctx->ctx.table.target;
Simon Horman121f3052011-06-15 15:18:46 +0900620 struct stksess *ts;
Simon Hormancec9a222011-06-15 15:18:51 +0900621 uint32_t uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900622 unsigned char ip6_key[sizeof(struct in6_addr)];
Willy Tarreau654694e2012-06-07 01:03:16 +0200623 long long value;
624 int data_type;
Willy Tarreau47060b62013-08-01 21:11:42 +0200625 int cur_arg;
Willy Tarreau654694e2012-06-07 01:03:16 +0200626 void *ptr;
627 struct freq_ctr_period *frqp;
Simon Horman121f3052011-06-15 15:18:46 +0900628
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100629 appctx->st0 = STAT_CLI_OUTPUT;
Simon Horman121f3052011-06-15 15:18:46 +0900630
631 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100632 appctx->ctx.cli.msg = "Key value expected\n";
633 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900634 return;
635 }
636
Simon Hormanc5b89f62011-06-15 15:18:50 +0900637 switch (px->table.type) {
638 case STKTABLE_TYPE_IP:
Simon Hormancec9a222011-06-15 15:18:51 +0900639 uint32_key = htonl(inetaddr_host(args[4]));
Willy Tarreau07115412012-10-29 21:56:59 +0100640 static_table_key->key = &uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900641 break;
642 case STKTABLE_TYPE_IPV6:
643 inet_pton(AF_INET6, args[4], ip6_key);
Willy Tarreau07115412012-10-29 21:56:59 +0100644 static_table_key->key = &ip6_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900645 break;
Simon Hormancec9a222011-06-15 15:18:51 +0900646 case STKTABLE_TYPE_INTEGER:
647 {
648 char *endptr;
649 unsigned long val;
650 errno = 0;
651 val = strtoul(args[4], &endptr, 10);
652 if ((errno == ERANGE && val == ULONG_MAX) ||
653 (errno != 0 && val == 0) || endptr == args[4] ||
654 val > 0xffffffff) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100655 appctx->ctx.cli.msg = "Invalid key\n";
656 appctx->st0 = STAT_CLI_PRINT;
Simon Hormancec9a222011-06-15 15:18:51 +0900657 return;
658 }
659 uint32_key = (uint32_t) val;
Willy Tarreau07115412012-10-29 21:56:59 +0100660 static_table_key->key = &uint32_key;
Simon Hormancec9a222011-06-15 15:18:51 +0900661 break;
662 }
663 break;
Simon Horman619e3cc2011-06-15 15:18:52 +0900664 case STKTABLE_TYPE_STRING:
Willy Tarreau07115412012-10-29 21:56:59 +0100665 static_table_key->key = args[4];
666 static_table_key->key_len = strlen(args[4]);
Simon Horman619e3cc2011-06-15 15:18:52 +0900667 break;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900668 default:
Willy Tarreaudec98142012-06-06 23:37:08 +0200669 switch (action) {
670 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100671 appctx->ctx.cli.msg = "Showing keys from tables of type other than ip, ipv6, string and integer is not supported\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200672 break;
673 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100674 appctx->ctx.cli.msg = "Removing keys from ip tables of type other than ip, ipv6, string and integer is not supported\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200675 break;
676 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100677 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200678 break;
679 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100680 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900681 return;
682 }
683
684 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +0200685 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100686 appctx->ctx.cli.msg = stats_permission_denied_msg;
687 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900688 return;
689 }
690
Willy Tarreau07115412012-10-29 21:56:59 +0100691 ts = stktable_lookup_key(&px->table, static_table_key);
Simon Horman17bce342011-06-15 15:18:47 +0900692
Willy Tarreaudec98142012-06-06 23:37:08 +0200693 switch (action) {
694 case STAT_CLI_O_TAB:
695 if (!ts)
696 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100697 chunk_reset(&trash);
698 if (!stats_dump_table_head_to_buffer(&trash, si, px, px))
Simon Horman17bce342011-06-15 15:18:47 +0900699 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100700 stats_dump_table_entry_to_buffer(&trash, si, px, ts);
Simon Horman121f3052011-06-15 15:18:46 +0900701 return;
Willy Tarreaudec98142012-06-06 23:37:08 +0200702
703 case STAT_CLI_O_CLR:
704 if (!ts)
705 return;
706 if (ts->ref_cnt) {
707 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100708 appctx->ctx.cli.msg = "Entry currently in use, cannot remove\n";
709 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200710 return;
711 }
712 stksess_kill(&px->table, ts);
713 break;
Simon Horman17bce342011-06-15 15:18:47 +0900714
Willy Tarreau654694e2012-06-07 01:03:16 +0200715 case STAT_CLI_O_SET:
Willy Tarreau654694e2012-06-07 01:03:16 +0200716 if (ts)
717 stktable_touch(&px->table, ts, 1);
718 else {
Willy Tarreau07115412012-10-29 21:56:59 +0100719 ts = stksess_new(&px->table, static_table_key);
Willy Tarreau654694e2012-06-07 01:03:16 +0200720 if (!ts) {
721 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100722 appctx->ctx.cli.msg = "Unable to allocate a new entry\n";
723 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200724 return;
725 }
726 stktable_store(&px->table, ts, 1);
727 }
728
Willy Tarreau47060b62013-08-01 21:11:42 +0200729 for (cur_arg = 5; *args[cur_arg]; cur_arg += 2) {
730 if (strncmp(args[cur_arg], "data.", 5) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100731 appctx->ctx.cli.msg = "\"data.<type>\" followed by a value expected\n";
732 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200733 return;
734 }
735
736 data_type = stktable_get_data_type(args[cur_arg] + 5);
737 if (data_type < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100738 appctx->ctx.cli.msg = "Unknown data type\n";
739 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200740 return;
741 }
742
743 if (!px->table.data_ofs[data_type]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100744 appctx->ctx.cli.msg = "Data type not stored in this table\n";
745 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200746 return;
747 }
748
749 if (!*args[cur_arg+1] || strl2llrc(args[cur_arg+1], strlen(args[cur_arg+1]), &value) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100750 appctx->ctx.cli.msg = "Require a valid integer value to store\n";
751 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200752 return;
753 }
754
755 ptr = stktable_data_ptr(&px->table, ts, data_type);
756
757 switch (stktable_data_types[data_type].std_type) {
758 case STD_T_SINT:
759 stktable_data_cast(ptr, std_t_sint) = value;
760 break;
761 case STD_T_UINT:
762 stktable_data_cast(ptr, std_t_uint) = value;
763 break;
764 case STD_T_ULL:
765 stktable_data_cast(ptr, std_t_ull) = value;
766 break;
767 case STD_T_FRQP:
768 /* We set both the current and previous values. That way
769 * the reported frequency is stable during all the period
770 * then slowly fades out. This allows external tools to
771 * push measures without having to update them too often.
772 */
773 frqp = &stktable_data_cast(ptr, std_t_frqp);
774 frqp->curr_tick = now_ms;
775 frqp->prev_ctr = 0;
776 frqp->curr_ctr = value;
777 break;
778 }
Willy Tarreau654694e2012-06-07 01:03:16 +0200779 }
780 break;
781
Willy Tarreaudec98142012-06-06 23:37:08 +0200782 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100783 appctx->ctx.cli.msg = "Unknown action\n";
784 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200785 break;
Simon Horman121f3052011-06-15 15:18:46 +0900786 }
Simon Horman121f3052011-06-15 15:18:46 +0900787}
788
Willy Tarreau654694e2012-06-07 01:03:16 +0200789static void stats_sock_table_data_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900790{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100791 struct appctx *appctx = __objt_appctx(si->end);
792
Willy Tarreau04b3a192013-04-13 09:41:37 +0200793 if (action != STAT_CLI_O_TAB && action != STAT_CLI_O_CLR) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100794 appctx->ctx.cli.msg = "content-based lookup is only supported with the \"show\" and \"clear\" actions";
795 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200796 return;
797 }
798
Simon Hormand5b9fd92011-06-15 15:18:48 +0900799 /* condition on stored data value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100800 appctx->ctx.table.data_type = stktable_get_data_type(args[3] + 5);
801 if (appctx->ctx.table.data_type < 0) {
802 appctx->ctx.cli.msg = "Unknown data type\n";
803 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900804 return;
805 }
806
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100807 if (!((struct proxy *)appctx->ctx.table.target)->table.data_ofs[appctx->ctx.table.data_type]) {
808 appctx->ctx.cli.msg = "Data type not stored in this table\n";
809 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900810 return;
811 }
812
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100813 appctx->ctx.table.data_op = get_std_op(args[4]);
814 if (appctx->ctx.table.data_op < 0) {
815 appctx->ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
816 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900817 return;
818 }
819
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100820 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &appctx->ctx.table.value) != 0) {
821 appctx->ctx.cli.msg = "Require a valid integer value to compare against\n";
822 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900823 return;
824 }
825}
826
Willy Tarreaudec98142012-06-06 23:37:08 +0200827static void stats_sock_table_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900828{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100829 struct appctx *appctx = __objt_appctx(si->end);
830
831 appctx->ctx.table.data_type = -1;
832 appctx->st2 = STAT_ST_INIT;
833 appctx->ctx.table.target = NULL;
834 appctx->ctx.table.proxy = NULL;
835 appctx->ctx.table.entry = NULL;
836 appctx->st0 = action;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900837
838 if (*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100839 appctx->ctx.table.target = find_stktable(args[2]);
840 if (!appctx->ctx.table.target) {
841 appctx->ctx.cli.msg = "No such table\n";
842 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900843 return;
844 }
845 }
846 else {
Willy Tarreaudec98142012-06-06 23:37:08 +0200847 if (action != STAT_CLI_O_TAB)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900848 goto err_args;
849 return;
850 }
851
852 if (strcmp(args[3], "key") == 0)
Willy Tarreaudec98142012-06-06 23:37:08 +0200853 stats_sock_table_key_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900854 else if (strncmp(args[3], "data.", 5) == 0)
Willy Tarreau654694e2012-06-07 01:03:16 +0200855 stats_sock_table_data_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900856 else if (*args[3])
Simon Hormand5b9fd92011-06-15 15:18:48 +0900857 goto err_args;
858
859 return;
860
861err_args:
Willy Tarreaudec98142012-06-06 23:37:08 +0200862 switch (action) {
863 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100864 appctx->ctx.cli.msg = "Optional argument only supports \"data.<store_data_type>\" <operator> <value> and key <key>\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200865 break;
866 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100867 appctx->ctx.cli.msg = "Required arguments: <table> \"data.<store_data_type>\" <operator> <value> or <table> key <key>\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200868 break;
869 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100870 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200871 break;
872 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100873 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900874}
875
Willy Tarreau532a4502011-09-07 22:37:44 +0200876/* Expects to find a frontend named <arg> and returns it, otherwise displays various
877 * adequate error messages and returns NULL. This function also expects the session
878 * level to be admin.
879 */
880static struct proxy *expect_frontend_admin(struct session *s, struct stream_interface *si, const char *arg)
881{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100882 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau532a4502011-09-07 22:37:44 +0200883 struct proxy *px;
884
Willy Tarreau290e63a2012-09-20 18:07:14 +0200885 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100886 appctx->ctx.cli.msg = stats_permission_denied_msg;
887 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200888 return NULL;
889 }
890
891 if (!*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100892 appctx->ctx.cli.msg = "A frontend name is expected.\n";
893 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200894 return NULL;
895 }
896
897 px = findproxy(arg, PR_CAP_FE);
898 if (!px) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100899 appctx->ctx.cli.msg = "No such frontend.\n";
900 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200901 return NULL;
902 }
903 return px;
904}
905
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200906/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
907 * and returns the pointer to the server. Otherwise, display adequate error messages
908 * and returns NULL. This function also expects the session level to be admin. Note:
909 * the <arg> is modified to remove the '/'.
910 */
911static struct server *expect_server_admin(struct session *s, struct stream_interface *si, char *arg)
912{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100913 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200914 struct proxy *px;
915 struct server *sv;
916 char *line;
917
Willy Tarreau290e63a2012-09-20 18:07:14 +0200918 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100919 appctx->ctx.cli.msg = stats_permission_denied_msg;
920 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200921 return NULL;
922 }
923
924 /* split "backend/server" and make <line> point to server */
925 for (line = arg; *line; line++)
926 if (*line == '/') {
927 *line++ = '\0';
928 break;
929 }
930
931 if (!*line || !*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100932 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
933 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200934 return NULL;
935 }
936
937 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100938 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
939 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200940 return NULL;
941 }
942
943 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100944 appctx->ctx.cli.msg = "Proxy is disabled.\n";
945 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200946 return NULL;
947 }
948
949 return sv;
950}
951
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100952/* This function is used with map management. It permits to browse each
953 * really allocated descriptors of one map reference. The variable
954 * <appctx->ctx.map.ref> must contain the map reference to browse.
955 * The variable <appctx->ctx.map.desc> contain the descriptor of the
956 * current allocated map descriptor. This variable must be initialized
957 * to NULL.
958 */
959static inline void stats_map_lookup_next(struct stream_interface *si)
960{
961 struct appctx *appctx = __objt_appctx(si->end);
962
963 /* search the next allocated map */
964 while (1) {
965 /* get next descriptor */
966 if (!appctx->ctx.map.desc)
967 appctx->ctx.map.desc = LIST_NEXT(&appctx->ctx.map.ref->maps,
968 struct map_descriptor *, list);
969 else
970 appctx->ctx.map.desc = LIST_NEXT(&appctx->ctx.map.desc->list,
971 struct map_descriptor *, list);
972
973 /* detect end of list */
974 if (&appctx->ctx.map.desc->list == &appctx->ctx.map.ref->maps) {
975 appctx->ctx.map.desc = NULL;
976 return;
977 }
978
979 /* do not lookup this entry */
980 if (!appctx->ctx.map.desc->do_free)
981 continue;
982
983 /* avalaible descriptor */
984 return;
985 }
986}
987
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200988/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200989 * called from an applet running in a stream interface. The function returns 1
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100990 * if the request was understood, otherwise zero. It sets appctx->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200991 * designating the function which will have to process the request, which can
992 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200993 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900994static int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200995{
Willy Tarreau306f8302013-07-08 15:53:06 +0200996 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100997 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200998 char *args[MAX_STATS_ARGS + 1];
999 int arg;
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001000 int i, j;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001001
1002 while (isspace((unsigned char)*line))
1003 line++;
1004
1005 arg = 0;
1006 args[arg] = line;
1007
1008 while (*line && arg < MAX_STATS_ARGS) {
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001009 if (*line == '\\') {
1010 line++;
1011 if (*line == '\0')
1012 break;
1013 }
1014 else if (isspace((unsigned char)*line)) {
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001015 *line++ = '\0';
1016
1017 while (isspace((unsigned char)*line))
1018 line++;
1019
1020 args[++arg] = line;
1021 continue;
1022 }
1023
1024 line++;
1025 }
1026
1027 while (++arg <= MAX_STATS_ARGS)
1028 args[arg] = line;
1029
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001030 /* remove \ */
1031 arg = 0;
1032 while (*args[arg] != '\0') {
1033 j = 0;
1034 for (i=0; args[arg][i] != '\0'; i++) {
1035 if (args[arg][i] == '\\')
1036 continue;
1037 args[arg][j] = args[arg][i];
1038 j++;
1039 }
1040 args[arg][j] = '\0';
1041 arg++;
1042 }
1043
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001044 appctx->ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001045 if (strcmp(args[0], "show") == 0) {
1046 if (strcmp(args[1], "stat") == 0) {
1047 if (*args[2] && *args[3] && *args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001048 appctx->ctx.stats.flags |= STAT_BOUND;
1049 appctx->ctx.stats.iid = atoi(args[2]);
1050 appctx->ctx.stats.type = atoi(args[3]);
1051 appctx->ctx.stats.sid = atoi(args[4]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001052 }
1053
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001054 appctx->st2 = STAT_ST_INIT;
1055 appctx->st0 = STAT_CLI_O_STAT; // stats_dump_stat_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001056 }
1057 else if (strcmp(args[1], "info") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001058 appctx->st2 = STAT_ST_INIT;
1059 appctx->st0 = STAT_CLI_O_INFO; // stats_dump_info_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001060 }
Willy Tarreau12833bb2014-01-28 16:49:56 +01001061 else if (strcmp(args[1], "pools") == 0) {
1062 appctx->st2 = STAT_ST_INIT;
1063 appctx->st0 = STAT_CLI_O_POOLS; // stats_dump_pools_to_buffer
1064 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001065 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001066 appctx->st2 = STAT_ST_INIT;
Willy Tarreau290e63a2012-09-20 18:07:14 +02001067 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001068 appctx->ctx.cli.msg = stats_permission_denied_msg;
1069 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001070 return 1;
1071 }
Willy Tarreau76153662012-11-26 01:16:39 +01001072 if (*args[2] && strcmp(args[2], "all") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001073 appctx->ctx.sess.target = (void *)-1;
Willy Tarreau76153662012-11-26 01:16:39 +01001074 else if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001075 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01001076 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001077 appctx->ctx.sess.target = NULL;
1078 appctx->ctx.sess.section = 0; /* start with session status */
1079 appctx->ctx.sess.pos = 0;
1080 appctx->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001081 }
1082 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau290e63a2012-09-20 18:07:14 +02001083 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001084 appctx->ctx.cli.msg = stats_permission_denied_msg;
1085 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001086 return 1;
1087 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001088 if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001089 appctx->ctx.errors.iid = atoi(args[2]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001090 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001091 appctx->ctx.errors.iid = -1;
1092 appctx->ctx.errors.px = NULL;
1093 appctx->st2 = STAT_ST_INIT;
1094 appctx->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001095 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02001096 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001097 stats_sock_table_request(si, args, STAT_CLI_O_TAB);
Willy Tarreau69f58c82010-07-12 17:55:33 +02001098 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001099 else if (strcmp(args[1], "map") == 0) {
1100
1101 /* no parameter: display all map avalaible */
1102 if (!*args[2]) {
1103 appctx->st2 = STAT_ST_INIT;
1104 appctx->st0 = STAT_CLI_O_MAPS;
1105 return 1;
1106 }
1107
1108 /* lookup into the maps */
1109 appctx->ctx.map.ref = map_get_reference(args[2]);
1110 if (!appctx->ctx.map.ref) {
1111 appctx->ctx.cli.msg = "Unknown map reference.\n";
1112 appctx->st0 = STAT_CLI_PRINT;
1113 return 1;
1114 }
1115 appctx->st2 = STAT_ST_INIT;
1116 appctx->st0 = STAT_CLI_O_MAP;
1117 }
Aman Guptaceafb4a2012-04-02 18:57:54 -07001118 else { /* neither "stat" nor "info" nor "sess" nor "errors" nor "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001119 return 0;
1120 }
1121 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001122 else if (strcmp(args[0], "clear") == 0) {
1123 if (strcmp(args[1], "counters") == 0) {
1124 struct proxy *px;
1125 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001126 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001127 int clrall = 0;
1128
1129 if (strcmp(args[2], "all") == 0)
1130 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001131
Willy Tarreau6162db22009-10-10 17:13:00 +02001132 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +02001133 if (s->listener->bind_conf->level < ACCESS_LVL_OPER ||
1134 (clrall && s->listener->bind_conf->level < ACCESS_LVL_ADMIN)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001135 appctx->ctx.cli.msg = stats_permission_denied_msg;
1136 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001137 return 1;
1138 }
1139
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001140 for (px = proxy; px; px = px->next) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001141 if (clrall) {
1142 memset(&px->be_counters, 0, sizeof(px->be_counters));
1143 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
1144 }
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001145 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001146 px->be_counters.conn_max = 0;
1147 px->be_counters.p.http.rps_max = 0;
1148 px->be_counters.sps_max = 0;
1149 px->be_counters.cps_max = 0;
1150 px->be_counters.nbpend_max = 0;
1151
1152 px->fe_counters.conn_max = 0;
1153 px->fe_counters.p.http.rps_max = 0;
1154 px->fe_counters.sps_max = 0;
1155 px->fe_counters.cps_max = 0;
1156 px->fe_counters.nbpend_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001157 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001158
1159 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001160 if (clrall)
1161 memset(&sv->counters, 0, sizeof(sv->counters));
1162 else {
1163 sv->counters.cur_sess_max = 0;
1164 sv->counters.nbpend_max = 0;
1165 sv->counters.sps_max = 0;
1166 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001167
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001168 list_for_each_entry(li, &px->conf.listeners, by_fe)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001169 if (li->counters) {
1170 if (clrall)
1171 memset(li->counters, 0, sizeof(*li->counters));
1172 else
1173 li->counters->conn_max = 0;
1174 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001175 }
1176
Willy Tarreau81c25d02011-09-07 15:17:21 +02001177 global.cps_max = 0;
Willy Tarreau93e7c002013-10-07 18:51:07 +02001178 global.sps_max = 0;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001179 return 1;
1180 }
Willy Tarreau88ee3972010-07-13 13:48:00 +02001181 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001182 stats_sock_table_request(si, args, STAT_CLI_O_CLR);
Willy Tarreau88ee3972010-07-13 13:48:00 +02001183 /* end of processing */
1184 return 1;
1185 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001186 else if (strcmp(args[1], "map") == 0) {
1187 struct map_reference *mref;
1188 struct map_descriptor *mdesc;
1189 struct map_entry *ent, *nent;
1190
1191 /* no parameter */
1192 if (!*args[2]) {
1193 appctx->ctx.cli.msg = "Expect map reference.\n";
1194 appctx->st0 = STAT_CLI_PRINT;
1195 return 1;
1196 }
1197
1198 /* lookup into the maps */
1199 mref = map_get_reference(args[2]);
1200 if (!mref) {
1201 appctx->ctx.cli.msg = "Unknown map reference.\n";
1202 appctx->st0 = STAT_CLI_PRINT;
1203 return 1;
1204 }
1205
1206 /* clear all maps */
1207 list_for_each_entry(mdesc, &mref->maps, list)
1208 if (mdesc->do_free)
1209 pattern_prune_expr(mdesc->pat);
1210
1211 /* clear map reference */
1212 list_for_each_entry_safe(ent, nent, &mref->entries, list) {
1213 LIST_DEL(&ent->list);
1214 free(ent->key);
1215 free(ent->value);
1216 free(ent);
1217 }
1218
1219 /* return response */
1220 appctx->ctx.cli.msg = "Done.\n";
1221 appctx->st0 = STAT_CLI_PRINT;
1222 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001223 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +02001224 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001225 return 0;
1226 }
1227 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001228 else if (strcmp(args[0], "get") == 0) {
1229 if (strcmp(args[1], "weight") == 0) {
1230 struct proxy *px;
1231 struct server *sv;
1232
1233 /* split "backend/server" and make <line> point to server */
1234 for (line = args[2]; *line; line++)
1235 if (*line == '/') {
1236 *line++ = '\0';
1237 break;
1238 }
1239
1240 if (!*line) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001241 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
1242 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001243 return 1;
1244 }
1245
1246 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001247 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
1248 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001249 return 1;
1250 }
1251
1252 /* return server's effective weight at the moment */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001253 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
1254 bi_putstr(si->ib, trash.str);
Willy Tarreau38338fa2009-10-10 18:37:29 +02001255 return 1;
1256 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001257 else if (strcmp(args[1], "map") == 0) {
1258
1259 /* no parameter */
1260 if (!*args[2] || !*args[3]) {
1261 appctx->ctx.cli.msg = "Expect map reference and required key.\n";
1262 appctx->st0 = STAT_CLI_PRINT;
1263 return 1;
1264 }
1265
1266 /* lookup into the maps */
1267 appctx->ctx.map.ref = map_get_reference(args[2]);
1268 if (!appctx->ctx.map.ref) {
1269 appctx->ctx.cli.msg = "Unknown map reference.\n";
1270 appctx->st0 = STAT_CLI_PRINT;
1271 return 1;
1272 }
1273
1274 /* copy input string */
1275 appctx->ctx.map.chunk.len = strlen(args[3]);
1276 appctx->ctx.map.chunk.size = appctx->ctx.map.chunk.len + 1;
1277 appctx->ctx.map.chunk.str = strdup(args[3]);
1278 if (!appctx->ctx.map.chunk.str) {
1279 appctx->ctx.cli.msg = "Out of memory error.\n";
1280 appctx->st0 = STAT_CLI_PRINT;
1281 return 1;
1282 }
1283
1284 /* prepare response */
1285 appctx->st2 = STAT_ST_INIT;
1286 appctx->st0 = STAT_CLI_O_MLOOK;
1287 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001288 else { /* not "get weight" */
1289 return 0;
1290 }
1291 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001292 else if (strcmp(args[0], "set") == 0) {
1293 if (strcmp(args[1], "weight") == 0) {
Willy Tarreau4483d432009-10-10 19:30:08 +02001294 struct server *sv;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001295 const char *warning;
Willy Tarreau4483d432009-10-10 19:30:08 +02001296
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001297 sv = expect_server_admin(s, si, args[2]);
1298 if (!sv)
Willy Tarreau4483d432009-10-10 19:30:08 +02001299 return 1;
Willy Tarreau4483d432009-10-10 19:30:08 +02001300
Simon Horman7d09b9a2013-02-12 10:45:51 +09001301 warning = server_parse_weight_change_request(sv, args[3]);
Simon Horman8c3d0be2013-11-25 10:46:40 +09001302 /*
1303 * The user-weight may now be zero and thus
1304 * the server considered to be draining.
1305 * Update the server's drain state as necessary.
1306 */
1307 set_server_drain_state(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001308 if (warning) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001309 appctx->ctx.cli.msg = warning;
1310 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +02001311 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001312 return 1;
1313 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001314 else if (strcmp(args[1], "timeout") == 0) {
1315 if (strcmp(args[2], "cli") == 0) {
1316 unsigned timeout;
1317 const char *res;
1318
1319 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001320 appctx->ctx.cli.msg = "Expects an integer value.\n";
1321 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001322 return 1;
1323 }
1324
1325 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1326 if (res || timeout < 1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001327 appctx->ctx.cli.msg = "Invalid timeout value.\n";
1328 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001329 return 1;
1330 }
1331
1332 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
1333 return 1;
1334 }
1335 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001336 appctx->ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
1337 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001338 return 1;
1339 }
1340 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001341 else if (strcmp(args[1], "maxconn") == 0) {
1342 if (strcmp(args[2], "frontend") == 0) {
1343 struct proxy *px;
1344 struct listener *l;
1345 int v;
1346
Willy Tarreau532a4502011-09-07 22:37:44 +02001347 px = expect_frontend_admin(s, si, args[3]);
1348 if (!px)
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001349 return 1;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001350
1351 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001352 appctx->ctx.cli.msg = "Integer value expected.\n";
1353 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001354 return 1;
1355 }
1356
1357 v = atoi(args[4]);
Willy Tarreau3c7a79d2012-09-26 21:07:15 +02001358 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001359 appctx->ctx.cli.msg = "Value out of range.\n";
1360 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001361 return 1;
1362 }
1363
1364 /* OK, the value is fine, so we assign it to the proxy and to all of
1365 * its listeners. The blocked ones will be dequeued.
1366 */
1367 px->maxconn = v;
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001368 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001369 l->maxconn = v;
1370 if (l->state == LI_FULL)
1371 resume_listener(l);
1372 }
1373
1374 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&s->fe->listener_queue))
1375 dequeue_all_listeners(&s->fe->listener_queue);
1376
1377 return 1;
1378 }
Willy Tarreau91886b62011-09-07 14:38:31 +02001379 else if (strcmp(args[2], "global") == 0) {
1380 int v;
1381
Willy Tarreau290e63a2012-09-20 18:07:14 +02001382 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001383 appctx->ctx.cli.msg = stats_permission_denied_msg;
1384 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001385 return 1;
1386 }
1387
1388 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001389 appctx->ctx.cli.msg = "Expects an integer value.\n";
1390 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001391 return 1;
1392 }
1393
1394 v = atoi(args[3]);
1395 if (v > global.hardmaxconn) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001396 appctx->ctx.cli.msg = "Value out of range.\n";
1397 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001398 return 1;
1399 }
1400
1401 /* check for unlimited values */
1402 if (v <= 0)
1403 v = global.hardmaxconn;
1404
1405 global.maxconn = v;
1406
1407 /* Dequeues all of the listeners waiting for a resource */
1408 if (!LIST_ISEMPTY(&global_listener_queue))
1409 dequeue_all_listeners(&global_listener_queue);
1410
1411 return 1;
1412 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001413 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001414 appctx->ctx.cli.msg = "'set maxconn' only supports 'frontend' and 'global'.\n";
1415 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001416 return 1;
1417 }
1418 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001419 else if (strcmp(args[1], "rate-limit") == 0) {
1420 if (strcmp(args[2], "connections") == 0) {
1421 if (strcmp(args[3], "global") == 0) {
1422 int v;
1423
Willy Tarreau290e63a2012-09-20 18:07:14 +02001424 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001425 appctx->ctx.cli.msg = stats_permission_denied_msg;
1426 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001427 return 1;
1428 }
1429
1430 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001431 appctx->ctx.cli.msg = "Expects an integer value.\n";
1432 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001433 return 1;
1434 }
1435
1436 v = atoi(args[4]);
1437 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001438 appctx->ctx.cli.msg = "Value out of range.\n";
1439 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001440 return 1;
1441 }
1442
1443 global.cps_lim = v;
1444
1445 /* Dequeues all of the listeners waiting for a resource */
1446 if (!LIST_ISEMPTY(&global_listener_queue))
1447 dequeue_all_listeners(&global_listener_queue);
1448
1449 return 1;
1450 }
1451 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001452 appctx->ctx.cli.msg = "'set rate-limit connections' only supports 'global'.\n";
1453 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001454 return 1;
1455 }
1456 }
Willy Tarreau93e7c002013-10-07 18:51:07 +02001457 else if (strcmp(args[2], "sessions") == 0) {
1458 if (strcmp(args[3], "global") == 0) {
1459 int v;
1460
1461 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
1462 appctx->ctx.cli.msg = stats_permission_denied_msg;
1463 appctx->st0 = STAT_CLI_PRINT;
1464 return 1;
1465 }
1466
1467 if (!*args[4]) {
1468 appctx->ctx.cli.msg = "Expects an integer value.\n";
1469 appctx->st0 = STAT_CLI_PRINT;
1470 return 1;
1471 }
1472
1473 v = atoi(args[4]);
1474 if (v < 0) {
1475 appctx->ctx.cli.msg = "Value out of range.\n";
1476 appctx->st0 = STAT_CLI_PRINT;
1477 return 1;
1478 }
1479
1480 global.sps_lim = v;
1481
1482 /* Dequeues all of the listeners waiting for a resource */
1483 if (!LIST_ISEMPTY(&global_listener_queue))
1484 dequeue_all_listeners(&global_listener_queue);
1485
1486 return 1;
1487 }
1488 else {
1489 appctx->ctx.cli.msg = "'set rate-limit sessions' only supports 'global'.\n";
1490 appctx->st0 = STAT_CLI_PRINT;
1491 return 1;
1492 }
1493 }
Willy Tarreaue43d5322013-10-07 20:01:52 +02001494#ifdef USE_OPENSSL
1495 else if (strcmp(args[2], "ssl-sessions") == 0) {
1496 if (strcmp(args[3], "global") == 0) {
1497 int v;
1498
1499 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
1500 appctx->ctx.cli.msg = stats_permission_denied_msg;
1501 appctx->st0 = STAT_CLI_PRINT;
1502 return 1;
1503 }
1504
1505 if (!*args[4]) {
1506 appctx->ctx.cli.msg = "Expects an integer value.\n";
1507 appctx->st0 = STAT_CLI_PRINT;
1508 return 1;
1509 }
1510
1511 v = atoi(args[4]);
1512 if (v < 0) {
1513 appctx->ctx.cli.msg = "Value out of range.\n";
1514 appctx->st0 = STAT_CLI_PRINT;
1515 return 1;
1516 }
1517
1518 global.ssl_lim = v;
1519
1520 /* Dequeues all of the listeners waiting for a resource */
1521 if (!LIST_ISEMPTY(&global_listener_queue))
1522 dequeue_all_listeners(&global_listener_queue);
1523
1524 return 1;
1525 }
1526 else {
1527 appctx->ctx.cli.msg = "'set rate-limit ssl-sessions' only supports 'global'.\n";
1528 appctx->st0 = STAT_CLI_PRINT;
1529 return 1;
1530 }
1531 }
1532#endif
William Lallemandd85f9172012-11-09 17:05:39 +01001533 else if (strcmp(args[2], "http-compression") == 0) {
1534 if (strcmp(args[3], "global") == 0) {
1535 int v;
1536
Willy Tarreau85d47f92012-11-21 00:29:50 +01001537 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001538 appctx->ctx.cli.msg = "Expects a maximum input byte rate in kB/s.\n";
1539 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau85d47f92012-11-21 00:29:50 +01001540 return 1;
1541 }
1542
William Lallemandd85f9172012-11-09 17:05:39 +01001543 v = atoi(args[4]);
1544 global.comp_rate_lim = v * 1024; /* Kilo to bytes. */
1545 }
1546 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001547 appctx->ctx.cli.msg = "'set rate-limit http-compression' only supports 'global'.\n";
1548 appctx->st0 = STAT_CLI_PRINT;
William Lallemandd85f9172012-11-09 17:05:39 +01001549 return 1;
1550 }
1551 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001552 else {
Willy Tarreaue43d5322013-10-07 20:01:52 +02001553 appctx->ctx.cli.msg = "'set rate-limit' supports 'connections', 'sessions', 'ssl-sessions', and 'http-compression'.\n";
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001554 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001555 return 1;
1556 }
1557 }
Willy Tarreau654694e2012-06-07 01:03:16 +02001558 else if (strcmp(args[1], "table") == 0) {
1559 stats_sock_table_request(si, args, STAT_CLI_O_SET);
1560 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001561 else if (strcmp(args[1], "map") == 0) {
1562 struct pattern *pat_elt;
1563 struct pat_idx_elt *idx_elt;
Thierry FOURNIER410f8102014-01-15 18:09:36 +01001564 char *value = NULL;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001565
1566 /* Expect three parameters: map name, key and new value. */
1567 if (!*args[2] || !*args[3] || !*args[4]) {
1568 appctx->ctx.cli.msg = "'set map' expect three parameters: map name, key and value.\n";
1569 appctx->st0 = STAT_CLI_PRINT;
1570 return 1;
1571 }
1572
1573 /* Lookup the reference in the maps. */
1574 appctx->ctx.map.ref = map_get_reference(args[2]);
1575 if (!appctx->ctx.map.ref) {
1576 appctx->ctx.cli.msg = "Unknown map reference.\n";
1577 appctx->st0 = STAT_CLI_PRINT;
1578 return 1;
1579 }
1580
1581 /* Lookup the entry in the reference values. */
1582 list_for_each_entry(appctx->ctx.map.ent, &appctx->ctx.map.ref->entries, list)
1583 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0)
1584 break;
1585
1586 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries) {
1587 appctx->ctx.cli.msg = "Entry not found.\n";
1588 appctx->st0 = STAT_CLI_PRINT;
1589 return 1;
1590 }
1591
1592 /* Update each reference entries. */
1593 list_for_each_entry(appctx->ctx.map.ent, &appctx->ctx.map.ref->entries, list) {
1594 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0) {
1595 value = strdup(args[4]);
1596 if (!value) {
1597 appctx->ctx.cli.msg = "Out of memory error.\n";
1598 appctx->st0 = STAT_CLI_PRINT;
1599 return 1;
1600 }
1601 free(appctx->ctx.map.ent->value);
1602 appctx->ctx.map.ent->value = value;
1603 }
1604 }
1605
1606 /* Change the sample. The lookup juste return the first entry, other
1607 * entries are not changed, but are never matched.
1608 */
1609 appctx->ctx.map.desc = NULL;
1610 for (stats_map_lookup_next(si);
1611 appctx->ctx.map.desc;
1612 stats_map_lookup_next(si)) {
1613 pattern_lookup(args[3], appctx->ctx.map.desc->pat, &pat_elt, &idx_elt, NULL);
1614 if (pat_elt != NULL)
Thierry FOURNIER410f8102014-01-15 18:09:36 +01001615 appctx->ctx.map.desc->parse(value, pat_elt->smp);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001616 if (idx_elt != NULL)
Thierry FOURNIER410f8102014-01-15 18:09:36 +01001617 appctx->ctx.map.desc->parse(value, idx_elt->smp);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001618 }
1619
1620 /* The set is done, send message. */
1621 appctx->ctx.cli.msg = "Done.\n";
1622 appctx->st0 = STAT_CLI_PRINT;
1623 return 1;
1624 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001625 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +02001626 return 0;
1627 }
1628 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001629 else if (strcmp(args[0], "enable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001630 if (strcmp(args[1], "agent") == 0) {
1631 struct server *sv;
1632
1633 sv = expect_server_admin(s, si, args[2]);
1634 if (!sv)
1635 return 1;
1636
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001637 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
1638 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
1639 appctx->st0 = STAT_CLI_PRINT;
1640 return 1;
1641 }
1642
1643 sv->agent.state |= CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001644 return 1;
1645 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001646 if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001647 struct server *sv;
1648
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001649 sv = expect_server_admin(s, si, args[2]);
1650 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001651 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001652
Cyril Bontécd19e512010-01-31 22:34:03 +01001653 if (sv->state & SRV_MAINTAIN) {
1654 /* The server is really in maintenance, we can change the server state */
Willy Tarreau44267702011-10-28 15:35:33 +02001655 if (sv->track) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001656 /* If this server tracks the status of another one,
1657 * we must restore the good status.
1658 */
Willy Tarreau44267702011-10-28 15:35:33 +02001659 if (sv->track->state & SRV_RUNNING) {
Simon Horman4a741432013-02-23 15:35:38 +09001660 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001661 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001662 } else {
1663 sv->state &= ~SRV_MAINTAIN;
Willy Tarreau33a08db2013-12-11 21:03:31 +01001664 sv->check.state &= ~CHK_ST_PAUSED;
Simon Horman4a741432013-02-23 15:35:38 +09001665 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001666 }
1667 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001668 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001669 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001670 }
1671 }
1672
Willy Tarreau532a4502011-09-07 22:37:44 +02001673 return 1;
1674 }
1675 else if (strcmp(args[1], "frontend") == 0) {
1676 struct proxy *px;
1677
1678 px = expect_frontend_admin(s, si, args[2]);
1679 if (!px)
1680 return 1;
1681
1682 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001683 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
1684 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001685 return 1;
1686 }
1687
1688 if (px->state != PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001689 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
1690 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001691 return 1;
1692 }
1693
1694 if (!resume_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001695 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
1696 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001697 return 1;
1698 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001699 return 1;
1700 }
1701 else { /* unknown "enable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001702 appctx->ctx.cli.msg = "'enable' only supports 'frontend' and 'server'.\n";
1703 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001704 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001705 }
1706 }
1707 else if (strcmp(args[0], "disable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001708 if (strcmp(args[1], "agent") == 0) {
1709 struct server *sv;
1710
1711 sv = expect_server_admin(s, si, args[2]);
1712 if (!sv)
1713 return 1;
1714
Willy Tarreau2e10f5a2013-12-11 20:11:55 +01001715 sv->agent.state &= ~CHK_ST_ENABLED;
Simon Horman671b6f02013-11-25 10:46:39 +09001716 return 1;
1717 }
1718 else if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001719 struct server *sv;
1720
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001721 sv = expect_server_admin(s, si, args[2]);
1722 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001723 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001724
Cyril Bontécd19e512010-01-31 22:34:03 +01001725 if (! (sv->state & SRV_MAINTAIN)) {
1726 /* Not already in maintenance, we can change the server state */
1727 sv->state |= SRV_MAINTAIN;
Willy Tarreau33a08db2013-12-11 21:03:31 +01001728 sv->check.state |= CHK_ST_PAUSED;
Simon Horman4a741432013-02-23 15:35:38 +09001729 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001730 }
1731
Willy Tarreau532a4502011-09-07 22:37:44 +02001732 return 1;
1733 }
1734 else if (strcmp(args[1], "frontend") == 0) {
1735 struct proxy *px;
1736
1737 px = expect_frontend_admin(s, si, args[2]);
1738 if (!px)
1739 return 1;
1740
1741 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001742 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
1743 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001744 return 1;
1745 }
1746
1747 if (px->state == PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001748 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
1749 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001750 return 1;
1751 }
1752
1753 if (!pause_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001754 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
1755 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001756 return 1;
1757 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001758 return 1;
1759 }
1760 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001761 appctx->ctx.cli.msg = "'disable' only supports 'frontend' and 'server'.\n";
1762 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001763 return 1;
1764 }
1765 }
1766 else if (strcmp(args[0], "shutdown") == 0) {
1767 if (strcmp(args[1], "frontend") == 0) {
1768 struct proxy *px;
1769
1770 px = expect_frontend_admin(s, si, args[2]);
1771 if (!px)
1772 return 1;
1773
1774 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001775 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
1776 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001777 return 1;
1778 }
1779
1780 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1781 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1782 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1783 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1784 stop_proxy(px);
1785 return 1;
1786 }
Willy Tarreaua295edc2011-09-07 23:21:03 +02001787 else if (strcmp(args[1], "session") == 0) {
1788 struct session *sess, *ptr;
1789
Willy Tarreau290e63a2012-09-20 18:07:14 +02001790 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001791 appctx->ctx.cli.msg = stats_permission_denied_msg;
1792 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001793 return 1;
1794 }
1795
1796 if (!*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001797 appctx->ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
1798 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001799 return 1;
1800 }
1801
1802 ptr = (void *)strtoul(args[2], NULL, 0);
1803
1804 /* first, look for the requested session in the session table */
1805 list_for_each_entry(sess, &sessions, list) {
1806 if (sess == ptr)
1807 break;
1808 }
1809
1810 /* do we have the session ? */
1811 if (sess != ptr) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001812 appctx->ctx.cli.msg = "No such session (use 'show sess').\n";
1813 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001814 return 1;
1815 }
1816
1817 session_shutdown(sess, SN_ERR_KILLED);
1818 return 1;
1819 }
Willy Tarreau52b2d222011-09-07 23:48:48 +02001820 else if (strcmp(args[1], "sessions") == 0) {
1821 if (strcmp(args[2], "server") == 0) {
1822 struct server *sv;
1823 struct session *sess, *sess_bck;
1824
1825 sv = expect_server_admin(s, si, args[3]);
1826 if (!sv)
1827 return 1;
1828
1829 /* kill all the session that are on this server */
1830 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
1831 if (sess->srv_conn == sv)
1832 session_shutdown(sess, SN_ERR_KILLED);
1833
1834 return 1;
1835 }
1836 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001837 appctx->ctx.cli.msg = "'shutdown sessions' only supports 'server'.\n";
1838 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau52b2d222011-09-07 23:48:48 +02001839 return 1;
1840 }
1841 }
Willy Tarreau532a4502011-09-07 22:37:44 +02001842 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001843 appctx->ctx.cli.msg = "'shutdown' only supports 'frontend', 'session' and 'sessions'.\n";
1844 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001845 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001846 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001847 }
1848 else if (strcmp(args[0], "del") == 0) {
1849 if (strcmp(args[1], "map") == 0) {
1850 struct pattern *pat_elt;
1851 struct pat_idx_elt *idx_elt;
1852 struct map_entry *ent;
1853
1854 /* Expect two parameters: map name and key. */
1855 if (!*args[2] || !*args[3]) {
1856 appctx->ctx.cli.msg = "'del map' expect two parameters: map name and key.\n";
1857 appctx->st0 = STAT_CLI_PRINT;
1858 return 1;
1859 }
1860
1861 /* Lookup the reference in the maps. */
1862 appctx->ctx.map.ref = map_get_reference(args[2]);
1863 if (!appctx->ctx.map.ref) {
1864 appctx->ctx.cli.msg = "Unknown map reference.\n";
1865 appctx->st0 = STAT_CLI_PRINT;
1866 return 1;
1867 }
1868
1869 /* Lookup the entry in the reference values.
1870 * If the entry is not found in the reference, return error message.
1871 */
1872 list_for_each_entry(appctx->ctx.map.ent, &appctx->ctx.map.ref->entries, list)
1873 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0)
1874 break;
1875
1876 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries) {
1877 appctx->ctx.cli.msg = "Entry not found.\n";
1878 appctx->st0 = STAT_CLI_PRINT;
1879 return 1;
1880 }
1881
1882 /* Delete each enties from reference. */
1883 list_for_each_entry_safe(appctx->ctx.map.ent, ent, &appctx->ctx.map.ref->entries, list) {
1884 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0) {
1885 LIST_DEL(&appctx->ctx.map.ent->list);
1886 free(appctx->ctx.map.ent->key);
1887 free(appctx->ctx.map.ent->value);
1888 free(appctx->ctx.map.ent);
1889 }
1890 }
1891
1892 /* Delete all matching entries for each map descritor. */
1893 appctx->ctx.map.desc = NULL;
1894 stats_map_lookup_next(si);
1895 while (appctx->ctx.map.desc) {
1896 while (pattern_lookup(args[3], appctx->ctx.map.desc->pat, &pat_elt, &idx_elt, NULL)) {
1897 if (pat_elt != NULL) {
1898 LIST_DEL(&pat_elt->list);
1899 pattern_free(pat_elt);
1900 }
1901 if (idx_elt != NULL) {
1902 ebmb_delete(&idx_elt->node);
1903 free(idx_elt);
1904 }
1905 }
1906 stats_map_lookup_next(si);
1907 }
1908
1909 /* The deletion is done, send message. */
1910 appctx->ctx.cli.msg = "Done.\n";
1911 appctx->st0 = STAT_CLI_PRINT;
1912 return 1;
1913 }
1914 else { /* unknown "del" parameter */
1915 appctx->ctx.cli.msg = "'del' only supports 'map'.\n";
1916 appctx->st0 = STAT_CLI_PRINT;
1917 return 1;
1918 }
1919 }
1920 else if (strcmp(args[0], "add") == 0) {
1921 if (strcmp(args[1], "map") == 0) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001922 struct pattern *pat;
1923 struct map_entry *ent;
1924 struct sample_storage *smp;
1925
1926 /* Expect three parameters: map name, key and new value. */
1927 if (!*args[2] || !*args[3] || !*args[4]) {
1928 appctx->ctx.cli.msg = "'add map' expect three parameters: map name, key and value.\n";
1929 appctx->st0 = STAT_CLI_PRINT;
1930 return 1;
1931 }
1932
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001933 /* Lookup the reference in the maps. */
1934 appctx->ctx.map.ref = map_get_reference(args[2]);
1935 if (!appctx->ctx.map.ref) {
1936 appctx->ctx.cli.msg = "Unknown map reference.\n";
1937 appctx->st0 = STAT_CLI_PRINT;
1938 return 1;
1939 }
1940
1941 /* Prepare and link the new map_entry element. If out of memory
1942 * error the action is cancelled and the descriptor are left
1943 * coherents.
1944 */
1945 ent = malloc(sizeof(*ent));
1946 if (!ent) {
1947 appctx->ctx.cli.msg = "Out of memory error.\n";
1948 appctx->st0 = STAT_CLI_PRINT;
1949 return 1;
1950 }
1951 ent->key = strdup(args[3]);
1952 if (!ent->key) {
1953 free(ent);
1954 appctx->ctx.cli.msg = "Out of memory error.\n";
1955 appctx->st0 = STAT_CLI_PRINT;
1956 return 1;
1957 }
1958 ent->value = strdup(args[4]);
1959 if (!ent->value) {
1960 free(ent->key);
1961 free(ent);
1962 appctx->ctx.cli.msg = "Out of memory error.\n";
1963 appctx->st0 = STAT_CLI_PRINT;
1964 return 1;
1965 }
1966 LIST_ADDQ(&appctx->ctx.map.ref->entries, &ent->list);
1967
1968 /* Browse each map descritor and try to insert this new value. */
1969 appctx->ctx.map.desc = NULL;
1970 for (stats_map_lookup_next(si);
1971 appctx->ctx.map.desc;
1972 stats_map_lookup_next(si)) {
1973
1974 /* Create new sample. Return out of memory error
1975 * if the memory cannot be allocated. The 'add' process
1976 * is aborted, but the already inserted entries are not
1977 * deleted.
1978 */
1979 smp = calloc(1, sizeof(*smp));
1980 if (!smp) {
1981 appctx->ctx.cli.msg = "Out of memory error. The value is not added in all maps.\n";
1982 appctx->st0 = STAT_CLI_PRINT;
1983 return 1;
1984 }
1985
1986 /* Create sample. If this function fails, the insertion
1987 * is canceled for this 'descriptor', but continue, for
1988 * the other descriptors.
1989 */
1990 if (!appctx->ctx.map.desc->parse(ent->value, smp)) {
1991 free(smp);
1992 continue;
1993 }
1994
1995 /* If the value can be indexed, get the first pattern. If
1996 * the return entry is not the indexed entry, new 'pattern' is
1997 * created by the function pattern_register(). If the 'pattern'
1998 * is NULL, new entry is created. This is ugly because the
1999 * following code interfers with the own code of the function
2000 * pattern_register().
2001 */
2002 if (appctx->ctx.map.desc->pat->match == pat_match_str ||
2003 appctx->ctx.map.desc->pat->match == pat_match_ip) {
2004 pat = LIST_NEXT(&appctx->ctx.map.desc->pat->patterns, struct pattern *, list);
2005 if (&pat->list == &appctx->ctx.map.desc->pat->patterns)
2006 pat = NULL;
2007 }
2008 else
2009 pat = NULL;
2010
Thierry FOURNIER972028f2014-01-23 17:53:31 +01002011 if (!pattern_register(appctx->ctx.map.desc->pat, args[3], smp, &pat, 0, NULL)) {
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002012 free(smp);
2013 continue;
2014 }
2015 }
2016
2017 /* The add is done, send message. */
2018 appctx->ctx.cli.msg = "Done.\n";
2019 appctx->st0 = STAT_CLI_PRINT;
2020 return 1;
2021 }
2022 else { /* unknown "del" parameter */
2023 appctx->ctx.cli.msg = "'add' only supports 'map'.\n";
2024 appctx->st0 = STAT_CLI_PRINT;
2025 return 1;
2026 }
Cyril Bontécd19e512010-01-31 22:34:03 +01002027 }
2028 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002029 return 0;
2030 }
2031 return 1;
2032}
2033
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002034/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002035 * used to processes I/O from/to the stats unix socket. The system relies on a
2036 * state machine handling requests and various responses. We read a request,
2037 * then we process it and send the response, and we possibly display a prompt.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002038 * Then we can read again. The state is stored in appctx->st0 and is one of the
2039 * STAT_CLI_* constants. appctx->st1 is used to indicate whether prompt is enabled
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002040 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002041 */
Willy Tarreaub24281b2011-02-13 13:16:36 +01002042static void cli_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002043{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002044 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau7421efb2012-07-02 15:11:27 +02002045 struct channel *req = si->ob;
2046 struct channel *res = si->ib;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002047 int reql;
2048 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002049
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002050 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
2051 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002052
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002053 while (1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002054 if (appctx->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002055 /* Stats output not initialized yet */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002056 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
2057 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002058 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002059 else if (appctx->st0 == STAT_CLI_END) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002060 /* Let's close for real now. We just close the request
2061 * side, the conditions below will complete if needed.
2062 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002063 si_shutw(si);
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002064 break;
2065 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002066 else if (appctx->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02002067 /* ensure we have some output room left in the event we
2068 * would want to return some info right after parsing.
2069 */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002070 if (buffer_almost_full(si->ib->buf)) {
2071 si->ib->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02002072 break;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01002073 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02002074
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002075 reql = bo_getline(si->ob, trash.str, trash.size);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002076 if (reql <= 0) { /* closed or EOL not found */
2077 if (reql == 0)
2078 break;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002079 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002080 continue;
2081 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002082
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002083 /* seek for a possible semi-colon. If we find one, we
2084 * replace it with an LF and skip only this part.
2085 */
2086 for (len = 0; len < reql; len++)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002087 if (trash.str[len] == ';') {
2088 trash.str[len] = '\n';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002089 reql = len + 1;
2090 break;
2091 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002092
Willy Tarreau816fc222009-10-04 07:36:58 +02002093 /* now it is time to check that we have a full line,
2094 * remove the trailing \n and possibly \r, then cut the
2095 * line.
2096 */
2097 len = reql - 1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002098 if (trash.str[len] != '\n') {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002099 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002100 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002101 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002102
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002103 if (len && trash.str[len-1] == '\r')
Willy Tarreau816fc222009-10-04 07:36:58 +02002104 len--;
2105
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002106 trash.str[len] = '\0';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002107
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002108 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002109 if (len) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002110 if (strcmp(trash.str, "quit") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002111 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002112 continue;
2113 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002114 else if (strcmp(trash.str, "prompt") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002115 appctx->st1 = !appctx->st1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002116 else if (strcmp(trash.str, "help") == 0 ||
2117 !stats_sock_parse_request(si, trash.str)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002118 appctx->ctx.cli.msg = stats_sock_usage_msg;
2119 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002120 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002121 /* NB: stats_sock_parse_request() may have put
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002122 * another STAT_CLI_O_* into appctx->st0.
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002123 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002124 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002125 else if (!appctx->st1) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002126 /* if prompt is disabled, print help on empty lines,
2127 * so that the user at least knows how to enable
2128 * prompt and find help.
2129 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002130 appctx->ctx.cli.msg = stats_sock_usage_msg;
2131 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002132 }
2133
2134 /* re-adjust req buffer */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02002135 bo_skip(si->ob, reql);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002136 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002137 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002138 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002139 if (res->flags & (CF_SHUTR_NOW|CF_SHUTR)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002140 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002141 continue;
2142 }
2143
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002144 switch (appctx->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002145 case STAT_CLI_PRINT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002146 if (bi_putstr(si->ib, appctx->ctx.cli.msg) != -1)
2147 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002148 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002149 case STAT_CLI_O_INFO:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002150 if (stats_dump_info_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002151 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002152 break;
2153 case STAT_CLI_O_STAT:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002154 if (stats_dump_stat_to_buffer(si, NULL))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002155 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002156 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002157 case STAT_CLI_O_SESS:
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002158 if (stats_dump_sess_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002159 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002160 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002161 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002162 if (stats_dump_errors_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002163 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002164 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002165 case STAT_CLI_O_TAB:
Simon Hormanc88b8872011-06-15 15:18:49 +09002166 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002167 if (stats_table_request(si, appctx->st0))
2168 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002169 break;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002170 case STAT_CLI_O_MAPS:
2171 if (stats_maps_list(si))
2172 appctx->st0 = STAT_CLI_PROMPT;
2173 break;
2174 case STAT_CLI_O_MAP:
2175 if (stats_map_list(si))
2176 appctx->st0 = STAT_CLI_PROMPT;
2177 break;
2178 case STAT_CLI_O_MLOOK:
2179 if (stats_map_lookup(si))
2180 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau4efb3532014-01-29 12:13:39 +01002181 break;
Willy Tarreau12833bb2014-01-28 16:49:56 +01002182 case STAT_CLI_O_POOLS:
2183 if (stats_dump_pools_to_buffer(si))
2184 appctx->st0 = STAT_CLI_PROMPT;
2185 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002186 default: /* abnormal state */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002187 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002188 break;
2189 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002190
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002191 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002192 if (appctx->st0 == STAT_CLI_PROMPT) {
2193 if (bi_putstr(si->ib, appctx->st1 ? "\n> " : "\n") != -1)
2194 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002195 }
2196
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002197 /* If the output functions are still there, it means they require more room. */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002198 if (appctx->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002199 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002200
2201 /* Now we close the output if one of the writers did so,
2202 * or if we're not in interactive mode and the request
2203 * buffer is empty. This still allows pipelined requests
2204 * to be sent in non-interactive mode.
2205 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002206 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!appctx->st1 && !req->buf->o)) {
2207 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002208 continue;
2209 }
2210
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002211 /* switch state back to GETREQ to read next requests */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002212 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002213 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002214 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002215
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002216 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST) && (appctx->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002217 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
2218 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
Aman Guptaceafb4a2012-04-02 18:57:54 -07002219 /* Other side has closed, let's abort if we have no more processing to do
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002220 * and nothing more to consume. This is comparable to a broken pipe, so
2221 * we forward the close to the request side so that it flows upstream to
2222 * the client.
2223 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002224 si_shutw(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002225 }
2226
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002227 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002228 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
2229 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
2230 /* We have no more processing to do, and nothing more to send, and
2231 * the client side has closed. So we'll forward this state downstream
2232 * on the response buffer.
2233 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002234 si_shutr(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002235 res->flags |= CF_READ_NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002236 }
2237
2238 /* update all other flags and resync with the other side */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002239 si_update(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002240
2241 /* we don't want to expire timeouts while we're processing requests */
2242 si->ib->rex = TICK_ETERNITY;
2243 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002244
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002245 out:
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002246 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 +02002247 __FUNCTION__, __LINE__,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002248 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 +02002249
2250 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
2251 /* check that we have released everything then unregister */
2252 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002253 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002254}
2255
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002256/* This function dumps information onto the stream interface's read buffer.
2257 * It returns 0 as long as it does not complete, non-zero upon completion.
2258 * No state is used.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002259 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002260static int stats_dump_info_to_buffer(struct stream_interface *si)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002261{
2262 unsigned int up = (now.tv_sec - start_date.tv_sec);
2263
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002264 chunk_printf(&trash,
2265 "Name: " PRODUCT_NAME "\n"
2266 "Version: " HAPROXY_VERSION "\n"
2267 "Release_date: " HAPROXY_DATE "\n"
2268 "Nbproc: %d\n"
2269 "Process_num: %d\n"
2270 "Pid: %d\n"
2271 "Uptime: %dd %dh%02dm%02ds\n"
2272 "Uptime_sec: %d\n"
2273 "Memmax_MB: %d\n"
2274 "Ulimit-n: %d\n"
2275 "Maxsock: %d\n"
2276 "Maxconn: %d\n"
2277 "Hard_maxconn: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002278 "CurrConns: %d\n"
Willy Tarreau71b734c2014-01-28 15:19:44 +01002279 "CumConns: %d\n"
2280 "CumReq: %d\n"
2281#ifdef USE_OPENSSL
2282 "MaxSslConns: %d\n"
2283 "CurrSslConns: %d\n"
2284 "CumSslConns: %d\n"
2285#endif
2286 "Maxpipes: %d\n"
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002287 "PipesUsed: %d\n"
2288 "PipesFree: %d\n"
2289 "ConnRate: %d\n"
2290 "ConnRateLimit: %d\n"
2291 "MaxConnRate: %d\n"
Willy Tarreau93e7c002013-10-07 18:51:07 +02002292 "SessRate: %d\n"
2293 "SessRateLimit: %d\n"
2294 "MaxSessRate: %d\n"
Willy Tarreaue43d5322013-10-07 20:01:52 +02002295#ifdef USE_OPENSSL
2296 "SslRate: %d\n"
2297 "SslRateLimit: %d\n"
2298 "MaxSslRate: %d\n"
2299#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002300 "CompressBpsIn: %u\n"
2301 "CompressBpsOut: %u\n"
2302 "CompressBpsRateLim: %u\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002303#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002304 "ZlibMemUsage: %ld\n"
2305 "MaxZlibMemUsage: %ld\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002306#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002307 "Tasks: %d\n"
2308 "Run_queue: %d\n"
2309 "Idle_pct: %d\n"
2310 "node: %s\n"
2311 "description: %s\n"
2312 "",
2313 global.nbproc,
2314 relative_pid,
2315 pid,
2316 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
2317 up,
2318 global.rlimit_memmax,
2319 global.rlimit_nofile,
Willy Tarreau71b734c2014-01-28 15:19:44 +01002320 global.maxsock, global.maxconn, global.hardmaxconn,
2321 actconn, totalconn, global.req_count,
2322#ifdef USE_OPENSSL
2323 global.maxsslconn, sslconns, totalsslconns,
2324#endif
2325 global.maxpipes, pipes_used, pipes_free,
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002326 read_freq_ctr(&global.conn_per_sec), global.cps_lim, global.cps_max,
Willy Tarreau93e7c002013-10-07 18:51:07 +02002327 read_freq_ctr(&global.sess_per_sec), global.sps_lim, global.sps_max,
Willy Tarreaue43d5322013-10-07 20:01:52 +02002328#ifdef USE_OPENSSL
2329 read_freq_ctr(&global.ssl_per_sec), global.ssl_lim, global.ssl_max,
2330#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002331 read_freq_ctr(&global.comp_bps_in), read_freq_ctr(&global.comp_bps_out),
2332 global.comp_rate_lim,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002333#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002334 zlib_used_memory, global.maxzlibmem,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002335#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002336 nb_tasks_cur, run_queue_cur, idle_pct,
2337 global.node, global.desc ? global.desc : ""
2338 );
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002339
2340 if (bi_putchk(si->ib, &trash) == -1)
2341 return 0;
2342
2343 return 1;
2344}
2345
Willy Tarreau12833bb2014-01-28 16:49:56 +01002346/* This function dumps memory usage information onto the stream interface's
2347 * read buffer. It returns 0 as long as it does not complete, non-zero upon
2348 * completion. No state is used.
2349 */
2350static int stats_dump_pools_to_buffer(struct stream_interface *si)
2351{
2352 dump_pools_to_trash();
2353 if (bi_putchk(si->ib, &trash) == -1)
2354 return 0;
2355 return 1;
2356}
2357
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002358/* Dumps a frontend's line to the trash for the current proxy <px> and uses
2359 * the state from stream interface <si>. The caller is responsible for clearing
2360 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002361 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002362static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002363{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002364 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002365 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002366
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002367 if (!(px->cap & PR_CAP_FE))
2368 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002369
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002370 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_FE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002371 return 0;
2372
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002373 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002374 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002375 /* name, queue */
2376 "<tr class=\"frontend\">");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002377
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002378 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002379 /* Column sub-heading for Enable or Disable server */
2380 chunk_appendf(&trash, "<td></td>");
2381 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02002382
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002383 chunk_appendf(&trash,
2384 "<td class=ac>"
2385 "<a name=\"%s/Frontend\"></a>"
2386 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
2387 "<td colspan=3></td>"
2388 "",
2389 px->id, px->id);
Cyril Bonté70be45d2010-10-12 00:14:35 +02002390
Willy Tarreau466c9b52012-12-23 02:25:03 +01002391 chunk_appendf(&trash,
2392 /* sessions rate : current */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002393 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002394 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
2395 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
2396 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002397 U2H(read_freq_ctr(&px->fe_sess_per_sec)),
2398 U2H(read_freq_ctr(&px->fe_conn_per_sec)),
2399 U2H(read_freq_ctr(&px->fe_sess_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002400
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002401 if (px->mode == PR_MODE_HTTP)
2402 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002403 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002404 U2H(read_freq_ctr(&px->fe_req_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002405
2406 chunk_appendf(&trash,
2407 "</table></div></u></td>"
2408 /* sessions rate : max */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002409 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002410 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
2411 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
2412 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002413 U2H(px->fe_counters.sps_max),
2414 U2H(px->fe_counters.cps_max),
2415 U2H(px->fe_counters.sps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002416
2417 if (px->mode == PR_MODE_HTTP)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002418 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002419 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002420 U2H(px->fe_counters.p.http.rps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002421
2422 chunk_appendf(&trash,
2423 "</table></div></u></td>"
2424 /* sessions rate : limit */
2425 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002426 LIM2A(px->fe_sps_lim, "-"));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002427
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002428 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002429 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002430 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002431 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002432 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
2433 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002434 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002435 U2H(px->feconn), U2H(px->fe_counters.conn_max), U2H(px->maxconn),
2436 U2H(px->fe_counters.cum_sess),
2437 U2H(px->fe_counters.cum_conn),
2438 U2H(px->fe_counters.cum_sess));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002439
Willy Tarreau466c9b52012-12-23 02:25:03 +01002440 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002441 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01002442 chunk_appendf(&trash,
2443 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
2444 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
2445 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
2446 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
2447 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
2448 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
2449 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
2450 "<tr><th>- other responses:</th><td>%s</td></tr>"
2451 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
2452 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002453 U2H(px->fe_counters.p.http.cum_req),
2454 U2H(px->fe_counters.p.http.rsp[1]),
2455 U2H(px->fe_counters.p.http.rsp[2]),
2456 U2H(px->fe_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002457 px->fe_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01002458 (int)(100*px->fe_counters.p.http.comp_rsp/px->fe_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002459 U2H(px->fe_counters.p.http.rsp[3]),
2460 U2H(px->fe_counters.p.http.rsp[4]),
2461 U2H(px->fe_counters.p.http.rsp[5]),
2462 U2H(px->fe_counters.p.http.rsp[0]),
2463 U2H(px->fe_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002464 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002465
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002466 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002467 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002468 /* sessions: lbtot, lastsess */
2469 "<td></td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002470 /* bytes : in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002471 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002472 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002473 U2H(px->fe_counters.bytes_in));
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002474
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002475 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002476 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002477 "<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 +01002478 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002479 U2H(px->fe_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002480 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp,
2481 px->fe_counters.comp_in ?
2482 (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 +01002483 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "</u>":"");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002484
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002485 chunk_appendf(&trash,
2486 /* denied: req, resp */
2487 "<td>%s</td><td>%s</td>"
2488 /* errors : request, connect, response */
2489 "<td>%s</td><td></td><td></td>"
2490 /* warnings: retries, redispatches */
2491 "<td></td><td></td>"
2492 /* server status : reflect frontend status */
2493 "<td class=ac>%s</td>"
2494 /* rest of server: nothing */
2495 "<td class=ac colspan=8></td></tr>"
2496 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002497 U2H(px->fe_counters.denied_req), U2H(px->fe_counters.denied_resp),
2498 U2H(px->fe_counters.failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002499 px->state == PR_STREADY ? "OPEN" :
2500 px->state == PR_STFULL ? "FULL" : "STOP");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002501 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002502 else { /* CSV mode */
2503 chunk_appendf(&trash,
2504 /* pxid, name, queue cur, queue max, */
2505 "%s,FRONTEND,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002506 /* sessions : current, max, limit, total */
2507 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002508 /* bytes : in, out */
2509 "%lld,%lld,"
2510 /* denied: req, resp */
2511 "%lld,%lld,"
2512 /* errors : request, connect, response */
2513 "%lld,,,"
2514 /* warnings: retries, redispatches */
2515 ",,"
2516 /* server status : reflect frontend status */
2517 "%s,"
2518 /* rest of server: nothing */
2519 ",,,,,,,,"
2520 /* pid, iid, sid, throttle, lbtot, tracked, type */
2521 "%d,%d,0,,,,%d,"
2522 /* rate, rate_lim, rate_max */
2523 "%u,%u,%u,"
2524 /* check_status, check_code, check_duration */
2525 ",,,",
2526 px->id,
2527 px->feconn, px->fe_counters.conn_max, px->maxconn, px->fe_counters.cum_sess,
2528 px->fe_counters.bytes_in, px->fe_counters.bytes_out,
2529 px->fe_counters.denied_req, px->fe_counters.denied_resp,
2530 px->fe_counters.failed_req,
2531 px->state == PR_STREADY ? "OPEN" :
2532 px->state == PR_STFULL ? "FULL" : "STOP",
2533 relative_pid, px->uuid, STATS_TYPE_FE,
2534 read_freq_ctr(&px->fe_sess_per_sec),
2535 px->fe_sps_lim, px->fe_counters.sps_max);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002536
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002537 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2538 if (px->mode == PR_MODE_HTTP) {
2539 for (i=1; i<6; i++)
2540 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[i]);
2541 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[0]);
2542 }
2543 else
2544 chunk_appendf(&trash, ",,,,,,");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002545
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002546 /* failed health analyses */
2547 chunk_appendf(&trash, ",");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002548
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002549 /* requests : req_rate, req_rate_max, req_tot, */
2550 chunk_appendf(&trash, "%u,%u,%lld,",
2551 read_freq_ctr(&px->fe_req_per_sec),
2552 px->fe_counters.p.http.rps_max, px->fe_counters.p.http.cum_req);
2553
2554 /* errors: cli_aborts, srv_aborts */
2555 chunk_appendf(&trash, ",,");
2556
2557 /* compression: in, out, bypassed */
2558 chunk_appendf(&trash, "%lld,%lld,%lld,",
2559 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp);
2560
2561 /* compression: comp_rsp */
2562 chunk_appendf(&trash, "%lld,",
2563 px->fe_counters.p.http.comp_rsp);
2564
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002565 /* lastsess */
2566 chunk_appendf(&trash, ",");
2567
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002568 /* finish with EOL */
2569 chunk_appendf(&trash, "\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002570 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002571 return 1;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002572}
2573
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002574/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
2575 * from stream interface <si>, and stats flags <flags>. The caller is responsible
2576 * for clearing the trash if needed. Returns non-zero if it emits anything, zero
2577 * otherwise.
Willy Tarreau91861262007-10-17 17:06:05 +02002578 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002579static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l, int flags)
Willy Tarreau91861262007-10-17 17:06:05 +02002580{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002581 struct appctx *appctx = __objt_appctx(si->end);
2582
2583 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002584 chunk_appendf(&trash, "<tr class=socket>");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002585 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002586 /* Column sub-heading for Enable or Disable server */
2587 chunk_appendf(&trash, "<td></td>");
2588 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002589 chunk_appendf(&trash,
2590 /* frontend name, listener name */
2591 "<td class=ac><a name=\"%s/+%s\"></a>%s"
2592 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
2593 "",
2594 px->id, l->name,
2595 (flags & ST_SHLGNDS)?"<u>":"",
2596 px->id, l->name, l->name);
Willy Tarreau91861262007-10-17 17:06:05 +02002597
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002598 if (flags & ST_SHLGNDS) {
2599 char str[INET6_ADDRSTRLEN];
2600 int port;
Willy Tarreau91861262007-10-17 17:06:05 +02002601
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002602 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreau91861262007-10-17 17:06:05 +02002603
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002604 port = get_host_port(&l->addr);
2605 switch (addr_to_str(&l->addr, str, sizeof(str))) {
2606 case AF_INET:
2607 chunk_appendf(&trash, "IPv4: %s:%d, ", str, port);
2608 break;
2609 case AF_INET6:
2610 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, port);
2611 break;
2612 case AF_UNIX:
2613 chunk_appendf(&trash, "unix, ");
2614 break;
2615 case -1:
2616 chunk_appendf(&trash, "(%s), ", strerror(errno));
2617 break;
2618 }
Willy Tarreau91861262007-10-17 17:06:05 +02002619
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002620 /* id */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002621 chunk_appendf(&trash, "id: %d</div>", l->luid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002622 }
Willy Tarreau91861262007-10-17 17:06:05 +02002623
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002624 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002625 /* queue */
2626 "%s</td><td colspan=3></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002627 /* sessions rate: current, max, limit */
2628 "<td colspan=3>&nbsp;</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002629 /* sessions: current, max, limit, total, lbtot, lastsess */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002630 "<td>%s</td><td>%s</td><td>%s</td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002631 "<td>%s</td><td>&nbsp;</td><td>&nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002632 /* bytes: in, out */
2633 "<td>%s</td><td>%s</td>"
2634 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002635 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002636 U2H(l->nbconn), U2H(l->counters->conn_max), U2H(l->maxconn),
2637 U2H(l->counters->cum_conn), U2H(l->counters->bytes_in), U2H(l->counters->bytes_out));
Willy Tarreau56a560a2009-09-22 19:27:35 +02002638
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002639 chunk_appendf(&trash,
2640 /* denied: req, resp */
2641 "<td>%s</td><td>%s</td>"
2642 /* errors: request, connect, response */
2643 "<td>%s</td><td></td><td></td>"
2644 /* warnings: retries, redispatches */
2645 "<td></td><td></td>"
2646 /* server status: reflect listener status */
2647 "<td class=ac>%s</td>"
2648 /* rest of server: nothing */
2649 "<td class=ac colspan=8></td></tr>"
2650 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002651 U2H(l->counters->denied_req), U2H(l->counters->denied_resp),
2652 U2H(l->counters->failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002653 (l->nbconn < l->maxconn) ? (l->state == LI_LIMITED) ? "WAITING" : "OPEN" : "FULL");
2654 }
2655 else { /* CSV mode */
2656 chunk_appendf(&trash,
2657 /* pxid, name, queue cur, queue max, */
2658 "%s,%s,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002659 /* sessions: current, max, limit, total */
2660 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002661 /* bytes: in, out */
2662 "%lld,%lld,"
2663 /* denied: req, resp */
2664 "%lld,%lld,"
2665 /* errors: request, connect, response */
2666 "%lld,,,"
2667 /* warnings: retries, redispatches */
2668 ",,"
2669 /* server status: reflect listener status */
2670 "%s,"
2671 /* rest of server: nothing */
2672 ",,,,,,,,"
2673 /* pid, iid, sid, throttle, lbtot, tracked, type */
2674 "%d,%d,%d,,,,%d,"
2675 /* rate, rate_lim, rate_max */
2676 ",,,"
2677 /* check_status, check_code, check_duration */
2678 ",,,"
2679 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2680 ",,,,,,"
2681 /* failed health analyses */
2682 ","
2683 /* requests : req_rate, req_rate_max, req_tot, */
2684 ",,,"
2685 /* errors: cli_aborts, srv_aborts */
2686 ",,"
2687 /* compression: in, out, bypassed, comp_rsp */
2688 ",,,,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002689 /* lastsess */
2690 ","
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002691 "\n",
2692 px->id, l->name,
2693 l->nbconn, l->counters->conn_max,
2694 l->maxconn, l->counters->cum_conn,
2695 l->counters->bytes_in, l->counters->bytes_out,
2696 l->counters->denied_req, l->counters->denied_resp,
2697 l->counters->failed_req,
2698 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
2699 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
2700 }
2701 return 1;
2702}
Willy Tarreau91861262007-10-17 17:06:05 +02002703
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002704/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
2705 * from stream interface <si>, stats flags <flags>, and server state <state>.
2706 * The caller is responsible for clearing the trash if needed. Returns non-zero
2707 * if it emits anything, zero otherwise. The <state> parameter can take the
Simon Horman8c3d0be2013-11-25 10:46:40 +09002708 * following values : 0=DOWN, 1=going up, 2=going down, 3=UP, 4,5=NOLB,
2709 * 6,7=DRAIN, 8=unchecked.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002710 */
2711static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, int flags, struct server *sv, int state)
2712{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002713 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002714 struct server *ref = sv->track ? sv->track : sv;
2715 char str[INET6_ADDRSTRLEN];
2716 struct chunk src;
2717 int i;
Willy Tarreau91861262007-10-17 17:06:05 +02002718
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002719 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Simon Horman8c3d0be2013-11-25 10:46:40 +09002720 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002721 "DOWN",
2722 "DN %d/%d &uarr;",
2723 "UP %d/%d &darr;",
2724 "UP",
2725 "NOLB %d/%d &darr;",
2726 "NOLB",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002727 "DRAIN %d/%d &darr;",
2728 "DRAIN",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002729 "<i>no check</i>"
2730 };
Willy Tarreau91861262007-10-17 17:06:05 +02002731
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002732 if ((sv->state & SRV_MAINTAIN) || (ref->state & SRV_MAINTAIN))
2733 chunk_appendf(&trash, "<tr class=\"maintain\">");
2734 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002735 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002736 "<tr class=\"%s%d\">",
2737 (sv->state & SRV_BACKUP) ? "backup" : "active", state);
Willy Tarreau91861262007-10-17 17:06:05 +02002738
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002739 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002740 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002741 "<td><input type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
2742 sv->id);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002743
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002744 chunk_appendf(&trash,
2745 "<td class=ac><a name=\"%s/%s\"></a>%s"
2746 "<a class=lfsb href=\"#%s/%s\">%s</a>"
2747 "",
2748 px->id, sv->id,
2749 (flags & ST_SHLGNDS) ? "<u>" : "",
2750 px->id, sv->id, sv->id);
Willy Tarreau91861262007-10-17 17:06:05 +02002751
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002752 if (flags & ST_SHLGNDS) {
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002753 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002754
2755 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2756 case AF_INET:
2757 chunk_appendf(&trash, "IPv4: %s:%d, ", str, get_host_port(&sv->addr));
2758 break;
2759 case AF_INET6:
2760 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, get_host_port(&sv->addr));
2761 break;
2762 case AF_UNIX:
2763 chunk_appendf(&trash, "unix, ");
2764 break;
2765 case -1:
2766 chunk_appendf(&trash, "(%s), ", strerror(errno));
2767 break;
2768 default: /* address family not supported */
2769 break;
Willy Tarreau55bb8452007-10-17 18:44:57 +02002770 }
Willy Tarreau91861262007-10-17 17:06:05 +02002771
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002772 /* id */
2773 chunk_appendf(&trash, "id: %d", sv->puid);
Willy Tarreau91861262007-10-17 17:06:05 +02002774
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002775 /* cookie */
2776 if (sv->cookie) {
2777 chunk_appendf(&trash, ", cookie: '");
Willy Tarreau5031e6a2007-10-18 11:05:48 +02002778
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002779 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
2780 chunk_htmlencode(&trash, &src);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002781
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002782 chunk_appendf(&trash, "'");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002783 }
2784
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002785 chunk_appendf(&trash, "</div>");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002786 }
Willy Tarreau91861262007-10-17 17:06:05 +02002787
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002788 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002789 /* queue : current, max, limit */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002790 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002791 /* sessions rate : current, max, limit */
2792 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002793 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002794 (flags & ST_SHLGNDS) ? "</u>" : "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002795 U2H(sv->nbpend), U2H(sv->counters.nbpend_max), LIM2A(sv->maxqueue, "-"),
2796 U2H(read_freq_ctr(&sv->sess_per_sec)), U2H(sv->counters.sps_max));
Willy Tarreau91861262007-10-17 17:06:05 +02002797
Willy Tarreau466c9b52012-12-23 02:25:03 +01002798
2799 chunk_appendf(&trash,
2800 /* sessions: current, max, limit, total */
2801 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002802 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002803 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
2804 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002805 U2H(sv->cur_sess), U2H(sv->counters.cur_sess_max), LIM2A(sv->maxconn, "-"),
2806 U2H(sv->counters.cum_sess),
2807 U2H(sv->counters.cum_sess));
Willy Tarreau91861262007-10-17 17:06:05 +02002808
Willy Tarreau466c9b52012-12-23 02:25:03 +01002809 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2810 if (px->mode == PR_MODE_HTTP) {
2811 unsigned long long tot;
2812 for (tot = i = 0; i < 6; i++)
2813 tot += sv->counters.p.http.rsp[i];
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002814
Willy Tarreau466c9b52012-12-23 02:25:03 +01002815 chunk_appendf(&trash,
2816 "<tr><th>Cum. HTTP responses:</th><td>%s</td></tr>"
2817 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2818 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2819 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2820 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2821 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2822 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2823 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002824 U2H(tot),
2825 U2H(sv->counters.p.http.rsp[1]), tot ? (int)(100*sv->counters.p.http.rsp[1] / tot) : 0,
2826 U2H(sv->counters.p.http.rsp[2]), tot ? (int)(100*sv->counters.p.http.rsp[2] / tot) : 0,
2827 U2H(sv->counters.p.http.rsp[3]), tot ? (int)(100*sv->counters.p.http.rsp[3] / tot) : 0,
2828 U2H(sv->counters.p.http.rsp[4]), tot ? (int)(100*sv->counters.p.http.rsp[4] / tot) : 0,
2829 U2H(sv->counters.p.http.rsp[5]), tot ? (int)(100*sv->counters.p.http.rsp[5] / tot) : 0,
2830 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 +02002831 }
Willy Tarreau91861262007-10-17 17:06:05 +02002832
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002833 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002834 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05002835 /* sessions: lbtot, last */
2836 "<td>%s</td><td>%s</td>",
2837 U2H(sv->counters.cum_lbconn),
2838 human_time(srv_lastsession(sv), 1));
Willy Tarreau91861262007-10-17 17:06:05 +02002839
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002840 chunk_appendf(&trash,
2841 /* bytes : in, out */
2842 "<td>%s</td><td>%s</td>"
2843 /* denied: req, resp */
2844 "<td></td><td>%s</td>"
2845 /* errors : request, connect */
2846 "<td></td><td>%s</td>"
2847 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002848 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002849 /* warnings: retries, redispatches */
2850 "<td>%lld</td><td>%lld</td>"
2851 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002852 U2H(sv->counters.bytes_in), U2H(sv->counters.bytes_out),
2853 U2H(sv->counters.failed_secu),
2854 U2H(sv->counters.failed_conns),
2855 U2H(sv->counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002856 sv->counters.cli_aborts,
2857 sv->counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002858 sv->counters.retries, sv->counters.redispatches);
2859
2860 /* status, lest check */
2861 chunk_appendf(&trash, "<td class=ac>");
2862
2863 if (sv->state & SRV_MAINTAIN) {
2864 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - sv->last_change, 1));
2865 chunk_appendf(&trash, "MAINT");
2866 }
2867 else if (ref != sv && ref->state & SRV_MAINTAIN) {
2868 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2869 chunk_appendf(&trash, "MAINT(via)");
2870 }
Willy Tarreauff5ae352013-12-11 20:36:34 +01002871 else if (ref->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002872 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2873 chunk_appendf(&trash,
2874 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002875 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2876 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreau55bb8452007-10-17 18:44:57 +02002877 }
Willy Tarreau91861262007-10-17 17:06:05 +02002878
Willy Tarreauff5ae352013-12-11 20:36:34 +01002879 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002880 chunk_appendf(&trash,
2881 "</td><td class=ac><u> %s%s",
Willy Tarreau2c115e52013-12-11 19:41:16 +01002882 (sv->check.state & CHK_ST_INPROGRESS) ? "* " : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002883 get_check_status_info(sv->check.status));
2884
2885 if (sv->check.status >= HCHK_STATUS_L57DATA)
2886 chunk_appendf(&trash, "/%d", sv->check.code);
2887
2888 if (sv->check.status >= HCHK_STATUS_CHECKED && sv->check.duration >= 0)
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002889 chunk_appendf(&trash, " in %lums", sv->check.duration);
2890
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002891 chunk_appendf(&trash, "<div class=tips>%s",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002892 get_check_status_description(sv->check.status));
2893 if (*sv->check.desc) {
2894 chunk_appendf(&trash, ": ");
2895 chunk_initlen(&src, sv->check.desc, 0, strlen(sv->check.desc));
2896 chunk_htmlencode(&trash, &src);
2897 }
2898 chunk_appendf(&trash, "</div></u>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002899 }
2900 else
2901 chunk_appendf(&trash, "</td><td>");
2902
2903 chunk_appendf(&trash,
2904 /* weight */
2905 "</td><td class=ac>%d</td>"
2906 /* act, bck */
2907 "<td class=ac>%s</td><td class=ac>%s</td>"
2908 "",
2909 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2910 (sv->state & SRV_BACKUP) ? "-" : "Y",
2911 (sv->state & SRV_BACKUP) ? "Y" : "-");
2912
2913 /* check failures: unique, fatal, down time */
Willy Tarreauff5ae352013-12-11 20:36:34 +01002914 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002915 chunk_appendf(&trash, "<td><u>%lld", ref->counters.failed_checks);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002916
2917 if (ref->observe)
2918 chunk_appendf(&trash, "/%lld", ref->counters.failed_hana);
2919
2920 chunk_appendf(&trash,
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002921 "<div class=tips>Failed Health Checks%s</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002922 "<td>%lld</td><td>%s</td>"
2923 "",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002924 ref->observe ? "/Health Analyses" : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002925 ref->counters.down_trans, human_time(srv_downtime(sv), 1));
2926 }
Willy Tarreauf4659942013-11-28 10:50:06 +01002927 else if (sv != ref) {
2928 if (sv->state & SRV_MAINTAIN)
2929 chunk_appendf(&trash,
2930 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\"><a></td>",
2931 ref->proxy->id, ref->id);
2932 else
2933 chunk_appendf(&trash,
2934 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
2935 ref->proxy->id, ref->id, ref->proxy->id, ref->id);
2936 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002937 else
2938 chunk_appendf(&trash, "<td colspan=3></td>");
2939
2940 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01002941 if (sv->state & SRV_WARMINGUP)
2942 chunk_appendf(&trash, "<td class=ac>%d %%</td></tr>\n", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002943 else
2944 chunk_appendf(&trash, "<td class=ac>-</td></tr>\n");
2945 }
2946 else { /* CSV mode */
Simon Horman8c3d0be2013-11-25 10:46:40 +09002947 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002948 "DOWN,",
2949 "DOWN %d/%d,",
2950 "UP %d/%d,",
2951 "UP,",
2952 "NOLB %d/%d,",
2953 "NOLB,",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002954 "DRAIN %d/%d,",
2955 "DRAIN,",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002956 "no check,"
2957 };
2958
2959 chunk_appendf(&trash,
2960 /* pxid, name */
2961 "%s,%s,"
2962 /* queue : current, max */
2963 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01002964 /* sessions : current, max, limit, total */
2965 "%d,%d,%s,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002966 /* bytes : in, out */
2967 "%lld,%lld,"
2968 /* denied: req, resp */
2969 ",%lld,"
2970 /* errors : request, connect, response */
2971 ",%lld,%lld,"
2972 /* warnings: retries, redispatches */
2973 "%lld,%lld,"
2974 "",
2975 px->id, sv->id,
2976 sv->nbpend, sv->counters.nbpend_max,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002977 sv->cur_sess, sv->counters.cur_sess_max, LIM2A(sv->maxconn, ""), sv->counters.cum_sess,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002978 sv->counters.bytes_in, sv->counters.bytes_out,
2979 sv->counters.failed_secu,
2980 sv->counters.failed_conns, sv->counters.failed_resp,
2981 sv->counters.retries, sv->counters.redispatches);
2982
2983 /* status */
2984 if (sv->state & SRV_MAINTAIN)
2985 chunk_appendf(&trash, "MAINT,");
2986 else if (ref != sv && ref->state & SRV_MAINTAIN)
2987 chunk_appendf(&trash, "MAINT(via),");
2988 else
2989 chunk_appendf(&trash,
2990 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002991 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2992 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002993
2994 chunk_appendf(&trash,
2995 /* weight, active, backup */
2996 "%d,%d,%d,"
2997 "",
2998 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2999 (sv->state & SRV_BACKUP) ? 0 : 1,
3000 (sv->state & SRV_BACKUP) ? 1 : 0);
3001
3002 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreauff5ae352013-12-11 20:36:34 +01003003 if (sv->check.state & CHK_ST_ENABLED)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003004 chunk_appendf(&trash,
3005 "%lld,%lld,%d,%d,",
3006 sv->counters.failed_checks, sv->counters.down_trans,
3007 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
3008 else
3009 chunk_appendf(&trash, ",,,,");
3010
3011 /* queue limit, pid, iid, sid, */
3012 chunk_appendf(&trash,
3013 "%s,"
3014 "%d,%d,%d,",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003015 LIM2A(sv->maxqueue, ""),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003016 relative_pid, px->uuid, sv->puid);
3017
3018 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01003019 if (sv->state & SRV_WARMINGUP)
3020 chunk_appendf(&trash, "%d", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003021
3022 /* sessions: lbtot */
3023 chunk_appendf(&trash, ",%lld,", sv->counters.cum_lbconn);
3024
3025 /* tracked */
3026 if (sv->track)
3027 chunk_appendf(&trash, "%s/%s,",
3028 sv->track->proxy->id, sv->track->id);
3029 else
3030 chunk_appendf(&trash, ",");
3031
3032 /* type */
3033 chunk_appendf(&trash, "%d,", STATS_TYPE_SV);
3034
3035 /* rate */
3036 chunk_appendf(&trash, "%u,,%u,",
3037 read_freq_ctr(&sv->sess_per_sec),
3038 sv->counters.sps_max);
3039
Willy Tarreauff5ae352013-12-11 20:36:34 +01003040 if (sv->check.state & CHK_ST_ENABLED) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003041 /* check_status */
3042 chunk_appendf(&trash, "%s,", get_check_status_info(sv->check.status));
3043
3044 /* check_code */
3045 if (sv->check.status >= HCHK_STATUS_L57DATA)
3046 chunk_appendf(&trash, "%u,", sv->check.code);
3047 else
3048 chunk_appendf(&trash, ",");
3049
3050 /* check_duration */
3051 if (sv->check.status >= HCHK_STATUS_CHECKED)
3052 chunk_appendf(&trash, "%lu,", sv->check.duration);
3053 else
3054 chunk_appendf(&trash, ",");
3055
3056 }
3057 else
3058 chunk_appendf(&trash, ",,,");
3059
3060 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3061 if (px->mode == PR_MODE_HTTP) {
3062 for (i=1; i<6; i++)
3063 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[i]);
3064
3065 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[0]);
3066 }
3067 else
3068 chunk_appendf(&trash, ",,,,,,");
3069
3070 /* failed health analyses */
3071 chunk_appendf(&trash, "%lld,", sv->counters.failed_hana);
3072
3073 /* requests : req_rate, req_rate_max, req_tot, */
3074 chunk_appendf(&trash, ",,,");
3075
3076 /* errors: cli_aborts, srv_aborts */
3077 chunk_appendf(&trash, "%lld,%lld,",
3078 sv->counters.cli_aborts, sv->counters.srv_aborts);
3079
3080 /* compression: in, out, bypassed, comp_rsp */
3081 chunk_appendf(&trash, ",,,,");
3082
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003083 /* lastsess */
3084 chunk_appendf(&trash, "%d,", srv_lastsession(sv));
3085
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003086 /* finish with EOL */
3087 chunk_appendf(&trash, "\n");
3088 }
3089 return 1;
3090}
3091
3092/* Dumps a line for backend <px> to the trash for and uses the state from stream
3093 * interface <si> and stats flags <flags>. The caller is responsible for clearing
3094 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
3095 */
3096static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px, int flags)
3097{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003098 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003099 struct chunk src;
3100 int i;
3101
3102 if (!(px->cap & PR_CAP_BE))
3103 return 0;
3104
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003105 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_BE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003106 return 0;
3107
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003108 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003109 chunk_appendf(&trash, "<tr class=\"backend\">");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003110 if (px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003111 /* Column sub-heading for Enable or Disable server */
3112 chunk_appendf(&trash, "<td></td>");
3113 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003114 chunk_appendf(&trash,
3115 "<td class=ac>"
3116 /* name */
3117 "%s<a name=\"%s/Backend\"></a>"
3118 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
3119 "",
3120 (flags & ST_SHLGNDS)?"<u>":"",
3121 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003122
3123 if (flags & ST_SHLGNDS) {
3124 /* balancing */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003125 chunk_appendf(&trash, "<div class=tips>balancing: %s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003126 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
3127
3128 /* cookie */
3129 if (px->cookie_name) {
3130 chunk_appendf(&trash, ", cookie: '");
3131 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
3132 chunk_htmlencode(&trash, &src);
3133 chunk_appendf(&trash, "'");
3134 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003135 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003136 }
3137
3138 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003139 "%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003140 /* queue : current, max */
3141 "<td>%s</td><td>%s</td><td></td>"
3142 /* sessions rate : current, max, limit */
3143 "<td>%s</td><td>%s</td><td></td>"
3144 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003145 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003146 U2H(px->nbpend) /* or px->totpend ? */, U2H(px->be_counters.nbpend_max),
3147 U2H(read_freq_ctr(&px->be_sess_per_sec)), U2H(px->be_counters.sps_max));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003148
3149 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003150 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003151 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003152 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003153 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003154 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003155 U2H(px->beconn), U2H(px->be_counters.conn_max), U2H(px->fullconn),
3156 U2H(px->be_counters.cum_conn),
3157 U2H(px->be_counters.cum_conn));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003158
Willy Tarreau466c9b52012-12-23 02:25:03 +01003159 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003160 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01003161 chunk_appendf(&trash,
3162 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
3163 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
3164 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
3165 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
3166 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
3167 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
3168 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
3169 "<tr><th>- other responses:</th><td>%s</td></tr>"
3170 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
3171 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003172 U2H(px->be_counters.p.http.cum_req),
3173 U2H(px->be_counters.p.http.rsp[1]),
3174 U2H(px->be_counters.p.http.rsp[2]),
3175 U2H(px->be_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003176 px->be_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01003177 (int)(100*px->be_counters.p.http.comp_rsp/px->be_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01003178 U2H(px->be_counters.p.http.rsp[3]),
3179 U2H(px->be_counters.p.http.rsp[4]),
3180 U2H(px->be_counters.p.http.rsp[5]),
3181 U2H(px->be_counters.p.http.rsp[0]),
3182 U2H(px->be_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003183 }
3184
3185 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01003186 "</table></div></u></td>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003187 /* sessions: lbtot, last */
3188 "<td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003189 /* bytes: in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003190 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003191 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003192 U2H(px->be_counters.cum_lbconn),
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003193 human_time(be_lastsession(px), 1),
Willy Tarreau56adcf22012-12-23 18:00:29 +01003194 U2H(px->be_counters.bytes_in));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003195
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003196 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003197 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003198 "<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 +01003199 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003200 U2H(px->be_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003201 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp,
3202 px->be_counters.comp_in ?
3203 (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 +01003204 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "</u>":"");
3205
3206 chunk_appendf(&trash,
3207 /* denied: req, resp */
3208 "<td>%s</td><td>%s</td>"
3209 /* errors : request, connect */
3210 "<td></td><td>%s</td>"
3211 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003212 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003213 /* warnings: retries, redispatches */
3214 "<td>%lld</td><td>%lld</td>"
3215 /* backend status: reflect backend status (up/down): we display UP
3216 * if the backend has known working servers or if it has no server at
3217 * all (eg: for stats). Then we display the total weight, number of
3218 * active and backups. */
3219 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
3220 "<td class=ac>%d</td><td class=ac>%d</td>"
3221 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003222 U2H(px->be_counters.denied_req), U2H(px->be_counters.denied_resp),
3223 U2H(px->be_counters.failed_conns),
3224 U2H(px->be_counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003225 px->be_counters.cli_aborts,
3226 px->be_counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003227 px->be_counters.retries, px->be_counters.redispatches,
3228 human_time(now.tv_sec - px->last_change, 1),
3229 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
3230 "<font color=\"red\"><b>DOWN</b></font>",
3231 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3232 px->srv_act, px->srv_bck);
3233
3234 chunk_appendf(&trash,
3235 /* rest of backend: nothing, down transitions, total downtime, throttle */
3236 "<td class=ac>&nbsp;</td><td>%d</td>"
3237 "<td>%s</td>"
3238 "<td></td>"
3239 "</tr>",
3240 px->down_trans,
3241 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
3242 }
3243 else { /* CSV mode */
3244 chunk_appendf(&trash,
3245 /* pxid, name */
3246 "%s,BACKEND,"
3247 /* queue : current, max */
3248 "%d,%d,"
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003249 /* sessions : current, max, limit, total */
3250 "%d,%d,%d,%lld,"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003251 /* bytes : in, out */
3252 "%lld,%lld,"
3253 /* denied: req, resp */
3254 "%lld,%lld,"
3255 /* errors : request, connect, response */
3256 ",%lld,%lld,"
3257 /* warnings: retries, redispatches */
3258 "%lld,%lld,"
3259 /* backend status: reflect backend status (up/down): we display UP
3260 * if the backend has known working servers or if it has no server at
3261 * all (eg: for stats). Then we display the total weight, number of
3262 * active and backups. */
3263 "%s,"
3264 "%d,%d,%d,"
3265 /* rest of backend: nothing, down transitions, last change, total downtime */
3266 ",%d,%d,%d,,"
3267 /* pid, iid, sid, throttle, lbtot, tracked, type */
3268 "%d,%d,0,,%lld,,%d,"
3269 /* rate, rate_lim, rate_max, */
3270 "%u,,%u,"
3271 /* check_status, check_code, check_duration */
3272 ",,,",
3273 px->id,
3274 px->nbpend /* or px->totpend ? */, px->be_counters.nbpend_max,
3275 px->beconn, px->be_counters.conn_max, px->fullconn, px->be_counters.cum_conn,
3276 px->be_counters.bytes_in, px->be_counters.bytes_out,
3277 px->be_counters.denied_req, px->be_counters.denied_resp,
3278 px->be_counters.failed_conns, px->be_counters.failed_resp,
3279 px->be_counters.retries, px->be_counters.redispatches,
3280 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
3281 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3282 px->srv_act, px->srv_bck,
3283 px->down_trans, (int)(now.tv_sec - px->last_change),
3284 px->srv?be_downtime(px):0,
3285 relative_pid, px->uuid,
3286 px->be_counters.cum_lbconn, STATS_TYPE_BE,
3287 read_freq_ctr(&px->be_sess_per_sec),
3288 px->be_counters.sps_max);
3289
3290 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3291 if (px->mode == PR_MODE_HTTP) {
3292 for (i=1; i<6; i++)
3293 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[i]);
3294 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[0]);
3295 }
3296 else
3297 chunk_appendf(&trash, ",,,,,,");
3298
3299 /* failed health analyses */
3300 chunk_appendf(&trash, ",");
3301
3302 /* requests : req_rate, req_rate_max, req_tot, */
3303 chunk_appendf(&trash, ",,,");
3304
3305 /* errors: cli_aborts, srv_aborts */
3306 chunk_appendf(&trash, "%lld,%lld,",
3307 px->be_counters.cli_aborts, px->be_counters.srv_aborts);
3308
3309 /* compression: in, out, bypassed */
3310 chunk_appendf(&trash, "%lld,%lld,%lld,",
3311 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp);
3312
3313 /* compression: comp_rsp */
3314 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.comp_rsp);
3315
Willy Tarreauf522f3d2014-02-10 22:22:49 +01003316 /* lastsess */
3317 chunk_appendf(&trash, "%d,", be_lastsession(px));
3318
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003319 /* finish with EOL */
3320 chunk_appendf(&trash, "\n");
3321 }
3322 return 1;
3323}
3324
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003325/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003326 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003327 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003328 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003329static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003330{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003331 struct appctx *appctx = __objt_appctx(si->end);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003332 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
3333
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003334 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003335 /* A form to enable/disable this proxy servers */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003336
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003337 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003338 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003339 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003340 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003341 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3342 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003343 }
3344
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003345 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003346 "<form action=\"%s%s%s%s\" method=\"post\">",
3347 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003348 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3349 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003350 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003351 }
3352
3353 /* print a new table */
3354 chunk_appendf(&trash,
3355 "<table class=\"tbl\" width=\"100%%\">\n"
3356 "<tr class=\"titre\">"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003357 "<th class=\"pxname\" width=\"10%%\">");
3358
3359 chunk_appendf(&trash,
3360 "<a name=\"%s\"></a>%s"
3361 "<a class=px href=\"#%s\">%s</a>",
3362 px->id,
3363 (uri->flags & ST_SHLGNDS) ? "<u>":"",
3364 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003365
3366 if (uri->flags & ST_SHLGNDS) {
3367 /* cap, mode, id */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003368 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003369 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
3370 px->uuid);
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003371 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003372 }
3373
3374 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003375 "%s</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003376 "<th class=\"%s\" width=\"90%%\">%s</th>"
3377 "</tr>\n"
3378 "</table>\n"
3379 "<table class=\"tbl\" width=\"100%%\">\n"
3380 "<tr class=\"titre\">",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003381 (uri->flags & ST_SHLGNDS) ? "</u>":"",
3382 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
3383
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003384 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003385 /* Column heading for Enable or Disable server */
3386 chunk_appendf(&trash, "<th rowspan=2 width=1></th>");
Willy Tarreau91861262007-10-17 17:06:05 +02003387 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003388
3389 chunk_appendf(&trash,
3390 "<th rowspan=2></th>"
3391 "<th colspan=3>Queue</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003392 "<th colspan=3>Session rate</th><th colspan=6>Sessions</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003393 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
3394 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
3395 "<th colspan=9>Server</th>"
3396 "</tr>\n"
3397 "<tr class=\"titre\">"
3398 "<th>Cur</th><th>Max</th><th>Limit</th>"
3399 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -05003400 "<th>Limit</th><th>Total</th><th>LbTot</th><th>Last</th><th>In</th><th>Out</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003401 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
3402 "<th>Resp</th><th>Retr</th><th>Redis</th>"
3403 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
3404 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
3405 "<th>Thrtle</th>\n"
3406 "</tr>");
Willy Tarreau91861262007-10-17 17:06:05 +02003407}
3408
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003409/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003410 * stream interface <si>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003411 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003412static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003413{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003414 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003415 chunk_appendf(&trash, "</table>");
3416
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003417 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003418 /* close the form used to enable/disable this proxy servers */
3419 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003420 "Choose the action to perform on the checked servers : "
3421 "<select name=action>"
3422 "<option value=\"\"></option>"
3423 "<option value=\"disable\">Disable</option>"
3424 "<option value=\"enable\">Enable</option>"
3425 "<option value=\"stop\">Soft Stop</option>"
3426 "<option value=\"start\">Soft Start</option>"
3427 "<option value=\"shutdown\">Kill Sessions</option>"
3428 "</select>"
3429 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
3430 "&nbsp;<input type=\"submit\" value=\"Apply\">"
3431 "</form>",
3432 px->uuid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003433 }
3434
3435 chunk_appendf(&trash, "<p>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003436}
Willy Tarreau91861262007-10-17 17:06:05 +02003437
3438/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003439 * Dumps statistics for a proxy. The output is sent to the stream interface's
3440 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3441 * buffer space, or non-zero if everything completed. This function is used
3442 * both by the CLI and the HTTP entry points, and is able to dump the output
3443 * in HTML or CSV formats. If the later, <uri> must be NULL.
Willy Tarreau91861262007-10-17 17:06:05 +02003444 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003445static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02003446{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003447 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02003448 struct session *s = session_from_task(si->owner);
Willy Tarreau7421efb2012-07-02 15:11:27 +02003449 struct channel *rep = si->ib;
Willy Tarreau44267702011-10-28 15:35:33 +02003450 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003451 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02003452
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003453 chunk_reset(&trash);
Willy Tarreau91861262007-10-17 17:06:05 +02003454
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003455 switch (appctx->ctx.stats.px_st) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003456 case STAT_PX_ST_INIT:
Willy Tarreau91861262007-10-17 17:06:05 +02003457 /* we are on a new proxy */
Willy Tarreau91861262007-10-17 17:06:05 +02003458 if (uri && uri->scope) {
3459 /* we have a limited scope, we have to check the proxy name */
3460 struct stat_scope *scope;
3461 int len;
3462
3463 len = strlen(px->id);
3464 scope = uri->scope;
3465
3466 while (scope) {
3467 /* match exact proxy name */
3468 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3469 break;
3470
3471 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02003472 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02003473 break;
3474 scope = scope->next;
3475 }
3476
3477 /* proxy name not found : don't dump anything */
3478 if (scope == NULL)
3479 return 1;
3480 }
3481
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003482 /* if the user has requested a limited output and the proxy
3483 * name does not match, skip it.
3484 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003485 if (appctx->ctx.stats.scope_len &&
3486 strnistr(px->id, strlen(px->id), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len) == NULL)
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003487 return 1;
3488
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003489 if ((appctx->ctx.stats.flags & STAT_BOUND) &&
3490 (appctx->ctx.stats.iid != -1) &&
3491 (px->uuid != appctx->ctx.stats.iid))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003492 return 1;
3493
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003494 appctx->ctx.stats.px_st = STAT_PX_ST_TH;
Willy Tarreau91861262007-10-17 17:06:05 +02003495 /* fall through */
3496
Willy Tarreau295a8372011-03-10 11:25:07 +01003497 case STAT_PX_ST_TH:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003498 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003499 stats_dump_html_px_hdr(si, px, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003500 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau55bb8452007-10-17 18:44:57 +02003501 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003502 }
Willy Tarreau91861262007-10-17 17:06:05 +02003503
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003504 appctx->ctx.stats.px_st = STAT_PX_ST_FE;
Willy Tarreau91861262007-10-17 17:06:05 +02003505 /* fall through */
3506
Willy Tarreau295a8372011-03-10 11:25:07 +01003507 case STAT_PX_ST_FE:
Willy Tarreau91861262007-10-17 17:06:05 +02003508 /* print the frontend */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003509 if (stats_dump_fe_stats(si, px))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003510 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003511 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02003512
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003513 appctx->ctx.stats.l = px->conf.listeners.n;
3514 appctx->ctx.stats.px_st = STAT_PX_ST_LI;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003515 /* fall through */
3516
Willy Tarreau295a8372011-03-10 11:25:07 +01003517 case STAT_PX_ST_LI:
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003518 /* stats.l has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003519 for (; appctx->ctx.stats.l != &px->conf.listeners; appctx->ctx.stats.l = l->by_fe.n) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003520 if (buffer_almost_full(rep->buf)) {
3521 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003522 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003523 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003524
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003525 l = LIST_ELEM(appctx->ctx.stats.l, struct listener *, by_fe);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003526 if (!l->counters)
3527 continue;
3528
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003529 if (appctx->ctx.stats.flags & STAT_BOUND) {
3530 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SO)))
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003531 break;
3532
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003533 if (appctx->ctx.stats.sid != -1 && l->luid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003534 continue;
3535 }
3536
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003537 /* print the frontend */
3538 if (stats_dump_li_stats(si, px, l, uri ? uri->flags : 0))
3539 if (bi_putchk(rep, &trash) == -1)
3540 return 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003541 }
3542
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003543 appctx->ctx.stats.sv = px->srv; /* may be NULL */
3544 appctx->ctx.stats.px_st = STAT_PX_ST_SV;
Willy Tarreau91861262007-10-17 17:06:05 +02003545 /* fall through */
3546
Willy Tarreau295a8372011-03-10 11:25:07 +01003547 case STAT_PX_ST_SV:
Willy Tarreau91861262007-10-17 17:06:05 +02003548 /* stats.sv has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003549 for (; appctx->ctx.stats.sv != NULL; appctx->ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01003550 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 +02003551
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003552 if (buffer_almost_full(rep->buf)) {
3553 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau4e33d862009-10-11 23:35:10 +02003554 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01003555 }
Willy Tarreau4e33d862009-10-11 23:35:10 +02003556
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003557 sv = appctx->ctx.stats.sv;
Willy Tarreau91861262007-10-17 17:06:05 +02003558
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003559 if (appctx->ctx.stats.flags & STAT_BOUND) {
3560 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SV)))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003561 break;
3562
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003563 if (appctx->ctx.stats.sid != -1 && sv->puid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003564 continue;
3565 }
3566
Willy Tarreau44267702011-10-28 15:35:33 +02003567 if (sv->track)
3568 svs = sv->track;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003569 else
3570 svs = sv;
3571
Willy Tarreau91861262007-10-17 17:06:05 +02003572 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Willy Tarreauff5ae352013-12-11 20:36:34 +01003573 if (!(svs->check.state & CHK_ST_ENABLED))
Simon Horman8c3d0be2013-11-25 10:46:40 +09003574 sv_state = 8;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003575 else if (svs->state & SRV_RUNNING) {
Simon Horman58c32972013-11-25 10:46:38 +09003576 if (svs->check.health == svs->check.rise + svs->check.fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02003577 sv_state = 3; /* UP */
3578 else
3579 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01003580
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003581 if (svs->state & SRV_DRAIN)
Simon Horman8c3d0be2013-11-25 10:46:40 +09003582 sv_state += 4;
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003583 else if (svs->state & SRV_GOINGDOWN)
3584 sv_state += 2;
Willy Tarreau2ea81932007-11-30 12:04:38 +01003585 }
Willy Tarreau91861262007-10-17 17:06:05 +02003586 else
Simon Horman125d0992013-02-24 17:23:38 +09003587 if (svs->check.health)
Willy Tarreau91861262007-10-17 17:06:05 +02003588 sv_state = 1; /* going up */
3589 else
3590 sv_state = 0; /* DOWN */
3591
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003592 if (((sv_state == 0) || (sv->state & SRV_MAINTAIN)) && (appctx->ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02003593 /* do not report servers which are DOWN */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003594 appctx->ctx.stats.sv = sv->next;
Willy Tarreau91861262007-10-17 17:06:05 +02003595 continue;
3596 }
3597
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003598 if (stats_dump_sv_stats(si, px, uri ? uri->flags : 0, sv, sv_state))
3599 if (bi_putchk(rep, &trash) == -1)
3600 return 0;
3601 } /* for sv */
Cyril Bonté474be412010-10-12 00:14:36 +02003602
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003603 appctx->ctx.stats.px_st = STAT_PX_ST_BE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003604 /* fall through */
Cyril Bonté70be45d2010-10-12 00:14:35 +02003605
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003606 case STAT_PX_ST_BE:
3607 /* print the backend */
3608 if (stats_dump_be_stats(si, px, uri ? uri->flags : 0))
3609 if (bi_putchk(rep, &trash) == -1)
3610 return 0;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003611
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003612 appctx->ctx.stats.px_st = STAT_PX_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003613 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003614
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003615 case STAT_PX_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003616 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003617 stats_dump_html_px_end(si, px);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003618 if (bi_putchk(rep, &trash) == -1)
3619 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003620 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003621
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003622 appctx->ctx.stats.px_st = STAT_PX_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003623 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003624
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003625 case STAT_PX_ST_FIN:
3626 return 1;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003627
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003628 default:
3629 /* unknown state, we should put an abort() here ! */
3630 return 1;
3631 }
3632}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003633
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003634/* Dumps the HTTP stats head block to the trash for and uses the per-uri
3635 * parameters <uri>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003636 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003637static void stats_dump_html_head(struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003638{
3639 /* WARNING! This must fit in the first buffer !!! */
3640 chunk_appendf(&trash,
3641 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3642 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3643 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3644 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3645 "<style type=\"text/css\"><!--\n"
3646 "body {"
3647 " font-family: arial, helvetica, sans-serif;"
3648 " font-size: 12px;"
3649 " font-weight: normal;"
3650 " color: black;"
3651 " background: white;"
3652 "}\n"
3653 "th,td {"
3654 " font-size: 10px;"
3655 "}\n"
3656 "h1 {"
3657 " font-size: x-large;"
3658 " margin-bottom: 0.5em;"
3659 "}\n"
3660 "h2 {"
3661 " font-family: helvetica, arial;"
3662 " font-size: x-large;"
3663 " font-weight: bold;"
3664 " font-style: italic;"
3665 " color: #6020a0;"
3666 " margin-top: 0em;"
3667 " margin-bottom: 0em;"
3668 "}\n"
3669 "h3 {"
3670 " font-family: helvetica, arial;"
3671 " font-size: 16px;"
3672 " font-weight: bold;"
3673 " color: #b00040;"
3674 " background: #e8e8d0;"
3675 " margin-top: 0em;"
3676 " margin-bottom: 0em;"
3677 "}\n"
3678 "li {"
3679 " margin-top: 0.25em;"
3680 " margin-right: 2em;"
3681 "}\n"
3682 ".hr {margin-top: 0.25em;"
3683 " border-color: black;"
3684 " border-bottom-style: solid;"
3685 "}\n"
3686 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3687 ".total {background: #20D0D0;color: #ffff80;}\n"
3688 ".frontend {background: #e8e8d0;}\n"
3689 ".socket {background: #d0d0d0;}\n"
3690 ".backend {background: #e8e8d0;}\n"
3691 ".active0 {background: #ff9090;}\n"
3692 ".active1 {background: #ffd020;}\n"
3693 ".active2 {background: #ffffa0;}\n"
3694 ".active3 {background: #c0ffc0;}\n"
3695 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003696 ".active5 {background: #20a0ff;}\n" /* NOLB state shows different to be detected */
3697 ".active6 {background: #ffffa0;}\n" /* DRAIN going down = same as going down */
3698 ".active7 {background: #20a0FF;}\n" /* DRAIN must be detected (weight=0) */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003699 ".active8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003700 ".backup0 {background: #ff9090;}\n"
3701 ".backup1 {background: #ff80ff;}\n"
3702 ".backup2 {background: #c060ff;}\n"
3703 ".backup3 {background: #b0d0ff;}\n"
3704 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
3705 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003706 ".backup6 {background: #c060ff;}\n"
3707 ".backup7 {background: #cc9900;}\n"
3708 ".backup8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003709 ".maintain {background: #c07820;}\n"
3710 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3711 "\n"
3712 "a.px:link {color: #ffff40; text-decoration: none;}"
3713 "a.px:visited {color: #ffff40; text-decoration: none;}"
3714 "a.px:hover {color: #ffffff; text-decoration: none;}"
3715 "a.lfsb:link {color: #000000; text-decoration: none;}"
3716 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3717 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3718 "\n"
3719 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3720 "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"
3721 "table.tbl td.ac { text-align: center;}\n"
3722 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3723 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3724 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3725 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3726 "\n"
3727 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3728 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3729 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003730 "table.det { border-collapse: collapse; border-style: none; }\n"
3731 "table.det th { text-align: left; border-width: 0px; padding: 0px 1px 0px 0px; font-style:normal;font-size:11px;font-weight:bold;font-family: sans-serif;}\n"
Willy Tarreau6b9d3a82013-12-16 09:00:35 +01003732 "table.det td { text-align: right; border-width: 0px; padding: 0px 0px 0px 4px; white-space: nowrap; font-style:normal;font-size:11px;font-weight:normal;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003733 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003734 "div.tips {\n"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003735 " display:block;\n"
3736 " visibility:hidden;\n"
3737 " z-index:2147483647;\n"
3738 " position:absolute;\n"
3739 " padding:2px 4px 3px;\n"
3740 " background:#f0f060; color:#000000;\n"
3741 " border:1px solid #7040c0;\n"
3742 " white-space:nowrap;\n"
3743 " font-style:normal;font-size:11px;font-weight:normal;\n"
3744 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3745 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3746 "}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003747 "u:hover div.tips {visibility:visible;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003748 "-->\n"
3749 "</style></head>\n",
3750 (uri->flags & ST_SHNODE) ? " on " : "",
3751 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
3752 );
3753}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003754
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003755/* Dumps the HTML stats information block to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003756 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003757 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003758 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003759static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003760{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003761 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003762 unsigned int up = (now.tv_sec - start_date.tv_sec);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003763 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003764
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003765 /* WARNING! this has to fit the first packet too.
3766 * We are around 3.5 kB, add adding entries will
3767 * become tricky if we want to support 4kB buffers !
3768 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003769 chunk_appendf(&trash,
3770 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3771 PRODUCT_NAME "%s</a></h1>\n"
3772 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3773 "<hr width=\"100%%\" class=\"hr\">\n"
3774 "<h3>&gt; General process information</h3>\n"
3775 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
3776 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
3777 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3778 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3779 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
3780 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec<br>\n"
3781 "Running tasks: %d/%d; idle = %d %%<br>\n"
3782 "</td><td align=\"center\" nowrap>\n"
3783 "<table class=\"lgd\"><tr>\n"
3784 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
3785 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
3786 "</tr><tr>\n"
3787 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
3788 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
3789 "</tr><tr>\n"
3790 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
3791 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3792 "</tr><tr>\n"
3793 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Simon Horman8c3d0be2013-11-25 10:46:40 +09003794 "</tr><tr>\n"
3795 "<td class=\"active8\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003796 "</tr><tr>\n"
3797 "<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 -07003798 "</tr><tr>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003799 "<td class=\"active7\"></td><td class=\"noborder\" colspan=\"3\">active or backup SOFT STOPPED for maintenance &nbsp;</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003800 "</tr></table>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003801 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003802 "</td>"
3803 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3804 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3805 "",
3806 (uri->flags & ST_HIDEVER) ? "" : (STATS_VERSION_STRING),
3807 pid, (uri->flags & ST_SHNODE) ? " on " : "",
3808 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3809 (uri->flags & ST_SHDESC) ? ": " : "",
3810 (uri->flags & ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
3811 pid, relative_pid, global.nbproc,
3812 up / 86400, (up % 86400) / 3600,
3813 (up % 3600) / 60, (up % 60),
3814 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3815 global.rlimit_memmax ? " MB" : "",
3816 global.rlimit_nofile,
3817 global.maxsock, global.maxconn, global.maxpipes,
3818 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
3819 run_queue_cur, nb_tasks_cur, idle_pct
3820 );
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003821
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003822 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3823 memcpy(scope_txt, bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3824 scope_txt[appctx->ctx.stats.scope_len] = '\0';
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003825
3826 chunk_appendf(&trash,
Cyril Bonté54656842013-04-18 22:38:35 +02003827 "<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 +02003828 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003829 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3830 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3831 (appctx->ctx.stats.scope_len > 0) ? scope_txt : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003832 STAT_SCOPE_TXT_MAXLEN);
3833
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003834 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003835 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003836 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003837 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003838 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3839 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003840 }
3841
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003842 if (appctx->ctx.stats.flags & STAT_HIDE_DOWN)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003843 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003844 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003845 uri->uri_prefix,
3846 "",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003847 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003848 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003849 else
3850 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003851 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003852 uri->uri_prefix,
3853 ";up",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003854 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003855 scope_txt);
Willy Tarreau91861262007-10-17 17:06:05 +02003856
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003857 if (uri->refresh > 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003858 if (appctx->ctx.stats.flags & STAT_NO_REFRESH)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003859 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003860 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003861 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003862 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003863 "",
3864 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003865 else
3866 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003867 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003868 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003869 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003870 ";norefresh",
3871 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003872 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02003873
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003874 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003875 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003876 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003877 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3878 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003879 scope_txt);
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02003880
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003881 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003882 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003883 uri->uri_prefix,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003884 (uri->refresh > 0) ? ";norefresh" : "",
3885 scope_txt);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003886
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003887 chunk_appendf(&trash,
3888 "</ul></td>"
3889 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3890 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3891 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3892 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3893 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3894 "</ul>"
3895 "</td>"
3896 "</tr></table>\n"
3897 ""
3898 );
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003899
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003900 if (appctx->ctx.stats.st_code) {
3901 switch (appctx->ctx.stats.st_code) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003902 case STAT_STATUS_DONE:
3903 chunk_appendf(&trash,
3904 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003905 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003906 "Action processed successfully."
Willy Tarreauba6be982013-04-19 12:16:55 +02003907 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003908 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3909 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003910 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003911 break;
3912 case STAT_STATUS_NONE:
3913 chunk_appendf(&trash,
3914 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003915 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003916 "Nothing has changed."
Willy Tarreauba6be982013-04-19 12:16:55 +02003917 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003918 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3919 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003920 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003921 break;
3922 case STAT_STATUS_PART:
3923 chunk_appendf(&trash,
3924 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003925 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003926 "Action partially processed.<br>"
3927 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
Willy Tarreauba6be982013-04-19 12:16:55 +02003928 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003929 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3930 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003931 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003932 break;
3933 case STAT_STATUS_ERRP:
3934 chunk_appendf(&trash,
3935 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003936 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003937 "Action not processed because of invalid parameters."
3938 "<ul>"
3939 "<li>The action is maybe unknown.</li>"
3940 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3941 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3942 "</ul>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003943 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003944 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3945 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003946 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003947 break;
3948 case STAT_STATUS_EXCD:
3949 chunk_appendf(&trash,
3950 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003951 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003952 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3953 "You should retry with less servers at a time.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003954 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003955 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3956 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003957 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003958 break;
3959 case STAT_STATUS_DENY:
3960 chunk_appendf(&trash,
3961 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003962 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003963 "<b>Action denied.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003964 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003965 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3966 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003967 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003968 break;
3969 default:
3970 chunk_appendf(&trash,
Simon Horman8c3d0be2013-11-25 10:46:40 +09003971 "<p><div class=active8>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003972 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003973 "Unexpected result."
Willy Tarreauba6be982013-04-19 12:16:55 +02003974 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003975 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3976 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003977 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003978 }
3979 chunk_appendf(&trash, "<p>\n");
3980 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003981}
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003982
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003983/* Dumps the HTML stats trailer block to the trash. The caller is responsible
3984 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003985 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003986static void stats_dump_html_end()
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003987{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003988 chunk_appendf(&trash, "</body></html>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003989}
Willy Tarreau7f062c42009-03-05 18:43:00 +01003990
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003991/* This function dumps statistics onto the stream interface's read buffer in
3992 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
Willy Tarreau306f8302013-07-08 15:53:06 +02003993 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
3994 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
3995 * and the session must be closed, or -1 in case of any error. This function is
3996 * used by both the CLI and the HTTP handlers.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003997 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003998static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003999{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004000 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004001 struct channel *rep = si->ib;
4002 struct proxy *px;
Willy Tarreau7f062c42009-03-05 18:43:00 +01004003
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004004 chunk_reset(&trash);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02004005
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004006 switch (appctx->st2) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004007 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004008 appctx->st2 = STAT_ST_HEAD; /* let's start producing data */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004009 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004010
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004011 case STAT_ST_HEAD:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004012 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004013 stats_dump_html_head(uri);
Willy Tarreau354898b2012-12-23 18:15:23 +01004014 else
4015 stats_dump_csv_header();
Willy Tarreaud9b587f2010-02-26 10:05:55 +01004016
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004017 if (bi_putchk(rep, &trash) == -1)
4018 return 0;
Willy Tarreauae526782010-03-04 20:34:23 +01004019
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004020 appctx->st2 = STAT_ST_INFO;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004021 /* fall through */
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004022
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004023 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004024 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004025 stats_dump_html_info(si, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004026 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02004027 return 0;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004028 }
Willy Tarreau91861262007-10-17 17:06:05 +02004029
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004030 appctx->ctx.stats.px = proxy;
4031 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
4032 appctx->st2 = STAT_ST_LIST;
Willy Tarreau91861262007-10-17 17:06:05 +02004033 /* fall through */
4034
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004035 case STAT_ST_LIST:
4036 /* dump proxies */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004037 while (appctx->ctx.stats.px) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01004038 if (buffer_almost_full(rep->buf)) {
4039 rep->flags |= CF_WAKE_WRITE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004040 return 0;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01004041 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004042
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004043 px = appctx->ctx.stats.px;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004044 /* skip the disabled proxies, global frontend and non-networked ones */
4045 if (px->state != PR_STSTOPPED && px->uuid > 0 && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004046 if (stats_dump_proxy_to_buffer(si, px, uri) == 0)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004047 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004048
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004049 appctx->ctx.stats.px = px->next;
4050 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004051 }
4052 /* here, we just have reached the last proxy */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004053
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004054 appctx->st2 = STAT_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004055 /* fall through */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004056
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004057 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004058 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01004059 stats_dump_html_end();
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004060 if (bi_putchk(rep, &trash) == -1)
4061 return 0;
4062 }
Willy Tarreau55058a72012-11-21 08:27:21 +01004063
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004064 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004065 /* fall through */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02004066
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004067 case STAT_ST_FIN:
4068 return 1;
Willy Tarreau55058a72012-11-21 08:27:21 +01004069
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004070 default:
4071 /* unknown state ! */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004072 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004073 return -1;
4074 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004075}
Willy Tarreauae526782010-03-04 20:34:23 +01004076
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004077/* We reached the stats page through a POST request. The appctx is
4078 * expected to have already been allocated by the caller.
Willy Tarreau347a35d2013-11-22 17:51:09 +01004079 * Parse the posted data and enable/disable servers if necessary.
4080 * Returns 1 if request was parsed or zero if it needs more data.
4081 */
4082static int stats_process_http_post(struct stream_interface *si)
4083{
4084 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004085 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004086
4087 struct proxy *px = NULL;
4088 struct server *sv = NULL;
4089
4090 char key[LINESIZE];
4091 int action = ST_ADM_ACTION_NONE;
4092 int reprocess = 0;
4093
4094 int total_servers = 0;
4095 int altered_servers = 0;
4096
4097 char *first_param, *cur_param, *next_param, *end_params;
4098 char *st_cur_param = NULL;
4099 char *st_next_param = NULL;
4100
4101 struct chunk *temp;
4102 int reql;
4103
4104 temp = get_trash_chunk();
4105 if (temp->size < s->txn.req.body_len) {
4106 /* too large request */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004107 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004108 goto out;
4109 }
4110
4111 reql = bo_getblk(si->ob, temp->str, s->txn.req.body_len, s->txn.req.eoh + 2);
4112 if (reql <= 0) {
4113 /* we need more data */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004114 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004115 return 0;
4116 }
4117
4118 first_param = temp->str;
4119 end_params = temp->str + reql;
4120 cur_param = next_param = end_params;
4121 *end_params = '\0';
4122
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004123 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004124
4125 /*
4126 * Parse the parameters in reverse order to only store the last value.
4127 * From the html form, the backend and the action are at the end.
4128 */
4129 while (cur_param > first_param) {
4130 char *value;
4131 int poffset, plen;
4132
4133 cur_param--;
4134
4135 if ((*cur_param == '&') || (cur_param == first_param)) {
4136 reprocess_servers:
4137 /* Parse the key */
4138 poffset = (cur_param != first_param ? 1 : 0);
4139 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
4140 if ((plen > 0) && (plen <= sizeof(key))) {
4141 strncpy(key, cur_param + poffset, plen);
4142 key[plen - 1] = '\0';
4143 } else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004144 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004145 goto out;
4146 }
4147
4148 /* Parse the value */
4149 value = key;
4150 while (*value != '\0' && *value != '=') {
4151 value++;
4152 }
4153 if (*value == '=') {
4154 /* Ok, a value is found, we can mark the end of the key */
4155 *value++ = '\0';
4156 }
4157 if (url_decode(key) < 0 || url_decode(value) < 0)
4158 break;
4159
4160 /* Now we can check the key to see what to do */
4161 if (!px && (strcmp(key, "b") == 0)) {
4162 if ((px = findproxy(value, PR_CAP_BE)) == NULL) {
4163 /* the backend name is unknown or ambiguous (duplicate names) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004164 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004165 goto out;
4166 }
4167 }
4168 else if (!action && (strcmp(key, "action") == 0)) {
4169 if (strcmp(value, "disable") == 0) {
4170 action = ST_ADM_ACTION_DISABLE;
4171 }
4172 else if (strcmp(value, "enable") == 0) {
4173 action = ST_ADM_ACTION_ENABLE;
4174 }
4175 else if (strcmp(value, "stop") == 0) {
4176 action = ST_ADM_ACTION_STOP;
4177 }
4178 else if (strcmp(value, "start") == 0) {
4179 action = ST_ADM_ACTION_START;
4180 }
4181 else if (strcmp(value, "shutdown") == 0) {
4182 action = ST_ADM_ACTION_SHUTDOWN;
4183 }
4184 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004185 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004186 goto out;
4187 }
4188 }
4189 else if (strcmp(key, "s") == 0) {
4190 if (!(px && action)) {
4191 /*
4192 * Indicates that we'll need to reprocess the parameters
4193 * as soon as backend and action are known
4194 */
4195 if (!reprocess) {
4196 st_cur_param = cur_param;
4197 st_next_param = next_param;
4198 }
4199 reprocess = 1;
4200 }
4201 else if ((sv = findserver(px, value)) != NULL) {
4202 switch (action) {
4203 case ST_ADM_ACTION_DISABLE:
4204 if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) {
4205 /* Not already in maintenance, we can change the server state */
4206 sv->state |= SRV_MAINTAIN;
Willy Tarreau33a08db2013-12-11 21:03:31 +01004207 sv->check.state |= CHK_ST_PAUSED;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004208 set_server_down(&sv->check);
4209 altered_servers++;
4210 total_servers++;
4211 }
4212 break;
4213 case ST_ADM_ACTION_ENABLE:
4214 if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) {
Willy Tarreaua3ae9322013-12-28 21:28:49 +01004215 /* Already in maintenance, we can change the server state.
4216 * If this server tracks the status of another one,
4217 * we must restore the good status.
4218 */
4219 if (!sv->track || (sv->track->state & SRV_RUNNING)) {
4220 set_server_up(&sv->check);
4221 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
4222 }
4223 else {
4224 sv->state &= ~SRV_MAINTAIN;
4225 sv->check.state &= ~CHK_ST_PAUSED;
4226 set_server_down(&sv->check);
4227 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004228 altered_servers++;
4229 total_servers++;
4230 }
4231 break;
4232 case ST_ADM_ACTION_STOP:
4233 case ST_ADM_ACTION_START:
4234 if (action == ST_ADM_ACTION_START)
4235 sv->uweight = sv->iweight;
4236 else
4237 sv->uweight = 0;
4238
4239 server_recalc_eweight(sv);
4240 set_server_drain_state(sv);
4241
4242 altered_servers++;
4243 total_servers++;
4244 break;
4245 case ST_ADM_ACTION_SHUTDOWN:
4246 if (px->state != PR_STSTOPPED) {
4247 struct session *sess, *sess_bck;
4248
4249 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
4250 if (sess->srv_conn == sv)
4251 session_shutdown(sess, SN_ERR_KILLED);
4252
4253 altered_servers++;
4254 total_servers++;
4255 }
4256 break;
4257 }
4258 } else {
4259 /* the server name is unknown or ambiguous (duplicate names) */
4260 total_servers++;
4261 }
4262 }
4263 if (reprocess && px && action) {
4264 /* Now, we know the backend and the action chosen by the user.
4265 * We can safely restart from the first server parameter
4266 * to reprocess them
4267 */
4268 cur_param = st_cur_param;
4269 next_param = st_next_param;
4270 reprocess = 0;
4271 goto reprocess_servers;
4272 }
4273
4274 next_param = cur_param;
4275 }
4276 }
4277
4278 if (total_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004279 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004280 }
4281 else if (altered_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004282 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004283 }
4284 else if (altered_servers == total_servers) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004285 appctx->ctx.stats.st_code = STAT_STATUS_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004286 }
4287 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004288 appctx->ctx.stats.st_code = STAT_STATUS_PART;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004289 }
4290 out:
4291 return 1;
4292}
4293
4294
4295static int stats_send_http_headers(struct stream_interface *si)
4296{
4297 struct session *s = session_from_task(si->owner);
4298 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004299 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004300
4301 chunk_printf(&trash,
Willy Tarreau51437d22013-12-29 00:43:40 +01004302 "HTTP/1.0 200 OK\r\n"
Willy Tarreau347a35d2013-11-22 17:51:09 +01004303 "Cache-Control: no-cache\r\n"
4304 "Connection: close\r\n"
4305 "Content-Type: %s\r\n",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004306 (appctx->ctx.stats.flags & STAT_FMT_HTML) ? "text/html" : "text/plain");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004307
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004308 if (uri->refresh > 0 && !(appctx->ctx.stats.flags & STAT_NO_REFRESH))
Willy Tarreau347a35d2013-11-22 17:51:09 +01004309 chunk_appendf(&trash, "Refresh: %d\r\n",
4310 uri->refresh);
4311
Willy Tarreau51437d22013-12-29 00:43:40 +01004312 chunk_appendf(&trash, "\r\n");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004313
4314 s->txn.status = 200;
4315 s->logs.tv_request = now;
4316
4317 if (bi_putchk(si->ib, &trash) == -1)
4318 return 0;
4319
4320 return 1;
4321}
4322
4323static int stats_send_http_redirect(struct stream_interface *si)
4324{
4325 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
4326 struct session *s = session_from_task(si->owner);
4327 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004328 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004329
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004330 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau347a35d2013-11-22 17:51:09 +01004331 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004332 if (appctx->ctx.stats.scope_len) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004333 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004334 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
4335 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004336 }
4337
4338 /* We don't want to land on the posted stats page because a refresh will
4339 * repost the data. We don't want this to happen on accident so we redirect
4340 * the browse to the stats page with a GET.
4341 */
4342 chunk_printf(&trash,
4343 "HTTP/1.1 303 See Other\r\n"
4344 "Cache-Control: no-cache\r\n"
4345 "Content-Type: text/plain\r\n"
4346 "Connection: close\r\n"
4347 "Location: %s;st=%s%s%s%s\r\n"
4348 "\r\n",
4349 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004350 ((appctx->ctx.stats.st_code > STAT_STATUS_INIT) &&
4351 (appctx->ctx.stats.st_code < STAT_STATUS_SIZE) &&
4352 stat_status_codes[appctx->ctx.stats.st_code]) ?
4353 stat_status_codes[appctx->ctx.stats.st_code] :
Willy Tarreau347a35d2013-11-22 17:51:09 +01004354 stat_status_codes[STAT_STATUS_UNKN],
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004355 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4356 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreau347a35d2013-11-22 17:51:09 +01004357 scope_txt);
4358
4359 s->txn.status = 303;
4360 s->logs.tv_request = now;
4361
4362 if (bi_putchk(si->ib, &trash) == -1)
4363 return 0;
4364
4365 return 1;
4366}
4367
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004368/* This I/O handler runs as an applet embedded in a stream interface. It is
4369 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004370 * appctx->st0 contains the operation in progress (dump, done). The handler
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004371 * automatically unregisters itself once transfer is complete.
4372 */
4373static void http_stats_io_handler(struct stream_interface *si)
4374{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004375 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02004376 struct session *s = session_from_task(si->owner);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004377 struct channel *req = si->ob;
4378 struct channel *res = si->ib;
Willy Tarreau55058a72012-11-21 08:27:21 +01004379
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004380 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
4381 goto out;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004382
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004383 /* check that the output is not closed */
4384 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004385 appctx->st0 = STAT_HTTP_DONE;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004386
Willy Tarreau347a35d2013-11-22 17:51:09 +01004387 /* all states are processed in sequence */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004388 if (appctx->st0 == STAT_HTTP_HEAD) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004389 if (stats_send_http_headers(si)) {
4390 if (s->txn.meth == HTTP_METH_HEAD)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004391 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004392 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004393 appctx->st0 = STAT_HTTP_DUMP;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004394 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004395 }
4396
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004397 if (appctx->st0 == STAT_HTTP_DUMP) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004398 if (stats_dump_stat_to_buffer(si, s->be->uri_auth))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004399 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004400 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02004401
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004402 if (appctx->st0 == STAT_HTTP_POST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004403 if (stats_process_http_post(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004404 appctx->st0 = STAT_HTTP_LAST;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004405 else if (si->ob->flags & CF_SHUTR)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004406 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004407 }
4408
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004409 if (appctx->st0 == STAT_HTTP_LAST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004410 if (stats_send_http_redirect(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004411 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004412 }
4413
Willy Tarreau51437d22013-12-29 00:43:40 +01004414 if (appctx->st0 == STAT_HTTP_DONE)
4415 si_shutw(si);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004416
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004417 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST))
4418 si_shutw(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004419
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004420 if (appctx->st0 == STAT_HTTP_DONE) {
Willy Tarreau96d44912013-11-22 12:25:24 +01004421 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST)) {
4422 si_shutr(si);
4423 res->flags |= CF_READ_NULL;
4424 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004425 }
Willy Tarreau91861262007-10-17 17:06:05 +02004426
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004427 /* update all other flags and resync with the other side */
4428 si_update(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004429
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004430 /* we don't want to expire timeouts while we're processing requests */
4431 si->ib->rex = TICK_ETERNITY;
4432 si->ob->wex = TICK_ETERNITY;
Willy Tarreau91861262007-10-17 17:06:05 +02004433
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004434 out:
4435 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
4436 /* check that we have released everything then unregister */
4437 stream_int_unregister_handler(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004438 }
4439}
4440
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004441
Willy Tarreau909d5172012-11-26 03:04:41 +01004442static inline const char *get_conn_ctrl_name(const struct connection *conn)
4443{
Willy Tarreau3c728722014-01-23 13:50:42 +01004444 if (!conn_ctrl_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004445 return "NONE";
4446 return conn->ctrl->name;
4447}
4448
4449static inline const char *get_conn_xprt_name(const struct connection *conn)
4450{
4451 static char ptr[17];
4452
Willy Tarreauaad69382014-01-23 14:21:42 +01004453 if (!conn_xprt_ready(conn))
Willy Tarreau909d5172012-11-26 03:04:41 +01004454 return "NONE";
4455
4456 if (conn->xprt == &raw_sock)
4457 return "RAW";
4458
4459#ifdef USE_OPENSSL
4460 if (conn->xprt == &ssl_sock)
4461 return "SSL";
4462#endif
4463 snprintf(ptr, sizeof(ptr), "%p", conn->xprt);
4464 return ptr;
4465}
4466
4467static inline const char *get_conn_data_name(const struct connection *conn)
4468{
4469 static char ptr[17];
4470
4471 if (!conn->data)
4472 return "NONE";
4473
4474 if (conn->data == &sess_conn_cb)
4475 return "SESS";
4476
4477 if (conn->data == &si_conn_cb)
4478 return "STRM";
4479
4480 if (conn->data == &check_conn_cb)
4481 return "CHCK";
4482
4483 snprintf(ptr, sizeof(ptr), "%p", conn->data);
4484 return ptr;
4485}
4486
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02004487/* This function dumps a complete session state onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02004488 * read buffer. The session has to be set in sess->target. It returns
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004489 * 0 if the output buffer is full and it needs to be called again, otherwise
4490 * non-zero. It is designed to be called from stats_dump_sess_to_buffer() below.
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004491 */
Willy Tarreau76153662012-11-26 01:16:39 +01004492static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004493{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004494 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004495 struct tm tm;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004496 extern const char *monthname[12];
4497 char pn[INET6_ADDRSTRLEN];
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004498 struct connection *conn;
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004499 struct appctx *tmpctx;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004500
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004501 chunk_reset(&trash);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004502
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004503 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != sess->uniq_id) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004504 /* session changed, no need to go any further */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004505 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
4506 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004507 return 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004508 appctx->ctx.sess.uid = 0;
4509 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004510 return 1;
4511 }
4512
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004513 switch (appctx->ctx.sess.section) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004514 case 0: /* main status of the session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004515 appctx->ctx.sess.uid = sess->uniq_id;
4516 appctx->ctx.sess.section = 1;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004517 /* fall through */
4518
4519 case 1:
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004520 get_localtime(sess->logs.accept_date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004521 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004522 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004523 sess,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004524 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
4525 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004526 sess->uniq_id,
Willy Tarreaue95c4ce2013-01-24 00:48:39 +01004527 sess->listener && sess->listener->proto->name ? sess->listener->proto->name : "?");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004528
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004529 conn = objt_conn(sess->si[0].end);
4530 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004531 case AF_INET:
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004532 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004533 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004534 pn, get_host_port(&conn->addr.from));
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004535 break;
4536 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004537 chunk_appendf(&trash, " source=unix:%d\n", sess->listener->luid);
Emeric Brun837ca522010-10-22 16:19:01 +02004538 break;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004539 default:
4540 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004541 chunk_appendf(&trash, "\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004542 break;
4543 }
4544
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004545 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004546 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02004547 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004548
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004549 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004550 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004551 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
4552 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
4553 sess->listener ? sess->listener->luid : 0);
4554
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004555 if (conn)
4556 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004557
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004558 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004559 case AF_INET:
4560 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004561 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004562 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07004563 break;
4564 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004565 chunk_appendf(&trash, " addr=unix:%d\n", sess->listener->luid);
Daniel Schultze90690c72012-03-23 10:53:36 -07004566 break;
4567 default:
4568 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004569 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004570 break;
4571 }
4572
Willy Tarreau50943332011-09-02 17:33:05 +02004573 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004574 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004575 " backend=%s (id=%u mode=%s)",
Willy Tarreau50943332011-09-02 17:33:05 +02004576 sess->be->id,
Daniel Schultze90690c72012-03-23 10:53:36 -07004577 sess->be->uuid, sess->be->mode ? "http" : "tcp");
4578 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004579 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
Daniel Schultze90690c72012-03-23 10:53:36 -07004580
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004581 conn = objt_conn(sess->si[1].end);
4582 if (conn)
4583 conn_get_from_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004584
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004585 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004586 case AF_INET:
4587 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004588 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004589 pn, get_host_port(&conn->addr.from));
Daniel Schultze90690c72012-03-23 10:53:36 -07004590 break;
4591 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004592 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004593 break;
4594 default:
4595 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004596 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004597 break;
4598 }
4599
4600 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004601 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004602 " server=%s (id=%u)",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004603 objt_server(sess->target) ? objt_server(sess->target)->id : "<none>",
4604 objt_server(sess->target) ? objt_server(sess->target)->puid : 0);
Willy Tarreau50943332011-09-02 17:33:05 +02004605 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004606 chunk_appendf(&trash, " server=<NONE> (id=-1)");
Daniel Schultze90690c72012-03-23 10:53:36 -07004607
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004608 if (conn)
4609 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004610
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004611 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004612 case AF_INET:
4613 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004614 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004615 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07004616 break;
4617 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004618 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004619 break;
4620 default:
4621 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004622 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004623 break;
4624 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004625
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004626 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004627 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004628 sess->task,
4629 sess->task->state,
4630 sess->task->nice, sess->task->calls,
4631 sess->task->expire ?
4632 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
4633 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
4634 TICKS_TO_MS(1000)) : "<NEVER>",
4635 task_in_rq(sess->task) ? ", running" : "");
4636
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004637 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004638 " age=%s)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004639 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
4640
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004641 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004642 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s\n",
4643 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
4644 http_msg_state_str(sess->txn.req.msg_state), http_msg_state_str(sess->txn.rsp.msg_state));
4645
4646 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004647 " si[0]=%p (state=%s flags=0x%02x endp0=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004648 &sess->si[0],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004649 si_state_str(sess->si[0].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004650 sess->si[0].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004651 obj_type_name(sess->si[0].end),
4652 obj_base_ptr(sess->si[0].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004653 sess->si[0].exp ?
4654 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
4655 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
4656 TICKS_TO_MS(1000)) : "<NEVER>",
4657 sess->si[0].err_type);
4658
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004659 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004660 " si[1]=%p (state=%s flags=0x%02x endp1=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004661 &sess->si[1],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004662 si_state_str(sess->si[1].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004663 sess->si[1].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004664 obj_type_name(sess->si[1].end),
4665 obj_base_ptr(sess->si[1].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004666 sess->si[1].exp ?
4667 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
4668 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
4669 TICKS_TO_MS(1000)) : "<NEVER>",
4670 sess->si[1].err_type);
4671
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004672 if ((conn = objt_conn(sess->si[0].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004673 chunk_appendf(&trash,
4674 " co0=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004675 conn,
4676 get_conn_ctrl_name(conn),
4677 get_conn_xprt_name(conn),
4678 get_conn_data_name(conn),
4679 obj_type_name(conn->target),
4680 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01004681
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004682 chunk_appendf(&trash,
Willy Tarreau16f649c2014-01-25 19:10:48 +01004683 " flags=0x%08x fd=%d fd.state=%02x fd.cache=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004684 conn->flags,
4685 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01004686 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01004687 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004688 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004689 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004690 else if ((tmpctx = objt_appctx(sess->si[0].end)) != NULL) {
4691 chunk_appendf(&trash,
4692 " app0=%p st0=%d st1=%d st2=%d applet=%s\n",
4693 tmpctx,
4694 tmpctx->st0,
4695 tmpctx->st1,
4696 tmpctx->st2,
4697 tmpctx->applet->name);
4698 }
Willy Tarreaubc174aa2012-11-19 16:10:32 +01004699
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004700 if ((conn = objt_conn(sess->si[1].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004701 chunk_appendf(&trash,
4702 " co1=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004703 conn,
4704 get_conn_ctrl_name(conn),
4705 get_conn_xprt_name(conn),
4706 get_conn_data_name(conn),
4707 obj_type_name(conn->target),
4708 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01004709
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004710 chunk_appendf(&trash,
4711 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004712 conn->flags,
4713 conn->t.sock.fd,
Willy Tarreau69a41fa2014-01-20 11:02:59 +01004714 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].state : 0,
Willy Tarreau15a4dec2014-01-20 11:09:39 +01004715 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].cache : 0,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004716 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004717 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004718 else if ((tmpctx = objt_appctx(sess->si[1].end)) != NULL) {
4719 chunk_appendf(&trash,
4720 " app1=%p st0=%d st1=%d st2=%d applet=%s\n",
4721 tmpctx,
4722 tmpctx->st0,
4723 tmpctx->st1,
4724 tmpctx->st2,
4725 tmpctx->applet->name);
4726 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004727
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004728 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01004729 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004730 " an_exp=%s",
4731 sess->req,
4732 sess->req->flags, sess->req->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004733 sess->req->pipe ? sess->req->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01004734 sess->req->to_forward, sess->req->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004735 sess->req->analyse_exp ?
4736 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
4737 TICKS_TO_MS(1000)) : "<NEVER>");
4738
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004739 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004740 " rex=%s",
4741 sess->req->rex ?
4742 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
4743 TICKS_TO_MS(1000)) : "<NEVER>");
4744
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004745 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004746 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01004747 " buf=%p data=%p o=%d p=%d req.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004748 sess->req->wex ?
4749 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
4750 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01004751 sess->req->buf,
4752 sess->req->buf->data, sess->req->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004753 (int)(sess->req->buf->p - sess->req->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01004754 sess->txn.req.next, sess->req->buf->i,
4755 sess->req->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004756
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004757 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01004758 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004759 " an_exp=%s",
4760 sess->rep,
4761 sess->rep->flags, sess->rep->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004762 sess->rep->pipe ? sess->rep->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01004763 sess->rep->to_forward, sess->rep->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004764 sess->rep->analyse_exp ?
4765 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
4766 TICKS_TO_MS(1000)) : "<NEVER>");
4767
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004768 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004769 " rex=%s",
4770 sess->rep->rex ?
4771 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
4772 TICKS_TO_MS(1000)) : "<NEVER>");
4773
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004774 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004775 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01004776 " buf=%p data=%p o=%d p=%d rsp.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004777 sess->rep->wex ?
4778 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
4779 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01004780 sess->rep->buf,
4781 sess->rep->buf->data, sess->rep->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004782 (int)(sess->rep->buf->p - sess->rep->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01004783 sess->txn.rsp.next, sess->rep->buf->i,
4784 sess->rep->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004785
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004786 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004787 return 0;
4788
4789 /* use other states to dump the contents */
4790 }
4791 /* end of dump */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004792 appctx->ctx.sess.uid = 0;
4793 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004794 return 1;
4795}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004796
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004797static int stats_maps_list(struct stream_interface *si)
4798{
4799 struct appctx *appctx = __objt_appctx(si->end);
4800
4801 switch (appctx->st2) {
4802 case STAT_ST_INIT:
4803 /* Init to the first entry. The list cannot be change */
4804 appctx->ctx.map.ref = LIST_NEXT(&maps, struct map_reference *, list);
4805 appctx->st2 = STAT_ST_LIST;
4806 /* fall through */
4807
4808 case STAT_ST_LIST:
4809 while (appctx->ctx.map.ref) {
4810
4811 chunk_reset(&trash);
4812
4813 /* build messages */
4814 chunk_appendf(&trash, "%s\n", appctx->ctx.map.ref->reference);
4815
4816 if (bi_putchk(si->ib, &trash) == -1) {
4817 /* let's try again later from this session. We add ourselves into
4818 * this session's users so that it can remove us upon termination.
4819 */
4820 return 0;
4821 }
4822
4823 /* get next list entry and check the end of the list */
4824 appctx->ctx.map.ref = LIST_NEXT(&appctx->ctx.map.ref->list,
4825 struct map_reference *, list);
4826 if (&appctx->ctx.map.ref->list == &maps)
4827 break;
4828 }
4829
4830 appctx->st2 = STAT_ST_FIN;
4831 /* fall through */
4832
4833 default:
4834 appctx->st2 = STAT_ST_FIN;
4835 return 1;
4836 }
4837}
4838
4839static const char *smp_to_type[SMP_TYPES] = {
4840 [SMP_T_BOOL] = "bool",
4841 [SMP_T_UINT] = "uint",
4842 [SMP_T_SINT] = "sint",
4843 [SMP_T_ADDR] = "addr",
4844 [SMP_T_IPV4] = "ipv4",
4845 [SMP_T_IPV6] = "ipv6",
4846 [SMP_T_STR] = "str",
4847 [SMP_T_BIN] = "bin",
4848 [SMP_T_CSTR] = "cstr",
4849 [SMP_T_CBIN] = "cbin",
4850};
4851
4852static int stats_map_lookup(struct stream_interface *si)
4853{
4854 struct appctx *appctx = __objt_appctx(si->end);
4855 struct sample_storage *smp;
4856 struct sample sample;
4857 struct pattern *pat;
4858 struct pat_idx_elt *elt;
4859 enum pat_match_res res;
4860 struct sockaddr_in addr;
Willy Tarreaub908bef2013-12-16 01:42:03 +01004861 char addr_str[INET_ADDRSTRLEN];
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004862
4863 switch (appctx->st2) {
4864 case STAT_ST_INIT:
4865 appctx->ctx.map.desc = NULL;
4866 stats_map_lookup_next(si);
4867 appctx->st2 = STAT_ST_LIST;
4868 /* fall through */
4869
4870 case STAT_ST_LIST:
4871 /* for each lookup type */
4872 while (appctx->ctx.map.desc) {
4873 /* initialise chunk to build new message */
4874 chunk_reset(&trash);
4875
4876 /* execute pattern matching */
4877 sample.type = SMP_T_CSTR;
4878 sample.data.str.len = appctx->ctx.map.chunk.len;
4879 sample.data.str.str = appctx->ctx.map.chunk.str;
4880 pat = NULL;
4881 elt = NULL;
4882 res = pattern_exec_match(appctx->ctx.map.desc->pat, &sample, &smp, &pat, &elt);
4883
4884 /* build return message: set type of match */
4885 /**/ if (appctx->ctx.map.desc->pat->match == NULL)
4886 chunk_appendf(&trash, "found, ");
4887 else if (appctx->ctx.map.desc->pat->match == pat_match_nothing)
4888 chunk_appendf(&trash, "bool, ");
4889 else if (appctx->ctx.map.desc->pat->match == pat_match_int)
4890 chunk_appendf(&trash, "int, ");
4891 else if (appctx->ctx.map.desc->pat->match == pat_match_ip)
4892 chunk_appendf(&trash, "ip, ");
4893 else if (appctx->ctx.map.desc->pat->match == pat_match_bin)
4894 chunk_appendf(&trash, "bin, ");
4895 else if (appctx->ctx.map.desc->pat->match == pat_match_len)
4896 chunk_appendf(&trash, "len, ");
4897 else if (appctx->ctx.map.desc->pat->match == pat_match_str)
4898 chunk_appendf(&trash, "str, ");
4899 else if (appctx->ctx.map.desc->pat->match == pat_match_beg)
4900 chunk_appendf(&trash, "beg, ");
4901 else if (appctx->ctx.map.desc->pat->match == pat_match_sub)
4902 chunk_appendf(&trash, "sub, ");
4903 else if (appctx->ctx.map.desc->pat->match == pat_match_dir)
4904 chunk_appendf(&trash, "dir, ");
4905 else if (appctx->ctx.map.desc->pat->match == pat_match_dom)
4906 chunk_appendf(&trash, "dom, ");
4907 else if (appctx->ctx.map.desc->pat->match == pat_match_end)
4908 chunk_appendf(&trash, "end, ");
4909 else if (appctx->ctx.map.desc->pat->match == pat_match_reg)
4910 chunk_appendf(&trash, "reg, ");
4911 else /* The never appens case */
4912 chunk_appendf(&trash, "unknown(%p), ", appctx->ctx.map.desc->pat->match);
4913
4914 /* Display no match, and set default value */
4915 if (res == PAT_NOMATCH) {
4916 chunk_appendf(&trash, "no-match, ");
4917 smp = appctx->ctx.map.desc->def;
4918 }
4919
4920 /* Display match and match info */
4921 else {
4922 /* display match */
4923 chunk_appendf(&trash, "match, ");
4924
4925 /* display search mode */
4926 if (elt)
4927 chunk_appendf(&trash, "tree, ");
4928 else
4929 chunk_appendf(&trash, "list, ");
4930
4931 /* display search options */
4932 if (pat) {
4933 /* case sensitive */
4934 if (pat->flags & PAT_F_IGNORE_CASE)
4935 chunk_appendf(&trash, "case-insensitive, ");
4936 else
4937 chunk_appendf(&trash, "case-sensitive, ");
4938
4939 /* display source */
4940 if (pat->flags & PAT_F_FROM_FILE)
4941 chunk_appendf(&trash, "from-file, ");
4942 }
4943
4944 /* display match expresion */
4945 if (elt) {
4946 if (appctx->ctx.map.desc->pat->match == pat_match_str) {
4947 chunk_appendf(&trash, "match=\"%s\", ", elt->node.key);
4948 }
4949 /* only IPv4 */
4950 else if (appctx->ctx.map.desc->pat->match == pat_match_ip) {
4951 /* convert ip */
4952 memcpy(&addr.sin_addr, elt->node.key, 4);
4953 addr.sin_family = AF_INET;
Willy Tarreaub908bef2013-12-16 01:42:03 +01004954 if (addr_to_str((struct sockaddr_storage *)&addr, addr_str, INET_ADDRSTRLEN))
4955 chunk_appendf(&trash, "match=\"%s/%d\", ", addr_str, elt->node.node.pfx);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004956 }
4957 }
4958 }
4959
4960 /* display return value */
4961 if (!smp) {
4962 chunk_appendf(&trash, "return=nothing\n");
4963 }
4964 else {
4965 memcpy(&sample.data, &smp->data, sizeof(sample.data));
4966 sample.type = smp->type;
4967 if (sample_casts[sample.type][SMP_T_CSTR] &&
4968 sample_casts[sample.type][SMP_T_CSTR](&sample))
4969 chunk_appendf(&trash, "return=\"%s\", type=\"%s\"\n",
4970 sample.data.str.str, smp_to_type[smp->type]);
4971 else
4972 chunk_appendf(&trash, "return=cannot-display, type=\"%s\"\n",
4973 smp_to_type[smp->type]);
4974 }
4975
4976 /* display response */
4977 if (bi_putchk(si->ib, &trash) == -1) {
4978 /* let's try again later from this session. We add ourselves into
4979 * this session's users so that it can remove us upon termination.
4980 */
4981 return 0;
4982 }
4983
4984 /* get next entry */
4985 stats_map_lookup_next(si);
4986 }
4987
4988 appctx->st2 = STAT_ST_FIN;
4989 /* fall through */
4990
4991 default:
4992 appctx->st2 = STAT_ST_FIN;
4993 free(appctx->ctx.map.chunk.str);
4994 return 1;
4995 }
4996}
4997
4998static int stats_map_list(struct stream_interface *si)
4999{
5000 struct appctx *appctx = __objt_appctx(si->end);
5001
5002 switch (appctx->st2) {
5003
5004 case STAT_ST_INIT:
5005 /* Init to the first entry. The list cannot be change */
5006 appctx->ctx.map.ent = LIST_NEXT(&appctx->ctx.map.ref->entries,
5007 struct map_entry *, list);
5008 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries)
5009 appctx->ctx.map.ent = NULL;
5010 appctx->st2 = STAT_ST_LIST;
5011 /* fall through */
5012
5013 case STAT_ST_LIST:
5014 while (appctx->ctx.map.ent) {
5015 chunk_reset(&trash);
5016
5017 /* build messages */
5018 chunk_appendf(&trash, "%s %s\n", appctx->ctx.map.ent->key, appctx->ctx.map.ent->value);
5019
5020 if (bi_putchk(si->ib, &trash) == -1) {
5021 /* let's try again later from this session. We add ourselves into
5022 * this session's users so that it can remove us upon termination.
5023 */
5024 return 0;
5025 }
5026
5027 /* get next list entry and check the end of the list */
5028 appctx->ctx.map.ent = LIST_NEXT(&appctx->ctx.map.ent->list,
5029 struct map_entry *, list);
5030 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries)
5031 break;
5032 }
5033
5034 appctx->st2 = STAT_ST_FIN;
5035 /* fall through */
5036
5037 default:
5038 appctx->st2 = STAT_ST_FIN;
5039 return 1;
5040 }
5041}
5042
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005043/* This function dumps all sessions' states onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005044 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005045 * to be called again, otherwise non-zero. It is designed to be called
5046 * from stats_dump_sess_to_buffer() below.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005047 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005048static int stats_dump_sess_to_buffer(struct stream_interface *si)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005049{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005050 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005051 struct connection *conn;
5052
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005053 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005054 /* If we're forced to shut down, we might have to remove our
5055 * reference to the last session being dumped.
5056 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005057 if (appctx->st2 == STAT_ST_LIST) {
5058 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5059 LIST_DEL(&appctx->ctx.sess.bref.users);
5060 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005061 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005062 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005063 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005064 }
5065
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005066 chunk_reset(&trash);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005067
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005068 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005069 case STAT_ST_INIT:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005070 /* the function had not been called yet, let's prepare the
5071 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005072 * pointer to the first in the global list. When a target
5073 * session is being destroyed, it is responsible for updating
5074 * this pointer. We know we have reached the end when this
5075 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005076 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005077 LIST_INIT(&appctx->ctx.sess.bref.users);
5078 appctx->ctx.sess.bref.ref = sessions.n;
5079 appctx->st2 = STAT_ST_LIST;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005080 /* fall through */
5081
Willy Tarreau295a8372011-03-10 11:25:07 +01005082 case STAT_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005083 /* first, let's detach the back-ref from a possible previous session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005084 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
5085 LIST_DEL(&appctx->ctx.sess.bref.users);
5086 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005087 }
5088
5089 /* and start from where we stopped */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005090 while (appctx->ctx.sess.bref.ref != &sessions) {
Cyril Bontéacd7d632010-11-01 19:26:02 +01005091 char pn[INET6_ADDRSTRLEN];
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005092 struct session *curr_sess;
5093
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005094 curr_sess = LIST_ELEM(appctx->ctx.sess.bref.ref, struct session *, list);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005095
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005096 if (appctx->ctx.sess.target) {
5097 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005098 goto next_sess;
5099
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005100 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005101 /* call the proper dump() function and return if we're missing space */
Willy Tarreau76153662012-11-26 01:16:39 +01005102 if (!stats_dump_full_sess_to_buffer(si, curr_sess))
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005103 return 0;
5104
5105 /* session dump complete */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005106 LIST_DEL(&appctx->ctx.sess.bref.users);
5107 LIST_INIT(&appctx->ctx.sess.bref.users);
5108 if (appctx->ctx.sess.target != (void *)-1) {
5109 appctx->ctx.sess.target = NULL;
Willy Tarreau76153662012-11-26 01:16:39 +01005110 break;
5111 }
5112 else
5113 goto next_sess;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005114 }
5115
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005116 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005117 "%p: proto=%s",
5118 curr_sess,
5119 curr_sess->listener->proto->name);
5120
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005121
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005122 conn = objt_conn(curr_sess->si[0].end);
5123 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau631f01c2011-09-05 00:36:48 +02005124 case AF_INET:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005125 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005126 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005127 " src=%s:%d fe=%s be=%s srv=%s",
5128 pn,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005129 get_host_port(&conn->addr.from),
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005130 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005131 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005132 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005133 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005134 break;
5135 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005136 chunk_appendf(&trash,
Emeric Brun837ca522010-10-22 16:19:01 +02005137 " src=unix:%d fe=%s be=%s srv=%s",
5138 curr_sess->listener->luid,
5139 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02005140 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005141 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Emeric Brun837ca522010-10-22 16:19:01 +02005142 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005143 break;
5144 }
5145
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005146 chunk_appendf(&trash,
Willy Tarreau65671ab2009-10-04 14:24:59 +02005147 " ts=%02x age=%s calls=%d",
5148 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01005149 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
5150 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005151
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005152 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005153 " rq[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005154 curr_sess->req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005155 curr_sess->req->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005156 curr_sess->req->analysers,
5157 curr_sess->req->rex ?
5158 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
5159 TICKS_TO_MS(1000)) : "");
5160
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005161 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005162 ",wx=%s",
5163 curr_sess->req->wex ?
5164 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
5165 TICKS_TO_MS(1000)) : "");
5166
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005167 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005168 ",ax=%s]",
5169 curr_sess->req->analyse_exp ?
5170 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
5171 TICKS_TO_MS(1000)) : "");
5172
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005173 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01005174 " rp[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005175 curr_sess->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02005176 curr_sess->rep->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005177 curr_sess->rep->analysers,
5178 curr_sess->rep->rex ?
5179 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
5180 TICKS_TO_MS(1000)) : "");
5181
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005182 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005183 ",wx=%s",
5184 curr_sess->rep->wex ?
5185 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
5186 TICKS_TO_MS(1000)) : "");
5187
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005188 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005189 ",ax=%s]",
5190 curr_sess->rep->analyse_exp ?
5191 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
5192 TICKS_TO_MS(1000)) : "");
5193
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005194 conn = objt_conn(curr_sess->si[0].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005195 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005196 " s0=[%d,%1xh,fd=%d,ex=%s]",
5197 curr_sess->si[0].state,
5198 curr_sess->si[0].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005199 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005200 curr_sess->si[0].exp ?
5201 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
5202 TICKS_TO_MS(1000)) : "");
5203
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005204 conn = objt_conn(curr_sess->si[1].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005205 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005206 " s1=[%d,%1xh,fd=%d,ex=%s]",
5207 curr_sess->si[1].state,
5208 curr_sess->si[1].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005209 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005210 curr_sess->si[1].exp ?
5211 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
5212 TICKS_TO_MS(1000)) : "");
5213
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005214 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005215 " exp=%s",
5216 curr_sess->task->expire ?
5217 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
5218 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01005219 if (task_in_rq(curr_sess->task))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005220 chunk_appendf(&trash, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005221
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005222 chunk_appendf(&trash, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005223
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005224 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005225 /* let's try again later from this session. We add ourselves into
5226 * this session's users so that it can remove us upon termination.
5227 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005228 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005229 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005230 }
5231
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005232 next_sess:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005233 appctx->ctx.sess.bref.ref = curr_sess->list.n;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005234 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005235
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005236 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005237 /* specified session not found */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005238 if (appctx->ctx.sess.section > 0)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005239 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005240 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005241 chunk_appendf(&trash, "Session not found.\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005242
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005243 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005244 return 0;
5245
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005246 appctx->ctx.sess.target = NULL;
5247 appctx->ctx.sess.uid = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005248 return 1;
5249 }
5250
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005251 appctx->st2 = STAT_ST_FIN;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005252 /* fall through */
5253
5254 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005255 appctx->st2 = STAT_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005256 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005257 }
Emeric Brun1e029aa2010-09-23 18:12:53 +02005258}
5259
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005260/* This is called when the stream interface is closed. For instance, upon an
5261 * external abort, we won't call the i/o handler anymore so we may need to
5262 * remove back references to the session currently being dumped.
5263 */
Simon Horman74d88312013-02-12 10:45:50 +09005264static void cli_release_handler(struct stream_interface *si)
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005265{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005266 struct appctx *appctx = __objt_appctx(si->end);
5267
5268 if (appctx->st0 == STAT_CLI_O_SESS && appctx->st2 == STAT_ST_LIST) {
5269 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
5270 LIST_DEL(&appctx->ctx.sess.bref.users);
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005271 }
5272}
5273
Willy Tarreau20e99322013-04-13 09:22:25 +02005274/* This function is used to either dump tables states (when action is set
5275 * to STAT_CLI_O_TAB) or clear tables (when action is STAT_CLI_O_CLR).
Willy Tarreau20e99322013-04-13 09:22:25 +02005276 * It returns 0 if the output buffer is full and it needs to be called
5277 * again, otherwise non-zero.
Willy Tarreau69f58c82010-07-12 17:55:33 +02005278 */
Willy Tarreau20e99322013-04-13 09:22:25 +02005279static int stats_table_request(struct stream_interface *si, int action)
Willy Tarreau69f58c82010-07-12 17:55:33 +02005280{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005281 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02005282 struct session *s = session_from_task(si->owner);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005283 struct ebmb_node *eb;
5284 int dt;
Willy Tarreau44455022012-12-05 23:01:12 +01005285 int skip_entry;
Willy Tarreau20e99322013-04-13 09:22:25 +02005286 int show = action == STAT_CLI_O_TAB;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005287
5288 /*
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005289 * We have 3 possible states in appctx->st2 :
Willy Tarreau295a8372011-03-10 11:25:07 +01005290 * - STAT_ST_INIT : the first call
5291 * - STAT_ST_INFO : the proxy pointer points to the next table to
Willy Tarreau69f58c82010-07-12 17:55:33 +02005292 * dump, the entry pointer is NULL ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005293 * - STAT_ST_LIST : the proxy pointer points to the current table
Willy Tarreau69f58c82010-07-12 17:55:33 +02005294 * and the entry pointer points to the next entry to be dumped,
5295 * and the refcount on the next entry is held ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005296 * - STAT_ST_END : nothing left to dump, the buffer may contain some
Willy Tarreau69f58c82010-07-12 17:55:33 +02005297 * data though.
5298 */
5299
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005300 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005301 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005302 if (appctx->st2 == STAT_ST_LIST) {
5303 appctx->ctx.table.entry->ref_cnt--;
5304 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Willy Tarreauf6efda12010-08-03 20:34:06 +02005305 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02005306 return 1;
5307 }
5308
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005309 chunk_reset(&trash);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005310
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005311 while (appctx->st2 != STAT_ST_FIN) {
5312 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005313 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005314 appctx->ctx.table.proxy = appctx->ctx.table.target;
5315 if (!appctx->ctx.table.proxy)
5316 appctx->ctx.table.proxy = proxy;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005317
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005318 appctx->ctx.table.entry = NULL;
5319 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005320 break;
5321
Willy Tarreau295a8372011-03-10 11:25:07 +01005322 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005323 if (!appctx->ctx.table.proxy ||
5324 (appctx->ctx.table.target &&
5325 appctx->ctx.table.proxy != appctx->ctx.table.target)) {
5326 appctx->st2 = STAT_ST_END;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005327 break;
5328 }
5329
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005330 if (appctx->ctx.table.proxy->table.size) {
5331 if (show && !stats_dump_table_head_to_buffer(&trash, si, appctx->ctx.table.proxy,
5332 appctx->ctx.table.target))
Willy Tarreau69f58c82010-07-12 17:55:33 +02005333 return 0;
5334
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005335 if (appctx->ctx.table.target &&
Willy Tarreau290e63a2012-09-20 18:07:14 +02005336 s->listener->bind_conf->level >= ACCESS_LVL_OPER) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005337 /* dump entries only if table explicitly requested */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005338 eb = ebmb_first(&appctx->ctx.table.proxy->table.keys);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005339 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005340 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
5341 appctx->ctx.table.entry->ref_cnt++;
5342 appctx->st2 = STAT_ST_LIST;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005343 break;
5344 }
5345 }
5346 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005347 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005348 break;
5349
Willy Tarreau295a8372011-03-10 11:25:07 +01005350 case STAT_ST_LIST:
Willy Tarreau44455022012-12-05 23:01:12 +01005351 skip_entry = 0;
Simon Hormanc88b8872011-06-15 15:18:49 +09005352
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005353 if (appctx->ctx.table.data_type >= 0) {
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005354 /* we're filtering on some data contents */
5355 void *ptr;
5356 long long data;
5357
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005358 dt = appctx->ctx.table.data_type;
5359 ptr = stktable_data_ptr(&appctx->ctx.table.proxy->table,
5360 appctx->ctx.table.entry,
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005361 dt);
5362
5363 data = 0;
5364 switch (stktable_data_types[dt].std_type) {
5365 case STD_T_SINT:
5366 data = stktable_data_cast(ptr, std_t_sint);
5367 break;
5368 case STD_T_UINT:
5369 data = stktable_data_cast(ptr, std_t_uint);
5370 break;
5371 case STD_T_ULL:
5372 data = stktable_data_cast(ptr, std_t_ull);
5373 break;
5374 case STD_T_FRQP:
5375 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005376 appctx->ctx.table.proxy->table.data_arg[dt].u);
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005377 break;
5378 }
5379
5380 /* skip the entry if the data does not match the test and the value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005381 if ((data < appctx->ctx.table.value &&
5382 (appctx->ctx.table.data_op == STD_OP_EQ ||
5383 appctx->ctx.table.data_op == STD_OP_GT ||
5384 appctx->ctx.table.data_op == STD_OP_GE)) ||
5385 (data == appctx->ctx.table.value &&
5386 (appctx->ctx.table.data_op == STD_OP_NE ||
5387 appctx->ctx.table.data_op == STD_OP_GT ||
5388 appctx->ctx.table.data_op == STD_OP_LT)) ||
5389 (data > appctx->ctx.table.value &&
5390 (appctx->ctx.table.data_op == STD_OP_EQ ||
5391 appctx->ctx.table.data_op == STD_OP_LT ||
5392 appctx->ctx.table.data_op == STD_OP_LE)))
Willy Tarreau44455022012-12-05 23:01:12 +01005393 skip_entry = 1;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005394 }
5395
Simon Hormanc88b8872011-06-15 15:18:49 +09005396 if (show && !skip_entry &&
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005397 !stats_dump_table_entry_to_buffer(&trash, si, appctx->ctx.table.proxy,
5398 appctx->ctx.table.entry))
Simon Hormand9366582011-06-15 15:18:45 +09005399 return 0;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005400
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005401 appctx->ctx.table.entry->ref_cnt--;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005402
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005403 eb = ebmb_next(&appctx->ctx.table.entry->key);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005404 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005405 struct stksess *old = appctx->ctx.table.entry;
5406 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreau8fa52f42012-01-09 11:50:03 +01005407 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005408 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, old);
5409 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5410 stksess_kill(&appctx->ctx.table.proxy->table, old);
5411 appctx->ctx.table.entry->ref_cnt++;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005412 break;
5413 }
5414
Simon Hormanc88b8872011-06-15 15:18:49 +09005415
5416 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005417 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
5418 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5419 stksess_kill(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Simon Hormanc88b8872011-06-15 15:18:49 +09005420
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005421 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
5422 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005423 break;
5424
Willy Tarreau295a8372011-03-10 11:25:07 +01005425 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005426 appctx->st2 = STAT_ST_FIN;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005427 break;
5428 }
5429 }
5430 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005431}
5432
Willy Tarreaud426a182010-03-05 14:58:26 +01005433/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01005434 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
5435 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
5436 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
5437 * lines are respected within the limit of 70 output chars. Lines that are
5438 * continuation of a previous truncated line begin with "+" instead of " "
5439 * after the offset. The new pointer is returned.
5440 */
Willy Tarreaud426a182010-03-05 14:58:26 +01005441static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
5442 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005443{
5444 int end;
5445 unsigned char c;
5446
5447 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02005448 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005449 return ptr;
5450
Willy Tarreau77804732012-10-29 16:14:26 +01005451 chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01005452
Willy Tarreaud426a182010-03-05 14:58:26 +01005453 while (ptr < len && ptr < bsize) {
5454 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01005455 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005456 if (out->len > end - 2)
5457 break;
5458 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005459 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005460 if (out->len > end - 3)
5461 break;
5462 out->str[out->len++] = '\\';
5463 switch (c) {
5464 case '\t': c = 't'; break;
5465 case '\n': c = 'n'; break;
5466 case '\r': c = 'r'; break;
5467 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005468 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005469 }
5470 out->str[out->len++] = c;
5471 } else {
5472 if (out->len > end - 5)
5473 break;
5474 out->str[out->len++] = '\\';
5475 out->str[out->len++] = 'x';
5476 out->str[out->len++] = hextab[(c >> 4) & 0xF];
5477 out->str[out->len++] = hextab[c & 0xF];
5478 }
Willy Tarreaud426a182010-03-05 14:58:26 +01005479 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005480 /* we had a line break, let's return now */
5481 out->str[out->len++] = '\n';
5482 *line = ptr;
5483 return ptr;
5484 }
5485 }
5486 /* we have an incomplete line, we return it as-is */
5487 out->str[out->len++] = '\n';
5488 return ptr;
5489}
5490
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005491/* This function dumps all captured errors onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005492 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005493 * to be called again, otherwise non-zero.
Willy Tarreau74808cb2009-03-04 15:53:18 +01005494 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005495static int stats_dump_errors_to_buffer(struct stream_interface *si)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005496{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005497 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005498 extern const char *monthname[12];
Willy Tarreau74808cb2009-03-04 15:53:18 +01005499
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005500 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau61b34732009-10-03 23:49:35 +02005501 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005502
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005503 chunk_reset(&trash);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005504
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005505 if (!appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005506 /* the function had not been called yet, let's prepare the
5507 * buffer for a response.
5508 */
Willy Tarreau10479e42010-12-12 14:00:34 +01005509 struct tm tm;
5510
5511 get_localtime(date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005512 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
Willy Tarreau10479e42010-12-12 14:00:34 +01005513 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
5514 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
5515 error_snapshot_id);
5516
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005517 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau10479e42010-12-12 14:00:34 +01005518 /* Socket buffer full. Let's try again later from the same point */
5519 return 0;
5520 }
5521
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005522 appctx->ctx.errors.px = proxy;
5523 appctx->ctx.errors.buf = 0;
5524 appctx->ctx.errors.bol = 0;
5525 appctx->ctx.errors.ptr = -1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005526 }
5527
5528 /* we have two inner loops here, one for the proxy, the other one for
5529 * the buffer.
5530 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005531 while (appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005532 struct error_snapshot *es;
5533
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005534 if (appctx->ctx.errors.buf == 0)
5535 es = &appctx->ctx.errors.px->invalid_req;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005536 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005537 es = &appctx->ctx.errors.px->invalid_rep;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005538
5539 if (!es->when.tv_sec)
5540 goto next;
5541
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005542 if (appctx->ctx.errors.iid >= 0 &&
5543 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
5544 es->oe->uuid != appctx->ctx.errors.iid)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005545 goto next;
5546
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005547 if (appctx->ctx.errors.ptr < 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005548 /* just print headers now */
5549
5550 char pn[INET6_ADDRSTRLEN];
5551 struct tm tm;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005552 int port;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005553
5554 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005555 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01005556 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02005557 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01005558
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005559 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
5560 case AF_INET:
5561 case AF_INET6:
5562 port = get_host_port(&es->src);
5563 break;
5564 default:
5565 port = 0;
5566 }
5567
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005568 switch (appctx->ctx.errors.buf) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005569 case 0:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005570 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005571 " frontend %s (#%d): invalid request\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005572 " backend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005573 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005574 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
5575 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005576 break;
5577 case 1:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005578 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005579 " backend %s (#%d) : invalid response\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005580 " frontend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005581 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005582 es->oe->id, es->oe->uuid);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005583 break;
5584 }
5585
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005586 chunk_appendf(&trash,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005587 ", server %s (#%d), event #%u\n"
5588 " src %s:%d, session #%d, session flags 0x%08x\n"
5589 " HTTP msg state %d, msg flags 0x%08x, tx flags 0x%08x\n"
5590 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
5591 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
5592 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
5593 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
5594 es->ev_id,
5595 pn, port, es->sid, es->s_flags,
5596 es->state, es->m_flags, es->t_flags,
5597 es->m_clen, es->m_blen,
5598 es->b_flags, es->b_out, es->b_tot,
5599 es->len, es->b_wrap, es->pos);
5600
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005601 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005602 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02005603 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005604 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005605 appctx->ctx.errors.ptr = 0;
5606 appctx->ctx.errors.sid = es->sid;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005607 }
5608
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005609 if (appctx->ctx.errors.sid != es->sid) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005610 /* the snapshot changed while we were dumping it */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005611 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005612 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005613 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau61b34732009-10-03 23:49:35 +02005614 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005615 goto next;
5616 }
5617
5618 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005619 while (appctx->ctx.errors.ptr < es->len && appctx->ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005620 int newptr;
5621 int newline;
5622
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005623 newline = appctx->ctx.errors.bol;
5624 newptr = dump_text_line(&trash, es->buf, sizeof(es->buf), es->len, &newline, appctx->ctx.errors.ptr);
5625 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02005626 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005627
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005628 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005629 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02005630 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005631 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005632 appctx->ctx.errors.ptr = newptr;
5633 appctx->ctx.errors.bol = newline;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005634 };
5635 next:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005636 appctx->ctx.errors.bol = 0;
5637 appctx->ctx.errors.ptr = -1;
5638 appctx->ctx.errors.buf++;
5639 if (appctx->ctx.errors.buf > 1) {
5640 appctx->ctx.errors.buf = 0;
5641 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005642 }
5643 }
5644
5645 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02005646 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005647}
5648
Willy Tarreaud5781202012-09-22 19:32:35 +02005649/* parse the "level" argument on the bind lines */
5650static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
5651{
5652 if (!*args[cur_arg + 1]) {
5653 memprintf(err, "'%s' : missing level", args[cur_arg]);
5654 return ERR_ALERT | ERR_FATAL;
5655 }
5656
5657 if (!strcmp(args[cur_arg+1], "user"))
5658 conf->level = ACCESS_LVL_USER;
5659 else if (!strcmp(args[cur_arg+1], "operator"))
5660 conf->level = ACCESS_LVL_OPER;
5661 else if (!strcmp(args[cur_arg+1], "admin"))
5662 conf->level = ACCESS_LVL_ADMIN;
5663 else {
5664 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
5665 args[cur_arg], args[cur_arg+1]);
5666 return ERR_ALERT | ERR_FATAL;
5667 }
5668
5669 return 0;
5670}
5671
Willy Tarreaub24281b2011-02-13 13:16:36 +01005672struct si_applet http_stats_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005673 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005674 .name = "<STATS>", /* used for logging */
5675 .fct = http_stats_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07005676 .release = NULL,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005677};
5678
Simon Horman9bd2c732011-06-15 15:18:44 +09005679static struct si_applet cli_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005680 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005681 .name = "<CLI>", /* used for logging */
5682 .fct = cli_io_handler,
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005683 .release = cli_release_handler,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005684};
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005685
Willy Tarreaudc13c112013-06-21 23:16:39 +02005686static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau10522fd2008-07-09 20:12:41 +02005687 { CFG_GLOBAL, "stats", stats_parse_global },
5688 { 0, NULL, NULL },
5689}};
5690
Willy Tarreaud5781202012-09-22 19:32:35 +02005691static struct bind_kw_list bind_kws = { "STAT", { }, {
5692 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
5693 { NULL, NULL, 0 },
5694}};
5695
Willy Tarreau10522fd2008-07-09 20:12:41 +02005696__attribute__((constructor))
5697static void __dumpstats_module_init(void)
5698{
5699 cfg_register_keywords(&cfg_kws);
Willy Tarreaud5781202012-09-22 19:32:35 +02005700 bind_register_keywords(&bind_kws);
Willy Tarreau10522fd2008-07-09 20:12:41 +02005701}
5702
Willy Tarreau91861262007-10-17 17:06:05 +02005703/*
5704 * Local variables:
5705 * c-indent-level: 8
5706 * c-basic-offset: 8
5707 * End:
5708 */