blob: c63464d9b5c25cde0396c37423df53ca2fd619ee [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 Tarreaub5ba4ec2012-12-22 23:20:30 +010066static int stats_dump_info_to_buffer(struct stream_interface *si);
Willy Tarreau76153662012-11-26 01:16:39 +010067static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess);
Simon Horman9bd2c732011-06-15 15:18:44 +090068static int stats_dump_sess_to_buffer(struct stream_interface *si);
69static int stats_dump_errors_to_buffer(struct stream_interface *si);
Willy Tarreau44455022012-12-05 23:01:12 +010070static int stats_table_request(struct stream_interface *si, int show);
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010071static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri);
72static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri);
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +010073static int stats_maps_list(struct stream_interface *si);
74static int stats_map_list(struct stream_interface *si);
75static int stats_map_lookup(struct stream_interface *si);
Simon Horman9bd2c732011-06-15 15:18:44 +090076
Willy Tarreaud9bdcd52012-12-22 20:31:10 +010077/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +010078 * cli_io_handler()
79 * -> stats_dump_sess_to_buffer() // "show sess"
80 * -> stats_dump_errors_to_buffer() // "show errors"
81 * -> stats_dump_info_to_buffer() // "show info"
82 * -> stats_dump_stat_to_buffer() // "show stat"
83 * -> stats_dump_csv_header()
84 * -> stats_dump_proxy_to_buffer()
85 * -> stats_dump_fe_stats()
86 * -> stats_dump_li_stats()
87 * -> stats_dump_sv_stats()
88 * -> stats_dump_be_stats()
89 *
90 * http_stats_io_handler()
91 * -> stats_dump_stat_to_buffer() // same as above, but used for CSV or HTML
92 * -> stats_dump_csv_header() // emits the CSV headers (same as above)
93 * -> stats_dump_html_head() // emits the HTML headers
94 * -> stats_dump_html_info() // emits the equivalent of "show info" at the top
95 * -> stats_dump_proxy_to_buffer() // same as above, valid for CSV and HTML
96 * -> stats_dump_html_px_hdr()
97 * -> stats_dump_fe_stats()
98 * -> stats_dump_li_stats()
99 * -> stats_dump_sv_stats()
100 * -> stats_dump_be_stats()
101 * -> stats_dump_html_px_end()
102 * -> stats_dump_html_end() // emits HTML trailer
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100103 */
104
Simon Horman9bd2c732011-06-15 15:18:44 +0900105static struct si_applet cli_applet;
106
107static const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200108 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200109 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Willy Tarreau88ee3972010-07-13 13:48:00 +0200110 " clear table : remove an entry from a table\n"
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100111 " clear map [id] : clear the content of this map\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200112 " help : this message\n"
113 " prompt : toggle interactive mode with prompt\n"
114 " quit : disconnect\n"
115 " show info : report information about the running process\n"
116 " show stat : report counters for each proxy and server\n"
117 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100118 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau69f58c82010-07-12 17:55:33 +0200119 " show table [id]: report table usage stats or dump this table's contents\n"
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100120 " show map [id] : report avalaible maps or dump this map's contents\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +0200121 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +0200122 " set weight : change a server's weight\n"
Willy Tarreau654694e2012-06-07 01:03:16 +0200123 " set table [id] : update or create a table entry's data\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +0100124 " set timeout : change a timeout setting\n"
Willy Tarreau2a0f4d22011-08-02 11:49:05 +0200125 " set maxconn : change a maxconn setting\n"
Willy Tarreauf5b22872011-09-07 16:13:44 +0200126 " set rate-limit : change a rate limiting value\n"
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100127 " set map [id] [key] [value] : modify map entry\n"
128 " add map [id] [key] [value] : add map entry\n"
129 " del map [id] [key] : delete map entry\n"
Willy Tarreaua295edc2011-09-07 23:21:03 +0200130 " disable : put a server or frontend in maintenance mode\n"
131 " enable : re-enable a server or frontend which is in maintenance mode\n"
132 " shutdown : kill a session or a frontend (eg:to release listening ports)\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200133 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200134
Simon Horman9bd2c732011-06-15 15:18:44 +0900135static const char stats_permission_denied_msg[] =
Willy Tarreau6162db22009-10-10 17:13:00 +0200136 "Permission denied\n"
137 "";
138
Willy Tarreau295a8372011-03-10 11:25:07 +0100139/* data transmission states for the stats responses */
140enum {
141 STAT_ST_INIT = 0,
142 STAT_ST_HEAD,
143 STAT_ST_INFO,
144 STAT_ST_LIST,
145 STAT_ST_END,
146 STAT_ST_FIN,
147};
148
149/* data transmission states for the stats responses inside a proxy */
150enum {
151 STAT_PX_ST_INIT = 0,
152 STAT_PX_ST_TH,
153 STAT_PX_ST_FE,
154 STAT_PX_ST_LI,
155 STAT_PX_ST_SV,
156 STAT_PX_ST_BE,
157 STAT_PX_ST_END,
158 STAT_PX_ST_FIN,
159};
160
Cyril Bonté19979e12012-04-04 12:57:21 +0200161extern const char *stat_status_codes[];
162
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200163/* This function is called from the session-level accept() in order to instanciate
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200164 * a new stats socket. It returns a positive value upon success, 0 if the session
Willy Tarreaueb472682010-05-28 18:46:57 +0200165 * needs to be closed and ignored, or a negative value upon critical failure.
166 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900167static int stats_accept(struct session *s)
Willy Tarreaueb472682010-05-28 18:46:57 +0200168{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100169 s->target = &cli_applet.obj_type;
Willy Tarreau4171e9e2013-12-01 12:32:30 +0100170 /* no need to initialize the applet, it will start with st0=st1 = 0 */
Willy Tarreaueb472682010-05-28 18:46:57 +0200171
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200172 tv_zero(&s->logs.tv_request);
173 s->logs.t_queue = 0;
174 s->logs.t_connect = 0;
175 s->logs.t_data = 0;
176 s->logs.t_close = 0;
177 s->logs.bytes_in = s->logs.bytes_out = 0;
178 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
179 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaueb472682010-05-28 18:46:57 +0200180
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200181 s->req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreaueb472682010-05-28 18:46:57 +0200182
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200183 if (s->listener->timeout) {
184 s->req->rto = *s->listener->timeout;
185 s->rep->wto = *s->listener->timeout;
Willy Tarreaueb472682010-05-28 18:46:57 +0200186 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200187 return 1;
Willy Tarreaueb472682010-05-28 18:46:57 +0200188}
189
Willy Tarreau07e9e642010-08-17 21:48:17 +0200190/* allocate a new stats frontend named <name>, and return it
191 * (or NULL in case of lack of memory).
192 */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200193static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
Willy Tarreau07e9e642010-08-17 21:48:17 +0200194{
195 struct proxy *fe;
196
197 fe = (struct proxy *)calloc(1, sizeof(struct proxy));
198 if (!fe)
199 return NULL;
200
Willy Tarreau237250c2011-07-29 01:49:03 +0200201 init_new_proxy(fe);
Willy Tarreau050536d2012-10-04 08:47:34 +0200202 fe->next = proxy;
203 proxy = fe;
Willy Tarreau07e9e642010-08-17 21:48:17 +0200204 fe->last_change = now.tv_sec;
205 fe->id = strdup("GLOBAL");
206 fe->cap = PR_CAP_FE;
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200207 fe->maxconn = 10; /* default to 10 concurrent connections */
208 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200209 fe->conf.file = strdup(file);
210 fe->conf.line = line;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200211 fe->accept = stats_accept;
Willy Tarreau050536d2012-10-04 08:47:34 +0200212
213 /* the stats frontend is the only one able to assign ID #0 */
214 fe->conf.id.key = fe->uuid = 0;
215 eb32_insert(&used_proxy_id, &fe->conf.id);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200216 return fe;
217}
218
Willy Tarreaufbee7132007-10-18 13:53:22 +0200219/* This function parses a "stats" statement in the "global" section. It returns
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200220 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
221 * error message into the <err> buffer which will be preallocated. The trailing
222 * '\n' must not be written. The function must be called with <args> pointing to
223 * the first word after "stats".
Willy Tarreaufbee7132007-10-18 13:53:22 +0200224 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200225static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200226 struct proxy *defpx, const char *file, int line,
227 char **err)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200228{
Willy Tarreau4348fad2012-09-20 16:48:07 +0200229 struct bind_conf *bind_conf;
Willy Tarreauc53d4222012-09-20 20:19:28 +0200230 struct listener *l;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200231
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200232 if (!strcmp(args[1], "socket")) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200233 int cur_arg;
234
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200235 if (*args[2] == 0) {
Willy Tarreauc53d4222012-09-20 20:19:28 +0200236 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 +0200237 return -1;
238 }
239
Willy Tarreau89a63132009-08-16 17:41:45 +0200240 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200241 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200242 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau89a63132009-08-16 17:41:45 +0200243 return -1;
244 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200245 }
246
Willy Tarreau4348fad2012-09-20 16:48:07 +0200247 bind_conf = bind_conf_alloc(&global.stats_fe->conf.bind, file, line, args[2]);
Willy Tarreau290e63a2012-09-20 18:07:14 +0200248 bind_conf->level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200249
Willy Tarreauc53d4222012-09-20 20:19:28 +0200250 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
251 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
252 file, line, args[0], args[1], err && *err ? *err : "error");
253 return -1;
254 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200255
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200256 cur_arg = 3;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200257 while (*args[cur_arg]) {
Willy Tarreaud5781202012-09-22 19:32:35 +0200258 static int bind_dumped;
259 struct bind_kw *kw;
260
261 kw = bind_find_kw(args[cur_arg]);
262 if (kw) {
263 if (!kw->parse) {
264 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
265 args[0], args[1], args[cur_arg]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200266 return -1;
267 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200268
269 if (kw->parse(args, cur_arg, curpx, bind_conf, err) != 0) {
270 if (err && *err)
271 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
272 else
273 memprintf(err, "'%s %s' : error encountered while processing '%s'",
274 args[0], args[1], args[cur_arg]);
Willy Tarreau6162db22009-10-10 17:13:00 +0200275 return -1;
276 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200277
278 cur_arg += 1 + kw->skip;
279 continue;
Willy Tarreau6162db22009-10-10 17:13:00 +0200280 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200281
282 if (!bind_dumped) {
283 bind_dump_kws(err);
284 indent_msg(err, 4);
285 bind_dumped = 1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200286 }
Willy Tarreaud5781202012-09-22 19:32:35 +0200287
288 memprintf(err, "'%s %s' : unknown keyword '%s'.%s%s",
289 args[0], args[1], args[cur_arg],
290 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
291 return -1;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200292 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100293
Willy Tarreauc53d4222012-09-20 20:19:28 +0200294 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
295 l->maxconn = global.stats_fe->maxconn;
296 l->backlog = global.stats_fe->backlog;
297 l->timeout = &global.stats_fe->timeout.client;
298 l->accept = session_accept;
299 l->handler = process_session;
300 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
301 l->nice = -64; /* we want to boost priority for local stats */
302 global.maxsock += l->maxconn;
303 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200304 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200305 else if (!strcmp(args[1], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100306 unsigned timeout;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200307 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100308
309 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200310 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100311 return -1;
312 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200313
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100314 if (!timeout) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200315 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200316 return -1;
317 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200318 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200319 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200320 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreau07e9e642010-08-17 21:48:17 +0200321 return -1;
322 }
323 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200324 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200325 }
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200326 else if (!strcmp(args[1], "maxconn")) {
327 int maxconn = atol(args[2]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200328
329 if (maxconn <= 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200330 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200331 return -1;
332 }
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200333
334 if (!global.stats_fe) {
Willy Tarreaua020fbd2012-09-18 20:05:00 +0200335 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200336 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
Willy Tarreauc2adf8b2011-09-07 12:13:34 +0200337 return -1;
338 }
339 }
340 global.stats_fe->maxconn = maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200341 }
Willy Tarreau35b7b162012-10-22 23:17:18 +0200342 else if (!strcmp(args[1], "bind-process")) { /* enable the socket only on some processes */
343 int cur_arg = 2;
344 unsigned int set = 0;
345
Willy Tarreau91319572013-04-20 09:48:50 +0200346 if (!global.stats_fe) {
347 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
348 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
349 return -1;
350 }
351 }
352
Willy Tarreau35b7b162012-10-22 23:17:18 +0200353 while (*args[cur_arg]) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100354 unsigned int low, high;
355
Willy Tarreau35b7b162012-10-22 23:17:18 +0200356 if (strcmp(args[cur_arg], "all") == 0) {
357 set = 0;
358 break;
359 }
360 else if (strcmp(args[cur_arg], "odd") == 0) {
361 set |= 0x55555555;
362 }
363 else if (strcmp(args[cur_arg], "even") == 0) {
364 set |= 0xAAAAAAAA;
365 }
Willy Tarreau83d84cf2012-11-22 01:04:31 +0100366 else if (isdigit((int)*args[cur_arg])) {
Willy Tarreau110ecc12012-11-15 17:50:01 +0100367 char *dash = strchr(args[cur_arg], '-');
368
369 low = high = str2uic(args[cur_arg]);
370 if (dash)
371 high = str2uic(dash + 1);
372
373 if (high < low) {
374 unsigned int swap = low;
375 low = high;
376 high = swap;
377 }
378
379 if (low < 1 || high > 32) {
380 memprintf(err, "'%s %s' supports process numbers from 1 to 32.\n",
381 args[0], args[1]);
Willy Tarreau35b7b162012-10-22 23:17:18 +0200382 return -1;
383 }
Willy Tarreau110ecc12012-11-15 17:50:01 +0100384
385 while (low <= high)
386 set |= 1 << (low++ - 1);
387 }
388 else {
389 memprintf(err,
390 "'%s %s' expects 'all', 'odd', 'even', or a list of process ranges with numbers from 1 to 32.\n",
391 args[0], args[1]);
392 return -1;
Willy Tarreau35b7b162012-10-22 23:17:18 +0200393 }
394 cur_arg++;
395 }
396 global.stats_fe->bind_proc = set;
397 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200398 else {
Willy Tarreau35b7b162012-10-22 23:17:18 +0200399 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200400 return -1;
401 }
402 return 0;
403}
404
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100405/* Dumps the stats CSV header to the trash buffer which. The caller is responsible
406 * for clearing it if needed.
407 */
408static void stats_dump_csv_header()
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100409{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +0100410 chunk_appendf(&trash,
411 "# pxname,svname,"
412 "qcur,qmax,"
413 "scur,smax,slim,stot,"
414 "bin,bout,"
415 "dreq,dresp,"
416 "ereq,econ,eresp,"
417 "wretr,wredis,"
418 "status,weight,act,bck,"
419 "chkfail,chkdown,lastchg,downtime,qlimit,"
420 "pid,iid,sid,throttle,lbtot,tracked,type,"
421 "rate,rate_lim,rate_max,"
422 "check_status,check_code,check_duration,"
423 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
424 "req_rate,req_rate_max,req_tot,"
425 "cli_abrt,srv_abrt,"
426 "comp_in,comp_out,comp_byp,comp_rsp,"
427 "\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100428}
429
Simon Hormand9366582011-06-15 15:18:45 +0900430/* print a string of text buffer to <out>. The format is :
431 * Non-printable chars \t, \n, \r and \e are * encoded in C format.
432 * Other non-printable chars are encoded "\xHH". Space and '\' are also escaped.
433 * Print stopped if null char or <bsize> is reached, or if no more place in the chunk.
434 */
435static int dump_text(struct chunk *out, const char *buf, int bsize)
436{
437 unsigned char c;
438 int ptr = 0;
439
440 while (buf[ptr] && ptr < bsize) {
441 c = buf[ptr];
442 if (isprint(c) && isascii(c) && c != '\\' && c != ' ') {
443 if (out->len > out->size - 1)
444 break;
445 out->str[out->len++] = c;
446 }
447 else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\' || c == ' ') {
448 if (out->len > out->size - 2)
449 break;
450 out->str[out->len++] = '\\';
451 switch (c) {
452 case ' ': c = ' '; break;
453 case '\t': c = 't'; break;
454 case '\n': c = 'n'; break;
455 case '\r': c = 'r'; break;
456 case '\e': c = 'e'; break;
457 case '\\': c = '\\'; break;
458 }
459 out->str[out->len++] = c;
460 }
461 else {
462 if (out->len > out->size - 4)
463 break;
464 out->str[out->len++] = '\\';
465 out->str[out->len++] = 'x';
466 out->str[out->len++] = hextab[(c >> 4) & 0xF];
467 out->str[out->len++] = hextab[c & 0xF];
468 }
469 ptr++;
470 }
471
472 return ptr;
473}
474
475/* print a buffer in hexa.
476 * Print stopped if <bsize> is reached, or if no more place in the chunk.
477 */
478static int dump_binary(struct chunk *out, const char *buf, int bsize)
479{
480 unsigned char c;
481 int ptr = 0;
482
483 while (ptr < bsize) {
484 c = buf[ptr];
485
486 if (out->len > out->size - 2)
487 break;
488 out->str[out->len++] = hextab[(c >> 4) & 0xF];
489 out->str[out->len++] = hextab[c & 0xF];
490
491 ptr++;
492 }
493 return ptr;
494}
495
496/* Dump the status of a table to a stream interface's
497 * read buffer. It returns 0 if the output buffer is full
498 * and needs to be called again, otherwise non-zero.
499 */
500static int stats_dump_table_head_to_buffer(struct chunk *msg, struct stream_interface *si,
501 struct proxy *proxy, struct proxy *target)
502{
Willy Tarreau306f8302013-07-08 15:53:06 +0200503 struct session *s = session_from_task(si->owner);
Simon Hormand9366582011-06-15 15:18:45 +0900504
Willy Tarreau77804732012-10-29 16:14:26 +0100505 chunk_appendf(msg, "# table: %s, type: %s, size:%d, used:%d\n",
Simon Hormand9366582011-06-15 15:18:45 +0900506 proxy->id, stktable_types[proxy->table.type].kw, proxy->table.size, proxy->table.current);
507
508 /* any other information should be dumped here */
509
Willy Tarreau290e63a2012-09-20 18:07:14 +0200510 if (target && s->listener->bind_conf->level < ACCESS_LVL_OPER)
Willy Tarreau77804732012-10-29 16:14:26 +0100511 chunk_appendf(msg, "# contents not dumped due to insufficient privileges\n");
Simon Hormand9366582011-06-15 15:18:45 +0900512
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200513 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900514 return 0;
515
516 return 1;
517}
518
519/* Dump the a table entry to a stream interface's
520 * read buffer. It returns 0 if the output buffer is full
521 * and needs to be called again, otherwise non-zero.
522 */
523static int stats_dump_table_entry_to_buffer(struct chunk *msg, struct stream_interface *si,
524 struct proxy *proxy, struct stksess *entry)
525{
526 int dt;
527
Willy Tarreau77804732012-10-29 16:14:26 +0100528 chunk_appendf(msg, "%p:", entry);
Simon Hormand9366582011-06-15 15:18:45 +0900529
530 if (proxy->table.type == STKTABLE_TYPE_IP) {
531 char addr[INET_ADDRSTRLEN];
532 inet_ntop(AF_INET, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100533 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900534 }
535 else if (proxy->table.type == STKTABLE_TYPE_IPV6) {
536 char addr[INET6_ADDRSTRLEN];
537 inet_ntop(AF_INET6, (const void *)&entry->key.key, addr, sizeof(addr));
Willy Tarreau77804732012-10-29 16:14:26 +0100538 chunk_appendf(msg, " key=%s", addr);
Simon Hormand9366582011-06-15 15:18:45 +0900539 }
540 else if (proxy->table.type == STKTABLE_TYPE_INTEGER) {
Willy Tarreau77804732012-10-29 16:14:26 +0100541 chunk_appendf(msg, " key=%u", *(unsigned int *)entry->key.key);
Simon Hormand9366582011-06-15 15:18:45 +0900542 }
543 else if (proxy->table.type == STKTABLE_TYPE_STRING) {
Willy Tarreau77804732012-10-29 16:14:26 +0100544 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900545 dump_text(msg, (const char *)entry->key.key, proxy->table.key_size);
546 }
547 else {
Willy Tarreau77804732012-10-29 16:14:26 +0100548 chunk_appendf(msg, " key=");
Simon Hormand9366582011-06-15 15:18:45 +0900549 dump_binary(msg, (const char *)entry->key.key, proxy->table.key_size);
550 }
551
Willy Tarreau77804732012-10-29 16:14:26 +0100552 chunk_appendf(msg, " use=%d exp=%d", entry->ref_cnt - 1, tick_remain(now_ms, entry->expire));
Simon Hormand9366582011-06-15 15:18:45 +0900553
554 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
555 void *ptr;
556
557 if (proxy->table.data_ofs[dt] == 0)
558 continue;
559 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
Willy Tarreau77804732012-10-29 16:14:26 +0100560 chunk_appendf(msg, " %s(%d)=", stktable_data_types[dt].name, proxy->table.data_arg[dt].u);
Simon Hormand9366582011-06-15 15:18:45 +0900561 else
Willy Tarreau77804732012-10-29 16:14:26 +0100562 chunk_appendf(msg, " %s=", stktable_data_types[dt].name);
Simon Hormand9366582011-06-15 15:18:45 +0900563
564 ptr = stktable_data_ptr(&proxy->table, entry, dt);
565 switch (stktable_data_types[dt].std_type) {
566 case STD_T_SINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100567 chunk_appendf(msg, "%d", stktable_data_cast(ptr, std_t_sint));
Simon Hormand9366582011-06-15 15:18:45 +0900568 break;
569 case STD_T_UINT:
Willy Tarreau77804732012-10-29 16:14:26 +0100570 chunk_appendf(msg, "%u", stktable_data_cast(ptr, std_t_uint));
Simon Hormand9366582011-06-15 15:18:45 +0900571 break;
572 case STD_T_ULL:
Willy Tarreau77804732012-10-29 16:14:26 +0100573 chunk_appendf(msg, "%lld", stktable_data_cast(ptr, std_t_ull));
Simon Hormand9366582011-06-15 15:18:45 +0900574 break;
575 case STD_T_FRQP:
Willy Tarreau77804732012-10-29 16:14:26 +0100576 chunk_appendf(msg, "%d",
Simon Hormand9366582011-06-15 15:18:45 +0900577 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
578 proxy->table.data_arg[dt].u));
579 break;
580 }
581 }
Willy Tarreau77804732012-10-29 16:14:26 +0100582 chunk_appendf(msg, "\n");
Simon Hormand9366582011-06-15 15:18:45 +0900583
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200584 if (bi_putchk(si->ib, msg) == -1)
Simon Hormand9366582011-06-15 15:18:45 +0900585 return 0;
586
587 return 1;
588}
589
Willy Tarreaudec98142012-06-06 23:37:08 +0200590static void stats_sock_table_key_request(struct stream_interface *si, char **args, int action)
Simon Horman121f3052011-06-15 15:18:46 +0900591{
Willy Tarreau306f8302013-07-08 15:53:06 +0200592 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100593 struct appctx *appctx = __objt_appctx(si->end);
594 struct proxy *px = appctx->ctx.table.target;
Simon Horman121f3052011-06-15 15:18:46 +0900595 struct stksess *ts;
Simon Hormancec9a222011-06-15 15:18:51 +0900596 uint32_t uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900597 unsigned char ip6_key[sizeof(struct in6_addr)];
Willy Tarreau654694e2012-06-07 01:03:16 +0200598 long long value;
599 int data_type;
Willy Tarreau47060b62013-08-01 21:11:42 +0200600 int cur_arg;
Willy Tarreau654694e2012-06-07 01:03:16 +0200601 void *ptr;
602 struct freq_ctr_period *frqp;
Simon Horman121f3052011-06-15 15:18:46 +0900603
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100604 appctx->st0 = STAT_CLI_OUTPUT;
Simon Horman121f3052011-06-15 15:18:46 +0900605
606 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100607 appctx->ctx.cli.msg = "Key value expected\n";
608 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900609 return;
610 }
611
Simon Hormanc5b89f62011-06-15 15:18:50 +0900612 switch (px->table.type) {
613 case STKTABLE_TYPE_IP:
Simon Hormancec9a222011-06-15 15:18:51 +0900614 uint32_key = htonl(inetaddr_host(args[4]));
Willy Tarreau07115412012-10-29 21:56:59 +0100615 static_table_key->key = &uint32_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900616 break;
617 case STKTABLE_TYPE_IPV6:
618 inet_pton(AF_INET6, args[4], ip6_key);
Willy Tarreau07115412012-10-29 21:56:59 +0100619 static_table_key->key = &ip6_key;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900620 break;
Simon Hormancec9a222011-06-15 15:18:51 +0900621 case STKTABLE_TYPE_INTEGER:
622 {
623 char *endptr;
624 unsigned long val;
625 errno = 0;
626 val = strtoul(args[4], &endptr, 10);
627 if ((errno == ERANGE && val == ULONG_MAX) ||
628 (errno != 0 && val == 0) || endptr == args[4] ||
629 val > 0xffffffff) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100630 appctx->ctx.cli.msg = "Invalid key\n";
631 appctx->st0 = STAT_CLI_PRINT;
Simon Hormancec9a222011-06-15 15:18:51 +0900632 return;
633 }
634 uint32_key = (uint32_t) val;
Willy Tarreau07115412012-10-29 21:56:59 +0100635 static_table_key->key = &uint32_key;
Simon Hormancec9a222011-06-15 15:18:51 +0900636 break;
637 }
638 break;
Simon Horman619e3cc2011-06-15 15:18:52 +0900639 case STKTABLE_TYPE_STRING:
Willy Tarreau07115412012-10-29 21:56:59 +0100640 static_table_key->key = args[4];
641 static_table_key->key_len = strlen(args[4]);
Simon Horman619e3cc2011-06-15 15:18:52 +0900642 break;
Simon Hormanc5b89f62011-06-15 15:18:50 +0900643 default:
Willy Tarreaudec98142012-06-06 23:37:08 +0200644 switch (action) {
645 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100646 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 +0200647 break;
648 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100649 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 +0200650 break;
651 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100652 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200653 break;
654 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100655 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900656 return;
657 }
658
659 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +0200660 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100661 appctx->ctx.cli.msg = stats_permission_denied_msg;
662 appctx->st0 = STAT_CLI_PRINT;
Simon Horman121f3052011-06-15 15:18:46 +0900663 return;
664 }
665
Willy Tarreau07115412012-10-29 21:56:59 +0100666 ts = stktable_lookup_key(&px->table, static_table_key);
Simon Horman17bce342011-06-15 15:18:47 +0900667
Willy Tarreaudec98142012-06-06 23:37:08 +0200668 switch (action) {
669 case STAT_CLI_O_TAB:
670 if (!ts)
671 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100672 chunk_reset(&trash);
673 if (!stats_dump_table_head_to_buffer(&trash, si, px, px))
Simon Horman17bce342011-06-15 15:18:47 +0900674 return;
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100675 stats_dump_table_entry_to_buffer(&trash, si, px, ts);
Simon Horman121f3052011-06-15 15:18:46 +0900676 return;
Willy Tarreaudec98142012-06-06 23:37:08 +0200677
678 case STAT_CLI_O_CLR:
679 if (!ts)
680 return;
681 if (ts->ref_cnt) {
682 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100683 appctx->ctx.cli.msg = "Entry currently in use, cannot remove\n";
684 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200685 return;
686 }
687 stksess_kill(&px->table, ts);
688 break;
Simon Horman17bce342011-06-15 15:18:47 +0900689
Willy Tarreau654694e2012-06-07 01:03:16 +0200690 case STAT_CLI_O_SET:
Willy Tarreau654694e2012-06-07 01:03:16 +0200691 if (ts)
692 stktable_touch(&px->table, ts, 1);
693 else {
Willy Tarreau07115412012-10-29 21:56:59 +0100694 ts = stksess_new(&px->table, static_table_key);
Willy Tarreau654694e2012-06-07 01:03:16 +0200695 if (!ts) {
696 /* don't delete an entry which is currently referenced */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100697 appctx->ctx.cli.msg = "Unable to allocate a new entry\n";
698 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200699 return;
700 }
701 stktable_store(&px->table, ts, 1);
702 }
703
Willy Tarreau47060b62013-08-01 21:11:42 +0200704 for (cur_arg = 5; *args[cur_arg]; cur_arg += 2) {
705 if (strncmp(args[cur_arg], "data.", 5) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100706 appctx->ctx.cli.msg = "\"data.<type>\" followed by a value expected\n";
707 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200708 return;
709 }
710
711 data_type = stktable_get_data_type(args[cur_arg] + 5);
712 if (data_type < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100713 appctx->ctx.cli.msg = "Unknown data type\n";
714 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200715 return;
716 }
717
718 if (!px->table.data_ofs[data_type]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100719 appctx->ctx.cli.msg = "Data type not stored in this table\n";
720 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200721 return;
722 }
723
724 if (!*args[cur_arg+1] || strl2llrc(args[cur_arg+1], strlen(args[cur_arg+1]), &value) != 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100725 appctx->ctx.cli.msg = "Require a valid integer value to store\n";
726 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau47060b62013-08-01 21:11:42 +0200727 return;
728 }
729
730 ptr = stktable_data_ptr(&px->table, ts, data_type);
731
732 switch (stktable_data_types[data_type].std_type) {
733 case STD_T_SINT:
734 stktable_data_cast(ptr, std_t_sint) = value;
735 break;
736 case STD_T_UINT:
737 stktable_data_cast(ptr, std_t_uint) = value;
738 break;
739 case STD_T_ULL:
740 stktable_data_cast(ptr, std_t_ull) = value;
741 break;
742 case STD_T_FRQP:
743 /* We set both the current and previous values. That way
744 * the reported frequency is stable during all the period
745 * then slowly fades out. This allows external tools to
746 * push measures without having to update them too often.
747 */
748 frqp = &stktable_data_cast(ptr, std_t_frqp);
749 frqp->curr_tick = now_ms;
750 frqp->prev_ctr = 0;
751 frqp->curr_ctr = value;
752 break;
753 }
Willy Tarreau654694e2012-06-07 01:03:16 +0200754 }
755 break;
756
Willy Tarreaudec98142012-06-06 23:37:08 +0200757 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100758 appctx->ctx.cli.msg = "Unknown action\n";
759 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaudec98142012-06-06 23:37:08 +0200760 break;
Simon Horman121f3052011-06-15 15:18:46 +0900761 }
Simon Horman121f3052011-06-15 15:18:46 +0900762}
763
Willy Tarreau654694e2012-06-07 01:03:16 +0200764static void stats_sock_table_data_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900765{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100766 struct appctx *appctx = __objt_appctx(si->end);
767
Willy Tarreau04b3a192013-04-13 09:41:37 +0200768 if (action != STAT_CLI_O_TAB && action != STAT_CLI_O_CLR) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100769 appctx->ctx.cli.msg = "content-based lookup is only supported with the \"show\" and \"clear\" actions";
770 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau654694e2012-06-07 01:03:16 +0200771 return;
772 }
773
Simon Hormand5b9fd92011-06-15 15:18:48 +0900774 /* condition on stored data value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100775 appctx->ctx.table.data_type = stktable_get_data_type(args[3] + 5);
776 if (appctx->ctx.table.data_type < 0) {
777 appctx->ctx.cli.msg = "Unknown data type\n";
778 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900779 return;
780 }
781
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100782 if (!((struct proxy *)appctx->ctx.table.target)->table.data_ofs[appctx->ctx.table.data_type]) {
783 appctx->ctx.cli.msg = "Data type not stored in this table\n";
784 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900785 return;
786 }
787
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100788 appctx->ctx.table.data_op = get_std_op(args[4]);
789 if (appctx->ctx.table.data_op < 0) {
790 appctx->ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
791 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900792 return;
793 }
794
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100795 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &appctx->ctx.table.value) != 0) {
796 appctx->ctx.cli.msg = "Require a valid integer value to compare against\n";
797 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900798 return;
799 }
800}
801
Willy Tarreaudec98142012-06-06 23:37:08 +0200802static void stats_sock_table_request(struct stream_interface *si, char **args, int action)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900803{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100804 struct appctx *appctx = __objt_appctx(si->end);
805
806 appctx->ctx.table.data_type = -1;
807 appctx->st2 = STAT_ST_INIT;
808 appctx->ctx.table.target = NULL;
809 appctx->ctx.table.proxy = NULL;
810 appctx->ctx.table.entry = NULL;
811 appctx->st0 = action;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900812
813 if (*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100814 appctx->ctx.table.target = find_stktable(args[2]);
815 if (!appctx->ctx.table.target) {
816 appctx->ctx.cli.msg = "No such table\n";
817 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900818 return;
819 }
820 }
821 else {
Willy Tarreaudec98142012-06-06 23:37:08 +0200822 if (action != STAT_CLI_O_TAB)
Simon Hormand5b9fd92011-06-15 15:18:48 +0900823 goto err_args;
824 return;
825 }
826
827 if (strcmp(args[3], "key") == 0)
Willy Tarreaudec98142012-06-06 23:37:08 +0200828 stats_sock_table_key_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900829 else if (strncmp(args[3], "data.", 5) == 0)
Willy Tarreau654694e2012-06-07 01:03:16 +0200830 stats_sock_table_data_request(si, args, action);
Simon Hormanc88b8872011-06-15 15:18:49 +0900831 else if (*args[3])
Simon Hormand5b9fd92011-06-15 15:18:48 +0900832 goto err_args;
833
834 return;
835
836err_args:
Willy Tarreaudec98142012-06-06 23:37:08 +0200837 switch (action) {
838 case STAT_CLI_O_TAB:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100839 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 +0200840 break;
841 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100842 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 +0200843 break;
844 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100845 appctx->ctx.cli.msg = "Unknown action\n";
Willy Tarreaudec98142012-06-06 23:37:08 +0200846 break;
847 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100848 appctx->st0 = STAT_CLI_PRINT;
Simon Hormand5b9fd92011-06-15 15:18:48 +0900849}
850
Willy Tarreau532a4502011-09-07 22:37:44 +0200851/* Expects to find a frontend named <arg> and returns it, otherwise displays various
852 * adequate error messages and returns NULL. This function also expects the session
853 * level to be admin.
854 */
855static struct proxy *expect_frontend_admin(struct session *s, struct stream_interface *si, const char *arg)
856{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100857 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau532a4502011-09-07 22:37:44 +0200858 struct proxy *px;
859
Willy Tarreau290e63a2012-09-20 18:07:14 +0200860 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100861 appctx->ctx.cli.msg = stats_permission_denied_msg;
862 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200863 return NULL;
864 }
865
866 if (!*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100867 appctx->ctx.cli.msg = "A frontend name is expected.\n";
868 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200869 return NULL;
870 }
871
872 px = findproxy(arg, PR_CAP_FE);
873 if (!px) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100874 appctx->ctx.cli.msg = "No such frontend.\n";
875 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +0200876 return NULL;
877 }
878 return px;
879}
880
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200881/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
882 * and returns the pointer to the server. Otherwise, display adequate error messages
883 * and returns NULL. This function also expects the session level to be admin. Note:
884 * the <arg> is modified to remove the '/'.
885 */
886static struct server *expect_server_admin(struct session *s, struct stream_interface *si, char *arg)
887{
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100888 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200889 struct proxy *px;
890 struct server *sv;
891 char *line;
892
Willy Tarreau290e63a2012-09-20 18:07:14 +0200893 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100894 appctx->ctx.cli.msg = stats_permission_denied_msg;
895 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200896 return NULL;
897 }
898
899 /* split "backend/server" and make <line> point to server */
900 for (line = arg; *line; line++)
901 if (*line == '/') {
902 *line++ = '\0';
903 break;
904 }
905
906 if (!*line || !*arg) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100907 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
908 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200909 return NULL;
910 }
911
912 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100913 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
914 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200915 return NULL;
916 }
917
918 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100919 appctx->ctx.cli.msg = "Proxy is disabled.\n";
920 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaud52c41e2011-09-07 23:41:01 +0200921 return NULL;
922 }
923
924 return sv;
925}
926
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +0100927/* This function is used with map management. It permits to browse each
928 * really allocated descriptors of one map reference. The variable
929 * <appctx->ctx.map.ref> must contain the map reference to browse.
930 * The variable <appctx->ctx.map.desc> contain the descriptor of the
931 * current allocated map descriptor. This variable must be initialized
932 * to NULL.
933 */
934static inline void stats_map_lookup_next(struct stream_interface *si)
935{
936 struct appctx *appctx = __objt_appctx(si->end);
937
938 /* search the next allocated map */
939 while (1) {
940 /* get next descriptor */
941 if (!appctx->ctx.map.desc)
942 appctx->ctx.map.desc = LIST_NEXT(&appctx->ctx.map.ref->maps,
943 struct map_descriptor *, list);
944 else
945 appctx->ctx.map.desc = LIST_NEXT(&appctx->ctx.map.desc->list,
946 struct map_descriptor *, list);
947
948 /* detect end of list */
949 if (&appctx->ctx.map.desc->list == &appctx->ctx.map.ref->maps) {
950 appctx->ctx.map.desc = NULL;
951 return;
952 }
953
954 /* do not lookup this entry */
955 if (!appctx->ctx.map.desc->do_free)
956 continue;
957
958 /* avalaible descriptor */
959 return;
960 }
961}
962
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200963/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200964 * called from an applet running in a stream interface. The function returns 1
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100965 * if the request was understood, otherwise zero. It sets appctx->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200966 * designating the function which will have to process the request, which can
967 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200968 */
Simon Horman9bd2c732011-06-15 15:18:44 +0900969static int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200970{
Willy Tarreau306f8302013-07-08 15:53:06 +0200971 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +0100972 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200973 char *args[MAX_STATS_ARGS + 1];
974 int arg;
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +0100975 int i, j;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200976
977 while (isspace((unsigned char)*line))
978 line++;
979
980 arg = 0;
981 args[arg] = line;
982
983 while (*line && arg < MAX_STATS_ARGS) {
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +0100984 if (*line == '\\') {
985 line++;
986 if (*line == '\0')
987 break;
988 }
989 else if (isspace((unsigned char)*line)) {
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200990 *line++ = '\0';
991
992 while (isspace((unsigned char)*line))
993 line++;
994
995 args[++arg] = line;
996 continue;
997 }
998
999 line++;
1000 }
1001
1002 while (++arg <= MAX_STATS_ARGS)
1003 args[arg] = line;
1004
Thierry FOURNIER48bcfda2013-12-10 18:54:58 +01001005 /* remove \ */
1006 arg = 0;
1007 while (*args[arg] != '\0') {
1008 j = 0;
1009 for (i=0; args[arg][i] != '\0'; i++) {
1010 if (args[arg][i] == '\\')
1011 continue;
1012 args[arg][j] = args[arg][i];
1013 j++;
1014 }
1015 args[arg][j] = '\0';
1016 arg++;
1017 }
1018
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001019 appctx->ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001020 if (strcmp(args[0], "show") == 0) {
1021 if (strcmp(args[1], "stat") == 0) {
1022 if (*args[2] && *args[3] && *args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001023 appctx->ctx.stats.flags |= STAT_BOUND;
1024 appctx->ctx.stats.iid = atoi(args[2]);
1025 appctx->ctx.stats.type = atoi(args[3]);
1026 appctx->ctx.stats.sid = atoi(args[4]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001027 }
1028
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001029 appctx->st2 = STAT_ST_INIT;
1030 appctx->st0 = STAT_CLI_O_STAT; // stats_dump_stat_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001031 }
1032 else if (strcmp(args[1], "info") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001033 appctx->st2 = STAT_ST_INIT;
1034 appctx->st0 = STAT_CLI_O_INFO; // stats_dump_info_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001035 }
1036 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001037 appctx->st2 = STAT_ST_INIT;
Willy Tarreau290e63a2012-09-20 18:07:14 +02001038 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001039 appctx->ctx.cli.msg = stats_permission_denied_msg;
1040 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001041 return 1;
1042 }
Willy Tarreau76153662012-11-26 01:16:39 +01001043 if (*args[2] && strcmp(args[2], "all") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001044 appctx->ctx.sess.target = (void *)-1;
Willy Tarreau76153662012-11-26 01:16:39 +01001045 else if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001046 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01001047 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001048 appctx->ctx.sess.target = NULL;
1049 appctx->ctx.sess.section = 0; /* start with session status */
1050 appctx->ctx.sess.pos = 0;
1051 appctx->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001052 }
1053 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau290e63a2012-09-20 18:07:14 +02001054 if (s->listener->bind_conf->level < ACCESS_LVL_OPER) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001055 appctx->ctx.cli.msg = stats_permission_denied_msg;
1056 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001057 return 1;
1058 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001059 if (*args[2])
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001060 appctx->ctx.errors.iid = atoi(args[2]);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001061 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001062 appctx->ctx.errors.iid = -1;
1063 appctx->ctx.errors.px = NULL;
1064 appctx->st2 = STAT_ST_INIT;
1065 appctx->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001066 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02001067 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001068 stats_sock_table_request(si, args, STAT_CLI_O_TAB);
Willy Tarreau69f58c82010-07-12 17:55:33 +02001069 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001070 else if (strcmp(args[1], "map") == 0) {
1071
1072 /* no parameter: display all map avalaible */
1073 if (!*args[2]) {
1074 appctx->st2 = STAT_ST_INIT;
1075 appctx->st0 = STAT_CLI_O_MAPS;
1076 return 1;
1077 }
1078
1079 /* lookup into the maps */
1080 appctx->ctx.map.ref = map_get_reference(args[2]);
1081 if (!appctx->ctx.map.ref) {
1082 appctx->ctx.cli.msg = "Unknown map reference.\n";
1083 appctx->st0 = STAT_CLI_PRINT;
1084 return 1;
1085 }
1086 appctx->st2 = STAT_ST_INIT;
1087 appctx->st0 = STAT_CLI_O_MAP;
1088 }
Aman Guptaceafb4a2012-04-02 18:57:54 -07001089 else { /* neither "stat" nor "info" nor "sess" nor "errors" nor "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001090 return 0;
1091 }
1092 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001093 else if (strcmp(args[0], "clear") == 0) {
1094 if (strcmp(args[1], "counters") == 0) {
1095 struct proxy *px;
1096 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001097 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001098 int clrall = 0;
1099
1100 if (strcmp(args[2], "all") == 0)
1101 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001102
Willy Tarreau6162db22009-10-10 17:13:00 +02001103 /* check permissions */
Willy Tarreau290e63a2012-09-20 18:07:14 +02001104 if (s->listener->bind_conf->level < ACCESS_LVL_OPER ||
1105 (clrall && s->listener->bind_conf->level < ACCESS_LVL_ADMIN)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001106 appctx->ctx.cli.msg = stats_permission_denied_msg;
1107 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +02001108 return 1;
1109 }
1110
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001111 for (px = proxy; px; px = px->next) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001112 if (clrall) {
1113 memset(&px->be_counters, 0, sizeof(px->be_counters));
1114 memset(&px->fe_counters, 0, sizeof(px->fe_counters));
1115 }
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001116 else {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001117 px->be_counters.conn_max = 0;
1118 px->be_counters.p.http.rps_max = 0;
1119 px->be_counters.sps_max = 0;
1120 px->be_counters.cps_max = 0;
1121 px->be_counters.nbpend_max = 0;
1122
1123 px->fe_counters.conn_max = 0;
1124 px->fe_counters.p.http.rps_max = 0;
1125 px->fe_counters.sps_max = 0;
1126 px->fe_counters.cps_max = 0;
1127 px->fe_counters.nbpend_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001128 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001129
1130 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001131 if (clrall)
1132 memset(&sv->counters, 0, sizeof(sv->counters));
1133 else {
1134 sv->counters.cur_sess_max = 0;
1135 sv->counters.nbpend_max = 0;
1136 sv->counters.sps_max = 0;
1137 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001138
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001139 list_for_each_entry(li, &px->conf.listeners, by_fe)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +02001140 if (li->counters) {
1141 if (clrall)
1142 memset(li->counters, 0, sizeof(*li->counters));
1143 else
1144 li->counters->conn_max = 0;
1145 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001146 }
1147
Willy Tarreau81c25d02011-09-07 15:17:21 +02001148 global.cps_max = 0;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001149 return 1;
1150 }
Willy Tarreau88ee3972010-07-13 13:48:00 +02001151 else if (strcmp(args[1], "table") == 0) {
Willy Tarreaudec98142012-06-06 23:37:08 +02001152 stats_sock_table_request(si, args, STAT_CLI_O_CLR);
Willy Tarreau88ee3972010-07-13 13:48:00 +02001153 /* end of processing */
1154 return 1;
1155 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001156 else if (strcmp(args[1], "map") == 0) {
1157 struct map_reference *mref;
1158 struct map_descriptor *mdesc;
1159 struct map_entry *ent, *nent;
1160
1161 /* no parameter */
1162 if (!*args[2]) {
1163 appctx->ctx.cli.msg = "Expect map reference.\n";
1164 appctx->st0 = STAT_CLI_PRINT;
1165 return 1;
1166 }
1167
1168 /* lookup into the maps */
1169 mref = map_get_reference(args[2]);
1170 if (!mref) {
1171 appctx->ctx.cli.msg = "Unknown map reference.\n";
1172 appctx->st0 = STAT_CLI_PRINT;
1173 return 1;
1174 }
1175
1176 /* clear all maps */
1177 list_for_each_entry(mdesc, &mref->maps, list)
1178 if (mdesc->do_free)
1179 pattern_prune_expr(mdesc->pat);
1180
1181 /* clear map reference */
1182 list_for_each_entry_safe(ent, nent, &mref->entries, list) {
1183 LIST_DEL(&ent->list);
1184 free(ent->key);
1185 free(ent->value);
1186 free(ent);
1187 }
1188
1189 /* return response */
1190 appctx->ctx.cli.msg = "Done.\n";
1191 appctx->st0 = STAT_CLI_PRINT;
1192 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001193 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +02001194 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +02001195 return 0;
1196 }
1197 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001198 else if (strcmp(args[0], "get") == 0) {
1199 if (strcmp(args[1], "weight") == 0) {
1200 struct proxy *px;
1201 struct server *sv;
1202
1203 /* split "backend/server" and make <line> point to server */
1204 for (line = args[2]; *line; line++)
1205 if (*line == '/') {
1206 *line++ = '\0';
1207 break;
1208 }
1209
1210 if (!*line) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001211 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
1212 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001213 return 1;
1214 }
1215
1216 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001217 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
1218 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +02001219 return 1;
1220 }
1221
1222 /* return server's effective weight at the moment */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001223 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
1224 bi_putstr(si->ib, trash.str);
Willy Tarreau38338fa2009-10-10 18:37:29 +02001225 return 1;
1226 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001227 else if (strcmp(args[1], "map") == 0) {
1228
1229 /* no parameter */
1230 if (!*args[2] || !*args[3]) {
1231 appctx->ctx.cli.msg = "Expect map reference and required key.\n";
1232 appctx->st0 = STAT_CLI_PRINT;
1233 return 1;
1234 }
1235
1236 /* lookup into the maps */
1237 appctx->ctx.map.ref = map_get_reference(args[2]);
1238 if (!appctx->ctx.map.ref) {
1239 appctx->ctx.cli.msg = "Unknown map reference.\n";
1240 appctx->st0 = STAT_CLI_PRINT;
1241 return 1;
1242 }
1243
1244 /* copy input string */
1245 appctx->ctx.map.chunk.len = strlen(args[3]);
1246 appctx->ctx.map.chunk.size = appctx->ctx.map.chunk.len + 1;
1247 appctx->ctx.map.chunk.str = strdup(args[3]);
1248 if (!appctx->ctx.map.chunk.str) {
1249 appctx->ctx.cli.msg = "Out of memory error.\n";
1250 appctx->st0 = STAT_CLI_PRINT;
1251 return 1;
1252 }
1253
1254 /* prepare response */
1255 appctx->st2 = STAT_ST_INIT;
1256 appctx->st0 = STAT_CLI_O_MLOOK;
1257 }
Willy Tarreau38338fa2009-10-10 18:37:29 +02001258 else { /* not "get weight" */
1259 return 0;
1260 }
1261 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001262 else if (strcmp(args[0], "set") == 0) {
1263 if (strcmp(args[1], "weight") == 0) {
Willy Tarreau4483d432009-10-10 19:30:08 +02001264 struct server *sv;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001265 const char *warning;
Willy Tarreau4483d432009-10-10 19:30:08 +02001266
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001267 sv = expect_server_admin(s, si, args[2]);
1268 if (!sv)
Willy Tarreau4483d432009-10-10 19:30:08 +02001269 return 1;
Willy Tarreau4483d432009-10-10 19:30:08 +02001270
Simon Horman7d09b9a2013-02-12 10:45:51 +09001271 warning = server_parse_weight_change_request(sv, args[3]);
Simon Horman8c3d0be2013-11-25 10:46:40 +09001272 /*
1273 * The user-weight may now be zero and thus
1274 * the server considered to be draining.
1275 * Update the server's drain state as necessary.
1276 */
1277 set_server_drain_state(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001278 if (warning) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001279 appctx->ctx.cli.msg = warning;
1280 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +02001281 }
Willy Tarreau4483d432009-10-10 19:30:08 +02001282 return 1;
1283 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001284 else if (strcmp(args[1], "timeout") == 0) {
1285 if (strcmp(args[2], "cli") == 0) {
1286 unsigned timeout;
1287 const char *res;
1288
1289 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001290 appctx->ctx.cli.msg = "Expects an integer value.\n";
1291 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001292 return 1;
1293 }
1294
1295 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1296 if (res || timeout < 1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001297 appctx->ctx.cli.msg = "Invalid timeout value.\n";
1298 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001299 return 1;
1300 }
1301
1302 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
1303 return 1;
1304 }
1305 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001306 appctx->ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
1307 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau7aabd112010-01-26 10:59:06 +01001308 return 1;
1309 }
1310 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001311 else if (strcmp(args[1], "maxconn") == 0) {
1312 if (strcmp(args[2], "frontend") == 0) {
1313 struct proxy *px;
1314 struct listener *l;
1315 int v;
1316
Willy Tarreau532a4502011-09-07 22:37:44 +02001317 px = expect_frontend_admin(s, si, args[3]);
1318 if (!px)
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001319 return 1;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001320
1321 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001322 appctx->ctx.cli.msg = "Integer value expected.\n";
1323 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001324 return 1;
1325 }
1326
1327 v = atoi(args[4]);
Willy Tarreau3c7a79d2012-09-26 21:07:15 +02001328 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001329 appctx->ctx.cli.msg = "Value out of range.\n";
1330 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001331 return 1;
1332 }
1333
1334 /* OK, the value is fine, so we assign it to the proxy and to all of
1335 * its listeners. The blocked ones will be dequeued.
1336 */
1337 px->maxconn = v;
Willy Tarreaua7944ad2012-09-26 21:03:11 +02001338 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001339 l->maxconn = v;
1340 if (l->state == LI_FULL)
1341 resume_listener(l);
1342 }
1343
1344 if (px->maxconn > px->feconn && !LIST_ISEMPTY(&s->fe->listener_queue))
1345 dequeue_all_listeners(&s->fe->listener_queue);
1346
1347 return 1;
1348 }
Willy Tarreau91886b62011-09-07 14:38:31 +02001349 else if (strcmp(args[2], "global") == 0) {
1350 int v;
1351
Willy Tarreau290e63a2012-09-20 18:07:14 +02001352 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001353 appctx->ctx.cli.msg = stats_permission_denied_msg;
1354 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001355 return 1;
1356 }
1357
1358 if (!*args[3]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001359 appctx->ctx.cli.msg = "Expects an integer value.\n";
1360 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001361 return 1;
1362 }
1363
1364 v = atoi(args[3]);
1365 if (v > global.hardmaxconn) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001366 appctx->ctx.cli.msg = "Value out of range.\n";
1367 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau91886b62011-09-07 14:38:31 +02001368 return 1;
1369 }
1370
1371 /* check for unlimited values */
1372 if (v <= 0)
1373 v = global.hardmaxconn;
1374
1375 global.maxconn = v;
1376
1377 /* Dequeues all of the listeners waiting for a resource */
1378 if (!LIST_ISEMPTY(&global_listener_queue))
1379 dequeue_all_listeners(&global_listener_queue);
1380
1381 return 1;
1382 }
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001383 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001384 appctx->ctx.cli.msg = "'set maxconn' only supports 'frontend' and 'global'.\n";
1385 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau2a0f4d22011-08-02 11:49:05 +02001386 return 1;
1387 }
1388 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001389 else if (strcmp(args[1], "rate-limit") == 0) {
1390 if (strcmp(args[2], "connections") == 0) {
1391 if (strcmp(args[3], "global") == 0) {
1392 int v;
1393
Willy Tarreau290e63a2012-09-20 18:07:14 +02001394 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001395 appctx->ctx.cli.msg = stats_permission_denied_msg;
1396 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001397 return 1;
1398 }
1399
1400 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001401 appctx->ctx.cli.msg = "Expects an integer value.\n";
1402 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001403 return 1;
1404 }
1405
1406 v = atoi(args[4]);
1407 if (v < 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001408 appctx->ctx.cli.msg = "Value out of range.\n";
1409 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001410 return 1;
1411 }
1412
1413 global.cps_lim = v;
1414
1415 /* Dequeues all of the listeners waiting for a resource */
1416 if (!LIST_ISEMPTY(&global_listener_queue))
1417 dequeue_all_listeners(&global_listener_queue);
1418
1419 return 1;
1420 }
1421 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001422 appctx->ctx.cli.msg = "'set rate-limit connections' only supports 'global'.\n";
1423 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001424 return 1;
1425 }
1426 }
William Lallemandd85f9172012-11-09 17:05:39 +01001427 else if (strcmp(args[2], "http-compression") == 0) {
1428 if (strcmp(args[3], "global") == 0) {
1429 int v;
1430
Willy Tarreau85d47f92012-11-21 00:29:50 +01001431 if (!*args[4]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001432 appctx->ctx.cli.msg = "Expects a maximum input byte rate in kB/s.\n";
1433 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau85d47f92012-11-21 00:29:50 +01001434 return 1;
1435 }
1436
William Lallemandd85f9172012-11-09 17:05:39 +01001437 v = atoi(args[4]);
1438 global.comp_rate_lim = v * 1024; /* Kilo to bytes. */
1439 }
1440 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001441 appctx->ctx.cli.msg = "'set rate-limit http-compression' only supports 'global'.\n";
1442 appctx->st0 = STAT_CLI_PRINT;
William Lallemandd85f9172012-11-09 17:05:39 +01001443 return 1;
1444 }
1445 }
Willy Tarreauf5b22872011-09-07 16:13:44 +02001446 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001447 appctx->ctx.cli.msg = "'set rate-limit' supports 'connections' and 'http-compression'.\n";
1448 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauf5b22872011-09-07 16:13:44 +02001449 return 1;
1450 }
1451 }
Willy Tarreau654694e2012-06-07 01:03:16 +02001452 else if (strcmp(args[1], "table") == 0) {
1453 stats_sock_table_request(si, args, STAT_CLI_O_SET);
1454 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001455 else if (strcmp(args[1], "map") == 0) {
1456 struct pattern *pat_elt;
1457 struct pat_idx_elt *idx_elt;
1458 char *value;
1459
1460 /* Expect three parameters: map name, key and new value. */
1461 if (!*args[2] || !*args[3] || !*args[4]) {
1462 appctx->ctx.cli.msg = "'set map' expect three parameters: map name, key and value.\n";
1463 appctx->st0 = STAT_CLI_PRINT;
1464 return 1;
1465 }
1466
1467 /* Lookup the reference in the maps. */
1468 appctx->ctx.map.ref = map_get_reference(args[2]);
1469 if (!appctx->ctx.map.ref) {
1470 appctx->ctx.cli.msg = "Unknown map reference.\n";
1471 appctx->st0 = STAT_CLI_PRINT;
1472 return 1;
1473 }
1474
1475 /* Lookup the entry in the reference values. */
1476 list_for_each_entry(appctx->ctx.map.ent, &appctx->ctx.map.ref->entries, list)
1477 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0)
1478 break;
1479
1480 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries) {
1481 appctx->ctx.cli.msg = "Entry not found.\n";
1482 appctx->st0 = STAT_CLI_PRINT;
1483 return 1;
1484 }
1485
1486 /* Update each reference entries. */
1487 list_for_each_entry(appctx->ctx.map.ent, &appctx->ctx.map.ref->entries, list) {
1488 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0) {
1489 value = strdup(args[4]);
1490 if (!value) {
1491 appctx->ctx.cli.msg = "Out of memory error.\n";
1492 appctx->st0 = STAT_CLI_PRINT;
1493 return 1;
1494 }
1495 free(appctx->ctx.map.ent->value);
1496 appctx->ctx.map.ent->value = value;
1497 }
1498 }
1499
1500 /* Change the sample. The lookup juste return the first entry, other
1501 * entries are not changed, but are never matched.
1502 */
1503 appctx->ctx.map.desc = NULL;
1504 for (stats_map_lookup_next(si);
1505 appctx->ctx.map.desc;
1506 stats_map_lookup_next(si)) {
1507 pattern_lookup(args[3], appctx->ctx.map.desc->pat, &pat_elt, &idx_elt, NULL);
1508 if (pat_elt != NULL)
1509 appctx->ctx.map.desc->parse(appctx->ctx.map.ent->value, pat_elt->smp);
1510 if (idx_elt != NULL)
1511 appctx->ctx.map.desc->parse(appctx->ctx.map.ent->value, idx_elt->smp);
1512 }
1513
1514 /* The set is done, send message. */
1515 appctx->ctx.cli.msg = "Done.\n";
1516 appctx->st0 = STAT_CLI_PRINT;
1517 return 1;
1518 }
Willy Tarreau7aabd112010-01-26 10:59:06 +01001519 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +02001520 return 0;
1521 }
1522 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001523 else if (strcmp(args[0], "enable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001524 if (strcmp(args[1], "agent") == 0) {
1525 struct server *sv;
1526
1527 sv = expect_server_admin(s, si, args[2]);
1528 if (!sv)
1529 return 1;
1530
1531 sv->agent.state &= ~CHK_STATE_DISABLED;
1532
1533 return 1;
1534 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001535 if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001536 struct server *sv;
1537
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001538 sv = expect_server_admin(s, si, args[2]);
1539 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001540 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001541
Cyril Bontécd19e512010-01-31 22:34:03 +01001542 if (sv->state & SRV_MAINTAIN) {
1543 /* The server is really in maintenance, we can change the server state */
Willy Tarreau44267702011-10-28 15:35:33 +02001544 if (sv->track) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001545 /* If this server tracks the status of another one,
1546 * we must restore the good status.
1547 */
Willy Tarreau44267702011-10-28 15:35:33 +02001548 if (sv->track->state & SRV_RUNNING) {
Simon Horman4a741432013-02-23 15:35:38 +09001549 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001550 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001551 } else {
1552 sv->state &= ~SRV_MAINTAIN;
Simon Horman4a741432013-02-23 15:35:38 +09001553 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001554 }
1555 } else {
Simon Horman4a741432013-02-23 15:35:38 +09001556 set_server_up(&sv->check);
Simon Horman58c32972013-11-25 10:46:38 +09001557 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
Cyril Bontécd19e512010-01-31 22:34:03 +01001558 }
1559 }
1560
Willy Tarreau532a4502011-09-07 22:37:44 +02001561 return 1;
1562 }
1563 else if (strcmp(args[1], "frontend") == 0) {
1564 struct proxy *px;
1565
1566 px = expect_frontend_admin(s, si, args[2]);
1567 if (!px)
1568 return 1;
1569
1570 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001571 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n";
1572 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001573 return 1;
1574 }
1575
1576 if (px->state != PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001577 appctx->ctx.cli.msg = "Frontend is already enabled.\n";
1578 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001579 return 1;
1580 }
1581
1582 if (!resume_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001583 appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n";
1584 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001585 return 1;
1586 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001587 return 1;
1588 }
1589 else { /* unknown "enable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001590 appctx->ctx.cli.msg = "'enable' only supports 'frontend' and 'server'.\n";
1591 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001592 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001593 }
1594 }
1595 else if (strcmp(args[0], "disable") == 0) {
Simon Horman671b6f02013-11-25 10:46:39 +09001596 if (strcmp(args[1], "agent") == 0) {
1597 struct server *sv;
1598
1599 sv = expect_server_admin(s, si, args[2]);
1600 if (!sv)
1601 return 1;
1602
1603 sv->agent.state |= CHK_STATE_DISABLED;
1604
1605 return 1;
1606 }
1607 else if (strcmp(args[1], "server") == 0) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001608 struct server *sv;
1609
Willy Tarreaud52c41e2011-09-07 23:41:01 +02001610 sv = expect_server_admin(s, si, args[2]);
1611 if (!sv)
Cyril Bonté613f0df2011-03-03 20:49:04 +01001612 return 1;
Cyril Bonté613f0df2011-03-03 20:49:04 +01001613
Cyril Bontécd19e512010-01-31 22:34:03 +01001614 if (! (sv->state & SRV_MAINTAIN)) {
1615 /* Not already in maintenance, we can change the server state */
1616 sv->state |= SRV_MAINTAIN;
Simon Horman4a741432013-02-23 15:35:38 +09001617 set_server_down(&sv->check);
Cyril Bontécd19e512010-01-31 22:34:03 +01001618 }
1619
Willy Tarreau532a4502011-09-07 22:37:44 +02001620 return 1;
1621 }
1622 else if (strcmp(args[1], "frontend") == 0) {
1623 struct proxy *px;
1624
1625 px = expect_frontend_admin(s, si, args[2]);
1626 if (!px)
1627 return 1;
1628
1629 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001630 appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n";
1631 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001632 return 1;
1633 }
1634
1635 if (px->state == PR_STPAUSED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001636 appctx->ctx.cli.msg = "Frontend is already disabled.\n";
1637 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001638 return 1;
1639 }
1640
1641 if (!pause_proxy(px)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001642 appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n";
1643 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001644 return 1;
1645 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001646 return 1;
1647 }
1648 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001649 appctx->ctx.cli.msg = "'disable' only supports 'frontend' and 'server'.\n";
1650 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001651 return 1;
1652 }
1653 }
1654 else if (strcmp(args[0], "shutdown") == 0) {
1655 if (strcmp(args[1], "frontend") == 0) {
1656 struct proxy *px;
1657
1658 px = expect_frontend_admin(s, si, args[2]);
1659 if (!px)
1660 return 1;
1661
1662 if (px->state == PR_STSTOPPED) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001663 appctx->ctx.cli.msg = "Frontend was already shut down.\n";
1664 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001665 return 1;
1666 }
1667
1668 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1669 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1670 send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
1671 px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn);
1672 stop_proxy(px);
1673 return 1;
1674 }
Willy Tarreaua295edc2011-09-07 23:21:03 +02001675 else if (strcmp(args[1], "session") == 0) {
1676 struct session *sess, *ptr;
1677
Willy Tarreau290e63a2012-09-20 18:07:14 +02001678 if (s->listener->bind_conf->level < ACCESS_LVL_ADMIN) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001679 appctx->ctx.cli.msg = stats_permission_denied_msg;
1680 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001681 return 1;
1682 }
1683
1684 if (!*args[2]) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001685 appctx->ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
1686 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001687 return 1;
1688 }
1689
1690 ptr = (void *)strtoul(args[2], NULL, 0);
1691
1692 /* first, look for the requested session in the session table */
1693 list_for_each_entry(sess, &sessions, list) {
1694 if (sess == ptr)
1695 break;
1696 }
1697
1698 /* do we have the session ? */
1699 if (sess != ptr) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001700 appctx->ctx.cli.msg = "No such session (use 'show sess').\n";
1701 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreaua295edc2011-09-07 23:21:03 +02001702 return 1;
1703 }
1704
1705 session_shutdown(sess, SN_ERR_KILLED);
1706 return 1;
1707 }
Willy Tarreau52b2d222011-09-07 23:48:48 +02001708 else if (strcmp(args[1], "sessions") == 0) {
1709 if (strcmp(args[2], "server") == 0) {
1710 struct server *sv;
1711 struct session *sess, *sess_bck;
1712
1713 sv = expect_server_admin(s, si, args[3]);
1714 if (!sv)
1715 return 1;
1716
1717 /* kill all the session that are on this server */
1718 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
1719 if (sess->srv_conn == sv)
1720 session_shutdown(sess, SN_ERR_KILLED);
1721
1722 return 1;
1723 }
1724 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001725 appctx->ctx.cli.msg = "'shutdown sessions' only supports 'server'.\n";
1726 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau52b2d222011-09-07 23:48:48 +02001727 return 1;
1728 }
1729 }
Willy Tarreau532a4502011-09-07 22:37:44 +02001730 else { /* unknown "disable" parameter */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001731 appctx->ctx.cli.msg = "'shutdown' only supports 'frontend', 'session' and 'sessions'.\n";
1732 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau532a4502011-09-07 22:37:44 +02001733 return 1;
Cyril Bontécd19e512010-01-31 22:34:03 +01001734 }
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01001735 }
1736 else if (strcmp(args[0], "del") == 0) {
1737 if (strcmp(args[1], "map") == 0) {
1738 struct pattern *pat_elt;
1739 struct pat_idx_elt *idx_elt;
1740 struct map_entry *ent;
1741
1742 /* Expect two parameters: map name and key. */
1743 if (!*args[2] || !*args[3]) {
1744 appctx->ctx.cli.msg = "'del map' expect two parameters: map name and key.\n";
1745 appctx->st0 = STAT_CLI_PRINT;
1746 return 1;
1747 }
1748
1749 /* Lookup the reference in the maps. */
1750 appctx->ctx.map.ref = map_get_reference(args[2]);
1751 if (!appctx->ctx.map.ref) {
1752 appctx->ctx.cli.msg = "Unknown map reference.\n";
1753 appctx->st0 = STAT_CLI_PRINT;
1754 return 1;
1755 }
1756
1757 /* Lookup the entry in the reference values.
1758 * If the entry is not found in the reference, return error message.
1759 */
1760 list_for_each_entry(appctx->ctx.map.ent, &appctx->ctx.map.ref->entries, list)
1761 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0)
1762 break;
1763
1764 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries) {
1765 appctx->ctx.cli.msg = "Entry not found.\n";
1766 appctx->st0 = STAT_CLI_PRINT;
1767 return 1;
1768 }
1769
1770 /* Delete each enties from reference. */
1771 list_for_each_entry_safe(appctx->ctx.map.ent, ent, &appctx->ctx.map.ref->entries, list) {
1772 if (strcmp(args[3], appctx->ctx.map.ent->key) == 0) {
1773 LIST_DEL(&appctx->ctx.map.ent->list);
1774 free(appctx->ctx.map.ent->key);
1775 free(appctx->ctx.map.ent->value);
1776 free(appctx->ctx.map.ent);
1777 }
1778 }
1779
1780 /* Delete all matching entries for each map descritor. */
1781 appctx->ctx.map.desc = NULL;
1782 stats_map_lookup_next(si);
1783 while (appctx->ctx.map.desc) {
1784 while (pattern_lookup(args[3], appctx->ctx.map.desc->pat, &pat_elt, &idx_elt, NULL)) {
1785 if (pat_elt != NULL) {
1786 LIST_DEL(&pat_elt->list);
1787 pattern_free(pat_elt);
1788 }
1789 if (idx_elt != NULL) {
1790 ebmb_delete(&idx_elt->node);
1791 free(idx_elt);
1792 }
1793 }
1794 stats_map_lookup_next(si);
1795 }
1796
1797 /* The deletion is done, send message. */
1798 appctx->ctx.cli.msg = "Done.\n";
1799 appctx->st0 = STAT_CLI_PRINT;
1800 return 1;
1801 }
1802 else { /* unknown "del" parameter */
1803 appctx->ctx.cli.msg = "'del' only supports 'map'.\n";
1804 appctx->st0 = STAT_CLI_PRINT;
1805 return 1;
1806 }
1807 }
1808 else if (strcmp(args[0], "add") == 0) {
1809 if (strcmp(args[1], "map") == 0) {
1810 const char *params[2];
1811 struct pattern *pat;
1812 struct map_entry *ent;
1813 struct sample_storage *smp;
1814
1815 /* Expect three parameters: map name, key and new value. */
1816 if (!*args[2] || !*args[3] || !*args[4]) {
1817 appctx->ctx.cli.msg = "'add map' expect three parameters: map name, key and value.\n";
1818 appctx->st0 = STAT_CLI_PRINT;
1819 return 1;
1820 }
1821
1822 params[0] = args[3];
1823 params[1] = "";
1824
1825 /* Lookup the reference in the maps. */
1826 appctx->ctx.map.ref = map_get_reference(args[2]);
1827 if (!appctx->ctx.map.ref) {
1828 appctx->ctx.cli.msg = "Unknown map reference.\n";
1829 appctx->st0 = STAT_CLI_PRINT;
1830 return 1;
1831 }
1832
1833 /* Prepare and link the new map_entry element. If out of memory
1834 * error the action is cancelled and the descriptor are left
1835 * coherents.
1836 */
1837 ent = malloc(sizeof(*ent));
1838 if (!ent) {
1839 appctx->ctx.cli.msg = "Out of memory error.\n";
1840 appctx->st0 = STAT_CLI_PRINT;
1841 return 1;
1842 }
1843 ent->key = strdup(args[3]);
1844 if (!ent->key) {
1845 free(ent);
1846 appctx->ctx.cli.msg = "Out of memory error.\n";
1847 appctx->st0 = STAT_CLI_PRINT;
1848 return 1;
1849 }
1850 ent->value = strdup(args[4]);
1851 if (!ent->value) {
1852 free(ent->key);
1853 free(ent);
1854 appctx->ctx.cli.msg = "Out of memory error.\n";
1855 appctx->st0 = STAT_CLI_PRINT;
1856 return 1;
1857 }
1858 LIST_ADDQ(&appctx->ctx.map.ref->entries, &ent->list);
1859
1860 /* Browse each map descritor and try to insert this new value. */
1861 appctx->ctx.map.desc = NULL;
1862 for (stats_map_lookup_next(si);
1863 appctx->ctx.map.desc;
1864 stats_map_lookup_next(si)) {
1865
1866 /* Create new sample. Return out of memory error
1867 * if the memory cannot be allocated. The 'add' process
1868 * is aborted, but the already inserted entries are not
1869 * deleted.
1870 */
1871 smp = calloc(1, sizeof(*smp));
1872 if (!smp) {
1873 appctx->ctx.cli.msg = "Out of memory error. The value is not added in all maps.\n";
1874 appctx->st0 = STAT_CLI_PRINT;
1875 return 1;
1876 }
1877
1878 /* Create sample. If this function fails, the insertion
1879 * is canceled for this 'descriptor', but continue, for
1880 * the other descriptors.
1881 */
1882 if (!appctx->ctx.map.desc->parse(ent->value, smp)) {
1883 free(smp);
1884 continue;
1885 }
1886
1887 /* If the value can be indexed, get the first pattern. If
1888 * the return entry is not the indexed entry, new 'pattern' is
1889 * created by the function pattern_register(). If the 'pattern'
1890 * is NULL, new entry is created. This is ugly because the
1891 * following code interfers with the own code of the function
1892 * pattern_register().
1893 */
1894 if (appctx->ctx.map.desc->pat->match == pat_match_str ||
1895 appctx->ctx.map.desc->pat->match == pat_match_ip) {
1896 pat = LIST_NEXT(&appctx->ctx.map.desc->pat->patterns, struct pattern *, list);
1897 if (&pat->list == &appctx->ctx.map.desc->pat->patterns)
1898 pat = NULL;
1899 }
1900 else
1901 pat = NULL;
1902
1903 if (!pattern_register(appctx->ctx.map.desc->pat, params, smp, &pat, 0, NULL)) {
1904 free(smp);
1905 continue;
1906 }
1907 }
1908
1909 /* The add 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 = "'add' only supports 'map'.\n";
1916 appctx->st0 = STAT_CLI_PRINT;
1917 return 1;
1918 }
Cyril Bontécd19e512010-01-31 22:34:03 +01001919 }
1920 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001921 return 0;
1922 }
1923 return 1;
1924}
1925
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001926/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001927 * used to processes I/O from/to the stats unix socket. The system relies on a
1928 * state machine handling requests and various responses. We read a request,
1929 * then we process it and send the response, and we possibly display a prompt.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001930 * Then we can read again. The state is stored in appctx->st0 and is one of the
1931 * STAT_CLI_* constants. appctx->st1 is used to indicate whether prompt is enabled
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001932 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001933 */
Willy Tarreaub24281b2011-02-13 13:16:36 +01001934static void cli_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001935{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001936 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau7421efb2012-07-02 15:11:27 +02001937 struct channel *req = si->ob;
1938 struct channel *res = si->ib;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001939 int reql;
1940 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001941
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001942 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
1943 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001944
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001945 while (1) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001946 if (appctx->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001947 /* Stats output not initialized yet */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001948 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
1949 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001950 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001951 else if (appctx->st0 == STAT_CLI_END) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001952 /* Let's close for real now. We just close the request
1953 * side, the conditions below will complete if needed.
1954 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001955 si_shutw(si);
Willy Tarreauf5a885f2009-10-04 14:22:18 +02001956 break;
1957 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001958 else if (appctx->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001959 /* ensure we have some output room left in the event we
1960 * would want to return some info right after parsing.
1961 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001962 if (buffer_almost_full(si->ib->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02001963 break;
1964
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001965 reql = bo_getline(si->ob, trash.str, trash.size);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001966 if (reql <= 0) { /* closed or EOL not found */
1967 if (reql == 0)
1968 break;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001969 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001970 continue;
1971 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001972
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001973 /* seek for a possible semi-colon. If we find one, we
1974 * replace it with an LF and skip only this part.
1975 */
1976 for (len = 0; len < reql; len++)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001977 if (trash.str[len] == ';') {
1978 trash.str[len] = '\n';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001979 reql = len + 1;
1980 break;
1981 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001982
Willy Tarreau816fc222009-10-04 07:36:58 +02001983 /* now it is time to check that we have a full line,
1984 * remove the trailing \n and possibly \r, then cut the
1985 * line.
1986 */
1987 len = reql - 1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001988 if (trash.str[len] != '\n') {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001989 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001990 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001991 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001992
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001993 if (len && trash.str[len-1] == '\r')
Willy Tarreau816fc222009-10-04 07:36:58 +02001994 len--;
1995
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001996 trash.str[len] = '\0';
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001997
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001998 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001999 if (len) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002000 if (strcmp(trash.str, "quit") == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002001 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002002 continue;
2003 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002004 else if (strcmp(trash.str, "prompt") == 0)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002005 appctx->st1 = !appctx->st1;
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002006 else if (strcmp(trash.str, "help") == 0 ||
2007 !stats_sock_parse_request(si, trash.str)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002008 appctx->ctx.cli.msg = stats_sock_usage_msg;
2009 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002010 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002011 /* NB: stats_sock_parse_request() may have put
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002012 * another STAT_CLI_O_* into appctx->st0.
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002013 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002014 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002015 else if (!appctx->st1) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002016 /* if prompt is disabled, print help on empty lines,
2017 * so that the user at least knows how to enable
2018 * prompt and find help.
2019 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002020 appctx->ctx.cli.msg = stats_sock_usage_msg;
2021 appctx->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002022 }
2023
2024 /* re-adjust req buffer */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +02002025 bo_skip(si->ob, reql);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002026 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002027 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002028 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002029 if (res->flags & (CF_SHUTR_NOW|CF_SHUTR)) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002030 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002031 continue;
2032 }
2033
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002034 switch (appctx->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +02002035 case STAT_CLI_PRINT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002036 if (bi_putstr(si->ib, appctx->ctx.cli.msg) != -1)
2037 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002038 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002039 case STAT_CLI_O_INFO:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002040 if (stats_dump_info_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002041 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002042 break;
2043 case STAT_CLI_O_STAT:
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002044 if (stats_dump_stat_to_buffer(si, NULL))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002045 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002046 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002047 case STAT_CLI_O_SESS:
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002048 if (stats_dump_sess_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002049 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002050 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002051 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01002052 if (stats_dump_errors_to_buffer(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002053 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002054 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002055 case STAT_CLI_O_TAB:
Simon Hormanc88b8872011-06-15 15:18:49 +09002056 case STAT_CLI_O_CLR:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002057 if (stats_table_request(si, appctx->st0))
2058 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau69f58c82010-07-12 17:55:33 +02002059 break;
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01002060 case STAT_CLI_O_MAPS:
2061 if (stats_maps_list(si))
2062 appctx->st0 = STAT_CLI_PROMPT;
2063 break;
2064 case STAT_CLI_O_MAP:
2065 if (stats_map_list(si))
2066 appctx->st0 = STAT_CLI_PROMPT;
2067 break;
2068 case STAT_CLI_O_MLOOK:
2069 if (stats_map_lookup(si))
2070 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002071 default: /* abnormal state */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002072 appctx->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002073 break;
2074 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002075
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002076 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002077 if (appctx->st0 == STAT_CLI_PROMPT) {
2078 if (bi_putstr(si->ib, appctx->st1 ? "\n> " : "\n") != -1)
2079 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002080 }
2081
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002082 /* If the output functions are still there, it means they require more room. */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002083 if (appctx->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002084 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002085
2086 /* Now we close the output if one of the writers did so,
2087 * or if we're not in interactive mode and the request
2088 * buffer is empty. This still allows pipelined requests
2089 * to be sent in non-interactive mode.
2090 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002091 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!appctx->st1 && !req->buf->o)) {
2092 appctx->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002093 continue;
2094 }
2095
Willy Tarreauf5a885f2009-10-04 14:22:18 +02002096 /* switch state back to GETREQ to read next requests */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002097 appctx->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002098 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002099 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002100
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002101 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST) && (appctx->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002102 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
2103 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
Aman Guptaceafb4a2012-04-02 18:57:54 -07002104 /* Other side has closed, let's abort if we have no more processing to do
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002105 * and nothing more to consume. This is comparable to a broken pipe, so
2106 * we forward the close to the request side so that it flows upstream to
2107 * the client.
2108 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002109 si_shutw(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002110 }
2111
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002112 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002113 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
2114 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
2115 /* We have no more processing to do, and nothing more to send, and
2116 * the client side has closed. So we'll forward this state downstream
2117 * on the response buffer.
2118 */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002119 si_shutr(si);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002120 res->flags |= CF_READ_NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002121 }
2122
2123 /* update all other flags and resync with the other side */
Willy Tarreau73b013b2012-05-21 16:31:45 +02002124 si_update(si);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002125
2126 /* we don't want to expire timeouts while we're processing requests */
2127 si->ib->rex = TICK_ETERNITY;
2128 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002129
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02002130 out:
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01002131 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 +02002132 __FUNCTION__, __LINE__,
Willy Tarreau9b28e032012-10-12 23:49:43 +02002133 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 +02002134
2135 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
2136 /* check that we have released everything then unregister */
2137 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002138 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02002139}
2140
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002141/* This function dumps information onto the stream interface's read buffer.
2142 * It returns 0 as long as it does not complete, non-zero upon completion.
2143 * No state is used.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002144 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002145static int stats_dump_info_to_buffer(struct stream_interface *si)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002146{
2147 unsigned int up = (now.tv_sec - start_date.tv_sec);
2148
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002149 chunk_printf(&trash,
2150 "Name: " PRODUCT_NAME "\n"
2151 "Version: " HAPROXY_VERSION "\n"
2152 "Release_date: " HAPROXY_DATE "\n"
2153 "Nbproc: %d\n"
2154 "Process_num: %d\n"
2155 "Pid: %d\n"
2156 "Uptime: %dd %dh%02dm%02ds\n"
2157 "Uptime_sec: %d\n"
2158 "Memmax_MB: %d\n"
2159 "Ulimit-n: %d\n"
2160 "Maxsock: %d\n"
2161 "Maxconn: %d\n"
2162 "Hard_maxconn: %d\n"
2163 "Maxpipes: %d\n"
2164 "CurrConns: %d\n"
2165 "PipesUsed: %d\n"
2166 "PipesFree: %d\n"
2167 "ConnRate: %d\n"
2168 "ConnRateLimit: %d\n"
2169 "MaxConnRate: %d\n"
2170 "CompressBpsIn: %u\n"
2171 "CompressBpsOut: %u\n"
2172 "CompressBpsRateLim: %u\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002173#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002174 "ZlibMemUsage: %ld\n"
2175 "MaxZlibMemUsage: %ld\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002176#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002177 "Tasks: %d\n"
2178 "Run_queue: %d\n"
2179 "Idle_pct: %d\n"
2180 "node: %s\n"
2181 "description: %s\n"
2182 "",
2183 global.nbproc,
2184 relative_pid,
2185 pid,
2186 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
2187 up,
2188 global.rlimit_memmax,
2189 global.rlimit_nofile,
2190 global.maxsock, global.maxconn, global.hardmaxconn, global.maxpipes,
2191 actconn, pipes_used, pipes_free,
2192 read_freq_ctr(&global.conn_per_sec), global.cps_lim, global.cps_max,
2193 read_freq_ctr(&global.comp_bps_in), read_freq_ctr(&global.comp_bps_out),
2194 global.comp_rate_lim,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002195#ifdef USE_ZLIB
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002196 zlib_used_memory, global.maxzlibmem,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002197#endif
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01002198 nb_tasks_cur, run_queue_cur, idle_pct,
2199 global.node, global.desc ? global.desc : ""
2200 );
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002201
2202 if (bi_putchk(si->ib, &trash) == -1)
2203 return 0;
2204
2205 return 1;
2206}
2207
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002208/* Dumps a frontend's line to the trash for the current proxy <px> and uses
2209 * the state from stream interface <si>. The caller is responsible for clearing
2210 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
Cyril Bonté70be45d2010-10-12 00:14:35 +02002211 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002212static int stats_dump_fe_stats(struct stream_interface *si, struct proxy *px)
Cyril Bonté70be45d2010-10-12 00:14:35 +02002213{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002214 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002215 int i;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002216
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002217 if (!(px->cap & PR_CAP_FE))
2218 return 0;
Cyril Bonté70be45d2010-10-12 00:14:35 +02002219
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002220 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_FE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002221 return 0;
2222
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002223 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002224 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002225 /* name, queue */
2226 "<tr class=\"frontend\">");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002227
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002228 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002229 /* Column sub-heading for Enable or Disable server */
2230 chunk_appendf(&trash, "<td></td>");
2231 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02002232
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002233 chunk_appendf(&trash,
2234 "<td class=ac>"
2235 "<a name=\"%s/Frontend\"></a>"
2236 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td>"
2237 "<td colspan=3></td>"
2238 "",
2239 px->id, px->id);
Cyril Bonté70be45d2010-10-12 00:14:35 +02002240
Willy Tarreau466c9b52012-12-23 02:25:03 +01002241 chunk_appendf(&trash,
2242 /* sessions rate : current */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002243 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002244 "<tr><th>Current connection rate:</th><td>%s/s</td></tr>"
2245 "<tr><th>Current session rate:</th><td>%s/s</td></tr>"
2246 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002247 U2H(read_freq_ctr(&px->fe_sess_per_sec)),
2248 U2H(read_freq_ctr(&px->fe_conn_per_sec)),
2249 U2H(read_freq_ctr(&px->fe_sess_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002250
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002251 if (px->mode == PR_MODE_HTTP)
2252 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002253 "<tr><th>Current request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002254 U2H(read_freq_ctr(&px->fe_req_per_sec)));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002255
2256 chunk_appendf(&trash,
2257 "</table></div></u></td>"
2258 /* sessions rate : max */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002259 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002260 "<tr><th>Max connection rate:</th><td>%s/s</td></tr>"
2261 "<tr><th>Max session rate:</th><td>%s/s</td></tr>"
2262 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002263 U2H(px->fe_counters.sps_max),
2264 U2H(px->fe_counters.cps_max),
2265 U2H(px->fe_counters.sps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002266
2267 if (px->mode == PR_MODE_HTTP)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002268 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002269 "<tr><th>Max request rate:</th><td>%s/s</td></tr>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002270 U2H(px->fe_counters.p.http.rps_max));
Willy Tarreau466c9b52012-12-23 02:25:03 +01002271
2272 chunk_appendf(&trash,
2273 "</table></div></u></td>"
2274 /* sessions rate : limit */
2275 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002276 LIM2A(px->fe_sps_lim, "-"));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002277
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002278 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002279 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002280 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002281 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002282 "<tr><th>Cum. connections:</th><td>%s</td></tr>"
2283 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002284 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002285 U2H(px->feconn), U2H(px->fe_counters.conn_max), U2H(px->maxconn),
2286 U2H(px->fe_counters.cum_sess),
2287 U2H(px->fe_counters.cum_conn),
2288 U2H(px->fe_counters.cum_sess));
Cyril Bonté70be45d2010-10-12 00:14:35 +02002289
Willy Tarreau466c9b52012-12-23 02:25:03 +01002290 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002291 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01002292 chunk_appendf(&trash,
2293 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
2294 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
2295 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
2296 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
2297 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
2298 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
2299 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
2300 "<tr><th>- other responses:</th><td>%s</td></tr>"
2301 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
2302 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002303 U2H(px->fe_counters.p.http.cum_req),
2304 U2H(px->fe_counters.p.http.rsp[1]),
2305 U2H(px->fe_counters.p.http.rsp[2]),
2306 U2H(px->fe_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002307 px->fe_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01002308 (int)(100*px->fe_counters.p.http.comp_rsp/px->fe_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002309 U2H(px->fe_counters.p.http.rsp[3]),
2310 U2H(px->fe_counters.p.http.rsp[4]),
2311 U2H(px->fe_counters.p.http.rsp[5]),
2312 U2H(px->fe_counters.p.http.rsp[0]),
2313 U2H(px->fe_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002314 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002315
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002316 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002317 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002318 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01002319 "<td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002320 /* bytes : in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002321 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002322 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002323 U2H(px->fe_counters.bytes_in));
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002324
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002325 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002326 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002327 "<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 +01002328 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002329 U2H(px->fe_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002330 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp,
2331 px->fe_counters.comp_in ?
2332 (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 +01002333 (px->fe_counters.comp_in || px->fe_counters.comp_byp) ? "</u>":"");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002334
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002335 chunk_appendf(&trash,
2336 /* denied: req, resp */
2337 "<td>%s</td><td>%s</td>"
2338 /* errors : request, connect, response */
2339 "<td>%s</td><td></td><td></td>"
2340 /* warnings: retries, redispatches */
2341 "<td></td><td></td>"
2342 /* server status : reflect frontend status */
2343 "<td class=ac>%s</td>"
2344 /* rest of server: nothing */
2345 "<td class=ac colspan=8></td></tr>"
2346 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002347 U2H(px->fe_counters.denied_req), U2H(px->fe_counters.denied_resp),
2348 U2H(px->fe_counters.failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002349 px->state == PR_STREADY ? "OPEN" :
2350 px->state == PR_STFULL ? "FULL" : "STOP");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002351 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002352 else { /* CSV mode */
2353 chunk_appendf(&trash,
2354 /* pxid, name, queue cur, queue max, */
2355 "%s,FRONTEND,,,"
2356 /* sessions : current, max, limit, total */
2357 "%d,%d,%d,%lld,"
2358 /* bytes : in, out */
2359 "%lld,%lld,"
2360 /* denied: req, resp */
2361 "%lld,%lld,"
2362 /* errors : request, connect, response */
2363 "%lld,,,"
2364 /* warnings: retries, redispatches */
2365 ",,"
2366 /* server status : reflect frontend status */
2367 "%s,"
2368 /* rest of server: nothing */
2369 ",,,,,,,,"
2370 /* pid, iid, sid, throttle, lbtot, tracked, type */
2371 "%d,%d,0,,,,%d,"
2372 /* rate, rate_lim, rate_max */
2373 "%u,%u,%u,"
2374 /* check_status, check_code, check_duration */
2375 ",,,",
2376 px->id,
2377 px->feconn, px->fe_counters.conn_max, px->maxconn, px->fe_counters.cum_sess,
2378 px->fe_counters.bytes_in, px->fe_counters.bytes_out,
2379 px->fe_counters.denied_req, px->fe_counters.denied_resp,
2380 px->fe_counters.failed_req,
2381 px->state == PR_STREADY ? "OPEN" :
2382 px->state == PR_STFULL ? "FULL" : "STOP",
2383 relative_pid, px->uuid, STATS_TYPE_FE,
2384 read_freq_ctr(&px->fe_sess_per_sec),
2385 px->fe_sps_lim, px->fe_counters.sps_max);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002386
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002387 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2388 if (px->mode == PR_MODE_HTTP) {
2389 for (i=1; i<6; i++)
2390 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[i]);
2391 chunk_appendf(&trash, "%lld,", px->fe_counters.p.http.rsp[0]);
2392 }
2393 else
2394 chunk_appendf(&trash, ",,,,,,");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002395
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002396 /* failed health analyses */
2397 chunk_appendf(&trash, ",");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002398
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002399 /* requests : req_rate, req_rate_max, req_tot, */
2400 chunk_appendf(&trash, "%u,%u,%lld,",
2401 read_freq_ctr(&px->fe_req_per_sec),
2402 px->fe_counters.p.http.rps_max, px->fe_counters.p.http.cum_req);
2403
2404 /* errors: cli_aborts, srv_aborts */
2405 chunk_appendf(&trash, ",,");
2406
2407 /* compression: in, out, bypassed */
2408 chunk_appendf(&trash, "%lld,%lld,%lld,",
2409 px->fe_counters.comp_in, px->fe_counters.comp_out, px->fe_counters.comp_byp);
2410
2411 /* compression: comp_rsp */
2412 chunk_appendf(&trash, "%lld,",
2413 px->fe_counters.p.http.comp_rsp);
2414
2415 /* finish with EOL */
2416 chunk_appendf(&trash, "\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002417 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002418 return 1;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002419}
2420
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002421/* Dumps a line for listener <l> and proxy <px> to the trash and uses the state
2422 * from stream interface <si>, and stats flags <flags>. The caller is responsible
2423 * for clearing the trash if needed. Returns non-zero if it emits anything, zero
2424 * otherwise.
Willy Tarreau91861262007-10-17 17:06:05 +02002425 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002426static int stats_dump_li_stats(struct stream_interface *si, struct proxy *px, struct listener *l, int flags)
Willy Tarreau91861262007-10-17 17:06:05 +02002427{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002428 struct appctx *appctx = __objt_appctx(si->end);
2429
2430 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002431 chunk_appendf(&trash, "<tr class=socket>");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002432 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002433 /* Column sub-heading for Enable or Disable server */
2434 chunk_appendf(&trash, "<td></td>");
2435 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002436 chunk_appendf(&trash,
2437 /* frontend name, listener name */
2438 "<td class=ac><a name=\"%s/+%s\"></a>%s"
2439 "<a class=lfsb href=\"#%s/+%s\">%s</a>"
2440 "",
2441 px->id, l->name,
2442 (flags & ST_SHLGNDS)?"<u>":"",
2443 px->id, l->name, l->name);
Willy Tarreau91861262007-10-17 17:06:05 +02002444
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002445 if (flags & ST_SHLGNDS) {
2446 char str[INET6_ADDRSTRLEN];
2447 int port;
Willy Tarreau91861262007-10-17 17:06:05 +02002448
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002449 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreau91861262007-10-17 17:06:05 +02002450
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002451 port = get_host_port(&l->addr);
2452 switch (addr_to_str(&l->addr, str, sizeof(str))) {
2453 case AF_INET:
2454 chunk_appendf(&trash, "IPv4: %s:%d, ", str, port);
2455 break;
2456 case AF_INET6:
2457 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, port);
2458 break;
2459 case AF_UNIX:
2460 chunk_appendf(&trash, "unix, ");
2461 break;
2462 case -1:
2463 chunk_appendf(&trash, "(%s), ", strerror(errno));
2464 break;
2465 }
Willy Tarreau91861262007-10-17 17:06:05 +02002466
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002467 /* id */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002468 chunk_appendf(&trash, "id: %d</div>", l->luid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002469 }
Willy Tarreau91861262007-10-17 17:06:05 +02002470
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002471 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002472 /* queue */
2473 "%s</td><td colspan=3></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002474 /* sessions rate: current, max, limit */
2475 "<td colspan=3>&nbsp;</td>"
2476 /* sessions: current, max, limit, total, lbtot */
2477 "<td>%s</td><td>%s</td><td>%s</td>"
2478 "<td>%s</td><td>&nbsp;</td>"
2479 /* bytes: in, out */
2480 "<td>%s</td><td>%s</td>"
2481 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002482 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002483 U2H(l->nbconn), U2H(l->counters->conn_max), U2H(l->maxconn),
2484 U2H(l->counters->cum_conn), U2H(l->counters->bytes_in), U2H(l->counters->bytes_out));
Willy Tarreau56a560a2009-09-22 19:27:35 +02002485
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002486 chunk_appendf(&trash,
2487 /* denied: req, resp */
2488 "<td>%s</td><td>%s</td>"
2489 /* errors: request, connect, response */
2490 "<td>%s</td><td></td><td></td>"
2491 /* warnings: retries, redispatches */
2492 "<td></td><td></td>"
2493 /* server status: reflect listener status */
2494 "<td class=ac>%s</td>"
2495 /* rest of server: nothing */
2496 "<td class=ac colspan=8></td></tr>"
2497 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002498 U2H(l->counters->denied_req), U2H(l->counters->denied_resp),
2499 U2H(l->counters->failed_req),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002500 (l->nbconn < l->maxconn) ? (l->state == LI_LIMITED) ? "WAITING" : "OPEN" : "FULL");
2501 }
2502 else { /* CSV mode */
2503 chunk_appendf(&trash,
2504 /* pxid, name, queue cur, queue max, */
2505 "%s,%s,,,"
2506 /* sessions: current, max, limit, total */
2507 "%d,%d,%d,%lld,"
2508 /* 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 listener status */
2517 "%s,"
2518 /* rest of server: nothing */
2519 ",,,,,,,,"
2520 /* pid, iid, sid, throttle, lbtot, tracked, type */
2521 "%d,%d,%d,,,,%d,"
2522 /* rate, rate_lim, rate_max */
2523 ",,,"
2524 /* check_status, check_code, check_duration */
2525 ",,,"
2526 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2527 ",,,,,,"
2528 /* failed health analyses */
2529 ","
2530 /* requests : req_rate, req_rate_max, req_tot, */
2531 ",,,"
2532 /* errors: cli_aborts, srv_aborts */
2533 ",,"
2534 /* compression: in, out, bypassed, comp_rsp */
2535 ",,,,"
2536 "\n",
2537 px->id, l->name,
2538 l->nbconn, l->counters->conn_max,
2539 l->maxconn, l->counters->cum_conn,
2540 l->counters->bytes_in, l->counters->bytes_out,
2541 l->counters->denied_req, l->counters->denied_resp,
2542 l->counters->failed_req,
2543 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
2544 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
2545 }
2546 return 1;
2547}
Willy Tarreau91861262007-10-17 17:06:05 +02002548
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002549/* Dumps a line for server <sv> and proxy <px> to the trash and uses the state
2550 * from stream interface <si>, stats flags <flags>, and server state <state>.
2551 * The caller is responsible for clearing the trash if needed. Returns non-zero
2552 * if it emits anything, zero otherwise. The <state> parameter can take the
Simon Horman8c3d0be2013-11-25 10:46:40 +09002553 * following values : 0=DOWN, 1=going up, 2=going down, 3=UP, 4,5=NOLB,
2554 * 6,7=DRAIN, 8=unchecked.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002555 */
2556static int stats_dump_sv_stats(struct stream_interface *si, struct proxy *px, int flags, struct server *sv, int state)
2557{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002558 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002559 struct server *ref = sv->track ? sv->track : sv;
2560 char str[INET6_ADDRSTRLEN];
2561 struct chunk src;
2562 int i;
Willy Tarreau91861262007-10-17 17:06:05 +02002563
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002564 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Simon Horman8c3d0be2013-11-25 10:46:40 +09002565 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002566 "DOWN",
2567 "DN %d/%d &uarr;",
2568 "UP %d/%d &darr;",
2569 "UP",
2570 "NOLB %d/%d &darr;",
2571 "NOLB",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002572 "DRAIN %d/%d &darr;",
2573 "DRAIN",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002574 "<i>no check</i>"
2575 };
Willy Tarreau91861262007-10-17 17:06:05 +02002576
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002577 if ((sv->state & SRV_MAINTAIN) || (ref->state & SRV_MAINTAIN))
2578 chunk_appendf(&trash, "<tr class=\"maintain\">");
2579 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002580 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002581 "<tr class=\"%s%d\">",
2582 (sv->state & SRV_BACKUP) ? "backup" : "active", state);
Willy Tarreau91861262007-10-17 17:06:05 +02002583
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002584 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002585 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002586 "<td><input type=\"checkbox\" name=\"s\" value=\"%s\"></td>",
2587 sv->id);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002588
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002589 chunk_appendf(&trash,
2590 "<td class=ac><a name=\"%s/%s\"></a>%s"
2591 "<a class=lfsb href=\"#%s/%s\">%s</a>"
2592 "",
2593 px->id, sv->id,
2594 (flags & ST_SHLGNDS) ? "<u>" : "",
2595 px->id, sv->id, sv->id);
Willy Tarreau91861262007-10-17 17:06:05 +02002596
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002597 if (flags & ST_SHLGNDS) {
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002598 chunk_appendf(&trash, "<div class=tips>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002599
2600 switch (addr_to_str(&sv->addr, str, sizeof(str))) {
2601 case AF_INET:
2602 chunk_appendf(&trash, "IPv4: %s:%d, ", str, get_host_port(&sv->addr));
2603 break;
2604 case AF_INET6:
2605 chunk_appendf(&trash, "IPv6: [%s]:%d, ", str, get_host_port(&sv->addr));
2606 break;
2607 case AF_UNIX:
2608 chunk_appendf(&trash, "unix, ");
2609 break;
2610 case -1:
2611 chunk_appendf(&trash, "(%s), ", strerror(errno));
2612 break;
2613 default: /* address family not supported */
2614 break;
Willy Tarreau55bb8452007-10-17 18:44:57 +02002615 }
Willy Tarreau91861262007-10-17 17:06:05 +02002616
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002617 /* id */
2618 chunk_appendf(&trash, "id: %d", sv->puid);
Willy Tarreau91861262007-10-17 17:06:05 +02002619
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002620 /* cookie */
2621 if (sv->cookie) {
2622 chunk_appendf(&trash, ", cookie: '");
Willy Tarreau5031e6a2007-10-18 11:05:48 +02002623
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002624 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
2625 chunk_htmlencode(&trash, &src);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002626
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002627 chunk_appendf(&trash, "'");
Cyril Bonté70be45d2010-10-12 00:14:35 +02002628 }
2629
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002630 chunk_appendf(&trash, "</div>");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002631 }
Willy Tarreau91861262007-10-17 17:06:05 +02002632
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002633 chunk_appendf(&trash,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002634 /* queue : current, max, limit */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002635 "%s</td><td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002636 /* sessions rate : current, max, limit */
2637 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002638 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002639 (flags & ST_SHLGNDS) ? "</u>" : "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002640 U2H(sv->nbpend), U2H(sv->counters.nbpend_max), LIM2A(sv->maxqueue, "-"),
2641 U2H(read_freq_ctr(&sv->sess_per_sec)), U2H(sv->counters.sps_max));
Willy Tarreau91861262007-10-17 17:06:05 +02002642
Willy Tarreau466c9b52012-12-23 02:25:03 +01002643
2644 chunk_appendf(&trash,
2645 /* sessions: current, max, limit, total */
2646 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002647 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002648 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
2649 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002650 U2H(sv->cur_sess), U2H(sv->counters.cur_sess_max), LIM2A(sv->maxconn, "-"),
2651 U2H(sv->counters.cum_sess),
2652 U2H(sv->counters.cum_sess));
Willy Tarreau91861262007-10-17 17:06:05 +02002653
Willy Tarreau466c9b52012-12-23 02:25:03 +01002654 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2655 if (px->mode == PR_MODE_HTTP) {
2656 unsigned long long tot;
2657 for (tot = i = 0; i < 6; i++)
2658 tot += sv->counters.p.http.rsp[i];
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002659
Willy Tarreau466c9b52012-12-23 02:25:03 +01002660 chunk_appendf(&trash,
2661 "<tr><th>Cum. HTTP responses:</th><td>%s</td></tr>"
2662 "<tr><th>- HTTP 1xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2663 "<tr><th>- HTTP 2xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2664 "<tr><th>- HTTP 3xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2665 "<tr><th>- HTTP 4xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2666 "<tr><th>- HTTP 5xx responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2667 "<tr><th>- other responses:</th><td>%s</td><td>(%d%%)</td></tr>"
2668 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002669 U2H(tot),
2670 U2H(sv->counters.p.http.rsp[1]), tot ? (int)(100*sv->counters.p.http.rsp[1] / tot) : 0,
2671 U2H(sv->counters.p.http.rsp[2]), tot ? (int)(100*sv->counters.p.http.rsp[2] / tot) : 0,
2672 U2H(sv->counters.p.http.rsp[3]), tot ? (int)(100*sv->counters.p.http.rsp[3] / tot) : 0,
2673 U2H(sv->counters.p.http.rsp[4]), tot ? (int)(100*sv->counters.p.http.rsp[4] / tot) : 0,
2674 U2H(sv->counters.p.http.rsp[5]), tot ? (int)(100*sv->counters.p.http.rsp[5] / tot) : 0,
2675 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 +02002676 }
Willy Tarreau91861262007-10-17 17:06:05 +02002677
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002678 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01002679 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002680 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01002681 "<td>%s</td>",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002682 U2H(sv->counters.cum_lbconn));
Willy Tarreau91861262007-10-17 17:06:05 +02002683
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002684 chunk_appendf(&trash,
2685 /* bytes : in, out */
2686 "<td>%s</td><td>%s</td>"
2687 /* denied: req, resp */
2688 "<td></td><td>%s</td>"
2689 /* errors : request, connect */
2690 "<td></td><td>%s</td>"
2691 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002692 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002693 /* warnings: retries, redispatches */
2694 "<td>%lld</td><td>%lld</td>"
2695 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002696 U2H(sv->counters.bytes_in), U2H(sv->counters.bytes_out),
2697 U2H(sv->counters.failed_secu),
2698 U2H(sv->counters.failed_conns),
2699 U2H(sv->counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002700 sv->counters.cli_aborts,
2701 sv->counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002702 sv->counters.retries, sv->counters.redispatches);
2703
2704 /* status, lest check */
2705 chunk_appendf(&trash, "<td class=ac>");
2706
2707 if (sv->state & SRV_MAINTAIN) {
2708 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - sv->last_change, 1));
2709 chunk_appendf(&trash, "MAINT");
2710 }
2711 else if (ref != sv && ref->state & SRV_MAINTAIN) {
2712 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2713 chunk_appendf(&trash, "MAINT(via)");
2714 }
2715 else if (ref->state & SRV_CHECKED) {
2716 chunk_appendf(&trash, "%s ", human_time(now.tv_sec - ref->last_change, 1));
2717 chunk_appendf(&trash,
2718 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002719 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2720 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreau55bb8452007-10-17 18:44:57 +02002721 }
Willy Tarreau91861262007-10-17 17:06:05 +02002722
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002723 if (sv->state & SRV_CHECKED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002724 chunk_appendf(&trash,
2725 "</td><td class=ac><u> %s%s",
Simon Hormancd5d7b62013-02-24 17:23:38 +09002726 (sv->check.state & CHK_STATE_RUNNING) ? "* " : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002727 get_check_status_info(sv->check.status));
2728
2729 if (sv->check.status >= HCHK_STATUS_L57DATA)
2730 chunk_appendf(&trash, "/%d", sv->check.code);
2731
2732 if (sv->check.status >= HCHK_STATUS_CHECKED && sv->check.duration >= 0)
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002733 chunk_appendf(&trash, " in %lums", sv->check.duration);
2734
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002735 chunk_appendf(&trash, "<div class=tips>%s",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002736 get_check_status_description(sv->check.status));
2737 if (*sv->check.desc) {
2738 chunk_appendf(&trash, ": ");
2739 chunk_initlen(&src, sv->check.desc, 0, strlen(sv->check.desc));
2740 chunk_htmlencode(&trash, &src);
2741 }
2742 chunk_appendf(&trash, "</div></u>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002743 }
2744 else
2745 chunk_appendf(&trash, "</td><td>");
2746
2747 chunk_appendf(&trash,
2748 /* weight */
2749 "</td><td class=ac>%d</td>"
2750 /* act, bck */
2751 "<td class=ac>%s</td><td class=ac>%s</td>"
2752 "",
2753 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2754 (sv->state & SRV_BACKUP) ? "-" : "Y",
2755 (sv->state & SRV_BACKUP) ? "Y" : "-");
2756
2757 /* check failures: unique, fatal, down time */
2758 if (sv->state & SRV_CHECKED) {
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002759 chunk_appendf(&trash, "<td><u>%lld", ref->counters.failed_checks);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002760
2761 if (ref->observe)
2762 chunk_appendf(&trash, "/%lld", ref->counters.failed_hana);
2763
2764 chunk_appendf(&trash,
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002765 "<div class=tips>Failed Health Checks%s</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002766 "<td>%lld</td><td>%s</td>"
2767 "",
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002768 ref->observe ? "/Health Analyses" : "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002769 ref->counters.down_trans, human_time(srv_downtime(sv), 1));
2770 }
Willy Tarreauf4659942013-11-28 10:50:06 +01002771 else if (sv != ref) {
2772 if (sv->state & SRV_MAINTAIN)
2773 chunk_appendf(&trash,
2774 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\"><a></td>",
2775 ref->proxy->id, ref->id);
2776 else
2777 chunk_appendf(&trash,
2778 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
2779 ref->proxy->id, ref->id, ref->proxy->id, ref->id);
2780 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002781 else
2782 chunk_appendf(&trash, "<td colspan=3></td>");
2783
2784 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01002785 if (sv->state & SRV_WARMINGUP)
2786 chunk_appendf(&trash, "<td class=ac>%d %%</td></tr>\n", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002787 else
2788 chunk_appendf(&trash, "<td class=ac>-</td></tr>\n");
2789 }
2790 else { /* CSV mode */
Simon Horman8c3d0be2013-11-25 10:46:40 +09002791 static char *srv_hlt_st[9] = {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002792 "DOWN,",
2793 "DOWN %d/%d,",
2794 "UP %d/%d,",
2795 "UP,",
2796 "NOLB %d/%d,",
2797 "NOLB,",
Simon Horman8c3d0be2013-11-25 10:46:40 +09002798 "DRAIN %d/%d,",
2799 "DRAIN,",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002800 "no check,"
2801 };
2802
2803 chunk_appendf(&trash,
2804 /* pxid, name */
2805 "%s,%s,"
2806 /* queue : current, max */
2807 "%d,%d,"
2808 /* sessions : current, max, limit, total */
2809 "%d,%d,%s,%lld,"
2810 /* bytes : in, out */
2811 "%lld,%lld,"
2812 /* denied: req, resp */
2813 ",%lld,"
2814 /* errors : request, connect, response */
2815 ",%lld,%lld,"
2816 /* warnings: retries, redispatches */
2817 "%lld,%lld,"
2818 "",
2819 px->id, sv->id,
2820 sv->nbpend, sv->counters.nbpend_max,
Willy Tarreau56adcf22012-12-23 18:00:29 +01002821 sv->cur_sess, sv->counters.cur_sess_max, LIM2A(sv->maxconn, ""), sv->counters.cum_sess,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002822 sv->counters.bytes_in, sv->counters.bytes_out,
2823 sv->counters.failed_secu,
2824 sv->counters.failed_conns, sv->counters.failed_resp,
2825 sv->counters.retries, sv->counters.redispatches);
2826
2827 /* status */
2828 if (sv->state & SRV_MAINTAIN)
2829 chunk_appendf(&trash, "MAINT,");
2830 else if (ref != sv && ref->state & SRV_MAINTAIN)
2831 chunk_appendf(&trash, "MAINT(via),");
2832 else
2833 chunk_appendf(&trash,
2834 srv_hlt_st[state],
Simon Horman58c32972013-11-25 10:46:38 +09002835 (ref->state & SRV_RUNNING) ? (ref->check.health - ref->check.rise + 1) : (ref->check.health),
2836 (ref->state & SRV_RUNNING) ? (ref->check.fall) : (ref->check.rise));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002837
2838 chunk_appendf(&trash,
2839 /* weight, active, backup */
2840 "%d,%d,%d,"
2841 "",
2842 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
2843 (sv->state & SRV_BACKUP) ? 0 : 1,
2844 (sv->state & SRV_BACKUP) ? 1 : 0);
2845
2846 /* check failures: unique, fatal; last change, total downtime */
2847 if (sv->state & SRV_CHECKED)
2848 chunk_appendf(&trash,
2849 "%lld,%lld,%d,%d,",
2850 sv->counters.failed_checks, sv->counters.down_trans,
2851 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
2852 else
2853 chunk_appendf(&trash, ",,,,");
2854
2855 /* queue limit, pid, iid, sid, */
2856 chunk_appendf(&trash,
2857 "%s,"
2858 "%d,%d,%d,",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002859 LIM2A(sv->maxqueue, ""),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002860 relative_pid, px->uuid, sv->puid);
2861
2862 /* throttle */
Willy Tarreaud32c3992013-11-21 15:30:45 +01002863 if (sv->state & SRV_WARMINGUP)
2864 chunk_appendf(&trash, "%d", server_throttle_rate(sv));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002865
2866 /* sessions: lbtot */
2867 chunk_appendf(&trash, ",%lld,", sv->counters.cum_lbconn);
2868
2869 /* tracked */
2870 if (sv->track)
2871 chunk_appendf(&trash, "%s/%s,",
2872 sv->track->proxy->id, sv->track->id);
2873 else
2874 chunk_appendf(&trash, ",");
2875
2876 /* type */
2877 chunk_appendf(&trash, "%d,", STATS_TYPE_SV);
2878
2879 /* rate */
2880 chunk_appendf(&trash, "%u,,%u,",
2881 read_freq_ctr(&sv->sess_per_sec),
2882 sv->counters.sps_max);
2883
2884 if (sv->state & SRV_CHECKED) {
2885 /* check_status */
2886 chunk_appendf(&trash, "%s,", get_check_status_info(sv->check.status));
2887
2888 /* check_code */
2889 if (sv->check.status >= HCHK_STATUS_L57DATA)
2890 chunk_appendf(&trash, "%u,", sv->check.code);
2891 else
2892 chunk_appendf(&trash, ",");
2893
2894 /* check_duration */
2895 if (sv->check.status >= HCHK_STATUS_CHECKED)
2896 chunk_appendf(&trash, "%lu,", sv->check.duration);
2897 else
2898 chunk_appendf(&trash, ",");
2899
2900 }
2901 else
2902 chunk_appendf(&trash, ",,,");
2903
2904 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2905 if (px->mode == PR_MODE_HTTP) {
2906 for (i=1; i<6; i++)
2907 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[i]);
2908
2909 chunk_appendf(&trash, "%lld,", sv->counters.p.http.rsp[0]);
2910 }
2911 else
2912 chunk_appendf(&trash, ",,,,,,");
2913
2914 /* failed health analyses */
2915 chunk_appendf(&trash, "%lld,", sv->counters.failed_hana);
2916
2917 /* requests : req_rate, req_rate_max, req_tot, */
2918 chunk_appendf(&trash, ",,,");
2919
2920 /* errors: cli_aborts, srv_aborts */
2921 chunk_appendf(&trash, "%lld,%lld,",
2922 sv->counters.cli_aborts, sv->counters.srv_aborts);
2923
2924 /* compression: in, out, bypassed, comp_rsp */
2925 chunk_appendf(&trash, ",,,,");
2926
2927 /* finish with EOL */
2928 chunk_appendf(&trash, "\n");
2929 }
2930 return 1;
2931}
2932
2933/* Dumps a line for backend <px> to the trash for and uses the state from stream
2934 * interface <si> and stats flags <flags>. The caller is responsible for clearing
2935 * the trash if needed. Returns non-zero if it emits anything, zero otherwise.
2936 */
2937static int stats_dump_be_stats(struct stream_interface *si, struct proxy *px, int flags)
2938{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002939 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002940 struct chunk src;
2941 int i;
2942
2943 if (!(px->cap & PR_CAP_BE))
2944 return 0;
2945
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002946 if ((appctx->ctx.stats.flags & STAT_BOUND) && !(appctx->ctx.stats.type & (1 << STATS_TYPE_BE)))
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002947 return 0;
2948
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002949 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002950 chunk_appendf(&trash, "<tr class=\"backend\">");
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002951 if (px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002952 /* Column sub-heading for Enable or Disable server */
2953 chunk_appendf(&trash, "<td></td>");
2954 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002955 chunk_appendf(&trash,
2956 "<td class=ac>"
2957 /* name */
2958 "%s<a name=\"%s/Backend\"></a>"
2959 "<a class=lfsb href=\"#%s/Backend\">Backend</a>"
2960 "",
2961 (flags & ST_SHLGNDS)?"<u>":"",
2962 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002963
2964 if (flags & ST_SHLGNDS) {
2965 /* balancing */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002966 chunk_appendf(&trash, "<div class=tips>balancing: %s",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002967 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
2968
2969 /* cookie */
2970 if (px->cookie_name) {
2971 chunk_appendf(&trash, ", cookie: '");
2972 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
2973 chunk_htmlencode(&trash, &src);
2974 chunk_appendf(&trash, "'");
2975 }
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002976 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002977 }
2978
2979 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002980 "%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002981 /* queue : current, max */
2982 "<td>%s</td><td>%s</td><td></td>"
2983 /* sessions rate : current, max, limit */
2984 "<td>%s</td><td>%s</td><td></td>"
2985 "",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002986 (flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002987 U2H(px->nbpend) /* or px->totpend ? */, U2H(px->be_counters.nbpend_max),
2988 U2H(read_freq_ctr(&px->be_sess_per_sec)), U2H(px->be_counters.sps_max));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002989
2990 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01002991 /* sessions: current, max, limit, total */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002992 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02002993 "<td><u>%s<div class=tips><table class=det>"
Willy Tarreau466c9b52012-12-23 02:25:03 +01002994 "<tr><th>Cum. sessions:</th><td>%s</td></tr>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002995 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01002996 U2H(px->beconn), U2H(px->be_counters.conn_max), U2H(px->fullconn),
2997 U2H(px->be_counters.cum_conn),
2998 U2H(px->be_counters.cum_conn));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01002999
Willy Tarreau466c9b52012-12-23 02:25:03 +01003000 /* http response (via hover): 1xx, 2xx, 3xx, 4xx, 5xx, other */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003001 if (px->mode == PR_MODE_HTTP) {
Willy Tarreau466c9b52012-12-23 02:25:03 +01003002 chunk_appendf(&trash,
3003 "<tr><th>Cum. HTTP requests:</th><td>%s</td></tr>"
3004 "<tr><th>- HTTP 1xx responses:</th><td>%s</td></tr>"
3005 "<tr><th>- HTTP 2xx responses:</th><td>%s</td></tr>"
3006 "<tr><th>&nbsp;&nbsp;Compressed 2xx:</th><td>%s</td><td>(%d%%)</td></tr>"
3007 "<tr><th>- HTTP 3xx responses:</th><td>%s</td></tr>"
3008 "<tr><th>- HTTP 4xx responses:</th><td>%s</td></tr>"
3009 "<tr><th>- HTTP 5xx responses:</th><td>%s</td></tr>"
3010 "<tr><th>- other responses:</th><td>%s</td></tr>"
3011 "<tr><th>Intercepted requests:</th><td>%s</td></tr>"
3012 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003013 U2H(px->be_counters.p.http.cum_req),
3014 U2H(px->be_counters.p.http.rsp[1]),
3015 U2H(px->be_counters.p.http.rsp[2]),
3016 U2H(px->be_counters.p.http.comp_rsp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003017 px->be_counters.p.http.rsp[2] ?
Willy Tarreau466c9b52012-12-23 02:25:03 +01003018 (int)(100*px->be_counters.p.http.comp_rsp/px->be_counters.p.http.rsp[2]) : 0,
Willy Tarreau56adcf22012-12-23 18:00:29 +01003019 U2H(px->be_counters.p.http.rsp[3]),
3020 U2H(px->be_counters.p.http.rsp[4]),
3021 U2H(px->be_counters.p.http.rsp[5]),
3022 U2H(px->be_counters.p.http.rsp[0]),
3023 U2H(px->be_counters.intercepted_req));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003024 }
3025
3026 chunk_appendf(&trash,
Willy Tarreau466c9b52012-12-23 02:25:03 +01003027 "</table></div></u></td>"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003028 /* sessions: lbtot */
Willy Tarreau466c9b52012-12-23 02:25:03 +01003029 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003030 /* bytes: in */
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003031 "<td>%s</td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003032 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003033 U2H(px->be_counters.cum_lbconn),
3034 U2H(px->be_counters.bytes_in));
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003035
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003036 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003037 /* bytes:out + compression stats (via hover): comp_in, comp_out, comp_byp */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003038 "<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 +01003039 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "<u>":"",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003040 U2H(px->be_counters.bytes_out),
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003041 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp,
3042 px->be_counters.comp_in ?
3043 (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 +01003044 (px->be_counters.comp_in || px->be_counters.comp_byp) ? "</u>":"");
3045
3046 chunk_appendf(&trash,
3047 /* denied: req, resp */
3048 "<td>%s</td><td>%s</td>"
3049 /* errors : request, connect */
3050 "<td></td><td>%s</td>"
3051 /* errors : response */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003052 "<td><u>%s<div class=tips>Connection resets during transfers: %lld client, %lld server</div></u></td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003053 /* warnings: retries, redispatches */
3054 "<td>%lld</td><td>%lld</td>"
3055 /* backend status: reflect backend status (up/down): we display UP
3056 * if the backend has known working servers or if it has no server at
3057 * all (eg: for stats). Then we display the total weight, number of
3058 * active and backups. */
3059 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
3060 "<td class=ac>%d</td><td class=ac>%d</td>"
3061 "",
Willy Tarreau56adcf22012-12-23 18:00:29 +01003062 U2H(px->be_counters.denied_req), U2H(px->be_counters.denied_resp),
3063 U2H(px->be_counters.failed_conns),
3064 U2H(px->be_counters.failed_resp),
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003065 px->be_counters.cli_aborts,
3066 px->be_counters.srv_aborts,
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003067 px->be_counters.retries, px->be_counters.redispatches,
3068 human_time(now.tv_sec - px->last_change, 1),
3069 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
3070 "<font color=\"red\"><b>DOWN</b></font>",
3071 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3072 px->srv_act, px->srv_bck);
3073
3074 chunk_appendf(&trash,
3075 /* rest of backend: nothing, down transitions, total downtime, throttle */
3076 "<td class=ac>&nbsp;</td><td>%d</td>"
3077 "<td>%s</td>"
3078 "<td></td>"
3079 "</tr>",
3080 px->down_trans,
3081 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
3082 }
3083 else { /* CSV mode */
3084 chunk_appendf(&trash,
3085 /* pxid, name */
3086 "%s,BACKEND,"
3087 /* queue : current, max */
3088 "%d,%d,"
3089 /* sessions : current, max, limit, total */
3090 "%d,%d,%d,%lld,"
3091 /* bytes : in, out */
3092 "%lld,%lld,"
3093 /* denied: req, resp */
3094 "%lld,%lld,"
3095 /* errors : request, connect, response */
3096 ",%lld,%lld,"
3097 /* warnings: retries, redispatches */
3098 "%lld,%lld,"
3099 /* backend status: reflect backend status (up/down): we display UP
3100 * if the backend has known working servers or if it has no server at
3101 * all (eg: for stats). Then we display the total weight, number of
3102 * active and backups. */
3103 "%s,"
3104 "%d,%d,%d,"
3105 /* rest of backend: nothing, down transitions, last change, total downtime */
3106 ",%d,%d,%d,,"
3107 /* pid, iid, sid, throttle, lbtot, tracked, type */
3108 "%d,%d,0,,%lld,,%d,"
3109 /* rate, rate_lim, rate_max, */
3110 "%u,,%u,"
3111 /* check_status, check_code, check_duration */
3112 ",,,",
3113 px->id,
3114 px->nbpend /* or px->totpend ? */, px->be_counters.nbpend_max,
3115 px->beconn, px->be_counters.conn_max, px->fullconn, px->be_counters.cum_conn,
3116 px->be_counters.bytes_in, px->be_counters.bytes_out,
3117 px->be_counters.denied_req, px->be_counters.denied_resp,
3118 px->be_counters.failed_conns, px->be_counters.failed_resp,
3119 px->be_counters.retries, px->be_counters.redispatches,
3120 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
3121 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
3122 px->srv_act, px->srv_bck,
3123 px->down_trans, (int)(now.tv_sec - px->last_change),
3124 px->srv?be_downtime(px):0,
3125 relative_pid, px->uuid,
3126 px->be_counters.cum_lbconn, STATS_TYPE_BE,
3127 read_freq_ctr(&px->be_sess_per_sec),
3128 px->be_counters.sps_max);
3129
3130 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
3131 if (px->mode == PR_MODE_HTTP) {
3132 for (i=1; i<6; i++)
3133 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[i]);
3134 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.rsp[0]);
3135 }
3136 else
3137 chunk_appendf(&trash, ",,,,,,");
3138
3139 /* failed health analyses */
3140 chunk_appendf(&trash, ",");
3141
3142 /* requests : req_rate, req_rate_max, req_tot, */
3143 chunk_appendf(&trash, ",,,");
3144
3145 /* errors: cli_aborts, srv_aborts */
3146 chunk_appendf(&trash, "%lld,%lld,",
3147 px->be_counters.cli_aborts, px->be_counters.srv_aborts);
3148
3149 /* compression: in, out, bypassed */
3150 chunk_appendf(&trash, "%lld,%lld,%lld,",
3151 px->be_counters.comp_in, px->be_counters.comp_out, px->be_counters.comp_byp);
3152
3153 /* compression: comp_rsp */
3154 chunk_appendf(&trash, "%lld,", px->be_counters.p.http.comp_rsp);
3155
3156 /* finish with EOL */
3157 chunk_appendf(&trash, "\n");
3158 }
3159 return 1;
3160}
3161
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003162/* Dumps the HTML table header for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003163 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003164 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003165 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003166static void stats_dump_html_px_hdr(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003167{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003168 struct appctx *appctx = __objt_appctx(si->end);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003169 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
3170
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003171 if (px->cap & PR_CAP_BE && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003172 /* A form to enable/disable this proxy servers */
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003173
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003174 /* 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 +02003175 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003176 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003177 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003178 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3179 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003180 }
3181
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003182 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003183 "<form action=\"%s%s%s%s\" method=\"post\">",
3184 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003185 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3186 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003187 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003188 }
3189
3190 /* print a new table */
3191 chunk_appendf(&trash,
3192 "<table class=\"tbl\" width=\"100%%\">\n"
3193 "<tr class=\"titre\">"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003194 "<th class=\"pxname\" width=\"10%%\">");
3195
3196 chunk_appendf(&trash,
3197 "<a name=\"%s\"></a>%s"
3198 "<a class=px href=\"#%s\">%s</a>",
3199 px->id,
3200 (uri->flags & ST_SHLGNDS) ? "<u>":"",
3201 px->id, px->id);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003202
3203 if (uri->flags & ST_SHLGNDS) {
3204 /* cap, mode, id */
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003205 chunk_appendf(&trash, "<div class=tips>cap: %s, mode: %s, id: %d",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003206 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
3207 px->uuid);
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003208 chunk_appendf(&trash, "</div>");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003209 }
3210
3211 chunk_appendf(&trash,
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003212 "%s</th>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003213 "<th class=\"%s\" width=\"90%%\">%s</th>"
3214 "</tr>\n"
3215 "</table>\n"
3216 "<table class=\"tbl\" width=\"100%%\">\n"
3217 "<tr class=\"titre\">",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003218 (uri->flags & ST_SHLGNDS) ? "</u>":"",
3219 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
3220
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003221 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003222 /* Column heading for Enable or Disable server */
3223 chunk_appendf(&trash, "<th rowspan=2 width=1></th>");
Willy Tarreau91861262007-10-17 17:06:05 +02003224 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003225
3226 chunk_appendf(&trash,
3227 "<th rowspan=2></th>"
3228 "<th colspan=3>Queue</th>"
3229 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
3230 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
3231 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
3232 "<th colspan=9>Server</th>"
3233 "</tr>\n"
3234 "<tr class=\"titre\">"
3235 "<th>Cur</th><th>Max</th><th>Limit</th>"
3236 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
3237 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
3238 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
3239 "<th>Resp</th><th>Retr</th><th>Redis</th>"
3240 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
3241 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
3242 "<th>Thrtle</th>\n"
3243 "</tr>");
Willy Tarreau91861262007-10-17 17:06:05 +02003244}
3245
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003246/* Dumps the HTML table trailer for proxy <px> to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003247 * stream interface <si>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003248 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003249static void stats_dump_html_px_end(struct stream_interface *si, struct proxy *px)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003250{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003251 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003252 chunk_appendf(&trash, "</table>");
3253
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003254 if ((px->cap & PR_CAP_BE) && px->srv && (appctx->ctx.stats.flags & STAT_ADMIN)) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003255 /* close the form used to enable/disable this proxy servers */
3256 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003257 "Choose the action to perform on the checked servers : "
3258 "<select name=action>"
3259 "<option value=\"\"></option>"
3260 "<option value=\"disable\">Disable</option>"
3261 "<option value=\"enable\">Enable</option>"
3262 "<option value=\"stop\">Soft Stop</option>"
3263 "<option value=\"start\">Soft Start</option>"
3264 "<option value=\"shutdown\">Kill Sessions</option>"
3265 "</select>"
3266 "<input type=\"hidden\" name=\"b\" value=\"#%d\">"
3267 "&nbsp;<input type=\"submit\" value=\"Apply\">"
3268 "</form>",
3269 px->uuid);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003270 }
3271
3272 chunk_appendf(&trash, "<p>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003273}
Willy Tarreau91861262007-10-17 17:06:05 +02003274
3275/*
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003276 * Dumps statistics for a proxy. The output is sent to the stream interface's
3277 * input buffer. Returns 0 if it had to stop dumping data because of lack of
3278 * buffer space, or non-zero if everything completed. This function is used
3279 * both by the CLI and the HTTP entry points, and is able to dump the output
3280 * in HTML or CSV formats. If the later, <uri> must be NULL.
Willy Tarreau91861262007-10-17 17:06:05 +02003281 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003282static int stats_dump_proxy_to_buffer(struct stream_interface *si, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02003283{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003284 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02003285 struct session *s = session_from_task(si->owner);
Willy Tarreau7421efb2012-07-02 15:11:27 +02003286 struct channel *rep = si->ib;
Willy Tarreau44267702011-10-28 15:35:33 +02003287 struct server *sv, *svs; /* server and server-state, server-state=server or server->track */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003288 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02003289
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003290 chunk_reset(&trash);
Willy Tarreau91861262007-10-17 17:06:05 +02003291
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003292 switch (appctx->ctx.stats.px_st) {
Willy Tarreau295a8372011-03-10 11:25:07 +01003293 case STAT_PX_ST_INIT:
Willy Tarreau91861262007-10-17 17:06:05 +02003294 /* we are on a new proxy */
Willy Tarreau91861262007-10-17 17:06:05 +02003295 if (uri && uri->scope) {
3296 /* we have a limited scope, we have to check the proxy name */
3297 struct stat_scope *scope;
3298 int len;
3299
3300 len = strlen(px->id);
3301 scope = uri->scope;
3302
3303 while (scope) {
3304 /* match exact proxy name */
3305 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
3306 break;
3307
3308 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02003309 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02003310 break;
3311 scope = scope->next;
3312 }
3313
3314 /* proxy name not found : don't dump anything */
3315 if (scope == NULL)
3316 return 1;
3317 }
3318
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003319 /* if the user has requested a limited output and the proxy
3320 * name does not match, skip it.
3321 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003322 if (appctx->ctx.stats.scope_len &&
3323 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 +02003324 return 1;
3325
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003326 if ((appctx->ctx.stats.flags & STAT_BOUND) &&
3327 (appctx->ctx.stats.iid != -1) &&
3328 (px->uuid != appctx->ctx.stats.iid))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003329 return 1;
3330
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003331 appctx->ctx.stats.px_st = STAT_PX_ST_TH;
Willy Tarreau91861262007-10-17 17:06:05 +02003332 /* fall through */
3333
Willy Tarreau295a8372011-03-10 11:25:07 +01003334 case STAT_PX_ST_TH:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003335 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003336 stats_dump_html_px_hdr(si, px, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003337 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau55bb8452007-10-17 18:44:57 +02003338 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003339 }
Willy Tarreau91861262007-10-17 17:06:05 +02003340
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003341 appctx->ctx.stats.px_st = STAT_PX_ST_FE;
Willy Tarreau91861262007-10-17 17:06:05 +02003342 /* fall through */
3343
Willy Tarreau295a8372011-03-10 11:25:07 +01003344 case STAT_PX_ST_FE:
Willy Tarreau91861262007-10-17 17:06:05 +02003345 /* print the frontend */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003346 if (stats_dump_fe_stats(si, px))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003347 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003348 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02003349
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003350 appctx->ctx.stats.l = px->conf.listeners.n;
3351 appctx->ctx.stats.px_st = STAT_PX_ST_LI;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003352 /* fall through */
3353
Willy Tarreau295a8372011-03-10 11:25:07 +01003354 case STAT_PX_ST_LI:
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003355 /* stats.l has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003356 for (; appctx->ctx.stats.l != &px->conf.listeners; appctx->ctx.stats.l = l->by_fe.n) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02003357 if (buffer_almost_full(rep->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02003358 return 0;
3359
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003360 l = LIST_ELEM(appctx->ctx.stats.l, struct listener *, by_fe);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003361 if (!l->counters)
3362 continue;
3363
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003364 if (appctx->ctx.stats.flags & STAT_BOUND) {
3365 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SO)))
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003366 break;
3367
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003368 if (appctx->ctx.stats.sid != -1 && l->luid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003369 continue;
3370 }
3371
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003372 /* print the frontend */
3373 if (stats_dump_li_stats(si, px, l, uri ? uri->flags : 0))
3374 if (bi_putchk(rep, &trash) == -1)
3375 return 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003376 }
3377
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003378 appctx->ctx.stats.sv = px->srv; /* may be NULL */
3379 appctx->ctx.stats.px_st = STAT_PX_ST_SV;
Willy Tarreau91861262007-10-17 17:06:05 +02003380 /* fall through */
3381
Willy Tarreau295a8372011-03-10 11:25:07 +01003382 case STAT_PX_ST_SV:
Willy Tarreau91861262007-10-17 17:06:05 +02003383 /* stats.sv has been initialized above */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003384 for (; appctx->ctx.stats.sv != NULL; appctx->ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01003385 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 +02003386
Willy Tarreau9b28e032012-10-12 23:49:43 +02003387 if (buffer_almost_full(rep->buf))
Willy Tarreau4e33d862009-10-11 23:35:10 +02003388 return 0;
3389
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003390 sv = appctx->ctx.stats.sv;
Willy Tarreau91861262007-10-17 17:06:05 +02003391
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003392 if (appctx->ctx.stats.flags & STAT_BOUND) {
3393 if (!(appctx->ctx.stats.type & (1 << STATS_TYPE_SV)))
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003394 break;
3395
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003396 if (appctx->ctx.stats.sid != -1 && sv->puid != appctx->ctx.stats.sid)
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01003397 continue;
3398 }
3399
Willy Tarreau44267702011-10-28 15:35:33 +02003400 if (sv->track)
3401 svs = sv->track;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003402 else
3403 svs = sv;
3404
Willy Tarreau91861262007-10-17 17:06:05 +02003405 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003406 if (!(svs->state & SRV_CHECKED))
Simon Horman8c3d0be2013-11-25 10:46:40 +09003407 sv_state = 8;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003408 else if (svs->state & SRV_RUNNING) {
Simon Horman58c32972013-11-25 10:46:38 +09003409 if (svs->check.health == svs->check.rise + svs->check.fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02003410 sv_state = 3; /* UP */
3411 else
3412 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01003413
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003414 if (svs->state & SRV_DRAIN)
Simon Horman8c3d0be2013-11-25 10:46:40 +09003415 sv_state += 4;
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003416 else if (svs->state & SRV_GOINGDOWN)
3417 sv_state += 2;
Willy Tarreau2ea81932007-11-30 12:04:38 +01003418 }
Willy Tarreau91861262007-10-17 17:06:05 +02003419 else
Simon Horman125d0992013-02-24 17:23:38 +09003420 if (svs->check.health)
Willy Tarreau91861262007-10-17 17:06:05 +02003421 sv_state = 1; /* going up */
3422 else
3423 sv_state = 0; /* DOWN */
3424
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003425 if (((sv_state == 0) || (sv->state & SRV_MAINTAIN)) && (appctx->ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02003426 /* do not report servers which are DOWN */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003427 appctx->ctx.stats.sv = sv->next;
Willy Tarreau91861262007-10-17 17:06:05 +02003428 continue;
3429 }
3430
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003431 if (stats_dump_sv_stats(si, px, uri ? uri->flags : 0, sv, sv_state))
3432 if (bi_putchk(rep, &trash) == -1)
3433 return 0;
3434 } /* for sv */
Cyril Bonté474be412010-10-12 00:14:36 +02003435
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003436 appctx->ctx.stats.px_st = STAT_PX_ST_BE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003437 /* fall through */
Cyril Bonté70be45d2010-10-12 00:14:35 +02003438
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003439 case STAT_PX_ST_BE:
3440 /* print the backend */
3441 if (stats_dump_be_stats(si, px, uri ? uri->flags : 0))
3442 if (bi_putchk(rep, &trash) == -1)
3443 return 0;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003444
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003445 appctx->ctx.stats.px_st = STAT_PX_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003446 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003447
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003448 case STAT_PX_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003449 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003450 stats_dump_html_px_end(si, px);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003451 if (bi_putchk(rep, &trash) == -1)
3452 return 0;
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003453 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003454
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003455 appctx->ctx.stats.px_st = STAT_PX_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003456 /* fall through */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003457
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003458 case STAT_PX_ST_FIN:
3459 return 1;
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003460
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003461 default:
3462 /* unknown state, we should put an abort() here ! */
3463 return 1;
3464 }
3465}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003466
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003467/* Dumps the HTTP stats head block to the trash for and uses the per-uri
3468 * parameters <uri>. The caller is responsible for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003469 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003470static void stats_dump_html_head(struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003471{
3472 /* WARNING! This must fit in the first buffer !!! */
3473 chunk_appendf(&trash,
3474 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
3475 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
3476 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
3477 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
3478 "<style type=\"text/css\"><!--\n"
3479 "body {"
3480 " font-family: arial, helvetica, sans-serif;"
3481 " font-size: 12px;"
3482 " font-weight: normal;"
3483 " color: black;"
3484 " background: white;"
3485 "}\n"
3486 "th,td {"
3487 " font-size: 10px;"
3488 "}\n"
3489 "h1 {"
3490 " font-size: x-large;"
3491 " margin-bottom: 0.5em;"
3492 "}\n"
3493 "h2 {"
3494 " font-family: helvetica, arial;"
3495 " font-size: x-large;"
3496 " font-weight: bold;"
3497 " font-style: italic;"
3498 " color: #6020a0;"
3499 " margin-top: 0em;"
3500 " margin-bottom: 0em;"
3501 "}\n"
3502 "h3 {"
3503 " font-family: helvetica, arial;"
3504 " font-size: 16px;"
3505 " font-weight: bold;"
3506 " color: #b00040;"
3507 " background: #e8e8d0;"
3508 " margin-top: 0em;"
3509 " margin-bottom: 0em;"
3510 "}\n"
3511 "li {"
3512 " margin-top: 0.25em;"
3513 " margin-right: 2em;"
3514 "}\n"
3515 ".hr {margin-top: 0.25em;"
3516 " border-color: black;"
3517 " border-bottom-style: solid;"
3518 "}\n"
3519 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
3520 ".total {background: #20D0D0;color: #ffff80;}\n"
3521 ".frontend {background: #e8e8d0;}\n"
3522 ".socket {background: #d0d0d0;}\n"
3523 ".backend {background: #e8e8d0;}\n"
3524 ".active0 {background: #ff9090;}\n"
3525 ".active1 {background: #ffd020;}\n"
3526 ".active2 {background: #ffffa0;}\n"
3527 ".active3 {background: #c0ffc0;}\n"
3528 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003529 ".active5 {background: #20a0ff;}\n" /* NOLB state shows different to be detected */
3530 ".active6 {background: #ffffa0;}\n" /* DRAIN going down = same as going down */
3531 ".active7 {background: #20a0FF;}\n" /* DRAIN must be detected (weight=0) */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003532 ".active8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003533 ".backup0 {background: #ff9090;}\n"
3534 ".backup1 {background: #ff80ff;}\n"
3535 ".backup2 {background: #c060ff;}\n"
3536 ".backup3 {background: #b0d0ff;}\n"
3537 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
3538 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
Simon Horman8c3d0be2013-11-25 10:46:40 +09003539 ".backup6 {background: #c060ff;}\n"
3540 ".backup7 {background: #cc9900;}\n"
3541 ".backup8 {background: #e0e0e0;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003542 ".maintain {background: #c07820;}\n"
3543 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
3544 "\n"
3545 "a.px:link {color: #ffff40; text-decoration: none;}"
3546 "a.px:visited {color: #ffff40; text-decoration: none;}"
3547 "a.px:hover {color: #ffffff; text-decoration: none;}"
3548 "a.lfsb:link {color: #000000; text-decoration: none;}"
3549 "a.lfsb:visited {color: #000000; text-decoration: none;}"
3550 "a.lfsb:hover {color: #505050; text-decoration: none;}"
3551 "\n"
3552 "table.tbl { border-collapse: collapse; border-style: none;}\n"
3553 "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"
3554 "table.tbl td.ac { text-align: center;}\n"
3555 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
3556 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
3557 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
3558 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
3559 "\n"
3560 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
3561 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
3562 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreau466c9b52012-12-23 02:25:03 +01003563 "table.det { border-collapse: collapse; border-style: none; }\n"
3564 "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"
3565 "table.det td { text-align: right; border-width: 0px; padding: 0px 0px 0px 4px; white-space: nowrap; font-style:normal;font-size:11px;font-weight:normal;font-family: monospace;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003566 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003567 "div.tips {\n"
Willy Tarreaue7dbfc62012-12-23 01:59:23 +01003568 " display:block;\n"
3569 " visibility:hidden;\n"
3570 " z-index:2147483647;\n"
3571 " position:absolute;\n"
3572 " padding:2px 4px 3px;\n"
3573 " background:#f0f060; color:#000000;\n"
3574 " border:1px solid #7040c0;\n"
3575 " white-space:nowrap;\n"
3576 " font-style:normal;font-size:11px;font-weight:normal;\n"
3577 " -moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;\n"
3578 " -moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;\n"
3579 "}\n"
Willy Tarreau656a9ce2013-04-19 14:41:29 +02003580 "u:hover div.tips {visibility:visible;}\n"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003581 "-->\n"
3582 "</style></head>\n",
3583 (uri->flags & ST_SHNODE) ? " on " : "",
3584 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
3585 );
3586}
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003587
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003588/* Dumps the HTML stats information block to the trash for and uses the state from
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003589 * stream interface <si> and per-uri parameters <uri>. The caller is responsible
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003590 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003591 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003592static void stats_dump_html_info(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003593{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003594 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003595 unsigned int up = (now.tv_sec - start_date.tv_sec);
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003596 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01003597
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003598 /* WARNING! this has to fit the first packet too.
3599 * We are around 3.5 kB, add adding entries will
3600 * become tricky if we want to support 4kB buffers !
3601 */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003602 chunk_appendf(&trash,
3603 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
3604 PRODUCT_NAME "%s</a></h1>\n"
3605 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
3606 "<hr width=\"100%%\" class=\"hr\">\n"
3607 "<h3>&gt; General process information</h3>\n"
3608 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
3609 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
3610 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
3611 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
3612 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
3613 "current conns = %d; current pipes = %d/%d; conn rate = %d/sec<br>\n"
3614 "Running tasks: %d/%d; idle = %d %%<br>\n"
3615 "</td><td align=\"center\" nowrap>\n"
3616 "<table class=\"lgd\"><tr>\n"
3617 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
3618 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
3619 "</tr><tr>\n"
3620 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
3621 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
3622 "</tr><tr>\n"
3623 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
3624 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
3625 "</tr><tr>\n"
3626 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Simon Horman8c3d0be2013-11-25 10:46:40 +09003627 "</tr><tr>\n"
3628 "<td class=\"active8\"></td><td class=\"noborder\">not checked </td>"
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003629 "</tr><tr>\n"
3630 "<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 -07003631 "</tr><tr>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003632 "<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 +01003633 "</tr></table>\n"
Willy Tarreau6b7764a2013-12-04 00:43:21 +01003634 "Note: \"NOLB\"/\"DRAIN\" = UP with load-balancing disabled."
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003635 "</td>"
3636 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3637 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
3638 "",
3639 (uri->flags & ST_HIDEVER) ? "" : (STATS_VERSION_STRING),
3640 pid, (uri->flags & ST_SHNODE) ? " on " : "",
3641 (uri->flags & ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
3642 (uri->flags & ST_SHDESC) ? ": " : "",
3643 (uri->flags & ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
3644 pid, relative_pid, global.nbproc,
3645 up / 86400, (up % 86400) / 3600,
3646 (up % 3600) / 60, (up % 60),
3647 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
3648 global.rlimit_memmax ? " MB" : "",
3649 global.rlimit_nofile,
3650 global.maxsock, global.maxconn, global.maxpipes,
3651 actconn, pipes_used, pipes_used+pipes_free, read_freq_ctr(&global.conn_per_sec),
3652 run_queue_cur, nb_tasks_cur, idle_pct
3653 );
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003654
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003655 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
3656 memcpy(scope_txt, bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3657 scope_txt[appctx->ctx.stats.scope_len] = '\0';
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003658
3659 chunk_appendf(&trash,
Cyril Bonté54656842013-04-18 22:38:35 +02003660 "<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 +02003661 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003662 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3663 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
3664 (appctx->ctx.stats.scope_len > 0) ? scope_txt : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003665 STAT_SCOPE_TXT_MAXLEN);
3666
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003667 /* 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 +02003668 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003669 if (appctx->ctx.stats.scope_len) {
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003670 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003671 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
3672 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003673 }
3674
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003675 if (appctx->ctx.stats.flags & STAT_HIDE_DOWN)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003676 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003677 "<li><a href=\"%s%s%s%s\">Show all servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003678 uri->uri_prefix,
3679 "",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003680 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003681 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003682 else
3683 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003684 "<li><a href=\"%s%s%s%s\">Hide 'DOWN' servers</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003685 uri->uri_prefix,
3686 ";up",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003687 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003688 scope_txt);
Willy Tarreau91861262007-10-17 17:06:05 +02003689
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003690 if (uri->refresh > 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003691 if (appctx->ctx.stats.flags & STAT_NO_REFRESH)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003692 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003693 "<li><a href=\"%s%s%s%s\">Enable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003694 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003695 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003696 "",
3697 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003698 else
3699 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003700 "<li><a href=\"%s%s%s%s\">Disable refresh</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003701 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003702 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003703 ";norefresh",
3704 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003705 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02003706
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003707 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003708 "<li><a href=\"%s%s%s%s\">Refresh now</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003709 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003710 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3711 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003712 scope_txt);
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02003713
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003714 chunk_appendf(&trash,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003715 "<li><a href=\"%s;csv%s%s\">CSV export</a><br>\n",
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003716 uri->uri_prefix,
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02003717 (uri->refresh > 0) ? ";norefresh" : "",
3718 scope_txt);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003719
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003720 chunk_appendf(&trash,
3721 "</ul></td>"
3722 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
3723 "<b>External resources:</b><ul style=\"margin-top: 0.25em;\">\n"
3724 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
3725 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
3726 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
3727 "</ul>"
3728 "</td>"
3729 "</tr></table>\n"
3730 ""
3731 );
Willy Tarreau4bab24d2007-11-30 18:16:29 +01003732
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003733 if (appctx->ctx.stats.st_code) {
3734 switch (appctx->ctx.stats.st_code) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003735 case STAT_STATUS_DONE:
3736 chunk_appendf(&trash,
3737 "<p><div class=active3>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003738 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003739 "Action processed successfully."
Willy Tarreauba6be982013-04-19 12:16:55 +02003740 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003741 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3742 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003743 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003744 break;
3745 case STAT_STATUS_NONE:
3746 chunk_appendf(&trash,
3747 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003748 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003749 "Nothing has changed."
Willy Tarreauba6be982013-04-19 12:16:55 +02003750 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003751 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3752 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003753 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003754 break;
3755 case STAT_STATUS_PART:
3756 chunk_appendf(&trash,
3757 "<p><div class=active2>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003758 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003759 "Action partially processed.<br>"
3760 "Some server names are probably unknown or ambiguous (duplicated names in the backend)."
Willy Tarreauba6be982013-04-19 12:16:55 +02003761 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003762 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3763 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003764 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003765 break;
3766 case STAT_STATUS_ERRP:
3767 chunk_appendf(&trash,
3768 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003769 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003770 "Action not processed because of invalid parameters."
3771 "<ul>"
3772 "<li>The action is maybe unknown.</li>"
3773 "<li>The backend name is probably unknown or ambiguous (duplicated names).</li>"
3774 "<li>Some server names are probably unknown or ambiguous (duplicated names in the backend).</li>"
3775 "</ul>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003776 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003777 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3778 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003779 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003780 break;
3781 case STAT_STATUS_EXCD:
3782 chunk_appendf(&trash,
3783 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003784 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003785 "<b>Action not processed : the buffer couldn't store all the data.<br>"
3786 "You should retry with less servers at a time.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003787 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003788 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3789 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003790 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003791 break;
3792 case STAT_STATUS_DENY:
3793 chunk_appendf(&trash,
3794 "<p><div class=active0>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003795 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003796 "<b>Action denied.</b>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003797 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003798 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3799 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003800 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003801 break;
3802 default:
3803 chunk_appendf(&trash,
Simon Horman8c3d0be2013-11-25 10:46:40 +09003804 "<p><div class=active8>"
Willy Tarreauba6be982013-04-19 12:16:55 +02003805 "<a class=lfsb href=\"%s%s%s%s\" title=\"Remove this message\">[X]</a> "
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003806 "Unexpected result."
Willy Tarreauba6be982013-04-19 12:16:55 +02003807 "</div>\n", uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003808 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
3809 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreauba6be982013-04-19 12:16:55 +02003810 scope_txt);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003811 }
3812 chunk_appendf(&trash, "<p>\n");
3813 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003814}
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01003815
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003816/* Dumps the HTML stats trailer block to the trash. The caller is responsible
3817 * for clearing the trash if needed.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003818 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003819static void stats_dump_html_end()
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003820{
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003821 chunk_appendf(&trash, "</body></html>\n");
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003822}
Willy Tarreau7f062c42009-03-05 18:43:00 +01003823
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003824/* This function dumps statistics onto the stream interface's read buffer in
3825 * either CSV or HTML format. <uri> contains some HTML-specific parameters that
Willy Tarreau306f8302013-07-08 15:53:06 +02003826 * are ignored for CSV format (hence <uri> may be NULL there). It returns 0 if
3827 * it had to stop writing data and an I/O is needed, 1 if the dump is finished
3828 * and the session must be closed, or -1 in case of any error. This function is
3829 * used by both the CLI and the HTTP handlers.
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003830 */
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003831static int stats_dump_stat_to_buffer(struct stream_interface *si, struct uri_auth *uri)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003832{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003833 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003834 struct channel *rep = si->ib;
3835 struct proxy *px;
Willy Tarreau7f062c42009-03-05 18:43:00 +01003836
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003837 chunk_reset(&trash);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02003838
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003839 switch (appctx->st2) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003840 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003841 appctx->st2 = STAT_ST_HEAD; /* let's start producing data */
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003842 /* fall through */
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01003843
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003844 case STAT_ST_HEAD:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003845 if (appctx->ctx.stats.flags & STAT_FMT_HTML)
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003846 stats_dump_html_head(uri);
Willy Tarreau354898b2012-12-23 18:15:23 +01003847 else
3848 stats_dump_csv_header();
Willy Tarreaud9b587f2010-02-26 10:05:55 +01003849
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003850 if (bi_putchk(rep, &trash) == -1)
3851 return 0;
Willy Tarreauae526782010-03-04 20:34:23 +01003852
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003853 appctx->st2 = STAT_ST_INFO;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003854 /* fall through */
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003855
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003856 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003857 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003858 stats_dump_html_info(si, uri);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003859 if (bi_putchk(rep, &trash) == -1)
Willy Tarreau91861262007-10-17 17:06:05 +02003860 return 0;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003861 }
Willy Tarreau91861262007-10-17 17:06:05 +02003862
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003863 appctx->ctx.stats.px = proxy;
3864 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
3865 appctx->st2 = STAT_ST_LIST;
Willy Tarreau91861262007-10-17 17:06:05 +02003866 /* fall through */
3867
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003868 case STAT_ST_LIST:
3869 /* dump proxies */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003870 while (appctx->ctx.stats.px) {
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003871 if (buffer_almost_full(rep->buf))
3872 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003873
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003874 px = appctx->ctx.stats.px;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003875 /* skip the disabled proxies, global frontend and non-networked ones */
3876 if (px->state != PR_STSTOPPED && px->uuid > 0 && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003877 if (stats_dump_proxy_to_buffer(si, px, uri) == 0)
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003878 return 0;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003879
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003880 appctx->ctx.stats.px = px->next;
3881 appctx->ctx.stats.px_st = STAT_PX_ST_INIT;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003882 }
3883 /* here, we just have reached the last proxy */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003884
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003885 appctx->st2 = STAT_ST_END;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003886 /* fall through */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02003887
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003888 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003889 if (appctx->ctx.stats.flags & STAT_FMT_HTML) {
Willy Tarreaub5ba4ec2012-12-22 23:20:30 +01003890 stats_dump_html_end();
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003891 if (bi_putchk(rep, &trash) == -1)
3892 return 0;
3893 }
Willy Tarreau55058a72012-11-21 08:27:21 +01003894
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003895 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003896 /* fall through */
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02003897
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003898 case STAT_ST_FIN:
3899 return 1;
Willy Tarreau55058a72012-11-21 08:27:21 +01003900
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003901 default:
3902 /* unknown state ! */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003903 appctx->st2 = STAT_ST_FIN;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003904 return -1;
3905 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01003906}
Willy Tarreauae526782010-03-04 20:34:23 +01003907
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003908/* We reached the stats page through a POST request. The appctx is
3909 * expected to have already been allocated by the caller.
Willy Tarreau347a35d2013-11-22 17:51:09 +01003910 * Parse the posted data and enable/disable servers if necessary.
3911 * Returns 1 if request was parsed or zero if it needs more data.
3912 */
3913static int stats_process_http_post(struct stream_interface *si)
3914{
3915 struct session *s = session_from_task(si->owner);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003916 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01003917
3918 struct proxy *px = NULL;
3919 struct server *sv = NULL;
3920
3921 char key[LINESIZE];
3922 int action = ST_ADM_ACTION_NONE;
3923 int reprocess = 0;
3924
3925 int total_servers = 0;
3926 int altered_servers = 0;
3927
3928 char *first_param, *cur_param, *next_param, *end_params;
3929 char *st_cur_param = NULL;
3930 char *st_next_param = NULL;
3931
3932 struct chunk *temp;
3933 int reql;
3934
3935 temp = get_trash_chunk();
3936 if (temp->size < s->txn.req.body_len) {
3937 /* too large request */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003938 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01003939 goto out;
3940 }
3941
3942 reql = bo_getblk(si->ob, temp->str, s->txn.req.body_len, s->txn.req.eoh + 2);
3943 if (reql <= 0) {
3944 /* we need more data */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003945 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01003946 return 0;
3947 }
3948
3949 first_param = temp->str;
3950 end_params = temp->str + reql;
3951 cur_param = next_param = end_params;
3952 *end_params = '\0';
3953
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003954 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01003955
3956 /*
3957 * Parse the parameters in reverse order to only store the last value.
3958 * From the html form, the backend and the action are at the end.
3959 */
3960 while (cur_param > first_param) {
3961 char *value;
3962 int poffset, plen;
3963
3964 cur_param--;
3965
3966 if ((*cur_param == '&') || (cur_param == first_param)) {
3967 reprocess_servers:
3968 /* Parse the key */
3969 poffset = (cur_param != first_param ? 1 : 0);
3970 plen = next_param - cur_param + (cur_param == first_param ? 1 : 0);
3971 if ((plen > 0) && (plen <= sizeof(key))) {
3972 strncpy(key, cur_param + poffset, plen);
3973 key[plen - 1] = '\0';
3974 } else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003975 appctx->ctx.stats.st_code = STAT_STATUS_EXCD;
Willy Tarreau347a35d2013-11-22 17:51:09 +01003976 goto out;
3977 }
3978
3979 /* Parse the value */
3980 value = key;
3981 while (*value != '\0' && *value != '=') {
3982 value++;
3983 }
3984 if (*value == '=') {
3985 /* Ok, a value is found, we can mark the end of the key */
3986 *value++ = '\0';
3987 }
3988 if (url_decode(key) < 0 || url_decode(value) < 0)
3989 break;
3990
3991 /* Now we can check the key to see what to do */
3992 if (!px && (strcmp(key, "b") == 0)) {
3993 if ((px = findproxy(value, PR_CAP_BE)) == NULL) {
3994 /* the backend name is unknown or ambiguous (duplicate names) */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01003995 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01003996 goto out;
3997 }
3998 }
3999 else if (!action && (strcmp(key, "action") == 0)) {
4000 if (strcmp(value, "disable") == 0) {
4001 action = ST_ADM_ACTION_DISABLE;
4002 }
4003 else if (strcmp(value, "enable") == 0) {
4004 action = ST_ADM_ACTION_ENABLE;
4005 }
4006 else if (strcmp(value, "stop") == 0) {
4007 action = ST_ADM_ACTION_STOP;
4008 }
4009 else if (strcmp(value, "start") == 0) {
4010 action = ST_ADM_ACTION_START;
4011 }
4012 else if (strcmp(value, "shutdown") == 0) {
4013 action = ST_ADM_ACTION_SHUTDOWN;
4014 }
4015 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004016 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004017 goto out;
4018 }
4019 }
4020 else if (strcmp(key, "s") == 0) {
4021 if (!(px && action)) {
4022 /*
4023 * Indicates that we'll need to reprocess the parameters
4024 * as soon as backend and action are known
4025 */
4026 if (!reprocess) {
4027 st_cur_param = cur_param;
4028 st_next_param = next_param;
4029 }
4030 reprocess = 1;
4031 }
4032 else if ((sv = findserver(px, value)) != NULL) {
4033 switch (action) {
4034 case ST_ADM_ACTION_DISABLE:
4035 if ((px->state != PR_STSTOPPED) && !(sv->state & SRV_MAINTAIN)) {
4036 /* Not already in maintenance, we can change the server state */
4037 sv->state |= SRV_MAINTAIN;
4038 set_server_down(&sv->check);
4039 altered_servers++;
4040 total_servers++;
4041 }
4042 break;
4043 case ST_ADM_ACTION_ENABLE:
4044 if ((px->state != PR_STSTOPPED) && (sv->state & SRV_MAINTAIN)) {
4045 /* Already in maintenance, we can change the server state */
4046 set_server_up(&sv->check);
4047 sv->check.health = sv->check.rise; /* up, but will fall down at first failure */
4048 altered_servers++;
4049 total_servers++;
4050 }
4051 break;
4052 case ST_ADM_ACTION_STOP:
4053 case ST_ADM_ACTION_START:
4054 if (action == ST_ADM_ACTION_START)
4055 sv->uweight = sv->iweight;
4056 else
4057 sv->uweight = 0;
4058
4059 server_recalc_eweight(sv);
4060 set_server_drain_state(sv);
4061
4062 altered_servers++;
4063 total_servers++;
4064 break;
4065 case ST_ADM_ACTION_SHUTDOWN:
4066 if (px->state != PR_STSTOPPED) {
4067 struct session *sess, *sess_bck;
4068
4069 list_for_each_entry_safe(sess, sess_bck, &sv->actconns, by_srv)
4070 if (sess->srv_conn == sv)
4071 session_shutdown(sess, SN_ERR_KILLED);
4072
4073 altered_servers++;
4074 total_servers++;
4075 }
4076 break;
4077 }
4078 } else {
4079 /* the server name is unknown or ambiguous (duplicate names) */
4080 total_servers++;
4081 }
4082 }
4083 if (reprocess && px && action) {
4084 /* Now, we know the backend and the action chosen by the user.
4085 * We can safely restart from the first server parameter
4086 * to reprocess them
4087 */
4088 cur_param = st_cur_param;
4089 next_param = st_next_param;
4090 reprocess = 0;
4091 goto reprocess_servers;
4092 }
4093
4094 next_param = cur_param;
4095 }
4096 }
4097
4098 if (total_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004099 appctx->ctx.stats.st_code = STAT_STATUS_NONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004100 }
4101 else if (altered_servers == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004102 appctx->ctx.stats.st_code = STAT_STATUS_ERRP;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004103 }
4104 else if (altered_servers == total_servers) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004105 appctx->ctx.stats.st_code = STAT_STATUS_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004106 }
4107 else {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004108 appctx->ctx.stats.st_code = STAT_STATUS_PART;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004109 }
4110 out:
4111 return 1;
4112}
4113
4114
4115static int stats_send_http_headers(struct stream_interface *si)
4116{
4117 struct session *s = session_from_task(si->owner);
4118 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004119 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004120
4121 chunk_printf(&trash,
4122 "HTTP/1.0 200 OK\r\n"
4123 "Cache-Control: no-cache\r\n"
4124 "Connection: close\r\n"
4125 "Content-Type: %s\r\n",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004126 (appctx->ctx.stats.flags & STAT_FMT_HTML) ? "text/html" : "text/plain");
Willy Tarreau347a35d2013-11-22 17:51:09 +01004127
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004128 if (uri->refresh > 0 && !(appctx->ctx.stats.flags & STAT_NO_REFRESH))
Willy Tarreau347a35d2013-11-22 17:51:09 +01004129 chunk_appendf(&trash, "Refresh: %d\r\n",
4130 uri->refresh);
4131
4132 chunk_appendf(&trash, "\r\n");
4133
4134 s->txn.status = 200;
4135 s->logs.tv_request = now;
4136
4137 if (bi_putchk(si->ib, &trash) == -1)
4138 return 0;
4139
4140 return 1;
4141}
4142
4143static int stats_send_http_redirect(struct stream_interface *si)
4144{
4145 char scope_txt[STAT_SCOPE_TXT_MAXLEN + sizeof STAT_SCOPE_PATTERN];
4146 struct session *s = session_from_task(si->owner);
4147 struct uri_auth *uri = s->be->uri_auth;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004148 struct appctx *appctx = objt_appctx(si->end);
Willy Tarreau347a35d2013-11-22 17:51:09 +01004149
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004150 /* scope_txt = search pattern + search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau347a35d2013-11-22 17:51:09 +01004151 scope_txt[0] = 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004152 if (appctx->ctx.stats.scope_len) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004153 strcpy(scope_txt, STAT_SCOPE_PATTERN);
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004154 memcpy(scope_txt + strlen(STAT_SCOPE_PATTERN), bo_ptr(si->ob->buf) + appctx->ctx.stats.scope_str, appctx->ctx.stats.scope_len);
4155 scope_txt[strlen(STAT_SCOPE_PATTERN) + appctx->ctx.stats.scope_len] = 0;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004156 }
4157
4158 /* We don't want to land on the posted stats page because a refresh will
4159 * repost the data. We don't want this to happen on accident so we redirect
4160 * the browse to the stats page with a GET.
4161 */
4162 chunk_printf(&trash,
4163 "HTTP/1.1 303 See Other\r\n"
4164 "Cache-Control: no-cache\r\n"
4165 "Content-Type: text/plain\r\n"
4166 "Connection: close\r\n"
4167 "Location: %s;st=%s%s%s%s\r\n"
4168 "\r\n",
4169 uri->uri_prefix,
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004170 ((appctx->ctx.stats.st_code > STAT_STATUS_INIT) &&
4171 (appctx->ctx.stats.st_code < STAT_STATUS_SIZE) &&
4172 stat_status_codes[appctx->ctx.stats.st_code]) ?
4173 stat_status_codes[appctx->ctx.stats.st_code] :
Willy Tarreau347a35d2013-11-22 17:51:09 +01004174 stat_status_codes[STAT_STATUS_UNKN],
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004175 (appctx->ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
4176 (appctx->ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "",
Willy Tarreau347a35d2013-11-22 17:51:09 +01004177 scope_txt);
4178
4179 s->txn.status = 303;
4180 s->logs.tv_request = now;
4181
4182 if (bi_putchk(si->ib, &trash) == -1)
4183 return 0;
4184
4185 return 1;
4186}
4187
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004188/* This I/O handler runs as an applet embedded in a stream interface. It is
4189 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004190 * appctx->st0 contains the operation in progress (dump, done). The handler
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004191 * automatically unregisters itself once transfer is complete.
4192 */
4193static void http_stats_io_handler(struct stream_interface *si)
4194{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004195 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02004196 struct session *s = session_from_task(si->owner);
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004197 struct channel *req = si->ob;
4198 struct channel *res = si->ib;
Willy Tarreau55058a72012-11-21 08:27:21 +01004199
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004200 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
4201 goto out;
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01004202
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004203 /* check that the output is not closed */
4204 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004205 appctx->st0 = STAT_HTTP_DONE;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004206
Willy Tarreau347a35d2013-11-22 17:51:09 +01004207 /* all states are processed in sequence */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004208 if (appctx->st0 == STAT_HTTP_HEAD) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004209 if (stats_send_http_headers(si)) {
4210 if (s->txn.meth == HTTP_METH_HEAD)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004211 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004212 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004213 appctx->st0 = STAT_HTTP_DUMP;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004214 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01004215 }
4216
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004217 if (appctx->st0 == STAT_HTTP_DUMP) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004218 if (stats_dump_stat_to_buffer(si, s->be->uri_auth))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004219 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004220 }
Cyril Bonté70be45d2010-10-12 00:14:35 +02004221
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004222 if (appctx->st0 == STAT_HTTP_POST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004223 if (stats_process_http_post(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004224 appctx->st0 = STAT_HTTP_LAST;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004225 else if (si->ob->flags & CF_SHUTR)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004226 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004227 }
4228
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004229 if (appctx->st0 == STAT_HTTP_LAST) {
Willy Tarreau347a35d2013-11-22 17:51:09 +01004230 if (stats_send_http_redirect(si))
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004231 appctx->st0 = STAT_HTTP_DONE;
Willy Tarreau347a35d2013-11-22 17:51:09 +01004232 }
4233
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004234 if (appctx->st0 == STAT_HTTP_DONE)
Willy Tarreau347a35d2013-11-22 17:51:09 +01004235 si_shutw(si);
4236
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004237 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST))
4238 si_shutw(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004239
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004240 if (appctx->st0 == STAT_HTTP_DONE) {
Willy Tarreau96d44912013-11-22 12:25:24 +01004241 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST)) {
4242 si_shutr(si);
4243 res->flags |= CF_READ_NULL;
4244 }
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004245 }
Willy Tarreau91861262007-10-17 17:06:05 +02004246
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004247 /* update all other flags and resync with the other side */
4248 si_update(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004249
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004250 /* we don't want to expire timeouts while we're processing requests */
4251 si->ib->rex = TICK_ETERNITY;
4252 si->ob->wex = TICK_ETERNITY;
Willy Tarreau91861262007-10-17 17:06:05 +02004253
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004254 out:
4255 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
4256 /* check that we have released everything then unregister */
4257 stream_int_unregister_handler(si);
Willy Tarreau91861262007-10-17 17:06:05 +02004258 }
4259}
4260
Willy Tarreaud9bdcd52012-12-22 20:31:10 +01004261
Willy Tarreau909d5172012-11-26 03:04:41 +01004262static inline const char *get_conn_ctrl_name(const struct connection *conn)
4263{
Willy Tarreauf79c8172013-10-21 16:30:56 +02004264 if (!(conn->flags & CO_FL_CTRL_READY) || !conn->ctrl)
Willy Tarreau909d5172012-11-26 03:04:41 +01004265 return "NONE";
4266 return conn->ctrl->name;
4267}
4268
4269static inline const char *get_conn_xprt_name(const struct connection *conn)
4270{
4271 static char ptr[17];
4272
Willy Tarreauf79c8172013-10-21 16:30:56 +02004273 if (!(conn->flags & CO_FL_XPRT_READY) || !conn->xprt)
Willy Tarreau909d5172012-11-26 03:04:41 +01004274 return "NONE";
4275
4276 if (conn->xprt == &raw_sock)
4277 return "RAW";
4278
4279#ifdef USE_OPENSSL
4280 if (conn->xprt == &ssl_sock)
4281 return "SSL";
4282#endif
4283 snprintf(ptr, sizeof(ptr), "%p", conn->xprt);
4284 return ptr;
4285}
4286
4287static inline const char *get_conn_data_name(const struct connection *conn)
4288{
4289 static char ptr[17];
4290
4291 if (!conn->data)
4292 return "NONE";
4293
4294 if (conn->data == &sess_conn_cb)
4295 return "SESS";
4296
4297 if (conn->data == &si_conn_cb)
4298 return "STRM";
4299
4300 if (conn->data == &check_conn_cb)
4301 return "CHCK";
4302
4303 snprintf(ptr, sizeof(ptr), "%p", conn->data);
4304 return ptr;
4305}
4306
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02004307/* This function dumps a complete session state onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02004308 * read buffer. The session has to be set in sess->target. It returns
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004309 * 0 if the output buffer is full and it needs to be called again, otherwise
4310 * non-zero. It is designed to be called from stats_dump_sess_to_buffer() below.
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004311 */
Willy Tarreau76153662012-11-26 01:16:39 +01004312static int stats_dump_full_sess_to_buffer(struct stream_interface *si, struct session *sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004313{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004314 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004315 struct tm tm;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004316 extern const char *monthname[12];
4317 char pn[INET6_ADDRSTRLEN];
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004318 struct connection *conn;
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004319 struct appctx *tmpctx;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004320
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004321 chunk_reset(&trash);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004322
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004323 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != sess->uniq_id) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004324 /* session changed, no need to go any further */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004325 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
4326 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004327 return 0;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004328 appctx->ctx.sess.uid = 0;
4329 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004330 return 1;
4331 }
4332
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004333 switch (appctx->ctx.sess.section) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004334 case 0: /* main status of the session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004335 appctx->ctx.sess.uid = sess->uniq_id;
4336 appctx->ctx.sess.section = 1;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004337 /* fall through */
4338
4339 case 1:
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004340 get_localtime(sess->logs.accept_date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004341 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004342 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004343 sess,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004344 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
4345 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004346 sess->uniq_id,
Willy Tarreaue95c4ce2013-01-24 00:48:39 +01004347 sess->listener && sess->listener->proto->name ? sess->listener->proto->name : "?");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004348
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004349 conn = objt_conn(sess->si[0].end);
4350 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004351 case AF_INET:
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004352 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004353 chunk_appendf(&trash, " source=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004354 pn, get_host_port(&conn->addr.from));
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004355 break;
4356 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004357 chunk_appendf(&trash, " source=unix:%d\n", sess->listener->luid);
Emeric Brun837ca522010-10-22 16:19:01 +02004358 break;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004359 default:
4360 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004361 chunk_appendf(&trash, "\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004362 break;
4363 }
4364
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004365 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004366 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02004367 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004368
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004369 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004370 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004371 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
4372 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
4373 sess->listener ? sess->listener->luid : 0);
4374
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004375 if (conn)
4376 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004377
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004378 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004379 case AF_INET:
4380 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004381 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004382 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07004383 break;
4384 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004385 chunk_appendf(&trash, " addr=unix:%d\n", sess->listener->luid);
Daniel Schultze90690c72012-03-23 10:53:36 -07004386 break;
4387 default:
4388 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004389 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004390 break;
4391 }
4392
Willy Tarreau50943332011-09-02 17:33:05 +02004393 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004394 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004395 " backend=%s (id=%u mode=%s)",
Willy Tarreau50943332011-09-02 17:33:05 +02004396 sess->be->id,
Daniel Schultze90690c72012-03-23 10:53:36 -07004397 sess->be->uuid, sess->be->mode ? "http" : "tcp");
4398 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004399 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
Daniel Schultze90690c72012-03-23 10:53:36 -07004400
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004401 conn = objt_conn(sess->si[1].end);
4402 if (conn)
4403 conn_get_from_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004404
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004405 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004406 case AF_INET:
4407 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004408 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004409 pn, get_host_port(&conn->addr.from));
Daniel Schultze90690c72012-03-23 10:53:36 -07004410 break;
4411 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004412 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004413 break;
4414 default:
4415 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004416 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004417 break;
4418 }
4419
4420 if (sess->be->cap & PR_CAP_BE)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004421 chunk_appendf(&trash,
Daniel Schultze90690c72012-03-23 10:53:36 -07004422 " server=%s (id=%u)",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004423 objt_server(sess->target) ? objt_server(sess->target)->id : "<none>",
4424 objt_server(sess->target) ? objt_server(sess->target)->puid : 0);
Willy Tarreau50943332011-09-02 17:33:05 +02004425 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004426 chunk_appendf(&trash, " server=<NONE> (id=-1)");
Daniel Schultze90690c72012-03-23 10:53:36 -07004427
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004428 if (conn)
4429 conn_get_to_addr(conn);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004430
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004431 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
Daniel Schultze90690c72012-03-23 10:53:36 -07004432 case AF_INET:
4433 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004434 chunk_appendf(&trash, " addr=%s:%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004435 pn, get_host_port(&conn->addr.to));
Daniel Schultze90690c72012-03-23 10:53:36 -07004436 break;
4437 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004438 chunk_appendf(&trash, " addr=unix\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004439 break;
4440 default:
4441 /* no more information to print right now */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004442 chunk_appendf(&trash, "\n");
Daniel Schultze90690c72012-03-23 10:53:36 -07004443 break;
4444 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004445
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004446 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004447 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004448 sess->task,
4449 sess->task->state,
4450 sess->task->nice, sess->task->calls,
4451 sess->task->expire ?
4452 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
4453 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
4454 TICKS_TO_MS(1000)) : "<NEVER>",
4455 task_in_rq(sess->task) ? ", running" : "");
4456
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004457 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004458 " age=%s)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004459 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
4460
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004461 chunk_appendf(&trash,
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004462 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s\n",
4463 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
4464 http_msg_state_str(sess->txn.req.msg_state), http_msg_state_str(sess->txn.rsp.msg_state));
4465
4466 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004467 " si[0]=%p (state=%s flags=0x%02x endp0=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004468 &sess->si[0],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004469 si_state_str(sess->si[0].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004470 sess->si[0].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004471 obj_type_name(sess->si[0].end),
4472 obj_base_ptr(sess->si[0].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004473 sess->si[0].exp ?
4474 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
4475 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
4476 TICKS_TO_MS(1000)) : "<NEVER>",
4477 sess->si[0].err_type);
4478
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004479 chunk_appendf(&trash,
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02004480 " si[1]=%p (state=%s flags=0x%02x endp1=%s:%p exp=%s, et=0x%03x)\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004481 &sess->si[1],
Willy Tarreau55e4ecd2012-12-08 17:48:47 +01004482 si_state_str(sess->si[1].state),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004483 sess->si[1].flags,
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004484 obj_type_name(sess->si[1].end),
4485 obj_base_ptr(sess->si[1].end),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004486 sess->si[1].exp ?
4487 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
4488 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
4489 TICKS_TO_MS(1000)) : "<NEVER>",
4490 sess->si[1].err_type);
4491
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004492 if ((conn = objt_conn(sess->si[0].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004493 chunk_appendf(&trash,
4494 " co0=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004495 conn,
4496 get_conn_ctrl_name(conn),
4497 get_conn_xprt_name(conn),
4498 get_conn_data_name(conn),
4499 obj_type_name(conn->target),
4500 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01004501
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004502 chunk_appendf(&trash,
4503 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004504 conn->flags,
4505 conn->t.sock.fd,
4506 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].spec_e : 0,
4507 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].spec_p : 0,
4508 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004509 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004510 else if ((tmpctx = objt_appctx(sess->si[0].end)) != NULL) {
4511 chunk_appendf(&trash,
4512 " app0=%p st0=%d st1=%d st2=%d applet=%s\n",
4513 tmpctx,
4514 tmpctx->st0,
4515 tmpctx->st1,
4516 tmpctx->st2,
4517 tmpctx->applet->name);
4518 }
Willy Tarreaubc174aa2012-11-19 16:10:32 +01004519
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004520 if ((conn = objt_conn(sess->si[1].end)) != NULL) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004521 chunk_appendf(&trash,
4522 " co1=%p ctrl=%s xprt=%s data=%s target=%s:%p\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004523 conn,
4524 get_conn_ctrl_name(conn),
4525 get_conn_xprt_name(conn),
4526 get_conn_data_name(conn),
4527 obj_type_name(conn->target),
4528 obj_base_ptr(conn->target));
Willy Tarreau909d5172012-11-26 03:04:41 +01004529
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004530 chunk_appendf(&trash,
4531 " flags=0x%08x fd=%d fd_spec_e=%02x fd_spec_p=%d updt=%d\n",
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004532 conn->flags,
4533 conn->t.sock.fd,
4534 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].spec_e : 0,
4535 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].spec_p : 0,
4536 conn->t.sock.fd >= 0 ? fdtab[conn->t.sock.fd].updated : 0);
Willy Tarreaucf644ed2013-09-29 17:19:56 +02004537 }
Willy Tarreau284ddbf2013-12-01 20:45:00 +01004538 else if ((tmpctx = objt_appctx(sess->si[1].end)) != NULL) {
4539 chunk_appendf(&trash,
4540 " app1=%p st0=%d st1=%d st2=%d applet=%s\n",
4541 tmpctx,
4542 tmpctx->st0,
4543 tmpctx->st1,
4544 tmpctx->st2,
4545 tmpctx->applet->name);
4546 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004547
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004548 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01004549 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004550 " an_exp=%s",
4551 sess->req,
4552 sess->req->flags, sess->req->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004553 sess->req->pipe ? sess->req->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01004554 sess->req->to_forward, sess->req->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004555 sess->req->analyse_exp ?
4556 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
4557 TICKS_TO_MS(1000)) : "<NEVER>");
4558
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004559 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004560 " rex=%s",
4561 sess->req->rex ?
4562 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
4563 TICKS_TO_MS(1000)) : "<NEVER>");
4564
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004565 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004566 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01004567 " buf=%p data=%p o=%d p=%d req.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004568 sess->req->wex ?
4569 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
4570 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01004571 sess->req->buf,
4572 sess->req->buf->data, sess->req->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004573 (int)(sess->req->buf->p - sess->req->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01004574 sess->txn.req.next, sess->req->buf->i,
4575 sess->req->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004576
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004577 chunk_appendf(&trash,
Willy Tarreau909d5172012-11-26 03:04:41 +01004578 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004579 " an_exp=%s",
4580 sess->rep,
4581 sess->rep->flags, sess->rep->analysers,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004582 sess->rep->pipe ? sess->rep->pipe->data : 0,
Willy Tarreau909d5172012-11-26 03:04:41 +01004583 sess->rep->to_forward, sess->rep->total,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004584 sess->rep->analyse_exp ?
4585 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
4586 TICKS_TO_MS(1000)) : "<NEVER>");
4587
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004588 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004589 " rex=%s",
4590 sess->rep->rex ?
4591 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
4592 TICKS_TO_MS(1000)) : "<NEVER>");
4593
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004594 chunk_appendf(&trash,
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004595 " wex=%s\n"
Willy Tarreau909d5172012-11-26 03:04:41 +01004596 " buf=%p data=%p o=%d p=%d rsp.next=%d i=%d size=%d\n",
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004597 sess->rep->wex ?
4598 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
4599 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreau909d5172012-11-26 03:04:41 +01004600 sess->rep->buf,
4601 sess->rep->buf->data, sess->rep->buf->o,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004602 (int)(sess->rep->buf->p - sess->rep->buf->data),
Willy Tarreau909d5172012-11-26 03:04:41 +01004603 sess->txn.rsp.next, sess->rep->buf->i,
4604 sess->rep->buf->size);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004605
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004606 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004607 return 0;
4608
4609 /* use other states to dump the contents */
4610 }
4611 /* end of dump */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004612 appctx->ctx.sess.uid = 0;
4613 appctx->ctx.sess.section = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004614 return 1;
4615}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004616
Thierry FOURNIERc0e0d7b2013-12-11 16:55:52 +01004617static int stats_maps_list(struct stream_interface *si)
4618{
4619 struct appctx *appctx = __objt_appctx(si->end);
4620
4621 switch (appctx->st2) {
4622 case STAT_ST_INIT:
4623 /* Init to the first entry. The list cannot be change */
4624 appctx->ctx.map.ref = LIST_NEXT(&maps, struct map_reference *, list);
4625 appctx->st2 = STAT_ST_LIST;
4626 /* fall through */
4627
4628 case STAT_ST_LIST:
4629 while (appctx->ctx.map.ref) {
4630
4631 chunk_reset(&trash);
4632
4633 /* build messages */
4634 chunk_appendf(&trash, "%s\n", appctx->ctx.map.ref->reference);
4635
4636 if (bi_putchk(si->ib, &trash) == -1) {
4637 /* let's try again later from this session. We add ourselves into
4638 * this session's users so that it can remove us upon termination.
4639 */
4640 return 0;
4641 }
4642
4643 /* get next list entry and check the end of the list */
4644 appctx->ctx.map.ref = LIST_NEXT(&appctx->ctx.map.ref->list,
4645 struct map_reference *, list);
4646 if (&appctx->ctx.map.ref->list == &maps)
4647 break;
4648 }
4649
4650 appctx->st2 = STAT_ST_FIN;
4651 /* fall through */
4652
4653 default:
4654 appctx->st2 = STAT_ST_FIN;
4655 return 1;
4656 }
4657}
4658
4659static const char *smp_to_type[SMP_TYPES] = {
4660 [SMP_T_BOOL] = "bool",
4661 [SMP_T_UINT] = "uint",
4662 [SMP_T_SINT] = "sint",
4663 [SMP_T_ADDR] = "addr",
4664 [SMP_T_IPV4] = "ipv4",
4665 [SMP_T_IPV6] = "ipv6",
4666 [SMP_T_STR] = "str",
4667 [SMP_T_BIN] = "bin",
4668 [SMP_T_CSTR] = "cstr",
4669 [SMP_T_CBIN] = "cbin",
4670};
4671
4672static int stats_map_lookup(struct stream_interface *si)
4673{
4674 struct appctx *appctx = __objt_appctx(si->end);
4675 struct sample_storage *smp;
4676 struct sample sample;
4677 struct pattern *pat;
4678 struct pat_idx_elt *elt;
4679 enum pat_match_res res;
4680 struct sockaddr_in addr;
4681 char s_addr[INET_ADDRSTRLEN];
4682
4683 switch (appctx->st2) {
4684 case STAT_ST_INIT:
4685 appctx->ctx.map.desc = NULL;
4686 stats_map_lookup_next(si);
4687 appctx->st2 = STAT_ST_LIST;
4688 /* fall through */
4689
4690 case STAT_ST_LIST:
4691 /* for each lookup type */
4692 while (appctx->ctx.map.desc) {
4693 /* initialise chunk to build new message */
4694 chunk_reset(&trash);
4695
4696 /* execute pattern matching */
4697 sample.type = SMP_T_CSTR;
4698 sample.data.str.len = appctx->ctx.map.chunk.len;
4699 sample.data.str.str = appctx->ctx.map.chunk.str;
4700 pat = NULL;
4701 elt = NULL;
4702 res = pattern_exec_match(appctx->ctx.map.desc->pat, &sample, &smp, &pat, &elt);
4703
4704 /* build return message: set type of match */
4705 /**/ if (appctx->ctx.map.desc->pat->match == NULL)
4706 chunk_appendf(&trash, "found, ");
4707 else if (appctx->ctx.map.desc->pat->match == pat_match_nothing)
4708 chunk_appendf(&trash, "bool, ");
4709 else if (appctx->ctx.map.desc->pat->match == pat_match_int)
4710 chunk_appendf(&trash, "int, ");
4711 else if (appctx->ctx.map.desc->pat->match == pat_match_ip)
4712 chunk_appendf(&trash, "ip, ");
4713 else if (appctx->ctx.map.desc->pat->match == pat_match_bin)
4714 chunk_appendf(&trash, "bin, ");
4715 else if (appctx->ctx.map.desc->pat->match == pat_match_len)
4716 chunk_appendf(&trash, "len, ");
4717 else if (appctx->ctx.map.desc->pat->match == pat_match_str)
4718 chunk_appendf(&trash, "str, ");
4719 else if (appctx->ctx.map.desc->pat->match == pat_match_beg)
4720 chunk_appendf(&trash, "beg, ");
4721 else if (appctx->ctx.map.desc->pat->match == pat_match_sub)
4722 chunk_appendf(&trash, "sub, ");
4723 else if (appctx->ctx.map.desc->pat->match == pat_match_dir)
4724 chunk_appendf(&trash, "dir, ");
4725 else if (appctx->ctx.map.desc->pat->match == pat_match_dom)
4726 chunk_appendf(&trash, "dom, ");
4727 else if (appctx->ctx.map.desc->pat->match == pat_match_end)
4728 chunk_appendf(&trash, "end, ");
4729 else if (appctx->ctx.map.desc->pat->match == pat_match_reg)
4730 chunk_appendf(&trash, "reg, ");
4731 else /* The never appens case */
4732 chunk_appendf(&trash, "unknown(%p), ", appctx->ctx.map.desc->pat->match);
4733
4734 /* Display no match, and set default value */
4735 if (res == PAT_NOMATCH) {
4736 chunk_appendf(&trash, "no-match, ");
4737 smp = appctx->ctx.map.desc->def;
4738 }
4739
4740 /* Display match and match info */
4741 else {
4742 /* display match */
4743 chunk_appendf(&trash, "match, ");
4744
4745 /* display search mode */
4746 if (elt)
4747 chunk_appendf(&trash, "tree, ");
4748 else
4749 chunk_appendf(&trash, "list, ");
4750
4751 /* display search options */
4752 if (pat) {
4753 /* case sensitive */
4754 if (pat->flags & PAT_F_IGNORE_CASE)
4755 chunk_appendf(&trash, "case-insensitive, ");
4756 else
4757 chunk_appendf(&trash, "case-sensitive, ");
4758
4759 /* display source */
4760 if (pat->flags & PAT_F_FROM_FILE)
4761 chunk_appendf(&trash, "from-file, ");
4762 }
4763
4764 /* display match expresion */
4765 if (elt) {
4766 if (appctx->ctx.map.desc->pat->match == pat_match_str) {
4767 chunk_appendf(&trash, "match=\"%s\", ", elt->node.key);
4768 }
4769 /* only IPv4 */
4770 else if (appctx->ctx.map.desc->pat->match == pat_match_ip) {
4771 /* convert ip */
4772 memcpy(&addr.sin_addr, elt->node.key, 4);
4773 addr.sin_family = AF_INET;
4774 if (addr_to_str((struct sockaddr_storage *)&addr, s_addr, INET_ADDRSTRLEN))
4775 chunk_appendf(&trash, "match=\"%s/%d\", ", s_addr, elt->node.node.pfx);
4776 }
4777 }
4778 }
4779
4780 /* display return value */
4781 if (!smp) {
4782 chunk_appendf(&trash, "return=nothing\n");
4783 }
4784 else {
4785 memcpy(&sample.data, &smp->data, sizeof(sample.data));
4786 sample.type = smp->type;
4787 if (sample_casts[sample.type][SMP_T_CSTR] &&
4788 sample_casts[sample.type][SMP_T_CSTR](&sample))
4789 chunk_appendf(&trash, "return=\"%s\", type=\"%s\"\n",
4790 sample.data.str.str, smp_to_type[smp->type]);
4791 else
4792 chunk_appendf(&trash, "return=cannot-display, type=\"%s\"\n",
4793 smp_to_type[smp->type]);
4794 }
4795
4796 /* display response */
4797 if (bi_putchk(si->ib, &trash) == -1) {
4798 /* let's try again later from this session. We add ourselves into
4799 * this session's users so that it can remove us upon termination.
4800 */
4801 return 0;
4802 }
4803
4804 /* get next entry */
4805 stats_map_lookup_next(si);
4806 }
4807
4808 appctx->st2 = STAT_ST_FIN;
4809 /* fall through */
4810
4811 default:
4812 appctx->st2 = STAT_ST_FIN;
4813 free(appctx->ctx.map.chunk.str);
4814 return 1;
4815 }
4816}
4817
4818static int stats_map_list(struct stream_interface *si)
4819{
4820 struct appctx *appctx = __objt_appctx(si->end);
4821
4822 switch (appctx->st2) {
4823
4824 case STAT_ST_INIT:
4825 /* Init to the first entry. The list cannot be change */
4826 appctx->ctx.map.ent = LIST_NEXT(&appctx->ctx.map.ref->entries,
4827 struct map_entry *, list);
4828 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries)
4829 appctx->ctx.map.ent = NULL;
4830 appctx->st2 = STAT_ST_LIST;
4831 /* fall through */
4832
4833 case STAT_ST_LIST:
4834 while (appctx->ctx.map.ent) {
4835 chunk_reset(&trash);
4836
4837 /* build messages */
4838 chunk_appendf(&trash, "%s %s\n", appctx->ctx.map.ent->key, appctx->ctx.map.ent->value);
4839
4840 if (bi_putchk(si->ib, &trash) == -1) {
4841 /* let's try again later from this session. We add ourselves into
4842 * this session's users so that it can remove us upon termination.
4843 */
4844 return 0;
4845 }
4846
4847 /* get next list entry and check the end of the list */
4848 appctx->ctx.map.ent = LIST_NEXT(&appctx->ctx.map.ent->list,
4849 struct map_entry *, list);
4850 if (&appctx->ctx.map.ent->list == &appctx->ctx.map.ref->entries)
4851 break;
4852 }
4853
4854 appctx->st2 = STAT_ST_FIN;
4855 /* fall through */
4856
4857 default:
4858 appctx->st2 = STAT_ST_FIN;
4859 return 1;
4860 }
4861}
4862
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02004863/* This function dumps all sessions' states onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02004864 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01004865 * to be called again, otherwise non-zero. It is designed to be called
4866 * from stats_dump_sess_to_buffer() below.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004867 */
Simon Horman9bd2c732011-06-15 15:18:44 +09004868static int stats_dump_sess_to_buffer(struct stream_interface *si)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004869{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004870 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004871 struct connection *conn;
4872
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004873 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004874 /* If we're forced to shut down, we might have to remove our
4875 * reference to the last session being dumped.
4876 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004877 if (appctx->st2 == STAT_ST_LIST) {
4878 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
4879 LIST_DEL(&appctx->ctx.sess.bref.users);
4880 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01004881 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004882 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02004883 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004884 }
4885
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004886 chunk_reset(&trash);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004887
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004888 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01004889 case STAT_ST_INIT:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004890 /* the function had not been called yet, let's prepare the
4891 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01004892 * pointer to the first in the global list. When a target
4893 * session is being destroyed, it is responsible for updating
4894 * this pointer. We know we have reached the end when this
4895 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004896 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004897 LIST_INIT(&appctx->ctx.sess.bref.users);
4898 appctx->ctx.sess.bref.ref = sessions.n;
4899 appctx->st2 = STAT_ST_LIST;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004900 /* fall through */
4901
Willy Tarreau295a8372011-03-10 11:25:07 +01004902 case STAT_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01004903 /* first, let's detach the back-ref from a possible previous session */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004904 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
4905 LIST_DEL(&appctx->ctx.sess.bref.users);
4906 LIST_INIT(&appctx->ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01004907 }
4908
4909 /* and start from where we stopped */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004910 while (appctx->ctx.sess.bref.ref != &sessions) {
Cyril Bontéacd7d632010-11-01 19:26:02 +01004911 char pn[INET6_ADDRSTRLEN];
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004912 struct session *curr_sess;
4913
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004914 curr_sess = LIST_ELEM(appctx->ctx.sess.bref.ref, struct session *, list);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004915
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004916 if (appctx->ctx.sess.target) {
4917 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_sess)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004918 goto next_sess;
4919
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004920 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004921 /* call the proper dump() function and return if we're missing space */
Willy Tarreau76153662012-11-26 01:16:39 +01004922 if (!stats_dump_full_sess_to_buffer(si, curr_sess))
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004923 return 0;
4924
4925 /* session dump complete */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01004926 LIST_DEL(&appctx->ctx.sess.bref.users);
4927 LIST_INIT(&appctx->ctx.sess.bref.users);
4928 if (appctx->ctx.sess.target != (void *)-1) {
4929 appctx->ctx.sess.target = NULL;
Willy Tarreau76153662012-11-26 01:16:39 +01004930 break;
4931 }
4932 else
4933 goto next_sess;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01004934 }
4935
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004936 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004937 "%p: proto=%s",
4938 curr_sess,
4939 curr_sess->listener->proto->name);
4940
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004941
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004942 conn = objt_conn(curr_sess->si[0].end);
4943 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
Willy Tarreau631f01c2011-09-05 00:36:48 +02004944 case AF_INET:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004945 case AF_INET6:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004946 chunk_appendf(&trash,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004947 " src=%s:%d fe=%s be=%s srv=%s",
4948 pn,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02004949 get_host_port(&conn->addr.from),
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004950 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02004951 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004952 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004953 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004954 break;
4955 case AF_UNIX:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004956 chunk_appendf(&trash,
Emeric Brun837ca522010-10-22 16:19:01 +02004957 " src=unix:%d fe=%s be=%s srv=%s",
4958 curr_sess->listener->luid,
4959 curr_sess->fe->id,
Willy Tarreau50943332011-09-02 17:33:05 +02004960 (curr_sess->be->cap & PR_CAP_BE) ? curr_sess->be->id : "<NONE>",
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004961 objt_server(curr_sess->target) ? objt_server(curr_sess->target)->id : "<none>"
Emeric Brun837ca522010-10-22 16:19:01 +02004962 );
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004963 break;
4964 }
4965
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004966 chunk_appendf(&trash,
Willy Tarreau65671ab2009-10-04 14:24:59 +02004967 " ts=%02x age=%s calls=%d",
4968 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01004969 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
4970 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01004971
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004972 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01004973 " rq[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004974 curr_sess->req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004975 curr_sess->req->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004976 curr_sess->req->analysers,
4977 curr_sess->req->rex ?
4978 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
4979 TICKS_TO_MS(1000)) : "");
4980
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004981 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004982 ",wx=%s",
4983 curr_sess->req->wex ?
4984 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
4985 TICKS_TO_MS(1000)) : "");
4986
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004987 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004988 ",ax=%s]",
4989 curr_sess->req->analyse_exp ?
4990 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
4991 TICKS_TO_MS(1000)) : "");
4992
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004993 chunk_appendf(&trash,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01004994 " rp[f=%06xh,i=%d,an=%02xh,rx=%s",
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004995 curr_sess->rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02004996 curr_sess->rep->buf->i,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01004997 curr_sess->rep->analysers,
4998 curr_sess->rep->rex ?
4999 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
5000 TICKS_TO_MS(1000)) : "");
5001
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005002 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005003 ",wx=%s",
5004 curr_sess->rep->wex ?
5005 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
5006 TICKS_TO_MS(1000)) : "");
5007
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005008 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005009 ",ax=%s]",
5010 curr_sess->rep->analyse_exp ?
5011 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
5012 TICKS_TO_MS(1000)) : "");
5013
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005014 conn = objt_conn(curr_sess->si[0].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005015 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005016 " s0=[%d,%1xh,fd=%d,ex=%s]",
5017 curr_sess->si[0].state,
5018 curr_sess->si[0].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005019 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005020 curr_sess->si[0].exp ?
5021 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
5022 TICKS_TO_MS(1000)) : "");
5023
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005024 conn = objt_conn(curr_sess->si[1].end);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005025 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005026 " s1=[%d,%1xh,fd=%d,ex=%s]",
5027 curr_sess->si[1].state,
5028 curr_sess->si[1].flags,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02005029 conn ? conn->t.sock.fd : -1,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005030 curr_sess->si[1].exp ?
5031 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
5032 TICKS_TO_MS(1000)) : "");
5033
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005034 chunk_appendf(&trash,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005035 " exp=%s",
5036 curr_sess->task->expire ?
5037 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
5038 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01005039 if (task_in_rq(curr_sess->task))
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005040 chunk_appendf(&trash, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01005041
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005042 chunk_appendf(&trash, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005043
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005044 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01005045 /* let's try again later from this session. We add ourselves into
5046 * this session's users so that it can remove us upon termination.
5047 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005048 LIST_ADDQ(&curr_sess->back_refs, &appctx->ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005049 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005050 }
5051
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005052 next_sess:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005053 appctx->ctx.sess.bref.ref = curr_sess->list.n;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005054 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005055
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005056 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005057 /* specified session not found */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005058 if (appctx->ctx.sess.section > 0)
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005059 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005060 else
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005061 chunk_appendf(&trash, "Session not found.\n");
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005062
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005063 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005064 return 0;
5065
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005066 appctx->ctx.sess.target = NULL;
5067 appctx->ctx.sess.uid = 0;
Willy Tarreau66dc20a2010-03-05 17:53:32 +01005068 return 1;
5069 }
5070
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005071 appctx->st2 = STAT_ST_FIN;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005072 /* fall through */
5073
5074 default:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005075 appctx->st2 = STAT_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02005076 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005077 }
Emeric Brun1e029aa2010-09-23 18:12:53 +02005078}
5079
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005080/* This is called when the stream interface is closed. For instance, upon an
5081 * external abort, we won't call the i/o handler anymore so we may need to
5082 * remove back references to the session currently being dumped.
5083 */
Simon Horman74d88312013-02-12 10:45:50 +09005084static void cli_release_handler(struct stream_interface *si)
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005085{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005086 struct appctx *appctx = __objt_appctx(si->end);
5087
5088 if (appctx->st0 == STAT_CLI_O_SESS && appctx->st2 == STAT_ST_LIST) {
5089 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
5090 LIST_DEL(&appctx->ctx.sess.bref.users);
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005091 }
5092}
5093
Willy Tarreau20e99322013-04-13 09:22:25 +02005094/* This function is used to either dump tables states (when action is set
5095 * to STAT_CLI_O_TAB) or clear tables (when action is STAT_CLI_O_CLR).
Willy Tarreau20e99322013-04-13 09:22:25 +02005096 * It returns 0 if the output buffer is full and it needs to be called
5097 * again, otherwise non-zero.
Willy Tarreau69f58c82010-07-12 17:55:33 +02005098 */
Willy Tarreau20e99322013-04-13 09:22:25 +02005099static int stats_table_request(struct stream_interface *si, int action)
Willy Tarreau69f58c82010-07-12 17:55:33 +02005100{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005101 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau306f8302013-07-08 15:53:06 +02005102 struct session *s = session_from_task(si->owner);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005103 struct ebmb_node *eb;
5104 int dt;
Willy Tarreau44455022012-12-05 23:01:12 +01005105 int skip_entry;
Willy Tarreau20e99322013-04-13 09:22:25 +02005106 int show = action == STAT_CLI_O_TAB;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005107
5108 /*
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005109 * We have 3 possible states in appctx->st2 :
Willy Tarreau295a8372011-03-10 11:25:07 +01005110 * - STAT_ST_INIT : the first call
5111 * - STAT_ST_INFO : the proxy pointer points to the next table to
Willy Tarreau69f58c82010-07-12 17:55:33 +02005112 * dump, the entry pointer is NULL ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005113 * - STAT_ST_LIST : the proxy pointer points to the current table
Willy Tarreau69f58c82010-07-12 17:55:33 +02005114 * and the entry pointer points to the next entry to be dumped,
5115 * and the refcount on the next entry is held ;
Willy Tarreau295a8372011-03-10 11:25:07 +01005116 * - STAT_ST_END : nothing left to dump, the buffer may contain some
Willy Tarreau69f58c82010-07-12 17:55:33 +02005117 * data though.
5118 */
5119
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005120 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005121 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005122 if (appctx->st2 == STAT_ST_LIST) {
5123 appctx->ctx.table.entry->ref_cnt--;
5124 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Willy Tarreauf6efda12010-08-03 20:34:06 +02005125 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02005126 return 1;
5127 }
5128
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005129 chunk_reset(&trash);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005130
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005131 while (appctx->st2 != STAT_ST_FIN) {
5132 switch (appctx->st2) {
Willy Tarreau295a8372011-03-10 11:25:07 +01005133 case STAT_ST_INIT:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005134 appctx->ctx.table.proxy = appctx->ctx.table.target;
5135 if (!appctx->ctx.table.proxy)
5136 appctx->ctx.table.proxy = proxy;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005137
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005138 appctx->ctx.table.entry = NULL;
5139 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005140 break;
5141
Willy Tarreau295a8372011-03-10 11:25:07 +01005142 case STAT_ST_INFO:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005143 if (!appctx->ctx.table.proxy ||
5144 (appctx->ctx.table.target &&
5145 appctx->ctx.table.proxy != appctx->ctx.table.target)) {
5146 appctx->st2 = STAT_ST_END;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005147 break;
5148 }
5149
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005150 if (appctx->ctx.table.proxy->table.size) {
5151 if (show && !stats_dump_table_head_to_buffer(&trash, si, appctx->ctx.table.proxy,
5152 appctx->ctx.table.target))
Willy Tarreau69f58c82010-07-12 17:55:33 +02005153 return 0;
5154
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005155 if (appctx->ctx.table.target &&
Willy Tarreau290e63a2012-09-20 18:07:14 +02005156 s->listener->bind_conf->level >= ACCESS_LVL_OPER) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02005157 /* dump entries only if table explicitly requested */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005158 eb = ebmb_first(&appctx->ctx.table.proxy->table.keys);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005159 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005160 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
5161 appctx->ctx.table.entry->ref_cnt++;
5162 appctx->st2 = STAT_ST_LIST;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005163 break;
5164 }
5165 }
5166 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005167 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005168 break;
5169
Willy Tarreau295a8372011-03-10 11:25:07 +01005170 case STAT_ST_LIST:
Willy Tarreau44455022012-12-05 23:01:12 +01005171 skip_entry = 0;
Simon Hormanc88b8872011-06-15 15:18:49 +09005172
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005173 if (appctx->ctx.table.data_type >= 0) {
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005174 /* we're filtering on some data contents */
5175 void *ptr;
5176 long long data;
5177
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005178 dt = appctx->ctx.table.data_type;
5179 ptr = stktable_data_ptr(&appctx->ctx.table.proxy->table,
5180 appctx->ctx.table.entry,
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005181 dt);
5182
5183 data = 0;
5184 switch (stktable_data_types[dt].std_type) {
5185 case STD_T_SINT:
5186 data = stktable_data_cast(ptr, std_t_sint);
5187 break;
5188 case STD_T_UINT:
5189 data = stktable_data_cast(ptr, std_t_uint);
5190 break;
5191 case STD_T_ULL:
5192 data = stktable_data_cast(ptr, std_t_ull);
5193 break;
5194 case STD_T_FRQP:
5195 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005196 appctx->ctx.table.proxy->table.data_arg[dt].u);
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005197 break;
5198 }
5199
5200 /* skip the entry if the data does not match the test and the value */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005201 if ((data < appctx->ctx.table.value &&
5202 (appctx->ctx.table.data_op == STD_OP_EQ ||
5203 appctx->ctx.table.data_op == STD_OP_GT ||
5204 appctx->ctx.table.data_op == STD_OP_GE)) ||
5205 (data == appctx->ctx.table.value &&
5206 (appctx->ctx.table.data_op == STD_OP_NE ||
5207 appctx->ctx.table.data_op == STD_OP_GT ||
5208 appctx->ctx.table.data_op == STD_OP_LT)) ||
5209 (data > appctx->ctx.table.value &&
5210 (appctx->ctx.table.data_op == STD_OP_EQ ||
5211 appctx->ctx.table.data_op == STD_OP_LT ||
5212 appctx->ctx.table.data_op == STD_OP_LE)))
Willy Tarreau44455022012-12-05 23:01:12 +01005213 skip_entry = 1;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02005214 }
5215
Simon Hormanc88b8872011-06-15 15:18:49 +09005216 if (show && !skip_entry &&
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005217 !stats_dump_table_entry_to_buffer(&trash, si, appctx->ctx.table.proxy,
5218 appctx->ctx.table.entry))
Simon Hormand9366582011-06-15 15:18:45 +09005219 return 0;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005220
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005221 appctx->ctx.table.entry->ref_cnt--;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005222
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005223 eb = ebmb_next(&appctx->ctx.table.entry->key);
Willy Tarreau69f58c82010-07-12 17:55:33 +02005224 if (eb) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005225 struct stksess *old = appctx->ctx.table.entry;
5226 appctx->ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreau8fa52f42012-01-09 11:50:03 +01005227 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005228 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, old);
5229 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5230 stksess_kill(&appctx->ctx.table.proxy->table, old);
5231 appctx->ctx.table.entry->ref_cnt++;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005232 break;
5233 }
5234
Simon Hormanc88b8872011-06-15 15:18:49 +09005235
5236 if (show)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005237 stksess_kill_if_expired(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
5238 else if (!skip_entry && !appctx->ctx.table.entry->ref_cnt)
5239 stksess_kill(&appctx->ctx.table.proxy->table, appctx->ctx.table.entry);
Simon Hormanc88b8872011-06-15 15:18:49 +09005240
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005241 appctx->ctx.table.proxy = appctx->ctx.table.proxy->next;
5242 appctx->st2 = STAT_ST_INFO;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005243 break;
5244
Willy Tarreau295a8372011-03-10 11:25:07 +01005245 case STAT_ST_END:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005246 appctx->st2 = STAT_ST_FIN;
Willy Tarreau69f58c82010-07-12 17:55:33 +02005247 break;
5248 }
5249 }
5250 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005251}
5252
Willy Tarreaud426a182010-03-05 14:58:26 +01005253/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01005254 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
5255 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
5256 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
5257 * lines are respected within the limit of 70 output chars. Lines that are
5258 * continuation of a previous truncated line begin with "+" instead of " "
5259 * after the offset. The new pointer is returned.
5260 */
Willy Tarreaud426a182010-03-05 14:58:26 +01005261static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
5262 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005263{
5264 int end;
5265 unsigned char c;
5266
5267 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02005268 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005269 return ptr;
5270
Willy Tarreau77804732012-10-29 16:14:26 +01005271 chunk_appendf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01005272
Willy Tarreaud426a182010-03-05 14:58:26 +01005273 while (ptr < len && ptr < bsize) {
5274 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01005275 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005276 if (out->len > end - 2)
5277 break;
5278 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005279 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005280 if (out->len > end - 3)
5281 break;
5282 out->str[out->len++] = '\\';
5283 switch (c) {
5284 case '\t': c = 't'; break;
5285 case '\n': c = 'n'; break;
5286 case '\r': c = 'r'; break;
5287 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01005288 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005289 }
5290 out->str[out->len++] = c;
5291 } else {
5292 if (out->len > end - 5)
5293 break;
5294 out->str[out->len++] = '\\';
5295 out->str[out->len++] = 'x';
5296 out->str[out->len++] = hextab[(c >> 4) & 0xF];
5297 out->str[out->len++] = hextab[c & 0xF];
5298 }
Willy Tarreaud426a182010-03-05 14:58:26 +01005299 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005300 /* we had a line break, let's return now */
5301 out->str[out->len++] = '\n';
5302 *line = ptr;
5303 return ptr;
5304 }
5305 }
5306 /* we have an incomplete line, we return it as-is */
5307 out->str[out->len++] = '\n';
5308 return ptr;
5309}
5310
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005311/* This function dumps all captured errors onto the stream interface's
Willy Tarreau306f8302013-07-08 15:53:06 +02005312 * read buffer. It returns 0 if the output buffer is full and it needs
Willy Tarreau5ec29ff2011-02-13 15:27:22 +01005313 * to be called again, otherwise non-zero.
Willy Tarreau74808cb2009-03-04 15:53:18 +01005314 */
Simon Horman9bd2c732011-06-15 15:18:44 +09005315static int stats_dump_errors_to_buffer(struct stream_interface *si)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005316{
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005317 struct appctx *appctx = __objt_appctx(si->end);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005318 extern const char *monthname[12];
Willy Tarreau74808cb2009-03-04 15:53:18 +01005319
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005320 if (unlikely(si->ib->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreau61b34732009-10-03 23:49:35 +02005321 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005322
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005323 chunk_reset(&trash);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005324
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005325 if (!appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005326 /* the function had not been called yet, let's prepare the
5327 * buffer for a response.
5328 */
Willy Tarreau10479e42010-12-12 14:00:34 +01005329 struct tm tm;
5330
5331 get_localtime(date.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005332 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
Willy Tarreau10479e42010-12-12 14:00:34 +01005333 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
5334 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
5335 error_snapshot_id);
5336
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005337 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau10479e42010-12-12 14:00:34 +01005338 /* Socket buffer full. Let's try again later from the same point */
5339 return 0;
5340 }
5341
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005342 appctx->ctx.errors.px = proxy;
5343 appctx->ctx.errors.buf = 0;
5344 appctx->ctx.errors.bol = 0;
5345 appctx->ctx.errors.ptr = -1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005346 }
5347
5348 /* we have two inner loops here, one for the proxy, the other one for
5349 * the buffer.
5350 */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005351 while (appctx->ctx.errors.px) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005352 struct error_snapshot *es;
5353
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005354 if (appctx->ctx.errors.buf == 0)
5355 es = &appctx->ctx.errors.px->invalid_req;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005356 else
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005357 es = &appctx->ctx.errors.px->invalid_rep;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005358
5359 if (!es->when.tv_sec)
5360 goto next;
5361
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005362 if (appctx->ctx.errors.iid >= 0 &&
5363 appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid &&
5364 es->oe->uuid != appctx->ctx.errors.iid)
Willy Tarreau74808cb2009-03-04 15:53:18 +01005365 goto next;
5366
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005367 if (appctx->ctx.errors.ptr < 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005368 /* just print headers now */
5369
5370 char pn[INET6_ADDRSTRLEN];
5371 struct tm tm;
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005372 int port;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005373
5374 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005375 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01005376 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02005377 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01005378
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005379 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
5380 case AF_INET:
5381 case AF_INET6:
5382 port = get_host_port(&es->src);
5383 break;
5384 default:
5385 port = 0;
5386 }
5387
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005388 switch (appctx->ctx.errors.buf) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005389 case 0:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005390 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005391 " frontend %s (#%d): invalid request\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005392 " backend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005393 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005394 (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
5395 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005396 break;
5397 case 1:
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005398 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005399 " backend %s (#%d) : invalid response\n"
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005400 " frontend %s (#%d)",
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005401 appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005402 es->oe->id, es->oe->uuid);
Willy Tarreau74808cb2009-03-04 15:53:18 +01005403 break;
5404 }
5405
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005406 chunk_appendf(&trash,
Willy Tarreaud04b1bc2012-05-08 11:03:10 +02005407 ", server %s (#%d), event #%u\n"
5408 " src %s:%d, session #%d, session flags 0x%08x\n"
5409 " HTTP msg state %d, msg flags 0x%08x, tx flags 0x%08x\n"
5410 " HTTP chunk len %lld bytes, HTTP body len %lld bytes\n"
5411 " buffer flags 0x%08x, out %d bytes, total %lld bytes\n"
5412 " pending %d bytes, wrapping at %d, error at position %d:\n \n",
5413 es->srv ? es->srv->id : "<NONE>", es->srv ? es->srv->puid : -1,
5414 es->ev_id,
5415 pn, port, es->sid, es->s_flags,
5416 es->state, es->m_flags, es->t_flags,
5417 es->m_clen, es->m_blen,
5418 es->b_flags, es->b_out, es->b_tot,
5419 es->len, es->b_wrap, es->pos);
5420
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005421 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005422 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02005423 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005424 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005425 appctx->ctx.errors.ptr = 0;
5426 appctx->ctx.errors.sid = es->sid;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005427 }
5428
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005429 if (appctx->ctx.errors.sid != es->sid) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005430 /* the snapshot changed while we were dumping it */
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005431 chunk_appendf(&trash,
Willy Tarreau74808cb2009-03-04 15:53:18 +01005432 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005433 if (bi_putchk(si->ib, &trash) == -1)
Willy Tarreau61b34732009-10-03 23:49:35 +02005434 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005435 goto next;
5436 }
5437
5438 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005439 while (appctx->ctx.errors.ptr < es->len && appctx->ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005440 int newptr;
5441 int newline;
5442
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005443 newline = appctx->ctx.errors.bol;
5444 newptr = dump_text_line(&trash, es->buf, sizeof(es->buf), es->len, &newline, appctx->ctx.errors.ptr);
5445 if (newptr == appctx->ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02005446 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005447
Willy Tarreau19d14ef2012-10-29 16:51:55 +01005448 if (bi_putchk(si->ib, &trash) == -1) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01005449 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02005450 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005451 }
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005452 appctx->ctx.errors.ptr = newptr;
5453 appctx->ctx.errors.bol = newline;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005454 };
5455 next:
Willy Tarreau7b4b4992013-12-01 09:15:12 +01005456 appctx->ctx.errors.bol = 0;
5457 appctx->ctx.errors.ptr = -1;
5458 appctx->ctx.errors.buf++;
5459 if (appctx->ctx.errors.buf > 1) {
5460 appctx->ctx.errors.buf = 0;
5461 appctx->ctx.errors.px = appctx->ctx.errors.px->next;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005462 }
5463 }
5464
5465 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02005466 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01005467}
5468
Willy Tarreaud5781202012-09-22 19:32:35 +02005469/* parse the "level" argument on the bind lines */
5470static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
5471{
5472 if (!*args[cur_arg + 1]) {
5473 memprintf(err, "'%s' : missing level", args[cur_arg]);
5474 return ERR_ALERT | ERR_FATAL;
5475 }
5476
5477 if (!strcmp(args[cur_arg+1], "user"))
5478 conf->level = ACCESS_LVL_USER;
5479 else if (!strcmp(args[cur_arg+1], "operator"))
5480 conf->level = ACCESS_LVL_OPER;
5481 else if (!strcmp(args[cur_arg+1], "admin"))
5482 conf->level = ACCESS_LVL_ADMIN;
5483 else {
5484 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
5485 args[cur_arg], args[cur_arg+1]);
5486 return ERR_ALERT | ERR_FATAL;
5487 }
5488
5489 return 0;
5490}
5491
Willy Tarreaub24281b2011-02-13 13:16:36 +01005492struct si_applet http_stats_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005493 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005494 .name = "<STATS>", /* used for logging */
5495 .fct = http_stats_io_handler,
Aman Gupta9a13e842012-04-02 18:57:53 -07005496 .release = NULL,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005497};
5498
Simon Horman9bd2c732011-06-15 15:18:44 +09005499static struct si_applet cli_applet = {
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005500 .obj_type = OBJ_TYPE_APPLET,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005501 .name = "<CLI>", /* used for logging */
5502 .fct = cli_io_handler,
Willy Tarreau5f9a8772012-11-26 02:22:40 +01005503 .release = cli_release_handler,
Willy Tarreaub24281b2011-02-13 13:16:36 +01005504};
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01005505
Willy Tarreaudc13c112013-06-21 23:16:39 +02005506static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau10522fd2008-07-09 20:12:41 +02005507 { CFG_GLOBAL, "stats", stats_parse_global },
5508 { 0, NULL, NULL },
5509}};
5510
Willy Tarreaud5781202012-09-22 19:32:35 +02005511static struct bind_kw_list bind_kws = { "STAT", { }, {
5512 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
5513 { NULL, NULL, 0 },
5514}};
5515
Willy Tarreau10522fd2008-07-09 20:12:41 +02005516__attribute__((constructor))
5517static void __dumpstats_module_init(void)
5518{
5519 cfg_register_keywords(&cfg_kws);
Willy Tarreaud5781202012-09-22 19:32:35 +02005520 bind_register_keywords(&bind_kws);
Willy Tarreau10522fd2008-07-09 20:12:41 +02005521}
5522
Willy Tarreau91861262007-10-17 17:06:05 +02005523/*
5524 * Local variables:
5525 * c-indent-level: 8
5526 * c-basic-offset: 8
5527 * End:
5528 */