blob: aa5b02f0e07d4083b18c6fe37fe8233afce3d4b0 [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 Tarreaueb472682010-05-28 18:46:57 +02004 * Copyright 2000-2010 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>
42#include <proto/buffers.h>
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020043#include <proto/checks.h>
Willy Tarreau91861262007-10-17 17:06:05 +020044#include <proto/dumpstats.h>
45#include <proto/fd.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010046#include <proto/freq_ctr.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020047#include <proto/log.h>
Willy Tarreaua206fa92009-01-25 14:02:00 +010048#include <proto/pipe.h>
Willy Tarreaufbee7132007-10-18 13:53:22 +020049#include <proto/proto_uxst.h>
Willy Tarreau89a63132009-08-16 17:41:45 +020050#include <proto/proxy.h>
Willy Tarreau91861262007-10-17 17:06:05 +020051#include <proto/session.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020052#include <proto/server.h>
Willy Tarreaudded32d2008-11-30 19:48:07 +010053#include <proto/stream_interface.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020054#include <proto/stream_sock.h>
Willy Tarreau4726f532009-03-07 17:25:21 +010055#include <proto/task.h>
Willy Tarreau91861262007-10-17 17:06:05 +020056
Willy Tarreau5ca791d2009-08-16 19:06:42 +020057const char stats_sock_usage_msg[] =
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +020058 "Unknown command. Please enter one of the following commands only :\n"
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +020059 " clear counters : clear max statistics counters (add 'all' for all counters)\n"
Willy Tarreau88ee3972010-07-13 13:48:00 +020060 " clear table : remove an entry from a table\n"
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +020061 " help : this message\n"
62 " prompt : toggle interactive mode with prompt\n"
63 " quit : disconnect\n"
64 " show info : report information about the running process\n"
65 " show stat : report counters for each proxy and server\n"
66 " show errors : report last request and response errors for each proxy\n"
Willy Tarreau66dc20a2010-03-05 17:53:32 +010067 " show sess [id] : report the list of current sessions or dump this session\n"
Willy Tarreau69f58c82010-07-12 17:55:33 +020068 " show table [id]: report table usage stats or dump this table's contents\n"
Willy Tarreau38338fa2009-10-10 18:37:29 +020069 " get weight : report a server's current weight\n"
Willy Tarreau4483d432009-10-10 19:30:08 +020070 " set weight : change a server's weight\n"
Willy Tarreau7aabd112010-01-26 10:59:06 +010071 " set timeout : change a timeout setting\n"
Cyril Bontécd19e512010-01-31 22:34:03 +010072 " disable server : set a server in maintenance mode\n"
73 " enable server : re-enable a server that was previously in maintenance mode\n"
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020074 "";
Willy Tarreau5ca791d2009-08-16 19:06:42 +020075
Willy Tarreau6162db22009-10-10 17:13:00 +020076const char stats_permission_denied_msg[] =
77 "Permission denied\n"
78 "";
79
Willy Tarreaudecd14d2010-06-01 18:03:19 +020080/* This function is called from the session-level accept() in order to instanciate
Willy Tarreaueb472682010-05-28 18:46:57 +020081 * a new stats socket. It returns a positive value upon success, 0 if the connection
82 * needs to be closed and ignored, or a negative value upon critical failure.
83 */
Willy Tarreaudecd14d2010-06-01 18:03:19 +020084int stats_accept(struct session *s)
Willy Tarreaueb472682010-05-28 18:46:57 +020085{
Willy Tarreaudecd14d2010-06-01 18:03:19 +020086 /* we have a dedicated I/O handler for the stats */
Willy Tarreaueb472682010-05-28 18:46:57 +020087 stream_int_register_handler(&s->si[1], stats_io_handler);
88 s->si[1].private = s;
89 s->si[1].st1 = 0;
90 s->si[1].st0 = STAT_CLI_INIT;
91
Willy Tarreaudecd14d2010-06-01 18:03:19 +020092 tv_zero(&s->logs.tv_request);
93 s->logs.t_queue = 0;
94 s->logs.t_connect = 0;
95 s->logs.t_data = 0;
96 s->logs.t_close = 0;
97 s->logs.bytes_in = s->logs.bytes_out = 0;
98 s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */
99 s->logs.srv_queue_size = 0; /* we will get this number soon */
Willy Tarreaueb472682010-05-28 18:46:57 +0200100
101 s->data_state = DATA_ST_INIT;
102 s->data_source = DATA_SRC_NONE;
Willy Tarreaueb472682010-05-28 18:46:57 +0200103
Willy Tarreaueb472682010-05-28 18:46:57 +0200104 s->req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */
105
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200106 if (s->listener->timeout) {
107 s->req->rto = *s->listener->timeout;
108 s->rep->wto = *s->listener->timeout;
Willy Tarreaueb472682010-05-28 18:46:57 +0200109 }
Willy Tarreaueb472682010-05-28 18:46:57 +0200110 return 1;
Willy Tarreaueb472682010-05-28 18:46:57 +0200111}
112
Willy Tarreau07e9e642010-08-17 21:48:17 +0200113/* allocate a new stats frontend named <name>, and return it
114 * (or NULL in case of lack of memory).
115 */
116static struct proxy *alloc_stats_fe(const char *name)
117{
118 struct proxy *fe;
119
120 fe = (struct proxy *)calloc(1, sizeof(struct proxy));
121 if (!fe)
122 return NULL;
123
124 LIST_INIT(&fe->pendconns);
125 LIST_INIT(&fe->acl);
126 LIST_INIT(&fe->block_cond);
127 LIST_INIT(&fe->redirect_rules);
128 LIST_INIT(&fe->mon_fail_cond);
129 LIST_INIT(&fe->switching_rules);
130 LIST_INIT(&fe->tcp_req.inspect_rules);
131
132 /* Timeouts are defined as -1, so we cannot use the zeroed area
133 * as a default value.
134 */
135 proxy_reset_timeouts(fe);
136
137 fe->last_change = now.tv_sec;
138 fe->id = strdup("GLOBAL");
139 fe->cap = PR_CAP_FE;
140 return fe;
141}
142
Willy Tarreaufbee7132007-10-18 13:53:22 +0200143/* This function parses a "stats" statement in the "global" section. It returns
144 * -1 if there is any error, otherwise zero. If it returns -1, it may write an
145 * error message into ther <err> buffer, for at most <errlen> bytes, trailing
146 * zero included. The trailing '\n' must not be written. The function must be
147 * called with <args> pointing to the first word after "stats".
148 */
Willy Tarreau10522fd2008-07-09 20:12:41 +0200149static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
150 struct proxy *defpx, char *err, int errlen)
Willy Tarreaufbee7132007-10-18 13:53:22 +0200151{
Willy Tarreau10522fd2008-07-09 20:12:41 +0200152 args++;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200153 if (!strcmp(args[0], "socket")) {
154 struct sockaddr_un su;
155 int cur_arg;
156
157 if (*args[1] == 0) {
158 snprintf(err, errlen, "'stats socket' in global section expects a path to a UNIX socket");
159 return -1;
160 }
161
162 if (global.stats_sock.state != LI_NEW) {
163 snprintf(err, errlen, "'stats socket' already specified in global section");
164 return -1;
165 }
166
167 su.sun_family = AF_UNIX;
168 strncpy(su.sun_path, args[1], sizeof(su.sun_path));
169 su.sun_path[sizeof(su.sun_path) - 1] = 0;
170 memcpy(&global.stats_sock.addr, &su, sizeof(su)); // guaranteed to fit
171
Willy Tarreau89a63132009-08-16 17:41:45 +0200172 if (!global.stats_fe) {
Willy Tarreau07e9e642010-08-17 21:48:17 +0200173 if ((global.stats_fe = alloc_stats_fe("GLOBAL")) == NULL) {
Willy Tarreau89a63132009-08-16 17:41:45 +0200174 snprintf(err, errlen, "out of memory");
175 return -1;
176 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200177 global.stats_fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
Willy Tarreau89a63132009-08-16 17:41:45 +0200178 }
179
Willy Tarreaufbee7132007-10-18 13:53:22 +0200180 global.stats_sock.state = LI_INIT;
Willy Tarreau6fb42e02007-10-28 17:02:33 +0100181 global.stats_sock.options = LI_O_NONE;
Willy Tarreaudecd14d2010-06-01 18:03:19 +0200182 global.stats_sock.accept = session_accept;
183 global.stats_fe->accept = stats_accept;
Willy Tarreau104eb362009-08-16 18:51:29 +0200184 global.stats_sock.handler = process_session;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200185 global.stats_sock.analysers = 0;
Willy Tarreau2c9f5b12009-08-16 19:12:36 +0200186 global.stats_sock.nice = -64; /* we want to boost priority for local stats */
Willy Tarreaueb472682010-05-28 18:46:57 +0200187 global.stats_sock.frontend = global.stats_fe;
Willy Tarreau6162db22009-10-10 17:13:00 +0200188 global.stats_sock.perm.ux.level = ACCESS_LVL_OPER; /* default access level */
Willy Tarreau07e9e642010-08-17 21:48:17 +0200189 global.stats_fe->maxconn = global.stats_sock.maxconn;
Willy Tarreau89a63132009-08-16 17:41:45 +0200190 global.stats_sock.timeout = &global.stats_fe->timeout.client;
191
192 global.stats_sock.next = global.stats_fe->listen;
193 global.stats_fe->listen = &global.stats_sock;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200194
195 cur_arg = 2;
196 while (*args[cur_arg]) {
197 if (!strcmp(args[cur_arg], "uid")) {
198 global.stats_sock.perm.ux.uid = atol(args[cur_arg + 1]);
199 cur_arg += 2;
200 }
201 else if (!strcmp(args[cur_arg], "gid")) {
202 global.stats_sock.perm.ux.gid = atol(args[cur_arg + 1]);
203 cur_arg += 2;
204 }
205 else if (!strcmp(args[cur_arg], "mode")) {
206 global.stats_sock.perm.ux.mode = strtol(args[cur_arg + 1], NULL, 8);
207 cur_arg += 2;
208 }
209 else if (!strcmp(args[cur_arg], "user")) {
210 struct passwd *user;
211 user = getpwnam(args[cur_arg + 1]);
212 if (!user) {
213 snprintf(err, errlen, "unknown user '%s' in 'global' section ('stats user')",
214 args[cur_arg + 1]);
215 return -1;
216 }
217 global.stats_sock.perm.ux.uid = user->pw_uid;
218 cur_arg += 2;
219 }
220 else if (!strcmp(args[cur_arg], "group")) {
221 struct group *group;
222 group = getgrnam(args[cur_arg + 1]);
223 if (!group) {
224 snprintf(err, errlen, "unknown group '%s' in 'global' section ('stats group')",
225 args[cur_arg + 1]);
226 return -1;
227 }
228 global.stats_sock.perm.ux.gid = group->gr_gid;
229 cur_arg += 2;
230 }
Willy Tarreau6162db22009-10-10 17:13:00 +0200231 else if (!strcmp(args[cur_arg], "level")) {
232 if (!strcmp(args[cur_arg+1], "user"))
233 global.stats_sock.perm.ux.level = ACCESS_LVL_USER;
234 else if (!strcmp(args[cur_arg+1], "operator"))
235 global.stats_sock.perm.ux.level = ACCESS_LVL_OPER;
236 else if (!strcmp(args[cur_arg+1], "admin"))
237 global.stats_sock.perm.ux.level = ACCESS_LVL_ADMIN;
238 else {
239 snprintf(err, errlen, "'stats socket level' only supports 'user', 'operator', and 'admin'");
240 return -1;
241 }
242 cur_arg += 2;
243 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200244 else {
Willy Tarreau6162db22009-10-10 17:13:00 +0200245 snprintf(err, errlen, "'stats socket' only supports 'user', 'uid', 'group', 'gid', 'level', and 'mode'");
Willy Tarreaufbee7132007-10-18 13:53:22 +0200246 return -1;
247 }
248 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +0100249
Willy Tarreaufbee7132007-10-18 13:53:22 +0200250 uxst_add_listener(&global.stats_sock);
251 global.maxsock++;
252 }
253 else if (!strcmp(args[0], "timeout")) {
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100254 unsigned timeout;
255 const char *res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
256
257 if (res) {
258 snprintf(err, errlen, "unexpected character '%c' in 'stats timeout' in 'global' section", *res);
259 return -1;
260 }
Willy Tarreaufbee7132007-10-18 13:53:22 +0200261
Willy Tarreaub3f32f52007-12-02 22:15:14 +0100262 if (!timeout) {
Willy Tarreaufbee7132007-10-18 13:53:22 +0200263 snprintf(err, errlen, "a positive value is expected for 'stats timeout' in 'global section'");
264 return -1;
265 }
Willy Tarreau07e9e642010-08-17 21:48:17 +0200266 if (!global.stats_fe) {
267 if ((global.stats_fe = alloc_stats_fe("GLOBAL")) == NULL) {
268 snprintf(err, errlen, "out of memory");
269 return -1;
270 }
271 }
Willy Tarreau89a63132009-08-16 17:41:45 +0200272 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
Willy Tarreaufbee7132007-10-18 13:53:22 +0200273 }
274 else if (!strcmp(args[0], "maxconn")) {
275 int maxconn = atol(args[1]);
276
277 if (maxconn <= 0) {
278 snprintf(err, errlen, "a positive value is expected for 'stats maxconn' in 'global section'");
279 return -1;
280 }
281 global.maxsock -= global.stats_sock.maxconn;
282 global.stats_sock.maxconn = maxconn;
283 global.maxsock += global.stats_sock.maxconn;
Willy Tarreaueb472682010-05-28 18:46:57 +0200284 if (global.stats_fe)
285 global.stats_fe->maxconn = global.stats_sock.maxconn;
Willy Tarreaufbee7132007-10-18 13:53:22 +0200286 }
287 else {
288 snprintf(err, errlen, "'stats' only supports 'socket', 'maxconn' and 'timeout' in 'global' section");
289 return -1;
290 }
291 return 0;
292}
293
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200294int print_csv_header(struct chunk *msg)
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100295{
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200296 return chunk_printf(msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100297 "# pxname,svname,"
298 "qcur,qmax,"
299 "scur,smax,slim,stot,"
300 "bin,bout,"
301 "dreq,dresp,"
302 "ereq,econ,eresp,"
303 "wretr,wredis,"
304 "status,weight,act,bck,"
305 "chkfail,chkdown,lastchg,downtime,qlimit,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +0200306 "pid,iid,sid,throttle,lbtot,tracked,type,"
307 "rate,rate_lim,rate_max,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +0200308 "check_status,check_code,check_duration,"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100309 "hrsp_1xx,hrsp_2xx,hrsp_3xx,hrsp_4xx,hrsp_5xx,hrsp_other,hanafail,"
Willy Tarreauae526782010-03-04 20:34:23 +0100310 "req_rate,req_rate_max,req_tot,"
311 "cli_abrt,srv_abrt,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +0100312 "\n");
313}
314
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200315/* Processes the stats interpreter on the statistics socket. This function is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200316 * called from an applet running in a stream interface. The function returns 1
317 * if the request was understood, otherwise zero. It sets si->st0 to a value
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200318 * designating the function which will have to process the request, which can
319 * also be the print function to display the return message set into cli.msg.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200320 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200321int stats_sock_parse_request(struct stream_interface *si, char *line)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200322{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200323 struct session *s = si->private;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200324 char *args[MAX_STATS_ARGS + 1];
325 int arg;
326
327 while (isspace((unsigned char)*line))
328 line++;
329
330 arg = 0;
331 args[arg] = line;
332
333 while (*line && arg < MAX_STATS_ARGS) {
334 if (isspace((unsigned char)*line)) {
335 *line++ = '\0';
336
337 while (isspace((unsigned char)*line))
338 line++;
339
340 args[++arg] = line;
341 continue;
342 }
343
344 line++;
345 }
346
347 while (++arg <= MAX_STATS_ARGS)
348 args[arg] = line;
349
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200350 s->data_ctx.stats.flags = 0;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200351 if (strcmp(args[0], "show") == 0) {
352 if (strcmp(args[1], "stat") == 0) {
353 if (*args[2] && *args[3] && *args[4]) {
354 s->data_ctx.stats.flags |= STAT_BOUND;
355 s->data_ctx.stats.iid = atoi(args[2]);
356 s->data_ctx.stats.type = atoi(args[3]);
357 s->data_ctx.stats.sid = atoi(args[4]);
358 }
359
360 s->data_ctx.stats.flags |= STAT_SHOW_STAT;
361 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200362 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200363 si->st0 = STAT_CLI_O_INFO; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200364 }
365 else if (strcmp(args[1], "info") == 0) {
366 s->data_ctx.stats.flags |= STAT_SHOW_INFO;
367 s->data_ctx.stats.flags |= STAT_FMT_CSV;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200368 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200369 si->st0 = STAT_CLI_O_INFO; // stats_dump_raw_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200370 }
371 else if (strcmp(args[1], "sess") == 0) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200372 s->data_state = DATA_ST_INIT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200373 if (s->listener->perm.ux.level < ACCESS_LVL_OPER) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200374 s->data_ctx.cli.msg = stats_permission_denied_msg;
375 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200376 return 1;
377 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +0100378 if (*args[2])
379 s->data_ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
380 else
381 s->data_ctx.sess.target = NULL;
382 s->data_ctx.sess.section = 0; /* start with session status */
383 s->data_ctx.sess.pos = 0;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200384 si->st0 = STAT_CLI_O_SESS; // stats_dump_sess_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200385 }
386 else if (strcmp(args[1], "errors") == 0) {
Willy Tarreau6162db22009-10-10 17:13:00 +0200387 if (s->listener->perm.ux.level < ACCESS_LVL_OPER) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200388 s->data_ctx.cli.msg = stats_permission_denied_msg;
389 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200390 return 1;
391 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200392 if (*args[2])
393 s->data_ctx.errors.iid = atoi(args[2]);
394 else
395 s->data_ctx.errors.iid = -1;
396 s->data_ctx.errors.px = NULL;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200397 s->data_state = DATA_ST_INIT;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200398 si->st0 = STAT_CLI_O_ERR; // stats_dump_errors_to_buffer
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200399 }
Willy Tarreau69f58c82010-07-12 17:55:33 +0200400 else if (strcmp(args[1], "table") == 0) {
401 s->data_state = DATA_ST_INIT;
Willy Tarreau603861e2010-07-18 08:31:59 +0200402 if (*args[2]) {
403 s->data_ctx.table.target = find_stktable(args[2]);
404 if (!s->data_ctx.table.target) {
405 s->data_ctx.cli.msg = "No such table\n";
406 si->st0 = STAT_CLI_PRINT;
407 return 1;
408 }
409 }
Willy Tarreau69f58c82010-07-12 17:55:33 +0200410 else
411 s->data_ctx.table.target = NULL;
Willy Tarreau4f3f01f2010-07-18 11:46:20 +0200412
413 s->data_ctx.table.data_type = -1;
414 if (s->data_ctx.table.target && strncmp(args[3], "data.", 5) == 0) {
415 /* condition on stored data value */
416 s->data_ctx.table.data_type = stktable_get_data_type(args[3] + 5);
417 if (s->data_ctx.table.data_type < 0) {
418 s->data_ctx.cli.msg = "Unknown data type\n";
419 si->st0 = STAT_CLI_PRINT;
420 return 1;
421 }
422
423 if (!((struct proxy *)s->data_ctx.table.target)->table.data_ofs[s->data_ctx.table.data_type]) {
424 s->data_ctx.cli.msg = "Data type not stored in this table\n";
425 si->st0 = STAT_CLI_PRINT;
426 return 1;
427 }
428
429 s->data_ctx.table.data_op = get_std_op(args[4]);
430 if (s->data_ctx.table.data_op < 0) {
431 s->data_ctx.cli.msg = "Require and operator among \"eq\", \"ne\", \"le\", \"ge\", \"lt\", \"gt\"\n";
432 si->st0 = STAT_CLI_PRINT;
433 return 1;
434 }
435
436 if (!*args[5] || strl2llrc(args[5], strlen(args[5]), &s->data_ctx.table.value) != 0) {
437 s->data_ctx.cli.msg = "Require a valid integer value to compare against\n";
438 si->st0 = STAT_CLI_PRINT;
439 return 1;
440 }
441 }
442 else if (*args[3]) {
443 s->data_ctx.cli.msg = "Optional argument only supports \"data.<store_data_type>\" <operator> <value>\n";
444 si->st0 = STAT_CLI_PRINT;
445 return 1;
446 }
447
Willy Tarreau69f58c82010-07-12 17:55:33 +0200448 s->data_ctx.table.proxy = NULL;
449 s->data_ctx.table.entry = NULL;
450 si->st0 = STAT_CLI_O_TAB; // stats_dump_table_to_buffer
451 }
Willy Tarreau88ee3972010-07-13 13:48:00 +0200452 else { /* neither "stat" nor "info" nor "sess" nor "errors" no "table" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200453 return 0;
454 }
455 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200456 else if (strcmp(args[0], "clear") == 0) {
457 if (strcmp(args[1], "counters") == 0) {
458 struct proxy *px;
459 struct server *sv;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200460 struct listener *li;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200461 int clrall = 0;
462
463 if (strcmp(args[2], "all") == 0)
464 clrall = 1;
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200465
Willy Tarreau6162db22009-10-10 17:13:00 +0200466 /* check permissions */
467 if (s->listener->perm.ux.level < ACCESS_LVL_OPER ||
468 (clrall && s->listener->perm.ux.level < ACCESS_LVL_ADMIN)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200469 s->data_ctx.cli.msg = stats_permission_denied_msg;
470 si->st0 = STAT_CLI_PRINT;
Willy Tarreau6162db22009-10-10 17:13:00 +0200471 return 1;
472 }
473
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200474 for (px = proxy; px; px = px->next) {
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200475 if (clrall)
476 memset(&px->counters, 0, sizeof(px->counters));
477 else {
478 px->counters.feconn_max = 0;
479 px->counters.beconn_max = 0;
Willy Tarreaud9b587f2010-02-26 10:05:55 +0100480 px->counters.fe_rps_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200481 px->counters.fe_sps_max = 0;
Willy Tarreaub36b4242010-06-04 20:59:39 +0200482 px->counters.fe_cps_max = 0;
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200483 px->counters.be_sps_max = 0;
484 px->counters.nbpend_max = 0;
485 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200486
487 for (sv = px->srv; sv; sv = sv->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200488 if (clrall)
489 memset(&sv->counters, 0, sizeof(sv->counters));
490 else {
491 sv->counters.cur_sess_max = 0;
492 sv->counters.nbpend_max = 0;
493 sv->counters.sps_max = 0;
494 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200495
496 for (li = px->listen; li; li = li->next)
Willy Tarreau2f6bf2b2009-10-10 15:26:26 +0200497 if (li->counters) {
498 if (clrall)
499 memset(li->counters, 0, sizeof(*li->counters));
500 else
501 li->counters->conn_max = 0;
502 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200503 }
504
505 return 1;
506 }
Willy Tarreau88ee3972010-07-13 13:48:00 +0200507 else if (strcmp(args[1], "table") == 0) {
508 struct proxy *px;
509 struct stksess *ts;
510 unsigned int ip_key;
511
512 if (!*args[2]) {
Willy Tarreau603861e2010-07-18 08:31:59 +0200513 s->data_ctx.cli.msg = "\"table\" argument expected\n";
Willy Tarreau88ee3972010-07-13 13:48:00 +0200514 si->st0 = STAT_CLI_PRINT;
515 return 1;
516 }
517
518 px = find_stktable(args[2]);
519
520 if (!px) {
Willy Tarreau603861e2010-07-18 08:31:59 +0200521 s->data_ctx.cli.msg = "No such table\n";
Willy Tarreau88ee3972010-07-13 13:48:00 +0200522 si->st0 = STAT_CLI_PRINT;
523 return 1;
524 }
525
526 if (strcmp(args[3], "key") != 0) {
Willy Tarreau603861e2010-07-18 08:31:59 +0200527 s->data_ctx.cli.msg = "\"key\" argument expected\n";
Willy Tarreau88ee3972010-07-13 13:48:00 +0200528 si->st0 = STAT_CLI_PRINT;
529 return 1;
530 }
531
532 if (!*args[4]) {
Willy Tarreau603861e2010-07-18 08:31:59 +0200533 s->data_ctx.cli.msg = "Key value expected\n";
Willy Tarreau88ee3972010-07-13 13:48:00 +0200534 si->st0 = STAT_CLI_PRINT;
535 return 1;
536 }
537
538 if (px->table.type == STKTABLE_TYPE_IP) {
539 ip_key = htonl(inetaddr_host(args[4]));
540 static_table_key.key = (void *)&ip_key;
541 }
542 else {
Willy Tarreau603861e2010-07-18 08:31:59 +0200543 s->data_ctx.cli.msg = "Removing keys from non-ip tables is not supported\n";
Willy Tarreau88ee3972010-07-13 13:48:00 +0200544 si->st0 = STAT_CLI_PRINT;
545 return 1;
546 }
547
548 /* check permissions */
549 if (s->listener->perm.ux.level < ACCESS_LVL_OPER) {
550 s->data_ctx.cli.msg = stats_permission_denied_msg;
551 si->st0 = STAT_CLI_PRINT;
552 return 1;
553 }
554
555 ts = stktable_lookup_key(&px->table, &static_table_key);
556 if (!ts) {
557 /* silent return, entry was already removed */
558 return 1;
559 }
560 else if (ts->ref_cnt) {
561 /* don't delete an entry which is currently referenced */
Willy Tarreau603861e2010-07-18 08:31:59 +0200562 s->data_ctx.cli.msg = "Entry currently in use, cannot remove\n";
Willy Tarreau88ee3972010-07-13 13:48:00 +0200563 si->st0 = STAT_CLI_PRINT;
564 return 1;
565 }
566
Willy Tarreaudf39e952010-08-10 11:11:40 +0200567 stksess_kill(&px->table, ts);
Willy Tarreau88ee3972010-07-13 13:48:00 +0200568 /* end of processing */
569 return 1;
570 }
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200571 else {
Willy Tarreau88ee3972010-07-13 13:48:00 +0200572 /* unknown "clear" argument */
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +0200573 return 0;
574 }
575 }
Willy Tarreau38338fa2009-10-10 18:37:29 +0200576 else if (strcmp(args[0], "get") == 0) {
577 if (strcmp(args[1], "weight") == 0) {
578 struct proxy *px;
579 struct server *sv;
580
581 /* split "backend/server" and make <line> point to server */
582 for (line = args[2]; *line; line++)
583 if (*line == '/') {
584 *line++ = '\0';
585 break;
586 }
587
588 if (!*line) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200589 s->data_ctx.cli.msg = "Require 'backend/server'.\n";
590 si->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +0200591 return 1;
592 }
593
594 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200595 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
596 si->st0 = STAT_CLI_PRINT;
Willy Tarreau38338fa2009-10-10 18:37:29 +0200597 return 1;
598 }
599
600 /* return server's effective weight at the moment */
601 snprintf(trash, sizeof(trash), "%d (initial %d)\n", sv->uweight, sv->iweight);
602 buffer_feed(si->ib, trash);
603 return 1;
604 }
605 else { /* not "get weight" */
606 return 0;
607 }
608 }
Willy Tarreau4483d432009-10-10 19:30:08 +0200609 else if (strcmp(args[0], "set") == 0) {
610 if (strcmp(args[1], "weight") == 0) {
611 struct proxy *px;
612 struct server *sv;
613 int w;
614
615 if (s->listener->perm.ux.level < ACCESS_LVL_ADMIN) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200616 s->data_ctx.cli.msg = stats_permission_denied_msg;
617 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200618 return 1;
619 }
620
621 /* split "backend/server" and make <line> point to server */
622 for (line = args[2]; *line; line++)
623 if (*line == '/') {
624 *line++ = '\0';
625 break;
626 }
627
628 if (!*line || !*args[3]) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200629 s->data_ctx.cli.msg = "Require 'backend/server' and 'weight' or 'weight%'.\n";
630 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200631 return 1;
632 }
633
634 if (!get_backend_server(args[2], line, &px, &sv)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200635 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
636 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200637 return 1;
638 }
639
640 /* if the weight is terminated with '%', it is set relative to
641 * the initial weight, otherwise it is absolute.
642 */
643 w = atoi(args[3]);
644 if (strchr(args[3], '%') != NULL) {
645 if (w < 0 || w > 100) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200646 s->data_ctx.cli.msg = "Relative weight can only be set between 0 and 100% inclusive.\n";
647 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200648 return 1;
649 }
650 w = sv->iweight * w / 100;
651 }
652 else {
653 if (w < 0 || w > 256) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200654 s->data_ctx.cli.msg = "Absolute weight can only be between 0 and 256 inclusive.\n";
655 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200656 return 1;
657 }
658 }
659
660 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN)) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200661 s->data_ctx.cli.msg = "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
662 si->st0 = STAT_CLI_PRINT;
Willy Tarreau4483d432009-10-10 19:30:08 +0200663 return 1;
664 }
665
666 sv->uweight = w;
667
668 if (px->lbprm.algo & BE_LB_PROP_DYN) {
669 /* we must take care of not pushing the server to full throttle during slow starts */
670 if ((sv->state & SRV_WARMINGUP) && (px->lbprm.algo & BE_LB_PROP_DYN))
671 sv->eweight = (BE_WEIGHT_SCALE * (now.tv_sec - sv->last_change) + sv->slowstart - 1) / sv->slowstart;
672 else
673 sv->eweight = BE_WEIGHT_SCALE;
674 sv->eweight *= sv->uweight;
675 } else {
676 sv->eweight = sv->uweight;
677 }
678
679 /* static LB algorithms are a bit harder to update */
680 if (px->lbprm.update_server_eweight)
681 px->lbprm.update_server_eweight(sv);
682 else if (sv->eweight)
683 px->lbprm.set_server_status_up(sv);
684 else
685 px->lbprm.set_server_status_down(sv);
686
687 return 1;
688 }
Willy Tarreau7aabd112010-01-26 10:59:06 +0100689 else if (strcmp(args[1], "timeout") == 0) {
690 if (strcmp(args[2], "cli") == 0) {
691 unsigned timeout;
692 const char *res;
693
694 if (!*args[3]) {
695 s->data_ctx.cli.msg = "Expects an integer value.\n";
696 si->st0 = STAT_CLI_PRINT;
697 return 1;
698 }
699
700 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
701 if (res || timeout < 1) {
702 s->data_ctx.cli.msg = "Invalid timeout value.\n";
703 si->st0 = STAT_CLI_PRINT;
704 return 1;
705 }
706
707 s->req->rto = s->rep->wto = 1 + MS_TO_TICKS(timeout*1000);
708 return 1;
709 }
710 else {
711 s->data_ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
712 si->st0 = STAT_CLI_PRINT;
713 return 1;
714 }
715 }
716 else { /* unknown "set" parameter */
Willy Tarreau4483d432009-10-10 19:30:08 +0200717 return 0;
718 }
719 }
Cyril Bontécd19e512010-01-31 22:34:03 +0100720 else if (strcmp(args[0], "enable") == 0) {
721 if (strcmp(args[1], "server") == 0) {
722 struct proxy *px;
723 struct server *sv;
724
725 if (s->listener->perm.ux.level < ACCESS_LVL_ADMIN) {
726 s->data_ctx.cli.msg = stats_permission_denied_msg;
727 si->st0 = STAT_CLI_PRINT;
728 return 1;
729 }
730
731 /* split "backend/server" and make <line> point to server */
732 for (line = args[2]; *line; line++)
733 if (*line == '/') {
734 *line++ = '\0';
735 break;
736 }
737
738 if (!*line || !*args[2]) {
739 s->data_ctx.cli.msg = "Require 'backend/server'.\n";
740 si->st0 = STAT_CLI_PRINT;
741 return 1;
742 }
743
744 if (!get_backend_server(args[2], line, &px, &sv)) {
745 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
746 si->st0 = STAT_CLI_PRINT;
747 return 1;
748 }
749
750 if (sv->state & SRV_MAINTAIN) {
751 /* The server is really in maintenance, we can change the server state */
752 if (sv->tracked) {
753 /* If this server tracks the status of another one,
754 * we must restore the good status.
755 */
756 if (sv->tracked->state & SRV_RUNNING) {
757 set_server_up(sv);
758 } else {
759 sv->state &= ~SRV_MAINTAIN;
760 set_server_down(sv);
761 }
762 } else {
763 set_server_up(sv);
764 }
765 }
766
767 return 1;
768 }
769 else { /* unknown "enable" parameter */
770 return 0;
771 }
772 }
773 else if (strcmp(args[0], "disable") == 0) {
774 if (strcmp(args[1], "server") == 0) {
775 struct proxy *px;
776 struct server *sv;
777
778 if (s->listener->perm.ux.level < ACCESS_LVL_ADMIN) {
779 s->data_ctx.cli.msg = stats_permission_denied_msg;
780 si->st0 = STAT_CLI_PRINT;
781 return 1;
782 }
783
784 /* split "backend/server" and make <line> point to server */
785 for (line = args[2]; *line; line++)
786 if (*line == '/') {
787 *line++ = '\0';
788 break;
789 }
790
791 if (!*line || !*args[2]) {
792 s->data_ctx.cli.msg = "Require 'backend/server'.\n";
793 si->st0 = STAT_CLI_PRINT;
794 return 1;
795 }
796
797 if (!get_backend_server(args[2], line, &px, &sv)) {
798 s->data_ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
799 si->st0 = STAT_CLI_PRINT;
800 return 1;
801 }
802
803 if (! (sv->state & SRV_MAINTAIN)) {
804 /* Not already in maintenance, we can change the server state */
805 sv->state |= SRV_MAINTAIN;
806 set_server_down(sv);
807 }
808
809 return 1;
810 }
811 else { /* unknown "disable" parameter */
812 return 0;
813 }
814 }
815 else { /* not "show" nor "clear" nor "get" nor "set" nor "enable" nor "disable" */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200816 return 0;
817 }
818 return 1;
819}
820
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200821/* This I/O handler runs as an applet embedded in a stream interface. It is
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200822 * used to processes I/O from/to the stats unix socket. The system relies on a
823 * state machine handling requests and various responses. We read a request,
824 * then we process it and send the response, and we possibly display a prompt.
825 * Then we can read again. The state is stored in si->st0 and is one of the
826 * STAT_CLI_* constants. si->st1 is used to indicate whether prompt is enabled
827 * or not.
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200828 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200829void stats_io_handler(struct stream_interface *si)
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200830{
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200831 struct session *s = si->private;
832 struct buffer *req = si->ob;
833 struct buffer *res = si->ib;
834 int reql;
835 int len;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200836
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200837 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
838 goto out;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200839
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200840 while (1) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200841 if (si->st0 == STAT_CLI_INIT) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200842 /* Stats output not initialized yet */
843 memset(&s->data_ctx.stats, 0, sizeof(s->data_ctx.stats));
844 s->data_source = DATA_SRC_STATS;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200845 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200846 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200847 else if (si->st0 == STAT_CLI_END) {
848 /* Let's close for real now. We just close the request
849 * side, the conditions below will complete if needed.
850 */
851 si->shutw(si);
852 break;
853 }
854 else if (si->st0 == STAT_CLI_GETREQ) {
Willy Tarreau4e33d862009-10-11 23:35:10 +0200855 /* ensure we have some output room left in the event we
856 * would want to return some info right after parsing.
857 */
858 if (buffer_almost_full(si->ib))
859 break;
860
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200861 reql = buffer_si_peekline(si->ob, trash, sizeof(trash));
862 if (reql <= 0) { /* closed or EOL not found */
863 if (reql == 0)
864 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200865 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200866 continue;
867 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200868
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200869 /* seek for a possible semi-colon. If we find one, we
870 * replace it with an LF and skip only this part.
871 */
872 for (len = 0; len < reql; len++)
873 if (trash[len] == ';') {
874 trash[len] = '\n';
875 reql = len + 1;
876 break;
877 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200878
Willy Tarreau816fc222009-10-04 07:36:58 +0200879 /* now it is time to check that we have a full line,
880 * remove the trailing \n and possibly \r, then cut the
881 * line.
882 */
883 len = reql - 1;
884 if (trash[len] != '\n') {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200885 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200886 continue;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200887 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200888
Willy Tarreau816fc222009-10-04 07:36:58 +0200889 if (len && trash[len-1] == '\r')
890 len--;
891
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200892 trash[len] = '\0';
893
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200894 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200895 if (len) {
896 if (strcmp(trash, "quit") == 0) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200897 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200898 continue;
899 }
900 else if (strcmp(trash, "prompt") == 0)
901 si->st1 = !si->st1;
902 else if (strcmp(trash, "help") == 0 ||
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200903 !stats_sock_parse_request(si, trash)) {
904 s->data_ctx.cli.msg = stats_sock_usage_msg;
905 si->st0 = STAT_CLI_PRINT;
906 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200907 /* NB: stats_sock_parse_request() may have put
908 * another STAT_CLI_O_* into si->st0.
909 */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200910 }
911 else if (!si->st1) {
912 /* if prompt is disabled, print help on empty lines,
913 * so that the user at least knows how to enable
914 * prompt and find help.
915 */
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200916 s->data_ctx.cli.msg = stats_sock_usage_msg;
917 si->st0 = STAT_CLI_PRINT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200918 }
919
920 /* re-adjust req buffer */
921 buffer_skip(si->ob, reql);
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200922 req->flags |= BF_READ_DONTWAIT; /* we plan to read small requests */
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200923 }
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200924 else { /* output functions: first check if the output buffer is closed then abort */
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200925 if (res->flags & (BF_SHUTR_NOW|BF_SHUTR)) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200926 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200927 continue;
928 }
929
930 switch (si->st0) {
Willy Tarreauea1f5fe2009-10-11 23:12:51 +0200931 case STAT_CLI_PRINT:
932 if (buffer_feed(si->ib, s->data_ctx.cli.msg) < 0)
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200933 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200934 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200935 case STAT_CLI_O_INFO:
Willy Tarreau24955a12009-10-04 11:54:04 +0200936 if (stats_dump_raw_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200937 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200938 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200939 case STAT_CLI_O_SESS:
Willy Tarreau7e72a8f2009-10-03 23:55:14 +0200940 if (stats_dump_sess_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200941 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200942 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200943 case STAT_CLI_O_ERR: /* errors dump */
Willy Tarreau61b34732009-10-03 23:49:35 +0200944 if (stats_dump_errors_to_buffer(s, res))
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200945 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200946 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +0200947 case STAT_CLI_O_TAB:
948 if (stats_dump_table_to_buffer(s, res))
949 si->st0 = STAT_CLI_PROMPT;
950 break;
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200951 default: /* abnormal state */
952 si->st0 = STAT_CLI_PROMPT;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200953 break;
954 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200955
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200956 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
957 if (si->st0 == STAT_CLI_PROMPT) {
Willy Tarreau9bcc91e2009-10-10 18:01:44 +0200958 if (buffer_feed(si->ib, si->st1 ? "\n> " : "\n") < 0)
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200959 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200960 }
961
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200962 /* If the output functions are still there, it means they require more room. */
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200963 if (si->st0 >= STAT_CLI_OUTPUT)
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200964 break;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200965
966 /* Now we close the output if one of the writers did so,
967 * or if we're not in interactive mode and the request
968 * buffer is empty. This still allows pipelined requests
969 * to be sent in non-interactive mode.
970 */
971 if ((res->flags & (BF_SHUTW|BF_SHUTW_NOW)) || (!si->st1 && !req->send_max)) {
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200972 si->st0 = STAT_CLI_END;
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200973 continue;
974 }
975
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200976 /* switch state back to GETREQ to read next requests */
977 si->st0 = STAT_CLI_GETREQ;
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200978 }
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200979 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +0200980
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200981 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST) && (si->st0 != STAT_CLI_GETREQ)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200982 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
983 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
984 /* Other size has closed, let's abort if we have no more processing to do
985 * and nothing more to consume. This is comparable to a broken pipe, so
986 * we forward the close to the request side so that it flows upstream to
987 * the client.
988 */
989 si->shutw(si);
990 }
991
Willy Tarreauf5a885f2009-10-04 14:22:18 +0200992 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && (si->st0 < STAT_CLI_OUTPUT)) {
Willy Tarreau9a42c0d2009-09-22 19:31:03 +0200993 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
994 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
995 /* We have no more processing to do, and nothing more to send, and
996 * the client side has closed. So we'll forward this state downstream
997 * on the response buffer.
998 */
999 si->shutr(si);
1000 res->flags |= BF_READ_NULL;
1001 }
1002
1003 /* update all other flags and resync with the other side */
1004 si->update(si);
1005
1006 /* we don't want to expire timeouts while we're processing requests */
1007 si->ib->rex = TICK_ETERNITY;
1008 si->ob->wex = TICK_ETERNITY;
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001009
Willy Tarreau9a42c0d2009-09-22 19:31:03 +02001010 out:
1011 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rql=%d, rqs=%d, rl=%d, rs=%d\n",
1012 __FUNCTION__, __LINE__,
1013 si->state, req->flags, res->flags, req->l, req->send_max, res->l, res->send_max);
1014
1015 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
1016 /* check that we have released everything then unregister */
1017 stream_int_unregister_handler(si);
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001018 }
Willy Tarreau5ca791d2009-08-16 19:06:42 +02001019}
1020
Willy Tarreau24955a12009-10-04 11:54:04 +02001021/* This function is called to send output to the response buffer.
1022 * It dumps statistics onto the output buffer <rep> owned by session <s>.
1023 * s->data_ctx must have been zeroed first, and the flags properly set.
1024 * It returns 0 as long as it does not complete, non-zero upon completion.
1025 * Some states are not used but it makes the code more similar to other
1026 * functions which handle stats too.
Willy Tarreau3e76e722007-10-17 18:57:38 +02001027 */
Willy Tarreau24955a12009-10-04 11:54:04 +02001028int stats_dump_raw_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3e76e722007-10-17 18:57:38 +02001029{
Willy Tarreau3e76e722007-10-17 18:57:38 +02001030 struct proxy *px;
1031 struct chunk msg;
Willy Tarreaua8efd362008-01-03 10:19:15 +01001032 unsigned int up;
Willy Tarreau3e76e722007-10-17 18:57:38 +02001033
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001034 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3e76e722007-10-17 18:57:38 +02001035
1036 switch (s->data_state) {
1037 case DATA_ST_INIT:
Willy Tarreau24955a12009-10-04 11:54:04 +02001038 /* the function had not been called yet */
Willy Tarreau3e76e722007-10-17 18:57:38 +02001039 s->data_state = DATA_ST_HEAD;
1040 /* fall through */
1041
1042 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001043 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001044 print_csv_header(&msg);
Willy Tarreau24955a12009-10-04 11:54:04 +02001045 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +01001046 return 0;
1047 }
Willy Tarreau3e76e722007-10-17 18:57:38 +02001048
1049 s->data_state = DATA_ST_INFO;
1050 /* fall through */
1051
1052 case DATA_ST_INFO:
Willy Tarreaua8efd362008-01-03 10:19:15 +01001053 up = (now.tv_sec - start_date.tv_sec);
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001054 if (s->data_ctx.stats.flags & STAT_SHOW_INFO) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001055 chunk_printf(&msg,
Willy Tarreaua8efd362008-01-03 10:19:15 +01001056 "Name: " PRODUCT_NAME "\n"
1057 "Version: " HAPROXY_VERSION "\n"
1058 "Release_date: " HAPROXY_DATE "\n"
1059 "Nbproc: %d\n"
1060 "Process_num: %d\n"
1061 "Pid: %d\n"
1062 "Uptime: %dd %dh%02dm%02ds\n"
1063 "Uptime_sec: %d\n"
1064 "Memmax_MB: %d\n"
1065 "Ulimit-n: %d\n"
1066 "Maxsock: %d\n"
1067 "Maxconn: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +01001068 "Maxpipes: %d\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +01001069 "CurrConns: %d\n"
Willy Tarreaua206fa92009-01-25 14:02:00 +01001070 "PipesUsed: %d\n"
1071 "PipesFree: %d\n"
Willy Tarreauc7bdf092009-03-21 18:33:52 +01001072 "Tasks: %d\n"
1073 "Run_queue: %d\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001074 "node: %s\n"
1075 "description: %s\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +01001076 "",
1077 global.nbproc,
1078 relative_pid,
1079 pid,
1080 up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60),
1081 up,
1082 global.rlimit_memmax,
1083 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +01001084 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +01001085 actconn, pipes_used, pipes_free,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001086 nb_tasks_cur, run_queue_cur,
1087 global.node, global.desc?global.desc:""
Willy Tarreaua8efd362008-01-03 10:19:15 +01001088 );
Willy Tarreau24955a12009-10-04 11:54:04 +02001089 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +01001090 return 0;
1091 }
1092
Willy Tarreau3e76e722007-10-17 18:57:38 +02001093 s->data_ctx.stats.px = proxy;
1094 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001095
1096 s->data_ctx.stats.sv = NULL;
1097 s->data_ctx.stats.sv_st = 0;
1098
Willy Tarreau3e76e722007-10-17 18:57:38 +02001099 s->data_state = DATA_ST_LIST;
1100 /* fall through */
1101
1102 case DATA_ST_LIST:
1103 /* dump proxies */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001104 if (s->data_ctx.stats.flags & STAT_SHOW_STAT) {
Willy Tarreaua8efd362008-01-03 10:19:15 +01001105 while (s->data_ctx.stats.px) {
1106 px = s->data_ctx.stats.px;
1107 /* skip the disabled proxies and non-networked ones */
1108 if (px->state != PR_STSTOPPED &&
Willy Tarreau24955a12009-10-04 11:54:04 +02001109 (px->cap & (PR_CAP_FE | PR_CAP_BE))) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001110 if (stats_dump_proxy(s, px, NULL) == 0)
Willy Tarreaua8efd362008-01-03 10:19:15 +01001111 return 0;
Willy Tarreau24955a12009-10-04 11:54:04 +02001112 }
Willy Tarreau3e76e722007-10-17 18:57:38 +02001113
Willy Tarreaua8efd362008-01-03 10:19:15 +01001114 s->data_ctx.stats.px = px->next;
1115 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1116 }
1117 /* here, we just have reached the last proxy */
Willy Tarreau3e76e722007-10-17 18:57:38 +02001118 }
Willy Tarreau3e76e722007-10-17 18:57:38 +02001119
1120 s->data_state = DATA_ST_END;
1121 /* fall through */
1122
1123 case DATA_ST_END:
1124 s->data_state = DATA_ST_FIN;
Willy Tarreau0a464892008-12-07 18:30:00 +01001125 /* fall through */
Willy Tarreau3e76e722007-10-17 18:57:38 +02001126
1127 case DATA_ST_FIN:
1128 return 1;
1129
1130 default:
1131 /* unknown state ! */
Willy Tarreau24955a12009-10-04 11:54:04 +02001132 s->data_state = DATA_ST_FIN;
1133 return 1;
Willy Tarreau3e76e722007-10-17 18:57:38 +02001134 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001135}
1136
1137
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001138/* This I/O handler runs as an applet embedded in a stream interface. It is
1139 * used to send HTTP stats over a TCP socket. The mechanism is very simple.
1140 * si->st0 becomes non-zero once the transfer is finished. The handler
1141 * automatically unregisters itself once transfer is complete.
1142 */
1143void http_stats_io_handler(struct stream_interface *si)
1144{
1145 struct session *s = si->private;
1146 struct buffer *req = si->ob;
1147 struct buffer *res = si->ib;
1148
1149 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
1150 goto out;
1151
1152 /* check that the output is not closed */
1153 if (res->flags & (BF_SHUTW|BF_SHUTW_NOW))
1154 si->st0 = 1;
1155
1156 if (!si->st0) {
1157 if (stats_dump_http(s, res, s->be->uri_auth)) {
1158 si->st0 = 1;
1159 si->shutw(si);
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001160 }
1161 }
1162
1163 if ((res->flags & BF_SHUTR) && (si->state == SI_ST_EST))
1164 si->shutw(si);
1165
1166 if ((req->flags & BF_SHUTW) && (si->state == SI_ST_EST) && si->st0) {
1167 si->shutr(si);
1168 res->flags |= BF_READ_NULL;
1169 }
1170
1171 /* update all other flags and resync with the other side */
1172 si->update(si);
1173
1174 /* we don't want to expire timeouts while we're processing requests */
1175 si->ib->rex = TICK_ETERNITY;
1176 si->ob->wex = TICK_ETERNITY;
1177
1178 out:
1179 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) {
1180 /* check that we have released everything then unregister */
1181 stream_int_unregister_handler(si);
1182 }
1183}
1184
1185
Willy Tarreau3e76e722007-10-17 18:57:38 +02001186/*
1187 * Produces statistics data for the session <s>. Expects to be called with
Willy Tarreau1ae3a052008-08-16 10:56:30 +02001188 * client socket shut down on input. It stops by itself by unsetting the
Willy Tarreau72b179a2008-08-28 16:01:32 +02001189 * BF_HIJACK flag from the buffer, which it uses to keep on being called
Willy Tarreau1ae3a052008-08-16 10:56:30 +02001190 * when there is free space in the buffer, of simply by letting an empty buffer
1191 * upon return.s->data_ctx must have been zeroed before the first call, and the
1192 * flags set. It returns 0 if it had to stop writing data and an I/O is needed,
1193 * 1 if the dump is finished and the session must be closed, or -1 in case of
1194 * any error.
Willy Tarreau91861262007-10-17 17:06:05 +02001195 */
Willy Tarreau0a464892008-12-07 18:30:00 +01001196int stats_dump_http(struct session *s, struct buffer *rep, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02001197{
Willy Tarreau91861262007-10-17 17:06:05 +02001198 struct proxy *px;
1199 struct chunk msg;
1200 unsigned int up;
1201
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001202 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +02001203
1204 switch (s->data_state) {
1205 case DATA_ST_INIT:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001206 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001207 "HTTP/1.0 200 OK\r\n"
1208 "Cache-Control: no-cache\r\n"
1209 "Connection: close\r\n"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001210 "Content-Type: %s\r\n",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001211 (s->data_ctx.stats.flags & STAT_FMT_CSV) ? "text/plain" : "text/html");
Willy Tarreau91861262007-10-17 17:06:05 +02001212
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001213 if (uri->refresh > 0 && !(s->data_ctx.stats.flags & STAT_NO_REFRESH))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001214 chunk_printf(&msg, "Refresh: %d\r\n",
Willy Tarreau91861262007-10-17 17:06:05 +02001215 uri->refresh);
1216
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001217 chunk_printf(&msg, "\r\n");
Willy Tarreau91861262007-10-17 17:06:05 +02001218
1219 s->txn.status = 200;
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001220 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau56a560a2009-09-22 19:27:35 +02001221 return 0;
1222
Willy Tarreau91861262007-10-17 17:06:05 +02001223 if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is
1224 s->flags |= SN_ERR_PRXCOND; // to mark that it comes from the proxy
1225 if (!(s->flags & SN_FINST_MASK))
1226 s->flags |= SN_FINST_R;
1227
1228 if (s->txn.meth == HTTP_METH_HEAD) {
1229 /* that's all we return in case of HEAD request */
1230 s->data_state = DATA_ST_FIN;
Willy Tarreau91861262007-10-17 17:06:05 +02001231 return 1;
1232 }
1233
1234 s->data_state = DATA_ST_HEAD; /* let's start producing data */
1235 /* fall through */
1236
1237 case DATA_ST_HEAD:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001238 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01001239 /* WARNING! This must fit in the first buffer !!! */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001240 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001241 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n"
1242 "\"http://www.w3.org/TR/html4/loose.dtd\">\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001243 "<html><head><title>Statistics Report for " PRODUCT_NAME "%s%s</title>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001244 "<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\n"
1245 "<style type=\"text/css\"><!--\n"
1246 "body {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +02001247 " font-family: arial, helvetica, sans-serif;"
Willy Tarreau91861262007-10-17 17:06:05 +02001248 " font-size: 12px;"
1249 " font-weight: normal;"
1250 " color: black;"
1251 " background: white;"
1252 "}\n"
1253 "th,td {"
Willy Tarreaua94f2d22009-05-10 20:08:10 +02001254 " font-size: 10px;"
Willy Tarreau91861262007-10-17 17:06:05 +02001255 "}\n"
1256 "h1 {"
Willy Tarreauda6721b2009-07-15 10:07:05 +02001257 " font-size: x-large;"
Willy Tarreau91861262007-10-17 17:06:05 +02001258 " margin-bottom: 0.5em;"
1259 "}\n"
1260 "h2 {"
1261 " font-family: helvetica, arial;"
1262 " font-size: x-large;"
1263 " font-weight: bold;"
1264 " font-style: italic;"
1265 " color: #6020a0;"
1266 " margin-top: 0em;"
1267 " margin-bottom: 0em;"
1268 "}\n"
1269 "h3 {"
1270 " font-family: helvetica, arial;"
1271 " font-size: 16px;"
1272 " font-weight: bold;"
1273 " color: #b00040;"
1274 " background: #e8e8d0;"
1275 " margin-top: 0em;"
1276 " margin-bottom: 0em;"
1277 "}\n"
1278 "li {"
1279 " margin-top: 0.25em;"
1280 " margin-right: 2em;"
1281 "}\n"
1282 ".hr {margin-top: 0.25em;"
1283 " border-color: black;"
1284 " border-bottom-style: solid;"
1285 "}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001286 ".titre {background: #20D0D0;color: #000000; font-weight: bold; text-align: center;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001287 ".total {background: #20D0D0;color: #ffff80;}\n"
1288 ".frontend {background: #e8e8d0;}\n"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001289 ".socket {background: #d0d0d0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001290 ".backend {background: #e8e8d0;}\n"
1291 ".active0 {background: #ff9090;}\n"
1292 ".active1 {background: #ffd020;}\n"
1293 ".active2 {background: #ffffa0;}\n"
1294 ".active3 {background: #c0ffc0;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001295 ".active4 {background: #ffffa0;}\n" /* NOLB state shows same as going down */
1296 ".active5 {background: #a0e0a0;}\n" /* NOLB state shows darker than up */
1297 ".active6 {background: #e0e0e0;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001298 ".backup0 {background: #ff9090;}\n"
1299 ".backup1 {background: #ff80ff;}\n"
1300 ".backup2 {background: #c060ff;}\n"
1301 ".backup3 {background: #b0d0ff;}\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001302 ".backup4 {background: #c060ff;}\n" /* NOLB state shows same as going down */
1303 ".backup5 {background: #90b0e0;}\n" /* NOLB state shows same as going down */
1304 ".backup6 {background: #e0e0e0;}\n"
Cyril Bontécd19e512010-01-31 22:34:03 +01001305 ".maintain {background: #c07820;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +02001306 ".rls {letter-spacing: 0.2em; margin-right: 1px;}\n" /* right letter spacing (used for grouping digits) */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001307 "\n"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001308 "a.px:link {color: #ffff40; text-decoration: none;}"
1309 "a.px:visited {color: #ffff40; text-decoration: none;}"
1310 "a.px:hover {color: #ffffff; text-decoration: none;}"
1311 "a.lfsb:link {color: #000000; text-decoration: none;}"
1312 "a.lfsb:visited {color: #000000; text-decoration: none;}"
1313 "a.lfsb:hover {color: #505050; text-decoration: none;}"
1314 "\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001315 "table.tbl { border-collapse: collapse; border-style: none;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001316 "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"
1317 "table.tbl td.ac { text-align: center;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001318 "table.tbl th { border-width: 1px; border-style: solid solid solid solid; border-color: gray;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001319 "table.tbl th.pxname { background: #b00040; color: #ffff40; font-weight: bold; border-style: solid solid none solid; padding: 2px 3px; white-space: nowrap;}\n"
Willy Tarreauda6721b2009-07-15 10:07:05 +02001320 "table.tbl th.empty { border-style: none; empty-cells: hide; background: white;}\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001321 "table.tbl th.desc { background: white; border-style: solid solid none solid; text-align: left; padding: 2px 3px;}\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001322 "\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001323 "table.lgd { border-collapse: collapse; border-width: 1px; border-style: none none none solid; border-color: black;}\n"
1324 "table.lgd td { border-width: 1px; border-style: solid solid solid solid; border-color: gray; padding: 2px;}\n"
1325 "table.lgd td.noborder { border-style: none; padding: 2px; white-space: nowrap;}\n"
Willy Tarreaue0454092010-02-26 12:29:07 +01001326 "u {text-decoration:none; border-bottom: 1px dotted black;}\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001327 "-->\n"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001328 "</style></head>\n",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001329 (uri->flags&ST_SHNODE) ? " on " : "",
1330 (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : ""
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02001331 );
Willy Tarreau55bb8452007-10-17 18:44:57 +02001332 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001333 print_csv_header(&msg);
Willy Tarreau55bb8452007-10-17 18:44:57 +02001334 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001335 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001336 return 0;
1337
1338 s->data_state = DATA_ST_INFO;
1339 /* fall through */
1340
1341 case DATA_ST_INFO:
1342 up = (now.tv_sec - start_date.tv_sec);
1343
1344 /* WARNING! this has to fit the first packet too.
1345 * We are around 3.5 kB, add adding entries will
1346 * become tricky if we want to support 4kB buffers !
1347 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001348 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001349 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001350 "<body><h1><a href=\"" PRODUCT_URL "\" style=\"text-decoration: none;\">"
1351 PRODUCT_NAME "%s</a></h1>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001352 "<h2>Statistics Report for pid %d%s%s%s%s</h2>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001353 "<hr width=\"100%%\" class=\"hr\">\n"
1354 "<h3>&gt; General process information</h3>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001355 "<table border=0><tr><td align=\"left\" nowrap width=\"1%%\">\n"
Willy Tarreaua8efd362008-01-03 10:19:15 +01001356 "<p><b>pid = </b> %d (process #%d, nbproc = %d)<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001357 "<b>uptime = </b> %dd %dh%02dm%02ds<br>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001358 "<b>system limits:</b> memmax = %s%s; ulimit-n = %d<br>\n"
1359 "<b>maxsock = </b> %d; <b>maxconn = </b> %d; <b>maxpipes = </b> %d<br>\n"
1360 "current conns = %d; current pipes = %d/%d<br>\n"
1361 "Running tasks: %d/%d<br>\n"
Willy Tarreau91861262007-10-17 17:06:05 +02001362 "</td><td align=\"center\" nowrap>\n"
1363 "<table class=\"lgd\"><tr>\n"
1364 "<td class=\"active3\">&nbsp;</td><td class=\"noborder\">active UP </td>"
1365 "<td class=\"backup3\">&nbsp;</td><td class=\"noborder\">backup UP </td>"
1366 "</tr><tr>\n"
1367 "<td class=\"active2\"></td><td class=\"noborder\">active UP, going down </td>"
1368 "<td class=\"backup2\"></td><td class=\"noborder\">backup UP, going down </td>"
1369 "</tr><tr>\n"
1370 "<td class=\"active1\"></td><td class=\"noborder\">active DOWN, going up </td>"
1371 "<td class=\"backup1\"></td><td class=\"noborder\">backup DOWN, going up </td>"
1372 "</tr><tr>\n"
1373 "<td class=\"active0\"></td><td class=\"noborder\">active or backup DOWN &nbsp;</td>"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001374 "<td class=\"active6\"></td><td class=\"noborder\">not checked </td>"
Cyril Bontécd19e512010-01-31 22:34:03 +01001375 "</tr><tr>\n"
1376 "<td class=\"maintain\"></td><td class=\"noborder\" colspan=\"3\">active or backup DOWN for maintenance (MAINT) &nbsp;</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001377 "</tr></table>\n"
Willy Tarreau2ea81932007-11-30 12:04:38 +01001378 "Note: UP with load-balancing disabled is reported as \"NOLB\"."
Willy Tarreau91861262007-10-17 17:06:05 +02001379 "</td>"
1380 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
1381 "<b>Display option:</b><ul style=\"margin-top: 0.25em;\">"
1382 "",
1383 (uri->flags&ST_HIDEVER)?"":(STATS_VERSION_STRING),
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001384 pid, (uri->flags&ST_SHNODE) ? " on " : "", (uri->flags&ST_SHNODE) ? (uri->node ? uri->node : global.node) : "",
1385 (uri->flags&ST_SHDESC)? ": " : "", (uri->flags&ST_SHDESC) ? (uri->desc ? uri->desc : global.desc) : "",
1386 pid, relative_pid, global.nbproc,
Willy Tarreau91861262007-10-17 17:06:05 +02001387 up / 86400, (up % 86400) / 3600,
1388 (up % 3600) / 60, (up % 60),
1389 global.rlimit_memmax ? ultoa(global.rlimit_memmax) : "unlimited",
1390 global.rlimit_memmax ? " MB" : "",
1391 global.rlimit_nofile,
Willy Tarreaua206fa92009-01-25 14:02:00 +01001392 global.maxsock, global.maxconn, global.maxpipes,
Willy Tarreauc7bdf092009-03-21 18:33:52 +01001393 actconn, pipes_used, pipes_used+pipes_free,
1394 run_queue_cur, nb_tasks_cur
Willy Tarreau91861262007-10-17 17:06:05 +02001395 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001396
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001397 if (s->data_ctx.stats.flags & STAT_HIDE_DOWN)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001398 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001399 "<li><a href=\"%s%s%s\">Show all servers</a><br>\n",
1400 uri->uri_prefix,
1401 "",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001402 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001403 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001404 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001405 "<li><a href=\"%s%s%s\">Hide 'DOWN' servers</a><br>\n",
1406 uri->uri_prefix,
1407 ";up",
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001408 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +02001409
Willy Tarreau55bb8452007-10-17 18:44:57 +02001410 if (uri->refresh > 0) {
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001411 if (s->data_ctx.stats.flags & STAT_NO_REFRESH)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001412 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001413 "<li><a href=\"%s%s%s\">Enable refresh</a><br>\n",
1414 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001415 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +02001416 "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001417 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001418 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001419 "<li><a href=\"%s%s%s\">Disable refresh</a><br>\n",
1420 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001421 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
Willy Tarreau91861262007-10-17 17:06:05 +02001422 ";norefresh");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001423 }
Willy Tarreau91861262007-10-17 17:06:05 +02001424
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001425 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001426 "<li><a href=\"%s%s%s\">Refresh now</a><br>\n",
1427 uri->uri_prefix,
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001428 (s->data_ctx.stats.flags & STAT_HIDE_DOWN) ? ";up" : "",
1429 (s->data_ctx.stats.flags & STAT_NO_REFRESH) ? ";norefresh" : "");
Willy Tarreau91861262007-10-17 17:06:05 +02001430
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001431 chunk_printf(&msg,
Willy Tarreau5031e6a2007-10-18 11:05:48 +02001432 "<li><a href=\"%s;csv%s\">CSV export</a><br>\n",
1433 uri->uri_prefix,
1434 (uri->refresh > 0) ? ";norefresh" : "");
1435
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001436 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001437 "</ul></td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001438 "<td align=\"left\" valign=\"top\" nowrap width=\"1%%\">"
1439 "<b>External ressources:</b><ul style=\"margin-top: 0.25em;\">\n"
1440 "<li><a href=\"" PRODUCT_URL "\">Primary site</a><br>\n"
1441 "<li><a href=\"" PRODUCT_URL_UPD "\">Updates (v" PRODUCT_BRANCH ")</a><br>\n"
1442 "<li><a href=\"" PRODUCT_URL_DOC "\">Online manual</a><br>\n"
1443 "</ul>"
1444 "</td>"
1445 "</tr></table>\n"
1446 ""
1447 );
Willy Tarreaub1356cf2008-12-07 16:06:43 +01001448
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001449 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001450 return 0;
1451 }
Willy Tarreau91861262007-10-17 17:06:05 +02001452
Willy Tarreau91861262007-10-17 17:06:05 +02001453 s->data_ctx.stats.px = proxy;
1454 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1455 s->data_state = DATA_ST_LIST;
1456 /* fall through */
1457
1458 case DATA_ST_LIST:
1459 /* dump proxies */
1460 while (s->data_ctx.stats.px) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001461 if (buffer_almost_full(rep))
1462 return 0;
Willy Tarreau91861262007-10-17 17:06:05 +02001463 px = s->data_ctx.stats.px;
1464 /* skip the disabled proxies and non-networked ones */
1465 if (px->state != PR_STSTOPPED && (px->cap & (PR_CAP_FE | PR_CAP_BE)))
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001466 if (stats_dump_proxy(s, px, uri) == 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001467 return 0;
1468
1469 s->data_ctx.stats.px = px->next;
1470 s->data_ctx.stats.px_st = DATA_ST_PX_INIT;
1471 }
1472 /* here, we just have reached the last proxy */
1473
1474 s->data_state = DATA_ST_END;
1475 /* fall through */
1476
1477 case DATA_ST_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001478 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001479 chunk_printf(&msg, "</body></html>\n");
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001480 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001481 return 0;
1482 }
Willy Tarreau91861262007-10-17 17:06:05 +02001483
1484 s->data_state = DATA_ST_FIN;
1485 /* fall through */
1486
1487 case DATA_ST_FIN:
Willy Tarreau91861262007-10-17 17:06:05 +02001488 return 1;
1489
1490 default:
1491 /* unknown state ! */
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001492 s->data_state = DATA_ST_FIN;
Willy Tarreau91861262007-10-17 17:06:05 +02001493 return -1;
1494 }
1495}
1496
1497
1498/*
1499 * Dumps statistics for a proxy.
1500 * Returns 0 if it had to stop dumping data because of lack of buffer space,
1501 * ot non-zero if everything completed.
1502 */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001503int stats_dump_proxy(struct session *s, struct proxy *px, struct uri_auth *uri)
Willy Tarreau91861262007-10-17 17:06:05 +02001504{
1505 struct buffer *rep = s->rep;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001506 struct server *sv, *svs; /* server and server-state, server-state=server or server->tracked */
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001507 struct listener *l;
Willy Tarreau91861262007-10-17 17:06:05 +02001508 struct chunk msg;
1509
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001510 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau91861262007-10-17 17:06:05 +02001511
1512 switch (s->data_ctx.stats.px_st) {
1513 case DATA_ST_PX_INIT:
1514 /* we are on a new proxy */
1515
1516 if (uri && uri->scope) {
1517 /* we have a limited scope, we have to check the proxy name */
1518 struct stat_scope *scope;
1519 int len;
1520
1521 len = strlen(px->id);
1522 scope = uri->scope;
1523
1524 while (scope) {
1525 /* match exact proxy name */
1526 if (scope->px_len == len && !memcmp(px->id, scope->px_id, len))
1527 break;
1528
1529 /* match '.' which means 'self' proxy */
Willy Tarreau1388a3a2007-10-18 16:38:37 +02001530 if (!strcmp(scope->px_id, ".") && px == s->be)
Willy Tarreau91861262007-10-17 17:06:05 +02001531 break;
1532 scope = scope->next;
1533 }
1534
1535 /* proxy name not found : don't dump anything */
1536 if (scope == NULL)
1537 return 1;
1538 }
1539
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001540 if ((s->data_ctx.stats.flags & STAT_BOUND) && (s->data_ctx.stats.iid != -1) &&
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001541 (px->uuid != s->data_ctx.stats.iid))
1542 return 1;
1543
Willy Tarreau91861262007-10-17 17:06:05 +02001544 s->data_ctx.stats.px_st = DATA_ST_PX_TH;
1545 /* fall through */
1546
1547 case DATA_ST_PX_TH:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001548 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau55bb8452007-10-17 18:44:57 +02001549 /* print a new table */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001550 chunk_printf(&msg,
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001551 "<table class=\"tbl\" width=\"100%%\">\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001552 "<tr class=\"titre\">"
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001553 "<th class=\"pxname\" width=\"10%%\"");
1554
1555 if (uri->flags&ST_SHLGNDS) {
1556 /* cap, mode, id */
1557 chunk_printf(&msg, " title=\"cap: %s, mode: %s, id: %d",
1558 proxy_cap_str(px->cap), proxy_mode_str(px->mode),
1559 px->uuid);
1560
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001561 chunk_printf(&msg, "\"");
1562 }
1563
1564 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01001565 ">%s<a name=\"%s\"></a>"
1566 "<a class=px href=\"#%s\">%s</a>%s</th>"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001567 "<th class=\"%s\" width=\"90%%\">%s</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001568 "</tr>\n"
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001569 "</table>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001570 "<table class=\"tbl\" width=\"100%%\">\n"
1571 "<tr class=\"titre\">"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001572 "<th rowspan=2></th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001573 "<th colspan=3>Queue</th>"
1574 "<th colspan=3>Session rate</th><th colspan=5>Sessions</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001575 "<th colspan=2>Bytes</th><th colspan=2>Denied</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001576 "<th colspan=3>Errors</th><th colspan=2>Warnings</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001577 "<th colspan=9>Server</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001578 "</tr>\n"
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001579 "<tr class=\"titre\">"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001580 "<th>Cur</th><th>Max</th><th>Limit</th>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001581 "<th>Cur</th><th>Max</th><th>Limit</th><th>Cur</th><th>Max</th>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001582 "<th>Limit</th><th>Total</th><th>LbTot</th><th>In</th><th>Out</th>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001583 "<th>Req</th><th>Resp</th><th>Req</th><th>Conn</th>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001584 "<th>Resp</th><th>Retr</th><th>Redis</th>"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001585 "<th>Status</th><th>LastChk</th><th>Wght</th><th>Act</th>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01001586 "<th>Bck</th><th>Chk</th><th>Dwn</th><th>Dwntme</th>"
1587 "<th>Thrtle</th>\n"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02001588 "</tr>",
Willy Tarreaue0454092010-02-26 12:29:07 +01001589 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001590 px->id, px->id, px->id,
Willy Tarreaue0454092010-02-26 12:29:07 +01001591 (uri->flags & ST_SHLGNDS)?"</u>":"",
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001592 px->desc ? "desc" : "empty", px->desc ? px->desc : "");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001593
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001594 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02001595 return 0;
1596 }
Willy Tarreau91861262007-10-17 17:06:05 +02001597
1598 s->data_ctx.stats.px_st = DATA_ST_PX_FE;
1599 /* fall through */
1600
1601 case DATA_ST_PX_FE:
1602 /* print the frontend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001603 if ((px->cap & PR_CAP_FE) &&
1604 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_FE)))) {
1605 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001606 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001607 /* name, queue */
Krzysztof Piotr Oledzki516ed492009-10-22 22:48:09 +02001608 "<tr class=\"frontend\"><td class=ac>"
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02001609 "<a name=\"%s/Frontend\"></a>"
1610 "<a class=lfsb href=\"#%s/Frontend\">Frontend</a></td><td colspan=3></td>"
Willy Tarreaub44939a2010-02-26 11:35:39 +01001611 "",
1612 px->id, px->id);
1613
1614 if (px->mode == PR_MODE_HTTP) {
1615 chunk_printf(&msg,
1616 /* sessions rate : current, max, limit */
Willy Tarreaue0454092010-02-26 12:29:07 +01001617 "<td title=\"Cur: %u req/s\"><u>%s</u></td><td title=\"Max: %u req/s\"><u>%s</u></td><td>%s</td>"
Willy Tarreaub44939a2010-02-26 11:35:39 +01001618 "",
1619 read_freq_ctr(&px->fe_req_per_sec),
1620 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
1621 px->counters.fe_rps_max,
Cyril Bonté4d179eb2010-07-23 18:59:11 +02001622 U2H1(px->counters.fe_sps_max),
Willy Tarreaub44939a2010-02-26 11:35:39 +01001623 LIM2A2(px->fe_sps_lim, "-"));
1624 } else {
1625 chunk_printf(&msg,
1626 /* sessions rate : current, max, limit */
1627 "<td>%s</td><td>%s</td><td>%s</td>"
1628 "",
1629 U2H0(read_freq_ctr(&px->fe_sess_per_sec)),
1630 U2H1(px->counters.fe_sps_max), LIM2A2(px->fe_sps_lim, "-"));
1631 }
1632
1633 chunk_printf(&msg,
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001634 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001635 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001636 "<td"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001637 "",
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001638 U2H3(px->feconn), U2H4(px->counters.feconn_max), U2H5(px->maxconn));
1639
1640 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
1641 if (px->mode == PR_MODE_HTTP) {
1642 int i;
1643
Willy Tarreaub44939a2010-02-26 11:35:39 +01001644 chunk_printf(&msg, " title=\"%lld requests:", px->counters.cum_fe_req);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001645
1646 for (i = 1; i < 6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01001647 chunk_printf(&msg, " %dxx=%lld,", i, px->counters.fe.http.rsp[i]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001648
Willy Tarreau24657792010-02-26 10:30:28 +01001649 chunk_printf(&msg, " other=%lld\"", px->counters.fe.http.rsp[0]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001650 }
1651
1652 chunk_printf(&msg,
1653 /* sessions: total, lbtot */
Willy Tarreaue0454092010-02-26 12:29:07 +01001654 ">%s%s%s</td><td></td>"
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001655 /* bytes : in, out */
1656 "<td>%s</td><td>%s</td>"
1657 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01001658 (px->mode == PR_MODE_HTTP)?"<u>":"",
Willy Tarreaub36b4242010-06-04 20:59:39 +02001659 U2H6(px->counters.cum_fesess),
Willy Tarreaue0454092010-02-26 12:29:07 +01001660 (px->mode == PR_MODE_HTTP)?"</u>":"",
1661 U2H7(px->counters.bytes_in), U2H8(px->counters.bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001662
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001663 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02001664 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001665 "<td>%s</td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001666 /* errors : request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001667 "<td>%s</td><td></td><td></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001668 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001669 "<td></td><td></td>"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001670 /* server status : reflect frontend status */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001671 "<td class=ac>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02001672 /* rest of server: nothing */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001673 "<td class=ac colspan=8></td></tr>"
Willy Tarreau91861262007-10-17 17:06:05 +02001674 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001675 U2H0(px->counters.denied_req), U2H1(px->counters.denied_resp),
1676 U2H2(px->counters.failed_req),
Willy Tarreau91861262007-10-17 17:06:05 +02001677 px->state == PR_STRUN ? "OPEN" :
1678 px->state == PR_STIDLE ? "FULL" : "STOP");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001679 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001680 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001681 /* pxid, name, queue cur, queue max, */
1682 "%s,FRONTEND,,,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01001683 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001684 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001685 /* bytes : in, out */
1686 "%lld,%lld,"
1687 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001688 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001689 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02001690 "%lld,,,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02001691 /* warnings: retries, redispatches */
1692 ",,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02001693 /* server status : reflect frontend status */
1694 "%s,"
1695 /* rest of server: nothing */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001696 ",,,,,,,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001697 /* pid, iid, sid, throttle, lbtot, tracked, type */
1698 "%d,%d,0,,,,%d,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001699 /* rate, rate_lim, rate_max */
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001700 "%u,%u,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02001701 /* check_status, check_code, check_duration */
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001702 ",,,",
Willy Tarreau55bb8452007-10-17 18:44:57 +02001703 px->id,
Willy Tarreaub36b4242010-06-04 20:59:39 +02001704 px->feconn, px->counters.feconn_max, px->maxconn, px->counters.cum_fesess,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02001705 px->counters.bytes_in, px->counters.bytes_out,
1706 px->counters.denied_req, px->counters.denied_resp,
1707 px->counters.failed_req,
Willy Tarreau55bb8452007-10-17 18:44:57 +02001708 px->state == PR_STRUN ? "OPEN" :
Willy Tarreaudcd47712007-11-04 23:35:08 +01001709 px->state == PR_STIDLE ? "FULL" : "STOP",
Willy Tarreau7f062c42009-03-05 18:43:00 +01001710 relative_pid, px->uuid, STATS_TYPE_FE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02001711 read_freq_ctr(&px->fe_sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001712 px->fe_sps_lim, px->counters.fe_sps_max);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001713
1714 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1715 if (px->mode == PR_MODE_HTTP) {
1716 int i;
1717
1718 for (i=1; i<6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01001719 chunk_printf(&msg, "%lld,", px->counters.fe.http.rsp[i]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001720
Willy Tarreau24657792010-02-26 10:30:28 +01001721 chunk_printf(&msg, "%lld,", px->counters.fe.http.rsp[0]);
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001722 } else {
1723 chunk_printf(&msg, ",,,,,,");
1724 }
1725
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001726 /* failed health analyses */
1727 chunk_printf(&msg, ",");
1728
Willy Tarreaud9b587f2010-02-26 10:05:55 +01001729 /* requests : req_rate, req_rate_max, req_tot, */
1730 chunk_printf(&msg, "%u,%u,%lld,",
1731 read_freq_ctr(&px->fe_req_per_sec),
1732 px->counters.fe_rps_max, px->counters.cum_fe_req);
1733
Willy Tarreauae526782010-03-04 20:34:23 +01001734 /* errors: cli_aborts, srv_aborts */
1735 chunk_printf(&msg, ",,");
1736
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02001737 /* finish with EOL */
1738 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02001739 }
Willy Tarreau91861262007-10-17 17:06:05 +02001740
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02001741 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02001742 return 0;
1743 }
1744
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001745 s->data_ctx.stats.l = px->listen; /* may be NULL */
1746 s->data_ctx.stats.px_st = DATA_ST_PX_LI;
1747 /* fall through */
1748
1749 case DATA_ST_PX_LI:
1750 /* stats.l has been initialized above */
1751 for (; s->data_ctx.stats.l != NULL; s->data_ctx.stats.l = l->next) {
Willy Tarreau4e33d862009-10-11 23:35:10 +02001752 if (buffer_almost_full(rep))
1753 return 0;
1754
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001755 l = s->data_ctx.stats.l;
1756 if (!l->counters)
1757 continue;
1758
1759 if (s->data_ctx.stats.flags & STAT_BOUND) {
1760 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SO)))
1761 break;
1762
1763 if (s->data_ctx.stats.sid != -1 && l->luid != s->data_ctx.stats.sid)
1764 continue;
1765 }
1766
1767 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001768 chunk_printf(&msg, "<tr class=socket><td class=ac");
1769
1770 if (uri->flags&ST_SHLGNDS) {
1771 char str[INET6_ADDRSTRLEN], *fmt = NULL;
1772 int port;
1773
1774 chunk_printf(&msg, " title=\"IP: ");
1775
1776 port = (l->addr.ss_family == AF_INET6)
1777 ? ntohs(((struct sockaddr_in6 *)(&l->addr))->sin6_port)
1778 : ntohs(((struct sockaddr_in *)(&l->addr))->sin_port);
1779
1780 if (l->addr.ss_family == AF_INET) {
1781 if (inet_ntop(AF_INET,
1782 (const void *)&((struct sockaddr_in *)&l->addr)->sin_addr,
1783 str, sizeof(str)))
1784 fmt = "%s:%d";
1785 } else {
1786 if (inet_ntop(AF_INET6,
1787 (const void *)&((struct sockaddr_in6 *)(&l->addr))->sin6_addr,
1788 str, sizeof(str)))
1789 fmt = "[%s]:%d";
1790 }
1791
1792 if (fmt)
1793 chunk_printf(&msg, fmt, str, port);
1794 else
1795 chunk_printf(&msg, "(%s)", strerror(errno));
1796
1797 /* id */
1798 chunk_printf(&msg, ", id: %d", l->luid);
1799
1800 chunk_printf(&msg, "\"");
1801 }
1802
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001803 chunk_printf(&msg,
1804 /* name, queue */
Willy Tarreaue0454092010-02-26 12:29:07 +01001805 ">%s<a name=\"%s/+%s\"></a>"
1806 "<a class=lfsb href=\"#%s/+%s\">%s</a></td><td colspan=3>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001807 /* sessions rate: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001808 "<td colspan=3>&nbsp;</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001809 /* sessions: current, max, limit, total, lbtot */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001810 "<td>%s</td><td>%s</td><td>%s</td>"
1811 "<td>%s</td><td>&nbsp;</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001812 /* bytes: in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001813 "<td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001814 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01001815 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki2ec025d2010-01-04 11:33:32 +01001816 px->id, l->name, px->id, l->name, l->name,
Willy Tarreaue0454092010-02-26 12:29:07 +01001817 (uri->flags & ST_SHLGNDS)?"</u>":"",
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001818 U2H3(l->nbconn), U2H4(l->counters->conn_max), U2H5(l->maxconn),
1819 U2H6(l->counters->cum_conn), U2H7(l->counters->bytes_in), U2H8(l->counters->bytes_out));
1820
1821 chunk_printf(&msg,
1822 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001823 "<td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001824 /* errors: request, connect, response */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001825 "<td>%s</td><td></td><td></td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001826 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001827 "<td></td><td></td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001828 /* server status: reflect listener status */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001829 "<td class=ac>%s</td>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001830 /* rest of server: nothing */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001831 "<td class=ac colspan=8></td></tr>"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001832 "",
1833 U2H0(l->counters->denied_req), U2H1(l->counters->denied_resp),
1834 U2H2(l->counters->failed_req),
1835 (l->nbconn < l->maxconn) ? "OPEN" : "FULL");
1836 } else {
1837 chunk_printf(&msg,
1838 /* pxid, name, queue cur, queue max, */
1839 "%s,%s,,,"
1840 /* sessions: current, max, limit, total */
1841 "%d,%d,%d,%lld,"
1842 /* bytes: in, out */
1843 "%lld,%lld,"
1844 /* denied: req, resp */
1845 "%lld,%lld,"
1846 /* errors: request, connect, response */
1847 "%lld,,,"
1848 /* warnings: retries, redispatches */
1849 ",,"
1850 /* server status: reflect listener status */
1851 "%s,"
1852 /* rest of server: nothing */
1853 ",,,,,,,,"
1854 /* pid, iid, sid, throttle, lbtot, tracked, type */
1855 "%d,%d,%d,,,,%d,"
1856 /* rate, rate_lim, rate_max */
1857 ",,,"
1858 /* check_status, check_code, check_duration */
1859 ",,,"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001860 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
1861 ",,,,,,"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01001862 /* failed health analyses */
1863 ","
Willy Tarreaud9b587f2010-02-26 10:05:55 +01001864 /* requests : req_rate, req_rate_max, req_tot, */
1865 ",,,"
Willy Tarreauae526782010-03-04 20:34:23 +01001866 /* errors: cli_aborts, srv_aborts */
1867 ",,"
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001868 "\n",
1869 px->id, l->name,
1870 l->nbconn, l->counters->conn_max,
1871 l->maxconn, l->counters->cum_conn,
1872 l->counters->bytes_in, l->counters->bytes_out,
1873 l->counters->denied_req, l->counters->denied_resp,
1874 l->counters->failed_req,
1875 (l->nbconn < l->maxconn) ? "OPEN" : "FULL",
1876 relative_pid, px->uuid, l->luid, STATS_TYPE_SO);
1877 }
1878
1879 if (buffer_feed_chunk(rep, &msg) >= 0)
1880 return 0;
1881 }
1882
Willy Tarreau91861262007-10-17 17:06:05 +02001883 s->data_ctx.stats.sv = px->srv; /* may be NULL */
1884 s->data_ctx.stats.px_st = DATA_ST_PX_SV;
1885 /* fall through */
1886
1887 case DATA_ST_PX_SV:
1888 /* stats.sv has been initialized above */
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001889 for (; s->data_ctx.stats.sv != NULL; s->data_ctx.stats.sv = sv->next) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001890 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 +02001891
Willy Tarreau4e33d862009-10-11 23:35:10 +02001892 if (buffer_almost_full(rep))
1893 return 0;
1894
Willy Tarreau91861262007-10-17 17:06:05 +02001895 sv = s->data_ctx.stats.sv;
1896
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001897 if (s->data_ctx.stats.flags & STAT_BOUND) {
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01001898 if (!(s->data_ctx.stats.type & (1 << STATS_TYPE_SV)))
1899 break;
1900
1901 if (s->data_ctx.stats.sid != -1 && sv->puid != s->data_ctx.stats.sid)
1902 continue;
1903 }
1904
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001905 if (sv->tracked)
1906 svs = sv->tracked;
1907 else
1908 svs = sv;
1909
Willy Tarreau91861262007-10-17 17:06:05 +02001910 /* FIXME: produce some small strings for "UP/DOWN x/y &#xxxx;" */
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001911 if (!(svs->state & SRV_CHECKED))
Willy Tarreau2ea81932007-11-30 12:04:38 +01001912 sv_state = 6;
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001913 else if (svs->state & SRV_RUNNING) {
1914 if (svs->health == svs->rise + svs->fall - 1)
Willy Tarreau91861262007-10-17 17:06:05 +02001915 sv_state = 3; /* UP */
1916 else
1917 sv_state = 2; /* going down */
Willy Tarreau2ea81932007-11-30 12:04:38 +01001918
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001919 if (svs->state & SRV_GOINGDOWN)
Willy Tarreau2ea81932007-11-30 12:04:38 +01001920 sv_state += 2;
1921 }
Willy Tarreau91861262007-10-17 17:06:05 +02001922 else
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001923 if (svs->health)
Willy Tarreau91861262007-10-17 17:06:05 +02001924 sv_state = 1; /* going up */
1925 else
1926 sv_state = 0; /* DOWN */
1927
Cyril Bonté0dae5852010-02-03 00:26:28 +01001928 if (((sv_state == 0) || (sv->state & SRV_MAINTAIN)) && (s->data_ctx.stats.flags & STAT_HIDE_DOWN)) {
Willy Tarreau91861262007-10-17 17:06:05 +02001929 /* do not report servers which are DOWN */
1930 s->data_ctx.stats.sv = sv->next;
1931 continue;
1932 }
1933
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01001934 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Willy Tarreau2ea81932007-11-30 12:04:38 +01001935 static char *srv_hlt_st[7] = { "DOWN", "DN %d/%d &uarr;",
1936 "UP %d/%d &darr;", "UP",
1937 "NOLB %d/%d &darr;", "NOLB",
1938 "<i>no check</i>" };
Cyril Bonté0dae5852010-02-03 00:26:28 +01001939 if ((sv->state & SRV_MAINTAIN) || (svs->state & SRV_MAINTAIN)) {
Cyril Bontécd19e512010-01-31 22:34:03 +01001940 chunk_printf(&msg,
1941 /* name */
1942 "<tr class=\"maintain\"><td class=ac"
1943 );
1944 }
1945 else {
1946 chunk_printf(&msg,
1947 /* name */
1948 "<tr class=\"%s%d\"><td class=ac",
1949 (sv->state & SRV_BACKUP) ? "backup" : "active", sv_state);
1950 }
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001951
1952 if (uri->flags&ST_SHLGNDS) {
1953 char str[INET6_ADDRSTRLEN];
1954
1955 chunk_printf(&msg, " title=\"IP: ");
1956
1957 /* IP */
1958 if (inet_ntop(sv->addr.sin_family, &sv->addr.sin_addr, str, sizeof(str)))
1959 chunk_printf(&msg, "%s:%d", str, htons(sv->addr.sin_port));
1960 else
1961 chunk_printf(&msg, "(%s)", strerror(errno));
1962
1963 /* id */
1964 chunk_printf(&msg, ", id: %d", sv->puid);
1965
1966 /* cookie */
1967 if (sv->cookie) {
1968 struct chunk src;
1969
1970 chunk_printf(&msg, ", cookie: '");
1971
1972 chunk_initlen(&src, sv->cookie, 0, strlen(sv->cookie));
1973 chunk_htmlencode(&msg, &src);
1974
1975 chunk_printf(&msg, "'");
1976 }
1977
1978 chunk_printf(&msg, "\"");
1979 }
1980
1981 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01001982 ">%s<a name=\"%s/%s\"></a>"
1983 "<a class=lfsb href=\"#%s/%s\">%s</a>%s</td>"
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02001984 /* queue : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001985 "<td>%s</td><td>%s</td><td>%s</td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02001986 /* sessions rate : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001987 "<td>%s</td><td>%s</td><td></td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001988 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02001989 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001990 "<td"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02001991 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01001992 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01001993 px->id, sv->id, px->id, sv->id, sv->id,
Willy Tarreaue0454092010-02-26 12:29:07 +01001994 (uri->flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreauac68c5d2009-10-04 23:12:44 +02001995 U2H0(sv->nbpend), U2H1(sv->counters.nbpend_max), LIM2A2(sv->maxqueue, "-"),
1996 U2H3(read_freq_ctr(&sv->sess_per_sec)), U2H4(sv->counters.sps_max),
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02001997 U2H5(sv->cur_sess), U2H6(sv->counters.cur_sess_max), LIM2A7(sv->maxconn, "-"));
1998
1999 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2000 if (px->mode == PR_MODE_HTTP) {
2001 int i;
2002
2003 chunk_printf(&msg, " title=\"rsp codes:");
2004
2005 for (i = 1; i < 6; i++)
2006 chunk_printf(&msg, " %dxx=%lld,", i, sv->counters.p.http.rsp[i]);
2007
2008 chunk_printf(&msg, " other=%lld\"", sv->counters.p.http.rsp[0]);
2009 }
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02002010
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002011 chunk_printf(&msg,
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002012 /* sessions: total, lbtot */
Willy Tarreaue0454092010-02-26 12:29:07 +01002013 ">%s%s%s</td><td>%s</td>",
2014 (px->mode == PR_MODE_HTTP)?"<u>":"",
2015 U2H0(sv->counters.cum_sess),
2016 (px->mode == PR_MODE_HTTP)?"</u>":"",
2017 U2H1(sv->counters.cum_lbconn));
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002018
2019 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002020 /* bytes : in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002021 "<td>%s</td><td>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002022 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002023 "<td></td><td>%s</td>"
Willy Tarreauae526782010-03-04 20:34:23 +01002024 /* errors : request, connect */
2025 "<td></td><td>%s</td>"
2026 /* errors : response */
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002027 "<td title=\"Connection resets during transfers: %lld client, %lld server\"><u>%s</u></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002028 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002029 "<td>%lld</td><td>%lld</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002030 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002031 U2H0(sv->counters.bytes_in), U2H1(sv->counters.bytes_out),
2032 U2H2(sv->counters.failed_secu),
Willy Tarreauae526782010-03-04 20:34:23 +01002033 U2H3(sv->counters.failed_conns),
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002034 sv->counters.cli_aborts,
2035 sv->counters.srv_aborts,
Willy Tarreauae526782010-03-04 20:34:23 +01002036 U2H6(sv->counters.failed_resp),
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002037 sv->counters.retries, sv->counters.redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002038
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002039 /* status, lest check */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002040 chunk_printf(&msg, "<td class=ac>");
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002041
Cyril Bontécd19e512010-01-31 22:34:03 +01002042 if (sv->state & SRV_MAINTAIN) {
2043 chunk_printf(&msg, "%s ",
2044 human_time(now.tv_sec - sv->last_change, 1));
2045 chunk_printf(&msg, "MAINT");
2046 }
Cyril Bonté0dae5852010-02-03 00:26:28 +01002047 else if (svs != sv && svs->state & SRV_MAINTAIN) {
2048 chunk_printf(&msg, "%s ",
2049 human_time(now.tv_sec - svs->last_change, 1));
2050 chunk_printf(&msg, "MAINT(via)");
2051 }
Cyril Bontécd19e512010-01-31 22:34:03 +01002052 else if (svs->state & SRV_CHECKED) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002053 chunk_printf(&msg, "%s ",
Cyril Bonté0dae5852010-02-03 00:26:28 +01002054 human_time(now.tv_sec - svs->last_change, 1));
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002055
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002056 chunk_printf(&msg,
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002057 srv_hlt_st[sv_state],
2058 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
2059 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002060 }
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02002061
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002062 if (sv->state & SRV_CHECKED) {
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002063 chunk_printf(&msg, "</td><td class=ac title=\"%s",
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +02002064 get_check_status_description(sv->check_status));
2065
2066 if (*sv->check_desc) {
2067 struct chunk src;
2068
2069 chunk_printf(&msg, ": ");
2070
2071 chunk_initlen(&src, sv->check_desc, 0, strlen(sv->check_desc));
2072 chunk_htmlencode(&msg, &src);
2073 }
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002074
Willy Tarreaue0454092010-02-26 12:29:07 +01002075 chunk_printf(&msg, "\"><u> %s%s",
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002076 tv_iszero(&sv->check_start)?"":"* ",
2077 get_check_status_info(sv->check_status));
2078
2079 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002080 chunk_printf(&msg, "/%d", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002081
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002082 if (sv->check_status >= HCHK_STATUS_CHECKED && sv->check_duration >= 0)
Willy Tarreaue0454092010-02-26 12:29:07 +01002083 chunk_printf(&msg, " in %lums</u>", sv->check_duration);
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002084 } else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002085 chunk_printf(&msg, "</td><td>");
Willy Tarreau91861262007-10-17 17:06:05 +02002086
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002087 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002088 /* weight */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002089 "</td><td class=ac>%d</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002090 /* act, bck */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002091 "<td class=ac>%s</td><td class=ac>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002092 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01002093 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau91861262007-10-17 17:06:05 +02002094 (sv->state & SRV_BACKUP) ? "-" : "Y",
2095 (sv->state & SRV_BACKUP) ? "Y" : "-");
2096
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002097 /* check failures: unique, fatal, down time */
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01002098 if (sv->state & SRV_CHECKED) {
Willy Tarreaue0454092010-02-26 12:29:07 +01002099 chunk_printf(&msg, "<td title=\"Failed Health Checks%s\"><u>%lld",
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01002100 svs->observe?"/Health Analyses":"", svs->counters.failed_checks);
2101
2102 if (svs->observe)
2103 chunk_printf(&msg, "/%lld", svs->counters.failed_hana);
2104
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002105 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01002106 "</u></td>"
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002107 "<td>%lld</td><td>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002108 "",
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002109 svs->counters.down_trans, human_time(srv_downtime(sv), 1));
Krzysztof Piotr Oledzki748196e2010-01-04 00:48:43 +01002110 } else if (sv != svs)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002111 chunk_printf(&msg,
Krzysztof Piotr Oledzki88a14af2010-01-05 18:33:01 +01002112 "<td class=ac colspan=3><a class=lfsb href=\"#%s/%s\">via %s/%s<a></td>",
2113 svs->proxy->id, svs->id, svs->proxy->id, svs->id);
Willy Tarreau55bb8452007-10-17 18:44:57 +02002114 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002115 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002116 "<td colspan=3></td>");
2117
2118 /* throttle */
2119 if ((sv->state & SRV_WARMINGUP) &&
2120 now.tv_sec < sv->last_change + sv->slowstart &&
2121 now.tv_sec >= sv->last_change) {
2122 unsigned int ratio;
2123 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002124 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002125 "<td class=ac>%d %%</td></tr>\n", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002126 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002127 chunk_printf(&msg,
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002128 "<td class=ac>-</td></tr>\n");
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002129 }
Willy Tarreau55bb8452007-10-17 18:44:57 +02002130 } else {
Willy Tarreau2ea81932007-11-30 12:04:38 +01002131 static char *srv_hlt_st[7] = { "DOWN,", "DOWN %d/%d,",
2132 "UP %d/%d,", "UP,",
2133 "NOLB %d/%d,", "NOLB,",
2134 "no check," };
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002135 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002136 /* pxid, name */
2137 "%s,%s,"
2138 /* queue : current, max */
2139 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002140 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002141 "%d,%d,%s,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002142 /* bytes : in, out */
2143 "%lld,%lld,"
2144 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002145 ",%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002146 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002147 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002148 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002149 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002150 "",
2151 px->id, sv->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002152 sv->nbpend, sv->counters.nbpend_max,
2153 sv->cur_sess, sv->counters.cur_sess_max, LIM2A0(sv->maxconn, ""), sv->counters.cum_sess,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002154 sv->counters.bytes_in, sv->counters.bytes_out,
2155 sv->counters.failed_secu,
2156 sv->counters.failed_conns, sv->counters.failed_resp,
2157 sv->counters.retries, sv->counters.redispatches);
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002158
Willy Tarreau55bb8452007-10-17 18:44:57 +02002159 /* status */
Cyril Bontécd19e512010-01-31 22:34:03 +01002160 if (sv->state & SRV_MAINTAIN) {
2161 chunk_printf(&msg, "MAINT,");
Cyril Bonté0dae5852010-02-03 00:26:28 +01002162 }
2163 else if (svs != sv && svs->state & SRV_MAINTAIN) {
2164 chunk_printf(&msg, "MAINT(via),");
2165 }
2166 else {
Cyril Bontécd19e512010-01-31 22:34:03 +01002167 chunk_printf(&msg,
2168 srv_hlt_st[sv_state],
2169 (svs->state & SRV_RUNNING) ? (svs->health - svs->rise + 1) : (svs->health),
2170 (svs->state & SRV_RUNNING) ? (svs->fall) : (svs->rise));
2171 }
Willy Tarreau91861262007-10-17 17:06:05 +02002172
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002173 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002174 /* weight, active, backup */
2175 "%d,%d,%d,"
2176 "",
Willy Tarreau5542af62007-12-03 02:04:00 +01002177 (sv->eweight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002178 (sv->state & SRV_BACKUP) ? 0 : 1,
2179 (sv->state & SRV_BACKUP) ? 1 : 0);
2180
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002181 /* check failures: unique, fatal; last change, total downtime */
Willy Tarreau55bb8452007-10-17 18:44:57 +02002182 if (sv->state & SRV_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002183 chunk_printf(&msg,
Willy Tarreau3b88d442009-04-11 20:44:08 +02002184 "%lld,%lld,%d,%d,",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002185 sv->counters.failed_checks, sv->counters.down_trans,
Willy Tarreau1772ece2009-04-03 14:49:12 +02002186 (int)(now.tv_sec - sv->last_change), srv_downtime(sv));
Willy Tarreau55bb8452007-10-17 18:44:57 +02002187 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002188 chunk_printf(&msg,
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02002189 ",,,,");
2190
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002191 /* queue limit, pid, iid, sid, */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002192 chunk_printf(&msg,
Willy Tarreaudcd47712007-11-04 23:35:08 +01002193 "%s,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002194 "%d,%d,%d,",
Willy Tarreaudcd47712007-11-04 23:35:08 +01002195 LIM2A0(sv->maxqueue, ""),
2196 relative_pid, px->uuid, sv->puid);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002197
2198 /* throttle */
2199 if ((sv->state & SRV_WARMINGUP) &&
2200 now.tv_sec < sv->last_change + sv->slowstart &&
2201 now.tv_sec >= sv->last_change) {
2202 unsigned int ratio;
2203 ratio = MAX(1, 100 * (now.tv_sec - sv->last_change) / sv->slowstart);
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002204 chunk_printf(&msg, "%d", ratio);
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002205 }
2206
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002207 /* sessions: lbtot */
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002208 chunk_printf(&msg, ",%lld,", sv->counters.cum_lbconn);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002209
2210 /* tracked */
2211 if (sv->tracked)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002212 chunk_printf(&msg, "%s/%s,",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002213 sv->tracked->proxy->id, sv->tracked->id);
2214 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002215 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01002216
Willy Tarreau7f062c42009-03-05 18:43:00 +01002217 /* type */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002218 chunk_printf(&msg, "%d,", STATS_TYPE_SV);
Willy Tarreau7f062c42009-03-05 18:43:00 +01002219
2220 /* rate */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002221 chunk_printf(&msg, "%u,,%u,",
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002222 read_freq_ctr(&sv->sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002223 sv->counters.sps_max);
Willy Tarreau7f062c42009-03-05 18:43:00 +01002224
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002225 if (sv->state & SRV_CHECKED) {
2226 /* check_status */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002227 chunk_printf(&msg, "%s,", get_check_status_info(sv->check_status));
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002228
2229 /* check_code */
2230 if (sv->check_status >= HCHK_STATUS_L57DATA)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002231 chunk_printf(&msg, "%u,", sv->check_code);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002232 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002233 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002234
2235 /* check_duration */
Krzysztof Piotr Oledzki034550b2010-01-05 18:44:44 +01002236 if (sv->check_status >= HCHK_STATUS_CHECKED)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002237 chunk_printf(&msg, "%lu,", sv->check_duration);
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002238 else
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002239 chunk_printf(&msg, ",");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002240
2241 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002242 chunk_printf(&msg, ",,,");
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002243 }
2244
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002245 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2246 if (px->mode == PR_MODE_HTTP) {
2247 int i;
2248
2249 for (i=1; i<6; i++)
2250 chunk_printf(&msg, "%lld,", sv->counters.p.http.rsp[i]);
2251
2252 chunk_printf(&msg, "%lld,", sv->counters.p.http.rsp[0]);
2253 } else {
2254 chunk_printf(&msg, ",,,,,,");
2255 }
2256
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002257 /* failed health analyses */
2258 chunk_printf(&msg, "%lld,", sv->counters.failed_hana);
2259
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002260 /* requests : req_rate, req_rate_max, req_tot, */
2261 chunk_printf(&msg, ",,,");
2262
Willy Tarreauae526782010-03-04 20:34:23 +01002263 /* errors: cli_aborts, srv_aborts */
2264 chunk_printf(&msg, "%lld,%lld,",
2265 sv->counters.cli_aborts, sv->counters.srv_aborts);
2266
Willy Tarreau7f062c42009-03-05 18:43:00 +01002267 /* finish with EOL */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002268 chunk_printf(&msg, "\n");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002269 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002270 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02002271 return 0;
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002272 } /* for sv */
Willy Tarreau91861262007-10-17 17:06:05 +02002273
2274 s->data_ctx.stats.px_st = DATA_ST_PX_BE;
2275 /* fall through */
2276
2277 case DATA_ST_PX_BE:
2278 /* print the backend */
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01002279 if ((px->cap & PR_CAP_BE) &&
2280 (!(s->data_ctx.stats.flags & STAT_BOUND) || (s->data_ctx.stats.type & (1 << STATS_TYPE_BE)))) {
2281 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002282 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002283 /* name */
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002284 "<tr class=\"backend\"><td class=ac");
2285
2286 if (uri->flags&ST_SHLGNDS) {
2287 /* balancing */
Krzysztof Piotr Oledzkic0f0c862010-01-06 15:03:18 +01002288 chunk_printf(&msg, " title=\"balancing: %s",
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002289 backend_lb_algo_str(px->lbprm.algo & BE_LB_ALGO));
Krzysztof Piotr Oledzkic0f0c862010-01-06 15:03:18 +01002290
2291 /* cookie */
2292 if (px->cookie_name) {
2293 struct chunk src;
2294
2295 chunk_printf(&msg, ", cookie: '");
2296
2297 chunk_initlen(&src, px->cookie_name, 0, strlen(px->cookie_name));
2298 chunk_htmlencode(&msg, &src);
2299
2300 chunk_printf(&msg, "'");
2301 }
2302
2303 chunk_printf(&msg, "\"");
2304
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01002305 }
2306
2307 chunk_printf(&msg,
Willy Tarreaue0454092010-02-26 12:29:07 +01002308 ">%s<a name=\"%s/Backend\"></a>"
2309 "<a class=lfsb href=\"#%s/Backend\">Backend</a>%s</td>"
Willy Tarreau91861262007-10-17 17:06:05 +02002310 /* queue : current, max */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002311 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02002312 /* sessions rate : current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002313 "<td>%s</td><td>%s</td><td></td>"
Willy Tarreaua3e49422009-05-10 19:19:41 +02002314 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01002315 (uri->flags & ST_SHLGNDS)?"<u>":"",
Krzysztof Piotr Oledzki1f672852009-10-24 14:24:30 +02002316 px->id, px->id,
Willy Tarreaue0454092010-02-26 12:29:07 +01002317 (uri->flags & ST_SHLGNDS)?"</u>":"",
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002318 U2H0(px->nbpend) /* or px->totpend ? */, U2H1(px->counters.nbpend_max),
2319 U2H2(read_freq_ctr(&px->be_sess_per_sec)), U2H3(px->counters.be_sps_max));
Willy Tarreaua3e49422009-05-10 19:19:41 +02002320
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002321 chunk_printf(&msg,
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002322 /* sessions: current, max, limit */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002323 "<td>%s</td><td>%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002324 "<td"
2325 "",
2326 U2H2(px->beconn), U2H3(px->counters.beconn_max), U2H4(px->fullconn));
2327
2328 /* http response (via td title): 1xx, 2xx, 3xx, 4xx, 5xx, other */
2329 if (px->mode == PR_MODE_HTTP) {
2330 int i;
2331
2332 chunk_printf(&msg, " title=\"rsp codes:");
2333
2334 for (i = 1; i < 6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01002335 chunk_printf(&msg, " %dxx=%lld", i, px->counters.be.http.rsp[i]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002336
Willy Tarreau24657792010-02-26 10:30:28 +01002337 chunk_printf(&msg, " other=%lld\"", px->counters.be.http.rsp[0]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002338 }
2339
2340 chunk_printf(&msg,
2341 /* sessions: total, lbtot */
Willy Tarreaue0454092010-02-26 12:29:07 +01002342 ">%s%s%s</td><td>%s</td>"
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002343 /* bytes: in, out */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002344 "<td>%s</td><td>%s</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02002345 "",
Willy Tarreaue0454092010-02-26 12:29:07 +01002346 (px->mode == PR_MODE_HTTP)?"<u>":"",
2347 U2H6(px->counters.cum_beconn),
2348 (px->mode == PR_MODE_HTTP)?"</u>":"",
2349 U2H7(px->counters.cum_lbconn),
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002350 U2H8(px->counters.bytes_in), U2H9(px->counters.bytes_out));
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02002351
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002352 chunk_printf(&msg,
Willy Tarreau91861262007-10-17 17:06:05 +02002353 /* denied: req, resp */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002354 "<td>%s</td><td>%s</td>"
Willy Tarreauae526782010-03-04 20:34:23 +01002355 /* errors : request, connect */
2356 "<td></td><td>%s</td>"
2357 /* errors : response */
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002358 "<td title=\"Connection resets during transfers: %lld client, %lld server\"><u>%s</u></td>"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002359 /* warnings: retries, redispatches */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002360 "<td>%lld</td><td>%lld</td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002361 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau91861262007-10-17 17:06:05 +02002362 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002363 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau91861262007-10-17 17:06:05 +02002364 * active and backups. */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002365 "<td class=ac>%s %s</td><td class=ac>&nbsp;</td><td class=ac>%d</td>"
2366 "<td class=ac>%d</td><td class=ac>%d</td>"
Willy Tarreau0a6d2ef2009-03-29 14:46:01 +02002367 "",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002368 U2H0(px->counters.denied_req), U2H1(px->counters.denied_resp),
Willy Tarreauae526782010-03-04 20:34:23 +01002369 U2H2(px->counters.failed_conns),
Willy Tarreau6a8573e2010-03-05 18:15:23 +01002370 px->counters.cli_aborts,
2371 px->counters.srv_aborts,
Willy Tarreauae526782010-03-04 20:34:23 +01002372 U2H5(px->counters.failed_resp),
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002373 px->counters.retries, px->counters.redispatches,
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002374 human_time(now.tv_sec - px->last_change, 1),
Willy Tarreau2ea81932007-11-30 12:04:38 +01002375 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" :
2376 "<font color=\"red\"><b>DOWN</b></font>",
Willy Tarreau5542af62007-12-03 02:04:00 +01002377 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01002378 px->srv_act, px->srv_bck);
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002379
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002380 chunk_printf(&msg,
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002381 /* rest of backend: nothing, down transitions, total downtime, throttle */
Krzysztof Piotr Oledzkif2d2b1d2009-10-12 23:09:08 +02002382 "<td class=ac>&nbsp;</td><td>%d</td>"
2383 "<td>%s</td>"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002384 "<td></td>"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002385 "</tr>",
2386 px->down_trans,
2387 px->srv?human_time(be_downtime(px), 1):"&nbsp;");
Willy Tarreau55bb8452007-10-17 18:44:57 +02002388 } else {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002389 chunk_printf(&msg,
Willy Tarreau55bb8452007-10-17 18:44:57 +02002390 /* pxid, name */
2391 "%s,BACKEND,"
2392 /* queue : current, max */
2393 "%d,%d,"
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002394 /* sessions : current, max, limit, total */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002395 "%d,%d,%d,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002396 /* bytes : in, out */
2397 "%lld,%lld,"
2398 /* denied: req, resp */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002399 "%lld,%lld,"
Willy Tarreau55bb8452007-10-17 18:44:57 +02002400 /* errors : request, connect, response */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002401 ",%lld,%lld,"
Krzysztof Oledzki1cf36ba2007-10-18 19:12:30 +02002402 /* warnings: retries, redispatches */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002403 "%lld,%lld,"
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002404 /* backend status: reflect backend status (up/down): we display UP
Willy Tarreau55bb8452007-10-17 18:44:57 +02002405 * if the backend has known working servers or if it has no server at
Krzysztof Oledzki85130942007-10-22 16:21:10 +02002406 * all (eg: for stats). Then we display the total weight, number of
Willy Tarreau55bb8452007-10-17 18:44:57 +02002407 * active and backups. */
2408 "%s,"
2409 "%d,%d,%d,"
Willy Tarreau4bab24d2007-11-30 18:16:29 +01002410 /* rest of backend: nothing, down transitions, last change, total downtime */
Elijah Epifanovacafc5f2007-10-25 20:15:38 +02002411 ",%d,%d,%d,,"
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +01002412 /* pid, iid, sid, throttle, lbtot, tracked, type */
Willy Tarreau3b88d442009-04-11 20:44:08 +02002413 "%d,%d,0,,%lld,,%d,"
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002414 /* rate, rate_lim, rate_max, */
2415 "%u,,%u,"
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +02002416 /* check_status, check_code, check_duration */
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002417 ",,,",
Willy Tarreau55bb8452007-10-17 18:44:57 +02002418 px->id,
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002419 px->nbpend /* or px->totpend ? */, px->counters.nbpend_max,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002420 px->beconn, px->counters.beconn_max, px->fullconn, px->counters.cum_beconn,
2421 px->counters.bytes_in, px->counters.bytes_out,
2422 px->counters.denied_req, px->counters.denied_resp,
2423 px->counters.failed_conns, px->counters.failed_resp,
2424 px->counters.retries, px->counters.redispatches,
Willy Tarreau20697042007-11-15 23:26:18 +01002425 (px->lbprm.tot_weight > 0 || !px->srv) ? "UP" : "DOWN",
Willy Tarreau5542af62007-12-03 02:04:00 +01002426 (px->lbprm.tot_weight * px->lbprm.wmult + px->lbprm.wdiv - 1) / px->lbprm.wdiv,
Willy Tarreau20697042007-11-15 23:26:18 +01002427 px->srv_act, px->srv_bck,
Willy Tarreau1772ece2009-04-03 14:49:12 +02002428 px->down_trans, (int)(now.tv_sec - px->last_change),
Willy Tarreau20697042007-11-15 23:26:18 +01002429 px->srv?be_downtime(px):0,
Willy Tarreauddbb82f2007-12-05 10:34:49 +01002430 relative_pid, px->uuid,
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +02002431 px->counters.cum_lbconn, STATS_TYPE_BE,
Willy Tarreau8f208ec2009-05-10 19:01:49 +02002432 read_freq_ctr(&px->be_sess_per_sec),
Willy Tarreauac68c5d2009-10-04 23:12:44 +02002433 px->counters.be_sps_max);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002434
2435 /* http response: 1xx, 2xx, 3xx, 4xx, 5xx, other */
2436 if (px->mode == PR_MODE_HTTP) {
2437 int i;
2438
2439 for (i=1; i<6; i++)
Willy Tarreau24657792010-02-26 10:30:28 +01002440 chunk_printf(&msg, "%lld,", px->counters.be.http.rsp[i]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002441
Willy Tarreau24657792010-02-26 10:30:28 +01002442 chunk_printf(&msg, "%lld,", px->counters.be.http.rsp[0]);
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002443 } else {
2444 chunk_printf(&msg, ",,,,,,");
2445 }
2446
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01002447 /* failed health analyses */
2448 chunk_printf(&msg, ",");
2449
Willy Tarreaud9b587f2010-02-26 10:05:55 +01002450 /* requests : req_rate, req_rate_max, req_tot, */
2451 chunk_printf(&msg, ",,,");
2452
Willy Tarreauae526782010-03-04 20:34:23 +01002453 /* errors: cli_aborts, srv_aborts */
2454 chunk_printf(&msg, "%lld,%lld,",
2455 px->counters.cli_aborts, px->counters.srv_aborts);
2456
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02002457 /* finish with EOL */
2458 chunk_printf(&msg, "\n");
2459
Willy Tarreau55bb8452007-10-17 18:44:57 +02002460 }
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002461 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau91861262007-10-17 17:06:05 +02002462 return 0;
2463 }
Willy Tarreaub1356cf2008-12-07 16:06:43 +01002464
Willy Tarreau91861262007-10-17 17:06:05 +02002465 s->data_ctx.stats.px_st = DATA_ST_PX_END;
2466 /* fall through */
2467
2468 case DATA_ST_PX_END:
Willy Tarreau39f7e6d2008-03-17 21:38:24 +01002469 if (!(s->data_ctx.stats.flags & STAT_FMT_CSV)) {
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002470 chunk_printf(&msg, "</table><p>\n");
Willy Tarreau91861262007-10-17 17:06:05 +02002471
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002472 if (buffer_feed_chunk(rep, &msg) >= 0)
Willy Tarreau55bb8452007-10-17 18:44:57 +02002473 return 0;
2474 }
Willy Tarreau91861262007-10-17 17:06:05 +02002475
2476 s->data_ctx.stats.px_st = DATA_ST_PX_FIN;
2477 /* fall through */
2478
2479 case DATA_ST_PX_FIN:
2480 return 1;
2481
2482 default:
2483 /* unknown state, we should put an abort() here ! */
2484 return 1;
2485 }
2486}
2487
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002488/* This function is called to send output to the response buffer. It dumps a
2489 * complete session state onto the output buffer <rep>. The session has to be
2490 * set in data_ctx.sess.target. It returns 0 if the output buffer is full and
2491 * it needs to be called again, otherwise non-zero. It is designed to be called
2492 * from stats_dump_sess_to_buffer() below.
2493 */
2494
2495/* returns 1 if dump is not complete */
2496int stats_dump_full_sess_to_buffer(struct session *s, struct buffer *rep)
2497{
2498 struct tm tm;
2499 struct chunk msg;
2500 struct session *sess;
2501 extern const char *monthname[12];
2502 char pn[INET6_ADDRSTRLEN];
2503
2504 chunk_init(&msg, trash, sizeof(trash));
2505 sess = s->data_ctx.sess.target;
2506
2507 if (s->data_ctx.sess.section > 0 && s->data_ctx.sess.uid != sess->uniq_id) {
2508 /* session changed, no need to go any further */
2509 chunk_printf(&msg, " *** session terminated while we were watching it ***\n");
2510 if (buffer_feed_chunk(rep, &msg) >= 0)
2511 return 0;
2512 s->data_ctx.sess.target = NULL;
2513 s->data_ctx.sess.uid = 0;
2514 return 1;
2515 }
2516
2517 switch (s->data_ctx.sess.section) {
2518 case 0: /* main status of the session */
2519 s->data_ctx.sess.uid = sess->uniq_id;
2520 s->data_ctx.sess.section = 1;
2521 /* fall through */
2522
2523 case 1:
2524 chunk_printf(&msg,
2525 "%p: id=%u, proto=%s",
2526 sess,
2527 sess->uniq_id,
2528 sess->listener->proto->name);
2529
2530 switch (sess->listener->proto->sock_family) {
2531 case AF_INET:
2532 inet_ntop(AF_INET,
2533 (const void *)&((struct sockaddr_in *)&sess->cli_addr)->sin_addr,
2534 pn, sizeof(pn));
2535
2536 chunk_printf(&msg,
2537 " source=%s:%d\n",
2538 pn,
2539 ntohs(((struct sockaddr_in *)&sess->cli_addr)->sin_port));
2540 break;
2541 case AF_INET6:
2542 inet_ntop(AF_INET6,
2543 (const void *)&((struct sockaddr_in6 *)(&sess->cli_addr))->sin6_addr,
2544 pn, sizeof(pn));
2545
2546 chunk_printf(&msg,
2547 " source=%s:%d\n",
2548 pn,
2549 ntohs(((struct sockaddr_in6 *)&sess->cli_addr)->sin6_port));
2550 break;
2551 case AF_UNIX:
2552 default:
2553 /* no more information to print right now */
2554 chunk_printf(&msg, "\n");
2555 break;
2556 }
2557
2558 chunk_printf(&msg,
2559 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
Willy Tarreauee28de02010-06-01 09:51:00 +02002560 sess->flags, sess->si[1].conn_retries, sess->srv_conn, sess->pend_pos);
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002561
2562 chunk_printf(&msg,
2563 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)\n",
2564 sess->fe->id, sess->fe->uuid, sess->fe->mode ? "http" : "tcp",
2565 sess->listener ? sess->listener->name ? sess->listener->name : "?" : "?",
2566 sess->listener ? sess->listener->luid : 0);
2567
2568 chunk_printf(&msg,
2569 " backend=%s (id=%u mode=%s) server=%s (id=%u)\n",
2570 sess->be->id, sess->be->uuid, sess->be->mode ? "http" : "tcp",
2571 sess->srv ? sess->srv->id : "<none>",
2572 sess->srv ? sess->srv->puid : 0);
2573
2574 chunk_printf(&msg,
2575 " task=%p (state=0x%02x nice=%d calls=%d exp=%s%s)\n",
2576 sess->task,
2577 sess->task->state,
2578 sess->task->nice, sess->task->calls,
2579 sess->task->expire ?
2580 tick_is_expired(sess->task->expire, now_ms) ? "<PAST>" :
2581 human_time(TICKS_TO_MS(sess->task->expire - now_ms),
2582 TICKS_TO_MS(1000)) : "<NEVER>",
2583 task_in_rq(sess->task) ? ", running" : "");
2584
2585 get_localtime(sess->logs.accept_date.tv_sec, &tm);
2586 chunk_printf(&msg,
2587 " task created [%02d/%s/%04d:%02d:%02d:%02d.%06d] (age=%s)\n",
2588 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2589 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(sess->logs.accept_date.tv_usec),
2590 human_time(now.tv_sec - sess->logs.accept_date.tv_sec, 1));
2591
2592 chunk_printf(&msg,
2593 " si[0]=%p (state=%d flags=0x%02x fd=%d exp=%s, et=0x%03x)\n",
2594 &sess->si[0],
2595 sess->si[0].state,
2596 sess->si[0].flags,
2597 sess->si[0].fd,
2598 sess->si[0].exp ?
2599 tick_is_expired(sess->si[0].exp, now_ms) ? "<PAST>" :
2600 human_time(TICKS_TO_MS(sess->si[0].exp - now_ms),
2601 TICKS_TO_MS(1000)) : "<NEVER>",
2602 sess->si[0].err_type);
2603
2604 chunk_printf(&msg,
2605 " si[1]=%p (state=%d flags=0x%02x fd=%d exp=%s, et=0x%03x)\n",
2606 &sess->si[1],
2607 sess->si[1].state,
2608 sess->si[1].flags,
2609 sess->si[1].fd,
2610 sess->si[1].exp ?
2611 tick_is_expired(sess->si[1].exp, now_ms) ? "<PAST>" :
2612 human_time(TICKS_TO_MS(sess->si[1].exp - now_ms),
2613 TICKS_TO_MS(1000)) : "<NEVER>",
2614 sess->si[1].err_type);
2615
2616 chunk_printf(&msg,
2617 " txn=%p (flags=0x%x meth=%d status=%d req.st=%d rsp.st=%d)\n",
2618 &sess->txn, sess->txn.flags, sess->txn.meth, sess->txn.status,
2619 sess->txn.req.msg_state, sess->txn.rsp.msg_state);
2620
2621
2622 chunk_printf(&msg,
2623 " req=%p (f=0x%06x an=0x%x l=%d sndmx=%d pipe=%d fwd=%ld)\n"
2624 " an_exp=%s",
2625 sess->req,
2626 sess->req->flags, sess->req->analysers,
2627 sess->req->l, sess->req->send_max,
2628 sess->req->pipe ? sess->req->pipe->data : 0,
2629 sess->req->to_forward,
2630 sess->req->analyse_exp ?
2631 human_time(TICKS_TO_MS(sess->req->analyse_exp - now_ms),
2632 TICKS_TO_MS(1000)) : "<NEVER>");
2633
2634 chunk_printf(&msg,
2635 " rex=%s",
2636 sess->req->rex ?
2637 human_time(TICKS_TO_MS(sess->req->rex - now_ms),
2638 TICKS_TO_MS(1000)) : "<NEVER>");
2639
2640 chunk_printf(&msg,
2641 " wex=%s\n"
2642 " data=%p r=%d w=%d lr=%d total=%lld\n",
2643 sess->req->wex ?
2644 human_time(TICKS_TO_MS(sess->req->wex - now_ms),
2645 TICKS_TO_MS(1000)) : "<NEVER>",
2646 sess->req->data,
Willy Tarreau4e1554c2010-03-21 23:21:00 +01002647 (int)(sess->req->r - sess->req->data),
2648 (int)(sess->req->w - sess->req->data),
2649 (int)(sess->req->lr - sess->req->data),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002650 sess->req->total);
2651
2652 chunk_printf(&msg,
2653 " res=%p (f=0x%06x an=0x%x l=%d sndmx=%d pipe=%d fwd=%ld)\n"
2654 " an_exp=%s",
2655 sess->rep,
2656 sess->rep->flags, sess->rep->analysers,
2657 sess->rep->l, sess->rep->send_max,
2658 sess->rep->pipe ? sess->rep->pipe->data : 0,
2659 sess->rep->to_forward,
2660 sess->rep->analyse_exp ?
2661 human_time(TICKS_TO_MS(sess->rep->analyse_exp - now_ms),
2662 TICKS_TO_MS(1000)) : "<NEVER>");
2663
2664 chunk_printf(&msg,
2665 " rex=%s",
2666 sess->rep->rex ?
2667 human_time(TICKS_TO_MS(sess->rep->rex - now_ms),
2668 TICKS_TO_MS(1000)) : "<NEVER>");
2669
2670 chunk_printf(&msg,
2671 " wex=%s\n"
2672 " data=%p r=%d w=%d lr=%d total=%lld\n",
2673 sess->rep->wex ?
2674 human_time(TICKS_TO_MS(sess->rep->wex - now_ms),
2675 TICKS_TO_MS(1000)) : "<NEVER>",
2676 sess->rep->data,
Willy Tarreau4e1554c2010-03-21 23:21:00 +01002677 (int)(sess->rep->r - sess->rep->data),
2678 (int)(sess->rep->w - sess->rep->data),
2679 (int)(sess->rep->lr - sess->rep->data),
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002680 sess->rep->total);
2681
2682 if (buffer_feed_chunk(rep, &msg) >= 0)
2683 return 0;
2684
2685 /* use other states to dump the contents */
2686 }
2687 /* end of dump */
2688 s->data_ctx.sess.uid = 0;
2689 return 1;
2690}
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002691
2692/* This function is called to send output to the response buffer.
2693 * It dumps the sessions states onto the output buffer <rep>.
2694 * Expects to be called with client socket shut down on input.
2695 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002696 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002697 */
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002698int stats_dump_sess_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002699{
2700 struct chunk msg;
2701
2702 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
2703 /* If we're forced to shut down, we might have to remove our
2704 * reference to the last session being dumped.
2705 */
2706 if (s->data_state == DATA_ST_LIST) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002707 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002708 LIST_DEL(&s->data_ctx.sess.bref.users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002709 LIST_INIT(&s->data_ctx.sess.bref.users);
2710 }
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002711 }
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002712 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002713 }
2714
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002715 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002716
2717 switch (s->data_state) {
2718 case DATA_ST_INIT:
2719 /* the function had not been called yet, let's prepare the
2720 * buffer for a response. We initialize the current session
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002721 * pointer to the first in the global list. When a target
2722 * session is being destroyed, it is responsible for updating
2723 * this pointer. We know we have reached the end when this
2724 * pointer points back to the head of the sessions list.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002725 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002726 LIST_INIT(&s->data_ctx.sess.bref.users);
2727 s->data_ctx.sess.bref.ref = sessions.n;
2728 s->data_state = DATA_ST_LIST;
2729 /* fall through */
2730
2731 case DATA_ST_LIST:
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002732 /* first, let's detach the back-ref from a possible previous session */
2733 if (!LIST_ISEMPTY(&s->data_ctx.sess.bref.users)) {
2734 LIST_DEL(&s->data_ctx.sess.bref.users);
2735 LIST_INIT(&s->data_ctx.sess.bref.users);
2736 }
2737
2738 /* and start from where we stopped */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002739 while (s->data_ctx.sess.bref.ref != &sessions) {
2740 char pn[INET6_ADDRSTRLEN + strlen(":65535")];
2741 struct session *curr_sess;
2742
2743 curr_sess = LIST_ELEM(s->data_ctx.sess.bref.ref, struct session *, list);
2744
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002745 if (s->data_ctx.sess.target) {
2746 if (s->data_ctx.sess.target != curr_sess)
2747 goto next_sess;
2748
2749 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
2750 /* call the proper dump() function and return if we're missing space */
2751 if (!stats_dump_full_sess_to_buffer(s, rep))
2752 return 0;
2753
2754 /* session dump complete */
2755 LIST_DEL(&s->data_ctx.sess.bref.users);
2756 LIST_INIT(&s->data_ctx.sess.bref.users);
2757 s->data_ctx.sess.target = NULL;
2758 break;
2759 }
2760
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002761 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002762 "%p: proto=%s",
2763 curr_sess,
2764 curr_sess->listener->proto->name);
2765
2766 switch (curr_sess->listener->proto->sock_family) {
2767 case AF_INET:
2768 inet_ntop(AF_INET,
2769 (const void *)&((struct sockaddr_in *)&curr_sess->cli_addr)->sin_addr,
2770 pn, sizeof(pn));
2771
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002772 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002773 " src=%s:%d fe=%s be=%s srv=%s",
2774 pn,
2775 ntohs(((struct sockaddr_in *)&curr_sess->cli_addr)->sin_port),
2776 curr_sess->fe->id,
2777 curr_sess->be->id,
2778 curr_sess->srv ? curr_sess->srv->id : "<none>"
2779 );
2780 break;
2781 case AF_INET6:
2782 inet_ntop(AF_INET6,
2783 (const void *)&((struct sockaddr_in6 *)(&curr_sess->cli_addr))->sin6_addr,
2784 pn, sizeof(pn));
2785
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002786 chunk_printf(&msg,
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002787 " src=%s:%d fe=%s be=%s srv=%s",
2788 pn,
2789 ntohs(((struct sockaddr_in6 *)&curr_sess->cli_addr)->sin6_port),
2790 curr_sess->fe->id,
2791 curr_sess->be->id,
2792 curr_sess->srv ? curr_sess->srv->id : "<none>"
2793 );
2794
2795 break;
2796 case AF_UNIX:
2797 /* no more information to print right now */
2798 break;
2799 }
2800
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002801 chunk_printf(&msg,
Willy Tarreau65671ab2009-10-04 14:24:59 +02002802 " ts=%02x age=%s calls=%d",
2803 curr_sess->task->state,
Willy Tarreau3884cba2009-03-28 17:54:35 +01002804 human_time(now.tv_sec - curr_sess->logs.tv_accept.tv_sec, 1),
2805 curr_sess->task->calls);
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002806
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002807 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002808 " rq[f=%06xh,l=%d,an=%02xh,rx=%s",
2809 curr_sess->req->flags,
2810 curr_sess->req->l,
2811 curr_sess->req->analysers,
2812 curr_sess->req->rex ?
2813 human_time(TICKS_TO_MS(curr_sess->req->rex - now_ms),
2814 TICKS_TO_MS(1000)) : "");
2815
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002816 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002817 ",wx=%s",
2818 curr_sess->req->wex ?
2819 human_time(TICKS_TO_MS(curr_sess->req->wex - now_ms),
2820 TICKS_TO_MS(1000)) : "");
2821
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002822 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002823 ",ax=%s]",
2824 curr_sess->req->analyse_exp ?
2825 human_time(TICKS_TO_MS(curr_sess->req->analyse_exp - now_ms),
2826 TICKS_TO_MS(1000)) : "");
2827
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002828 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002829 " rp[f=%06xh,l=%d,an=%02xh,rx=%s",
2830 curr_sess->rep->flags,
2831 curr_sess->rep->l,
2832 curr_sess->rep->analysers,
2833 curr_sess->rep->rex ?
2834 human_time(TICKS_TO_MS(curr_sess->rep->rex - now_ms),
2835 TICKS_TO_MS(1000)) : "");
2836
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002837 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002838 ",wx=%s",
2839 curr_sess->rep->wex ?
2840 human_time(TICKS_TO_MS(curr_sess->rep->wex - now_ms),
2841 TICKS_TO_MS(1000)) : "");
2842
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002843 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002844 ",ax=%s]",
2845 curr_sess->rep->analyse_exp ?
2846 human_time(TICKS_TO_MS(curr_sess->rep->analyse_exp - now_ms),
2847 TICKS_TO_MS(1000)) : "");
2848
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002849 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002850 " s0=[%d,%1xh,fd=%d,ex=%s]",
2851 curr_sess->si[0].state,
2852 curr_sess->si[0].flags,
2853 curr_sess->si[0].fd,
2854 curr_sess->si[0].exp ?
2855 human_time(TICKS_TO_MS(curr_sess->si[0].exp - now_ms),
2856 TICKS_TO_MS(1000)) : "");
2857
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002858 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002859 " s1=[%d,%1xh,fd=%d,ex=%s]",
2860 curr_sess->si[1].state,
2861 curr_sess->si[1].flags,
2862 curr_sess->si[1].fd,
2863 curr_sess->si[1].exp ?
2864 human_time(TICKS_TO_MS(curr_sess->si[1].exp - now_ms),
2865 TICKS_TO_MS(1000)) : "");
2866
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002867 chunk_printf(&msg,
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002868 " exp=%s",
2869 curr_sess->task->expire ?
2870 human_time(TICKS_TO_MS(curr_sess->task->expire - now_ms),
2871 TICKS_TO_MS(1000)) : "");
Willy Tarreau4726f532009-03-07 17:25:21 +01002872 if (task_in_rq(curr_sess->task))
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002873 chunk_printf(&msg, " run(nice=%d)", curr_sess->task->nice);
Willy Tarreauc6dcad62009-03-29 00:18:14 +01002874
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002875 chunk_printf(&msg, "\n");
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002876
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002877 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +01002878 /* let's try again later from this session. We add ourselves into
2879 * this session's users so that it can remove us upon termination.
2880 */
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002881 LIST_ADDQ(&curr_sess->back_refs, &s->data_ctx.sess.bref.users);
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002882 return 0;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002883 }
2884
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002885 next_sess:
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002886 s->data_ctx.sess.bref.ref = curr_sess->list.n;
2887 }
Willy Tarreau66dc20a2010-03-05 17:53:32 +01002888
2889 if (s->data_ctx.sess.target) {
2890 /* specified session not found */
2891 if (s->data_ctx.sess.section > 0)
2892 chunk_printf(&msg, " *** session terminated while we were watching it ***\n");
2893 else
2894 chunk_printf(&msg, "Session not found.\n");
2895
2896 if (buffer_feed_chunk(rep, &msg) >= 0)
2897 return 0;
2898
2899 s->data_ctx.sess.target = NULL;
2900 s->data_ctx.sess.uid = 0;
2901 return 1;
2902 }
2903
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002904 s->data_state = DATA_ST_FIN;
2905 /* fall through */
2906
2907 default:
2908 s->data_state = DATA_ST_FIN;
Willy Tarreau7e72a8f2009-10-03 23:55:14 +02002909 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01002910 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02002911}
2912
2913/* This function is called to send output to the response buffer.
2914 * It dumps the tables states onto the output buffer <rep>.
2915 * Expects to be called with client socket shut down on input.
2916 * s->data_ctx must have been zeroed first, and the flags properly set.
2917 * It returns 0 as long as it does not complete, non-zero upon completion.
2918 */
2919int stats_dump_table_to_buffer(struct session *s, struct buffer *rep)
2920{
2921 struct chunk msg;
2922 struct ebmb_node *eb;
2923 int dt;
2924
2925 /*
2926 * We have 3 possible states in s->data_state :
2927 * - DATA_ST_INIT : the first call
2928 * - DATA_ST_INFO : the proxy pointer points to the next table to
2929 * dump, the entry pointer is NULL ;
2930 * - DATA_ST_LIST : the proxy pointer points to the current table
2931 * and the entry pointer points to the next entry to be dumped,
2932 * and the refcount on the next entry is held ;
2933 * - DATA_ST_END : nothing left to dump, the buffer may contain some
2934 * data though.
2935 */
2936
2937 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW))) {
2938 /* in case of abort, remove any refcount we might have set on an entry */
Willy Tarreauf6efda12010-08-03 20:34:06 +02002939 if (s->data_state == DATA_ST_LIST) {
Willy Tarreau69f58c82010-07-12 17:55:33 +02002940 s->data_ctx.table.entry->ref_cnt--;
Willy Tarreauf6efda12010-08-03 20:34:06 +02002941 stksess_kill_if_expired(&s->data_ctx.table.proxy->table, s->data_ctx.table.entry);
2942 }
Willy Tarreau69f58c82010-07-12 17:55:33 +02002943 return 1;
2944 }
2945
2946 chunk_init(&msg, trash, sizeof(trash));
2947
2948 while (s->data_state != DATA_ST_FIN) {
2949 switch (s->data_state) {
2950 case DATA_ST_INIT:
2951 s->data_ctx.table.proxy = s->data_ctx.table.target;
2952 if (!s->data_ctx.table.proxy)
2953 s->data_ctx.table.proxy = proxy;
2954
2955 s->data_ctx.table.entry = NULL;
2956 s->data_state = DATA_ST_INFO;
2957 break;
2958
2959 case DATA_ST_INFO:
2960 if (!s->data_ctx.table.proxy ||
2961 (s->data_ctx.table.target &&
2962 s->data_ctx.table.proxy != s->data_ctx.table.target)) {
2963 s->data_state = DATA_ST_END;
2964 break;
2965 }
2966
2967 if (s->data_ctx.table.proxy->table.size) {
2968 chunk_printf(&msg, "# table: %s, type: %ld, size:%d, used:%d\n",
2969 s->data_ctx.table.proxy->id,
2970 s->data_ctx.table.proxy->table.type,
2971 s->data_ctx.table.proxy->table.size,
2972 s->data_ctx.table.proxy->table.current);
2973
2974 /* any other information should be dumped here */
2975
2976 if (s->data_ctx.table.target &&
2977 s->listener->perm.ux.level < ACCESS_LVL_OPER)
2978 chunk_printf(&msg, "# contents not dumped due to insufficient privileges\n");
2979
2980 if (buffer_feed_chunk(rep, &msg) >= 0)
2981 return 0;
2982
2983 if (s->data_ctx.table.target &&
2984 s->listener->perm.ux.level >= ACCESS_LVL_OPER) {
2985 /* dump entries only if table explicitly requested */
2986 eb = ebmb_first(&s->data_ctx.table.proxy->table.keys);
2987 if (eb) {
2988 s->data_ctx.table.entry = ebmb_entry(eb, struct stksess, key);
2989 s->data_ctx.table.entry->ref_cnt++;
2990 s->data_state = DATA_ST_LIST;
2991 break;
2992 }
2993 }
2994 }
2995 s->data_ctx.table.proxy = s->data_ctx.table.proxy->next;
2996 break;
2997
2998 case DATA_ST_LIST:
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02002999 if (s->data_ctx.table.data_type >= 0) {
3000 /* we're filtering on some data contents */
3001 void *ptr;
3002 long long data;
3003
3004 dt = s->data_ctx.table.data_type;
3005 ptr = stktable_data_ptr(&s->data_ctx.table.proxy->table,
3006 s->data_ctx.table.entry,
3007 dt);
3008
3009 data = 0;
3010 switch (stktable_data_types[dt].std_type) {
3011 case STD_T_SINT:
3012 data = stktable_data_cast(ptr, std_t_sint);
3013 break;
3014 case STD_T_UINT:
3015 data = stktable_data_cast(ptr, std_t_uint);
3016 break;
3017 case STD_T_ULL:
3018 data = stktable_data_cast(ptr, std_t_ull);
3019 break;
3020 case STD_T_FRQP:
3021 data = read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
3022 s->data_ctx.table.proxy->table.data_arg[dt].u);
3023 break;
3024 }
3025
3026 /* skip the entry if the data does not match the test and the value */
3027 if ((data < s->data_ctx.table.value &&
3028 (s->data_ctx.table.data_op == STD_OP_EQ ||
3029 s->data_ctx.table.data_op == STD_OP_GT ||
3030 s->data_ctx.table.data_op == STD_OP_GE)) ||
3031 (data == s->data_ctx.table.value &&
3032 (s->data_ctx.table.data_op == STD_OP_NE ||
3033 s->data_ctx.table.data_op == STD_OP_GT ||
3034 s->data_ctx.table.data_op == STD_OP_LT)) ||
3035 (data > s->data_ctx.table.value &&
3036 (s->data_ctx.table.data_op == STD_OP_EQ ||
3037 s->data_ctx.table.data_op == STD_OP_LT ||
3038 s->data_ctx.table.data_op == STD_OP_LE)))
3039 goto skip_entry;
3040 }
3041
Willy Tarreau69f58c82010-07-12 17:55:33 +02003042 chunk_printf(&msg, "%p:", s->data_ctx.table.entry);
3043
3044 if (s->data_ctx.table.proxy->table.type == STKTABLE_TYPE_IP) {
3045 char addr[16];
3046 inet_ntop(AF_INET,
3047 (const void *)&s->data_ctx.table.entry->key.key,
3048 addr, sizeof(addr));
3049 chunk_printf(&msg, " key=%s", addr);
3050 }
3051 else
3052 chunk_printf(&msg, " key=?");
3053
3054 chunk_printf(&msg, " use=%d exp=%d",
3055 s->data_ctx.table.entry->ref_cnt - 1,
3056 tick_remain(now_ms, s->data_ctx.table.entry->expire));
3057
3058 for (dt = 0; dt < STKTABLE_DATA_TYPES; dt++) {
3059 void *ptr;
3060
3061 if (s->data_ctx.table.proxy->table.data_ofs[dt] == 0)
3062 continue;
3063 if (stktable_data_types[dt].arg_type == ARG_T_DELAY)
3064 chunk_printf(&msg, " %s(%d)=",
3065 stktable_data_types[dt].name,
3066 s->data_ctx.table.proxy->table.data_arg[dt].u);
3067 else
3068 chunk_printf(&msg, " %s=", stktable_data_types[dt].name);
3069
3070 ptr = stktable_data_ptr(&s->data_ctx.table.proxy->table,
3071 s->data_ctx.table.entry,
3072 dt);
Willy Tarreau3b9c6e02010-07-18 08:04:30 +02003073 switch (stktable_data_types[dt].std_type) {
3074 case STD_T_SINT:
3075 chunk_printf(&msg, "%d", stktable_data_cast(ptr, std_t_sint));
Willy Tarreau69f58c82010-07-12 17:55:33 +02003076 break;
Willy Tarreau3b9c6e02010-07-18 08:04:30 +02003077 case STD_T_UINT:
3078 chunk_printf(&msg, "%u", stktable_data_cast(ptr, std_t_uint));
3079 break;
3080 case STD_T_ULL:
3081 chunk_printf(&msg, "%lld", stktable_data_cast(ptr, std_t_ull));
3082 break;
3083 case STD_T_FRQP:
Willy Tarreau69f58c82010-07-12 17:55:33 +02003084 chunk_printf(&msg, "%d",
Willy Tarreau3b9c6e02010-07-18 08:04:30 +02003085 read_freq_ctr_period(&stktable_data_cast(ptr, std_t_frqp),
Willy Tarreau69f58c82010-07-12 17:55:33 +02003086 s->data_ctx.table.proxy->table.data_arg[dt].u));
3087 break;
Willy Tarreau69f58c82010-07-12 17:55:33 +02003088 }
3089 }
3090 chunk_printf(&msg, "\n");
3091
3092 if (buffer_feed_chunk(rep, &msg) >= 0)
3093 return 0;
3094
Willy Tarreau4f3f01f2010-07-18 11:46:20 +02003095 skip_entry:
Willy Tarreau69f58c82010-07-12 17:55:33 +02003096 s->data_ctx.table.entry->ref_cnt--;
3097
3098 eb = ebmb_next(&s->data_ctx.table.entry->key);
3099 if (eb) {
Willy Tarreauf6efda12010-08-03 20:34:06 +02003100 struct stksess *old = s->data_ctx.table.entry;
Willy Tarreau69f58c82010-07-12 17:55:33 +02003101 s->data_ctx.table.entry = ebmb_entry(eb, struct stksess, key);
Willy Tarreauf6efda12010-08-03 20:34:06 +02003102 stksess_kill_if_expired(&s->data_ctx.table.proxy->table, old);
Willy Tarreau69f58c82010-07-12 17:55:33 +02003103 s->data_ctx.table.entry->ref_cnt++;
3104 break;
3105 }
3106
Willy Tarreauf6efda12010-08-03 20:34:06 +02003107 stksess_kill_if_expired(&s->data_ctx.table.proxy->table, s->data_ctx.table.entry);
Willy Tarreau69f58c82010-07-12 17:55:33 +02003108 s->data_ctx.table.proxy = s->data_ctx.table.proxy->next;
3109 s->data_state = DATA_ST_INFO;
3110 break;
3111
3112 case DATA_ST_END:
3113 s->data_state = DATA_ST_FIN;
3114 break;
3115 }
3116 }
3117 return 1;
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003118}
3119
Willy Tarreaud426a182010-03-05 14:58:26 +01003120/* print a line of text buffer (limited to 70 bytes) to <out>. The format is :
Willy Tarreau74808cb2009-03-04 15:53:18 +01003121 * <2 spaces> <offset=5 digits> <space or plus> <space> <70 chars max> <\n>
3122 * which is 60 chars per line. Non-printable chars \t, \n, \r and \e are
3123 * encoded in C format. Other non-printable chars are encoded "\xHH". Original
3124 * lines are respected within the limit of 70 output chars. Lines that are
3125 * continuation of a previous truncated line begin with "+" instead of " "
3126 * after the offset. The new pointer is returned.
3127 */
Willy Tarreaud426a182010-03-05 14:58:26 +01003128static int dump_text_line(struct chunk *out, const char *buf, int bsize, int len,
3129 int *line, int ptr)
Willy Tarreau74808cb2009-03-04 15:53:18 +01003130{
3131 int end;
3132 unsigned char c;
3133
3134 end = out->len + 80;
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003135 if (end > out->size)
Willy Tarreau74808cb2009-03-04 15:53:18 +01003136 return ptr;
3137
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003138 chunk_printf(out, " %05d%c ", ptr, (ptr == *line) ? ' ' : '+');
Willy Tarreau74808cb2009-03-04 15:53:18 +01003139
Willy Tarreaud426a182010-03-05 14:58:26 +01003140 while (ptr < len && ptr < bsize) {
3141 c = buf[ptr];
Willy Tarreau787bbd92009-03-12 08:18:33 +01003142 if (isprint(c) && isascii(c) && c != '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003143 if (out->len > end - 2)
3144 break;
3145 out->str[out->len++] = c;
Willy Tarreau787bbd92009-03-12 08:18:33 +01003146 } else if (c == '\t' || c == '\n' || c == '\r' || c == '\e' || c == '\\') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003147 if (out->len > end - 3)
3148 break;
3149 out->str[out->len++] = '\\';
3150 switch (c) {
3151 case '\t': c = 't'; break;
3152 case '\n': c = 'n'; break;
3153 case '\r': c = 'r'; break;
3154 case '\e': c = 'e'; break;
Willy Tarreau787bbd92009-03-12 08:18:33 +01003155 case '\\': c = '\\'; break;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003156 }
3157 out->str[out->len++] = c;
3158 } else {
3159 if (out->len > end - 5)
3160 break;
3161 out->str[out->len++] = '\\';
3162 out->str[out->len++] = 'x';
3163 out->str[out->len++] = hextab[(c >> 4) & 0xF];
3164 out->str[out->len++] = hextab[c & 0xF];
3165 }
Willy Tarreaud426a182010-03-05 14:58:26 +01003166 if (buf[ptr++] == '\n') {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003167 /* we had a line break, let's return now */
3168 out->str[out->len++] = '\n';
3169 *line = ptr;
3170 return ptr;
3171 }
3172 }
3173 /* we have an incomplete line, we return it as-is */
3174 out->str[out->len++] = '\n';
3175 return ptr;
3176}
3177
3178/* This function is called to send output to the response buffer.
3179 * It dumps the errors logged in proxies onto the output buffer <rep>.
3180 * Expects to be called with client socket shut down on input.
3181 * s->data_ctx must have been zeroed first, and the flags properly set.
Willy Tarreau61b34732009-10-03 23:49:35 +02003182 * It returns 0 as long as it does not complete, non-zero upon completion.
Willy Tarreau74808cb2009-03-04 15:53:18 +01003183 */
Willy Tarreau61b34732009-10-03 23:49:35 +02003184int stats_dump_errors_to_buffer(struct session *s, struct buffer *rep)
Willy Tarreau74808cb2009-03-04 15:53:18 +01003185{
3186 extern const char *monthname[12];
3187 struct chunk msg;
3188
Willy Tarreau61b34732009-10-03 23:49:35 +02003189 if (unlikely(rep->flags & (BF_WRITE_ERROR|BF_SHUTW)))
3190 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003191
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003192 chunk_init(&msg, trash, sizeof(trash));
Willy Tarreau74808cb2009-03-04 15:53:18 +01003193
3194 if (!s->data_ctx.errors.px) {
3195 /* the function had not been called yet, let's prepare the
3196 * buffer for a response.
3197 */
Willy Tarreau74808cb2009-03-04 15:53:18 +01003198 s->data_ctx.errors.px = proxy;
3199 s->data_ctx.errors.buf = 0;
3200 s->data_ctx.errors.bol = 0;
3201 s->data_ctx.errors.ptr = -1;
3202 }
3203
3204 /* we have two inner loops here, one for the proxy, the other one for
3205 * the buffer.
3206 */
3207 while (s->data_ctx.errors.px) {
3208 struct error_snapshot *es;
3209
3210 if (s->data_ctx.errors.buf == 0)
3211 es = &s->data_ctx.errors.px->invalid_req;
3212 else
3213 es = &s->data_ctx.errors.px->invalid_rep;
3214
3215 if (!es->when.tv_sec)
3216 goto next;
3217
3218 if (s->data_ctx.errors.iid >= 0 &&
3219 s->data_ctx.errors.px->uuid != s->data_ctx.errors.iid &&
3220 es->oe->uuid != s->data_ctx.errors.iid)
3221 goto next;
3222
3223 if (s->data_ctx.errors.ptr < 0) {
3224 /* just print headers now */
3225
3226 char pn[INET6_ADDRSTRLEN];
3227 struct tm tm;
3228
3229 get_localtime(es->when.tv_sec, &tm);
Willy Tarreau8811f8e2010-03-05 17:42:58 +01003230 chunk_printf(&msg, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
Willy Tarreau74808cb2009-03-04 15:53:18 +01003231 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
Willy Tarreau1772ece2009-04-03 14:49:12 +02003232 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
Willy Tarreau74808cb2009-03-04 15:53:18 +01003233
3234
3235 if (es->src.ss_family == AF_INET)
3236 inet_ntop(AF_INET,
3237 (const void *)&((struct sockaddr_in *)&es->src)->sin_addr,
3238 pn, sizeof(pn));
3239 else
3240 inet_ntop(AF_INET6,
3241 (const void *)&((struct sockaddr_in6 *)(&es->src))->sin6_addr,
3242 pn, sizeof(pn));
3243
3244 switch (s->data_ctx.errors.buf) {
3245 case 0:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003246 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003247 " frontend %s (#%d): invalid request\n"
3248 " src %s, session #%d, backend %s (#%d), server %s (#%d)\n"
Willy Tarreau8811f8e2010-03-05 17:42:58 +01003249 " request length %d bytes, error at position %d:\n \n",
Willy Tarreau74808cb2009-03-04 15:53:18 +01003250 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
Willy Tarreau3fd6cec2010-03-25 06:45:07 +01003251 pn, es->sid, (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
3252 (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003253 es->srv ? es->srv->id : "<NONE>",
3254 es->srv ? es->srv->puid : -1,
3255 es->len, es->pos);
3256 break;
3257 case 1:
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003258 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003259 " backend %s (#%d) : invalid response\n"
3260 " src %s, session #%d, frontend %s (#%d), server %s (#%d)\n"
Willy Tarreau8811f8e2010-03-05 17:42:58 +01003261 " response length %d bytes, error at position %d:\n \n",
Willy Tarreau74808cb2009-03-04 15:53:18 +01003262 s->data_ctx.errors.px->id, s->data_ctx.errors.px->uuid,
3263 pn, es->sid, es->oe->id, es->oe->uuid,
3264 es->srv ? es->srv->id : "<NONE>",
3265 es->srv ? es->srv->puid : -1,
3266 es->len, es->pos);
3267 break;
3268 }
3269
Willy Tarreau61b34732009-10-03 23:49:35 +02003270 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003271 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02003272 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003273 }
3274 s->data_ctx.errors.ptr = 0;
3275 s->data_ctx.errors.sid = es->sid;
3276 }
3277
3278 if (s->data_ctx.errors.sid != es->sid) {
3279 /* the snapshot changed while we were dumping it */
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02003280 chunk_printf(&msg,
Willy Tarreau74808cb2009-03-04 15:53:18 +01003281 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreau61b34732009-10-03 23:49:35 +02003282 if (buffer_feed_chunk(rep, &msg) >= 0)
3283 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003284 goto next;
3285 }
3286
3287 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau61b34732009-10-03 23:49:35 +02003288 while (s->data_ctx.errors.ptr < es->len && s->data_ctx.errors.ptr < sizeof(es->buf)) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003289 int newptr;
3290 int newline;
3291
3292 newline = s->data_ctx.errors.bol;
Willy Tarreaud426a182010-03-05 14:58:26 +01003293 newptr = dump_text_line(&msg, es->buf, sizeof(es->buf), es->len, &newline, s->data_ctx.errors.ptr);
Willy Tarreau74808cb2009-03-04 15:53:18 +01003294 if (newptr == s->data_ctx.errors.ptr)
Willy Tarreau61b34732009-10-03 23:49:35 +02003295 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003296
Willy Tarreau61b34732009-10-03 23:49:35 +02003297 if (buffer_feed_chunk(rep, &msg) >= 0) {
Willy Tarreau74808cb2009-03-04 15:53:18 +01003298 /* Socket buffer full. Let's try again later from the same point */
Willy Tarreau61b34732009-10-03 23:49:35 +02003299 return 0;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003300 }
3301 s->data_ctx.errors.ptr = newptr;
3302 s->data_ctx.errors.bol = newline;
3303 };
3304 next:
3305 s->data_ctx.errors.bol = 0;
3306 s->data_ctx.errors.ptr = -1;
3307 s->data_ctx.errors.buf++;
3308 if (s->data_ctx.errors.buf > 1) {
3309 s->data_ctx.errors.buf = 0;
3310 s->data_ctx.errors.px = s->data_ctx.errors.px->next;
3311 }
3312 }
3313
3314 /* dump complete */
Willy Tarreau61b34732009-10-03 23:49:35 +02003315 return 1;
Willy Tarreau74808cb2009-03-04 15:53:18 +01003316}
3317
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +01003318
Willy Tarreau10522fd2008-07-09 20:12:41 +02003319static struct cfg_kw_list cfg_kws = {{ },{
3320 { CFG_GLOBAL, "stats", stats_parse_global },
3321 { 0, NULL, NULL },
3322}};
3323
3324__attribute__((constructor))
3325static void __dumpstats_module_init(void)
3326{
3327 cfg_register_keywords(&cfg_kws);
3328}
3329
Willy Tarreau91861262007-10-17 17:06:05 +02003330/*
3331 * Local variables:
3332 * c-indent-level: 8
3333 * c-basic-offset: 8
3334 * End:
3335 */